diff --git a/.gitignore b/.gitignore index 4a93aa94c..4a7e6de55 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ /updates/clublog_scp.txt /assets/qslcard/* /assets/js/sections/custom.js +/userdata/* .idea/* .DS_Store sync.sh diff --git a/README.md b/README.md index 2a21e8700..7403b21b7 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ https://demo.wavelog.org ## Requirements * Linux based Operating System (Windows stack may also work) * Apache (Nginx should work) -* PHP Version 7.4 up to PHP 8.2 +* PHP Version 7.4 up to PHP 8.2 (PHP 8.3. in friendly Usertest) * MySQL or MariaDB (MySQL 5.7 or higher // MariaDB 10.1 or higher) Notes @@ -42,6 +42,9 @@ Wavelog-support can be reached by creating an issue here at github. If you've an ## Contributing +Special thanks to our contributors, who are part of Wavelog by improving code! +@abarrau, @dg0tm + If you would like to contribute in any way to Wavelog, it is most appreciated. This has been developed in free time, help coding new features or writing documentation is always useful. Please note that Wavelog was built using [Codeigniter](https://www.codeigniter.com/docs) version 3 and uses Bootstrap 5 for the user CSS framework documentation is available for this when building components. diff --git a/application/config/autoload.php b/application/config/autoload.php index 282830d21..7270b2332 100644 --- a/application/config/autoload.php +++ b/application/config/autoload.php @@ -52,7 +52,7 @@ $autoload['packages'] = array(APPPATH.'third_party'); | $autoload['libraries'] = array('database', 'session', 'xmlrpc'); */ -$autoload['libraries'] = array('database', 'session', 'curl', 'OptionsLib', 'Frequency'); +$autoload['libraries'] = array('database', 'session', 'curl', 'OptionsLib', 'Paths', 'Frequency'); /* diff --git a/application/config/config.sample.php b/application/config/config.sample.php index e3415191b..fc0380c46 100644 --- a/application/config/config.sample.php +++ b/application/config/config.sample.php @@ -663,3 +663,16 @@ $config['rewrite_short_tags'] = FALSE; | Array: array('10.0.1.200', '192.168.5.0/24') */ $config['proxy_ips'] = ''; + +/* +|-------------------------------------------------------------------------- +| Users Data Directory Options +|-------------------------------------------------------------------------- +| +| 'userdata' Name of principal/centralized data folder +| +| If you are a contributor to Wavelog you perhaps should add this folder path to .gitignore +| +*/ + +// $config['userdata'] = "userdata"; diff --git a/application/config/migration.php b/application/config/migration.php index 3832109d0..cba5ee184 100644 --- a/application/config/migration.php +++ b/application/config/migration.php @@ -22,7 +22,7 @@ $config['migration_enabled'] = TRUE; | */ -$config['migration_version'] = 178; +$config['migration_version'] = 180; /* |-------------------------------------------------------------------------- diff --git a/application/controllers/Accumulated.php b/application/controllers/Accumulated.php index 152d5abff..df442d870 100644 --- a/application/controllers/Accumulated.php +++ b/application/controllers/Accumulated.php @@ -1,20 +1,24 @@ load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if (!$this->user_model->authorize(2)) { + $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + redirect('dashboard'); + } } public function index() { // Render Page - $data['page_title'] = "Accumulated Statistics"; + $data['page_title'] = $this->lang->line('menu_accumulated_statistics'); $this->load->model('bands'); @@ -32,7 +36,8 @@ class Accumulated extends CI_Controller { /* * Used for ajax-call in javascript to fetch the data and insert into table and chart */ - public function get_accumulated_data(){ + public function get_accumulated_data() + { //load model $this->load->model('accumulate_model'); $band = $this->input->post('Band'); @@ -45,5 +50,4 @@ class Accumulated extends CI_Controller { header('Content-Type: application/json'); echo json_encode($data); } - -} \ No newline at end of file +} diff --git a/application/controllers/Cfdexport.php b/application/controllers/Cfdexport.php new file mode 100644 index 000000000..4de7039a9 --- /dev/null +++ b/application/controllers/Cfdexport.php @@ -0,0 +1,85 @@ +load->model('user_model'); + $this->load->model('modes'); + $this->load->model('logbook_model'); + $this->load->model('bands'); + + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + + $data['page_title'] = "CFD Export"; + + $this->load->view('interface_assets/header', $data); + $this->load->view('cfd/index'); + $this->load->view('interface_assets/footer'); + } + + public function export() { + $this->load->model('user_model'); + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + $this->load->model('logbook_model'); + $this->load->model('dxcc'); + + // Parameters + $fromdate = xss_clean($this->input->post('from')); + $todate = xss_clean($this->input->post('to')); + + $this->load->library('frequency'); + // Get QSOs with Valid QRAs + $qsos = $this->logbook_model->cfd_get_all_qsos($fromdate, $todate); + $output=strtoupper($this->session->userdata('user_callsign'))."\n"; + $output.='-------------------------------------------------------------- +MostWanted 1.42 - Overview Confirmed Entities + (M=Mixed C=CW F=Fone R=Rest) +============================================================== + +Entity \ MHz: ALL 1.8 3.5 7 10 14 18 21 24 28 50 +-------------------------------------------------------------------------------------------------------'."\n"; + + $dxcc_list=[]; // Prepare Array + foreach ($qsos->result() as $row) { // Loop through entities which are cnfmd + $nominal=$this->frequency->defaultFrequencies[$row->band]['NOMINAL']; + $dxcc_list[$row->prefix]['name']=$row->name; + if ($row->cnfmd >=1) { $dxcc_list[$row->prefix][$nominal][$row->mode]=$row->mode; } + } + $dxccs=$this->dxcc->list_current('prefix'); + foreach ($dxccs->result() as $dxcc) { // Loop through ALL active entities + $vals=$dxcc_list[$dxcc->prefix] ?? []; // Set current Entity + $output .= str_pad($dxcc->prefix,6," ")." ".str_pad(substr($dxcc->name,0,30),30,".")." "; + $allm=0; + $allc=0; + $allf=0; + $allr=0; + $bandachievements=''; + foreach ($this->frequency->defaultFrequencies as $band => $attribs) { // Loop through Bands + if (($attribs['NOMINAL'] <= 50) && ($attribs['NOMINAL'] != 5)) { // Check Every Band for cnfm state + if ($vals[$attribs['NOMINAL']] ?? '' != '') { $bandachievements .= 'M'; $allm++; } else { $bandachievements .= '-'; } + if ($vals[$attribs['NOMINAL']]['C'] ?? '' == 'C') { $bandachievements .= 'C'; $allc++; } else { $bandachievements .= '-'; } + if ($vals[$attribs['NOMINAL']]['F'] ?? '' == 'F') { $bandachievements .= 'F'; $allf++; } else { $bandachievements .= '-'; } + if ($vals[$attribs['NOMINAL']]['R'] ?? '' == 'R') { $bandachievements .= 'R'; $allr++; } else { $bandachievements .= '-'; } + $bandachievements .= ' '; + } + } + // Prepeare ALL Column + if ($allm >0) { $output.='M'; } else { $output.='-'; } + if ($allc >0) { $output.='C'; } else { $output.='-'; } + if ($allf >0) { $output.='F'; } else { $output.='-'; } + if ($allr >0) { $output.='R'; } else { $output.='-'; } + $output .= ' '.$bandachievements."\n"; + } + + header("Content-Disposition: attachment; filename=\"".strtoupper($this->session->userdata('user_callsign')).".CFD\""); + echo $output; + + } +} diff --git a/application/controllers/Dashboard.php b/application/controllers/Dashboard.php index 17f0f1362..1ee7e8bc6 100644 --- a/application/controllers/Dashboard.php +++ b/application/controllers/Dashboard.php @@ -14,10 +14,6 @@ class Dashboard extends CI_Controller { // LoTW infos $this->load->model('LotwCert'); - if($this->optionslib->get_option('version2_trigger') == "false") { - redirect('welcome'); - } - // Check if users logged in if($this->user_model->validate_session() == 0) { diff --git a/application/controllers/Eqsl.php b/application/controllers/Eqsl.php index c6a34bc8b..b708d6fe5 100644 --- a/application/controllers/Eqsl.php +++ b/application/controllers/Eqsl.php @@ -12,14 +12,15 @@ class eqsl extends CI_Controller { public function index() { $this->lang->load('qslcard'); - $folder_name = "images/eqsl_card_images"; + $this->load->model('eqsl_images'); + $folder_name = $this->eqsl_images->get_imagePath('p'); $data['storage_used'] = $this->sizeFormat($this->folderSize($folder_name)); // Render Page $data['page_title'] = "eQSL Cards"; - $this->load->model('eqsl_images'); + $data['qslarray'] = $this->eqsl_images->eqsl_qso_list(); $this->load->view('interface_assets/header', $data); @@ -40,8 +41,7 @@ class eqsl extends CI_Controller { $this->load->model('eqslmethods_model'); $eqsl_locations = $this->eqslmethods_model->all_of_user_with_eqsl_nick_defined(); if($eqsl_locations->num_rows() == 0) { - show_error("eQSL Nicknames in Station Profiles aren't defined"); - exit; + $this->session->set_flashdata('error', 'eQSL Nicknames in Station Profiles aren\'t defined!'); } ini_set('memory_limit', '-1'); @@ -74,10 +74,11 @@ class eqsl extends CI_Controller { $this->eqslimporter->from_callsign_and_QTH( $eqsl_location['station_callsign'], $eqsl_location['eqslqthnickname'], - $config['upload_path'] + $config['upload_path'], + $eqsl_location['station_id'] ); - $eqsl_results[] = $this->eqslimporter->fetch($eqsl_password,$eqsl_force_from_date); + $eqsl_results[] = $this->eqslimporter->fetch($eqsl_password, $eqsl_force_from_date); } } elseif ($this->input->post('eqslimport') == 'upload') { $station_id4upload=$this->input->post('station_profile'); @@ -97,7 +98,7 @@ class eqsl extends CI_Controller { $data = array('upload_data' => $this->upload->data()); $this->load->library('EqslImporter'); - $this->eqslimporter->from_file('./uploads/'.$data['upload_data']['file_name'],$station_callsign); + $this->eqslimporter->from_file('./uploads/'.$data['upload_data']['file_name'], $station_callsign, $station_id4upload); $eqsl_results[] = $this->eqslimporter->import(); } @@ -129,8 +130,7 @@ class eqsl extends CI_Controller { // Check if eQSL Nicknames have been defined $this->load->model('stations'); if($this->stations->are_eqsl_nicks_defined() == 0) { - show_error('eQSL Nicknames in Station Profiles arent defined'); - exit; + $this->session->set_flashdata('error', 'eQSL Nicknames in Station Profiles aren\'t defined!'); } ini_set('memory_limit', '-1'); @@ -547,13 +547,13 @@ class eqsl extends CI_Controller { } echo $content; $filename = uniqid().'.jpg'; - if (file_put_contents('images/eqsl_card_images/' . '/'.$filename, $content) !== false) { + if (file_put_contents($this->Eqsl_images->get_imagePath('p') .'/'. $filename, $content) !== false) { $this->Eqsl_images->save_image($id, $filename); } } } else { header('Content-Type: image/jpg'); - $image_url = base_url('images/eqsl_card_images/'.$this->Eqsl_images->get_image($id)); + $image_url = base_url($this->Eqsl_images->get_imagePath() .'/'. $this->Eqsl_images->get_image($id)); header('Location: ' . $image_url); } @@ -608,7 +608,7 @@ class eqsl extends CI_Controller { return $error; } $filename = uniqid().'.jpg'; - if (file_put_contents('images/eqsl_card_images/' . '/'.$filename, $content) !== false) { + if (file_put_contents($this->Eqsl_images->get_imagePath('p') .'/'. $filename, $content) !== false) { $this->Eqsl_images->save_image($id, $filename); } } @@ -728,7 +728,8 @@ class eqsl extends CI_Controller { $this->eqslimporter->from_callsign_and_QTH( $eqsl_location['station_callsign'], $eqsl_location['eqslqthnickname'], - $config['upload_path'] + $config['upload_path'], + $eqsl_location['station_id'] ); $eqsl_results[] = $this->eqslimporter->fetch($password); diff --git a/application/controllers/Hrdlog.php b/application/controllers/Hrdlog.php index e1544c0ae..934cd1b2e 100644 --- a/application/controllers/Hrdlog.php +++ b/application/controllers/Hrdlog.php @@ -165,10 +165,12 @@ class Hrdlog extends CI_Controller { $this->load->model('logbook_model'); - foreach ($data['qsos']->result() as $qso) + if (isset($data['qsos'])) { + foreach ($data['qsos']->result() as $qso) { - $this->logbook_model->mark_hrdlog_qsos_sent($qso->COL_PRIMARY_KEY); - } + $this->logbook_model->mark_hrdlog_qsos_sent($qso->COL_PRIMARY_KEY); + } + } $this->load->view('interface_assets/header', $data); $this->load->view('hrdlog/mark_hrdlog', $data); diff --git a/application/controllers/Logbook.php b/application/controllers/Logbook.php index 28a966fc5..38c210ff6 100644 --- a/application/controllers/Logbook.php +++ b/application/controllers/Logbook.php @@ -28,11 +28,6 @@ class Logbook extends CI_Controller { } $this->load->model('stations'); - // If environment is set to development then show the debug toolbar - if(ENVIRONMENT == 'development') { - $this->output->enable_profiler(TRUE); - } - $this->load->model('logbook_model'); $this->load->library('pagination'); @@ -613,17 +608,17 @@ class Logbook extends CI_Controller { $data['query'] = $this->logbook_model->get_qso($id); $data['dxccFlag'] = $this->dxccflag->get($data['query']->result()[0]->COL_DXCC); - if ($this->session->userdata('user_measurement_base') == NULL) { - $data['measurement_base'] = $this->config->item('measurement_base'); - } - else { - $data['measurement_base'] = $this->session->userdata('user_measurement_base'); - } + if ($this->session->userdata('user_measurement_base') == NULL) { + $data['measurement_base'] = $this->config->item('measurement_base'); + } + else { + $data['measurement_base'] = $this->session->userdata('user_measurement_base'); + } - $this->load->model('Qsl_model'); - $data['qslimages'] = $this->Qsl_model->getQslForQsoId($id); - $data['primary_subdivision'] = $this->subdivisions->get_primary_subdivision_name($data['query']->result()[0]->COL_DXCC); - $data['secondary_subdivision'] = $this->subdivisions->get_secondary_subdivision_name($data['query']->result()[0]->COL_DXCC); + $this->load->model('Qsl_model'); + $data['qslimages'] = $this->Qsl_model->getQslForQsoId($id); + $data['primary_subdivision'] = $this->subdivisions->get_primary_subdivision_name($data['query']->result()[0]->COL_DXCC); + $data['secondary_subdivision'] = $this->subdivisions->get_secondary_subdivision_name($data['query']->result()[0]->COL_DXCC); $data['max_upload'] = ini_get('upload_max_filesize'); $this->load->view('interface_assets/mini_header', $data); $this->load->view('view_log/qso'); diff --git a/application/controllers/Logbookadvanced.php b/application/controllers/Logbookadvanced.php index 9ef90bd40..76e701563 100644 --- a/application/controllers/Logbookadvanced.php +++ b/application/controllers/Logbookadvanced.php @@ -47,6 +47,7 @@ class Logbookadvanced extends CI_Controller { $pageData['sats'] = $this->bands->get_worked_sats(); $pageData['station_profile'] = $this->stations->all_of_user(); $pageData['active_station_info'] = $station_profile->row(); + $pageData['homegrid'] = explode(',', $this->stations->find_gridsquare()); $pageData['bands'] = $this->bands->get_worked_bands(); @@ -77,7 +78,10 @@ class Logbookadvanced extends CI_Controller { $footerData['scripts'] = [ 'assets/js/moment.min.js', 'assets/js/datetime-moment.js', - 'assets/js/sections/logbookadvanced.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/logbookadvanced.js")) + 'assets/js/sections/logbookadvanced.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/logbookadvanced.js")), + 'assets/js/sections/cqmap_geojson.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/cqmap_geojson.js")), + 'assets/js/sections/itumap_geojson.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/itumap_geojson.js")), + 'assets/js/leaflet/geocoding.js', ]; $this->load->view('interface_assets/header', $data); @@ -256,7 +260,7 @@ class Logbookadvanced extends CI_Controller { 'user_id' => (int)$this->session->userdata('user_id'), 'dateFrom' => '', 'dateTo' => '', - 'de' => '', + 'de' => (int)$this->input->post('de'), 'dx' => '', 'mode' => '', 'band' => '', @@ -336,14 +340,13 @@ class Logbookadvanced extends CI_Controller { $measurement_base = $this->session->userdata('user_measurement_base'); } - $CI =& get_instance(); // Get Date format - if($CI->session->userdata('user_date_format')) { + if($this->session->userdata('user_date_format')) { // If Logged in and session exists - $custom_date_format = $CI->session->userdata('user_date_format'); + $custom_date_format = $this->session->userdata('user_date_format'); } else { // Get Default date format from /config/wavelog.php - $custom_date_format = $CI->config->item('qso_date_format'); + $custom_date_format = $this->config->item('qso_date_format'); } switch ($measurement_base) { @@ -398,6 +401,7 @@ class Logbookadvanced extends CI_Controller { $data['mycallsign'] = $qso['station_callsign']; $data['datetime'] = date($custom_date_format, strtotime($qso['COL_TIME_ON'])). date(' H:i',strtotime($qso['COL_TIME_ON'])); $data['satname'] = $qso['COL_SAT_NAME']; + $data['confirmed'] = ((($qso['COL_EQSL_QSL_RCVD'] == 'Y') || ($qso['COL_LOTW_QSL_RCVD'] == 'Y') || ($qso['COL_QSL_RCVD'] == 'Y')) == true ? true : false); return $data; } @@ -422,6 +426,7 @@ class Logbookadvanced extends CI_Controller { $data['mycallsign'] = $qso['station_callsign']; $data['datetime'] = date($custom_date_format, strtotime($qso['COL_TIME_ON'])). date(' H:i',strtotime($qso['COL_TIME_ON'])); $data['satname'] = $qso['COL_SAT_NAME']; + $data['confirmed'] = ((($qso['COL_EQSL_QSL_RCVD'] == 'Y') || ($qso['COL_LOTW_QSL_RCVD'] == 'Y') || ($qso['COL_QSL_RCVD'] == 'Y')) == true ? true : false); return $data; } diff --git a/application/controllers/Lotw.php b/application/controllers/Lotw.php index 80859adc4..15a0adbb7 100644 --- a/application/controllers/Lotw.php +++ b/application/controllers/Lotw.php @@ -717,9 +717,9 @@ class Lotw extends CI_Controller { // Get credentials for LoTW $query = $this->user_model->get_by_id($this->session->userdata('user_id')); - $q = $query->row(); - $data['user_lotw_name'] = urlencode($q->user_lotw_name); - $data['user_lotw_password'] = urlencode($q->user_lotw_password); + $q = $query->row(); + $data['user_lotw_name'] = urlencode($q->user_lotw_name ?? ''); + $data['user_lotw_password'] = urlencode($q->user_lotw_password ?? ''); // Get URL for downloading LoTW $query = $query = $this->db->query('SELECT lotw_download_url FROM config'); @@ -733,15 +733,15 @@ class Lotw extends CI_Controller { $this->session->set_flashdata('warning', 'You have not defined your ARRL LoTW credentials!'); redirect('lotw/import'); } - $customDate = $this->input->post('from'); + $customDate = $this->input->post('from'); if ($customDate != NULL) { - $lotw_last_qsl_date = date($customDate); - } - else { - // Query the logbook to determine when the last LoTW confirmation was - $lotw_last_qsl_date = date('Y-m-d', strtotime($this->logbook_model->lotw_last_qsl_date($this->session->userdata['user_id']))); - } + $lotw_last_qsl_date = date($customDate); + } + else { + // Query the logbook to determine when the last LoTW confirmation was + $lotw_last_qsl_date = date('Y-m-d', strtotime($this->logbook_model->lotw_last_qsl_date($this->session->userdata['user_id']))); + } // Build URL for LoTW report file $lotw_url .= "?"; diff --git a/application/controllers/Maintenance.php b/application/controllers/Maintenance.php index 5ac18615d..cb509c139 100644 --- a/application/controllers/Maintenance.php +++ b/application/controllers/Maintenance.php @@ -4,12 +4,12 @@ class Maintenance extends CI_Controller { function __construct() { parent::__construct(); + $this->load->model('user_model'); + if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } } /* User Facing Links to Maintenance URLs */ public function index() { - $this->load->model('user_model'); - if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } $this->load->model('Logbook_model'); $this->load->model('Stations'); $data['stations']=$this->Stations->all(); @@ -24,8 +24,6 @@ class Maintenance extends CI_Controller { } public function reassign() { - $this->load->model('user_model'); - if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } $this->load->model('Logbook_model'); $this->load->model('Stations'); $call = xss_clean(($this->input->post('call'))); diff --git a/application/controllers/Map.php b/application/controllers/Map.php index 456b23cb9..4e27c60ac 100644 --- a/application/controllers/Map.php +++ b/application/controllers/Map.php @@ -4,69 +4,13 @@ class Map extends CI_Controller { function index() { - redirect('map/custom'); - } - - function custom() - { - $this->load->model('bands'); - $this->load->model('modes'); - - $data['worked_bands'] = $this->bands->get_worked_bands(); // Used in the view for band select - $data['modes'] = $this->modes->active(); // Used in the view for mode select - - if ($this->input->post('band') != NULL) { // Band is not set when page first loads. - if ($this->input->post('band') == 'All') { // Did the user specify a band? If not, use all bands - $bands = $data['worked_bands']; - } - else { - $bands[] = $this->input->post('band'); - } - } - else { - $bands = $data['worked_bands']; - } - - $data['bands'] = $bands; // Used for displaying selected band(s) in the table in the view - - // Calculate Lat/Lng from Locator to use on Maps - if($this->session->userdata('user_locator')) { - $this->load->library('qra'); - - $qra_position = $this->qra->qra2latlong($this->session->userdata('user_locator')); - $data['qra'] = "set"; - $data['qra_lat'] = $qra_position[0]; - $data['qra_lng'] = $qra_position[1]; - } else { - $data['qra'] = "none"; - } - - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $result = $CI->logbooks_model->logbook($this->session->userdata('active_station_logbook'))->result(); - - if ($result) { - $logbook_name = $result[0]->logbook_name; - } else { - $logbook_name = ''; - } - - // load the view - $data['logbook_name'] = $logbook_name; - $data['page_title'] = "Map QSOs"; - - $data['date_from'] = $data['date_to'] = date('Y-m-d'); - - $this->load->view('interface_assets/header', $data); - $this->load->view('map/custom_date'); - $this->load->view('interface_assets/footer'); } // Generic fonction for return Json for MAP // public function map_plot_json() { $this->load->model('Stations'); $this->load->model('logbook_model'); - + // set informations // if ($this->input->post('isCustom') == true) { $date_from = xss_clean($this->input->post('date_from')); @@ -84,7 +28,7 @@ class Map extends CI_Controller { $plot_array = $this->logbook_model->get_plot_array_for_map($qsos->result()); // [MAP Custom] ADD Station // $station_array = $this->Stations->get_station_array_for_map(); - + header('Content-Type: application/json; charset=utf-8'); echo json_encode(array_merge($plot_array, $station_array)); } diff --git a/application/controllers/Qrz.php b/application/controllers/Qrz.php index c2ea63fdc..290df4594 100644 --- a/application/controllers/Qrz.php +++ b/application/controllers/Qrz.php @@ -170,9 +170,10 @@ class Qrz extends CI_Controller { $this->load->model('logbook_model'); - foreach ($data['qsos']->result() as $qso) - { - $this->logbook_model->mark_qrz_qsos_sent($qso->COL_PRIMARY_KEY); + if (isset($data['qsos'])) { + foreach ($data['qsos']->result() as $qso) { + $this->logbook_model->mark_qrz_qsos_sent($qso->COL_PRIMARY_KEY); + } } $this->load->view('interface_assets/header', $data); diff --git a/application/controllers/Qsl.php b/application/controllers/Qsl.php index 15c35fb34..d37fac724 100644 --- a/application/controllers/Qsl.php +++ b/application/controllers/Qsl.php @@ -16,13 +16,12 @@ class Qsl extends CI_Controller { // Default view when loading controller. public function index() { - $folder_name = "assets/qslcard"; + $this->load->model('qsl_model'); + $folder_name = $this->qsl_model->get_imagePath('p'); $data['storage_used'] = sizeFormat(folderSize($folder_name)); // Render Page $data['page_title'] = "QSL Cards"; - - $this->load->model('qsl_model'); $data['qslarray'] = $this->qsl_model->getQsoWithQslList(); $this->load->view('interface_assets/header', $data); @@ -46,10 +45,10 @@ class Qsl extends CI_Controller { $id = $this->input->post('id'); $this->load->model('Qsl_model'); - $path = './assets/qslcard/'; + $path = $this->Qsl_model->get_imagePath('p'); $file = $this->Qsl_model->getFilename($id)->row(); $filename = $file->filename; - unlink($path.$filename); + unlink($path.'/'.$filename); $this->Qsl_model->deleteQsl($id); } @@ -58,9 +57,6 @@ class Qsl extends CI_Controller { $this->load->model('user_model'); if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } - if (!file_exists('./assets/qslcard')) { - mkdir('./assets/qslcard', 0755, true); - } $qsoid = $this->input->post('qsoid'); if (isset($_FILES['qslcardfront']) && $_FILES['qslcardfront']['name'] != "" && $_FILES['qslcardfront']['error'] == 0) @@ -82,7 +78,8 @@ class Qsl extends CI_Controller { } function uploadQslCardFront($qsoid) { - $config['upload_path'] = './assets/qslcard'; + $this->load->model('Qsl_model'); + $config['upload_path'] = $this->Qsl_model->get_imagePath('p'); $config['allowed_types'] = 'jpg|gif|png|jpeg|JPG|PNG'; $array = explode(".", $_FILES['qslcardfront']['name']); $ext = end($array); @@ -97,9 +94,6 @@ class Qsl extends CI_Controller { return $error; } else { - // Load database queries - $this->load->model('Qsl_model'); - //Upload of QSL card was successful $data = $this->upload->data(); @@ -115,7 +109,8 @@ class Qsl extends CI_Controller { } function uploadQslCardBack($qsoid) { - $config['upload_path'] = './assets/qslcard'; + $this->load->model('Qsl_model'); + $config['upload_path'] = $this->Qsl_model->get_imagePath('p'); $config['allowed_types'] = 'jpg|gif|png|jpeg|JPG|PNG'; $array = explode(".", $_FILES['qslcardback']['name']); $ext = end($array); @@ -130,9 +125,6 @@ class Qsl extends CI_Controller { return $error; } else { - // Load database queries - $this->load->model('Qsl_model'); - //Upload of QSL card was successful $data = $this->upload->data(); diff --git a/application/controllers/Qso.php b/application/controllers/Qso.php index 0463722be..a3ae8a020 100755 --- a/application/controllers/Qso.php +++ b/application/controllers/Qso.php @@ -18,18 +18,17 @@ class QSO extends CI_Controller { if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } } - public function index() - { + public function index() { $this->load->model('cat'); $this->load->model('stations'); $this->load->model('logbook_model'); $this->load->model('user_model'); $this->load->model('modes'); - $this->load->model('bands'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + $this->load->model('bands'); + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } $data['active_station_profile'] = $this->stations->find_active(); - + $data['notice'] = false; $data['stations'] = $this->stations->all_of_user(); $data['radios'] = $this->cat->radios(); @@ -50,21 +49,21 @@ class QSO extends CI_Controller { $this->form_validation->set_rules('mode', 'Mode', 'required'); $this->form_validation->set_rules('locator', 'Locator', 'callback_check_locator'); - // [eQSL default msg] GET user options (option_type='eqsl_default_qslmsg'; option_name='key_station_id'; option_key=station_id) // + // [eQSL default msg] GET user options (option_type='eqsl_default_qslmsg'; option_name='key_station_id'; option_key=station_id) // $this->load->model('user_options_model'); $options_object = $this->user_options_model->get_options('eqsl_default_qslmsg',array('option_name'=>'key_station_id','option_key'=>$data['active_station_profile']))->result(); $data['qslmsg'] = (isset($options_object[0]->option_value))?$options_object[0]->option_value:''; - if ($this->form_validation->run() == FALSE) - { + if ($this->form_validation->run() == FALSE) { $data['page_title'] = "Add QSO"; - - $this->load->view('interface_assets/header', $data); - $this->load->view('qso/index'); - $this->load->view('interface_assets/footer'); - } - else - { + if (validation_errors() != '') { // we're coming from a failed ajax-call + echo json_encode(array('message' => 'Error','errors' => validation_errors())); + } else { // we're not coming from a POST + $this->load->view('interface_assets/header', $data); + $this->load->view('qso/index'); + $this->load->view('interface_assets/footer'); + } + } else { // Store Basic QSO Info for reuse // Put data in an array first, then call set_userdata once. // This solves the problem of CI dumping out the session @@ -73,9 +72,9 @@ class QSO extends CI_Controller { // $qso_data = [ // 18-Jan-2016 - make php v5.3 friendly! $qso_data = array( - 'start_date' => $this->input->post('start_date'), - 'start_time' => $this->input->post('start_time'), - 'end_time' => $this->input->post('end_time'), + 'start_date' => $this->input->post('start_date'), + 'start_time' => $this->input->post('start_time'), + 'end_time' => $this->input->post('end_time'), 'time_stamp' => time(), 'band' => $this->input->post('band'), 'band_rx' => $this->input->post('band_rx'), @@ -99,8 +98,8 @@ class QSO extends CI_Controller { // If SAT name is set make it session set to sat if($this->input->post('sat_name')) { - $this->session->set_userdata('prop_mode', 'SAT'); - } + $this->session->set_userdata('prop_mode', 'SAT'); + } // Add QSO // $this->logbook_model->add(); @@ -108,17 +107,7 @@ class QSO extends CI_Controller { $this->logbook_model->create_qso(); // Get last 5 qsos - $data['query'] = $this->logbook_model->last_custom('5'); - - // Set Any Notice Messages - $data['notice'] = "QSO Added"; - - // Load view to create another contact - $data['page_title'] = "Add QSO"; - - $this->load->view('interface_assets/header', $data); - $this->load->view('qso/index'); - $this->load->view('interface_assets/footer'); + echo json_encode(array('message' => 'success')); } } diff --git a/application/controllers/Station.php b/application/controllers/Station.php index f0600ec13..e23b55f4b 100644 --- a/application/controllers/Station.php +++ b/application/controllers/Station.php @@ -153,19 +153,13 @@ class Station extends CI_Controller { return $data; } - // This function allows a user to claim ownership of a station location - function claim_user($id) { - // $id is the profile id - $this->load->model('stations'); - $this->stations->claim_user($id); - - redirect('station'); - } function reassign_profile($id) { - // $id is the profile that needs reassigned to QSOs + // $id is the profile that needs reassigned to QSOs // ONLY Admin can do that! $this->load->model('stations'); - $this->stations->reassign($id); + if ($this->user_model->authorize(99)) { + $this->stations->reassign($id); + } //$this->stations->logbook_session_data(); redirect('station'); diff --git a/application/controllers/Update.php b/application/controllers/Update.php index 4a47a44a4..01ac1abc7 100644 --- a/application/controllers/Update.php +++ b/application/controllers/Update.php @@ -68,7 +68,7 @@ class Update extends CI_Controller { 'lat' => (float) $entity->lat, 'start' => $start_date, 'end' => $end_date, - ); + ); } array_push($a_data,$data); @@ -76,10 +76,10 @@ class Update extends CI_Controller { if ($count % 10 == 0) $this->update_status("Preparing DXCC-Entries: ".$count); } - $this->db->insert_batch('dxcc_entities', $a_data); + $this->db->insert_batch('dxcc_entities', $a_data); $this->update_status(); - return $count; + return $count; } /* @@ -118,10 +118,10 @@ class Update extends CI_Controller { if ($count % 10 == 0) $this->update_status("Preparing DXCC Exceptions: ".$count); } - $this->db->insert_batch('dxcc_exceptions', $a_data); + $this->db->insert_batch('dxcc_exceptions', $a_data); $this->update_status(); - return $count; + return $count; } /* @@ -160,11 +160,11 @@ class Update extends CI_Controller { if ($count % 10 == 0) $this->update_status("Preparing DXCC Prefixes: ".$count); } - $this->db->insert_batch('dxcc_prefixes', $a_data); + $this->db->insert_batch('dxcc_prefixes', $a_data); //print("$count prefixes processed"); $this->update_status(); - return $count; + return $count; } // Updates the DXCC & Exceptions from the Club Log Cty.xml file. @@ -173,7 +173,7 @@ class Update extends CI_Controller { // give it 10 minutes... set_time_limit(600); - + // Load Migration data if any. $this->load->library('migration'); $this->fix_migrations(); @@ -181,7 +181,7 @@ class Update extends CI_Controller { // Download latest file. $url = "https://cdn.clublog.org/cty.php?api=608df94896cb9c5421ae748235492b43815610c9"; - + $gz = gzopen($url, 'r'); if ($gz === FALSE) { $this->update_status("FAILED: Could not download from clublog.org"); @@ -199,7 +199,7 @@ class Update extends CI_Controller { $this->update_status("FAILED: Could not write to cty.xml file"); return; } - + // Clear the tables, ready for new data $this->db->empty_table("dxcc_entities"); $this->db->empty_table("dxcc_exceptions"); @@ -229,6 +229,9 @@ class Update extends CI_Controller { $html .= "Dxcc Prefixes: ".$this->db->count_all('dxcc_prefixes')."
"; } else { $html = $done."....
"; + $datetime = new DateTime("now", new DateTimeZone('UTC')); + $datetime = $datetime->format('Ymd h:i'); + $this->optionslib->update('dxcc_clublog_update', $datetime , 'no'); } file_put_contents($this->make_update_path("status.html"), $html); @@ -246,13 +249,13 @@ class Update extends CI_Controller { } } } - + public function check_missing_dxcc($all = false){ $this->load->model('logbook_model'); $this->logbook_model->check_missing_dxcc_id($all); } - + public function check_missing_continent() { $this->load->model('logbook_model'); $this->logbook_model->check_missing_continent(); @@ -287,6 +290,9 @@ class Update extends CI_Controller { if ($nCount > 0) { echo "DONE: " . number_format($nCount) . " callsigns loaded"; + $datetime = new DateTime("now", new DateTimeZone('UTC')); + $datetime = $datetime->format('Ymd h:i'); + $this->optionslib->update('scp_update', $datetime , 'no'); } else { echo "FAILED: Empty file"; } @@ -301,7 +307,7 @@ class Update extends CI_Controller { public function download_lotw_users() { $contents = file_get_contents('https://lotw.arrl.org/lotw-user-activity.csv', true); - if($contents === FALSE) { + if($contents === FALSE) { echo "Something went wrong with fetching the LoTW users file."; } else { $file = './updates/lotw_users.csv'; @@ -316,10 +322,10 @@ class Update extends CI_Controller { } public function lotw_users() { - $mtime = microtime(); - $mtime = explode(" ",$mtime); - $mtime = $mtime[1] + $mtime[0]; - $starttime = $mtime; + $mtime = microtime(); + $mtime = explode(" ",$mtime); + $mtime = $mtime[1] + $mtime[0]; + $starttime = $mtime; $file = 'https://lotw.arrl.org/lotw-user-activity.csv'; @@ -328,7 +334,7 @@ class Update extends CI_Controller { echo "Something went wrong with fetching the LoTW uses file"; return; } - $this->db->empty_table("lotw_users"); + $this->db->empty_table("lotw_users"); $i = 0; $data = fgetcsv($handle,1000,","); do { @@ -336,7 +342,7 @@ class Update extends CI_Controller { $lotwdata[$i]['callsign'] = $data[0]; $lotwdata[$i]['lastupload'] = $data[1] . ' ' . $data[2]; if (($i % 2000) == 0) { - $this->db->insert_batch('lotw_users', $lotwdata); + $this->db->insert_batch('lotw_users', $lotwdata); unset($lotwdata); // echo 'Record ' . $i . '
'; } @@ -345,15 +351,18 @@ class Update extends CI_Controller { } while ($data = fgetcsv($handle,1000,",")); fclose($handle); - $this->db->insert_batch('lotw_users', $lotwdata); + $this->db->insert_batch('lotw_users', $lotwdata); - $mtime = microtime(); - $mtime = explode(" ",$mtime); - $mtime = $mtime[1] + $mtime[0]; - $endtime = $mtime; - $totaltime = ($endtime - $starttime); - echo "This page was created in ".$totaltime." seconds
"; + $mtime = microtime(); + $mtime = explode(" ",$mtime); + $mtime = $mtime[1] + $mtime[0]; + $endtime = $mtime; + $totaltime = ($endtime - $starttime); + echo "This page was created in ".$totaltime." seconds
"; echo "Records inserted: " . $i . "
"; + $datetime = new DateTime("now", new DateTimeZone('UTC')); + $datetime = $datetime->format('Ymd h:i'); + $this->optionslib->update('lotw_users_update', $datetime , 'no'); } public function lotw_check() { @@ -385,6 +394,9 @@ class Update extends CI_Controller { if ($nCount > 0) { echo "DONE: " . number_format($nCount) . " DOKs and SDOKs saved"; + $datetime = new DateTime("now", new DateTimeZone('UTC')); + $datetime = $datetime->format('Ymd h:i'); + $this->optionslib->update('dok_file_update', $datetime , 'no'); } else { echo"FAILED: Empty file"; } @@ -432,6 +444,9 @@ class Update extends CI_Controller { if ($nCount > 0) { echo "DONE: " . number_format($nCount) . " SOTA's saved"; + $datetime = new DateTime("now", new DateTimeZone('UTC')); + $datetime = $datetime->format('Ymd h:i'); + $this->optionslib->update('sota_file_update', $datetime , 'no'); } else { echo"FAILED: Empty file"; } @@ -479,6 +494,9 @@ class Update extends CI_Controller { if ($nCount > 0) { echo "DONE: " . number_format($nCount) . " WWFF's saved"; + $datetime = new DateTime("now", new DateTimeZone('UTC')); + $datetime = $datetime->format('Ymd h:i'); + $this->optionslib->update('wwff_file_update', $datetime , 'no'); } else { echo"FAILED: Empty file"; } @@ -522,6 +540,9 @@ class Update extends CI_Controller { if ($nCount > 0) { echo "DONE: " . number_format($nCount) . " POTA's saved"; + $datetime = new DateTime("now", new DateTimeZone('UTC')); + $datetime = $datetime->format('Ymd h:i'); + $this->optionslib->update('pota_file_update', $datetime , 'no'); } else { echo"FAILED: Empty file"; } diff --git a/application/controllers/Welcome.php b/application/controllers/Welcome.php deleted file mode 100644 index 077a97338..000000000 --- a/application/controllers/Welcome.php +++ /dev/null @@ -1,104 +0,0 @@ -load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } - } - - public function index() { - if($this->optionslib->get_option('version2_trigger') == "false") { - $data['page_title'] = "Welcome to Wavelog Version 2.0"; - - // load stations model - $this->load->model('stations'); - $data['CountAllStationLocations'] = $this->stations->CountAllStationLocations(); - - // load logbooks model - $this->load->model('logbooks_model'); - $data['NumberOfStationLogbooks'] = $this->logbooks_model->CountAllStationLogbooks(); - - // load api model - $this->load->model('api_model'); - $data['NumberOfAPIKeys'] = $this->api_model->CountKeysWithNoUserID(); - - // load note model - $this->load->model('note'); - $data['NumberOfNotes'] = $this->note->CountAllNotes(); - - if($data['CountAllStationLocations'] > 0 || $data['NumberOfStationLogbooks'] > 0 || $data['NumberOfAPIKeys'] > 0 || $data['NumberOfNotes'] > 0) { - // load views - $this->load->view('interface_assets/mini_header', $data); - $this->load->view('welcome/index'); - $this->load->view('interface_assets/footer'); - } else { - $data['NoMigrationRequired'] = false; - $this->optionslib->update('version2_trigger', "true", "yes"); - redirect('dashboard'); - } - } else { - redirect('dashboard'); - } - } - - public function locationsclaim() { - try { - // load model Stations and call function ClaimAllStationLocations - $this->load->model('stations'); - $this->stations->ClaimAllStationLocations(); - - echo "All Station Locations Claimed"; - } catch (Exception $e) { - log_message('error', 'Error Claiming Station Locations during Migration. '.$e->getMessage()); - echo "Error Claiming Station Locations during Migration. See Logs for further information"; - } - } - - public function defaultlogbook() { - try { - // load model Stations and call function ClaimAllStationLocations - $this->load->model('logbooks_model'); - $this->logbooks_model->CreateDefaultLogbook(); - - echo "Default Logbook Created"; - } catch (Exception $e) { - log_message('error', 'Error Creating Default Logbook during Migration. '.$e->getMessage()); - echo "Error Creating Default Logbook during Migration. See Logs for further information"; - } - } - - public function claimnotes() { - try { - // load model Stations and call function ClaimAllStationLocations - $this->load->model('note'); - $this->note->ClaimAllNotes(); - - echo "Notes all claimed"; - } catch (Exception $e) { - log_message('error', 'Error claiming notes during Migration. '.$e->getMessage()); - echo "Error claiming notes during Migration. See Logs for further information"; - } - } - - public function claimapikeys() { - try { - // load model Stations and call function ClaimAllStationLocations - $this->load->model('api_model'); - $this->api_model->ClaimAllAPIKeys(); - - echo "All API Keys claimed"; - } catch (Exception $e) { - log_message('error', 'Error claiming API Keys during Migration. '.$e->getMessage()); - echo "Error claiming API Keys during Migration. See Logs for further information"; - } - } -} diff --git a/application/language/bulgarian/export_lang.php b/application/language/bulgarian/export_lang.php index dd3d81f86..e6493ad5a 100644 --- a/application/language/bulgarian/export_lang.php +++ b/application/language/bulgarian/export_lang.php @@ -72,4 +72,5 @@ $lang['export_cabrillo_address_country'] = "Address Country"; $lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log."; $lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!"; +$lang['export_cfd_description'] = "Export of CFD-File for DARC-Toplist (See https://toplist.darc.de)"; diff --git a/application/language/bulgarian/general_words_lang.php b/application/language/bulgarian/general_words_lang.php index 3f6bcd7f4..fcace92d1 100644 --- a/application/language/bulgarian/general_words_lang.php +++ b/application/language/bulgarian/general_words_lang.php @@ -17,6 +17,7 @@ $lang['general_word_next'] = 'Next'; $lang['general_word_previous'] = 'Previous'; $lang['general_word_cancel'] = "Cancel"; $lang['general_word_ok'] = "OK"; +$lang['general_word_show'] = "Show"; $lang['general_word_attention'] = "Attention"; $lang['general_word_enabled'] = "Enabled"; $lang['general_word_disabled'] = "Disabled"; @@ -51,6 +52,9 @@ $lang['general_word_year'] = 'Година'; $lang['general_word_month'] = 'Месец'; $lang['general_word_day'] = "Day"; $lang['general_word_days'] = "Days"; +$lang['general_word_period'] = "Period"; +$lang['general_word_yearly'] = "Yearly"; +$lang['general_word_monthly'] = "Monthly"; $lang['general_word_colors'] = "Colors"; $lang['general_word_light'] = "Light/Laser"; @@ -151,6 +155,8 @@ $lang['gen_hamradio_satellite_name'] = 'Име на сателита'; $lang['gen_hamradio_satellite_mode'] = 'Режим на сателита'; $lang['gen_hamradio_logbook'] = 'Дневник'; +$lang['gen_hamradio_active_logbook'] = 'Active Logbook'; +$lang['gen_hamradio_active_logbook_hint'] = "Displaying all QSOs of station locations which are linked to this logbook"; $lang['gen_hamradio_award'] = "Award"; $lang['gen_hamradio_zones'] = 'Zones'; diff --git a/application/language/bulgarian/menu_lang.php b/application/language/bulgarian/menu_lang.php index 44d8b7fb7..0da4e5bb3 100644 --- a/application/language/bulgarian/menu_lang.php +++ b/application/language/bulgarian/menu_lang.php @@ -31,7 +31,6 @@ $lang['menu_days_with_qsos'] = 'Days with QSOs'; $lang['menu_timeline'] = 'Timeline'; $lang['menu_accumulated_statistics'] = 'Accumulated Statistics'; $lang['menu_timeplotter'] = 'Timeplotter'; -$lang['menu_custom_maps'] = 'Custom Maps'; $lang['menu_continents'] = 'Continents'; $lang['menu_awards'] = 'Awards'; diff --git a/application/language/bulgarian/statistics_lang.php b/application/language/bulgarian/statistics_lang.php index 97a2f0b93..d83be79c1 100644 --- a/application/language/bulgarian/statistics_lang.php +++ b/application/language/bulgarian/statistics_lang.php @@ -58,3 +58,15 @@ $lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (contin $lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; $lang['statistics_dwq_no_current_streak'] = "No current streak found!"; +/* +* +* Accumulated Stats +* +*/ + +$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; +$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; +$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; +$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; + + diff --git a/application/language/chinese_simplified/export_lang.php b/application/language/chinese_simplified/export_lang.php index e8623a120..235970df4 100644 --- a/application/language/chinese_simplified/export_lang.php +++ b/application/language/chinese_simplified/export_lang.php @@ -72,4 +72,5 @@ $lang['export_cabrillo_address_country'] = "国家"; $lang['export_cabrillo_no_contests_in_log'] = "在日志中未发现任何竞赛"; $lang['export_cabrillo_no_contests_for_stationlocation'] = "没有找到该台站位置的竞赛"; +$lang['export_cfd_description'] = "Export of CFD-File for DARC-Toplist (See https://toplist.darc.de)"; diff --git a/application/language/chinese_simplified/general_words_lang.php b/application/language/chinese_simplified/general_words_lang.php index 0726eed2c..e87f803d7 100644 --- a/application/language/chinese_simplified/general_words_lang.php +++ b/application/language/chinese_simplified/general_words_lang.php @@ -17,6 +17,7 @@ $lang['general_word_next'] = '后一项'; $lang['general_word_previous'] = '前一项'; $lang['general_word_cancel'] = "取消"; $lang['general_word_ok'] = "确认"; +$lang['general_word_show'] = "Show"; $lang['general_word_attention'] = "注意"; $lang['general_word_enabled'] = "已启用"; $lang['general_word_disabled'] = "已禁用"; @@ -51,6 +52,9 @@ $lang['general_word_year'] = '年'; $lang['general_word_month'] = '月'; $lang['general_word_day'] = "日"; $lang['general_word_days'] = "天"; +$lang['general_word_period'] = "Period"; +$lang['general_word_yearly'] = "Yearly"; +$lang['general_word_monthly'] = "Monthly"; $lang['general_word_colors'] = "颜色"; $lang['general_word_light'] = "浅色/高光"; @@ -151,6 +155,8 @@ $lang['gen_hamradio_satellite_name'] = '卫星名称'; $lang['gen_hamradio_satellite_mode'] = '卫星模式'; $lang['gen_hamradio_logbook'] = '日志簿'; +$lang['gen_hamradio_active_logbook'] = 'Active Logbook'; +$lang['gen_hamradio_active_logbook_hint'] = "Displaying all QSOs of station locations which are linked to this logbook"; $lang['gen_hamradio_award'] = "奖项"; $lang['gen_hamradio_zones'] = '分区'; diff --git a/application/language/chinese_simplified/menu_lang.php b/application/language/chinese_simplified/menu_lang.php index df5198739..1de2843f3 100644 --- a/application/language/chinese_simplified/menu_lang.php +++ b/application/language/chinese_simplified/menu_lang.php @@ -31,7 +31,6 @@ $lang['menu_days_with_qsos'] = '天数'; $lang['menu_timeline'] = '时间线'; $lang['menu_accumulated_statistics'] = '累积统计'; $lang['menu_timeplotter'] = '时间图'; -$lang['menu_custom_maps'] = '自定义地图'; $lang['menu_continents'] = '大陆'; $lang['menu_awards'] = '奖项'; diff --git a/application/language/chinese_simplified/statistics_lang.php b/application/language/chinese_simplified/statistics_lang.php index 6e8acf079..607a3256c 100644 --- a/application/language/chinese_simplified/statistics_lang.php +++ b/application/language/chinese_simplified/statistics_lang.php @@ -58,3 +58,15 @@ $lang['statistics_dwq_current_streak_continuous_days'] = "当前连续天数"; $lang['statistics_dwq_make_qso_to_extend_streak'] = "如果你今天进行了QSO,那么就能延长你的连续天数,否则将会被打破清零"; $lang['statistics_dwq_no_current_streak'] = "没有找到连续的天数"; +/* +* +* Accumulated Stats +* +*/ + +$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; +$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; +$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; +$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; + + diff --git a/application/language/czech/export_lang.php b/application/language/czech/export_lang.php index dd3d81f86..e6493ad5a 100644 --- a/application/language/czech/export_lang.php +++ b/application/language/czech/export_lang.php @@ -72,4 +72,5 @@ $lang['export_cabrillo_address_country'] = "Address Country"; $lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log."; $lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!"; +$lang['export_cfd_description'] = "Export of CFD-File for DARC-Toplist (See https://toplist.darc.de)"; diff --git a/application/language/czech/general_words_lang.php b/application/language/czech/general_words_lang.php index 3be8b5faa..a694de08a 100644 --- a/application/language/czech/general_words_lang.php +++ b/application/language/czech/general_words_lang.php @@ -17,6 +17,7 @@ $lang['general_word_next'] = 'Next'; $lang['general_word_previous'] = 'Previous'; $lang['general_word_cancel'] = "Cancel"; $lang['general_word_ok'] = "OK"; +$lang['general_word_show'] = "Show"; $lang['general_word_attention'] = "Attention"; $lang['general_word_enabled'] = "Enabled"; $lang['general_word_disabled'] = "Disabled"; @@ -51,6 +52,9 @@ $lang['general_word_year'] = 'Rok'; $lang['general_word_month'] = 'Měsíc'; $lang['general_word_day'] = "Day"; $lang['general_word_days'] = "Days"; +$lang['general_word_period'] = "Period"; +$lang['general_word_yearly'] = "Yearly"; +$lang['general_word_monthly'] = "Monthly"; $lang['general_word_colors'] = "Colors"; $lang['general_word_light'] = "Light/Laser"; @@ -151,6 +155,8 @@ $lang['gen_hamradio_satellite_name'] = 'Název satelitu'; $lang['gen_hamradio_satellite_mode'] = 'Režim satelitu'; $lang['gen_hamradio_logbook'] = 'Logbook'; +$lang['gen_hamradio_active_logbook'] = 'Active Logbook'; +$lang['gen_hamradio_active_logbook_hint'] = "Displaying all QSOs of station locations which are linked to this logbook"; $lang['gen_hamradio_award'] = "Award"; $lang['gen_hamradio_zones'] = 'Zones'; diff --git a/application/language/czech/menu_lang.php b/application/language/czech/menu_lang.php index b9624d109..0f44aa36f 100644 --- a/application/language/czech/menu_lang.php +++ b/application/language/czech/menu_lang.php @@ -31,7 +31,6 @@ $lang['menu_days_with_qsos'] = 'Dny s QSO'; $lang['menu_timeline'] = 'Časová osa'; $lang['menu_accumulated_statistics'] = 'Kumulativní statistiky'; $lang['menu_timeplotter'] = 'Graf času'; -$lang['menu_custom_maps'] = 'Vlastní mapy'; $lang['menu_continents'] = 'Kontinenty'; $lang['menu_awards'] = 'Diplomy'; diff --git a/application/language/czech/statistics_lang.php b/application/language/czech/statistics_lang.php index f636a7d14..8ec5bce3b 100644 --- a/application/language/czech/statistics_lang.php +++ b/application/language/czech/statistics_lang.php @@ -58,3 +58,15 @@ $lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (contin $lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; $lang['statistics_dwq_no_current_streak'] = "No current streak found!"; +/* +* +* Accumulated Stats +* +*/ + +$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; +$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; +$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; +$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; + + diff --git a/application/language/dutch/export_lang.php b/application/language/dutch/export_lang.php index dd3d81f86..e6493ad5a 100644 --- a/application/language/dutch/export_lang.php +++ b/application/language/dutch/export_lang.php @@ -72,4 +72,5 @@ $lang['export_cabrillo_address_country'] = "Address Country"; $lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log."; $lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!"; +$lang['export_cfd_description'] = "Export of CFD-File for DARC-Toplist (See https://toplist.darc.de)"; diff --git a/application/language/dutch/general_words_lang.php b/application/language/dutch/general_words_lang.php index 88457f533..79185bdd4 100644 --- a/application/language/dutch/general_words_lang.php +++ b/application/language/dutch/general_words_lang.php @@ -17,6 +17,7 @@ $lang['general_word_next'] = 'Next'; $lang['general_word_previous'] = 'Previous'; $lang['general_word_cancel'] = "Cancel"; $lang['general_word_ok'] = "OK"; +$lang['general_word_show'] = "Show"; $lang['general_word_attention'] = "Attention"; $lang['general_word_enabled'] = "Enabled"; $lang['general_word_disabled'] = "Disabled"; @@ -51,6 +52,9 @@ $lang['general_word_year'] = 'Jaar'; $lang['general_word_month'] = 'Maand'; $lang['general_word_day'] = "Day"; $lang['general_word_days'] = "Days"; +$lang['general_word_period'] = "Period"; +$lang['general_word_yearly'] = "Yearly"; +$lang['general_word_monthly'] = "Monthly"; $lang['general_word_colors'] = "Colors"; $lang['general_word_light'] = "Light/Laser"; @@ -151,6 +155,8 @@ $lang['gen_hamradio_satellite_name'] = 'Satelliet Naam'; $lang['gen_hamradio_satellite_mode'] = 'Satelliet Mode'; $lang['gen_hamradio_logbook'] = 'Logboek'; +$lang['gen_hamradio_active_logbook'] = 'Active Logbook'; +$lang['gen_hamradio_active_logbook_hint'] = "Displaying all QSOs of station locations which are linked to this logbook"; $lang['gen_hamradio_award'] = "Award"; $lang['gen_hamradio_zones'] = 'Zones'; diff --git a/application/language/dutch/menu_lang.php b/application/language/dutch/menu_lang.php index 88d36eaf9..b6bbdf7c1 100644 --- a/application/language/dutch/menu_lang.php +++ b/application/language/dutch/menu_lang.php @@ -31,7 +31,6 @@ $lang['menu_days_with_qsos'] = 'Days with QSOs'; $lang['menu_timeline'] = 'Timeline'; $lang['menu_accumulated_statistics'] = 'Accumulated Statistics'; $lang['menu_timeplotter'] = 'Timeplotter'; -$lang['menu_custom_maps'] = 'Custom Maps'; $lang['menu_continents'] = 'Continents'; $lang['menu_awards'] = 'Awards'; diff --git a/application/language/dutch/statistics_lang.php b/application/language/dutch/statistics_lang.php index 62bfe00dd..1251eb082 100644 --- a/application/language/dutch/statistics_lang.php +++ b/application/language/dutch/statistics_lang.php @@ -58,3 +58,15 @@ $lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (contin $lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; $lang['statistics_dwq_no_current_streak'] = "No current streak found!"; +/* +* +* Accumulated Stats +* +*/ + +$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; +$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; +$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; +$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; + + diff --git a/application/language/english/export_lang.php b/application/language/english/export_lang.php index dd3d81f86..e6493ad5a 100644 --- a/application/language/english/export_lang.php +++ b/application/language/english/export_lang.php @@ -72,4 +72,5 @@ $lang['export_cabrillo_address_country'] = "Address Country"; $lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log."; $lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!"; +$lang['export_cfd_description'] = "Export of CFD-File for DARC-Toplist (See https://toplist.darc.de)"; diff --git a/application/language/english/general_words_lang.php b/application/language/english/general_words_lang.php index 60340fc9f..16e83857f 100644 --- a/application/language/english/general_words_lang.php +++ b/application/language/english/general_words_lang.php @@ -17,6 +17,7 @@ $lang['general_word_next'] = 'Next'; $lang['general_word_previous'] = 'Previous'; $lang['general_word_cancel'] = "Cancel"; $lang['general_word_ok'] = "OK"; +$lang['general_word_show'] = "Show"; $lang['general_word_attention'] = "Attention"; $lang['general_word_enabled'] = "Enabled"; $lang['general_word_disabled'] = "Disabled"; @@ -51,6 +52,9 @@ $lang['general_word_year'] = 'Year'; $lang['general_word_month'] = 'Month'; $lang['general_word_day'] = "Day"; $lang['general_word_days'] = "Days"; +$lang['general_word_period'] = "Period"; +$lang['general_word_yearly'] = "Yearly"; +$lang['general_word_monthly'] = "Monthly"; $lang['general_word_colors'] = "Colors"; $lang['general_word_light'] = "Light/Laser"; @@ -151,6 +155,8 @@ $lang['gen_hamradio_satellite_name'] = 'Satellite Name'; $lang['gen_hamradio_satellite_mode'] = 'Satellite Mode'; $lang['gen_hamradio_logbook'] = 'Logbook'; +$lang['gen_hamradio_active_logbook'] = 'Active Logbook'; +$lang['gen_hamradio_active_logbook_hint'] = "Displaying all QSOs of station locations which are linked to this logbook"; $lang['gen_hamradio_award'] = "Award"; $lang['gen_hamradio_zones'] = 'Zones'; diff --git a/application/language/english/menu_lang.php b/application/language/english/menu_lang.php index dc926d8e7..864ead6b9 100644 --- a/application/language/english/menu_lang.php +++ b/application/language/english/menu_lang.php @@ -31,7 +31,6 @@ $lang['menu_days_with_qsos'] = 'Days with QSOs'; $lang['menu_timeline'] = 'Timeline'; $lang['menu_accumulated_statistics'] = 'Accumulated Statistics'; $lang['menu_timeplotter'] = 'Timeplotter'; -$lang['menu_custom_maps'] = 'Custom Maps'; $lang['menu_continents'] = 'Continents'; $lang['menu_awards'] = 'Awards'; diff --git a/application/language/english/statistics_lang.php b/application/language/english/statistics_lang.php index c995c0f2a..a861bd426 100644 --- a/application/language/english/statistics_lang.php +++ b/application/language/english/statistics_lang.php @@ -58,3 +58,15 @@ $lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (contin $lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; $lang['statistics_dwq_no_current_streak'] = "No current streak found!"; +/* +* +* Accumulated Stats +* +*/ + +$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; +$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; +$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; +$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; + + diff --git a/application/language/finnish/export_lang.php b/application/language/finnish/export_lang.php index dd3d81f86..e6493ad5a 100644 --- a/application/language/finnish/export_lang.php +++ b/application/language/finnish/export_lang.php @@ -72,4 +72,5 @@ $lang['export_cabrillo_address_country'] = "Address Country"; $lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log."; $lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!"; +$lang['export_cfd_description'] = "Export of CFD-File for DARC-Toplist (See https://toplist.darc.de)"; diff --git a/application/language/finnish/general_words_lang.php b/application/language/finnish/general_words_lang.php index 54934250d..8b73153e0 100644 --- a/application/language/finnish/general_words_lang.php +++ b/application/language/finnish/general_words_lang.php @@ -17,6 +17,7 @@ $lang['general_word_next'] = 'Next'; $lang['general_word_previous'] = 'Previous'; $lang['general_word_cancel'] = "Cancel"; $lang['general_word_ok'] = "OK"; +$lang['general_word_show'] = "Show"; $lang['general_word_attention'] = "Attention"; $lang['general_word_enabled'] = "Enabled"; $lang['general_word_disabled'] = "Disabled"; @@ -51,6 +52,9 @@ $lang['general_word_year'] = 'Vuosi'; $lang['general_word_month'] = 'Kuukausi'; $lang['general_word_day'] = "Day"; $lang['general_word_days'] = "Days"; +$lang['general_word_period'] = "Period"; +$lang['general_word_yearly'] = "Yearly"; +$lang['general_word_monthly'] = "Monthly"; $lang['general_word_colors'] = "Colors"; $lang['general_word_light'] = "Light/Laser"; @@ -151,6 +155,8 @@ $lang['gen_hamradio_satellite_name'] = 'Satelliitti'; $lang['gen_hamradio_satellite_mode'] = 'Satelliitin Mode'; $lang['gen_hamradio_logbook'] = 'Lokikirja'; +$lang['gen_hamradio_active_logbook'] = 'Active Logbook'; +$lang['gen_hamradio_active_logbook_hint'] = "Displaying all QSOs of station locations which are linked to this logbook"; $lang['gen_hamradio_award'] = "Award"; $lang['gen_hamradio_zones'] = 'Zones'; diff --git a/application/language/finnish/menu_lang.php b/application/language/finnish/menu_lang.php index 62717b5c7..809b88730 100644 --- a/application/language/finnish/menu_lang.php +++ b/application/language/finnish/menu_lang.php @@ -31,7 +31,6 @@ $lang['menu_days_with_qsos'] = 'QSO:llsia päiviä'; $lang['menu_timeline'] = 'Aikajana'; $lang['menu_accumulated_statistics'] = 'Kertyneet tilastot'; $lang['menu_timeplotter'] = 'Aikajana'; -$lang['menu_custom_maps'] = 'Custom Maps'; $lang['menu_continents'] = 'Mantereet'; $lang['menu_awards'] = 'Awardit'; diff --git a/application/language/finnish/statistics_lang.php b/application/language/finnish/statistics_lang.php index c5b611023..37bdd4a71 100644 --- a/application/language/finnish/statistics_lang.php +++ b/application/language/finnish/statistics_lang.php @@ -58,3 +58,15 @@ $lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (contin $lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; $lang['statistics_dwq_no_current_streak'] = "No current streak found!"; +/* +* +* Accumulated Stats +* +*/ + +$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; +$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; +$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; +$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; + + diff --git a/application/language/french/export_lang.php b/application/language/french/export_lang.php index cfe770f71..3540134dd 100644 --- a/application/language/french/export_lang.php +++ b/application/language/french/export_lang.php @@ -72,4 +72,5 @@ $lang['export_cabrillo_address_country'] = "Adresse - Pays"; $lang['export_cabrillo_no_contests_in_log'] = "Aucun concours trouvé dans votre journal de trafic"; $lang['export_cabrillo_no_contests_for_stationlocation'] = "Aucun concours trouvé pour cet emplacement de station!"; +$lang['export_cfd_description'] = "Export of CFD-File for DARC-Toplist (See https://toplist.darc.de)"; diff --git a/application/language/french/general_words_lang.php b/application/language/french/general_words_lang.php index d85e944eb..9603ec113 100644 --- a/application/language/french/general_words_lang.php +++ b/application/language/french/general_words_lang.php @@ -17,6 +17,7 @@ $lang['general_word_next'] = "Suivant"; $lang['general_word_previous'] = "Précédent"; $lang['general_word_cancel'] = "Annuler"; $lang['general_word_ok'] = "OK"; +$lang['general_word_show'] = "Show"; $lang['general_word_attention'] = "Attention"; $lang['general_word_enabled'] = "Activé"; $lang['general_word_disabled'] = "Désactivé"; @@ -51,6 +52,9 @@ $lang['general_word_year'] = "Année"; $lang['general_word_month'] = "Mois"; $lang['general_word_day'] = "Day"; $lang['general_word_days'] = "Days"; +$lang['general_word_period'] = "Period"; +$lang['general_word_yearly'] = "Yearly"; +$lang['general_word_monthly'] = "Monthly"; $lang['general_word_colors'] = "Couleurs"; $lang['general_word_light'] = "Lumière/Laser"; @@ -151,6 +155,8 @@ $lang['gen_hamradio_satellite_name'] = "Nom du Satellite"; $lang['gen_hamradio_satellite_mode'] = "Mode du Satellite"; $lang['gen_hamradio_logbook'] = "Journal de trafic"; +$lang['gen_hamradio_active_logbook'] = 'Active Logbook'; +$lang['gen_hamradio_active_logbook_hint'] = "Displaying all QSOs of station locations which are linked to this logbook"; $lang['gen_hamradio_award'] = "Award"; $lang['gen_hamradio_zones'] = "Zones"; diff --git a/application/language/french/menu_lang.php b/application/language/french/menu_lang.php index b82fb62bd..683885de1 100644 --- a/application/language/french/menu_lang.php +++ b/application/language/french/menu_lang.php @@ -31,7 +31,6 @@ $lang['menu_days_with_qsos'] = 'Days with QSOs'; $lang['menu_timeline'] = 'Timeline'; $lang['menu_accumulated_statistics'] = 'Accumulated Statistics'; $lang['menu_timeplotter'] = 'Timeplotter'; -$lang['menu_custom_maps'] = 'Custom Maps'; $lang['menu_continents'] = 'Continents'; $lang['menu_awards'] = 'Awards'; diff --git a/application/language/french/statistics_lang.php b/application/language/french/statistics_lang.php index c9631523d..b55004c83 100644 --- a/application/language/french/statistics_lang.php +++ b/application/language/french/statistics_lang.php @@ -58,3 +58,15 @@ $lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (contin $lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; $lang['statistics_dwq_no_current_streak'] = "No current streak found!"; +/* +* +* Accumulated Stats +* +*/ + +$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; +$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; +$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; +$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; + + diff --git a/application/language/german/export_lang.php b/application/language/german/export_lang.php index ebf38343c..ad466594c 100644 --- a/application/language/german/export_lang.php +++ b/application/language/german/export_lang.php @@ -72,4 +72,5 @@ $lang['export_cabrillo_address_country'] = "Addresse Land"; $lang['export_cabrillo_no_contests_in_log'] = "Es wurden keine Contests in deinem Log gefunden."; $lang['export_cabrillo_no_contests_for_stationlocation'] = "Für diesen Stationsstandort wurden keine vorhandenen Contests gefunden!"; +$lang['export_cfd_description'] = "Export of CFD-File for DARC-Toplist (See https://toplist.darc.de)"; diff --git a/application/language/german/general_words_lang.php b/application/language/german/general_words_lang.php index 58d8c9ba7..3125521b9 100644 --- a/application/language/german/general_words_lang.php +++ b/application/language/german/general_words_lang.php @@ -17,6 +17,7 @@ $lang['general_word_next'] = 'Weiter'; $lang['general_word_previous'] = 'Zurück'; $lang['general_word_cancel'] = "Abbrechen"; $lang['general_word_ok'] = "OK"; +$lang['general_word_show'] = "Anzeigen"; $lang['general_word_attention'] = "Achtung"; $lang['general_word_enabled'] = "Eingeschaltet"; $lang['general_word_disabled'] = "Ausgeschaltet"; @@ -51,6 +52,9 @@ $lang['general_word_year'] = 'Jahr'; $lang['general_word_month'] = 'Monat'; $lang['general_word_day'] = "Tag"; $lang['general_word_days'] = "Tage"; +$lang['general_word_period'] = "Zeitraum"; +$lang['general_word_yearly'] = "jährlich"; +$lang['general_word_monthly'] = "monatlich"; $lang['general_word_colors'] = "Farben"; $lang['general_word_light'] = "Licht/Laser"; @@ -151,6 +155,8 @@ $lang['gen_hamradio_satellite_name'] = 'Satellit'; $lang['gen_hamradio_satellite_mode'] = 'Satellitenmodus'; $lang['gen_hamradio_logbook'] = 'Logbuch'; +$lang['gen_hamradio_active_logbook'] = 'Aktives Logbuch'; +$lang['gen_hamradio_active_logbook_hint'] = "Es werden alle QSO von Stationsstandorten angezeigt, welche mit diesem Logbuch verknüpft sind."; $lang['gen_hamradio_award'] = "Diplom"; $lang['gen_hamradio_zones'] = 'Zonen'; diff --git a/application/language/german/menu_lang.php b/application/language/german/menu_lang.php index 1b86e9bf4..af705d97a 100644 --- a/application/language/german/menu_lang.php +++ b/application/language/german/menu_lang.php @@ -31,7 +31,6 @@ $lang['menu_days_with_qsos'] = 'Tage mit QSOs'; $lang['menu_timeline'] = 'Zeitleiste'; $lang['menu_accumulated_statistics'] = 'Kumulierte Statistiken'; $lang['menu_timeplotter'] = 'Zeitplotter'; -$lang['menu_custom_maps'] = 'Benutzerdefinierte Karte'; $lang['menu_continents'] = 'Kontinente'; $lang['menu_awards'] = 'Diplome'; diff --git a/application/language/german/statistics_lang.php b/application/language/german/statistics_lang.php index f91e0d988..ba6260892 100644 --- a/application/language/german/statistics_lang.php +++ b/application/language/german/statistics_lang.php @@ -58,3 +58,15 @@ $lang['statistics_dwq_current_streak_continuous_days'] = "Aktuelle Serie (fortla $lang['statistics_dwq_make_qso_to_extend_streak'] = "Wenn Sie heute ein QSO machen, können Sie Ihre Serie verlängern... Andernfalls wird Ihre aktuelle Serie unterbrochen!"; $lang['statistics_dwq_no_current_streak'] = "Keine aktuelle Serie gefunden!"; +/* +* +* Accumulated Stats +* +*/ + +$lang['statistics_accumulated_worked_dxcc'] = "Kumulierte Statistik gearbeiteter DXCC"; +$lang['statistics_accumulated_worked_states'] = "Kumulierte Statistik gearbeiteter US Staaten"; +$lang['statistics_accumulated_worked_iota'] = "Kumulierte Statistik gearbeiteter IOTA"; +$lang['statistics_accumulated_worked_cqzone'] = "Kumulierte Statistik gearbeiteter CQ Zonen"; + + diff --git a/application/language/greek/export_lang.php b/application/language/greek/export_lang.php index dd3d81f86..e6493ad5a 100644 --- a/application/language/greek/export_lang.php +++ b/application/language/greek/export_lang.php @@ -72,4 +72,5 @@ $lang['export_cabrillo_address_country'] = "Address Country"; $lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log."; $lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!"; +$lang['export_cfd_description'] = "Export of CFD-File for DARC-Toplist (See https://toplist.darc.de)"; diff --git a/application/language/greek/general_words_lang.php b/application/language/greek/general_words_lang.php index d8338ed90..5a6bb9031 100644 --- a/application/language/greek/general_words_lang.php +++ b/application/language/greek/general_words_lang.php @@ -17,6 +17,7 @@ $lang['general_word_next'] = 'Next'; $lang['general_word_previous'] = 'Previous'; $lang['general_word_cancel'] = "Cancel"; $lang['general_word_ok'] = "OK"; +$lang['general_word_show'] = "Show"; $lang['general_word_attention'] = "Attention"; $lang['general_word_enabled'] = "Enabled"; $lang['general_word_disabled'] = "Disabled"; @@ -51,6 +52,9 @@ $lang['general_word_year'] = 'Ετος'; $lang['general_word_month'] = 'Μήνας'; $lang['general_word_day'] = "Day"; $lang['general_word_days'] = "Days"; +$lang['general_word_period'] = "Period"; +$lang['general_word_yearly'] = "Yearly"; +$lang['general_word_monthly'] = "Monthly"; $lang['general_word_colors'] = "Colors"; $lang['general_word_light'] = "Light/Laser"; @@ -151,6 +155,8 @@ $lang['gen_hamradio_satellite_name'] = 'Όνομα δορυφόρου'; $lang['gen_hamradio_satellite_mode'] = 'Λειτουργία δορυφόρου'; $lang['gen_hamradio_logbook'] = 'Αρχείο επαφών'; +$lang['gen_hamradio_active_logbook'] = 'Active Logbook'; +$lang['gen_hamradio_active_logbook_hint'] = "Displaying all QSOs of station locations which are linked to this logbook"; $lang['gen_hamradio_award'] = "Award"; $lang['gen_hamradio_zones'] = 'Zones'; diff --git a/application/language/greek/menu_lang.php b/application/language/greek/menu_lang.php index 9da678ed4..e50b17ce3 100644 --- a/application/language/greek/menu_lang.php +++ b/application/language/greek/menu_lang.php @@ -31,7 +31,6 @@ $lang['menu_days_with_qsos'] = 'Days with QSOs'; $lang['menu_timeline'] = 'Timeline'; $lang['menu_accumulated_statistics'] = 'Accumulated Statistics'; $lang['menu_timeplotter'] = 'Timeplotter'; -$lang['menu_custom_maps'] = 'Custom Maps'; $lang['menu_continents'] = 'Continents'; $lang['menu_awards'] = 'Awards'; diff --git a/application/language/greek/statistics_lang.php b/application/language/greek/statistics_lang.php index c995c0f2a..a861bd426 100644 --- a/application/language/greek/statistics_lang.php +++ b/application/language/greek/statistics_lang.php @@ -58,3 +58,15 @@ $lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (contin $lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; $lang['statistics_dwq_no_current_streak'] = "No current streak found!"; +/* +* +* Accumulated Stats +* +*/ + +$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; +$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; +$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; +$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; + + diff --git a/application/language/italian/export_lang.php b/application/language/italian/export_lang.php index dd3d81f86..e6493ad5a 100644 --- a/application/language/italian/export_lang.php +++ b/application/language/italian/export_lang.php @@ -72,4 +72,5 @@ $lang['export_cabrillo_address_country'] = "Address Country"; $lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log."; $lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!"; +$lang['export_cfd_description'] = "Export of CFD-File for DARC-Toplist (See https://toplist.darc.de)"; diff --git a/application/language/italian/general_words_lang.php b/application/language/italian/general_words_lang.php index 95eeba3d6..af5a8258e 100644 --- a/application/language/italian/general_words_lang.php +++ b/application/language/italian/general_words_lang.php @@ -17,6 +17,7 @@ $lang['general_word_next'] = 'Next'; $lang['general_word_previous'] = 'Previous'; $lang['general_word_cancel'] = "Cancel"; $lang['general_word_ok'] = "OK"; +$lang['general_word_show'] = "Show"; $lang['general_word_attention'] = "Attention"; $lang['general_word_enabled'] = "Enabled"; $lang['general_word_disabled'] = "Disabled"; @@ -51,6 +52,9 @@ $lang['general_word_year'] = 'Anno'; $lang['general_word_month'] = 'Mese'; $lang['general_word_day'] = "Day"; $lang['general_word_days'] = "Days"; +$lang['general_word_period'] = "Period"; +$lang['general_word_yearly'] = "Yearly"; +$lang['general_word_monthly'] = "Monthly"; $lang['general_word_colors'] = "Colors"; $lang['general_word_light'] = "Light/Laser"; @@ -151,6 +155,8 @@ $lang['gen_hamradio_satellite_name'] = 'Nome Satellite'; $lang['gen_hamradio_satellite_mode'] = 'Modo Satellite'; $lang['gen_hamradio_logbook'] = 'Logbook'; +$lang['gen_hamradio_active_logbook'] = 'Active Logbook'; +$lang['gen_hamradio_active_logbook_hint'] = "Displaying all QSOs of station locations which are linked to this logbook"; $lang['gen_hamradio_award'] = "Award"; $lang['gen_hamradio_zones'] = 'Zones'; diff --git a/application/language/italian/menu_lang.php b/application/language/italian/menu_lang.php index 9da678ed4..e50b17ce3 100644 --- a/application/language/italian/menu_lang.php +++ b/application/language/italian/menu_lang.php @@ -31,7 +31,6 @@ $lang['menu_days_with_qsos'] = 'Days with QSOs'; $lang['menu_timeline'] = 'Timeline'; $lang['menu_accumulated_statistics'] = 'Accumulated Statistics'; $lang['menu_timeplotter'] = 'Timeplotter'; -$lang['menu_custom_maps'] = 'Custom Maps'; $lang['menu_continents'] = 'Continents'; $lang['menu_awards'] = 'Awards'; diff --git a/application/language/italian/statistics_lang.php b/application/language/italian/statistics_lang.php index c995c0f2a..a861bd426 100644 --- a/application/language/italian/statistics_lang.php +++ b/application/language/italian/statistics_lang.php @@ -58,3 +58,15 @@ $lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (contin $lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; $lang['statistics_dwq_no_current_streak'] = "No current streak found!"; +/* +* +* Accumulated Stats +* +*/ + +$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; +$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; +$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; +$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; + + diff --git a/application/language/polish/export_lang.php b/application/language/polish/export_lang.php index dd3d81f86..e6493ad5a 100644 --- a/application/language/polish/export_lang.php +++ b/application/language/polish/export_lang.php @@ -72,4 +72,5 @@ $lang['export_cabrillo_address_country'] = "Address Country"; $lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log."; $lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!"; +$lang['export_cfd_description'] = "Export of CFD-File for DARC-Toplist (See https://toplist.darc.de)"; diff --git a/application/language/polish/general_words_lang.php b/application/language/polish/general_words_lang.php index 9ce44d79c..1f0cc8130 100644 --- a/application/language/polish/general_words_lang.php +++ b/application/language/polish/general_words_lang.php @@ -17,6 +17,7 @@ $lang['general_word_next'] = 'Next'; $lang['general_word_previous'] = 'Previous'; $lang['general_word_cancel'] = "Cancel"; $lang['general_word_ok'] = "OK"; +$lang['general_word_show'] = "Show"; $lang['general_word_attention'] = "Attention"; $lang['general_word_enabled'] = "Enabled"; $lang['general_word_disabled'] = "Disabled"; @@ -51,6 +52,9 @@ $lang['general_word_year'] = 'Rok'; $lang['general_word_month'] = 'Miesiąc'; $lang['general_word_day'] = "Day"; $lang['general_word_days'] = "Days"; +$lang['general_word_period'] = "Period"; +$lang['general_word_yearly'] = "Yearly"; +$lang['general_word_monthly'] = "Monthly"; $lang['general_word_colors'] = "Colors"; $lang['general_word_light'] = "Light/Laser"; @@ -151,6 +155,8 @@ $lang['gen_hamradio_satellite_name'] = 'Nazwa satelity'; $lang['gen_hamradio_satellite_mode'] = 'modulacja satelity'; $lang['gen_hamradio_logbook'] = 'Log'; +$lang['gen_hamradio_active_logbook'] = 'Active Logbook'; +$lang['gen_hamradio_active_logbook_hint'] = "Displaying all QSOs of station locations which are linked to this logbook"; $lang['gen_hamradio_award'] = "Award"; $lang['gen_hamradio_zones'] = 'Zones'; diff --git a/application/language/polish/menu_lang.php b/application/language/polish/menu_lang.php index 9da678ed4..e50b17ce3 100644 --- a/application/language/polish/menu_lang.php +++ b/application/language/polish/menu_lang.php @@ -31,7 +31,6 @@ $lang['menu_days_with_qsos'] = 'Days with QSOs'; $lang['menu_timeline'] = 'Timeline'; $lang['menu_accumulated_statistics'] = 'Accumulated Statistics'; $lang['menu_timeplotter'] = 'Timeplotter'; -$lang['menu_custom_maps'] = 'Custom Maps'; $lang['menu_continents'] = 'Continents'; $lang['menu_awards'] = 'Awards'; diff --git a/application/language/polish/statistics_lang.php b/application/language/polish/statistics_lang.php index c995c0f2a..a861bd426 100644 --- a/application/language/polish/statistics_lang.php +++ b/application/language/polish/statistics_lang.php @@ -58,3 +58,15 @@ $lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (contin $lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; $lang['statistics_dwq_no_current_streak'] = "No current streak found!"; +/* +* +* Accumulated Stats +* +*/ + +$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; +$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; +$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; +$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; + + diff --git a/application/language/russian/export_lang.php b/application/language/russian/export_lang.php index 2c8b9273c..67536b05f 100644 --- a/application/language/russian/export_lang.php +++ b/application/language/russian/export_lang.php @@ -72,4 +72,5 @@ $lang['export_cabrillo_address_country'] = "Адрес (страна)"; $lang['export_cabrillo_no_contests_in_log'] = "В вашем логе конест-сессий не найдено."; $lang['export_cabrillo_no_contests_for_stationlocation'] = "Для этого расположения станции контест-сессии не найдены!"; +$lang['export_cfd_description'] = "Export of CFD-File for DARC-Toplist (See https://toplist.darc.de)"; diff --git a/application/language/russian/general_words_lang.php b/application/language/russian/general_words_lang.php index b8e58246f..f7175d582 100644 --- a/application/language/russian/general_words_lang.php +++ b/application/language/russian/general_words_lang.php @@ -17,6 +17,7 @@ $lang['general_word_next'] = 'След.'; $lang['general_word_previous'] = 'Пред.'; $lang['general_word_cancel'] = "Отмена"; $lang['general_word_ok'] = "ОК"; +$lang['general_word_show'] = "Show"; $lang['general_word_attention'] = "Внимание"; $lang['general_word_enabled'] = "Включено"; $lang['general_word_disabled'] = "Выключено"; @@ -51,6 +52,9 @@ $lang['general_word_year'] = 'Год'; $lang['general_word_month'] = 'Месяц'; $lang['general_word_day'] = "Day"; $lang['general_word_days'] = "Days"; +$lang['general_word_period'] = "Period"; +$lang['general_word_yearly'] = "Yearly"; +$lang['general_word_monthly'] = "Monthly"; $lang['general_word_colors'] = "Цвета"; $lang['general_word_light'] = "Свет/лазер"; @@ -152,7 +156,9 @@ $lang['gen_hamradio_satellite_name'] = 'Название спутника'; $lang['gen_hamradio_satellite_mode'] = 'Режим работы спутника'; $lang['gen_hamradio_award'] = "Диплом"; +$lang['gen_hamradio_active_logbook_hint'] = "Displaying all QSOs of station locations which are linked to this logbook"; $lang['gen_hamradio_logbook'] = 'Журнал'; +$lang['gen_hamradio_active_logbook'] = 'Active Logbook'; $lang['gen_hamradio_zones'] = 'Зоны'; $lang['gen_hamradio_itu_zone'] = 'Зона ITU'; diff --git a/application/language/russian/menu_lang.php b/application/language/russian/menu_lang.php index 2487d766e..6f7b2d636 100644 --- a/application/language/russian/menu_lang.php +++ b/application/language/russian/menu_lang.php @@ -31,7 +31,6 @@ $lang['menu_days_with_qsos'] = 'Дней с QSO'; $lang['menu_timeline'] = 'Лента событий'; $lang['menu_accumulated_statistics'] = 'Объединённая статистика'; $lang['menu_timeplotter'] = 'Графики'; -$lang['menu_custom_maps'] = 'Карты'; $lang['menu_continents'] = 'Континенты'; $lang['menu_awards'] = 'Дипломы'; diff --git a/application/language/russian/statistics_lang.php b/application/language/russian/statistics_lang.php index 2e9efab2c..b14a00c8d 100644 --- a/application/language/russian/statistics_lang.php +++ b/application/language/russian/statistics_lang.php @@ -58,3 +58,15 @@ $lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (contin $lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; $lang['statistics_dwq_no_current_streak'] = "No current streak found!"; +/* +* +* Accumulated Stats +* +*/ + +$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; +$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; +$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; +$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; + + diff --git a/application/language/spanish/export_lang.php b/application/language/spanish/export_lang.php index 7b8d0cea0..4693046e9 100644 --- a/application/language/spanish/export_lang.php +++ b/application/language/spanish/export_lang.php @@ -72,4 +72,5 @@ $lang['export_cabrillo_address_country'] = "Dirección - País"; $lang['export_cabrillo_no_contests_in_log'] = "No se encontraron concursos en tu registro."; $lang['export_cabrillo_no_contests_for_stationlocation'] = "¡No se encontraron concursos para esta localización de estación!"; +$lang['export_cfd_description'] = "Export of CFD-File for DARC-Toplist (See https://toplist.darc.de)"; diff --git a/application/language/spanish/general_words_lang.php b/application/language/spanish/general_words_lang.php index d662499a4..9c9f0e532 100644 --- a/application/language/spanish/general_words_lang.php +++ b/application/language/spanish/general_words_lang.php @@ -17,6 +17,7 @@ $lang['general_word_next'] = 'Siguiente'; $lang['general_word_previous'] = 'Anterior'; $lang['general_word_cancel'] = "Cancelar"; $lang['general_word_ok'] = "OK"; +$lang['general_word_show'] = "Show"; $lang['general_word_attention'] = "Atención"; $lang['general_word_enabled'] = "Activado"; @@ -51,6 +52,9 @@ $lang['general_word_total'] = 'Total'; $lang['general_word_year'] = 'Año'; $lang['general_word_month'] = 'Mes'; $lang['general_word_day'] = "Day"; +$lang['general_word_period'] = "Period"; +$lang['general_word_yearly'] = "Yearly"; +$lang['general_word_monthly'] = "Monthly"; $lang['general_word_days'] = "Days"; $lang['general_word_colors'] = "Colores"; @@ -152,6 +156,8 @@ $lang['gen_hamradio_satellite_name'] = 'Nombre del Satélite'; $lang['gen_hamradio_satellite_mode'] = 'Modo del Satélite'; $lang['gen_hamradio_logbook'] = 'Libro de Guardia'; +$lang['gen_hamradio_active_logbook_hint'] = "Displaying all QSOs of station locations which are linked to this logbook"; +$lang['gen_hamradio_active_logbook'] = 'Active Logbook'; $lang['gen_hamradio_award'] = "Premio"; $lang['gen_hamradio_zones'] = 'Zonas'; diff --git a/application/language/spanish/menu_lang.php b/application/language/spanish/menu_lang.php index 2ada30808..369a67b2a 100644 --- a/application/language/spanish/menu_lang.php +++ b/application/language/spanish/menu_lang.php @@ -31,7 +31,6 @@ $lang['menu_days_with_qsos'] = 'Días con QSOs'; $lang['menu_timeline'] = 'Línea de Tiempo'; $lang['menu_accumulated_statistics'] = 'Estadísticas Acumuladas'; $lang['menu_timeplotter'] = 'Gráfico de Tiempo'; -$lang['menu_custom_maps'] = 'Mapas Personalizados'; $lang['menu_continents'] = 'Continentes'; $lang['menu_awards'] = 'Diplomas'; diff --git a/application/language/spanish/statistics_lang.php b/application/language/spanish/statistics_lang.php index 034e83168..bcb8a5649 100644 --- a/application/language/spanish/statistics_lang.php +++ b/application/language/spanish/statistics_lang.php @@ -58,3 +58,15 @@ $lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (contin $lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; $lang['statistics_dwq_no_current_streak'] = "No current streak found!"; +/* +* +* Accumulated Stats +* +*/ + +$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; +$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; +$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; +$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; + + diff --git a/application/language/swedish/export_lang.php b/application/language/swedish/export_lang.php index dd3d81f86..e6493ad5a 100644 --- a/application/language/swedish/export_lang.php +++ b/application/language/swedish/export_lang.php @@ -72,4 +72,5 @@ $lang['export_cabrillo_address_country'] = "Address Country"; $lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log."; $lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!"; +$lang['export_cfd_description'] = "Export of CFD-File for DARC-Toplist (See https://toplist.darc.de)"; diff --git a/application/language/swedish/general_words_lang.php b/application/language/swedish/general_words_lang.php index 5e90e0d3f..4f30b0e34 100644 --- a/application/language/swedish/general_words_lang.php +++ b/application/language/swedish/general_words_lang.php @@ -17,6 +17,7 @@ $lang['general_word_choose_file'] = 'Välj fil'; $lang['general_word_next'] = 'Next'; $lang['general_word_previous'] = 'Previous'; $lang['general_word_not_display'] = "Not display"; +$lang['general_word_show'] = "Show"; $lang['general_word_icon'] = "Icon"; $lang['general_word_cancel'] = "Cancel"; @@ -51,6 +52,9 @@ $lang['general_word_city'] = 'City'; $lang['general_word_total'] = 'Totalt'; $lang['general_word_day'] = "Day"; $lang['general_word_days'] = "Days"; +$lang['general_word_period'] = "Period"; +$lang['general_word_yearly'] = "Yearly"; +$lang['general_word_monthly'] = "Monthly"; $lang['general_word_year'] = 'I år'; $lang['general_word_month'] = 'Denna månad'; @@ -152,7 +156,9 @@ $lang['gen_hamradio_satellite_name'] = 'Satellitnamn'; $lang['gen_hamradio_satellite_mode'] = 'Satellite-mode'; $lang['gen_hamradio_award'] = "Award"; +$lang['gen_hamradio_active_logbook_hint'] = "Displaying all QSOs of station locations which are linked to this logbook"; $lang['gen_hamradio_logbook'] = 'Loggbok'; +$lang['gen_hamradio_active_logbook'] = 'Active Logbook'; $lang['gen_hamradio_zones'] = 'Zones'; $lang['gen_hamradio_cq_zone'] = 'CQ Zone'; diff --git a/application/language/swedish/menu_lang.php b/application/language/swedish/menu_lang.php index d149e5cae..c61bd650a 100644 --- a/application/language/swedish/menu_lang.php +++ b/application/language/swedish/menu_lang.php @@ -31,7 +31,6 @@ $lang['menu_days_with_qsos'] = 'Dagar med QSOs'; $lang['menu_timeline'] = 'Tidslinje'; $lang['menu_accumulated_statistics'] = 'Ackumulerad statistik'; $lang['menu_timeplotter'] = 'Tidplotter'; -$lang['menu_custom_maps'] = 'Anpassade kartor'; $lang['menu_continents'] = 'Kontinenter'; $lang['menu_awards'] = 'Awards'; diff --git a/application/language/swedish/statistics_lang.php b/application/language/swedish/statistics_lang.php index 054191326..936fd6e13 100644 --- a/application/language/swedish/statistics_lang.php +++ b/application/language/swedish/statistics_lang.php @@ -58,3 +58,15 @@ $lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (contin $lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; $lang['statistics_dwq_no_current_streak'] = "No current streak found!"; +/* +* +* Accumulated Stats +* +*/ + +$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; +$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; +$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; +$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; + + diff --git a/application/language/turkish/export_lang.php b/application/language/turkish/export_lang.php index dd3d81f86..e6493ad5a 100644 --- a/application/language/turkish/export_lang.php +++ b/application/language/turkish/export_lang.php @@ -72,4 +72,5 @@ $lang['export_cabrillo_address_country'] = "Address Country"; $lang['export_cabrillo_no_contests_in_log'] = "No contests were found in your log."; $lang['export_cabrillo_no_contests_for_stationlocation'] = "No contests were found for this station location!"; +$lang['export_cfd_description'] = "Export of CFD-File for DARC-Toplist (See https://toplist.darc.de)"; diff --git a/application/language/turkish/general_words_lang.php b/application/language/turkish/general_words_lang.php index bfe432b1d..581f5c804 100644 --- a/application/language/turkish/general_words_lang.php +++ b/application/language/turkish/general_words_lang.php @@ -17,6 +17,7 @@ $lang['general_word_next'] = 'Next'; $lang['general_word_previous'] = 'Previous'; $lang['general_word_cancel'] = "Cancel"; $lang['general_word_ok'] = "OK"; +$lang['general_word_show'] = "Show"; $lang['general_word_attention'] = "Attention"; $lang['general_word_enabled'] = "Enabled"; $lang['general_word_disabled'] = "Disabled"; @@ -51,6 +52,9 @@ $lang['general_word_year'] = 'Yıl'; $lang['general_word_month'] = 'Ay'; $lang['general_word_day'] = "Day"; $lang['general_word_days'] = "Days"; +$lang['general_word_period'] = "Period"; +$lang['general_word_yearly'] = "Yearly"; +$lang['general_word_monthly'] = "Monthly"; $lang['general_word_colors'] = "Colors"; $lang['general_word_light'] = "Light/Laser"; @@ -151,6 +155,8 @@ $lang['gen_hamradio_satellite_name'] = 'Uydu Adı'; $lang['gen_hamradio_satellite_mode'] = 'Uydu Modu'; $lang['gen_hamradio_logbook'] = 'Kayıt defteri'; +$lang['gen_hamradio_active_logbook'] = 'Active Logbook'; +$lang['gen_hamradio_active_logbook_hint'] = "Displaying all QSOs of station locations which are linked to this logbook"; $lang['gen_hamradio_award'] = "Award"; $lang['gen_hamradio_zones'] = 'Zones'; diff --git a/application/language/turkish/menu_lang.php b/application/language/turkish/menu_lang.php index 9da678ed4..e50b17ce3 100644 --- a/application/language/turkish/menu_lang.php +++ b/application/language/turkish/menu_lang.php @@ -31,7 +31,6 @@ $lang['menu_days_with_qsos'] = 'Days with QSOs'; $lang['menu_timeline'] = 'Timeline'; $lang['menu_accumulated_statistics'] = 'Accumulated Statistics'; $lang['menu_timeplotter'] = 'Timeplotter'; -$lang['menu_custom_maps'] = 'Custom Maps'; $lang['menu_continents'] = 'Continents'; $lang['menu_awards'] = 'Awards'; diff --git a/application/language/turkish/statistics_lang.php b/application/language/turkish/statistics_lang.php index c995c0f2a..a861bd426 100644 --- a/application/language/turkish/statistics_lang.php +++ b/application/language/turkish/statistics_lang.php @@ -58,3 +58,15 @@ $lang['statistics_dwq_current_streak_continuous_days'] = "Current streak (contin $lang['statistics_dwq_make_qso_to_extend_streak'] = "If you make a QSO today, you can continue to extend your streak... or else your current streak will be broken!"; $lang['statistics_dwq_no_current_streak'] = "No current streak found!"; +/* +* +* Accumulated Stats +* +*/ + +$lang['statistics_accumulated_worked_dxcc'] = "Accumulated Number of DXCCs worked"; +$lang['statistics_accumulated_worked_states'] = "Accumulated Number of States worked"; +$lang['statistics_accumulated_worked_iota'] = "Accumulated Number of IOTAs worked"; +$lang['statistics_accumulated_worked_cqzone'] = "Accumulated Number of CQ Zones worked"; + + diff --git a/application/libraries/EqslImporter.php b/application/libraries/EqslImporter.php index d84ad812e..7a057fce1 100644 --- a/application/libraries/EqslImporter.php +++ b/application/libraries/EqslImporter.php @@ -8,6 +8,7 @@ class EqslImporter private $callsign; private $qth_nickname; private $adif_file; + private $station_id; // CodeIgniter super-ojbect private $CI; @@ -26,24 +27,26 @@ class EqslImporter $this->adif_file = $adif_file; } - public function from_callsign_and_QTH($callsign, $qth, $upload_path) { + public function from_callsign_and_QTH($callsign, $qth, $upload_path, $station_id) { $this->init( $qth . " - " . $callsign, - self::safe_filepath($callsign, $qth, $upload_path) + self::safe_filepath($callsign, $qth, $upload_path, $station_id) ); $this->callsign = $callsign; $this->qth_nickname = $qth; + $this->station_id = $station_id; } - public function from_file($adif_file,$station_callsign) { + public function from_file($adif_file, $station_callsign, $station_id) { $this->init('ADIF upload', $adif_file); - $this->callsign=$station_callsign; + $this->callsign = $station_callsign; + $this->station_id = $station_id; } // generate a sanitized file name from a callsign and a QTH nickname - private static function safe_filepath($callsign, $qth, $upload_path) { - $eqsl_id = $callsign . '-' . $qth; + private static function safe_filepath($callsign, $qth, $upload_path, $station_id) { + $eqsl_id = sprintf('%s-%s_%03d', $callsign, $qth, $station_id); // Replace anything which isn't a word, whitespace, number or any of the following caracters -_~,;[](). with a '.' $eqsl_id = mb_ereg_replace("([^\w\s\d\-_~,;\[\]\(\).])", '.', $eqsl_id); @@ -53,7 +56,7 @@ class EqslImporter } // Download confirmed QSO from eQSL inbox and import them - public function fetch($password, $eqsl_force_from_date="") { + public function fetch($password, $eqsl_force_from_date = false) { if (empty($password) || empty($this->callsign)) { return $this->result('Missing username and/or password'); } @@ -137,7 +140,8 @@ class EqslImporter $query = $this->CI->db->query('SELECT eqsl_rcvd_mark FROM config'); $q = $query->row(); $config['eqsl_rcvd_mark'] = $q->eqsl_rcvd_mark; - $station_callsign=$this->callsign; + $station_callsign = $this->callsign; + $station_id = $this->station_id; $this->CI->adif_parser->load_from_file($this->adif_file); $this->CI->adif_parser->initialize(); @@ -156,14 +160,14 @@ class EqslImporter $record['qsl_sent'] = $config['eqsl_rcvd_mark']; } - $status = $this->CI->logbook_model->import_check($time_on, $record['call'], $record['band'], $record['mode'],$station_callsign); + $status = $this->CI->logbook_model->import_check($time_on, $record['call'], $record['band'], $record['mode'], $station_callsign, $station_id); $qsoid = 0; if ($status[0] == "Found") { $qsoid = $status[1]; - $dupe = $this->CI->eqslmethods_model->eqsl_dupe_check($time_on, $record['call'], $record['band'], $record['mode'],$config['eqsl_rcvd_mark'],$station_callsign); + $dupe = $this->CI->eqslmethods_model->eqsl_dupe_check($time_on, $record['call'], $record['band'], $record['mode'], $config['eqsl_rcvd_mark'], $station_callsign, $station_id); if ($dupe == false) { $updated += 1; - $eqsl_status = $this->CI->eqslmethods_model->eqsl_update($time_on, $record['call'], $record['band'], $record['mode'], $config['eqsl_rcvd_mark'],$station_callsign); + $eqsl_status = $this->CI->eqslmethods_model->eqsl_update($time_on, $record['call'], $record['band'], $record['mode'], $config['eqsl_rcvd_mark'], $station_callsign, $station_id); } else { $dupes += 1; $eqsl_status = "Already received an eQSL for this QSO."; diff --git a/application/libraries/Frequency.php b/application/libraries/Frequency.php index 7a30ae8c8..5578f50af 100644 --- a/application/libraries/Frequency.php +++ b/application/libraries/Frequency.php @@ -5,87 +5,108 @@ class Frequency { '160m'=>array( 'SSB'=>"1900000", 'DATA'=>"1838000", - 'CW'=>"1830000"), + 'CW'=>"1830000", + 'NOMINAL'=>"1.8"), '80m'=>array( 'SSB'=>"3700000", 'DATA'=>"3583000", - "CW"=>"3550000"), + "CW"=>"3550000", + "NOMINAL"=>"3.5"), '60m'=>array( 'SSB'=>"5330000", 'DATA'=>"5330000", - "CW"=>"5260000"), + "CW"=>"5260000", + "NOMINAL"=>"5"), '40m'=>array( 'SSB'=>"7100000", 'DATA'=>"7040000", - 'CW'=>"7020000"), + 'CW'=>"7020000", + 'NOMINAL'=>"7"), '30m'=>array( 'SSB'=>"10120000", 'DATA'=>"10145000", - 'CW'=>"10120000"), + 'CW'=>"10120000", + 'NOMINAL'=>"10"), '20m'=>array( 'SSB'=>"14200000", 'DATA'=>"14080000", - 'CW'=>"14020000"), + 'CW'=>"14020000", + 'NOMINAL'=>"14"), '17m'=>array( 'SSB'=>"18130000", 'DATA'=>"18105000", - 'CW'=>"18080000"), + 'CW'=>"18080000", + 'NOMINAL'=>"18"), '15m'=>array( 'SSB'=>"21300000", 'DATA'=>"21080000", - 'CW'=>"21020000"), + 'CW'=>"21020000", + 'NOMINAL'=>"21"), '12m'=>array( 'SSB'=>"24950000", 'DATA'=>"24925000", - 'CW'=>"24900000"), + 'CW'=>"24900000", + 'NOMINAL'=>"24"), '10m'=>array( 'SSB'=>"28300000", 'DATA'=>"28120000", - 'CW'=>"28050000"), + 'CW'=>"28050000", + 'NOMINAL'=>"28"), '6m'=>array( 'SSB'=>"50150000", 'DATA'=>"50230000", - 'CW'=>"50090000"), + 'CW'=>"50090000", + 'NOMINAL'=>"50"), '4m'=>array( 'SSB'=>"70200000", 'DATA'=>"70200000", - 'CW'=>"70200000"), + 'CW'=>"70200000", + 'NOMINAL'=>"70"), '2m'=>array( 'SSB'=>"144300000", 'DATA'=>"144370000", - 'CW'=>"144050000"), + 'CW'=>"144050000", + 'NOMINAL'=>"144"), '1.25m'=>array( 'SSB'=>"222100000", 'DATA'=>"222100000", - 'CW'=>"222100000"), + 'CW'=>"222100000", + 'NOMINAL'=>"222"), '70cm'=>array( 'SSB'=>"432200000", 'DATA'=>"432088000", - 'CW'=>"432050000"), + 'CW'=>"432050000", + 'NOMINAL'=>"433"), '33cm'=>array( 'SSB'=>"902100000", 'DATA'=>"902100000", - 'CW'=>"902100000"), + 'CW'=>"902100000", + 'NOMINAL'=>"902"), '23cm'=>array( 'SSB'=>"1296000000", 'DATA'=>"1296138000", - 'CW'=>"129600000"), + 'CW'=>"129600000", + 'NOMINAL'=>"1296"), '13cm'=>array( 'SSB'=>"2320800000", 'DATA'=>"2320800000", - 'CW'=>"2320800000"), + 'CW'=>"2320800000", + 'NOMINAL'=>"2400"), '9cm'=>array( 'SSB'=>"3410000000", 'DATA'=>"3410000000", - 'CW'=>"3400000000"), + 'CW'=>"3400000000", + 'NOMINAL'=>"3400"), '6cm'=>array( 'SSB'=>"5670000000", 'DATA'=>"5670000000", - 'CW'=>"5670000000"), + 'CW'=>"5670000000", + 'NOMINAL'=>"5670"), '3cm'=>array( 'SSB'=>"10225000000", 'DATA'=>"10225000000", - 'CW'=>"10225000000") + 'CW'=>"10225000000", + 'NOMINAL'=>"10225") ); /* Class to convert band and mode into a frequency in a format based on the specifications of the database table */ diff --git a/application/libraries/Paths.php b/application/libraries/Paths.php new file mode 100644 index 000000000..871ac6ad1 --- /dev/null +++ b/application/libraries/Paths.php @@ -0,0 +1,23 @@ +load->model('Eqsl_images'); + return $CI->Eqsl_images->get_imagePath(); + } + + // generic function for return Qsl path // + function getPathQsl() + { + $CI = &get_instance(); + $CI->load->model('Qsl_model'); + return $CI->Qsl_model->get_imagePath(); + } +} diff --git a/application/migrations/179_remove_dupidx_lotw.php b/application/migrations/179_remove_dupidx_lotw.php new file mode 100644 index 000000000..1b98759af --- /dev/null +++ b/application/migrations/179_remove_dupidx_lotw.php @@ -0,0 +1,20 @@ +db->query("SHOW INDEX FROM lotw_users WHERE Key_name = 'id'")->num_rows(); + if ($prefixes_index == 1) { + $this->db->query("ALTER TABLE lotw_users DROP INDEX id"); + } + } + + public function down(){ + $prefixes_index = $this->db->query("SHOW INDEX FROM lotw_users WHERE Key_name = 'id'")->num_rows(); + if ($prefixes_index == 0) { + $this->db->query("ALTER TABLE lotw_users ADD UNIQUE INDEX id (id)"); + } + } +} diff --git a/application/migrations/180_tag_1_1.php b/application/migrations/180_tag_1_1.php new file mode 100644 index 000000000..a0de3e699 --- /dev/null +++ b/application/migrations/180_tag_1_1.php @@ -0,0 +1,36 @@ +db->where('option_name', 'version'); + $this->db->update('options', array('option_value' => '1.1')); + + // Trigger Version Info Dialog + $this->db->where('option_type', 'version_dialog'); + $this->db->where('option_name', 'confirmed'); + $this->db->update('user_options', array('option_value' => 'false')); + + // Also set Version Dialog to "both" if only custom text is applied + $this->db->where('option_name', 'version_dialog'); + $this->db->where('option_value', 'custom_text'); + $this->db->update('options', array('option_value' => 'both')); + + + } + + public function down() + { + $this->db->where('option_name', 'version'); + $this->db->update('options', array('option_value' => '1.0')); + } +} \ No newline at end of file diff --git a/application/models/Accumulate_model.php b/application/models/Accumulate_model.php index fe4cfca90..63685108a 100644 --- a/application/models/Accumulate_model.php +++ b/application/models/Accumulate_model.php @@ -3,33 +3,41 @@ if (!defined('BASEPATH')) exit('No direct script access allowed'); class Accumulate_model extends CI_Model { - function get_accumulated_data($band, $award, $mode, $period) { - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + function get_accumulated_data($band, $award, $mode, $period) + { + $this->load->model('logbooks_model'); + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); if (!$logbooks_locations_array) { return array(); } - $location_list = "'".implode("','",$logbooks_locations_array)."'"; + $location_list = "'" . implode("','", $logbooks_locations_array) . "'"; switch ($award) { - case 'dxcc': $result = $this->get_accumulated_dxcc($band, $mode, $period, $location_list); break; - case 'was': $result = $this->get_accumulated_was($band, $mode, $period, $location_list); break; - case 'iota': $result = $this->get_accumulated_iota($band, $mode, $period, $location_list); break; - case 'waz': $result = $this->get_accumulated_waz($band, $mode, $period, $location_list); break; + case 'dxcc': + $result = $this->get_accumulated_dxcc($band, $mode, $period, $location_list); + break; + case 'was': + $result = $this->get_accumulated_was($band, $mode, $period, $location_list); + break; + case 'iota': + $result = $this->get_accumulated_iota($band, $mode, $period, $location_list); + break; + case 'waz': + $result = $this->get_accumulated_waz($band, $mode, $period, $location_list); + break; } return $result; } - function get_accumulated_dxcc($band, $mode, $period, $location_list) { + function get_accumulated_dxcc($band, $mode, $period, $location_list) + { if ($period == "year") { $sql = "select year(thcv.col_time_on) year"; - } - else if ($period == "month") { - $sql = "select date_format(col_time_on, '%Y%m') year"; + } else if ($period == "month") { + $sql = "select date_format(col_time_on, '%Y-%m') year"; } $sql .= ", coalesce(y.tot, 0) tot @@ -40,14 +48,13 @@ class Accumulate_model extends CI_Model if ($period == "year") { $sql .= "year(col_time_on)"; - } - else if ($period == "month") { - $sql .= "date_format(col_time_on, '%Y%m')"; + } else if ($period == "month") { + $sql .= "date_format(col_time_on, '%Y-%m')"; } $sql .= " year, col_dxcc - from " . $this->config->item('table_name') . - " where col_dxcc > 0 and station_id in (". $location_list . ")"; + from " . $this->config->item('table_name') . + " where col_dxcc > 0 and station_id in (" . $location_list . ")"; if ($band != 'All') { if ($band == 'SAT') { @@ -58,47 +65,45 @@ class Accumulate_model extends CI_Model } } - if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; - } - - $sql .= " order by year - ) x - where not exists (select 1 from " . $this->config->item('table_name') . " where"; - - if ($period == "year") { - $sql .= " year(col_time_on) < year";; - } - else if ($period == "month") { - $sql .= " date_format(col_time_on, '%Y%m') < year";; - } - - $sql .= " and col_dxcc = x.col_dxcc"; - - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } - if ($mode != 'All') { $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; } - $sql .= " and station_id in (". $location_list . ")) + $sql .= " order by year + ) x + where not exists (select 1 from " . $this->config->item('table_name') . " where"; + + if ($period == "year") { + $sql .= " year(col_time_on) < year";; + } else if ($period == "month") { + $sql .= " date_format(col_time_on, '%Y-%m') < year";; + } + + $sql .= " and col_dxcc = x.col_dxcc"; + + if ($band != 'All') { + if ($band == 'SAT') { + $sql .= " and col_prop_mode ='" . $band . "'"; + } else { + $sql .= " and col_prop_mode !='SAT'"; + $sql .= " and col_band ='" . $band . "'"; + } + } + + if ($mode != 'All') { + $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; + } + + $sql .= " and station_id in (" . $location_list . ")) group by year order by year"; if ($period == "year") { $sql .= " ) y on year(thcv.col_time_on) = y.year"; + } else if ($period == "month") { + $sql .= " ) y on date_format(col_time_on, '%Y-%m') = y.year"; } - else if ($period == "month") { - $sql .= " ) y on date_format(col_time_on, '%Y%m') = y.year"; - } - + $sql .= " where thcv.col_dxcc > 0"; if ($band != 'All') { @@ -111,19 +116,17 @@ class Accumulate_model extends CI_Model } if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; + $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; } - - $sql .= " and station_id in (". $location_list . ")"; + + $sql .= " and station_id in (" . $location_list . ")"; if ($period == "year") { $sql .= " group by year(thcv.col_time_on), y.tot order by year(thcv.col_time_on)"; - } - - else if ($period == "month") { - $sql .= " group by date_format(col_time_on, '%Y%m'), y.tot - order by date_format(col_time_on, '%Y%m')"; + } else if ($period == "month") { + $sql .= " group by date_format(col_time_on, '%Y-%m'), y.tot + order by date_format(col_time_on, '%Y-%m')"; } $query = $this->db->query($sql); @@ -131,7 +134,8 @@ class Accumulate_model extends CI_Model return $this->count_and_add_accumulated_total($query->result()); } - function count_and_add_accumulated_total($array) { + function count_and_add_accumulated_total($array) + { $counter = 0; for ($i = 0; $i < count($array); $i++) { $array[$i]->total = $array[$i]->tot + $counter; @@ -140,12 +144,12 @@ class Accumulate_model extends CI_Model return $array; } - function get_accumulated_was($band, $mode, $period, $location_list) { + function get_accumulated_was($band, $mode, $period, $location_list) + { if ($period == "year") { $sql = "select year(thcv.col_time_on) year"; - } - else if ($period == "month") { - $sql = "select date_format(col_time_on, '%Y%m') year"; + } else if ($period == "month") { + $sql = "select date_format(col_time_on, '%Y-%m') year"; } $sql .= ", coalesce(y.tot, 0) tot @@ -156,14 +160,13 @@ class Accumulate_model extends CI_Model if ($period == "year") { $sql .= "year(col_time_on)"; - } - else if ($period == "month") { - $sql .= "date_format(col_time_on, '%Y%m')"; + } else if ($period == "month") { + $sql .= "date_format(col_time_on, '%Y-%m')"; } $sql .= " year, col_state - from " . $this->config->item('table_name') . - " where station_id in (". $location_list . ")"; + from " . $this->config->item('table_name') . + " where station_id in (" . $location_list . ")"; if ($band != 'All') { if ($band == 'SAT') { @@ -174,35 +177,6 @@ class Accumulate_model extends CI_Model } } - if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; - } - - $sql .= " and COL_DXCC in ('291', '6', '110')"; - $sql .= " and COL_STATE in ('AK','AL','AR','AZ','CA','CO','CT','DE','FL','GA','HI','IA','ID','IL','IN','KS','KY','LA','MA','MD','ME','MI','MN','MO','MS','MT','NC','ND','NE','NH','NJ','NM','NV','NY','OH','OK','OR','PA','RI','SC','SD','TN','TX','UT','VA','VT','WA','WI','WV','WY')"; - - $sql .= " order by year - ) x - where not exists (select 1 from " . $this->config->item('table_name') . " where"; - - if ($period == "year") { - $sql .= " year(col_time_on) < year";; - } - else if ($period == "month") { - $sql .= " date_format(col_time_on, '%Y%m') < year";; - } - - $sql .= " and col_state = x.col_state"; - - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } - if ($mode != 'All') { $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; } @@ -210,18 +184,17 @@ class Accumulate_model extends CI_Model $sql .= " and COL_DXCC in ('291', '6', '110')"; $sql .= " and COL_STATE in ('AK','AL','AR','AZ','CA','CO','CT','DE','FL','GA','HI','IA','ID','IL','IN','KS','KY','LA','MA','MD','ME','MI','MN','MO','MS','MT','NC','ND','NE','NH','NJ','NM','NV','NY','OH','OK','OR','PA','RI','SC','SD','TN','TX','UT','VA','VT','WA','WI','WV','WY')"; - $sql .= " and station_id in (". $location_list . ")) - group by year - order by year"; + $sql .= " order by year + ) x + where not exists (select 1 from " . $this->config->item('table_name') . " where"; if ($period == "year") { - $sql .= " ) y on year(thcv.col_time_on) = y.year"; + $sql .= " year(col_time_on) < year";; + } else if ($period == "month") { + $sql .= " date_format(col_time_on, '%Y-%m') < year";; } - else if ($period == "month") { - $sql .= " ) y on date_format(col_time_on, '%Y%m') = y.year"; - } - - $sql .= " where station_id in (". $location_list . ")"; + + $sql .= " and col_state = x.col_state"; if ($band != 'All') { if ($band == 'SAT') { @@ -233,17 +206,43 @@ class Accumulate_model extends CI_Model } if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; + $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; } - + + $sql .= " and COL_DXCC in ('291', '6', '110')"; + $sql .= " and COL_STATE in ('AK','AL','AR','AZ','CA','CO','CT','DE','FL','GA','HI','IA','ID','IL','IN','KS','KY','LA','MA','MD','ME','MI','MN','MO','MS','MT','NC','ND','NE','NH','NJ','NM','NV','NY','OH','OK','OR','PA','RI','SC','SD','TN','TX','UT','VA','VT','WA','WI','WV','WY')"; + + $sql .= " and station_id in (" . $location_list . ")) + group by year + order by year"; + + if ($period == "year") { + $sql .= " ) y on year(thcv.col_time_on) = y.year"; + } else if ($period == "month") { + $sql .= " ) y on date_format(col_time_on, '%Y-%m') = y.year"; + } + + $sql .= " where station_id in (" . $location_list . ")"; + + if ($band != 'All') { + if ($band == 'SAT') { + $sql .= " and col_prop_mode ='" . $band . "'"; + } else { + $sql .= " and col_prop_mode !='SAT'"; + $sql .= " and col_band ='" . $band . "'"; + } + } + + if ($mode != 'All') { + $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; + } + if ($period == "year") { $sql .= " group by year(thcv.col_time_on), y.tot order by year(thcv.col_time_on)"; - } - - else if ($period == "month") { - $sql .= " group by date_format(col_time_on, '%Y%m'), y.tot - order by date_format(col_time_on, '%Y%m')"; + } else if ($period == "month") { + $sql .= " group by date_format(col_time_on, '%Y-%m'), y.tot + order by date_format(col_time_on, '%Y-%m')"; } $query = $this->db->query($sql); @@ -251,12 +250,12 @@ class Accumulate_model extends CI_Model return $this->count_and_add_accumulated_total($query->result()); } - function get_accumulated_iota($band, $mode, $period, $location_list) { + function get_accumulated_iota($band, $mode, $period, $location_list) + { if ($period == "year") { $sql = "select year(thcv.col_time_on) year"; - } - else if ($period == "month") { - $sql = "select date_format(col_time_on, '%Y%m') year"; + } else if ($period == "month") { + $sql = "select date_format(col_time_on, '%Y-%m') year"; } $sql .= ", coalesce(y.tot, 0) tot @@ -267,14 +266,13 @@ class Accumulate_model extends CI_Model if ($period == "year") { $sql .= "year(col_time_on)"; - } - else if ($period == "month") { - $sql .= "date_format(col_time_on, '%Y%m')"; + } else if ($period == "month") { + $sql .= "date_format(col_time_on, '%Y-%m')"; } $sql .= " year, col_iota - from " . $this->config->item('table_name') . - " where station_id in (". $location_list . ")"; + from " . $this->config->item('table_name') . + " where station_id in (" . $location_list . ")"; if ($band != 'All') { if ($band == 'SAT') { @@ -285,48 +283,21 @@ class Accumulate_model extends CI_Model } } - if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; - } - - $sql .= " order by year - ) x - where not exists (select 1 from " . $this->config->item('table_name') . " where"; - - if ($period == "year") { - $sql .= " year(col_time_on) < year";; - } - else if ($period == "month") { - $sql .= " date_format(col_time_on, '%Y%m') < year";; - } - - $sql .= " and col_iota = x.col_iota"; - - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } - if ($mode != 'All') { $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; } - $sql .= " and station_id in (". $location_list . ")) - group by year - order by year"; + $sql .= " order by year + ) x + where not exists (select 1 from " . $this->config->item('table_name') . " where"; if ($period == "year") { - $sql .= " ) y on year(thcv.col_time_on) = y.year"; + $sql .= " year(col_time_on) < year";; + } else if ($period == "month") { + $sql .= " date_format(col_time_on, '%Y-%m') < year";; } - else if ($period == "month") { - $sql .= " ) y on date_format(col_time_on, '%Y%m') = y.year"; - } - - $sql .= " where station_id in (". $location_list . ")"; + + $sql .= " and col_iota = x.col_iota"; if ($band != 'All') { if ($band == 'SAT') { @@ -338,17 +309,40 @@ class Accumulate_model extends CI_Model } if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; + $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; } - + + $sql .= " and station_id in (" . $location_list . ")) + group by year + order by year"; + + if ($period == "year") { + $sql .= " ) y on year(thcv.col_time_on) = y.year"; + } else if ($period == "month") { + $sql .= " ) y on date_format(col_time_on, '%Y-%m') = y.year"; + } + + $sql .= " where station_id in (" . $location_list . ")"; + + if ($band != 'All') { + if ($band == 'SAT') { + $sql .= " and col_prop_mode ='" . $band . "'"; + } else { + $sql .= " and col_prop_mode !='SAT'"; + $sql .= " and col_band ='" . $band . "'"; + } + } + + if ($mode != 'All') { + $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; + } + if ($period == "year") { $sql .= " group by year(thcv.col_time_on), y.tot order by year(thcv.col_time_on)"; - } - - else if ($period == "month") { - $sql .= " group by date_format(col_time_on, '%Y%m'), y.tot - order by date_format(col_time_on, '%Y%m')"; + } else if ($period == "month") { + $sql .= " group by date_format(col_time_on, '%Y-%m'), y.tot + order by date_format(col_time_on, '%Y-%m')"; } $query = $this->db->query($sql); @@ -356,12 +350,12 @@ class Accumulate_model extends CI_Model return $this->count_and_add_accumulated_total($query->result()); } - function get_accumulated_waz($band, $mode, $period, $location_list) { + function get_accumulated_waz($band, $mode, $period, $location_list) + { if ($period == "year") { $sql = "select year(thcv.col_time_on) year"; - } - else if ($period == "month") { - $sql = "select date_format(col_time_on, '%Y%m') year"; + } else if ($period == "month") { + $sql = "select date_format(col_time_on, '%Y-%m') year"; } $sql .= ", coalesce(y.tot, 0) tot @@ -372,14 +366,13 @@ class Accumulate_model extends CI_Model if ($period == "year") { $sql .= "year(col_time_on)"; - } - else if ($period == "month") { - $sql .= "date_format(col_time_on, '%Y%m')"; + } else if ($period == "month") { + $sql .= "date_format(col_time_on, '%Y-%m')"; } $sql .= " year, col_cqz - from " . $this->config->item('table_name') . - " where station_id in (". $location_list . ")"; + from " . $this->config->item('table_name') . + " where station_id in (" . $location_list . ")"; if ($band != 'All') { if ($band == 'SAT') { @@ -390,48 +383,21 @@ class Accumulate_model extends CI_Model } } - if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; - } - - $sql .= " order by year - ) x - where not exists (select 1 from " . $this->config->item('table_name') . " where"; - - if ($period == "year") { - $sql .= " year(col_time_on) < year";; - } - else if ($period == "month") { - $sql .= " date_format(col_time_on, '%Y%m') < year";; - } - - $sql .= " and col_cqz = x.col_cqz"; - - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } - if ($mode != 'All') { $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; } - $sql .= " and station_id in (". $location_list . ")) - group by year - order by year"; + $sql .= " order by year + ) x + where not exists (select 1 from " . $this->config->item('table_name') . " where"; if ($period == "year") { - $sql .= " ) y on year(thcv.col_time_on) = y.year"; + $sql .= " year(col_time_on) < year";; + } else if ($period == "month") { + $sql .= " date_format(col_time_on, '%Y-%m') < year";; } - else if ($period == "month") { - $sql .= " ) y on date_format(col_time_on, '%Y%m') = y.year"; - } - - $sql .= " where station_id in (". $location_list . ")"; + + $sql .= " and col_cqz = x.col_cqz"; if ($band != 'All') { if ($band == 'SAT') { @@ -443,21 +409,44 @@ class Accumulate_model extends CI_Model } if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; + $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; } - + + $sql .= " and station_id in (" . $location_list . ")) + group by year + order by year"; + + if ($period == "year") { + $sql .= " ) y on year(thcv.col_time_on) = y.year"; + } else if ($period == "month") { + $sql .= " ) y on date_format(col_time_on, '%Y-%m') = y.year"; + } + + $sql .= " where station_id in (" . $location_list . ")"; + + if ($band != 'All') { + if ($band == 'SAT') { + $sql .= " and col_prop_mode ='" . $band . "'"; + } else { + $sql .= " and col_prop_mode !='SAT'"; + $sql .= " and col_band ='" . $band . "'"; + } + } + + if ($mode != 'All') { + $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; + } + if ($period == "year") { $sql .= " group by year(thcv.col_time_on), y.tot order by year(thcv.col_time_on)"; - } - - else if ($period == "month") { - $sql .= " group by date_format(col_time_on, '%Y%m'), y.tot - order by date_format(col_time_on, '%Y%m')"; + } else if ($period == "month") { + $sql .= " group by date_format(col_time_on, '%Y-%m'), y.tot + order by date_format(col_time_on, '%Y-%m')"; } $query = $this->db->query($sql); return $this->count_and_add_accumulated_total($query->result()); } -} \ No newline at end of file +} diff --git a/application/models/Api_model.php b/application/models/Api_model.php index 45931e564..1677ab9e7 100644 --- a/application/models/Api_model.php +++ b/application/models/Api_model.php @@ -20,19 +20,6 @@ class API_Model extends CI_Model { return $query->num_rows(); } - function ClaimAllAPIKeys($id = NULL) { - // if $id is empty then use session user_id - if (empty($id)) { - // Get the first USER ID from user table in the database - $id = $this->db->get("users")->row()->user_id; - } - - $data = array( - 'user_id' => $id, - ); - - $this->db->update('api', $data); - } function key_description($key) { $this->db->where('user_id', $this->session->userdata('user_id')); diff --git a/application/models/Distances_model.php b/application/models/Distances_model.php index 3aa17c0c0..0e66b17cc 100644 --- a/application/models/Distances_model.php +++ b/application/models/Distances_model.php @@ -162,7 +162,7 @@ class Distances_model extends CI_Model 'Callsign' => '', 'Grid' => '', 'Distance' => '', - 'Qsos' => '', + 'Qsos' => 0, 'Grids' => '' ); @@ -171,8 +171,8 @@ class Distances_model extends CI_Model $bearingdistance = $this->qra->distance($stationgrid, $qso['grid'], $measurement_base); if ($bearingdistance != $qso['COL_DISTANCE']) { $data = array('COL_DISTANCE' => $bearingdistance); - $this->db->where('COL_PRIMARY_KEY', $qso['COL_PRIMARY_KEY']); - $this->db->update($this->config->item('table_name'), $data); + $this->db->where('COL_PRIMARY_KEY', $qso['COL_PRIMARY_KEY']); + $this->db->update($this->config->item('table_name'), $data); } $arrayplacement = (int)($bearingdistance / 50); // Resolution is 50, calculates where to put result in array if ($bearingdistance > $qrb['Distance']) { // Saves the longest QSO @@ -205,8 +205,11 @@ class Distances_model extends CI_Model * Returns: bool */ function valid_locator ($loc) { - $regex = '^[A-R]{2}[0-9]{2}[A-X]{2}$'; - if (preg_match("%{$regex}%i", $loc)) { + $loc = strtoupper($loc); + if (strlen($loc) == 4) $loc .= "LL"; // Only 4 Chars? Fill with center "LL" as only A-R allowed + if (strlen($loc) == 6) $loc .= "55"; // Only 6 Chars? Fill with center "55" + if (strlen($loc) == 8) $loc .= "LL"; // Only 8 Chars? Fill with center "LL" as only A-R allowed + if (preg_match('/^[A-R]{2}[0-9]{2}[A-X]{2}[0-9]{2}[A-X]{2}$/', $loc)) { return true; } else { @@ -214,7 +217,7 @@ class Distances_model extends CI_Model } } - /* + /* * Used to fetch QSOs from the logbook in the awards */ public function qso_details($distance, $band, $sat){ diff --git a/application/models/Dxcc.php b/application/models/Dxcc.php index 297803734..ada40f4df 100644 --- a/application/models/Dxcc.php +++ b/application/models/Dxcc.php @@ -3,11 +3,10 @@ class DXCC extends CI_Model { /** - * Function: mostactive - * Information: Returns the most active band - **/ - function info($callsign) - { + * Function: mostactive + * Information: Returns the most active band + **/ + function info($callsign) { $exceptions = $this->db->query(' SELECT * FROM `dxcc_exceptions` @@ -15,11 +14,9 @@ class DXCC extends CI_Model { LIMIT 1 '); - if ($exceptions->num_rows() > 0) - { + if ($exceptions->num_rows() > 0) { return $exceptions; } else { - $query = $this->db->query(' SELECT * FROM dxcc_entities @@ -32,10 +29,10 @@ class DXCC extends CI_Model { } } - function search(){ - print_r($this->input->get()); - return; - } + function search(){ + print_r($this->input->get()); + return; + } function empty_table($table) { $this->db->empty_table($table); @@ -52,9 +49,14 @@ class DXCC extends CI_Model { /* * Fetches a list of all current dxcc's (non-deleted) */ - function list_current() { + function list_current($orderer = 'name') { $this->db->where('end', null); - $this->db->order_by('name', 'ASC'); + + if ($orderer == 'name') { + $this->db->order_by('name', 'ASC'); + } elseif ($orderer == 'prefix') { + $this->db->order_by('prefix', 'ASC'); + } return $this->db->get('dxcc_entities'); } @@ -132,8 +134,7 @@ class DXCC extends CI_Model { if (isset($dxccMatrix)) { return $dxccMatrix; - } - else { + } else { return 0; } } @@ -173,39 +174,32 @@ class DXCC extends CI_Model { select col_dxcc from ".$this->config->item('table_name')." thcv where station_id in (" . $location_list . ") and col_dxcc > 0"; - $sql .= $this->addBandToQuery($band); - if ($postdata['mode'] != 'All') { $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; } - $sql .= " group by col_dxcc ) x on dxcc_entities.adif = x.col_dxcc";; - if ($postdata['includedeleted'] == NULL) { $sql .= " and dxcc_entities.end is null"; } - $sql .= $this->addContinentsToQuery($postdata); - $query = $this->db->query($sql); - return $query->result(); } function addBandToQuery($band) { - $sql = ''; - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } - return $sql; - } + $sql = ''; + if ($band != 'All') { + if ($band == 'SAT') { + $sql .= " and col_prop_mode ='" . $band . "'"; + } else { + $sql .= " and col_prop_mode !='SAT'"; + $sql .= " and col_band ='" . $band . "'"; + } + } + return $sql; + } function fetchDxcc($postdata) { $CI =& get_instance(); @@ -219,7 +213,7 @@ class DXCC extends CI_Model { $location_list = "'".implode("','",$logbooks_locations_array)."'"; $sql = "select adif, prefix, name, date(end) Enddate, date(start) Startdate, lat, `long` - from dxcc_entities"; + from dxcc_entities"; if ($postdata['notworked'] == NULL) { $sql .= " join (select col_dxcc from " . $this->config->item('table_name') . " where station_id in (" . $location_list . ") and col_dxcc > 0"; @@ -227,8 +221,7 @@ class DXCC extends CI_Model { if ($postdata['band'] != 'All') { if ($postdata['band'] == 'SAT') { $sql .= " and col_prop_mode ='" . $postdata['band'] . "'"; - } - else { + } else { $sql .= " and col_prop_mode !='SAT'"; $sql .= " and col_band ='" . $postdata['band'] . "'"; } @@ -257,12 +250,11 @@ class DXCC extends CI_Model { function getDxccWorked($location_list, $postdata) { $sql = "SELECT adif as dxcc FROM dxcc_entities - join ( - select col_dxcc - from ".$this->config->item('table_name')." thcv - where station_id in (" . $location_list . - ") and col_dxcc > 0"; - + join ( + select col_dxcc + from ".$this->config->item('table_name')." thcv + where station_id in (" . $location_list . + ") and col_dxcc > 0"; $sql .= $this->addBandToQuery($postdata['band']); if ($postdata['mode'] != 'All') { @@ -270,7 +262,6 @@ class DXCC extends CI_Model { } $sql .= " and not exists (select 1 from ".$this->config->item('table_name')." where station_id in (". $location_list .") and col_dxcc = thcv.col_dxcc and col_dxcc > 0"; - $sql .= $this->addBandToQuery($postdata['band']); if ($postdata['mode'] != 'All') { @@ -278,31 +269,27 @@ class DXCC extends CI_Model { } $sql .= $this->addQslToQuery($postdata); - $sql .= ')'; - $sql .= " group by col_dxcc - ) ll on dxcc_entities.adif = ll.col_dxcc - where 1=1"; + ) ll on dxcc_entities.adif = ll.col_dxcc + where 1=1"; if ($postdata['includedeleted'] == NULL) { $sql .= " and dxcc_entities.end is null"; } $sql .= $this->addContinentsToQuery($postdata); - $query = $this->db->query($sql); - return $query->result(); } function getDxccConfirmed($location_list, $postdata) { $sql = "SELECT adif as dxcc FROM dxcc_entities - join ( - select col_dxcc - from ".$this->config->item('table_name')." thcv - where station_id in (". $location_list . - ") and col_dxcc > 0"; + join ( + select col_dxcc + from ".$this->config->item('table_name')." thcv + where station_id in (". $location_list . + ") and col_dxcc > 0"; $sql .= $this->addBandToQuery($postdata['band']); @@ -313,8 +300,8 @@ class DXCC extends CI_Model { $sql .= $this->addQslToQuery($postdata); $sql .= " group by col_dxcc - ) ll on dxcc_entities.adif = ll.col_dxcc - where 1=1"; + ) ll on dxcc_entities.adif = ll.col_dxcc + where 1=1"; if ($postdata['includedeleted'] == NULL) { $sql .= " and dxcc_entities.end is null"; @@ -394,8 +381,7 @@ class DXCC extends CI_Model { /* * Function gets worked and confirmed summary on each band on the active stationprofile */ - function get_dxcc_summary($bands, $postdata) - { + function get_dxcc_summary($bands, $postdata) { $CI =& get_instance(); $CI->load->model('logbooks_model'); $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); @@ -422,8 +408,7 @@ class DXCC extends CI_Model { return $dxccSummary; } - function getSummaryByBand($band, $postdata, $location_list) - { + function getSummaryByBand($band, $postdata, $location_list) { $sql = "SELECT count(distinct thcv.col_dxcc) as count FROM " . $this->config->item('table_name') . " thcv"; $sql .= " join dxcc_entities d on thcv.col_dxcc = d.adif"; @@ -435,11 +420,11 @@ class DXCC extends CI_Model { $this->load->model('bands'); $bandslots = $this->bands->get_worked_bands('dxcc'); - + $bandslots_list = "'".implode("','",$bandslots)."'"; - + $sql .= " and thcv.col_band in (" . $bandslots_list . ")" . - " and thcv.col_prop_mode !='SAT'"; + " and thcv.col_prop_mode !='SAT'"; } else { $sql .= " and thcv.col_prop_mode !='SAT'"; $sql .= " and thcv.col_band ='" . $band . "'"; @@ -460,8 +445,7 @@ class DXCC extends CI_Model { return $query->result(); } - function getSummaryByBandConfirmed($band, $postdata, $location_list) - { + function getSummaryByBandConfirmed($band, $postdata, $location_list) { $sql = "SELECT count(distinct thcv.col_dxcc) as count FROM " . $this->config->item('table_name') . " thcv"; $sql .= " join dxcc_entities d on thcv.col_dxcc = d.adif"; @@ -473,11 +457,11 @@ class DXCC extends CI_Model { $this->load->model('bands'); $bandslots = $this->bands->get_worked_bands('dxcc'); - + $bandslots_list = "'".implode("','",$bandslots)."'"; - + $sql .= " and thcv.col_band in (" . $bandslots_list . ")" . - " and thcv.col_prop_mode !='SAT'"; + " and thcv.col_prop_mode !='SAT'"; } else { $sql .= " and thcv.col_prop_mode !='SAT'"; $sql .= " and thcv.col_band ='" . $band . "'"; @@ -489,7 +473,7 @@ class DXCC extends CI_Model { $sql .= $this->addQslToQuery($postdata); - + if ($postdata['includedeleted'] == NULL) { $sql .= " and d.end is null"; } @@ -501,8 +485,7 @@ class DXCC extends CI_Model { return $query->result(); } - function lookup_country($country) - { + function lookup_country($country) { $query = $this->db->query(' SELECT * FROM dxcc_entities diff --git a/application/models/Eqsl_images.php b/application/models/Eqsl_images.php index dcd160922..92e0c5ad9 100644 --- a/application/models/Eqsl_images.php +++ b/application/models/Eqsl_images.php @@ -35,6 +35,27 @@ class Eqsl_images extends CI_Model { return $this->db->get('eQSL_images'); } + // return path of eQsl file : u=url / p=real path // + function get_imagePath($pathorurl='u') { + $eqsl_dir = "eqsl_card"; + // test if new folder directory exist // + $userdata_dir = $this->config->item('userdata'); + if (isset($userdata_dir)) { + if (!file_exists(realpath(APPPATH.'../').'/'.$userdata_dir)) { + mkdir(realpath(APPPATH.'../').'/'.$userdata_dir, 0755, true); + } + if (!file_exists(realpath(APPPATH.'../').'/'.$userdata_dir.'/'.$eqsl_dir)) { + mkdir(realpath(APPPATH.'../').'/'.$userdata_dir.'/'.$eqsl_dir, 0755, true); + } + if ($pathorurl=='u') { + return $userdata_dir.'/'.$eqsl_dir; + } else { + return realpath(APPPATH.'../').'/'.$userdata_dir.'/'.$eqsl_dir; + } + } else { + return 'images/eqsl_card_images'; + } + } } ?> diff --git a/application/models/Eqslmethods_model.php b/application/models/Eqslmethods_model.php index 13e05dc64..4d782f5b5 100644 --- a/application/models/Eqslmethods_model.php +++ b/application/models/Eqslmethods_model.php @@ -122,7 +122,7 @@ class Eqslmethods_model extends CI_Model { $this->db->where('eqslqthnickname IS NOT NULL'); $this->db->where('eqslqthnickname !=', ''); $this->db->from('station_profile'); - $this->db->select('station_callsign, eqslqthnickname'); + $this->db->select('station_callsign, eqslqthnickname, station_id'); $this->db->distinct(TRUE); return $this->db->get(); @@ -156,9 +156,10 @@ class Eqslmethods_model extends CI_Model { } // Update a QSO with eQSL QSL info - // We could also probably use this use this: https://eqsl.cc/qslcard/VerifyQSO.txt + // We could also probably use this: + // https://eqsl.cc/qslcard/VerifyQSO.txt // https://www.eqsl.cc/qslcard/ImportADIF.txt - function eqsl_update($datetime, $callsign, $band, $mode, $qsl_status,$station_callsign) { + function eqsl_update($datetime, $callsign, $band, $mode, $qsl_status, $station_callsign, $station_id) { $data = array( 'COL_EQSL_QSLRDATE' => date('Y-m-d H:i:s'), // eQSL doesn't give us a date, so let's use current 'COL_EQSL_QSL_RCVD' => $qsl_status @@ -170,6 +171,7 @@ class Eqslmethods_model extends CI_Model { $this->db->where('COL_STATION_CALLSIGN', $station_callsign); $this->db->where('COL_BAND', $band); $this->db->where('COL_MODE', $mode); + $this->db->where('station_id', $station_id); $this->db->update($this->config->item('table_name'), $data); @@ -177,7 +179,7 @@ class Eqslmethods_model extends CI_Model { } // Determine if we've already received an eQSL for this QSO - function eqsl_dupe_check($datetime, $callsign, $band, $mode, $qsl_status,$station_callsign) { + function eqsl_dupe_check($datetime, $callsign, $band, $mode, $qsl_status, $station_callsign, $station_id) { $this->db->select('COL_EQSL_QSLRDATE'); $this->db->where('COL_TIME_ON >= DATE_ADD(DATE_FORMAT("'.$datetime.'", \'%Y-%m-%d %H:%i\' ), INTERVAL -15 MINUTE )'); $this->db->where('COL_TIME_ON <= DATE_ADD(DATE_FORMAT("'.$datetime.'", \'%Y-%m-%d %H:%i\' ), INTERVAL 15 MINUTE )'); @@ -186,6 +188,7 @@ class Eqslmethods_model extends CI_Model { $this->db->where('COL_MODE', $mode); $this->db->where('COL_STATION_CALLSIGN', $station_callsign); $this->db->where('COL_EQSL_QSL_RCVD', $qsl_status); + $this->db->where('station_id', $station_id); $this->db->limit(1); $query = $this->db->get($this->config->item('table_name')); diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 75dd2cee3..324530e8f 100755 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -284,15 +284,15 @@ class Logbook_model extends CI_Model { $data['COL_QRZCOM_QSO_UPLOAD_STATUS'] = 'N'; } - $data['COL_MY_CITY'] = strtoupper(trim($station['station_city'])); - $data['COL_MY_IOTA'] = strtoupper(trim($station['station_iota'])); - $data['COL_MY_SOTA_REF'] = strtoupper(trim($station['station_sota'])); - $data['COL_MY_WWFF_REF'] = strtoupper(trim($station['station_wwff'])); - $data['COL_MY_POTA_REF'] = $station['station_pota'] == null ? '' : strtoupper(trim($station['station_pota'])); + $data['COL_MY_IOTA'] = $station['station_iota'] ? strtoupper(trim($station['station_iota'])) : ''; + $data['COL_MY_SOTA_REF'] = $station['station_sota'] ? strtoupper(trim($station['station_sota'])) : ''; + $data['COL_MY_WWFF_REF'] = $station['station_wwff'] ? strtoupper(trim($station['station_wwff'])) : ''; + $data['COL_MY_POTA_REF'] = $station['station_pota'] ? strtoupper(trim($station['station_pota'])) : ''; $data['COL_STATION_CALLSIGN'] = strtoupper(trim($station['station_callsign'])); + $data['COL_MY_CITY'] = strtoupper(trim($station['station_city'])); $data['COL_MY_DXCC'] = strtoupper(trim($station['station_dxcc'])); - $data['COL_MY_COUNTRY'] = strtoupper(trim($station['station_country'])); + $data['COL_MY_COUNTRY'] = strtoupper(trim($station['station_country'] ?? '')); $data['COL_MY_CNTY'] = strtoupper(trim($station['station_cnty'])); $data['COL_MY_CQ_ZONE'] = strtoupper(trim($station['station_cq'])); $data['COL_MY_ITU_ZONE'] = strtoupper(trim($station['station_itu'])); @@ -547,24 +547,30 @@ class Logbook_model extends CI_Model { return $this->db->get($this->config->item('table_name')); } - public function get_callsigns($callsign){ - $this->db->select('COL_CALL'); - $this->db->distinct(); - $this->db->like('COL_CALL', $callsign); + public function get_callsigns($callsign){ + $this->load->model('logbooks_model'); + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + $this->db->select('COL_CALL'); + $this->db->distinct(); + $this->db->like('COL_CALL', $callsign); + $this->db->where_in('station_id', $logbooks_locations_array); - return $this->db->get($this->config->item('table_name')); + return $this->db->get($this->config->item('table_name')); - } + } - public function get_dok($callsign){ - $this->db->select('COL_DARC_DOK'); - $this->db->where('COL_CALL', $callsign); - $this->db->order_by("COL_TIME_ON", "desc"); - $this->db->limit(1); + public function get_dok($callsign){ + $this->load->model('logbooks_model'); + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + $this->db->select('COL_DARC_DOK'); + $this->db->where('COL_CALL', $callsign); + $this->db->where_in('station_id', $logbooks_locations_array); + $this->db->order_by("COL_TIME_ON", "desc"); + $this->db->limit(1); - return $this->db->get($this->config->item('table_name')); + return $this->db->get($this->config->item('table_name')); - } + } function add_qso($data, $skipexport = false, $batchmode = false) { @@ -1038,6 +1044,12 @@ class Logbook_model extends CI_Model { $station_profile=$this->stations->profile_clean($stationId); $stationCallsign=$station_profile->station_callsign; + $iotaRef = $station_profile->station_iota ?? ''; + $sotaRef = $station_profile->station_sota ?? ''; + $wwffRef = $station_profile->station_wwff ?? ''; + $potaRef = $station_profile->station_pota ?? ''; + $sig = $station_profile->station_sig ?? ''; + $sigInfo = $station_profile->station_sig_info ?? ''; $mode = $this->get_main_mode_if_submode($this->input->post('mode')); if ($mode == null) { @@ -1216,7 +1228,13 @@ class Logbook_model extends CI_Model { 'COL_STATION_CALLSIGN' => $stationCallsign, 'COL_OPERATOR' => $this->input->post('operator_callsign'), 'COL_STATE' =>$this->input->post('usa_state'), - 'COL_CNTY' => $uscounty + 'COL_CNTY' => $uscounty, + 'COL_MY_IOTA' => $iotaRef, + 'COL_MY_SOTA_REF' => $sotaRef, + 'COL_MY_WWFF_REF' => $wwffRef, + 'COL_MY_POTA_REF' => $potaRef, + 'COL_MY_SIG' => $sig, + 'COL_MY_SIG_INFO' => $sigInfo ); if ($this->exists_hrdlog_credentials($data['station_id'])) { @@ -2103,6 +2121,57 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray = return $query; } + function cfd_get_all_qsos($fromdate, $todate) { + $this->load->model('logbooks_model'); + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + + // If date is set, we add it to the where-statement + if ($fromdate ?? ''!= "") { + $from=" AND date(q.COL_TIME_ON) >= '".$fromdate."'"; + } else { + $from=""; + } + if ($todate ?? '' != "") { + $till=" AND date(q.COL_TIME_ON) <= '".$todate."'"; + } else { + $till=''; + } + + $location_list = "'".implode("','",$logbooks_locations_array)."'"; + + $sql="SELECT + dx.prefix,dx.name, + CASE + WHEN q.col_mode = 'CW' THEN 'C' + WHEN mo.qrgmode = 'DATA' THEN 'R' + WHEN mo.qrgmode = 'SSB' THEN 'F' + ELSE mo.qrgmode + END AS mode,q.col_band as band, + COUNT(1) as cnfmd + FROM ".$this->config->item('table_name')." q + INNER JOIN + dxcc_entities dx ON (dx.adif = q.COL_DXCC) + INNER JOIN + adif_modes mo ON (mo.mode = q.COL_MODE) + inner join bands b on (b.band=q.COL_BAND) + WHERE + (q.COL_QSL_RCVD = 'Y' + OR q.COL_LOTW_QSL_RCVD = 'Y' + OR q.COL_EQSL_QSL_RCVD = 'Y') + AND q.station_id in (".$location_list.") + AND (b.bandgroup='hf' or b.band = '6m') ".($from ?? '')." ".($till ?? '')." + GROUP BY dx.prefix,dx.name , CASE + WHEN q.col_mode = 'CW' THEN 'C' + WHEN mo.qrgmode = 'DATA' THEN 'R' + WHEN mo.qrgmode = 'SSB' THEN 'F' + ELSE mo.qrgmode + END,q.COL_BAND order by dx.prefix asc, q.col_band desc"; + + $query = $this->db->query($sql); + return $query; + + } + function totals_year() { $this->load->model('logbooks_model'); @@ -2981,7 +3050,7 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray = } /* Used to check if the qso is already in the database */ - function import_check($datetime, $callsign, $band, $mode, $station_callsign) { + function import_check($datetime, $callsign, $band, $mode, $station_callsign, $station_id = null) { $mode=$this->get_main_mode_from_mode($mode); $this->db->select('COL_PRIMARY_KEY, COL_TIME_ON, COL_CALL, COL_BAND'); @@ -2992,6 +3061,10 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray = $this->db->where('COL_BAND', $band); $this->db->where('COL_MODE', $mode); + if(isset($station_id) && $station_id > 0) { + $this->db->where('station_id', $station_id); + } + $query = $this->db->get($this->config->item('table_name')); if ($query->num_rows() > 0) @@ -3768,10 +3841,12 @@ function lotw_last_qsl_date($user_id) { } $data['COL_MY_CITY'] = trim($row['station_city']); - $data['COL_MY_IOTA'] = strtoupper(trim($row['station_iota'])); - $data['COL_MY_SOTA_REF'] = strtoupper(trim($row['station_sota'])); - $data['COL_MY_WWFF_REF'] = strtoupper(trim($row['station_wwff'])); - $data['COL_MY_POTA_REF'] = $row['station_pota'] == null ? '' : strtoupper(trim($row['station_pota'])); + $data['COL_MY_IOTA'] = strtoupper(trim($row['station_iota'] ?? '')); + $data['COL_MY_SOTA_REF'] = strtoupper(trim($row['station_sota'] ?? '')); + $data['COL_MY_WWFF_REF'] = strtoupper(trim($row['station_wwff'] ?? '')); + $data['COL_MY_POTA_REF'] = strtoupper(trim($row['station_pota'] ?? '')); + $data['COL_MY_SIG'] = strtoupper(trim($row['station_sig'] ?? '')); + $data['COL_MY_SIG_INFO'] = strtoupper(trim($row['station_sig_info'] ?? '')); $data['COL_STATION_CALLSIGN'] = strtoupper(trim($row['station_callsign'])); $data['COL_MY_DXCC'] = strtoupper(trim($row['station_dxcc'])); @@ -4264,7 +4339,7 @@ function lotw_last_qsl_date($user_id) { return ''; } - + public function check_missing_dxcc_id($all){ // get all records with no COL_DXCC $this->db->select("COL_PRIMARY_KEY, COL_CALL, COL_TIME_ON, COL_TIME_OFF"); diff --git a/application/models/Note.php b/application/models/Note.php index 8f4a05fe1..95c11d7f3 100644 --- a/application/models/Note.php +++ b/application/models/Note.php @@ -52,20 +52,6 @@ class Note extends CI_Model { return $this->db->get('notes'); } - function ClaimAllNotes($id = NULL) { - // if $id is empty then use session user_id - if (empty($id)) { - // Get the first USER ID from user table in the database - $id = $this->db->get("users")->row()->user_id; - } - - $data = array( - 'user_id' => $id, - ); - - $this->db->update('notes', $data); - } - function CountAllNotes() { // count all notes $this->db->where('user_id =', NULL); diff --git a/application/models/Qsl_model.php b/application/models/Qsl_model.php index 1fdc317b0..4a6e6f0d4 100644 --- a/application/models/Qsl_model.php +++ b/application/models/Qsl_model.php @@ -127,4 +127,26 @@ class Qsl_model extends CI_Model { return $this->db->insert_id(); } + + // return path of Qsl file : u=url / p=real path // + function get_imagePath($pathorurl='u') { + $qsl_dir = "qsl_card"; + // test if new folder directory exist // + $userdata_dir = $this->config->item('userdata'); + if (isset($userdata_dir)) { + if (!file_exists(realpath(APPPATH.'../').'/'.$userdata_dir)) { + mkdir(realpath(APPPATH.'../').'/'.$userdata_dir, 0755, true); + } + if (!file_exists(realpath(APPPATH.'../').'/'.$userdata_dir.'/'.$qsl_dir)) { + mkdir(realpath(APPPATH.'../').'/'.$userdata_dir.'/'.$qsl_dir, 0755, true); + } + if ($pathorurl=='u') { + return $userdata_dir.'/'.$qsl_dir; + } else { + return realpath(APPPATH.'../').'/'.$userdata_dir.'/'.$qsl_dir; + } + } else { + return 'assets/qslcard'; + } + } } diff --git a/application/models/Stations.php b/application/models/Stations.php index 645b5d389..abeb74eb5 100644 --- a/application/models/Stations.php +++ b/application/models/Stations.php @@ -193,35 +193,6 @@ class Stations extends CI_Model { $this->db->delete($this->config->item('table_name')); } - function claim_user($id) { - $data = array( - 'user_id' => $this->session->userdata('user_id'), - ); - - $this->db->where('station_id', $id); - $this->db->update('station_profile', $data); - } - - function ClaimAllStationLocations($id = NULL) { - // if $id is empty then use session user_id - if (empty($id)) { - // Get the first USER ID from user table in the database - $id = $this->db->get("users")->row()->user_id; - } - - $data = array( - 'user_id' => $id, - ); - - $this->db->update('station_profile', $data); - } - - function CountAllStationLocations() { - $this->db->where('user_id =', NULL); - $query = $this->db->get('station_profile'); - return $query->num_rows(); - } - function set_active($current, $new) { // Clean inputs $clean_current = $this->security->xss_clean($current); @@ -312,6 +283,7 @@ class Stations extends CI_Model { } public function reassign($id) { + // DANGEROUS Function. Do not let any User without Admin call this one!! // Clean ID $clean_id = $this->security->xss_clean($id); diff --git a/application/views/accumulate/index.php b/application/views/accumulate/index.php index 151361700..bdada2cde 100644 --- a/application/views/accumulate/index.php +++ b/application/views/accumulate/index.php @@ -1,99 +1,108 @@ +

- -
- -
- -
+ +
+ +
+ +
- -
- + + result() as $mode) { + if ($mode->submode == null) { + printf("", $mode->mode, $mode->mode); + } else { + printf("", $mode->submode, $mode->submode); } - ?> - + } + ?> + +
+
+ +
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ +
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
+ +
+
+ + +
+
+ +
+
- -
-
- -
+ +
+
+
+
- -
+ +
-
- +
\ No newline at end of file diff --git a/application/views/activated_gridmap/index.php b/application/views/activated_gridmap/index.php index 701d2f335..d34749b8e 100644 --- a/application/views/activated_gridmap/index.php +++ b/application/views/activated_gridmap/index.php @@ -26,19 +26,6 @@ float: left; margin: 0 8px 0 0; } -.coordinates { - justify-content: center; - align-items: stretch; -} -.cohidden { - display:none; -} -#latDeg, #lngDeg { - width: 170px; -} -#locator, #distance, #bearing { - width: 120px; -}
diff --git a/application/views/awards/gridmaster/index.php b/application/views/awards/gridmaster/index.php index 690e06a96..246301d5b 100644 --- a/application/views/awards/gridmaster/index.php +++ b/application/views/awards/gridmaster/index.php @@ -26,19 +26,6 @@ float: left; margin: 0 8px 0 0; } -.coordinates { - justify-content: center; - align-items: stretch; -} -.cohidden { - display:none; -} -#latDeg, #lngDeg { - width: 170px; -} -#locator, #distance, #bearing { - width: 120px; -}
diff --git a/application/views/cfd/index.php b/application/views/cfd/index.php new file mode 100644 index 000000000..597611d9e --- /dev/null +++ b/application/views/cfd/index.php @@ -0,0 +1,29 @@ +
+
+

CFD

+ +
+
+ +
+ +
+ +
+
+
+ + +
+ +
+ + +
+
+
+ +
+
+
+
diff --git a/application/views/debug/main.php b/application/views/debug/main.php index a0a9e86a8..592038655 100644 --- a/application/views/debug/main.php +++ b/application/views/debug/main.php @@ -165,17 +165,6 @@ - - - openssl - - - Installed - - Not Installed - - -
@@ -268,7 +257,66 @@
- + session->userdata('user_date_format')) { + // If Logged in and session exists + $custom_date_format = $this->session->userdata('user_date_format'); + } else { + // Get Default date format from /config/wavelog.php + $custom_date_format = $this->config->item('qso_date_format'); + } + ?> +
+
File download date
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileLast update
DXCC update from Club Logoptionslib->get_option('dxcc_clublog_update') ?? '') == '' ? '' : date($custom_date_format, strtotime($this->optionslib->get_option('dxcc_clublog_update') ?? '')) . ' ' . date("h:i", strtotime($this->optionslib->get_option('dxcc_clublog_update') ?? ''))) ?>Update
DOK file downloadoptionslib->get_option('dok_file_update') ?? '') == '' ? '' : date($custom_date_format, strtotime($this->optionslib->get_option('dok_file_update') ?? '')) . ' ' . date("h:i", strtotime($this->optionslib->get_option('dok_file_update') ?? ''))) ?>Update
LoTW users downloadoptionslib->get_option('lotw_users_update') ?? '') == '' ? '' : date($custom_date_format, strtotime($this->optionslib->get_option('lotw_users_update') ?? '')) . ' ' . date("h:i", strtotime($this->optionslib->get_option('lotw_users_update') ?? ''))) ?>Update
POTA file downloadoptionslib->get_option('pota_file_update') ?? '') == '' ? '' : date($custom_date_format, strtotime($this->optionslib->get_option('pota_file_update') ?? '')) . ' ' . date("h:i", strtotime($this->optionslib->get_option('pota_file_update') ?? ''))) ?>Update
SCP file downloadoptionslib->get_option('scp_update') ?? '') == '' ? '' : date($custom_date_format, strtotime($this->optionslib->get_option('scp_update') ?? '')) . ' ' . date("h:i", strtotime($this->optionslib->get_option('scp_update') ?? ''))) ?>Update
SOTA file downloadoptionslib->get_option('sota_file_update') ?? '') == '' ? '' : date($custom_date_format, strtotime($this->optionslib->get_option('sota_file_update') ?? '')) . ' ' . date("h:i", strtotime($this->optionslib->get_option('sota_file_update') ?? ''))) ?>Update
WWFF file downlaodoptionslib->get_option('wwff_file_update') ?? '') == '' ? '' : date($custom_date_format, strtotime($this->optionslib->get_option('wwff_file_update') ?? '')) . ' ' . date("h:i", strtotime($this->optionslib->get_option('wwff_file_update') ?? ''))) ?>Update
+
+
diff --git a/application/views/eqsl/import.php b/application/views/eqsl/import.php index c6e6c76dc..96a470f77 100644 --- a/application/views/eqsl/import.php +++ b/application/views/eqsl/import.php @@ -31,20 +31,18 @@

Upload the Exported ADIF file from eQSL from the Download Inbox page, to mark QSOs as confirmed on eQSL.

-

Important Log files must have the file type .adi

- -

Choose Station(location) eQSL File belongs to:

+

ImportantLog files must have the file type .adi

+ - -

- +
@@ -58,8 +56,7 @@
- -
+
diff --git a/application/views/gridmap/index.php b/application/views/gridmap/index.php index b6e7d3db9..5a6618656 100644 --- a/application/views/gridmap/index.php +++ b/application/views/gridmap/index.php @@ -26,19 +26,6 @@ float: left; margin: 0 8px 0 0; } -.coordinates { - justify-content: center; - align-items: stretch; -} -.cohidden { - display:none; -} -#latDeg, #lngDeg { - width: 170px; -} -#locator, #distance, #bearing { - width: 120px; -}
diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index 7ad9a8603..958961eb3 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -1054,29 +1054,6 @@ $($('#callsign')).on('keypress',function(e) { } }; - $(function() { - $('form').each(function() { - $(this).data('initialForm', $(this).serialize()); - }).submit(function(e) { - var formEl = this; - var changed = false; - $('form').each(function() { - if (this != formEl && $(this).data('initialForm') != $(this).serialize()) { - changed = true; - $(this).addClass('changed'); - } else { - $(this).removeClass('changed'); - } - }); - if (changed && !confirm('You have an unsaved QSO. Continue with QSO?')) { - e.preventDefault(); - } else { - $(window).unbind('beforeunload', catcher); - } - }); - $(window).bind('beforeunload', catcher); - }); - // Callsign always has focus on load $("#callsign").focus(); @@ -2383,9 +2360,11 @@ $(document).ready(function(){ - session->userdata('user_quicklog_enter') == 1) { ?> + - - - +
+ diff --git a/application/views/logbookadvanced/index.php b/application/views/logbookadvanced/index.php index 2d8f4fd94..0d1ed7870 100644 --- a/application/views/logbookadvanced/index.php +++ b/application/views/logbookadvanced/index.php @@ -5,7 +5,13 @@ * */ var custom_date_format = ""; +var lang_gen_hamradio_latitude = ''; +var lang_gen_hamradio_longitude = ''; +var lang_gen_hamradio_gridsquare = ''; +var lang_gen_hamradio_distance = ''; +var lang_gen_hamradio_bearing = ''; - filename .'" alt="QSL picture #'. $i++.'">'; + paths->getPathQsl() .'/' . $image->filename .'" alt="QSL picture #'. $i++.'">'; echo ''; } ?> diff --git a/application/views/map/custom_date.php b/application/views/map/custom_date.php deleted file mode 100644 index ecc255df2..000000000 --- a/application/views/map/custom_date.php +++ /dev/null @@ -1,99 +0,0 @@ -
-
-

logbook QSOs (Custom Date)

- - session->flashdata('notice')) { ?> - - - -
-
-
- - -
- -
- - -
-
- -
-
- - -
- - -
- - -
- -
- - -
-
- -
-
- -
-
- -
-
-
- -
- - -
- - \ No newline at end of file diff --git a/application/views/qslcard/qslcarousel.php b/application/views/qslcard/qslcarousel.php index 887b2a362..40d4d132d 100644 --- a/application/views/qslcard/qslcarousel.php +++ b/application/views/qslcard/qslcarousel.php @@ -24,7 +24,7 @@ echo ' active'; } echo '">'; - echo 'QSL picture #'. $i++.''; + echo 'QSL picture #'. $i++.''; echo ''; } ?> diff --git a/application/views/qso/index.php b/application/views/qso/index.php index 0b23caefd..251be9f18 100755 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -131,7 +131,7 @@
-
+
@@ -164,6 +164,10 @@ ?>
+
+ + +
@@ -236,11 +240,6 @@
-
- - -
-
@@ -559,7 +558,7 @@
- + @@ -569,6 +568,7 @@
+ - = 1) { ?> - - -
@@ -68,17 +60,11 @@ Active Station - = 1) { ?> - Reassign -
ID: station_id;?>qso_total;?> QSOs - COL_MY_WWFF_REF) { ?> + station_iota) { ?> - - + + - COL_MY_POTA_REF) { ?> + station_sota) { ?> + + + + + + + station_wwff) { ?> + + + + + + + station_pota) { ?> - + + + + + station_sig) { ?> + + + + + + + +
- user_id == "") { ?> - station_id; ?>" class="btn btn-outline-primary btn-sm"> Claim Ownership - station_id; ?>" title="Edit" class="btn btn-outline-primary btn-sm"> diff --git a/application/views/view_log/index.php b/application/views/view_log/index.php index 5cd0afa11..8ae47a94f 100644 --- a/application/views/view_log/index.php +++ b/application/views/view_log/index.php @@ -1,25 +1,25 @@

- session->flashdata('notice')) { ?> - + session->flashdata('notice')) { ?> +
- -optionslib->get_option('logbook_map') != "false") { ?> + +optionslib->get_option('logbook_map') != "false") { ?>
- load->view('view_log/partial/log_ajax') ?> + load->view('view_log/partial/log_ajax') ?> \ No newline at end of file diff --git a/application/views/view_log/qso.php b/application/views/view_log/qso.php index 29d17a34a..a30d5c1bd 100644 --- a/application/views/view_log/qso.php +++ b/application/views/view_log/qso.php @@ -504,17 +504,43 @@
COL_MY_WWFF_REF; ?>station_iota; ?>
station_sota; ?>
station_wwff; ?>
COL_MY_POTA_REF; ?>station_pota; ?>
station_sig; ?>
station_sig_info; ?>
@@ -607,9 +633,9 @@
eqsl_image_file != null) { - echo 'eQSL picture'; - } + if ($row->eqsl_image_file != null) { + echo 'eQSL picture'; + } ?>
- -
- - session->flashdata('message')) { ?> - -
-

session->flashdata('message'); ?>

-
- - -

- -

This guide is to help you get your installation configured to work with all the new features please follow it!

- - -
-
- File Change /index.php - Turn off debugging messages -
-
-

While some users love seeing errors even the development messages most don't so we recommend turning it off..

- -

Edit /index.php and find define('ENVIRONMENT', 'development'); and replace with

- - - define('ENVIRONMENT', 'production'); - -
-
- -
- - - config->item('auth_level')[3] != "Operator") { ?> -
-
- File Change /application/config/config.php - Changes -
-
-

As part of fully supporting multi-user, we recommend making some changes to the role names as shown below, "Operators" do not have the admin features.

- -

Edit /application/config/config.php and find $config['auth_level'] and replace the options with only the ones below.

- - - $config['auth_level'][3] = "Operator";
- $config['auth_level'][99] = "Administrator"; -
-
-
- -
- - -
-
Cronjob Refresher
-
-

Theres some new cronjobs to add with version 2.0.

- - - # Update the Wavelog installation every day at midnight
- 0 0 * * * /bin/bash -c "Full-Path-To-Bash-Script/wavelog.sh"
-
- # Upload QSOs to Club Log (ignore cron job if this integration is not required)
- 0 */6 * * * curl --silent /clublog/upload/username-with-clublog-login &>/dev/null
-
- # Upload QSOs to LoTW if certs have been provided every hour.
- 0 */1 * * * curl --silent /lotw/lotw_upload &>/dev/null
-
- # Upload QSOs to HRDLog.net Logbook (ignore cron job if this integration is not required)
- 0 */6 * * * curl --silent /hrdlog/upload &>/dev/null
-
- # Upload QSOs to QRZ Logbook (ignore cron job if this integration is not required)
- 0 */6 * * * curl --silent /qrz/upload &>/dev/null
-
- # Update LoTW Users Database
- @weekly curl --silent /lotw/load_users &>/dev/null
-
- # Update Clublog SCP Database File
- @weekly curl --silent /update/update_clublog_scp &>/dev/null
-
- # Update DOK File for autocomplete
- @monthly curl --silent /update/update_dok &>/dev/null
-
- # Update SOTA File for autocomplete
- @monthly curl --silent /update/update_sota &>/dev/null
-
- # Update WWFF File for autocomplete
- @monthly curl --silent /update/update_wwff &>/dev/null
-
-
-
- -
- - 0) { ?> -
-
Assign ALL Station Locations to this username
-
-

With Wavelog Version 2.0, Station Locations must be associated with a user pressing the button below will assign all Station Locations to the first user in the database

- -
-
- -
- - - 0) { ?> -
-
Create Station Logbooks
-
-

All the views now in Wavelog are based around Station Logbooks, you can create as many as you want and group Station Locations it makes tracking awards a lot easier.

-

You don't have one at the moment and it can cause issues so press the button below and create a default logbook, you can change this later!

- -
-
- -
- - 0) { ?> -
-
Claim Notes
-
-

Looks like you have some notes saved, we need to assign them to your username.

- -
-
- -
- - - 0) { ?> -
-
Claim API Keys
-
-

Looks like you have some API Keys, we need to assign them to your username else they will stop working.

- -
-
- -
- - -
-
Update Country Files
-
-

Just a friendly reminder to update country files within Wavelog so they are nice and up to date :)

-
-
- -
- - - -

- -
diff --git a/assets/css/cyborg/overrides.css b/assets/css/cyborg/overrides.css index 2fb627acd..9cec76a56 100644 --- a/assets/css/cyborg/overrides.css +++ b/assets/css/cyborg/overrides.css @@ -187,4 +187,9 @@ path.grid-worked { } .accordion-button.collapsed { border-bottom: 1px solid var(--bs-body-bg); +} + +#quicklog-form .border, +#searchbar-form .border { + border-color: #4d4d4d !important; } \ No newline at end of file diff --git a/assets/css/cyborg_wide/overrides.css b/assets/css/cyborg_wide/overrides.css index 751a7ed54..4bae67ba2 100644 --- a/assets/css/cyborg_wide/overrides.css +++ b/assets/css/cyborg_wide/overrides.css @@ -242,4 +242,9 @@ path.grid-worked { } .accordion-button.collapsed { border-bottom: 1px solid var(--bs-body-bg); +} + +#quicklog-form .border, +#searchbar-form .border { + border-color: #4d4d4d !important; } \ No newline at end of file diff --git a/assets/css/darkly/overrides.css b/assets/css/darkly/overrides.css index b2bd6e084..3e7aad461 100644 --- a/assets/css/darkly/overrides.css +++ b/assets/css/darkly/overrides.css @@ -200,4 +200,7 @@ div.alert-danger { border-bottom:1px solid var(--bs-body-bg); } - +#quicklog-form .border, +#searchbar-form .border { + border-color: #757575 !important; +} diff --git a/assets/css/darkly_wide/overrides.css b/assets/css/darkly_wide/overrides.css index 24eb011f7..61193b761 100644 --- a/assets/css/darkly_wide/overrides.css +++ b/assets/css/darkly_wide/overrides.css @@ -254,4 +254,9 @@ div.alert-danger { } .accordion-button.collapsed { border-bottom:1px solid var(--bs-body-bg); +} + +#quicklog-form .border, +#searchbar-form .border { + border-color: #757575 !important; } \ No newline at end of file diff --git a/assets/css/general.css b/assets/css/general.css index 85f5edb46..239b4a1c6 100644 --- a/assets/css/general.css +++ b/assets/css/general.css @@ -1,11 +1,94 @@ @media (min-width: 992px) { - .modal-lg, .modal-xl { max-width: 900px; } } +/* ============ HEADER MENU ============ */ +/* Adapted from https://bootstrap-menu.com/detail-multilevel.html */ +/* ============ desktop view ============ */ +@media all and (min-width: 992px) { + + .navbar-nav-left .dropdown-menu > li > a:hover:after { + transform: rotate(-90deg); + } + + .navbar-nav-right .dropdown-menu > li > a:hover:after { + transform: rotate(90deg); + } + + .header-dropdown li { + position: relative; + } + + .nav-item .submenu { + display: none; + position: absolute; + left: 100%; + top: -7px; + } + + .nav-item .submenu-left { + right: 100%; + left: auto; + } + + .header-dropdown > li:hover > .submenu { + display: block; + } + + .dropdown:hover > .header-dropdown { + display: block; + } + + .dropdown > .header-dropdown { + display: none; + } + + .navbar-nav-left { + flex-grow: 1; + } + + .navbar-nav-right { + float: right; + } + + .dropdown-menu-right { + right: 0 !important; + left: auto !important; + } +} +/* ============ desktop view .end// ============ */ + +/* ============ small devices ============ */ +@media (max-width: 991px) { + + .header-dropdown { + margin-left: 0.7rem; + margin-right: 0.7rem; + margin-bottom: 0.5rem; + } + + .header-dropdown li { + position: relative; + } + + .nav-item .submenu { + display: none; + position: absolute; + left: 30%; + top: -7px; + } + +} +/* ============ small devices .end// ============ */ + +.dropdown-menu { + z-index: 2000 !important; + position: absolute !important; +} + [hidden] { display: none !important; } @@ -24,19 +107,19 @@ a { top: 0; } -thead>tr>td { +thead > tr > td { position: sticky; top: 45px; } .headerLogo { - width: 50px; - height: 50px; + width: 50px; + height: 50px; } .mainLogo { - width: 300px; - height: 300px; + width: 300px; + height: 300px; } .navbar { @@ -314,15 +397,9 @@ TD.lotw { .qso-map-new .card-header { background: #0f2027; /* fallback for old browsers */ - background: -webkit-linear-gradient(to right, - #2c5364, - #203a43, - #0f2027); + background: -webkit-linear-gradient(to right, #2c5364, #203a43, #0f2027); /* Chrome 10-25, Safari 5.1-6 */ - background: linear-gradient(to right, - #2c5364, - #203a43, - #0f2027); + background: linear-gradient(to right, #2c5364, #203a43, #0f2027); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ color: #ffffff; } @@ -355,11 +432,6 @@ TD.lotw { z-index: 1000 !important; } -.dropdown-menu { - z-index: 2000 !important; - position: absolute !important; -} - .was-map-dialog .modal-dialog { width: 100%; } @@ -491,7 +563,7 @@ div#station_logbooks_linked_table_paginate { cursor: pointer; } -.table-striped tbody>tr.activeRow { +.table-striped tbody > tr.activeRow { background-color: #5cb85c !important; --bs-table-bg: none; } @@ -630,7 +702,8 @@ div#station_logbooks_linked_table_paginate { width: 100%; } -.sfletable.table thead, .sfletable.table tbody tr { +.sfletable.table thead, +.sfletable.table tbody tr { display: block; width: 100%; table-layout: fixed; @@ -704,7 +777,6 @@ div#station_logbooks_linked_table_paginate { border: 2px solid rgb(217, 83, 79); } - table.dataTable thead th, table.dataTable thead td, table.dataTable tfoot th, @@ -712,42 +784,9 @@ table.dataTable tfoot td { text-align: center !important; } -.dropend .dropdown-toggle { - margin-left: 1em; -} - -.dropdown:hover>.dropdown-menu, .dropend:hover>.dropdown-menu { - display: block; - /* margin-top: .125em; */ - margin-left: .125em; -} - -@media screen and (min-width:769px) { - .dropend:hover>.dropdown-menu { - position: absolute; - top: 0; - left: 100%; - } - .dropend .dropdown-toggle { - margin-left: .5em; - } -} - -.dropdown-submenu { - position:relative; -} -.dropdown-submenu>.dropdown-menu { - top:0; - left:100%; - margin-top:-9px; -} -.dropdown-menu > li > a:hover:after { - transform: rotate(-90deg); -} - .table-responsive .dropdown-menu.notdisplay { - padding:0px!important; - border:0px!important; + padding: 0px !important; + border: 0px !important; } #partial_view .table-responsive { @@ -758,23 +797,47 @@ label { margin-bottom: 0.25rem; } -.btn-pwd-showhide, .btn-pwd-showhide:hover, .btn-included-on-field, .btn-included-on-field:hover { +.btn-pwd-showhide, +.btn-pwd-showhide:hover, +.btn-included-on-field, +.btn-included-on-field:hover { border: 1px solid var(--cl-border-btn-pwd); cursor: pointer; } .dxccsummaryheader:after { - content: '\02795'; /* Unicode character for "plus" sign (+) */ + content: "\02795"; /* Unicode character for "plus" sign (+) */ float: right; margin-left: 5px; color: #000000; - background-image: linear-gradient(to right, white 0, white 12ch, black 12ch, black 100%); - -webkit-background-clip: text; - background-clip: text; - -webkit-text-fill-color: transparent; - -webkit-text-fill-color: transparent; + background-image: linear-gradient( + to right, + white 0, + white 12ch, + black 12ch, + black 100% + ); + -webkit-background-clip: text; + background-clip: text; + -webkit-text-fill-color: transparent; + -webkit-text-fill-color: transparent; } .dxccsummaryheaderopened:after { content: "\2796"; /* Unicode character for "minus" sign (-) */ +} + +.coordinates { + justify-content: center; + align-items: stretch; +} +.cohidden { + display:none; +} + +#latDeg, #lngDeg { + width: 170px; +} +#locator, #distance, #bearing { + width: 120px; } \ No newline at end of file diff --git a/assets/css/superhero/overrides.css b/assets/css/superhero/overrides.css index d4a49500d..44c1ece81 100644 --- a/assets/css/superhero/overrides.css +++ b/assets/css/superhero/overrides.css @@ -190,4 +190,9 @@ div.alert-danger { } .accordion-body { border: 1px solid #4e5e6c; +} + +#quicklog-form .border, +#searchbar-form .border { + border-color: #959595 !important; } \ No newline at end of file diff --git a/assets/css/superhero_wide/overrides.css b/assets/css/superhero_wide/overrides.css index 870361c48..09ae1c3cf 100644 --- a/assets/css/superhero_wide/overrides.css +++ b/assets/css/superhero_wide/overrides.css @@ -244,4 +244,9 @@ div.alert-danger { } .accordion-body { border: 1px solid #4e5e6c; +} + +#quicklog-form .border, +#searchbar-form .border { + border-color: #959595 !important; } \ No newline at end of file diff --git a/assets/js/sections/accumulatedstatistics.js b/assets/js/sections/accumulatedstatistics.js index 12c464aed..06d15a643 100644 --- a/assets/js/sections/accumulatedstatistics.js +++ b/assets/js/sections/accumulatedstatistics.js @@ -1,64 +1,90 @@ function accumulatePlot(form) { - $(".ld-ext-right").addClass('running'); - $(".ld-ext-right").prop('disabled', true); + $(".ld-ext-right").addClass("running"); + $(".ld-ext-right").prop("disabled", true); // using this to change color of legend and label according to background color - var color = ifDarkModeThemeReturn('white', 'grey'); + var color = ifDarkModeThemeReturn("white", "grey"); var award = form.awardradio.value; var mode = form.mode.value; var period = form.periodradio.value; $.ajax({ - url: base_url + 'index.php/accumulated/get_accumulated_data', - type: 'post', - data: { 'Band': form.band.value, 'Award': award, 'Mode': mode, 'Period': period }, + url: base_url + "index.php/accumulated/get_accumulated_data", + type: "post", + data: { + Band: form.band.value, + Award: award, + Mode: mode, + Period: period, + }, success: function (data) { if (!$.trim(data)) { $("#accumulateContainer").empty(); - $("#accumulateContainer").append(''); - $(".ld-ext-right").removeClass('running'); - $(".ld-ext-right").prop('disabled', false); - } - else { + $("#accumulateContainer").append( + '' + ); + $(".ld-ext-right").removeClass("running"); + $(".ld-ext-right").prop("disabled", false); + } else { // used for switching award text in the table and the chart switch (award) { - case 'dxcc': var awardtext = "DXCC\'s"; break; - case 'was': var awardtext = "states"; break; - case 'iota': var awardtext = "IOTA\'s"; break; - case 'waz': var awardtext = "CQ zones"; break; + case "dxcc": + var awardtext = lang_statistics_accumulated_worked_dxcc; + break; + case "was": + var awardtext = + lang_statistics_accumulated_worked_states; + break; + case "iota": + var awardtext = lang_statistics_accumulated_worked_iota; + break; + case "waz": + var awardtext = + lang_statistics_accumulated_worked_cqzone; + break; } - var periodtext = 'Year'; - if (period == 'month') { - periodtext += ' + month'; + var periodtext = lang_general_word_year; + if (period == "month") { + periodtext = + lang_general_word_year + + " + " + + lang_general_word_month; } // removing the old chart so that it will not interfere when loading chart again $("#accumulateContainer").empty(); - $("#accumulateContainer").append("
"); + $("#accumulateContainer").append( + '
' + ); // appending table to hold the data - $("#accumulateTable").append('' + - '' + - '' + - '' + - '' + - '' + - '' + - '
#' + periodtext + 'Accumulated # of ' + awardtext + ' worked
'); + $("#accumulateTable").append( + '' + + "" + + "" + + "" + + "" + + "" + + "" + + "
#" + + periodtext + + "" + + awardtext + + "
" + ); var labels = []; var dataDxcc = []; - var $myTable = $('.accutable'); + var $myTable = $(".accutable"); var i = 1; // building the rows in the table var rowElements = data.map(function (row) { + var $row = $(""); - var $row = $(''); - - var $iterator = $('').html(i++); - var $type = $('').html(row.year); - var $content = $('').html(row.total); + var $iterator = $("").html(i++); + var $type = $("").html(row.year); + var $content = $("").html(row.total); $row.append($iterator, $type, $content); @@ -73,68 +99,78 @@ function accumulatePlot(form) { dataDxcc.push(this.total); }); - var ctx = document.getElementById("myChartAccumulate").getContext('2d'); + var ctx = document + .getElementById("myChartAccumulate") + .getContext("2d"); + var headerperiod; + if (period == "year") { + headerperiod = lang_general_word_yearly; + } else if (period == "month") { + headerperiod = lang_general_word_monthly; + } else { + headerperiod = "n/a"; + } var myChart = new Chart(ctx, { - type: 'bar', + type: "bar", data: { labels: labels, - datasets: [{ - label: 'Accumulated number of ' + awardtext + ' worked each ' + period, - data: dataDxcc, - backgroundColor: 'rgba(54, 162, 235, 0.2)', - borderColor: 'rgba(54, 162, 235, 1)', - borderWidth: 2, - color: color - }] + datasets: [ + { + label: awardtext + " (" + headerperiod + ")", + data: dataDxcc, + backgroundColor: "rgba(54, 162, 235, 0.2)", + borderColor: "rgba(54, 162, 235, 1)", + borderWidth: 2, + color: color, + }, + ], }, options: { scales: { y: { ticks: { beginAtZero: true, - color: color - } + color: color, + }, }, x: { ticks: { - color: color - } - } + color: color, + }, + }, }, plugins: { legend: { labels: { - color: color - } - } - } - } + color: color, + }, + }, + }, + }, }); - $(".ld-ext-right").removeClass('running'); - $(".ld-ext-right").prop('disabled', false); - $('.accutable').DataTable({ + $(".ld-ext-right").removeClass("running"); + $(".ld-ext-right").prop("disabled", false); + $(".accutable").DataTable({ responsive: false, ordering: false, - "scrollY": "400px", - "scrollCollapse": true, - "paging": false, - "scrollX": true, - "language": { + scrollY: "400px", + scrollCollapse: true, + paging: false, + scrollX: true, + language: { url: getDataTablesLanguageUrl(), }, - dom: 'Bfrtip', - buttons: [ - 'csv' - ] + dom: "Bfrtip", + buttons: ["csv"], }); // using this to change color of csv-button if dark mode is chosen - var background = $('body').css("background-color"); + var background = $("body").css("background-color"); - if (background != ('rgb(255, 255, 255)')) { + if (background != "rgb(255, 255, 255)") { $(".buttons-csv").css("color", "white"); } } - } + }, }); } diff --git a/assets/js/sections/contesting.js b/assets/js/sections/contesting.js index 4eea49de1..bd8931d29 100644 --- a/assets/js/sections/contesting.js +++ b/assets/js/sections/contesting.js @@ -36,6 +36,39 @@ async function reset_contest_session() { $(".contest_qso_table_contents").empty(); $('#copyexchangetodok').prop('checked', false); + if (!$.fn.DataTable.isDataTable('.qsotable')) { + $.fn.dataTable.moment('DD-MM-YYYY HH:mm:ss'); + $('.qsotable').DataTable({ + "stateSave": true, + "pageLength": 25, + responsive: false, + "scrollY": "400px", + "scrollCollapse": true, + "paging": false, + "scrollX": true, + "language": { + url: getDataTablesLanguageUrl(), + }, + order: [0, 'desc'], + "columnDefs": [ + { + "render": function ( data, type, row ) { + return pad(row[8],3); + }, + "targets" : 8 + }, + { + "render": function ( data, type, row ) { + return pad(row[9],3); + }, + "targets" : 9 + } + ] + }); + } + var table = $('.qsotable').DataTable(); + table.clear(); + } // Storing the contestid in contest session @@ -111,6 +144,7 @@ document.onkeyup = function (e) { reset_log_fields(); // CTRL-Enter logs QSO } else if ((e.keyCode == 10 || e.keyCode == 13) && (e.ctrlKey || e.metaKey)) { + $("#callsign").blur(); logQso(); // Enter in received exchange logs QSO } else if ((e.which == 13) && ( @@ -203,9 +237,9 @@ $('#start_date').change(function() { }); // On Key up check and suggest callsigns -$("#callsign").keyup(function () { +$("#callsign").keyup(async function (e) { var call = $(this).val(); - if (call.length >= 3) { + if ((!((e.keyCode == 10 || e.keyCode == 13) && (e.ctrlKey || e.metaKey))) && (call.length >= 3)) { // prevent checking again when pressing CTRL-Enter $.ajax({ url: 'lookup/scp', @@ -219,7 +253,7 @@ $("#callsign").keyup(function () { } }); - checkIfWorkedBefore(); + await checkIfWorkedBefore(); var qTable = $('.qsotable').DataTable(); qTable.search(call).draw(); } @@ -228,7 +262,7 @@ $("#callsign").keyup(function () { } }); -function checkIfWorkedBefore() { +async function checkIfWorkedBefore() { var call = $("#callsign").val(); if (call.length >= 3) { $('#callsign_info').text(""); @@ -400,14 +434,14 @@ function logQso() { serials = $("#exch_serial_s").val(); serialr = $("#exch_serial_r").val(); break; - + case 'Serialexchange': exchsent = $("#exch_sent").val(); exchrcvd = $("#exch_rcvd").val(); serials = $("#exch_serial_s").val(); serialr = $("#exch_serial_r").val(); break; - + case 'Serialgridsquare': gridr = gridsquare; vuccr = vucc; @@ -416,21 +450,6 @@ function logQso() { break; } - var data = [[ - $("#start_date").val() + ' ' + $("#start_time").val(), - $("#callsign").val().toUpperCase(), - $("#band").val(), - $("#mode").val(), - $("#rst_sent").val(), - $("#rst_rcvd").val(), - exchsent, - exchrcvd, - serials, - serialr, - gridr, - vuccr, - ]]; - var formdata = new FormData(document.getElementById("qso_input")); $.ajax({ url: base_url + 'index.php/qso/saveqso', @@ -447,7 +466,7 @@ function logQso() { } $('#name').val(""); - + $('#callsign').val(""); $('#comment').val(""); $('#exch_rcvd').val(""); @@ -455,7 +474,7 @@ function logQso() { $('#exch_serial_r').val(""); $("#callsign").focus(); await setSession(formdata); - + await refresh_qso_table(sessiondata); var qTable = $('.qsotable').DataTable(); qTable.search('').order([0, 'desc']).draw(); @@ -471,23 +490,23 @@ async function getSession() { type: 'post', }); } - + async function restoreContestSession(data) { if (data) { if (data.copytodok == "1") { $('#copyexchangetodok').prop('checked', true); } - + if (data.contestid != "") { $("#contestname").val(data.contestid); } - + if (data.exchangetype != "") { $("#exchangetype").val(data.exchangetype); setExchangetype(data.exchangetype); setSerial(data); } - + if (data.exchangesent != "") { $("#exch_sent").val(data.exchangesent); } @@ -507,30 +526,6 @@ async function refresh_qso_table(data) { type: 'post', data: { 'qso': data.qso, }, success: function (html) { - var mode = ''; - $(".contest_qso_table_contents").empty(); - $.each(html, function () { - if (this.col_submode == null || this.col_submode == '') { - mode = this.col_mode; - } else { - mode = this.col_submode; - } - - $(".qsotable tbody").prepend('' + - '' + this.col_time_on + '' + - '' + this.col_call + '' + - '' + this.col_band + '' + - '' + mode + '' + - '' + this.col_rst_sent + '' + - '' + this.col_rst_rcvd + '' + - '' + this.col_stx_string + '' + - '' + this.col_srx_string + '' + - '' + this.col_stx + '' + - '' + this.col_srx + '' + - '' + this.col_gridsquare + '' + - '' + this.col_vucc_grids + '' + - ''); - }); if (!$.fn.DataTable.isDataTable('.qsotable')) { $.fn.dataTable.moment('DD-MM-YYYY HH:mm:ss'); $('.qsotable').DataTable({ @@ -561,6 +556,39 @@ async function refresh_qso_table(data) { ] }); } + var table = $('.qsotable').DataTable(); + table.clear(); + + var mode = ''; + var data; + $.each(html, function () { + if (this.col_submode == null || this.col_submode == '') { + mode = this.col_mode; + } else { + mode = this.col_submode; + } + + data = [[ + this.col_time_on, + this.col_call, + this.col_band, + mode, + this.col_rst_sent, + this.col_rst_rcvd, + this.col_stx_string, + this.col_srx_string, + this.col_stx, + this.col_srx, + this.col_gridsquare, + this.col_vucc_grids + ]]; + + if (data.length > 0) { + table.rows.add(data).draw(); + } + + }); + } }); } diff --git a/assets/js/sections/itumap_geojson.js b/assets/js/sections/itumap_geojson.js new file mode 100644 index 000000000..a4b5982c7 --- /dev/null +++ b/assets/js/sections/itumap_geojson.js @@ -0,0 +1,3 @@ +const ituzonestuff ={ "type": "FeatureCollection", "features": [{ "type": "Feature", "properties": { "cq_zone_name": "**Alaska, west of 141º W", "itu_zone_number": 1 }, "geometry": { "type": "Polygon", "coordinates": [[[-141,80],[-141,58],[-170,50],[-200,50],[-180,60],[-168.96149,65.74529],[-170,80],[-141,80]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Alaska, east of 141º W#!!!!!!VE", "itu_zone_number": 2 }, "geometry": { "type": "Polygon", "coordinates": [[[-141.00403,80.00002],[-140.99854,58.00809],[-130.78125,48.57479],[-124.80469,48.50204],[-123.57422,48.22467],[-123.26661,48.26856],[-123.11829,48.41097],[-123.22129,48.54989],[-123.25837,48.68881],[-123.00293,48.77067],[-123.00843,48.83023],[-123.32154,49.00544],[-122.96448,49.00184],[-110.00062,48.99824],[-110.01709,80.00098],[-141.00403,79.99907]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Canada#VE8", "itu_zone_number": 3 }, "geometry": { "type": "Polygon", "coordinates": [[[-110.00611,79.99907],[-110.00611,49.00184],[-95.15259,48.99824],[-95.15259,49.38326],[-95.13199,49.37343],[-95.05921,49.35286],[-95.01664,49.35643],[-94.99192,49.36985],[-94.97681,49.36717],[-94.95759,49.37074],[-94.90677,49.35107],[-94.87931,49.33317],[-94.85596,49.32512],[-94.83811,49.32512],[-94.81888,49.32154],[-94.82438,49.3099],[-94.82712,49.29468],[-94.79828,49.21311],[-94.79828,49.19965],[-94.77494,49.12062],[-94.75022,49.10084],[-94.68293,48.88548],[-94.68567,48.87194],[-94.69391,48.86923],[-94.69254,48.85658],[-94.6843,48.84122],[-94.70078,48.83489],[-94.7049,48.82494],[-94.69529,48.80867],[-94.69254,48.777],[-94.66233,48.76162],[-94.64859,48.75075],[-94.64447,48.74351],[-94.62113,48.73898],[-94.60328,48.72811],[-94.59092,48.71996],[-94.55178,48.71543],[-94.53942,48.70365],[-94.50097,48.69911],[-94.47281,48.6973],[-94.45153,48.69232],[-94.43848,48.69458],[-94.41925,48.71044],[-94.40758,48.71044],[-94.38424,48.71271],[-94.36638,48.70591],[-94.34441,48.7041],[-94.32656,48.70501],[-94.30871,48.7109],[-94.2833,48.70636],[-94.27712,48.70138],[-94.26545,48.69911],[-94.2524,48.6837],[-94.25652,48.6633],[-94.24828,48.6565],[-94.24485,48.65287],[-94.22493,48.65015],[-94.19816,48.65151],[-94.16039,48.64652],[-94.13773,48.64515],[-94.11988,48.64425],[-94.10202,48.64652],[-94.09241,48.64334],[-94.07799,48.64379],[-94.06769,48.64606],[-94.06426,48.64334],[-94.05945,48.64379],[-94.04366,48.64515],[-94.03748,48.64198],[-94.00521,48.64334],[-93.96058,48.63699],[-93.95371,48.63381],[-93.9338,48.6329],[-93.91869,48.6329],[-93.9132,48.63563],[-93.8926,48.632],[-93.87063,48.63064],[-93.84934,48.63109],[-93.83973,48.62791],[-93.83011,48.61883],[-93.82119,48.6093],[-93.81295,48.5875],[-93.80539,48.57842],[-93.80402,48.56524],[-93.81295,48.55161],[-93.8102,48.54388],[-93.81707,48.53524],[-93.81707,48.52933],[-93.80883,48.52388],[-93.79303,48.51751],[-93.7587,48.51887],[-93.75321,48.51478],[-93.73879,48.51796],[-93.71956,48.51705],[-93.70995,48.51933],[-93.69072,48.51569],[-93.67562,48.5166],[-93.64403,48.51887],[-93.63648,48.5257],[-93.63099,48.53343],[-93.62343,48.52842],[-93.61313,48.52251],[-93.60489,48.52342],[-93.59665,48.52842],[-93.58979,48.53024],[-93.5788,48.52706],[-93.56026,48.5307],[-93.54584,48.52979],[-93.517,48.53524],[-93.49778,48.54252],[-93.46688,48.54661],[-93.45795,48.55479],[-93.45795,48.56842],[-93.46344,48.59341],[-93.43667,48.59477],[-93.42774,48.60158],[-93.40508,48.60976],[-93.39821,48.60522],[-93.38242,48.60522],[-93.37281,48.60567],[-93.36319,48.61339],[-93.35633,48.61203],[-93.35221,48.61293],[-93.3474,48.62564],[-93.25539,48.64334],[-93.20801,48.64289],[-93.18329,48.62791],[-93.17917,48.62337],[-93.08922,48.62746],[-92.98485,48.62428],[-92.95533,48.632],[-92.95121,48.63018],[-92.94983,48.61021],[-92.92992,48.60703],[-92.91001,48.59659],[-92.89422,48.59477],[-92.72805,48.53934],[-92.65801,48.54661],[-92.63466,48.54252],[-92.629,48.52228],[-92.62591,48.51819],[-92.62677,48.51433],[-92.62625,48.51342],[-92.62522,48.51296],[-92.63123,48.50909],[-92.63192,48.50693],[-92.62728,48.50329],[-92.63072,48.50068],[-92.63724,48.4992],[-92.64016,48.49988],[-92.64719,48.49988],[-92.65406,48.50182],[-92.66144,48.49636],[-92.68565,48.49727],[-92.69886,48.49476],[-92.7011,48.48475],[-92.70916,48.47303],[-92.70865,48.47041],[-92.71277,48.46324],[-92.68805,48.44366],[-92.6635,48.4399],[-92.65612,48.4366],[-92.57647,48.44081],[-92.53716,48.44765],[-92.51502,48.44833],[-92.50763,48.44799],[-92.48927,48.43034],[-92.48429,48.4292],[-92.48188,48.42828],[-92.48206,48.42749],[-92.48085,48.42658],[-92.48103,48.42544],[-92.47862,48.42282],[-92.47536,48.4186],[-92.45665,48.41404],[-92.45631,48.40117],[-92.47639,48.3721],[-92.4697,48.35168],[-92.44154,48.31585],[-92.44051,48.31539],[-92.43897,48.3114],[-92.43674,48.30911],[-92.43176,48.30512],[-92.42918,48.3058],[-92.42575,48.30477],[-92.4206,48.29884],[-92.41528,48.29484],[-92.40155,48.27119],[-92.39314,48.26022],[-92.39296,48.25874],[-92.39331,48.25759],[-92.39211,48.25668],[-92.38953,48.25382],[-92.39005,48.25302],[-92.39228,48.25302],[-92.39296,48.25188],[-92.39193,48.25096],[-92.39022,48.25074],[-92.38678,48.25176],[-92.38593,48.25142],[-92.38472,48.24925],[-92.38678,48.24925],[-92.38644,48.24754],[-92.38833,48.24662],[-92.38713,48.24433],[-92.38472,48.24468],[-92.38387,48.24433],[-92.38438,48.24251],[-92.38318,48.23942],[-92.38095,48.23645],[-92.37906,48.23599],[-92.37854,48.23542],[-92.37923,48.23427],[-92.37854,48.23347],[-92.37854,48.23153],[-92.37545,48.22833],[-92.37528,48.22638],[-92.37254,48.22375],[-92.37065,48.22387],[-92.37013,48.22021],[-92.36721,48.22215],[-92.36721,48.22387],[-92.36378,48.22284],[-92.36172,48.2233],[-92.36069,48.22535],[-92.35383,48.22924],[-92.35348,48.23039],[-92.34181,48.23199],[-92.34078,48.2337],[-92.33752,48.2353],[-92.33649,48.23576],[-92.3346,48.23462],[-92.33374,48.23382],[-92.33117,48.23473],[-92.32911,48.23507],[-92.32739,48.23702],[-92.32241,48.23725],[-92.31503,48.24033],[-92.28053,48.24456],[-92.26988,48.24845],[-92.29392,48.32783],[-92.28877,48.34301],[-92.26267,48.3551],[-92.22147,48.34894],[-92.21993,48.34803],[-92.21718,48.34518],[-92.20688,48.34586],[-92.20654,48.34746],[-92.20637,48.34951],[-92.20414,48.35191],[-92.19538,48.35065],[-92.1947,48.34883],[-92.19264,48.34883],[-92.17839,48.35191],[-92.17907,48.35533],[-92.17753,48.35704],[-92.16208,48.36332],[-92.14526,48.36571],[-92.14371,48.35624],[-92.09067,48.35465],[-92.0838,48.35373],[-92.07797,48.35818],[-92.06732,48.35955],[-92.05531,48.35944],[-92.04878,48.34883],[-92.04586,48.3478],[-92.04518,48.34586],[-92.04792,48.34392],[-92.04689,48.3348],[-92.0378,48.33308],[-92.03076,48.32589],[-92.0002,48.3211],[-92.01308,48.29747],[-92.01205,48.28696],[-92.00707,48.28056],[-92.00621,48.26548],[-91.98922,48.26045],[-91.98029,48.24776],[-91.97789,48.24742],[-91.9772,48.24685],[-91.97806,48.24605],[-91.97566,48.24479],[-91.97342,48.24685],[-91.97051,48.24822],[-91.97136,48.25314],[-91.97068,48.25325],[-91.97033,48.25359],[-91.95918,48.25371],[-91.95694,48.25234],[-91.95403,48.25234],[-91.9542,48.24959],[-91.94802,48.24594],[-91.94973,48.24479],[-91.95815,48.24388],[-91.95712,48.23896],[-91.95986,48.23679],[-91.95832,48.23313],[-91.95282,48.23313],[-91.95111,48.23347],[-91.94493,48.23039],[-91.94201,48.23039],[-91.93789,48.23416],[-91.92931,48.23587],[-91.92124,48.2369],[-91.91678,48.23873],[-91.91334,48.23862],[-91.90733,48.23816],[-91.90613,48.23748],[-91.90236,48.23736],[-91.89343,48.23782],[-91.88467,48.22753],[-91.86768,48.21906],[-91.86442,48.20728],[-91.84536,48.20865],[-91.83609,48.21037],[-91.83283,48.20934],[-91.8155,48.21163],[-91.81429,48.20843],[-91.80932,48.20614],[-91.79747,48.20259],[-91.79129,48.20248],[-91.78872,48.19641],[-91.78614,48.1963],[-91.78082,48.20076],[-91.76434,48.20065],[-91.7628,48.20156],[-91.76091,48.20454],[-91.7561,48.20579],[-91.75353,48.2011],[-91.74855,48.19882],[-91.74426,48.1987],[-91.74151,48.19973],[-91.7422,48.20499],[-91.73859,48.20419],[-91.73722,48.20431],[-91.72486,48.2011],[-91.71507,48.19939],[-91.71301,48.19801],[-91.7101,48.19424],[-91.71027,48.19241],[-91.71181,48.18772],[-91.72108,48.18062],[-91.72194,48.17867],[-91.72297,48.17329],[-91.724,48.17077],[-91.72297,48.16906],[-91.71696,48.17181],[-91.70941,48.17284],[-91.7046,48.17055],[-91.70512,48.16402],[-91.70443,48.16013],[-91.70666,48.15371],[-91.70821,48.15326],[-91.70701,48.15062],[-91.70289,48.1449],[-91.69894,48.1449],[-91.69791,48.14444],[-91.69774,48.14112],[-91.69962,48.13791],[-91.69928,48.13184],[-91.7034,48.12519],[-91.70735,48.12336],[-91.70941,48.11992],[-91.71164,48.11751],[-91.71267,48.11545],[-91.71181,48.11465],[-91.71061,48.11488],[-91.70323,48.11396],[-91.69653,48.11602],[-91.69207,48.11705],[-91.69156,48.11797],[-91.6919,48.1198],[-91.68211,48.12255],[-91.68349,48.11774],[-91.68744,48.11178],[-91.68177,48.10972],[-91.6816,48.10892],[-91.68091,48.10846],[-91.67731,48.10766],[-91.67113,48.10857],[-91.66752,48.10846],[-91.66512,48.10743],[-91.66237,48.10926],[-91.6622,48.11201],[-91.65328,48.11465],[-91.65156,48.11419],[-91.65104,48.11293],[-91.65293,48.10972],[-91.64795,48.10628],[-91.64692,48.10364],[-91.63971,48.09699],[-91.61517,48.10215],[-91.58873,48.1025],[-91.57586,48.10685],[-91.55903,48.10834],[-91.55302,48.10341],[-91.56933,48.0939],[-91.57568,48.06695],[-91.57294,48.05777],[-91.57551,48.04905],[-91.56744,48.04366],[-91.5417,48.05375],[-91.48814,48.06844],[-91.46479,48.06649],[-91.44986,48.0689],[-91.44591,48.06706],[-91.44694,48.06397],[-91.43853,48.05249],[-91.4387,48.05077],[-91.43664,48.04939],[-91.42977,48.04882],[-91.41398,48.05375],[-91.3908,48.05731],[-91.37776,48.06615],[-91.37072,48.06959],[-91.36471,48.06741],[-91.34858,48.072],[-91.33982,48.0736],[-91.3369,48.07131],[-91.33604,48.07016],[-91.3345,48.06959],[-91.33244,48.07016],[-91.33107,48.06947],[-91.32935,48.07005],[-91.32884,48.07119],[-91.32437,48.07291],[-91.31819,48.07326],[-91.3151,48.07372],[-91.31167,48.07314],[-91.31081,48.0728],[-91.30686,48.07303],[-91.28987,48.0744],[-91.27596,48.07865],[-91.26669,48.07911],[-91.24953,48.08404],[-91.23459,48.09619],[-91.22807,48.09929],[-91.21502,48.10284],[-91.19013,48.12519],[-91.18309,48.12187],[-91.18052,48.1237],[-91.17691,48.1253],[-91.15597,48.13986],[-91.13743,48.14925],[-91.13932,48.15578],[-91.11924,48.16127],[-91.11477,48.16677],[-91.09246,48.17329],[-91.08233,48.18096],[-91.07615,48.17925],[-91.06568,48.18142],[-91.06259,48.18531],[-91.05967,48.18554],[-91.05589,48.18817],[-91.03753,48.19],[-91.03169,48.18897],[-91.02431,48.19046],[-91.02036,48.19321],[-91.01195,48.19824],[-91.00285,48.20053],[-91.00337,48.20351],[-90.97762,48.21941],[-90.92612,48.22993],[-90.91547,48.23073],[-90.90741,48.23736],[-90.88561,48.24582],[-90.88131,48.24045],[-90.87531,48.2377],[-90.86672,48.2385],[-90.84801,48.24456],[-90.84372,48.24365],[-90.84303,48.24136],[-90.8396,48.23976],[-90.83754,48.23507],[-90.83994,48.22798],[-90.83754,48.2265],[-90.83651,48.21849],[-90.83411,48.18749],[-90.83651,48.17684],[-90.83256,48.17375],[-90.82364,48.1781],[-90.82535,48.18348],[-90.8214,48.18485],[-90.8178,48.17936],[-90.8099,48.17982],[-90.80424,48.17764],[-90.80098,48.16287],[-90.7972,48.16001],[-90.7936,48.16081],[-90.78647,48.16101],[-90.78141,48.16431],[-90.77652,48.16328],[-90.77797,48.14782],[-90.78278,48.14547],[-90.79686,48.13934],[-90.79789,48.13699],[-90.79437,48.13562],[-90.78883,48.13619],[-90.78572,48.1355],[-90.78227,48.13619],[-90.78192,48.13527],[-90.78364,48.13275],[-90.78501,48.13315],[-90.7881,48.1331],[-90.78999,48.13],[-90.78707,48.12777],[-90.78413,48.12829],[-90.78291,48.12778],[-90.78321,48.12664],[-90.78175,48.12585],[-90.77677,48.12404],[-90.7742,48.11843],[-90.76888,48.11637],[-90.76664,48.11407],[-90.76716,48.11064],[-90.76132,48.10009],[-90.76149,48.09831],[-90.75154,48.09103],[-90.74158,48.09453],[-90.70261,48.09608],[-90.68613,48.10026],[-90.64159,48.10347],[-90.62691,48.11178],[-90.62022,48.11184],[-90.6178,48.11235],[-90.61589,48.11223],[-90.61517,48.11291],[-90.61271,48.11347],[-90.60606,48.11608],[-90.59129,48.11763],[-90.59039,48.11958],[-90.58683,48.12107],[-90.58561,48.12227],[-90.58232,48.12347],[-90.5797,48.12404],[-90.57679,48.12072],[-90.57155,48.12135],[-90.56529,48.12244],[-90.55919,48.12175],[-90.55541,48.11705],[-90.56966,48.10685],[-90.56769,48.10187],[-90.5646,48.09889],[-90.55636,48.09585],[-90.51722,48.0994],[-90.50992,48.09722],[-90.50761,48.09929],[-90.50555,48.09989],[-90.49611,48.09866],[-90.49529,48.09969],[-90.49362,48.10152],[-90.49001,48.0994],[-90.48632,48.09929],[-90.4834,48.10021],[-90.4801,48.10212],[-90.47748,48.10542],[-90.47122,48.10599],[-90.4671,48.10915],[-90.46514,48.10854],[-90.46199,48.10657],[-90.45231,48.10545],[-90.44744,48.10341],[-90.44311,48.10055],[-90.43808,48.09871],[-90.41058,48.10508],[-90.40315,48.10525],[-90.39828,48.10231],[-90.3973,48.10245],[-90.39613,48.10171],[-90.39554,48.10117],[-90.39341,48.10041],[-90.39038,48.1001],[-90.38844,48.09875],[-90.38616,48.09797],[-90.38579,48.09606],[-90.38491,48.09473],[-90.37991,48.09248],[-90.3781,48.0925],[-90.37474,48.09092],[-90.37277,48.09135],[-90.37337,48.09235],[-90.37363,48.09358],[-90.37285,48.09413],[-90.37175,48.09342],[-90.37,48.0941],[-90.36877,48.09386],[-90.36777,48.09486],[-90.35873,48.0949],[-90.35718,48.09444],[-90.35373,48.095],[-90.34564,48.09396],[-90.3436,48.09447],[-90.34292,48.09555],[-90.33805,48.09605],[-90.33706,48.09969],[-90.33028,48.10238],[-90.32324,48.10319],[-90.31732,48.10364],[-90.31436,48.10502],[-90.3102,48.10571],[-90.30582,48.10513],[-90.30367,48.10387],[-90.29835,48.10261],[-90.29269,48.099],[-90.28917,48.09912],[-90.27441,48.10313],[-90.26428,48.1033],[-90.2608,48.10278],[-90.25389,48.10215],[-90.23402,48.10723],[-90.22428,48.10829],[-90.21325,48.10657],[-90.1949,48.10826],[-90.18857,48.10811],[-90.17682,48.11247],[-90.16416,48.10975],[-90.14738,48.11092],[-90.1445,48.11184],[-90.14403,48.11287],[-90.13253,48.11167],[-90.12738,48.1082],[-90.12566,48.10806],[-90.12497,48.10754],[-90.12369,48.10743],[-90.12206,48.10559],[-90.1163,48.10416],[-90.11399,48.10433],[-90.09176,48.10479],[-90.07412,48.10144],[-90.06652,48.09854],[-90.05745,48.09626],[-90.04871,48.09192],[-90.04137,48.08954],[-90.03931,48.09012],[-90.02936,48.08754],[-90.02318,48.08484],[-90.01889,48.07205],[-90.0146,48.06752],[-90.0109,48.06838],[-90.00992,48.06898],[-90.00859,48.06878],[-90.00636,48.0658],[-90.00464,48.06511],[-89.99863,48.05889],[-89.99434,79.99918],[-110.00611,79.99907]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Canada#VY0", "itu_zone_number": 4 }, "geometry": { "type": "Polygon", "coordinates": [[[-90,48.05992],[-90,80],[-69,80],[-72.64049,79.00866],[-75.22116,77.47455],[-67.02313,74.40973],[-54.14269,61.24388],[-69.9939,61.24646],[-69.99802,46.6945],[-70.05982,46.41892],[-70.20401,46.33163],[-70.28504,46.18743],[-70.24109,46.13797],[-70.31113,46.05792],[-70.27096,46.0584],[-70.31319,46.02075],[-70.2895,45.99073],[-70.31336,45.96664],[-70.26856,45.95974],[-70.24109,45.94589],[-70.26375,45.92272],[-70.25448,45.89967],[-70.27817,45.87662],[-70.34615,45.84696],[-70.41138,45.79817],[-70.37842,45.72535],[-70.56931,45.65811],[-70.72998,45.51789],[-70.62561,45.41002],[-70.64209,45.39845],[-70.65308,45.3753],[-70.67746,45.39603],[-70.71557,45.38783],[-70.75093,45.42206],[-70.78629,45.43122],[-70.82612,45.39845],[-70.80861,45.38082],[-70.81032,45.3632],[-70.81616,45.33689],[-70.80552,45.32216],[-70.8474,45.26759],[-70.83985,45.22848],[-70.88585,45.2345],[-70.91538,45.27341],[-70.91057,45.30167],[-70.94696,45.33573],[-70.97606,45.32987],[-71.0134,45.34332],[-71.00979,45.31616],[-71.09047,45.30433],[-71.13099,45.25168],[-71.21888,45.25555],[-71.29029,45.30193],[-71.43448,45.23331],[-71.39569,45.20494],[-71.4338,45.12818],[-71.50212,45.06786],[-71.49903,45.0153],[-72.31751,45.00365],[-73.22113,45.01336],[-74.12476,44.99199],[-74.71253,45.00753],[-74.83338,45.01918],[-75.3772,44.78573],[-75.81665,44.49258],[-75.81665,44.4377],[-75.96497,44.35135],[-76.16272,44.27667],[-76.15723,44.25306],[-76.19019,44.22945],[-76.23414,44.20189],[-76.31104,44.19795],[-76.35498,44.13491],[-76.43189,44.09942],[-76.79993,43.63209],[-78.68409,43.64402],[-79.20044,43.4569],[-79.0741,43.2572],[-79.04114,43.13707],[-79.0741,43.09697],[-78.9972,43.05283],[-79.01368,42.99259],[-78.97522,42.96044],[-78.96424,42.96848],[-78.93677,42.95642],[-78.9148,42.90413],[-78.94227,42.82763],[-80.08484,42.391],[-81.2494,42.21224],[-82.39197,41.68522],[-82.67212,41.6688],[-83.06214,41.86137],[-83.14904,42.01642],[-83.12607,42.28569],[-82.81647,42.37632],[-82.67383,42.54463],[-82.55317,42.56716],[-82.48214,42.73738],[-82.406,43.00485],[-82.12339,43.58463],[-82.51644,45.33729],[-83.59064,45.82049],[-83.42787,45.99956],[-83.60568,46.12135],[-83.73405,46.09829],[-83.82946,46.10571],[-83.95292,46.04385],[-84.00209,46.14128],[-84.08944,46.22198],[-84.14328,46.39895],[-84.10816,46.5332],[-84.20649,46.53983],[-84.2499,46.49354],[-84.3367,46.51436],[-84.4268,46.50114],[-84.47295,46.46523],[-84.55426,46.46151],[-84.75867,46.63186],[-84.8512,46.88257],[-88.37008,48.30565],[-88.67727,48.24498],[-89.33877,47.97374],[-89.48988,48.01393],[-89.56545,48.00221],[-89.57619,47.9954],[-89.59379,48.0033],[-89.60796,48.00751],[-89.61113,48.01725],[-89.61672,48.01205],[-89.63878,48.00869],[-89.64643,48.00257],[-89.65956,48.01115],[-89.68275,48.01224],[-89.70319,48.0069],[-89.71539,48.01075],[-89.71934,48.01735],[-89.73859,48.02279],[-89.76333,48.02365],[-89.79151,48.0167],[-89.80732,48.01709],[-89.81901,48.01488],[-89.8252,48.00715],[-89.83276,47.99896],[-89.84307,48.00364],[-89.84721,47.99278],[-89.86439,47.99195],[-89.87195,47.9856],[-89.89122,47.98743],[-89.90051,47.99064],[-89.90774,47.99109],[-89.92427,48.00073],[-89.93392,48.01497],[-89.94905,48.01623],[-89.95594,48.01106],[-89.97521,48.02276],[-89.99242,48.02712],[-89.99741,48.03763],[-89.99415,48.04996],[-90.00001,48.05995]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Greenland, south of 80º N", "itu_zone_number": 5 }, "geometry": { "type": "Polygon", "coordinates": [[[-10,73],[-10,80],[-69,80],[-72.64049,79.00866],[-75.22116,77.47455],[-67.02313,74.40973],[-54.14269,61.24388],[-50,54],[-10,73]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**USA#W6", "itu_zone_number": 6 }, "geometry": { "type": "Polygon", "coordinates": [[[-110.00473,49.00004],[-110.00061,45.00365],[-110.11048,45.00462],[-110.19288,44.99782],[-110.36316,45.00073],[-110.40436,44.99394],[-110.6955,44.99199],[-110.78476,45.00365],[-111.0553,45.00073],[-111.04706,40.99855],[-110.00061,40.99752],[-110.00061,31.33369],[-111.07453,31.33252],[-114.81366,32.49441],[-114.81297,32.5002],[-114.814,32.50426],[-114.81675,32.50744],[-114.81396,32.50925],[-114.80636,32.50845],[-114.80113,32.51323],[-114.80314,32.51555],[-114.80962,32.51786],[-114.81009,32.52134],[-114.81366,32.52481],[-114.80585,32.5306],[-114.80216,32.53812],[-114.80683,32.54652],[-114.79572,32.55086],[-114.79239,32.55607],[-114.7925,32.5688],[-114.80576,32.55954],[-114.80988,32.55838],[-114.81434,32.56272],[-114.814,32.56851],[-114.80147,32.57401],[-114.80404,32.5824],[-114.79941,32.59455],[-114.80713,32.60207],[-114.80919,32.61768],[-114.80695,32.62208],[-114.7999,32.62532],[-114.79251,32.62163],[-114.78306,32.62429],[-114.78219,32.63216],[-114.77102,32.63771],[-114.76363,32.64298],[-114.76448,32.6494],[-114.75717,32.65618],[-114.74918,32.66065],[-114.74692,32.66844],[-114.74398,32.6794],[-114.73015,32.69962],[-114.72937,32.70597],[-114.71933,32.7189],[-114.78619,32.71451],[-117.12525,32.53523],[-124.62891,32.47269],[-130.784,48.57479],[-124.8016,48.50373],[-123.57354,48.22467],[-123.26712,48.26823],[-123.11863,48.41093],[-123.22129,48.54965],[-123.25974,48.68824],[-123.00225,48.77112],[-123.0098,48.83127],[-123.32154,49.00544],[-121.38005,49.00679],[-117.04354,49.00094],[-110.00473,49.00004]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**USA#W7", "itu_zone_number": 7 }, "geometry": { "type": "Polygon", "coordinates": [[[-110.00473,49.00004],[-110.00061,45.00365],[-110.11048,45.00462],[-110.19288,44.99782],[-110.36316,45.00073],[-110.40436,44.99394],[-110.6955,44.99199],[-110.78476,45.00365],[-111.0553,45.00073],[-111.04706,40.99855],[-110.00061,40.99752],[-110.00061,31.33369],[-108.20847,31.33252],[-108.2071,31.78421],[-106.531,31.7845],[-106.51417,31.7702],[-106.50988,31.75998],[-106.50568,31.76042],[-106.50216,31.75677],[-106.48705,31.74699],[-106.4716,31.75028],[-106.46782,31.75882],[-106.45306,31.76437],[-106.43624,31.75532],[-106.42079,31.7521],[-106.39435,31.73926],[-106.38062,31.73196],[-106.37341,31.71414],[-106.34938,31.69604],[-106.33461,31.66331],[-106.30269,31.62122],[-106.29342,31.59462],[-106.2838,31.5718],[-106.28071,31.56215],[-106.24878,31.54401],[-106.24638,31.54167],[-106.23711,31.51328],[-106.22441,31.49982],[-106.21926,31.4805],[-106.2045,31.46469],[-106.17531,31.45444],[-106.1578,31.43774],[-106.13137,31.42514],[-106.11145,31.42368],[-106.0809,31.39877],[-106.00434,31.39233],[-105.96966,31.36565],[-105.95456,31.36565],[-105.94597,31.35393],[-105.94838,31.34073],[-105.93842,31.31844],[-105.93361,31.31375],[-105.92469,31.31228],[-105.90889,31.31375],[-105.89619,31.29116],[-105.87594,31.29204],[-105.86976,31.28911],[-105.85465,31.27268],[-105.83628,31.24714],[-105.81268,31.2238],[-105.79388,31.20164],[-105.78358,31.1987],[-105.7798,31.18989],[-105.78015,31.18225],[-105.77603,31.17638],[-105.77328,31.16727],[-105.76401,31.16404],[-105.74341,31.16581],[-105.71938,31.14935],[-105.71698,31.14259],[-105.71183,31.13789],[-105.64797,31.11556],[-105.64179,31.09851],[-105.62806,31.09851],[-105.6078,31.08645],[-105.60162,31.07822],[-105.59681,31.06558],[-105.58583,31.05793],[-105.5793,31.0344],[-105.58136,31.02763],[-105.57896,31.02028],[-105.57141,31.0191],[-105.56969,31.01675],[-105.57038,31.00851],[-105.55665,30.98835],[-105.54223,30.98526],[-105.5333,30.98585],[-105.52643,30.9776],[-105.523,30.97643],[-105.51545,30.96524],[-105.50309,30.96818],[-105.49416,30.957],[-105.49622,30.95582],[-105.49897,30.95111],[-105.49485,30.94993],[-105.48867,30.94404],[-105.4921,30.94345],[-105.48935,30.94169],[-105.48729,30.94286],[-105.48111,30.94051],[-105.47768,30.93756],[-105.47631,30.93462],[-105.47081,30.93403],[-105.4715,30.93226],[-105.46807,30.92991],[-105.46669,30.92461],[-105.46463,30.92637],[-105.45296,30.92578],[-105.45228,30.92107],[-105.45502,30.9193],[-105.45296,30.91636],[-105.44747,30.92048],[-105.44472,30.91813],[-105.44541,30.91577],[-105.44198,30.90988],[-105.42893,30.90517],[-105.4255,30.90163],[-105.41314,30.90045],[-105.41176,30.89161],[-105.41245,30.88867],[-105.40421,30.8922],[-105.3994,30.88867],[-105.3994,30.8869],[-105.39803,30.88572],[-105.40421,30.88042],[-105.3994,30.87688],[-105.39254,30.87688],[-105.39185,30.87394],[-105.3946,30.87158],[-105.39528,30.8592],[-105.40215,30.85566],[-105.39528,30.84977],[-105.38842,30.85331],[-105.3685,30.84918],[-105.36301,30.84977],[-105.36026,30.84741],[-105.3534,30.84387],[-105.35408,30.83857],[-105.35271,30.83621],[-105.3479,30.83975],[-105.33967,30.84034],[-105.33761,30.83385],[-105.32799,30.83149],[-105.33211,30.82678],[-105.32937,30.82619],[-105.31838,30.82913],[-105.31838,30.82383],[-105.31563,30.81852],[-105.31838,30.81262],[-105.31701,30.81085],[-105.31014,30.81557],[-105.30808,30.8138],[-105.30877,30.81262],[-105.30877,30.81027],[-105.30602,30.81027],[-105.30053,30.82029],[-105.30121,30.82383],[-105.29091,30.82619],[-105.28748,30.81852],[-105.28199,30.81734],[-105.27581,30.8085],[-105.26894,30.8085],[-105.26619,30.80555],[-105.26207,30.79788],[-105.25658,30.79493],[-105.2298,30.80437],[-105.2298,30.80024],[-105.22706,30.79847],[-105.21744,30.80555],[-105.2147,30.80496],[-105.21332,30.80083],[-105.20989,30.79729],[-105.21264,30.79316],[-105.21813,30.79375],[-105.22088,30.78785],[-105.21264,30.78254],[-105.20714,30.78726],[-105.20165,30.78844],[-105.19547,30.79198],[-105.19066,30.78667],[-105.18586,30.78372],[-105.17624,30.76897],[-105.16938,30.77546],[-105.17006,30.78018],[-105.16663,30.77959],[-105.16526,30.77546],[-105.16526,30.77192],[-105.15564,30.77015],[-105.16182,30.75245],[-105.15633,30.75304],[-105.15427,30.75186],[-105.14466,30.7554],[-105.12681,30.74832],[-105.11788,30.7495],[-105.12063,30.74478],[-105.11582,30.74301],[-105.11376,30.74773],[-105.11033,30.7436],[-105.10758,30.73003],[-105.10209,30.72944],[-105.10209,30.7259],[-105.10483,30.72412],[-105.09934,30.72294],[-105.09797,30.71645],[-105.0911,30.71704],[-105.08767,30.71291],[-105.08698,30.70996],[-105.08149,30.70937],[-105.07874,30.70582],[-105.08355,30.70228],[-105.07943,30.69992],[-105.07599,30.70287],[-105.06981,30.70405],[-105.06432,30.69815],[-105.06226,30.69284],[-105.06363,30.68811],[-105.0602,30.68575],[-105.05745,30.68811],[-105.05402,30.68457],[-105.05402,30.68162],[-105.04853,30.6828],[-105.04647,30.68044],[-105.04509,30.68634],[-105.04578,30.68752],[-105.04372,30.6887],[-105.04097,30.68811],[-105.03548,30.68634],[-105.02861,30.68044],[-105.00733,30.68575],[-105.00252,30.68103],[-104.99978,30.67335],[-104.99978,30.67217],[-104.9936,30.66921],[-104.9936,30.66508],[-104.98604,30.66272],[-104.9833,30.63141],[-104.98055,30.62845],[-104.97918,30.62136],[-104.97437,30.61664],[-104.973,30.61132],[-104.96819,30.60955],[-104.96064,30.61014],[-104.95446,30.60659],[-104.94965,30.60423],[-104.94072,30.60541],[-104.93798,30.60659],[-104.93454,30.60068],[-104.92905,30.60068],[-104.9263,30.60541],[-104.92081,30.59595],[-104.92081,30.59063],[-104.91875,30.58531],[-104.9112,30.58472],[-104.90708,30.57822],[-104.89815,30.56699],[-104.89472,30.56048],[-104.89884,30.55575],[-104.88785,30.54747],[-104.8906,30.54156],[-104.88923,30.53505],[-104.88167,30.53269],[-104.88167,30.52618],[-104.88373,30.52618],[-104.88717,30.52441],[-104.88236,30.52263],[-104.88511,30.52027],[-104.88511,30.51849],[-104.87961,30.5179],[-104.87687,30.51199],[-104.87343,30.51258],[-104.87275,30.50903],[-104.87275,30.4966],[-104.86863,30.49483],[-104.86725,30.48418],[-104.87069,30.48122],[-104.86931,30.47945],[-104.86931,30.47353],[-104.86519,30.46465],[-104.87,30.45844],[-104.86828,30.4537],[-104.86519,30.45163],[-104.8676,30.44157],[-104.85833,30.43742],[-104.86245,30.42795],[-104.85009,30.41966],[-104.84803,30.41966],[-104.8494,30.41611],[-104.84871,30.41315],[-104.85695,30.40959],[-104.85489,30.40071],[-104.85901,30.39123],[-104.85283,30.3859],[-104.83841,30.37465],[-104.8185,30.37643],[-104.81644,30.37465],[-104.81987,30.3705],[-104.81713,30.36576],[-104.81163,30.36754],[-104.81163,30.3628],[-104.81438,30.35924],[-104.81575,30.3551],[-104.82262,30.35213],[-104.8185,30.3468],[-104.81163,30.34088],[-104.81163,30.33258],[-104.79653,30.3308],[-104.79172,30.32547],[-104.79104,30.32132],[-104.77662,30.30828],[-104.77936,30.30413],[-104.77318,30.30413],[-104.76563,30.30828],[-104.76563,30.30294],[-104.75808,30.28397],[-104.76151,30.27626],[-104.76151,30.27507],[-104.74846,30.2733],[-104.75121,30.26321],[-104.73816,30.2561],[-104.73816,30.26144],[-104.73336,30.26084],[-104.70589,30.23474],[-104.71001,30.22406],[-104.68735,30.17956],[-104.68804,30.14037],[-104.69628,30.13325],[-104.69422,30.11721],[-104.68598,30.10711],[-104.69491,30.10296],[-104.6901,30.09523],[-104.68735,30.0988],[-104.6901,30.07265],[-104.70246,30.06374],[-104.70726,30.05007],[-104.69559,30.03581],[-104.70314,30.02392],[-104.6901,30.01381],[-104.69216,30.0037],[-104.68941,30.00192],[-104.68873,29.99478],[-104.69491,29.9924],[-104.68529,29.98883],[-104.69353,29.97634],[-104.67843,29.98051],[-104.68461,29.97099],[-104.68323,29.9585],[-104.67499,29.95731],[-104.67362,29.95077],[-104.68117,29.92935],[-104.67362,29.91209],[-104.66469,29.90316],[-104.65714,29.90375],[-104.6592,29.88887],[-104.65027,29.88887],[-104.63585,29.87101],[-104.6283,29.85255],[-104.62143,29.84957],[-104.62487,29.84481],[-104.62006,29.84064],[-104.61663,29.846],[-104.61045,29.83766],[-104.61937,29.8323],[-104.60907,29.82575],[-104.60907,29.82098],[-104.59534,29.80668],[-104.59259,29.81145],[-104.58436,29.80073],[-104.59122,29.79894],[-104.58916,29.79655],[-104.58367,29.79655],[-104.57955,29.78464],[-104.56582,29.77272],[-104.56856,29.75782],[-104.56994,29.75364],[-104.5514,29.73874],[-104.56101,29.73755],[-104.55483,29.7298],[-104.55071,29.73039],[-104.55002,29.72503],[-104.54934,29.72025],[-104.54659,29.7125],[-104.54453,29.697],[-104.5308,29.69342],[-104.54316,29.68208],[-104.53492,29.66896],[-104.52462,29.66478],[-104.51088,29.64569],[-104.515,29.64032],[-104.50539,29.63315],[-104.49578,29.63912],[-104.46488,29.61167],[-104.45664,29.60808],[-104.40102,29.57345],[-104.39415,29.55494],[-104.38111,29.54359],[-104.37081,29.54419],[-104.33716,29.51969],[-104.32206,29.52387],[-104.32,29.53224],[-104.30901,29.53403],[-104.31244,29.52686],[-104.31176,29.52328],[-104.29184,29.52148],[-104.263,29.51372],[-104.26232,29.50595],[-104.25477,29.50714],[-104.24103,29.49818],[-104.23691,29.49818],[-104.23142,29.48204],[-104.23005,29.47845],[-104.21494,29.48622],[-104.20945,29.48264],[-104.21288,29.46231],[-104.21837,29.45932],[-104.19434,29.44318],[-104.19434,29.43601],[-104.18267,29.42703],[-104.18061,29.41328],[-104.17374,29.40909],[-104.16687,29.40012],[-104.16962,29.39653],[-104.16275,29.39114],[-104.15314,29.39473],[-104.1504,29.38935],[-104.14559,29.38815],[-104.14147,29.38097],[-104.13598,29.38516],[-104.1243,29.38038],[-104.12087,29.37439],[-104.11469,29.3708],[-104.11263,29.37499],[-104.09821,29.36721],[-104.0886,29.35764],[-104.08928,29.35584],[-104.08036,29.34507],[-104.07418,29.34686],[-104.0577,29.33669],[-104.0577,29.3331],[-103.97324,29.29657],[-103.96775,29.30017],[-103.92655,29.29418],[-103.91831,29.28879],[-103.91762,29.2858],[-103.89977,29.28819],[-103.88947,29.27921],[-103.88398,29.284],[-103.86269,29.27981],[-103.83797,29.27741],[-103.82767,29.27022],[-103.81463,29.27442],[-103.80913,29.27082],[-103.80845,29.26304],[-103.79952,29.25824],[-103.78647,29.26663],[-103.7748,29.24506],[-103.78098,29.24327],[-103.78167,29.22829],[-103.7748,29.2199],[-103.76999,29.22169],[-103.76793,29.22769],[-103.76038,29.23368],[-103.75557,29.22709],[-103.75695,29.22349],[-103.75351,29.2211],[-103.74321,29.22229],[-103.74047,29.20491],[-103.72811,29.19652],[-103.71781,29.18154],[-103.713,29.18333],[-103.70339,29.18453],[-103.69927,29.17854],[-103.68966,29.17854],[-103.6567,29.17015],[-103.65189,29.16115],[-103.6512,29.15815],[-103.64846,29.15635],[-103.64571,29.15875],[-103.64159,29.16355],[-103.63541,29.16115],[-103.63129,29.16175],[-103.62786,29.16355],[-103.61893,29.16295],[-103.61344,29.16415],[-103.60589,29.16175],[-103.5949,29.15156],[-103.58117,29.15156],[-103.57293,29.15516],[-103.55301,29.15575],[-103.55027,29.15336],[-103.5537,29.14856],[-103.54958,29.14436],[-103.54134,29.14616],[-103.52349,29.13297],[-103.5228,29.12157],[-103.51319,29.11977],[-103.50563,29.11617],[-103.49946,29.11617],[-103.49946,29.11077],[-103.49465,29.10957],[-103.48229,29.09217],[-103.47336,29.09097],[-103.47611,29.08797],[-103.46993,29.08317],[-103.47062,29.06637],[-103.46032,29.06877],[-103.46238,29.07297],[-103.4507,29.07357],[-103.4507,29.06397],[-103.44109,29.05797],[-103.43422,29.05797],[-103.43422,29.05376],[-103.42804,29.04776],[-103.43216,29.04416],[-103.4253,29.04356],[-103.41431,29.03816],[-103.40401,29.03936],[-103.40058,29.03215],[-103.39097,29.03395],[-103.38753,29.02255],[-103.37655,29.02255],[-103.36144,29.01774],[-103.35114,29.03095],[-103.34359,29.04596],[-103.32779,29.04356],[-103.32917,29.02975],[-103.34153,29.02975],[-103.33809,29.02015],[-103.32573,29.01654],[-103.31818,29.02255],[-103.31612,29.02555],[-103.30788,29.02195],[-103.31063,29.01654],[-103.31749,29.01174],[-103.30925,29.00513],[-103.30239,29.01054],[-103.28797,29.00453],[-103.2811,28.98892],[-103.28797,28.98111],[-103.27904,28.97751],[-103.26806,28.99673],[-103.25158,28.98411],[-103.25089,28.98171],[-103.2399,28.98171],[-103.22892,28.99252],[-103.21999,28.98471],[-103.21312,28.98832],[-103.16712,28.97871],[-103.16369,28.9745],[-103.15339,28.9727],[-103.14927,28.9757],[-103.13553,28.98471],[-103.11356,28.98652],[-103.11631,29.00093],[-103.10738,29.01594],[-103.1012,29.01894],[-103.09845,29.02855],[-103.10738,29.03816],[-103.09708,29.05196],[-103.10051,29.06157],[-103.09021,29.06397],[-103.09159,29.05556],[-103.08266,29.05436],[-103.08678,29.06877],[-103.07717,29.07717],[-103.0806,29.08797],[-103.06893,29.09337],[-103.0655,29.09097],[-103.05588,29.10117],[-103.0449,29.09517],[-103.03254,29.10537],[-103.03666,29.11257],[-103.02842,29.11677],[-103.02155,29.12697],[-103.01331,29.12697],[-103.01606,29.13417],[-103.01125,29.13776],[-103.0085,29.14976],[-103.00507,29.15276],[-103.00232,29.14976],[-102.99271,29.15995],[-102.99889,29.17554],[-102.99065,29.18453],[-102.97898,29.18633],[-102.96319,29.18034],[-102.95151,29.17494],[-102.95289,29.18094],[-102.94877,29.18154],[-102.94465,29.18813],[-102.94259,29.19353],[-102.93709,29.18693],[-102.93297,29.19353],[-102.91924,29.19173],[-102.91855,29.19772],[-102.91512,29.20012],[-102.91375,29.20791],[-102.91718,29.2151],[-102.91169,29.2205],[-102.90207,29.21091],[-102.87598,29.2133],[-102.86499,29.22709],[-102.87186,29.24267],[-102.88765,29.24446],[-102.90551,29.25704],[-102.90207,29.26543],[-102.89933,29.26903],[-102.90276,29.27801],[-102.88834,29.29059],[-102.89246,29.30915],[-102.88628,29.31274],[-102.88559,29.32292],[-102.87941,29.34028],[-102.88285,29.34746],[-102.87804,29.35524],[-102.86293,29.35105],[-102.84028,29.35943],[-102.84508,29.36542],[-102.84508,29.37499],[-102.83478,29.37978],[-102.83341,29.38995],[-102.82723,29.39593],[-102.81899,29.39773],[-102.81556,29.39773],[-102.8135,29.40132],[-102.83272,29.40969],[-102.83135,29.44378],[-102.82174,29.44796],[-102.82036,29.45095],[-102.82517,29.45693],[-102.81418,29.47307],[-102.81418,29.48383],[-102.80045,29.48682],[-102.80594,29.49519],[-102.8032,29.50356],[-102.80663,29.50356],[-102.80869,29.52507],[-102.7929,29.53761],[-102.78809,29.54478],[-102.7723,29.54777],[-102.77848,29.56091],[-102.7723,29.57286],[-102.76818,29.57166],[-102.76268,29.57942],[-102.76955,29.59555],[-102.76131,29.59913],[-102.74621,29.59435],[-102.73865,29.6248],[-102.74277,29.63196],[-102.72561,29.64628],[-102.72561,29.65046],[-102.70707,29.66597],[-102.69677,29.67134],[-102.69539,29.67731],[-102.70089,29.68507],[-102.69883,29.69759],[-102.69059,29.70594],[-102.69059,29.72264],[-102.68166,29.7286],[-102.67548,29.7447],[-102.66861,29.7453],[-102.66655,29.73934],[-102.65969,29.73516],[-102.62398,29.73635],[-102.61437,29.74768],[-102.60819,29.74828],[-102.60064,29.75126],[-102.59652,29.75066],[-102.5869,29.74887],[-102.58072,29.75484],[-102.57386,29.75543],[-102.57317,29.76914],[-102.56836,29.77212],[-102.56012,29.76437],[-102.55394,29.75543],[-102.55463,29.75007],[-102.54914,29.7447],[-102.51069,29.77272],[-102.5203,29.78166],[-102.51549,29.78642],[-102.49833,29.78166],[-102.48734,29.78821],[-102.48185,29.77868],[-102.47155,29.77629],[-102.46537,29.78404],[-102.45919,29.77689],[-102.44751,29.77689],[-102.43721,29.77331],[-102.43241,29.77808],[-102.42142,29.77033],[-102.40563,29.76318],[-102.39876,29.76795],[-102.38778,29.76199],[-102.38846,29.78047],[-102.37885,29.79],[-102.37542,29.80371],[-102.36306,29.83528],[-102.3658,29.8454],[-102.35207,29.85493],[-102.34795,29.86267],[-102.34108,29.86982],[-102.33284,29.86684],[-102.3301,29.86327],[-102.32392,29.86565],[-102.3246,29.87339],[-102.32186,29.88054],[-102.28203,29.86565],[-102.27242,29.86863],[-102.26281,29.86684],[-102.26418,29.85672],[-102.25045,29.85493],[-102.24839,29.86565],[-102.24427,29.85791],[-102.24152,29.846],[-102.22985,29.84957],[-102.22504,29.84183],[-102.21611,29.84362],[-102.20376,29.84302],[-102.19895,29.83766],[-102.19346,29.83885],[-102.19002,29.84898],[-102.18178,29.84481],[-102.17972,29.83707],[-102.18178,29.83111],[-102.17904,29.82754],[-102.16874,29.82694],[-102.15569,29.81205],[-102.1502,29.81026],[-102.14196,29.80371],[-102.12822,29.79834],[-102.11792,29.8043],[-102.11792,29.79477],[-102.09046,29.79477],[-102.07535,29.79238],[-102.07398,29.78881],[-102.05132,29.78642],[-102.04308,29.79],[-102.03896,29.79119],[-102.04171,29.80132],[-102.01905,29.80132],[-102.01561,29.79655],[-102.00943,29.80013],[-101.99501,29.80609],[-101.9854,29.79477],[-101.98197,29.81562],[-101.96618,29.81205],[-101.96412,29.80192],[-101.95862,29.79715],[-101.94764,29.80192],[-101.93734,29.79834],[-101.93322,29.79119],[-101.93253,29.78344],[-101.92566,29.78523],[-101.91811,29.79477],[-101.91056,29.80073],[-101.87554,29.79477],[-101.85425,29.80788],[-101.84739,29.80728],[-101.8261,29.7894],[-101.81992,29.79536],[-101.82679,29.80728],[-101.8158,29.81443],[-101.80344,29.80371],[-101.81237,29.79477],[-101.80962,29.78344],[-101.79177,29.77927],[-101.78559,29.78702],[-101.75332,29.77868],[-101.74439,29.77749],[-101.73615,29.77212],[-101.72928,29.77093],[-101.72585,29.77331],[-101.71898,29.7751],[-101.70937,29.76258],[-101.68808,29.77153],[-101.68053,29.7602],[-101.67229,29.76139],[-101.67366,29.76556],[-101.66062,29.77153],[-101.64551,29.75484],[-101.63315,29.76258],[-101.62697,29.77212],[-101.57685,29.77093],[-101.5741,29.79119],[-101.56929,29.80013],[-101.55213,29.8043],[-101.54664,29.81383],[-101.53634,29.80251],[-101.53771,29.78762],[-101.53702,29.76258],[-101.51436,29.76318],[-101.50063,29.76497],[-101.48621,29.7757],[-101.47866,29.78344],[-101.456,29.78762],[-101.45531,29.76855],[-101.45119,29.75126],[-101.43883,29.74828],[-101.42922,29.75782],[-101.40725,29.77212],[-101.39626,29.76676],[-101.40107,29.76139],[-101.41549,29.75305],[-101.4148,29.74351],[-101.40244,29.73934],[-101.39626,29.73337],[-101.40038,29.72264],[-101.3942,29.71131],[-101.37978,29.70356],[-101.3736,29.69401],[-101.37291,29.68805],[-101.37085,29.67612],[-101.35918,29.64867],[-101.35712,29.64986],[-101.35437,29.65822],[-101.34888,29.6618],[-101.3118,29.65822],[-101.30219,29.64867],[-101.30082,29.63614],[-101.30768,29.6236],[-101.31318,29.60808],[-101.31112,29.5848],[-101.29189,29.57226],[-101.28296,29.5854],[-101.27747,29.60749],[-101.28159,29.61465],[-101.26854,29.63256],[-101.25481,29.62778],[-101.24794,29.61704],[-101.25206,29.60211],[-101.24176,29.56569],[-101.26168,29.53881],[-101.25687,29.52029],[-101.23833,29.52507],[-101.17379,29.51491],[-101.14975,29.47666],[-101.13945,29.47248],[-101.12778,29.47965],[-101.11542,29.46949],[-101.08727,29.46829],[-101.06049,29.45813],[-101.05774,29.44318],[-101.04195,29.43002],[-101.03852,29.40969],[-101.02341,29.39234],[-101.02272,29.39773],[-101.0138,29.38217],[-101.0138,29.37559],[-101.00899,29.36781],[-100.99801,29.36482],[-100.97329,29.35464],[-100.96848,29.34986],[-100.96299,29.34627],[-100.95063,29.34746],[-100.94239,29.34507],[-100.94101,29.33549],[-100.92728,29.32891],[-100.88883,29.30735],[-100.87853,29.28041],[-100.83802,29.26304],[-100.8181,29.26543],[-100.81467,29.26004],[-100.81879,29.25585],[-100.81398,29.25345],[-100.80849,29.25225],[-100.79613,29.24626],[-100.79682,29.23668],[-100.79545,29.22709],[-100.79201,29.22709],[-100.78446,29.22769],[-100.77485,29.21271],[-100.77553,29.20611],[-100.77485,29.20192],[-100.77004,29.19952],[-100.76592,29.19233],[-100.76867,29.17734],[-100.77485,29.17614],[-100.77004,29.16715],[-100.76455,29.16775],[-100.76111,29.16295],[-100.7618,29.15875],[-100.75562,29.15695],[-100.73708,29.14736],[-100.73983,29.14256],[-100.71854,29.12277],[-100.69588,29.11437],[-100.68558,29.11077],[-100.67391,29.10057],[-100.66636,29.07717],[-100.66086,29.04176],[-100.65674,29.01474],[-100.64988,29.00333],[-100.64438,28.98652],[-100.6437,28.9757],[-100.65056,28.94266],[-100.64438,28.93605],[-100.64026,28.93004],[-100.63202,28.92463],[-100.63134,28.92163],[-100.62928,28.91862],[-100.63477,28.91562],[-100.64026,28.91622],[-100.63202,28.90239],[-100.62378,28.909],[-100.61417,28.90239],[-100.60181,28.90239],[-100.60387,28.88616],[-100.59357,28.88857],[-100.58808,28.88616],[-100.59288,28.87895],[-100.59632,28.88015],[-100.59632,28.87353],[-100.58945,28.87353],[-100.58808,28.87053],[-100.59014,28.86452],[-100.57091,28.84707],[-100.57641,28.84046],[-100.57435,28.82903],[-100.56885,28.82542],[-100.56061,28.82723],[-100.55237,28.82723],[-100.54551,28.82181],[-100.54551,28.81279],[-100.53933,28.80617],[-100.53315,28.80376],[-100.53315,28.79293],[-100.53658,28.78511],[-100.53658,28.77849],[-100.53246,28.77307],[-100.53109,28.76645],[-100.53383,28.76224],[-100.52903,28.75983],[-100.52353,28.75501],[-100.51941,28.75562],[-100.51667,28.75321],[-100.51461,28.74177],[-100.51117,28.74117],[-100.5098,28.73996],[-100.50774,28.73695],[-100.50705,28.72672],[-100.50774,28.71588],[-100.51461,28.70504],[-100.51255,28.69359],[-100.50019,28.66287],[-100.49401,28.65745],[-100.47959,28.65504],[-100.47272,28.64721],[-100.46448,28.64118],[-100.44732,28.64299],[-100.44663,28.60924],[-100.43496,28.60803],[-100.43221,28.6014],[-100.39856,28.58391],[-100.3965,28.57849],[-100.41024,28.55014],[-100.39994,28.53024],[-100.39582,28.52963],[-100.38895,28.51455],[-100.33265,28.50188],[-100.33608,28.49343],[-100.34775,28.48438],[-100.36767,28.48317],[-100.36835,28.47714],[-100.33883,28.44575],[-100.33814,28.42341],[-100.3505,28.40408],[-100.31685,28.35817],[-100.31479,28.34608],[-100.28595,28.30861],[-100.29419,28.28382],[-100.2887,28.27052],[-100.28389,28.27173],[-100.27703,28.26326],[-100.24682,28.23302],[-100.22965,28.23423],[-100.22004,28.2312],[-100.2166,28.22031],[-100.21523,28.207],[-100.20905,28.19429],[-100.20562,28.19066],[-100.1912,28.19005],[-100.17403,28.18037],[-100.16648,28.16948],[-100.15343,28.16584],[-100.14313,28.16887],[-100.12116,28.15555],[-100.08683,28.14526],[-100.06623,28.11619],[-100.05867,28.10711],[-100.05799,28.09924],[-100.05661,28.09015],[-100.05181,28.08349],[-100.04082,28.07743],[-100.02434,28.07076],[-100.0161,28.05683],[-100.00924,28.02834],[-100.00031,28.00773],[-99.99276,27.99561],[-99.96804,27.9847],[-99.93096,27.98045],[-99.93233,27.96832],[-99.93988,27.9568],[-99.93782,27.94891],[-99.93371,27.93618],[-99.92753,27.93557],[-99.92409,27.9289],[-99.92615,27.92617],[-99.89869,27.9113],[-99.89388,27.90038],[-99.90143,27.88521],[-99.90418,27.87003],[-99.89663,27.85789],[-99.88358,27.85304],[-99.87809,27.8415],[-99.87809,27.82936],[-99.87603,27.81478],[-99.87671,27.80567],[-99.87877,27.80203],[-99.8671,27.79413],[-99.85131,27.79352],[-99.84238,27.76619],[-99.82522,27.76436],[-99.81904,27.7753],[-99.81217,27.77348],[-99.80118,27.7437],[-99.78951,27.73155],[-99.77372,27.73398],[-99.75792,27.71878],[-99.7593,27.71149],[-99.7229,27.67683],[-99.72428,27.66832],[-99.70025,27.65737],[-99.69407,27.66406],[-99.69132,27.66954],[-99.68857,27.66285],[-99.67965,27.65859],[-99.67141,27.65981],[-99.65973,27.65251],[-99.65836,27.64825],[-99.66317,27.64339],[-99.6666,27.63913],[-99.65355,27.63061],[-99.64875,27.63122],[-99.63845,27.62879],[-99.62746,27.63365],[-99.62746,27.64095],[-99.62403,27.64521],[-99.61853,27.63974],[-99.61441,27.63791],[-99.59725,27.64095],[-99.59107,27.62939],[-99.58008,27.61966],[-99.57665,27.61358],[-99.58352,27.60749],[-99.58832,27.60567],[-99.58214,27.60141],[-99.55948,27.6081],[-99.55742,27.6154],[-99.55605,27.61418],[-99.54232,27.60749],[-99.53339,27.58741],[-99.51966,27.57585],[-99.51279,27.56854],[-99.51279,27.55819],[-99.51966,27.55028],[-99.5279,27.50035],[-99.52034,27.49609],[-99.50181,27.49974],[-99.49494,27.49974],[-99.47983,27.48817],[-99.48395,27.47416],[-99.48601,27.46136],[-99.49357,27.45161],[-99.48739,27.40956],[-99.49151,27.39432],[-99.49288,27.38091],[-99.50455,27.35896],[-99.50455,27.33822],[-99.52996,27.3248],[-99.53614,27.31565],[-99.52858,27.30528],[-99.50318,27.30772],[-99.49563,27.30223],[-99.4867,27.29063],[-99.49151,27.2766],[-99.49769,27.27172],[-99.48739,27.26256],[-99.47159,27.26256],[-99.46061,27.26866],[-99.44893,27.26012],[-99.43932,27.24669],[-99.44207,27.23387],[-99.44069,27.2186],[-99.43314,27.20761],[-99.42971,27.1954],[-99.42559,27.17769],[-99.42971,27.15875],[-99.43863,27.15508],[-99.43932,27.14958],[-99.43383,27.13981],[-99.43177,27.13186],[-99.43108,27.12331],[-99.44344,27.10864],[-99.44001,27.10314],[-99.43039,27.09275],[-99.43177,27.08541],[-99.44275,27.07318],[-99.45374,27.0634],[-99.44619,27.04506],[-99.44619,27.02977],[-99.44756,27.02487],[-99.43177,27.0108],[-99.41666,27.01814],[-99.40567,26.99857],[-99.38576,26.98266],[-99.37752,26.97838],[-99.37821,26.97287],[-99.39332,26.96308],[-99.38782,26.94227],[-99.37272,26.93064],[-99.32671,26.91839],[-99.32259,26.91227],[-99.3274,26.88655],[-99.32465,26.87675],[-99.31641,26.86634],[-99.29581,26.8645],[-99.28139,26.8596],[-99.26835,26.84245],[-99.26423,26.81671],[-99.24363,26.78791],[-99.24019,26.74683],[-99.20861,26.72598],[-99.21067,26.6947],[-99.20105,26.65973],[-99.17771,26.61922],[-99.16741,26.55905],[-99.17222,26.54983],[-99.17016,26.54062],[-99.16054,26.53386],[-99.12896,26.52465],[-99.09256,26.47733],[-99.09394,26.46995],[-99.10012,26.46012],[-99.10218,26.44475],[-99.11248,26.43553],[-99.08432,26.39802],[-99.06373,26.39802],[-99.04725,26.40601],[-99.03901,26.41401],[-99.02184,26.4097],[-99.00948,26.3931],[-98.98888,26.39187],[-98.97789,26.40109],[-98.97103,26.40109],[-98.95249,26.39248],[-98.95592,26.38079],[-98.94356,26.3691],[-98.93807,26.37157],[-98.93395,26.3771],[-98.93601,26.38264],[-98.92708,26.39494],[-98.92365,26.39002],[-98.92228,26.37956],[-98.91198,26.37218],[-98.90305,26.37157],[-98.89962,26.36726],[-98.9003,26.36049],[-98.89756,26.35372],[-98.87078,26.36295],[-98.85773,26.36664],[-98.84949,26.36111],[-98.84469,26.35988],[-98.83164,26.3648],[-98.82409,26.37034],[-98.81379,26.36787],[-98.80692,26.3691],[-98.80005,26.36295],[-98.79662,26.3488],[-98.78838,26.33773],[-98.78975,26.33342],[-98.77259,26.32603],[-98.76572,26.32726],[-98.75473,26.33157],[-98.74924,26.33034],[-98.74787,26.32234],[-98.74444,26.31557],[-98.73826,26.31372],[-98.73688,26.3088],[-98.741,26.30264],[-98.74581,26.30634],[-98.75199,26.30757],[-98.75542,26.30572],[-98.75336,26.29957],[-98.74924,26.29587],[-98.74169,26.29403],[-98.73482,26.29957],[-98.72933,26.30018],[-98.71972,26.29218],[-98.71697,26.28787],[-98.70804,26.2891],[-98.70186,26.28479],[-98.70186,26.27987],[-98.70804,26.27864],[-98.71903,26.27864],[-98.7204,26.27494],[-98.69706,26.26447],[-98.68744,26.26632],[-98.6792,26.26016],[-98.68058,26.246],[-98.67234,26.23861],[-98.65929,26.23615],[-98.64624,26.23984],[-98.6332,26.24292],[-98.63251,26.25216],[-98.62359,26.26078],[-98.61878,26.24723],[-98.61466,26.24662],[-98.61191,26.25339],[-98.60848,26.25339],[-98.59749,26.2577],[-98.58239,26.2577],[-98.57964,26.25031],[-98.58445,26.24538],[-98.57964,26.23553],[-98.57415,26.23984],[-98.56797,26.24169],[-98.56522,26.23615],[-98.56385,26.22629],[-98.55973,26.22444],[-98.55767,26.23183],[-98.54805,26.23491],[-98.54805,26.24107],[-98.55767,26.24415],[-98.55629,26.24908],[-98.54462,26.24477],[-98.53569,26.22567],[-98.52883,26.22999],[-98.52334,26.23676],[-98.52059,26.2343],[-98.52608,26.22444],[-98.52196,26.22075],[-98.5151,26.22752],[-98.50274,26.22198],[-98.50686,26.21089],[-98.50205,26.21089],[-98.49106,26.21335],[-98.48351,26.20781],[-98.4842,26.20411],[-98.48008,26.20165],[-98.47733,26.20411],[-98.4842,26.21643],[-98.47939,26.22013],[-98.47252,26.22013],[-98.46634,26.22321],[-98.46085,26.22691],[-98.45673,26.22013],[-98.45398,26.21705],[-98.45261,26.22075],[-98.44506,26.22444],[-98.43888,26.2189],[-98.44025,26.21027],[-98.44574,26.20411],[-98.44025,26.19734],[-98.42995,26.19487],[-98.41897,26.18501],[-98.40729,26.18378],[-98.40317,26.1807],[-98.40317,26.17454],[-98.39837,26.16961],[-98.3915,26.16529],[-98.38601,26.1579],[-98.37777,26.1579],[-98.36541,26.15975],[-98.36815,26.16653],[-98.36403,26.17146],[-98.3606,26.17269],[-98.35785,26.16899],[-98.35785,26.16468],[-98.35991,26.15975],[-98.35442,26.1542],[-98.35167,26.15235],[-98.34755,26.1542],[-98.34824,26.16098],[-98.34549,26.16714],[-98.34069,26.16714],[-98.33451,26.16653],[-98.33451,26.15667],[-98.33863,26.15235],[-98.33794,26.14989],[-98.33451,26.14619],[-98.32901,26.14496],[-98.32764,26.14311],[-98.33588,26.14187],[-98.33588,26.13694],[-98.33451,26.13386],[-98.32077,26.11906],[-98.31185,26.1166],[-98.30842,26.10673],[-98.30498,26.10303],[-98.29812,26.10365],[-98.29812,26.10673],[-98.30361,26.1092],[-98.30224,26.11352],[-98.29674,26.12153],[-98.27271,26.11783],[-98.26516,26.12153],[-98.2655,26.11706],[-98.27134,26.11413],[-98.27134,26.10673],[-98.28713,26.10735],[-98.28799,26.10488],[-98.28507,26.10242],[-98.27906,26.09933],[-98.27271,26.09625],[-98.26653,26.09132],[-98.26567,26.087],[-98.26378,26.08515],[-98.25211,26.07898],[-98.24936,26.07343],[-98.24387,26.07282],[-98.22945,26.07652],[-98.2164,26.07528],[-98.20885,26.06911],[-98.20199,26.06233],[-98.19855,26.05616],[-98.19306,26.05616],[-98.18894,26.06356],[-98.18413,26.06233],[-98.1807,26.06048],[-98.17864,26.06233],[-98.17933,26.06665],[-98.1807,26.07405],[-98.17521,26.07467],[-98.16971,26.07035],[-98.17109,26.06726],[-98.16765,26.06356],[-98.16353,26.0648],[-98.15873,26.0648],[-98.15735,26.06171],[-98.1601,26.06048],[-98.16353,26.0574],[-98.16216,26.05431],[-98.15735,26.05369],[-98.15186,26.05925],[-98.14843,26.05554],[-98.14911,26.05431],[-98.14843,26.05123],[-98.14499,26.04999],[-98.13675,26.06295],[-98.13675,26.06973],[-98.13195,26.07405],[-98.12783,26.0722],[-98.12989,26.0685],[-98.13057,26.06418],[-98.12508,26.06356],[-98.11959,26.06418],[-98.11135,26.06665],[-98.10654,26.06788],[-98.10036,26.06356],[-98.09281,26.05925],[-98.08526,26.0611],[-98.08114,26.0648],[-98.08526,26.06973],[-98.0832,26.07282],[-98.07702,26.06973],[-98.07496,26.06295],[-98.07015,26.04938],[-98.07152,26.04382],[-98.07839,26.04197],[-98.07702,26.03642],[-98.0729,26.03642],[-98.06328,26.04629],[-98.04543,26.04506],[-98.03994,26.04136],[-98.03307,26.06171],[-98.02758,26.06665],[-98.02414,26.06295],[-98.02208,26.05863],[-98.01659,26.06233],[-98.01453,26.06541],[-98.01178,26.06541],[-98.01178,26.05801],[-98.00629,26.06233],[-98.0008,26.06418],[-97.99668,26.06356],[-97.99393,26.05986],[-97.9905,26.05863],[-97.98707,26.06557],[-97.98295,26.06726],[-97.97951,26.06603],[-97.97883,26.06233],[-97.97677,26.05925],[-97.96647,26.05123],[-97.95205,26.06171],[-97.94449,26.06048],[-97.93557,26.05431],[-97.93213,26.05616],[-97.93625,26.06233],[-97.93351,26.0648],[-97.92733,26.0574],[-97.92664,26.05616],[-97.91909,26.05925],[-97.91359,26.05616],[-97.90261,26.0611],[-97.89093,26.06171],[-97.88819,26.06788],[-97.87514,26.06418],[-97.8724,26.05986],[-97.87102,26.05801],[-97.86347,26.06973],[-97.85935,26.06665],[-97.86141,26.06048],[-97.86072,26.05369],[-97.84012,26.05431],[-97.83463,26.04691],[-97.8257,26.05678],[-97.81609,26.05493],[-97.81609,26.04567],[-97.81197,26.04629],[-97.81266,26.05493],[-97.8003,26.06048],[-97.79961,26.05369],[-97.79343,26.05308],[-97.79,26.04814],[-97.79618,26.04691],[-97.79549,26.04259],[-97.79686,26.03889],[-97.79137,26.03395],[-97.78244,26.03457],[-97.77901,26.02963],[-97.7742,26.03457],[-97.76871,26.0358],[-97.77695,26.04074],[-97.77695,26.04506],[-97.77009,26.04753],[-97.76391,26.04321],[-97.76391,26.02778],[-97.76047,26.02655],[-97.75498,26.03087],[-97.74949,26.02963],[-97.74949,26.02655],[-97.74605,26.02778],[-97.74331,26.03087],[-97.73713,26.02902],[-97.73781,26.02285],[-97.73301,26.02285],[-97.72751,26.02346],[-97.72683,26.02902],[-97.73301,26.02963],[-97.73575,26.0321],[-97.71927,26.0321],[-97.72202,26.02408],[-97.70897,26.02655],[-97.7076,26.03704],[-97.70279,26.0321],[-97.6973,26.03087],[-97.69661,26.0247],[-97.69249,26.01853],[-97.69043,26.02408],[-97.69318,26.03148],[-97.68769,26.02778],[-97.67601,26.02655],[-97.67464,26.02902],[-97.67601,26.03334],[-97.67121,26.03519],[-97.66846,26.0284],[-97.66434,26.03334],[-97.66297,26.03951],[-97.66091,26.02963],[-97.66777,26.02408],[-97.66709,26.01914],[-97.65954,26.02038],[-97.65061,26.01729],[-97.64512,26.0284],[-97.63619,26.01668],[-97.63962,26.01297],[-97.64718,26.01297],[-97.65061,26.01112],[-97.64649,26.00804],[-97.6355,26.00125],[-97.63138,26.00619],[-97.62658,26.00433],[-97.62726,26.00001],[-97.62383,25.99755],[-97.61971,26.00248],[-97.61696,25.99508],[-97.62314,25.99384],[-97.63001,25.99631],[-97.63276,25.99446],[-97.63276,25.98952],[-97.62932,25.98829],[-97.62246,25.9889],[-97.61765,25.97903],[-97.60804,25.97656],[-97.61147,25.96607],[-97.59911,25.95742],[-97.59362,25.96298],[-97.58332,25.9636],[-97.58332,25.95742],[-97.5792,25.9426],[-97.57439,25.94631],[-97.57439,25.9531],[-97.56684,25.95248],[-97.56684,25.94507],[-97.58126,25.9389],[-97.58263,25.93705],[-97.584,25.93334],[-97.5804,25.93218],[-97.57439,25.93473],[-97.56546,25.93149],[-97.5689,25.92779],[-97.56134,25.92593],[-97.5586,25.93581],[-97.55173,25.93705],[-97.54555,25.93273],[-97.54555,25.92531],[-97.53869,25.93334],[-97.53525,25.92779],[-97.54281,25.92037],[-97.53113,25.92099],[-97.53182,25.9179],[-97.53251,25.91173],[-97.53113,25.90802],[-97.52427,25.89752],[-97.52015,25.88579],[-97.51122,25.88887],[-97.49817,25.89938],[-97.49749,25.88146],[-97.48925,25.8864],[-97.48787,25.88084],[-97.47139,25.89011],[-97.46796,25.88702],[-97.4762,25.88331],[-97.47483,25.87899],[-97.47071,25.8759],[-97.4659,25.88208],[-97.45491,25.88455],[-97.45697,25.86849],[-97.45217,25.86787],[-97.44805,25.87405],[-97.4453,25.86725],[-97.44736,25.86169],[-97.45354,25.85675],[-97.45285,25.85366],[-97.44736,25.85737],[-97.44462,25.85428],[-97.44736,25.85057],[-97.44393,25.84871],[-97.43569,25.8518],[-97.42539,25.84068],[-97.41303,25.84253],[-97.41372,25.8586],[-97.40891,25.86293],[-97.40822,25.85428],[-97.41097,25.84995],[-97.40685,25.84439],[-97.40273,25.85304],[-97.40136,25.84624],[-97.40754,25.84068],[-97.40342,25.83759],[-97.39037,25.84068],[-97.38625,25.84439],[-97.38213,25.84192],[-97.37183,25.84253],[-97.37046,25.84995],[-97.36565,25.85057],[-97.37664,25.85613],[-97.37114,25.85922],[-97.3629,25.86972],[-97.35947,25.86725],[-97.35672,25.86849],[-97.35878,25.87961],[-97.37389,25.87899],[-97.36771,25.88579],[-97.35741,25.88702],[-97.35878,25.89134],[-97.36908,25.89196],[-97.36771,25.90493],[-97.37458,25.90802],[-97.36977,25.91111],[-97.36771,25.91605],[-97.36222,25.91543],[-97.34848,25.93149],[-97.3423,25.92902],[-97.33681,25.92964],[-97.33887,25.92099],[-97.33544,25.92037],[-97.33475,25.92655],[-97.32926,25.91667],[-97.3272,25.91852],[-97.32239,25.9284],[-97.31278,25.93273],[-97.31072,25.92779],[-97.30248,25.93087],[-97.30385,25.93705],[-97.29767,25.93705],[-97.2963,25.93334],[-97.29081,25.93767],[-97.27639,25.9352],[-97.28119,25.94384],[-97.27982,25.94754],[-97.29012,25.95372],[-97.28394,25.95927],[-97.27707,25.9531],[-97.26059,25.95125],[-97.2448,25.95001],[-97.22695,25.95866],[-97.22489,25.95866],[-97.22214,25.95619],[-97.21116,25.96174],[-97.2091,25.96421],[-97.20566,25.96236],[-97.20498,25.95866],[-97.1885,25.95495],[-97.18644,25.95866],[-97.1782,25.96174],[-97.17751,25.96607],[-97.17408,25.96483],[-97.16927,25.96113],[-97.16103,25.9636],[-97.15691,25.96236],[-97.16103,25.95063],[-97.15142,25.95248],[-97.1473,25.95681],[-90,25.04828],[-89.99863,48.05903],[-90.00464,48.06465],[-90.00447,48.06546],[-90.00653,48.06569],[-90.00859,48.06878],[-90.01013,48.06901],[-90.01099,48.06821],[-90.01494,48.06741],[-90.01889,48.07234],[-90.02335,48.08496],[-90.02936,48.08771],[-90.03794,48.08954],[-90.03914,48.09],[-90.04155,48.08954],[-90.04996,48.09247],[-90.05751,48.09648],[-90.06661,48.09854],[-90.07408,48.10129],[-90.09167,48.10468],[-90.11613,48.10422],[-90.12248,48.10576],[-90.12369,48.10731],[-90.12515,48.10754],[-90.12575,48.10817],[-90.12738,48.10823],[-90.13253,48.11178],[-90.1442,48.11339],[-90.14969,48.11132],[-90.16308,48.11018],[-90.17613,48.11247],[-90.18849,48.10811],[-90.1957,48.10834],[-90.21321,48.10651],[-90.22419,48.10834],[-90.25406,48.10261],[-90.26436,48.10376],[-90.27501,48.10353],[-90.28908,48.0994],[-90.29286,48.0994],[-90.2987,48.10284],[-90.30556,48.10536],[-90.3102,48.10571],[-90.31449,48.10502],[-90.31758,48.10364],[-90.32221,48.10296],[-90.32616,48.10284],[-90.33011,48.10227],[-90.33698,48.09963],[-90.33818,48.09642],[-90.34316,48.09573],[-90.34367,48.0947],[-90.34573,48.09401],[-90.35397,48.09482],[-90.35758,48.09447],[-90.35895,48.09482],[-90.36787,48.09482],[-90.36873,48.09401],[-90.37148,48.09367],[-90.37337,48.0939],[-90.37354,48.09287],[-90.37268,48.09126],[-90.37491,48.09115],[-90.378,48.09252],[-90.37989,48.09241],[-90.38109,48.09275],[-90.38384,48.09436],[-90.38487,48.09482],[-90.3859,48.09608],[-90.38624,48.09791],[-90.38916,48.09929],[-90.39036,48.09998],[-90.39242,48.10032],[-90.39345,48.1002],[-90.39483,48.10089],[-90.39603,48.10135],[-90.39654,48.10192],[-90.39723,48.10227],[-90.39843,48.10238],[-90.40307,48.10502],[-90.41062,48.10502],[-90.43791,48.09871],[-90.44323,48.10055],[-90.4477,48.10353],[-90.45216,48.10536],[-90.46212,48.10651],[-90.46555,48.10857],[-90.46761,48.10892],[-90.47139,48.10605],[-90.47757,48.10536],[-90.48031,48.10215],[-90.48375,48.10009],[-90.48684,48.09929],[-90.4901,48.09929],[-90.49353,48.10147],[-90.49559,48.09963],[-90.49628,48.09871],[-90.5028,48.09952],[-90.50538,48.09986],[-90.50795,48.09917],[-90.51018,48.09722],[-90.51722,48.0994],[-90.55687,48.09596],[-90.5646,48.09906],[-90.56752,48.10181],[-90.56975,48.10685],[-90.5555,48.11694],[-90.55945,48.12187],[-90.56546,48.12244],[-90.57095,48.12141],[-90.57576,48.12072],[-90.5773,48.12129],[-90.5797,48.12404],[-90.58228,48.12359],[-90.58571,48.12221],[-90.58691,48.12107],[-90.59035,48.11946],[-90.59138,48.11763],[-90.60614,48.11602],[-90.61301,48.11327],[-90.61524,48.11281],[-90.61584,48.11218],[-90.61781,48.11241],[-90.61927,48.11178],[-90.62013,48.11155],[-90.62056,48.11195],[-90.627,48.11184],[-90.6415,48.10353],[-90.68639,48.10032],[-90.70287,48.09608],[-90.74141,48.09464],[-90.75162,48.09098],[-90.76149,48.09843],[-90.76141,48.10003],[-90.76716,48.11064],[-90.76682,48.11453],[-90.76879,48.1166],[-90.76999,48.11665],[-90.77265,48.11763],[-90.77411,48.11872],[-90.77428,48.12009],[-90.776,48.1225],[-90.77643,48.12399],[-90.78184,48.12571],[-90.78364,48.12679],[-90.78295,48.12783],[-90.78407,48.12817],[-90.78716,48.12788],[-90.78999,48.13029],[-90.78819,48.13275],[-90.7851,48.13327],[-90.78364,48.13275],[-90.78166,48.13527],[-90.78218,48.13596],[-90.78269,48.13619],[-90.78596,48.13527],[-90.7887,48.13648],[-90.79248,48.13567],[-90.79437,48.13544],[-90.79823,48.13699],[-90.79677,48.1394],[-90.79222,48.14129],[-90.77797,48.14776],[-90.7766,48.16333],[-90.78141,48.16425],[-90.78621,48.16104],[-90.79308,48.16104],[-90.7972,48.16013],[-90.80132,48.16333],[-90.80407,48.17799],[-90.81025,48.18073],[-90.81711,48.17982],[-90.82055,48.18485],[-90.82604,48.1844],[-90.82329,48.17799],[-90.83359,48.17341],[-90.83634,48.17753],[-90.83497,48.1876],[-90.83703,48.22696],[-90.84046,48.22787],[-90.83771,48.2361],[-90.84046,48.24022],[-90.84389,48.24159],[-90.84389,48.24388],[-90.84938,48.24571],[-90.86792,48.23839],[-90.87616,48.23885],[-90.88303,48.24068],[-90.88715,48.24616],[-90.90775,48.23702],[-90.91599,48.23153],[-90.9771,48.21964],[-91.00525,48.20316],[-91.00388,48.20179],[-91.02379,48.19081],[-91.03684,48.18943],[-91.06156,48.18623],[-91.06499,48.18165],[-91.07804,48.17936],[-91.08216,48.18119],[-91.08971,48.17753],[-91.09246,48.17295],[-91.11512,48.16654],[-91.11855,48.1615],[-91.14258,48.15463],[-91.13778,48.14959],[-91.15563,48.14134],[-91.1776,48.1253],[-91.18515,48.12255],[-91.18996,48.12485],[-91.21399,48.1033],[-91.23597,48.0955],[-91.2497,48.08496],[-91.26687,48.07899],[-91.27717,48.07899],[-91.28952,48.07486],[-91.30841,48.07291],[-91.32437,48.07291],[-91.32832,48.07119],[-91.32935,48.07005],[-91.33673,48.07005],[-91.33965,48.07349],[-91.34943,48.07211],[-91.35012,48.072],[-91.36506,48.06718],[-91.37072,48.0697],[-91.3781,48.06603],[-91.39098,48.05731],[-91.41398,48.05352],[-91.42256,48.05089],[-91.42977,48.04871],[-91.43733,48.04951],[-91.43801,48.05066],[-91.43801,48.05261],[-91.44711,48.06293],[-91.44642,48.06798],[-91.45037,48.06924],[-91.46513,48.06706],[-91.48831,48.06844],[-91.54152,48.05387],[-91.5671,48.04389],[-91.57568,48.04905],[-91.57277,48.05754],[-91.57534,48.06649],[-91.56933,48.09367],[-91.55285,48.1033],[-91.55938,48.1088],[-91.57586,48.10685],[-91.58873,48.10238],[-91.61499,48.10215],[-91.64006,48.09722],[-91.64692,48.10364],[-91.64813,48.10628],[-91.6531,48.10983],[-91.65139,48.11293],[-91.65173,48.11419],[-91.65345,48.11442],[-91.66203,48.1119],[-91.66289,48.10926],[-91.6646,48.10731],[-91.66752,48.10857],[-91.6713,48.10869],[-91.67645,48.10766],[-91.68091,48.10846],[-91.68177,48.10983],[-91.68744,48.1119],[-91.68349,48.11763],[-91.68229,48.12255],[-91.69224,48.1198],[-91.69121,48.11809],[-91.69224,48.11677],[-91.70323,48.11379],[-91.71164,48.11465],[-91.71258,48.11562],[-91.71181,48.1174],[-91.70949,48.11946],[-91.70795,48.12347],[-91.70374,48.1249],[-91.69962,48.13189],[-91.69945,48.13762],[-91.69782,48.14157],[-91.69816,48.14409],[-91.69937,48.14507],[-91.70057,48.14472],[-91.70246,48.14478],[-91.70331,48.1453],[-91.70701,48.15062],[-91.70812,48.15308],[-91.70709,48.15377],[-91.70503,48.15812],[-91.70469,48.16024],[-91.70503,48.16139],[-91.70477,48.17072],[-91.70932,48.17295],[-91.71705,48.17186],[-91.72297,48.16911],[-91.72434,48.17055],[-91.72288,48.17347],[-91.72254,48.17856],[-91.72125,48.18039],[-91.71224,48.18754],[-91.71044,48.19229],[-91.71044,48.19401],[-91.7131,48.19807],[-91.7155,48.19956],[-91.7252,48.20139],[-91.73722,48.20419],[-91.73911,48.20431],[-91.74211,48.20465],[-91.74159,48.19939],[-91.74391,48.19882],[-91.74846,48.19882],[-91.75361,48.20093],[-91.75601,48.20602],[-91.76082,48.20482],[-91.7628,48.2019],[-91.76434,48.20065],[-91.78073,48.20082],[-91.78606,48.19624],[-91.78863,48.19647],[-91.79121,48.20242],[-91.7973,48.20276],[-91.80957,48.20625],[-91.81412,48.20831],[-91.81558,48.21186],[-91.83266,48.2094],[-91.83592,48.21031],[-91.84545,48.20871],[-91.8645,48.207],[-91.86751,48.21918],[-91.88433,48.22741],[-91.89309,48.23793],[-91.90236,48.23713],[-91.90605,48.2373],[-91.90725,48.23833],[-91.91334,48.23856],[-91.91343,48.23885],[-91.91497,48.23902],[-91.91695,48.23868],[-91.92098,48.23685],[-91.92879,48.23593],[-91.93755,48.23416],[-91.9421,48.23044],[-91.94519,48.23039],[-91.95137,48.23342],[-91.95257,48.23313],[-91.95832,48.23313],[-91.95978,48.23679],[-91.9572,48.2389],[-91.95823,48.24393],[-91.94948,48.24462],[-91.9481,48.24611],[-91.95411,48.24976],[-91.95411,48.25234],[-91.95712,48.25251],[-91.959,48.25359],[-91.96999,48.25377],[-91.97102,48.25297],[-91.97171,48.25297],[-91.97248,48.25045],[-91.97016,48.24874],[-91.97042,48.24794],[-91.97342,48.24662],[-91.97548,48.24439],[-91.97754,48.24571],[-91.97694,48.24662],[-91.9778,48.24748],[-91.97892,48.24742],[-91.98055,48.24794],[-91.98922,48.26017],[-92.00655,48.26537],[-92.00741,48.28056],[-92.01205,48.28702],[-92.01291,48.29747],[-92.0002,48.3211],[-92.03076,48.32567],[-92.03771,48.33314],[-92.04698,48.33485],[-92.04792,48.34364],[-92.04518,48.34569],[-92.04595,48.34797],[-92.04895,48.34854],[-92.05531,48.35938],[-92.06715,48.3595],[-92.07822,48.35813],[-92.08354,48.35373],[-92.09084,48.35448],[-92.14363,48.35602],[-92.145,48.36571],[-92.16208,48.3632],[-92.17744,48.3571],[-92.17907,48.35499],[-92.17873,48.35197],[-92.19272,48.34883],[-92.19461,48.34889],[-92.19487,48.35048],[-92.20414,48.35214],[-92.20688,48.34575],[-92.21787,48.34575],[-92.22199,48.3494],[-92.2625,48.35488],[-92.28928,48.34301],[-92.29546,48.32567],[-92.3037,48.32384],[-92.30576,48.31699],[-92.29477,48.30649],[-92.30233,48.28684],[-92.28997,48.26537],[-92.27349,48.25668],[-92.27005,48.24845],[-92.36824,48.22284],[-92.41562,48.29415],[-92.4273,48.30649],[-92.43279,48.30603],[-92.46918,48.35168],[-92.47673,48.37221],[-92.45751,48.40185],[-92.45682,48.41507],[-92.47536,48.41872],[-92.48429,48.42965],[-92.48909,48.42965],[-92.50901,48.44833],[-92.53579,48.44742],[-92.57561,48.44104],[-92.65664,48.43649],[-92.66488,48.44059],[-92.68891,48.44377],[-92.71225,48.46336],[-92.69921,48.49522],[-92.66144,48.49658],[-92.65389,48.50159],[-92.63672,48.49977],[-92.62711,48.50386],[-92.63192,48.50978],[-92.62711,48.51342],[-92.62642,48.52024],[-92.63466,48.54252],[-92.6587,48.54661],[-92.72942,48.53934],[-92.89559,48.59432],[-92.91138,48.59704],[-92.92992,48.60749],[-92.95052,48.60885],[-92.94983,48.63064],[-92.95464,48.6329],[-92.98485,48.62474],[-93.0906,48.62791],[-93.17849,48.62428],[-93.20664,48.64289],[-93.25676,48.64334],[-93.34809,48.62655],[-93.35221,48.61384],[-93.35633,48.61112],[-93.36113,48.61339],[-93.37143,48.60658],[-93.39959,48.60385],[-93.40508,48.60976],[-93.4298,48.60022],[-93.43667,48.59477],[-93.4655,48.59295],[-93.4607,48.57024],[-93.45795,48.55797],[-93.4655,48.54843],[-93.49778,48.54161],[-93.51494,48.53524],[-93.5479,48.52979],[-93.5582,48.52979],[-93.5788,48.52615],[-93.59047,48.53024],[-93.60009,48.52751],[-93.60558,48.52342],[-93.61863,48.52342],[-93.62549,48.5307],[-93.63373,48.5307],[-93.63785,48.52797],[-93.6406,48.52069],[-93.64335,48.51978],[-93.69004,48.51615],[-93.71064,48.51887],[-93.72025,48.51796],[-93.73742,48.51796],[-93.75252,48.51615],[-93.79372,48.5166],[-93.81707,48.52979],[-93.81844,48.53661],[-93.8102,48.54343],[-93.81157,48.55161],[-93.80402,48.57115],[-93.80814,48.58342],[-93.83492,48.627],[-93.84728,48.63109],[-93.9132,48.63653],[-93.91869,48.63245],[-93.9544,48.63427],[-94.00727,48.64379],[-94.03405,48.64153],[-94.10202,48.64561],[-94.15696,48.64606],[-94.19953,48.6506],[-94.22356,48.64924],[-94.25309,48.65695],[-94.25171,48.68325],[-94.2627,48.69866],[-94.27437,48.69957],[-94.28811,48.70682],[-94.31008,48.70954],[-94.3293,48.7041],[-94.35265,48.7041],[-94.38218,48.71361],[-94.41788,48.71135],[-94.44191,48.69413],[-94.53736,48.70183],[-94.54972,48.71588],[-94.5916,48.71905],[-94.6177,48.73672],[-94.6431,48.7426],[-94.64447,48.74894],[-94.68705,48.7761],[-94.69666,48.80822],[-94.7049,48.82585],[-94.70078,48.83534],[-94.68567,48.83941],[-94.69323,48.85387],[-94.69048,48.86245],[-94.69254,48.86923],[-94.68567,48.87329],[-94.68293,48.88323],[-94.7509,49.09949],[-94.77219,49.12107],[-94.80103,49.1992],[-94.79828,49.214],[-94.82644,49.29468],[-94.82369,49.31124],[-94.81682,49.32198],[-94.83674,49.32377],[-94.8539,49.32467],[-94.87999,49.33407],[-94.90883,49.34973],[-94.9569,49.3703],[-94.97544,49.36851],[-94.98917,49.36896],[-95.01458,49.35643],[-95.05921,49.3533],[-95.10315,49.36359],[-95.10315,49.36538],[-95.1162,49.36717],[-95.13062,49.37074],[-95.15397,49.38371],[-95.15328,48.99914],[-110.00473,49.00004]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**USA#W0", "itu_zone_number": 8 }, "geometry": { "type": "Polygon", "coordinates": [[[-89.99863,48.03401],[-89.99726,25.04828],[-85.93506,24.55327],[-82.55359,24.47636],[-80.97272,24.43788],[-80.00708,24.3994],[-79.41498,25.25532],[-79.30627,30.20248],[-78.12207,31.46898],[-67,43],[-67,44.6955],[-66.91018,44.75063],[-66.90194,44.77842],[-66.88614,44.79499],[-66.93215,44.82568],[-66.96579,44.82909],[-66.97403,44.84126],[-66.98227,44.8656],[-66.97129,44.9123],[-66.99601,44.92786],[-67.00974,44.94633],[-67.0221,44.95313],[-67.11274,45.11036],[-67.15943,45.1617],[-67.22809,45.16848],[-67.2432,45.17622],[-67.28302,45.18978],[-67.29676,45.14911],[-67.31736,45.14233],[-67.34345,45.12296],[-67.4025,45.1617],[-67.40799,45.18397],[-67.48764,45.28165],[-67.41898,45.37337],[-67.47391,45.42544],[-67.50412,45.48902],[-67.4231,45.49864],[-67.40113,45.53713],[-67.45606,45.5756],[-67.80762,45.6985],[-67.78977,47.06731],[-67.81861,47.08321],[-67.8859,47.10845],[-67.89277,47.12714],[-67.91199,47.14583],[-67.92984,47.1589],[-67.95044,47.18317],[-67.95594,47.19997],[-67.99164,47.20837],[-68.01911,47.23821],[-68.07541,47.26059],[-68.15644,47.32579],[-68.23334,47.35371],[-68.2663,47.35278],[-68.35007,47.35743],[-68.38578,47.33323],[-68.37754,47.28761],[-68.41599,47.28854],[-68.42972,47.28016],[-68.45993,47.28481],[-68.47367,47.29879],[-68.52311,47.29413],[-68.55332,47.28388],[-68.58353,47.28854],[-68.60001,47.27084],[-68.59315,47.25593],[-68.61649,47.24567],[-68.90076,47.17944],[-69.05182,47.26059],[-69.03397,47.40764],[-69.06418,47.43273],[-69.08616,47.42437],[-69.18091,47.4578],[-69.22623,47.45873],[-69.99802,46.6945],[-70.05982,46.41892],[-70.20401,46.33163],[-70.28504,46.18743],[-70.24109,46.13797],[-70.31113,46.05792],[-70.27096,46.0584],[-70.31319,46.02075],[-70.2895,45.99073],[-70.31336,45.96664],[-70.26856,45.95974],[-70.24109,45.94589],[-70.26375,45.92272],[-70.25448,45.89967],[-70.27817,45.87662],[-70.34615,45.84696],[-70.41138,45.79817],[-70.37842,45.72535],[-70.56931,45.65811],[-70.72998,45.51789],[-70.62561,45.41002],[-70.64209,45.39845],[-70.65308,45.3753],[-70.67746,45.39603],[-70.71557,45.38783],[-70.75093,45.42206],[-70.78629,45.43122],[-70.82612,45.39845],[-70.80861,45.38082],[-70.81032,45.3632],[-70.81616,45.33689],[-70.80552,45.32216],[-70.8474,45.26759],[-70.83985,45.22848],[-70.88585,45.2345],[-70.91538,45.27341],[-70.91057,45.30167],[-70.94696,45.33573],[-70.97606,45.32987],[-71.0134,45.34332],[-71.00979,45.31616],[-71.09047,45.30433],[-71.13099,45.25168],[-71.21888,45.25555],[-71.29029,45.30193],[-71.43448,45.23331],[-71.39569,45.20494],[-71.4338,45.12818],[-71.50212,45.06786],[-71.49903,45.0153],[-72.31751,45.00365],[-73.22113,45.01336],[-74.12476,44.99199],[-74.71253,45.00753],[-74.83338,45.01918],[-75.3772,44.78573],[-75.81665,44.49258],[-75.81665,44.4377],[-75.96497,44.35135],[-76.16272,44.27667],[-76.15723,44.25306],[-76.19019,44.22945],[-76.23414,44.20189],[-76.31104,44.19795],[-76.35498,44.13491],[-76.43189,44.09942],[-76.79993,43.63209],[-78.68409,43.64402],[-79.20044,43.4569],[-79.0741,43.2572],[-79.04114,43.13707],[-79.0741,43.09697],[-78.9972,43.05283],[-79.01368,42.99259],[-78.97522,42.96044],[-78.96424,42.96848],[-78.93677,42.95642],[-78.9148,42.90413],[-78.94227,42.82763],[-80.08484,42.391],[-81.2494,42.21224],[-82.39197,41.68522],[-82.67212,41.6688],[-83.06214,41.86137],[-83.14904,42.01642],[-83.12607,42.28569],[-82.81647,42.37632],[-82.67383,42.54463],[-82.55317,42.56716],[-82.48214,42.73738],[-82.406,43.00485],[-82.12339,43.58463],[-82.51644,45.33729],[-83.57965,45.83198],[-83.42787,45.99956],[-83.60568,46.12135],[-83.73405,46.09829],[-83.82946,46.10571],[-83.95292,46.04385],[-84.00209,46.14128],[-84.08944,46.22198],[-84.14328,46.39895],[-84.10816,46.5332],[-84.20649,46.53983],[-84.2499,46.49354],[-84.3367,46.51436],[-84.55426,46.46151],[-84.71472,46.56769],[-84.78528,46.86755],[-88.37145,48.29788],[-89.36486,47.95903],[-89.99863,48.03401]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**St. Paul Island#CY0", "itu_zone_number": 9 }, "geometry": { "type": "Polygon", "coordinates": [[[-69.99802,46.69655],[-69.22623,47.45873],[-69.18091,47.4578],[-69.08616,47.42437],[-69.06418,47.43273],[-69.03397,47.40764],[-69.05182,47.26059],[-68.90076,47.17944],[-68.61649,47.24567],[-68.59315,47.25593],[-68.60001,47.27084],[-68.58353,47.28854],[-68.55332,47.28388],[-68.52311,47.29413],[-68.47367,47.29879],[-68.45993,47.28481],[-68.42972,47.28016],[-68.41599,47.28854],[-68.37754,47.28761],[-68.38578,47.33323],[-68.35007,47.35743],[-68.2663,47.35278],[-68.23334,47.35371],[-68.15644,47.32579],[-68.07541,47.26059],[-68.01911,47.23821],[-67.99164,47.20837],[-67.95594,47.19997],[-67.95044,47.18317],[-67.92984,47.1589],[-67.91199,47.14583],[-67.89277,47.12714],[-67.8859,47.10845],[-67.81861,47.08321],[-67.78977,47.06731],[-67.80762,45.6985],[-67.45606,45.5756],[-67.40113,45.53713],[-67.4231,45.49864],[-67.50412,45.48902],[-67.47391,45.42544],[-67.41898,45.37337],[-67.48764,45.28165],[-67.40799,45.18397],[-67.4025,45.1617],[-67.34345,45.12296],[-67.31736,45.14233],[-67.29676,45.14911],[-67.28302,45.18978],[-67.2432,45.17622],[-67.22809,45.16848],[-67.15943,45.1617],[-67.11274,45.11036],[-67.0221,44.95313],[-67.00974,44.94633],[-66.99601,44.92786],[-66.97129,44.9123],[-66.98227,44.8656],[-66.97403,44.84126],[-66.96579,44.82909],[-66.93215,44.82568],[-66.88614,44.79499],[-66.90194,44.77842],[-66.91018,44.75063],[-67,44.6955],[-67,43],[-50,43],[-50,54],[-54.14269,61.24388],[-69.9939,61.24646],[-69.99802,46.69655]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Clipperton Island#XE", "itu_zone_number": 10 }, "geometry": { "type": "Polygon", "coordinates": [[[-92.2371,14.53839],[-92.18997,6.011],[-109.89813,6.32386],[-124.63097,32.46386],[-117.12525,32.53382],[-115.92568,32.6333],[-114.71959,32.71861],[-114.73049,32.70399],[-114.72971,32.69977],[-114.74396,32.67863],[-114.7498,32.66118],[-114.76027,32.65342],[-114.76516,32.64939],[-114.76315,32.64434],[-114.77143,32.63756],[-114.7819,32.63211],[-114.78207,32.62435],[-114.79211,32.62191],[-114.8001,32.62526],[-114.80636,32.62167],[-114.80988,32.61866],[-114.8086,32.61169],[-114.80904,32.60819],[-114.80786,32.60523],[-114.80822,32.603],[-114.806,32.60059],[-114.80231,32.60025],[-114.80137,32.59817],[-114.80147,32.59575],[-114.79916,32.59276],[-114.80038,32.58793],[-114.80332,32.58497],[-114.80385,32.58144],[-114.80097,32.57749],[-114.80324,32.57383],[-114.81293,32.56939],[-114.81429,32.56532],[-114.81428,32.56096],[-114.80842,32.55803],[-114.80437,32.56009],[-114.80134,32.56272],[-114.79763,32.56435],[-114.79457,32.56776],[-114.79424,32.56904],[-114.7922,32.56915],[-114.79314,32.56205],[-114.79065,32.55697],[-114.79443,32.55157],[-114.80121,32.54916],[-114.80662,32.54603],[-114.80507,32.54237],[-114.8019,32.54011],[-114.80147,32.53785],[-114.80271,32.53511],[-114.80505,32.5336],[-114.80636,32.53122],[-114.81194,32.52604],[-114.8134,32.52401],[-114.81039,32.52139],[-114.81031,32.51834],[-114.80799,32.51689],[-114.8031,32.51652],[-114.80147,32.51281],[-114.80683,32.50872],[-114.80972,32.50849],[-114.81432,32.50913],[-114.81666,32.50752],[-114.81385,32.50453],[-114.81276,32.50155],[-114.81235,32.49957],[-114.8142,32.49786],[-114.814,32.49499],[-112.94014,31.91798],[-111.07453,31.33369],[-110.00061,31.33369],[-108.20847,31.33252],[-108.2071,31.78421],[-106.531,31.7845],[-106.51417,31.7702],[-106.50988,31.75998],[-106.50568,31.76042],[-106.50216,31.75677],[-106.48705,31.74699],[-106.4716,31.75028],[-106.46782,31.75882],[-106.45306,31.76437],[-106.43624,31.75532],[-106.42079,31.7521],[-106.39435,31.73926],[-106.38062,31.73196],[-106.37341,31.71414],[-106.34938,31.69604],[-106.33461,31.66331],[-106.30269,31.62122],[-106.29342,31.59462],[-106.2838,31.5718],[-106.28071,31.56215],[-106.24878,31.54401],[-106.24638,31.54167],[-106.23711,31.51328],[-106.22441,31.49982],[-106.21926,31.4805],[-106.2045,31.46469],[-106.17531,31.45444],[-106.1578,31.43774],[-106.13137,31.42514],[-106.11145,31.42368],[-106.0809,31.39877],[-106.00434,31.39233],[-105.96966,31.36565],[-105.95456,31.36565],[-105.94597,31.35393],[-105.94838,31.34073],[-105.93842,31.31844],[-105.93361,31.31375],[-105.92469,31.31228],[-105.90889,31.31375],[-105.89619,31.29116],[-105.87594,31.29204],[-105.86976,31.28911],[-105.85465,31.27268],[-105.83628,31.24714],[-105.81268,31.2238],[-105.79388,31.20164],[-105.78358,31.1987],[-105.7798,31.18989],[-105.78015,31.18225],[-105.77603,31.17638],[-105.77328,31.16727],[-105.76401,31.16404],[-105.74341,31.16581],[-105.71938,31.14935],[-105.71698,31.14259],[-105.71183,31.13789],[-105.64797,31.11556],[-105.64179,31.09851],[-105.62806,31.09851],[-105.6078,31.08645],[-105.60162,31.07822],[-105.59681,31.06558],[-105.58583,31.05793],[-105.5793,31.0344],[-105.58136,31.02763],[-105.57896,31.02028],[-105.57141,31.0191],[-105.56969,31.01675],[-105.57038,31.00851],[-105.55665,30.98835],[-105.54223,30.98526],[-105.5333,30.98585],[-105.52643,30.9776],[-105.523,30.97643],[-105.51545,30.96524],[-105.50309,30.96818],[-105.49416,30.957],[-105.49622,30.95582],[-105.49897,30.95111],[-105.49485,30.94993],[-105.48867,30.94404],[-105.4921,30.94345],[-105.48935,30.94169],[-105.48729,30.94286],[-105.48111,30.94051],[-105.47768,30.93756],[-105.47631,30.93462],[-105.47081,30.93403],[-105.4715,30.93226],[-105.46807,30.92991],[-105.46669,30.92461],[-105.46463,30.92637],[-105.45296,30.92578],[-105.45228,30.92107],[-105.45502,30.9193],[-105.45296,30.91636],[-105.44747,30.92048],[-105.44472,30.91813],[-105.44541,30.91577],[-105.44198,30.90988],[-105.42893,30.90517],[-105.4255,30.90163],[-105.41314,30.90045],[-105.41176,30.89161],[-105.41245,30.88867],[-105.40421,30.8922],[-105.3994,30.88867],[-105.3994,30.8869],[-105.39803,30.88572],[-105.40421,30.88042],[-105.3994,30.87688],[-105.39254,30.87688],[-105.39185,30.87394],[-105.3946,30.87158],[-105.39528,30.8592],[-105.40215,30.85566],[-105.39528,30.84977],[-105.38842,30.85331],[-105.3685,30.84918],[-105.36301,30.84977],[-105.36026,30.84741],[-105.3534,30.84387],[-105.35408,30.83857],[-105.35271,30.83621],[-105.3479,30.83975],[-105.33967,30.84034],[-105.33761,30.83385],[-105.32799,30.83149],[-105.33211,30.82678],[-105.32937,30.82619],[-105.31838,30.82913],[-105.31838,30.82383],[-105.31563,30.81852],[-105.31838,30.81262],[-105.31701,30.81085],[-105.31014,30.81557],[-105.30808,30.8138],[-105.30877,30.81262],[-105.30877,30.81027],[-105.30602,30.81027],[-105.30053,30.82029],[-105.30121,30.82383],[-105.29091,30.82619],[-105.28748,30.81852],[-105.28199,30.81734],[-105.27581,30.8085],[-105.26894,30.8085],[-105.26619,30.80555],[-105.26207,30.79788],[-105.25658,30.79493],[-105.2298,30.80437],[-105.2298,30.80024],[-105.22706,30.79847],[-105.21744,30.80555],[-105.2147,30.80496],[-105.21332,30.80083],[-105.20989,30.79729],[-105.21264,30.79316],[-105.21813,30.79375],[-105.22088,30.78785],[-105.21264,30.78254],[-105.20714,30.78726],[-105.20165,30.78844],[-105.19547,30.79198],[-105.19066,30.78667],[-105.18586,30.78372],[-105.17624,30.76897],[-105.16938,30.77546],[-105.17006,30.78018],[-105.16663,30.77959],[-105.16526,30.77546],[-105.16526,30.77192],[-105.15564,30.77015],[-105.16182,30.75245],[-105.15633,30.75304],[-105.15427,30.75186],[-105.14466,30.7554],[-105.12681,30.74832],[-105.11788,30.7495],[-105.12063,30.74478],[-105.11582,30.74301],[-105.11376,30.74773],[-105.11033,30.7436],[-105.10758,30.73003],[-105.10209,30.72944],[-105.10209,30.7259],[-105.10483,30.72412],[-105.09934,30.72294],[-105.09797,30.71645],[-105.0911,30.71704],[-105.08767,30.71291],[-105.08698,30.70996],[-105.08149,30.70937],[-105.07874,30.70582],[-105.08355,30.70228],[-105.07943,30.69992],[-105.07599,30.70287],[-105.06981,30.70405],[-105.06432,30.69815],[-105.06226,30.69284],[-105.06363,30.68811],[-105.0602,30.68575],[-105.05745,30.68811],[-105.05402,30.68457],[-105.05402,30.68162],[-105.04853,30.6828],[-105.04647,30.68044],[-105.04509,30.68634],[-105.04578,30.68752],[-105.04372,30.6887],[-105.04097,30.68811],[-105.03548,30.68634],[-105.02861,30.68044],[-105.00733,30.68575],[-105.00252,30.68103],[-104.99978,30.67335],[-104.99978,30.67217],[-104.9936,30.66921],[-104.9936,30.66508],[-104.98604,30.66272],[-104.9833,30.63141],[-104.98055,30.62845],[-104.97918,30.62136],[-104.97437,30.61664],[-104.973,30.61132],[-104.96819,30.60955],[-104.96064,30.61014],[-104.95446,30.60659],[-104.94965,30.60423],[-104.94072,30.60541],[-104.93798,30.60659],[-104.93454,30.60068],[-104.92905,30.60068],[-104.9263,30.60541],[-104.92081,30.59595],[-104.92081,30.59063],[-104.91875,30.58531],[-104.9112,30.58472],[-104.90708,30.57822],[-104.89815,30.56699],[-104.89472,30.56048],[-104.89884,30.55575],[-104.88785,30.54747],[-104.8906,30.54156],[-104.88923,30.53505],[-104.88167,30.53269],[-104.88167,30.52618],[-104.88373,30.52618],[-104.88717,30.52441],[-104.88236,30.52263],[-104.88511,30.52027],[-104.88511,30.51849],[-104.87961,30.5179],[-104.87687,30.51199],[-104.87343,30.51258],[-104.87275,30.50903],[-104.87275,30.4966],[-104.86863,30.49483],[-104.86725,30.48418],[-104.87069,30.48122],[-104.86931,30.47945],[-104.86931,30.47353],[-104.86519,30.46465],[-104.87,30.45844],[-104.86828,30.4537],[-104.86519,30.45163],[-104.8676,30.44157],[-104.85833,30.43742],[-104.86245,30.42795],[-104.85009,30.41966],[-104.84803,30.41966],[-104.8494,30.41611],[-104.84871,30.41315],[-104.85695,30.40959],[-104.85489,30.40071],[-104.85901,30.39123],[-104.85283,30.3859],[-104.83841,30.37465],[-104.8185,30.37643],[-104.81644,30.37465],[-104.81987,30.3705],[-104.81713,30.36576],[-104.81163,30.36754],[-104.81163,30.3628],[-104.81438,30.35924],[-104.81575,30.3551],[-104.82262,30.35213],[-104.8185,30.3468],[-104.81163,30.34088],[-104.81163,30.33258],[-104.79653,30.3308],[-104.79172,30.32547],[-104.79104,30.32132],[-104.77662,30.30828],[-104.77936,30.30413],[-104.77318,30.30413],[-104.76563,30.30828],[-104.76563,30.30294],[-104.75808,30.28397],[-104.76151,30.27626],[-104.76151,30.27507],[-104.74846,30.2733],[-104.75121,30.26321],[-104.73816,30.2561],[-104.73816,30.26144],[-104.73336,30.26084],[-104.70589,30.23474],[-104.71001,30.22406],[-104.68735,30.17956],[-104.68804,30.14037],[-104.69628,30.13325],[-104.69422,30.11721],[-104.68598,30.10711],[-104.69491,30.10296],[-104.6901,30.09523],[-104.68735,30.0988],[-104.6901,30.07265],[-104.70246,30.06374],[-104.70726,30.05007],[-104.69559,30.03581],[-104.70314,30.02392],[-104.6901,30.01381],[-104.69216,30.0037],[-104.68941,30.00192],[-104.68873,29.99478],[-104.69491,29.9924],[-104.68529,29.98883],[-104.69353,29.97634],[-104.67843,29.98051],[-104.68461,29.97099],[-104.68323,29.9585],[-104.67499,29.95731],[-104.67362,29.95077],[-104.68117,29.92935],[-104.67362,29.91209],[-104.66469,29.90316],[-104.65714,29.90375],[-104.6592,29.88887],[-104.65027,29.88887],[-104.63585,29.87101],[-104.6283,29.85255],[-104.62143,29.84957],[-104.62487,29.84481],[-104.62006,29.84064],[-104.61663,29.846],[-104.61045,29.83766],[-104.61937,29.8323],[-104.60907,29.82575],[-104.60907,29.82098],[-104.59534,29.80668],[-104.59259,29.81145],[-104.58436,29.80073],[-104.59122,29.79894],[-104.58916,29.79655],[-104.58367,29.79655],[-104.57955,29.78464],[-104.56582,29.77272],[-104.56856,29.75782],[-104.56994,29.75364],[-104.5514,29.73874],[-104.56101,29.73755],[-104.55483,29.7298],[-104.55071,29.73039],[-104.55002,29.72503],[-104.54934,29.72025],[-104.54659,29.7125],[-104.54453,29.697],[-104.5308,29.69342],[-104.54316,29.68208],[-104.53492,29.66896],[-104.52462,29.66478],[-104.51088,29.64569],[-104.515,29.64032],[-104.50539,29.63315],[-104.49578,29.63912],[-104.46488,29.61167],[-104.45664,29.60808],[-104.40102,29.57345],[-104.39415,29.55494],[-104.38111,29.54359],[-104.37081,29.54419],[-104.33716,29.51969],[-104.32206,29.52387],[-104.32,29.53224],[-104.30901,29.53403],[-104.31244,29.52686],[-104.31176,29.52328],[-104.29184,29.52148],[-104.263,29.51372],[-104.26232,29.50595],[-104.25477,29.50714],[-104.24103,29.49818],[-104.23691,29.49818],[-104.23142,29.48204],[-104.23005,29.47845],[-104.21494,29.48622],[-104.20945,29.48264],[-104.21288,29.46231],[-104.21837,29.45932],[-104.19434,29.44318],[-104.19434,29.43601],[-104.18267,29.42703],[-104.18061,29.41328],[-104.17374,29.40909],[-104.16687,29.40012],[-104.16962,29.39653],[-104.16275,29.39114],[-104.15314,29.39473],[-104.1504,29.38935],[-104.14559,29.38815],[-104.14147,29.38097],[-104.13598,29.38516],[-104.1243,29.38038],[-104.12087,29.37439],[-104.11469,29.3708],[-104.11263,29.37499],[-104.09821,29.36721],[-104.0886,29.35764],[-104.08928,29.35584],[-104.08036,29.34507],[-104.07418,29.34686],[-104.0577,29.33669],[-104.0577,29.3331],[-103.97324,29.29657],[-103.96775,29.30017],[-103.92655,29.29418],[-103.91831,29.28879],[-103.91762,29.2858],[-103.89977,29.28819],[-103.88947,29.27921],[-103.88398,29.284],[-103.86269,29.27981],[-103.83797,29.27741],[-103.82767,29.27022],[-103.81463,29.27442],[-103.80913,29.27082],[-103.80845,29.26304],[-103.79952,29.25824],[-103.78647,29.26663],[-103.7748,29.24506],[-103.78098,29.24327],[-103.78167,29.22829],[-103.7748,29.2199],[-103.76999,29.22169],[-103.76793,29.22769],[-103.76038,29.23368],[-103.75557,29.22709],[-103.75695,29.22349],[-103.75351,29.2211],[-103.74321,29.22229],[-103.74047,29.20491],[-103.72811,29.19652],[-103.71781,29.18154],[-103.713,29.18333],[-103.70339,29.18453],[-103.69927,29.17854],[-103.68966,29.17854],[-103.6567,29.17015],[-103.65189,29.16115],[-103.6512,29.15815],[-103.64846,29.15635],[-103.64571,29.15875],[-103.64159,29.16355],[-103.63541,29.16115],[-103.63129,29.16175],[-103.62786,29.16355],[-103.61893,29.16295],[-103.61344,29.16415],[-103.60589,29.16175],[-103.5949,29.15156],[-103.58117,29.15156],[-103.57293,29.15516],[-103.55301,29.15575],[-103.55027,29.15336],[-103.5537,29.14856],[-103.54958,29.14436],[-103.54134,29.14616],[-103.52349,29.13297],[-103.5228,29.12157],[-103.51319,29.11977],[-103.50563,29.11617],[-103.49946,29.11617],[-103.49946,29.11077],[-103.49465,29.10957],[-103.48229,29.09217],[-103.47336,29.09097],[-103.47611,29.08797],[-103.46993,29.08317],[-103.47062,29.06637],[-103.46032,29.06877],[-103.46238,29.07297],[-103.4507,29.07357],[-103.4507,29.06397],[-103.44109,29.05797],[-103.43422,29.05797],[-103.43422,29.05376],[-103.42804,29.04776],[-103.43216,29.04416],[-103.4253,29.04356],[-103.41431,29.03816],[-103.40401,29.03936],[-103.40058,29.03215],[-103.39097,29.03395],[-103.38753,29.02255],[-103.37655,29.02255],[-103.36144,29.01774],[-103.35114,29.03095],[-103.34359,29.04596],[-103.32779,29.04356],[-103.32917,29.02975],[-103.34153,29.02975],[-103.33809,29.02015],[-103.32573,29.01654],[-103.31818,29.02255],[-103.31612,29.02555],[-103.30788,29.02195],[-103.31063,29.01654],[-103.31749,29.01174],[-103.30925,29.00513],[-103.30239,29.01054],[-103.28797,29.00453],[-103.2811,28.98892],[-103.28797,28.98111],[-103.27904,28.97751],[-103.26806,28.99673],[-103.25158,28.98411],[-103.25089,28.98171],[-103.2399,28.98171],[-103.22892,28.99252],[-103.21999,28.98471],[-103.21312,28.98832],[-103.16712,28.97871],[-103.16369,28.9745],[-103.15339,28.9727],[-103.14927,28.9757],[-103.13553,28.98471],[-103.11356,28.98652],[-103.11631,29.00093],[-103.10738,29.01594],[-103.1012,29.01894],[-103.09845,29.02855],[-103.10738,29.03816],[-103.09708,29.05196],[-103.10051,29.06157],[-103.09021,29.06397],[-103.09159,29.05556],[-103.08266,29.05436],[-103.08678,29.06877],[-103.07717,29.07717],[-103.0806,29.08797],[-103.06893,29.09337],[-103.0655,29.09097],[-103.05588,29.10117],[-103.0449,29.09517],[-103.03254,29.10537],[-103.03666,29.11257],[-103.02842,29.11677],[-103.02155,29.12697],[-103.01331,29.12697],[-103.01606,29.13417],[-103.01125,29.13776],[-103.0085,29.14976],[-103.00507,29.15276],[-103.00232,29.14976],[-102.99271,29.15995],[-102.99889,29.17554],[-102.99065,29.18453],[-102.97898,29.18633],[-102.96319,29.18034],[-102.95151,29.17494],[-102.95289,29.18094],[-102.94877,29.18154],[-102.94465,29.18813],[-102.94259,29.19353],[-102.93709,29.18693],[-102.93297,29.19353],[-102.91924,29.19173],[-102.91855,29.19772],[-102.91512,29.20012],[-102.91375,29.20791],[-102.91718,29.2151],[-102.91169,29.2205],[-102.90207,29.21091],[-102.87598,29.2133],[-102.86499,29.22709],[-102.87186,29.24267],[-102.88765,29.24446],[-102.90551,29.25704],[-102.90207,29.26543],[-102.89933,29.26903],[-102.90276,29.27801],[-102.88834,29.29059],[-102.89246,29.30915],[-102.88628,29.31274],[-102.88559,29.32292],[-102.87941,29.34028],[-102.88285,29.34746],[-102.87804,29.35524],[-102.86293,29.35105],[-102.84028,29.35943],[-102.84508,29.36542],[-102.84508,29.37499],[-102.83478,29.37978],[-102.83341,29.38995],[-102.82723,29.39593],[-102.81899,29.39773],[-102.81556,29.39773],[-102.8135,29.40132],[-102.83272,29.40969],[-102.83135,29.44378],[-102.82174,29.44796],[-102.82036,29.45095],[-102.82517,29.45693],[-102.81418,29.47307],[-102.81418,29.48383],[-102.80045,29.48682],[-102.80594,29.49519],[-102.8032,29.50356],[-102.80663,29.50356],[-102.80869,29.52507],[-102.7929,29.53761],[-102.78809,29.54478],[-102.7723,29.54777],[-102.77848,29.56091],[-102.7723,29.57286],[-102.76818,29.57166],[-102.76268,29.57942],[-102.76955,29.59555],[-102.76131,29.59913],[-102.74621,29.59435],[-102.73865,29.6248],[-102.74277,29.63196],[-102.72561,29.64628],[-102.72561,29.65046],[-102.70707,29.66597],[-102.69677,29.67134],[-102.69539,29.67731],[-102.70089,29.68507],[-102.69883,29.69759],[-102.69059,29.70594],[-102.69059,29.72264],[-102.68166,29.7286],[-102.67548,29.7447],[-102.66861,29.7453],[-102.66655,29.73934],[-102.65969,29.73516],[-102.62398,29.73635],[-102.61437,29.74768],[-102.60819,29.74828],[-102.60064,29.75126],[-102.59652,29.75066],[-102.5869,29.74887],[-102.58072,29.75484],[-102.57386,29.75543],[-102.57317,29.76914],[-102.56836,29.77212],[-102.56012,29.76437],[-102.55394,29.75543],[-102.55463,29.75007],[-102.54914,29.7447],[-102.51069,29.77272],[-102.5203,29.78166],[-102.51549,29.78642],[-102.49833,29.78166],[-102.48734,29.78821],[-102.48185,29.77868],[-102.47155,29.77629],[-102.46537,29.78404],[-102.45919,29.77689],[-102.44751,29.77689],[-102.43721,29.77331],[-102.43241,29.77808],[-102.42142,29.77033],[-102.40563,29.76318],[-102.39876,29.76795],[-102.38778,29.76199],[-102.38846,29.78047],[-102.37885,29.79],[-102.37542,29.80371],[-102.36306,29.83528],[-102.3658,29.8454],[-102.35207,29.85493],[-102.34795,29.86267],[-102.34108,29.86982],[-102.33284,29.86684],[-102.3301,29.86327],[-102.32392,29.86565],[-102.3246,29.87339],[-102.32186,29.88054],[-102.28203,29.86565],[-102.27242,29.86863],[-102.26281,29.86684],[-102.26418,29.85672],[-102.25045,29.85493],[-102.24839,29.86565],[-102.24427,29.85791],[-102.24152,29.846],[-102.22985,29.84957],[-102.22504,29.84183],[-102.21611,29.84362],[-102.20376,29.84302],[-102.19895,29.83766],[-102.19346,29.83885],[-102.19002,29.84898],[-102.18178,29.84481],[-102.17972,29.83707],[-102.18178,29.83111],[-102.17904,29.82754],[-102.16874,29.82694],[-102.15569,29.81205],[-102.1502,29.81026],[-102.14196,29.80371],[-102.12822,29.79834],[-102.11792,29.8043],[-102.11792,29.79477],[-102.09046,29.79477],[-102.07535,29.79238],[-102.07398,29.78881],[-102.05132,29.78642],[-102.04308,29.79],[-102.03896,29.79119],[-102.04171,29.80132],[-102.01905,29.80132],[-102.01561,29.79655],[-102.00943,29.80013],[-101.99501,29.80609],[-101.9854,29.79477],[-101.98197,29.81562],[-101.96618,29.81205],[-101.96412,29.80192],[-101.95862,29.79715],[-101.94764,29.80192],[-101.93734,29.79834],[-101.93322,29.79119],[-101.93253,29.78344],[-101.92566,29.78523],[-101.91811,29.79477],[-101.91056,29.80073],[-101.87554,29.79477],[-101.85425,29.80788],[-101.84739,29.80728],[-101.8261,29.7894],[-101.81992,29.79536],[-101.82679,29.80728],[-101.8158,29.81443],[-101.80344,29.80371],[-101.81237,29.79477],[-101.80962,29.78344],[-101.79177,29.77927],[-101.78559,29.78702],[-101.75332,29.77868],[-101.74439,29.77749],[-101.73615,29.77212],[-101.72928,29.77093],[-101.72585,29.77331],[-101.71898,29.7751],[-101.70937,29.76258],[-101.68808,29.77153],[-101.68053,29.7602],[-101.67229,29.76139],[-101.67366,29.76556],[-101.66062,29.77153],[-101.64551,29.75484],[-101.63315,29.76258],[-101.62697,29.77212],[-101.57685,29.77093],[-101.5741,29.79119],[-101.56929,29.80013],[-101.55213,29.8043],[-101.54664,29.81383],[-101.53634,29.80251],[-101.53771,29.78762],[-101.53702,29.76258],[-101.51436,29.76318],[-101.50063,29.76497],[-101.48621,29.7757],[-101.47866,29.78344],[-101.456,29.78762],[-101.45531,29.76855],[-101.45119,29.75126],[-101.43883,29.74828],[-101.42922,29.75782],[-101.40725,29.77212],[-101.39626,29.76676],[-101.40107,29.76139],[-101.41549,29.75305],[-101.4148,29.74351],[-101.40244,29.73934],[-101.39626,29.73337],[-101.40038,29.72264],[-101.3942,29.71131],[-101.37978,29.70356],[-101.3736,29.69401],[-101.37291,29.68805],[-101.37085,29.67612],[-101.35918,29.64867],[-101.35712,29.64986],[-101.35437,29.65822],[-101.34888,29.6618],[-101.3118,29.65822],[-101.30219,29.64867],[-101.30082,29.63614],[-101.30768,29.6236],[-101.31318,29.60808],[-101.31112,29.5848],[-101.29189,29.57226],[-101.28296,29.5854],[-101.27747,29.60749],[-101.28159,29.61465],[-101.26854,29.63256],[-101.25481,29.62778],[-101.24794,29.61704],[-101.25206,29.60211],[-101.24176,29.56569],[-101.26168,29.53881],[-101.25687,29.52029],[-101.23833,29.52507],[-101.17379,29.51491],[-101.14975,29.47666],[-101.13945,29.47248],[-101.12778,29.47965],[-101.11542,29.46949],[-101.08727,29.46829],[-101.06049,29.45813],[-101.05774,29.44318],[-101.04195,29.43002],[-101.03852,29.40969],[-101.02341,29.39234],[-101.02272,29.39773],[-101.0138,29.38217],[-101.0138,29.37559],[-101.00899,29.36781],[-100.99801,29.36482],[-100.97329,29.35464],[-100.96848,29.34986],[-100.96299,29.34627],[-100.95063,29.34746],[-100.94239,29.34507],[-100.94101,29.33549],[-100.92728,29.32891],[-100.88883,29.30735],[-100.87853,29.28041],[-100.83802,29.26304],[-100.8181,29.26543],[-100.81467,29.26004],[-100.81879,29.25585],[-100.81398,29.25345],[-100.80849,29.25225],[-100.79613,29.24626],[-100.79682,29.23668],[-100.79545,29.22709],[-100.79201,29.22709],[-100.78446,29.22769],[-100.77485,29.21271],[-100.77553,29.20611],[-100.77485,29.20192],[-100.77004,29.19952],[-100.76592,29.19233],[-100.76867,29.17734],[-100.77485,29.17614],[-100.77004,29.16715],[-100.76455,29.16775],[-100.76111,29.16295],[-100.7618,29.15875],[-100.75562,29.15695],[-100.73708,29.14736],[-100.73983,29.14256],[-100.71854,29.12277],[-100.69588,29.11437],[-100.68558,29.11077],[-100.67391,29.10057],[-100.66636,29.07717],[-100.66086,29.04176],[-100.65674,29.01474],[-100.64988,29.00333],[-100.64438,28.98652],[-100.6437,28.9757],[-100.65056,28.94266],[-100.64438,28.93605],[-100.64026,28.93004],[-100.63202,28.92463],[-100.63134,28.92163],[-100.62928,28.91862],[-100.63477,28.91562],[-100.64026,28.91622],[-100.63202,28.90239],[-100.62378,28.909],[-100.61417,28.90239],[-100.60181,28.90239],[-100.60387,28.88616],[-100.59357,28.88857],[-100.58808,28.88616],[-100.59288,28.87895],[-100.59632,28.88015],[-100.59632,28.87353],[-100.58945,28.87353],[-100.58808,28.87053],[-100.59014,28.86452],[-100.57091,28.84707],[-100.57641,28.84046],[-100.57435,28.82903],[-100.56885,28.82542],[-100.56061,28.82723],[-100.55237,28.82723],[-100.54551,28.82181],[-100.54551,28.81279],[-100.53933,28.80617],[-100.53315,28.80376],[-100.53315,28.79293],[-100.53658,28.78511],[-100.53658,28.77849],[-100.53246,28.77307],[-100.53109,28.76645],[-100.53383,28.76224],[-100.52903,28.75983],[-100.52353,28.75501],[-100.51941,28.75562],[-100.51667,28.75321],[-100.51461,28.74177],[-100.51117,28.74117],[-100.5098,28.73996],[-100.50774,28.73695],[-100.50705,28.72672],[-100.50774,28.71588],[-100.51461,28.70504],[-100.51255,28.69359],[-100.50019,28.66287],[-100.49401,28.65745],[-100.47959,28.65504],[-100.47272,28.64721],[-100.46448,28.64118],[-100.44732,28.64299],[-100.44663,28.60924],[-100.43496,28.60803],[-100.43221,28.6014],[-100.39856,28.58391],[-100.3965,28.57849],[-100.41024,28.55014],[-100.39994,28.53024],[-100.39582,28.52963],[-100.38895,28.51455],[-100.33265,28.50188],[-100.33608,28.49343],[-100.34775,28.48438],[-100.36767,28.48317],[-100.36835,28.47714],[-100.33883,28.44575],[-100.33814,28.42341],[-100.3505,28.40408],[-100.31685,28.35817],[-100.31479,28.34608],[-100.28595,28.30861],[-100.29419,28.28382],[-100.2887,28.27052],[-100.28389,28.27173],[-100.27703,28.26326],[-100.24682,28.23302],[-100.22965,28.23423],[-100.22004,28.2312],[-100.2166,28.22031],[-100.21523,28.207],[-100.20905,28.19429],[-100.20562,28.19066],[-100.1912,28.19005],[-100.17403,28.18037],[-100.16648,28.16948],[-100.15343,28.16584],[-100.14313,28.16887],[-100.12116,28.15555],[-100.08683,28.14526],[-100.06623,28.11619],[-100.05867,28.10711],[-100.05799,28.09924],[-100.05661,28.09015],[-100.05181,28.08349],[-100.04082,28.07743],[-100.02434,28.07076],[-100.0161,28.05683],[-100.00924,28.02834],[-100.00031,28.00773],[-99.99276,27.99561],[-99.96804,27.9847],[-99.93096,27.98045],[-99.93233,27.96832],[-99.93988,27.9568],[-99.93782,27.94891],[-99.93371,27.93618],[-99.92753,27.93557],[-99.92409,27.9289],[-99.92615,27.92617],[-99.89869,27.9113],[-99.89388,27.90038],[-99.90143,27.88521],[-99.90418,27.87003],[-99.89663,27.85789],[-99.88358,27.85304],[-99.87809,27.8415],[-99.87809,27.82936],[-99.87603,27.81478],[-99.87671,27.80567],[-99.87877,27.80203],[-99.8671,27.79413],[-99.85131,27.79352],[-99.84238,27.76619],[-99.82522,27.76436],[-99.81904,27.7753],[-99.81217,27.77348],[-99.80118,27.7437],[-99.78951,27.73155],[-99.77372,27.73398],[-99.75792,27.71878],[-99.7593,27.71149],[-99.7229,27.67683],[-99.72428,27.66832],[-99.70025,27.65737],[-99.69407,27.66406],[-99.69132,27.66954],[-99.68857,27.66285],[-99.67965,27.65859],[-99.67141,27.65981],[-99.65973,27.65251],[-99.65836,27.64825],[-99.66317,27.64339],[-99.6666,27.63913],[-99.65355,27.63061],[-99.64875,27.63122],[-99.63845,27.62879],[-99.62746,27.63365],[-99.62746,27.64095],[-99.62403,27.64521],[-99.61853,27.63974],[-99.61441,27.63791],[-99.59725,27.64095],[-99.59107,27.62939],[-99.58008,27.61966],[-99.57665,27.61358],[-99.58352,27.60749],[-99.58832,27.60567],[-99.58214,27.60141],[-99.55948,27.6081],[-99.55742,27.6154],[-99.55605,27.61418],[-99.54232,27.60749],[-99.53339,27.58741],[-99.51966,27.57585],[-99.51279,27.56854],[-99.51279,27.55819],[-99.51966,27.55028],[-99.5279,27.50035],[-99.52034,27.49609],[-99.50181,27.49974],[-99.49494,27.49974],[-99.47983,27.48817],[-99.48395,27.47416],[-99.48601,27.46136],[-99.49357,27.45161],[-99.48739,27.40956],[-99.49151,27.39432],[-99.49288,27.38091],[-99.50455,27.35896],[-99.50455,27.33822],[-99.52996,27.3248],[-99.53614,27.31565],[-99.52858,27.30528],[-99.50318,27.30772],[-99.49563,27.30223],[-99.4867,27.29063],[-99.49151,27.2766],[-99.49769,27.27172],[-99.48739,27.26256],[-99.47159,27.26256],[-99.46061,27.26866],[-99.44893,27.26012],[-99.43932,27.24669],[-99.44207,27.23387],[-99.44069,27.2186],[-99.43314,27.20761],[-99.42971,27.1954],[-99.42559,27.17769],[-99.42971,27.15875],[-99.43863,27.15508],[-99.43932,27.14958],[-99.43383,27.13981],[-99.43177,27.13186],[-99.43108,27.12331],[-99.44344,27.10864],[-99.44001,27.10314],[-99.43039,27.09275],[-99.43177,27.08541],[-99.44275,27.07318],[-99.45374,27.0634],[-99.44619,27.04506],[-99.44619,27.02977],[-99.44756,27.02487],[-99.43177,27.0108],[-99.41666,27.01814],[-99.40567,26.99857],[-99.38576,26.98266],[-99.37752,26.97838],[-99.37821,26.97287],[-99.39332,26.96308],[-99.38782,26.94227],[-99.37272,26.93064],[-99.32671,26.91839],[-99.32259,26.91227],[-99.3274,26.88655],[-99.32465,26.87675],[-99.31641,26.86634],[-99.29581,26.8645],[-99.28139,26.8596],[-99.26835,26.84245],[-99.26423,26.81671],[-99.24363,26.78791],[-99.24019,26.74683],[-99.20861,26.72598],[-99.21067,26.6947],[-99.20105,26.65973],[-99.17771,26.61922],[-99.16741,26.55905],[-99.17222,26.54983],[-99.17016,26.54062],[-99.16054,26.53386],[-99.12896,26.52465],[-99.09256,26.47733],[-99.09394,26.46995],[-99.10012,26.46012],[-99.10218,26.44475],[-99.11248,26.43553],[-99.08432,26.39802],[-99.06373,26.39802],[-99.04725,26.40601],[-99.03901,26.41401],[-99.02184,26.4097],[-99.00948,26.3931],[-98.98888,26.39187],[-98.97789,26.40109],[-98.97103,26.40109],[-98.95249,26.39248],[-98.95592,26.38079],[-98.94356,26.3691],[-98.93807,26.37157],[-98.93395,26.3771],[-98.93601,26.38264],[-98.92708,26.39494],[-98.92365,26.39002],[-98.92228,26.37956],[-98.91198,26.37218],[-98.90305,26.37157],[-98.89962,26.36726],[-98.9003,26.36049],[-98.89756,26.35372],[-98.87078,26.36295],[-98.85773,26.36664],[-98.84949,26.36111],[-98.84469,26.35988],[-98.83164,26.3648],[-98.82409,26.37034],[-98.81379,26.36787],[-98.80692,26.3691],[-98.80005,26.36295],[-98.79662,26.3488],[-98.78838,26.33773],[-98.78975,26.33342],[-98.77259,26.32603],[-98.76572,26.32726],[-98.75473,26.33157],[-98.74924,26.33034],[-98.74787,26.32234],[-98.74444,26.31557],[-98.73826,26.31372],[-98.73688,26.3088],[-98.741,26.30264],[-98.74581,26.30634],[-98.75199,26.30757],[-98.75542,26.30572],[-98.75336,26.29957],[-98.74924,26.29587],[-98.74169,26.29403],[-98.73482,26.29957],[-98.72933,26.30018],[-98.71972,26.29218],[-98.71697,26.28787],[-98.70804,26.2891],[-98.70186,26.28479],[-98.70186,26.27987],[-98.70804,26.27864],[-98.71903,26.27864],[-98.7204,26.27494],[-98.69706,26.26447],[-98.68744,26.26632],[-98.6792,26.26016],[-98.68058,26.246],[-98.67234,26.23861],[-98.65929,26.23615],[-98.64624,26.23984],[-98.6332,26.24292],[-98.63251,26.25216],[-98.62359,26.26078],[-98.61878,26.24723],[-98.61466,26.24662],[-98.61191,26.25339],[-98.60848,26.25339],[-98.59749,26.2577],[-98.58239,26.2577],[-98.57964,26.25031],[-98.58445,26.24538],[-98.57964,26.23553],[-98.57415,26.23984],[-98.56797,26.24169],[-98.56522,26.23615],[-98.56385,26.22629],[-98.55973,26.22444],[-98.55767,26.23183],[-98.54805,26.23491],[-98.54805,26.24107],[-98.55767,26.24415],[-98.55629,26.24908],[-98.54462,26.24477],[-98.53569,26.22567],[-98.52883,26.22999],[-98.52334,26.23676],[-98.52059,26.2343],[-98.52608,26.22444],[-98.52196,26.22075],[-98.5151,26.22752],[-98.50274,26.22198],[-98.50686,26.21089],[-98.50205,26.21089],[-98.49106,26.21335],[-98.48351,26.20781],[-98.4842,26.20411],[-98.48008,26.20165],[-98.47733,26.20411],[-98.4842,26.21643],[-98.47939,26.22013],[-98.47252,26.22013],[-98.46634,26.22321],[-98.46085,26.22691],[-98.45673,26.22013],[-98.45398,26.21705],[-98.45261,26.22075],[-98.44506,26.22444],[-98.43888,26.2189],[-98.44025,26.21027],[-98.44574,26.20411],[-98.44025,26.19734],[-98.42995,26.19487],[-98.41897,26.18501],[-98.40729,26.18378],[-98.40317,26.1807],[-98.40317,26.17454],[-98.39837,26.16961],[-98.3915,26.16529],[-98.38601,26.1579],[-98.37777,26.1579],[-98.36541,26.15975],[-98.36815,26.16653],[-98.36403,26.17146],[-98.3606,26.17269],[-98.35785,26.16899],[-98.35785,26.16468],[-98.35991,26.15975],[-98.35442,26.1542],[-98.35167,26.15235],[-98.34755,26.1542],[-98.34824,26.16098],[-98.34549,26.16714],[-98.34069,26.16714],[-98.33451,26.16653],[-98.33451,26.15667],[-98.33863,26.15235],[-98.33794,26.14989],[-98.33451,26.14619],[-98.32901,26.14496],[-98.32764,26.14311],[-98.33588,26.14187],[-98.33588,26.13694],[-98.33451,26.13386],[-98.32077,26.11906],[-98.31185,26.1166],[-98.30842,26.10673],[-98.30498,26.10303],[-98.29812,26.10365],[-98.29812,26.10673],[-98.30361,26.1092],[-98.30224,26.11352],[-98.29674,26.12153],[-98.27271,26.11783],[-98.26516,26.12153],[-98.2655,26.11706],[-98.27134,26.11413],[-98.27134,26.10673],[-98.28713,26.10735],[-98.28799,26.10488],[-98.28507,26.10242],[-98.27906,26.09933],[-98.27271,26.09625],[-98.26653,26.09132],[-98.26567,26.087],[-98.26378,26.08515],[-98.25211,26.07898],[-98.24936,26.07343],[-98.24387,26.07282],[-98.22945,26.07652],[-98.2164,26.07528],[-98.20885,26.06911],[-98.20199,26.06233],[-98.19855,26.05616],[-98.19306,26.05616],[-98.18894,26.06356],[-98.18413,26.06233],[-98.1807,26.06048],[-98.17864,26.06233],[-98.17933,26.06665],[-98.1807,26.07405],[-98.17521,26.07467],[-98.16971,26.07035],[-98.17109,26.06726],[-98.16765,26.06356],[-98.16353,26.0648],[-98.15873,26.0648],[-98.15735,26.06171],[-98.1601,26.06048],[-98.16353,26.0574],[-98.16216,26.05431],[-98.15735,26.05369],[-98.15186,26.05925],[-98.14843,26.05554],[-98.14911,26.05431],[-98.14843,26.05123],[-98.14499,26.04999],[-98.13675,26.06295],[-98.13675,26.06973],[-98.13195,26.07405],[-98.12783,26.0722],[-98.12989,26.0685],[-98.13057,26.06418],[-98.12508,26.06356],[-98.11959,26.06418],[-98.11135,26.06665],[-98.10654,26.06788],[-98.10036,26.06356],[-98.09281,26.05925],[-98.08526,26.0611],[-98.08114,26.0648],[-98.08526,26.06973],[-98.0832,26.07282],[-98.07702,26.06973],[-98.07496,26.06295],[-98.07015,26.04938],[-98.07152,26.04382],[-98.07839,26.04197],[-98.07702,26.03642],[-98.0729,26.03642],[-98.06328,26.04629],[-98.04543,26.04506],[-98.03994,26.04136],[-98.03307,26.06171],[-98.02758,26.06665],[-98.02414,26.06295],[-98.02208,26.05863],[-98.01659,26.06233],[-98.01453,26.06541],[-98.01178,26.06541],[-98.01178,26.05801],[-98.00629,26.06233],[-98.0008,26.06418],[-97.99668,26.06356],[-97.99393,26.05986],[-97.9905,26.05863],[-97.98707,26.06557],[-97.98295,26.06726],[-97.97951,26.06603],[-97.97883,26.06233],[-97.97677,26.05925],[-97.96647,26.05123],[-97.95205,26.06171],[-97.94449,26.06048],[-97.93557,26.05431],[-97.93213,26.05616],[-97.93625,26.06233],[-97.93351,26.0648],[-97.92733,26.0574],[-97.92664,26.05616],[-97.91909,26.05925],[-97.91359,26.05616],[-97.90261,26.0611],[-97.89093,26.06171],[-97.88819,26.06788],[-97.87514,26.06418],[-97.8724,26.05986],[-97.87102,26.05801],[-97.86347,26.06973],[-97.85935,26.06665],[-97.86141,26.06048],[-97.86072,26.05369],[-97.84012,26.05431],[-97.83463,26.04691],[-97.8257,26.05678],[-97.81609,26.05493],[-97.81609,26.04567],[-97.81197,26.04629],[-97.81266,26.05493],[-97.8003,26.06048],[-97.79961,26.05369],[-97.79343,26.05308],[-97.79,26.04814],[-97.79618,26.04691],[-97.79549,26.04259],[-97.79686,26.03889],[-97.79137,26.03395],[-97.78244,26.03457],[-97.77901,26.02963],[-97.7742,26.03457],[-97.76871,26.0358],[-97.77695,26.04074],[-97.77695,26.04506],[-97.77009,26.04753],[-97.76391,26.04321],[-97.76391,26.02778],[-97.76047,26.02655],[-97.75498,26.03087],[-97.74949,26.02963],[-97.74949,26.02655],[-97.74605,26.02778],[-97.74331,26.03087],[-97.73713,26.02902],[-97.73781,26.02285],[-97.73301,26.02285],[-97.72751,26.02346],[-97.72683,26.02902],[-97.73301,26.02963],[-97.73575,26.0321],[-97.71927,26.0321],[-97.72202,26.02408],[-97.70897,26.02655],[-97.7076,26.03704],[-97.70279,26.0321],[-97.6973,26.03087],[-97.69661,26.0247],[-97.69249,26.01853],[-97.69043,26.02408],[-97.69318,26.03148],[-97.68769,26.02778],[-97.67601,26.02655],[-97.67464,26.02902],[-97.67601,26.03334],[-97.67121,26.03519],[-97.66846,26.0284],[-97.66434,26.03334],[-97.66297,26.03951],[-97.66091,26.02963],[-97.66777,26.02408],[-97.66709,26.01914],[-97.65954,26.02038],[-97.65061,26.01729],[-97.64512,26.0284],[-97.63619,26.01668],[-97.63962,26.01297],[-97.64718,26.01297],[-97.65061,26.01112],[-97.64649,26.00804],[-97.6355,26.00125],[-97.63138,26.00619],[-97.62658,26.00433],[-97.62726,26.00001],[-97.62383,25.99755],[-97.61971,26.00248],[-97.61696,25.99508],[-97.62314,25.99384],[-97.63001,25.99631],[-97.63276,25.99446],[-97.63276,25.98952],[-97.62932,25.98829],[-97.62246,25.9889],[-97.61765,25.97903],[-97.60804,25.97656],[-97.61147,25.96607],[-97.59911,25.95742],[-97.59362,25.96298],[-97.58332,25.9636],[-97.58332,25.95742],[-97.5792,25.9426],[-97.57439,25.94631],[-97.57439,25.9531],[-97.56684,25.95248],[-97.56684,25.94507],[-97.58126,25.9389],[-97.58263,25.93705],[-97.584,25.93334],[-97.5804,25.93218],[-97.57439,25.93473],[-97.56546,25.93149],[-97.5689,25.92779],[-97.56134,25.92593],[-97.5586,25.93581],[-97.55173,25.93705],[-97.54555,25.93273],[-97.54555,25.92531],[-97.53869,25.93334],[-97.53525,25.92779],[-97.54281,25.92037],[-97.53113,25.92099],[-97.53182,25.9179],[-97.53251,25.91173],[-97.53113,25.90802],[-97.52427,25.89752],[-97.52015,25.88579],[-97.51122,25.88887],[-97.49817,25.89938],[-97.49749,25.88146],[-97.48925,25.8864],[-97.48787,25.88084],[-97.47139,25.89011],[-97.46796,25.88702],[-97.4762,25.88331],[-97.47483,25.87899],[-97.47071,25.8759],[-97.4659,25.88208],[-97.45491,25.88455],[-97.45697,25.86849],[-97.45217,25.86787],[-97.44805,25.87405],[-97.4453,25.86725],[-97.44736,25.86169],[-97.45354,25.85675],[-97.45285,25.85366],[-97.44736,25.85737],[-97.44462,25.85428],[-97.44736,25.85057],[-97.44393,25.84871],[-97.43569,25.8518],[-97.42539,25.84068],[-97.41303,25.84253],[-97.41372,25.8586],[-97.40891,25.86293],[-97.40822,25.85428],[-97.41097,25.84995],[-97.40685,25.84439],[-97.40273,25.85304],[-97.40136,25.84624],[-97.40754,25.84068],[-97.40342,25.83759],[-97.39037,25.84068],[-97.38625,25.84439],[-97.38213,25.84192],[-97.37183,25.84253],[-97.37046,25.84995],[-97.36565,25.85057],[-97.37664,25.85613],[-97.37114,25.85922],[-97.3629,25.86972],[-97.35947,25.86725],[-97.35672,25.86849],[-97.35878,25.87961],[-97.37389,25.87899],[-97.36771,25.88579],[-97.35741,25.88702],[-97.35878,25.89134],[-97.36908,25.89196],[-97.36771,25.90493],[-97.37458,25.90802],[-97.36977,25.91111],[-97.36771,25.91605],[-97.36222,25.91543],[-97.34848,25.93149],[-97.3423,25.92902],[-97.33681,25.92964],[-97.33887,25.92099],[-97.33544,25.92037],[-97.33475,25.92655],[-97.32926,25.91667],[-97.3272,25.91852],[-97.32239,25.9284],[-97.31278,25.93273],[-97.31072,25.92779],[-97.30248,25.93087],[-97.30385,25.93705],[-97.29767,25.93705],[-97.2963,25.93334],[-97.29081,25.93767],[-97.27639,25.9352],[-97.28119,25.94384],[-97.27982,25.94754],[-97.29012,25.95372],[-97.28394,25.95927],[-97.27707,25.9531],[-97.26059,25.95125],[-97.2448,25.95001],[-97.22695,25.95866],[-97.22489,25.95866],[-97.22214,25.95619],[-97.21116,25.96174],[-97.2091,25.96421],[-97.20566,25.96236],[-97.20498,25.95866],[-97.1885,25.95495],[-97.18644,25.95866],[-97.1782,25.96174],[-97.17751,25.96607],[-97.17408,25.96483],[-97.16927,25.96113],[-97.16103,25.9636],[-97.15691,25.96236],[-97.16103,25.95063],[-97.15142,25.95248],[-97.1473,25.95681],[-89.91211,25.04081],[-85.93506,24.55327],[-86.04493,18.39623],[-87.84119,18.1876],[-87.85492,18.18499],[-87.86591,18.19543],[-87.89612,18.16673],[-87.98127,18.16933],[-88.00049,18.37016],[-88.05268,18.41447],[-88.31498,18.49133],[-88.33283,18.49133],[-88.35206,18.48481],[-88.36579,18.48742],[-88.37815,18.48091],[-88.40287,18.49393],[-88.44956,18.47439],[-88.45917,18.49002],[-88.4784,18.49654],[-88.52097,18.46007],[-88.53058,18.40926],[-88.54432,18.38971],[-88.55256,18.37537],[-88.54294,18.36234],[-88.60611,18.29195],[-88.59787,18.29064],[-88.60886,18.26717],[-88.60199,18.2463],[-88.6171,18.22674],[-88.63358,18.21761],[-88.64045,18.215],[-88.6583,18.20456],[-88.66654,18.20587],[-88.67066,18.19673],[-88.68439,18.19673],[-88.69675,18.18369],[-88.68439,18.17716],[-88.68165,18.1589],[-88.71872,18.108],[-88.71186,18.09495],[-88.71598,18.06231],[-88.76954,18.03358],[-88.77091,18.00877],[-88.78739,17.9944],[-88.7819,17.98265],[-88.81897,17.9513],[-88.85468,17.93039],[-88.85331,17.89642],[-88.88077,17.90034],[-88.88764,17.90818],[-88.91922,17.92124],[-88.94532,17.95913],[-88.98926,17.9526],[-89.00162,17.98526],[-89.03733,18.00355],[-89.05518,17.99963],[-89.06067,17.98787],[-89.0799,17.99179],[-89.09775,17.98265],[-89.10737,17.98526],[-89.11286,17.97481],[-89.12247,17.9735],[-89.12522,17.97742],[-89.13208,17.9722],[-89.1362,17.95391],[-89.14444,17.94868],[-89.15268,17.93954],[-89.15268,17.81537],[-90.98809,17.81603],[-90.98809,17.2523],[-91.4399,17.25099],[-91.4296,17.2241],[-91.41861,17.20967],[-91.40419,17.20376],[-91.38566,17.20573],[-91.3733,17.20573],[-91.35407,17.19065],[-91.3472,17.17621],[-91.35132,17.16178],[-91.33896,17.16047],[-91.33004,17.18015],[-91.3218,17.18474],[-91.31218,17.18146],[-91.28197,17.17884],[-91.2806,17.18146],[-91.27579,17.17818],[-91.27099,17.17359],[-91.26275,17.16637],[-91.26206,17.1585],[-91.27236,17.14603],[-91.26755,17.10863],[-91.25519,17.10273],[-91.24283,17.10076],[-91.23391,17.1001],[-91.22635,17.09419],[-91.21743,17.07713],[-91.21605,17.06663],[-91.21537,17.0535],[-91.21056,17.05218],[-91.20163,17.04234],[-91.19408,17.03971],[-91.17829,17.01804],[-91.15494,17.00491],[-91.14808,17.00491],[-91.13572,17.00688],[-91.12748,17.00623],[-91.12198,17.00097],[-91.1213,16.99178],[-91.12336,16.98259],[-91.11924,16.97668],[-91.11718,16.97536],[-91.1055,16.97077],[-91.09932,16.96289],[-91.09658,16.95369],[-91.07872,16.94252],[-91.06911,16.92873],[-91.06431,16.92545],[-91.06636,16.92216],[-91.07529,16.91231],[-91.05744,16.89917],[-91.01075,16.88734],[-90.99564,16.87814],[-90.99015,16.86369],[-90.98328,16.86763],[-90.98465,16.88208],[-90.98603,16.8926],[-90.98053,16.89917],[-90.97435,16.90245],[-90.95787,16.89917],[-90.95376,16.88668],[-90.95993,16.87749],[-90.97023,16.87223],[-90.97641,16.86566],[-90.97023,16.86106],[-90.95925,16.86369],[-90.95307,16.86566],[-90.93453,16.85974],[-90.93247,16.85186],[-90.93453,16.84331],[-90.92629,16.83411],[-90.92354,16.82426],[-90.91805,16.82031],[-90.90088,16.82426],[-90.8844,16.82557],[-90.8638,16.8144],[-90.85831,16.80585],[-90.85694,16.79796],[-90.83222,16.79599],[-90.80544,16.79862],[-90.80132,16.79402],[-90.80407,16.78547],[-90.80407,16.7789],[-90.80063,16.7743],[-90.79239,16.77101],[-90.76149,16.76181],[-90.75737,16.75655],[-90.75806,16.75129],[-90.72167,16.72959],[-90.71686,16.72893],[-90.71068,16.72367],[-90.70725,16.71512],[-90.71,16.7092],[-90.70725,16.70262],[-90.70244,16.70065],[-90.69077,16.69407],[-90.68253,16.68881],[-90.67978,16.67632],[-90.67635,16.66053],[-90.66674,16.65066],[-90.65781,16.63816],[-90.66193,16.63158],[-90.66193,16.62105],[-90.65575,16.60921],[-90.65644,16.60461],[-90.65369,16.59539],[-90.66742,16.58947],[-90.66811,16.58157],[-90.66124,16.57763],[-90.64957,16.57763],[-90.6427,16.58157],[-90.64133,16.58881],[-90.64339,16.59605],[-90.6379,16.59408],[-90.63241,16.5875],[-90.62623,16.57697],[-90.64202,16.56775],[-90.6482,16.55854],[-90.64682,16.5513],[-90.64957,16.54472],[-90.64408,16.5355],[-90.64614,16.52036],[-90.64408,16.51641],[-90.63996,16.51444],[-90.63309,16.51444],[-90.62005,16.52234],[-90.61181,16.51839],[-90.60769,16.50851],[-90.60837,16.49798],[-90.61661,16.49074],[-90.62279,16.48876],[-90.63172,16.49008],[-90.63584,16.48679],[-90.63584,16.48218],[-90.62897,16.47888],[-90.61867,16.47954],[-90.61593,16.48613],[-90.61318,16.49008],[-90.60494,16.48744],[-90.59807,16.49139],[-90.59327,16.48876],[-90.59533,16.47954],[-90.59258,16.47098],[-90.58777,16.46967],[-90.56992,16.47493],[-90.55893,16.47954],[-90.54451,16.48086],[-90.54795,16.47427],[-90.54657,16.46703],[-90.52872,16.45913],[-90.52392,16.46045],[-90.5246,16.46835],[-90.51568,16.47098],[-90.50332,16.46769],[-90.4992,16.46374],[-90.49851,16.45584],[-90.4937,16.45386],[-90.48958,16.45979],[-90.48134,16.46176],[-90.4786,16.45649],[-90.48066,16.45189],[-90.47928,16.44398],[-90.48134,16.43674],[-90.4889,16.42884],[-90.48546,16.42357],[-90.47791,16.42554],[-90.46967,16.42423],[-90.46074,16.42159],[-90.42504,16.42554],[-90.41886,16.42488],[-90.41199,16.4071],[-90.40787,16.40447],[-90.40169,16.40908],[-90.39963,16.41566],[-90.38933,16.41303],[-90.38865,16.4071],[-90.39139,16.40381],[-90.40169,16.39986],[-90.40444,16.39524],[-90.40238,16.39063],[-90.38521,16.3768],[-90.37354,16.37482],[-90.37148,16.36758],[-90.37491,16.36099],[-90.38453,16.36165],[-90.3859,16.36889],[-90.39277,16.37416],[-90.39895,16.37285],[-90.41337,16.36099],[-90.41405,16.3511],[-90.41062,16.34649],[-90.40787,16.34649],[-90.40719,16.34979],[-90.40925,16.35506],[-90.40787,16.35967],[-90.40581,16.36165],[-90.40238,16.35901],[-90.40307,16.35242],[-90.39963,16.34979],[-90.38659,16.34649],[-90.38315,16.3432],[-90.38384,16.33793],[-90.38659,16.33529],[-90.39071,16.33661],[-90.39551,16.33859],[-90.40169,16.33859],[-90.40444,16.33134],[-90.41199,16.32936],[-90.41337,16.32409],[-90.41062,16.31355],[-90.4168,16.30498],[-90.42641,16.3063],[-90.4374,16.303],[-90.44014,16.29575],[-90.43396,16.2918],[-90.43877,16.2885],[-90.4422,16.28191],[-90.43877,16.27598],[-90.43259,16.27466],[-90.42435,16.26148],[-90.4271,16.25489],[-90.43465,16.25554],[-90.44152,16.26214],[-90.44907,16.2595],[-90.45594,16.24895],[-90.45456,16.24302],[-90.44838,16.24236],[-90.44358,16.24632],[-90.44014,16.24632],[-90.43877,16.23972],[-90.43122,16.23577],[-90.42984,16.23181],[-90.44014,16.23181],[-90.45182,16.22588],[-90.458,16.21533],[-90.458,16.20742],[-90.45525,16.19489],[-90.45525,16.1883],[-90.4477,16.1817],[-90.43671,16.18038],[-90.4271,16.17181],[-90.42641,16.16455],[-90.43808,16.1573],[-90.44701,16.15598],[-90.4525,16.15004],[-90.44838,16.14411],[-90.43877,16.14279],[-90.43396,16.14147],[-90.42984,16.13949],[-90.4319,16.1296],[-90.42984,16.11904],[-90.43877,16.11838],[-90.45044,16.12564],[-90.45662,16.12168],[-90.45662,16.1164],[-90.45937,16.10717],[-90.45662,16.10255],[-90.45868,16.09463],[-90.45319,16.09331],[-90.44564,16.09529],[-90.44426,16.10189],[-90.4319,16.10717],[-90.42641,16.10321],[-90.42778,16.09727],[-90.43534,16.09859],[-90.43671,16.09661],[-90.44014,16.09265],[-90.44014,16.09134],[-90.44632,16.08408],[-90.44632,16.08012],[-90.44358,16.07748],[-90.4422,16.07484],[-91.73172,16.07418],[-92.211,15.26166],[-92.05925,15.07079],[-92.06543,15.06947],[-92.07367,15.05886],[-92.06955,15.05753],[-92.0723,15.0509],[-92.0723,15.04825],[-92.07917,15.0456],[-92.07779,15.03499],[-92.07917,15.03101],[-92.08741,15.02305],[-92.09427,15.02172],[-92.09839,15.00979],[-92.12311,15.01642],[-92.1341,15.01376],[-92.13685,15.00581],[-92.15058,14.98856],[-92.14783,14.97928],[-92.14646,14.96866],[-92.1492,14.95009],[-92.14234,14.9408],[-92.1492,14.93151],[-92.14234,14.91559],[-92.14234,14.91426],[-92.14509,14.91028],[-92.13685,14.89568],[-92.13685,14.88639],[-92.14097,14.88241],[-92.1492,14.87046],[-92.16706,14.85985],[-92.17392,14.86117],[-92.17392,14.85454],[-92.18354,14.84923],[-92.18079,14.83728],[-92.18491,14.82931],[-92.17804,14.81737],[-92.17667,14.80409],[-92.1698,14.78683],[-92.17118,14.78152],[-92.16156,14.77488],[-92.16156,14.76293],[-92.17255,14.75496],[-92.17118,14.74832],[-92.16294,14.73637],[-92.15882,14.73902],[-92.14646,14.71644],[-92.14783,14.69785],[-92.14783,14.66065],[-92.15882,14.65135],[-92.16019,14.63939],[-92.16843,14.63939],[-92.17942,14.61547],[-92.17392,14.61016],[-92.18491,14.57959],[-92.19452,14.57029],[-92.20551,14.56231],[-92.2165,14.55567],[-92.22336,14.53706],[-92.23435,14.53706],[-92.2371,14.53839]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Bahamas#CO", "itu_zone_number": 11 }, "geometry": { "type": "Polygon", "coordinates": [[[-92.2371,14.53839],[-92.18997,6.011],[-78.74091,6.0945],[-77.89316,7.22534],[-77.81809,7.45672],[-77.81383,7.45566],[-77.80958,7.4529],[-77.8069,7.45351],[-77.80526,7.46041],[-77.80361,7.46289],[-77.7926,7.47385],[-77.78332,7.46978],[-77.77953,7.46163],[-77.76098,7.45894],[-77.74208,7.45114],[-77.74705,7.44316],[-77.73692,7.4379],[-77.72246,7.43321],[-77.71145,7.44077],[-77.71142,7.44969],[-77.70177,7.45452],[-77.70037,7.46616],[-77.70602,7.46884],[-77.70403,7.49604],[-77.71029,7.5001],[-77.70237,7.50817],[-77.7057,7.51971],[-77.71591,7.53671],[-77.7268,7.56391],[-77.73083,7.56661],[-77.73888,7.58562],[-77.7387,7.60054],[-77.74598,7.60656],[-77.7519,7.6153],[-77.74038,7.63005],[-77.7426,7.64005],[-77.74893,7.65276],[-77.74188,7.65867],[-77.74522,7.66911],[-77.74169,7.67682],[-77.73445,7.68864],[-77.7277,7.68783],[-77.72781,7.6979],[-77.70898,7.69035],[-77.70114,7.69504],[-77.68684,7.68538],[-77.68163,7.67684],[-77.67642,7.67647],[-77.6715,7.66756],[-77.65754,7.66198],[-77.64609,7.6481],[-77.63676,7.61444],[-77.62194,7.57535],[-77.61124,7.56007],[-77.61153,7.54479],[-77.59258,7.5353],[-77.58463,7.51084],[-77.57599,7.5136],[-77.5646,7.50547],[-77.53255,7.54706],[-77.5266,7.55814],[-77.52477,7.57602],[-77.50097,7.56668],[-77.48815,7.56959],[-77.49444,7.58834],[-77.48151,7.60846],[-77.46445,7.6347],[-77.46937,7.65413],[-77.44099,7.65723],[-77.43733,7.68075],[-77.43206,7.69148],[-77.41719,7.70222],[-77.41627,7.71961],[-77.41278,7.72421],[-77.40654,7.72065],[-77.39681,7.73394],[-77.39384,7.76052],[-77.37793,7.75816],[-77.37713,7.77076],[-77.35985,7.76568],[-77.34668,7.76196],[-77.33728,7.76974],[-77.34847,7.77751],[-77.34318,7.78189],[-77.34202,7.78762],[-77.35754,7.8127],[-77.35569,7.82184],[-77.36344,7.8337],[-77.34161,7.84984],[-77.33928,7.8671],[-77.32438,7.88388],[-77.32321,7.89523],[-77.30677,7.89859],[-77.29444,7.90738],[-77.27525,7.90666],[-77.26156,7.9175],[-77.23773,7.91983],[-77.21528,7.91673],[-77.20886,7.923],[-77.1887,7.92246],[-77.17611,7.91785],[-77.16007,7.92956],[-77.18322,7.95523],[-77.16801,7.96602],[-77.16653,7.97273],[-77.1821,7.98633],[-77.19081,7.98769],[-77.19998,7.99993],[-77.21486,8.01149],[-77.21406,8.01931],[-77.2215,8.02713],[-77.23342,8.02305],[-77.22547,8.03528],[-77.22851,8.05704],[-77.22743,8.06724],[-77.21811,8.08152],[-77.22184,8.10158],[-77.2338,8.11619],[-77.23272,8.13013],[-77.22615,8.13591],[-77.2565,8.15564],[-77.24795,8.16091],[-77.24627,8.17434],[-77.25161,8.18886],[-77.2597,8.19388],[-77.25939,8.20799],[-77.26735,8.21377],[-77.28081,8.21684],[-77.27989,8.22423],[-77.28995,8.2425],[-77.28397,8.25321],[-77.28614,8.26162],[-77.29654,8.26324],[-77.30248,8.27063],[-77.29743,8.28618],[-77.30499,8.28893],[-77.31118,8.27129],[-77.3208,8.2754],[-77.33179,8.27271],[-77.33643,8.28683],[-77.35342,8.30366],[-77.35463,8.32185],[-77.34897,8.3346],[-77.34983,8.34668],[-77.3452,8.34857],[-77.34872,8.35936],[-77.35769,8.36442],[-77.36185,8.37763],[-77.35541,8.38774],[-77.35928,8.40193],[-77.37388,8.41202],[-77.37942,8.42541],[-77.38597,8.43109],[-77.38496,8.43744],[-77.3929,8.44811],[-77.39878,8.46218],[-77.40415,8.46657],[-77.40059,8.47708],[-77.41729,8.47841],[-77.43731,8.47093],[-77.44703,8.47228],[-77.44794,8.47667],[-77.44541,8.4797],[-77.44861,8.48716],[-77.44769,8.49462],[-77.45054,8.5014],[-77.45408,8.50546],[-77.45787,8.5097],[-77.44518,8.51461],[-77.43849,8.5298],[-77.43768,8.53937],[-77.43961,8.54215],[-77.43663,8.54761],[-77.44051,8.55647],[-77.43729,8.56061],[-77.43468,8.56364],[-77.42725,8.55785],[-77.42406,8.56378],[-77.41812,8.56767],[-77.40966,8.56731],[-77.41185,8.57154],[-77.4113,8.57644],[-77.41325,8.58143],[-77.41795,8.58371],[-77.41842,8.58692],[-77.41409,8.58931],[-77.40495,8.58424],[-77.39993,8.5863],[-77.39536,8.58393],[-77.3901,8.58496],[-77.39315,8.58974],[-77.39208,8.59383],[-77.39959,8.6003],[-77.40367,8.61152],[-77.40325,8.61513],[-77.40007,8.6167],[-77.40329,8.62597],[-77.40857,8.63524],[-77.41076,8.64078],[-77.40883,8.64496],[-77.39545,8.65149],[-77.3897,8.6499],[-77.38395,8.64356],[-77.3785,8.64225],[-77.37168,8.63755],[-77.3649,8.64105],[-77.36937,8.65332],[-77.3704,8.66286],[-77.36354,8.66664],[-77.36388,8.6709],[-77.35667,8.67584],[-74.55974,12.54661],[-70.4916,12.52683],[-68.76514,11.57026],[-67.47384,12.50658],[-61.76056,11.46168],[-61.79586,10.38444],[-62.08817,10.09876],[-62,10],[-57,10],[-57,43],[-67,43],[-78.12207,31.46898],[-79.30627,30.20248],[-79.41498,25.25532],[-80.00708,24.3994],[-80.97272,24.43788],[-82.55359,24.47636],[-85.93506,24.55327],[-86.04493,18.39623],[-87.84119,18.1876],[-87.85492,18.18499],[-87.86591,18.19543],[-87.89612,18.16673],[-87.98127,18.16933],[-88.00049,18.37016],[-88.05268,18.41447],[-88.31498,18.49133],[-88.33283,18.49133],[-88.35206,18.48481],[-88.36579,18.48742],[-88.37815,18.48091],[-88.40287,18.49393],[-88.44956,18.47439],[-88.45917,18.49002],[-88.4784,18.49654],[-88.52097,18.46007],[-88.53058,18.40926],[-88.54432,18.38971],[-88.55256,18.37537],[-88.54294,18.36234],[-88.60611,18.29195],[-88.59787,18.29064],[-88.60886,18.26717],[-88.60199,18.2463],[-88.6171,18.22674],[-88.63358,18.21761],[-88.64045,18.215],[-88.6583,18.20456],[-88.66654,18.20587],[-88.67066,18.19673],[-88.68439,18.19673],[-88.69675,18.18369],[-88.68439,18.17716],[-88.68165,18.1589],[-88.71872,18.108],[-88.71186,18.09495],[-88.71598,18.06231],[-88.76954,18.03358],[-88.77091,18.00877],[-88.78739,17.9944],[-88.7819,17.98265],[-88.81897,17.9513],[-88.85468,17.93039],[-88.85331,17.89642],[-88.88077,17.90034],[-88.88764,17.90818],[-88.91922,17.92124],[-88.94532,17.95913],[-88.98926,17.9526],[-89.00162,17.98526],[-89.03733,18.00355],[-89.05518,17.99963],[-89.06067,17.98787],[-89.0799,17.99179],[-89.09775,17.98265],[-89.10737,17.98526],[-89.11286,17.97481],[-89.12247,17.9735],[-89.12522,17.97742],[-89.13208,17.9722],[-89.1362,17.95391],[-89.14444,17.94868],[-89.15268,17.93954],[-89.15268,17.81537],[-90.98809,17.81603],[-90.98809,17.2523],[-91.4399,17.25099],[-91.4296,17.2241],[-91.41861,17.20967],[-91.40419,17.20376],[-91.38566,17.20573],[-91.3733,17.20573],[-91.35407,17.19065],[-91.3472,17.17621],[-91.35132,17.16178],[-91.33896,17.16047],[-91.33004,17.18015],[-91.3218,17.18474],[-91.31218,17.18146],[-91.28197,17.17884],[-91.2806,17.18146],[-91.27579,17.17818],[-91.27099,17.17359],[-91.26275,17.16637],[-91.26206,17.1585],[-91.27236,17.14603],[-91.26755,17.10863],[-91.25519,17.10273],[-91.24283,17.10076],[-91.23391,17.1001],[-91.22635,17.09419],[-91.21743,17.07713],[-91.21605,17.06663],[-91.21537,17.0535],[-91.21056,17.05218],[-91.20163,17.04234],[-91.19408,17.03971],[-91.17829,17.01804],[-91.15494,17.00491],[-91.14808,17.00491],[-91.13572,17.00688],[-91.12748,17.00623],[-91.12198,17.00097],[-91.1213,16.99178],[-91.12336,16.98259],[-91.11924,16.97668],[-91.11718,16.97536],[-91.1055,16.97077],[-91.09932,16.96289],[-91.09658,16.95369],[-91.07872,16.94252],[-91.06911,16.92873],[-91.06431,16.92545],[-91.06636,16.92216],[-91.07529,16.91231],[-91.05744,16.89917],[-91.01075,16.88734],[-90.99564,16.87814],[-90.99015,16.86369],[-90.98328,16.86763],[-90.98465,16.88208],[-90.98603,16.8926],[-90.98053,16.89917],[-90.97435,16.90245],[-90.95787,16.89917],[-90.95376,16.88668],[-90.95993,16.87749],[-90.97023,16.87223],[-90.97641,16.86566],[-90.97023,16.86106],[-90.95925,16.86369],[-90.95307,16.86566],[-90.93453,16.85974],[-90.93247,16.85186],[-90.93453,16.84331],[-90.92629,16.83411],[-90.92354,16.82426],[-90.91805,16.82031],[-90.90088,16.82426],[-90.8844,16.82557],[-90.8638,16.8144],[-90.85831,16.80585],[-90.85694,16.79796],[-90.83222,16.79599],[-90.80544,16.79862],[-90.80132,16.79402],[-90.80407,16.78547],[-90.80407,16.7789],[-90.80063,16.7743],[-90.79239,16.77101],[-90.76149,16.76181],[-90.75737,16.75655],[-90.75806,16.75129],[-90.72167,16.72959],[-90.71686,16.72893],[-90.71068,16.72367],[-90.70725,16.71512],[-90.71,16.7092],[-90.70725,16.70262],[-90.70244,16.70065],[-90.69077,16.69407],[-90.68253,16.68881],[-90.67978,16.67632],[-90.67635,16.66053],[-90.66674,16.65066],[-90.65781,16.63816],[-90.66193,16.63158],[-90.66193,16.62105],[-90.65575,16.60921],[-90.65644,16.60461],[-90.65369,16.59539],[-90.66742,16.58947],[-90.66811,16.58157],[-90.66124,16.57763],[-90.64957,16.57763],[-90.6427,16.58157],[-90.64133,16.58881],[-90.64339,16.59605],[-90.6379,16.59408],[-90.63241,16.5875],[-90.62623,16.57697],[-90.64202,16.56775],[-90.6482,16.55854],[-90.64682,16.5513],[-90.64957,16.54472],[-90.64408,16.5355],[-90.64614,16.52036],[-90.64408,16.51641],[-90.63996,16.51444],[-90.63309,16.51444],[-90.62005,16.52234],[-90.61181,16.51839],[-90.60769,16.50851],[-90.60837,16.49798],[-90.61661,16.49074],[-90.62279,16.48876],[-90.63172,16.49008],[-90.63584,16.48679],[-90.63584,16.48218],[-90.62897,16.47888],[-90.61867,16.47954],[-90.61593,16.48613],[-90.61318,16.49008],[-90.60494,16.48744],[-90.59807,16.49139],[-90.59327,16.48876],[-90.59533,16.47954],[-90.59258,16.47098],[-90.58777,16.46967],[-90.56992,16.47493],[-90.55893,16.47954],[-90.54451,16.48086],[-90.54795,16.47427],[-90.54657,16.46703],[-90.52872,16.45913],[-90.52392,16.46045],[-90.5246,16.46835],[-90.51568,16.47098],[-90.50332,16.46769],[-90.4992,16.46374],[-90.49851,16.45584],[-90.4937,16.45386],[-90.48958,16.45979],[-90.48134,16.46176],[-90.4786,16.45649],[-90.48066,16.45189],[-90.47928,16.44398],[-90.48134,16.43674],[-90.4889,16.42884],[-90.48546,16.42357],[-90.47791,16.42554],[-90.46967,16.42423],[-90.46074,16.42159],[-90.42504,16.42554],[-90.41886,16.42488],[-90.41199,16.4071],[-90.40787,16.40447],[-90.40169,16.40908],[-90.39963,16.41566],[-90.38933,16.41303],[-90.38865,16.4071],[-90.39139,16.40381],[-90.40169,16.39986],[-90.40444,16.39524],[-90.40238,16.39063],[-90.38521,16.3768],[-90.37354,16.37482],[-90.37148,16.36758],[-90.37491,16.36099],[-90.38453,16.36165],[-90.3859,16.36889],[-90.39277,16.37416],[-90.39895,16.37285],[-90.41337,16.36099],[-90.41405,16.3511],[-90.41062,16.34649],[-90.40787,16.34649],[-90.40719,16.34979],[-90.40925,16.35506],[-90.40787,16.35967],[-90.40581,16.36165],[-90.40238,16.35901],[-90.40307,16.35242],[-90.39963,16.34979],[-90.38659,16.34649],[-90.38315,16.3432],[-90.38384,16.33793],[-90.38659,16.33529],[-90.39071,16.33661],[-90.39551,16.33859],[-90.40169,16.33859],[-90.40444,16.33134],[-90.41199,16.32936],[-90.41337,16.32409],[-90.41062,16.31355],[-90.4168,16.30498],[-90.42641,16.3063],[-90.4374,16.303],[-90.44014,16.29575],[-90.43396,16.2918],[-90.43877,16.2885],[-90.4422,16.28191],[-90.43877,16.27598],[-90.43259,16.27466],[-90.42435,16.26148],[-90.4271,16.25489],[-90.43465,16.25554],[-90.44152,16.26214],[-90.44907,16.2595],[-90.45594,16.24895],[-90.45456,16.24302],[-90.44838,16.24236],[-90.44358,16.24632],[-90.44014,16.24632],[-90.43877,16.23972],[-90.43122,16.23577],[-90.42984,16.23181],[-90.44014,16.23181],[-90.45182,16.22588],[-90.458,16.21533],[-90.458,16.20742],[-90.45525,16.19489],[-90.45525,16.1883],[-90.4477,16.1817],[-90.43671,16.18038],[-90.4271,16.17181],[-90.42641,16.16455],[-90.43808,16.1573],[-90.44701,16.15598],[-90.4525,16.15004],[-90.44838,16.14411],[-90.43877,16.14279],[-90.43396,16.14147],[-90.42984,16.13949],[-90.4319,16.1296],[-90.42984,16.11904],[-90.43877,16.11838],[-90.45044,16.12564],[-90.45662,16.12168],[-90.45662,16.1164],[-90.45937,16.10717],[-90.45662,16.10255],[-90.45868,16.09463],[-90.45319,16.09331],[-90.44564,16.09529],[-90.44426,16.10189],[-90.4319,16.10717],[-90.42641,16.10321],[-90.42778,16.09727],[-90.43534,16.09859],[-90.43671,16.09661],[-90.44014,16.09265],[-90.44014,16.09134],[-90.44632,16.08408],[-90.44632,16.08012],[-90.44358,16.07748],[-90.4422,16.07484],[-91.73172,16.07418],[-92.211,15.26166],[-92.05925,15.07079],[-92.06543,15.06947],[-92.07367,15.05886],[-92.06955,15.05753],[-92.0723,15.0509],[-92.0723,15.04825],[-92.07917,15.0456],[-92.07779,15.03499],[-92.07917,15.03101],[-92.08741,15.02305],[-92.09427,15.02172],[-92.09839,15.00979],[-92.12311,15.01642],[-92.1341,15.01376],[-92.13685,15.00581],[-92.15058,14.98856],[-92.14783,14.97928],[-92.14646,14.96866],[-92.1492,14.95009],[-92.14234,14.9408],[-92.1492,14.93151],[-92.14234,14.91559],[-92.14234,14.91426],[-92.14509,14.91028],[-92.13685,14.89568],[-92.13685,14.88639],[-92.14097,14.88241],[-92.1492,14.87046],[-92.16706,14.85985],[-92.17392,14.86117],[-92.17392,14.85454],[-92.18354,14.84923],[-92.18079,14.83728],[-92.18491,14.82931],[-92.17804,14.81737],[-92.17667,14.80409],[-92.1698,14.78683],[-92.17118,14.78152],[-92.16156,14.77488],[-92.16156,14.76293],[-92.17255,14.75496],[-92.17118,14.74832],[-92.16294,14.73637],[-92.15882,14.73902],[-92.14646,14.71644],[-92.14783,14.69785],[-92.14783,14.66065],[-92.15882,14.65135],[-92.16019,14.63939],[-92.16843,14.63939],[-92.17942,14.61547],[-92.17392,14.61016],[-92.18491,14.57959],[-92.19452,14.57029],[-92.20551,14.56231],[-92.2165,14.55567],[-92.22336,14.53706],[-92.2371,14.53839]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Bolivia, north of 16.5º S#FY", "itu_zone_number": 12 }, "geometry": { "type": "Polygon", "coordinates": [[[-92.18997,6.011],[-78.74091,6.0945],[-77.89316,7.22534],[-77.81809,7.45672],[-77.81383,7.45566],[-77.80958,7.4529],[-77.8069,7.45351],[-77.80526,7.46041],[-77.80361,7.46289],[-77.7926,7.47385],[-77.78332,7.46978],[-77.77953,7.46163],[-77.76098,7.45894],[-77.74208,7.45114],[-77.74705,7.44316],[-77.73692,7.4379],[-77.72246,7.43321],[-77.71145,7.44077],[-77.71142,7.44969],[-77.70177,7.45452],[-77.70037,7.46616],[-77.70602,7.46884],[-77.70403,7.49604],[-77.71029,7.5001],[-77.70237,7.50817],[-77.7057,7.51971],[-77.71591,7.53671],[-77.7268,7.56391],[-77.73083,7.56661],[-77.73888,7.58562],[-77.7387,7.60054],[-77.74598,7.60656],[-77.7519,7.6153],[-77.74038,7.63005],[-77.7426,7.64005],[-77.74893,7.65276],[-77.74188,7.65867],[-77.74522,7.66911],[-77.74169,7.67682],[-77.73445,7.68864],[-77.7277,7.68783],[-77.72781,7.6979],[-77.70898,7.69035],[-77.70114,7.69504],[-77.68684,7.68538],[-77.68163,7.67684],[-77.67642,7.67647],[-77.6715,7.66756],[-77.65754,7.66198],[-77.64609,7.6481],[-77.63676,7.61444],[-77.62194,7.57535],[-77.61124,7.56007],[-77.61153,7.54479],[-77.59258,7.5353],[-77.58463,7.51084],[-77.57599,7.5136],[-77.5646,7.50547],[-77.53255,7.54706],[-77.5266,7.55814],[-77.52477,7.57602],[-77.50097,7.56668],[-77.48815,7.56959],[-77.49444,7.58834],[-77.48151,7.60846],[-77.46445,7.6347],[-77.46937,7.65413],[-77.44099,7.65723],[-77.43733,7.68075],[-77.43206,7.69148],[-77.41719,7.70222],[-77.41627,7.71961],[-77.41278,7.72421],[-77.40654,7.72065],[-77.39681,7.73394],[-77.39384,7.76052],[-77.37793,7.75816],[-77.37713,7.77076],[-77.35985,7.76568],[-77.34668,7.76196],[-77.33728,7.76974],[-77.34847,7.77751],[-77.34318,7.78189],[-77.34202,7.78762],[-77.35754,7.8127],[-77.35569,7.82184],[-77.36344,7.8337],[-77.34161,7.84984],[-77.33928,7.8671],[-77.32438,7.88388],[-77.32321,7.89523],[-77.30677,7.89859],[-77.29444,7.90738],[-77.27525,7.90666],[-77.26156,7.9175],[-77.23773,7.91983],[-77.21528,7.91673],[-77.20886,7.923],[-77.1887,7.92246],[-77.17611,7.91785],[-77.16007,7.92956],[-77.18322,7.95523],[-77.16801,7.96602],[-77.16653,7.97273],[-77.1821,7.98633],[-77.19081,7.98769],[-77.19998,7.99993],[-77.21486,8.01149],[-77.21406,8.01931],[-77.2215,8.02713],[-77.23342,8.02305],[-77.22547,8.03528],[-77.22851,8.05704],[-77.22743,8.06724],[-77.21811,8.08152],[-77.22184,8.10158],[-77.2338,8.11619],[-77.23272,8.13013],[-77.22615,8.13591],[-77.2565,8.15564],[-77.24795,8.16091],[-77.24627,8.17434],[-77.25161,8.18886],[-77.2597,8.19388],[-77.25939,8.20799],[-77.26735,8.21377],[-77.28081,8.21684],[-77.27989,8.22423],[-77.28995,8.2425],[-77.28397,8.25321],[-77.28614,8.26162],[-77.29654,8.26324],[-77.30248,8.27063],[-77.29743,8.28618],[-77.30499,8.28893],[-77.31118,8.27129],[-77.3208,8.2754],[-77.33179,8.27271],[-77.33643,8.28683],[-77.35342,8.30366],[-77.35463,8.32185],[-77.34897,8.3346],[-77.34983,8.34668],[-77.3452,8.34857],[-77.34872,8.35936],[-77.35769,8.36442],[-77.36185,8.37763],[-77.35541,8.38774],[-77.35928,8.40193],[-77.37388,8.41202],[-77.37942,8.42541],[-77.38597,8.43109],[-77.38496,8.43744],[-77.3929,8.44811],[-77.39878,8.46218],[-77.40415,8.46657],[-77.40059,8.47708],[-77.41729,8.47841],[-77.43731,8.47093],[-77.44703,8.47228],[-77.44794,8.47667],[-77.44541,8.4797],[-77.44861,8.48716],[-77.44769,8.49462],[-77.45054,8.5014],[-77.45408,8.50546],[-77.45787,8.5097],[-77.44518,8.51461],[-77.43849,8.5298],[-77.43768,8.53937],[-77.43961,8.54215],[-77.43663,8.54761],[-77.44051,8.55647],[-77.43729,8.56061],[-77.43468,8.56364],[-77.42725,8.55785],[-77.42406,8.56378],[-77.41812,8.56767],[-77.40966,8.56731],[-77.41185,8.57154],[-77.4113,8.57644],[-77.41325,8.58143],[-77.41795,8.58371],[-77.41842,8.58692],[-77.41409,8.58931],[-77.40495,8.58424],[-77.39993,8.5863],[-77.39536,8.58393],[-77.3901,8.58496],[-77.39315,8.58974],[-77.39208,8.59383],[-77.39959,8.6003],[-77.40367,8.61152],[-77.40325,8.61513],[-77.40007,8.6167],[-77.40329,8.62597],[-77.40857,8.63524],[-77.41076,8.64078],[-77.40883,8.64496],[-77.39545,8.65149],[-77.3897,8.6499],[-77.38395,8.64356],[-77.3785,8.64225],[-77.37168,8.63755],[-77.3649,8.64105],[-77.36937,8.65332],[-77.3704,8.66286],[-77.36354,8.66664],[-77.36388,8.6709],[-77.35667,8.67584],[-74.55974,12.54661],[-70.4916,12.52683],[-68.76514,11.57026],[-67.47384,12.50658],[-61.76056,11.46168],[-61.79586,10.38444],[-62.08817,10.09876],[-62,10],[-60,10],[-51.62045,7],[-51.62045,4.22076],[-51.61955,4.15839],[-51.66261,4.05219],[-51.74961,3.98434],[-51.80366,3.87266],[-51.91174,3.79726],[-51.9649,3.69994],[-52.22146,3.25586],[-52.31121,3.20415],[-52.34603,3.0592],[-52.55849,2.54973],[-52.63184,2.40864],[-52.82604,2.28675],[-52.94334,2.16486],[-53.09059,2.20387],[-53.25982,2.1825],[-53.31264,2.35933],[-53.51376,2.25622],[-53.75884,2.37267],[-54.11715,2.10607],[-54.6073,2.31152],[-54.69001,2.34092],[-54.69582,2.43618],[-54.75639,2.47558],[-54.86092,2.41619],[-54.95446,2.55985],[-54.93814,2.62669],[-55.09691,2.53095],[-55.14582,2.55594],[-55.24142,2.50136],[-55.31506,2.5236],[-55.35794,2.42541],[-55.49971,2.44795],[-55.71182,2.39424],[-55.94591,2.53261],[-56.18,2.2868],[-55.89055,1.99647],[-55.93259,1.87326],[-55.99661,1.83789],[-56.05642,1.85807],[-56.08221,1.84894],[-56.11349,1.85628],[-56.13103,1.86156],[-56.15682,1.89429],[-56.17544,1.90486],[-56.1865,1.89003],[-56.23602,1.9054],[-56.24441,1.8785],[-56.32849,1.93311],[-56.36186,1.9351],[-56.40074,1.92062],[-56.42862,1.94457],[-56.45377,1.95204],[-56.48104,1.94847],[-56.50282,1.93117],[-56.57954,1.90152],[-56.60141,1.92787],[-56.62329,1.94049],[-56.66361,1.90466],[-56.72591,1.92374],[-56.79557,1.84933],[-56.80005,1.8669],[-56.82376,1.88447],[-56.85744,1.88941],[-56.90211,1.89984],[-56.90797,1.91878],[-56.92206,1.92674],[-56.97295,1.91877],[-56.97715,1.90257],[-57.00606,1.90834],[-57.04871,1.93606],[-57.07004,1.9561],[-57.07763,2.00084],[-57.09831,2.01346],[-57.1376,2.0044],[-57.1696,1.97516],[-57.19886,1.96789],[-57.21988,1.95718],[-57.24914,1.93],[-57.28664,1.97419],[-57.32964,1.97995],[-57.3576,1.95305],[-57.38281,1.9179],[-57.40803,1.90884],[-57.43325,1.89154],[-57.46121,1.82483],[-57.49192,1.78282],[-57.53087,1.70375],[-57.55883,1.68508],[-57.59676,1.68831],[-57.63882,1.67918],[-57.74421,1.70827],[-57.78814,1.70409],[-57.79964,1.69703],[-57.80565,1.68037],[-57.83277,1.66489],[-57.87463,1.65926],[-57.93573,1.62892],[-57.96625,1.64442],[-57.98509,1.651],[-57.99065,1.64056],[-57.98523,1.58482],[-58.00116,1.54473],[-58.0028,1.51259],[-58.01687,1.50428],[-58.03643,1.50009],[-58.07624,1.50407],[-58.1325,1.4983],[-58.14571,1.50547],[-58.14657,1.52362],[-58.15102,1.55169],[-58.1875,1.55425],[-58.2226,1.54994],[-58.24672,1.5573],[-58.26534,1.56741],[-58.29572,1.56223],[-58.31228,1.59052],[-58.32061,1.59548],[-58.33176,1.58996],[-58.33742,1.56109],[-58.3575,1.54664],[-58.37964,1.54317],[-58.38846,1.52105],[-58.37742,1.49283],[-58.38973,1.46667],[-58.42813,1.4556],[-58.47889,1.46033],[-58.49051,1.45819],[-58.49801,1.45056],[-58.50399,1.43971],[-58.5086,1.42886],[-58.50451,1.40753],[-58.49425,1.39237],[-58.47098,1.35657],[-58.46563,1.32341],[-58.47676,1.2978],[-58.49476,1.27219],[-58.5032,1.26338],[-58.51234,1.27037],[-58.52168,1.26717],[-58.5184,1.25392],[-58.52499,1.25047],[-58.53021,1.26487],[-58.53997,1.26345],[-58.54149,1.28229],[-58.55056,1.2874],[-58.55779,1.2821],[-58.56777,1.28985],[-58.57259,1.28283],[-58.57948,1.27856],[-58.57814,1.26967],[-58.58711,1.25804],[-58.59281,1.26717],[-58.60607,1.27013],[-58.62036,1.27995],[-58.6319,1.28084],[-58.64121,1.27848],[-58.65464,1.28023],[-58.67292,1.27379],[-58.68077,1.28129],[-58.6845,1.29291],[-58.7002,1.29145],[-58.71225,1.28453],[-58.71882,1.26389],[-58.72401,1.24256],[-58.71958,1.23085],[-58.74034,1.19633],[-58.75274,1.20521],[-58.76377,1.19349],[-58.77479,1.17902],[-58.78445,1.18378],[-58.79822,1.18168],[-58.80101,1.1727],[-58.80791,1.17609],[-58.82444,1.16437],[-58.8294,1.16895],[-58.82708,1.17605],[-58.82888,1.18315],[-58.85668,1.17447],[-58.85615,1.18523],[-58.86001,1.18649],[-58.86112,1.19874],[-58.87107,1.19967],[-58.87226,1.20974],[-58.87757,1.21982],[-58.88847,1.22417],[-58.90074,1.22303],[-58.91155,1.23173],[-58.90484,1.23769],[-58.90364,1.24639],[-58.89213,1.25029],[-58.89161,1.25556],[-58.89897,1.27193],[-58.91501,1.27532],[-58.92557,1.28419],[-58.91439,1.30262],[-58.92108,1.31007],[-58.95797,1.30963],[-58.97023,1.30735],[-58.9825,1.29409],[-58.98987,1.31492],[-58.99586,1.31929],[-59.0125,1.31661],[-59.02639,1.32355],[-59.04783,1.31744],[-59.0661,1.33086],[-59.07614,1.32506],[-59.09568,1.33825],[-59.10619,1.34196],[-59.11807,1.33743],[-59.13223,1.34484],[-59.15093,1.3432],[-59.16053,1.35185],[-59.17699,1.35364],[-59.18247,1.36298],[-59.1907,1.3682],[-59.19893,1.37149],[-59.21265,1.36655],[-59.22775,1.36903],[-59.23391,1.37768],[-59.24661,1.38063],[-59.27991,1.40418],[-59.27566,1.41285],[-59.28927,1.438],[-59.28572,1.4453],[-59.30688,1.46221],[-59.31363,1.46172],[-59.31626,1.45574],[-59.32701,1.45338],[-59.32964,1.46799],[-59.32129,1.47711],[-59.32941,1.49241],[-59.32867,1.5028],[-59.33342,1.51045],[-59.35424,1.51329],[-59.36081,1.51022],[-59.3619,1.50167],[-59.3833,1.50103],[-59.37807,1.50851],[-59.38507,1.515],[-59.38384,1.52424],[-59.39372,1.52898],[-59.39811,1.53784],[-59.3937,1.54995],[-59.40385,1.55257],[-59.41538,1.54695],[-59.42882,1.55769],[-59.43058,1.56842],[-59.42823,1.57778],[-59.44236,1.59675],[-59.44825,1.61572],[-59.46465,1.61248],[-59.48518,1.62296],[-59.49441,1.63816],[-59.49353,1.66017],[-59.49953,1.67257],[-59.50441,1.67139],[-59.51066,1.66472],[-59.51417,1.67727],[-59.52593,1.6857],[-59.53363,1.70394],[-59.5331,1.71668],[-59.54321,1.71502],[-59.55195,1.72158],[-59.57629,1.73335],[-59.60475,1.7204],[-59.61536,1.71295],[-59.62735,1.72174],[-59.63523,1.73878],[-59.65135,1.73934],[-59.66198,1.73441],[-59.66881,1.75063],[-59.69075,1.7545],[-59.69217,1.75872],[-59.68466,1.76843],[-59.6854,1.78397],[-59.67858,1.79265],[-59.67829,1.80184],[-59.67388,1.80623],[-59.665,1.80924],[-59.65715,1.80814],[-59.6566,1.81218],[-59.65948,1.81829],[-59.65015,1.83736],[-59.65093,1.84785],[-59.6575,1.85378],[-59.66158,1.86235],[-59.66565,1.86475],[-59.66839,1.85904],[-59.66701,1.84373],[-59.67044,1.83643],[-59.67678,1.83416],[-59.69137,1.84561],[-59.70115,1.84917],[-59.70887,1.85032],[-59.71663,1.84807],[-59.72302,1.84856],[-59.73512,1.84509],[-59.74489,1.84775],[-59.75226,1.85898],[-59.75003,1.87022],[-59.74523,1.87535],[-59.7528,1.88734],[-59.75693,1.89728],[-59.75351,1.90652],[-59.75232,1.91749],[-59.74427,1.92639],[-59.7448,1.9353],[-59.73778,1.94969],[-59.73982,1.95679],[-59.73568,1.96319],[-59.7377,1.96915],[-59.73595,1.97716],[-59.73077,1.98174],[-59.73344,1.98644],[-59.73337,2.00281],[-59.73107,2.00768],[-59.73472,2.01424],[-59.73289,2.0201],[-59.72372,2.02258],[-59.72142,2.02711],[-59.73153,2.03333],[-59.73273,2.04642],[-59.73701,2.05058],[-59.73709,2.0561],[-59.74057,2.06675],[-59.74404,2.0719],[-59.73407,2.09053],[-59.72273,2.09886],[-59.72323,2.12147],[-59.72923,2.12177],[-59.72407,2.13302],[-59.72801,2.13453],[-59.73032,2.1418],[-59.73813,2.14907],[-59.73796,2.15847],[-59.7419,2.16512],[-59.7382,2.17561],[-59.73863,2.18198],[-59.73467,2.18237],[-59.73638,2.18933],[-59.72605,2.20325],[-59.72832,2.21649],[-59.73196,2.22286],[-59.73101,2.23217],[-59.7195,2.23639],[-59.72185,2.24644],[-59.72009,2.25033],[-59.72519,2.25421],[-59.72824,2.26427],[-59.72188,2.27501],[-59.73807,2.29047],[-59.75303,2.28723],[-59.76937,2.29359],[-59.77978,2.28404],[-59.79666,2.29453],[-59.80259,2.29921],[-59.80304,2.30527],[-59.8139,2.3155],[-59.82476,2.32024],[-59.83002,2.32835],[-59.84227,2.31962],[-59.84565,2.33034],[-59.85453,2.33146],[-59.85295,2.33869],[-59.86764,2.34766],[-59.87368,2.36148],[-59.88109,2.35198],[-59.89674,2.36031],[-59.91016,2.3912],[-59.89764,2.40184],[-59.89748,2.41248],[-59.89757,2.4226],[-59.88943,2.42861],[-59.89923,2.44062],[-59.89273,2.46328],[-59.89853,2.47305],[-59.89608,2.47871],[-59.91081,2.49398],[-59.91867,2.50924],[-59.91714,2.52503],[-59.93742,2.55249],[-59.92856,2.56624],[-59.93822,2.58308],[-59.9685,2.59306],[-59.97163,2.60008],[-59.96377,2.60985],[-59.95631,2.60743],[-59.96258,2.6153],[-59.95924,2.62179],[-59.96903,2.62999],[-59.97607,2.64229],[-59.96855,2.66135],[-59.97577,2.67224],[-59.98437,2.67628],[-59.9905,2.68633],[-60,-16.5],[-69.01446,-16.5],[-69.04358,-16.58356],[-68.99964,-16.6362],[-68.99689,-16.65988],[-69.04084,-16.68619],[-69.05457,-16.69145],[-69.12049,-16.71513],[-69.13697,-16.7125],[-69.17267,-16.72565],[-69.18366,-16.74932],[-69.17542,-16.77036],[-69.18915,-16.79666],[-69.21662,-16.82821],[-69.32648,-16.94648],[-69.32099,-16.96487],[-69.34021,-16.98851],[-69.36768,-16.99113],[-69.3924,-17.02265],[-69.37043,-17.05154],[-69.37592,-17.07254],[-69.40888,-17.0988],[-69.4336,-17.1093],[-69.45557,-17.09617],[-69.51874,-17.14867],[-69.55994,-17.16704],[-69.57367,-17.18541],[-69.57367,-17.19853],[-69.58466,-17.2064],[-69.60389,-17.21427],[-69.61487,-17.25624],[-69.62311,-17.27198],[-69.63685,-17.26936],[-69.64509,-17.27985],[-69.63959,-17.28771],[-69.57642,-17.29296],[-69.51874,-17.32967],[-69.47205,-17.36899],[-69.4693,-17.49739],[-69.54896,-17.57334],[-69.6698,-17.66235],[-69.79615,-17.64403],[-69.82361,-17.7016],[-69.82911,-17.74084],[-69.80439,-17.75654],[-69.79889,-17.86637],[-69.77967,-17.91341],[-69.7522,-17.94739],[-69.75769,-17.98919],[-69.82087,-18.11714],[-69.85932,-18.17195],[-69.90601,-18.20327],[-69.96918,-18.26327],[-69.98017,-18.26587],[-70.05158,-18.27109],[-70.15046,-18.31803],[-70.20264,-18.32064],[-70.30152,-18.3076],[-70.34821,-18.32064],[-70.37842,-18.34932],[-77.10206,-18.33367],[-92.02149,-5.96576],[-92.18997,6.011]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Brazil, north of 16.5º S and east of 60º W#PY0", "itu_zone_number": 13 }, "geometry": { "type": "Polygon", "coordinates": [[[-28,7],[-51.62045,7],[-51.62045,4.22076],[-51.61955,4.15839],[-51.66261,4.05219],[-51.74961,3.98434],[-51.80366,3.87266],[-51.91174,3.79726],[-51.9649,3.69994],[-52.22146,3.25586],[-52.31121,3.20415],[-52.34603,3.0592],[-52.55849,2.54973],[-52.63184,2.40864],[-52.82604,2.28675],[-52.94334,2.16486],[-53.09059,2.20387],[-53.25982,2.1825],[-53.31264,2.35933],[-53.51376,2.25622],[-53.75884,2.37267],[-54.11715,2.10607],[-54.6073,2.31152],[-54.69001,2.34092],[-54.69582,2.43618],[-54.75639,2.47558],[-54.86092,2.41619],[-54.95446,2.55985],[-54.93814,2.62669],[-55.09691,2.53095],[-55.14582,2.55594],[-55.24142,2.50136],[-55.31506,2.5236],[-55.35794,2.42541],[-55.49971,2.44795],[-55.71182,2.39424],[-55.94591,2.53261],[-56.18,2.2868],[-55.89055,1.99647],[-55.93259,1.87326],[-55.99661,1.83789],[-56.05642,1.85807],[-56.08221,1.84894],[-56.11349,1.85628],[-56.13103,1.86156],[-56.15682,1.89429],[-56.17544,1.90486],[-56.1865,1.89003],[-56.23602,1.9054],[-56.24441,1.8785],[-56.32849,1.93311],[-56.36186,1.9351],[-56.40074,1.92062],[-56.42862,1.94457],[-56.45377,1.95204],[-56.48104,1.94847],[-56.50282,1.93117],[-56.57954,1.90152],[-56.60141,1.92787],[-56.62329,1.94049],[-56.66361,1.90466],[-56.72591,1.92374],[-56.79557,1.84933],[-56.80005,1.8669],[-56.82376,1.88447],[-56.85744,1.88941],[-56.90211,1.89984],[-56.90797,1.91878],[-56.92206,1.92674],[-56.97295,1.91877],[-56.97715,1.90257],[-57.00606,1.90834],[-57.04871,1.93606],[-57.07004,1.9561],[-57.07763,2.00084],[-57.09831,2.01346],[-57.1376,2.0044],[-57.1696,1.97516],[-57.19886,1.96789],[-57.21988,1.95718],[-57.24914,1.93],[-57.28664,1.97419],[-57.32964,1.97995],[-57.3576,1.95305],[-57.38281,1.9179],[-57.40803,1.90884],[-57.43325,1.89154],[-57.46121,1.82483],[-57.49192,1.78282],[-57.53087,1.70375],[-57.55883,1.68508],[-57.59676,1.68831],[-57.63882,1.67918],[-57.74421,1.70827],[-57.78814,1.70409],[-57.79964,1.69703],[-57.80565,1.68037],[-57.83277,1.66489],[-57.87463,1.65926],[-57.93573,1.62892],[-57.96625,1.64442],[-57.98509,1.651],[-57.99065,1.64056],[-57.98523,1.58482],[-58.00116,1.54473],[-58.0028,1.51259],[-58.01687,1.50428],[-58.03643,1.50009],[-58.07624,1.50407],[-58.1325,1.4983],[-58.14571,1.50547],[-58.14657,1.52362],[-58.15102,1.55169],[-58.1875,1.55425],[-58.2226,1.54994],[-58.24672,1.5573],[-58.26534,1.56741],[-58.29572,1.56223],[-58.31228,1.59052],[-58.32061,1.59548],[-58.33176,1.58996],[-58.33742,1.56109],[-58.3575,1.54664],[-58.37964,1.54317],[-58.38846,1.52105],[-58.37742,1.49283],[-58.38973,1.46667],[-58.42813,1.4556],[-58.47889,1.46033],[-58.49051,1.45819],[-58.49801,1.45056],[-58.50399,1.43971],[-58.5086,1.42886],[-58.50451,1.40753],[-58.49425,1.39237],[-58.47098,1.35657],[-58.46563,1.32341],[-58.47676,1.2978],[-58.49476,1.27219],[-58.5032,1.26338],[-58.51234,1.27037],[-58.52168,1.26717],[-58.5184,1.25392],[-58.52499,1.25047],[-58.53021,1.26487],[-58.53997,1.26345],[-58.54149,1.28229],[-58.55056,1.2874],[-58.55779,1.2821],[-58.56777,1.28985],[-58.57259,1.28283],[-58.57948,1.27856],[-58.57814,1.26967],[-58.58711,1.25804],[-58.59281,1.26717],[-58.60607,1.27013],[-58.62036,1.27995],[-58.6319,1.28084],[-58.64121,1.27848],[-58.65464,1.28023],[-58.67292,1.27379],[-58.68077,1.28129],[-58.6845,1.29291],[-58.7002,1.29145],[-58.71225,1.28453],[-58.71882,1.26389],[-58.72401,1.24256],[-58.71958,1.23085],[-58.74034,1.19633],[-58.75274,1.20521],[-58.76377,1.19349],[-58.77479,1.17902],[-58.78445,1.18378],[-58.79822,1.18168],[-58.80101,1.1727],[-58.80791,1.17609],[-58.82444,1.16437],[-58.8294,1.16895],[-58.82708,1.17605],[-58.82888,1.18315],[-58.85668,1.17447],[-58.85615,1.18523],[-58.86001,1.18649],[-58.86112,1.19874],[-58.87107,1.19967],[-58.87226,1.20974],[-58.87757,1.21982],[-58.88847,1.22417],[-58.90074,1.22303],[-58.91155,1.23173],[-58.90484,1.23769],[-58.90364,1.24639],[-58.89213,1.25029],[-58.89161,1.25556],[-58.89897,1.27193],[-58.91501,1.27532],[-58.92557,1.28419],[-58.91439,1.30262],[-58.92108,1.31007],[-58.95797,1.30963],[-58.97023,1.30735],[-58.9825,1.29409],[-58.98987,1.31492],[-58.99586,1.31929],[-59.0125,1.31661],[-59.02639,1.32355],[-59.04783,1.31744],[-59.0661,1.33086],[-59.07614,1.32506],[-59.09568,1.33825],[-59.10619,1.34196],[-59.11807,1.33743],[-59.13223,1.34484],[-59.15093,1.3432],[-59.16053,1.35185],[-59.17699,1.35364],[-59.18247,1.36298],[-59.1907,1.3682],[-59.19893,1.37149],[-59.21265,1.36655],[-59.22775,1.36903],[-59.23391,1.37768],[-59.24661,1.38063],[-59.27991,1.40418],[-59.27566,1.41285],[-59.28927,1.438],[-59.28572,1.4453],[-59.30688,1.46221],[-59.31363,1.46172],[-59.31626,1.45574],[-59.32701,1.45338],[-59.32964,1.46799],[-59.32129,1.47711],[-59.32941,1.49241],[-59.32867,1.5028],[-59.33342,1.51045],[-59.35424,1.51329],[-59.36081,1.51022],[-59.3619,1.50167],[-59.3833,1.50103],[-59.37807,1.50851],[-59.38507,1.515],[-59.38384,1.52424],[-59.39372,1.52898],[-59.39811,1.53784],[-59.3937,1.54995],[-59.40385,1.55257],[-59.41538,1.54695],[-59.42882,1.55769],[-59.43058,1.56842],[-59.42823,1.57778],[-59.44236,1.59675],[-59.44825,1.61572],[-59.46465,1.61248],[-59.48518,1.62296],[-59.49441,1.63816],[-59.49353,1.66017],[-59.49953,1.67257],[-59.50441,1.67139],[-59.51066,1.66472],[-59.51417,1.67727],[-59.52593,1.6857],[-59.53363,1.70394],[-59.5331,1.71668],[-59.54321,1.71502],[-59.55195,1.72158],[-59.57629,1.73335],[-59.60475,1.7204],[-59.61536,1.71295],[-59.62735,1.72174],[-59.63523,1.73878],[-59.65135,1.73934],[-59.66198,1.73441],[-59.66881,1.75063],[-59.69075,1.7545],[-59.69217,1.75872],[-59.68466,1.76843],[-59.6854,1.78397],[-59.67858,1.79265],[-59.67829,1.80184],[-59.67388,1.80623],[-59.665,1.80924],[-59.65715,1.80814],[-59.6566,1.81218],[-59.65948,1.81829],[-59.65015,1.83736],[-59.65093,1.84785],[-59.6575,1.85378],[-59.66158,1.86235],[-59.66565,1.86475],[-59.66839,1.85904],[-59.66701,1.84373],[-59.67044,1.83643],[-59.67678,1.83416],[-59.69137,1.84561],[-59.70115,1.84917],[-59.70887,1.85032],[-59.71663,1.84807],[-59.72302,1.84856],[-59.73512,1.84509],[-59.74489,1.84775],[-59.75226,1.85898],[-59.75003,1.87022],[-59.74523,1.87535],[-59.7528,1.88734],[-59.75693,1.89728],[-59.75351,1.90652],[-59.75232,1.91749],[-59.74427,1.92639],[-59.7448,1.9353],[-59.73778,1.94969],[-59.73982,1.95679],[-59.73568,1.96319],[-59.7377,1.96915],[-59.73595,1.97716],[-59.73077,1.98174],[-59.73344,1.98644],[-59.73337,2.00281],[-59.73107,2.00768],[-59.73472,2.01424],[-59.73289,2.0201],[-59.72372,2.02258],[-59.72142,2.02711],[-59.73153,2.03333],[-59.73273,2.04642],[-59.73701,2.05058],[-59.73709,2.0561],[-59.74057,2.06675],[-59.74404,2.0719],[-59.73407,2.09053],[-59.72273,2.09886],[-59.72323,2.12147],[-59.72923,2.12177],[-59.72407,2.13302],[-59.72801,2.13453],[-59.73032,2.1418],[-59.73813,2.14907],[-59.73796,2.15847],[-59.7419,2.16512],[-59.7382,2.17561],[-59.73863,2.18198],[-59.73467,2.18237],[-59.73638,2.18933],[-59.72605,2.20325],[-59.72832,2.21649],[-59.73196,2.22286],[-59.73101,2.23217],[-59.7195,2.23639],[-59.72185,2.24644],[-59.72009,2.25033],[-59.72519,2.25421],[-59.72824,2.26427],[-59.72188,2.27501],[-59.73807,2.29047],[-59.75303,2.28723],[-59.76937,2.29359],[-59.77978,2.28404],[-59.79666,2.29453],[-59.80259,2.29921],[-59.80304,2.30527],[-59.8139,2.3155],[-59.82476,2.32024],[-59.83002,2.32835],[-59.84227,2.31962],[-59.84565,2.33034],[-59.85453,2.33146],[-59.85295,2.33869],[-59.86764,2.34766],[-59.87368,2.36148],[-59.88109,2.35198],[-59.89674,2.36031],[-59.91016,2.3912],[-59.89764,2.40184],[-59.89748,2.41248],[-59.89757,2.4226],[-59.88943,2.42861],[-59.89923,2.44062],[-59.89273,2.46328],[-59.89853,2.47305],[-59.89608,2.47871],[-59.91081,2.49398],[-59.91867,2.50924],[-59.91714,2.52503],[-59.93742,2.55249],[-59.92856,2.56624],[-59.93822,2.58308],[-59.9685,2.59306],[-59.97163,2.60008],[-59.96377,2.60985],[-59.95631,2.60743],[-59.96258,2.6153],[-59.95924,2.62179],[-59.96903,2.62999],[-59.97607,2.64229],[-59.96855,2.66135],[-59.97577,2.67224],[-59.98437,2.67628],[-59.99471,2.7022],[-60,-16.5],[-28,-16.5],[-28,7]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Chile, north of 40º S#CE0X", "itu_zone_number": 14 }, "geometry": { "type": "Polygon", "coordinates": [[[-58.33739,-16.5],[-69.01447,-16.5],[-69.04358,-16.58356],[-68.99964,-16.6362],[-68.99689,-16.65988],[-69.04084,-16.68619],[-69.05457,-16.69145],[-69.12049,-16.71513],[-69.13697,-16.7125],[-69.17267,-16.72565],[-69.18366,-16.74932],[-69.17542,-16.77036],[-69.18915,-16.79666],[-69.21662,-16.82821],[-69.32648,-16.94648],[-69.32099,-16.96487],[-69.34021,-16.98851],[-69.36768,-16.99113],[-69.3924,-17.02265],[-69.37043,-17.05154],[-69.37592,-17.07254],[-69.40888,-17.0988],[-69.4336,-17.1093],[-69.45557,-17.09617],[-69.51874,-17.14867],[-69.55994,-17.16704],[-69.57367,-17.18541],[-69.57367,-17.19853],[-69.58466,-17.2064],[-69.60389,-17.21427],[-69.61487,-17.25624],[-69.62311,-17.27198],[-69.63685,-17.26936],[-69.64509,-17.27985],[-69.63959,-17.28771],[-69.57642,-17.29296],[-69.51874,-17.32967],[-69.47205,-17.36899],[-69.4693,-17.49739],[-69.54896,-17.57334],[-69.6698,-17.66235],[-69.79615,-17.64403],[-69.82361,-17.7016],[-69.82911,-17.74084],[-69.80439,-17.75654],[-69.79889,-17.86637],[-69.77967,-17.91341],[-69.7522,-17.94739],[-69.75769,-17.98919],[-69.82087,-18.11714],[-69.85932,-18.17195],[-69.90601,-18.20327],[-69.96918,-18.26327],[-69.98017,-18.26587],[-70.05158,-18.27109],[-70.15046,-18.31803],[-70.20264,-18.32064],[-70.30152,-18.3076],[-70.34821,-18.32064],[-70.37842,-18.34932],[-77.10206,-18.33367],[-82.24915,-28.94332],[-79.31855,-40],[-52,-40],[-52,-33.7399],[-53.3721,-33.74812],[-53.36876,-33.74348],[-53.36903,-33.74348],[-53.36903,-33.74376],[-53.36959,-33.74376],[-53.36959,-33.74403],[-53.36987,-33.74403],[-53.36987,-33.74431],[-53.37014,-33.74431],[-53.37014,-33.74459],[-53.37042,-33.74459],[-53.37042,-33.74487],[-53.37125,-33.74487],[-53.37125,-33.74514],[-53.37153,-33.74514],[-53.37153,-33.74542],[-53.37209,-33.74542],[-53.37209,-33.7457],[-53.37236,-33.7457],[-53.37236,-33.74598],[-53.37264,-33.74598],[-53.37264,-33.74626],[-53.37292,-33.74626],[-53.37292,-33.74653],[-53.37348,-33.74653],[-53.37348,-33.74681],[-53.37375,-33.74681],[-53.37375,-33.74709],[-53.37403,-33.74709],[-53.40452,-33.73994],[-53.41635,-33.74002],[-53.42035,-33.73831],[-53.4244,-33.73375],[-53.42605,-33.72124],[-53.42668,-33.70914],[-53.42977,-33.70123],[-53.43481,-33.69793],[-53.44936,-33.69304],[-53.46538,-33.69066],[-53.47039,-33.68902],[-53.4864,-33.68748],[-53.49238,-33.68919],[-53.52366,-33.68611],[-53.52013,-33.66737],[-53.52062,-33.66547],[-53.52569,-33.66502],[-53.52789,-33.66462],[-53.52944,-33.66364],[-53.53018,-33.66239],[-53.53037,-33.65781],[-53.52996,-33.65757],[-53.52849,-33.65684],[-53.52734,-33.65598],[-53.52596,-33.65471],[-53.52549,-33.65297],[-53.52551,-33.65228],[-53.52595,-33.6516],[-53.52766,-33.64993],[-53.52842,-33.64812],[-53.52873,-33.64732],[-53.53001,-33.6461],[-53.53143,-33.64499],[-53.53243,-33.6441],[-53.53288,-33.64309],[-53.53289,-33.64274],[-53.53269,-33.64113],[-53.53262,-33.63918],[-53.53296,-33.63758],[-53.5331,-33.63414],[-53.5333,-33.63277],[-53.53376,-33.63129],[-53.5338,-33.63038],[-53.53379,-33.63006],[-53.53346,-33.62865],[-53.53362,-33.62485],[-53.5336,-33.62445],[-53.53338,-33.62383],[-53.53299,-33.62248],[-53.53307,-33.6213],[-53.53297,-33.62037],[-53.5314,-33.61873],[-53.52993,-33.61765],[-53.52945,-33.61603],[-53.52977,-33.61466],[-53.52997,-33.61341],[-53.53001,-33.61226],[-53.52999,-33.61204],[-53.52865,-33.61304],[-53.51692,-33.54097],[-53.50825,-33.48809],[-53.50012,-33.3998],[-53.51059,-33.30984],[-53.52499,-33.25091],[-53.53154,-33.2077],[-53.52892,-33.17235],[-53.51714,-33.13045],[-53.50012,-33.09771],[-53.4844,-33.07807],[-53.415,-33.02569],[-53.29846,-32.94844],[-53.24783,-32.86353],[-53.16748,-32.79946],[-53.09425,-32.73335],[-53.09425,-32.72419],[-53.17015,-32.65213],[-53.1752,-32.65728],[-53.18208,-32.65642],[-53.1866,-32.64536],[-53.18848,-32.64496],[-53.1882,-32.64226],[-53.18757,-32.64042],[-53.18726,-32.63996],[-53.1927,-32.63949],[-53.20961,-32.63599],[-53.22613,-32.62858],[-53.23705,-32.60868],[-53.243,-32.6024],[-53.25675,-32.60249],[-53.26502,-32.60635],[-53.26762,-32.60962],[-53.27398,-32.61366],[-53.28154,-32.6143],[-53.30487,-32.59604],[-53.31479,-32.59054],[-53.32633,-32.58553],[-53.33961,-32.58491],[-53.35784,-32.57318],[-53.36678,-32.57292],[-53.37549,-32.57999],[-53.38519,-32.58135],[-53.38908,-32.57955],[-53.40241,-32.56706],[-53.41069,-32.56175],[-53.41829,-32.56122],[-53.43489,-32.53133],[-53.44739,-32.51167],[-53.44934,-32.50992],[-53.45468,-32.49392],[-53.45279,-32.48931],[-53.453,-32.48882],[-53.452,-32.48638],[-53.45382,-32.48198],[-53.45888,-32.47698],[-53.47178,-32.47862],[-53.48422,-32.47835],[-53.49212,-32.48181],[-53.50005,-32.48317],[-53.50532,-32.48007],[-53.5142,-32.48418],[-53.51967,-32.48425],[-53.52572,-32.47947],[-53.53171,-32.47806],[-53.53878,-32.47098],[-53.54676,-32.46981],[-53.55028,-32.46732],[-53.55637,-32.45938],[-53.57219,-32.44944],[-53.57683,-32.43917],[-53.58215,-32.43269],[-53.59089,-32.43005],[-53.59414,-32.42861],[-53.59851,-32.41981],[-53.60579,-32.41462],[-53.60496,-32.40428],[-53.60529,-32.39923],[-53.60986,-32.39232],[-53.62357,-32.38931],[-53.62883,-32.38621],[-53.63164,-32.3816],[-53.63185,-32.3677],[-53.62599,-32.36152],[-53.62682,-32.35728],[-53.62325,-32.35135],[-53.6238,-32.35064],[-53.62246,-32.34842],[-53.62803,-32.34131],[-53.63268,-32.32956],[-53.64379,-32.31725],[-53.64363,-32.31114],[-53.63818,-32.31066],[-53.63475,-32.3083],[-53.63263,-32.30027],[-53.6345,-32.29165],[-53.64347,-32.2888],[-53.64716,-32.27472],[-53.65513,-32.27248],[-53.66068,-32.2658],[-53.66743,-32.26208],[-53.66947,-32.25852],[-53.66765,-32.24712],[-53.66902,-32.2385],[-53.667,-32.23321],[-53.68173,-32.21735],[-53.68386,-32.20704],[-53.69227,-32.20797],[-53.69671,-32.20572],[-53.69867,-32.2012],[-53.69768,-32.19957],[-53.69202,-32.1972],[-53.69188,-32.19454],[-53.69123,-32.19427],[-53.69104,-32.19047],[-53.70121,-32.18931],[-53.70297,-32.18786],[-53.70475,-32.18408],[-53.70382,-32.17986],[-53.71436,-32.1709],[-53.71053,-32.16117],[-53.71854,-32.15515],[-53.72676,-32.15423],[-53.72168,-32.14967],[-53.72048,-32.14692],[-53.7208,-32.14653],[-53.71969,-32.14399],[-53.73203,-32.12911],[-53.73461,-32.12222],[-53.7303,-32.11186],[-53.73063,-32.10575],[-53.72595,-32.10444],[-53.72243,-32.1082],[-53.71947,-32.10733],[-53.71337,-32.10116],[-53.72779,-32.09688],[-53.73789,-32.08223],[-53.7414,-32.0791],[-53.76099,-32.07571],[-53.76498,-32.07301],[-53.77242,-32.07203],[-53.78016,-32.06705],[-53.79746,-32.06764],[-53.80467,-32.06517],[-53.81293,-32.05788],[-53.82061,-32.05732],[-53.82608,-32.05484],[-53.82885,-32.05128],[-53.83047,-32.04055],[-53.83594,-32.03786],[-53.83806,-32.02735],[-53.84818,-32.02786],[-53.84945,-32.02513],[-53.84759,-32.01606],[-53.8482,-32.00679],[-53.85078,-31.99797],[-53.8569,-31.99264],[-53.86194,-31.99212],[-53.87068,-31.99455],[-53.87335,-31.99532],[-53.87895,-31.99385],[-53.8837,-31.99033],[-53.89559,-31.97156],[-53.91596,-31.95929],[-53.92641,-31.95841],[-53.93385,-31.95552],[-53.93904,-31.9481],[-53.94725,-31.95436],[-53.95261,-31.95426],[-53.95998,-31.94816],[-53.96457,-31.93846],[-53.95896,-31.926],[-53.95951,-31.92295],[-53.96479,-31.91942],[-53.97172,-31.91745],[-54.00227,-31.91596],[-54.0076,-31.91449],[-54.01181,-31.9112],[-54.01615,-31.90174],[-54.02247,-31.8928],[-54.02752,-31.8897],[-54.03561,-31.88724],[-54.04392,-31.88707],[-54.05152,-31.88829],[-54.05671,-31.89026],[-54.06198,-31.89499],[-54.06648,-31.90112],[-54.06983,-31.90519],[-54.07771,-31.90642],[-54.08907,-31.9071],[-54.09551,-31.90559],[-54.10025,-31.90111],[-54.10521,-31.89525],[-54.11127,-31.89005],[-54.11765,-31.88623],[-54.12619,-31.88283],[-54.13501,-31.87942],[-54.14411,-31.87669],[-54.14919,-31.87497],[-54.15286,-31.87121],[-54.1573,-31.86581],[-54.16257,-31.86155],[-54.17129,-31.85492],[-54.1893,-31.84324],[-54.20178,-31.83606],[-54.21529,-31.82748],[-54.25974,-31.79747],[-54.29281,-31.77577],[-54.30257,-31.76864],[-54.32612,-31.75337],[-54.35758,-31.73284],[-54.36918,-31.72428],[-54.40435,-31.70227],[-54.42416,-31.68914],[-54.43422,-31.68338],[-54.44003,-31.67932],[-54.44853,-31.67544],[-54.45541,-31.67159],[-54.45936,-31.6685],[-54.4614,-31.665],[-54.4608,-31.66294],[-54.45939,-31.66113],[-54.45718,-31.65956],[-54.45163,-31.65462],[-54.4475,-31.65195],[-54.44509,-31.65045],[-54.44724,-31.64935],[-54.43573,-31.64214],[-54.4297,-31.63883],[-54.42557,-31.63615],[-54.42276,-31.63276],[-54.42052,-31.62947],[-54.42265,-31.6259],[-54.42814,-31.62142],[-54.43403,-31.62002],[-54.43921,-31.61591],[-54.44277,-31.60964],[-54.44716,-31.59511],[-54.45201,-31.58744],[-54.46008,-31.57993],[-54.46466,-31.57204],[-54.47705,-31.56604],[-54.48245,-31.55881],[-54.49036,-31.53709],[-54.50461,-31.51317],[-54.52527,-31.49804],[-54.53247,-31.49535],[-54.54041,-31.49495],[-54.54648,-31.49229],[-54.56963,-31.48167],[-54.58335,-31.47633],[-54.59239,-31.47329],[-54.60753,-31.46697],[-54.6198,-31.46228],[-54.63103,-31.45919],[-54.63755,-31.45746],[-54.64558,-31.45695],[-54.65909,-31.45661],[-54.67291,-31.4547],[-54.68232,-31.45196],[-54.69025,-31.44863],[-54.70075,-31.44555],[-54.71317,-31.44012],[-54.7118,-31.43963],[-54.71673,-31.43938],[-54.7246,-31.43774],[-54.73517,-31.43685],[-54.75307,-31.43671],[-54.76554,-31.43795],[-54.78346,-31.43843],[-54.79925,-31.44053],[-54.81175,-31.4424],[-54.82277,-31.44399],[-54.82793,-31.44511],[-54.83481,-31.44337],[-54.84527,-31.43933],[-54.85134,-31.43542],[-54.85657,-31.42839],[-54.86322,-31.42038],[-54.87021,-31.41143],[-54.89018,-31.39774],[-54.90028,-31.39434],[-54.91557,-31.39268],[-54.92831,-31.39172],[-54.93776,-31.39021],[-54.94393,-31.3891],[-54.94774,-31.38336],[-54.949,-31.378],[-54.94871,-31.37018],[-54.94961,-31.36483],[-54.95121,-31.35884],[-54.95472,-31.35498],[-54.95756,-31.35282],[-54.95905,-31.35166],[-54.96422,-31.34501],[-54.9666,-31.34025],[-54.96792,-31.33646],[-54.97136,-31.33072],[-54.97444,-31.32531],[-54.98287,-31.31632],[-54.99451,-31.30534],[-55.00253,-31.2951],[-55.00983,-31.2855],[-55.01371,-31.28195],[-55.01574,-31.28167],[-55.01881,-31.28181],[-55.0211,-31.28425],[-55.02273,-31.28891],[-55.02512,-31.29417],[-55.02939,-31.30094],[-55.03808,-31.30885],[-55.05079,-31.31665],[-55.06153,-31.32073],[-55.07623,-31.32314],[-55.09045,-31.32275],[-55.10351,-31.3205],[-55.11513,-31.31892],[-55.12877,-31.3129],[-55.14092,-31.30598],[-55.1509,-31.29974],[-55.16151,-31.29098],[-55.16715,-31.28581],[-55.17352,-31.28061],[-55.18458,-31.27403],[-55.19319,-31.27034],[-55.20293,-31.26755],[-55.21813,-31.2643],[-55.22611,-31.26281],[-55.2376,-31.25809],[-55.24436,-31.25382],[-55.24853,-31.24869],[-55.25264,-31.24199],[-55.25596,-31.23343],[-55.25857,-31.22584],[-55.26262,-31.21757],[-55.26704,-31.20961],[-55.27081,-31.20354],[-55.27605,-31.19775],[-55.2809,-31.19134],[-55.28364,-31.18688],[-55.28669,-31.18115],[-55.28645,-31.1752],[-55.28696,-31.16954],[-55.28894,-31.16447],[-55.29522,-31.15739],[-55.30125,-31.15314],[-55.31194,-31.14719],[-55.32936,-31.13602],[-55.33564,-31.12925],[-55.33941,-31.12318],[-55.34089,-31.11468],[-55.34088,-31.10559],[-55.34234,-31.09646],[-55.34549,-31.08445],[-55.34974,-31.07242],[-55.35411,-31.06351],[-55.3602,-31.05204],[-55.36743,-31.0418],[-55.37334,-31.03473],[-55.38179,-31.02789],[-55.38892,-31.02392],[-55.39858,-31.01986],[-55.40934,-31.01578],[-55.42118,-31.01166],[-55.42652,-31.00868],[-55.43078,-31.00604],[-55.43488,-30.99964],[-55.43687,-30.99488],[-55.43808,-30.98889],[-55.43964,-30.98258],[-55.44223,-30.97497],[-55.44527,-30.96924],[-55.45092,-30.96499],[-55.45876,-30.96099],[-55.47162,-30.95526],[-55.48344,-30.95083],[-55.49201,-30.9468],[-55.49658,-30.9429],[-55.50132,-30.9346],[-55.50873,-30.92058],[-55.5156,-30.91096],[-55.52053,-30.90705],[-55.54603,-30.89089],[-55.56181,-30.8857],[-55.56641,-30.88273],[-55.57203,-30.87785],[-55.575,-30.87086],[-55.57687,-30.86359],[-55.57983,-30.85629],[-55.58255,-30.85181],[-55.5864,-30.84824],[-55.5928,-30.8449],[-55.60038,-30.84372],[-55.61133,-30.84463],[-55.62308,-30.84739],[-55.63049,-30.85061],[-55.63466,-30.85455],[-55.63715,-30.86168],[-55.63968,-30.86975],[-55.64032,-30.87631],[-55.63961,-30.88511],[-55.63843,-30.89142],[-55.63483,-30.90063],[-55.63406,-30.90817],[-55.63592,-30.91752],[-55.63886,-30.92914],[-55.64284,-30.93716],[-55.64794,-30.94577],[-55.65109,-30.95132],[-55.65714,-30.95645],[-55.66238,-30.95973],[-55.67083,-30.96166],[-55.67807,-30.9608],[-55.68526,-30.95868],[-55.69178,-30.95816],[-55.69761,-30.95828],[-55.7021,-30.96096],[-55.71381,-30.97093],[-55.72066,-30.9776],[-55.72969,-30.9842],[-55.73681,-30.98899],[-55.74849,-30.99769],[-55.75939,-31.00549],[-55.76796,-31.00991],[-55.77361,-31.01411],[-55.78066,-31.01701],[-55.78847,-31.02083],[-55.79717,-31.02807],[-55.80513,-31.03501],[-55.81316,-31.04353],[-55.82027,-31.04768],[-55.82959,-31.05238],[-55.8378,-31.05681],[-55.84335,-31.05882],[-55.8486,-31.06209],[-55.86187,-31.07356],[-55.8698,-31.07957],[-55.87534,-31.08126],[-55.88631,-31.08215],[-55.89798,-31.08238],[-55.90673,-31.0824],[-55.91594,-31.0846],[-55.92775,-31.08796],[-55.93363,-31.08901],[-55.94381,-31.08866],[-55.95106,-31.08779],[-55.95751,-31.08538],[-55.96394,-31.08265],[-55.97314,-31.07669],[-55.98311,-31.07165],[-55.98955,-31.06923],[-55.99458,-31.06781],[-56.00174,-31.06505],[-56.00782,-31.06265],[-56.01063,-31.05639],[-56.01282,-31.04576],[-56.01267,-31.03636],[-56.00967,-31.02293],[-56.01158,-30.99397],[-56.00924,-30.98491],[-56.00529,-30.97977],[-56.006,-30.97768],[-56.01021,-30.97662],[-56.00225,-30.96519],[-56.00682,-30.96022],[-56.00769,-30.94391],[-56.01315,-30.9412],[-56.01483,-30.93701],[-56.00303,-30.92273],[-56.00177,-30.91841],[-56.00789,-30.90651],[-56.00777,-30.89893],[-55.98791,-30.86193],[-55.98701,-30.85966],[-55.9872,-30.85903],[-55.98628,-30.85675],[-55.99045,-30.84285],[-56.00322,-30.83119],[-56.00299,-30.81995],[-56.00701,-30.81477],[-56.01375,-30.81086],[-56.01444,-30.80899],[-56.01088,-30.8045],[-56.01117,-30.80288],[-56.01015,-30.80159],[-56.01058,-30.79928],[-56.02124,-30.79411],[-56.02316,-30.79101],[-56.02016,-30.78629],[-56.02073,-30.78543],[-56.01943,-30.78338],[-56.02068,-30.78151],[-56.03277,-30.7788],[-56.03686,-30.76926],[-56.04059,-30.76937],[-56.04742,-30.77372],[-56.05255,-30.76965],[-56.05915,-30.76874],[-56.06644,-30.75955],[-56.064,-30.74655],[-56.06508,-30.74101],[-56.06788,-30.73839],[-56.0743,-30.73955],[-56.08616,-30.74924],[-56.09013,-30.74911],[-56.09982,-30.73432],[-56.10498,-30.73116],[-56.11189,-30.73116],[-56.12059,-30.73568],[-56.12671,-30.73593],[-56.13027,-30.73259],[-56.12927,-30.71634],[-56.13105,-30.70845],[-56.13404,-30.70447],[-56.14491,-30.69836],[-56.14764,-30.69437],[-56.14791,-30.68862],[-56.14109,-30.67876],[-56.14205,-30.67643],[-56.15968,-30.66734],[-56.16758,-30.66018],[-56.16979,-30.65047],[-56.16671,-30.64116],[-56.16764,-30.63838],[-56.17766,-30.63138],[-56.18021,-30.62326],[-56.175,-30.6138],[-56.17621,-30.61123],[-56.18979,-30.60089],[-56.20253,-30.60114],[-56.21089,-30.59855],[-56.21882,-30.59805],[-56.23066,-30.58455],[-56.23069,-30.58445],[-56.22579,-30.58123],[-56.22529,-30.57847],[-56.22507,-30.57832],[-56.22436,-30.57444],[-56.23033,-30.57171],[-56.24828,-30.57016],[-56.25211,-30.57255],[-56.25599,-30.58183],[-56.2581,-30.58175],[-56.26211,-30.57679],[-56.2624,-30.5715],[-56.25854,-30.56269],[-56.26092,-30.55687],[-56.26527,-30.5535],[-56.27801,-30.54823],[-56.28206,-30.54418],[-56.28464,-30.53698],[-56.28946,-30.53237],[-56.28995,-30.52437],[-56.29026,-30.52117],[-56.29203,-30.51951],[-56.29814,-30.51975],[-56.30721,-30.52654],[-56.32026,-30.52814],[-56.33043,-30.52456],[-56.33426,-30.52144],[-56.33121,-30.51306],[-56.33305,-30.50703],[-56.3361,-30.50439],[-56.34367,-30.50206],[-56.34722,-30.49872],[-56.34966,-30.48853],[-56.35276,-30.48704],[-56.3586,-30.48729],[-56.36084,-30.48973],[-56.35919,-30.49415],[-56.36205,-30.49864],[-56.38321,-30.49237],[-56.38599,-30.48952],[-56.38793,-30.48026],[-56.39522,-30.47666],[-56.39321,-30.47313],[-56.39387,-30.47265],[-56.39249,-30.47023],[-56.39479,-30.46854],[-56.39954,-30.46814],[-56.40335,-30.46479],[-56.40519,-30.45898],[-56.40342,-30.45514],[-56.3983,-30.45349],[-56.39785,-30.44961],[-56.40165,-30.44602],[-56.40793,-30.44442],[-56.41145,-30.44062],[-56.41555,-30.4267],[-56.41979,-30.42654],[-56.4325,-30.43228],[-56.43585,-30.43032],[-56.43774,-30.42566],[-56.44104,-30.42278],[-56.44708,-30.42164],[-56.45054,-30.41647],[-56.44982,-30.41259],[-56.44476,-30.40635],[-56.44543,-30.4038],[-56.45279,-30.39733],[-56.45852,-30.3845],[-56.46164,-30.38323],[-56.46732,-30.38578],[-56.47415,-30.38484],[-56.4782,-30.38653],[-56.48245,-30.39211],[-56.48796,-30.39122],[-56.50061,-30.37928],[-56.50707,-30.37605],[-56.51275,-30.3623],[-56.51695,-30.35887],[-56.52327,-30.35571],[-56.53148,-30.35586],[-56.53939,-30.36062],[-56.54393,-30.3616],[-56.5453,-30.35718],[-56.5426,-30.35063],[-56.54495,-30.34457],[-56.54913,-30.3435],[-56.54981,-30.34253],[-56.54936,-30.34183],[-56.53904,-30.33647],[-56.53607,-30.32992],[-56.53627,-30.32904],[-56.53536,-30.32702],[-56.53925,-30.30943],[-56.54401,-30.30948],[-56.55116,-30.31495],[-56.55752,-30.31517],[-56.56611,-30.30705],[-56.57314,-30.30495],[-56.57641,-30.30138],[-56.57346,-30.29529],[-56.57456,-30.29066],[-56.58167,-30.29016],[-56.59066,-30.29556],[-56.60204,-30.29582],[-56.61075,-30.30055],[-56.61652,-30.29963],[-56.61897,-30.29564],[-56.6172,-30.29203],[-56.60536,-30.28261],[-56.60421,-30.27554],[-56.60723,-30.26716],[-56.61157,-30.26401],[-56.6191,-30.26648],[-56.6333,-30.26502],[-56.63637,-30.26307],[-56.63686,-30.2616],[-56.63573,-30.26005],[-56.62614,-30.25858],[-56.62346,-30.24794],[-56.62703,-30.24],[-56.63929,-30.2315],[-56.64565,-30.22139],[-56.65085,-30.21958],[-56.65777,-30.2207],[-56.66175,-30.21962],[-56.66028,-30.21733],[-56.64855,-30.21525],[-56.64217,-30.20907],[-56.64296,-30.20762],[-56.64145,-30.20616],[-56.64363,-30.20218],[-56.65239,-30.20299],[-56.65871,-30.19724],[-56.66598,-30.19995],[-56.67179,-30.19995],[-56.67743,-30.19652],[-56.68218,-30.19634],[-56.6915,-30.2031],[-56.6965,-30.20268],[-56.70002,-30.1991],[-56.70561,-30.18442],[-56.70288,-30.17741],[-56.70511,-30.17457],[-56.70881,-30.17442],[-56.71503,-30.1774],[-56.72266,-30.17687],[-56.75118,-30.16107],[-56.75682,-30.15983],[-56.77037,-30.16446],[-56.77488,-30.16369],[-56.78015,-30.15948],[-56.7814,-30.153],[-56.77824,-30.13774],[-56.78038,-30.12801],[-56.78588,-30.12477],[-56.79859,-30.12271],[-56.80213,-30.11958],[-56.80084,-30.10999],[-56.80291,-30.10394],[-56.80608,-30.10404],[-56.81179,-30.10726],[-56.81571,-30.10642],[-56.82919,-30.09142],[-56.83509,-30.0882],[-56.85221,-30.08753],[-56.86171,-30.09266],[-56.86594,-30.09272],[-56.87059,-30.08565],[-56.87691,-30.0854],[-56.89131,-30.09332],[-56.89862,-30.10681],[-56.90126,-30.10693],[-56.90591,-30.10491],[-56.9122,-30.10489],[-56.91299,-30.10257],[-56.91232,-30.10069],[-56.91254,-30.1004],[-56.91161,-30.09779],[-56.91655,-30.09139],[-56.92469,-30.09061],[-56.95917,-30.09504],[-56.97896,-30.09347],[-56.9896,-30.08018],[-56.99184,-30.07969],[-56.9993,-30.08054],[-57.00665,-30.08372],[-57.01494,-30.08531],[-57.02173,-30.08886],[-57.02609,-30.09392],[-57.03286,-30.09747],[-57.04072,-30.09863],[-57.05197,-30.09752],[-57.06197,-30.09391],[-57.06319,-30.0891],[-57.06311,-30.08874],[-57.06834,-30.08775],[-57.07468,-30.09087],[-57.08404,-30.09818],[-57.08791,-30.10362],[-57.08609,-30.11083],[-57.08384,-30.11363],[-57.08489,-30.11642],[-57.08847,-30.11901],[-57.09277,-30.11717],[-57.09408,-30.11075],[-57.09931,-30.10896],[-57.10387,-30.11078],[-57.1094,-30.11184],[-57.11141,-30.11511],[-57.11271,-30.11505],[-57.11195,-30.116],[-57.11123,-30.11657],[-57.11266,-30.1189],[-57.11021,-30.12082],[-57.1076,-30.13287],[-57.10913,-30.13941],[-57.11419,-30.14044],[-57.12122,-30.13994],[-57.1271,-30.14304],[-57.13133,-30.15052],[-57.15128,-30.18422],[-57.15849,-30.18859],[-57.16323,-30.19528],[-57.16522,-30.19984],[-57.16415,-30.20461],[-57.16059,-30.20972],[-57.15814,-30.21974],[-57.15713,-30.22901],[-57.15801,-30.23037],[-57.15784,-30.23191],[-57.15998,-30.23525],[-57.16721,-30.23921],[-57.17154,-30.24507],[-57.17522,-30.24605],[-57.18145,-30.25118],[-57.1886,-30.25676],[-57.19391,-30.26185],[-57.19931,-30.27344],[-57.20678,-30.28146],[-57.21737,-30.28395],[-57.22708,-30.28559],[-57.23954,-30.28432],[-57.25128,-30.28065],[-57.25428,-30.27543],[-57.25744,-30.26908],[-57.26135,-30.26601],[-57.26386,-30.26753],[-57.26405,-30.26893],[-57.26508,-30.27546],[-57.26864,-30.27845],[-57.27564,-30.28685],[-57.28504,-30.28564],[-57.29191,-30.27986],[-57.29989,-30.27089],[-57.30167,-30.26408],[-57.30665,-30.25862],[-57.31236,-30.25684],[-57.32009,-30.26041],[-57.32529,-30.26753],[-57.33307,-30.27029],[-57.33987,-30.27382],[-57.34439,-30.27644],[-57.34982,-30.27951],[-57.35317,-30.27803],[-57.35959,-30.27183],[-57.36398,-30.26837],[-57.3733,-30.26877],[-57.37771,-30.27341],[-57.38735,-30.29286],[-57.3922,-30.29792],[-57.39491,-30.29966],[-57.39966,-30.29919],[-57.40301,-30.29676],[-57.40785,-30.29401],[-57.41433,-30.29481],[-57.41798,-30.29329],[-57.41979,-30.28896],[-57.42028,-30.28008],[-57.42241,-30.27546],[-57.42493,-30.27217],[-57.4334,-30.27091],[-57.44493,-30.27342],[-57.4556,-30.26617],[-57.46328,-30.26244],[-57.47077,-30.26195],[-57.47678,-30.26301],[-57.48036,-30.26527],[-57.48512,-30.26842],[-57.49295,-30.27442],[-57.49923,-30.27914],[-57.50573,-30.27981],[-57.52128,-30.27722],[-57.53768,-30.27182],[-57.55003,-30.26362],[-57.55658,-30.25478],[-57.55868,-30.24616],[-57.55657,-30.23351],[-57.55418,-30.22167],[-57.55515,-30.2124],[-57.56109,-30.20616],[-57.56983,-30.19984],[-57.57904,-30.19778],[-57.60344,-30.18643],[-57.614,-30.18079],[-57.61522,-30.17911],[-57.60912,-30.179],[-57.59293,-30.17651],[-57.57793,-30.17361],[-57.55972,-30.16827],[-57.50484,-30.14307],[-57.46673,-30.11577],[-57.45773,-30.10667],[-57.44239,-30.07389],[-57.41204,-30.0407],[-57.40065,-30.03195],[-57.3815,-30.02058],[-57.35848,-30.01249],[-57.34671,-30.00602],[-57.34197,-30.00123],[-57.32856,-29.98183],[-57.32479,-29.96886],[-57.32498,-29.96903],[-57.32124,-29.95614],[-57.31926,-29.91655],[-57.32203,-29.88612],[-57.31834,-29.86758],[-57.30649,-29.84893],[-57.28285,-29.8199],[-57.25287,-29.7915],[-57.23599,-29.77837],[-57.21787,-29.77299],[-57.19019,-29.77363],[-57.17031,-29.77598],[-57.16403,-29.77524],[-57.13642,-29.76576],[-57.1045,-29.74897],[-57.05556,-29.70406],[-57.04323,-29.69019],[-57.01942,-29.65696],[-57.00893,-29.65189],[-56.9993,-29.64483],[-56.98893,-29.64015],[-56.97881,-29.6365],[-56.97265,-29.63594],[-56.97093,-29.63738],[-56.96937,-29.63524],[-56.96887,-29.63262],[-56.96867,-29.63235],[-56.96703,-29.62375],[-56.9699,-29.61243],[-56.97047,-29.60595],[-56.96689,-29.60092],[-56.96236,-29.59644],[-56.95943,-29.59189],[-56.95435,-29.58696],[-56.94481,-29.57894],[-56.92232,-29.55885],[-56.91159,-29.54854],[-56.90704,-29.54359],[-56.90031,-29.53779],[-56.89625,-29.53189],[-56.89533,-29.52986],[-56.89676,-29.53077],[-56.89554,-29.52899],[-56.89285,-29.5231],[-56.88911,-29.51851],[-56.88461,-29.51428],[-56.8817,-29.51197],[-56.87383,-29.50863],[-56.86641,-29.50758],[-56.86154,-29.50371],[-56.85561,-29.50032],[-56.85539,-29.50269],[-56.85505,-29.50249],[-56.8455,-29.49814],[-56.83671,-29.49341],[-56.82872,-29.48899],[-56.82264,-29.48415],[-56.81603,-29.47662],[-56.8139,-29.47298],[-56.81123,-29.46664],[-56.80864,-29.46166],[-56.80323,-29.45476],[-56.79981,-29.44879],[-56.7957,-29.44455],[-56.78969,-29.44073],[-56.7836,-29.43555],[-56.7822,-29.4312],[-56.78215,-29.43037],[-56.78149,-29.4283],[-56.78121,-29.42288],[-56.78076,-29.42025],[-56.77872,-29.41972],[-56.77967,-29.41373],[-56.77951,-29.41278],[-56.77955,-29.40633],[-56.77963,-29.40196],[-56.77812,-29.39813],[-56.77551,-29.3928],[-56.7701,-29.3859],[-56.76516,-29.38034],[-56.75837,-29.37654],[-56.75164,-29.37376],[-56.74151,-29.37281],[-56.73018,-29.3709],[-56.71995,-29.36792],[-56.71239,-29.36415],[-56.70841,-29.36194],[-56.70337,-29.35468],[-56.69882,-29.3491],[-56.6939,-29.34387],[-56.68815,-29.33765],[-56.68232,-29.32975],[-56.67568,-29.32119],[-56.67186,-29.3149],[-56.66954,-29.30753],[-56.66474,-29.29721],[-56.66304,-29.29422],[-56.65789,-29.28459],[-56.65614,-29.28059],[-56.65625,-29.27956],[-56.65543,-29.2777],[-56.65619,-29.27056],[-56.65379,-29.26115],[-56.65195,-29.24799],[-56.65131,-29.23581],[-56.64968,-29.21925],[-56.64561,-29.20788],[-56.63994,-29.19556],[-56.634,-29.18528],[-56.62766,-29.17502],[-56.61982,-29.16549],[-56.61325,-29.15795],[-56.60687,-29.14667],[-56.60415,-29.13897],[-56.60111,-29.13231],[-56.59728,-29.12669],[-56.59665,-29.12763],[-56.59596,-29.12662],[-56.59307,-29.123],[-56.58634,-29.11987],[-56.57614,-29.11688],[-56.56361,-29.11364],[-56.53946,-29.10984],[-56.53036,-29.10578],[-56.52162,-29.10104],[-56.51249,-29.0963],[-56.50421,-29.09289],[-56.49635,-29.09015],[-56.48658,-29.08815],[-56.47651,-29.08752],[-56.46331,-29.08633],[-56.45207,-29.08541],[-56.44228,-29.08273],[-56.4348,-29.07997],[-56.42844,-29.07648],[-56.42479,-29.07289],[-56.42023,-29.06661],[-56.41733,-29.06266],[-56.4155,-29.05559],[-56.41472,-29.05271],[-56.41176,-29.0474],[-56.40797,-29.0411],[-56.40539,-29.03577],[-56.40316,-29.02975],[-56.40155,-29.02066],[-56.40277,-29.01416],[-56.40667,-29.00723],[-56.41026,-29.00167],[-56.41242,-28.99853],[-56.4125,-28.99242],[-56.41171,-28.98342],[-56.41017,-28.97657],[-56.40563,-28.97064],[-56.39955,-28.96477],[-56.39066,-28.95662],[-56.3803,-28.9499],[-56.37044,-28.94552],[-56.35671,-28.94095],[-56.34533,-28.93697],[-56.33744,-28.93354],[-56.33202,-28.92994],[-56.3238,-28.92445],[-56.32254,-28.92524],[-56.3185,-28.92089],[-56.31402,-28.91597],[-56.31022,-28.90933],[-56.30583,-28.8983],[-56.30384,-28.88887],[-56.30177,-28.87981],[-56.30113,-28.8769],[-56.30029,-28.86744],[-56.30056,-28.85725],[-56.30168,-28.84839],[-56.30316,-28.83917],[-56.30387,-28.82999],[-56.3028,-28.82393],[-56.30013,-28.81656],[-56.29743,-28.80852],[-56.29244,-28.80091],[-56.28793,-28.79531],[-56.28426,-28.79104],[-56.27435,-28.7853],[-56.26686,-28.78185],[-56.25787,-28.77913],[-56.24812,-28.77644],[-56.23451,-28.77389],[-56.22677,-28.77316],[-56.21596,-28.77254],[-56.20559,-28.77326],[-56.19556,-28.77295],[-56.1917,-28.77275],[-56.18416,-28.76794],[-56.17895,-28.76372],[-56.17568,-28.75977],[-56.17201,-28.75549],[-56.1686,-28.7485],[-56.16639,-28.74247],[-56.16218,-28.73482],[-56.15723,-28.72788],[-56.15226,-28.72026],[-56.14646,-28.71165],[-56.14144,-28.70302],[-56.1394,-28.70071],[-56.1342,-28.69649],[-56.12895,-28.69126],[-56.12174,-28.68507],[-56.11491,-28.67888],[-56.10894,-28.67468],[-56.09977,-28.66789],[-56.08531,-28.65484],[-56.07893,-28.64998],[-56.0737,-28.64508],[-56.06688,-28.63888],[-56.05967,-28.6327],[-56.05173,-28.62757],[-56.05153,-28.6274],[-56.04538,-28.62303],[-56.0383,-28.61955],[-56.02853,-28.61617],[-56.0214,-28.61167],[-56.01545,-28.60781],[-56.01221,-28.6042],[-56.01048,-28.59985],[-56.00795,-28.59519],[-56.0066,-28.59083],[-56.00741,-28.58334],[-56.00795,-28.57823],[-56.01029,-28.57069],[-56.01276,-28.56585],[-56.01526,-28.56169],[-56.01693,-28.5562],[-56.0196,-28.54729],[-56.02204,-28.54178],[-56.02383,-28.539],[-56.02356,-28.5329],[-56.02203,-28.52482],[-56.02159,-28.52238],[-56.0184,-28.51667],[-56.01515,-28.51271],[-56.01075,-28.50914],[-56.00681,-28.5069],[-55.99896,-28.50311],[-55.9939,-28.50193],[-55.98579,-28.50086],[-55.97996,-28.49937],[-55.97416,-28.49855],[-55.9687,-28.49671],[-55.96405,-28.49586],[-55.95326,-28.49488],[-55.94514,-28.49381],[-55.93854,-28.49234],[-55.9331,-28.49083],[-55.92761,-28.48831],[-55.92054,-28.48483],[-55.91744,-28.48426],[-55.91354,-28.48303],[-55.90276,-28.48239],[-55.8935,-28.48135],[-55.88802,-28.47917],[-55.88599,-28.47653],[-55.88463,-28.47128],[-55.88389,-28.4686],[-55.88439,-28.46248],[-55.88562,-28.45565],[-55.88733,-28.44875],[-55.88991,-28.4399],[-55.89337,-28.4313],[-55.89779,-28.4186],[-55.9011,-28.40661],[-55.90044,-28.40052],[-55.8991,-28.39616],[-55.89576,-28.39018],[-55.89082,-28.38254],[-55.88501,-28.37291],[-55.87775,-28.36502],[-55.87405,-28.35938],[-55.86767,-28.35383],[-55.86341,-28.35296],[-55.8588,-28.35278],[-55.84772,-28.35384],[-55.83555,-28.35629],[-55.82454,-28.3587],[-55.81807,-28.35994],[-55.81125,-28.36187],[-55.8063,-28.36271],[-55.80058,-28.36359],[-55.79295,-28.36452],[-55.78567,-28.36477],[-55.77729,-28.36607],[-55.76965,-28.36701],[-55.76663,-28.36813],[-55.76134,-28.37],[-55.75604,-28.37154],[-55.74843,-28.37281],[-55.74465,-28.37429],[-55.73753,-28.37826],[-55.73267,-28.38114],[-55.72902,-28.38567],[-55.72657,-28.39118],[-55.72417,-28.3977],[-55.72286,-28.40283],[-55.72105,-28.40561],[-55.71672,-28.41186],[-55.71133,-28.42051],[-55.70723,-28.42337],[-55.70384,-28.42484],[-55.69883,-28.42432],[-55.69491,-28.42242],[-55.69285,-28.41909],[-55.69164,-28.41701],[-55.68982,-28.41537],[-55.68811,-28.40773],[-55.68585,-28.39898],[-55.68437,-28.39191],[-55.68286,-28.38604],[-55.67972,-28.37631],[-55.67669,-28.36828],[-55.67427,-28.3653],[-55.6713,-28.35861],[-55.67104,-28.35677],[-55.67058,-28.35573],[-55.66947,-28.34762],[-55.66826,-28.33715],[-55.66988,-28.33031],[-55.67309,-28.32444],[-55.67601,-28.32095],[-55.68159,-28.31704],[-55.68865,-28.31171],[-55.70179,-28.30518],[-55.71533,-28.29896],[-55.72657,-28.29282],[-55.73895,-28.28664],[-55.74609,-28.28334],[-55.75019,-28.28049],[-55.75388,-28.27732],[-55.75672,-28.2746],[-55.76515,-28.27185],[-55.77065,-28.26624],[-55.77313,-28.2614],[-55.77463,-28.25186],[-55.77483,-28.24778],[-55.77238,-28.24413],[-55.76842,-28.24121],[-55.76209,-28.23668],[-55.75619,-28.23314],[-55.75036,-28.2313],[-55.74301,-28.22952],[-55.72673,-28.22531],[-55.71823,-28.22356],[-55.7101,-28.22146],[-55.70155,-28.21869],[-55.69259,-28.21526],[-55.68705,-28.21103],[-55.6819,-28.20713],[-55.67752,-28.20321],[-55.6743,-28.19958],[-55.66717,-28.19405],[-55.6632,-28.19079],[-55.65734,-28.18793],[-55.65188,-28.18574],[-55.64406,-28.18192],[-55.63741,-28.17841],[-55.63504,-28.17679],[-55.62827,-28.17057],[-55.62185,-28.16366],[-55.61898,-28.159],[-55.61721,-28.1533],[-55.61702,-28.14889],[-55.61915,-28.14475],[-55.61938,-28.14135],[-55.61875,-28.13885],[-55.61738,-28.13416],[-55.61448,-28.12882],[-55.61012,-28.12523],[-55.60466,-28.12269],[-55.59844,-28.12053],[-55.58998,-28.11944],[-55.58501,-28.1196],[-55.58202,-28.1214],[-55.57906,-28.12387],[-55.57473,-28.13011],[-55.57266,-28.13561],[-55.57212,-28.14105],[-55.5709,-28.14855],[-55.57036,-28.154],[-55.56795,-28.16052],[-55.56344,-28.1627],[-55.55776,-28.16424],[-55.55431,-28.16401],[-55.54917,-28.16011],[-55.54481,-28.15652],[-55.54272,-28.15217],[-55.54013,-28.14513],[-55.53977,-28.14323],[-55.53941,-28.14225],[-55.53797,-28.13449],[-55.53711,-28.13087],[-55.53597,-28.12763],[-55.53153,-28.12201],[-55.52837,-28.11974],[-55.5237,-28.11785],[-55.51678,-28.11705],[-55.51172,-28.11518],[-55.50808,-28.11021],[-55.50427,-28.10117],[-55.50249,-28.09512],[-55.50073,-28.08839],[-55.49996,-28.08551],[-55.49749,-28.08118],[-55.49507,-28.0782],[-55.49004,-28.07667],[-55.4851,-28.0775],[-55.4806,-28.07968],[-55.47686,-28.08184],[-55.47351,-28.08432],[-55.4661,-28.09032],[-55.45863,-28.09462],[-55.45372,-28.09647],[-55.44798,-28.09631],[-55.44369,-28.09441],[-55.4406,-28.09129],[-55.43739,-28.08667],[-55.43684,-28.08701],[-55.43589,-28.08502],[-55.43258,-28.07902],[-55.42612,-28.0704],[-55.42017,-28.06516],[-55.41312,-28.06097],[-55.40061,-28.05424],[-55.39083,-28.04878],[-55.38415,-28.04424],[-55.37864,-28.04034],[-55.37429,-28.03483],[-55.3753,-28.03414],[-55.37325,-28.03155],[-55.37022,-28.0265],[-55.3681,-28.02114],[-55.37257,-28.00879],[-55.37618,-28.00325],[-55.38022,-27.99905],[-55.38276,-27.99558],[-55.38381,-27.99318],[-55.3856,-27.99007],[-55.38475,-27.98806],[-55.38269,-27.98439],[-55.37639,-27.9795],[-55.37019,-27.97732],[-55.36216,-27.97425],[-55.34389,-27.9726],[-55.33788,-27.96617],[-55.34115,-27.96508],[-55.33901,-27.962],[-55.33757,-27.95424],[-55.33505,-27.94394],[-55.3314,-27.93767],[-55.32697,-27.9317],[-55.323,-27.92809],[-55.3172,-27.92623],[-55.30719,-27.92416],[-55.29645,-27.92313],[-55.2834,-27.92149],[-55.27763,-27.9207],[-55.27762,-27.9179],[-55.26655,-27.91638],[-55.26,-27.91489],[-55.25334,-27.91068],[-55.24696,-27.90375],[-55.23818,-27.89383],[-55.23745,-27.8931],[-55.24075,-27.89881],[-55.2389,-27.89672],[-55.23136,-27.88915],[-55.22266,-27.88127],[-55.21206,-27.87378],[-55.20301,-27.86659],[-55.196,-27.86307],[-55.19023,-27.86188],[-55.18334,-27.86141],[-55.17458,-27.86201],[-55.16937,-27.86555],[-55.16193,-27.87086],[-55.15873,-27.87706],[-55.15444,-27.88498],[-55.14891,-27.89023],[-55.14062,-27.89319],[-55.13383,-27.89542],[-55.12881,-27.89388],[-55.12523,-27.88991],[-55.12473,-27.88728],[-55.1245,-27.88702],[-55.12355,-27.88196],[-55.12288,-27.87418],[-55.12409,-27.86567],[-55.12449,-27.8611],[-55.12211,-27.85744],[-55.11699,-27.85318],[-55.10847,-27.85004],[-55.09998,-27.84757],[-55.09078,-27.84648],[-55.08582,-27.84662],[-55.0767,-27.84757],[-55.07146,-27.85043],[-55.06204,-27.85375],[-55.05291,-27.85469],[-55.0434,-27.85564],[-55.03537,-27.85519],[-55.03189,-27.85394],[-55.02832,-27.85031],[-55.0262,-27.8446],[-55.02609,-27.84337],[-55.02548,-27.84171],[-55.02485,-27.83495],[-55.02546,-27.83086],[-55.03133,-27.82425],[-55.03646,-27.81834],[-55.04058,-27.81619],[-55.04694,-27.81295],[-55.0514,-27.80944],[-55.05357,-27.80819],[-55.06414,-27.80296],[-55.07128,-27.80005],[-55.07757,-27.79478],[-55.08005,-27.78962],[-55.0809,-27.78733],[-55.07978,-27.78609],[-55.07035,-27.77856],[-55.06295,-27.77437],[-55.05871,-27.77313],[-55.05332,-27.77193],[-55.04687,-27.77279],[-55.04097,-27.77839],[-55.03616,-27.78259],[-55.02736,-27.79234],[-55.02103,-27.79659],[-55.01381,-27.79747],[-55.00802,-27.7956],[-55.00293,-27.79202],[-55,-27.79012],[-54.99643,-27.78704],[-54.99442,-27.78306],[-54.9912,-27.78029],[-54.98686,-27.77634],[-54.9826,-27.77442],[-54.97762,-27.77389],[-54.97747,-27.77391],[-54.97802,-27.77683],[-54.97342,-27.77759],[-54.96354,-27.77854],[-54.95519,-27.77979],[-54.94719,-27.78002],[-54.94053,-27.77512],[-54.93723,-27.76809],[-54.93506,-27.76068],[-54.93226,-27.75703],[-54.92755,-27.75343],[-54.9221,-27.75019],[-54.91578,-27.74392],[-54.9102,-27.7373],[-54.90692,-27.7306],[-54.90393,-27.72153],[-54.90387,-27.72067],[-54.9032,-27.71864],[-54.90246,-27.70849],[-54.90252,-27.70635],[-54.90218,-27.69898],[-54.90277,-27.69859],[-54.90278,-27.68998],[-54.90274,-27.68373],[-54.90278,-27.66304],[-54.90319,-27.65319],[-54.90295,-27.6465],[-54.90034,-27.64091],[-54.8956,-27.6363],[-54.88442,-27.6322],[-54.87368,-27.63012],[-54.86569,-27.63034],[-54.85993,-27.62914],[-54.8526,-27.62662],[-54.84716,-27.62338],[-54.84597,-27.62154],[-54.8462,-27.62015],[-54.84361,-27.61616],[-54.83999,-27.6105],[-54.83655,-27.59906],[-54.82896,-27.5779],[-54.82513,-27.56614],[-54.8234,-27.56008],[-54.82284,-27.55467],[-54.81826,-27.54326],[-54.817,-27.5399],[-54.81189,-27.53529],[-54.80801,-27.53302],[-54.80383,-27.53314],[-54.8001,-27.53527],[-54.79638,-27.53775],[-54.79417,-27.54018],[-54.79317,-27.54427],[-54.79261,-27.55005],[-54.79237,-27.55413],[-54.78992,-27.56064],[-54.7882,-27.56611],[-54.78641,-27.56921],[-54.78725,-27.57123],[-54.78727,-27.57186],[-54.78714,-27.57209],[-54.78796,-27.57411],[-54.78809,-27.57783],[-54.78737,-27.57887],[-54.78592,-27.58128],[-54.78449,-27.58403],[-54.78115,-27.5865],[-54.77511,-27.58802],[-54.76897,-27.58648],[-54.76395,-27.58458],[-54.75923,-27.57996],[-54.75215,-27.57337],[-54.74747,-27.5701],[-54.74165,-27.56686],[-54.73702,-27.56495],[-54.73206,-27.56474],[-54.72601,-27.56592],[-54.72304,-27.56697],[-54.72333,-27.56373],[-54.72114,-27.5645],[-54.71634,-27.56597],[-54.70547,-27.56897],[-54.69851,-27.57086],[-54.6884,-27.57314],[-54.68258,-27.57263],[-54.67489,-27.57046],[-54.67025,-27.5682],[-54.66862,-27.56485],[-54.66827,-27.56169],[-54.66975,-27.55359],[-54.67346,-27.53862],[-54.67584,-27.52974],[-54.67738,-27.51885],[-54.6772,-27.51338],[-54.67472,-27.5113],[-54.67052,-27.51074],[-54.66524,-27.51223],[-54.66004,-27.51609],[-54.65637,-27.52026],[-54.6514,-27.53124],[-54.6479,-27.54082],[-54.64752,-27.54135],[-54.64354,-27.5467],[-54.63869,-27.54988],[-54.62959,-27.55079],[-54.62385,-27.54992],[-54.62036,-27.54798],[-54.61718,-27.54365],[-54.61396,-27.5383],[-54.61185,-27.53191],[-54.60929,-27.5235],[-54.60638,-27.51578],[-54.60442,-27.51195],[-54.60514,-27.51191],[-54.60118,-27.50419],[-54.5994,-27.50129],[-54.59584,-27.49666],[-54.59369,-27.49141],[-54.59098,-27.48597],[-54.58868,-27.47765],[-54.5865,-27.46848],[-54.58424,-27.46296],[-54.58119,-27.46039],[-54.57641,-27.4583],[-54.57317,-27.45772],[-54.56675,-27.4581],[-54.56356,-27.45929],[-54.55945,-27.46226],[-54.55758,-27.46584],[-54.55332,-27.47214],[-54.5507,-27.47552],[-54.5457,-27.48183],[-54.54211,-27.48612],[-54.53439,-27.50045],[-54.53106,-27.50495],[-54.52691,-27.50682],[-54.52468,-27.50687],[-54.52143,-27.50607],[-54.51767,-27.50484],[-54.5154,-27.50335],[-54.51383,-27.50096],[-54.51152,-27.49837],[-54.50897,-27.496],[-54.50669,-27.49451],[-54.50514,-27.49234],[-54.50332,-27.48973],[-54.50153,-27.48801],[-54.49872,-27.48521],[-54.49568,-27.48329],[-54.4927,-27.48292],[-54.48693,-27.48086],[-54.48194,-27.47965],[-54.47552,-27.48048],[-54.47229,-27.48011],[-54.46882,-27.47998],[-54.4646,-27.48008],[-54.45815,-27.47979],[-54.4544,-27.47856],[-54.44963,-27.47647],[-54.44703,-27.47255],[-54.44543,-27.46906],[-54.44519,-27.46727],[-54.4447,-27.46617],[-54.44437,-27.46375],[-54.44688,-27.45684],[-54.44781,-27.45461],[-54.45215,-27.45075],[-54.45553,-27.44802],[-54.46041,-27.44547],[-54.464,-27.4414],[-54.46685,-27.43736],[-54.46975,-27.43529],[-54.47091,-27.43262],[-54.47157,-27.43038],[-54.47046,-27.42912],[-54.46844,-27.42807],[-54.4637,-27.42686],[-54.45773,-27.42612],[-54.45104,-27.42584],[-54.44384,-27.42558],[-54.43736,-27.42397],[-54.43232,-27.42144],[-54.42753,-27.41846],[-54.42398,-27.41589],[-54.41995,-27.41378],[-54.41495,-27.41213],[-54.41073,-27.4118],[-54.40481,-27.4126],[-54.40188,-27.414],[-54.39531,-27.41769],[-54.39097,-27.42177],[-54.38555,-27.43074],[-54.38036,-27.43925],[-54.37236,-27.45336],[-54.36882,-27.45941],[-54.3645,-27.46371],[-54.35787,-27.46564],[-54.35321,-27.46751],[-54.34555,-27.46813],[-54.34027,-27.46561],[-54.33692,-27.46127],[-54.33682,-27.46029],[-54.33867,-27.46161],[-54.33619,-27.45839],[-54.33548,-27.45155],[-54.33622,-27.44292],[-54.34019,-27.43488],[-54.34367,-27.42706],[-54.34391,-27.41866],[-54.34389,-27.41068],[-54.3425,-27.40768],[-54.33897,-27.40555],[-54.33452,-27.40543],[-54.32962,-27.40732],[-54.32309,-27.41106],[-54.3179,-27.41418],[-54.31369,-27.41813],[-54.31001,-27.42336],[-54.30771,-27.42683],[-54.30492,-27.4299],[-54.30173,-27.43554],[-54.29852,-27.44075],[-54.28812,-27.44614],[-54.28238,-27.44712],[-54.27752,-27.44509],[-54.27305,-27.44005],[-54.26649,-27.42907],[-54.26644,-27.42735],[-54.26575,-27.42619],[-54.26564,-27.42234],[-54.26652,-27.41975],[-54.2678,-27.41415],[-54.26858,-27.40814],[-54.26823,-27.40523],[-54.26518,-27.40084],[-54.25934,-27.39798],[-54.25354,-27.3964],[-54.24724,-27.3944],[-54.23951,-27.39286],[-54.23227,-27.39132],[-54.22743,-27.3914],[-54.22221,-27.38837],[-54.21858,-27.38473],[-54.21625,-27.38164],[-54.21415,-27.37539],[-54.21412,-27.37456],[-54.21341,-27.37251],[-54.21283,-27.35222],[-54.21095,-27.34253],[-54.20974,-27.33522],[-54.20674,-27.32922],[-54.20138,-27.32105],[-54.19565,-27.31117],[-54.19189,-27.30296],[-54.19154,-27.30092],[-54.19115,-27.30008],[-54.19,-27.29352],[-54.18922,-27.28839],[-54.18796,-27.27784],[-54.18704,-27.27358],[-54.18453,-27.26937],[-54.18023,-27.26432],[-54.17596,-27.2607],[-54.17014,-27.25883],[-54.16661,-27.25833],[-54.16406,-27.25868],[-54.16155,-27.26073],[-54.1591,-27.26451],[-54.15731,-27.26912],[-54.15678,-27.27314],[-54.15826,-27.28026],[-54.15813,-27.28712],[-54.1583,-27.29313],[-54.15649,-27.29689],[-54.1549,-27.2981],[-54.15488,-27.29667],[-54.15755,-27.29327],[-54.15722,-27.29096],[-54.15575,-27.294],[-54.1523,-27.29665],[-54.14564,-27.29909],[-54.1424,-27.29934],[-54.12989,-27.3016],[-54.11129,-27.3028],[-54.11065,-27.3048],[-54.1093,-27.30479],[-54.09839,-27.30389],[-54.08906,-27.30265],[-54.08097,-27.29969],[-54.07573,-27.29522],[-54.07144,-27.29074],[-54.06473,-27.27973],[-54.06067,-27.27152],[-54.05669,-27.26646],[-54.05308,-27.26339],[-54.04756,-27.26065],[-54.03788,-27.25771],[-54.02981,-27.25531],[-54.02526,-27.25283],[-54.02163,-27.24862],[-54.0183,-27.24383],[-54.01769,-27.24113],[-54.01756,-27.24094],[-54.01537,-27.23127],[-54.01476,-27.22041],[-54.0136,-27.213],[-54.01263,-27.20798],[-54.00892,-27.20456],[-54.00115,-27.201],[-53.99278,-27.19946],[-53.98572,-27.19847],[-53.97868,-27.19861],[-53.97457,-27.20042],[-53.97046,-27.2025],[-53.96439,-27.20263],[-53.95956,-27.20159],[-53.95662,-27.19936],[-53.95481,-27.1925],[-53.95469,-27.18792],[-53.95555,-27.17189],[-53.95509,-27.16646],[-53.95369,-27.16191],[-53.95136,-27.15825],[-53.94872,-27.15544],[-53.94388,-27.15382],[-53.93747,-27.15339],[-53.93368,-27.15518],[-53.92804,-27.15987],[-53.92181,-27.166],[-53.91683,-27.17126],[-53.91114,-27.17423],[-53.90571,-27.17463],[-53.90122,-27.17415],[-53.89699,-27.17138],[-53.8927,-27.16632],[-53.88723,-27.15385],[-53.88594,-27.14903],[-53.88515,-27.14616],[-53.88236,-27.13707],[-53.87809,-27.13286],[-53.87453,-27.13122],[-53.86839,-27.1308],[-53.86301,-27.13088],[-53.8573,-27.13271],[-53.85482,-27.1359],[-53.85251,-27.14539],[-53.84827,-27.15491],[-53.84487,-27.15984],[-53.83575,-27.16603],[-53.83325,-27.16744],[-53.8338,-27.16952],[-53.83033,-27.17095],[-53.83053,-27.16898],[-53.83024,-27.16139],[-53.83072,-27.15637],[-53.8288,-27.15112],[-53.82149,-27.14574],[-53.79786,-27.14457],[-53.79599,-27.14139],[-53.79845,-27.13675],[-53.80544,-27.13915],[-53.81594,-27.1385],[-53.81895,-27.13545],[-53.82018,-27.13234],[-53.81979,-27.13144],[-53.8085,-27.13096],[-53.80419,-27.12208],[-53.80441,-27.1212],[-53.80344,-27.1192],[-53.80486,-27.11366],[-53.81292,-27.10708],[-53.81387,-27.10498],[-53.81301,-27.10378],[-53.80866,-27.10409],[-53.79833,-27.11231],[-53.79269,-27.11265],[-53.77951,-27.10853],[-53.77533,-27.10492],[-53.77692,-27.10406],[-53.77458,-27.10204],[-53.79435,-27.09135],[-53.79811,-27.08738],[-53.79953,-27.08117],[-53.79619,-27.07446],[-53.79363,-27.07473],[-53.78329,-27.0825],[-53.77661,-27.08193],[-53.774,-27.07991],[-53.77335,-27.0771],[-53.77326,-27.07703],[-53.77241,-27.07337],[-53.77982,-27.07232],[-53.79192,-27.06314],[-53.79622,-27.04905],[-53.79434,-27.04495],[-53.78975,-27.04641],[-53.76867,-27.06678],[-53.7646,-27.068],[-53.76201,-27.0669],[-53.76017,-27.06532],[-53.75983,-27.06099],[-53.76569,-27.05971],[-53.76821,-27.0576],[-53.77699,-27.03723],[-53.77694,-27.03509],[-53.76483,-27.04816],[-53.76254,-27.04889],[-53.75995,-27.04755],[-53.75801,-27.04093],[-53.74873,-27.03857],[-53.74689,-27.03677],[-53.74656,-27.03429],[-53.74615,-27.03388],[-53.74553,-27.0293],[-53.75311,-27.02388],[-53.75705,-27.01665],[-53.75562,-27.01433],[-53.75074,-27.0135],[-53.73932,-27.01876],[-53.73597,-27.01813],[-53.73284,-27.01543],[-53.7307,-27.01133],[-53.73108,-27.01061],[-53.72995,-27.00845],[-53.73179,-27.00499],[-53.7316,-27.00478],[-53.73196,-27.00467],[-53.73951,-27.00024],[-53.74091,-26.99811],[-53.74012,-26.99692],[-53.72737,-26.99968],[-53.7204,-26.99751],[-53.71827,-26.99364],[-53.71873,-26.99294],[-53.71752,-26.99076],[-53.71951,-26.98774],[-53.73065,-26.98157],[-53.73362,-26.97692],[-53.72866,-26.97265],[-53.72644,-26.96511],[-53.72258,-26.96426],[-53.71008,-26.96654],[-53.70517,-26.96457],[-53.70194,-26.95727],[-53.70496,-26.94298],[-53.70388,-26.94024],[-53.69902,-26.94079],[-53.68813,-26.94649],[-53.67717,-26.94898],[-53.67432,-26.94742],[-53.67405,-26.94581],[-53.67333,-26.94594],[-53.67255,-26.94483],[-53.67383,-26.94454],[-53.69,-26.93796],[-53.69252,-26.93539],[-53.69132,-26.9321],[-53.67757,-26.92408],[-53.67491,-26.91907],[-53.67523,-26.91819],[-53.67416,-26.91619],[-53.67661,-26.90938],[-53.67406,-26.90324],[-53.67429,-26.9027],[-53.67331,-26.90036],[-53.67429,-26.8981],[-53.67176,-26.89303],[-53.68418,-26.89523],[-53.68728,-26.89483],[-53.69054,-26.89179],[-53.69046,-26.88836],[-53.68452,-26.87779],[-53.68504,-26.87715],[-53.68378,-26.87491],[-53.69001,-26.86722],[-53.68843,-26.86496],[-53.66418,-26.86814],[-53.66157,-26.86566],[-53.67656,-26.84863],[-53.68212,-26.84693],[-53.66116,-26.84188],[-53.67674,-26.84341],[-53.69383,-26.84652],[-53.69274,-26.8432],[-53.69285,-26.84294],[-53.69199,-26.84032],[-53.70105,-26.81928],[-53.70091,-26.81894],[-53.69681,-26.81832],[-53.69728,-26.81563],[-53.69606,-26.81544],[-53.69675,-26.81153],[-53.70117,-26.80318],[-53.711,-26.79611],[-53.71133,-26.78784],[-53.70971,-26.7842],[-53.70298,-26.78041],[-53.70112,-26.777],[-53.70309,-26.77352],[-53.70691,-26.77299],[-53.71168,-26.77725],[-53.71541,-26.77905],[-53.7154,-26.78],[-53.72231,-26.78029],[-53.73105,-26.77739],[-53.73521,-26.7733],[-53.73417,-26.77195],[-53.72085,-26.77105],[-53.71694,-26.76767],[-53.71681,-26.76532],[-53.7162,-26.76479],[-53.71579,-26.75768],[-53.71677,-26.75651],[-53.71439,-26.74923],[-53.72072,-26.75183],[-53.72327,-26.74882],[-53.72485,-26.73961],[-53.72709,-26.73635],[-53.72987,-26.73538],[-53.73343,-26.74611],[-53.73831,-26.74694],[-53.7462,-26.74542],[-53.7489,-26.74374],[-53.74578,-26.74166],[-53.74419,-26.73558],[-53.75189,-26.72488],[-53.75363,-26.71757],[-53.75314,-26.71626],[-53.74984,-26.71701],[-53.74262,-26.7261],[-53.73828,-26.72618],[-53.73567,-26.7237],[-53.73397,-26.71592],[-53.73401,-26.7157],[-53.73322,-26.71304],[-53.73482,-26.70429],[-53.7395,-26.69346],[-53.73829,-26.6915],[-53.73341,-26.69067],[-53.72493,-26.70001],[-53.71981,-26.69987],[-53.7164,-26.69556],[-53.717,-26.69438],[-53.71566,-26.69269],[-53.71835,-26.68736],[-53.72369,-26.68634],[-53.72537,-26.68399],[-53.71827,-26.67601],[-53.71475,-26.66643],[-53.71481,-26.66576],[-53.714,-26.66355],[-53.71484,-26.65527],[-53.71777,-26.65275],[-53.7208,-26.65907],[-53.7259,-26.65852],[-53.73009,-26.65155],[-53.74084,-26.65228],[-53.74566,-26.65104],[-53.74945,-26.64891],[-53.75193,-26.64365],[-53.75213,-26.64335],[-53.75105,-26.64038],[-53.74112,-26.64171],[-53.73802,-26.64039],[-53.73583,-26.63376],[-53.72906,-26.62769],[-53.72769,-26.62335],[-53.7294,-26.61946],[-53.73298,-26.6112],[-53.73215,-26.60939],[-53.72723,-26.60603],[-53.72612,-26.60215],[-53.72618,-26.60189],[-53.72538,-26.59928],[-53.72744,-26.5905],[-53.72713,-26.58996],[-53.72073,-26.58916],[-53.72009,-26.58575],[-53.71797,-26.57552],[-53.7185,-26.5706],[-53.71774,-26.569],[-53.70821,-26.56504],[-53.70688,-26.56253],[-53.70726,-26.56176],[-53.70614,-26.55966],[-53.7076,-26.55665],[-53.7117,-26.55727],[-53.72034,-26.56241],[-53.72165,-26.56241],[-53.72172,-26.56324],[-53.72592,-26.56574],[-53.72976,-26.5659],[-53.73136,-26.56352],[-53.72574,-26.56128],[-53.72465,-26.55785],[-53.72476,-26.55766],[-53.7239,-26.55498],[-53.72612,-26.55127],[-53.73575,-26.54834],[-53.73717,-26.54547],[-53.73149,-26.54395],[-53.72051,-26.54346],[-53.71711,-26.53962],[-53.71751,-26.53849],[-53.71748,-26.538],[-53.71636,-26.53674],[-53.72213,-26.52057],[-53.72394,-26.50974],[-53.7234,-26.50184],[-53.72088,-26.50189],[-53.71535,-26.50566],[-53.71198,-26.50296],[-53.70672,-26.50742],[-53.70365,-26.50725],[-53.70231,-26.50451],[-53.70258,-26.5037],[-53.70157,-26.50164],[-53.70339,-26.49602],[-53.69457,-26.48858],[-53.69522,-26.48688],[-53.69383,-26.48571],[-53.69866,-26.47299],[-53.70094,-26.47249],[-53.7046,-26.47656],[-53.70689,-26.47606],[-53.70805,-26.47075],[-53.71127,-26.46633],[-53.70968,-26.46338],[-53.70559,-26.46299],[-53.69901,-26.4654],[-53.69763,-26.4606],[-53.70298,-26.44206],[-53.70274,-26.44136],[-53.69816,-26.44166],[-53.69016,-26.44893],[-53.68675,-26.44439],[-53.68678,-26.44255],[-53.686,-26.44152],[-53.6862,-26.43051],[-53.6844,-26.42868],[-53.68793,-26.42872],[-53.69274,-26.43018],[-53.69766,-26.4158],[-53.70505,-26.41497],[-53.70518,-26.40912],[-53.70055,-26.40899],[-53.69621,-26.40272],[-53.70638,-26.39591],[-53.70898,-26.38782],[-53.70055,-26.38791],[-53.69712,-26.37943],[-53.70096,-26.37333],[-53.69935,-26.36381],[-53.68963,-26.35969],[-53.69552,-26.35523],[-53.68901,-26.35435],[-53.68485,-26.33662],[-53.67618,-26.3353],[-53.62554,-26.33676],[-53.62479,-26.33815],[-53.62346,-26.3316],[-53.61646,-26.32552],[-53.6153,-26.31888],[-53.6163,-26.30554],[-53.61207,-26.28541],[-53.60941,-26.28017],[-53.60066,-26.27573],[-53.59184,-26.26489],[-53.59291,-26.26435],[-53.59874,-26.25781],[-53.60195,-26.25349],[-53.61026,-26.24481],[-53.62001,-26.23696],[-53.62875,-26.22614],[-53.63335,-26.22072],[-53.63821,-26.21637],[-53.64332,-26.21222],[-53.64676,-26.20768],[-53.64877,-26.20253],[-53.65032,-26.19803],[-53.65112,-26.1963],[-53.65103,-26.19466],[-53.652,-26.19439],[-53.65279,-26.19265],[-53.65575,-26.18791],[-53.65968,-26.184],[-53.66382,-26.1788],[-53.66657,-26.17513],[-53.67073,-26.17143],[-53.67583,-26.16728],[-53.6835,-26.16159],[-53.69185,-26.15525],[-53.70229,-26.14695],[-53.70386,-26.14568],[-53.70696,-26.13954],[-53.71636,-26.12669],[-53.72242,-26.12911],[-53.72378,-26.12672],[-53.7228,-26.12043],[-53.72067,-26.11588],[-53.71609,-26.09208],[-53.71658,-26.07945],[-53.71822,-26.07322],[-53.72915,-26.05925],[-53.72935,-26.05604],[-53.73383,-26.04266],[-53.7364,-26.04039],[-53.73925,-26.04286],[-53.74203,-26.04236],[-53.74573,-26.03724],[-53.75238,-26.03941],[-53.75323,-26.03182],[-53.75576,-26.03131],[-53.75834,-26.0331],[-53.76289,-26.0321],[-53.76657,-26.0263],[-53.77061,-26.02438],[-53.77301,-26.01837],[-53.77802,-26.0153],[-53.77916,-26.00954],[-53.78649,-26.00802],[-53.79218,-26.00103],[-53.79903,-26.00113],[-53.80576,-25.99504],[-53.80151,-25.98708],[-53.8027,-25.98338],[-53.80524,-25.98334],[-53.81067,-25.98783],[-53.81523,-25.98728],[-53.82095,-25.9819],[-53.81656,-25.9783],[-53.81674,-25.97532],[-53.82814,-25.97441],[-53.8339,-25.97063],[-53.83658,-25.96576],[-53.83524,-25.9628],[-53.83168,-25.96241],[-53.82985,-25.96015],[-53.83756,-25.95265],[-53.84278,-25.93614],[-53.83857,-25.93416],[-53.83837,-25.93155],[-53.83783,-25.9313],[-53.83731,-25.92424],[-53.83427,-25.92391],[-53.82858,-25.93021],[-53.82504,-25.93074],[-53.82453,-25.92784],[-53.8243,-25.92788],[-53.82153,-25.91205],[-53.8186,-25.91237],[-53.8215,-25.91187],[-53.8211,-25.90957],[-53.82385,-25.90791],[-53.82929,-25.91286],[-53.83207,-25.91235],[-53.83345,-25.90992],[-53.8219,-25.90394],[-53.81901,-25.89963],[-53.82506,-25.89791],[-53.83374,-25.89886],[-53.83466,-25.89589],[-53.83373,-25.89365],[-53.83392,-25.89303],[-53.83231,-25.88916],[-53.83354,-25.88752],[-53.84397,-25.88871],[-53.84774,-25.88703],[-53.85095,-25.88329],[-53.8486,-25.88035],[-53.84198,-25.8791],[-53.83759,-25.87597],[-53.8272,-25.87639],[-53.82383,-25.87301],[-53.82588,-25.87149],[-53.83015,-25.87005],[-53.83542,-25.86935],[-53.83222,-25.86252],[-53.83366,-25.85905],[-53.84127,-25.85937],[-53.84379,-25.85817],[-53.84525,-25.85585],[-53.84014,-25.85411],[-53.83848,-25.85175],[-53.84209,-25.84317],[-53.84869,-25.84374],[-53.84961,-25.83959],[-53.84865,-25.83774],[-53.84888,-25.83672],[-53.84437,-25.82809],[-53.83952,-25.82657],[-53.83791,-25.82293],[-53.83854,-25.81718],[-53.83698,-25.81537],[-53.82433,-25.81653],[-53.82397,-25.81148],[-53.82745,-25.80641],[-53.82233,-25.79522],[-53.82299,-25.79061],[-53.82577,-25.7901],[-53.83064,-25.79253],[-53.84026,-25.79212],[-53.84229,-25.79089],[-53.83574,-25.78681],[-53.83518,-25.7841],[-53.83501,-25.78396],[-53.83387,-25.77847],[-53.83634,-25.77589],[-53.83856,-25.77496],[-53.84297,-25.77076],[-53.84408,-25.77263],[-53.85116,-25.76965],[-53.85322,-25.76698],[-53.85014,-25.76244],[-53.84431,-25.76209],[-53.84357,-25.75923],[-53.84307,-25.75699],[-53.83625,-25.75306],[-53.8382,-25.75175],[-53.83551,-25.7502],[-53.84899,-25.74122],[-53.85867,-25.74356],[-53.86245,-25.7428],[-53.86314,-25.7398],[-53.85936,-25.72931],[-53.86065,-25.71919],[-53.86213,-25.71755],[-53.86672,-25.71884],[-53.87062,-25.71234],[-53.87717,-25.71061],[-53.88062,-25.70641],[-53.8788,-25.70438],[-53.86814,-25.70366],[-53.86556,-25.70142],[-53.87098,-25.69466],[-53.8704,-25.69122],[-53.86656,-25.69136],[-53.85645,-25.70182],[-53.85243,-25.70304],[-53.85007,-25.69965],[-53.85378,-25.69567],[-53.85409,-25.69444],[-53.84601,-25.69203],[-53.84392,-25.68932],[-53.84456,-25.68825],[-53.84319,-25.68646],[-53.84514,-25.68321],[-53.85373,-25.68259],[-53.85548,-25.67016],[-53.86285,-25.66015],[-53.86835,-25.65706],[-53.87569,-25.65715],[-53.88208,-25.65955],[-53.8848,-25.65674],[-53.88485,-25.65222],[-53.87924,-25.65031],[-53.87608,-25.64486],[-53.87655,-25.64407],[-53.87534,-25.642],[-53.88597,-25.6418],[-53.8892,-25.63921],[-53.88912,-25.63568],[-53.88714,-25.63065],[-53.88738,-25.63026],[-53.88641,-25.62779],[-53.88983,-25.62244],[-53.89388,-25.62282],[-53.90121,-25.63324],[-53.90352,-25.63434],[-53.90723,-25.63083],[-53.91184,-25.63327],[-53.91512,-25.63251],[-53.91254,-25.61948],[-53.91374,-25.6167],[-53.92218,-25.62044],[-53.92774,-25.6201],[-53.93463,-25.61193],[-53.93968,-25.61137],[-53.94674,-25.62133],[-53.94602,-25.62214],[-53.94748,-25.62419],[-53.94032,-25.63213],[-53.94056,-25.63523],[-53.94364,-25.63999],[-53.95075,-25.64077],[-53.955,-25.63862],[-53.95916,-25.63257],[-53.96351,-25.61342],[-53.96942,-25.60642],[-53.9687,-25.59749],[-53.97813,-25.58681],[-53.98744,-25.57858],[-53.99642,-25.57279],[-54.00476,-25.56848],[-54.00996,-25.56629],[-54.01544,-25.56617],[-54.02073,-25.56772],[-54.02586,-25.57134],[-54.03334,-25.5778],[-54.0378,-25.58247],[-54.04177,-25.58549],[-54.04591,-25.58664],[-54.05097,-25.58736],[-54.0546,-25.58645],[-54.05973,-25.58178],[-54.06531,-25.5769],[-54.06981,-25.57452],[-54.07253,-25.57363],[-54.07575,-25.57419],[-54.079,-25.57598],[-54.08097,-25.58152],[-54.08134,-25.58337],[-54.0817,-25.58438],[-54.08302,-25.59098],[-54.08225,-25.59638],[-54.08032,-25.60078],[-54.08003,-25.607],[-54.08066,-25.61361],[-54.08123,-25.61651],[-54.08362,-25.62041],[-54.08595,-25.62202],[-54.09056,-25.62316],[-54.09626,-25.62282],[-54.10037,-25.62253],[-54.10349,-25.61977],[-54.10611,-25.61536],[-54.10911,-25.60783],[-54.11739,-25.59294],[-54.12408,-25.57871],[-54.12878,-25.56659],[-54.12904,-25.56077],[-54.12854,-25.55911],[-54.12143,-25.54994],[-54.11762,-25.54423],[-54.11261,-25.53626],[-54.10547,-25.52586],[-54.10259,-25.52074],[-54.10206,-25.51825],[-54.10186,-25.51789],[-54.10082,-25.51294],[-54.10071,-25.50901],[-54.10177,-25.50629],[-54.10488,-25.50291],[-54.10987,-25.50155],[-54.11467,-25.50207],[-54.12022,-25.50443],[-54.12763,-25.5082],[-54.13393,-25.51324],[-54.13712,-25.5159],[-54.14407,-25.52087],[-54.14316,-25.52167],[-54.14708,-25.52604],[-54.15012,-25.53172],[-54.1597,-25.54369],[-54.16592,-25.54729],[-54.17227,-25.54887],[-54.17532,-25.54935],[-54.18128,-25.54963],[-54.18945,-25.548],[-54.1931,-25.5477],[-54.19813,-25.548],[-54.20617,-25.54968],[-54.20989,-25.55167],[-54.21271,-25.55451],[-54.21349,-25.55801],[-54.2127,-25.56217],[-54.21004,-25.56513],[-54.20624,-25.56832],[-54.19948,-25.57138],[-54.19336,-25.57318],[-54.1879,-25.57413],[-54.18428,-25.57546],[-54.18092,-25.57802],[-54.17914,-25.57951],[-54.17897,-25.58158],[-54.17864,-25.58487],[-54.18076,-25.58717],[-54.1833,-25.58835],[-54.18879,-25.58823],[-54.19332,-25.58688],[-54.19761,-25.58513],[-54.20599,-25.58245],[-54.21071,-25.57965],[-54.21631,-25.57538],[-54.22054,-25.57176],[-54.22187,-25.57007],[-54.22592,-25.56811],[-54.22888,-25.56763],[-54.23232,-25.56796],[-54.236,-25.56912],[-54.23811,-25.57073],[-54.23937,-25.57484],[-54.2395,-25.5794],[-54.23868,-25.58294],[-54.23819,-25.58978],[-54.23831,-25.59392],[-54.23908,-25.59701],[-54.24095,-25.59821],[-54.24509,-25.59936],[-54.25081,-25.59964],[-54.25613,-25.59749],[-54.25937,-25.59488],[-54.26289,-25.59045],[-54.26706,-25.58435],[-54.2705,-25.57681],[-54.27266,-25.57241],[-54.2762,-25.56818],[-54.28041,-25.56373],[-54.28466,-25.56073],[-54.28729,-25.55981],[-54.29082,-25.56038],[-54.2954,-25.56069],[-54.29979,-25.56245],[-54.30513,-25.56522],[-54.30906,-25.56699],[-54.31598,-25.56911],[-54.32151,-25.57084],[-54.32545,-25.57261],[-54.32755,-25.57401],[-54.3292,-25.57584],[-54.33233,-25.58135],[-54.33477,-25.58647],[-54.33674,-25.5914],[-54.33966,-25.59733],[-54.3416,-25.60123],[-54.34443,-25.60427],[-54.35051,-25.60889],[-54.35307,-25.61027],[-54.35603,-25.60979],[-54.35922,-25.60951],[-54.36416,-25.60649],[-54.36776,-25.60474],[-54.3709,-25.60332],[-54.37705,-25.60182],[-54.38163,-25.60213],[-54.38673,-25.6047],[-54.38864,-25.60734],[-54.38969,-25.61208],[-54.3894,-25.61748],[-54.39031,-25.62491],[-54.39221,-25.63522],[-54.39252,-25.63583],[-54.39294,-25.63808],[-54.39585,-25.64381],[-54.40161,-25.65278],[-54.40398,-25.65562],[-54.40789,-25.65636],[-54.41368,-25.6587],[-54.41645,-25.65967],[-54.41953,-25.66312],[-54.42308,-25.66717],[-54.42594,-25.67104],[-54.42658,-25.67311],[-54.42741,-25.68015],[-54.42709,-25.68471],[-54.42586,-25.68951],[-54.4251,-25.6947],[-54.42519,-25.69781],[-54.42761,-25.7021],[-54.42947,-25.70309],[-54.43313,-25.703],[-54.43608,-25.7021],[-54.44011,-25.69931],[-54.44344,-25.69612],[-54.44508,-25.69302],[-54.44658,-25.67393],[-54.4521,-25.66324],[-54.48114,-25.63385],[-54.4898,-25.62676],[-54.49856,-25.62334],[-54.50568,-25.62454],[-54.5214,-25.63404],[-54.52822,-25.63365],[-54.53342,-25.62962],[-54.53581,-25.62474],[-54.54062,-25.60807],[-54.54281,-25.60209],[-54.54534,-25.59772],[-54.55172,-25.59271],[-54.5582,-25.5912],[-54.56382,-25.59052],[-54.58166,-25.59114],[-54.59565,-25.59212],[-54.59611,-25.57865],[-54.59757,-25.56839],[-54.59766,-25.55278],[-54.59851,-25.54199],[-54.60038,-25.52606],[-54.60215,-25.50691],[-54.60567,-25.49581],[-54.615,-25.46324],[-54.61603,-25.45837],[-54.61596,-25.45622],[-54.61253,-25.45092],[-54.60853,-25.44618],[-54.60295,-25.43879],[-54.59852,-25.43002],[-54.59293,-25.42209],[-54.58972,-25.4141],[-54.58648,-25.40531],[-54.58204,-25.39627],[-54.57827,-25.38937],[-54.57455,-25.38435],[-54.56902,-25.37804],[-54.56285,-25.37039],[-54.55706,-25.36515],[-54.55032,-25.35806],[-54.54417,-25.35095],[-54.53152,-25.33486],[-54.52591,-25.32585],[-54.51755,-25.31422],[-54.51011,-25.30364],[-54.50478,-25.29409],[-54.5001,-25.28614],[-54.49598,-25.27736],[-54.49295,-25.2656],[-54.48681,-25.2488],[-54.48264,-25.23814],[-54.47786,-25.22696],[-54.47253,-25.21713],[-54.46534,-25.20466],[-54.45942,-25.19459],[-54.45288,-25.18399],[-54.44633,-25.17285],[-54.43919,-25.16172],[-54.43602,-25.15454],[-54.43587,-25.1497],[-54.43628,-25.14377],[-54.43909,-25.13886],[-54.44811,-25.1241],[-54.45347,-25.11563],[-54.45797,-25.10798],[-54.45956,-25.10202],[-54.4617,-25.0947],[-54.46405,-25.08442],[-54.46499,-25.07633],[-54.46446,-25.06854],[-54.46185,-25.05084],[-54.45704,-25.02863],[-54.45334,-25.01366],[-54.44308,-24.97706],[-54.43409,-24.94338],[-54.42891,-24.92817],[-54.42494,-24.91374],[-54.4205,-24.89368],[-54.41648,-24.87764],[-54.41153,-24.86],[-54.40454,-24.83327],[-54.39745,-24.813],[-54.39135,-24.79648],[-54.38855,-24.79143],[-54.38601,-24.78504],[-54.38163,-24.77654],[-54.37784,-24.76802],[-54.37466,-24.7603],[-54.37119,-24.75258],[-54.36674,-24.74139],[-54.36318,-24.73072],[-54.36058,-24.72218],[-54.35786,-24.70987],[-54.3493,-24.6891],[-54.33801,-24.65548],[-54.3351,-24.64641],[-54.33404,-24.64052],[-54.33259,-24.63114],[-54.33061,-24.62365],[-54.33061,-24.61343],[-54.33154,-24.60507],[-54.33255,-24.58918],[-54.33347,-24.58028],[-54.33441,-24.57219],[-54.33532,-24.5633],[-54.33716,-24.55545],[-54.33782,-24.54791],[-54.33812,-24.53795],[-54.3377,-24.52371],[-54.33664,-24.51055],[-54.33666,-24.5101],[-54.33528,-24.50091],[-54.33231,-24.48995],[-54.32852,-24.4809],[-54.32504,-24.47238],[-54.32069,-24.46442],[-54.31546,-24.4562],[-54.30908,-24.4491],[-54.30415,-24.44115],[-54.29801,-24.43188],[-54.28951,-24.4224],[-54.28523,-24.41659],[-54.2763,-24.40228],[-54.26666,-24.38342],[-54.26245,-24.37446],[-54.25925,-24.36047],[-54.25864,-24.34919],[-54.25944,-24.336],[-54.26069,-24.32817],[-54.265,-24.31462],[-54.27414,-24.29559],[-54.27828,-24.28608],[-54.28506,-24.27704],[-54.29219,-24.26988],[-54.29961,-24.26272],[-54.30989,-24.25356],[-54.31142,-24.25226],[-54.31823,-24.24695],[-54.32338,-24.24252],[-54.32563,-24.23924],[-54.32752,-24.23355],[-54.32822,-24.22735],[-54.32924,-24.22195],[-54.32936,-24.21603],[-54.32738,-24.20805],[-54.32594,-24.19891],[-54.32469,-24.1863],[-54.32441,-24.17663],[-54.32651,-24.16824],[-54.32807,-24.16122],[-54.33062,-24.14825],[-54.33045,-24.14207],[-54.32935,-24.13457],[-54.32799,-24.12815],[-54.3258,-24.12337],[-54.32246,-24.11942],[-54.31704,-24.11417],[-54.3098,-24.10682],[-54.30048,-24.09871],[-54.29025,-24.08928],[-54.28363,-24.08298],[-54.28054,-24.07768],[-54.28047,-24.07499],[-54.28125,-24.07175],[-54.28386,-24.06748],[-54.29144,-24.05914],[-54.29884,-24.05171],[-54.30399,-24.04728],[-54.3094,-24.04204],[-54.31502,-24.03384],[-54.3172,-24.02815],[-54.31741,-24.02519],[-54.31517,-24.01879],[-54.31475,-24.01423],[-54.31584,-24.01151],[-54.31899,-24.00902],[-54.32391,-24.00702],[-54.33089,-24.00576],[-54.33618,-24.00618],[-54.34349,-24.00601],[-54.35567,-24.00195],[-54.36667,-23.99719],[-54.37576,-23.98361],[-54.38887,-23.96175],[-54.39909,-23.93743],[-54.41091,-23.92426],[-54.43173,-23.91212],[-54.45992,-23.9022],[-54.48266,-23.8819],[-54.49531,-23.87949],[-54.51344,-23.88488],[-54.52625,-23.87217],[-54.5361,-23.86973],[-54.54588,-23.87115],[-54.56121,-23.8765],[-54.56828,-23.87273],[-54.56571,-23.85724],[-54.57287,-23.84703],[-54.59826,-23.83576],[-54.62074,-23.8309],[-54.62911,-23.83357],[-54.64029,-23.835],[-54.65454,-23.81844],[-54.66713,-23.81257],[-54.67534,-23.81357],[-54.67978,-23.81728],[-54.68311,-23.82284],[-54.68486,-23.82497],[-54.69428,-23.83278],[-54.69746,-23.83739],[-54.69885,-23.84611],[-54.69801,-23.85435],[-54.70045,-23.85827],[-54.72033,-23.8626],[-54.74024,-23.86348],[-54.75928,-23.85427],[-54.76325,-23.85568],[-54.76616,-23.86235],[-54.77435,-23.86564],[-54.78707,-23.86438],[-54.79773,-23.86884],[-54.80335,-23.87874],[-54.81525,-23.88344],[-54.82321,-23.88489],[-54.83157,-23.88365],[-54.83915,-23.88526],[-54.84237,-23.88735],[-54.84897,-23.89887],[-54.85439,-23.90442],[-54.86086,-23.90494],[-54.87112,-23.90067],[-54.8794,-23.89525],[-54.88686,-23.89646],[-54.89372,-23.90752],[-54.90421,-23.90578],[-54.91183,-23.91501],[-54.91902,-23.91874],[-54.92246,-23.92336],[-54.91738,-23.93179],[-54.92129,-23.93916],[-54.92437,-23.95407],[-54.92682,-23.95799],[-54.93177,-23.96147],[-54.93924,-23.96245],[-54.95197,-23.96049],[-54.97222,-23.95471],[-55.00537,-23.95545],[-55.0212,-23.96726],[-55.03089,-23.97032],[-55.0383,-23.97794],[-55.04749,-23.98145],[-55.05267,-23.98653],[-55.06014,-23.98842],[-55.07711,-23.98558],[-55.08889,-23.97972],[-55.09893,-23.97269],[-55.11151,-23.96019],[-55.11473,-23.96227],[-55.11961,-23.97308],[-55.13752,-23.97825],[-55.14443,-23.98495],[-55.15291,-23.98479],[-55.15917,-23.98185],[-55.17283,-23.98768],[-55.18557,-23.9848],[-55.1928,-23.98462],[-55.19777,-23.98718],[-55.19973,-23.98994],[-55.20175,-23.99719],[-55.20751,-24.00376],[-55.21217,-24.00749],[-55.21704,-24.009],[-55.22551,-24.00985],[-55.23028,-24.0086],[-55.23351,-24.00628],[-55.24582,-23.99719],[-55.25332,-23.99192],[-55.25584,-23.98873],[-55.29291,-23.9679],[-55.29969,-23.96268],[-55.3142,-23.95613],[-55.32041,-23.95869],[-55.32437,-23.96216],[-55.33001,-23.97364],[-55.3329,-23.98604],[-55.33513,-23.98834],[-55.34084,-23.99044],[-55.34857,-23.99049],[-55.35357,-23.98892],[-55.36512,-23.97822],[-55.37137,-23.97666],[-55.37463,-23.97416],[-55.37769,-23.96547],[-55.38118,-23.96503],[-55.39684,-23.97109],[-55.40564,-23.96083],[-55.41188,-23.95858],[-55.41848,-23.94258],[-55.42804,-23.93118],[-55.42811,-23.92247],[-55.43189,-23.91585],[-55.43663,-23.91473],[-55.44091,-23.90949],[-55.43787,-23.88244],[-55.43308,-23.86386],[-55.43332,-23.85744],[-55.43612,-23.8492],[-55.43321,-23.83796],[-55.43603,-23.82789],[-55.44455,-23.82084],[-55.44633,-23.81535],[-55.44513,-23.80961],[-55.43945,-23.80248],[-55.4326,-23.78617],[-55.43094,-23.77493],[-55.43677,-23.76075],[-55.44196,-23.73122],[-55.44077,-23.72365],[-55.43337,-23.71467],[-55.4334,-23.71123],[-55.43666,-23.70736],[-55.44213,-23.70762],[-55.45203,-23.71501],[-55.45701,-23.71527],[-55.46051,-23.71208],[-55.46106,-23.70475],[-55.45793,-23.69052],[-55.45873,-23.68365],[-55.46127,-23.6761],[-55.46565,-23.67279],[-55.46978,-23.66633],[-55.47181,-23.6631],[-55.47342,-23.64661],[-55.4767,-23.64089],[-55.50439,-23.62867],[-55.50818,-23.61999],[-55.51168,-23.61725],[-55.51791,-23.61591],[-55.52459,-23.62076],[-55.53033,-23.61804],[-55.5346,-23.61096],[-55.53254,-23.58528],[-55.52447,-23.56506],[-55.53573,-23.53498],[-55.54257,-23.49754],[-55.5405,-23.47995],[-55.53667,-23.47943],[-55.54026,-23.47791],[-55.53857,-23.46359],[-55.53937,-23.45511],[-55.53696,-23.44455],[-55.53008,-23.43236],[-55.5259,-23.42965],[-55.51875,-23.41855],[-55.51164,-23.40498],[-55.50851,-23.39006],[-55.50113,-23.37925],[-55.50295,-23.36825],[-55.50546,-23.36437],[-55.51418,-23.35914],[-55.52174,-23.34313],[-55.52826,-23.33377],[-55.534,-23.32807],[-55.54298,-23.32284],[-55.5485,-23.31416],[-55.5482,-23.28274],[-55.54133,-23.27216],[-55.53491,-23.26616],[-55.52972,-23.26338],[-55.52277,-23.26312],[-55.51933,-23.25897],[-55.52834,-23.24802],[-55.53237,-23.23841],[-55.53366,-23.23062],[-55.53248,-23.22144],[-55.52954,-23.21615],[-55.52189,-23.21014],[-55.51897,-23.20187],[-55.521,-23.19431],[-55.53749,-23.17675],[-55.53882,-23.163],[-55.54407,-23.15683],[-55.56348,-23.1457],[-55.57615,-23.14278],[-55.58928,-23.14399],[-55.59301,-23.14241],[-55.59576,-23.13829],[-55.5971,-23.12225],[-55.60162,-23.11333],[-55.61211,-23.10054],[-55.61763,-23.08864],[-55.61052,-23.07761],[-55.61149,-23.05923],[-55.61478,-23.0549],[-55.61111,-23.04905],[-55.61361,-23.04202],[-55.62305,-23.03343],[-55.639,-23.0266],[-55.6423,-23.01661],[-55.63642,-23.00147],[-55.63894,-22.99474],[-55.64483,-22.98969],[-55.65492,-22.99137],[-55.66249,-22.9939],[-55.6709,-22.9981],[-55.67679,-22.99642],[-55.681,-22.99221],[-55.6852,-22.99053],[-55.68268,-22.98044],[-55.6709,-22.96782],[-55.6566,-22.95184],[-55.64988,-22.9325],[-55.64988,-22.91315],[-55.66586,-22.86857],[-55.6588,-22.84243],[-55.65831,-22.8253],[-55.65399,-22.81867],[-55.656,-22.80856],[-55.64978,-22.80256],[-55.65302,-22.7928],[-55.63903,-22.78316],[-55.63491,-22.77061],[-55.62736,-22.76674],[-55.61735,-22.76815],[-55.61931,-22.76536],[-55.6255,-22.75897],[-55.62609,-22.7537],[-55.62539,-22.75034],[-55.61781,-22.73607],[-55.61396,-22.7177],[-55.61596,-22.6989],[-55.6138,-22.69977],[-55.60961,-22.69047],[-55.6159,-22.67767],[-55.6144,-22.66411],[-55.61234,-22.65964],[-55.61211,-22.65575],[-55.61387,-22.65162],[-55.62132,-22.64523],[-55.62608,-22.63608],[-55.62668,-22.61865],[-55.63115,-22.61385],[-55.65096,-22.60637],[-55.66139,-22.59862],[-55.70113,-22.56002],[-55.72369,-22.54521],[-55.73489,-22.52942],[-55.74116,-22.51155],[-55.74527,-22.48105],[-55.74482,-22.47301],[-55.74287,-22.46773],[-55.73625,-22.45898],[-55.73728,-22.45141],[-55.7334,-22.439],[-55.7332,-22.43051],[-55.73907,-22.39336],[-55.74503,-22.3865],[-55.76606,-22.38659],[-55.76555,-22.38351],[-55.77453,-22.38641],[-55.78477,-22.38299],[-55.78898,-22.37934],[-55.79769,-22.36468],[-55.80045,-22.35597],[-55.82424,-22.33219],[-55.83194,-22.32098],[-55.84244,-22.29026],[-55.85335,-22.2786],[-55.861,-22.27633],[-55.88661,-22.2833],[-55.89795,-22.28357],[-55.92214,-22.27792],[-55.93545,-22.27865],[-55.95416,-22.28835],[-55.9613,-22.2902],[-55.96599,-22.2893],[-55.98451,-22.27995],[-55.99117,-22.27974],[-55.9988,-22.28389],[-56.00593,-22.28965],[-56.01136,-22.28851],[-56.02198,-22.28304],[-56.03037,-22.28191],[-56.05095,-22.28837],[-56.06005,-22.29048],[-56.07322,-22.28779],[-56.08043,-22.28703],[-56.0868,-22.28627],[-56.09403,-22.28236],[-56.10169,-22.27844],[-56.10891,-22.27729],[-56.1195,-22.27932],[-56.12584,-22.28408],[-56.136,-22.28768],[-56.14235,-22.2873],[-56.14486,-22.28727],[-56.14831,-22.28694],[-56.15807,-22.2854],[-56.16842,-22.28385],[-56.18014,-22.28392],[-56.18609,-22.28276],[-56.19109,-22.28079],[-56.19755,-22.28083],[-56.20774,-22.27811],[-56.21243,-22.27339],[-56.2235,-22.26436],[-56.23624,-22.25849],[-56.2422,-22.25378],[-56.24435,-22.24747],[-56.24736,-22.23723],[-56.25926,-22.23253],[-56.26859,-22.23217],[-56.28641,-22.23105],[-56.29277,-22.22949],[-56.30937,-22.21416],[-56.31665,-22.21119],[-56.32932,-22.21068],[-56.34079,-22.20322],[-56.34634,-22.191],[-56.34956,-22.18251],[-56.3519,-22.178],[-56.35573,-22.17446],[-56.36053,-22.17195],[-56.3681,-22.16511],[-56.37699,-22.15439],[-56.37999,-22.14651],[-56.38001,-22.1398],[-56.37877,-22.13032],[-56.38176,-22.12323],[-56.38644,-22.11575],[-56.392,-22.10195],[-56.39625,-22.09841],[-56.39923,-22.09289],[-56.40009,-22.08895],[-56.39926,-22.0846],[-56.40011,-22.07806],[-56.40268,-22.07474],[-56.40776,-22.07516],[-56.42089,-22.07756],[-56.42724,-22.07758],[-56.43869,-22.07603],[-56.4475,-22.07988],[-56.45309,-22.07805],[-56.46055,-22.07896],[-56.47131,-22.07651],[-56.47596,-22.0781],[-56.48019,-22.08324],[-56.48399,-22.08878],[-56.49033,-22.09195],[-56.50304,-22.09356],[-56.51066,-22.09555],[-56.51828,-22.10031],[-56.52629,-22.11532],[-56.52797,-22.12203],[-56.52583,-22.13071],[-56.53343,-22.14415],[-56.5402,-22.14693],[-56.54315,-22.15522],[-56.54399,-22.15996],[-56.54652,-22.16233],[-56.55,-22.16221],[-56.55627,-22.16353],[-56.55965,-22.17065],[-56.55964,-22.17577],[-56.56005,-22.18051],[-56.56259,-22.18288],[-56.56343,-22.18525],[-56.56554,-22.19],[-56.57426,-22.19679],[-56.58332,-22.20187],[-56.59513,-22.2076],[-56.60366,-22.21059],[-56.60916,-22.21533],[-56.61255,-22.22008],[-56.61422,-22.22994],[-56.63202,-22.24063],[-56.64093,-22.23788],[-56.64462,-22.23921],[-56.64558,-22.24499],[-56.64259,-22.25367],[-56.64216,-22.2584],[-56.65065,-22.25605],[-56.68375,-22.24189],[-56.68758,-22.23795],[-56.688,-22.234],[-56.68929,-22.22335],[-56.68974,-22.21718],[-56.69779,-22.2135],[-56.70499,-22.21508],[-56.70606,-22.22097],[-56.7071,-22.22732],[-56.70964,-22.23206],[-56.71091,-22.2364],[-56.71472,-22.23917],[-56.71557,-22.24233],[-56.71556,-22.24706],[-56.71767,-22.25219],[-56.727,-22.25773],[-56.73166,-22.25813],[-56.73506,-22.25537],[-56.73803,-22.25103],[-56.73974,-22.24472],[-56.74313,-22.23959],[-56.74799,-22.23603],[-56.75289,-22.23408],[-56.75713,-22.23487],[-56.7584,-22.23842],[-56.75967,-22.24237],[-56.76942,-22.24593],[-56.77281,-22.24791],[-56.77747,-22.25383],[-56.78087,-22.25699],[-56.78468,-22.25936],[-56.78935,-22.25739],[-56.79274,-22.25463],[-56.79487,-22.25227],[-56.79613,-22.24483],[-56.79784,-22.2428],[-56.80717,-22.24715],[-56.81014,-22.2507],[-56.8114,-22.26017],[-56.81012,-22.26925],[-56.80927,-22.27634],[-56.80884,-22.28227],[-56.80969,-22.28621],[-56.81223,-22.28858],[-56.81902,-22.28977],[-56.82284,-22.28977],[-56.8275,-22.29609],[-56.83047,-22.29767],[-56.83599,-22.29767],[-56.84108,-22.29649],[-56.84772,-22.29156],[-56.85363,-22.29086],[-56.86692,-22.28302],[-56.8712,-22.2823],[-56.87757,-22.27559],[-56.88181,-22.27125],[-56.88308,-22.26494],[-56.88139,-22.25902],[-56.88223,-22.25428],[-56.88733,-22.24836],[-56.89319,-22.24369],[-56.90047,-22.24363],[-56.90302,-22.24481],[-56.90514,-22.24916],[-56.9098,-22.25508],[-56.91532,-22.25429],[-56.91956,-22.25074],[-56.92677,-22.24876],[-56.93483,-22.24876],[-56.94713,-22.24837],[-56.96095,-22.23591],[-56.96579,-22.23495],[-56.97088,-22.23613],[-56.97936,-22.24007],[-56.98487,-22.23968],[-56.99004,-22.23696],[-56.99985,-22.22269],[-57.00395,-22.22231],[-57.01115,-22.22585],[-57.02091,-22.22703],[-57.02939,-22.23097],[-57.03784,-22.23173],[-57.04376,-22.23355],[-57.04872,-22.23792],[-57.04912,-22.23522],[-57.04933,-22.23846],[-57.05314,-22.23535],[-57.05711,-22.23494],[-57.06375,-22.23411],[-57.07605,-22.23726],[-57.08114,-22.2412],[-57.08538,-22.23961],[-57.09047,-22.23764],[-57.09877,-22.24504],[-57.10235,-22.24197],[-57.10446,-22.23723],[-57.10835,-22.23536],[-57.11082,-22.23407],[-57.11166,-22.23012],[-57.10996,-22.22657],[-57.10699,-22.22341],[-57.1091,-22.22026],[-57.1248,-22.2234],[-57.13583,-22.22457],[-57.1581,-22.22596],[-57.16796,-22.22638],[-57.17807,-22.22817],[-57.1835,-22.22883],[-57.19138,-22.22212],[-57.19264,-22.21897],[-57.19518,-22.21344],[-57.19814,-22.2087],[-57.20237,-22.20711],[-57.20704,-22.20908],[-57.21029,-22.21448],[-57.21553,-22.21459],[-57.21723,-22.21696],[-57.21937,-22.22603],[-57.22278,-22.2351],[-57.22788,-22.23864],[-57.23425,-22.24139],[-57.24231,-22.24138],[-57.24951,-22.24018],[-57.25576,-22.23767],[-57.26392,-22.23385],[-57.26899,-22.22949],[-57.2745,-22.22514],[-57.28212,-22.22079],[-57.28975,-22.21722],[-57.29632,-22.21841],[-57.30035,-22.21996],[-57.30631,-22.22626],[-57.31055,-22.22822],[-57.31819,-22.22979],[-57.32793,-22.22949],[-57.33217,-22.2266],[-57.34432,-22.22423],[-57.35083,-22.22523],[-57.36313,-22.22495],[-57.37076,-22.22374],[-57.37866,-22.22049],[-57.38091,-22.21661],[-57.38048,-22.21188],[-57.38131,-22.20714],[-57.38619,-22.20369],[-57.39064,-22.2055],[-57.39507,-22.20479],[-57.40248,-22.19841],[-57.4118,-22.19601],[-57.42156,-22.19717],[-57.43257,-22.19517],[-57.44598,-22.18865],[-57.46148,-22.18603],[-57.46858,-22.18717],[-57.47366,-22.18478],[-57.4851,-22.18396],[-57.49527,-22.18037],[-57.49908,-22.18076],[-57.50531,-22.18025],[-57.51004,-22.17677],[-57.51297,-22.17473],[-57.51939,-22.17083],[-57.52533,-22.1712],[-57.53255,-22.17552],[-57.54231,-22.17864],[-57.55249,-22.17821],[-57.56053,-22.17542],[-57.57196,-22.17065],[-57.58338,-22.16429],[-57.58759,-22.15756],[-57.58841,-22.15204],[-57.58711,-22.14494],[-57.58656,-22.13885],[-57.59258,-22.13702],[-57.59427,-22.13583],[-57.59638,-22.13306],[-57.60061,-22.13265],[-57.60229,-22.1287],[-57.60396,-22.12277],[-57.60906,-22.11897],[-57.61241,-22.11721],[-57.61279,-22.10774],[-57.61318,-22.09866],[-57.61577,-22.09343],[-57.6212,-22.0939],[-57.63181,-22.09741],[-57.64171,-22.10358],[-57.65747,-22.10369],[-57.67249,-22.09803],[-57.68728,-22.09008],[-57.69321,-22.08887],[-57.70084,-22.08962],[-57.70763,-22.09354],[-57.71063,-22.09787],[-57.7153,-22.10061],[-57.71915,-22.10691],[-57.72911,-22.09972],[-57.73649,-22.1021],[-57.74075,-22.10602],[-57.73869,-22.11669],[-57.73915,-22.12339],[-57.74469,-22.12889],[-57.75572,-22.13082],[-57.76207,-22.12842],[-57.76601,-22.12354],[-57.7692,-22.12259],[-57.7739,-22.12205],[-57.78026,-22.1236],[-57.7845,-22.12397],[-57.79305,-22.13538],[-57.79775,-22.14207],[-57.80285,-22.1452],[-57.80538,-22.14282],[-57.80706,-22.14005],[-57.81299,-22.13883],[-57.81763,-22.13644],[-57.821,-22.13248],[-57.82307,-22.12458],[-57.82347,-22.11984],[-57.82754,-22.11823],[-57.83702,-22.11819],[-57.8489,-22.1205],[-57.85696,-22.12322],[-57.86209,-22.12911],[-57.86634,-22.13106],[-57.87345,-22.12841],[-57.88617,-22.12396],[-57.89285,-22.12045],[-57.90787,-22.11988],[-57.91106,-22.11824],[-57.92067,-22.11932],[-57.92706,-22.11743],[-57.92827,-22.1149],[-57.92624,-22.10777],[-57.92719,-22.1032],[-57.93403,-22.09671],[-57.93836,-22.08589],[-57.94227,-22.08242],[-57.95286,-22.08233],[-57.95702,-22.07954],[-57.96048,-22.07975],[-57.97333,-22.08492],[-57.98023,-22.08555],[-57.98832,-22.08182],[-57.98972,-22.07828],[-57.98798,-22.07158],[-57.98624,-22.06448],[-57.9879,-22.05934],[-57.99294,-22.05379],[-57.99935,-22.04754],[-58.00515,-22.04345],[-58.0068,-22.03713],[-58.00463,-22.02924],[-57.99951,-22.02375],[-57.98887,-22.01671],[-57.97824,-22.01045],[-57.9693,-22.0038],[-57.9663,-21.99789],[-57.96152,-21.97977],[-57.95977,-21.97227],[-57.95334,-21.95929],[-57.94732,-21.94669],[-57.94086,-21.92975],[-57.93993,-21.91792],[-57.94243,-21.91119],[-57.94493,-21.90565],[-57.94446,-21.89776],[-57.93934,-21.89147],[-57.93117,-21.88692],[-57.92699,-21.88478],[-57.92321,-21.88525],[-57.91982,-21.88329],[-57.91852,-21.87856],[-57.92017,-21.87263],[-57.9286,-21.86745],[-57.94598,-21.86085],[-57.95517,-21.85546],[-57.96218,-21.84762],[-57.96694,-21.84434],[-57.96819,-21.84117],[-57.96606,-21.83882],[-57.96026,-21.83769],[-57.9491,-21.83299],[-57.93977,-21.82949],[-57.92146,-21.81144],[-57.91528,-21.79938],[-57.91202,-21.78978],[-57.91005,-21.77334],[-57.91164,-21.76945],[-57.91566,-21.7641],[-57.92368,-21.76168],[-57.92917,-21.76165],[-57.93564,-21.75699],[-57.94221,-21.75131],[-57.94639,-21.74379],[-57.94379,-21.73472],[-57.93656,-21.72766],[-57.9217,-21.71787],[-57.9111,-21.71201],[-57.90388,-21.70692],[-57.89623,-21.69985],[-57.89363,-21.69039],[-57.89317,-21.68447],[-57.89649,-21.68069],[-57.90281,-21.67179],[-57.91375,-21.66541],[-57.92867,-21.65388],[-57.93302,-21.64558],[-57.93659,-21.632],[-57.93452,-21.6112],[-57.93109,-21.60372],[-57.92429,-21.59705],[-57.91708,-21.59235],[-57.91536,-21.58723],[-57.91828,-21.58208],[-57.92358,-21.57653],[-57.93026,-21.57242],[-57.95612,-21.5562],[-57.96282,-21.54906],[-57.96474,-21.54304],[-57.96689,-21.52534],[-57.96558,-21.51903],[-57.96384,-21.51154],[-57.95787,-21.50407],[-57.94639,-21.49111],[-57.93237,-21.47618],[-57.92724,-21.46753],[-57.9221,-21.45492],[-57.91992,-21.44466],[-57.91776,-21.43599],[-57.9156,-21.4289],[-57.91007,-21.42261],[-57.90752,-21.41907],[-57.90488,-21.4021],[-57.90231,-21.39541],[-57.8989,-21.3895],[-57.89081,-21.37888],[-57.88527,-21.36983],[-57.87811,-21.36668],[-57.8679,-21.3561],[-57.8594,-21.34628],[-57.85428,-21.33604],[-57.85296,-21.32775],[-57.85447,-21.31513],[-57.85877,-21.31074],[-57.87351,-21.30829],[-57.88866,-21.30545],[-57.90353,-21.29926],[-57.91111,-21.29191],[-57.91567,-21.28345],[-57.91756,-21.27567],[-57.91457,-21.27056],[-57.90398,-21.26232],[-57.89087,-21.2541],[-57.87606,-21.2451],[-57.86676,-21.24081],[-57.85787,-21.23256],[-57.85317,-21.22311],[-57.85017,-21.21404],[-57.84884,-21.20299],[-57.84962,-21.1919],[-57.86239,-21.14484],[-57.86232,-21.13499],[-57.85931,-21.12474],[-57.85421,-21.11568],[-57.84624,-21.09895],[-57.84673,-21.09436],[-57.86445,-21.07021],[-57.86734,-21.06072],[-57.86599,-21.0469],[-57.8651,-21.03861],[-57.86086,-21.03271],[-57.83159,-20.99416],[-57.82832,-20.99136],[-57.81812,-20.98124],[-57.81717,-20.9737],[-57.82191,-20.9596],[-57.82122,-20.94801],[-57.82087,-20.9395],[-57.82407,-20.93559],[-57.82829,-20.93296],[-57.83251,-20.93322],[-57.84094,-20.93843],[-57.85021,-20.94233],[-57.85904,-20.94228],[-57.86697,-20.93893],[-57.87536,-20.92877],[-57.88905,-20.90433],[-57.89263,-20.90218],[-57.89954,-20.89882],[-57.91429,-20.89933],[-57.92332,-20.89808],[-57.92603,-20.89452],[-57.92643,-20.89097],[-57.92429,-20.88545],[-57.92006,-20.88113],[-57.90528,-20.87094],[-57.87491,-20.85452],[-57.85974,-20.84828],[-57.85592,-20.84395],[-57.85463,-20.83843],[-57.85459,-20.83251],[-57.86249,-20.81706],[-57.87166,-20.80398],[-57.8821,-20.79484],[-57.89341,-20.78964],[-57.90097,-20.78802],[-57.91442,-20.78835],[-57.92284,-20.79067],[-57.93162,-20.79467],[-57.94152,-20.7959],[-57.94977,-20.79644],[-57.95521,-20.79364],[-57.95813,-20.79086],[-57.95979,-20.7869],[-57.96017,-20.78137],[-57.95378,-20.76837],[-57.94871,-20.76445],[-57.94287,-20.75676],[-57.93561,-20.75228],[-57.91498,-20.7449],[-57.9076,-20.74441],[-57.87841,-20.74233],[-57.87211,-20.74078],[-57.86872,-20.73685],[-57.86828,-20.7329],[-57.86993,-20.72815],[-57.87782,-20.71429],[-57.88364,-20.70438],[-57.88948,-20.69803],[-57.89742,-20.69285],[-57.90117,-20.6877],[-57.90825,-20.67778],[-57.91483,-20.66771],[-57.92229,-20.66375],[-57.92847,-20.66493],[-57.93462,-20.66539],[-57.94094,-20.6693],[-57.94436,-20.67719],[-57.95031,-20.689],[-57.95794,-20.69962],[-57.96596,-20.70191],[-57.9763,-20.70034],[-57.98093,-20.69822],[-57.98687,-20.69313],[-57.98894,-20.68799],[-57.98718,-20.67575],[-57.98504,-20.66984],[-57.97613,-20.65686],[-57.97188,-20.64938],[-57.97434,-20.64067],[-57.98137,-20.63543],[-57.99692,-20.6279],[-58.00318,-20.62273],[-58.01025,-20.6132],[-58.01481,-20.60527],[-58.01307,-20.5966],[-58.00543,-20.584],[-57.99823,-20.57575],[-57.99651,-20.56984],[-57.99981,-20.56113],[-58.00552,-20.53951],[-58.01825,-20.51041],[-58.01394,-20.49541],[-58.01383,-20.4799],[-57.99353,-20.44561],[-57.999,-20.4304],[-58.00366,-20.4232],[-58.01775,-20.4098],[-58.03095,-20.40186],[-58.04481,-20.39703],[-58.05385,-20.39351],[-58.06458,-20.38695],[-58.07679,-20.37681],[-58.08151,-20.36972],[-58.09244,-20.34182],[-58.09621,-20.32132],[-58.09567,-20.30964],[-58.08966,-20.2831],[-58.08671,-20.27057],[-58.08665,-20.2625],[-58.09134,-20.2544],[-58.10082,-20.24985],[-58.11469,-20.24755],[-58.12458,-20.25059],[-58.13413,-20.2559],[-58.14085,-20.26393],[-58.1456,-20.2639],[-58.15319,-20.26115],[-58.15603,-20.2556],[-58.16252,-20.23957],[-58.16152,-20.2333],[-58.16143,-20.22254],[-58.1547,-20.21273],[-58.14802,-20.20919],[-58.13562,-20.20389],[-58.12607,-20.19768],[-58.12414,-20.19321],[-58.12441,-20.18541],[-58.13449,-20.17969],[-58.14418,-20.17629],[-58.15992,-20.1744],[-58.16162,-20.16677],[-58.16283,-20.15976],[-58.15611,-20.15085],[-58.1485,-20.14911],[-58.13709,-20.14828],[-58.11802,-20.13945],[-58.09792,-20.11806],[-58.0912,-20.11003],[-58.08167,-20.10472],[-58.07597,-20.10387],[-58.0655,-20.10124],[-58.05031,-20.10045],[-58.04265,-20.09242],[-58.03888,-20.08806],[-58.03867,-20.08731],[-58.03783,-20.08349],[-58.03687,-20.07991],[-58.02633,-20.06831],[-58.01392,-20.05852],[-57.99775,-20.05324],[-57.98446,-20.05422],[-57.97801,-20.05349],[-57.96829,-20.04714],[-57.96444,-20.03999],[-57.96151,-20.02836],[-57.95863,-20.02478],[-57.94722,-20.02127],[-57.93393,-20.02134],[-57.92447,-20.02497],[-57.9188,-20.02949],[-57.91219,-20.03401],[-57.90934,-20.03403],[-57.9081,-20.03044],[-57.90899,-20.0194],[-57.90502,-20.0114],[-57.89595,-20.00205],[-57.88324,-19.99341],[-57.87295,-19.98269],[-57.87095,-19.9765],[-57.87261,-19.97098],[-57.87669,-19.96589],[-57.89528,-19.95057],[-57.91605,-19.9371],[-57.95347,-19.90922],[-57.98727,-19.88803],[-58.02091,-19.85979],[-58.0487,-19.83327],[-58.07354,-19.81698],[-58.10293,-19.79236],[-58.12677,-19.77468],[-58.13345,-19.76245],[-58.1334,-19.75785],[-58.12198,-19.7318],[-58.09205,-19.67329],[-58.05811,-19.60326],[-58.00255,-19.48847],[-57.94706,-19.37365],[-57.89306,-19.26184],[-57.88621,-19.24753],[-57.7842,-19.03351],[-57.71014,-19.0326],[-57.70841,-19.03025],[-57.70789,-19.01557],[-57.70519,-19.00146],[-57.70699,-18.99031],[-57.71106,-18.98292],[-57.71222,-18.97902],[-57.71925,-18.97705],[-57.71978,-18.89907],[-57.76661,-18.89929],[-57.55777,-18.24036],[-57.4604,-18.23178],[-57.45802,-18.23159],[-57.45385,-18.2312],[-57.45744,-18.22492],[-57.46745,-18.22278],[-57.47421,-18.21697],[-57.47371,-18.21252],[-57.47979,-18.20862],[-57.47963,-18.20756],[-57.48222,-18.2021],[-57.48616,-18.19923],[-57.49073,-18.20223],[-57.50031,-18.19688],[-57.50507,-18.20034],[-57.5748,-18.13189],[-57.58178,-18.10828],[-57.60004,-18.04637],[-57.7206,-17.82786],[-57.69265,-17.82807],[-57.68874,-17.82703],[-57.68705,-17.82474],[-57.68812,-17.8066],[-57.6904,-17.80089],[-57.70401,-17.78753],[-57.71405,-17.77955],[-57.71513,-17.77661],[-57.71748,-17.7743],[-57.72009,-17.77171],[-57.71378,-17.74662],[-57.71481,-17.73372],[-57.72315,-17.72562],[-57.73507,-17.72003],[-57.74307,-17.69861],[-57.75425,-17.68866],[-57.76487,-17.66838],[-57.77963,-17.65655],[-57.78505,-17.6455],[-57.78454,-17.64021],[-57.77771,-17.62489],[-57.77923,-17.62327],[-57.78605,-17.61587],[-57.78243,-17.61428],[-57.7812,-17.61256],[-57.78396,-17.60743],[-57.78212,-17.60568],[-57.79048,-17.60321],[-57.78782,-17.60044],[-57.78919,-17.5999],[-57.78606,-17.59665],[-57.78658,-17.59473],[-57.79374,-17.59239],[-57.79244,-17.59],[-57.79312,-17.58977],[-57.79018,-17.5844],[-57.78972,-17.5825],[-57.78082,-17.5763],[-57.78534,-17.57524],[-57.78518,-17.56997],[-57.79438,-17.56429],[-57.79561,-17.56002],[-57.79281,-17.55574],[-57.7856,-17.55555],[-57.75224,-17.56446],[-57.85996,-17.47007],[-57.8779,-17.46292],[-57.89557,-17.45888],[-57.8992,-17.4595],[-57.9786,-17.50941],[-57.98264,-17.51328],[-57.98961,-17.51804],[-58.00256,-17.51955],[-58.018,-17.50839],[-58.02663,-17.50004],[-58.03943,-17.49378],[-58.04334,-17.49267],[-58.04947,-17.46302],[-58.06008,-17.45073],[-58.07235,-17.45207],[-58.08922,-17.46113],[-58.11832,-17.45038],[-58.1228,-17.41468],[-58.12983,-17.41156],[-58.13921,-17.41563],[-58.14541,-17.41366],[-58.15244,-17.40202],[-58.15185,-17.39113],[-58.17019,-17.39539],[-58.1844,-17.39665],[-58.19148,-17.3925],[-58.19174,-17.38788],[-58.20033,-17.38302],[-58.19507,-17.36896],[-58.20213,-17.35705],[-58.22023,-17.36004],[-58.22767,-17.35671],[-58.22773,-17.35607],[-58.23021,-17.35605],[-58.24199,-17.36288],[-58.24485,-17.36215],[-58.25029,-17.35705],[-58.25575,-17.35424],[-58.25863,-17.34564],[-58.26352,-17.34469],[-58.26363,-17.3304],[-58.27649,-17.32375],[-58.27643,-17.30058],[-58.29197,-17.30187],[-58.29817,-17.29883],[-58.29686,-17.29133],[-58.29546,-17.29056],[-58.29564,-17.29042],[-58.29688,-17.28462],[-58.30322,-17.27987],[-58.30341,-17.27028],[-58.319,-17.26677],[-58.32206,-17.26023],[-58.32142,-17.25884],[-58.33268,-17.25074],[-58.33429,-17.24475],[-58.33902,-17.2408],[-58.34279,-17.23352],[-58.34594,-17.23274],[-58.35653,-17.21228],[-58.36427,-17.21429],[-58.36435,-17.21005],[-58.36458,-17.1998],[-58.36958,-17.20038],[-58.39547,-17.18447],[-58.3975,-17.13676],[-58.38899,-17.11769],[-58.41848,-17.12063],[-58.42268,-17.11512],[-58.42257,-17.1128],[-58.42534,-17.11204],[-58.42902,-17.1053],[-58.42558,-17.09263],[-58.42491,-17.09025],[-58.43408,-17.08661],[-58.43578,-17.07881],[-58.43052,-17.07228],[-58.43216,-17.05877],[-58.42542,-17.05325],[-58.42199,-17.05047],[-58.43417,-17.04571],[-58.4343,-17.03984],[-58.4306,-17.03679],[-58.41906,-17.03809],[-58.41893,-17.03792],[-58.4269,-17.0353],[-58.42967,-17.02915],[-58.42957,-17.02803],[-58.43491,-17.02725],[-58.43552,-17.00761],[-58.42722,-16.99949],[-58.42297,-16.98929],[-58.43144,-16.99083],[-58.4446,-16.98072],[-58.447,-16.97884],[-58.44743,-16.97212],[-58.44981,-16.97183],[-58.45337,-16.96887],[-58.4561,-16.9694],[-58.45953,-16.96699],[-58.46172,-16.9545],[-58.45765,-16.94276],[-58.46565,-16.94249],[-58.46854,-16.94116],[-58.47435,-16.93496],[-58.4688,-16.92405],[-58.47361,-16.91594],[-58.47445,-16.9145],[-58.46685,-16.91107],[-58.46059,-16.9007],[-58.46316,-16.89963],[-58.46811,-16.89895],[-58.46319,-16.87345],[-58.46624,-16.86886],[-58.46103,-16.86427],[-58.46415,-16.86218],[-58.46381,-16.86041],[-58.46608,-16.85844],[-58.46145,-16.84951],[-58.46798,-16.84821],[-58.46183,-16.84109],[-58.47596,-16.82744],[-58.47741,-16.8155],[-58.47191,-16.79146],[-58.46333,-16.79245],[-58.46011,-16.78804],[-58.46405,-16.77932],[-58.46397,-16.7763],[-58.46661,-16.7569],[-58.47339,-16.74518],[-58.46669,-16.72084],[-58.47052,-16.70303],[-58.46084,-16.6667],[-58.46304,-16.65223],[-58.43602,-16.59236],[-58.42801,-16.58567],[-58.42127,-16.57356],[-58.39377,-16.56287],[-58.38601,-16.5436],[-58.3577,-16.52938],[-58.35383,-16.52347],[-58.34377,-16.51773],[-58.3374,-16.5]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Brazil, south of 16.5º S#PY0", "itu_zone_number": 15 }, "geometry": { "type": "Polygon", "coordinates": [[[-58.35476,-16.52467],[-28,-16.5],[-28,-40],[-52,-40],[-52,-33.7399],[-53.3721,-33.74812],[-53.36876,-33.74348],[-53.36903,-33.74348],[-53.36903,-33.74376],[-53.36959,-33.74376],[-53.36959,-33.74403],[-53.36987,-33.74403],[-53.36987,-33.74431],[-53.37014,-33.74431],[-53.37014,-33.74459],[-53.37042,-33.74459],[-53.37042,-33.74487],[-53.37125,-33.74487],[-53.37125,-33.74514],[-53.37153,-33.74514],[-53.37153,-33.74542],[-53.37209,-33.74542],[-53.37209,-33.7457],[-53.37236,-33.7457],[-53.37236,-33.74598],[-53.37264,-33.74598],[-53.37264,-33.74626],[-53.37292,-33.74626],[-53.37292,-33.74653],[-53.37348,-33.74653],[-53.37348,-33.74681],[-53.37375,-33.74681],[-53.37375,-33.74709],[-53.37403,-33.74709],[-53.40452,-33.73994],[-53.41635,-33.74002],[-53.42035,-33.73831],[-53.4244,-33.73375],[-53.42605,-33.72124],[-53.42668,-33.70914],[-53.42977,-33.70123],[-53.43481,-33.69793],[-53.44936,-33.69304],[-53.46538,-33.69066],[-53.47039,-33.68902],[-53.4864,-33.68748],[-53.49238,-33.68919],[-53.52366,-33.68611],[-53.52013,-33.66737],[-53.52062,-33.66547],[-53.52569,-33.66502],[-53.52789,-33.66462],[-53.52944,-33.66364],[-53.53018,-33.66239],[-53.53037,-33.65781],[-53.52996,-33.65757],[-53.52849,-33.65684],[-53.52734,-33.65598],[-53.52596,-33.65471],[-53.52549,-33.65297],[-53.52551,-33.65228],[-53.52595,-33.6516],[-53.52766,-33.64993],[-53.52842,-33.64812],[-53.52873,-33.64732],[-53.53001,-33.6461],[-53.53143,-33.64499],[-53.53243,-33.6441],[-53.53288,-33.64309],[-53.53289,-33.64274],[-53.53269,-33.64113],[-53.53262,-33.63918],[-53.53296,-33.63758],[-53.5331,-33.63414],[-53.5333,-33.63277],[-53.53376,-33.63129],[-53.5338,-33.63038],[-53.53379,-33.63006],[-53.53346,-33.62865],[-53.53362,-33.62485],[-53.5336,-33.62445],[-53.53338,-33.62383],[-53.53299,-33.62248],[-53.53307,-33.6213],[-53.53297,-33.62037],[-53.5314,-33.61873],[-53.52993,-33.61765],[-53.52945,-33.61603],[-53.52977,-33.61466],[-53.52997,-33.61341],[-53.53001,-33.61226],[-53.52999,-33.61204],[-53.52865,-33.61304],[-53.51692,-33.54097],[-53.50825,-33.48809],[-53.50012,-33.3998],[-53.51059,-33.30984],[-53.52499,-33.25091],[-53.53154,-33.2077],[-53.52892,-33.17235],[-53.51714,-33.13045],[-53.50012,-33.09771],[-53.4844,-33.07807],[-53.415,-33.02569],[-53.29846,-32.94844],[-53.24783,-32.86353],[-53.16748,-32.79946],[-53.09425,-32.73335],[-53.09425,-32.72419],[-53.17015,-32.65213],[-53.1752,-32.65728],[-53.18208,-32.65642],[-53.1866,-32.64536],[-53.18848,-32.64496],[-53.1882,-32.64226],[-53.18757,-32.64042],[-53.18726,-32.63996],[-53.1927,-32.63949],[-53.20961,-32.63599],[-53.22613,-32.62858],[-53.23705,-32.60868],[-53.243,-32.6024],[-53.25675,-32.60249],[-53.26502,-32.60635],[-53.26762,-32.60962],[-53.27398,-32.61366],[-53.28154,-32.6143],[-53.30487,-32.59604],[-53.31479,-32.59054],[-53.32633,-32.58553],[-53.33961,-32.58491],[-53.35784,-32.57318],[-53.36678,-32.57292],[-53.37549,-32.57999],[-53.38519,-32.58135],[-53.38908,-32.57955],[-53.40241,-32.56706],[-53.41069,-32.56175],[-53.41829,-32.56122],[-53.43489,-32.53133],[-53.44739,-32.51167],[-53.44934,-32.50992],[-53.45468,-32.49392],[-53.45279,-32.48931],[-53.453,-32.48882],[-53.452,-32.48638],[-53.45382,-32.48198],[-53.45888,-32.47698],[-53.47178,-32.47862],[-53.48422,-32.47835],[-53.49212,-32.48181],[-53.50005,-32.48317],[-53.50532,-32.48007],[-53.5142,-32.48418],[-53.51967,-32.48425],[-53.52572,-32.47947],[-53.53171,-32.47806],[-53.53878,-32.47098],[-53.54676,-32.46981],[-53.55028,-32.46732],[-53.55637,-32.45938],[-53.57219,-32.44944],[-53.57683,-32.43917],[-53.58215,-32.43269],[-53.59089,-32.43005],[-53.59414,-32.42861],[-53.59851,-32.41981],[-53.60579,-32.41462],[-53.60496,-32.40428],[-53.60529,-32.39923],[-53.60986,-32.39232],[-53.62357,-32.38931],[-53.62883,-32.38621],[-53.63164,-32.3816],[-53.63185,-32.3677],[-53.62599,-32.36152],[-53.62682,-32.35728],[-53.62325,-32.35135],[-53.6238,-32.35064],[-53.62246,-32.34842],[-53.62803,-32.34131],[-53.63268,-32.32956],[-53.64379,-32.31725],[-53.64363,-32.31114],[-53.63818,-32.31066],[-53.63475,-32.3083],[-53.63263,-32.30027],[-53.6345,-32.29165],[-53.64347,-32.2888],[-53.64716,-32.27472],[-53.65513,-32.27248],[-53.66068,-32.2658],[-53.66743,-32.26208],[-53.66947,-32.25852],[-53.66765,-32.24712],[-53.66902,-32.2385],[-53.667,-32.23321],[-53.68173,-32.21735],[-53.68386,-32.20704],[-53.69227,-32.20797],[-53.69671,-32.20572],[-53.69867,-32.2012],[-53.69768,-32.19957],[-53.69202,-32.1972],[-53.69188,-32.19454],[-53.69123,-32.19427],[-53.69104,-32.19047],[-53.70121,-32.18931],[-53.70297,-32.18786],[-53.70475,-32.18408],[-53.70382,-32.17986],[-53.71436,-32.1709],[-53.71053,-32.16117],[-53.71854,-32.15515],[-53.72676,-32.15423],[-53.72168,-32.14967],[-53.72048,-32.14692],[-53.7208,-32.14653],[-53.71969,-32.14399],[-53.73203,-32.12911],[-53.73461,-32.12222],[-53.7303,-32.11186],[-53.73063,-32.10575],[-53.72595,-32.10444],[-53.72243,-32.1082],[-53.71947,-32.10733],[-53.71337,-32.10116],[-53.72779,-32.09688],[-53.73789,-32.08223],[-53.7414,-32.0791],[-53.76099,-32.07571],[-53.76498,-32.07301],[-53.77242,-32.07203],[-53.78016,-32.06705],[-53.79746,-32.06764],[-53.80467,-32.06517],[-53.81293,-32.05788],[-53.82061,-32.05732],[-53.82608,-32.05484],[-53.82885,-32.05128],[-53.83047,-32.04055],[-53.83594,-32.03786],[-53.83806,-32.02735],[-53.84818,-32.02786],[-53.84945,-32.02513],[-53.84759,-32.01606],[-53.8482,-32.00679],[-53.85078,-31.99797],[-53.8569,-31.99264],[-53.86194,-31.99212],[-53.87068,-31.99455],[-53.87335,-31.99532],[-53.87895,-31.99385],[-53.8837,-31.99033],[-53.89559,-31.97156],[-53.91596,-31.95929],[-53.92641,-31.95841],[-53.93385,-31.95552],[-53.93904,-31.9481],[-53.94725,-31.95436],[-53.95261,-31.95426],[-53.95998,-31.94816],[-53.96457,-31.93846],[-53.95896,-31.926],[-53.95951,-31.92295],[-53.96479,-31.91942],[-53.97172,-31.91745],[-54.00227,-31.91596],[-54.0076,-31.91449],[-54.01181,-31.9112],[-54.01615,-31.90174],[-54.02247,-31.8928],[-54.02752,-31.8897],[-54.03561,-31.88724],[-54.04392,-31.88707],[-54.05152,-31.88829],[-54.05671,-31.89026],[-54.06198,-31.89499],[-54.06648,-31.90112],[-54.06983,-31.90519],[-54.07771,-31.90642],[-54.08907,-31.9071],[-54.09551,-31.90559],[-54.10025,-31.90111],[-54.10521,-31.89525],[-54.11127,-31.89005],[-54.11765,-31.88623],[-54.12619,-31.88283],[-54.13501,-31.87942],[-54.14411,-31.87669],[-54.14919,-31.87497],[-54.15286,-31.87121],[-54.1573,-31.86581],[-54.16257,-31.86155],[-54.17129,-31.85492],[-54.1893,-31.84324],[-54.20178,-31.83606],[-54.21529,-31.82748],[-54.25974,-31.79747],[-54.29281,-31.77577],[-54.30257,-31.76864],[-54.32612,-31.75337],[-54.35758,-31.73284],[-54.36918,-31.72428],[-54.40435,-31.70227],[-54.42416,-31.68914],[-54.43422,-31.68338],[-54.44003,-31.67932],[-54.44853,-31.67544],[-54.45541,-31.67159],[-54.45936,-31.6685],[-54.4614,-31.665],[-54.4608,-31.66294],[-54.45939,-31.66113],[-54.45718,-31.65956],[-54.45163,-31.65462],[-54.4475,-31.65195],[-54.44509,-31.65045],[-54.44724,-31.64935],[-54.43573,-31.64214],[-54.4297,-31.63883],[-54.42557,-31.63615],[-54.42276,-31.63276],[-54.42052,-31.62947],[-54.42265,-31.6259],[-54.42814,-31.62142],[-54.43403,-31.62002],[-54.43921,-31.61591],[-54.44277,-31.60964],[-54.44716,-31.59511],[-54.45201,-31.58744],[-54.46008,-31.57993],[-54.46466,-31.57204],[-54.47705,-31.56604],[-54.48245,-31.55881],[-54.49036,-31.53709],[-54.50461,-31.51317],[-54.52527,-31.49804],[-54.53247,-31.49535],[-54.54041,-31.49495],[-54.54648,-31.49229],[-54.56963,-31.48167],[-54.58335,-31.47633],[-54.59239,-31.47329],[-54.60753,-31.46697],[-54.6198,-31.46228],[-54.63103,-31.45919],[-54.63755,-31.45746],[-54.64558,-31.45695],[-54.65909,-31.45661],[-54.67291,-31.4547],[-54.68232,-31.45196],[-54.69025,-31.44863],[-54.70075,-31.44555],[-54.71317,-31.44012],[-54.7118,-31.43963],[-54.71673,-31.43938],[-54.7246,-31.43774],[-54.73517,-31.43685],[-54.75307,-31.43671],[-54.76554,-31.43795],[-54.78346,-31.43843],[-54.79925,-31.44053],[-54.81175,-31.4424],[-54.82277,-31.44399],[-54.82793,-31.44511],[-54.83481,-31.44337],[-54.84527,-31.43933],[-54.85134,-31.43542],[-54.85657,-31.42839],[-54.86322,-31.42038],[-54.87021,-31.41143],[-54.89018,-31.39774],[-54.90028,-31.39434],[-54.91557,-31.39268],[-54.92831,-31.39172],[-54.93776,-31.39021],[-54.94393,-31.3891],[-54.94774,-31.38336],[-54.949,-31.378],[-54.94871,-31.37018],[-54.94961,-31.36483],[-54.95121,-31.35884],[-54.95472,-31.35498],[-54.95756,-31.35282],[-54.95905,-31.35166],[-54.96422,-31.34501],[-54.9666,-31.34025],[-54.96792,-31.33646],[-54.97136,-31.33072],[-54.97444,-31.32531],[-54.98287,-31.31632],[-54.99451,-31.30534],[-55.00253,-31.2951],[-55.00983,-31.2855],[-55.01371,-31.28195],[-55.01574,-31.28167],[-55.01881,-31.28181],[-55.0211,-31.28425],[-55.02273,-31.28891],[-55.02512,-31.29417],[-55.02939,-31.30094],[-55.03808,-31.30885],[-55.05079,-31.31665],[-55.06153,-31.32073],[-55.07623,-31.32314],[-55.09045,-31.32275],[-55.10351,-31.3205],[-55.11513,-31.31892],[-55.12877,-31.3129],[-55.14092,-31.30598],[-55.1509,-31.29974],[-55.16151,-31.29098],[-55.16715,-31.28581],[-55.17352,-31.28061],[-55.18458,-31.27403],[-55.19319,-31.27034],[-55.20293,-31.26755],[-55.21813,-31.2643],[-55.22611,-31.26281],[-55.2376,-31.25809],[-55.24436,-31.25382],[-55.24853,-31.24869],[-55.25264,-31.24199],[-55.25596,-31.23343],[-55.25857,-31.22584],[-55.26262,-31.21757],[-55.26704,-31.20961],[-55.27081,-31.20354],[-55.27605,-31.19775],[-55.2809,-31.19134],[-55.28364,-31.18688],[-55.28669,-31.18115],[-55.28645,-31.1752],[-55.28696,-31.16954],[-55.28894,-31.16447],[-55.29522,-31.15739],[-55.30125,-31.15314],[-55.31194,-31.14719],[-55.32936,-31.13602],[-55.33564,-31.12925],[-55.33941,-31.12318],[-55.34089,-31.11468],[-55.34088,-31.10559],[-55.34234,-31.09646],[-55.34549,-31.08445],[-55.34974,-31.07242],[-55.35411,-31.06351],[-55.3602,-31.05204],[-55.36743,-31.0418],[-55.37334,-31.03473],[-55.38179,-31.02789],[-55.38892,-31.02392],[-55.39858,-31.01986],[-55.40934,-31.01578],[-55.42118,-31.01166],[-55.42652,-31.00868],[-55.43078,-31.00604],[-55.43488,-30.99964],[-55.43687,-30.99488],[-55.43808,-30.98889],[-55.43964,-30.98258],[-55.44223,-30.97497],[-55.44527,-30.96924],[-55.45092,-30.96499],[-55.45876,-30.96099],[-55.47162,-30.95526],[-55.48344,-30.95083],[-55.49201,-30.9468],[-55.49658,-30.9429],[-55.50132,-30.9346],[-55.50873,-30.92058],[-55.5156,-30.91096],[-55.52053,-30.90705],[-55.54603,-30.89089],[-55.56181,-30.8857],[-55.56641,-30.88273],[-55.57203,-30.87785],[-55.575,-30.87086],[-55.57687,-30.86359],[-55.57983,-30.85629],[-55.58255,-30.85181],[-55.5864,-30.84824],[-55.5928,-30.8449],[-55.60038,-30.84372],[-55.61133,-30.84463],[-55.62308,-30.84739],[-55.63049,-30.85061],[-55.63466,-30.85455],[-55.63715,-30.86168],[-55.63968,-30.86975],[-55.64032,-30.87631],[-55.63961,-30.88511],[-55.63843,-30.89142],[-55.63483,-30.90063],[-55.63406,-30.90817],[-55.63592,-30.91752],[-55.63886,-30.92914],[-55.64284,-30.93716],[-55.64794,-30.94577],[-55.65109,-30.95132],[-55.65714,-30.95645],[-55.66238,-30.95973],[-55.67083,-30.96166],[-55.67807,-30.9608],[-55.68526,-30.95868],[-55.69178,-30.95816],[-55.69761,-30.95828],[-55.7021,-30.96096],[-55.71381,-30.97093],[-55.72066,-30.9776],[-55.72969,-30.9842],[-55.73681,-30.98899],[-55.74849,-30.99769],[-55.75939,-31.00549],[-55.76796,-31.00991],[-55.77361,-31.01411],[-55.78066,-31.01701],[-55.78847,-31.02083],[-55.79717,-31.02807],[-55.80513,-31.03501],[-55.81316,-31.04353],[-55.82027,-31.04768],[-55.82959,-31.05238],[-55.8378,-31.05681],[-55.84335,-31.05882],[-55.8486,-31.06209],[-55.86187,-31.07356],[-55.8698,-31.07957],[-55.87534,-31.08126],[-55.88631,-31.08215],[-55.89798,-31.08238],[-55.90673,-31.0824],[-55.91594,-31.0846],[-55.92775,-31.08796],[-55.93363,-31.08901],[-55.94381,-31.08866],[-55.95106,-31.08779],[-55.95751,-31.08538],[-55.96394,-31.08265],[-55.97314,-31.07669],[-55.98311,-31.07165],[-55.98955,-31.06923],[-55.99458,-31.06781],[-56.00174,-31.06505],[-56.00782,-31.06265],[-56.01063,-31.05639],[-56.01282,-31.04576],[-56.01267,-31.03636],[-56.00967,-31.02293],[-56.01158,-30.99397],[-56.00924,-30.98491],[-56.00529,-30.97977],[-56.006,-30.97768],[-56.01021,-30.97662],[-56.00225,-30.96519],[-56.00682,-30.96022],[-56.00769,-30.94391],[-56.01315,-30.9412],[-56.01483,-30.93701],[-56.00303,-30.92273],[-56.00177,-30.91841],[-56.00789,-30.90651],[-56.00777,-30.89893],[-55.98791,-30.86193],[-55.98701,-30.85966],[-55.9872,-30.85903],[-55.98628,-30.85675],[-55.99045,-30.84285],[-56.00322,-30.83119],[-56.00299,-30.81995],[-56.00701,-30.81477],[-56.01375,-30.81086],[-56.01444,-30.80899],[-56.01088,-30.8045],[-56.01117,-30.80288],[-56.01015,-30.80159],[-56.01058,-30.79928],[-56.02124,-30.79411],[-56.02316,-30.79101],[-56.02016,-30.78629],[-56.02073,-30.78543],[-56.01943,-30.78338],[-56.02068,-30.78151],[-56.03277,-30.7788],[-56.03686,-30.76926],[-56.04059,-30.76937],[-56.04742,-30.77372],[-56.05255,-30.76965],[-56.05915,-30.76874],[-56.06644,-30.75955],[-56.064,-30.74655],[-56.06508,-30.74101],[-56.06788,-30.73839],[-56.0743,-30.73955],[-56.08616,-30.74924],[-56.09013,-30.74911],[-56.09982,-30.73432],[-56.10498,-30.73116],[-56.11189,-30.73116],[-56.12059,-30.73568],[-56.12671,-30.73593],[-56.13027,-30.73259],[-56.12927,-30.71634],[-56.13105,-30.70845],[-56.13404,-30.70447],[-56.14491,-30.69836],[-56.14764,-30.69437],[-56.14791,-30.68862],[-56.14109,-30.67876],[-56.14205,-30.67643],[-56.15968,-30.66734],[-56.16758,-30.66018],[-56.16979,-30.65047],[-56.16671,-30.64116],[-56.16764,-30.63838],[-56.17766,-30.63138],[-56.18021,-30.62326],[-56.175,-30.6138],[-56.17621,-30.61123],[-56.18979,-30.60089],[-56.20253,-30.60114],[-56.21089,-30.59855],[-56.21882,-30.59805],[-56.23066,-30.58455],[-56.23069,-30.58445],[-56.22579,-30.58123],[-56.22529,-30.57847],[-56.22507,-30.57832],[-56.22436,-30.57444],[-56.23033,-30.57171],[-56.24828,-30.57016],[-56.25211,-30.57255],[-56.25599,-30.58183],[-56.2581,-30.58175],[-56.26211,-30.57679],[-56.2624,-30.5715],[-56.25854,-30.56269],[-56.26092,-30.55687],[-56.26527,-30.5535],[-56.27801,-30.54823],[-56.28206,-30.54418],[-56.28464,-30.53698],[-56.28946,-30.53237],[-56.28995,-30.52437],[-56.29026,-30.52117],[-56.29203,-30.51951],[-56.29814,-30.51975],[-56.30721,-30.52654],[-56.32026,-30.52814],[-56.33043,-30.52456],[-56.33426,-30.52144],[-56.33121,-30.51306],[-56.33305,-30.50703],[-56.3361,-30.50439],[-56.34367,-30.50206],[-56.34722,-30.49872],[-56.34966,-30.48853],[-56.35276,-30.48704],[-56.3586,-30.48729],[-56.36084,-30.48973],[-56.35919,-30.49415],[-56.36205,-30.49864],[-56.38321,-30.49237],[-56.38599,-30.48952],[-56.38793,-30.48026],[-56.39522,-30.47666],[-56.39321,-30.47313],[-56.39387,-30.47265],[-56.39249,-30.47023],[-56.39479,-30.46854],[-56.39954,-30.46814],[-56.40335,-30.46479],[-56.40519,-30.45898],[-56.40342,-30.45514],[-56.3983,-30.45349],[-56.39785,-30.44961],[-56.40165,-30.44602],[-56.40793,-30.44442],[-56.41145,-30.44062],[-56.41555,-30.4267],[-56.41979,-30.42654],[-56.4325,-30.43228],[-56.43585,-30.43032],[-56.43774,-30.42566],[-56.44104,-30.42278],[-56.44708,-30.42164],[-56.45054,-30.41647],[-56.44982,-30.41259],[-56.44476,-30.40635],[-56.44543,-30.4038],[-56.45279,-30.39733],[-56.45852,-30.3845],[-56.46164,-30.38323],[-56.46732,-30.38578],[-56.47415,-30.38484],[-56.4782,-30.38653],[-56.48245,-30.39211],[-56.48796,-30.39122],[-56.50061,-30.37928],[-56.50707,-30.37605],[-56.51275,-30.3623],[-56.51695,-30.35887],[-56.52327,-30.35571],[-56.53148,-30.35586],[-56.53939,-30.36062],[-56.54393,-30.3616],[-56.5453,-30.35718],[-56.5426,-30.35063],[-56.54495,-30.34457],[-56.54913,-30.3435],[-56.54981,-30.34253],[-56.54936,-30.34183],[-56.53904,-30.33647],[-56.53607,-30.32992],[-56.53627,-30.32904],[-56.53536,-30.32702],[-56.53925,-30.30943],[-56.54401,-30.30948],[-56.55116,-30.31495],[-56.55752,-30.31517],[-56.56611,-30.30705],[-56.57314,-30.30495],[-56.57641,-30.30138],[-56.57346,-30.29529],[-56.57456,-30.29066],[-56.58167,-30.29016],[-56.59066,-30.29556],[-56.60204,-30.29582],[-56.61075,-30.30055],[-56.61652,-30.29963],[-56.61897,-30.29564],[-56.6172,-30.29203],[-56.60536,-30.28261],[-56.60421,-30.27554],[-56.60723,-30.26716],[-56.61157,-30.26401],[-56.6191,-30.26648],[-56.6333,-30.26502],[-56.63637,-30.26307],[-56.63686,-30.2616],[-56.63573,-30.26005],[-56.62614,-30.25858],[-56.62346,-30.24794],[-56.62703,-30.24],[-56.63929,-30.2315],[-56.64565,-30.22139],[-56.65085,-30.21958],[-56.65777,-30.2207],[-56.66175,-30.21962],[-56.66028,-30.21733],[-56.64855,-30.21525],[-56.64217,-30.20907],[-56.64296,-30.20762],[-56.64145,-30.20616],[-56.64363,-30.20218],[-56.65239,-30.20299],[-56.65871,-30.19724],[-56.66598,-30.19995],[-56.67179,-30.19995],[-56.67743,-30.19652],[-56.68218,-30.19634],[-56.6915,-30.2031],[-56.6965,-30.20268],[-56.70002,-30.1991],[-56.70561,-30.18442],[-56.70288,-30.17741],[-56.70511,-30.17457],[-56.70881,-30.17442],[-56.71503,-30.1774],[-56.72266,-30.17687],[-56.75118,-30.16107],[-56.75682,-30.15983],[-56.77037,-30.16446],[-56.77488,-30.16369],[-56.78015,-30.15948],[-56.7814,-30.153],[-56.77824,-30.13774],[-56.78038,-30.12801],[-56.78588,-30.12477],[-56.79859,-30.12271],[-56.80213,-30.11958],[-56.80084,-30.10999],[-56.80291,-30.10394],[-56.80608,-30.10404],[-56.81179,-30.10726],[-56.81571,-30.10642],[-56.82919,-30.09142],[-56.83509,-30.0882],[-56.85221,-30.08753],[-56.86171,-30.09266],[-56.86594,-30.09272],[-56.87059,-30.08565],[-56.87691,-30.0854],[-56.89131,-30.09332],[-56.89862,-30.10681],[-56.90126,-30.10693],[-56.90591,-30.10491],[-56.9122,-30.10489],[-56.91299,-30.10257],[-56.91232,-30.10069],[-56.91254,-30.1004],[-56.91161,-30.09779],[-56.91655,-30.09139],[-56.92469,-30.09061],[-56.95917,-30.09504],[-56.97896,-30.09347],[-56.9896,-30.08018],[-56.99184,-30.07969],[-56.9993,-30.08054],[-57.00665,-30.08372],[-57.01494,-30.08531],[-57.02173,-30.08886],[-57.02609,-30.09392],[-57.03286,-30.09747],[-57.04072,-30.09863],[-57.05197,-30.09752],[-57.06197,-30.09391],[-57.06319,-30.0891],[-57.06311,-30.08874],[-57.06834,-30.08775],[-57.07468,-30.09087],[-57.08404,-30.09818],[-57.08791,-30.10362],[-57.08609,-30.11083],[-57.08384,-30.11363],[-57.08489,-30.11642],[-57.08847,-30.11901],[-57.09277,-30.11717],[-57.09408,-30.11075],[-57.09931,-30.10896],[-57.10387,-30.11078],[-57.1094,-30.11184],[-57.11141,-30.11511],[-57.11271,-30.11505],[-57.11195,-30.116],[-57.11123,-30.11657],[-57.11266,-30.1189],[-57.11021,-30.12082],[-57.1076,-30.13287],[-57.10913,-30.13941],[-57.11419,-30.14044],[-57.12122,-30.13994],[-57.1271,-30.14304],[-57.13133,-30.15052],[-57.15128,-30.18422],[-57.15849,-30.18859],[-57.16323,-30.19528],[-57.16522,-30.19984],[-57.16415,-30.20461],[-57.16059,-30.20972],[-57.15814,-30.21974],[-57.15713,-30.22901],[-57.15801,-30.23037],[-57.15784,-30.23191],[-57.15998,-30.23525],[-57.16721,-30.23921],[-57.17154,-30.24507],[-57.17522,-30.24605],[-57.18145,-30.25118],[-57.1886,-30.25676],[-57.19391,-30.26185],[-57.19931,-30.27344],[-57.20678,-30.28146],[-57.21737,-30.28395],[-57.22708,-30.28559],[-57.23954,-30.28432],[-57.25128,-30.28065],[-57.25428,-30.27543],[-57.25744,-30.26908],[-57.26135,-30.26601],[-57.26386,-30.26753],[-57.26405,-30.26893],[-57.26508,-30.27546],[-57.26864,-30.27845],[-57.27564,-30.28685],[-57.28504,-30.28564],[-57.29191,-30.27986],[-57.29989,-30.27089],[-57.30167,-30.26408],[-57.30665,-30.25862],[-57.31236,-30.25684],[-57.32009,-30.26041],[-57.32529,-30.26753],[-57.33307,-30.27029],[-57.33987,-30.27382],[-57.34439,-30.27644],[-57.34982,-30.27951],[-57.35317,-30.27803],[-57.35959,-30.27183],[-57.36398,-30.26837],[-57.3733,-30.26877],[-57.37771,-30.27341],[-57.38735,-30.29286],[-57.3922,-30.29792],[-57.39491,-30.29966],[-57.39966,-30.29919],[-57.40301,-30.29676],[-57.40785,-30.29401],[-57.41433,-30.29481],[-57.41798,-30.29329],[-57.41979,-30.28896],[-57.42028,-30.28008],[-57.42241,-30.27546],[-57.42493,-30.27217],[-57.4334,-30.27091],[-57.44493,-30.27342],[-57.4556,-30.26617],[-57.46328,-30.26244],[-57.47077,-30.26195],[-57.47678,-30.26301],[-57.48036,-30.26527],[-57.48512,-30.26842],[-57.49295,-30.27442],[-57.49923,-30.27914],[-57.50573,-30.27981],[-57.52128,-30.27722],[-57.53768,-30.27182],[-57.55003,-30.26362],[-57.55658,-30.25478],[-57.55868,-30.24616],[-57.55657,-30.23351],[-57.55418,-30.22167],[-57.55515,-30.2124],[-57.56109,-30.20616],[-57.56983,-30.19984],[-57.57904,-30.19778],[-57.60344,-30.18643],[-57.614,-30.18079],[-57.61522,-30.17911],[-57.60912,-30.179],[-57.59293,-30.17651],[-57.57793,-30.17361],[-57.55972,-30.16827],[-57.50484,-30.14307],[-57.46673,-30.11577],[-57.45773,-30.10667],[-57.44239,-30.07389],[-57.41204,-30.0407],[-57.40065,-30.03195],[-57.3815,-30.02058],[-57.35848,-30.01249],[-57.34671,-30.00602],[-57.34197,-30.00123],[-57.32856,-29.98183],[-57.32479,-29.96886],[-57.32498,-29.96903],[-57.32124,-29.95614],[-57.31926,-29.91655],[-57.32203,-29.88612],[-57.31834,-29.86758],[-57.30649,-29.84893],[-57.28285,-29.8199],[-57.25287,-29.7915],[-57.23599,-29.77837],[-57.21787,-29.77299],[-57.19019,-29.77363],[-57.17031,-29.77598],[-57.16403,-29.77524],[-57.13642,-29.76576],[-57.1045,-29.74897],[-57.05556,-29.70406],[-57.04323,-29.69019],[-57.01942,-29.65696],[-57.00893,-29.65189],[-56.9993,-29.64483],[-56.98893,-29.64015],[-56.97881,-29.6365],[-56.97265,-29.63594],[-56.97093,-29.63738],[-56.96937,-29.63524],[-56.96887,-29.63262],[-56.96867,-29.63235],[-56.96703,-29.62375],[-56.9699,-29.61243],[-56.97047,-29.60595],[-56.96689,-29.60092],[-56.96236,-29.59644],[-56.95943,-29.59189],[-56.95435,-29.58696],[-56.94481,-29.57894],[-56.92232,-29.55885],[-56.91159,-29.54854],[-56.90704,-29.54359],[-56.90031,-29.53779],[-56.89625,-29.53189],[-56.89533,-29.52986],[-56.89676,-29.53077],[-56.89554,-29.52899],[-56.89285,-29.5231],[-56.88911,-29.51851],[-56.88461,-29.51428],[-56.8817,-29.51197],[-56.87383,-29.50863],[-56.86641,-29.50758],[-56.86154,-29.50371],[-56.85561,-29.50032],[-56.85539,-29.50269],[-56.85505,-29.50249],[-56.8455,-29.49814],[-56.83671,-29.49341],[-56.82872,-29.48899],[-56.82264,-29.48415],[-56.81603,-29.47662],[-56.8139,-29.47298],[-56.81123,-29.46664],[-56.80864,-29.46166],[-56.80323,-29.45476],[-56.79981,-29.44879],[-56.7957,-29.44455],[-56.78969,-29.44073],[-56.7836,-29.43555],[-56.7822,-29.4312],[-56.78215,-29.43037],[-56.78149,-29.4283],[-56.78121,-29.42288],[-56.78076,-29.42025],[-56.77872,-29.41972],[-56.77967,-29.41373],[-56.77951,-29.41278],[-56.77955,-29.40633],[-56.77963,-29.40196],[-56.77812,-29.39813],[-56.77551,-29.3928],[-56.7701,-29.3859],[-56.76516,-29.38034],[-56.75837,-29.37654],[-56.75164,-29.37376],[-56.74151,-29.37281],[-56.73018,-29.3709],[-56.71995,-29.36792],[-56.71239,-29.36415],[-56.70841,-29.36194],[-56.70337,-29.35468],[-56.69882,-29.3491],[-56.6939,-29.34387],[-56.68815,-29.33765],[-56.68232,-29.32975],[-56.67568,-29.32119],[-56.67186,-29.3149],[-56.66954,-29.30753],[-56.66474,-29.29721],[-56.66304,-29.29422],[-56.65789,-29.28459],[-56.65614,-29.28059],[-56.65625,-29.27956],[-56.65543,-29.2777],[-56.65619,-29.27056],[-56.65379,-29.26115],[-56.65195,-29.24799],[-56.65131,-29.23581],[-56.64968,-29.21925],[-56.64561,-29.20788],[-56.63994,-29.19556],[-56.634,-29.18528],[-56.62766,-29.17502],[-56.61982,-29.16549],[-56.61325,-29.15795],[-56.60687,-29.14667],[-56.60415,-29.13897],[-56.60111,-29.13231],[-56.59728,-29.12669],[-56.59665,-29.12763],[-56.59596,-29.12662],[-56.59307,-29.123],[-56.58634,-29.11987],[-56.57614,-29.11688],[-56.56361,-29.11364],[-56.53946,-29.10984],[-56.53036,-29.10578],[-56.52162,-29.10104],[-56.51249,-29.0963],[-56.50421,-29.09289],[-56.49635,-29.09015],[-56.48658,-29.08815],[-56.47651,-29.08752],[-56.46331,-29.08633],[-56.45207,-29.08541],[-56.44228,-29.08273],[-56.4348,-29.07997],[-56.42844,-29.07648],[-56.42479,-29.07289],[-56.42023,-29.06661],[-56.41733,-29.06266],[-56.4155,-29.05559],[-56.41472,-29.05271],[-56.41176,-29.0474],[-56.40797,-29.0411],[-56.40539,-29.03577],[-56.40316,-29.02975],[-56.40155,-29.02066],[-56.40277,-29.01416],[-56.40667,-29.00723],[-56.41026,-29.00167],[-56.41242,-28.99853],[-56.4125,-28.99242],[-56.41171,-28.98342],[-56.41017,-28.97657],[-56.40563,-28.97064],[-56.39955,-28.96477],[-56.39066,-28.95662],[-56.3803,-28.9499],[-56.37044,-28.94552],[-56.35671,-28.94095],[-56.34533,-28.93697],[-56.33744,-28.93354],[-56.33202,-28.92994],[-56.3238,-28.92445],[-56.32254,-28.92524],[-56.3185,-28.92089],[-56.31402,-28.91597],[-56.31022,-28.90933],[-56.30583,-28.8983],[-56.30384,-28.88887],[-56.30177,-28.87981],[-56.30113,-28.8769],[-56.30029,-28.86744],[-56.30056,-28.85725],[-56.30168,-28.84839],[-56.30316,-28.83917],[-56.30387,-28.82999],[-56.3028,-28.82393],[-56.30013,-28.81656],[-56.29743,-28.80852],[-56.29244,-28.80091],[-56.28793,-28.79531],[-56.28426,-28.79104],[-56.27435,-28.7853],[-56.26686,-28.78185],[-56.25787,-28.77913],[-56.24812,-28.77644],[-56.23451,-28.77389],[-56.22677,-28.77316],[-56.21596,-28.77254],[-56.20559,-28.77326],[-56.19556,-28.77295],[-56.1917,-28.77275],[-56.18416,-28.76794],[-56.17895,-28.76372],[-56.17568,-28.75977],[-56.17201,-28.75549],[-56.1686,-28.7485],[-56.16639,-28.74247],[-56.16218,-28.73482],[-56.15723,-28.72788],[-56.15226,-28.72026],[-56.14646,-28.71165],[-56.14144,-28.70302],[-56.1394,-28.70071],[-56.1342,-28.69649],[-56.12895,-28.69126],[-56.12174,-28.68507],[-56.11491,-28.67888],[-56.10894,-28.67468],[-56.09977,-28.66789],[-56.08531,-28.65484],[-56.07893,-28.64998],[-56.0737,-28.64508],[-56.06688,-28.63888],[-56.05967,-28.6327],[-56.05173,-28.62757],[-56.05153,-28.6274],[-56.04538,-28.62303],[-56.0383,-28.61955],[-56.02853,-28.61617],[-56.0214,-28.61167],[-56.01545,-28.60781],[-56.01221,-28.6042],[-56.01048,-28.59985],[-56.00795,-28.59519],[-56.0066,-28.59083],[-56.00741,-28.58334],[-56.00795,-28.57823],[-56.01029,-28.57069],[-56.01276,-28.56585],[-56.01526,-28.56169],[-56.01693,-28.5562],[-56.0196,-28.54729],[-56.02204,-28.54178],[-56.02383,-28.539],[-56.02356,-28.5329],[-56.02203,-28.52482],[-56.02159,-28.52238],[-56.0184,-28.51667],[-56.01515,-28.51271],[-56.01075,-28.50914],[-56.00681,-28.5069],[-55.99896,-28.50311],[-55.9939,-28.50193],[-55.98579,-28.50086],[-55.97996,-28.49937],[-55.97416,-28.49855],[-55.9687,-28.49671],[-55.96405,-28.49586],[-55.95326,-28.49488],[-55.94514,-28.49381],[-55.93854,-28.49234],[-55.9331,-28.49083],[-55.92761,-28.48831],[-55.92054,-28.48483],[-55.91744,-28.48426],[-55.91354,-28.48303],[-55.90276,-28.48239],[-55.8935,-28.48135],[-55.88802,-28.47917],[-55.88599,-28.47653],[-55.88463,-28.47128],[-55.88389,-28.4686],[-55.88439,-28.46248],[-55.88562,-28.45565],[-55.88733,-28.44875],[-55.88991,-28.4399],[-55.89337,-28.4313],[-55.89779,-28.4186],[-55.9011,-28.40661],[-55.90044,-28.40052],[-55.8991,-28.39616],[-55.89576,-28.39018],[-55.89082,-28.38254],[-55.88501,-28.37291],[-55.87775,-28.36502],[-55.87405,-28.35938],[-55.86767,-28.35383],[-55.86341,-28.35296],[-55.8588,-28.35278],[-55.84772,-28.35384],[-55.83555,-28.35629],[-55.82454,-28.3587],[-55.81807,-28.35994],[-55.81125,-28.36187],[-55.8063,-28.36271],[-55.80058,-28.36359],[-55.79295,-28.36452],[-55.78567,-28.36477],[-55.77729,-28.36607],[-55.76965,-28.36701],[-55.76663,-28.36813],[-55.76134,-28.37],[-55.75604,-28.37154],[-55.74843,-28.37281],[-55.74465,-28.37429],[-55.73753,-28.37826],[-55.73267,-28.38114],[-55.72902,-28.38567],[-55.72657,-28.39118],[-55.72417,-28.3977],[-55.72286,-28.40283],[-55.72105,-28.40561],[-55.71672,-28.41186],[-55.71133,-28.42051],[-55.70723,-28.42337],[-55.70384,-28.42484],[-55.69883,-28.42432],[-55.69491,-28.42242],[-55.69285,-28.41909],[-55.69164,-28.41701],[-55.68982,-28.41537],[-55.68811,-28.40773],[-55.68585,-28.39898],[-55.68437,-28.39191],[-55.68286,-28.38604],[-55.67972,-28.37631],[-55.67669,-28.36828],[-55.67427,-28.3653],[-55.6713,-28.35861],[-55.67104,-28.35677],[-55.67058,-28.35573],[-55.66947,-28.34762],[-55.66826,-28.33715],[-55.66988,-28.33031],[-55.67309,-28.32444],[-55.67601,-28.32095],[-55.68159,-28.31704],[-55.68865,-28.31171],[-55.70179,-28.30518],[-55.71533,-28.29896],[-55.72657,-28.29282],[-55.73895,-28.28664],[-55.74609,-28.28334],[-55.75019,-28.28049],[-55.75388,-28.27732],[-55.75672,-28.2746],[-55.76515,-28.27185],[-55.77065,-28.26624],[-55.77313,-28.2614],[-55.77463,-28.25186],[-55.77483,-28.24778],[-55.77238,-28.24413],[-55.76842,-28.24121],[-55.76209,-28.23668],[-55.75619,-28.23314],[-55.75036,-28.2313],[-55.74301,-28.22952],[-55.72673,-28.22531],[-55.71823,-28.22356],[-55.7101,-28.22146],[-55.70155,-28.21869],[-55.69259,-28.21526],[-55.68705,-28.21103],[-55.6819,-28.20713],[-55.67752,-28.20321],[-55.6743,-28.19958],[-55.66717,-28.19405],[-55.6632,-28.19079],[-55.65734,-28.18793],[-55.65188,-28.18574],[-55.64406,-28.18192],[-55.63741,-28.17841],[-55.63504,-28.17679],[-55.62827,-28.17057],[-55.62185,-28.16366],[-55.61898,-28.159],[-55.61721,-28.1533],[-55.61702,-28.14889],[-55.61915,-28.14475],[-55.61938,-28.14135],[-55.61875,-28.13885],[-55.61738,-28.13416],[-55.61448,-28.12882],[-55.61012,-28.12523],[-55.60466,-28.12269],[-55.59844,-28.12053],[-55.58998,-28.11944],[-55.58501,-28.1196],[-55.58202,-28.1214],[-55.57906,-28.12387],[-55.57473,-28.13011],[-55.57266,-28.13561],[-55.57212,-28.14105],[-55.5709,-28.14855],[-55.57036,-28.154],[-55.56795,-28.16052],[-55.56344,-28.1627],[-55.55776,-28.16424],[-55.55431,-28.16401],[-55.54917,-28.16011],[-55.54481,-28.15652],[-55.54272,-28.15217],[-55.54013,-28.14513],[-55.53977,-28.14323],[-55.53941,-28.14225],[-55.53797,-28.13449],[-55.53711,-28.13087],[-55.53597,-28.12763],[-55.53153,-28.12201],[-55.52837,-28.11974],[-55.5237,-28.11785],[-55.51678,-28.11705],[-55.51172,-28.11518],[-55.50808,-28.11021],[-55.50427,-28.10117],[-55.50249,-28.09512],[-55.50073,-28.08839],[-55.49996,-28.08551],[-55.49749,-28.08118],[-55.49507,-28.0782],[-55.49004,-28.07667],[-55.4851,-28.0775],[-55.4806,-28.07968],[-55.47686,-28.08184],[-55.47351,-28.08432],[-55.4661,-28.09032],[-55.45863,-28.09462],[-55.45372,-28.09647],[-55.44798,-28.09631],[-55.44369,-28.09441],[-55.4406,-28.09129],[-55.43739,-28.08667],[-55.43684,-28.08701],[-55.43589,-28.08502],[-55.43258,-28.07902],[-55.42612,-28.0704],[-55.42017,-28.06516],[-55.41312,-28.06097],[-55.40061,-28.05424],[-55.39083,-28.04878],[-55.38415,-28.04424],[-55.37864,-28.04034],[-55.37429,-28.03483],[-55.3753,-28.03414],[-55.37325,-28.03155],[-55.37022,-28.0265],[-55.3681,-28.02114],[-55.37257,-28.00879],[-55.37618,-28.00325],[-55.38022,-27.99905],[-55.38276,-27.99558],[-55.38381,-27.99318],[-55.3856,-27.99007],[-55.38475,-27.98806],[-55.38269,-27.98439],[-55.37639,-27.9795],[-55.37019,-27.97732],[-55.36216,-27.97425],[-55.34389,-27.9726],[-55.33788,-27.96617],[-55.34115,-27.96508],[-55.33901,-27.962],[-55.33757,-27.95424],[-55.33505,-27.94394],[-55.3314,-27.93767],[-55.32697,-27.9317],[-55.323,-27.92809],[-55.3172,-27.92623],[-55.30719,-27.92416],[-55.29645,-27.92313],[-55.2834,-27.92149],[-55.27763,-27.9207],[-55.27762,-27.9179],[-55.26655,-27.91638],[-55.26,-27.91489],[-55.25334,-27.91068],[-55.24696,-27.90375],[-55.23818,-27.89383],[-55.23745,-27.8931],[-55.24075,-27.89881],[-55.2389,-27.89672],[-55.23136,-27.88915],[-55.22266,-27.88127],[-55.21206,-27.87378],[-55.20301,-27.86659],[-55.196,-27.86307],[-55.19023,-27.86188],[-55.18334,-27.86141],[-55.17458,-27.86201],[-55.16937,-27.86555],[-55.16193,-27.87086],[-55.15873,-27.87706],[-55.15444,-27.88498],[-55.14891,-27.89023],[-55.14062,-27.89319],[-55.13383,-27.89542],[-55.12881,-27.89388],[-55.12523,-27.88991],[-55.12473,-27.88728],[-55.1245,-27.88702],[-55.12355,-27.88196],[-55.12288,-27.87418],[-55.12409,-27.86567],[-55.12449,-27.8611],[-55.12211,-27.85744],[-55.11699,-27.85318],[-55.10847,-27.85004],[-55.09998,-27.84757],[-55.09078,-27.84648],[-55.08582,-27.84662],[-55.0767,-27.84757],[-55.07146,-27.85043],[-55.06204,-27.85375],[-55.05291,-27.85469],[-55.0434,-27.85564],[-55.03537,-27.85519],[-55.03189,-27.85394],[-55.02832,-27.85031],[-55.0262,-27.8446],[-55.02609,-27.84337],[-55.02548,-27.84171],[-55.02485,-27.83495],[-55.02546,-27.83086],[-55.03133,-27.82425],[-55.03646,-27.81834],[-55.04058,-27.81619],[-55.04694,-27.81295],[-55.0514,-27.80944],[-55.05357,-27.80819],[-55.06414,-27.80296],[-55.07128,-27.80005],[-55.07757,-27.79478],[-55.08005,-27.78962],[-55.0809,-27.78733],[-55.07978,-27.78609],[-55.07035,-27.77856],[-55.06295,-27.77437],[-55.05871,-27.77313],[-55.05332,-27.77193],[-55.04687,-27.77279],[-55.04097,-27.77839],[-55.03616,-27.78259],[-55.02736,-27.79234],[-55.02103,-27.79659],[-55.01381,-27.79747],[-55.00802,-27.7956],[-55.00293,-27.79202],[-55,-27.79012],[-54.99643,-27.78704],[-54.99442,-27.78306],[-54.9912,-27.78029],[-54.98686,-27.77634],[-54.9826,-27.77442],[-54.97762,-27.77389],[-54.97747,-27.77391],[-54.97802,-27.77683],[-54.97342,-27.77759],[-54.96354,-27.77854],[-54.95519,-27.77979],[-54.94719,-27.78002],[-54.94053,-27.77512],[-54.93723,-27.76809],[-54.93506,-27.76068],[-54.93226,-27.75703],[-54.92755,-27.75343],[-54.9221,-27.75019],[-54.91578,-27.74392],[-54.9102,-27.7373],[-54.90692,-27.7306],[-54.90393,-27.72153],[-54.90387,-27.72067],[-54.9032,-27.71864],[-54.90246,-27.70849],[-54.90252,-27.70635],[-54.90218,-27.69898],[-54.90277,-27.69859],[-54.90278,-27.68998],[-54.90274,-27.68373],[-54.90278,-27.66304],[-54.90319,-27.65319],[-54.90295,-27.6465],[-54.90034,-27.64091],[-54.8956,-27.6363],[-54.88442,-27.6322],[-54.87368,-27.63012],[-54.86569,-27.63034],[-54.85993,-27.62914],[-54.8526,-27.62662],[-54.84716,-27.62338],[-54.84597,-27.62154],[-54.8462,-27.62015],[-54.84361,-27.61616],[-54.83999,-27.6105],[-54.83655,-27.59906],[-54.82896,-27.5779],[-54.82513,-27.56614],[-54.8234,-27.56008],[-54.82284,-27.55467],[-54.81826,-27.54326],[-54.817,-27.5399],[-54.81189,-27.53529],[-54.80801,-27.53302],[-54.80383,-27.53314],[-54.8001,-27.53527],[-54.79638,-27.53775],[-54.79417,-27.54018],[-54.79317,-27.54427],[-54.79261,-27.55005],[-54.79237,-27.55413],[-54.78992,-27.56064],[-54.7882,-27.56611],[-54.78641,-27.56921],[-54.78725,-27.57123],[-54.78727,-27.57186],[-54.78714,-27.57209],[-54.78796,-27.57411],[-54.78809,-27.57783],[-54.78737,-27.57887],[-54.78592,-27.58128],[-54.78449,-27.58403],[-54.78115,-27.5865],[-54.77511,-27.58802],[-54.76897,-27.58648],[-54.76395,-27.58458],[-54.75923,-27.57996],[-54.75215,-27.57337],[-54.74747,-27.5701],[-54.74165,-27.56686],[-54.73702,-27.56495],[-54.73206,-27.56474],[-54.72601,-27.56592],[-54.72304,-27.56697],[-54.72333,-27.56373],[-54.72114,-27.5645],[-54.71634,-27.56597],[-54.70547,-27.56897],[-54.69851,-27.57086],[-54.6884,-27.57314],[-54.68258,-27.57263],[-54.67489,-27.57046],[-54.67025,-27.5682],[-54.66862,-27.56485],[-54.66827,-27.56169],[-54.66975,-27.55359],[-54.67346,-27.53862],[-54.67584,-27.52974],[-54.67738,-27.51885],[-54.6772,-27.51338],[-54.67472,-27.5113],[-54.67052,-27.51074],[-54.66524,-27.51223],[-54.66004,-27.51609],[-54.65637,-27.52026],[-54.6514,-27.53124],[-54.6479,-27.54082],[-54.64752,-27.54135],[-54.64354,-27.5467],[-54.63869,-27.54988],[-54.62959,-27.55079],[-54.62385,-27.54992],[-54.62036,-27.54798],[-54.61718,-27.54365],[-54.61396,-27.5383],[-54.61185,-27.53191],[-54.60929,-27.5235],[-54.60638,-27.51578],[-54.60442,-27.51195],[-54.60514,-27.51191],[-54.60118,-27.50419],[-54.5994,-27.50129],[-54.59584,-27.49666],[-54.59369,-27.49141],[-54.59098,-27.48597],[-54.58868,-27.47765],[-54.5865,-27.46848],[-54.58424,-27.46296],[-54.58119,-27.46039],[-54.57641,-27.4583],[-54.57317,-27.45772],[-54.56675,-27.4581],[-54.56356,-27.45929],[-54.55945,-27.46226],[-54.55758,-27.46584],[-54.55332,-27.47214],[-54.5507,-27.47552],[-54.5457,-27.48183],[-54.54211,-27.48612],[-54.53439,-27.50045],[-54.53106,-27.50495],[-54.52691,-27.50682],[-54.52468,-27.50687],[-54.52143,-27.50607],[-54.51767,-27.50484],[-54.5154,-27.50335],[-54.51383,-27.50096],[-54.51152,-27.49837],[-54.50897,-27.496],[-54.50669,-27.49451],[-54.50514,-27.49234],[-54.50332,-27.48973],[-54.50153,-27.48801],[-54.49872,-27.48521],[-54.49568,-27.48329],[-54.4927,-27.48292],[-54.48693,-27.48086],[-54.48194,-27.47965],[-54.47552,-27.48048],[-54.47229,-27.48011],[-54.46882,-27.47998],[-54.4646,-27.48008],[-54.45815,-27.47979],[-54.4544,-27.47856],[-54.44963,-27.47647],[-54.44703,-27.47255],[-54.44543,-27.46906],[-54.44519,-27.46727],[-54.4447,-27.46617],[-54.44437,-27.46375],[-54.44688,-27.45684],[-54.44781,-27.45461],[-54.45215,-27.45075],[-54.45553,-27.44802],[-54.46041,-27.44547],[-54.464,-27.4414],[-54.46685,-27.43736],[-54.46975,-27.43529],[-54.47091,-27.43262],[-54.47157,-27.43038],[-54.47046,-27.42912],[-54.46844,-27.42807],[-54.4637,-27.42686],[-54.45773,-27.42612],[-54.45104,-27.42584],[-54.44384,-27.42558],[-54.43736,-27.42397],[-54.43232,-27.42144],[-54.42753,-27.41846],[-54.42398,-27.41589],[-54.41995,-27.41378],[-54.41495,-27.41213],[-54.41073,-27.4118],[-54.40481,-27.4126],[-54.40188,-27.414],[-54.39531,-27.41769],[-54.39097,-27.42177],[-54.38555,-27.43074],[-54.38036,-27.43925],[-54.37236,-27.45336],[-54.36882,-27.45941],[-54.3645,-27.46371],[-54.35787,-27.46564],[-54.35321,-27.46751],[-54.34555,-27.46813],[-54.34027,-27.46561],[-54.33692,-27.46127],[-54.33682,-27.46029],[-54.33867,-27.46161],[-54.33619,-27.45839],[-54.33548,-27.45155],[-54.33622,-27.44292],[-54.34019,-27.43488],[-54.34367,-27.42706],[-54.34391,-27.41866],[-54.34389,-27.41068],[-54.3425,-27.40768],[-54.33897,-27.40555],[-54.33452,-27.40543],[-54.32962,-27.40732],[-54.32309,-27.41106],[-54.3179,-27.41418],[-54.31369,-27.41813],[-54.31001,-27.42336],[-54.30771,-27.42683],[-54.30492,-27.4299],[-54.30173,-27.43554],[-54.29852,-27.44075],[-54.28812,-27.44614],[-54.28238,-27.44712],[-54.27752,-27.44509],[-54.27305,-27.44005],[-54.26649,-27.42907],[-54.26644,-27.42735],[-54.26575,-27.42619],[-54.26564,-27.42234],[-54.26652,-27.41975],[-54.2678,-27.41415],[-54.26858,-27.40814],[-54.26823,-27.40523],[-54.26518,-27.40084],[-54.25934,-27.39798],[-54.25354,-27.3964],[-54.24724,-27.3944],[-54.23951,-27.39286],[-54.23227,-27.39132],[-54.22743,-27.3914],[-54.22221,-27.38837],[-54.21858,-27.38473],[-54.21625,-27.38164],[-54.21415,-27.37539],[-54.21412,-27.37456],[-54.21341,-27.37251],[-54.21283,-27.35222],[-54.21095,-27.34253],[-54.20974,-27.33522],[-54.20674,-27.32922],[-54.20138,-27.32105],[-54.19565,-27.31117],[-54.19189,-27.30296],[-54.19154,-27.30092],[-54.19115,-27.30008],[-54.19,-27.29352],[-54.18922,-27.28839],[-54.18796,-27.27784],[-54.18704,-27.27358],[-54.18453,-27.26937],[-54.18023,-27.26432],[-54.17596,-27.2607],[-54.17014,-27.25883],[-54.16661,-27.25833],[-54.16406,-27.25868],[-54.16155,-27.26073],[-54.1591,-27.26451],[-54.15731,-27.26912],[-54.15678,-27.27314],[-54.15826,-27.28026],[-54.15813,-27.28712],[-54.1583,-27.29313],[-54.15649,-27.29689],[-54.1549,-27.2981],[-54.15488,-27.29667],[-54.15755,-27.29327],[-54.15722,-27.29096],[-54.15575,-27.294],[-54.1523,-27.29665],[-54.14564,-27.29909],[-54.1424,-27.29934],[-54.12989,-27.3016],[-54.11129,-27.3028],[-54.11065,-27.3048],[-54.1093,-27.30479],[-54.09839,-27.30389],[-54.08906,-27.30265],[-54.08097,-27.29969],[-54.07573,-27.29522],[-54.07144,-27.29074],[-54.06473,-27.27973],[-54.06067,-27.27152],[-54.05669,-27.26646],[-54.05308,-27.26339],[-54.04756,-27.26065],[-54.03788,-27.25771],[-54.02981,-27.25531],[-54.02526,-27.25283],[-54.02163,-27.24862],[-54.0183,-27.24383],[-54.01769,-27.24113],[-54.01756,-27.24094],[-54.01537,-27.23127],[-54.01476,-27.22041],[-54.0136,-27.213],[-54.01263,-27.20798],[-54.00892,-27.20456],[-54.00115,-27.201],[-53.99278,-27.19946],[-53.98572,-27.19847],[-53.97868,-27.19861],[-53.97457,-27.20042],[-53.97046,-27.2025],[-53.96439,-27.20263],[-53.95956,-27.20159],[-53.95662,-27.19936],[-53.95481,-27.1925],[-53.95469,-27.18792],[-53.95555,-27.17189],[-53.95509,-27.16646],[-53.95369,-27.16191],[-53.95136,-27.15825],[-53.94872,-27.15544],[-53.94388,-27.15382],[-53.93747,-27.15339],[-53.93368,-27.15518],[-53.92804,-27.15987],[-53.92181,-27.166],[-53.91683,-27.17126],[-53.91114,-27.17423],[-53.90571,-27.17463],[-53.90122,-27.17415],[-53.89699,-27.17138],[-53.8927,-27.16632],[-53.88723,-27.15385],[-53.88594,-27.14903],[-53.88515,-27.14616],[-53.88236,-27.13707],[-53.87809,-27.13286],[-53.87453,-27.13122],[-53.86839,-27.1308],[-53.86301,-27.13088],[-53.8573,-27.13271],[-53.85482,-27.1359],[-53.85251,-27.14539],[-53.84827,-27.15491],[-53.84487,-27.15984],[-53.83575,-27.16603],[-53.83325,-27.16744],[-53.8338,-27.16952],[-53.83033,-27.17095],[-53.83053,-27.16898],[-53.83024,-27.16139],[-53.83072,-27.15637],[-53.8288,-27.15112],[-53.82149,-27.14574],[-53.79786,-27.14457],[-53.79599,-27.14139],[-53.79845,-27.13675],[-53.80544,-27.13915],[-53.81594,-27.1385],[-53.81895,-27.13545],[-53.82018,-27.13234],[-53.81979,-27.13144],[-53.8085,-27.13096],[-53.80419,-27.12208],[-53.80441,-27.1212],[-53.80344,-27.1192],[-53.80486,-27.11366],[-53.81292,-27.10708],[-53.81387,-27.10498],[-53.81301,-27.10378],[-53.80866,-27.10409],[-53.79833,-27.11231],[-53.79269,-27.11265],[-53.77951,-27.10853],[-53.77533,-27.10492],[-53.77692,-27.10406],[-53.77458,-27.10204],[-53.79435,-27.09135],[-53.79811,-27.08738],[-53.79953,-27.08117],[-53.79619,-27.07446],[-53.79363,-27.07473],[-53.78329,-27.0825],[-53.77661,-27.08193],[-53.774,-27.07991],[-53.77335,-27.0771],[-53.77326,-27.07703],[-53.77241,-27.07337],[-53.77982,-27.07232],[-53.79192,-27.06314],[-53.79622,-27.04905],[-53.79434,-27.04495],[-53.78975,-27.04641],[-53.76867,-27.06678],[-53.7646,-27.068],[-53.76201,-27.0669],[-53.76017,-27.06532],[-53.75983,-27.06099],[-53.76569,-27.05971],[-53.76821,-27.0576],[-53.77699,-27.03723],[-53.77694,-27.03509],[-53.76483,-27.04816],[-53.76254,-27.04889],[-53.75995,-27.04755],[-53.75801,-27.04093],[-53.74873,-27.03857],[-53.74689,-27.03677],[-53.74656,-27.03429],[-53.74615,-27.03388],[-53.74553,-27.0293],[-53.75311,-27.02388],[-53.75705,-27.01665],[-53.75562,-27.01433],[-53.75074,-27.0135],[-53.73932,-27.01876],[-53.73597,-27.01813],[-53.73284,-27.01543],[-53.7307,-27.01133],[-53.73108,-27.01061],[-53.72995,-27.00845],[-53.73179,-27.00499],[-53.7316,-27.00478],[-53.73196,-27.00467],[-53.73951,-27.00024],[-53.74091,-26.99811],[-53.74012,-26.99692],[-53.72737,-26.99968],[-53.7204,-26.99751],[-53.71827,-26.99364],[-53.71873,-26.99294],[-53.71752,-26.99076],[-53.71951,-26.98774],[-53.73065,-26.98157],[-53.73362,-26.97692],[-53.72866,-26.97265],[-53.72644,-26.96511],[-53.72258,-26.96426],[-53.71008,-26.96654],[-53.70517,-26.96457],[-53.70194,-26.95727],[-53.70496,-26.94298],[-53.70388,-26.94024],[-53.69902,-26.94079],[-53.68813,-26.94649],[-53.67717,-26.94898],[-53.67432,-26.94742],[-53.67405,-26.94581],[-53.67333,-26.94594],[-53.67255,-26.94483],[-53.67383,-26.94454],[-53.69,-26.93796],[-53.69252,-26.93539],[-53.69132,-26.9321],[-53.67757,-26.92408],[-53.67491,-26.91907],[-53.67523,-26.91819],[-53.67416,-26.91619],[-53.67661,-26.90938],[-53.67406,-26.90324],[-53.67429,-26.9027],[-53.67331,-26.90036],[-53.67429,-26.8981],[-53.67176,-26.89303],[-53.68418,-26.89523],[-53.68728,-26.89483],[-53.69054,-26.89179],[-53.69046,-26.88836],[-53.68452,-26.87779],[-53.68504,-26.87715],[-53.68378,-26.87491],[-53.69001,-26.86722],[-53.68843,-26.86496],[-53.66418,-26.86814],[-53.66157,-26.86566],[-53.67656,-26.84863],[-53.68212,-26.84693],[-53.66116,-26.84188],[-53.67674,-26.84341],[-53.69383,-26.84652],[-53.69274,-26.8432],[-53.69285,-26.84294],[-53.69199,-26.84032],[-53.70105,-26.81928],[-53.70091,-26.81894],[-53.69681,-26.81832],[-53.69728,-26.81563],[-53.69606,-26.81544],[-53.69675,-26.81153],[-53.70117,-26.80318],[-53.711,-26.79611],[-53.71133,-26.78784],[-53.70971,-26.7842],[-53.70298,-26.78041],[-53.70112,-26.777],[-53.70309,-26.77352],[-53.70691,-26.77299],[-53.71168,-26.77725],[-53.71541,-26.77905],[-53.7154,-26.78],[-53.72231,-26.78029],[-53.73105,-26.77739],[-53.73521,-26.7733],[-53.73417,-26.77195],[-53.72085,-26.77105],[-53.71694,-26.76767],[-53.71681,-26.76532],[-53.7162,-26.76479],[-53.71579,-26.75768],[-53.71677,-26.75651],[-53.71439,-26.74923],[-53.72072,-26.75183],[-53.72327,-26.74882],[-53.72485,-26.73961],[-53.72709,-26.73635],[-53.72987,-26.73538],[-53.73343,-26.74611],[-53.73831,-26.74694],[-53.7462,-26.74542],[-53.7489,-26.74374],[-53.74578,-26.74166],[-53.74419,-26.73558],[-53.75189,-26.72488],[-53.75363,-26.71757],[-53.75314,-26.71626],[-53.74984,-26.71701],[-53.74262,-26.7261],[-53.73828,-26.72618],[-53.73567,-26.7237],[-53.73397,-26.71592],[-53.73401,-26.7157],[-53.73322,-26.71304],[-53.73482,-26.70429],[-53.7395,-26.69346],[-53.73829,-26.6915],[-53.73341,-26.69067],[-53.72493,-26.70001],[-53.71981,-26.69987],[-53.7164,-26.69556],[-53.717,-26.69438],[-53.71566,-26.69269],[-53.71835,-26.68736],[-53.72369,-26.68634],[-53.72537,-26.68399],[-53.71827,-26.67601],[-53.71475,-26.66643],[-53.71481,-26.66576],[-53.714,-26.66355],[-53.71484,-26.65527],[-53.71777,-26.65275],[-53.7208,-26.65907],[-53.7259,-26.65852],[-53.73009,-26.65155],[-53.74084,-26.65228],[-53.74566,-26.65104],[-53.74945,-26.64891],[-53.75193,-26.64365],[-53.75213,-26.64335],[-53.75105,-26.64038],[-53.74112,-26.64171],[-53.73802,-26.64039],[-53.73583,-26.63376],[-53.72906,-26.62769],[-53.72769,-26.62335],[-53.7294,-26.61946],[-53.73298,-26.6112],[-53.73215,-26.60939],[-53.72723,-26.60603],[-53.72612,-26.60215],[-53.72618,-26.60189],[-53.72538,-26.59928],[-53.72744,-26.5905],[-53.72713,-26.58996],[-53.72073,-26.58916],[-53.72009,-26.58575],[-53.71797,-26.57552],[-53.7185,-26.5706],[-53.71774,-26.569],[-53.70821,-26.56504],[-53.70688,-26.56253],[-53.70726,-26.56176],[-53.70614,-26.55966],[-53.7076,-26.55665],[-53.7117,-26.55727],[-53.72034,-26.56241],[-53.72165,-26.56241],[-53.72172,-26.56324],[-53.72592,-26.56574],[-53.72976,-26.5659],[-53.73136,-26.56352],[-53.72574,-26.56128],[-53.72465,-26.55785],[-53.72476,-26.55766],[-53.7239,-26.55498],[-53.72612,-26.55127],[-53.73575,-26.54834],[-53.73717,-26.54547],[-53.73149,-26.54395],[-53.72051,-26.54346],[-53.71711,-26.53962],[-53.71751,-26.53849],[-53.71748,-26.538],[-53.71636,-26.53674],[-53.72213,-26.52057],[-53.72394,-26.50974],[-53.7234,-26.50184],[-53.72088,-26.50189],[-53.71535,-26.50566],[-53.71198,-26.50296],[-53.70672,-26.50742],[-53.70365,-26.50725],[-53.70231,-26.50451],[-53.70258,-26.5037],[-53.70157,-26.50164],[-53.70339,-26.49602],[-53.69457,-26.48858],[-53.69522,-26.48688],[-53.69383,-26.48571],[-53.69866,-26.47299],[-53.70094,-26.47249],[-53.7046,-26.47656],[-53.70689,-26.47606],[-53.70805,-26.47075],[-53.71127,-26.46633],[-53.70968,-26.46338],[-53.70559,-26.46299],[-53.69901,-26.4654],[-53.69763,-26.4606],[-53.70298,-26.44206],[-53.70274,-26.44136],[-53.69816,-26.44166],[-53.69016,-26.44893],[-53.68675,-26.44439],[-53.68678,-26.44255],[-53.686,-26.44152],[-53.6862,-26.43051],[-53.6844,-26.42868],[-53.68793,-26.42872],[-53.69274,-26.43018],[-53.69766,-26.4158],[-53.70505,-26.41497],[-53.70518,-26.40912],[-53.70055,-26.40899],[-53.69621,-26.40272],[-53.70638,-26.39591],[-53.70898,-26.38782],[-53.70055,-26.38791],[-53.69712,-26.37943],[-53.70096,-26.37333],[-53.69935,-26.36381],[-53.68963,-26.35969],[-53.69552,-26.35523],[-53.68901,-26.35435],[-53.68485,-26.33662],[-53.67618,-26.3353],[-53.62554,-26.33676],[-53.62479,-26.33815],[-53.62346,-26.3316],[-53.61646,-26.32552],[-53.6153,-26.31888],[-53.6163,-26.30554],[-53.61207,-26.28541],[-53.60941,-26.28017],[-53.60066,-26.27573],[-53.59184,-26.26489],[-53.59291,-26.26435],[-53.59874,-26.25781],[-53.60195,-26.25349],[-53.61026,-26.24481],[-53.62001,-26.23696],[-53.62875,-26.22614],[-53.63335,-26.22072],[-53.63821,-26.21637],[-53.64332,-26.21222],[-53.64676,-26.20768],[-53.64877,-26.20253],[-53.65032,-26.19803],[-53.65112,-26.1963],[-53.65103,-26.19466],[-53.652,-26.19439],[-53.65279,-26.19265],[-53.65575,-26.18791],[-53.65968,-26.184],[-53.66382,-26.1788],[-53.66657,-26.17513],[-53.67073,-26.17143],[-53.67583,-26.16728],[-53.6835,-26.16159],[-53.69185,-26.15525],[-53.70229,-26.14695],[-53.70386,-26.14568],[-53.70696,-26.13954],[-53.71636,-26.12669],[-53.72242,-26.12911],[-53.72378,-26.12672],[-53.7228,-26.12043],[-53.72067,-26.11588],[-53.71609,-26.09208],[-53.71658,-26.07945],[-53.71822,-26.07322],[-53.72915,-26.05925],[-53.72935,-26.05604],[-53.73383,-26.04266],[-53.7364,-26.04039],[-53.73925,-26.04286],[-53.74203,-26.04236],[-53.74573,-26.03724],[-53.75238,-26.03941],[-53.75323,-26.03182],[-53.75576,-26.03131],[-53.75834,-26.0331],[-53.76289,-26.0321],[-53.76657,-26.0263],[-53.77061,-26.02438],[-53.77301,-26.01837],[-53.77802,-26.0153],[-53.77916,-26.00954],[-53.78649,-26.00802],[-53.79218,-26.00103],[-53.79903,-26.00113],[-53.80576,-25.99504],[-53.80151,-25.98708],[-53.8027,-25.98338],[-53.80524,-25.98334],[-53.81067,-25.98783],[-53.81523,-25.98728],[-53.82095,-25.9819],[-53.81656,-25.9783],[-53.81674,-25.97532],[-53.82814,-25.97441],[-53.8339,-25.97063],[-53.83658,-25.96576],[-53.83524,-25.9628],[-53.83168,-25.96241],[-53.82985,-25.96015],[-53.83756,-25.95265],[-53.84278,-25.93614],[-53.83857,-25.93416],[-53.83837,-25.93155],[-53.83783,-25.9313],[-53.83731,-25.92424],[-53.83427,-25.92391],[-53.82858,-25.93021],[-53.82504,-25.93074],[-53.82453,-25.92784],[-53.8243,-25.92788],[-53.82153,-25.91205],[-53.8186,-25.91237],[-53.8215,-25.91187],[-53.8211,-25.90957],[-53.82385,-25.90791],[-53.82929,-25.91286],[-53.83207,-25.91235],[-53.83345,-25.90992],[-53.8219,-25.90394],[-53.81901,-25.89963],[-53.82506,-25.89791],[-53.83374,-25.89886],[-53.83466,-25.89589],[-53.83373,-25.89365],[-53.83392,-25.89303],[-53.83231,-25.88916],[-53.83354,-25.88752],[-53.84397,-25.88871],[-53.84774,-25.88703],[-53.85095,-25.88329],[-53.8486,-25.88035],[-53.84198,-25.8791],[-53.83759,-25.87597],[-53.8272,-25.87639],[-53.82383,-25.87301],[-53.82588,-25.87149],[-53.83015,-25.87005],[-53.83542,-25.86935],[-53.83222,-25.86252],[-53.83366,-25.85905],[-53.84127,-25.85937],[-53.84379,-25.85817],[-53.84525,-25.85585],[-53.84014,-25.85411],[-53.83848,-25.85175],[-53.84209,-25.84317],[-53.84869,-25.84374],[-53.84961,-25.83959],[-53.84865,-25.83774],[-53.84888,-25.83672],[-53.84437,-25.82809],[-53.83952,-25.82657],[-53.83791,-25.82293],[-53.83854,-25.81718],[-53.83698,-25.81537],[-53.82433,-25.81653],[-53.82397,-25.81148],[-53.82745,-25.80641],[-53.82233,-25.79522],[-53.82299,-25.79061],[-53.82577,-25.7901],[-53.83064,-25.79253],[-53.84026,-25.79212],[-53.84229,-25.79089],[-53.83574,-25.78681],[-53.83518,-25.7841],[-53.83501,-25.78396],[-53.83387,-25.77847],[-53.83634,-25.77589],[-53.83856,-25.77496],[-53.84297,-25.77076],[-53.84408,-25.77263],[-53.85116,-25.76965],[-53.85322,-25.76698],[-53.85014,-25.76244],[-53.84431,-25.76209],[-53.84357,-25.75923],[-53.84307,-25.75699],[-53.83625,-25.75306],[-53.8382,-25.75175],[-53.83551,-25.7502],[-53.84899,-25.74122],[-53.85867,-25.74356],[-53.86245,-25.7428],[-53.86314,-25.7398],[-53.85936,-25.72931],[-53.86065,-25.71919],[-53.86213,-25.71755],[-53.86672,-25.71884],[-53.87062,-25.71234],[-53.87717,-25.71061],[-53.88062,-25.70641],[-53.8788,-25.70438],[-53.86814,-25.70366],[-53.86556,-25.70142],[-53.87098,-25.69466],[-53.8704,-25.69122],[-53.86656,-25.69136],[-53.85645,-25.70182],[-53.85243,-25.70304],[-53.85007,-25.69965],[-53.85378,-25.69567],[-53.85409,-25.69444],[-53.84601,-25.69203],[-53.84392,-25.68932],[-53.84456,-25.68825],[-53.84319,-25.68646],[-53.84514,-25.68321],[-53.85373,-25.68259],[-53.85548,-25.67016],[-53.86285,-25.66015],[-53.86835,-25.65706],[-53.87569,-25.65715],[-53.88208,-25.65955],[-53.8848,-25.65674],[-53.88485,-25.65222],[-53.87924,-25.65031],[-53.87608,-25.64486],[-53.87655,-25.64407],[-53.87534,-25.642],[-53.88597,-25.6418],[-53.8892,-25.63921],[-53.88912,-25.63568],[-53.88714,-25.63065],[-53.88738,-25.63026],[-53.88641,-25.62779],[-53.88983,-25.62244],[-53.89388,-25.62282],[-53.90121,-25.63324],[-53.90352,-25.63434],[-53.90723,-25.63083],[-53.91184,-25.63327],[-53.91512,-25.63251],[-53.91254,-25.61948],[-53.91374,-25.6167],[-53.92218,-25.62044],[-53.92774,-25.6201],[-53.93463,-25.61193],[-53.93968,-25.61137],[-53.94674,-25.62133],[-53.94602,-25.62214],[-53.94748,-25.62419],[-53.94032,-25.63213],[-53.94056,-25.63523],[-53.94364,-25.63999],[-53.95075,-25.64077],[-53.955,-25.63862],[-53.95916,-25.63257],[-53.96351,-25.61342],[-53.96942,-25.60642],[-53.9687,-25.59749],[-53.97813,-25.58681],[-53.98744,-25.57858],[-53.99642,-25.57279],[-54.00476,-25.56848],[-54.00996,-25.56629],[-54.01544,-25.56617],[-54.02073,-25.56772],[-54.02586,-25.57134],[-54.03334,-25.5778],[-54.0378,-25.58247],[-54.04177,-25.58549],[-54.04591,-25.58664],[-54.05097,-25.58736],[-54.0546,-25.58645],[-54.05973,-25.58178],[-54.06531,-25.5769],[-54.06981,-25.57452],[-54.07253,-25.57363],[-54.07575,-25.57419],[-54.079,-25.57598],[-54.08097,-25.58152],[-54.08134,-25.58337],[-54.0817,-25.58438],[-54.08302,-25.59098],[-54.08225,-25.59638],[-54.08032,-25.60078],[-54.08003,-25.607],[-54.08066,-25.61361],[-54.08123,-25.61651],[-54.08362,-25.62041],[-54.08595,-25.62202],[-54.09056,-25.62316],[-54.09626,-25.62282],[-54.10037,-25.62253],[-54.10349,-25.61977],[-54.10611,-25.61536],[-54.10911,-25.60783],[-54.11739,-25.59294],[-54.12408,-25.57871],[-54.12878,-25.56659],[-54.12904,-25.56077],[-54.12854,-25.55911],[-54.12143,-25.54994],[-54.11762,-25.54423],[-54.11261,-25.53626],[-54.10547,-25.52586],[-54.10259,-25.52074],[-54.10206,-25.51825],[-54.10186,-25.51789],[-54.10082,-25.51294],[-54.10071,-25.50901],[-54.10177,-25.50629],[-54.10488,-25.50291],[-54.10987,-25.50155],[-54.11467,-25.50207],[-54.12022,-25.50443],[-54.12763,-25.5082],[-54.13393,-25.51324],[-54.13712,-25.5159],[-54.14407,-25.52087],[-54.14316,-25.52167],[-54.14708,-25.52604],[-54.15012,-25.53172],[-54.1597,-25.54369],[-54.16592,-25.54729],[-54.17227,-25.54887],[-54.17532,-25.54935],[-54.18128,-25.54963],[-54.18945,-25.548],[-54.1931,-25.5477],[-54.19813,-25.548],[-54.20617,-25.54968],[-54.20989,-25.55167],[-54.21271,-25.55451],[-54.21349,-25.55801],[-54.2127,-25.56217],[-54.21004,-25.56513],[-54.20624,-25.56832],[-54.19948,-25.57138],[-54.19336,-25.57318],[-54.1879,-25.57413],[-54.18428,-25.57546],[-54.18092,-25.57802],[-54.17914,-25.57951],[-54.17897,-25.58158],[-54.17864,-25.58487],[-54.18076,-25.58717],[-54.1833,-25.58835],[-54.18879,-25.58823],[-54.19332,-25.58688],[-54.19761,-25.58513],[-54.20599,-25.58245],[-54.21071,-25.57965],[-54.21631,-25.57538],[-54.22054,-25.57176],[-54.22187,-25.57007],[-54.22592,-25.56811],[-54.22888,-25.56763],[-54.23232,-25.56796],[-54.236,-25.56912],[-54.23811,-25.57073],[-54.23937,-25.57484],[-54.2395,-25.5794],[-54.23868,-25.58294],[-54.23819,-25.58978],[-54.23831,-25.59392],[-54.23908,-25.59701],[-54.24095,-25.59821],[-54.24509,-25.59936],[-54.25081,-25.59964],[-54.25613,-25.59749],[-54.25937,-25.59488],[-54.26289,-25.59045],[-54.26706,-25.58435],[-54.2705,-25.57681],[-54.27266,-25.57241],[-54.2762,-25.56818],[-54.28041,-25.56373],[-54.28466,-25.56073],[-54.28729,-25.55981],[-54.29082,-25.56038],[-54.2954,-25.56069],[-54.29979,-25.56245],[-54.30513,-25.56522],[-54.30906,-25.56699],[-54.31598,-25.56911],[-54.32151,-25.57084],[-54.32545,-25.57261],[-54.32755,-25.57401],[-54.3292,-25.57584],[-54.33233,-25.58135],[-54.33477,-25.58647],[-54.33674,-25.5914],[-54.33966,-25.59733],[-54.3416,-25.60123],[-54.34443,-25.60427],[-54.35051,-25.60889],[-54.35307,-25.61027],[-54.35603,-25.60979],[-54.35922,-25.60951],[-54.36416,-25.60649],[-54.36776,-25.60474],[-54.3709,-25.60332],[-54.37705,-25.60182],[-54.38163,-25.60213],[-54.38673,-25.6047],[-54.38864,-25.60734],[-54.38969,-25.61208],[-54.3894,-25.61748],[-54.39031,-25.62491],[-54.39221,-25.63522],[-54.39252,-25.63583],[-54.39294,-25.63808],[-54.39585,-25.64381],[-54.40161,-25.65278],[-54.40398,-25.65562],[-54.40789,-25.65636],[-54.41368,-25.6587],[-54.41645,-25.65967],[-54.41953,-25.66312],[-54.42308,-25.66717],[-54.42594,-25.67104],[-54.42658,-25.67311],[-54.42741,-25.68015],[-54.42709,-25.68471],[-54.42586,-25.68951],[-54.4251,-25.6947],[-54.42519,-25.69781],[-54.42761,-25.7021],[-54.42947,-25.70309],[-54.43313,-25.703],[-54.43608,-25.7021],[-54.44011,-25.69931],[-54.44344,-25.69612],[-54.44508,-25.69302],[-54.44658,-25.67393],[-54.4521,-25.66324],[-54.48114,-25.63385],[-54.4898,-25.62676],[-54.49856,-25.62334],[-54.50568,-25.62454],[-54.5214,-25.63404],[-54.52822,-25.63365],[-54.53342,-25.62962],[-54.53581,-25.62474],[-54.54062,-25.60807],[-54.54281,-25.60209],[-54.54534,-25.59772],[-54.55172,-25.59271],[-54.5582,-25.5912],[-54.56382,-25.59052],[-54.58166,-25.59114],[-54.59565,-25.59212],[-54.59611,-25.57865],[-54.59757,-25.56839],[-54.59766,-25.55278],[-54.59851,-25.54199],[-54.60038,-25.52606],[-54.60215,-25.50691],[-54.60567,-25.49581],[-54.615,-25.46324],[-54.61603,-25.45837],[-54.61596,-25.45622],[-54.61253,-25.45092],[-54.60853,-25.44618],[-54.60295,-25.43879],[-54.59852,-25.43002],[-54.59293,-25.42209],[-54.58972,-25.4141],[-54.58648,-25.40531],[-54.58204,-25.39627],[-54.57827,-25.38937],[-54.57455,-25.38435],[-54.56902,-25.37804],[-54.56285,-25.37039],[-54.55706,-25.36515],[-54.55032,-25.35806],[-54.54417,-25.35095],[-54.53152,-25.33486],[-54.52591,-25.32585],[-54.51755,-25.31422],[-54.51011,-25.30364],[-54.50478,-25.29409],[-54.5001,-25.28614],[-54.49598,-25.27736],[-54.49295,-25.2656],[-54.48681,-25.2488],[-54.48264,-25.23814],[-54.47786,-25.22696],[-54.47253,-25.21713],[-54.46534,-25.20466],[-54.45942,-25.19459],[-54.45288,-25.18399],[-54.44633,-25.17285],[-54.43919,-25.16172],[-54.43602,-25.15454],[-54.43587,-25.1497],[-54.43628,-25.14377],[-54.43909,-25.13886],[-54.44811,-25.1241],[-54.45347,-25.11563],[-54.45797,-25.10798],[-54.45956,-25.10202],[-54.4617,-25.0947],[-54.46405,-25.08442],[-54.46499,-25.07633],[-54.46446,-25.06854],[-54.46185,-25.05084],[-54.45704,-25.02863],[-54.45334,-25.01366],[-54.44308,-24.97706],[-54.43409,-24.94338],[-54.42891,-24.92817],[-54.42494,-24.91374],[-54.4205,-24.89368],[-54.41648,-24.87764],[-54.41153,-24.86],[-54.40454,-24.83327],[-54.39745,-24.813],[-54.39135,-24.79648],[-54.38855,-24.79143],[-54.38601,-24.78504],[-54.38163,-24.77654],[-54.37784,-24.76802],[-54.37466,-24.7603],[-54.37119,-24.75258],[-54.36674,-24.74139],[-54.36318,-24.73072],[-54.36058,-24.72218],[-54.35786,-24.70987],[-54.3493,-24.6891],[-54.33801,-24.65548],[-54.3351,-24.64641],[-54.33404,-24.64052],[-54.33259,-24.63114],[-54.33061,-24.62365],[-54.33061,-24.61343],[-54.33154,-24.60507],[-54.33255,-24.58918],[-54.33347,-24.58028],[-54.33441,-24.57219],[-54.33532,-24.5633],[-54.33716,-24.55545],[-54.33782,-24.54791],[-54.33812,-24.53795],[-54.3377,-24.52371],[-54.33664,-24.51055],[-54.33666,-24.5101],[-54.33528,-24.50091],[-54.33231,-24.48995],[-54.32852,-24.4809],[-54.32504,-24.47238],[-54.32069,-24.46442],[-54.31546,-24.4562],[-54.30908,-24.4491],[-54.30415,-24.44115],[-54.29801,-24.43188],[-54.28951,-24.4224],[-54.28523,-24.41659],[-54.2763,-24.40228],[-54.26666,-24.38342],[-54.26245,-24.37446],[-54.25925,-24.36047],[-54.25864,-24.34919],[-54.25944,-24.336],[-54.26069,-24.32817],[-54.265,-24.31462],[-54.27414,-24.29559],[-54.27828,-24.28608],[-54.28506,-24.27704],[-54.29219,-24.26988],[-54.29961,-24.26272],[-54.30989,-24.25356],[-54.31142,-24.25226],[-54.31823,-24.24695],[-54.32338,-24.24252],[-54.32563,-24.23924],[-54.32752,-24.23355],[-54.32822,-24.22735],[-54.32924,-24.22195],[-54.32936,-24.21603],[-54.32738,-24.20805],[-54.32594,-24.19891],[-54.32469,-24.1863],[-54.32441,-24.17663],[-54.32651,-24.16824],[-54.32807,-24.16122],[-54.33062,-24.14825],[-54.33045,-24.14207],[-54.32935,-24.13457],[-54.32799,-24.12815],[-54.3258,-24.12337],[-54.32246,-24.11942],[-54.31704,-24.11417],[-54.3098,-24.10682],[-54.30048,-24.09871],[-54.29025,-24.08928],[-54.28363,-24.08298],[-54.28054,-24.07768],[-54.28047,-24.07499],[-54.28125,-24.07175],[-54.28386,-24.06748],[-54.29144,-24.05914],[-54.29884,-24.05171],[-54.30399,-24.04728],[-54.3094,-24.04204],[-54.31502,-24.03384],[-54.3172,-24.02815],[-54.31741,-24.02519],[-54.31517,-24.01879],[-54.31475,-24.01423],[-54.31584,-24.01151],[-54.31899,-24.00902],[-54.32391,-24.00702],[-54.33089,-24.00576],[-54.33618,-24.00618],[-54.34349,-24.00601],[-54.35567,-24.00195],[-54.36667,-23.99719],[-54.37576,-23.98361],[-54.38887,-23.96175],[-54.39909,-23.93743],[-54.41091,-23.92426],[-54.43173,-23.91212],[-54.45992,-23.9022],[-54.48266,-23.8819],[-54.49531,-23.87949],[-54.51344,-23.88488],[-54.52625,-23.87217],[-54.5361,-23.86973],[-54.54588,-23.87115],[-54.56121,-23.8765],[-54.56828,-23.87273],[-54.56571,-23.85724],[-54.57287,-23.84703],[-54.59826,-23.83576],[-54.62074,-23.8309],[-54.62911,-23.83357],[-54.64029,-23.835],[-54.65454,-23.81844],[-54.66713,-23.81257],[-54.67534,-23.81357],[-54.67978,-23.81728],[-54.68311,-23.82284],[-54.68486,-23.82497],[-54.69428,-23.83278],[-54.69746,-23.83739],[-54.69885,-23.84611],[-54.69801,-23.85435],[-54.70045,-23.85827],[-54.72033,-23.8626],[-54.74024,-23.86348],[-54.75928,-23.85427],[-54.76325,-23.85568],[-54.76616,-23.86235],[-54.77435,-23.86564],[-54.78707,-23.86438],[-54.79773,-23.86884],[-54.80335,-23.87874],[-54.81525,-23.88344],[-54.82321,-23.88489],[-54.83157,-23.88365],[-54.83915,-23.88526],[-54.84237,-23.88735],[-54.84897,-23.89887],[-54.85439,-23.90442],[-54.86086,-23.90494],[-54.87112,-23.90067],[-54.8794,-23.89525],[-54.88686,-23.89646],[-54.89372,-23.90752],[-54.90421,-23.90578],[-54.91183,-23.91501],[-54.91902,-23.91874],[-54.92246,-23.92336],[-54.91738,-23.93179],[-54.92129,-23.93916],[-54.92437,-23.95407],[-54.92682,-23.95799],[-54.93177,-23.96147],[-54.93924,-23.96245],[-54.95197,-23.96049],[-54.97222,-23.95471],[-55.00537,-23.95545],[-55.0212,-23.96726],[-55.03089,-23.97032],[-55.0383,-23.97794],[-55.04749,-23.98145],[-55.05267,-23.98653],[-55.06014,-23.98842],[-55.07711,-23.98558],[-55.08889,-23.97972],[-55.09893,-23.97269],[-55.11151,-23.96019],[-55.11473,-23.96227],[-55.11961,-23.97308],[-55.13752,-23.97825],[-55.14443,-23.98495],[-55.15291,-23.98479],[-55.15917,-23.98185],[-55.17283,-23.98768],[-55.18557,-23.9848],[-55.1928,-23.98462],[-55.19777,-23.98718],[-55.19973,-23.98994],[-55.20175,-23.99719],[-55.20751,-24.00376],[-55.21217,-24.00749],[-55.21704,-24.009],[-55.22551,-24.00985],[-55.23028,-24.0086],[-55.23351,-24.00628],[-55.24582,-23.99719],[-55.25332,-23.99192],[-55.25584,-23.98873],[-55.29291,-23.9679],[-55.29969,-23.96268],[-55.3142,-23.95613],[-55.32041,-23.95869],[-55.32437,-23.96216],[-55.33001,-23.97364],[-55.3329,-23.98604],[-55.33513,-23.98834],[-55.34084,-23.99044],[-55.34857,-23.99049],[-55.35357,-23.98892],[-55.36512,-23.97822],[-55.37137,-23.97666],[-55.37463,-23.97416],[-55.37769,-23.96547],[-55.38118,-23.96503],[-55.39684,-23.97109],[-55.40564,-23.96083],[-55.41188,-23.95858],[-55.41848,-23.94258],[-55.42804,-23.93118],[-55.42811,-23.92247],[-55.43189,-23.91585],[-55.43663,-23.91473],[-55.44091,-23.90949],[-55.43787,-23.88244],[-55.43308,-23.86386],[-55.43332,-23.85744],[-55.43612,-23.8492],[-55.43321,-23.83796],[-55.43603,-23.82789],[-55.44455,-23.82084],[-55.44633,-23.81535],[-55.44513,-23.80961],[-55.43945,-23.80248],[-55.4326,-23.78617],[-55.43094,-23.77493],[-55.43677,-23.76075],[-55.44196,-23.73122],[-55.44077,-23.72365],[-55.43337,-23.71467],[-55.4334,-23.71123],[-55.43666,-23.70736],[-55.44213,-23.70762],[-55.45203,-23.71501],[-55.45701,-23.71527],[-55.46051,-23.71208],[-55.46106,-23.70475],[-55.45793,-23.69052],[-55.45873,-23.68365],[-55.46127,-23.6761],[-55.46565,-23.67279],[-55.46978,-23.66633],[-55.47181,-23.6631],[-55.47342,-23.64661],[-55.4767,-23.64089],[-55.50439,-23.62867],[-55.50818,-23.61999],[-55.51168,-23.61725],[-55.51791,-23.61591],[-55.52459,-23.62076],[-55.53033,-23.61804],[-55.5346,-23.61096],[-55.53254,-23.58528],[-55.52447,-23.56506],[-55.53573,-23.53498],[-55.54257,-23.49754],[-55.5405,-23.47995],[-55.53667,-23.47943],[-55.54026,-23.47791],[-55.53857,-23.46359],[-55.53937,-23.45511],[-55.53696,-23.44455],[-55.53008,-23.43236],[-55.5259,-23.42965],[-55.51875,-23.41855],[-55.51164,-23.40498],[-55.50851,-23.39006],[-55.50113,-23.37925],[-55.50295,-23.36825],[-55.50546,-23.36437],[-55.51418,-23.35914],[-55.52174,-23.34313],[-55.52826,-23.33377],[-55.534,-23.32807],[-55.54298,-23.32284],[-55.5485,-23.31416],[-55.5482,-23.28274],[-55.54133,-23.27216],[-55.53491,-23.26616],[-55.52972,-23.26338],[-55.52277,-23.26312],[-55.51933,-23.25897],[-55.52834,-23.24802],[-55.53237,-23.23841],[-55.53366,-23.23062],[-55.53248,-23.22144],[-55.52954,-23.21615],[-55.52189,-23.21014],[-55.51897,-23.20187],[-55.521,-23.19431],[-55.53749,-23.17675],[-55.53882,-23.163],[-55.54407,-23.15683],[-55.56348,-23.1457],[-55.57615,-23.14278],[-55.58928,-23.14399],[-55.59301,-23.14241],[-55.59576,-23.13829],[-55.5971,-23.12225],[-55.60162,-23.11333],[-55.61211,-23.10054],[-55.61763,-23.08864],[-55.61052,-23.07761],[-55.61149,-23.05923],[-55.61478,-23.0549],[-55.61111,-23.04905],[-55.61361,-23.04202],[-55.62305,-23.03343],[-55.639,-23.0266],[-55.6423,-23.01661],[-55.63642,-23.00147],[-55.63894,-22.99474],[-55.64483,-22.98969],[-55.65492,-22.99137],[-55.66249,-22.9939],[-55.6709,-22.9981],[-55.67679,-22.99642],[-55.681,-22.99221],[-55.6852,-22.99053],[-55.68268,-22.98044],[-55.6709,-22.96782],[-55.6566,-22.95184],[-55.64988,-22.9325],[-55.64988,-22.91315],[-55.66586,-22.86857],[-55.6588,-22.84243],[-55.65831,-22.8253],[-55.65399,-22.81867],[-55.656,-22.80856],[-55.64978,-22.80256],[-55.65302,-22.7928],[-55.63903,-22.78316],[-55.63491,-22.77061],[-55.62736,-22.76674],[-55.61735,-22.76815],[-55.61931,-22.76536],[-55.6255,-22.75897],[-55.62609,-22.7537],[-55.62539,-22.75034],[-55.61781,-22.73607],[-55.61396,-22.7177],[-55.61596,-22.6989],[-55.6138,-22.69977],[-55.60961,-22.69047],[-55.6159,-22.67767],[-55.6144,-22.66411],[-55.61234,-22.65964],[-55.61211,-22.65575],[-55.61387,-22.65162],[-55.62132,-22.64523],[-55.62608,-22.63608],[-55.62668,-22.61865],[-55.63115,-22.61385],[-55.65096,-22.60637],[-55.66139,-22.59862],[-55.70113,-22.56002],[-55.72369,-22.54521],[-55.73489,-22.52942],[-55.74116,-22.51155],[-55.74527,-22.48105],[-55.74482,-22.47301],[-55.74287,-22.46773],[-55.73625,-22.45898],[-55.73728,-22.45141],[-55.7334,-22.439],[-55.7332,-22.43051],[-55.73907,-22.39336],[-55.74503,-22.3865],[-55.76606,-22.38659],[-55.76555,-22.38351],[-55.77453,-22.38641],[-55.78477,-22.38299],[-55.78898,-22.37934],[-55.79769,-22.36468],[-55.80045,-22.35597],[-55.82424,-22.33219],[-55.83194,-22.32098],[-55.84244,-22.29026],[-55.85335,-22.2786],[-55.861,-22.27633],[-55.88661,-22.2833],[-55.89795,-22.28357],[-55.92214,-22.27792],[-55.93545,-22.27865],[-55.95416,-22.28835],[-55.9613,-22.2902],[-55.96599,-22.2893],[-55.98451,-22.27995],[-55.99117,-22.27974],[-55.9988,-22.28389],[-56.00593,-22.28965],[-56.01136,-22.28851],[-56.02198,-22.28304],[-56.03037,-22.28191],[-56.05095,-22.28837],[-56.06005,-22.29048],[-56.07322,-22.28779],[-56.08043,-22.28703],[-56.0868,-22.28627],[-56.09403,-22.28236],[-56.10169,-22.27844],[-56.10891,-22.27729],[-56.1195,-22.27932],[-56.12584,-22.28408],[-56.136,-22.28768],[-56.14235,-22.2873],[-56.14486,-22.28727],[-56.14831,-22.28694],[-56.15807,-22.2854],[-56.16842,-22.28385],[-56.18014,-22.28392],[-56.18609,-22.28276],[-56.19109,-22.28079],[-56.19755,-22.28083],[-56.20774,-22.27811],[-56.21243,-22.27339],[-56.2235,-22.26436],[-56.23624,-22.25849],[-56.2422,-22.25378],[-56.24435,-22.24747],[-56.24736,-22.23723],[-56.25926,-22.23253],[-56.26859,-22.23217],[-56.28641,-22.23105],[-56.29277,-22.22949],[-56.30937,-22.21416],[-56.31665,-22.21119],[-56.32932,-22.21068],[-56.34079,-22.20322],[-56.34634,-22.191],[-56.34956,-22.18251],[-56.3519,-22.178],[-56.35573,-22.17446],[-56.36053,-22.17195],[-56.3681,-22.16511],[-56.37699,-22.15439],[-56.37999,-22.14651],[-56.38001,-22.1398],[-56.37877,-22.13032],[-56.38176,-22.12323],[-56.38644,-22.11575],[-56.392,-22.10195],[-56.39625,-22.09841],[-56.39923,-22.09289],[-56.40009,-22.08895],[-56.39926,-22.0846],[-56.40011,-22.07806],[-56.40268,-22.07474],[-56.40776,-22.07516],[-56.42089,-22.07756],[-56.42724,-22.07758],[-56.43869,-22.07603],[-56.4475,-22.07988],[-56.45309,-22.07805],[-56.46055,-22.07896],[-56.47131,-22.07651],[-56.47596,-22.0781],[-56.48019,-22.08324],[-56.48399,-22.08878],[-56.49033,-22.09195],[-56.50304,-22.09356],[-56.51066,-22.09555],[-56.51828,-22.10031],[-56.52629,-22.11532],[-56.52797,-22.12203],[-56.52583,-22.13071],[-56.53343,-22.14415],[-56.5402,-22.14693],[-56.54315,-22.15522],[-56.54399,-22.15996],[-56.54652,-22.16233],[-56.55,-22.16221],[-56.55627,-22.16353],[-56.55965,-22.17065],[-56.55964,-22.17577],[-56.56005,-22.18051],[-56.56259,-22.18288],[-56.56343,-22.18525],[-56.56554,-22.19],[-56.57426,-22.19679],[-56.58332,-22.20187],[-56.59513,-22.2076],[-56.60366,-22.21059],[-56.60916,-22.21533],[-56.61255,-22.22008],[-56.61422,-22.22994],[-56.63202,-22.24063],[-56.64093,-22.23788],[-56.64462,-22.23921],[-56.64558,-22.24499],[-56.64259,-22.25367],[-56.64216,-22.2584],[-56.65065,-22.25605],[-56.68375,-22.24189],[-56.68758,-22.23795],[-56.688,-22.234],[-56.68929,-22.22335],[-56.68974,-22.21718],[-56.69779,-22.2135],[-56.70499,-22.21508],[-56.70606,-22.22097],[-56.7071,-22.22732],[-56.70964,-22.23206],[-56.71091,-22.2364],[-56.71472,-22.23917],[-56.71557,-22.24233],[-56.71556,-22.24706],[-56.71767,-22.25219],[-56.727,-22.25773],[-56.73166,-22.25813],[-56.73506,-22.25537],[-56.73803,-22.25103],[-56.73974,-22.24472],[-56.74313,-22.23959],[-56.74799,-22.23603],[-56.75289,-22.23408],[-56.75713,-22.23487],[-56.7584,-22.23842],[-56.75967,-22.24237],[-56.76942,-22.24593],[-56.77281,-22.24791],[-56.77747,-22.25383],[-56.78087,-22.25699],[-56.78468,-22.25936],[-56.78935,-22.25739],[-56.79274,-22.25463],[-56.79487,-22.25227],[-56.79613,-22.24483],[-56.79784,-22.2428],[-56.80717,-22.24715],[-56.81014,-22.2507],[-56.8114,-22.26017],[-56.81012,-22.26925],[-56.80927,-22.27634],[-56.80884,-22.28227],[-56.80969,-22.28621],[-56.81223,-22.28858],[-56.81902,-22.28977],[-56.82284,-22.28977],[-56.8275,-22.29609],[-56.83047,-22.29767],[-56.83599,-22.29767],[-56.84108,-22.29649],[-56.84772,-22.29156],[-56.85363,-22.29086],[-56.86692,-22.28302],[-56.8712,-22.2823],[-56.87757,-22.27559],[-56.88181,-22.27125],[-56.88308,-22.26494],[-56.88139,-22.25902],[-56.88223,-22.25428],[-56.88733,-22.24836],[-56.89319,-22.24369],[-56.90047,-22.24363],[-56.90302,-22.24481],[-56.90514,-22.24916],[-56.9098,-22.25508],[-56.91532,-22.25429],[-56.91956,-22.25074],[-56.92677,-22.24876],[-56.93483,-22.24876],[-56.94713,-22.24837],[-56.96095,-22.23591],[-56.96579,-22.23495],[-56.97088,-22.23613],[-56.97936,-22.24007],[-56.98487,-22.23968],[-56.99004,-22.23696],[-56.99985,-22.22269],[-57.00395,-22.22231],[-57.01115,-22.22585],[-57.02091,-22.22703],[-57.02939,-22.23097],[-57.03784,-22.23173],[-57.04376,-22.23355],[-57.04872,-22.23792],[-57.04912,-22.23522],[-57.04933,-22.23846],[-57.05314,-22.23535],[-57.05711,-22.23494],[-57.06375,-22.23411],[-57.07605,-22.23726],[-57.08114,-22.2412],[-57.08538,-22.23961],[-57.09047,-22.23764],[-57.09877,-22.24504],[-57.10235,-22.24197],[-57.10446,-22.23723],[-57.10835,-22.23536],[-57.11082,-22.23407],[-57.11166,-22.23012],[-57.10996,-22.22657],[-57.10699,-22.22341],[-57.1091,-22.22026],[-57.1248,-22.2234],[-57.13583,-22.22457],[-57.1581,-22.22596],[-57.16796,-22.22638],[-57.17807,-22.22817],[-57.1835,-22.22883],[-57.19138,-22.22212],[-57.19264,-22.21897],[-57.19518,-22.21344],[-57.19814,-22.2087],[-57.20237,-22.20711],[-57.20704,-22.20908],[-57.21029,-22.21448],[-57.21553,-22.21459],[-57.21723,-22.21696],[-57.21937,-22.22603],[-57.22278,-22.2351],[-57.22788,-22.23864],[-57.23425,-22.24139],[-57.24231,-22.24138],[-57.24951,-22.24018],[-57.25576,-22.23767],[-57.26392,-22.23385],[-57.26899,-22.22949],[-57.2745,-22.22514],[-57.28212,-22.22079],[-57.28975,-22.21722],[-57.29632,-22.21841],[-57.30035,-22.21996],[-57.30631,-22.22626],[-57.31055,-22.22822],[-57.31819,-22.22979],[-57.32793,-22.22949],[-57.33217,-22.2266],[-57.34432,-22.22423],[-57.35083,-22.22523],[-57.36313,-22.22495],[-57.37076,-22.22374],[-57.37866,-22.22049],[-57.38091,-22.21661],[-57.38048,-22.21188],[-57.38131,-22.20714],[-57.38619,-22.20369],[-57.39064,-22.2055],[-57.39507,-22.20479],[-57.40248,-22.19841],[-57.4118,-22.19601],[-57.42156,-22.19717],[-57.43257,-22.19517],[-57.44598,-22.18865],[-57.46148,-22.18603],[-57.46858,-22.18717],[-57.47366,-22.18478],[-57.4851,-22.18396],[-57.49527,-22.18037],[-57.49908,-22.18076],[-57.50531,-22.18025],[-57.51004,-22.17677],[-57.51297,-22.17473],[-57.51939,-22.17083],[-57.52533,-22.1712],[-57.53255,-22.17552],[-57.54231,-22.17864],[-57.55249,-22.17821],[-57.56053,-22.17542],[-57.57196,-22.17065],[-57.58338,-22.16429],[-57.58759,-22.15756],[-57.58841,-22.15204],[-57.58711,-22.14494],[-57.58656,-22.13885],[-57.59258,-22.13702],[-57.59427,-22.13583],[-57.59638,-22.13306],[-57.60061,-22.13265],[-57.60229,-22.1287],[-57.60396,-22.12277],[-57.60906,-22.11897],[-57.61241,-22.11721],[-57.61279,-22.10774],[-57.61318,-22.09866],[-57.61577,-22.09343],[-57.6212,-22.0939],[-57.63181,-22.09741],[-57.64171,-22.10358],[-57.65747,-22.10369],[-57.67249,-22.09803],[-57.68728,-22.09008],[-57.69321,-22.08887],[-57.70084,-22.08962],[-57.70763,-22.09354],[-57.71063,-22.09787],[-57.7153,-22.10061],[-57.71915,-22.10691],[-57.72911,-22.09972],[-57.73649,-22.1021],[-57.74075,-22.10602],[-57.73869,-22.11669],[-57.73915,-22.12339],[-57.74469,-22.12889],[-57.75572,-22.13082],[-57.76207,-22.12842],[-57.76601,-22.12354],[-57.7692,-22.12259],[-57.7739,-22.12205],[-57.78026,-22.1236],[-57.7845,-22.12397],[-57.79305,-22.13538],[-57.79775,-22.14207],[-57.80285,-22.1452],[-57.80538,-22.14282],[-57.80706,-22.14005],[-57.81299,-22.13883],[-57.81763,-22.13644],[-57.821,-22.13248],[-57.82307,-22.12458],[-57.82347,-22.11984],[-57.82754,-22.11823],[-57.83702,-22.11819],[-57.8489,-22.1205],[-57.85696,-22.12322],[-57.86209,-22.12911],[-57.86634,-22.13106],[-57.87345,-22.12841],[-57.88617,-22.12396],[-57.89285,-22.12045],[-57.90787,-22.11988],[-57.91106,-22.11824],[-57.92067,-22.11932],[-57.92706,-22.11743],[-57.92827,-22.1149],[-57.92624,-22.10777],[-57.92719,-22.1032],[-57.93403,-22.09671],[-57.93836,-22.08589],[-57.94227,-22.08242],[-57.95286,-22.08233],[-57.95702,-22.07954],[-57.96048,-22.07975],[-57.97333,-22.08492],[-57.98023,-22.08555],[-57.98832,-22.08182],[-57.98972,-22.07828],[-57.98798,-22.07158],[-57.98624,-22.06448],[-57.9879,-22.05934],[-57.99294,-22.05379],[-57.99935,-22.04754],[-58.00515,-22.04345],[-58.0068,-22.03713],[-58.00463,-22.02924],[-57.99951,-22.02375],[-57.98887,-22.01671],[-57.97824,-22.01045],[-57.9693,-22.0038],[-57.9663,-21.99789],[-57.96152,-21.97977],[-57.95977,-21.97227],[-57.95334,-21.95929],[-57.94732,-21.94669],[-57.94086,-21.92975],[-57.93993,-21.91792],[-57.94243,-21.91119],[-57.94493,-21.90565],[-57.94446,-21.89776],[-57.93934,-21.89147],[-57.93117,-21.88692],[-57.92699,-21.88478],[-57.92321,-21.88525],[-57.91982,-21.88329],[-57.91852,-21.87856],[-57.92017,-21.87263],[-57.9286,-21.86745],[-57.94598,-21.86085],[-57.95517,-21.85546],[-57.96218,-21.84762],[-57.96694,-21.84434],[-57.96819,-21.84117],[-57.96606,-21.83882],[-57.96026,-21.83769],[-57.9491,-21.83299],[-57.93977,-21.82949],[-57.92146,-21.81144],[-57.91528,-21.79938],[-57.91202,-21.78978],[-57.91005,-21.77334],[-57.91164,-21.76945],[-57.91566,-21.7641],[-57.92368,-21.76168],[-57.92917,-21.76165],[-57.93564,-21.75699],[-57.94221,-21.75131],[-57.94639,-21.74379],[-57.94379,-21.73472],[-57.93656,-21.72766],[-57.9217,-21.71787],[-57.9111,-21.71201],[-57.90388,-21.70692],[-57.89623,-21.69985],[-57.89363,-21.69039],[-57.89317,-21.68447],[-57.89649,-21.68069],[-57.90281,-21.67179],[-57.91375,-21.66541],[-57.92867,-21.65388],[-57.93302,-21.64558],[-57.93659,-21.632],[-57.93452,-21.6112],[-57.93109,-21.60372],[-57.92429,-21.59705],[-57.91708,-21.59235],[-57.91536,-21.58723],[-57.91828,-21.58208],[-57.92358,-21.57653],[-57.93026,-21.57242],[-57.95612,-21.5562],[-57.96282,-21.54906],[-57.96474,-21.54304],[-57.96689,-21.52534],[-57.96558,-21.51903],[-57.96384,-21.51154],[-57.95787,-21.50407],[-57.94639,-21.49111],[-57.93237,-21.47618],[-57.92724,-21.46753],[-57.9221,-21.45492],[-57.91992,-21.44466],[-57.91776,-21.43599],[-57.9156,-21.4289],[-57.91007,-21.42261],[-57.90752,-21.41907],[-57.90488,-21.4021],[-57.90231,-21.39541],[-57.8989,-21.3895],[-57.89081,-21.37888],[-57.88527,-21.36983],[-57.87811,-21.36668],[-57.8679,-21.3561],[-57.8594,-21.34628],[-57.85428,-21.33604],[-57.85296,-21.32775],[-57.85447,-21.31513],[-57.85877,-21.31074],[-57.87351,-21.30829],[-57.88866,-21.30545],[-57.90353,-21.29926],[-57.91111,-21.29191],[-57.91567,-21.28345],[-57.91756,-21.27567],[-57.91457,-21.27056],[-57.90398,-21.26232],[-57.89087,-21.2541],[-57.87606,-21.2451],[-57.86676,-21.24081],[-57.85787,-21.23256],[-57.85317,-21.22311],[-57.85017,-21.21404],[-57.84884,-21.20299],[-57.84962,-21.1919],[-57.86239,-21.14484],[-57.86232,-21.13499],[-57.85931,-21.12474],[-57.85421,-21.11568],[-57.84624,-21.09895],[-57.84673,-21.09436],[-57.86445,-21.07021],[-57.86734,-21.06072],[-57.86599,-21.0469],[-57.8651,-21.03861],[-57.86086,-21.03271],[-57.83159,-20.99416],[-57.82832,-20.99136],[-57.81812,-20.98124],[-57.81717,-20.9737],[-57.82191,-20.9596],[-57.82122,-20.94801],[-57.82087,-20.9395],[-57.82407,-20.93559],[-57.82829,-20.93296],[-57.83251,-20.93322],[-57.84094,-20.93843],[-57.85021,-20.94233],[-57.85904,-20.94228],[-57.86697,-20.93893],[-57.87536,-20.92877],[-57.88905,-20.90433],[-57.89263,-20.90218],[-57.89954,-20.89882],[-57.91429,-20.89933],[-57.92332,-20.89808],[-57.92603,-20.89452],[-57.92643,-20.89097],[-57.92429,-20.88545],[-57.92006,-20.88113],[-57.90528,-20.87094],[-57.87491,-20.85452],[-57.85974,-20.84828],[-57.85592,-20.84395],[-57.85463,-20.83843],[-57.85459,-20.83251],[-57.86249,-20.81706],[-57.87166,-20.80398],[-57.8821,-20.79484],[-57.89341,-20.78964],[-57.90097,-20.78802],[-57.91442,-20.78835],[-57.92284,-20.79067],[-57.93162,-20.79467],[-57.94152,-20.7959],[-57.94977,-20.79644],[-57.95521,-20.79364],[-57.95813,-20.79086],[-57.95979,-20.7869],[-57.96017,-20.78137],[-57.95378,-20.76837],[-57.94871,-20.76445],[-57.94287,-20.75676],[-57.93561,-20.75228],[-57.91498,-20.7449],[-57.9076,-20.74441],[-57.87841,-20.74233],[-57.87211,-20.74078],[-57.86872,-20.73685],[-57.86828,-20.7329],[-57.86993,-20.72815],[-57.87782,-20.71429],[-57.88364,-20.70438],[-57.88948,-20.69803],[-57.89742,-20.69285],[-57.90117,-20.6877],[-57.90825,-20.67778],[-57.91483,-20.66771],[-57.92229,-20.66375],[-57.92847,-20.66493],[-57.93462,-20.66539],[-57.94094,-20.6693],[-57.94436,-20.67719],[-57.95031,-20.689],[-57.95794,-20.69962],[-57.96596,-20.70191],[-57.9763,-20.70034],[-57.98093,-20.69822],[-57.98687,-20.69313],[-57.98894,-20.68799],[-57.98718,-20.67575],[-57.98504,-20.66984],[-57.97613,-20.65686],[-57.97188,-20.64938],[-57.97434,-20.64067],[-57.98137,-20.63543],[-57.99692,-20.6279],[-58.00318,-20.62273],[-58.01025,-20.6132],[-58.01481,-20.60527],[-58.01307,-20.5966],[-58.00543,-20.584],[-57.99823,-20.57575],[-57.99651,-20.56984],[-57.99981,-20.56113],[-58.00552,-20.53951],[-58.01825,-20.51041],[-58.01394,-20.49541],[-58.01383,-20.4799],[-57.99353,-20.44561],[-57.999,-20.4304],[-58.00366,-20.4232],[-58.01775,-20.4098],[-58.03095,-20.40186],[-58.04481,-20.39703],[-58.05385,-20.39351],[-58.06458,-20.38695],[-58.07679,-20.37681],[-58.08151,-20.36972],[-58.09244,-20.34182],[-58.09621,-20.32132],[-58.09567,-20.30964],[-58.08966,-20.2831],[-58.08671,-20.27057],[-58.08665,-20.2625],[-58.09134,-20.2544],[-58.10082,-20.24985],[-58.11469,-20.24755],[-58.12458,-20.25059],[-58.13413,-20.2559],[-58.14085,-20.26393],[-58.1456,-20.2639],[-58.15319,-20.26115],[-58.15603,-20.2556],[-58.16252,-20.23957],[-58.16152,-20.2333],[-58.16143,-20.22254],[-58.1547,-20.21273],[-58.14802,-20.20919],[-58.13562,-20.20389],[-58.12607,-20.19768],[-58.12414,-20.19321],[-58.12441,-20.18541],[-58.13449,-20.17969],[-58.14418,-20.17629],[-58.15992,-20.1744],[-58.16162,-20.16677],[-58.16283,-20.15976],[-58.15611,-20.15085],[-58.1485,-20.14911],[-58.13709,-20.14828],[-58.11802,-20.13945],[-58.09792,-20.11806],[-58.0912,-20.11003],[-58.08167,-20.10472],[-58.07597,-20.10387],[-58.0655,-20.10124],[-58.05031,-20.10045],[-58.04265,-20.09242],[-58.03888,-20.08806],[-58.03867,-20.08731],[-58.03783,-20.08349],[-58.03687,-20.07991],[-58.02633,-20.06831],[-58.01392,-20.05852],[-57.99775,-20.05324],[-57.98446,-20.05422],[-57.97801,-20.05349],[-57.96829,-20.04714],[-57.96444,-20.03999],[-57.96151,-20.02836],[-57.95863,-20.02478],[-57.94722,-20.02127],[-57.93393,-20.02134],[-57.92447,-20.02497],[-57.9188,-20.02949],[-57.91219,-20.03401],[-57.90934,-20.03403],[-57.9081,-20.03044],[-57.90899,-20.0194],[-57.90502,-20.0114],[-57.89595,-20.00205],[-57.88324,-19.99341],[-57.87295,-19.98269],[-57.87095,-19.9765],[-57.87261,-19.97098],[-57.87669,-19.96589],[-57.89528,-19.95057],[-57.91605,-19.9371],[-57.95347,-19.90922],[-57.98727,-19.88803],[-58.02091,-19.85979],[-58.0487,-19.83327],[-58.07354,-19.81698],[-58.10293,-19.79236],[-58.12677,-19.77468],[-58.13345,-19.76245],[-58.1334,-19.75785],[-58.12198,-19.7318],[-58.09205,-19.67329],[-58.05811,-19.60326],[-58.00255,-19.48847],[-57.94706,-19.37365],[-57.89306,-19.26184],[-57.88621,-19.24753],[-57.7842,-19.03351],[-57.71014,-19.0326],[-57.70841,-19.03025],[-57.70789,-19.01557],[-57.70519,-19.00146],[-57.70699,-18.99031],[-57.71106,-18.98292],[-57.71222,-18.97902],[-57.71925,-18.97705],[-57.71978,-18.89907],[-57.76661,-18.89929],[-57.55777,-18.24036],[-57.4604,-18.23178],[-57.45802,-18.23159],[-57.45385,-18.2312],[-57.45744,-18.22492],[-57.46745,-18.22278],[-57.47421,-18.21697],[-57.47371,-18.21252],[-57.47979,-18.20862],[-57.47963,-18.20756],[-57.48222,-18.2021],[-57.48616,-18.19923],[-57.49073,-18.20223],[-57.50031,-18.19688],[-57.50507,-18.20034],[-57.5748,-18.13189],[-57.58178,-18.10828],[-57.60004,-18.04637],[-57.7206,-17.82786],[-57.69265,-17.82807],[-57.68874,-17.82703],[-57.68705,-17.82474],[-57.68812,-17.8066],[-57.6904,-17.80089],[-57.70401,-17.78753],[-57.71405,-17.77955],[-57.71513,-17.77661],[-57.71748,-17.7743],[-57.72009,-17.77171],[-57.71378,-17.74662],[-57.71481,-17.73372],[-57.72315,-17.72562],[-57.73507,-17.72003],[-57.74307,-17.69861],[-57.75425,-17.68866],[-57.76487,-17.66838],[-57.77963,-17.65655],[-57.78505,-17.6455],[-57.78454,-17.64021],[-57.77771,-17.62489],[-57.77923,-17.62327],[-57.78605,-17.61587],[-57.78243,-17.61428],[-57.7812,-17.61256],[-57.78396,-17.60743],[-57.78212,-17.60568],[-57.79048,-17.60321],[-57.78782,-17.60044],[-57.78919,-17.5999],[-57.78606,-17.59665],[-57.78658,-17.59473],[-57.79374,-17.59239],[-57.79244,-17.59],[-57.79312,-17.58977],[-57.79018,-17.5844],[-57.78972,-17.5825],[-57.78082,-17.5763],[-57.78534,-17.57524],[-57.78518,-17.56997],[-57.79438,-17.56429],[-57.79561,-17.56002],[-57.79281,-17.55574],[-57.7856,-17.55555],[-57.75224,-17.56446],[-57.85996,-17.47007],[-57.8779,-17.46292],[-57.89557,-17.45888],[-57.8992,-17.4595],[-57.9786,-17.50941],[-57.98264,-17.51328],[-57.98961,-17.51804],[-58.00256,-17.51955],[-58.018,-17.50839],[-58.02663,-17.50004],[-58.03943,-17.49378],[-58.04334,-17.49267],[-58.04947,-17.46302],[-58.06008,-17.45073],[-58.07235,-17.45207],[-58.08922,-17.46113],[-58.11832,-17.45038],[-58.1228,-17.41468],[-58.12983,-17.41156],[-58.13921,-17.41563],[-58.14541,-17.41366],[-58.15244,-17.40202],[-58.15185,-17.39113],[-58.17019,-17.39539],[-58.1844,-17.39665],[-58.19148,-17.3925],[-58.19174,-17.38788],[-58.20033,-17.38302],[-58.19507,-17.36896],[-58.20213,-17.35705],[-58.22023,-17.36004],[-58.22767,-17.35671],[-58.22773,-17.35607],[-58.23021,-17.35605],[-58.24199,-17.36288],[-58.24485,-17.36215],[-58.25029,-17.35705],[-58.25575,-17.35424],[-58.25863,-17.34564],[-58.26352,-17.34469],[-58.26363,-17.3304],[-58.27649,-17.32375],[-58.27643,-17.30058],[-58.29197,-17.30187],[-58.29817,-17.29883],[-58.29686,-17.29133],[-58.29546,-17.29056],[-58.29564,-17.29042],[-58.29688,-17.28462],[-58.30322,-17.27987],[-58.30341,-17.27028],[-58.319,-17.26677],[-58.32206,-17.26023],[-58.32142,-17.25884],[-58.33268,-17.25074],[-58.33429,-17.24475],[-58.33902,-17.2408],[-58.34279,-17.23352],[-58.34594,-17.23274],[-58.35653,-17.21228],[-58.36427,-17.21429],[-58.36435,-17.21005],[-58.36458,-17.1998],[-58.36958,-17.20038],[-58.39547,-17.18447],[-58.3975,-17.13676],[-58.38899,-17.11769],[-58.41848,-17.12063],[-58.42268,-17.11512],[-58.42257,-17.1128],[-58.42534,-17.11204],[-58.42902,-17.1053],[-58.42558,-17.09263],[-58.42491,-17.09025],[-58.43408,-17.08661],[-58.43578,-17.07881],[-58.43052,-17.07228],[-58.43216,-17.05877],[-58.42542,-17.05325],[-58.42199,-17.05047],[-58.43417,-17.04571],[-58.4343,-17.03984],[-58.4306,-17.03679],[-58.41906,-17.03809],[-58.41893,-17.03792],[-58.4269,-17.0353],[-58.42967,-17.02915],[-58.42957,-17.02803],[-58.43491,-17.02725],[-58.43552,-17.00761],[-58.42722,-16.99949],[-58.42297,-16.98929],[-58.43144,-16.99083],[-58.4446,-16.98072],[-58.447,-16.97884],[-58.44743,-16.97212],[-58.44981,-16.97183],[-58.45337,-16.96887],[-58.4561,-16.9694],[-58.45953,-16.96699],[-58.46172,-16.9545],[-58.45765,-16.94276],[-58.46565,-16.94249],[-58.46854,-16.94116],[-58.47435,-16.93496],[-58.4688,-16.92405],[-58.47361,-16.91594],[-58.47445,-16.9145],[-58.46685,-16.91107],[-58.46059,-16.9007],[-58.46316,-16.89963],[-58.46811,-16.89895],[-58.46319,-16.87345],[-58.46624,-16.86886],[-58.46103,-16.86427],[-58.46415,-16.86218],[-58.46381,-16.86041],[-58.46608,-16.85844],[-58.46145,-16.84951],[-58.46798,-16.84821],[-58.46183,-16.84109],[-58.47596,-16.82744],[-58.47741,-16.8155],[-58.47191,-16.79146],[-58.46333,-16.79245],[-58.46011,-16.78804],[-58.46405,-16.77932],[-58.46397,-16.7763],[-58.46661,-16.7569],[-58.47339,-16.74518],[-58.46669,-16.72084],[-58.47052,-16.70303],[-58.46084,-16.6667],[-58.46304,-16.65223],[-58.43602,-16.59236],[-58.42801,-16.58567],[-58.42127,-16.57356],[-58.39377,-16.56287],[-58.38601,-16.5436],[-58.3577,-16.52938],[-58.3438,-16.51773]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Chile, south of 40º S#LU", "itu_zone_number": 16 }, "geometry": { "type": "Polygon", "coordinates": [[[-78,-40],[-55,-40],[-55,-60],[-78,-60],[-78,-40]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Iceland", "itu_zone_number": 17 }, "geometry": { "type": "Polygon", "coordinates": [[[-10,73],[-50,54],[-10,61],[-10,73]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Svalbard, south of 80º N#JX", "itu_zone_number": 18 }, "geometry": { "type": "Polygon", "coordinates": [[[2,61],[-10,61],[-10,80],[32,80],[32,70],[30.83395,69.80903],[30.8235,69.79009],[30.87046,69.75119],[30.87739,69.74028],[30.88772,69.73625],[30.89256,69.72937],[30.88851,69.71988],[30.8755,69.71751],[30.87896,69.71229],[30.94652,69.68099],[30.92344,69.67067],[30.95118,69.63556],[30.95131,69.59888],[30.93771,69.5622],[30.88751,69.54531],[30.81534,69.52842],[30.66076,69.54129],[30.52267,69.54073],[30.41403,69.58992],[30.32336,69.62242],[30.23268,69.65111],[30.17355,69.66305],[30.15328,69.6702],[30.11652,69.66494],[30.08801,69.65825],[30.08971,69.64297],[30.13878,69.64344],[30.15096,69.62648],[30.15215,69.60951],[30.17651,69.58514],[30.18947,69.56538],[30.18045,69.55618],[30.18104,69.54697],[30.17065,69.53393],[30.12389,69.52074],[30.11282,69.47199],[30.1128,69.46647],[30.06884,69.4494],[30.05097,69.43232],[30.01662,69.41813],[29.95341,69.40518],[29.93829,69.40798],[29.93142,69.41465],[29.9163,69.41938],[29.90118,69.41735],[29.86853,69.42553],[29.8329,69.4184],[29.80002,69.40548],[29.76988,69.39449],[29.72327,69.39026],[29.69611,69.36463],[29.65247,69.34867],[29.56914,69.3175],[29.53251,69.31722],[29.5261,69.32955],[29.49771,69.32393],[29.46383,69.32123],[29.4304,69.32237],[29.41644,69.31761],[29.39423,69.32254],[29.34845,69.30816],[29.28618,69.29669],[29.27426,69.25766],[29.28845,69.24646],[29.31362,69.23818],[29.2921,69.1992],[29.28821,69.17532],[29.25135,69.16218],[29.25593,69.15173],[29.23853,69.1364],[29.24356,69.12873],[29.23486,69.124],[29.23943,69.1116],[29.15657,69.06623],[29.10003,69.04356],[29.06283,69.01846],[29.04212,69.01007],[29.02224,69.02491],[28.92959,69.05153],[28.50354,68.93155],[28.41807,68.91512],[28.46719,68.88589],[28.66203,68.88661],[28.80195,68.86853],[28.70864,68.7334],[28.43406,68.54045],[28.64708,68.19796],[29.33251,68.07123],[29.68346,67.79256],[30.01244,67.66727],[29.92944,67.5234],[29.05847,66.98847],[29.04443,66.94918],[29.03704,66.86997],[29.10656,66.79938],[29.29144,66.69851],[29.39941,66.59762],[29.4945,66.53361],[29.71044,66.25916],[29.92089,66.11988],[30.01599,65.98286],[30.08361,65.87291],[30.13476,65.67077],[29.99782,65.69433],[29.71805,65.63643],[29.86164,65.56583],[29.73607,65.47474],[29.74234,65.34715],[29.6026,65.26128],[29.63358,65.23096],[29.78091,65.23191],[29.89527,65.20524],[29.81639,65.14263],[29.88034,65.11233],[29.82618,65.0949],[29.7112,65.08618],[29.61821,65.06358],[29.60211,64.91404],[29.73983,64.78778],[30.03723,64.78739],[30.07988,64.77012],[30.04563,64.71539],[30.13095,64.64807],[30.10833,64.63005],[29.96486,64.57907],[30.05146,64.45816],[30.06455,64.40354],[30.12159,64.3584],[30.24454,64.34419],[30.36749,64.29667],[30.3948,64.27054],[30.49902,64.25873],[30.51535,64.22305],[30.46576,64.19693],[30.55305,64.12588],[30.53597,64.04284],[30.45297,63.98385],[30.30954,63.91156],[30.26499,63.81994],[30.14354,63.79369],[29.97814,63.75289],[30.50411,63.46099],[30.76194,63.41026],[31.01977,63.31033],[31.22268,63.22025],[31.31572,63.08066],[31.62057,62.92342],[31.18934,62.4652],[30.03302,61.78308],[29.30239,61.32151],[29.23128,61.25782],[28.99537,61.17299],[28.75426,61.07212],[28.65657,60.95013],[28.5351,60.96115],[28.19391,60.77455],[27.85211,60.58287],[27.78558,60.53412],[27.77398,60.50158],[27.7514,60.46094],[27.68487,60.42571],[27.72636,60.39067],[27.58109,60.29591],[20.51806,58.95105],[19.39575,56.23785],[15.07727,54.74072],[13.40142,54.83253],[12.14602,54.47168],[11.28613,54.5692],[10.00537,54.80993],[9.81125,54.81183],[9.63911,54.84221],[9.60245,54.88714],[9.43574,54.82838],[9.42017,54.8338],[9.4101,54.84238],[9.3817,54.83424],[9.37014,54.81974],[9.3421,54.80049],[9.31543,54.80894],[9.29151,54.80632],[9.27446,54.81199],[9.24917,54.81134],[9.23348,54.83284],[9.24527,54.84643],[9.14454,54.87285],[9.05205,54.87239],[8.9575,54.90195],[8.90061,54.9041],[8.84922,54.89835],[8.83843,54.90421],[8.80292,54.90534],[8.7786,54.89496],[8.72995,54.89316],[8.67953,54.91318],[8.65658,54.90794],[8.61343,54.9164],[8.53985,55.03551],[8.42565,55.07829],[5.97802,55.07554],[2,61]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**European Russia, between 60º and 80º N and west of 50º E#UA8,9", "itu_zone_number": 19 }, "geometry": { "type": "Polygon", "coordinates": [[[50,60],[50,80],[32,80],[32,70],[30.83395,69.80903],[30.8235,69.79009],[30.87046,69.75119],[30.87739,69.74028],[30.88772,69.73625],[30.89256,69.72937],[30.88851,69.71988],[30.8755,69.71751],[30.87896,69.71229],[30.94652,69.68099],[30.92344,69.67067],[30.95118,69.63556],[30.95131,69.59888],[30.93771,69.5622],[30.88751,69.54531],[30.81534,69.52842],[30.66076,69.54129],[30.52267,69.54073],[30.41403,69.58992],[30.32336,69.62242],[30.23268,69.65111],[30.17355,69.66305],[30.15328,69.6702],[30.11652,69.66494],[30.08801,69.65825],[30.08971,69.64297],[30.13878,69.64344],[30.15096,69.62648],[30.15215,69.60951],[30.17651,69.58514],[30.18947,69.56538],[30.18045,69.55618],[30.18104,69.54697],[30.17065,69.53393],[30.12389,69.52074],[30.11282,69.47199],[30.1128,69.46647],[30.06884,69.4494],[30.05097,69.43232],[30.01662,69.41813],[29.95341,69.40518],[29.93829,69.40798],[29.93142,69.41465],[29.9163,69.41938],[29.90118,69.41735],[29.86853,69.42553],[29.8329,69.4184],[29.80002,69.40548],[29.76988,69.39449],[29.72327,69.39026],[29.69611,69.36463],[29.65247,69.34867],[29.56914,69.3175],[29.53251,69.31722],[29.5261,69.32955],[29.49771,69.32393],[29.46383,69.32123],[29.4304,69.32237],[29.41644,69.31761],[29.39423,69.32254],[29.34845,69.30816],[29.28618,69.29669],[29.27426,69.25766],[29.28845,69.24646],[29.31362,69.23818],[29.2921,69.1992],[29.28821,69.17532],[29.25135,69.16218],[29.25593,69.15173],[29.23853,69.1364],[29.24356,69.12873],[29.23486,69.124],[29.23943,69.1116],[29.15657,69.06623],[29.10003,69.04356],[29.06283,69.01846],[29.04212,69.01007],[29.02224,69.02491],[28.92959,69.05153],[28.50354,68.93155],[28.41807,68.91512],[28.46719,68.88589],[28.66203,68.88661],[28.80195,68.86853],[28.70864,68.7334],[28.43406,68.54045],[28.64708,68.19796],[29.33251,68.07123],[29.68346,67.79256],[30.01244,67.66727],[29.92944,67.5234],[29.05847,66.98847],[29.04443,66.94918],[29.03704,66.86997],[29.10656,66.79938],[29.29144,66.69851],[29.39941,66.59762],[29.4945,66.53361],[29.71044,66.25916],[29.92089,66.11988],[30.01599,65.98286],[30.08361,65.87291],[30.13476,65.67077],[29.99782,65.69433],[29.71805,65.63643],[29.86164,65.56583],[29.73607,65.47474],[29.74234,65.34715],[29.6026,65.26128],[29.63358,65.23096],[29.78091,65.23191],[29.89527,65.20524],[29.81639,65.14263],[29.88034,65.11233],[29.82618,65.0949],[29.7112,65.08618],[29.61821,65.06358],[29.60211,64.91404],[29.73983,64.78778],[30.03723,64.78739],[30.07988,64.77012],[30.04563,64.71539],[30.13095,64.64807],[30.10833,64.63005],[29.96486,64.57907],[30.05146,64.45816],[30.06455,64.40354],[30.12159,64.3584],[30.24454,64.34419],[30.36749,64.29667],[30.3948,64.27054],[30.49902,64.25873],[30.51535,64.22305],[30.46576,64.19693],[30.55305,64.12588],[30.53597,64.04284],[30.45297,63.98385],[30.30954,63.91156],[30.26499,63.81994],[30.14354,63.79369],[29.97814,63.75289],[30.50411,63.46099],[30.76194,63.41026],[31.01977,63.31033],[31.22268,63.22025],[31.31572,63.08066],[31.62057,62.92342],[31.18934,62.4652],[30.03302,61.78308],[29.30239,61.32151],[29.41552,61.26117],[29.4968,61.25873],[29.55061,61.24308],[29.57362,61.18578],[30.46556,61.11219],[31.37316,60],[50,60]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Franz Josef Land, south of 80º N#UA1,4", "itu_zone_number": 20 }, "geometry": { "type": "Polygon", "coordinates": [[[50,80],[75,80],[75,60],[50,60],[50,80]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Asiatic Russia, between 60º and 80º N and between 75º and 90º E", "itu_zone_number": 21 }, "geometry": { "type": "Polygon", "coordinates": [[[75,80],[90,80],[90,60],[75,60],[75,80]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Asiatic Russia, between 60º and 80º N and between 90º and 110º E", "itu_zone_number": 22 }, "geometry": { "type": "Polygon", "coordinates": [[[90,80],[110,80],[110,60],[90,60],[90,80]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Asiatic Russia, between 60º and 80º N and between 110º and 135º E", "itu_zone_number": 23 }, "geometry": { "type": "Polygon", "coordinates": [[[110,80],[135,80],[135,60],[110,60],[110,80]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Asiatic Russia, between 60º and 80º N and between 135º and 155º E", "itu_zone_number": 24 }, "geometry": { "type": "Polygon", "coordinates": [[[135,80],[155,80],[155,60],[135,60],[135,80]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Asiatic Russia, between 60º and 80º N and between 155º and 170º E", "itu_zone_number": 25 }, "geometry": { "type": "Polygon", "coordinates": [[[155,80],[170,80],[170,60],[155,60],[155,80]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Asiatic Russia, between 60º and 80º N and east of 170º E", "itu_zone_number": 26 }, "geometry": { "type": "Polygon", "coordinates": [[[170,80],[190,80],[192.96149,65.74529],[180,60],[170,60],[170,80]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Andorra#EI", "itu_zone_number": 27 }, "geometry": { "type": "Polygon", "coordinates": [[[7.5,42.43575],[3.17622,42.43575],[3.11997,42.43681],[3.10283,42.42417],[3.0802,42.42369],[3.07679,42.43842],[3.04867,42.45314],[3.03911,42.4765],[3.01543,42.46866],[2.99176,42.47298],[2.9722,42.46717],[2.94441,42.47959],[2.91903,42.45683],[2.86893,42.46648],[2.85727,42.45256],[2.83737,42.45891],[2.82709,42.44499],[2.80307,42.43107],[2.80447,42.41944],[2.77496,42.41363],[2.75333,42.4239],[2.71935,42.41796],[2.66968,42.40032],[2.67031,42.38424],[2.65171,42.38643],[2.66744,42.36528],[2.67494,42.34413],[2.63197,42.34124],[2.59263,42.354],[2.56977,42.35865],[2.55446,42.35466],[2.5419,42.33241],[2.50531,42.34162],[2.48794,42.34069],[2.43913,42.37432],[2.43152,42.39375],[2.39923,42.38961],[2.38342,42.39966],[2.35937,42.4016],[2.34357,42.41571],[2.32708,42.41643],[2.31059,42.42729],[2.28861,42.42264],[2.27211,42.4332],[2.25562,42.43565],[2.19851,42.41605],[2.16063,42.42484],[2.12246,42.40642],[2.11451,42.37989],[2.0887,42.36553],[2.04833,42.36038],[2.0162,42.35117],[1.97214,42.37211],[1.95975,42.3956],[1.95834,42.4191],[1.94184,42.43144],[1.93906,42.45392],[1.89712,42.44515],[1.82771,42.48501],[1.79815,42.48899],[1.76585,42.48486],[1.72597,42.50091],[1.70848,42.49005],[1.67228,42.49678],[1.6553,42.46907],[1.58838,42.46429],[1.57639,42.44736],[1.56103,42.45908],[1.54842,42.43229],[1.49573,42.43243],[1.47626,42.43655],[1.45129,42.43763],[1.44018,42.45235],[1.44005,42.47924],[1.41233,42.48438],[1.41684,42.49277],[1.44607,42.49508],[1.46882,42.50983],[1.44351,42.54482],[1.4127,42.53326],[1.42584,42.55459],[1.44173,42.56783],[1.4274,42.58005],[1.44496,42.59425],[1.44054,42.60643],[1.39405,42.67273],[1.35305,42.71883],[1.25564,42.71868],[1.22068,42.72365],[1.17197,42.71045],[1.13529,42.72652],[1.13156,42.75065],[1.08016,42.78882],[1.05337,42.78389],[1.03482,42.78703],[0.98125,42.78926],[0.95649,42.80582],[0.92346,42.79057],[0.86015,42.82657],[0.83368,42.826],[0.80171,42.83953],[0.78173,42.83436],[0.70742,42.86028],[0.65985,42.84769],[0.67474,42.81029],[0.64373,42.78353],[0.66766,42.77289],[0.64214,42.75722],[0.66057,42.74558],[0.68312,42.72083],[0.67546,42.69204],[0.62608,42.69262],[0.60142,42.70329],[0.58638,42.69377],[0.53491,42.70315],[0.51915,42.69435],[0.49583,42.69111],[0.47252,42.70199],[0.4204,42.68743],[0.39708,42.6968],[0.39025,42.71627],[0.37792,42.71454],[0.3601,42.7229],[0.32994,42.70885],[0.32451,42.69681],[0.31771,42.68275],[0.29717,42.67273],[0.26839,42.69602],[0.26159,42.71728],[0.23144,42.71837],[0.18618,42.73661],[0.11252,42.71118],[0.08106,42.71744],[0.05784,42.69746],[0.01676,42.70069],[-0.01058,42.68374],[-0.05783,42.69502],[-0.0691,42.7158],[-0.10783,42.72448],[-0.16114,42.79346],[-0.17875,42.78281],[-0.23424,42.80771],[-0.23919,42.82099],[-0.25814,42.82158],[-0.2771,42.83427],[-0.31995,42.84269],[-0.34326,42.84056],[-0.37755,42.80821],[-0.38783,42.79657],[-0.41459,42.80911],[-0.44065,42.79791],[-0.50649,42.8269],[-0.52295,42.81249],[-0.52293,42.79606],[-0.54076,42.79071],[-0.55585,42.77731],[-0.56983,42.78552],[-0.57008,42.80583],[-0.59804,42.80614],[-0.60178,42.82893],[-0.64534,42.85373],[-0.67792,42.88256],[-0.70157,42.8802],[-0.7285,42.89512],[-0.73346,42.91205],[-0.73102,42.93685],[-0.75055,42.96568],[-0.78075,42.96669],[-0.81094,42.95163],[-0.89332,42.95667],[-0.90703,42.96171],[-0.93517,42.95218],[-0.98357,42.9665],[-1.01548,42.9949],[-1.07038,42.99795],[-1.11425,43.02263],[-1.13895,43.00521],[-1.14717,43.02594],[-1.17049,43.03864],[-1.18045,43.03278],[-1.20877,43.05294],[-1.22885,43.05503],[-1.25443,43.03856],[-1.27176,43.0562],[-1.30558,43.06883],[-1.29776,43.09571],[-1.27073,43.11858],[-1.33073,43.11144],[-1.34578,43.09249],[-1.34161,43.07554],[-1.35249,43.0256],[-1.44445,43.04926],[-1.47324,43.08696],[-1.41688,43.1257],[-1.41499,43.15208],[-1.40168,43.15525],[-1.40211,43.17846],[-1.38184,43.18915],[-1.37975,43.25661],[-1.4102,43.27348],[-1.43504,43.26691],[-1.47361,43.27635],[-1.51505,43.29421],[-1.56198,43.28808],[-1.5621,43.27677],[-1.57046,43.24946],[-1.61452,43.25615],[-1.62969,43.27849],[-1.62288,43.30683],[-1.67999,43.31601],[-1.72886,43.29722],[-1.74211,43.3125],[-1.74162,43.32779],[-1.76263,43.34437],[-1.79187,43.35196],[-1.79001,43.37423],[-1.77717,43.41047],[-3,44],[-13,44],[-14,60.35968],[-10,61],[2,61],[5.97802,55.07554],[6.6318,53.55729],[6.91479,53.44177],[6.97869,53.33729],[7.18917,53.3018],[7.2079,53.24393],[7.21807,53.17974],[7.20001,53.17356],[7.17647,53.12787],[7.20352,53.11554],[7.21087,53.00362],[7.18252,52.94126],[7.08461,52.84969],[7.04946,52.63586],[6.8919,52.65033],[6.75082,52.65146],[6.71497,52.63057],[6.72031,52.588],[6.76396,52.56291],[6.68401,52.55371],[6.69622,52.51988],[6.6947,52.48604],[6.76853,52.46085],[6.85061,52.45825],[6.93512,52.43883],[6.95814,52.44001],[6.98391,52.46964],[7.03303,52.40718],[7.06567,52.39665],[7.07285,52.35915],[7.02235,52.27803],[7.06417,52.23668],[7.03446,52.22467],[6.98552,52.22443],[6.97004,52.20377],[6.95318,52.18225],[6.90886,52.1759],[6.88463,52.1557],[6.86588,52.12202],[6.75973,52.11704],[6.75105,52.0888],[6.72863,52.07574],[6.6966,52.07029],[6.68929,52.03951],[6.73372,52.03707],[6.83033,51.99238],[6.82807,51.96715],[6.80484,51.9583],[6.79323,51.93441],[6.77887,51.92237],[6.72417,51.89284],[6.68668,51.91864],[6.5558,51.88515],[6.47436,51.85505],[6.38756,51.87197],[6.4074,51.8497],[6.40802,51.82743],[6.37109,51.83543],[6.35339,51.84682],[6.30685,51.85228],[6.2768,51.87301],[6.21256,51.86527],[6.18319,51.89447],[6.15656,51.90332],[6.10835,51.89526],[6.1365,51.88293],[6.14645,51.86999],[6.16464,51.86213],[6.17149,51.84088],[6.10281,51.84846],[6.06708,51.86283],[6.03271,51.84661],[6.00042,51.82748],[5.95989,51.8338],[5.94738,51.82394],[5.98094,51.79099],[5.99361,51.76688],[5.95462,51.74887],[5.95134,51.73766],[5.99902,51.73776],[6.03847,51.71745],[6.02847,51.70564],[6.02671,51.67851],[6.11582,51.65513],[6.0882,51.60833],[6.14992,51.56702],[6.21164,51.51546],[6.22246,51.46913],[6.20857,51.39883],[6.23012,51.35891],[6.16927,51.33271],[6.13314,51.28248],[6.07778,51.24085],[6.08635,51.223],[6.07019,51.21892],[6.07326,51.17612],[6.09281,51.16774],[6.16551,51.19276],[6.18182,51.18769],[6.13943,51.17371],[6.1712,51.15972],[6.05876,51.113],[5.97508,51.0672],[5.95659,51.03393],[5.93498,51.0337],[5.91337,51.06455],[5.86773,51.04802],[5.87966,51.01711],[5.9076,51.00165],[5.89983,50.97583],[5.9502,50.98842],[5.9676,50.98026],[6.02438,50.9847],[6.01226,50.95794],[6.01661,50.93464],[6.083,50.91918],[6.0746,50.84661],[6.05529,50.85455],[6.01682,50.84613],[6.02504,50.81515],[6.00577,50.80178],[5.9844,50.81062],[5.97234,50.80028],[6.02262,50.77253],[6.02346,50.75348],[6.04115,50.72689],[6.11262,50.72022],[6.1834,50.64788],[6.16905,50.64337],[6.1808,50.62319],[6.19332,50.63334],[6.2719,50.62404],[6.24116,50.58713],[6.22826,50.58946],[6.17501,50.55488],[6.22706,50.49416],[6.28432,50.50336],[6.34433,50.48636],[6.33726,50.46081],[6.36863,50.45449],[6.3754,50.41983],[6.34371,50.37817],[6.41354,50.32808],[6.36078,50.30718],[6.31929,50.32832],[6.29694,50.30397],[6.28283,50.2726],[6.21791,50.25616],[6.17221,50.2239],[6.19068,50.17963],[6.14761,50.17658],[6.13887,50.15681],[6.15711,50.14544],[6.13315,50.12621],[6.1182,50.05432],[6.15269,49.99122],[6.21738,49.94401],[6.24182,49.89587],[6.29372,49.87427],[6.32885,49.83993],[6.35892,49.8546],[6.39997,49.82676],[6.43691,49.81043],[6.47186,49.8191],[6.52878,49.80827],[6.50858,49.76052],[6.49937,49.70922],[6.43917,49.67452],[6.42567,49.6345],[6.36844,49.56511],[6.36799,49.47001],[6.39823,49.46661],[6.42572,49.4757],[6.55621,49.4214],[6.53769,49.40677],[6.5861,49.38247],[6.58447,49.37014],[6.60207,49.36317],[6.59083,49.35352],[6.57285,49.35943],[6.5686,49.34923],[6.66616,49.27365],[6.73829,49.16588],[6.78122,49.16583],[6.83788,49.15501],[6.85782,49.17831],[6.83491,49.21308],[6.85915,49.22328],[6.89164,49.21015],[6.93371,49.22225],[6.95792,49.20024],[6.97152,49.20865],[7.00717,49.18862],[7.03182,49.19014],[7.0297,49.1728],[7.04131,49.15007],[7.04667,49.11539],[7.08539,49.13165],[7.0814,49.15505],[7.10824,49.15597],[7.10381,49.13846],[7.1241,49.14431],[7.15045,49.12282],[7.18779,49.1283],[7.20204,49.11947],[7.23663,49.13123],[7.29319,49.11783],[7.32582,49.14691],[7.35998,49.14438],[7.36668,49.17059],[7.44224,49.18268],[7.4328,49.16596],[7.45906,49.16539],[7.49357,49.17201],[7.49984,49.15108],[7.48962,49.13553],[7.56448,49.07939],[7.60087,49.0844],[7.63281,49.06982],[7.63453,49.05343],[7.67574,49.04637],[7.71351,49.05721],[7.75952,49.04645],[7.79866,49.06358],[7.86802,49.03212],[7.88347,49.04908],[7.90442,49.04804],[7.91713,49.0425],[7.93808,49.05856],[7.97998,49.03127],[8.06685,49.00501],[8.1096,48.98648],[8.23199,48.96976],[8.19846,48.9561],[8.13171,48.8827],[8.09243,48.80568],[8.06956,48.78823],[8.03022,48.78888],[8.0252,48.76961],[8.01195,48.76121],[7.96622,48.7598],[7.96443,48.72398],[7.88832,48.6602],[7.84526,48.64694],[7.82923,48.61581],[7.8061,48.58846],[7.80553,48.5075],[7.76925,48.49204],[7.76523,48.45313],[7.73099,48.38871],[7.74218,48.3255],[7.69486,48.30436],[7.67394,48.22889],[7.64479,48.20646],[7.62631,48.17903],[7.60059,48.158],[7.59759,48.13487],[7.57811,48.11908],[7.56937,48.03432],[7.61612,47.99416],[7.62231,47.96713],[7.58456,47.92905],[7.57942,47.89529],[7.5578,47.87995],[7.56227,47.84619],[7.53103,47.77925],[7.55032,47.73114],[7.51052,47.69787],[7.52083,47.65998],[7.56719,47.63456],[7.57054,47.61363],[7.59311,47.6001],[7.58608,47.57675],[7.56285,47.57659],[7.55884,47.56531],[7.49715,47.53828],[7.50064,47.53033],[7.52436,47.53377],[7.52798,47.51509],[7.50507,47.51503],[7.50736,47.49623],[7.47943,47.47929],[7.43456,47.49737],[7.42128,47.48205],[7.45721,47.47252],[7.39553,47.4334],[7.31488,47.44126],[7.24246,47.42126],[7.23185,47.44119],[7.20242,47.43735],[7.17298,47.44466],[7.182,47.48168],[7.20476,47.4927],[7.17011,47.49127],[7.12997,47.50098],[7.07441,47.48884],[7.02434,47.50547],[6.988,47.49427],[7.00042,47.4538],[6.94417,47.43377],[6.93733,47.40796],[6.91676,47.40446],[6.90853,47.38876],[6.88383,47.37307],[6.87836,47.35284],[6.97358,47.36368],[7.0221,47.37266],[7.04773,47.36177],[7.05963,47.33601],[7.01258,47.32182],[7.00399,47.30019],[6.9401,47.28487],[6.9524,47.24305],[6.84523,47.17323],[6.85616,47.15941],[6.74332,47.10786],[6.74154,47.09386],[6.72329,47.09107],[6.69502,47.06679],[6.71894,47.05003],[6.66499,47.02814],[6.63026,46.99501],[6.59103,46.9887],[6.51029,46.96493],[6.49548,46.97302],[6.43152,46.92549],[6.46546,46.8872],[6.45882,46.84745],[6.42941,46.80691],[6.46042,46.78705],[6.43369,46.75768],[6.39323,46.74712],[6.37547,46.72977],[6.2713,46.68003],[6.1124,46.57677],[6.1544,46.5457],[6.07498,46.46496],[6.08299,46.44337],[6.06628,46.41611],[6.17592,46.36804],[6.11675,46.31179],[6.10608,46.27828],[6.12287,46.24857],[6.10449,46.23799],[6.05864,46.24451],[6.04713,46.23108],[6.0345,46.23387],[5.99427,46.22221],[5.96502,46.19535],[5.99345,46.18275],[5.95321,46.12828],[6.04534,46.1463],[6.09277,46.15056],[6.14296,46.1453],[6.18662,46.16671],[6.18909,46.17862],[6.23523,46.20624],[6.28549,46.2177],[6.31103,46.24247],[6.29782,46.26173],[6.2768,46.25332],[6.26402,46.24302],[6.23476,46.27545],[6.25446,46.28976],[6.24944,46.30217],[6.21912,46.31143],[6.25198,46.36241],[6.33691,46.40369],[6.42459,46.41562],[6.51776,46.45595],[6.68351,46.45519],[6.82179,46.42604],[6.80637,46.39266],[6.80693,46.37757],[6.76904,46.3587],[6.80393,46.32086],[6.86629,46.27923],[6.84632,46.25126],[6.80712,46.21],[6.80774,46.18109],[6.78883,46.15902],[6.79463,46.13506],[6.89875,46.12404],[6.87172,46.04784],[6.89117,46.04404],[6.92846,46.06788],[7.02297,45.97974],[7.00938,45.96729],[7.03698,45.95485],[7.0455,45.92231],[7.01406,45.91463],[7.00459,45.89358],[6.99388,45.86868],[6.95977,45.8615],[6.93664,45.84667],[6.87643,45.83949],[6.87237,45.82525],[6.84358,45.83972],[6.82304,45.83841],[6.80524,45.81987],[6.81462,45.72032],[6.85639,45.68396],[6.90639,45.67637],[6.90765,45.65967],[6.93088,45.6468],[6.97184,45.65851],[6.99782,45.63783],[6.97922,45.58619],[6.99052,45.56999],[7.00457,45.50379],[7.05377,45.49142],[7.04667,45.47633],[7.1008,45.46783],[7.11159,45.43295],[7.18554,45.40385],[7.16163,45.3588],[7.113,45.32147],[7.13659,45.27578],[7.12884,45.24432],[7.11443,45.24978],[7.0674,45.20512],[7.05333,45.22623],[6.96065,45.20461],[6.95688,45.18026],[6.89268,45.16171],[6.89823,45.13911],[6.8489,45.1288],[6.82012,45.14738],[6.77211,45.16015],[6.74191,45.13695],[6.71171,45.14474],[6.68152,45.13708],[6.66233,45.11973],[6.62115,45.10626],[6.65743,45.07074],[6.67282,45.02096],[6.74314,45.01776],[6.7535,44.99901],[6.7364,44.98804],[6.76261,44.96414],[6.74912,44.90859],[6.8249,44.86761],[6.91166,44.84415],[6.9346,44.85929],[6.996,44.84135],[7.02443,44.82147],[7.00106,44.78781],[7.02131,44.76916],[7.03057,44.72515],[7.06557,44.71127],[7.0765,44.68107],[7.01624,44.68951],[6.97521,44.68232],[6.95065,44.65267],[6.97004,44.62302],[6.94849,44.61502],[6.92969,44.57378],[6.87836,44.54998],[6.8471,44.52782],[6.8766,44.48644],[6.9418,44.42939],[6.93406,44.42201],[6.89886,44.42248],[6.88887,44.36455],[6.91684,44.35472],[6.95005,44.30756],[6.99149,44.28006],[7.00024,44.24371],[7.03644,44.2231],[7.0714,44.23306],[7.12047,44.20851],[7.16129,44.20562],[7.18839,44.19813],[7.21823,44.16898],[7.23671,44.1737],[7.26617,44.14591],[7.33959,44.14374],[7.36282,44.11873],[7.42767,44.11938],[7.50627,44.14369],[7.57662,44.15223],[7.62774,44.15288],[7.63575,44.17626],[7.68633,44.17304],[7.66904,44.13264],[7.72083,44.07895],[7.69812,44.04163],[7.66442,44.02602],[7.66368,43.99068],[7.62486,43.96213],[7.56682,43.94347],[7.56122,43.89848],[7.52341,43.88836],[7.49109,43.86835],[7.51128,43.83005],[7.53148,43.78183],[7.61033,43.69135],[7.5,42.43575]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Germany#E7", "itu_zone_number": 28 }, "geometry": { "type": "Polygon", "coordinates": [[[19.39575,56.23785],[15.07727,54.74072],[13.40142,54.83253],[12.14602,54.47168],[11.28613,54.5692],[10.00537,54.80993],[9.81125,54.81183],[9.63911,54.84221],[9.60245,54.88714],[9.43574,54.82838],[9.42017,54.8338],[9.4101,54.84238],[9.3817,54.83424],[9.37014,54.81974],[9.3421,54.80049],[9.31543,54.80894],[9.29151,54.80632],[9.27446,54.81199],[9.24917,54.81134],[9.23348,54.83284],[9.24527,54.84643],[9.14454,54.87285],[9.05205,54.87239],[8.9575,54.90195],[8.90061,54.9041],[8.84922,54.89835],[8.83843,54.90421],[8.80292,54.90534],[8.7786,54.89496],[8.72995,54.89316],[8.67953,54.91318],[8.65658,54.90794],[8.61343,54.9164],[8.53985,55.03551],[8.42565,55.07829],[5.97802,55.07554],[6.6318,53.55729],[6.91479,53.44177],[6.97869,53.33729],[7.18917,53.3018],[7.2079,53.24393],[7.21807,53.17974],[7.20001,53.17356],[7.17647,53.12787],[7.20352,53.11554],[7.21087,53.00362],[7.18252,52.94126],[7.08461,52.84969],[7.04946,52.63586],[6.8919,52.65033],[6.75082,52.65146],[6.71497,52.63057],[6.72031,52.588],[6.76396,52.56291],[6.68401,52.55371],[6.69622,52.51988],[6.6947,52.48604],[6.76853,52.46085],[6.85061,52.45825],[6.93512,52.43883],[6.95814,52.44001],[6.98391,52.46964],[7.03303,52.40718],[7.06567,52.39665],[7.07285,52.35915],[7.02235,52.27803],[7.06417,52.23668],[7.03446,52.22467],[6.98552,52.22443],[6.97004,52.20377],[6.95318,52.18225],[6.90886,52.1759],[6.88463,52.1557],[6.86588,52.12202],[6.75973,52.11704],[6.75105,52.0888],[6.72863,52.07574],[6.6966,52.07029],[6.68929,52.03951],[6.73372,52.03707],[6.83033,51.99238],[6.82807,51.96715],[6.80484,51.9583],[6.79323,51.93441],[6.77887,51.92237],[6.72417,51.89284],[6.68668,51.91864],[6.5558,51.88515],[6.47436,51.85505],[6.38756,51.87197],[6.4074,51.8497],[6.40802,51.82743],[6.37109,51.83543],[6.35339,51.84682],[6.30685,51.85228],[6.2768,51.87301],[6.21256,51.86527],[6.18319,51.89447],[6.15656,51.90332],[6.10835,51.89526],[6.1365,51.88293],[6.14645,51.86999],[6.16464,51.86213],[6.17149,51.84088],[6.10281,51.84846],[6.06708,51.86283],[6.03271,51.84661],[6.00042,51.82748],[5.95989,51.8338],[5.94738,51.82394],[5.98094,51.79099],[5.99361,51.76688],[5.95462,51.74887],[5.95134,51.73766],[5.99902,51.73776],[6.03847,51.71745],[6.02847,51.70564],[6.02671,51.67851],[6.11582,51.65513],[6.0882,51.60833],[6.14992,51.56702],[6.21164,51.51546],[6.22246,51.46913],[6.20857,51.39883],[6.23012,51.35891],[6.16927,51.33271],[6.13314,51.28248],[6.07778,51.24085],[6.08635,51.223],[6.07019,51.21892],[6.07326,51.17612],[6.09281,51.16774],[6.16551,51.19276],[6.18182,51.18769],[6.13943,51.17371],[6.1712,51.15972],[6.05876,51.113],[5.97508,51.0672],[5.95659,51.03393],[5.93498,51.0337],[5.91337,51.06455],[5.86773,51.04802],[5.87966,51.01711],[5.9076,51.00165],[5.89983,50.97583],[5.9502,50.98842],[5.9676,50.98026],[6.02438,50.9847],[6.01226,50.95794],[6.01661,50.93464],[6.083,50.91918],[6.0746,50.84661],[6.05529,50.85455],[6.01682,50.84613],[6.02504,50.81515],[6.00577,50.80178],[5.9844,50.81062],[5.97234,50.80028],[6.02262,50.77253],[6.02346,50.75348],[6.04115,50.72689],[6.11262,50.72022],[6.1834,50.64788],[6.16905,50.64337],[6.1808,50.62319],[6.19332,50.63334],[6.2719,50.62404],[6.24116,50.58713],[6.22826,50.58946],[6.17501,50.55488],[6.22706,50.49416],[6.28432,50.50336],[6.34433,50.48636],[6.33726,50.46081],[6.36863,50.45449],[6.3754,50.41983],[6.34371,50.37817],[6.41354,50.32808],[6.36078,50.30718],[6.31929,50.32832],[6.29694,50.30397],[6.28283,50.2726],[6.21791,50.25616],[6.17221,50.2239],[6.19068,50.17963],[6.14761,50.17658],[6.13887,50.15681],[6.15711,50.14544],[6.13315,50.12621],[6.1182,50.05432],[6.15269,49.99122],[6.21738,49.94401],[6.24182,49.89587],[6.29372,49.87427],[6.32885,49.83993],[6.35892,49.8546],[6.39997,49.82676],[6.43691,49.81043],[6.47186,49.8191],[6.52878,49.80827],[6.50858,49.76052],[6.49937,49.70922],[6.43917,49.67452],[6.42567,49.6345],[6.36844,49.56511],[6.36799,49.47001],[6.39823,49.46661],[6.42572,49.4757],[6.55621,49.4214],[6.53769,49.40677],[6.5861,49.38247],[6.58447,49.37014],[6.60207,49.36317],[6.59083,49.35352],[6.57285,49.35943],[6.5686,49.34923],[6.66616,49.27365],[6.73829,49.16588],[6.78122,49.16583],[6.83788,49.15501],[6.85782,49.17831],[6.83491,49.21308],[6.85915,49.22328],[6.89164,49.21015],[6.93371,49.22225],[6.95792,49.20024],[6.97152,49.20865],[7.00717,49.18862],[7.03182,49.19014],[7.0297,49.1728],[7.04131,49.15007],[7.04667,49.11539],[7.08539,49.13165],[7.0814,49.15505],[7.10824,49.15597],[7.10381,49.13846],[7.1241,49.14431],[7.15045,49.12282],[7.18779,49.1283],[7.20204,49.11947],[7.23663,49.13123],[7.29319,49.11783],[7.32582,49.14691],[7.35998,49.14438],[7.36668,49.17059],[7.44224,49.18268],[7.4328,49.16596],[7.45906,49.16539],[7.49357,49.17201],[7.49984,49.15108],[7.48962,49.13553],[7.56448,49.07939],[7.60087,49.0844],[7.63281,49.06982],[7.63453,49.05343],[7.67574,49.04637],[7.71351,49.05721],[7.75952,49.04645],[7.79866,49.06358],[7.86802,49.03212],[7.88347,49.04908],[7.90442,49.04804],[7.91713,49.0425],[7.93808,49.05856],[7.97998,49.03127],[8.06685,49.00501],[8.1096,48.98648],[8.23199,48.96976],[8.19846,48.9561],[8.13171,48.8827],[8.09243,48.80568],[8.06956,48.78823],[8.03022,48.78888],[8.0252,48.76961],[8.01195,48.76121],[7.96622,48.7598],[7.96443,48.72398],[7.88832,48.6602],[7.84526,48.64694],[7.82923,48.61581],[7.8061,48.58846],[7.80553,48.5075],[7.76925,48.49204],[7.76523,48.45313],[7.73099,48.38871],[7.74218,48.3255],[7.69486,48.30436],[7.67394,48.22889],[7.64479,48.20646],[7.62631,48.17903],[7.60059,48.158],[7.59759,48.13487],[7.57811,48.11908],[7.56937,48.03432],[7.61612,47.99416],[7.62231,47.96713],[7.58456,47.92905],[7.57942,47.89529],[7.5578,47.87995],[7.56227,47.84619],[7.53103,47.77925],[7.55032,47.73114],[7.51052,47.69787],[7.52083,47.65998],[7.56719,47.63456],[7.57054,47.61363],[7.59311,47.6001],[7.58608,47.57675],[7.56285,47.57659],[7.55884,47.56531],[7.49715,47.53828],[7.50064,47.53033],[7.52436,47.53377],[7.52798,47.51509],[7.50507,47.51503],[7.50736,47.49623],[7.47943,47.47929],[7.43456,47.49737],[7.42128,47.48205],[7.45721,47.47252],[7.39553,47.4334],[7.31488,47.44126],[7.24246,47.42126],[7.23185,47.44119],[7.20242,47.43735],[7.17298,47.44466],[7.182,47.48168],[7.20476,47.4927],[7.17011,47.49127],[7.12997,47.50098],[7.07441,47.48884],[7.02434,47.50547],[6.988,47.49427],[7.00042,47.4538],[6.94417,47.43377],[6.93733,47.40796],[6.91676,47.40446],[6.90853,47.38876],[6.88383,47.37307],[6.87836,47.35284],[6.97358,47.36368],[7.0221,47.37266],[7.04773,47.36177],[7.05963,47.33601],[7.01258,47.32182],[7.00399,47.30019],[6.9401,47.28487],[6.9524,47.24305],[6.84523,47.17323],[6.85616,47.15941],[6.74332,47.10786],[6.74154,47.09386],[6.72329,47.09107],[6.69502,47.06679],[6.71894,47.05003],[6.66499,47.02814],[6.63026,46.99501],[6.59103,46.9887],[6.51029,46.96493],[6.49548,46.97302],[6.43152,46.92549],[6.46546,46.8872],[6.45882,46.84745],[6.42941,46.80691],[6.46042,46.78705],[6.43369,46.75768],[6.39323,46.74712],[6.37547,46.72977],[6.2713,46.68003],[6.1124,46.57677],[6.1544,46.5457],[6.07498,46.46496],[6.08299,46.44337],[6.06628,46.41611],[6.17592,46.36804],[6.11675,46.31179],[6.10608,46.27828],[6.12287,46.24857],[6.10449,46.23799],[6.05864,46.24451],[6.04713,46.23108],[6.0345,46.23387],[5.99427,46.22221],[5.96502,46.19535],[5.99345,46.18275],[5.95321,46.12828],[6.04534,46.1463],[6.09277,46.15056],[6.14296,46.1453],[6.18662,46.16671],[6.18909,46.17862],[6.23523,46.20624],[6.28549,46.2177],[6.31103,46.24247],[6.29782,46.26173],[6.2768,46.25332],[6.26402,46.24302],[6.23476,46.27545],[6.25446,46.28976],[6.24944,46.30217],[6.21912,46.31143],[6.25198,46.36241],[6.33691,46.40369],[6.42459,46.41562],[6.51776,46.45595],[6.68351,46.45519],[6.82179,46.42604],[6.80637,46.39266],[6.80693,46.37757],[6.76904,46.3587],[6.80393,46.32086],[6.86629,46.27923],[6.84632,46.25126],[6.80712,46.21],[6.80774,46.18109],[6.78883,46.15902],[6.79463,46.13506],[6.89875,46.12404],[6.87172,46.04784],[6.89117,46.04404],[6.92846,46.06788],[7.02297,45.97974],[7.00938,45.96729],[7.03698,45.95485],[7.0455,45.92231],[7.01406,45.91463],[7.00459,45.89358],[6.99388,45.86868],[6.95977,45.8615],[6.93664,45.84667],[6.87643,45.83949],[6.87237,45.82525],[6.84358,45.83972],[6.82304,45.83841],[6.80524,45.81987],[6.81462,45.72032],[6.85639,45.68396],[6.90639,45.67637],[6.90765,45.65967],[6.93088,45.6468],[6.97184,45.65851],[6.99782,45.63783],[6.97922,45.58619],[6.99052,45.56999],[7.00457,45.50379],[7.05377,45.49142],[7.04667,45.47633],[7.1008,45.46783],[7.11159,45.43295],[7.18554,45.40385],[7.16163,45.3588],[7.113,45.32147],[7.13659,45.27578],[7.12884,45.24432],[7.11443,45.24978],[7.0674,45.20512],[7.05333,45.22623],[6.96065,45.20461],[6.95688,45.18026],[6.89268,45.16171],[6.89823,45.13911],[6.8489,45.1288],[6.82012,45.14738],[6.77211,45.16015],[6.74191,45.13695],[6.71171,45.14474],[6.68152,45.13708],[6.66233,45.11973],[6.62115,45.10626],[6.65743,45.07074],[6.67282,45.02096],[6.74314,45.01776],[6.7535,44.99901],[6.7364,44.98804],[6.76261,44.96414],[6.74912,44.90859],[6.8249,44.86761],[6.91166,44.84415],[6.9346,44.85929],[6.996,44.84135],[7.02443,44.82147],[7.00106,44.78781],[7.02131,44.76916],[7.03057,44.72515],[7.06557,44.71127],[7.0765,44.68107],[7.01624,44.68951],[6.97521,44.68232],[6.95065,44.65267],[6.97004,44.62302],[6.94849,44.61502],[6.92969,44.57378],[6.87836,44.54998],[6.8471,44.52782],[6.8766,44.48644],[6.9418,44.42939],[6.93406,44.42201],[6.89886,44.42248],[6.88887,44.36455],[6.91684,44.35472],[6.95005,44.30756],[6.99149,44.28006],[7.00024,44.24371],[7.03644,44.2231],[7.0714,44.23306],[7.12047,44.20851],[7.16129,44.20562],[7.18839,44.19813],[7.21823,44.16898],[7.23671,44.1737],[7.26617,44.14591],[7.33959,44.14374],[7.36282,44.11873],[7.42767,44.11938],[7.50627,44.14369],[7.57662,44.15223],[7.62774,44.15288],[7.63575,44.17626],[7.68633,44.17304],[7.66904,44.13264],[7.72083,44.07895],[7.69812,44.04163],[7.66442,44.02602],[7.66368,43.99068],[7.62486,43.96213],[7.56682,43.94347],[7.56122,43.89848],[7.52341,43.88836],[7.49109,43.86835],[7.51128,43.83005],[7.53148,43.78183],[7.61033,43.69135],[7.5,42.43575],[7.5,37.94803],[9.98889,37.93682],[12.36254,37.03947],[13.17828,35.88434],[30,33.03857],[30,36],[29.67334,36.12332],[29.58839,36.17786],[29.34707,36.21821],[28.51287,36.5339],[27.96671,36.53534],[27.84627,36.69365],[27.53398,36.61334],[27.3159,36.66434],[27.43454,36.86791],[27.22686,36.95396],[27.20893,37.14941],[26.95995,37.67625],[27.09334,37.70565],[27.13561,37.79187],[26.17643,38.2822],[26.32076,38.44329],[26.30455,38.66595],[26.73355,38.97176],[26.49005,39.40783],[26.08451,39.41639],[25.58284,40.11726],[26.03643,40.72824],[26.07509,40.729],[26.12188,40.74187],[26.1274,40.7716],[26.16586,40.81246],[26.20433,40.8263],[26.21312,40.84417],[26.21094,40.85997],[26.22304,40.86872],[26.22527,40.88622],[26.24896,40.88383],[26.26064,40.91645],[26.284,40.89033],[26.29912,40.90262],[26.27784,40.92641],[26.29055,40.93312],[26.30514,40.92817],[26.32205,40.94541],[26.36086,40.94146],[26.34868,40.96437],[26.32277,40.98003],[26.35175,40.99702],[26.367,41.02023],[26.33158,41.04385],[26.31264,41.07472],[26.33301,41.10811],[26.30783,41.11486],[26.33163,41.14701],[26.31331,41.17412],[26.32611,41.25532],[26.39841,41.25035],[26.47151,41.29348],[26.49792,41.32628],[26.54249,41.34029],[26.58769,41.32086],[26.62315,41.34183],[26.63771,41.37971],[26.6303,41.41965],[26.61273,41.42331],[26.61438,41.46407],[26.60285,41.48344],[26.59571,41.52501],[26.59214,41.56737],[26.59956,41.58097],[26.59245,41.61039],[26.56706,41.61312],[26.53068,41.62201],[26.48814,41.6521],[26.49366,41.66476],[26.43463,41.68545],[26.39275,41.68964],[26.35087,41.71434],[26.32515,41.74416],[26.37084,41.82314],[26.53944,41.82431],[26.55012,41.848],[26.56292,41.85717],[26.57572,41.87247],[26.57112,41.88673],[26.58113,41.90296],[26.5627,41.92727],[26.6253,41.97507],[26.75135,41.95914],[26.78677,41.9861],[26.82236,41.97377],[26.84499,41.97068],[26.86866,41.98649],[26.90058,41.98801],[26.93557,41.99922],[26.97056,42.00022],[26.9923,42.03372],[27.0264,42.05855],[27.01873,42.07913],[27.06433,42.09145],[27.10869,42.08383],[27.13932,42.06398],[27.20428,42.06247],[27.20929,42.09128],[27.23628,42.10582],[27.29849,42.09489],[27.34148,42.05951],[27.36977,42.05601],[27.39615,42.00824],[27.43886,41.97466],[27.49256,41.94924],[27.51056,41.95652],[27.5429,41.9152],[27.56975,41.9025],[27.57488,41.92177],[27.58551,41.93491],[27.73036,41.97957],[27.8333,41.94838],[27.81715,41.99087],[27.86142,42.00273],[27.91427,41.98153],[28.02544,41.97996],[30,42],[30,45],[29.6788,45.21198],[29.65648,45.25207],[29.66318,45.26244],[29.67811,45.27088],[29.66541,45.30613],[29.65546,45.33751],[29.59366,45.38676],[29.56621,45.40518],[29.43987,45.43278],[29.4289,45.444],[29.39389,45.43833],[29.34789,45.43844],[29.32901,45.45102],[29.28816,45.42699],[29.24869,45.43572],[29.21933,45.42177],[29.18681,45.41287],[29.17625,45.39819],[29.06502,45.36487],[28.96203,45.32961],[28.95328,45.30933],[28.95555,45.29363],[28.94959,45.27987],[28.92667,45.27939],[28.87071,45.3161],[28.84359,45.31611],[28.81415,45.33831],[28.77922,45.32383],[28.80746,45.31225],[28.79598,45.29244],[28.76415,45.29124],[28.74879,45.2823],[28.76203,45.2654],[28.78925,45.25791],[28.79175,45.24463],[28.78317,45.23787],[28.73889,45.23111],[28.71898,45.22146],[28.65101,45.24275],[28.56106,45.24664],[28.54596,45.25711],[28.33859,45.32557],[28.30632,45.37425],[28.28229,45.39399],[28.28744,45.43037],[28.26787,45.45711],[28.20814,45.46724],[28.18637,45.47152],[28.15911,45.51048],[28.16824,45.53835],[28.1554,45.56815],[28.12561,45.57293],[28.08757,45.60847],[28.11407,45.62095],[28.14058,45.6219],[28.16338,45.64109],[28.16668,45.70448],[28.14582,45.77375],[28.12334,45.78773],[28.10858,45.83689],[28.12128,45.87414],[28.11802,45.92339],[28.09167,46.01296],[28.11969,46.11302],[28.13398,46.18261],[28.11225,46.21598],[28.13996,46.27976],[28.20361,46.3114],[28.19085,46.34813],[28.2587,46.43492],[28.21587,46.51198],[28.24557,46.63226],[28.19561,46.73196],[28.16102,46.7865],[28.11545,46.82035],[28.08867,46.97678],[28.04172,47.02017],[27.9125,47.07183],[27.79976,47.14406],[27.79401,47.19691],[27.72784,47.29081],[27.60124,47.32002],[27.57077,47.45903],[27.53837,47.48161],[27.48399,47.48748],[27.41726,47.57404],[27.33405,47.6291],[27.25149,47.72029],[27.28506,47.72523],[27.28841,47.74679],[27.21668,47.8257],[27.24899,47.83589],[27.20925,47.84522],[27.19972,47.89902],[27.21845,47.91266],[27.25128,47.87877],[27.26214,47.89278],[27.2152,47.95022],[27.18947,47.94068],[27.14589,47.96338],[27.1653,47.99312],[27.10359,48.01167],[27.07823,48.05034],[27.02815,48.09268],[27.03229,48.12802],[26.99523,48.12852],[26.94584,48.17536],[26.8031,48.24522],[26.70156,48.25377],[26.63299,48.25866],[26.55606,48.22368],[26.47639,48.21432],[26.33627,48.1828],[26.32973,48.15812],[26.30945,48.14261],[26.28642,48.11519],[26.27439,48.07676],[26.21379,48.04987],[26.19686,47.99761],[26.10302,47.9766],[26.06366,47.98787],[25.95748,47.97181],[25.92304,47.97791],[25.88585,47.96194],[25.83894,47.97045],[25.81537,47.9523],[25.77532,47.94151],[25.6481,47.94893],[25.54055,47.93792],[25.30939,47.91219],[25.27325,47.89426],[25.23436,47.89106],[25.19134,47.82522],[25.11263,47.75384],[25.0422,47.73205],[24.88786,47.72477],[24.87169,47.75794],[24.84178,47.77633],[24.81769,47.81866],[24.76399,47.83689],[24.72345,47.84146],[24.66917,47.86446],[24.67047,47.89571],[24.6209,47.95085],[24.57923,47.96217],[24.50734,47.9551],[24.43545,47.96642],[24.39401,47.95185],[24.38004,47.92808],[24.23214,47.90058],[24.19802,47.91767],[24.11779,47.91424],[24.09964,47.93646],[24.06502,47.95131],[24.01347,47.96397],[23.96466,47.96191],[23.86705,47.93204],[23.81739,47.98267],[23.75994,47.99373],[23.66679,47.98641],[23.62171,48.00206],[23.52993,48.01772],[23.49609,47.96832],[23.42343,47.98856],[23.33429,48.01984],[23.33637,48.03706],[23.27527,48.05795],[23.29041,48.07586],[23.2685,48.10067],[23.24037,48.09474],[23.19303,48.09981],[23.16974,48.12279],[23.12317,48.08473],[23.1095,48.03909],[23.0821,48.00447],[23.02192,47.99268],[22.92546,48.01932],[22.91844,48.00507],[22.93964,47.99519],[22.94437,47.96509],[22.89702,47.95772],[22.83804,47.98713],[22.87932,48.0248],[22.87939,48.04961],[22.83024,48.1103],[22.74538,48.11591],[22.66877,48.09218],[22.59302,48.1055],[22.58674,48.14611],[22.56711,48.17192],[22.56672,48.19223],[22.48823,48.25331],[22.4583,48.23921],[22.43937,48.24705],[22.41219,48.25032],[22.37403,48.23895],[22.32654,48.30581],[22.32026,48.35073],[22.26786,48.36019],[22.24292,48.38425],[22.26339,48.41209],[22.22755,48.41167],[22.21081,48.42723],[22.18858,48.41454],[22.14986,48.40732],[22.13285,48.41294],[22.17902,48.6007],[22.22519,48.61915],[22.25213,48.64666],[22.30928,48.6778],[22.33897,48.68536],[22.3657,48.73323],[22.3408,48.75879],[22.38182,48.80065],[22.38035,48.86043],[22.42082,48.88671],[22.42833,48.9166],[22.42279,48.92934],[22.49415,48.99619],[22.51883,48.99543],[22.5435,49.00908],[22.55339,49.07729],[22.56191,49.087],[22.57894,49.09923],[22.61767,49.08374],[22.63717,49.06466],[22.65805,49.04738],[22.68716,49.0427],[22.71106,49.05042],[22.73221,49.05095],[22.75474,49.04247],[22.76628,49.0538],[22.823,49.02918],[22.84951,48.99916],[22.8888,49.00757],[22.86831,49.07108],[22.8945,49.09499],[22.79779,49.13553],[22.78623,49.15809],[22.7576,49.152],[22.73996,49.16208],[22.75728,49.18084],[22.74249,49.18607],[22.71841,49.16416],[22.70518,49.17531],[22.74414,49.21518],[22.71443,49.22365],[22.71743,49.24044],[22.73965,49.25006],[22.7489,49.31719],[22.74116,49.33286],[22.74716,49.35926],[22.71278,49.43563],[22.699,49.49146],[22.67491,49.49689],[22.65189,49.50674],[22.63985,49.52907],[22.67018,49.54311],[22.68678,49.57141],[22.78316,49.65826],[22.78615,49.67572],[22.8055,49.69422],[22.81936,49.69318],[22.84671,49.70989],[22.87681,49.74081],[22.89857,49.75471],[22.90189,49.76787],[22.93268,49.79345],[22.9558,49.80204],[22.97138,49.83769],[22.99519,49.84145],[23.03136,49.88152],[23.10438,49.93958],[23.11697,49.95521],[23.14748,49.97487],[23.2082,50.02985],[23.21796,50.04851],[23.23596,50.05306],[23.27593,50.08759],[23.28355,50.0978],[23.31041,50.11154],[23.37966,50.15975],[23.42665,50.18298],[23.46814,50.215],[23.57781,50.26489],[23.6093,50.29685],[23.6309,50.30484],[23.64427,50.3216],[23.68747,50.33233],[23.69725,50.37249],[23.72899,50.38987],[23.80072,50.40538],[23.84517,50.40613],[23.94043,50.41562],[23.995,50.41362],[24.00798,50.43541],[24.03469,50.44496],[24.07163,50.50077],[24.09197,50.56429],[24.09698,50.598],[24.09376,50.6352],[24.08185,50.64727],[24.08642,50.67152],[24.06534,50.67824],[24.07252,50.71795],[24.01821,50.72256],[24.01945,50.76842],[23.96713,50.77008],[23.96295,50.81605],[23.99996,50.83945],[24.10407,50.83504],[24.1505,50.8653],[24.05221,50.89611],[23.96766,50.95462],[23.95864,50.99149],[23.92215,51.0076],[23.90941,51.07711],[23.87469,51.07758],[23.84822,51.12634],[23.87178,51.13184],[23.85963,51.15975],[23.82709,51.16041],[23.8087,51.17898],[23.73897,51.21955],[23.72196,51.25831],[23.69396,51.28676],[23.6462,51.28867],[23.63506,51.32394],[23.69953,51.40504],[23.67958,51.43959],[23.65175,51.44575],[23.64745,51.45738],[23.67688,51.47347],[23.65727,51.48835],[23.6404,51.48613],[23.62606,51.50058],[23.62408,51.51683],[23.59837,51.53349],[23.58365,51.52965],[23.56268,51.54299],[23.57468,51.55551],[23.54548,51.60221],[23.54374,51.65231],[23.55537,51.66644],[23.55553,51.69636],[23.54471,51.72288],[23.5258,51.73677],[23.57241,51.76],[23.61494,51.77672],[23.63825,51.79853],[23.6255,51.81952],[23.60726,51.8371],[23.61472,51.85191],[23.60768,51.87304],[23.62947,51.87298],[23.63204,51.88988],[23.61486,51.91848],[23.6464,51.93334],[23.62984,51.94783],[23.65383,51.9644],[23.66683,51.96573],[23.6716,51.97891],[23.68735,51.9904],[23.6633,52.02059],[23.65128,52.05934],[23.642,52.0812],[23.60285,52.11477],[23.56954,52.11891],[23.55271,52.10955],[23.53758,52.12687],[23.50597,52.14419],[23.48938,52.15445],[23.48792,52.16678],[23.50568,52.17574],[23.45605,52.18691],[23.42822,52.1739],[23.40276,52.18157],[23.3979,52.19513],[23.28423,52.21958],[23.2667,52.21542],[23.2031,52.22791],[23.19327,52.2367],[23.19718,52.24884],[23.20795,52.26015],[23.20499,52.27482],[23.17857,52.28457],[23.21384,52.32886],[23.27934,52.39328],[23.3032,52.40474],[23.31535,52.42735],[23.36595,52.48178],[23.46714,52.55046],[23.54521,52.58228],[23.6425,52.60741],[23.71919,52.61586],[23.73271,52.60763],[23.76413,52.6151],[23.78181,52.62757],[23.87778,52.68004],[23.88941,52.67858],[23.90379,52.69211],[23.94078,52.71251],[23.93812,52.8124],[23.92235,52.82742],[23.92581,52.89884],[23.91828,52.90396],[23.91726,52.93798],[23.94645,52.9571],[23.93006,52.97633],[23.92873,53.019],[23.87522,53.07985],[23.8878,53.11507],[23.90312,53.1371],[23.91433,53.14512],[23.90906,53.17127],[23.86325,53.1968],[23.85677,53.22979],[23.81909,53.24479],[23.77729,53.31084],[23.7355,53.39659],[23.66246,53.51491],[23.62731,53.59612],[23.59216,53.68874],[23.58367,53.7086],[23.58616,53.73984],[23.54994,53.76532],[23.54501,53.79521],[23.54832,53.84781],[23.54379,53.85872],[23.52553,53.86477],[23.5107,53.91695],[23.51922,53.9578],[23.49245,53.97485],[23.48078,53.99675],[23.50344,54.01057],[23.51512,54.02117],[23.52337,54.0346],[23.52886,54.06416],[23.49866,54.11682],[23.48779,54.14798],[23.46043,54.17431],[23.42769,54.18035],[23.38259,54.22657],[23.36496,54.23104],[23.33563,54.25373],[23.25225,54.25737],[23.22498,54.26363],[23.2032,54.28754],[23.1567,54.2938],[23.15954,54.31136],[23.14316,54.3161],[23.09038,54.29791],[23.0379,54.31845],[23.06507,54.34381],[22.99402,54.36244],[23.01122,54.38375],[22.83892,54.40981],[22.81044,54.37167],[22.7902,54.36392],[22.68739,54.36149],[22.645,54.35426],[22.42545,54.34863],[22.31843,54.33941],[22.22513,54.343],[22.16214,54.33777],[21.9838,54.33414],[21.50076,54.32368],[21.44995,54.31781],[21.43279,54.32529],[21.36619,54.33117],[21.32568,54.3301],[21.29855,54.33278],[21.27693,54.32904],[20.99953,54.35362],[20.82239,54.36139],[20.7484,54.36697],[20.66892,54.37254],[20.63065,54.36611],[20.60061,54.37728],[20.4183,54.39002],[20.33763,54.40117],[19.64278,54.45307],[19.39575,56.23785]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Armenia#ER", "itu_zone_number": 29 }, "geometry": { "type": "Polygon", "coordinates": [[[51.39511,37.88291],[48.88821,38.43925],[48.88278,38.43937],[48.88161,38.44212],[48.8807,38.44239],[48.87559,38.44089],[48.87143,38.44203],[48.86881,38.4437],[48.86631,38.44301],[48.86415,38.44353],[48.85624,38.44833],[48.85184,38.45018],[48.84744,38.44933],[48.84072,38.45073],[48.82783,38.45038],[48.82221,38.44894],[48.81947,38.45063],[48.81292,38.44841],[48.81052,38.44824],[48.80588,38.44941],[48.79969,38.45188],[48.79377,38.45172],[48.78921,38.44888],[48.78344,38.44828],[48.77681,38.44176],[48.7675,38.44109],[48.76044,38.43753],[48.75956,38.43343],[48.75203,38.4261],[48.74519,38.4177],[48.73836,38.41111],[48.72809,38.41118],[48.71918,38.40856],[48.71165,38.40809],[48.7053,38.4069],[48.69938,38.40496],[48.69415,38.40032],[48.68621,38.39989],[48.67896,38.39677],[48.67068,38.39499],[48.66171,38.3916],[48.65395,38.39762],[48.64618,38.40149],[48.64047,38.40052],[48.63751,38.39794],[48.62546,38.40288],[48.61614,38.40836],[48.60958,38.41411],[48.59958,38.41824],[48.60143,38.42372],[48.59709,38.42544],[48.59343,38.43077],[48.59046,38.43934],[48.59276,38.44302],[48.59025,38.44805],[48.59048,38.45522],[48.58053,38.45564],[48.58241,38.45896],[48.58154,38.46336],[48.57843,38.46247],[48.57358,38.47146],[48.56663,38.47977],[48.55753,38.48132],[48.55268,38.48713],[48.5492,38.49348],[48.54264,38.49714],[48.53539,38.50403],[48.5329,38.50464],[48.52629,38.51385],[48.52365,38.51565],[48.51895,38.51476],[48.51367,38.51836],[48.51354,38.52222],[48.50861,38.52662],[48.50801,38.53623],[48.50496,38.54104],[48.50535,38.54585],[48.50164,38.54924],[48.49586,38.55263],[48.49187,38.5519],[48.48527,38.55473],[48.47342,38.55234],[48.4687,38.55866],[48.46806,38.56102],[48.46261,38.56337],[48.46201,38.57184],[48.45518,38.58198],[48.45691,38.58653],[48.45383,38.58947],[48.45865,38.5967],[48.45763,38.60246],[48.45866,38.60661],[48.45505,38.60992],[48.44732,38.61002],[48.44234,38.61386],[48.43529,38.61181],[48.42703,38.61325],[48.4224,38.61148],[48.41776,38.60703],[48.40642,38.60243],[48.39062,38.60234],[48.38717,38.60593],[48.37888,38.60048],[48.37395,38.5989],[48.36832,38.5984],[48.36394,38.59577],[48.35612,38.5969],[48.35105,38.59588],[48.33963,38.6001],[48.33439,38.59949],[48.32743,38.60424],[48.32185,38.60256],[48.31756,38.60225],[48.31202,38.60627],[48.3058,38.61243],[48.30709,38.61939],[48.30458,38.62032],[48.3007,38.62931],[48.2975,38.63105],[48.2943,38.63654],[48.29581,38.64458],[48.29113,38.64833],[48.2883,38.64778],[48.28379,38.65152],[48.27929,38.65259],[48.27234,38.65606],[48.26607,38.65631],[48.25749,38.6584],[48.25328,38.6609],[48.25249,38.66501],[48.24999,38.67179],[48.2523,38.68073],[48.24936,38.69109],[48.25123,38.69448],[48.25737,38.69805],[48.26076,38.70109],[48.25986,38.71015],[48.24866,38.71975],[48.25167,38.72663],[48.24313,38.73114],[48.23871,38.73137],[48.23085,38.73186],[48.22369,38.73504],[48.22363,38.73923],[48.21738,38.737],[48.20695,38.74004],[48.2032,38.7428],[48.20083,38.74823],[48.19811,38.74885],[48.19196,38.75107],[48.19206,38.7562],[48.18839,38.75564],[48.17372,38.7615],[48.165,38.75984],[48.15166,38.76241],[48.14755,38.76626],[48.1407,38.76744],[48.13282,38.76942],[48.13043,38.76712],[48.12392,38.76803],[48.11741,38.77268],[48.11057,38.76915],[48.1049,38.77265],[48.10198,38.78096],[48.10988,38.78742],[48.09409,38.78907],[48.091,38.79216],[48.07898,38.79417],[48.07898,38.79833],[48.08173,38.80088],[48.07348,38.80123],[48.05941,38.80809],[48.05134,38.80992],[48.04765,38.81297],[48.0419,38.81495],[48.03503,38.83143],[48.0261,38.83379],[48.02129,38.83775],[48.01028,38.90261],[48.01402,38.9102],[48.01912,38.91085],[48.02391,38.9085],[48.02663,38.90028],[48.03126,38.89965],[48.03658,38.90115],[48.04379,38.90149],[48.05546,38.90752],[48.06231,38.91049],[48.06814,38.90983],[48.07243,38.91351],[48.07878,38.91612],[48.08032,38.92461],[48.07938,38.92859],[48.08118,38.93417],[48.08195,38.93828],[48.08615,38.94025],[48.08838,38.94687],[48.09979,38.94507],[48.10707,38.94272],[48.10722,38.94552],[48.11725,38.94692],[48.12728,38.94672],[48.13594,38.94785],[48.14391,38.94684],[48.14904,38.9479],[48.15623,38.9543],[48.1636,38.95443],[48.17029,38.9567],[48.17818,38.95483],[48.18881,38.95696],[48.20219,38.95375],[48.22411,38.95955],[48.2584,38.96695],[48.26999,38.9668],[48.27559,38.96844],[48.29011,38.97647],[48.29101,38.97974],[48.30091,38.98591],[48.30874,38.99101],[48.30799,38.99344],[48.31551,38.99786],[48.32852,39.01295],[48.33049,39.01855],[48.33388,39.02055],[48.33521,39.02628],[48.33915,39.03587],[48.337,39.03763],[48.33588,39.04353],[48.33307,39.04648],[48.33335,39.0493],[48.33219,39.05213],[48.32781,39.05263],[48.32704,39.05461],[48.32763,39.05833],[48.32385,39.06106],[48.31879,39.06949],[48.31956,39.07326],[48.31621,39.07859],[48.31766,39.08126],[48.31687,39.0852],[48.31187,39.09074],[48.30758,39.0905],[48.30491,39.09319],[48.30508,39.09895],[48.30748,39.10164],[48.30567,39.10282],[48.30712,39.10414],[48.30521,39.10665],[48.30536,39.10916],[48.30199,39.1125],[48.29724,39.11504],[48.28044,39.12171],[48.27715,39.12249],[48.27403,39.12273],[48.26951,39.12454],[48.26316,39.1237],[48.26007,39.12499],[48.25814,39.12415],[48.25673,39.1261],[48.25124,39.12594],[48.2473,39.1288],[48.24481,39.1286],[48.23614,39.1304],[48.23477,39.13333],[48.23169,39.13346],[48.2288,39.14038],[48.22177,39.14585],[48.21474,39.15878],[48.2199,39.16228],[48.21765,39.16449],[48.21446,39.16424],[48.21357,39.16772],[48.20422,39.17044],[48.20217,39.17403],[48.19875,39.17628],[48.19481,39.17581],[48.19255,39.17656],[48.19062,39.17945],[48.18609,39.18224],[48.17598,39.18635],[48.16984,39.18818],[48.16714,39.19067],[48.16329,39.19099],[48.162,39.19407],[48.15964,39.19521],[48.15883,39.19728],[48.15007,39.20064],[48.14289,39.20574],[48.14185,39.2085],[48.14322,39.21139],[48.14131,39.21479],[48.13481,39.21795],[48.13636,39.22039],[48.14015,39.2227],[48.1373,39.22407],[48.13753,39.22796],[48.13374,39.22953],[48.13544,39.23343],[48.13303,39.23521],[48.13479,39.23762],[48.13149,39.23936],[48.13278,39.24124],[48.12978,39.24419],[48.13141,39.24657],[48.13116,39.24961],[48.13434,39.25588],[48.1376,39.25863],[48.13693,39.26178],[48.13463,39.26327],[48.135,39.26621],[48.13375,39.26995],[48.13835,39.27199],[48.13863,39.27424],[48.14199,39.27742],[48.14625,39.27833],[48.14475,39.2817],[48.15081,39.28401],[48.15285,39.28782],[48.15421,39.29389],[48.16141,39.2958],[48.16604,39.30403],[48.17548,39.308],[48.18629,39.31304],[48.19607,39.32046],[48.21134,39.32788],[48.22609,39.32587],[48.23004,39.33495],[48.23329,39.33607],[48.2381,39.3356],[48.23981,39.33324],[48.24358,39.33088],[48.25422,39.33067],[48.26057,39.33534],[48.26765,39.33412],[48.26306,39.33927],[48.26842,39.34151],[48.2707,39.33896],[48.29481,39.35046],[48.31137,39.35825],[48.31085,39.36003],[48.32079,39.36305],[48.3261,39.36264],[48.34584,39.37072],[48.36093,39.36964],[48.36848,39.3813],[48.34146,39.41613],[48.03155,39.69159],[47.98583,39.70882],[47.97608,39.70769],[47.97999,39.70487],[47.97567,39.70153],[47.97458,39.68904],[47.96353,39.68923],[47.95798,39.68625],[47.95329,39.68512],[47.94928,39.68081],[47.94126,39.67961],[47.9417,39.67561],[47.91892,39.66277],[47.91743,39.65945],[47.90827,39.66183],[47.89292,39.66102],[47.88616,39.66683],[47.87871,39.67105],[47.8757,39.6668],[47.86487,39.66938],[47.84801,39.66028],[47.83901,39.66692],[47.83338,39.66592],[47.83427,39.66043],[47.82522,39.66025],[47.81755,39.65743],[47.81434,39.65275],[47.80861,39.65359],[47.80369,39.64819],[47.79988,39.64803],[47.79196,39.64998],[47.78937,39.64713],[47.78979,39.64068],[47.78815,39.63846],[47.77801,39.63745],[47.77534,39.63246],[47.76954,39.63022],[47.76424,39.62064],[47.76503,39.6185],[47.76443,39.61424],[47.75621,39.6099],[47.75176,39.61091],[47.74868,39.60557],[47.74252,39.60123],[47.73567,39.59584],[47.72338,39.59437],[47.70705,39.58455],[47.69758,39.58505],[47.68948,39.58766],[47.68664,39.58266],[47.6838,39.58242],[47.67881,39.57771],[47.67089,39.57887],[47.66797,39.57746],[47.66848,39.57341],[47.66332,39.57059],[47.65919,39.56856],[47.65713,39.56495],[47.6475,39.56116],[47.63307,39.5595],[47.62729,39.55406],[47.62082,39.55232],[47.61819,39.54408],[47.61293,39.54455],[47.60789,39.53967],[47.5992,39.53891],[47.59634,39.54079],[47.59349,39.54108],[47.58824,39.53909],[47.58608,39.53259],[47.5798,39.53191],[47.57239,39.52712],[47.56979,39.51968],[47.56522,39.51596],[47.55929,39.51171],[47.55085,39.51063],[47.54035,39.50558],[47.53687,39.50431],[47.53407,39.50093],[47.52779,39.49893],[47.51705,39.49868],[47.50287,39.4942],[47.49763,39.49474],[47.48894,39.49158],[47.48374,39.48581],[47.47446,39.4827],[47.46587,39.48172],[47.46037,39.47914],[47.44938,39.47922],[47.43804,39.47645],[47.42875,39.47262],[47.42667,39.46683],[47.41326,39.46843],[47.41105,39.46784],[47.40678,39.46406],[47.40099,39.46393],[47.39832,39.46844],[47.39025,39.46845],[47.38121,39.45613],[47.38206,39.44988],[47.37878,39.44364],[47.37086,39.44441],[47.37317,39.43658],[47.36655,39.42663],[47.35401,39.42635],[47.34915,39.41481],[47.34705,39.40751],[47.34185,39.40526],[47.33651,39.40731],[47.33391,39.40618],[47.33232,39.40419],[47.33347,39.39636],[47.32982,39.39252],[47.32805,39.39023],[47.32628,39.38423],[47.31767,39.38136],[47.31387,39.3753],[47.31312,39.3701],[47.30983,39.3689],[47.29829,39.37195],[47.29238,39.36478],[47.28119,39.36199],[47.2748,39.35761],[47.27027,39.3568],[47.26453,39.35136],[47.26086,39.34909],[47.25478,39.34524],[47.25007,39.34032],[47.24498,39.34084],[47.23439,39.33285],[47.23257,39.32885],[47.22662,39.32697],[47.22067,39.32297],[47.21472,39.31844],[47.21158,39.31822],[47.20638,39.31534],[47.19843,39.31831],[47.18911,39.31969],[47.18249,39.31579],[47.17746,39.31491],[47.17587,39.31084],[47.16289,39.31133],[47.15198,39.30545],[47.14856,39.30491],[47.14926,39.30118],[47.14652,39.29852],[47.13763,39.2969],[47.13152,39.2974],[47.12138,39.29211],[47.11193,39.28736],[47.11293,39.27997],[47.10502,39.27615],[47.09539,39.27658],[47.09693,39.27097],[47.09401,39.26696],[47.07787,39.26106],[47.07568,39.25367],[47.07349,39.25267],[47.06774,39.24375],[47.06104,39.24134],[47.05572,39.23334],[47.06138,39.22746],[47.05541,39.22015],[47.05494,39.21283],[47.06374,39.21243],[47.06429,39.20884],[47.06177,39.20641],[47.05993,39.20132],[47.05362,39.1965],[47.05281,39.19274],[47.04295,39.18629],[47.03653,39.18356],[47.03363,39.17917],[47.02318,39.17532],[47.02065,39.17254],[47.02155,39.16976],[47.01718,39.16687],[47.00089,39.16747],[46.99386,39.16407],[46.99172,39.16025],[46.9937,39.15429],[46.97655,39.14645],[46.97004,39.14518],[46.96215,39.14019],[46.958,39.14131],[46.94904,39.13923],[46.94692,39.14732],[46.93996,39.14983],[46.93574,39.15926],[46.92869,39.16055],[46.91992,39.15731],[46.90978,39.15727],[46.90353,39.16403],[46.88589,39.15478],[46.87982,39.15602],[46.87443,39.15406],[46.86499,39.15647],[46.86283,39.15142],[46.8593,39.14637],[46.86083,39.14],[46.84808,39.14004],[46.84182,39.13585],[46.83624,39.13592],[46.83398,39.12222],[46.8283,39.11332],[46.82036,39.11629],[46.81542,39.11053],[46.81295,39.10472],[46.80774,39.10477],[46.80624,39.09689],[46.79684,39.09246],[46.79332,39.08508],[46.77405,39.07979],[46.77401,39.07663],[46.76972,39.07279],[46.7668,39.06734],[46.76096,39.06337],[46.76096,39.05168],[46.75718,39.04902],[46.76302,39.0357],[46.75667,39.03317],[46.75486,39.0263],[46.751,39.0253],[46.74379,39.02558],[46.74122,39.02224],[46.7359,39.02051],[46.73418,39.01491],[46.72697,39.01598],[46.7153,39.01465],[46.71089,39.01806],[46.70682,39.01693],[46.69663,39.02001],[46.69339,39.01778],[46.69153,39.01182],[46.68575,39.00629],[46.68586,39.00003],[46.69178,38.99315],[46.68508,38.98791],[46.67306,38.98759],[46.668,38.98044],[46.66912,38.97595],[46.65547,38.96186],[46.65487,38.95524],[46.64027,38.95082],[46.6395,38.94407],[46.62568,38.9309],[46.60079,38.91372],[46.60268,38.90776],[46.58053,38.89699],[46.56388,38.88622],[46.55186,38.88285],[46.53435,38.86772],[46.52716,38.87178],[46.52272,38.88173],[46.52573,38.88782],[46.51569,38.88964],[46.50592,38.88579],[46.49932,38.88961],[46.49203,38.88916],[46.48851,38.88657],[46.48431,38.88558],[46.47489,38.88991],[46.46547,38.8889],[46.45468,38.89964],[46.4504,38.89701],[46.44337,38.89704],[46.44031,38.89445],[46.43415,38.89479],[46.42731,38.89192],[46.42564,38.88646],[46.42122,38.8826],[46.4165,38.88566],[46.41589,38.89246],[46.41147,38.89292],[46.40308,38.9001],[46.39331,38.90407],[46.37966,38.9066],[46.369,38.90976],[46.36451,38.91613],[46.35949,38.91486],[46.35515,38.91625],[46.33755,38.91691],[46.33668,38.91074],[46.32943,38.90879],[46.31668,38.90149],[46.30905,38.903],[46.3028,38.90665],[46.2999,38.90166],[46.29151,38.90095],[46.28323,38.90104],[46.27701,38.89632],[46.26942,38.89454],[46.26733,38.89169],[46.26683,38.88616],[46.26016,38.88385],[46.25039,38.87779],[46.2475,38.87334],[46.24134,38.87169],[46.23175,38.8679],[46.21874,38.86514],[46.21207,38.85334],[46.19372,38.85115],[46.18465,38.84042],[46.17427,38.8404],[46.16739,38.84306],[46.1605,38.84145],[46.15517,38.84373],[46.15053,38.84172],[46.14398,38.84251],[46.13675,38.84639],[46.12868,38.84645],[46.12952,38.85026],[46.11232,38.85908],[46.11298,38.86522],[46.10679,38.86642],[46.09442,38.86762],[46.07964,38.87163],[46.07217,38.87825],[46.06676,38.88753],[46.05894,38.88747],[46.054,38.88369],[46.05593,38.87885],[46.04066,38.87187],[46.03329,38.87506],[46.02661,38.8729],[46.01667,38.87365],[46.01017,38.87174],[45.98485,38.87744],[45.98155,38.8815],[45.97413,38.88236],[45.96479,38.88995],[45.9564,38.88911],[45.94442,38.89597],[45.93294,38.88871],[45.92755,38.87893],[45.91872,38.87236],[45.9135,38.87436],[45.90761,38.87369],[45.90405,38.87769],[45.89294,38.87634],[45.89007,38.88461],[45.88167,38.88631],[45.87602,38.89015],[45.87216,38.88927],[45.86556,38.88945],[45.8599,38.89516],[45.86339,38.90089],[45.85485,38.90689],[45.84563,38.91022],[45.83836,38.90925],[45.83541,38.90475],[45.82673,38.90437],[45.8153,38.90506],[45.81037,38.91112],[45.79503,38.92163],[45.78994,38.92194],[45.78072,38.91691],[45.77665,38.92577],[45.7719,38.92715],[45.76716,38.9257],[45.76035,38.92424],[45.75224,38.92935],[45.7367,38.92728],[45.73034,38.93061],[45.7293,38.92873],[45.72583,38.93566],[45.7189,38.93455],[45.70984,38.94461],[45.6855,38.94903],[45.67901,38.94624],[45.65947,38.95159],[45.64696,38.95127],[45.64371,38.94586],[45.63219,38.94469],[45.6162,38.94271],[45.61355,38.94952],[45.6146,38.9553],[45.61256,38.95787],[45.6078,38.95607],[45.59974,38.96134],[45.59271,38.96394],[45.58722,38.96568],[45.58413,38.96929],[45.58372,38.9763],[45.58022,38.97851],[45.5684,38.97572],[45.56602,38.96879],[45.55796,38.96852],[45.55127,38.96399],[45.53766,38.96618],[45.53425,38.96979],[45.52812,38.9706],[45.50762,38.97864],[45.49752,38.98296],[45.49222,38.98363],[45.48692,38.98591],[45.47922,38.98552],[45.47427,38.98832],[45.46554,38.98993],[45.45681,38.99047],[45.44896,38.99476],[45.43817,39.00495],[45.43862,39.01354],[45.44331,39.02131],[45.44937,39.02854],[45.45085,39.03953],[45.45674,39.04716],[45.45439,39.05266],[45.44921,39.05537],[45.44421,39.05192],[45.4399,39.05061],[45.43365,39.05284],[45.43186,39.05853],[45.42801,39.06102],[45.4236,39.06138],[45.40929,39.07117],[45.40253,39.07323],[45.39989,39.08009],[45.40308,39.09206],[45.39372,39.10416],[45.33699,39.16688],[45.32936,39.16783],[45.30868,39.19379],[45.28598,39.1796],[45.22242,39.19521],[45.22153,39.2079],[45.21101,39.20143],[45.18553,39.20312],[45.18755,39.21647],[45.18067,39.22287],[45.17242,39.22288],[45.17207,39.21876],[45.17447,39.21092],[45.16622,39.21398],[45.15009,39.20514],[45.14699,39.20535],[45.15098,39.21791],[45.14845,39.23101],[45.15094,39.24178],[45.14691,39.25095],[45.14494,39.26491],[45.13867,39.26691],[45.13378,39.27156],[45.14103,39.27894],[45.14142,39.28313],[45.13305,39.28785],[45.12125,39.28619],[45.11782,39.28783],[45.12838,39.29648],[45.12452,39.30407],[45.10787,39.30967],[45.10341,39.32302],[45.10322,39.32969],[45.10028,39.33476],[45.08959,39.33004],[45.08058,39.33336],[45.08702,39.34782],[45.08728,39.35166],[45.07501,39.35942],[45.05862,39.36346],[45.05781,39.36787],[45.05836,39.38236],[45.04438,39.38004],[45.04011,39.3915],[45.0355,39.39049],[45.02952,39.3932],[45.01805,39.40439],[45.00923,39.40567],[45.00464,39.41034],[44.99752,39.4096],[44.99006,39.41603],[44.975,39.41951],[44.96543,39.42246],[44.96635,39.43042],[44.96201,39.43812],[44.96316,39.44369],[44.97462,39.44529],[44.97693,39.45169],[44.9614,39.45067],[44.94861,39.45229],[44.94642,39.45396],[44.94629,39.45988],[44.94192,39.46323],[44.94758,39.47258],[44.93898,39.47805],[44.93724,39.48247],[44.94683,39.48184],[44.95024,39.48493],[44.93887,39.48661],[44.94005,39.4893],[44.94327,39.49117],[44.94923,39.48985],[44.95153,39.49464],[44.94312,39.50134],[44.93797,39.51315],[44.92725,39.51142],[44.92319,39.51708],[44.91364,39.52009],[44.90821,39.52733],[44.91046,39.531],[44.91408,39.53096],[44.9177,39.53303],[44.91652,39.53617],[44.90536,39.54118],[44.91163,39.54925],[44.91034,39.55308],[44.90802,39.55823],[44.91601,39.56762],[44.90571,39.57661],[44.88717,39.58242],[44.9009,39.60066],[44.89902,39.6043],[44.89438,39.60634],[44.89129,39.59721],[44.87877,39.59387],[44.87243,39.59528],[44.87228,39.59961],[44.88173,39.60976],[44.87935,39.61418],[44.86942,39.61649],[44.86619,39.61297],[44.8657,39.60787],[44.86658,39.60383],[44.86128,39.6019],[44.85394,39.60236],[44.8459,39.60864],[44.83718,39.6128],[44.82592,39.61134],[44.81744,39.61467],[44.8069,39.62859],[44.80906,39.63907],[44.81563,39.6414],[44.81858,39.64997],[44.8174,39.6543],[44.81353,39.65702],[44.80622,39.65498],[44.79848,39.65724],[44.79941,39.6618],[44.80309,39.66479],[44.80746,39.66988],[44.80633,39.67339],[44.79518,39.66822],[44.8031,39.68442],[44.78783,39.68368],[44.78586,39.68819],[44.78733,39.69165],[44.7834,39.69425],[44.7781,39.70267],[44.77674,39.70351],[44.77195,39.7017],[44.76304,39.70338],[44.76597,39.70765],[44.77028,39.71193],[44.76789,39.71625],[44.75597,39.71292],[44.75022,39.71541],[44.74887,39.72359],[44.74409,39.73124],[44.74482,39.74338],[44.738,39.74522],[44.73544,39.74502],[44.73081,39.7406],[44.72431,39.74125],[44.7156,39.75418],[44.71101,39.76974],[44.69921,39.77291],[44.69085,39.76973],[44.68598,39.77443],[44.68729,39.78229],[44.69477,39.78646],[44.69746,39.79062],[44.69321,39.79526],[44.68415,39.79726],[44.67952,39.78734],[44.66871,39.79191],[44.65721,39.79069],[44.64949,39.80068],[44.63421,39.80592],[44.62924,39.81248],[44.62236,39.81335],[44.61548,39.81264],[44.61134,39.81491],[44.62091,39.82103],[44.61877,39.82589],[44.61379,39.82833],[44.60195,39.82181],[44.59221,39.82795],[44.58865,39.8341],[44.59389,39.84165],[44.59617,39.84885],[44.59226,39.85815],[44.58239,39.86254],[44.57609,39.86255],[44.56498,39.86995],[44.55202,39.88526],[44.55314,39.9011],[44.55083,39.90587],[44.5445,39.907],[44.53541,39.92129],[44.52173,39.92157],[44.5154,39.92909],[44.50675,39.93259],[44.5029,39.93661],[44.50175,39.94448],[44.4951,39.94866],[44.49326,39.95732],[44.48044,39.9665],[44.46749,39.97197],[44.45758,39.9705],[44.45386,39.97165],[44.45191,39.97808],[44.44613,39.98274],[44.4376,39.98424],[44.42879,39.99093],[44.41655,40.00288],[44.40945,40.0047],[44.40235,40.00284],[44.39503,40.00596],[44.38427,40.00424],[44.37579,40.0089],[44.35926,40.01895],[44.35396,40.02679],[44.34101,40.02698],[44.33822,40.03105],[44.33559,40.03249],[44.32965,40.03134],[44.32405,40.03191],[44.31853,40.03856],[44.30965,40.0397],[44.30057,40.03698],[44.29854,40.03741],[44.29507,40.04329],[44.29195,40.04364],[44.28565,40.04351],[44.27969,40.04909],[44.27333,40.04957],[44.26594,40.04795],[44.25597,40.04774],[44.25193,40.04914],[44.24462,40.04726],[44.23942,40.04774],[44.23405,40.04731],[44.23171,40.04489],[44.22885,40.04287],[44.22595,40.04403],[44.2227,40.04441],[44.21832,40.04024],[44.21784,40.0373],[44.21548,40.03528],[44.21191,40.03547],[44.20634,40.03723],[44.20129,40.03978],[44.1977,40.04027],[44.19311,40.04007],[44.19091,40.03909],[44.1893,40.03572],[44.18872,40.03169],[44.18635,40.03008],[44.17976,40.03044],[44.17398,40.02819],[44.17058,40.02916],[44.167,40.03106],[44.15424,40.03149],[44.14233,40.0327],[44.13852,40.03228],[44.13557,40.03094],[44.13172,40.02971],[44.12949,40.03032],[44.12332,40.03423],[44.11973,40.03493],[44.11528,40.0336],[44.10808,40.02964],[44.08253,40.03361],[44.04945,40.02986],[44.01637,40.02295],[43.99497,40.0313],[43.97877,40.02916],[43.97342,40.0202],[43.96669,40.01861],[43.93298,40.02353],[43.89377,40.02318],[43.85526,40.04125],[43.83459,40.04774],[43.82482,40.04819],[43.82329,40.05915],[43.80939,40.06118],[43.79421,40.06902],[43.78589,40.06846],[43.76054,40.08288],[43.74965,40.07913],[43.74131,40.08283],[43.73022,40.07811],[43.71079,40.08129],[43.69252,40.09606],[43.67658,40.09722],[43.67217,40.10901],[43.65648,40.11158],[43.65123,40.12883],[43.65011,40.14503],[43.66958,40.15703],[43.71377,40.16273],[43.71351,40.17171],[43.70088,40.17859],[43.69623,40.19026],[43.66426,40.21202],[43.65427,40.22643],[43.66543,40.2294],[43.68072,40.22504],[43.67987,40.25972],[43.66391,40.27029],[43.65227,40.26856],[43.63311,40.28081],[43.63593,40.29202],[43.62841,40.29711],[43.62671,40.30436],[43.62089,40.30952],[43.59094,40.346],[43.5963,40.35532],[43.59754,40.36465],[43.60414,40.37388],[43.60662,40.38521],[43.61734,40.39026],[43.61955,40.39565],[43.61352,40.4136],[43.61963,40.4174],[43.60793,40.43522],[43.58663,40.44675],[43.57013,40.45934],[43.56119,40.45884],[43.54677,40.46879],[43.544,40.47719],[43.55635,40.48244],[43.55771,40.49395],[43.56869,40.49607],[43.57417,40.50445],[43.58789,40.50659],[43.59996,40.51146],[43.60447,40.5158],[43.61002,40.51519],[43.62,40.52506],[43.62739,40.52348],[43.6238,40.51928],[43.63366,40.51917],[43.63955,40.52383],[43.63742,40.52709],[43.63255,40.52878],[43.6276,40.53685],[43.63381,40.54023],[43.63623,40.53436],[43.64139,40.53683],[43.64364,40.53291],[43.64579,40.53094],[43.65001,40.53055],[43.65107,40.53784],[43.6453,40.54452],[43.64262,40.55406],[43.64174,40.55684],[43.64359,40.56171],[43.65789,40.56502],[43.66452,40.56433],[43.67397,40.56815],[43.66831,40.57249],[43.67142,40.57699],[43.67762,40.57714],[43.68455,40.58473],[43.68466,40.5926],[43.70411,40.61097],[43.70731,40.6182],[43.70777,40.62542],[43.7144,40.63187],[43.72104,40.63467],[43.71765,40.64255],[43.71908,40.6546],[43.73046,40.66366],[43.73478,40.66115],[43.73591,40.66708],[43.74196,40.66692],[43.74459,40.66989],[43.74067,40.67602],[43.74704,40.67434],[43.7493,40.67735],[43.7458,40.68276],[43.73922,40.68948],[43.74665,40.69927],[43.7459,40.70519],[43.74308,40.70382],[43.74157,40.70837],[43.73718,40.71278],[43.74008,40.71848],[43.74709,40.72523],[43.74687,40.73428],[43.74504,40.73672],[43.74458,40.74046],[43.74299,40.74157],[43.74276,40.74347],[43.74076,40.74545],[43.74048,40.74874],[43.73888,40.74933],[43.73637,40.7565],[43.73518,40.75752],[43.73537,40.75907],[43.73128,40.7619],[43.73202,40.76289],[43.73007,40.76537],[43.72995,40.77117],[43.728,40.77406],[43.72606,40.77566],[43.72354,40.78262],[43.72498,40.78402],[43.72437,40.78671],[43.72245,40.78715],[43.72225,40.78928],[43.72308,40.79037],[43.72185,40.79228],[43.72027,40.79289],[43.71885,40.79618],[43.71667,40.80329],[43.71364,40.80429],[43.7099,40.81051],[43.71061,40.81231],[43.70844,40.81436],[43.70627,40.8203],[43.69912,40.82767],[43.69574,40.82906],[43.69406,40.83107],[43.69238,40.83464],[43.68867,40.83528],[43.67885,40.84487],[43.67726,40.84719],[43.68079,40.85682],[43.68053,40.86593],[43.67766,40.86887],[43.67582,40.8718],[43.6756,40.87346],[43.6764,40.87539],[43.67527,40.87898],[43.67483,40.88244],[43.6737,40.88642],[43.67673,40.89404],[43.67696,40.89578],[43.67638,40.89796],[43.68112,40.90261],[43.68071,40.90388],[43.6793,40.90502],[43.67651,40.90876],[43.67231,40.91001],[43.66939,40.91173],[43.66958,40.91346],[43.67079,40.91624],[43.67166,40.91902],[43.67356,40.92024],[43.67358,40.92163],[43.67154,40.92304],[43.67425,40.9279],[43.67626,40.93018],[43.67181,40.9367],[43.6363,40.95978],[43.59873,40.9826],[43.59241,40.98572],[43.58598,40.98663],[43.58225,40.98968],[43.57953,40.9912],[43.57818,40.99324],[43.57413,40.99336],[43.5718,40.99296],[43.56827,40.9934],[43.56439,40.99267],[43.5616,40.99383],[43.55674,40.99448],[43.55562,40.99577],[43.55364,40.99602],[43.55166,40.99783],[43.54545,40.99935],[43.54215,41.00141],[43.53988,41.00372],[43.53672,41.00549],[43.52456,41.01267],[43.51672,41.01484],[43.50688,41.01194],[43.49894,41.01518],[43.4948,41.01577],[43.49221,41.01632],[43.48783,41.01647],[43.48448,41.01609],[43.4683,41.03112],[43.46922,41.04699],[43.47152,41.06725],[43.46886,41.07002],[43.46493,41.07181],[43.46066,41.07282],[43.45865,41.07459],[43.45835,41.07966],[43.457,41.08233],[43.45667,41.08473],[43.4526,41.08669],[43.44989,41.08711],[43.44749,41.09233],[43.44715,41.09467],[43.44766,41.09727],[43.44715,41.09936],[43.45281,41.10652],[43.45642,41.10929],[43.45754,41.11262],[43.459,41.11983],[43.46638,41.12183],[43.47411,41.12306],[43.46159,41.15197],[43.44872,41.17597],[43.4295,41.18207],[43.41164,41.18662],[43.40574,41.19014],[43.39984,41.19289],[43.38461,41.19993],[43.37577,41.20318],[43.3701,41.20217],[43.36691,41.20344],[43.35993,41.20174],[43.35526,41.20144],[43.35174,41.20265],[43.34217,41.20209],[43.33775,41.20076],[43.33028,41.20093],[43.32882,41.20015],[43.32702,41.19859],[43.32238,41.19573],[43.31749,41.19469],[43.315,41.19364],[43.31028,41.19157],[43.30775,41.19092],[43.30522,41.18949],[43.30235,41.19031],[43.29914,41.18931],[43.29374,41.18965],[43.28878,41.18696],[43.2823,41.18674],[43.27222,41.18356],[43.26351,41.1796],[43.25634,41.17894],[43.25344,41.17757],[43.24942,41.17715],[43.24677,41.17724],[43.24439,41.17639],[43.24201,41.17451],[43.23945,41.17521],[43.2356,41.17582],[43.23312,41.17566],[43.23076,41.17308],[43.22908,41.17465],[43.23273,41.17763],[43.23775,41.18371],[43.23138,41.191],[43.2142,41.21564],[43.20233,41.23163],[43.20091,41.23453],[43.1988,41.24621],[43.19459,41.25381],[43.19193,41.253],[43.18339,41.25428],[43.17554,41.25451],[43.17409,41.25248],[43.16748,41.24941],[43.1632,41.24972],[43.15609,41.24626],[43.15253,41.24544],[43.14989,41.24683],[43.14725,41.2459],[43.1449,41.24661],[43.14014,41.25041],[43.13508,41.25259],[43.13226,41.25207],[43.12772,41.25309],[43.13307,41.25703],[43.13814,41.25783],[43.14051,41.25682],[43.14135,41.25747],[43.14057,41.25857],[43.1415,41.25967],[43.14721,41.262],[43.14949,41.26149],[43.15211,41.26227],[43.15607,41.26771],[43.16028,41.26843],[43.16346,41.27018],[43.16879,41.27266],[43.17398,41.27145],[43.17611,41.27317],[43.17718,41.27312],[43.17893,41.2723],[43.18072,41.27324],[43.18,41.27573],[43.18472,41.27713],[43.18528,41.27925],[43.18687,41.2806],[43.19035,41.28227],[43.1928,41.28446],[43.1977,41.28574],[43.20019,41.2846],[43.20268,41.28528],[43.20355,41.28687],[43.20741,41.28768],[43.20956,41.28899],[43.21317,41.28956],[43.21147,41.29764],[43.21543,41.29884],[43.2157,41.30034],[43.21274,41.30419],[43.2139,41.30572],[43.2124,41.30639],[43.20512,41.30545],[43.20288,41.30605],[43.20097,41.30794],[43.19819,41.30862],[43.18897,41.3044],[43.18313,41.30452],[43.18074,41.30619],[43.16599,41.309],[43.16307,41.31092],[43.16119,41.31465],[43.1588,41.31566],[43.15603,41.31634],[43.15086,41.31613],[43.14292,41.31711],[43.13665,41.31857],[43.13269,41.32049],[43.12711,41.32712],[43.12565,41.32963],[43.11254,41.34297],[43.11249,41.3455],[43.10936,41.34958],[43.09526,41.35717],[43.09131,41.35859],[43.08598,41.35872],[43.07877,41.36206],[43.07705,41.36245],[43.07498,41.36464],[43.072,41.36469],[43.06741,41.36497],[43.06489,41.36602],[43.06063,41.36637],[43.05875,41.36965],[43.05515,41.37292],[43.04572,41.37594],[43.04075,41.3769],[43.0351,41.3725],[43.03151,41.37093],[43.01853,41.37557],[43.02168,41.37917],[43.02026,41.38127],[43.01781,41.38543],[43.01428,41.38937],[43.01099,41.39623],[43.0065,41.39755],[43.0039,41.40659],[42.99595,41.40884],[42.98954,41.41135],[42.98788,41.41232],[42.98794,41.41458],[42.99012,41.41601],[42.99,41.42402],[42.97716,41.42784],[42.97221,41.43062],[42.97042,41.43072],[42.96692,41.43391],[42.96805,41.43749],[42.97072,41.44171],[42.96792,41.45117],[42.96048,41.45183],[42.95333,41.45383],[42.9503,41.45532],[42.94332,41.45715],[42.936,41.46461],[42.93186,41.46384],[42.92901,41.46674],[42.93183,41.46899],[42.92957,41.47131],[42.92817,41.47094],[42.92368,41.47365],[42.92054,41.47369],[42.91287,41.47632],[42.91076,41.47616],[42.90695,41.4775],[42.90555,41.47677],[42.89892,41.47902],[42.89887,41.48113],[42.89746,41.48349],[42.89668,41.48693],[42.89891,41.4879],[42.89889,41.49008],[42.89921,41.49728],[42.90108,41.49973],[42.90054,41.50089],[42.89839,41.50097],[42.89179,41.50285],[42.88622,41.50242],[42.88373,41.50327],[42.87706,41.50333],[42.8666,41.49642],[42.86523,41.49425],[42.86283,41.49208],[42.86281,41.48926],[42.86073,41.48077],[42.85863,41.47898],[42.85752,41.47694],[42.85882,41.47555],[42.8574,41.47292],[42.85618,41.4716],[42.85118,41.47003],[42.84964,41.47342],[42.84638,41.47294],[42.84054,41.47556],[42.83848,41.47663],[42.83608,41.47782],[42.8323,41.47789],[42.82844,41.48063],[42.82389,41.48619],[42.82028,41.48883],[42.81295,41.49141],[42.80904,41.49348],[42.80575,41.49332],[42.80314,41.4947],[42.80102,41.4967],[42.80192,41.49966],[42.80163,41.50064],[42.80133,41.50265],[42.80349,41.50435],[42.80439,41.50673],[42.8044,41.5085],[42.8008,41.51208],[42.79652,41.51618],[42.80176,41.52381],[42.80439,41.52686],[42.80539,41.52865],[42.8057,41.53043],[42.80701,41.53221],[42.80937,41.53314],[42.81139,41.53509],[42.81326,41.53542],[42.81479,41.5373],[42.81715,41.53925],[42.81734,41.54196],[42.81924,41.54467],[42.81824,41.54881],[42.81899,41.55297],[42.82152,41.55641],[42.82387,41.55638],[42.82677,41.55765],[42.82829,41.55712],[42.83002,41.55881],[42.83003,41.56261],[42.83107,41.56461],[42.834,41.56718],[42.83247,41.56951],[42.83489,41.57132],[42.83507,41.57358],[42.83319,41.57481],[42.83407,41.57701],[42.83374,41.5805],[42.83599,41.58475],[42.83299,41.58554],[42.82964,41.58734],[42.82046,41.58761],[42.81574,41.58865],[42.79292,41.58856],[42.79292,41.58656],[42.78709,41.58555],[42.78245,41.58325],[42.78181,41.58004],[42.7822,41.57735],[42.78057,41.57684],[42.77825,41.57703],[42.77558,41.57824],[42.77356,41.58007],[42.77223,41.58266],[42.76888,41.58503],[42.76268,41.58629],[42.75219,41.58536],[42.74939,41.58815],[42.74782,41.58865],[42.74694,41.59017],[42.74032,41.596],[42.736,41.59654],[42.73099,41.59607],[42.72221,41.59533],[42.71239,41.59537],[42.70546,41.59839],[42.69854,41.60064],[42.69173,41.59984],[42.68768,41.59903],[42.68369,41.59972],[42.65924,41.59264],[42.62543,41.58798],[42.60107,41.58508],[42.59125,41.57354],[42.57593,41.56534],[42.57617,41.56369],[42.57366,41.55792],[42.57612,41.55472],[42.57959,41.54554],[42.58065,41.54304],[42.57638,41.53959],[42.57476,41.53555],[42.57069,41.53378],[42.56937,41.53305],[42.56819,41.52844],[42.56392,41.52588],[42.56729,41.52069],[42.56757,41.51755],[42.57002,41.51509],[42.57248,41.51133],[42.57259,41.50974],[42.57041,41.50797],[42.56572,41.50837],[42.56068,41.50722],[42.55719,41.50434],[42.55644,41.49992],[42.55358,41.49828],[42.54933,41.49876],[42.54508,41.49321],[42.54239,41.49291],[42.53729,41.49133],[42.53225,41.49125],[42.52836,41.48353],[42.52549,41.47864],[42.51805,41.47657],[42.51455,41.47411],[42.51208,41.47165],[42.51299,41.46543],[42.51561,41.4628],[42.5164,41.46013],[42.51831,41.45915],[42.51668,41.45801],[42.51677,41.4561],[42.52142,41.45303],[42.5204,41.44933],[42.52092,41.44667],[42.52453,41.44401],[42.52333,41.44212],[42.52136,41.43808],[42.52007,41.43636],[42.51182,41.44003],[42.50803,41.44023],[42.50663,41.44165],[42.5055,41.44081],[42.503,41.44049],[42.49484,41.44519],[42.49216,41.44552],[42.49111,41.44423],[42.48937,41.44038],[42.48661,41.44122],[42.48179,41.43768],[42.47903,41.43865],[42.47611,41.43862],[42.4719,41.43564],[42.46941,41.43575],[42.46545,41.43727],[42.46183,41.43646],[42.45959,41.43811],[42.457,41.43924],[42.45146,41.4386],[42.44853,41.4386],[42.44792,41.4404],[42.44594,41.44169],[42.4394,41.4417],[42.43766,41.44376],[42.4342,41.44402],[42.42905,41.44807],[42.4239,41.45316],[42.41566,41.4587],[42.41188,41.45831],[42.40587,41.46353],[42.39986,41.46617],[42.3923,41.46592],[42.38543,41.46361],[42.38302,41.46749],[42.37151,41.46454],[42.35992,41.46615],[42.355,41.46934],[42.35007,41.47047],[42.34125,41.47146],[42.32979,41.46828],[42.32609,41.47189],[42.32012,41.47705],[42.31484,41.48066],[42.30427,41.48247],[42.29315,41.48955],[42.29125,41.48819],[42.28385,41.49351],[42.27729,41.49284],[42.27245,41.49397],[42.26761,41.49149],[42.26203,41.49144],[42.25644,41.49498],[42.2494,41.49436],[42.24158,41.49392],[42.23596,41.49704],[42.22896,41.4981],[42.22595,41.49869],[42.21971,41.49562],[42.21384,41.49615],[42.21071,41.49461],[42.20852,41.49157],[42.20285,41.49128],[42.19933,41.49809],[42.19444,41.50746],[42.18654,41.50936],[42.17829,41.51461],[42.1666,41.51144],[42.15831,41.50663],[42.14762,41.50567],[42.13654,41.50787],[42.13051,41.50502],[42.12173,41.50628],[42.11859,41.50879],[42.11153,41.51185],[42.10653,41.50874],[42.10221,41.50665],[42.09731,41.50947],[42.0924,41.51023],[42.08506,41.51033],[42.06765,41.50421],[42.06239,41.50064],[42.05632,41.49834],[42.05162,41.49809],[42.04668,41.4946],[42.04078,41.4935],[42.03144,41.49471],[42.0286,41.49968],[42.01562,41.50201],[42.00607,41.50229],[42.00167,41.50488],[41.9952,41.50439],[41.99311,41.50637],[41.99033,41.51247],[41.99232,41.51439],[41.9915,41.51668],[41.98794,41.51871],[41.98506,41.52229],[41.98012,41.52291],[41.9738,41.52147],[41.96255,41.52477],[41.95484,41.52328],[41.95287,41.52101],[41.94942,41.51843],[41.94752,41.51727],[41.94587,41.51736],[41.94354,41.51642],[41.94024,41.51402],[41.94038,41.51297],[41.93859,41.51073],[41.93336,41.50872],[41.92847,41.50849],[41.92445,41.50697],[41.91754,41.50119],[41.91487,41.50102],[41.91357,41.49982],[41.91064,41.49896],[41.91009,41.4948],[41.90714,41.49212],[41.89973,41.48853],[41.89881,41.48613],[41.89754,41.48397],[41.89529,41.48179],[41.89235,41.47987],[41.89665,41.47608],[41.89515,41.47487],[41.89314,41.47442],[41.88992,41.47276],[41.88756,41.47187],[41.88696,41.4697],[41.88413,41.46753],[41.88345,41.46568],[41.88362,41.46358],[41.88156,41.46032],[41.87814,41.45886],[41.87661,41.45868],[41.87251,41.45705],[41.87033,41.45687],[41.86702,41.45501],[41.86406,41.45431],[41.85913,41.45251],[41.85677,41.45174],[41.85482,41.45081],[41.85287,41.44937],[41.84765,41.44873],[41.84656,41.44822],[41.84665,41.44418],[41.84563,41.44098],[41.83996,41.43799],[41.83362,41.43565],[41.83248,41.43519],[41.83014,41.43524],[41.82677,41.43362],[41.82349,41.43097],[41.82249,41.43245],[41.81821,41.4328],[41.81461,41.43392],[41.81223,41.43668],[41.81226,41.43996],[41.80782,41.44324],[41.80578,41.44652],[41.80117,41.44793],[41.79518,41.44728],[41.79057,41.44874],[41.78871,41.4502],[41.78936,41.45211],[41.78898,41.45427],[41.78718,41.45578],[41.78738,41.46032],[41.786,41.46101],[41.78393,41.46143],[41.78151,41.4625],[41.77567,41.46356],[41.77425,41.46063],[41.77008,41.46207],[41.769,41.46376],[41.76537,41.46461],[41.75693,41.46751],[41.75551,41.46972],[41.7534,41.47038],[41.7506,41.47002],[41.74671,41.47112],[41.74316,41.47068],[41.73951,41.47212],[41.73825,41.47137],[41.73219,41.47293],[41.72763,41.47194],[41.71825,41.47379],[41.71634,41.47335],[41.7134,41.47419],[41.71062,41.47349],[41.70751,41.47408],[41.70944,41.47697],[41.71344,41.47883],[41.71475,41.48169],[41.71468,41.48506],[41.71765,41.48949],[41.71457,41.49288],[41.70977,41.49628],[41.70512,41.496],[41.70048,41.49443],[41.69927,41.493],[41.69737,41.49156],[41.69461,41.49051],[41.69048,41.48792],[41.68566,41.48685],[41.68236,41.48805],[41.67882,41.48697],[41.67425,41.48384],[41.67142,41.48418],[41.66517,41.48247],[41.66136,41.4841],[41.65821,41.4845],[41.65498,41.48548],[41.65184,41.48505],[41.64972,41.48545],[41.6476,41.48517],[41.6436,41.48667],[41.64188,41.48632],[41.64027,41.4864],[41.63874,41.48674],[41.6367,41.48648],[41.63337,41.48685],[41.62845,41.49022],[41.62808,41.49231],[41.62592,41.49298],[41.6226,41.49657],[41.62198,41.49946],[41.61929,41.50081],[41.61528,41.50196],[41.61114,41.50189],[41.60631,41.50387],[41.60214,41.50397],[41.59618,41.50704],[41.59125,41.50813],[41.5869,41.50816],[41.58427,41.50896],[41.58252,41.5103],[41.58163,41.51165],[41.58177,41.51426],[41.57795,41.51727],[41.57204,41.5198],[41.56518,41.51918],[41.56134,41.51956],[41.55774,41.5183],[41.555,41.51809],[41.55225,41.51879],[41.54865,41.52018],[41.54676,41.52038],[41.49877,41.53332],[30,43.5],[30,45],[29.6788,45.21198],[29.65648,45.25207],[29.66318,45.26244],[29.67811,45.27088],[29.66541,45.30613],[29.65546,45.33751],[29.59366,45.38676],[29.56621,45.40518],[29.43987,45.43278],[29.4289,45.444],[29.39389,45.43833],[29.34789,45.43844],[29.32901,45.45102],[29.28816,45.42699],[29.24869,45.43572],[29.21933,45.42177],[29.18681,45.41287],[29.17625,45.39819],[29.06502,45.36487],[28.96203,45.32961],[28.95328,45.30933],[28.95555,45.29363],[28.94959,45.27987],[28.92667,45.27939],[28.87071,45.3161],[28.84359,45.31611],[28.81415,45.33831],[28.77922,45.32383],[28.80746,45.31225],[28.79598,45.29244],[28.76415,45.29124],[28.74879,45.2823],[28.76203,45.2654],[28.78925,45.25791],[28.79175,45.24463],[28.78317,45.23787],[28.73889,45.23111],[28.71898,45.22146],[28.65101,45.24275],[28.56106,45.24664],[28.54596,45.25711],[28.33859,45.32557],[28.30632,45.37425],[28.28229,45.39399],[28.28744,45.43037],[28.26787,45.45711],[28.20814,45.46724],[28.18637,45.47152],[28.15911,45.51048],[28.16824,45.53835],[28.1554,45.56815],[28.12561,45.57293],[28.08757,45.60847],[28.11407,45.62095],[28.14058,45.6219],[28.16338,45.64109],[28.16668,45.70448],[28.14582,45.77375],[28.12334,45.78773],[28.10858,45.83689],[28.12128,45.87414],[28.11802,45.92339],[28.09167,46.01296],[28.11969,46.11302],[28.13398,46.18261],[28.11225,46.21598],[28.13996,46.27976],[28.20361,46.3114],[28.19085,46.34813],[28.2587,46.43492],[28.21587,46.51198],[28.24557,46.63226],[28.19561,46.73196],[28.16102,46.7865],[28.11545,46.82035],[28.08867,46.97678],[28.04172,47.02017],[27.9125,47.07183],[27.79976,47.14406],[27.79401,47.19691],[27.72784,47.29081],[27.60124,47.32002],[27.57077,47.45903],[27.53837,47.48161],[27.48399,47.48748],[27.41726,47.57404],[27.33405,47.6291],[27.25149,47.72029],[27.28506,47.72523],[27.28841,47.74679],[27.21668,47.8257],[27.24899,47.83589],[27.20925,47.84522],[27.19972,47.89902],[27.21845,47.91266],[27.25128,47.87877],[27.26214,47.89278],[27.2152,47.95022],[27.18947,47.94068],[27.14589,47.96338],[27.1653,47.99312],[27.10359,48.01167],[27.07823,48.05034],[27.02815,48.09268],[27.03229,48.12802],[26.99523,48.12852],[26.94584,48.17536],[26.8031,48.24522],[26.70156,48.25377],[26.63299,48.25866],[26.55606,48.22368],[26.47639,48.21432],[26.33627,48.1828],[26.32973,48.15812],[26.30945,48.14261],[26.28642,48.11519],[26.27439,48.07676],[26.21379,48.04987],[26.19686,47.99761],[26.10302,47.9766],[26.06366,47.98787],[25.95748,47.97181],[25.92304,47.97791],[25.88585,47.96194],[25.83894,47.97045],[25.81537,47.9523],[25.77532,47.94151],[25.6481,47.94893],[25.54055,47.93792],[25.30939,47.91219],[25.27325,47.89426],[25.23436,47.89106],[25.19134,47.82522],[25.11263,47.75384],[25.0422,47.73205],[24.88786,47.72477],[24.87169,47.75794],[24.84178,47.77633],[24.81769,47.81866],[24.76399,47.83689],[24.72345,47.84146],[24.66917,47.86446],[24.67047,47.89571],[24.6209,47.95085],[24.57923,47.96217],[24.50734,47.9551],[24.43545,47.96642],[24.39401,47.95185],[24.38004,47.92808],[24.23214,47.90058],[24.19802,47.91767],[24.11779,47.91424],[24.09964,47.93646],[24.06502,47.95131],[24.01347,47.96397],[23.96466,47.96191],[23.86705,47.93204],[23.81739,47.98267],[23.75994,47.99373],[23.66679,47.98641],[23.62171,48.00206],[23.52993,48.01772],[23.49609,47.96832],[23.42343,47.98856],[23.33429,48.01984],[23.33637,48.03706],[23.27527,48.05795],[23.29041,48.07586],[23.2685,48.10067],[23.24037,48.09474],[23.19303,48.09981],[23.16974,48.12279],[23.12317,48.08473],[23.1095,48.03909],[23.0821,48.00447],[23.02192,47.99268],[22.92546,48.01932],[22.91844,48.00507],[22.93964,47.99519],[22.94437,47.96509],[22.89702,47.95772],[22.83804,47.98713],[22.87932,48.0248],[22.87939,48.04961],[22.83024,48.1103],[22.74538,48.11591],[22.66877,48.09218],[22.59302,48.1055],[22.58674,48.14611],[22.56711,48.17192],[22.56672,48.19223],[22.48823,48.25331],[22.4583,48.23921],[22.43937,48.24705],[22.41219,48.25032],[22.37403,48.23895],[22.32654,48.30581],[22.32026,48.35073],[22.26786,48.36019],[22.24292,48.38425],[22.26339,48.41209],[22.22755,48.41167],[22.21081,48.42723],[22.18858,48.41454],[22.14986,48.40732],[22.13285,48.41294],[22.17902,48.6007],[22.22519,48.61915],[22.25213,48.64666],[22.30928,48.6778],[22.33897,48.68536],[22.3657,48.73323],[22.3408,48.75879],[22.38182,48.80065],[22.38035,48.86043],[22.42082,48.88671],[22.42833,48.9166],[22.42279,48.92934],[22.49415,48.99619],[22.51883,48.99543],[22.5435,49.00908],[22.55339,49.07729],[22.56191,49.087],[22.57894,49.09923],[22.61767,49.08374],[22.63717,49.06466],[22.65805,49.04738],[22.68716,49.0427],[22.71106,49.05042],[22.73221,49.05095],[22.75474,49.04247],[22.76628,49.0538],[22.823,49.02918],[22.84951,48.99916],[22.8888,49.00757],[22.86831,49.07108],[22.8945,49.09499],[22.79779,49.13553],[22.78623,49.15809],[22.7576,49.152],[22.73996,49.16208],[22.75728,49.18084],[22.74249,49.18607],[22.71841,49.16416],[22.70518,49.17531],[22.74414,49.21518],[22.71443,49.22365],[22.71743,49.24044],[22.73965,49.25006],[22.7489,49.31719],[22.74116,49.33286],[22.74716,49.35926],[22.71278,49.43563],[22.699,49.49146],[22.67491,49.49689],[22.65189,49.50674],[22.63985,49.52907],[22.67018,49.54311],[22.68678,49.57141],[22.78316,49.65826],[22.78615,49.67572],[22.8055,49.69422],[22.81936,49.69318],[22.84671,49.70989],[22.87681,49.74081],[22.89857,49.75471],[22.90189,49.76787],[22.93268,49.79345],[22.9558,49.80204],[22.97138,49.83769],[22.99519,49.84145],[23.03136,49.88152],[23.10438,49.93958],[23.11697,49.95521],[23.14748,49.97487],[23.2082,50.02985],[23.21796,50.04851],[23.23596,50.05306],[23.27593,50.08759],[23.28355,50.0978],[23.31041,50.11154],[23.37966,50.15975],[23.42665,50.18298],[23.46814,50.215],[23.57781,50.26489],[23.6093,50.29685],[23.6309,50.30484],[23.64427,50.3216],[23.68747,50.33233],[23.69725,50.37249],[23.72899,50.38987],[23.80072,50.40538],[23.84517,50.40613],[23.94043,50.41562],[23.995,50.41362],[24.00798,50.43541],[24.03469,50.44496],[24.07163,50.50077],[24.09197,50.56429],[24.09698,50.598],[24.09376,50.6352],[24.08185,50.64727],[24.08642,50.67152],[24.06534,50.67824],[24.07252,50.71795],[24.01821,50.72256],[24.01945,50.76842],[23.96713,50.77008],[23.96295,50.81605],[23.99996,50.83945],[24.10407,50.83504],[24.1505,50.8653],[24.05221,50.89611],[23.96766,50.95462],[23.95864,50.99149],[23.92215,51.0076],[23.90941,51.07711],[23.87469,51.07758],[23.84822,51.12634],[23.87178,51.13184],[23.85963,51.15975],[23.82709,51.16041],[23.8087,51.17898],[23.73897,51.21955],[23.72196,51.25831],[23.69396,51.28676],[23.6462,51.28867],[23.63506,51.32394],[23.69953,51.40504],[23.67958,51.43959],[23.65175,51.44575],[23.64745,51.45738],[23.67688,51.47347],[23.65727,51.48835],[23.6404,51.48613],[23.62606,51.50058],[23.62408,51.51683],[23.59837,51.53349],[23.58365,51.52965],[23.56268,51.54299],[23.57468,51.55551],[23.54548,51.60221],[23.54374,51.65231],[23.55537,51.66644],[23.55553,51.69636],[23.54471,51.72288],[23.5258,51.73677],[23.57241,51.76],[23.61494,51.77672],[23.63825,51.79853],[23.6255,51.81952],[23.60726,51.8371],[23.61472,51.85191],[23.60768,51.87304],[23.62947,51.87298],[23.63204,51.88988],[23.61486,51.91848],[23.6464,51.93334],[23.62984,51.94783],[23.65383,51.9644],[23.66683,51.96573],[23.6716,51.97891],[23.68735,51.9904],[23.6633,52.02059],[23.65128,52.05934],[23.642,52.0812],[23.60285,52.11477],[23.56954,52.11891],[23.55271,52.10955],[23.53758,52.12687],[23.50597,52.14419],[23.48938,52.15445],[23.48792,52.16678],[23.50568,52.17574],[23.45605,52.18691],[23.42822,52.1739],[23.40276,52.18157],[23.3979,52.19513],[23.28423,52.21958],[23.2667,52.21542],[23.2031,52.22791],[23.19327,52.2367],[23.19718,52.24884],[23.20795,52.26015],[23.20499,52.27482],[23.17857,52.28457],[23.21384,52.32886],[23.27934,52.39328],[23.3032,52.40474],[23.31535,52.42735],[23.36595,52.48178],[23.46714,52.55046],[23.54521,52.58228],[23.6425,52.60741],[23.71919,52.61586],[23.73271,52.60763],[23.76413,52.6151],[23.78181,52.62757],[23.87778,52.68004],[23.88941,52.67858],[23.90379,52.69211],[23.94078,52.71251],[23.93812,52.8124],[23.92235,52.82742],[23.92581,52.89884],[23.91828,52.90396],[23.91726,52.93798],[23.94645,52.9571],[23.93006,52.97633],[23.92873,53.019],[23.87522,53.07985],[23.8878,53.11507],[23.90312,53.1371],[23.91433,53.14512],[23.90906,53.17127],[23.86325,53.1968],[23.85677,53.22979],[23.81909,53.24479],[23.77729,53.31084],[23.7355,53.39659],[23.66246,53.51491],[23.62731,53.59612],[23.59216,53.68874],[23.58367,53.7086],[23.58616,53.73984],[23.54994,53.76532],[23.54501,53.79521],[23.54832,53.84781],[23.54379,53.85872],[23.52553,53.86477],[23.5107,53.91695],[23.51922,53.9578],[23.49245,53.97485],[23.48078,53.99675],[23.50344,54.01057],[23.51512,54.02117],[23.52337,54.0346],[23.52886,54.06416],[23.49866,54.11682],[23.48779,54.14798],[23.46043,54.17431],[23.42769,54.18035],[23.38259,54.22657],[23.36496,54.23104],[23.33563,54.25373],[23.25225,54.25737],[23.22498,54.26363],[23.2032,54.28754],[23.1567,54.2938],[23.15954,54.31136],[23.14316,54.3161],[23.09038,54.29791],[23.0379,54.31845],[23.06507,54.34381],[22.99402,54.36244],[23.01122,54.38375],[22.83892,54.40981],[22.81044,54.37167],[22.7902,54.36392],[22.68739,54.36149],[22.645,54.35426],[22.42545,54.34863],[22.31843,54.33941],[22.22513,54.343],[22.16214,54.33777],[21.9838,54.33414],[21.50076,54.32368],[21.44995,54.31781],[21.43279,54.32529],[21.36619,54.33117],[21.32568,54.3301],[21.29855,54.33278],[21.27693,54.32904],[20.99953,54.35362],[20.82239,54.36139],[20.7484,54.36697],[20.66892,54.37254],[20.63065,54.36611],[20.60061,54.37728],[20.4183,54.39002],[20.33763,54.40117],[19.64278,54.45307],[19.39575,56.23785],[20.51806,58.95105],[27.58109,60.29591],[27.72636,60.39067],[27.68487,60.42571],[27.7514,60.46094],[27.77398,60.50158],[27.78558,60.53412],[27.85211,60.58287],[28.19391,60.77455],[28.5351,60.96115],[28.65657,60.95013],[28.75426,61.07212],[28.99537,61.17299],[29.23128,61.25782],[29.30239,61.32151],[29.41552,61.26117],[29.4968,61.25873],[29.55061,61.24308],[29.57362,61.18578],[30.46556,61.11219],[31.37316,60],[50,60],[50,44],[51.39511,37.88291]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Kyrgyzstan, west of 75º E#EY", "itu_zone_number": 30 }, "geometry": { "type": "Polygon", "coordinates": [[[51.39511,37.88291],[53.90931,37.34744],[54.24427,37.32038],[54.24939,37.32519],[54.25864,37.3289],[54.28537,37.35216],[54.34836,37.34835],[54.39855,37.36098],[54.43813,37.38755],[54.45141,37.394],[54.46619,37.40229],[54.47575,37.40774],[54.48605,37.41419],[54.4902,37.42134],[54.50259,37.41976],[54.52049,37.43296],[54.53069,37.43461],[54.53544,37.43933],[54.54155,37.44197],[54.55222,37.44361],[54.55691,37.44719],[54.56666,37.4461],[54.57669,37.45508],[54.58302,37.45544],[54.58752,37.45305],[54.59244,37.45364],[54.59438,37.45133],[54.60041,37.45166],[54.60313,37.44633],[54.61611,37.44447],[54.62563,37.43772],[54.64169,37.43827],[54.64922,37.43102],[54.65325,37.43072],[54.67566,37.44038],[54.68472,37.44616],[54.70461,37.46274],[54.70624,37.46391],[54.71169,37.46772],[54.7155,37.47044],[54.71814,37.47269],[54.72222,37.47491],[54.72713,37.47669],[54.73177,37.47844],[54.73669,37.47975],[54.74191,37.48105],[54.74597,37.48283],[54.74944,37.48394],[54.75352,37.48616],[54.75791,37.48863],[54.76258,37.49247],[54.76661,37.49616],[54.7685,37.49924],[54.77155,37.50249],[54.77569,37.5063],[54.77266,37.51072],[54.77505,37.51366],[54.7858,37.51664],[54.79777,37.52305],[54.79791,37.54505],[54.80014,37.55144],[54.8063,37.55566],[54.80677,37.56116],[54.80363,37.56261],[54.80661,37.5653],[54.80919,37.57419],[54.81655,37.58802],[54.81911,37.60538],[54.81583,37.6105],[54.80711,37.61711],[54.79813,37.61569],[54.79244,37.61739],[54.78908,37.62066],[54.78766,37.62405],[54.784,37.63269],[54.78969,37.64864],[54.80102,37.66055],[54.80227,37.66419],[54.79811,37.6691],[54.80027,37.67319],[54.7998,37.67708],[54.80308,37.68047],[54.8113,37.68466],[54.81691,37.69852],[54.82166,37.7021],[54.82088,37.70486],[54.81458,37.70635],[54.82355,37.71649],[54.82249,37.71927],[54.82383,37.72522],[54.83083,37.72783],[54.83466,37.73002],[54.84308,37.74019],[54.83974,37.74483],[54.85205,37.75055],[54.85191,37.75536],[54.85672,37.76052],[54.86491,37.7645],[54.87002,37.76208],[54.87602,37.7693],[54.88497,37.76866],[54.89247,37.76553],[54.89288,37.76627],[54.89291,37.7663],[54.92072,37.78397],[54.94939,37.80091],[54.95766,37.81822],[54.98636,37.83516],[55.01189,37.84969],[55.02794,37.86311],[55.03133,37.873],[55.0428,37.89022],[55.06824,37.90224],[55.09713,37.92413],[55.12933,37.95097],[55.15152,37.95805],[55.16513,37.9578],[55.17352,37.95766],[55.18613,37.95866],[55.19224,37.95233],[55.20519,37.96455],[55.22905,37.97408],[55.24499,37.98125],[55.26547,37.98211],[55.27191,37.9863],[55.27244,37.98666],[55.27744,37.98977],[55.28363,37.99333],[55.28952,37.99619],[55.29422,37.99885],[55.30333,38.00283],[55.31269,38.00585],[55.32233,38.00844],[55.32902,38.01013],[55.33519,38.01233],[55.34572,38.01625],[55.35102,38.01889],[55.35572,38.02111],[55.3613,38.02349],[55.3663,38.02572],[55.37158,38.02766],[55.37744,38.02986],[55.38213,38.03205],[55.388,38.03422],[55.39413,38.03616],[55.4,38.03836],[55.40644,38.04027],[55.4138,38.0438],[55.41997,38.04691],[55.42499,38.05025],[55.42916,38.05313],[55.43355,38.05489],[55.44175,38.05702],[55.44619,38.06013],[55.4483,38.0633],[55.45047,38.06739],[55.45288,38.07077],[55.45586,38.07325],[55.45999,38.07591],[55.46502,38.07833],[55.46972,38.08052],[55.47419,38.08433],[55.48091,38.0858],[55.48439,38.08549],[55.48749,38.08313],[55.48972,38.07988],[55.4925,38.07594],[55.4973,38.07241],[55.50255,38.07322],[55.50869,38.07472],[55.51369,38.07688],[55.51991,38.08089],[55.52255,38.082],[55.52608,38.0833],[55.5328,38.08475],[55.54069,38.08666],[55.54563,38.08702],[55.55175,38.08758],[55.55872,38.08858],[55.56514,38.08935],[55.57122,38.08902],[55.57644,38.08935],[55.58197,38.08947],[55.58836,38.09027],[55.59425,38.09244],[55.60155,38.09411],[55.61147,38.09619],[55.62227,38.0978],[55.63216,38.09875],[55.63886,38.0993],[55.64841,38.09933],[55.65652,38.09869],[55.66175,38.09836],[55.67127,38.09722],[55.67852,38.09708],[55.68463,38.09763],[55.69133,38.09816],[55.69714,38.09875],[55.71175,38.10163],[55.71989,38.10213],[55.72716,38.10289],[55.73336,38.10527],[55.7378,38.10794],[55.74191,38.10991],[55.74805,38.11091],[55.75444,38.11125],[55.76316,38.11127],[55.76952,38.11066],[55.77613,38.10916],[55.78622,38.10733],[55.79494,38.1078],[55.80077,38.10861],[55.80577,38.11055],[55.81336,38.11152],[55.81797,38.1105],[55.8228,38.10811],[55.82994,38.10497],[55.83711,38.10205],[55.8428,38.09894],[55.85019,38.09511],[55.85705,38.09175],[55.86591,38.08833],[55.87219,38.08522],[55.88108,38.0825],[55.8911,38.07927],[55.89858,38.07705],[55.90552,38.07688],[55.91164,38.07788],[55.91808,38.07888],[55.92713,38.08075],[55.93241,38.08291],[55.93794,38.08322],[55.94488,38.08238],[55.94952,38.08227],[55.95211,38.08152],[55.95469,38.081],[55.96011,38.07836],[55.96261,38.07533],[55.96602,38.07363],[55.96888,38.07241],[55.97255,38.07027],[55.9765,38.06719],[55.98077,38.06502],[55.98485,38.06561],[55.98922,38.06619],[55.99272,38.06658],[55.9953,38.06583],[56.00166,38.06544],[56.00719,38.06555],[56.01241,38.06563],[56.01766,38.06622],[56.02433,38.0665],[56.03333,38.0663],[56.03969,38.06636],[56.04377,38.06694],[56.04905,38.06797],[56.05547,38.06894],[56.06191,38.07064],[56.07972,38.07338],[56.08641,38.07391],[56.09311,38.07466],[56.09922,38.07544],[56.11175,38.07675],[56.12666,38.07958],[56.13452,38.08052],[56.14238,38.08169],[56.16044,38.08283],[56.16683,38.08313],[56.17319,38.08252],[56.17889,38.07986],[56.18397,38.07675],[56.19138,38.07336],[56.19641,38.06886],[56.21149,38.06135],[56.21841,38.06027],[56.22477,38.06011],[56.23205,38.06061],[56.23905,38.06158],[56.24688,38.06205],[56.25919,38.06472],[56.26652,38.06683],[56.27269,38.0685],[56.28116,38.06986],[56.28755,38.07061],[56.29455,38.07114],[56.30236,38.07047],[56.31166,38.07088],[56.31916,38.07047],[56.32872,38.06975],[56.33336,38.06986],[56.33713,38.07],[56.33919,38.07064],[56.33983,38.08549],[56.34114,38.08913],[56.3433,38.09227],[56.34788,38.09788],[56.35177,38.10075],[56.35386,38.10161],[56.35627,38.10386],[56.35847,38.10791],[56.35883,38.1095],[56.35866,38.11202],[56.35791,38.11502],[56.35714,38.11711],[56.35575,38.11897],[56.35408,38.12041],[56.35297,38.1218],[56.35186,38.12274],[56.35049,38.12508],[56.34916,38.12786],[56.34811,38.13019],[56.34674,38.13205],[56.3448,38.13416],[56.34166,38.13538],[56.33736,38.13689],[56.33452,38.13833],[56.3335,38.14136],[56.33358,38.14363],[56.33394,38.14544],[56.33433,38.14749],[56.33324,38.14913],[56.33105,38.15219],[56.32914,38.15522],[56.32838,38.15797],[56.32794,38.16119],[56.32722,38.16489],[56.32819,38.16691],[56.32919,38.17011],[56.33136,38.17372],[56.33475,38.17819],[56.3378,38.18133],[56.34022,38.18377],[56.34444,38.18733],[56.34833,38.19022],[56.35405,38.19486],[56.35883,38.19772],[56.36211,38.19991],[56.36811,38.20411],[56.37319,38.20763],[56.37952,38.21274],[56.38608,38.21691],[56.39177,38.22066],[56.39988,38.22708],[56.41099,38.23524],[56.41705,38.24036],[56.42452,38.24497],[56.43277,38.2475],[56.4398,38.24889],[56.44855,38.2498],[56.45469,38.25191],[56.45594,38.25236],[56.46327,38.25397],[56.46849,38.25361],[56.47988,38.25444],[56.48441,38.25419],[56.48799,38.25397],[56.49494,38.25333],[56.50422,38.2526],[56.51208,38.2526],[56.51733,38.25291],[56.52288,38.25391],[56.52672,38.25494],[56.53113,38.25619],[56.53638,38.25627],[56.54241,38.25497],[56.54966,38.25452],[56.55491,38.25461],[56.56186,38.25419],[56.56766,38.25402],[56.57516,38.25241],[56.58,38.25],[56.58647,38.24522],[56.59008,38.24147],[56.59394,38.23722],[56.59577,38.23236],[56.59905,38.22791],[56.60152,38.22486],[56.60408,38.22341],[56.60761,38.22447],[56.61177,38.22663],[56.61477,38.22838],[56.62125,38.23047],[56.62658,38.23216],[56.63183,38.23291],[56.638,38.23436],[56.64302,38.2358],[56.64544,38.2378],[56.64583,38.23986],[56.6468,38.24211],[56.64805,38.24436],[56.65141,38.24747],[56.65499,38.24966],[56.65975,38.25158],[56.66591,38.25322],[56.67324,38.25461],[56.67969,38.25536],[56.68583,38.25585],[56.69166,38.25661],[56.69694,38.25713],[56.70158,38.25677],[56.70561,38.25597],[56.7108,38.25511],[56.71683,38.25333],[56.72294,38.25338],[56.72763,38.25439],[56.73147,38.25541],[56.7368,38.25755],[56.74011,38.25974],[56.74372,38.26261],[56.74739,38.26616],[56.75044,38.26952],[56.75466,38.27258],[56.75669,38.27253],[56.75919,38.26972],[56.76052,38.26738],[56.76319,38.2625],[56.76719,38.261],[56.77388,38.25483],[56.77894,38.25099],[56.782,38.24839],[56.78455,38.24672],[56.78705,38.24433],[56.7915,38.24033],[56.79427,38.23772],[56.79791,38.23463],[56.80219,38.23311],[56.80711,38.23249],[56.81055,38.23149],[56.81572,38.23019],[56.82086,38.22797],[56.8263,38.22641],[56.83305,38.22208],[56.84072,38.21797],[56.84725,38.215],[56.85608,38.21152],[56.867,38.20891],[56.87566,38.2075],[56.88283,38.20544],[56.88886,38.20386],[56.89436,38.20369],[56.89925,38.20286],[56.90502,38.20175],[56.91191,38.20039],[56.91799,38.19997],[56.92319,38.19936],[56.93138,38.19886],[56.93161,38.19886],[56.94055,38.19766],[56.94808,38.19697],[56.95591,38.19672],[56.96175,38.19722],[56.96966,38.19833],[56.97494,38.19933],[56.98075,38.19936],[56.98619,38.1978],[56.99063,38.19377],[56.99444,38.18883],[56.99739,38.18347],[56.9978,38.18024],[57.00172,38.17738],[57.01177,38.17544],[57.02244,38.17372],[57.03197,38.17274],[57.04238,38.17194],[57.05197,38.17186],[57.06189,38.17222],[57.06891,38.17361],[57.0748,38.17499],[57.08041,38.17666],[57.08516,38.1788],[57.08935,38.18094],[57.0945,38.18469],[57.09814,38.188],[57.1015,38.19086],[57.10455,38.19352],[57.10819,38.19683],[57.11069,38.19997],[57.11402,38.20261],[57.11708,38.20547],[57.12044,38.20858],[57.12441,38.21211],[57.1293,38.21652],[57.13391,38.22141],[57.13491,38.22269],[57.13702,38.22544],[57.14161,38.22963],[57.14502,38.23366],[57.14816,38.23814],[57.151,38.24194],[57.15352,38.24597],[57.15638,38.25047],[57.1605,38.25652],[57.16502,38.25958],[57.16914,38.26058],[57.17441,38.26108],[57.1788,38.26163],[57.1838,38.26305],[57.19005,38.26561],[57.19538,38.2675],[57.2028,38.26977],[57.21211,38.27013],[57.22055,38.26985],[57.22572,38.26874],[57.23291,38.26713],[57.23975,38.26438],[57.24511,38.26169],[57.24897,38.25744],[57.25099,38.25208],[57.25244,38.24677],[57.25099,38.2413],[57.25366,38.23711],[57.2543,38.23249],[57.25577,38.22741],[57.25608,38.2228],[57.25825,38.21952],[57.2633,38.21636],[57.271,38.21358],[57.27752,38.2106],[57.28525,38.20827],[57.29166,38.20347],[57.29547,38.19877],[57.29611,38.19461],[57.29674,38.19025],[57.29652,38.18624],[57.29647,38.18497],[57.2953,38.17974],[57.29294,38.17363],[57.29353,38.16858],[57.29236,38.16288],[57.2928,38.1553],[57.29369,38.15024],[57.29872,38.14686],[57.3058,38.14339],[57.31291,38.14063],[57.32166,38.13619],[57.32844,38.13252],[57.33402,38.12844],[57.33872,38.12416],[57.34197,38.12014],[57.3438,38.11616],[57.34524,38.11108],[57.34763,38.10688],[57.35138,38.10147],[57.35549,38.09674],[57.36158,38.09149],[57.36861,38.08733],[57.37533,38.08297],[57.37939,38.0778],[57.38058,38.07294],[57.37939,38.06724],[57.37736,38.06227],[57.37711,38.05794],[57.37541,38.05319],[57.37222,38.04824],[57.36991,38.04327],[57.36733,38.03833],[57.36616,38.03311],[57.36594,38.02922],[57.36663,38.02597],[57.36844,38.02202],[57.36836,38.01538],[57.36774,38.00966],[57.36544,38.00425],[57.36277,37.99839],[57.35719,37.99169],[57.35313,37.98658],[57.3523,37.98199],[57.35358,37.97874],[57.35633,37.97613],[57.35913,37.97444],[57.36511,37.97263],[57.3708,37.97058],[57.37764,37.96827],[57.38366,37.96716],[57.38994,37.96555],[57.39269,37.96316],[57.39749,37.96072],[57.40233,37.95938],[57.40741,37.95669],[57.41216,37.95352],[57.4163,37.95016],[57.42244,37.94561],[57.42941,37.941],[57.43677,37.93822],[57.44566,37.9363],[57.45308,37.93441],[57.46108,37.93252],[57.46941,37.9313],[57.47744,37.92963],[57.48744,37.92744],[57.49458,37.92536],[57.5008,37.92283],[57.50725,37.91938],[57.51197,37.91577],[57.51797,37.91441],[57.52497,37.91485],[57.53111,37.91624],[57.53672,37.91786],[57.54347,37.91966],[57.54905,37.92108],[57.55519,37.922],[57.56369,37.92352],[57.57066,37.92394],[57.58172,37.92469],[57.58924,37.92464],[57.59786,37.92341],[57.6033,37.92227],[57.60924,37.91977],[57.61641,37.91883],[57.62725,37.91566],[57.63613,37.91419],[57.6468,37.91333],[57.65519,37.91325],[57.66439,37.91175],[57.67358,37.91072],[57.6868,37.90883],[57.69577,37.90897],[57.7058,37.9118],[57.71419,37.91169],[57.72547,37.91149],[57.73261,37.90963],[57.73761,37.90644],[57.74336,37.90072],[57.75011,37.89725],[57.75722,37.89516],[57.76263,37.89402],[57.77161,37.89391],[57.78025,37.89313],[57.78719,37.89308],[57.79397,37.89008],[57.79863,37.88622],[57.80244,37.88194],[57.80816,37.87599],[57.81277,37.87099],[57.81713,37.86647],[57.82241,37.86305],[57.82783,37.86147],[57.83441,37.86052],[57.84055,37.86166],[57.84555,37.86283],[57.85285,37.86369],[57.86219,37.86494],[57.87147,37.86525],[57.88066,37.86397],[57.88977,37.86155],[57.89686,37.85922],[57.90541,37.85702],[57.91144,37.85633],[57.91483,37.85505],[57.91902,37.85261],[57.92533,37.85144],[57.93247,37.84999],[57.95147,37.84397],[57.956,37.84241],[57.96324,37.838],[57.97005,37.83566],[57.97908,37.83208],[57.99411,37.82275],[58.00188,37.81763],[58.00752,37.81533],[58.01538,37.81135],[58.02233,37.80694],[58.02936,37.79933],[58.03372,37.79961],[58.03819,37.79735],[58.04216,37.79605],[58.04936,37.7953],[58.05516,37.79575],[58.06186,37.79661],[58.06894,37.79838],[58.07533,37.7988],[58.07958,37.79772],[58.0835,37.79572],[58.08886,37.79366],[58.09377,37.79347],[58.09597,37.79155],[58.09744,37.78758],[58.103,37.78413],[58.10702,37.78374],[58.11,37.78477],[58.11238,37.78627],[58.11547,37.78913],[58.11902,37.79058],[58.12094,37.78891],[58.12344,37.78697],[58.12614,37.78389],[58.13469,37.77777],[58.14141,37.77911],[58.14688,37.783],[58.15375,37.78594],[58.1598,37.78569],[58.16369,37.78347],[58.16697,37.78058],[58.17397,37.77705],[58.18072,37.77425],[58.191,37.77199],[58.19919,37.76936],[58.20783,37.76416],[58.21188,37.76011],[58.21297,37.75477],[58.21297,37.75019],[58.21261,37.74494],[58.21397,37.73914],[58.21605,37.73583],[58.21963,37.73316],[58.22263,37.73052],[58.22569,37.72855],[58.22716,37.72458],[58.23214,37.72116],[58.23325,37.7163],[58.2335,37.71147],[58.23316,37.70622],[58.23141,37.70169],[58.22905,37.69675],[58.22761,37.69222],[58.22613,37.68747],[58.22641,37.68288],[58.22741,37.68055],[58.23011,37.67789],[58.23733,37.67347],[58.24411,37.67111],[58.25088,37.66899],[58.25544,37.66788],[58.2605,37.66583],[58.26755,37.66322],[58.27297,37.66208],[58.27755,37.66166],[58.28513,37.65858],[58.29136,37.65647],[58.29991,37.65497],[58.30369,37.65527],[58.30833,37.65574],[58.31561,37.65636],[58.32338,37.65602],[58.33091,37.65638],[58.33761,37.65724],[58.34322,37.65494],[58.35083,37.65208],[58.35955,37.64872],[58.36547,37.64664],[58.36875,37.64397],[58.36986,37.63908],[58.37038,37.63402],[58.37149,37.62916],[58.3745,37.62672],[58.37891,37.62355],[58.38272,37.62041],[58.38711,37.617],[58.39277,37.61539],[58.39714,37.61589],[58.40158,37.61752],[58.40519,37.61966],[58.40972,37.62266],[58.41299,37.62413],[58.41711,37.62486],[58.4218,37.62602],[58.42588,37.62655],[58.4333,37.6253],[58.4408,37.62519],[58.44827,37.62486],[58.45461,37.62483],[58.45983,37.62505],[58.46625,37.62614],[58.4733,37.62788],[58.47925,37.63016],[58.48611,37.63327],[58.4923,37.6353],[58.50497,37.643],[58.50919,37.64533],[58.51258,37.64838],[58.51483,37.65197],[58.51622,37.6551],[58.51761,37.6585],[58.51944,37.66391],[58.52058,37.66799],[58.52194,37.67069],[58.52624,37.67441],[58.52933,37.67747],[58.53188,37.68058],[58.53466,37.68341],[58.53749,37.68652],[58.54172,37.68908],[58.5468,37.69138],[58.55327,37.69313],[58.55825,37.69383],[58.56341,37.69339],[58.56913,37.69266],[58.57722,37.69274],[58.58002,37.69124],[58.58336,37.68949],[58.587,37.68772],[58.59036,37.68619],[58.59469,37.68233],[58.59936,37.67891],[58.60561,37.67333],[58.60989,37.66855],[58.61358,37.66358],[58.6165,37.66022],[58.62049,37.65547],[58.62833,37.65189],[58.64127,37.64716],[58.6508,37.64305],[58.67178,37.63774],[58.68558,37.63663],[58.69552,37.63458],[58.70811,37.63308],[58.719,37.63188],[58.7298,37.62955],[58.73816,37.62939],[58.74224,37.62989],[58.74386,37.63211],[58.74488,37.63436],[58.74502,37.63619],[58.74622,37.64094],[58.74828,37.64497],[58.7508,37.6483],[58.75358,37.65047],[58.75825,37.65139],[58.76233,37.65166],[58.77188,37.64799],[58.77691,37.64594],[58.78877,37.64216],[58.79305,37.64149],[58.7968,37.64155],[58.80061,37.64205],[58.80416,37.6435],[58.80758,37.64655],[58.8095,37.64899],[58.80994,37.65127],[58.8125,37.6585],[58.81355,37.66072],[58.81516,37.66319],[58.81736,37.66536],[58.8195,37.66711],[58.82144,37.66999],[58.8233,37.67174],[58.82375,37.67355],[58.82389,37.67561],[58.82236,37.67844],[58.81835,37.68277],[58.81605,37.68677],[58.81622,37.68905],[58.8178,37.69105],[58.82194,37.692],[58.82563,37.69136],[58.83013,37.68955],[58.83564,37.68608],[58.84149,37.68305],[58.84602,37.68191],[58.85138,37.68027],[58.85749,37.67677],[58.86355,37.67283],[58.86925,37.66797],[58.879,37.65924],[58.88694,37.65336],[58.89336,37.65027],[58.89822,37.64958],[58.90486,37.6495],[58.91058,37.64899],[58.91747,37.64822],[58.92641,37.64802],[58.93241,37.64749],[58.94614,37.64544],[58.95097,37.6443],[58.95827,37.64188],[58.96419,37.63977],[58.9818,37.63225],[58.99077,37.62861],[58.99575,37.62583],[59.00569,37.62352],[59.01536,37.62166],[59.02444,37.61961],[59.03316,37.61666],[59.04052,37.61469],[59.04761,37.61275],[59.05566,37.60869],[59.06283,37.60441],[59.0695,37.60088],[59.07688,37.59569],[59.08519,37.59116],[59.09227,37.58575],[59.09966,37.58058],[59.10594,37.57613],[59.11539,37.57108],[59.12286,37.56724],[59.13161,37.56108],[59.13933,37.55633],[59.14574,37.55372],[59.15475,37.55075],[59.15858,37.54802],[59.16397,37.54294],[59.16836,37.54019],[59.17252,37.53813],[59.17697,37.53586],[59.18063,37.53475],[59.1828,37.53305],[59.18641,37.53147],[59.18794,37.52864],[59.18888,37.52608],[59.19302,37.5238],[59.19688,37.52155],[59.20016,37.51908],[59.20391,37.51544],[59.20561,37.51147],[59.21005,37.50775],[59.21263,37.50561],[59.21714,37.50422],[59.22288,37.50394],[59.22811,37.50413],[59.2318,37.50347],[59.2363,37.50211],[59.24128,37.49933],[59.24666,37.49813],[59.25411,37.49752],[59.26413,37.49702],[59.27627,37.4973],[59.28216,37.49861],[59.28516,37.50008],[59.29055,37.50255],[59.2948,37.50533],[59.30208,37.50977],[59.30989,37.5135],[59.31994,37.51666],[59.32838,37.51761],[59.33055,37.51769],[59.33464,37.51788],[59.3356,37.51791],[59.34214,37.51666],[59.34783,37.51544],[59.35049,37.51302],[59.35316,37.51036],[59.35527,37.50772],[59.35644,37.50444],[59.35733,37.50119],[59.36024,37.49805],[59.36516,37.49458],[59.36869,37.49185],[59.37127,37.48805],[59.37805,37.48288],[59.38122,37.47927],[59.38405,37.47499],[59.3858,37.47169],[59.38722,37.46794],[59.38691,37.4643],[59.38497,37.46141],[59.38427,37.44605],[59.38433,37.44308],[59.38722,37.43972],[59.39291,37.43527],[59.40311,37.42602],[59.40258,37.42308],[59.39988,37.42183],[59.38689,37.41769],[59.38353,37.41533],[59.3798,37.4123],[59.37702,37.40972],[59.3753,37.40636],[59.37413,37.40274],[59.3735,37.39841],[59.37486,37.39374],[59.37655,37.3863],[59.37891,37.38],[59.38083,37.37508],[59.38349,37.36552],[59.38639,37.3548],[59.38722,37.35094],[59.3895,37.34016],[59.39172,37.33202],[59.39244,37.32672],[59.39588,37.31963],[59.39838,37.31147],[59.402,37.30625],[59.40658,37.30255],[59.4118,37.29952],[59.41769,37.29761],[59.42189,37.296],[59.42672,37.29208],[59.42911,37.28944],[59.43033,37.28683],[59.43147,37.28311],[59.43375,37.27955],[59.43755,37.2768],[59.44352,37.27236],[59.44833,37.268],[59.45333,37.26244],[59.45888,37.25641],[59.46341,37.25202],[59.47275,37.24327],[59.47858,37.23722],[59.48424,37.22911],[59.48691,37.22669],[59.49066,37.22349],[59.49013,37.2203],[59.48797,37.21858],[59.48613,37.2173],[59.48308,37.21494],[59.48,37.21235],[59.47744,37.20927],[59.47605,37.20635],[59.47502,37.20433],[59.4788,37.20161],[59.48322,37.19933],[59.48644,37.19661],[59.49111,37.19386],[59.49766,37.18983],[59.50294,37.18772],[59.50825,37.18583],[59.5138,37.18347],[59.52041,37.18011],[59.52391,37.17741],[59.52711,37.17425],[59.53122,37.17197],[59.53627,37.1703],[59.53705,37.17008],[59.54272,37.16858],[59.54836,37.16736],[59.55199,37.16624],[59.55372,37.16272],[59.5543,37.15947],[59.55286,37.15588],[59.55169,37.15227],[59.55105,37.14772],[59.54925,37.14344],[59.54863,37.13933],[59.54911,37.13472],[59.54988,37.13033],[59.55075,37.12705],[59.55383,37.12252],[59.5581,37.12208],[59.56325,37.12202],[59.57663,37.12083],[59.58469,37.12086],[59.59291,37.11975],[59.59919,37.11916],[59.60594,37.11766],[59.61364,37.11355],[59.62466,37.10813],[59.6305,37.10944],[59.63708,37.10908],[59.64238,37.10741],[59.64788,37.10802],[59.65116,37.10922],[59.65313,37.11233],[59.6553,37.11774],[59.65783,37.12358],[59.66008,37.12644],[59.66216,37.12747],[59.66541,37.12866],[59.67038,37.12955],[59.6761,37.12947],[59.68188,37.12983],[59.68844,37.12925],[59.69955,37.12819],[59.70513,37.12649],[59.7113,37.12477],[59.71594,37.122],[59.72225,37.11844],[59.72625,37.11477],[59.72947,37.11205],[59.73341,37.10794],[59.73825,37.10422],[59.74355,37.10233],[59.74924,37.10177],[59.75474,37.10241],[59.75849,37.10266],[59.75955,37.10488],[59.76005,37.10738],[59.76027,37.10991],[59.7625,37.1123],[59.76661,37.11347],[59.77002,37.11327],[59.77372,37.11283],[59.77794,37.11191],[59.7908,37.10455],[59.79833,37.10183],[59.80983,37.09888],[59.81905,37.09586],[59.82574,37.09386],[59.83305,37.09208],[59.83994,37.08869],[59.84508,37.08497],[59.86119,37.06913],[59.87614,37.0561],[59.88094,37.05541],[59.88655,37.05416],[59.88958,37.05261],[59.89164,37.04997],[59.89511,37.04678],[59.89911,37.04355],[59.90569,37.03996],[59.91141,37.03666],[59.91663,37.03408],[59.92105,37.032],[59.92744,37.02977],[59.93336,37.02852],[59.93875,37.02777],[59.94422,37.02813],[59.94827,37.02861],[59.95322,37.02925],[59.95758,37.03014],[59.9623,37.03172],[59.96697,37.03258],[59.97222,37.03344],[59.97888,37.03422],[59.98458,37.03366],[59.99113,37.03327],[59.99536,37.03258],[60,37.03955],[60.00441,37.03966],[60.01358,37.03611],[60.02094,37.03327],[60.05066,37.01224],[60.08433,36.97852],[60.08891,36.97072],[60.09663,36.94861],[60.10258,36.93602],[60.12691,36.90588],[60.16122,36.86255],[60.17675,36.84241],[60.21416,36.81047],[60.24866,36.77677],[60.27052,36.7513],[60.29525,36.71389],[60.31563,36.6811],[60.33144,36.65613],[60.34002,36.64772],[60.35244,36.64188],[60.36739,36.62811],[60.37066,36.62424],[60.48319,36.62708],[60.56694,36.62772],[60.58541,36.62766],[60.63477,36.62755],[60.72102,36.63541],[60.83025,36.64261],[60.86408,36.64408],[60.95735,36.65127],[61.1203,36.66086],[61.14002,36.66202],[61.14025,36.66205],[61.14761,36.65594],[61.14994,36.65041],[61.14805,36.64872],[61.15252,36.64086],[61.18075,36.58819],[61.19097,36.56772],[61.19316,36.54852],[61.18933,36.52988],[61.17935,36.51422],[61.17235,36.49866],[61.17269,36.49308],[61.17544,36.48114],[61.17822,36.46838],[61.17549,36.44819],[61.164,36.39311],[61.16375,36.38105],[61.17025,36.34033],[61.18547,36.30319],[61.19952,36.26841],[61.206,36.25983],[61.20905,36.24227],[61.22286,36.19544],[61.22922,36.17239],[61.2328,36.14602],[61.22755,36.12444],[61.22647,36.12008],[61.19813,36.0651],[61.1795,36.03058],[61.17327,36.01908],[61.16833,36.00283],[61.15927,35.98961],[61.13447,35.97491],[61.12302,35.96802],[61.12308,35.96786],[61.1243,35.96324],[61.12855,35.95861],[61.13897,35.95686],[61.15952,35.95344],[61.1688,35.95197],[61.1795,35.95024],[61.21099,35.93627],[61.21302,35.93433],[61.21833,35.92933],[61.22272,35.92227],[61.22691,35.91841],[61.234,35.9155],[61.23377,35.9121],[61.2335,35.90744],[61.23197,35.90016],[61.2293,35.89522],[61.23141,35.89288],[61.23725,35.89474],[61.24213,35.89574],[61.24713,35.89433],[61.24822,35.89277],[61.24452,35.88861],[61.23988,35.8836],[61.23797,35.88272],[61.2435,35.8733],[61.24269,35.87005],[61.24191,35.8668],[61.24441,35.85808],[61.24952,35.85505],[61.25352,35.85441],[61.25483,35.84886],[61.25222,35.84311],[61.25636,35.84008],[61.2596,35.83538],[61.257,35.82966],[61.25816,35.8265],[61.25847,35.82169],[61.25977,35.81611],[61.25997,35.81291],[61.26422,35.80825],[61.26533,35.80588],[61.26347,35.80422],[61.25683,35.79991],[61.25508,35.79583],[61.25272,35.78611],[61.25025,35.77797],[61.24858,35.77308],[61.2468,35.7698],[61.25183,35.76839],[61.25491,35.7661],[61.25516,35.76208],[61.25244,35.75797],[61.25002,35.74902],[61.2508,35.73622],[61.2503,35.72816],[61.24591,35.71913],[61.24177,35.70611],[61.23383,35.70741],[61.22925,35.70161],[61.2198,35.69477],[61.21902,35.69155],[61.22266,35.68044],[61.22291,35.67647],[61.22333,35.66925],[61.22344,35.66761],[61.22288,35.66036],[61.22722,35.65411],[61.23188,35.6583],[61.24219,35.65069],[61.24124,35.64985],[61.25214,35.63261],[61.2605,35.62491],[61.27377,35.61661],[61.27663,35.61316],[61.30591,35.62272],[61.31661,35.62474],[61.3688,35.62441],[61.37144,35.61327],[61.37213,35.60125],[61.37444,35.59572],[61.38225,35.59683],[61.39413,35.59566],[61.40024,35.59191],[61.39961,35.58625],[61.39025,35.57786],[61.38483,35.56961],[61.38722,35.56247],[61.39433,35.55872],[61.40325,35.55747],[61.40924,35.5561],[61.4113,35.55458],[61.41249,35.55061],[61.42166,35.54533],[61.43264,35.54255],[61.43866,35.54039],[61.44494,35.53419],[61.45152,35.52238],[61.46672,35.51413],[61.48605,35.50283],[61.50905,35.4878],[61.51158,35.48613],[61.56661,35.45127],[61.58075,35.44458],[61.59986,35.43647],[61.61372,35.43458],[61.63941,35.43152],[61.66605,35.42927],[61.73627,35.4198],[61.75316,35.41641],[61.76699,35.4145],[61.77872,35.41572],[61.8165,35.4251],[61.87969,35.43699],[61.93605,35.44858],[61.96427,35.45358],[61.99,35.44963],[62.02063,35.44586],[62.05738,35.43747],[62.07711,35.41644],[62.12158,35.37055],[62.13089,35.36041],[62.14344,35.34477],[62.19936,35.32411],[62.24813,35.3088],[62.25613,35.30505],[62.2613,35.29961],[62.27419,35.27591],[62.27702,35.26927],[62.27883,35.26511],[62.283,35.25533],[62.29997,35.14424],[62.30208,35.14108],[62.3098,35.14294],[62.32489,35.15547],[62.43391,35.25361],[62.45925,35.27847],[62.46683,35.2843],[62.47558,35.28538],[62.48841,35.28336],[62.49649,35.27797],[62.50141,35.27733],[62.51216,35.27844],[62.52122,35.2731],[62.5343,35.26466],[62.5355,35.25988],[62.53886,35.25033],[62.55891,35.23969],[62.56991,35.23438],[62.58161,35.23555],[62.60491,35.24022],[62.60691,35.23949],[62.61027,35.22913],[62.61572,35.21647],[62.61975,35.21416],[62.62269,35.21424],[62.63036,35.21769],[62.65591,35.23849],[62.66361,35.24191],[62.687,35.24419],[62.7228,35.25486],[62.74783,35.26519],[62.75225,35.27655],[62.75561,35.29027],[62.76516,35.29616],[62.77761,35.30294],[62.80683,35.30775],[62.82627,35.3115],[62.83588,35.31577],[62.85408,35.32672],[62.86427,35.34144],[62.867,35.34713],[62.8728,35.34888],[62.88652,35.34925],[62.88747,35.35008],[62.88728,35.35488],[62.88894,35.36216],[62.89472,35.36472],[62.90158,35.36491],[62.92638,35.38244],[62.95636,35.39366],[62.98914,35.40894],[62.99786,35.41158],[63.00474,35.41097],[63.01669,35.40644],[63.01952,35.40975],[63.02024,35.41616],[63.01108,35.42477],[63.01097,35.42797],[63.01486,35.42889],[63.03469,35.42377],[63.0465,35.42247],[63.07391,35.42394],[63.09635,35.42772],[63.11069,35.46502],[63.11475,35.4876],[63.12002,35.50458],[63.11883,35.51016],[63.11275,35.51563],[63.11161,35.51963],[63.11833,35.5238],[63.12466,35.53841],[63.12722,35.54972],[63.12405,35.55524],[63.11002,35.56213],[63.10494,35.56683],[63.10272,35.574],[63.10436,35.58289],[63.10594,35.59336],[63.10263,35.60291],[63.09635,35.61238],[63.09516,35.61877],[63.10066,35.62936],[63.11975,35.64508],[63.16544,35.66064],[63.20047,35.67191],[63.24425,35.68661],[63.24797,35.6923],[63.24366,35.70264],[63.23444,35.71286],[63.22547,35.71586],[63.20969,35.71711],[63.19758,35.72483],[63.18422,35.74058],[63.17394,35.75236],[63.16486,35.75777],[63.14975,35.76702],[63.14055,35.77563],[63.13955,35.80291],[63.12819,35.81663],[63.12716,35.81786],[63.11202,35.82713],[63.10883,35.83347],[63.11422,35.84805],[63.1206,35.86186],[63.12922,35.8693],[63.14008,35.86875],[63.18158,35.86736],[63.20747,35.86669],[63.23097,35.86611],[63.26433,35.86536],[63.30011,35.86452],[63.3305,35.87002],[63.40599,35.88458],[63.4903,35.90166],[63.51486,35.90619],[63.52272,35.90716],[63.53258,35.90739],[63.54719,35.9133],[63.5593,35.93605],[63.57447,35.95641],[63.58008,35.95822],[63.58525,35.95986],[63.63158,35.96241],[63.67391,35.96727],[63.777,35.99013],[63.81527,35.99889],[63.82597,36.00472],[63.84533,36.01952],[63.86888,36.02558],[63.93475,36.03961],[63.96336,36.04172],[63.97622,36.04194],[63.99414,36.03741],[64.01611,36.02816],[64.03919,36.01491],[64.05222,36.00791],[64.06522,36.00172],[64.07111,36.00341],[64.07397,36.00827],[64.07366,36.0195],[64.06402,36.04986],[64.06155,36.06905],[64.06214,36.08514],[64.07252,36.10455],[64.08222,36.11275],[64.10158,36.12194],[64.10669,36.12439],[64.12925,36.13197],[64.13605,36.13769],[64.1478,36.14269],[64.16649,36.14702],[64.1683,36.15505],[64.17211,36.16155],[64.19677,36.16513],[64.22149,36.16633],[64.22652,36.16319],[64.23458,36.15769],[64.23858,36.15536],[64.24547,36.15705],[64.26122,36.1621],[64.26613,36.16299],[64.27119,36.15824],[64.28319,36.1528],[64.2891,36.15369],[64.29677,36.16585],[64.31783,36.19905],[64.32952,36.20724],[64.37372,36.22633],[64.4151,36.23733],[64.42991,36.23994],[64.4488,36.237],[64.45749,36.24836],[64.48261,36.28158],[64.51094,36.30361],[64.5383,36.32563],[64.56261,36.3508],[64.58108,36.37272],[64.60433,36.4035],[64.61489,36.42286],[64.62144,36.44461],[64.62294,36.47272],[64.6183,36.50877],[64.61227,36.56647],[64.60519,36.62655],[64.60702,36.6338],[64.61772,36.64919],[64.636,36.6855],[64.6728,36.74611],[64.70766,36.80588],[64.73783,36.85274],[64.78955,36.92872],[64.79544,36.936],[64.78805,36.95919],[64.77927,37.00722],[64.75885,37.09125],[64.75661,37.10647],[64.77047,37.11622],[64.87797,37.16624],[64.93475,37.19166],[64.95966,37.20311],[64.97264,37.20886],[64.98261,37.21294],[65.05469,37.22638],[65.10175,37.23561],[65.1368,37.24069],[65.14383,37.24155],[65.174,37.23694],[65.18505,37.23541],[65.19208,37.23627],[65.20905,37.2436],[65.22203,37.24933],[65.22805,37.25016],[65.24116,37.24383],[65.2498,37.23952],[65.26335,37.23275],[65.3848,37.2335],[65.50322,37.23408],[65.5243,37.23416],[65.54924,37.25836],[65.60719,37.30511],[65.62419,37.31961],[65.63819,37.33488],[65.64111,37.35174],[65.64369,37.43113],[65.69758,37.52836],[65.74191,37.5325],[65.758,37.54136],[65.76605,37.54458],[65.77713,37.54299],[65.7983,37.53822],[65.80841,37.53025],[65.81652,37.5118],[65.83572,37.49338],[65.87705,37.47261],[65.90747,37.46602],[65.93947,37.45905],[65.99383,37.4543],[66.03108,37.44869],[66.06833,37.43827],[66.0985,37.42944],[66.11961,37.415],[66.12666,37.40536],[66.12966,37.39413],[66.13266,37.38772],[66.14775,37.37727],[66.17185,37.36763],[66.18794,37.3636],[66.21308,37.366],[66.23016,37.36758],[66.23922,37.36516],[66.24622,37.35633],[66.25627,37.34908],[66.27433,37.33944],[66.28636,37.33139],[66.30041,37.32333],[66.31044,37.32011],[66.32952,37.31847],[66.34764,37.32325],[66.36978,37.32799],[66.38989,37.33194],[66.41799,37.33108],[66.4753,37.33411],[66.48435,37.33405],[66.49944,37.33963],[66.52597,37.34758],[66.54677,37.35388],[66.56894,37.36022],[66.59408,37.36091],[66.61516,37.3568],[66.62819,37.35113],[66.63517,37.34227],[66.63683,37.34152],[66.64616,37.33741],[66.66325,37.33572],[66.68336,37.33722],[66.69747,37.34197],[66.71461,37.34908],[66.72875,37.35544],[66.73577,37.35699],[66.76294,37.35844],[66.79308,37.35666],[66.81919,37.3525],[66.83125,37.35161],[66.85341,37.35869],[66.87558,37.36336],[66.91388,37.37272],[66.93711,37.38139],[66.94921,37.3853],[66.97135,37.38674],[66.98642,37.38422],[67.03655,37.37099],[67.06246,37.35555],[67.08342,37.34255],[67.09833,37.33038],[67.09919,37.31994],[67.10097,37.30308],[67.10778,37.28619],[67.12366,37.27322],[67.14866,37.26497],[67.1728,37.26716],[67.19278,37.25897],[67.20375,37.25486],[67.21058,37.24113],[67.21836,37.22422],[67.22428,37.21775],[67.24016,37.20716],[67.26396,37.18849],[67.27894,37.18433],[67.29905,37.18813],[67.31222,37.19603],[67.33049,37.20947],[67.35366,37.21405],[67.38686,37.21849],[67.39991,37.21916],[67.41911,37.22697],[67.4403,37.23313],[67.4606,37.24655],[67.48402,37.26311],[67.49622,37.2718],[67.5103,37.27244],[67.53919,37.26005],[67.55102,37.24949],[67.55869,37.23094],[67.55966,37.23036],[67.56663,37.22602],[67.57966,37.22505],[67.58977,37.22894],[67.596,37.23849],[67.61411,37.24147],[67.62828,37.24611],[67.63333,37.24844],[67.6403,37.24594],[67.65191,37.24089],[67.66122,37.23686],[67.69813,37.22674],[67.73217,37.22161],[67.73317,37.22144],[67.75213,37.21797],[67.76511,37.20961],[67.76997,37.2065],[67.78275,37.19508],[67.79052,37.18375],[67.79111,37.16447],[67.78958,37.14205],[67.78511,37.12044],[67.78372,37.10361],[67.78653,37.09394],[67.80327,37.08166],[67.82111,37.07261],[67.84302,37.06747],[67.88208,37.06689],[67.89408,37.06588],[67.89905,37.06422],[67.90091,37.05858],[67.89763,37.04658],[67.90399,37.01922],[67.92869,37.006],[67.95239,36.992],[67.96822,36.98452],[67.98105,36.97791],[67.98886,36.96974],[67.99055,36.95689],[67.99805,36.93752],[68.00585,36.92935],[68.00705,36.9293],[68.02383,36.92827],[68.04196,36.93441],[68.05608,36.93819],[68.07819,36.94263],[68.0843,36.94655],[68.10063,36.95911],[68.11094,36.97097],[68.12205,36.9748],[68.13716,36.97855],[68.1565,36.99105],[68.17702,37.00994],[68.19233,37.02011],[68.20344,37.02394],[68.22041,37.02202],[68.2343,37.01777],[68.24605,37.00791],[68.26191,37.00283],[68.27114,37.00988],[68.28138,37.01852],[68.28908,37.07694],[68.29558,37.0945],[68.30291,37.10558],[68.31308,37.11099],[68.32716,37.11236],[68.35702,37.10536],[68.37997,37.10172],[68.39511,37.10544],[68.41852,37.11702],[68.42177,37.125],[68.42199,37.13302],[68.42227,37.14183],[68.42541,37.14577],[68.43653,37.14877],[68.45255,37.14847],[68.47775,37.15197],[68.48391,37.15666],[68.49802,37.1588],[68.51522,37.16327],[68.53939,37.16677],[68.54769,37.17544],[68.56086,37.18491],[68.56722,37.18947],[68.60663,37.1983],[68.63905,37.20724],[68.65136,37.2158],[68.65261,37.223],[68.6511,37.23827],[68.65333,37.24463],[68.6573,37.24294],[68.66419,37.2388],[68.67514,37.23616],[68.67427,37.24019],[68.66883,37.25794],[68.67021,37.26916],[68.68049,37.27616],[68.69049,37.27433],[68.71186,37.27249],[68.71553,37.27219],[68.72955,37.27108],[68.74183,37.27722],[68.75811,37.2833],[68.77124,37.28541],[68.78224,37.28436],[68.78902,37.277],[68.79541,37.25838],[68.80603,37.24611],[68.81297,37.24355],[68.82421,37.24972],[68.82949,37.2568],[68.82599,37.27133],[68.80758,37.29022],[68.81016,37.30619],[68.82555,37.31547],[68.84369,37.31666],[68.86438,37.30497],[68.87488,37.28947],[68.88733,37.27314],[68.89624,37.26972],[68.90728,37.26866],[68.92152,37.27394],[68.92575,37.27947],[68.91897,37.28605],[68.90516,37.29358],[68.90058,37.30572],[68.89191,37.31555],[68.88616,37.32372],[68.89035,37.32844],[68.89746,37.33066],[68.90644,37.32805],[68.9173,37.323],[68.92116,37.31889],[68.93228,37.32025],[68.94438,37.32155],[68.95041,37.32141],[68.96041,37.31955],[68.97333,37.31605],[68.98427,37.31258],[68.9971,37.30666],[69.00794,37.30077],[69.01852,37.28847],[69.02422,37.27953],[69.02391,37.2715],[69.02972,37.26575],[69.0433,37.25338],[69.06192,37.24089],[69.08047,37.22758],[69.09014,37.21772],[69.1016,37.20377],[69.11405,37.18822],[69.12264,37.17677],[69.12647,37.17186],[69.1343,37.16686],[69.14122,37.16427],[69.15008,37.16002],[69.15483,37.1535],[69.16072,37.15013],[69.17266,37.14822],[69.18164,37.14638],[69.18741,37.14061],[69.19625,37.13558],[69.20896,37.12802],[69.22238,37.11244],[69.23114,37.10577],[69.23997,37.10152],[69.24883,37.0973],[69.25592,37.09872],[69.26605,37.10166],[69.2783,37.10694],[69.28555,37.11238],[69.28771,37.11633],[69.29872,37.11602],[69.31886,37.11791],[69.32939,37.12966],[69.35028,37.14916],[69.35864,37.15777],[69.37005,37.16627],[69.38522,37.16908],[69.39841,37.17272],[69.41433,37.19236],[69.4488,37.22349],[69.45517,37.23136],[69.45549,37.23936],[69.44752,37.24039],[69.44039,37.23819],[69.42905,37.23127],[69.42402,37.23141],[69.41713,37.2348],[69.41967,37.24677],[69.42108,37.25639],[69.41649,37.26614],[69.41175,37.27269],[69.40691,37.27683],[69.40819,37.28322],[69.41041,37.28797],[69.40763,37.29366],[69.4018,37.29863],[69.39597,37.3028],[69.39708,37.30519],[69.39919,37.30752],[69.40133,37.31069],[69.40041,37.31311],[69.39749,37.3148],[69.39344,37.31411],[69.38942,37.31422],[69.38461,37.31916],[69.38458,37.32133],[69.3843,37.33522],[69.38566,37.34402],[69.39138,37.35105],[69.39205,37.35186],[69.39116,37.35511],[69.38927,37.35755],[69.38627,37.35844],[69.38163,37.35858],[69.38124,37.35858],[69.38044,37.3626],[69.38021,37.36488],[69.37975,37.36986],[69.37894,37.37469],[69.37713,37.37955],[69.37872,37.39316],[69.36716,37.40549],[69.36936,37.40947],[69.3758,37.41891],[69.37394,37.42297],[69.37613,37.42694],[69.3775,37.43491],[69.3793,37.44308],[69.38122,37.45166],[69.38733,37.45311],[69.39653,37.45608],[69.4113,37.47172],[69.41744,37.47394],[69.42755,37.47527],[69.42972,37.47844],[69.43602,37.48466],[69.4473,37.48916],[69.4486,37.49688],[69.44866,37.49716],[69.45294,37.50266],[69.45922,37.50811],[69.46863,37.51586],[69.47699,37.52286],[69.48694,37.52472],[69.48819,37.52494],[69.48952,37.53213],[69.49485,37.53919],[69.50888,37.54822],[69.51044,37.54919],[69.51339,37.56024],[69.52424,37.58499],[69.5238,37.58486],[69.52417,37.58572],[69.52539,37.58638],[69.53244,37.5903],[69.54055,37.59088],[69.5493,37.58341],[69.56227,37.58063],[69.5743,37.57866],[69.5855,37.58077],[69.60678,37.58336],[69.62088,37.58294],[69.63989,37.57919],[69.663,37.57688],[69.67925,37.57963],[69.69716,37.57427],[69.71221,37.57302],[69.71839,37.57524],[69.73694,37.58352],[69.75344,37.59105],[69.76869,37.5938],[69.77864,37.5903],[69.78552,37.58686],[69.79413,37.57697],[69.80908,37.5733],[69.81819,37.57383],[69.83283,37.58461],[69.85783,37.60069],[69.86808,37.60358],[69.87525,37.60577],[69.88466,37.61269],[69.89492,37.61558],[69.90808,37.61677],[69.92697,37.61058],[69.93872,37.60377],[69.9453,37.59394],[69.94797,37.58663],[69.94921,37.57133],[69.95388,37.56397],[69.96194,37.56372],[69.97613,37.56486],[69.99524,37.56425],[69.99605,37.56022],[70.00475,37.55272],[70.01652,37.54591],[70.02119,37.54655],[70.0313,37.54772],[70.03472,37.54691],[70.04155,37.54269],[70.04344,37.54022],[70.0466,37.54252],[70.05378,37.54469],[70.05683,37.54541],[70.06183,37.54444],[70.06663,37.54027],[70.07444,37.53519],[70.07836,37.53266],[70.08633,37.5308],[70.09233,37.5298],[70.10214,37.52466],[70.14025,37.52097],[70.14341,37.52327],[70.14497,37.52444],[70.14655,37.52558],[70.14978,37.52949],[70.15697,37.53166],[70.16383,37.52822],[70.16789,37.52888],[70.1703,37.53602],[70.17614,37.55108],[70.1768,37.55327],[70.18103,37.56697],[70.191,37.56502],[70.20703,37.56647],[70.21028,37.56677],[70.21052,37.57158],[70.20666,37.57491],[70.20508,37.57775],[70.20505,37.57777],[70.20391,37.57983],[70.205,37.58141],[70.21997,37.57849],[70.22208,37.58002],[70.21944,37.58733],[70.21386,37.59635],[70.21499,37.59872],[70.22333,37.60324],[70.25005,37.61197],[70.25283,37.60786],[70.25978,37.60522],[70.26388,37.60669],[70.26819,37.61136],[70.2663,37.63047],[70.26558,37.63794],[70.26589,37.64352],[70.27016,37.64822],[70.27838,37.65033],[70.27952,37.65269],[70.27922,37.66555],[70.28138,37.66869],[70.28455,37.671],[70.28971,37.67322],[70.29108,37.67958],[70.29113,37.68038],[70.29841,37.68416],[70.30366,37.688],[70.30613,37.69591],[70.3003,37.70013],[70.29358,37.7068],[70.29091,37.7133],[70.2975,37.72272],[70.29753,37.72316],[70.2976,37.72511],[70.29513,37.73483],[70.29341,37.7405],[70.29183,37.74858],[70.29483,37.76614],[70.29196,37.76944],[70.28516,37.7745],[70.27944,37.78111],[70.2758,37.78847],[70.2761,37.79408],[70.28111,37.81155],[70.27733,37.8165],[70.26258,37.82422],[70.24166,37.83055],[70.21258,37.83555],[70.19674,37.84252],[70.18261,37.86225],[70.18064,37.86991],[70.17758,37.88169],[70.17466,37.92188],[70.17744,37.93624],[70.17991,37.94419],[70.18305,37.94649],[70.18808,37.94552],[70.20063,37.93386],[70.20413,37.92333],[70.21003,37.91991],[70.21208,37.92063],[70.2135,37.9278],[70.21577,37.93255],[70.23332,37.93838],[70.24866,37.94108],[70.26569,37.93727],[70.27169,37.93547],[70.27805,37.94086],[70.27441,37.94822],[70.26992,37.9588],[70.26638,37.96855],[70.2656,37.97258],[70.26569,37.97419],[70.27669,37.97141],[70.2816,37.96883],[70.2888,37.97019],[70.29086,37.97091],[70.29227,37.97808],[70.29252,37.98288],[70.29775,37.98513],[70.30483,37.98489],[70.30825,37.99197],[70.31658,37.99572],[70.32583,37.9978],[70.33041,38.00727],[70.33702,38.01666],[70.34433,38.02041],[70.34958,38.02344],[70.35197,38.02977],[70.36027,38.0335],[70.36483,38.04216],[70.36536,38.05177],[70.36758,38.05491],[70.3748,38.05708],[70.39688,38.07075],[70.41877,38.08038],[70.42163,38.08572],[70.42297,38.08816],[70.42558,38.09299],[70.43294,38.09755],[70.44838,38.10102],[70.4658,38.10361],[70.4753,38.10969],[70.48371,38.115],[70.4981,38.11769],[70.50138,38.12158],[70.50174,38.1233],[70.50277,38.12794],[70.49891,38.14894],[70.50369,38.16161],[70.51294,38.18055],[70.51999,38.19713],[70.52903,38.2043],[70.53067,38.20558],[70.53416,38.21347],[70.53844,38.23419],[70.55175,38.25297],[70.55844,38.26313],[70.56586,38.26769],[70.5878,38.2773],[70.59727,38.28258],[70.60166,38.28802],[70.6018,38.3073],[70.60866,38.31988],[70.60541,38.33174],[70.60446,38.33527],[70.60549,38.3408],[70.60597,38.34324],[70.6123,38.34702],[70.62258,38.34825],[70.65094,38.34558],[70.6573,38.34936],[70.66263,38.35319],[70.66791,38.35619],[70.67813,38.35974],[70.68455,38.362],[70.69,38.36741],[70.69052,38.37622],[70.68994,38.38344],[70.68205,38.38774],[70.67424,38.39014],[70.67302,38.39049],[70.6735,38.39849],[70.6781,38.40716],[70.68533,38.40941],[70.68955,38.41075],[70.7018,38.41108],[70.709,38.4108],[70.71605,38.41055],[70.72847,38.4133],[70.73997,38.41872],[70.74108,38.41925],[70.74972,38.42694],[70.75972,38.44019],[70.7653,38.448],[70.76953,38.45024],[70.77664,38.44997],[70.78255,38.44655],[70.79341,38.44049],[70.79369,38.44047],[70.80149,38.43938],[70.80864,38.43914],[70.81383,38.44052],[70.81816,38.44438],[70.81933,38.44675],[70.8265,38.44727],[70.84024,38.43872],[70.842,38.43383],[70.84291,38.43219],[70.84596,38.43208],[70.85136,38.43666],[70.85399,38.44619],[70.85541,38.45258],[70.86069,38.45558],[70.86722,38.46175],[70.87347,38.46391],[70.88255,38.46194],[70.89155,38.45919],[70.89638,38.455],[70.89685,38.44614],[70.89805,38.43897],[70.89833,38.43724],[70.90405,38.43061],[70.91208,38.42869],[70.926,38.42577],[70.92619,38.42575],[70.93397,38.43586],[70.93911,38.43647],[70.94105,38.43477],[70.95022,38.43441],[70.95658,38.43816],[70.95739,38.45097],[70.95372,38.45755],[70.94391,38.46355],[70.94441,38.47155],[70.96683,38.47066],[70.9763,38.47511],[70.98383,38.48122],[70.98908,38.48341],[70.99305,38.48166],[70.99966,38.47338],[71.00441,38.46758],[71.01133,38.46408],[71.0183,38.46138],[71.02114,38.45808],[71.02146,38.45672],[71.02153,38.45652],[71.02278,38.45158],[71.02616,38.44102],[71.03414,38.42224],[71.04064,38.41236],[71.04219,38.40508],[71.04483,38.39855],[71.05175,38.39505],[71.05813,38.39588],[71.06099,38.39627],[71.06463,38.40497],[71.07089,38.40711],[71.07325,38.41183],[71.07961,38.41558],[71.08889,38.41683],[71.09505,38.41736],[71.09794,38.41485],[71.09919,38.40274],[71.10308,38.40019],[71.11016,38.39911],[71.11633,38.39966],[71.11941,38.40033],[71.1213,38.39783],[71.12608,38.39283],[71.13019,38.39347],[71.13571,38.39966],[71.14341,38.39291],[71.14305,38.38733],[71.14894,38.38386],[71.15489,38.38122],[71.15997,38.381],[71.16291,38.37927],[71.16642,38.3703],[71.16872,38.35897],[71.17514,38.34827],[71.18174,38.33824],[71.1868,38.33977],[71.19125,38.34072],[71.193,38.34111],[71.19877,38.33605],[71.20144,38.33033],[71.20224,38.32708],[71.21616,38.32169],[71.22724,38.31963],[71.24013,38.31427],[71.24797,38.30994],[71.25708,38.30875],[71.26824,38.30827],[71.27644,38.30872],[71.2948,38.30875],[71.29963,38.30533],[71.30455,38.30272],[71.3188,38.30211],[71.32177,38.30119],[71.32744,38.29452],[71.32716,38.29066],[71.32705,38.28891],[71.32666,38.28333],[71.3273,38.27766],[71.32772,38.26883],[71.33274,38.2678],[71.34796,38.26716],[71.35394,38.2653],[71.35961,38.25864],[71.36491,38.24716],[71.36724,38.23663],[71.3645,38.22633],[71.36411,38.22072],[71.36694,38.21738],[71.37061,38.21161],[71.37136,38.20755],[71.3678,38.2005],[71.36347,38.19666],[71.36174,38.1863],[71.3618,38.17266],[71.3635,38.16775],[71.36616,38.16202],[71.36386,38.15811],[71.35935,38.15189],[71.35005,38.14988],[71.34177,38.14783],[71.34066,38.14541],[71.33702,38.13758],[71.33294,38.1225],[71.32744,38.11633],[71.32277,38.10769],[71.31852,38.09022],[71.31747,38.075],[71.3125,38.06158],[71.30149,38.04919],[71.29066,38.03922],[71.28538,38.03622],[71.28678,38.02955],[71.28808,38.02344],[71.28844,38.02166],[71.28497,38.01538],[71.27764,38.01169],[71.2743,38.0078],[71.274,38.00299],[71.27674,37.99885],[71.27424,37.99174],[71.27116,37.99108],[71.26597,37.98969],[71.26672,37.98563],[71.26905,37.97511],[71.26819,37.9623],[71.26686,37.95755],[71.2645,37.95283],[71.26108,37.94736],[71.26017,37.93375],[71.25811,37.93302],[71.25305,37.93325],[71.24783,37.93105],[71.24847,37.92541],[71.25336,37.92277],[71.25814,37.91858],[71.26602,37.91502],[71.27319,37.91633],[71.28341,37.91749],[71.28922,37.9285],[71.2913,37.92919],[71.29169,37.92916],[71.29333,37.92911],[71.31052,37.91322],[71.31019,37.91264],[71.3098,37.9121],[71.31324,37.909],[71.31697,37.90402],[71.32233,37.89336],[71.32683,37.88513],[71.33177,37.88333],[71.34014,37.88697],[71.35658,37.89027],[71.36616,37.89708],[71.37249,37.90083],[71.38475,37.90191],[71.40305,37.90272],[71.41574,37.91019],[71.42927,37.91522],[71.44388,37.921],[71.46128,37.92344],[71.47908,37.93149],[71.49292,37.94052],[71.50158,37.94819],[71.51303,37.95249],[71.52938,37.95416],[71.54433,37.9503],[71.55186,37.94191],[71.56644,37.93325],[71.57824,37.92789],[71.58372,37.91961],[71.58535,37.91391],[71.58538,37.90027],[71.58486,37.89308],[71.58816,37.88247],[71.58872,37.87602],[71.59027,37.86952],[71.58977,37.86233],[71.58508,37.85372],[71.58438,37.85138],[71.58244,37.845],[71.58158,37.833],[71.58386,37.82244],[71.58821,37.81261],[71.5908,37.80608],[71.59027,37.79886],[71.58908,37.7965],[71.5828,37.79358],[71.5671,37.78625],[71.55063,37.77986],[71.53507,37.76638],[71.52994,37.75741],[71.53527,37.74505],[71.54247,37.73972],[71.54472,37.73391],[71.54497,37.73102],[71.54675,37.70949],[71.54091,37.70333],[71.53971,37.69994],[71.53605,37.69127],[71.52794,37.67638],[71.52383,37.6613],[71.52427,37.65325],[71.52588,37.64755],[71.52236,37.64049],[71.51977,37.63258],[71.51833,37.62622],[71.51349,37.61519],[71.51216,37.61041],[71.50433,37.59952],[71.50436,37.59936],[71.5056,37.58902],[71.50489,37.5786],[71.50336,37.57147],[71.49944,37.55877],[71.50011,37.55394],[71.4978,37.55002],[71.4953,37.54291],[71.49394,37.53813],[71.49469,37.53411],[71.49485,37.53394],[71.49942,37.52986],[71.50011,37.52502],[71.50096,37.52013],[71.50155,37.51691],[71.50316,37.51547],[71.5063,37.51269],[71.50714,37.51025],[71.5078,37.50539],[71.51489,37.49144],[71.52047,37.48474],[71.52302,37.47822],[71.51921,37.46714],[71.51347,37.45697],[71.50922,37.45394],[71.5038,37.44855],[71.50169,37.44702],[71.49458,37.40316],[71.49222,37.39847],[71.48722,37.39869],[71.4823,37.4005],[71.47799,37.39669],[71.47444,37.3888],[71.47311,37.38405],[71.47783,37.37983],[71.48558,37.37547],[71.48835,37.37213],[71.48899,37.36647],[71.48566,37.34347],[71.48508,37.33933],[71.48664,37.33286],[71.49008,37.32466],[71.49733,37.31308],[71.499,37.30819],[71.49475,37.29072],[71.49019,37.26841],[71.48371,37.24783],[71.47647,37.23047],[71.47308,37.2265],[71.46661,37.21886],[71.459,37.21036],[71.45649,37.20325],[71.45716,37.18394],[71.45188,37.18016],[71.45114,37.17933],[71.44644,37.17397],[71.44574,37.16436],[71.44694,37.15224],[71.4455,37.14588],[71.44305,37.13958],[71.44244,37.13077],[71.44005,37.12525],[71.43922,37.11322],[71.44078,37.10675],[71.44144,37.10189],[71.4356,37.09008],[71.42983,37.07911],[71.4273,37.07119],[71.4258,37.06402],[71.42719,37.05511],[71.43103,37.05255],[71.43597,37.05152],[71.43663,37.04666],[71.43819,37.04016],[71.44674,37.03336],[71.44841,37.0315],[71.45124,37.0283],[71.45791,37.02083],[71.4593,37.01191],[71.46069,37.0078],[71.46263,37.00213],[71.46594,36.99233],[71.46633,36.9835],[71.46591,36.97708],[71.46275,36.9748],[71.45697,36.96383],[71.45913,36.95166],[71.46677,36.94649],[71.47716,36.93864],[71.47916,36.93711],[71.48336,36.92569],[71.48572,36.9213],[71.48874,36.91661],[71.49722,36.909],[71.50566,36.90058],[71.51158,36.88505],[71.5193,36.86702],[71.52541,36.85388],[71.53536,36.83897],[71.54111,36.82105],[71.54824,36.80866],[71.55033,36.79572],[71.55547,36.78344],[71.55899,36.77683],[71.55913,36.76477],[71.55941,36.764],[71.55997,36.76233],[71.56058,36.75669],[71.56533,36.75325],[71.57091,36.74739],[71.57836,36.7398],[71.58461,36.72905],[71.59522,36.72375],[71.60388,36.71936],[71.61638,36.71233],[71.61897,36.70661],[71.62344,36.69916],[71.62708,36.69416],[71.63591,36.69216],[71.64675,36.69005],[71.65149,36.68661],[71.65805,36.68069],[71.66683,36.67786],[71.69866,36.67638],[71.7125,36.67413],[71.72366,36.67683],[71.73461,36.6763],[71.74758,36.67649],[71.75677,36.67927],[71.78258,36.67727],[71.8078,36.68088],[71.83022,36.68705],[71.85205,36.69886],[71.86477,36.70872],[71.86472,36.70791],[71.87322,36.71472],[71.88569,36.72135],[71.89566,36.73455],[71.90139,36.7386],[71.90141,36.73863],[71.90305,36.7398],[71.94725,36.75616],[71.95842,36.77169],[71.96575,36.77616],[71.97119,36.7823],[71.97941,36.78513],[71.99091,36.7918],[72.00553,36.79991],[72.01049,36.81252],[72.01366,36.8148],[72.0298,36.81641],[72.03402,36.81941],[72.04477,36.82933],[72.04714,36.83402],[72.05069,36.83486],[72.06147,36.83874],[72.09525,36.84405],[72.09788,36.84416],[72.09896,36.84433],[72.10619,36.84719],[72.11558,36.86519],[72.13472,36.8795],[72.14839,36.8863],[72.1728,36.90572],[72.2061,36.92172],[72.23219,36.93486],[72.25833,36.9488],[72.2863,36.96022],[72.31872,36.97705],[72.37305,36.99191],[72.39966,36.99858],[72.42422,37.00452],[72.44705,37.00172],[72.47274,36.99713],[72.48786,36.99794],[72.50283,36.99716],[72.51694,36.99802],[72.52827,37.00144],[72.54677,37.00688],[72.55889,37.00783],[72.59169,37.01652],[72.60655,37.02616],[72.6218,37.02855],[72.63272,37.02716],[72.6503,37.02138],[72.65916,37.0193],[72.67033,37.02111],[72.67563,37.02622],[72.67974,37.03747],[72.68605,37.05241],[72.69733,37.06708],[72.70122,37.0773],[72.71205,37.09275],[72.71347,37.09452],[72.71733,37.09905],[72.7383,37.12352],[72.76947,37.18211],[72.78322,37.20144],[72.79447,37.2153],[72.80525,37.22352],[72.8178,37.22927],[72.83789,37.22897],[72.85927,37.23177],[72.88099,37.2386],[72.89808,37.24972],[72.92894,37.27622],[72.94969,37.28699],[72.99727,37.30119],[73.04122,37.30833],[73.0753,37.31763],[73.09046,37.32961],[73.10541,37.36091],[73.12239,37.37038],[73.13153,37.38191],[73.13678,37.39527],[73.1413,37.40066],[73.15605,37.40783],[73.18499,37.40453],[73.204,37.40263],[73.21747,37.40666],[73.23872,37.41827],[73.24285,37.43008],[73.26511,37.44163],[73.28105,37.45035],[73.29033,37.45222],[73.29972,37.45569],[73.30841,37.46241],[73.30913,37.46235],[73.3235,37.46149],[73.3343,37.45844],[73.34627,37.45694],[73.35939,37.45694],[73.36003,37.45288],[73.36119,37.44397],[73.36769,37.43797],[73.36853,37.43833],[73.39616,37.45072],[73.42994,37.46638],[73.45363,37.47139],[73.47689,37.47158],[73.50127,37.47069],[73.51008,37.47036],[73.53855,37.46219],[73.55477,37.45233],[73.56991,37.44175],[73.59191,37.43961],[73.63797,37.43594],[73.64878,37.43286],[73.66011,37.43536],[73.67138,37.43708],[73.70363,37.43666],[73.73283,37.43563],[73.75597,37.435],[73.76274,37.43213],[73.76775,37.42136],[73.7685,37.38833],[73.76847,37.35777],[73.7673,37.346],[73.76658,37.33858],[73.75205,37.32422],[73.73613,37.31636],[73.72072,37.3133],[73.70047,37.31216],[73.67694,37.3088],[73.66061,37.30661],[73.65544,37.30533],[73.65013,37.30244],[73.64533,37.28424],[73.63786,37.27988],[73.62474,37.27988],[73.61761,37.27872],[73.61296,37.27258],[73.61219,37.26458],[73.61741,37.25622],[73.62733,37.24433],[73.65158,37.23477],[73.65705,37.23927],[73.67283,37.24633],[73.68399,37.24722],[73.7108,37.24313],[73.72733,37.23727],[73.7393,37.22605],[73.746,37.22241],[73.75208,37.22283],[73.76055,37.22711],[73.76897,37.23061],[73.79188,37.22835],[73.81813,37.22908],[73.83255,37.23219],[73.84036,37.23975],[73.84722,37.24816],[73.85285,37.25422],[73.86344,37.25919],[73.89408,37.2733],[73.90194,37.27505],[73.91366,37.27769],[73.92308,37.28111],[73.92691,37.27925],[73.93761,37.27533],[73.94552,37.27399],[73.94994,37.27774],[73.95674,37.28536],[73.9635,37.29216],[73.97374,37.29391],[73.98349,37.29085],[73.99527,37.28766],[74,37.28736],[74.00716,37.28811],[74.02288,37.30463],[74.02966,37.30613],[74.04019,37.30049],[74.04582,37.30172],[74.05899,37.31277],[74.09983,37.32641],[74.1015,37.3268],[74.1433,37.33583],[74.14614,37.33988],[74.14566,37.35228],[74.16402,37.34266],[74.18483,37.33436],[74.19921,37.33441],[74.21191,37.34058],[74.22225,37.34802],[74.22922,37.36102],[74.2416,37.36763],[74.24502,37.37172],[74.24586,37.37544],[74.24322,37.37966],[74.22819,37.39083],[74.2263,37.39625],[74.23661,37.41447],[74.246,37.41241],[74.25883,37.40688],[74.26989,37.40538],[74.29116,37.39866],[74.30655,37.39672],[74.32372,37.3978],[74.33102,37.40002],[74.34469,37.41633],[74.356,37.41875],[74.36755,37.41819],[74.37702,37.415],[74.38236,37.40586],[74.38324,37.3983],[74.38942,37.39333],[74.40039,37.3893],[74.42461,37.38822],[74.45649,37.39994],[74.46739,37.40024],[74.48458,37.39374],[74.51738,37.39722],[74.52597,37.40177],[74.54405,37.39855],[74.55325,37.39485],[74.55733,37.39047],[74.5578,37.38085],[74.56222,37.37947],[74.57519,37.38116],[74.58828,37.38436],[74.60544,37.38555],[74.6255,37.38344],[74.64174,37.38527],[74.65814,37.39094],[74.68258,37.40414],[74.7068,37.3805],[74.78744,37.35349],[74.79502,37.35094],[74.80305,37.34719],[74.81219,37.34027],[74.82047,37.33722],[74.82969,37.32916],[74.84777,37.29464],[74.87127,37.26819],[74.87944,37.2511],[74.87855,37.23569],[74.89203,37.23294],[74.90583,37.23287],[74.91411,37.23639],[74.91722,37.2417],[74.91208,37.24701],[74.91559,37.25678],[74.91909,37.26108],[74.91374,37.26777],[74.91113,37.27501],[74.92605,37.28375],[74.93214,37.28239],[74.93998,37.2858],[74.94254,37.28915],[74.95127,37.2914],[74.9631,37.28758],[74.9697,37.29031],[74.97973,37.2854],[75.00718,37.29195],[75.02606,37.29796],[75.03275,37.30233],[75.04468,37.30588],[75.0518,37.30343],[75.06242,37.30616],[75.06362,37.31108],[75.07349,37.31162],[75.07739,37.3149],[75.08746,37.31517],[75.09685,37.31818],[75.11001,37.31463],[75.12318,37.31435],[75.12894,37.3241],[75.12166,37.33057],[75.12151,37.34024],[75.11503,37.34592],[75.10546,37.3576],[75.10411,37.36072],[75.09452,37.37011],[75.10218,37.37612],[75.11122,37.37777],[75.11487,37.3838],[75.12298,37.38574],[75.12896,37.39072],[75.13013,37.39898],[75.14297,37.40287],[75.15307,37.40895],[75.14627,37.4166],[75.14772,37.42099],[75.13961,37.43521],[75.13357,37.44289],[75.12884,37.44373],[75.12548,37.44838],[75.12466,37.46492],[75.10999,37.47293],[75.10399,37.4715],[75.09473,37.485],[75.08907,37.48515],[75.08272,37.49401],[75.08384,37.49749],[75.07878,37.50641],[75.07415,37.50738],[75.0632,37.51995],[75.06188,37.52549],[75.05718,37.52458],[75.04779,37.50806],[75.03312,37.50061],[75.0264,37.50829],[75.01926,37.50941],[75.0183,37.51707],[75.01103,37.52482],[75.00129,37.52452],[74.98869,37.53482],[74.98123,37.53478],[74.97378,37.53909],[74.96456,37.53891],[74.95489,37.54808],[74.95553,37.55345],[74.94415,37.55337],[74.93193,37.56857],[74.93483,37.57615],[74.9305,37.58617],[74.93903,37.60241],[74.92543,37.61285],[74.92695,37.62274],[74.92311,37.62946],[74.91085,37.63538],[74.90752,37.64346],[74.90191,37.64846],[74.90179,37.65617],[74.89606,37.6629],[74.90265,37.67786],[74.933,37.69202],[74.92216,37.70373],[74.93466,37.71708],[74.94744,37.71821],[74.95061,37.72477],[74.96106,37.72974],[74.96687,37.75164],[74.98487,37.7518],[74.98984,37.76174],[74.99644,37.76154],[75.00098,37.76895],[75.00964,37.76985],[75.01019,37.77735],[75.00594,37.77888],[74.98642,37.80778],[74.979,37.80584],[74.96609,37.8104],[74.95318,37.80737],[74.94576,37.81519],[74.94396,37.82404],[74.92522,37.82766],[74.92242,37.83887],[74.9131,37.85468],[74.91916,37.86225],[74.92867,37.8682],[74.93199,37.87821],[74.93777,37.88131],[74.93702,37.89634],[74.92967,37.90013],[74.91957,37.90012],[74.91221,37.9077],[74.92065,37.9169],[74.91664,37.92717],[74.92202,37.93623],[74.91778,37.94312],[74.91927,37.95131],[74.9132,37.95516],[74.91411,37.9621],[74.90748,37.9647],[74.90862,37.97045],[74.91522,37.97487],[74.91715,37.98547],[74.91289,37.99769],[74.9186,38.00693],[74.91537,38.01455],[74.91648,38.02438],[74.90648,38.03395],[74.89821,38.03271],[74.89268,38.03687],[74.88498,38.02322],[74.86903,38.02554],[74.86656,38.03076],[74.86669,38.03769],[74.85543,38.04359],[74.85175,38.05007],[74.8522,38.05709],[74.85652,38.06139],[74.85383,38.06909],[74.84495,38.07463],[74.83916,38.07259],[74.83406,38.07327],[74.82695,38.08245],[74.82052,38.08568],[74.81763,38.10026],[74.81954,38.10673],[74.8165,38.12021],[74.81827,38.12937],[74.80527,38.13813],[74.806,38.14742],[74.79786,38.15468],[74.8031,38.16589],[74.8056,38.17981],[74.80303,38.18767],[74.8034,38.198],[74.80098,38.20168],[74.7704,38.19619],[74.76077,38.2058],[74.7532,38.21488],[74.73393,38.21495],[74.71055,38.21287],[74.70659,38.22138],[74.69783,38.22827],[74.69541,38.2647],[74.70569,38.28254],[74.70362,38.29738],[74.69331,38.30845],[74.68831,38.3314],[74.66546,38.38021],[74.69529,38.42477],[74.665,38.43574],[74.65119,38.4467],[74.61747,38.44853],[74.50959,38.47187],[74.2849,38.59747],[74.25908,38.60175],[74.18643,38.64091],[74.12195,38.64171],[74.11515,38.6114],[74.09666,38.61247],[74.07679,38.60926],[74.07477,38.58672],[74.06315,38.57706],[74.07835,38.55131],[74.09075,38.54863],[74.08665,38.53763],[74.07844,38.53092],[74.0431,38.54387],[74.00675,38.53219],[74.00813,38.52404],[73.99441,38.52232],[73.97658,38.53609],[73.95668,38.53411],[73.92579,38.5418],[73.91928,38.55432],[73.90504,38.56487],[73.89766,38.58402],[73.88025,38.58565],[73.86147,38.57869],[73.83101,38.59802],[73.79849,38.61575],[73.80933,38.63779],[73.80239,38.64961],[73.80368,38.66358],[73.78197,38.68116],[73.77948,38.69017],[73.77175,38.69639],[73.77414,38.70134],[73.76657,38.70587],[73.77065,38.71708],[73.74311,38.73307],[73.75333,38.7496],[73.7557,38.77072],[73.76631,38.77042],[73.76707,38.77954],[73.75135,38.80043],[73.73777,38.8251],[73.72847,38.83377],[73.72908,38.84363],[73.71047,38.84654],[73.69872,38.85159],[73.70347,38.86393],[73.69998,38.87734],[73.71092,38.88808],[73.70812,38.89669],[73.71625,38.90588],[73.734,38.91293],[73.73859,38.92757],[73.75555,38.94007],[73.76867,38.93873],[73.77904,38.94165],[73.79354,38.92909],[73.80529,38.93415],[73.81986,38.91997],[73.83031,38.91648],[73.84709,38.94848],[73.85563,38.9527],[73.84439,38.9799],[73.84289,39.00044],[73.82766,39.02098],[73.81204,39.0423],[73.79207,39.0433],[73.78582,39.0315],[73.77471,39.02604],[73.76497,39.03231],[73.74973,39.02364],[73.73717,39.03661],[73.73834,39.05277],[73.72969,39.06697],[73.71555,39.07157],[73.71103,39.0783],[73.71914,39.09603],[73.71358,39.10223],[73.72038,39.11163],[73.70627,39.12243],[73.70588,39.13535],[73.67563,39.14348],[73.68588,39.16013],[73.67781,39.16722],[73.66011,39.16473],[73.65769,39.19275],[73.65147,39.20089],[73.64287,39.20416],[73.63856,39.21537],[73.63151,39.22871],[73.61293,39.24696],[73.58534,39.23735],[73.56187,39.24795],[73.56298,39.27126],[73.54831,39.27172],[73.53776,39.27749],[73.54908,39.29034],[73.56315,39.30638],[73.55284,39.31401],[73.55145,39.33989],[73.56789,39.34705],[73.53897,39.36456],[73.52242,39.37464],[73.50727,39.37437],[73.499,39.38047],[73.52711,39.39029],[73.5566,39.39374],[73.57098,39.39825],[73.57542,39.40475],[73.59085,39.41125],[73.59238,39.42093],[73.59665,39.42531],[73.58925,39.43605],[73.59696,39.44255],[73.5952,39.45343],[73.60169,39.46007],[73.61771,39.46441],[73.62686,39.47301],[73.64586,39.47597],[73.65524,39.46834],[73.66302,39.47216],[73.67034,39.46549],[73.67904,39.46306],[73.69322,39.46499],[73.73761,39.46056],[73.78247,39.46736],[73.79711,39.46673],[73.83852,39.47272],[73.87443,39.48294],[73.87692,39.49431],[73.87254,39.49932],[73.87476,39.51146],[73.89156,39.53362],[73.87848,39.54298],[73.91548,39.56595],[73.91395,39.58966],[73.94798,39.59898],[73.94695,39.61879],[73.94179,39.63225],[73.93698,39.66023],[73.92322,39.69398],[73.92594,39.70441],[73.91076,39.72213],[73.91896,39.7257],[73.90658,39.73277],[73.90245,39.74513],[73.87288,39.74607],[73.86222,39.75815],[73.84659,39.75944],[73.8392,39.7544],[73.84003,39.76769],[73.83262,39.78098],[73.84024,39.80371],[73.84923,39.83594],[73.86647,39.84971],[73.87959,39.85293],[73.88467,39.8637],[73.90487,39.86182],[73.91511,39.88327],[73.92123,39.90683],[73.90263,39.91459],[73.94208,39.96796],[73.95819,39.97501],[73.97581,40.00503],[73.93551,40.02405],[73.93606,40.03343],[73.95447,40.03439],[73.98303,40.04894],[73.99759,40.04545],[74.00453,40.06368],[74.01833,40.07245],[74.01184,40.07972],[74.04243,40.10065],[74.06928,40.07842],[74.10458,40.08775],[74.12233,40.11161],[74.14695,40.10502],[74.16169,40.11387],[74.21625,40.12692],[74.23062,40.12153],[74.25941,40.13398],[74.27792,40.10346],[74.30605,40.11389],[74.34289,40.09123],[74.41213,40.1366],[74.46254,40.16349],[74.46646,40.17747],[74.48489,40.18708],[74.49647,40.20351],[74.52588,40.20873],[74.56256,40.25328],[74.59237,40.2821],[74.62864,40.2821],[74.64404,40.27215],[74.66217,40.27372],[74.68598,40.29102],[74.67751,40.29508],[74.70005,40.32224],[74.69925,40.33684],[74.69193,40.34917],[74.7185,40.34827],[74.73684,40.34318],[74.74464,40.35215],[74.77188,40.34722],[74.79089,40.3538],[74.83164,40.33974],[74.85729,40.32359],[74.88136,40.33633],[74.91229,40.34592],[74.90097,40.35526],[74.88004,40.36459],[74.85602,40.39267],[74.84538,40.40178],[74.82513,40.41402],[74.79974,40.4312],[74.7874,40.45301],[74.80786,40.45531],[74.81809,40.4878],[74.81596,40.50671],[74.83904,40.52282],[74.88374,40.50679],[74.92158,40.49284],[74.9189,40.4857],[74.95153,40.46876],[74.98829,40.45182],[75,40.45765],[75,60],[50,60],[50,44],[51.39511,37.88291]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Kyrgyzstan, east of 75º E#UA8,9,0", "itu_zone_number": 31 }, "geometry": { "type": "Polygon", "coordinates": [[[87.81646,49.16982],[87.82075,49.17518],[87.86135,49.17607],[87.87837,49.17001],[87.90362,49.17651],[87.9238,49.17168],[87.933,49.17943],[87.96554,49.18717],[87.98984,49.18054],[88.00435,49.20611],[88.02022,49.22988],[88.05533,49.24203],[88.05022,49.2562],[88.082,49.26329],[88.08377,49.25745],[88.1075,49.25878],[88.12712,49.27713],[88.16577,49.289],[88.15961,49.31555],[88.16994,49.3242],[88.15554,49.33642],[88.16483,49.34612],[88.16312,49.35581],[88.15834,49.36358],[88.11785,49.37671],[88.11994,49.39342],[88.14724,49.40564],[88.18552,49.41786],[88.16322,49.4423],[88.19146,49.46273],[88.22519,49.4778],[88.25922,49.48265],[88.29875,49.47145],[88.31713,49.477],[88.34102,49.49682],[88.36215,49.48631],[88.38186,49.48369],[88.40705,49.49355],[88.42126,49.48379],[88.43547,49.46867],[88.49744,49.47205],[88.51755,49.48674],[88.55232,49.48249],[88.57336,49.49787],[88.59984,49.50407],[88.61033,49.49647],[88.62632,49.49779],[88.65766,49.48149],[88.67526,49.4652],[88.73681,49.45157],[88.74974,49.4617],[88.78524,49.45665],[88.8125,49.45696],[88.82603,49.44744],[88.84379,49.44178],[88.86227,49.45591],[88.84904,49.46882],[88.86989,49.46635],[88.88251,49.4728],[88.85142,49.48928],[88.85648,49.49485],[88.87549,49.50031],[88.87401,49.54761],[88.88626,49.5557],[88.90133,49.5575],[88.90991,49.54636],[88.92672,49.54592],[88.9353,49.53033],[88.93263,49.51574],[88.96568,49.49579],[88.95203,49.48209],[88.97134,49.46125],[89.00703,49.46974],[89.03448,49.48893],[89.0585,49.47846],[89.11308,49.4973],[89.14295,49.49831],[89.15736,49.5146],[89.19341,49.52096],[89.20731,49.53751],[89.23494,49.54515],[89.22599,49.56389],[89.19231,49.58797],[89.19675,49.60268],[89.18198,49.62094],[89.18812,49.63078],[89.2428,49.64536],[89.27329,49.62921],[89.30378,49.60772],[89.34554,49.59322],[89.33511,49.58137],[89.35873,49.58256],[89.38565,49.59829],[89.384,49.60972],[89.4079,49.62166],[89.41985,49.61518],[89.43544,49.62795],[89.43087,49.63612],[89.4588,49.66598],[89.47025,49.65851],[89.50132,49.66457],[89.51791,49.67555],[89.54273,49.68119],[89.5814,49.67826],[89.67247,49.69373],[89.70536,49.72159],[89.72593,49.75504],[89.71903,49.79028],[89.67495,49.78215],[89.62389,49.8067],[89.64991,49.8248],[89.63612,49.84114],[89.61401,49.86495],[89.61398,49.87776],[89.63318,49.88526],[89.63037,49.90203],[89.60002,49.91434],[89.64509,49.92482],[89.69015,49.9406],[89.74894,49.94932],[89.80621,49.95238],[89.86348,49.95898],[89.8823,49.95056],[89.91996,49.96413],[89.96415,49.97396],[89.97543,49.97268],[89.98243,49.97562],[89.99218,49.98296],[90,49.98485],[90,60],[75,60],[75,40.45768],[75.00363,40.45856],[75.01755,40.4657],[75.02668,40.45952],[75.02884,40.45591],[75.03678,40.45175],[75.04316,40.45359],[75.04532,40.44955],[75.05152,40.44462],[75.05634,40.44712],[75.06253,40.447],[75.06666,40.44401],[75.0756,40.4405],[75.08454,40.44222],[75.0897,40.43445],[75.1012,40.43684],[75.10661,40.44587],[75.11446,40.44804],[75.12079,40.45487],[75.12369,40.45752],[75.1279,40.45656],[75.14065,40.46209],[75.14359,40.45754],[75.14791,40.45613],[75.15894,40.45513],[75.17066,40.45674],[75.17693,40.45421],[75.18269,40.44829],[75.19278,40.44716],[75.20149,40.4476],[75.20695,40.44424],[75.21514,40.44873],[75.21907,40.44601],[75.223,40.44538],[75.23841,40.4483],[75.23809,40.45701],[75.23915,40.46102],[75.26046,40.47115],[75.25669,40.48035],[75.26158,40.48121],[75.26442,40.48312],[75.27068,40.48137],[75.27519,40.48154],[75.28038,40.47857],[75.30237,40.49121],[75.30246,40.49645],[75.29911,40.50064],[75.30753,40.51059],[75.31972,40.51844],[75.32985,40.52108],[75.32745,40.52636],[75.3278,40.53163],[75.33295,40.53199],[75.34154,40.53078],[75.34567,40.53567],[75.35185,40.53533],[75.36198,40.54282],[75.37142,40.54821],[75.37649,40.54843],[75.38087,40.545],[75.38786,40.55111],[75.39211,40.55252],[75.40014,40.55263],[75.40885,40.55326],[75.4171,40.55717],[75.42225,40.56121],[75.42946,40.56473],[75.43358,40.57099],[75.43874,40.5749],[75.44183,40.57881],[75.44595,40.5788],[75.45695,40.59027],[75.46109,40.60174],[75.46796,40.605],[75.47759,40.60617],[75.48378,40.61197],[75.48859,40.61881],[75.50679,40.62914],[75.52842,40.63738],[75.52842,40.64041],[75.53443,40.64495],[75.54778,40.65077],[75.55975,40.65503],[75.56791,40.65417],[75.57289,40.65739],[75.57924,40.65905],[75.5849,40.66252],[75.59331,40.66444],[75.59743,40.66116],[75.60155,40.66385],[75.60326,40.66103],[75.59622,40.65415],[75.59755,40.64996],[75.59476,40.64576],[75.60192,40.64626],[75.61115,40.64623],[75.61526,40.64033],[75.61114,40.63521],[75.61766,40.63186],[75.6192,40.62811],[75.62899,40.62383],[75.63242,40.61984],[75.62714,40.61468],[75.62048,40.60066],[75.62276,40.58116],[75.62389,40.57115],[75.62137,40.5651],[75.62434,40.56062],[75.62339,40.55317],[75.62313,40.54573],[75.6263,40.5435],[75.63634,40.53241],[75.64054,40.52783],[75.63856,40.52274],[75.64315,40.51299],[75.64705,40.50533],[75.6576,40.50358],[75.66772,40.49592],[75.67303,40.49921],[75.67834,40.49989],[75.68722,40.49897],[75.68575,40.49321],[75.69253,40.48484],[75.69852,40.48585],[75.70692,40.48007],[75.71395,40.47952],[75.7242,40.47364],[75.71883,40.46568],[75.7213,40.463],[75.70674,40.45304],[75.7101,40.44441],[75.70114,40.43434],[75.69117,40.43036],[75.69046,40.42506],[75.68149,40.42168],[75.67529,40.40431],[75.66944,40.39631],[75.67047,40.38621],[75.66977,40.37455],[75.66565,40.37178],[75.66116,40.3644],[75.66475,40.35757],[75.66354,40.35545],[75.67997,40.34541],[75.68167,40.3362],[75.68611,40.33432],[75.68506,40.3237],[75.6902,40.31622],[75.69498,40.31381],[75.70004,40.30316],[75.69141,40.29941],[75.68942,40.29415],[75.69224,40.28837],[75.6906,40.28495],[75.69527,40.28454],[75.69967,40.27962],[75.70609,40.28036],[75.70976,40.28581],[75.71756,40.28759],[75.72105,40.29013],[75.72248,40.29686],[75.72907,40.30202],[75.73496,40.30614],[75.7423,40.29409],[75.74529,40.29487],[75.74884,40.29893],[75.75513,40.30246],[75.76247,40.30063],[75.76981,40.30193],[75.77303,40.30036],[75.77831,40.30035],[75.78222,40.30559],[75.78794,40.30716],[75.78955,40.31082],[75.79728,40.31107],[75.80355,40.31276],[75.80494,40.31672],[75.80771,40.31806],[75.81119,40.32441],[75.81703,40.32412],[75.82561,40.32749],[75.82707,40.32295],[75.82986,40.3212],[75.82988,40.31771],[75.83197,40.31474],[75.84475,40.31151],[75.85081,40.31016],[75.8548,40.31194],[75.86492,40.31411],[75.87025,40.31053],[75.87729,40.3127],[75.88638,40.30597],[75.89402,40.30732],[75.90098,40.30291],[75.90943,40.3028],[75.90896,40.29483],[75.91213,40.29094],[75.91711,40.29477],[75.92209,40.2944],[75.92304,40.29867],[75.92879,40.30189],[75.92806,40.30572],[75.93145,40.31165],[75.929,40.31654],[75.92518,40.318],[75.9241,40.32155],[75.92508,40.32642],[75.92351,40.32963],[75.92582,40.3315],[75.92538,40.33494],[75.93274,40.33608],[75.94535,40.34251],[75.9463,40.35104],[75.95918,40.36078],[75.96038,40.36606],[75.95358,40.36986],[75.95433,40.37575],[75.96201,40.37446],[75.97416,40.38101],[75.98689,40.37879],[75.9907,40.38128],[75.99708,40.37736],[75.99719,40.36964],[75.99964,40.36762],[76.00224,40.36922],[76.00938,40.36375],[76.0126,40.35577],[76.01868,40.35388],[76.02132,40.35304],[76.03884,40.35516],[76.04675,40.35467],[76.04714,40.35809],[76.04253,40.36477],[76.04135,40.36936],[76.04566,40.37239],[76.05273,40.37227],[76.05876,40.37476],[76.05937,40.37784],[76.06826,40.38226],[76.07715,40.38354],[76.08575,40.37485],[76.10397,40.37716],[76.11224,40.37292],[76.11808,40.37524],[76.1253,40.37496],[76.13462,40.37171],[76.13825,40.36695],[76.14933,40.36614],[76.15973,40.36585],[76.16159,40.36783],[76.16835,40.36778],[76.17752,40.37923],[76.18566,40.37944],[76.18727,40.38226],[76.196,40.38895],[76.20795,40.39291],[76.21461,40.39516],[76.21485,40.39863],[76.22768,40.40377],[76.23226,40.41466],[76.25068,40.41841],[76.25302,40.4229],[76.26243,40.42437],[76.26679,40.43085],[76.27184,40.43889],[76.27976,40.43214],[76.2863,40.42853],[76.2834,40.42149],[76.27843,40.41237],[76.29166,40.40768],[76.29656,40.40508],[76.31244,40.40561],[76.31504,40.39442],[76.32252,40.3917],[76.32794,40.38688],[76.32271,40.37958],[76.32147,40.37149],[76.31508,40.36444],[76.32291,40.36263],[76.32615,40.35576],[76.32833,40.35025],[76.33189,40.34789],[76.33557,40.33844],[76.34362,40.34073],[76.33906,40.34946],[76.34296,40.35566],[76.35315,40.36399],[76.35585,40.3747],[76.36218,40.38182],[76.36578,40.38685],[76.37194,40.38691],[76.37879,40.38907],[76.38215,40.3854],[76.38005,40.37991],[76.38344,40.37494],[76.39332,40.37807],[76.40251,40.37807],[76.4075,40.38329],[76.40974,40.3859],[76.42486,40.3859],[76.43174,40.38824],[76.43931,40.38915],[76.44755,40.39379],[76.44447,40.39716],[76.44413,40.40052],[76.45375,40.40326],[76.45445,40.41175],[76.46373,40.41606],[76.46975,40.41324],[76.47859,40.42073],[76.48125,40.42716],[76.48667,40.42853],[76.49266,40.42652],[76.49796,40.42817],[76.50513,40.42729],[76.50389,40.43359],[76.50636,40.43831],[76.50471,40.44146],[76.50703,40.44518],[76.52438,40.45681],[76.53271,40.46184],[76.53761,40.4653],[76.53506,40.46733],[76.53547,40.47244],[76.53833,40.4743],[76.53581,40.48796],[76.5404,40.49021],[76.54018,40.49691],[76.54064,40.50412],[76.53151,40.50949],[76.53711,40.51617],[76.54202,40.52076],[76.54533,40.52266],[76.54864,40.53031],[76.55184,40.5315],[76.5493,40.53912],[76.5557,40.55094],[76.5676,40.55963],[76.57664,40.56854],[76.58567,40.57275],[76.58853,40.57644],[76.59276,40.57753],[76.59741,40.57972],[76.59698,40.58343],[76.5993,40.58714],[76.60516,40.59154],[76.60416,40.60242],[76.61278,40.6107],[76.62155,40.61225],[76.62825,40.61484],[76.63701,40.61248],[76.64521,40.61893],[76.65478,40.6212],[76.65148,40.63599],[76.64818,40.6492],[76.64906,40.65708],[76.65922,40.66184],[76.65426,40.67909],[76.665,40.68694],[76.67369,40.69374],[76.67087,40.69716],[76.66637,40.70746],[76.66187,40.70943],[76.65623,40.71523],[76.65316,40.71508],[76.6501,40.71701],[76.64603,40.72503],[76.64681,40.73639],[76.64394,40.73829],[76.64107,40.748],[76.63929,40.75104],[76.6437,40.75615],[76.64083,40.7617],[76.64463,40.76568],[76.64843,40.76602],[76.65397,40.76878],[76.66849,40.77378],[76.66821,40.78339],[76.6848,40.77765],[76.69298,40.78234],[76.70185,40.78755],[76.70508,40.79678],[76.709,40.80446],[76.70915,40.80771],[76.71334,40.80934],[76.71131,40.81301],[76.72783,40.81824],[76.72167,40.82034],[76.72065,40.82424],[76.71773,40.82957],[76.71825,40.84217],[76.73202,40.84532],[76.73141,40.84799],[76.72949,40.84813],[76.72497,40.85387],[76.7277,40.85787],[76.72837,40.86343],[76.73282,40.86665],[76.73933,40.87559],[76.73861,40.89189],[76.73269,40.89594],[76.72973,40.90005],[76.73088,40.90363],[76.73482,40.90809],[76.73499,40.91247],[76.73954,40.91907],[76.74409,40.91996],[76.74923,40.9287],[76.75469,40.93282],[76.75329,40.93848],[76.75117,40.94204],[76.75146,40.94741],[76.75381,40.95355],[76.76267,40.95341],[76.76953,40.95688],[76.77432,40.95723],[76.77671,40.96018],[76.78546,40.96139],[76.79146,40.96053],[76.79469,40.96253],[76.79586,40.96869],[76.80665,40.97199],[76.80826,40.97442],[76.818,40.97667],[76.82321,40.97598],[76.8368,40.97693],[76.84559,40.97373],[76.8536,40.97707],[76.84935,40.9805],[76.85129,40.98807],[76.84761,40.99648],[76.84976,40.99996],[76.85398,41.00137],[76.86069,41.01041],[76.86672,41.01531],[76.86611,41.02142],[76.86928,41.02468],[76.87314,41.02535],[76.8805,41.02825],[76.88718,41.02493],[76.89262,41.01735],[76.90355,41.0178],[76.90938,41.02042],[76.91315,41.02044],[76.91864,41.0241],[76.92757,41.02464],[76.92662,41.02582],[76.93254,41.02959],[76.93958,41.03092],[76.94541,41.03408],[76.9454,41.03815],[76.95294,41.03963],[76.95346,41.04464],[76.95946,41.04655],[76.96029,41.05305],[76.96319,41.05852],[76.97055,41.06036],[76.98114,41.06561],[76.98899,41.06931],[76.99301,41.07204],[77.00086,41.0708],[77.00427,41.06682],[77.01282,41.06491],[77.01332,41.05842],[77.03284,41.05838],[77.04035,41.06274],[77.04772,41.06214],[77.05509,41.06259],[77.06212,41.06018],[77.06983,41.05985],[77.07764,41.06209],[77.08477,41.06279],[77.08562,41.05945],[77.09129,41.05457],[77.0985,41.05359],[77.10674,41.04854],[77.10211,41.04394],[77.10022,41.03831],[77.10734,41.03484],[77.11035,41.03138],[77.1146,41.03042],[77.11816,41.02688],[77.12322,41.02756],[77.13009,41.026],[77.13902,41.02599],[77.14143,41.01976],[77.14796,41.02027],[77.15312,41.01714],[77.16378,41.01349],[77.16723,41.01086],[77.17206,41.01185],[77.17966,41.01151],[77.18452,41.00961],[77.18539,41.02326],[77.20471,41.02244],[77.21471,41.02643],[77.21834,41.02558],[77.22256,41.02878],[77.22952,41.03043],[77.23653,41.02731],[77.24312,41.02705],[77.24504,41.02304],[77.23873,41.01643],[77.24313,41.01383],[77.25748,41.01486],[77.26429,41.01277],[77.26079,41.00991],[77.26248,41.00408],[77.26959,41.00404],[77.27602,41.00142],[77.29069,41.00372],[77.29494,41.00668],[77.30358,41.00894],[77.30619,41.00851],[77.3123,41.01089],[77.31085,41.01741],[77.31788,41.01916],[77.32215,41.02194],[77.32368,41.02446],[77.33166,41.02832],[77.33894,41.02802],[77.34288,41.03119],[77.35093,41.0354],[77.35589,41.04064],[77.36215,41.03808],[77.37356,41.0407],[77.37615,41.03264],[77.37985,41.02758],[77.38355,41.03029],[77.39129,41.03129],[77.39766,41.03385],[77.40047,41.03788],[77.40875,41.03756],[77.41427,41.03413],[77.41104,41.02933],[77.41467,41.02609],[77.42125,41.02788],[77.42548,41.02526],[77.42844,41.02104],[77.44467,41.01884],[77.44691,41.02271],[77.46031,41.02061],[77.46996,41.02158],[77.47353,41.01694],[77.46997,41.0129],[77.46642,41.0117],[77.46412,41.00231],[77.46776,40.99856],[77.47854,40.99562],[77.48451,40.99785],[77.4922,40.99646],[77.5036,40.99888],[77.51157,40.99766],[77.52492,41.00262],[77.52798,41.00032],[77.535,41.00176],[77.54133,41.0001],[77.55194,41.00453],[77.55755,41.00192],[77.56522,40.99568],[77.57358,40.99617],[77.58399,40.99252],[77.58377,41.00176],[77.58813,41.00417],[77.59695,41.00166],[77.60646,41.0095],[77.6137,41.00928],[77.61751,41.0044],[77.62405,41.00196],[77.63403,41.00729],[77.64331,41.01106],[77.64711,41.01432],[77.65186,41.00795],[77.65936,41.00157],[77.66699,41.00361],[77.67461,41.00409],[77.68781,41.00349],[77.69334,41.00684],[77.69749,41.00604],[77.701,41.00652],[77.70114,41.01007],[77.70888,41.01442],[77.71457,41.0138],[77.71957,41.0194],[77.72889,41.02178],[77.73104,41.02966],[77.7413,41.02466],[77.74643,41.02397],[77.7495,41.02122],[77.7565,41.01738],[77.76487,41.01433],[77.76884,41.01663],[77.7687,41.01997],[77.7739,41.02251],[77.77876,41.02168],[77.78119,41.02463],[77.77898,41.02741],[77.77951,41.02914],[77.78682,41.03732],[77.78711,41.04067],[77.79151,41.04297],[77.7962,41.04862],[77.80294,41.04738],[77.80872,41.04287],[77.81583,41.04434],[77.82041,41.05025],[77.8195,41.05305],[77.82479,41.05857],[77.81805,41.06597],[77.81132,41.06922],[77.80733,41.07481],[77.80059,41.09023],[77.80227,41.10966],[77.80463,41.11719],[77.80317,41.12345],[77.81,41.12998],[77.81442,41.13728],[77.83154,41.15027],[77.84043,41.15551],[77.85339,41.15719],[77.87459,41.16455],[77.88253,41.16979],[77.88635,41.17554],[77.89463,41.17871],[77.91116,41.18549],[77.91777,41.18562],[77.92186,41.18758],[77.93075,41.18591],[77.9403,41.18724],[77.95775,41.19063],[77.96352,41.18885],[77.96687,41.18473],[77.97262,41.18086],[77.98091,41.18313],[77.98301,41.18539],[77.98938,41.18717],[77.99095,41.18895],[77.99836,41.19227],[78.00618,41.19316],[78.00871,41.18973],[78.0196,41.19189],[78.02592,41.19657],[78.02744,41.20176],[78.0293,41.20256],[78.03367,41.20011],[78.03872,41.20129],[78.0546,41.21047],[78.06391,41.21196],[78.072,41.21451],[78.08902,41.22429],[78.11143,41.22598],[78.11791,41.22695],[78.12439,41.22715],[78.12748,41.23599],[78.13057,41.23915],[78.12971,41.24422],[78.13365,41.24567],[78.13314,41.24996],[78.13125,41.25218],[78.13193,41.26172],[78.13055,41.26378],[78.13329,41.27048],[78.13208,41.27796],[78.13293,41.28492],[78.13875,41.28749],[78.13863,41.29513],[78.13782,41.30483],[78.13757,41.31289],[78.1466,41.32108],[78.14807,41.32387],[78.14886,41.32976],[78.1517,41.33256],[78.1518,41.33484],[78.15756,41.33841],[78.15646,41.3492],[78.15261,41.35419],[78.14863,41.36132],[78.14533,41.36639],[78.15514,41.37389],[78.1549,41.38124],[78.17269,41.38746],[78.18808,41.39393],[78.19522,41.39371],[78.2113,41.39607],[78.21738,41.39598],[78.2262,41.40104],[78.23905,41.40035],[78.2452,41.39376],[78.25721,41.39176],[78.26303,41.39284],[78.27809,41.38842],[78.28525,41.39198],[78.29054,41.39196],[78.29358,41.38886],[78.30006,41.38628],[78.30957,41.38936],[78.31392,41.38606],[78.31622,41.38275],[78.3208,41.38078],[78.33637,41.39529],[78.34244,41.39481],[78.34959,41.39149],[78.35523,41.39163],[78.36155,41.39357],[78.36712,41.39117],[78.37608,41.39255],[78.38229,41.39135],[78.38717,41.39539],[78.3927,41.40102],[78.3893,41.40819],[78.3938,41.41259],[78.40105,41.41442],[78.40661,41.40932],[78.42433,41.41617],[78.429,41.41375],[78.43676,41.41699],[78.44201,41.41655],[78.44567,41.41325],[78.45001,41.41303],[78.46373,41.42009],[78.47813,41.42562],[78.49391,41.43062],[78.50642,41.43267],[78.50778,41.43408],[78.50528,41.43535],[78.51226,41.43933],[78.51984,41.44007],[78.52742,41.43926],[78.5326,41.44206],[78.53072,41.44604],[78.53296,41.45156],[78.53948,41.45979],[78.54601,41.46596],[78.55254,41.47008],[78.5534,41.47368],[78.557,41.47625],[78.56549,41.47978],[78.57397,41.48176],[78.58005,41.4804],[78.58054,41.47505],[78.58412,41.46866],[78.59295,41.46958],[78.59903,41.46742],[78.60711,41.46932],[78.60971,41.47225],[78.61745,41.47441],[78.62039,41.47657],[78.62882,41.47449],[78.63244,41.47138],[78.64026,41.47098],[78.64464,41.46903],[78.64972,41.47326],[78.64755,41.47767],[78.655,41.48155],[78.65799,41.49033],[78.66325,41.4996],[78.67092,41.50346],[78.67653,41.50835],[78.68191,41.51003],[78.69141,41.51067],[78.69473,41.51594],[78.70354,41.5207],[78.7031,41.52321],[78.6951,41.52468],[78.68951,41.53053],[78.69632,41.53962],[78.69939,41.5398],[78.70195,41.54605],[78.71284,41.55252],[78.7176,41.55139],[78.72342,41.55442],[78.73113,41.5549],[78.73842,41.55104],[78.7411,41.55277],[78.74722,41.55347],[78.74846,41.55642],[78.75994,41.55707],[78.77393,41.55893],[78.77714,41.56089],[78.78596,41.56187],[78.78968,41.56416],[78.79635,41.55914],[78.80517,41.55996],[78.81606,41.55874],[78.81644,41.56134],[78.82281,41.56521],[78.82438,41.57165],[78.83678,41.57142],[78.84162,41.57788],[78.85166,41.57897],[78.85365,41.5822],[78.85221,41.59056],[78.85483,41.59496],[78.86201,41.59755],[78.87487,41.59217],[78.87636,41.59493],[78.88541,41.59564],[78.88691,41.59943],[78.88491,41.60415],[78.89044,41.60856],[78.89801,41.61205],[78.9066,41.61251],[78.91124,41.61968],[78.92145,41.623],[78.91937,41.62653],[78.91945,41.63195],[78.92879,41.63262],[78.92984,41.63348],[78.92917,41.63485],[78.93076,41.63618],[78.92919,41.63803],[78.9283,41.64182],[78.93256,41.64123],[78.9363,41.63993],[78.94183,41.64497],[78.95079,41.64539],[78.95338,41.64894],[78.95913,41.65148],[78.96352,41.65043],[78.96886,41.65424],[78.97599,41.6546],[78.99067,41.66369],[78.99794,41.66043],[78.99667,41.65667],[79.00432,41.65701],[79.00614,41.65838],[79.01735,41.65701],[79.02124,41.6594],[79.0194,41.66829],[79.02536,41.66684],[79.02936,41.67048],[79.0269,41.67537],[79.02925,41.67872],[79.04424,41.68016],[79.04796,41.68523],[79.05511,41.68466],[79.059,41.68907],[79.06805,41.68808],[79.07325,41.69016],[79.08258,41.68915],[79.08819,41.69484],[79.09305,41.69665],[79.09586,41.70001],[79.1033,41.70041],[79.11143,41.70236],[79.12425,41.72214],[79.13363,41.7234],[79.14141,41.7207],[79.14977,41.7232],[79.16184,41.72624],[79.16293,41.72877],[79.173,41.72926],[79.17598,41.72746],[79.18124,41.72835],[79.18559,41.72367],[79.20642,41.72468],[79.21695,41.7262],[79.21947,41.73129],[79.22718,41.73318],[79.23077,41.73814],[79.22834,41.7414],[79.2338,41.74337],[79.2489,41.74488],[79.25198,41.74922],[79.2482,41.75459],[79.24888,41.75714],[79.25668,41.76062],[79.25989,41.76006],[79.27203,41.76411],[79.27468,41.7699],[79.27046,41.77364],[79.27197,41.77549],[79.27548,41.77309],[79.28444,41.77855],[79.29478,41.79066],[79.30897,41.79564],[79.31218,41.80062],[79.31881,41.80433],[79.32271,41.81059],[79.33475,41.80668],[79.34,41.80072],[79.3473,41.79321],[79.35323,41.79365],[79.35688,41.80026],[79.36466,41.80422],[79.37175,41.81022],[79.38182,41.81302],[79.39149,41.82415],[79.3916,41.829],[79.39732,41.83002],[79.40946,41.84127],[79.42462,41.84191],[79.4391,41.84255],[79.45083,41.84677],[79.45635,41.84734],[79.4598,41.85096],[79.46462,41.85303],[79.47399,41.85057],[79.48749,41.84402],[79.48278,41.83925],[79.4849,41.83713],[79.49726,41.83629],[79.50757,41.838],[79.53711,41.83888],[79.54423,41.83774],[79.55548,41.84274],[79.5681,41.84263],[79.57316,41.84711],[79.59394,41.85302],[79.59892,41.85535],[79.60562,41.85589],[79.61438,41.86001],[79.61704,41.86603],[79.62176,41.87205],[79.61747,41.87541],[79.61946,41.87883],[79.62389,41.88079],[79.63126,41.8874],[79.63322,41.89121],[79.63725,41.8935],[79.6475,41.89344],[79.65775,41.89542],[79.66835,41.8946],[79.67963,41.89684],[79.68572,41.89724],[79.69318,41.89815],[79.69951,41.89587],[79.70447,41.89564],[79.71819,41.89975],[79.72092,41.90233],[79.72606,41.90004],[79.7312,41.90082],[79.74012,41.90288],[79.74664,41.90058],[79.75316,41.90186],[79.76689,41.89164],[79.77101,41.89267],[79.77715,41.9001],[79.78365,41.901],[79.7881,41.91162],[79.7963,41.91317],[79.79559,41.9165],[79.80314,41.92072],[79.80279,41.92513],[79.80776,41.93091],[79.80244,41.93669],[79.80481,41.94029],[79.81266,41.94542],[79.81365,41.94928],[79.81827,41.94967],[79.81611,41.95881],[79.81739,41.96539],[79.82136,41.96755],[79.82506,41.96582],[79.83137,41.96955],[79.83418,41.97728],[79.84177,41.9809],[79.84762,41.97862],[79.84995,41.98329],[79.85227,41.9854],[79.84532,42.00027],[79.84806,42.00295],[79.84805,42.00717],[79.84596,42.01357],[79.85004,42.01871],[79.85649,42.02266],[79.87461,42.02917],[79.87921,42.03064],[79.88037,42.03415],[79.88782,42.03514],[79.89595,42.03459],[79.90992,42.04221],[79.92274,42.04169],[79.93122,42.03964],[79.94987,42.0455],[79.96092,42.04384],[79.96921,42.04065],[79.97635,42.04537],[79.99021,42.04417],[79.99509,42.04076],[80.01778,42.04211],[80.02466,42.04891],[80.03841,42.04755],[80.0428,42.04921],[80.05158,42.04588],[80.06655,42.04408],[80.07362,42.04687],[80.08471,42.0424],[80.09649,42.03946],[80.10562,42.03856],[80.11818,42.03765],[80.12903,42.03496],[80.13919,42.03124],[80.14738,42.03376],[80.14869,42.03576],[80.15447,42.03521],[80.16158,42.03699],[80.16663,42.03519],[80.17467,42.03875],[80.18863,42.03714],[80.19915,42.03758],[80.20322,42.04079],[80.20934,42.04248],[80.21265,42.04839],[80.22043,42.05584],[80.22753,42.06329],[80.22391,42.06633],[80.21136,42.06988],[80.20481,42.07646],[80.18899,42.08229],[80.17179,42.09423],[80.16696,42.09916],[80.158,42.11275],[80.15214,42.11565],[80.14902,42.11905],[80.15115,42.12467],[80.15122,42.12978],[80.15163,42.13361],[80.14793,42.13949],[80.14395,42.14156],[80.13791,42.14821],[80.1396,42.15308],[80.1358,42.15693],[80.13093,42.1682],[80.14632,42.17012],[80.16412,42.16974],[80.16372,42.206],[80.16884,42.20951],[80.17464,42.21098],[80.1806,42.22212],[80.20074,42.22972],[80.21744,42.22817],[80.21973,42.22268],[80.22957,42.21719],[80.23381,42.21877],[80.24313,42.21803],[80.24972,42.21882],[80.25257,42.22141],[80.2616,42.22364],[80.272,42.22638],[80.27495,42.23034],[80.27893,42.232],[80.28421,42.23573],[80.28538,42.24453],[80.28084,42.2474],[80.29009,42.26024],[80.28442,42.2725],[80.27943,42.28171],[80.26772,42.28504],[80.2601,42.2927],[80.26002,42.30418],[80.26994,42.3084],[80.27044,42.31305],[80.27893,42.31487],[80.2842,42.31882],[80.27997,42.32486],[80.2758,42.32357],[80.26901,42.32766],[80.26428,42.32768],[80.25955,42.33177],[80.25277,42.33434],[80.2469,42.34105],[80.23729,42.34055],[80.23659,42.34766],[80.23246,42.34869],[80.22971,42.35327],[80.2297,42.35734],[80.22623,42.35841],[80.2289,42.36309],[80.22599,42.36635],[80.23804,42.37998],[80.23674,42.38339],[80.2399,42.38782],[80.2355,42.39224],[80.23014,42.39172],[80.22753,42.39778],[80.23144,42.4004],[80.23399,42.40402],[80.23096,42.4052],[80.22588,42.40892],[80.22327,42.40874],[80.21558,42.41311],[80.21462,42.42388],[80.20514,42.42818],[80.21036,42.4373],[80.2094,42.44338],[80.21269,42.44718],[80.21255,42.453],[80.2083,42.45756],[80.20891,42.46238],[80.20679,42.46871],[80.21617,42.47299],[80.21937,42.48132],[80.2291,42.48711],[80.23516,42.49077],[80.23608,42.49898],[80.23939,42.50146],[80.24271,42.50546],[80.24946,42.50161],[80.25896,42.5003],[80.26571,42.50328],[80.27355,42.51465],[80.27452,42.51943],[80.25963,42.51518],[80.25299,42.51852],[80.25044,42.52328],[80.23896,42.52729],[80.23435,42.52572],[80.22209,42.53213],[80.21098,42.54494],[80.20124,42.55573],[80.20031,42.56113],[80.19942,42.56295],[80.19441,42.56579],[80.1892,42.57096],[80.18565,42.57877],[80.18197,42.58123],[80.17898,42.59053],[80.17942,42.59375],[80.17775,42.60363],[80.17196,42.60921],[80.1676,42.61894],[80.16255,42.62514],[80.16206,42.63146],[80.16765,42.63985],[80.16819,42.64435],[80.16804,42.64885],[80.17461,42.65329],[80.17338,42.66057],[80.17517,42.66471],[80.17421,42.66785],[80.1782,42.67232],[80.18424,42.67628],[80.19289,42.6832],[80.20334,42.68543],[80.20528,42.68879],[80.2165,42.69013],[80.21947,42.69197],[80.22748,42.69339],[80.22931,42.69582],[80.22565,42.70252],[80.22243,42.71339],[80.23296,42.73563],[80.25378,42.78258],[80.26145,42.82446],[80.27554,42.83807],[80.32241,42.8338],[80.33358,42.82953],[80.40571,42.83258],[80.4284,42.85275],[80.50291,42.87592],[80.54704,42.88449],[80.60215,42.89507],[80.59896,42.89399],[80.59714,42.89744],[80.59763,42.90032],[80.59503,42.9037],[80.59448,42.90658],[80.59094,42.91357],[80.58076,42.91699],[80.57791,42.9188],[80.57083,42.9199],[80.56118,42.92855],[80.545,42.93368],[80.53935,42.93609],[80.52737,42.9384],[80.51229,42.9387],[80.4979,42.94202],[80.49451,42.94456],[80.48837,42.9441],[80.47472,42.9502],[80.47488,42.95185],[80.45048,42.96268],[80.43738,42.96776],[80.43454,42.9714],[80.41581,42.98269],[80.41406,42.98568],[80.40443,42.99007],[80.39274,42.99647],[80.38858,43.00373],[80.3802,43.02175],[80.393,43.02644],[80.39481,43.03616],[80.39834,43.04035],[80.39843,43.04504],[80.40582,43.05091],[80.4091,43.05729],[80.43214,43.0644],[80.43995,43.06731],[80.44296,43.06771],[80.44838,43.07263],[80.45791,43.07554],[80.46539,43.07211],[80.47355,43.0722],[80.47759,43.06903],[80.48369,43.06987],[80.48628,43.0718],[80.49448,43.07404],[80.49925,43.07878],[80.50627,43.08003],[80.50986,43.08528],[80.52058,43.08741],[80.52559,43.09073],[80.52649,43.09405],[80.5327,43.09462],[80.53824,43.10019],[80.53983,43.09838],[80.54829,43.09707],[80.55372,43.10068],[80.5564,43.10228],[80.55737,43.10689],[80.5604,43.1105],[80.56059,43.1158],[80.57259,43.11859],[80.57772,43.12739],[80.58661,43.13648],[80.59202,43.13863],[80.60208,43.13514],[80.60938,43.14217],[80.61793,43.14247],[80.62304,43.14026],[80.6297,43.14105],[80.63094,43.14576],[80.63698,43.14746],[80.64199,43.14516],[80.64771,43.14796],[80.65754,43.14977],[80.66498,43.14881],[80.6731,43.14385],[80.68367,43.14419],[80.69905,43.14303],[80.70412,43.1463],[80.71537,43.13403],[80.72277,43.13406],[80.73316,43.14071],[80.74218,43.14736],[80.75086,43.14625],[80.76481,43.14569],[80.77041,43.1404],[80.78151,43.13762],[80.7853,43.14102],[80.78841,43.14243],[80.78808,43.14708],[80.79307,43.15542],[80.79188,43.16076],[80.79672,43.16407],[80.79399,43.17048],[80.79676,43.17338],[80.80349,43.17493],[80.80747,43.17699],[80.79759,43.1846],[80.79327,43.19383],[80.787,43.20069],[80.78621,43.20305],[80.78817,43.2079],[80.78315,43.2161],[80.7826,43.22756],[80.78617,43.23602],[80.79015,43.23634],[80.78974,43.23838],[80.78568,43.24039],[80.78163,43.24791],[80.77812,43.24919],[80.77255,43.25547],[80.77171,43.25904],[80.76454,43.26667],[80.76575,43.27286],[80.76972,43.27706],[80.77342,43.2799],[80.77094,43.28975],[80.77429,43.29634],[80.77393,43.30087],[80.77837,43.30389],[80.77939,43.30841],[80.77834,43.31193],[80.76631,43.31607],[80.75722,43.31539],[80.75018,43.3192],[80.74605,43.31598],[80.73162,43.31699],[80.71789,43.3175],[80.70414,43.31903],[80.69793,43.31562],[80.68931,43.32247],[80.68344,43.32781],[80.68324,43.33251],[80.68579,43.33721],[80.69427,43.34255],[80.69589,43.3459],[80.70202,43.35032],[80.70677,43.35674],[80.7053,43.36358],[80.71692,43.3725],[80.72343,43.37497],[80.73062,43.38993],[80.73473,43.39291],[80.733,43.40288],[80.73695,43.41111],[80.73246,43.41713],[80.73484,43.42265],[80.73412,43.43418],[80.74523,43.44197],[80.75634,43.44727],[80.75665,43.4517],[80.75284,43.45763],[80.75277,43.4655],[80.72043,43.52243],[80.68741,43.57738],[80.60436,43.6998],[80.52268,43.82223],[80.52105,43.83969],[80.51941,43.85914],[80.51202,43.86634],[80.50685,43.87479],[80.51161,43.8823],[80.50808,43.90624],[80.49279,43.91503],[80.48471,43.92778],[80.4732,43.93757],[80.47628,43.94758],[80.48143,43.95611],[80.47044,43.96823],[80.45945,43.97517],[80.45257,43.98805],[80.44911,44.00889],[80.45593,44.02998],[80.44936,44.03502],[80.45475,44.04509],[80.44494,44.06722],[80.4411,44.06905],[80.44511,44.07467],[80.41582,44.0978],[80.39477,44.11157],[80.39603,44.11763],[80.40043,44.12854],[80.40141,44.13256],[80.4053,44.14369],[80.40335,44.15409],[80.4021,44.16301],[80.40187,44.16765],[80.40005,44.17003],[80.39837,44.18415],[80.39875,44.19335],[80.39779,44.19402],[80.39737,44.20161],[80.40214,44.21391],[80.40416,44.2262],[80.40483,44.23333],[80.4031,44.24169],[80.40617,44.24907],[80.40478,44.25276],[80.40587,44.2921],[80.39817,44.30397],[80.39253,44.3124],[80.39097,44.3229],[80.3901,44.33439],[80.3875,44.33876],[80.38628,44.35442],[80.38415,44.37485],[80.38068,44.382],[80.37861,44.39495],[80.37723,44.41182],[80.37103,44.41761],[80.37255,44.4219],[80.36858,44.43208],[80.36681,44.44067],[80.35817,44.4478],[80.35523,44.4565],[80.34954,44.45982],[80.35115,44.47259],[80.34727,44.48046],[80.34791,44.48294],[80.35475,44.4903],[80.36159,44.49472],[80.36738,44.50405],[80.37061,44.51141],[80.36949,44.51852],[80.36836,44.52416],[80.371,44.52789],[80.3709,44.5326],[80.37647,44.53609],[80.37822,44.54567],[80.38081,44.55094],[80.37997,44.55329],[80.38688,44.5576],[80.38554,44.56143],[80.39316,44.5681],[80.39173,44.57595],[80.39376,44.5833],[80.39167,44.59114],[80.399,44.59509],[80.40506,44.60146],[80.41182,44.60881],[80.40642,44.61328],[80.40446,44.61725],[80.39873,44.62172],[80.39642,44.62912],[80.39103,44.63175],[80.38289,44.63585],[80.38172,44.6416],[80.37765,44.64309],[80.37425,44.64823],[80.36741,44.65484],[80.35805,44.65931],[80.35075,44.66573],[80.34894,44.67191],[80.34576,44.67468],[80.34402,44.67547],[80.34397,44.68048],[80.33633,44.69001],[80.33408,44.68953],[80.31242,44.70372],[80.2882,44.709],[80.2746,44.7141],[80.26236,44.71822],[80.24875,44.72015],[80.24298,44.72136],[80.23789,44.72062],[80.22806,44.72638],[80.21891,44.73067],[80.21079,44.73765],[80.20473,44.74219],[80.20257,44.74225],[80.19149,44.75108],[80.19299,44.75579],[80.19723,44.75757],[80.19748,44.76114],[80.19352,44.76486],[80.18216,44.7796],[80.17613,44.78326],[80.17627,44.78984],[80.17313,44.79422],[80.16878,44.79435],[80.16375,44.79934],[80.16673,44.80349],[80.1648,44.80911],[80.16149,44.81277],[80.16316,44.8201],[80.16758,44.82596],[80.16684,44.83913],[80.16405,44.84159],[80.15789,44.84193],[80.15311,44.83934],[80.15315,44.83515],[80.14804,44.83144],[80.14706,44.82676],[80.12655,44.82349],[80.12457,44.81631],[80.11823,44.81317],[80.11325,44.80955],[80.10381,44.81103],[80.09644,44.8135],[80.08734,44.81182],[80.07825,44.81257],[80.07277,44.80927],[80.05974,44.80742],[80.05288,44.80156],[80.04122,44.80057],[80.03301,44.80395],[80.01939,44.79845],[80.01893,44.79355],[80.0068,44.79073],[80.00108,44.78992],[79.99604,44.79155],[79.99334,44.79416],[79.99269,44.79822],[79.99758,44.80343],[79.99912,44.81628],[79.99654,44.82036],[79.99602,44.82396],[79.98914,44.82385],[79.98226,44.83055],[79.9771,44.83166],[79.97177,44.83659],[79.96781,44.83812],[79.96642,44.84179],[79.95773,44.84405],[79.95832,44.84851],[79.95569,44.85062],[79.95198,44.84997],[79.95032,44.84834],[79.94511,44.84962],[79.94394,44.85174],[79.94689,44.85775],[79.94592,44.86589],[79.95213,44.86837],[79.95422,44.87329],[79.96184,44.8768],[79.96368,44.87896],[79.96415,44.8816],[79.9538,44.88193],[79.94208,44.88616],[79.93105,44.88673],[79.92894,44.89266],[79.91992,44.89539],[79.91365,44.90104],[79.90385,44.90115],[79.89352,44.89457],[79.88594,44.89383],[79.88807,44.90317],[79.88196,44.91106],[79.89142,44.91801],[79.90225,44.92399],[79.90538,44.92867],[79.91506,44.92731],[79.92447,44.93142],[79.92957,44.93293],[79.93467,44.9325],[79.93894,44.93776],[79.9432,44.93815],[79.94816,44.94389],[79.9448,44.94749],[79.94483,44.95196],[79.95309,44.95322],[79.95619,44.95718],[79.95654,44.96163],[79.96237,44.96312],[79.96959,44.96607],[79.9744,44.96202],[79.9846,44.96702],[79.9893,44.97882],[80.01382,44.98057],[80.01406,44.98521],[80.01831,44.98825],[80.01911,44.9913],[80.0276,44.99327],[80.03149,44.9963],[80.03412,44.99637],[80.03332,45.00031],[80.03905,45.00299],[80.0458,45.00178],[80.04972,45.00367],[80.05433,45.01235],[80.05619,45.01423],[80.06054,45.01283],[80.0649,45.01336],[80.07566,45.01007],[80.0751,45.00727],[80.08237,45.00756],[80.08497,45.00504],[80.09108,45.00718],[80.09719,45.00786],[80.09396,45.02712],[80.08798,45.02939],[80.0867,45.03307],[80.09092,45.03773],[80.08896,45.04626],[80.09689,45.04761],[80.10618,45.04531],[80.1134,45.0489],[80.11788,45.04132],[80.12286,45.03948],[80.12785,45.03957],[80.13023,45.04504],[80.13467,45.04711],[80.13944,45.0532],[80.13935,45.05761],[80.14893,45.05303],[80.15232,45.05329],[80.15674,45.04725],[80.16974,45.03757],[80.18113,45.0426],[80.18528,45.03505],[80.19149,45.02846],[80.19566,45.02717],[80.20259,45.03025],[80.21363,45.02289],[80.23189,45.03374],[80.2358,45.02972],[80.23972,45.02715],[80.25463,45.04109],[80.26002,45.0483],[80.2613,45.05405],[80.26667,45.05399],[80.27712,45.05931],[80.2855,45.06123],[80.29285,45.06655],[80.29207,45.06509],[80.31296,45.06824],[80.31722,45.07006],[80.32561,45.06945],[80.32982,45.0636],[80.32815,45.06019],[80.33041,45.0546],[80.33335,45.05338],[80.33859,45.04584],[80.34521,45.04023],[80.35955,45.03971],[80.37114,45.04308],[80.37454,45.041],[80.37898,45.04142],[80.38136,45.03989],[80.38785,45.04558],[80.39256,45.04445],[80.39869,45.04704],[80.40276,45.04721],[80.40782,45.05773],[80.41749,45.06108],[80.42717,45.06638],[80.43338,45.07254],[80.43821,45.0758],[80.44304,45.08312],[80.44236,45.09045],[80.43792,45.09535],[80.43759,45.09734],[80.44545,45.10024],[80.44918,45.1041],[80.45635,45.10626],[80.46215,45.11231],[80.47821,45.11398],[80.48418,45.12329],[80.48877,45.12679],[80.49728,45.11865],[80.49923,45.11395],[80.50599,45.11118],[80.50966,45.106],[80.51471,45.10517],[80.52802,45.10745],[80.54806,45.11101],[80.55774,45.11109],[80.56193,45.11263],[80.57528,45.10967],[80.58177,45.10573],[80.59993,45.1047],[80.60292,45.10736],[80.60729,45.10904],[80.6148,45.10782],[80.62024,45.11532],[80.62466,45.11822],[80.63305,45.11459],[80.63724,45.11616],[80.63659,45.11913],[80.64741,45.12132],[80.65549,45.12158],[80.66005,45.12461],[80.66666,45.12426],[80.67065,45.12711],[80.67739,45.12851],[80.6792,45.13227],[80.68798,45.13398],[80.6967,45.13241],[80.70518,45.14422],[80.71148,45.14625],[80.71572,45.14585],[80.72444,45.15082],[80.72605,45.15403],[80.72995,45.1537],[80.7319,45.15741],[80.73836,45.15757],[80.74346,45.16015],[80.75597,45.15319],[80.76299,45.15156],[80.76864,45.14606],[80.77497,45.14297],[80.78214,45.14625],[80.78726,45.15049],[80.79196,45.14894],[80.79461,45.15078],[80.80412,45.14681],[80.82467,45.14241],[80.83423,45.13969],[80.84509,45.13062],[80.85157,45.1266],[80.86012,45.125],[80.86624,45.12761],[80.87764,45.13127],[80.88972,45.12427],[80.89759,45.12509],[80.90007,45.12953],[80.90461,45.13301],[80.90709,45.13696],[80.91163,45.13899],[80.91468,45.14368],[80.92117,45.14499],[80.92797,45.15728],[80.94203,45.15842],[80.94648,45.16101],[80.95161,45.15997],[80.95743,45.16667],[80.96736,45.16757],[80.97383,45.16333],[80.98531,45.16072],[80.98855,45.16102],[80.99532,45.15883],[81.00575,45.16209],[81.01068,45.16196],[81.01658,45.16455],[81.02454,45.16328],[81.02938,45.16603],[81.03627,45.16684],[81.04557,45.17056],[81.05091,45.1763],[81.05694,45.17767],[81.06276,45.17256],[81.07064,45.1718],[81.07543,45.17927],[81.07491,45.18489],[81.07843,45.18673],[81.08332,45.19389],[81.0874,45.19627],[81.09353,45.19622],[81.1007,45.19956],[81.10924,45.2],[81.10777,45.20304],[81.10698,45.20947],[81.10336,45.21023],[81.09954,45.21708],[81.107,45.22206],[81.11135,45.21741],[81.12005,45.21508],[81.12955,45.21827],[81.13218,45.21807],[81.13859,45.20906],[81.14179,45.20988],[81.14912,45.20899],[81.15644,45.20521],[81.16376,45.2065],[81.17052,45.2144],[81.16628,45.22424],[81.17292,45.22605],[81.18058,45.22622],[81.18757,45.2322],[81.20496,45.2369],[81.21171,45.23326],[81.22264,45.23832],[81.22121,45.24484],[81.22831,45.24817],[81.2382,45.23995],[81.25036,45.24189],[81.25289,45.23814],[81.26102,45.23627],[81.26915,45.23681],[81.27522,45.24002],[81.28128,45.23935],[81.28838,45.2428],[81.29468,45.24742],[81.29892,45.24817],[81.30264,45.24673],[81.30704,45.24673],[81.3075,45.25399],[81.31791,45.25424],[81.33176,45.25641],[81.34252,45.25835],[81.3519,45.26077],[81.35676,45.25902],[81.36231,45.26065],[81.36887,45.25446],[81.37679,45.25262],[81.38075,45.25786],[81.38128,45.26358],[81.38902,45.26931],[81.38921,45.27068],[81.40099,45.27588],[81.40208,45.27896],[81.4087,45.28094],[81.4167,45.28099],[81.42102,45.28301],[81.42641,45.27955],[81.43426,45.28],[81.43799,45.27754],[81.4348,45.27408],[81.43767,45.26728],[81.45043,45.26218],[81.45613,45.26423],[81.45977,45.26337],[81.46567,45.26643],[81.46952,45.27095],[81.47269,45.27159],[81.47791,45.27514],[81.47987,45.27355],[81.49658,45.27582],[81.4982,45.28147],[81.50633,45.28169],[81.51516,45.28046],[81.52113,45.28186],[81.52315,45.28858],[81.52998,45.2953],[81.52785,45.30052],[81.53217,45.3059],[81.53993,45.30548],[81.54788,45.30101],[81.55309,45.30476],[81.56693,45.30597],[81.5746,45.30718],[81.57071,45.3154],[81.56842,45.31806],[81.56888,45.32555],[81.57826,45.32824],[81.58541,45.33193],[81.59119,45.33996],[81.6006,45.34205],[81.61276,45.34172],[81.61958,45.35153],[81.62434,45.35169],[81.6315,45.35595],[81.63934,45.35635],[81.65011,45.35012],[81.65523,45.35133],[81.66962,45.35134],[81.67815,45.35497],[81.67706,45.36245],[81.67941,45.36415],[81.68634,45.36345],[81.69464,45.36902],[81.70191,45.3653],[81.7027,45.36208],[81.71172,45.35789],[81.7219,45.36291],[81.72837,45.36326],[81.73414,45.36601],[81.73059,45.37224],[81.73184,45.37461],[81.73659,45.37371],[81.74789,45.37302],[81.75164,45.37474],[81.75913,45.37239],[81.76494,45.37484],[81.76869,45.37777],[81.78562,45.36782],[81.78997,45.36382],[81.79317,45.3594],[81.80233,45.35671],[81.80668,45.35547],[81.80914,45.35146],[81.81998,45.34029],[81.8206,45.33712],[81.8267,45.33394],[81.83122,45.32656],[81.83039,45.3178],[81.8365,45.31149],[81.84333,45.31002],[81.84398,45.3047],[81.85417,45.30156],[81.85543,45.29553],[81.86893,45.28792],[81.87969,45.2837],[81.88335,45.27863],[81.89926,45.25884],[81.90858,45.24483],[81.92203,45.22889],[81.93874,45.23546],[81.95361,45.23512],[81.97055,45.2343],[81.97547,45.23539],[81.97971,45.23866],[81.98526,45.2363],[81.99493,45.2325],[82.00597,45.23461],[82.00944,45.23301],[82.017,45.23777],[82.02628,45.24005],[82.04036,45.24668],[82.04174,45.25365],[82.04506,45.25414],[82.0531,45.25028],[82.06457,45.24641],[82.06746,45.2498],[82.07162,45.24932],[82.07372,45.24594],[82.07734,45.2469],[82.08165,45.24594],[82.08493,45.24714],[82.09095,45.24545],[82.08672,45.23785],[82.08112,45.23507],[82.08295,45.22909],[82.08204,45.22312],[82.08353,45.22004],[82.08839,45.21874],[82.09769,45.20769],[82.10081,45.20245],[82.11572,45.20198],[82.12445,45.21118],[82.14066,45.2165],[82.15549,45.22231],[82.17046,45.22122],[82.18475,45.22497],[82.19135,45.22329],[82.20076,45.2285],[82.21086,45.23274],[82.23313,45.23445],[82.24312,45.23119],[82.24983,45.23585],[82.25722,45.23422],[82.26758,45.24124],[82.27526,45.24126],[82.29014,45.23257],[82.29999,45.22267],[82.31384,45.22086],[82.32356,45.21131],[82.33286,45.20935],[82.3401,45.20884],[82.35352,45.2035],[82.36488,45.20154],[82.37382,45.2018],[82.38275,45.19965],[82.39101,45.19486],[82.39908,45.19283],[82.41677,45.19176],[82.42949,45.1877],[82.44925,45.18605],[82.45596,45.18731],[82.47384,45.17676],[82.56202,45.20412],[82.58223,45.22012],[82.58786,45.34449],[82.54268,45.42125],[82.43846,45.45952],[82.27888,45.53544],[82.27085,45.55042],[82.26591,45.57142],[82.25786,45.61594],[82.27042,45.62827],[82.27609,45.63187],[82.28314,45.64844],[82.28486,45.67532],[82.28169,45.68054],[82.28745,45.7083],[82.29904,45.71928],[82.30994,45.73792],[82.31389,45.75796],[82.31854,45.76314],[82.32849,45.77142],[82.33776,45.78065],[82.34189,45.79204],[82.34532,45.79625],[82.34292,45.80993],[82.34395,45.82457],[82.34705,45.83279],[82.34603,45.83815],[82.33882,45.84996],[82.33437,45.8656],[82.33026,45.88636],[82.33423,45.89109],[82.33557,45.89645],[82.33896,45.90182],[82.34099,45.9079],[82.34098,45.91694],[82.33548,45.93459],[82.3358,45.9393],[82.37593,45.96422],[82.39342,45.96665],[82.41023,45.96908],[82.42669,45.96722],[82.4562,45.97682],[82.47764,46.04964],[82.51213,46.15391],[82.55153,46.21433],[82.56759,46.24006],[82.57437,46.25012],[82.58116,46.25875],[82.60563,46.29401],[82.63697,46.34635],[82.71362,46.47395],[82.72197,46.48575],[82.72757,46.49803],[82.73466,46.50824],[82.73901,46.51846],[82.74496,46.5351],[82.76986,46.60049],[82.77416,46.63568],[82.77384,46.65937],[82.77798,46.66416],[82.78623,46.68025],[82.78831,46.69359],[82.82407,46.74598],[82.83474,46.75925],[82.84007,46.768],[82.8527,46.78695],[82.86141,46.79713],[82.86463,46.80308],[82.86672,46.81669],[82.87119,46.82467],[82.87567,46.8397],[82.89426,46.88383],[82.90191,46.8951],[82.90819,46.90897],[82.91927,46.92893],[82.91966,46.93842],[82.92131,46.94046],[82.92124,46.95192],[82.92529,46.96104],[82.92859,46.96709],[82.93174,46.9717],[82.93009,46.97819],[82.93201,46.9798],[82.92989,46.99302],[82.93672,47.00431],[82.93567,47.00691],[82.93858,47.01079],[82.93806,47.01607],[82.94216,47.01846],[82.95107,47.02038],[82.95758,47.02497],[82.96272,47.0319],[82.96718,47.03602],[82.96906,47.04229],[82.96888,47.04856],[82.97453,47.05166],[82.97743,47.05475],[82.98033,47.05527],[82.99216,47.06328],[82.99332,47.07],[82.99802,47.07781],[82.99969,47.08943],[83.00258,47.10014],[83.00547,47.10338],[83.0064,47.10616],[83.00938,47.10894],[83.00825,47.11242],[83.01003,47.11462],[83.00927,47.11643],[83.00683,47.11791],[83.00267,47.12057],[83.00912,47.12728],[83.01904,47.13052],[83.01971,47.13307],[83.01832,47.13493],[83.01973,47.13631],[83.01845,47.14212],[83.01141,47.14276],[83.0121,47.1469],[83.02103,47.15312],[83.02446,47.15621],[83.02313,47.15994],[83.02867,47.16216],[83.02601,47.16483],[83.02713,47.16751],[83.02618,47.16972],[83.02687,47.17119],[83.02894,47.17219],[83.02971,47.17508],[83.02705,47.17937],[83.02709,47.18198],[83.02405,47.18693],[83.02587,47.18958],[83.0285,47.19172],[83.02638,47.19885],[83.02529,47.19969],[83.02523,47.20187],[83.02814,47.20448],[83.02659,47.21128],[83.02382,47.21416],[83.02373,47.21496],[83.02741,47.21622],[83.02848,47.21983],[83.03039,47.22116],[83.03195,47.22367],[83.03412,47.22249],[83.03726,47.21876],[83.04143,47.21503],[83.04252,47.21494],[83.04806,47.22254],[83.05086,47.2235],[83.05194,47.2254],[83.05743,47.22507],[83.06361,47.22801],[83.07252,47.22783],[83.08384,47.22881],[83.08847,47.2251],[83.09379,47.22373],[83.10992,47.22949],[83.11712,47.22966],[83.13462,47.23379],[83.14337,47.23422],[83.15074,47.23465],[83.15854,47.22835],[83.17321,47.22018],[83.1841,47.21994],[83.19362,47.21876],[83.20142,47.21549],[83.20785,47.21175],[83.20883,47.20603],[83.20638,47.19845],[83.21425,47.19209],[83.22075,47.1876],[83.22553,47.18871],[83.23581,47.18935],[83.23767,47.18742],[83.23541,47.18082],[83.24414,47.17703],[83.26533,47.1756],[83.28308,47.17557],[83.28847,47.18232],[83.2958,47.18173],[83.30381,47.17788],[83.30731,47.17747],[83.31835,47.17145],[83.33489,47.17034],[83.33973,47.17212],[83.35278,47.1735],[83.35485,47.17721],[83.36379,47.17763],[83.36574,47.17517],[83.36091,47.17257],[83.36363,47.16764],[83.36429,47.1634],[83.37458,47.15802],[83.38006,47.15509],[83.38246,47.15176],[83.38624,47.15077],[83.38876,47.14639],[83.38785,47.14201],[83.40754,47.12875],[83.40845,47.12353],[83.41303,47.12161],[83.41315,47.11596],[83.4292,47.11452],[83.42755,47.1203],[83.43002,47.1242],[83.44155,47.12487],[83.45034,47.13161],[83.45775,47.13157],[83.46201,47.12724],[83.47107,47.12805],[83.46634,47.12542],[83.46259,47.12176],[83.46519,47.11877],[83.48082,47.11764],[83.48433,47.11291],[83.48127,47.11031],[83.48446,47.10908],[83.49451,47.11018],[83.49816,47.10687],[83.50593,47.10965],[83.50958,47.10774],[83.51101,47.10084],[83.51481,47.09786],[83.51587,47.09487],[83.5276,47.09148],[83.52559,47.08574],[83.53536,47.0827],[83.5447,47.08445],[83.54993,47.08012],[83.56602,47.07823],[83.56446,47.06946],[83.55877,47.06068],[83.5631,47.05644],[83.5688,47.05501],[83.57334,47.0601],[83.58063,47.0605],[83.60247,47.05439],[83.60721,47.05133],[83.60614,47.0463],[83.61351,47.04869],[83.62234,47.04872],[83.62705,47.04641],[83.63905,47.04354],[83.64333,47.04421],[83.65611,47.04197],[83.66045,47.03921],[83.67233,47.03833],[83.68055,47.03499],[83.69563,47.0354],[83.70074,47.03013],[83.70141,47.02094],[83.69617,47.01759],[83.70672,47.01751],[83.71144,47.02306],[83.7186,47.02512],[83.73248,47.02756],[83.74018,47.03328],[83.74731,47.03327],[83.75431,47.02578],[83.75884,47.02437],[83.76419,47.02718],[83.78369,47.0239],[83.79447,47.01688],[83.7978,47.01876],[83.8055,47.01536],[83.81251,47.01665],[83.81714,47.01334],[83.82795,47.01097],[83.83738,47.00369],[83.83459,46.99917],[83.83524,46.99419],[83.83882,46.99767],[83.85201,46.99506],[83.85987,46.99734],[83.87118,46.99424],[83.87032,46.98777],[83.88593,46.98505],[83.88994,46.98851],[83.89438,46.98492],[83.90568,46.98087],[83.90256,46.97564],[83.91645,46.9742],[83.92134,46.97699],[83.92187,46.9805],[83.92557,46.98436],[83.92927,46.98588],[83.93309,46.98447],[83.9395,46.98699],[83.94728,46.99092],[83.95575,46.99121],[83.95873,46.98635],[83.95896,46.9822],[83.97001,46.98549],[83.97625,46.99019],[83.98248,46.99232],[83.98597,46.99538],[84.00824,46.98906],[84.01089,46.98209],[84.01496,46.98142],[84.01765,46.98356],[84.03129,46.97776],[84.04188,46.97393],[84.04512,46.97037],[84.05385,46.96822],[84.05743,46.96928],[84.06032,46.97268],[84.07203,46.97071],[84.07825,46.96922],[84.10437,46.96913],[84.11504,46.96675],[84.12037,46.96883],[84.12501,46.96764],[84.13058,46.97051],[84.1416,46.97359],[84.15071,46.97881],[84.15569,46.98075],[84.15828,46.98081],[84.15888,46.98834],[84.1647,46.98999],[84.1664,46.99445],[84.17702,46.99352],[84.17734,46.99681],[84.1871,46.99807],[84.18793,47.00028],[84.19322,46.9985],[84.20195,47.00187],[84.21222,47.00103],[84.22524,46.99738],[84.23205,47.00132],[84.2479,46.99837],[84.25757,47.00151],[84.27995,47.00044],[84.28289,46.99709],[84.28721,47.00171],[84.30003,46.99487],[84.30644,46.99801],[84.31062,46.99634],[84.31342,46.99935],[84.32,46.99674],[84.33002,47.00303],[84.33811,47.00047],[84.35033,46.99884],[84.35554,47.00075],[84.38218,46.99585],[84.39234,47.00265],[84.39803,47.00056],[84.40054,47.00397],[84.41586,47.00497],[84.43657,47.00828],[84.44762,47.00759],[84.45866,47.00831],[84.45807,47.0043],[84.46161,46.99796],[84.45999,46.99677],[84.46044,46.99277],[84.4778,46.99062],[84.48487,46.99221],[84.4918,46.98534],[84.5011,46.97932],[84.50971,46.97472],[84.51492,46.98048],[84.54279,46.98391],[84.55106,46.98879],[84.55452,46.99366],[84.56466,46.99493],[84.57145,46.99814],[84.58099,46.99901],[84.59533,46.99964],[84.60422,46.99738],[84.61379,46.99793],[84.61607,46.99655],[84.62384,46.99752],[84.62944,46.99776],[84.63092,46.9952],[84.64008,46.99637],[84.64511,46.99896],[84.65478,46.99931],[84.66135,47.00178],[84.67104,46.99746],[84.67179,47.00158],[84.6788,47.00325],[84.69419,47.00473],[84.71054,47.00908],[84.71373,47.00654],[84.72481,47.00541],[84.75237,47.00522],[84.75427,46.99991],[84.76121,46.9989],[84.77583,46.99117],[84.77665,46.98493],[84.78118,46.98251],[84.7809,46.97634],[84.78263,46.97326],[84.78574,46.97346],[84.79777,46.9664],[84.80482,46.96334],[84.81461,46.95793],[84.82292,46.96038],[84.84664,46.95434],[84.84746,46.95153],[84.85034,46.95107],[84.85061,46.9478],[84.85732,46.94642],[84.86065,46.9443],[84.85957,46.93949],[84.8578,46.92765],[84.86281,46.92634],[84.87116,46.92006],[84.8729,46.91696],[84.87808,46.91105],[84.88774,46.90815],[84.88932,46.90684],[84.89502,46.90413],[84.89613,46.90058],[84.90526,46.89833],[84.90583,46.89613],[84.91464,46.8897],[84.91486,46.87976],[84.91921,46.87927],[84.92287,46.87549],[84.93019,46.87497],[84.93342,46.87069],[84.94353,46.86219],[84.9526,46.86354],[84.96503,46.86703],[84.96369,46.87042],[84.96612,46.87282],[84.97316,46.87214],[84.97884,46.87287],[84.97697,46.87751],[84.97716,46.88168],[84.97391,46.88515],[84.9741,46.88862],[84.9783,46.89076],[84.97814,46.89552],[84.98074,46.89652],[84.97974,46.90416],[84.98012,46.91063],[84.98394,46.91522],[84.99396,46.92116],[85.00172,46.92179],[85.00216,46.92562],[85.00604,46.9257],[85.01916,46.92368],[85.03364,46.92165],[85.04854,46.92768],[85.06045,46.92741],[85.06298,46.9254],[85.06664,46.9251],[85.06825,46.92855],[85.07353,46.93142],[85.07779,46.93077],[85.07777,46.93777],[85.08256,46.94008],[85.08323,46.94499],[85.08597,46.94895],[85.07841,46.95386],[85.07909,46.9583],[85.08847,46.95802],[85.09441,46.95869],[85.09669,46.9647],[85.10881,46.96735],[85.11143,46.97136],[85.1168,46.97117],[85.11999,46.9703],[85.12862,46.97481],[85.1273,46.97908],[85.12941,46.98101],[85.13397,46.98135],[85.14608,46.98919],[85.15339,46.98591],[85.15945,46.98684],[85.16619,46.98637],[85.17625,46.99292],[85.17876,46.9962],[85.17556,46.99971],[85.17578,47.00369],[85.18185,47.00416],[85.18688,47.00674],[85.18796,47.00943],[85.19407,47.01198],[85.194,47.01687],[85.19756,47.02065],[85.2018,47.02631],[85.20411,47.03248],[85.21216,47.03873],[85.21109,47.04516],[85.21514,47.05192],[85.22022,47.05344],[85.22482,47.05163],[85.22506,47.04909],[85.23547,47.04993],[85.24109,47.05403],[85.24788,47.05252],[85.25399,47.05288],[85.26148,47.04973],[85.26628,47.05164],[85.26901,47.05448],[85.27467,47.05548],[85.27484,47.05882],[85.27243,47.06551],[85.27653,47.06952],[85.27652,47.06622],[85.28166,47.06363],[85.28475,47.06432],[85.28953,47.06334],[85.29908,47.06464],[85.30378,47.05696],[85.30684,47.05036],[85.31196,47.0489],[85.31949,47.04394],[85.32426,47.04319],[85.33,47.04707],[85.3394,47.04735],[85.34173,47.05446],[85.34777,47.05465],[85.35062,47.05205],[85.36651,47.05226],[85.37691,47.04732],[85.38387,47.0466],[85.38957,47.04854],[85.39457,47.04814],[85.40596,47.05202],[85.41373,47.06051],[85.42366,47.06053],[85.42725,47.05727],[85.43282,47.05727],[85.43839,47.06055],[85.45347,47.05987],[85.46168,47.06386],[85.46698,47.05952],[85.47547,47.05735],[85.48122,47.05284],[85.49732,47.05352],[85.50482,47.05628],[85.51681,47.05427],[85.53017,47.05085],[85.5322,47.04907],[85.53836,47.04888],[85.54144,47.05183],[85.54727,47.05338],[85.55471,47.0507],[85.55871,47.05037],[85.56167,47.06216],[85.56521,47.06548],[85.56738,47.07114],[85.57811,47.09519],[85.57613,47.1003],[85.57965,47.11149],[85.58616,47.11417],[85.58375,47.11919],[85.57447,47.12422],[85.57787,47.13871],[85.57941,47.14193],[85.58988,47.14701],[85.59348,47.15209],[85.61012,47.16044],[85.6132,47.16524],[85.62676,47.17371],[85.63045,47.17911],[85.64032,47.18451],[85.64351,47.19245],[85.64683,47.19502],[85.64671,47.19853],[85.64967,47.20554],[85.65743,47.20859],[85.65971,47.21351],[85.6791,47.21965],[85.682,47.2223],[85.68621,47.22992],[85.68556,47.23606],[85.68936,47.2403],[85.68782,47.24172],[85.68835,47.24593],[85.68233,47.24572],[85.67974,47.25064],[85.68746,47.26232],[85.69105,47.26421],[85.69413,47.27192],[85.69378,47.27777],[85.69789,47.28316],[85.69856,47.28854],[85.69131,47.29774],[85.68338,47.30507],[85.68527,47.30831],[85.67446,47.3111],[85.67327,47.3218],[85.68496,47.32972],[85.68565,47.34264],[85.68805,47.35555],[85.68703,47.36056],[85.68943,47.36562],[85.69819,47.36583],[85.69947,47.37244],[85.70214,47.38138],[85.69513,47.3866],[85.68675,47.39322],[85.68524,47.40007],[85.68236,47.40692],[85.68661,47.40875],[85.68275,47.42962],[85.67722,47.43622],[85.67375,47.4419],[85.66543,47.44999],[85.65001,47.45358],[85.64683,47.45806],[85.64022,47.4644],[85.63868,47.4678],[85.63217,47.4746],[85.62531,47.48587],[85.61642,47.49125],[85.61235,47.49935],[85.60829,47.50885],[85.6104,47.51185],[85.60771,47.52273],[85.60953,47.52549],[85.60861,47.53102],[85.6181,47.54419],[85.61866,47.54854],[85.62709,47.55762],[85.62804,47.56517],[85.62899,47.57736],[85.6357,47.58644],[85.55278,47.98125],[85.53917,47.98438],[85.53998,47.98934],[85.5401,47.99661],[85.54435,48.00112],[85.5469,48.01041],[85.54034,48.01983],[85.5279,48.02487],[85.5271,48.02722],[85.53249,48.03049],[85.53022,48.0352],[85.53048,48.04277],[85.54113,48.05332],[85.53669,48.0717],[85.54665,48.08123],[85.54682,48.09929],[85.55137,48.10718],[85.54953,48.11502],[85.55043,48.12837],[85.55368,48.12888],[85.55737,48.12479],[85.55899,48.13169],[85.56411,48.13226],[85.55551,48.13582],[85.55376,48.13937],[85.56916,48.15724],[85.57439,48.15667],[85.57837,48.16532],[85.58277,48.17422],[85.58634,48.18279],[85.5851,48.19136],[85.59033,48.1908],[85.58847,48.19693],[85.59647,48.19701],[85.61077,48.20552],[85.62233,48.20259],[85.63424,48.2317],[85.64913,48.23871],[85.65039,48.24496],[85.65823,48.24146],[85.66661,48.25868],[85.67527,48.26226],[85.67239,48.26794],[85.67472,48.27146],[85.67774,48.27133],[85.68211,48.27932],[85.68291,48.29085],[85.6919,48.30073],[85.69124,48.32965],[85.70259,48.34274],[85.71325,48.34898],[85.71074,48.3529],[85.71224,48.36125],[85.72328,48.36702],[85.72519,48.37154],[85.74193,48.38224],[85.75099,48.39284],[85.7573,48.40297],[85.76367,48.40454],[85.79201,48.41818],[85.80521,48.4156],[85.81765,48.41784],[85.83005,48.42238],[85.83213,48.42601],[85.86475,48.43079],[85.88519,48.42954],[85.89884,48.4321],[85.90532,48.4352],[85.91386,48.43603],[86.05821,48.43824],[86.2248,48.43205],[86.23428,48.43306],[86.23751,48.43889],[86.24565,48.44591],[86.25035,48.45201],[86.25378,48.45427],[86.25996,48.4547],[86.2682,48.45081],[86.27232,48.45876],[86.28123,48.46278],[86.2819,48.47173],[86.29699,48.47726],[86.29698,48.48253],[86.30144,48.48699],[86.29904,48.49008],[86.32211,48.48798],[86.32403,48.49376],[86.33014,48.49369],[86.32942,48.49092],[86.35001,48.49148],[86.36854,48.49296],[86.36853,48.50171],[86.37746,48.50071],[86.37883,48.49288],[86.38913,48.49052],[86.3905,48.48752],[86.39393,48.48534],[86.39599,48.48106],[86.40766,48.47906],[86.58255,48.53947],[86.58937,48.542],[86.59503,48.55093],[86.59656,48.55985],[86.59466,48.56719],[86.59714,48.56882],[86.59701,48.57236],[86.59413,48.57544],[86.59837,48.57644],[86.5985,48.58107],[86.60102,48.5823],[86.60149,48.58489],[86.6086,48.58507],[86.61228,48.59797],[86.61948,48.59793],[86.62823,48.6054],[86.63423,48.61151],[86.63421,48.6264],[86.64154,48.62919],[86.6689,48.63149],[86.66987,48.63355],[86.67654,48.63367],[86.6809,48.63668],[86.69145,48.64287],[86.68919,48.64778],[86.69724,48.65269],[86.69876,48.66122],[86.7002,48.66844],[86.71226,48.67658],[86.72568,48.68337],[86.73912,48.69669],[86.75392,48.70775],[86.77147,48.72018],[86.77803,48.73509],[86.7709,48.75054],[86.76775,48.75859],[86.76253,48.76211],[86.75142,48.77821],[86.75648,48.79152],[86.76154,48.80392],[86.76862,48.80899],[86.7908,48.81632],[86.8044,48.82501],[86.81869,48.83234],[86.81814,48.84428],[86.81691,48.85576],[86.8015,48.86711],[86.7902,48.87258],[86.78342,48.8763],[86.77663,48.88883],[86.75164,48.89594],[86.75187,48.90273],[86.74112,48.91269],[86.73163,48.9371],[86.73038,48.94979],[86.72701,48.95028],[86.7272,48.95863],[86.73013,48.97194],[86.72723,48.98006],[86.7299,48.98345],[86.72776,48.99134],[86.74861,49.01086],[86.76946,49.02633],[86.78106,49.02806],[86.79511,49.0386],[86.83131,49.05062],[86.84726,49.06557],[86.84221,49.08587],[86.84472,49.10167],[86.85793,49.11417],[86.87526,49.12127],[86.87903,49.12842],[86.89945,49.13513],[86.94142,49.13029],[86.9573,49.13174],[86.97893,49.13698],[86.99884,49.14311],[87.02251,49.13834],[87.04396,49.13123],[87.05991,49.12929],[87.06463,49.12662],[87.06728,49.13024],[87.07395,49.13258],[87.08192,49.13083],[87.08886,49.13761],[87.10014,49.14004],[87.10078,49.14786],[87.10554,49.15118],[87.11558,49.15253],[87.12562,49.15254],[87.12995,49.1512],[87.13978,49.15075],[87.14137,49.15233],[87.15051,49.15076],[87.15273,49.14482],[87.1693,49.13893],[87.17415,49.1398],[87.18515,49.13867],[87.18861,49.14247],[87.1935,49.14161],[87.19976,49.14344],[87.20373,49.14008],[87.2077,49.13537],[87.21442,49.13246],[87.21564,49.12864],[87.21308,49.12292],[87.22348,49.11984],[87.2277,49.11945],[87.22892,49.11463],[87.23451,49.11413],[87.23804,49.11138],[87.2425,49.11321],[87.25383,49.11235],[87.26035,49.11463],[87.27253,49.1142],[87.27725,49.11803],[87.28197,49.11782],[87.28886,49.11457],[87.29506,49.11357],[87.304,49.10785],[87.32256,49.10438],[87.32156,49.10081],[87.33308,49.09902],[87.34666,49.10218],[87.35119,49.10089],[87.3561,49.09618],[87.36101,49.09462],[87.36533,49.09689],[87.38161,49.09272],[87.38447,49.0891],[87.39764,49.08637],[87.39925,49.08321],[87.40497,49.08049],[87.40663,49.07531],[87.42477,49.07373],[87.42746,49.07125],[87.43565,49.07237],[87.43954,49.07442],[87.44619,49.08006],[87.4562,49.08457],[87.46073,49.08548],[87.46634,49.08865],[87.47722,49.0896],[87.49017,49.0865],[87.49939,49.08968],[87.50312,49.09286],[87.50445,49.09604],[87.50509,49.10057],[87.50741,49.10401],[87.5056,49.11015],[87.50645,49.11658],[87.49357,49.1266],[87.4908,49.13228],[87.49353,49.13885],[87.50575,49.13786],[87.52079,49.14141],[87.52347,49.14452],[87.53439,49.14065],[87.54187,49.14173],[87.54905,49.14003],[87.55485,49.14012],[87.56168,49.13594],[87.56645,49.13536],[87.56941,49.14156],[87.57638,49.14264],[87.58197,49.14103],[87.58929,49.14604],[87.59797,49.14925],[87.60643,49.14862],[87.61009,49.14528],[87.61452,49.14422],[87.61758,49.14496],[87.6203,49.14772],[87.62714,49.15003],[87.63294,49.14796],[87.64081,49.14859],[87.64629,49.15081],[87.64971,49.15348],[87.65879,49.15144],[87.67131,49.15164],[87.68005,49.15896],[87.68339,49.16375],[87.68674,49.17168],[87.69519,49.17595],[87.70399,49.17618],[87.71982,49.17731],[87.73703,49.17574],[87.74586,49.1734],[87.75127,49.16747],[87.77083,49.17266],[87.77383,49.17654],[87.77854,49.17891],[87.78695,49.17417],[87.80093,49.17],[87.81183,49.16751],[87.81646,49.16982]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Mongolia, west of 110º E#UA0", "itu_zone_number": 32 }, "geometry": { "type": "Polygon", "coordinates": [[[90,60],[110,60],[110,42.63674],[109.89816,42.63306],[109.6796,42.55965],[109.62641,42.52739],[109.53203,42.46882],[109.51757,42.46688],[109.4983,42.46696],[109.48144,42.4559],[109.47576,42.45442],[109.45197,42.45166],[109.43917,42.45193],[109.41606,42.44906],[109.38334,42.4467],[109.31,42.43969],[109.28452,42.43504],[109.2623,42.43597],[109.01485,42.45717],[109.00583,42.45056],[108.99818,42.448],[108.98563,42.44845],[108.9516,42.43871],[108.8396,42.39643],[108.83542,42.39907],[108.82816,42.40322],[108.81971,42.40593],[108.79994,42.41117],[108.78512,42.41634],[108.77905,42.41368],[108.74569,42.41432],[108.71544,42.41325],[108.69412,42.41344],[108.53491,42.44325],[108.4408,42.44393],[108.43088,42.44255],[108.42111,42.44224],[108.40791,42.44143],[108.38861,42.44111],[108.3573,42.43954],[108.29468,42.43942],[108.24464,42.46397],[108.19923,42.45424],[108.15725,42.44881],[108.13501,42.44503],[108.11307,42.44212],[108.08461,42.4377],[108.06451,42.43774],[108.0409,42.43548],[108.02003,42.4355],[108.0102,42.4298],[107.99865,42.42411],[107.991,42.41957],[107.97982,42.4148],[107.96396,42.41456],[107.92939,42.40153],[107.90506,42.40337],[107.73792,42.41308],[107.65437,42.41277],[107.57494,42.41069],[107.56565,42.41147],[107.52982,42.43376],[107.51247,42.4444],[107.49477,42.45498],[107.45818,42.4582],[107.42656,42.44769],[107.2904,42.40785],[107.26025,42.36046],[107.05158,42.31712],[106.78668,42.28831],[106.64526,42.25072],[106.36581,42.15564],[106.10285,42.06056],[105.71839,41.93778],[105.58247,41.88159],[105.48154,41.83071],[105.38611,41.79825],[105.36071,41.7791],[105.29412,41.74767],[105.23167,41.74591],[105.00579,41.58008],[104.91912,41.65444],[104.68322,41.64484],[104.51873,41.66192],[104.52621,41.87442],[104.07733,41.80345],[103.85643,41.79799],[103.41716,41.88043],[102.99978,42.03342],[102.70874,42.14764],[102.54798,42.15834],[102.44564,42.14129],[102.07962,42.22196],[101.80481,42.50359],[101.55891,42.52878],[100.84198,42.67322],[100.31997,42.68622],[100.26277,42.63729],[99.97486,42.64694],[99.50065,42.56523],[98.56227,42.63358],[98.20068,42.65342],[97.1733,42.79391],[96.96796,42.75391],[96.75712,42.75423],[96.38763,42.72362],[96.3594,42.89626],[96.13536,43.06738],[95.91407,43.23047],[95.8768,43.2765],[95.86778,43.32951],[95.85876,43.40849],[95.73616,43.59621],[95.65151,43.76851],[95.62179,43.84955],[95.52391,44.00389],[95.44244,44.00451],[95.40422,44.01009],[95.36601,44.02358],[95.32253,44.02685],[95.34525,44.08108],[95.35424,44.17476],[95.37771,44.22609],[95.41079,44.24401],[95.42871,44.27755],[95.41091,44.29536],[94.99614,44.25089],[94.93022,44.29333],[94.81966,44.31819],[94.76954,44.34108],[94.72696,44.33774],[94.67511,44.38838],[94.60129,44.44883],[94.54679,44.45951],[94.47031,44.50744],[94.39152,44.521],[94.34928,44.51285],[94.3408,44.52686],[94.34604,44.54479],[94.32907,44.5826],[94.26491,44.61127],[94.22448,44.64515],[94.2068,44.67189],[94.14945,44.6824],[94.06223,44.73081],[93.73605,44.86028],[93.71493,44.86979],[93.70755,44.89292],[93.60266,44.93066],[93.50601,44.96452],[93.42759,44.95505],[93.39586,44.97473],[93.36802,44.98548],[93.32369,44.99429],[93.31744,44.98082],[93.28846,44.98301],[93.21554,44.9954],[93.1893,45.0078],[93.14521,45.01242],[93.08465,45.00733],[93.05605,45.01714],[93.00435,45.00955],[92.98423,44.99905],[92.96961,45.01574],[92.92759,45.01648],[92.92321,45.03349],[92.88148,45.04617],[92.84473,45.03658],[92.77671,45.04846],[92.74447,45.04217],[92.73146,45.03588],[92.64226,45.02136],[92.549,45.01755],[92.48596,45.00015],[92.42291,45.01771],[92.34214,45.01107],[92.31355,45.02772],[92.27423,45.02027],[92.25045,45.02042],[92.23766,45.01281],[92.18735,45.0364],[92.10134,45.07552],[92.05996,45.08264],[91.89508,45.07553],[91.80435,45.08201],[91.6856,45.06162],[91.61814,45.0701],[91.56992,45.08052],[91.55877,45.06767],[91.53534,45.08548],[91.49327,45.10273],[91.4924,45.11416],[91.46045,45.14866],[91.42952,45.15564],[91.39624,45.12888],[91.37669,45.10986],[91.32968,45.12767],[91.24146,45.13191],[91.22297,45.15007],[91.189,45.15624],[91.17976,45.16435],[91.16346,45.20017],[91.11988,45.21372],[91.08392,45.21445],[91.04796,45.2055],[90.99827,45.21687],[90.95132,45.19534],[90.88439,45.18857],[90.86428,45.19906],[90.8936,45.25211],[90.86985,45.28278],[90.83607,45.29772],[90.79874,45.28896],[90.8129,45.31939],[90.7726,45.40167],[90.76526,45.43765],[90.7057,45.46285],[90.66535,45.48805],[90.66021,45.53336],[90.68372,45.62716],[90.71273,45.72864],[90.84697,45.88774],[91.01966,46.02008],[91.02058,46.05632],[91.00777,46.07922],[91.01509,46.085],[91.01052,46.12705],[90.97666,46.15786],[90.96111,46.19657],[90.9428,46.21436],[90.95014,46.22904],[90.89435,46.30682],[90.92997,46.33551],[90.97658,46.3604],[90.99434,46.42038],[91.00597,46.4343],[91.01042,46.45831],[91.03419,46.49504],[91.05246,46.51097],[91.05016,46.54022],[91.07808,46.55814],[91.07074,46.57508],[91.0176,46.57876],[91.01381,46.60833],[91.04846,46.71712],[91.01249,46.76264],[90.99313,46.76847],[90.98202,46.78935],[90.9348,46.8202],[90.95218,46.84435],[90.95582,46.87601],[90.9329,46.88676],[90.9141,46.91535],[90.91727,46.93643],[90.87534,46.97064],[90.82517,46.99549],[90.76458,46.98801],[90.7429,47.02696],[90.72947,47.02659],[90.68583,47.07489],[90.6463,47.11102],[90.6442,47.12729],[90.62287,47.14356],[90.56098,47.20973],[90.53412,47.24866],[90.51824,47.28945],[90.48099,47.31886],[90.50539,47.33936],[90.49957,47.35242],[90.51815,47.37667],[90.50588,47.40286],[90.48132,47.39758],[90.45694,47.41306],[90.46414,47.44344],[90.47133,47.4924],[90.42668,47.52994],[90.40125,47.5378],[90.37512,47.59902],[90.34282,47.625],[90.35002,47.64539],[90.37096,47.64357],[90.37395,47.65092],[90.34948,47.67123],[90.32526,47.68408],[90.28593,47.69232],[90.25485,47.69501],[90.24036,47.70762],[90.21413,47.70327],[90.17816,47.72231],[90.13917,47.72341],[90.09839,47.75307],[90.07134,47.77904],[90.06489,47.81885],[90.07218,47.84944],[90.09201,47.8579],[90.05927,47.8842],[90.04575,47.87366],[90.0034,47.8797],[89.95556,47.88758],[89.95325,47.86004],[89.95094,47.83434],[89.93022,47.83324],[89.89027,47.83767],[89.85707,47.82625],[89.80601,47.83235],[89.7577,47.82922],[89.73924,47.86506],[89.74963,47.87601],[89.72431,47.89986],[89.65324,47.90314],[89.63895,47.92558],[89.6384,47.94802],[89.60763,47.95759],[89.59335,47.97267],[89.58564,47.9999],[89.60535,48.00648],[89.5811,48.03143],[89.5491,48.03907],[89.49333,48.0268],[89.44495,48.03166],[89.40208,48.02916],[89.37888,48.04492],[89.37079,48.02209],[89.35446,48.01579],[89.34682,48.02367],[89.31446,48.01317],[89.29583,48.0137],[89.28174,47.98636],[89.25632,47.99051],[89.24117,47.9749],[89.1889,47.97676],[89.15448,47.99701],[89.12281,47.98416],[89.05929,47.98795],[89.02795,48.02466],[89.00759,48.05219],[88.97237,48.06685],[88.95362,48.08427],[88.93213,48.10719],[88.84617,48.11083],[88.82806,48.09975],[88.73318,48.15198],[88.70877,48.15748],[88.71183,48.17031],[88.69185,48.17582],[88.66563,48.16853],[88.633,48.18215],[88.62234,48.21042],[88.58729,48.21935],[88.59684,48.24456],[88.56834,48.27411],[88.60565,48.33219],[88.57155,48.35193],[88.56928,48.36585],[88.54824,48.37179],[88.54736,48.35812],[88.51128,48.38006],[88.52289,48.3911],[88.48568,48.40774],[88.47993,48.39541],[88.43822,48.38715],[88.39586,48.41427],[88.35625,48.43045],[88.3543,48.44583],[88.35235,48.45939],[88.29134,48.4857],[88.21935,48.5029],[88.18153,48.49548],[88.13546,48.52992],[88.112,48.52419],[88.10236,48.54185],[88.07623,48.5486],[88.05695,48.54211],[88.02387,48.54911],[88.00716,48.56676],[87.97396,48.56986],[87.95929,48.59319],[87.97336,48.60635],[88.02589,48.63041],[88.01156,48.65071],[88.06314,48.68007],[88.0894,48.7116],[88.05524,48.71325],[88.02031,48.7503],[87.9689,48.77286],[87.93457,48.75323],[87.89508,48.78087],[87.8556,48.80308],[87.83157,48.79865],[87.79449,48.82055],[87.82333,48.82374],[87.81372,48.8432],[87.79312,48.84054],[87.7835,48.86957],[87.74231,48.86799],[87.73475,48.88393],[87.75981,48.91627],[87.75192,48.93327],[87.78007,48.92674],[87.812,48.94827],[87.84401,48.94555],[87.87328,48.94824],[87.86841,48.96069],[87.87453,48.97495],[87.89775,48.97463],[87.90025,48.98479],[87.87228,48.9907],[87.86853,49.00612],[87.88026,49.01895],[87.85702,49.03561],[87.84339,49.03607],[87.82977,49.04373],[87.83273,49.0618],[87.84855,49.06182],[87.85063,49.07262],[87.83833,49.08165],[87.83838,49.09067],[87.8645,49.11048],[87.82812,49.14734],[87.82092,49.14241],[87.80908,49.15612],[87.81646,49.16982],[87.82075,49.17518],[87.86135,49.17607],[87.87837,49.17001],[87.90362,49.17651],[87.9238,49.17168],[87.933,49.17943],[87.96554,49.18717],[87.98984,49.18054],[88.00435,49.20611],[88.02022,49.22988],[88.05533,49.24203],[88.05022,49.2562],[88.082,49.26329],[88.08377,49.25745],[88.1075,49.25878],[88.12712,49.27713],[88.16577,49.289],[88.15961,49.31555],[88.16994,49.3242],[88.15554,49.33642],[88.16483,49.34612],[88.16312,49.35581],[88.15834,49.36358],[88.11785,49.37671],[88.11994,49.39342],[88.14724,49.40564],[88.18552,49.41786],[88.16322,49.4423],[88.19146,49.46273],[88.22519,49.4778],[88.25922,49.48265],[88.29875,49.47145],[88.31713,49.477],[88.34102,49.49682],[88.36215,49.48631],[88.38186,49.48369],[88.40705,49.49355],[88.42126,49.48379],[88.43547,49.46867],[88.49744,49.47205],[88.51755,49.48674],[88.55232,49.48249],[88.57336,49.49787],[88.59984,49.50407],[88.61033,49.49647],[88.62632,49.49779],[88.65766,49.48149],[88.67526,49.4652],[88.73681,49.45157],[88.74974,49.4617],[88.78524,49.45665],[88.8125,49.45696],[88.82603,49.44744],[88.84379,49.44178],[88.86227,49.45591],[88.84904,49.46882],[88.86989,49.46635],[88.88251,49.4728],[88.85142,49.48928],[88.85648,49.49485],[88.87549,49.50031],[88.87401,49.54761],[88.88626,49.5557],[88.90133,49.5575],[88.90991,49.54636],[88.92672,49.54592],[88.9353,49.53033],[88.93263,49.51574],[88.96568,49.49579],[88.95203,49.48209],[88.97134,49.46125],[89.00703,49.46974],[89.03448,49.48893],[89.0585,49.47846],[89.11308,49.4973],[89.14295,49.49831],[89.15736,49.5146],[89.19341,49.52096],[89.20731,49.53751],[89.23494,49.54515],[89.22599,49.56389],[89.19231,49.58797],[89.19675,49.60268],[89.18198,49.62094],[89.18812,49.63078],[89.2428,49.64536],[89.27329,49.62921],[89.30378,49.60772],[89.34554,49.59322],[89.33511,49.58137],[89.35873,49.58256],[89.38565,49.59829],[89.384,49.60972],[89.4079,49.62166],[89.41985,49.61518],[89.43544,49.62795],[89.43087,49.63612],[89.4588,49.66598],[89.47025,49.65851],[89.50132,49.66457],[89.51791,49.67555],[89.54273,49.68119],[89.5814,49.67826],[89.67247,49.69373],[89.70536,49.72159],[89.72593,49.75504],[89.71903,49.79028],[89.67495,49.78215],[89.62389,49.8067],[89.64991,49.8248],[89.63612,49.84114],[89.61401,49.86495],[89.61398,49.87776],[89.63318,49.88526],[89.63037,49.90203],[89.60002,49.91434],[89.64509,49.92482],[89.69015,49.9406],[89.74894,49.94932],[89.80621,49.95238],[89.86348,49.95898],[89.8823,49.95056],[89.91996,49.96413],[89.96415,49.97396],[89.97543,49.97268],[89.98243,49.97562],[89.99218,49.98296],[90,49.98485],[90,60]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**China, north of 44º N#JT", "itu_zone_number": 33 }, "geometry": { "type": "Polygon", "coordinates": [[[111.78081,44],[131.24869,44],[131.24705,44.00294],[131.24335,44.00639],[131.24246,44.01179],[131.24555,44.01388],[131.25207,44.01548],[131.25206,44.02065],[131.25582,44.02434],[131.25615,44.0305],[131.25966,44.03245],[131.26451,44.03022],[131.27073,44.02947],[131.27441,44.03315],[131.27814,44.03449],[131.27981,44.03682],[131.28431,44.03891],[131.28744,44.04346],[131.29198,44.04344],[131.29626,44.04237],[131.30012,44.04479],[131.3026,44.04524],[131.20257,44.37508],[131.10322,44.7072],[131.09539,44.71396],[131.07864,44.73964],[131.0616,44.77927],[131.01436,44.77406],[131.00447,44.82602],[130.96711,44.81953],[130.96225,44.86187],[131.07824,44.88084],[131.07888,44.91634],[131.10149,44.94017],[131.16867,44.94697],[131.2029,44.91489],[131.28863,44.92558],[131.34139,44.98682],[131.40927,44.98004],[131.42761,44.96572],[131.47342,44.95917],[131.48626,44.97593],[131.48263,44.99658],[131.59926,45.05577],[131.69391,45.12661],[131.64701,45.1597],[131.68124,45.22562],[131.78687,45.21414],[131.80673,45.29054],[131.87603,45.34376],[131.91343,45.33654],[131.92885,45.28297],[131.96625,45.2719],[131.98167,45.25696],[132.84875,45.05972],[132.95228,45.01758],[133.04539,45.06741],[133.0837,45.1059],[133.12751,45.125],[133.13286,45.17604],[133.08885,45.248],[133.09977,45.29288],[133.12695,45.35251],[133.14288,45.42919],[133.19726,45.50587],[133.31344,45.55102],[133.37407,45.57673],[133.41822,45.57167],[133.3992,45.61852],[133.42539,45.62656],[133.46806,45.60771],[133.44493,45.64974],[133.48221,45.66104],[133.47555,45.69345],[133.43043,45.69516],[133.45831,45.78491],[133.48069,45.85933],[133.52725,45.90278],[133.58478,45.86592],[133.59564,45.88882],[133.61472,45.90598],[133.59879,45.93508],[133.62955,45.94793],[133.67184,45.94308],[133.66965,45.98737],[133.7125,46.02478],[133.73886,46.066],[133.69547,46.11031],[133.68503,46.15081],[133.76852,46.17091],[133.79242,46.19523],[133.79983,46.22904],[133.81962,46.22327],[133.82677,46.20423],[133.84215,46.2004],[133.85426,46.21547],[133.87461,46.23244],[133.85376,46.24751],[133.89309,46.25105],[133.91045,46.26409],[133.90883,46.27985],[133.88798,46.30321],[133.91657,46.32278],[133.9122,46.33285],[133.87737,46.31887],[133.86176,46.34471],[133.87294,46.36013],[133.89784,46.36417],[133.93099,46.3739],[133.94766,46.3931],[133.89635,46.44827],[133.86152,46.44287],[133.84179,46.4545],[133.84129,46.48127],[133.86131,46.49278],[133.86484,46.50997],[133.87388,46.5262],[133.89389,46.54244],[133.9092,46.59191],[133.96022,46.61684],[134.00368,46.63752],[134.02517,46.6978],[134.01508,46.72133],[134.0297,46.74485],[134.04847,46.77501],[134.01505,46.81645],[134.01757,46.83482],[134.03656,46.84379],[134.03885,46.88428],[134.06814,46.93709],[134.05348,46.9824],[134.11299,47.02302],[134.12306,47.0861],[134.21277,47.09867],[134.22009,47.11872],[134.21299,47.19058],[134.13997,47.2587],[134.18781,47.3417],[134.24113,47.35768],[134.31207,47.43612],[134.48189,47.44023],[134.57533,47.4972],[134.58088,47.51705],[134.64141,47.56047],[134.67715,47.59216],[134.68542,47.63866],[134.72392,47.65762],[134.78445,47.72518],[134.74263,47.78201],[134.67333,47.82038],[134.65009,47.89346],[134.57118,47.90976],[134.58016,47.95183],[134.54245,47.98837],[134.54319,48.02859],[134.56725,48.03926],[134.58033,48.06278],[134.6257,48.09881],[134.63262,48.12293],[134.66767,48.14325],[134.66151,48.19654],[134.66501,48.24082],[134.6901,48.25839],[134.72187,48.27448],[134.71793,48.2851],[134.76536,48.35311],[134.76885,48.37548],[134.79569,48.37892],[134.839,48.39877],[134.9009,48.44759],[134.91057,48.46972],[134.92573,48.50277],[134.98896,48.52307],[135,48.5361],[135,60],[110,60],[110,42.63674],[110.01323,42.6366],[110.10063,42.64101],[110.10519,42.64409],[110.12739,42.66571],[110.13619,42.67167],[110.23011,42.70081],[110.26145,42.71033],[110.30321,42.72329],[110.32403,42.72818],[110.34172,42.73557],[110.43392,42.77978],[110.43713,42.78393],[110.46506,42.83393],[110.48409,42.84571],[110.50277,42.8585],[110.62562,42.93327],[110.65378,42.97265],[110.65911,42.98301],[110.66925,42.99601],[110.68385,43.01705],[110.68437,43.02274],[110.68369,43.0273],[110.68302,43.03262],[110.68371,43.03869],[110.71317,43.0677],[110.72764,43.07907],[110.73284,43.08568],[110.74684,43.09168],[110.76669,43.09982],[110.81968,43.1504],[110.87062,43.19797],[110.90885,43.23528],[110.91961,43.24456],[110.9669,43.2894],[110.99701,43.31375],[111.00081,43.31513],[111.02708,43.33356],[111.04065,43.3405],[111.0519,43.34245],[111.05698,43.34415],[111.06268,43.35255],[111.14964,43.37722],[111.23042,43.40688],[111.3527,43.43667],[111.40151,43.47445],[111.45119,43.48994],[111.50635,43.485],[111.56152,43.48804],[111.60364,43.5131],[111.78584,43.66857],[111.87946,43.67154],[111.92352,43.68618],[111.94835,43.69039],[111.95121,43.70503],[111.96363,43.73717],[111.96506,43.74945],[111.95567,43.8214],[111.89582,43.89499],[111.86206,43.94186],[111.78081,44]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Asiatic Russia, south of 60º N and between 135º and 155º E+- including Primor'ye and Sakhalin but excluding the Kurils", "itu_zone_number": 34 }, "geometry": { "type": "Polygon", "coordinates": [[[146.49147,45.73822],[139.77955,45.73822],[136.66227,42.24603],[130.77271,42.24603],[130.68908,42.29407],[130.68248,42.30341],[130.6594,42.31581],[130.64937,42.32363],[130.64483,42.33451],[130.64424,42.3469],[130.64913,42.3527],[130.65536,42.35915],[130.66294,42.36225],[130.66846,42.36636],[130.66855,42.37495],[130.6651,42.37996],[130.66063,42.38398],[130.65753,42.38775],[130.65486,42.39042],[130.64514,42.40221],[130.64472,42.40826],[130.64337,42.4104],[130.64082,42.4131],[130.64067,42.41543],[130.63897,42.42016],[130.63762,42.42189],[130.63524,42.42374],[130.635,42.42489],[130.63425,42.42604],[130.6313,42.42718],[130.62422,42.43262],[130.61714,42.43528],[130.61418,42.43464],[130.61139,42.43653],[130.60895,42.43944],[130.6029,42.44121],[130.59427,42.44627],[130.59354,42.45059],[130.59142,42.45441],[130.59235,42.45621],[130.59035,42.46409],[130.59522,42.46766],[130.59083,42.4732],[130.5854,42.47873],[130.58604,42.48106],[130.58392,42.48465],[130.58484,42.48728],[130.55825,42.50303],[130.55264,42.51861],[130.55381,42.52098],[130.56254,42.51729],[130.55787,42.52523],[130.56075,42.52912],[130.56499,42.534],[130.56921,42.53787],[130.56256,42.55497],[130.56903,42.55488],[130.5748,42.55834],[130.58498,42.55918],[130.59412,42.55724],[130.60395,42.55176],[130.60417,42.56506],[130.61538,42.57077],[130.62178,42.58179],[130.62029,42.58543],[130.62566,42.58857],[130.62589,42.59373],[130.62817,42.59888],[130.62054,42.60538],[130.61635,42.61238],[130.61833,42.61836],[130.61482,42.6284],[130.61289,42.63038],[130.60616,42.63085],[130.60505,42.63431],[130.59604,42.6403],[130.59809,42.64356],[130.59463,42.64683],[130.59596,42.65184],[130.58842,42.6602],[130.58843,42.66488],[130.58362,42.67108],[130.57676,42.67538],[130.56853,42.67817],[130.5621,42.68535],[130.5548,42.68931],[130.55286,42.69001],[130.54851,42.68946],[130.54514,42.69175],[130.54229,42.69122],[130.53243,42.69839],[130.52256,42.70103],[130.51654,42.70054],[130.50776,42.69552],[130.50051,42.69506],[130.49842,42.69258],[130.49428,42.69336],[130.49151,42.69011],[130.48763,42.69044],[130.48443,42.68826],[130.47849,42.69011],[130.47186,42.68944],[130.46822,42.68987],[130.45908,42.68474],[130.44977,42.69444],[130.44802,42.70161],[130.44543,42.70078],[130.43871,42.70147],[130.4344,42.70367],[130.43077,42.70788],[130.42009,42.70333],[130.40735,42.7129],[130.40853,42.71541],[130.40147,42.72398],[130.39422,42.72447],[130.46619,42.7686],[130.57111,42.8087],[130.67053,42.85482],[130.72024,42.82955],[130.76446,42.84052],[130.78396,42.87214],[130.82667,42.87989],[130.88586,42.84739],[130.91635,42.87498],[130.98103,42.85455],[131.04022,42.8623],[131.01605,42.91746],[131.11272,42.91227],[131.13322,42.92919],[131.14273,42.96219],[131.10682,42.97192],[131.09838,43.02183],[131.11739,43.07175],[131.16601,43.07062],[131.16972,43.1062],[131.21187,43.14579],[131.20274,43.16659],[131.21009,43.18338],[131.19272,43.20618],[131.20281,43.22898],[131.25005,43.27213],[131.27532,43.37125],[131.31157,43.38849],[131.28575,43.43302],[131.30937,43.45761],[131.26361,43.4936],[131.19312,43.5256],[131.18124,43.55376],[131.22615,43.58614],[131.21708,43.67874],[131.20994,43.80828],[131.22285,43.86712],[131.25773,43.91012],[131.23493,43.98083],[131.26473,44.03001],[131.30002,44.05154],[131.11215,44.7],[131.09539,44.71396],[131.07864,44.73964],[131.0616,44.77927],[131.01436,44.77406],[131.00447,44.82602],[130.96711,44.81953],[130.96225,44.86187],[131.07824,44.88084],[131.07888,44.91634],[131.10149,44.94017],[131.16867,44.94697],[131.2029,44.91489],[131.28863,44.92558],[131.34139,44.98682],[131.40927,44.98004],[131.42761,44.96572],[131.47342,44.95917],[131.48626,44.97593],[131.48263,44.99658],[131.59926,45.05577],[131.69391,45.12661],[131.64701,45.1597],[131.68124,45.22562],[131.78687,45.21414],[131.80673,45.29054],[131.87603,45.34376],[131.91343,45.33654],[131.92885,45.28297],[131.96625,45.2719],[131.98167,45.25696],[132.84875,45.05972],[132.95228,45.01758],[133.04539,45.06741],[133.0837,45.1059],[133.12751,45.125],[133.13286,45.17604],[133.08885,45.248],[133.09977,45.29288],[133.12695,45.35251],[133.14288,45.42919],[133.19726,45.50587],[133.31344,45.55102],[133.37407,45.57673],[133.41822,45.57167],[133.3992,45.61852],[133.42539,45.62656],[133.46806,45.60771],[133.44493,45.64974],[133.48221,45.66104],[133.47555,45.69345],[133.43043,45.69516],[133.45831,45.78491],[133.48069,45.85933],[133.52725,45.90278],[133.58478,45.86592],[133.59564,45.88882],[133.61472,45.90598],[133.59879,45.93508],[133.62955,45.94793],[133.67184,45.94308],[133.66965,45.98737],[133.7125,46.02478],[133.73886,46.066],[133.69547,46.11031],[133.68503,46.15081],[133.76852,46.17091],[133.79242,46.19523],[133.79983,46.22904],[133.81962,46.22327],[133.82677,46.20423],[133.84215,46.2004],[133.85426,46.21547],[133.87461,46.23244],[133.85376,46.24751],[133.89309,46.25105],[133.91045,46.26409],[133.90883,46.27985],[133.88798,46.30321],[133.91657,46.32278],[133.9122,46.33285],[133.87737,46.31887],[133.86176,46.34471],[133.87294,46.36013],[133.89784,46.36417],[133.93099,46.3739],[133.94766,46.3931],[133.89635,46.44827],[133.86152,46.44287],[133.84179,46.4545],[133.84129,46.48127],[133.86131,46.49278],[133.86484,46.50997],[133.87388,46.5262],[133.89389,46.54244],[133.9092,46.59191],[133.96022,46.61684],[134.00368,46.63752],[134.02517,46.6978],[134.01508,46.72133],[134.0297,46.74485],[134.04847,46.77501],[134.01505,46.81645],[134.01757,46.83482],[134.03656,46.84379],[134.03885,46.88428],[134.06814,46.93709],[134.05348,46.9824],[134.11299,47.02302],[134.12306,47.0861],[134.21277,47.09867],[134.22009,47.11872],[134.21299,47.19058],[134.13997,47.2587],[134.18781,47.3417],[134.24113,47.35768],[134.31207,47.43612],[134.48189,47.44023],[134.57533,47.4972],[134.58088,47.51705],[134.64141,47.56047],[134.67715,47.59216],[134.68542,47.63866],[134.72392,47.65762],[134.78445,47.72518],[134.74263,47.78201],[134.67333,47.82038],[134.65009,47.89346],[134.57118,47.90976],[134.58016,47.95183],[134.54245,47.98837],[134.54319,48.02859],[134.56725,48.03926],[134.58033,48.06278],[134.6257,48.09881],[134.63262,48.12293],[134.66767,48.14325],[134.66151,48.19654],[134.66501,48.24082],[134.6901,48.25839],[134.72187,48.27448],[134.71793,48.2851],[134.76536,48.35311],[134.76885,48.37548],[134.79569,48.37892],[134.839,48.39877],[134.9009,48.44759],[134.91057,48.46972],[134.92573,48.50277],[134.98896,48.52307],[135,48.5361],[135,60],[155,60],[155,57],[146.49147,45.73822]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Asiatic Russia, south of 60º N and between 155º and 170º E+- including the Kurils", "itu_zone_number": 35 }, "geometry": { "type": "Polygon", "coordinates": [[[150,45.21871],[146.16455,43.26843],[145.54187,43.542],[145.22612,43.82251],[146.49147,45.73822],[155,57],[155,60],[180,60],[160,50],[150,45.21871]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Madeira Island#CU", "itu_zone_number": 36 }, "geometry": { "type": "Polygon", "coordinates": [[[-40,23],[-40,44],[-13,44],[-13,28.25],[-17,23],[-40,23]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Morocco#CT", "itu_zone_number": 37 }, "geometry": { "type": "Polygon", "coordinates": [[[-13,44],[-13,28.25],[-13.45361,27.66646],[-8.66588,27.66646],[-8.66667,27.29444],[-4.85704,25.0159],[-3.72807,24.28551],[1.16658,21.1163],[1.19058,20.99261],[1.19109,20.94114],[1.15863,20.74085],[1.18773,20.72156],[1.22781,20.72796],[1.32282,20.7395],[1.3574,20.67141],[1.59766,20.59637],[1.66322,20.53259],[1.67385,20.40193],[1.81356,20.2918],[1.88736,20.28986],[1.91653,20.22541],[1.94896,20.25246],[1.97698,20.25922],[2.005,20.24537],[2.04457,20.2692],[2.1237,20.23697],[2.18523,20.26982],[2.20832,20.31812],[2.25122,20.30522],[2.30768,20.27479],[2.30371,20.23406],[2.35742,20.19591],[2.35956,20.16137],[2.40564,20.13198],[2.39281,20.10204],[2.37746,20.09675],[2.38547,20.06437],[2.3749,20.02771],[2.39729,20.04135],[2.39706,20.06315],[2.41204,20.07469],[2.4339,20.0772],[2.4482,20.08745],[2.45701,20.08867],[2.46581,20.0957],[2.47325,20.09628],[2.48067,20.08504],[2.4977,20.09316],[2.50993,20.08772],[2.51941,20.0939],[2.52689,20.08199],[2.53713,20.06235],[2.55148,20.0556],[2.55522,20.03997],[2.56171,20.03337],[2.59667,20.03243],[2.60278,20.04439],[2.62469,20.05377],[2.6377,20.04814],[2.63528,20.0408],[2.66085,20.05326],[2.66449,20.05186],[2.66677,20.05949],[2.6711,20.0768],[2.66914,20.08416],[2.68053,20.0988],[2.68642,20.09797],[2.69937,20.08355],[2.69883,20.07123],[2.73125,19.99699],[2.82616,19.96468],[2.8936,19.96334],[2.97443,19.95002],[3.01251,19.93371],[3.03507,19.91543],[3.09197,19.89844],[3.11561,19.87865],[3.13376,19.87306],[3.14946,19.85801],[3.19802,19.84148],[3.23741,19.84161],[3.25689,19.83463],[3.26354,19.81648],[3.2472,19.79353],[3.24735,19.768],[3.24612,19.74377],[3.23116,19.70919],[3.23363,19.67444],[3.25533,19.63711],[3.23007,19.59995],[3.23667,19.56294],[3.26524,19.52851],[3.24986,19.49926],[3.26744,19.44931],[3.2591,19.43548],[3.20682,19.42942],[3.1971,19.39098],[3.17915,19.3629],[3.18592,19.32769],[3.20367,19.30803],[3.19798,19.27649],[3.12754,19.18359],[3.11479,19.13998],[3.23896,19.05925],[3.28732,19.02019],[3.29941,18.99938],[3.33347,18.99157],[3.35764,18.96814],[5.81301,19.44323],[7.45937,20.84341],[12,23.49999],[11.60295,24.26581],[11.42324,24.19938],[11.13152,24.39394],[11.04608,24.4262],[11.02952,24.45552],[10.9855,24.48733],[10.95514,24.52847],[10.9085,24.55253],[10.88108,24.55662],[10.84813,24.567],[10.81519,24.5649],[10.7946,24.54156],[10.79873,24.52822],[10.77129,24.50902],[10.73836,24.5373],[10.72362,24.57057],[10.63472,24.56886],[10.61449,24.57215],[10.60163,24.5613],[10.5888,24.55172],[10.58695,24.53964],[10.56954,24.54046],[10.54965,24.53314],[10.48032,24.5383],[10.43434,24.53347],[10.35265,24.53364],[10.33247,24.56763],[10.30316,24.59213],[10.28757,24.59913],[10.26856,24.61863],[10.21658,24.64812],[10.19894,24.68384],[10.19778,24.6971],[10.13682,24.80751],[10.10908,24.83902],[10.10058,24.87802],[10.07479,24.90936],[10.06464,24.92877],[10.04076,24.95565],[10.02842,25.35397],[9.39967,26.19533],[9.44009,26.24675],[9.50524,26.37698],[9.8635,26.51679],[9.9143,26.6447],[9.90193,26.74314],[9.93075,26.85787],[9.91238,26.86878],[9.90087,26.88337],[9.8928,26.89979],[9.87847,26.90678],[9.86138,26.93091],[9.86078,26.94234],[9.85606,26.95377],[9.83975,27.02068],[9.84052,27.05199],[9.83168,27.06618],[9.83382,27.07975],[9.8291,27.10189],[9.82301,27.11956],[9.81691,27.13357],[9.81846,27.1457],[9.80163,27.16567],[9.80232,27.1829],[9.79614,27.20013],[9.79476,27.22483],[9.78103,27.26418],[9.79407,27.30992],[9.79749,27.34956],[9.7877,27.35145],[9.80263,27.39115],[9.81481,27.40921],[9.81198,27.43865],[9.82013,27.44738],[9.81472,27.45793],[9.82575,27.47112],[9.82854,27.48432],[9.86716,27.50421],[9.86938,27.53079],[9.87985,27.55738],[9.8262,27.55896],[9.81787,27.56662],[9.82396,27.57551],[9.86851,27.58317],[9.89486,27.60908],[9.91764,27.66036],[9.92766,27.67323],[9.92807,27.69705],[9.94506,27.73065],[9.94522,27.84578],[9.96324,27.85888],[9.96632,27.88144],[9.83204,28.29156],[9.9065,28.75004],[9.88056,28.98174],[9.7887,29.40556],[9.54303,29.89505],[9.42019,30.03021],[9.39624,30.16537],[9.95379,30.38572],[10.18176,30.66292],[10.30673,30.86757],[10.28887,31.08164],[10.12133,31.48158],[10.33007,31.73043],[10.53881,31.74551],[10.63563,31.86921],[10.62258,31.90892],[10.65348,31.97193],[10.72833,31.96037],[10.8121,32.01189],[10.88488,32.1193],[11.14169,32.26614],[11.37652,32.32935],[11.5935,32.44655],[11.59625,32.52464],[11.51522,32.59611],[11.48913,32.66757],[11.49462,32.92105],[11.5523,33.12608],[11.56604,33.24828],[13.17828,35.88434],[12.36254,37.03947],[9.98889,37.93682],[7.5,37.94803],[7.5,42.43575],[3.17622,42.43575],[3.11997,42.43681],[3.10283,42.42417],[3.0802,42.42369],[3.07679,42.43842],[3.04867,42.45314],[3.03911,42.4765],[3.01543,42.46866],[2.99176,42.47298],[2.9722,42.46717],[2.94441,42.47959],[2.91903,42.45683],[2.86893,42.46648],[2.85727,42.45256],[2.83737,42.45891],[2.82709,42.44499],[2.80307,42.43107],[2.80447,42.41944],[2.77496,42.41363],[2.75333,42.4239],[2.71935,42.41796],[2.66968,42.40032],[2.67031,42.38424],[2.65171,42.38643],[2.66744,42.36528],[2.67494,42.34413],[2.63197,42.34124],[2.59263,42.354],[2.56977,42.35865],[2.55446,42.35466],[2.5419,42.33241],[2.50531,42.34162],[2.48794,42.34069],[2.43913,42.37432],[2.43152,42.39375],[2.39923,42.38961],[2.38342,42.39966],[2.35937,42.4016],[2.34357,42.41571],[2.32708,42.41643],[2.31059,42.42729],[2.28861,42.42264],[2.27211,42.4332],[2.25562,42.43565],[2.19851,42.41605],[2.16063,42.42484],[2.12246,42.40642],[2.11451,42.37989],[2.0887,42.36553],[2.04833,42.36038],[2.0162,42.35117],[1.97214,42.37211],[1.95975,42.3956],[1.95834,42.4191],[1.94184,42.43144],[1.93906,42.45392],[1.89712,42.44515],[1.82771,42.48501],[1.79815,42.48899],[1.76585,42.48486],[1.72597,42.50091],[1.70848,42.49005],[1.67228,42.49678],[1.6553,42.46907],[1.58838,42.46429],[1.57639,42.44736],[1.56103,42.45908],[1.54842,42.43229],[1.49573,42.43243],[1.47626,42.43655],[1.45129,42.43763],[1.44018,42.45235],[1.44005,42.47924],[1.41233,42.48438],[1.41684,42.49277],[1.44607,42.49508],[1.46882,42.50983],[1.44351,42.54482],[1.4127,42.53326],[1.42584,42.55459],[1.44173,42.56783],[1.4274,42.58005],[1.44496,42.59425],[1.44054,42.60643],[1.39405,42.67273],[1.35305,42.71883],[1.25564,42.71868],[1.22068,42.72365],[1.17197,42.71045],[1.13529,42.72652],[1.13156,42.75065],[1.08016,42.78882],[1.05337,42.78389],[1.03482,42.78703],[0.98125,42.78926],[0.95649,42.80582],[0.92346,42.79057],[0.86015,42.82657],[0.83368,42.826],[0.80171,42.83953],[0.78173,42.83436],[0.70742,42.86028],[0.65985,42.84769],[0.67474,42.81029],[0.64373,42.78353],[0.66766,42.77289],[0.64214,42.75722],[0.66057,42.74558],[0.68312,42.72083],[0.67546,42.69204],[0.62608,42.69262],[0.60142,42.70329],[0.58638,42.69377],[0.53491,42.70315],[0.51915,42.69435],[0.49583,42.69111],[0.47252,42.70199],[0.4204,42.68743],[0.39708,42.6968],[0.39025,42.71627],[0.37792,42.71454],[0.3601,42.7229],[0.32994,42.70885],[0.32451,42.69681],[0.31771,42.68275],[0.29717,42.67273],[0.26839,42.69602],[0.26159,42.71728],[0.23144,42.71837],[0.18618,42.73661],[0.11252,42.71118],[0.08106,42.71744],[0.05784,42.69746],[0.01676,42.70069],[-0.01058,42.68374],[-0.05783,42.69502],[-0.0691,42.7158],[-0.10783,42.72448],[-0.16114,42.79346],[-0.17875,42.78281],[-0.23424,42.80771],[-0.23919,42.82099],[-0.25814,42.82158],[-0.2771,42.83427],[-0.31995,42.84269],[-0.34326,42.84056],[-0.37755,42.80821],[-0.38783,42.79657],[-0.41459,42.80911],[-0.44065,42.79791],[-0.50649,42.8269],[-0.52295,42.81249],[-0.52293,42.79606],[-0.54076,42.79071],[-0.55585,42.77731],[-0.56983,42.78552],[-0.57008,42.80583],[-0.59804,42.80614],[-0.60178,42.82893],[-0.64534,42.85373],[-0.67792,42.88256],[-0.70157,42.8802],[-0.7285,42.89512],[-0.73346,42.91205],[-0.73102,42.93685],[-0.75055,42.96568],[-0.78075,42.96669],[-0.81094,42.95163],[-0.89332,42.95667],[-0.90703,42.96171],[-0.93517,42.95218],[-0.98357,42.9665],[-1.01548,42.9949],[-1.07038,42.99795],[-1.11425,43.02263],[-1.13895,43.00521],[-1.14717,43.02594],[-1.17049,43.03864],[-1.18045,43.03278],[-1.20877,43.05294],[-1.22885,43.05503],[-1.25443,43.03856],[-1.27176,43.0562],[-1.30558,43.06883],[-1.29776,43.09571],[-1.27073,43.11858],[-1.33073,43.11144],[-1.34578,43.09249],[-1.34161,43.07554],[-1.35249,43.0256],[-1.44445,43.04926],[-1.47324,43.08696],[-1.41688,43.1257],[-1.41499,43.15208],[-1.40168,43.15525],[-1.40211,43.17846],[-1.38184,43.18915],[-1.37975,43.25661],[-1.4102,43.27348],[-1.43504,43.26691],[-1.47361,43.27635],[-1.51505,43.29421],[-1.56198,43.28808],[-1.5621,43.27677],[-1.57046,43.24946],[-1.61452,43.25615],[-1.62969,43.27849],[-1.62288,43.30683],[-1.67999,43.31601],[-1.72886,43.29722],[-1.74211,43.3125],[-1.74162,43.32779],[-1.76263,43.34437],[-1.79187,43.35196],[-1.79001,43.37423],[-1.77717,43.41047],[-3,44],[-13,44]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Egypt#5A", "itu_zone_number": 38 }, "geometry": { "type": "Polygon", "coordinates": [[[34.85369,27.92316],[36.52087,23.83941],[35.62166,23.14851],[35.2079,22.7861],[34.94687,22.85971],[34.81584,22.57721],[34.68756,22.29472],[34.42051,22.24805],[34.14935,22.20393],[34.07868,22.00018],[34.00321,21.77032],[33.55737,21.72439],[33.16646,21.99978],[30.64489,22.00045],[28.0931,22.01895],[25.00004,21.99993],[25.00003,20.00042],[24.00134,19.9996],[23.99966,19.50146],[22.05295,20.51722],[20.07329,21.51239],[15.99997,23.44918],[14.99767,23.00427],[14.1894,22.64545],[13.79011,22.97882],[13.76653,23.0027],[13.61797,23.11379],[13.56143,23.1478],[13.50089,23.1768],[13.41288,23.21085],[12,23.49999],[11.60295,24.26581],[11.42324,24.19938],[11.13152,24.39394],[11.04608,24.4262],[11.02952,24.45552],[10.9855,24.48733],[10.95514,24.52847],[10.9085,24.55253],[10.88108,24.55662],[10.84813,24.567],[10.81519,24.5649],[10.7946,24.54156],[10.79873,24.52822],[10.77129,24.50902],[10.73836,24.5373],[10.72362,24.57057],[10.63472,24.56886],[10.61449,24.57215],[10.60163,24.5613],[10.5888,24.55172],[10.58695,24.53964],[10.56954,24.54046],[10.54965,24.53314],[10.48032,24.5383],[10.43434,24.53347],[10.35265,24.53364],[10.33247,24.56763],[10.30316,24.59213],[10.28757,24.59913],[10.26856,24.61863],[10.21658,24.64812],[10.19894,24.68384],[10.19778,24.6971],[10.13682,24.80751],[10.10908,24.83902],[10.10058,24.87802],[10.07479,24.90936],[10.06464,24.92877],[10.04076,24.95565],[10.02842,25.35397],[9.39967,26.19533],[9.44009,26.24675],[9.50524,26.37698],[9.8635,26.51679],[9.9143,26.6447],[9.90193,26.74314],[9.93075,26.85787],[9.91238,26.86878],[9.90087,26.88337],[9.8928,26.89979],[9.87847,26.90678],[9.86138,26.93091],[9.86078,26.94234],[9.85606,26.95377],[9.83975,27.02068],[9.84052,27.05199],[9.83168,27.06618],[9.83382,27.07975],[9.8291,27.10189],[9.82301,27.11956],[9.81691,27.13357],[9.81846,27.1457],[9.80163,27.16567],[9.80232,27.1829],[9.79614,27.20013],[9.79476,27.22483],[9.78103,27.26418],[9.79407,27.30992],[9.79749,27.34956],[9.7877,27.35145],[9.80263,27.39115],[9.81481,27.40921],[9.81198,27.43865],[9.82013,27.44738],[9.81472,27.45793],[9.82575,27.47112],[9.82854,27.48432],[9.86716,27.50421],[9.86938,27.53079],[9.87985,27.55738],[9.8262,27.55896],[9.81787,27.56662],[9.82396,27.57551],[9.86851,27.58317],[9.89486,27.60908],[9.91764,27.66036],[9.92766,27.67323],[9.92807,27.69705],[9.94506,27.73065],[9.94522,27.84578],[9.96324,27.85888],[9.96632,27.88144],[9.83204,28.29156],[9.9065,28.75004],[9.88056,28.98174],[9.7887,29.40556],[9.54303,29.89505],[9.42019,30.03021],[9.39624,30.16537],[9.95379,30.38572],[10.18176,30.66292],[10.30673,30.86757],[10.28887,31.08164],[10.12133,31.48158],[10.33007,31.73043],[10.53881,31.74551],[10.63563,31.86921],[10.62258,31.90892],[10.65348,31.97193],[10.72833,31.96037],[10.8121,32.01189],[10.88488,32.1193],[11.14169,32.26614],[11.37652,32.32935],[11.5935,32.44655],[11.59625,32.52464],[11.51522,32.59611],[11.48913,32.66757],[11.49462,32.92105],[11.5523,33.12608],[11.56604,33.24828],[13.17828,35.88434],[33.12304,32.49965],[34.21839,31.32427],[34.23548,31.29654],[34.23987,31.29594],[34.33258,31.03998],[34.3676,30.95229],[34.404,30.85782],[34.49783,30.67867],[34.519,30.59181],[34.51667,30.54577],[34.51914,30.53226],[34.55705,30.49459],[34.54218,30.44246],[34.54311,30.41283],[34.61123,30.37103],[34.73673,30.04574],[34.78713,29.90688],[34.84851,29.75849],[34.85688,29.68731],[34.8783,29.64535],[34.87699,29.61394],[34.86676,29.59686],[34.87332,29.57727],[34.8785,29.54395],[34.8847,29.52818],[34.8957,29.51182],[34.90396,29.49366],[34.90191,29.48865],[34.80502,29.13042],[34.47917,28.05488],[34.85457,27.9259]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Oman#A6", "itu_zone_number": 39 }, "geometry": { "type": "Polygon", "coordinates": [[[44.8069,39.62859],[44.80906,39.63907],[44.81563,39.6414],[44.81858,39.64997],[44.8174,39.6543],[44.81353,39.65702],[44.80622,39.65498],[44.79848,39.65724],[44.79941,39.6618],[44.80309,39.66479],[44.80746,39.66988],[44.80633,39.67339],[44.79518,39.66822],[44.8031,39.68442],[44.78783,39.68368],[44.78586,39.68819],[44.78733,39.69165],[44.7834,39.69425],[44.7781,39.70267],[44.77674,39.70351],[44.77195,39.7017],[44.76304,39.70338],[44.76597,39.70765],[44.77028,39.71193],[44.76789,39.71625],[44.75597,39.71292],[44.75022,39.71541],[44.74887,39.72359],[44.74409,39.73124],[44.74482,39.74338],[44.738,39.74522],[44.73544,39.74502],[44.73081,39.7406],[44.72431,39.74125],[44.7156,39.75418],[44.71101,39.76974],[44.69921,39.77291],[44.69085,39.76973],[44.68598,39.77443],[44.68729,39.78229],[44.69477,39.78646],[44.69746,39.79062],[44.69321,39.79526],[44.68415,39.79726],[44.67952,39.78734],[44.66871,39.79191],[44.65721,39.79069],[44.64949,39.80068],[44.63421,39.80592],[44.62924,39.81248],[44.62236,39.81335],[44.61548,39.81264],[44.61134,39.81491],[44.62091,39.82103],[44.61877,39.82589],[44.61379,39.82833],[44.60195,39.82181],[44.59221,39.82795],[44.58865,39.8341],[44.59389,39.84165],[44.59617,39.84885],[44.59226,39.85815],[44.58239,39.86254],[44.57609,39.86255],[44.56498,39.86995],[44.55202,39.88526],[44.55314,39.9011],[44.55083,39.90587],[44.5445,39.907],[44.53541,39.92129],[44.52173,39.92157],[44.5154,39.92909],[44.50675,39.93259],[44.5029,39.93661],[44.50175,39.94448],[44.4951,39.94866],[44.49326,39.95732],[44.48044,39.9665],[44.46749,39.97197],[44.45758,39.9705],[44.45386,39.97165],[44.45191,39.97808],[44.44613,39.98274],[44.4376,39.98424],[44.42879,39.99093],[44.41655,40.00288],[44.40945,40.0047],[44.40235,40.00284],[44.39503,40.00596],[44.38427,40.00424],[44.37579,40.0089],[44.35926,40.01895],[44.35396,40.02679],[44.34101,40.02698],[44.33822,40.03105],[44.33559,40.03249],[44.32965,40.03134],[44.32405,40.03191],[44.31853,40.03856],[44.30965,40.0397],[44.30057,40.03698],[44.29854,40.03741],[44.29507,40.04329],[44.29195,40.04364],[44.28565,40.04351],[44.27969,40.04909],[44.27333,40.04957],[44.26594,40.04795],[44.25597,40.04774],[44.25193,40.04914],[44.24462,40.04726],[44.23942,40.04774],[44.23405,40.04731],[44.23171,40.04489],[44.22885,40.04287],[44.22595,40.04403],[44.2227,40.04441],[44.21832,40.04024],[44.21784,40.0373],[44.21548,40.03528],[44.21191,40.03547],[44.20634,40.03723],[44.20129,40.03978],[44.1977,40.04027],[44.19311,40.04007],[44.19091,40.03909],[44.1893,40.03572],[44.18872,40.03169],[44.18635,40.03008],[44.17976,40.03044],[44.17398,40.02819],[44.17058,40.02916],[44.167,40.03106],[44.15424,40.03149],[44.14233,40.0327],[44.13852,40.03228],[44.13557,40.03094],[44.13172,40.02971],[44.12949,40.03032],[44.12332,40.03423],[44.11973,40.03493],[44.11528,40.0336],[44.10808,40.02964],[44.08253,40.03361],[44.04945,40.02986],[44.01637,40.02295],[43.99497,40.0313],[43.97877,40.02916],[43.97342,40.0202],[43.96669,40.01861],[43.93298,40.02353],[43.89377,40.02318],[43.85526,40.04125],[43.83459,40.04774],[43.82482,40.04819],[43.82329,40.05915],[43.80939,40.06118],[43.79421,40.06902],[43.78589,40.06846],[43.76054,40.08288],[43.74965,40.07913],[43.74131,40.08283],[43.73022,40.07811],[43.71079,40.08129],[43.69252,40.09606],[43.67658,40.09722],[43.67217,40.10901],[43.65648,40.11158],[43.65123,40.12883],[43.65011,40.14503],[43.66958,40.15703],[43.71377,40.16273],[43.71351,40.17171],[43.70088,40.17859],[43.69623,40.19026],[43.66426,40.21202],[43.65427,40.22643],[43.66543,40.2294],[43.68072,40.22504],[43.67987,40.25972],[43.66391,40.27029],[43.65227,40.26856],[43.63311,40.28081],[43.63593,40.29202],[43.62841,40.29711],[43.62671,40.30436],[43.62089,40.30952],[43.59094,40.346],[43.5963,40.35532],[43.59754,40.36465],[43.60414,40.37388],[43.60662,40.38521],[43.61734,40.39026],[43.61955,40.39565],[43.61352,40.4136],[43.61963,40.4174],[43.60793,40.43522],[43.58663,40.44675],[43.57013,40.45934],[43.56119,40.45884],[43.54677,40.46879],[43.544,40.47719],[43.55635,40.48244],[43.55771,40.49395],[43.56869,40.49607],[43.57417,40.50445],[43.58789,40.50659],[43.59996,40.51146],[43.60447,40.5158],[43.61002,40.51519],[43.62,40.52506],[43.62739,40.52348],[43.6238,40.51928],[43.63366,40.51917],[43.63955,40.52383],[43.63742,40.52709],[43.63255,40.52878],[43.6276,40.53685],[43.63381,40.54023],[43.63623,40.53436],[43.64139,40.53683],[43.64364,40.53291],[43.64579,40.53094],[43.65001,40.53055],[43.65107,40.53784],[43.6453,40.54452],[43.64262,40.55406],[43.64174,40.55684],[43.64359,40.56171],[43.65789,40.56502],[43.66452,40.56433],[43.67397,40.56815],[43.66831,40.57249],[43.67142,40.57699],[43.67762,40.57714],[43.68455,40.58473],[43.68466,40.5926],[43.70411,40.61097],[43.70731,40.6182],[43.70777,40.62542],[43.7144,40.63187],[43.72104,40.63467],[43.71765,40.64255],[43.71908,40.6546],[43.73046,40.66366],[43.73478,40.66115],[43.73591,40.66708],[43.74196,40.66692],[43.74459,40.66989],[43.74067,40.67602],[43.74704,40.67434],[43.7493,40.67735],[43.7458,40.68276],[43.73922,40.68948],[43.74665,40.69927],[43.7459,40.70519],[43.74308,40.70382],[43.74157,40.70837],[43.73718,40.71278],[43.74008,40.71848],[43.74709,40.72523],[43.74687,40.73428],[43.74504,40.73672],[43.74458,40.74046],[43.74299,40.74157],[43.74276,40.74347],[43.74076,40.74545],[43.74048,40.74874],[43.73888,40.74933],[43.73637,40.7565],[43.73518,40.75752],[43.73537,40.75907],[43.73128,40.7619],[43.73202,40.76289],[43.73007,40.76537],[43.72995,40.77117],[43.728,40.77406],[43.72606,40.77566],[43.72354,40.78262],[43.72498,40.78402],[43.72437,40.78671],[43.72245,40.78715],[43.72225,40.78928],[43.72308,40.79037],[43.72185,40.79228],[43.72027,40.79289],[43.71885,40.79618],[43.71667,40.80329],[43.71364,40.80429],[43.7099,40.81051],[43.71061,40.81231],[43.70844,40.81436],[43.70627,40.8203],[43.69912,40.82767],[43.69574,40.82906],[43.69406,40.83107],[43.69238,40.83464],[43.68867,40.83528],[43.67885,40.84487],[43.67726,40.84719],[43.68079,40.85682],[43.68053,40.86593],[43.67766,40.86887],[43.67582,40.8718],[43.6756,40.87346],[43.6764,40.87539],[43.67527,40.87898],[43.67483,40.88244],[43.6737,40.88642],[43.67673,40.89404],[43.67696,40.89578],[43.67638,40.89796],[43.68112,40.90261],[43.68071,40.90388],[43.6793,40.90502],[43.67651,40.90876],[43.67231,40.91001],[43.66939,40.91173],[43.66958,40.91346],[43.67079,40.91624],[43.67166,40.91902],[43.67356,40.92024],[43.67358,40.92163],[43.67154,40.92304],[43.67425,40.9279],[43.67626,40.93018],[43.67181,40.9367],[43.6363,40.95978],[43.59873,40.9826],[43.59241,40.98572],[43.58598,40.98663],[43.58225,40.98968],[43.57953,40.9912],[43.57818,40.99324],[43.57413,40.99336],[43.5718,40.99296],[43.56827,40.9934],[43.56439,40.99267],[43.5616,40.99383],[43.55674,40.99448],[43.55562,40.99577],[43.55364,40.99602],[43.55166,40.99783],[43.54545,40.99935],[43.54215,41.00141],[43.53988,41.00372],[43.53672,41.00549],[43.52456,41.01267],[43.51672,41.01484],[43.50688,41.01194],[43.49894,41.01518],[43.4948,41.01577],[43.49221,41.01632],[43.48783,41.01647],[43.48448,41.01609],[43.4683,41.03112],[43.46922,41.04699],[43.47152,41.06725],[43.46886,41.07002],[43.46493,41.07181],[43.46066,41.07282],[43.45865,41.07459],[43.45835,41.07966],[43.457,41.08233],[43.45667,41.08473],[43.4526,41.08669],[43.44989,41.08711],[43.44749,41.09233],[43.44715,41.09467],[43.44766,41.09727],[43.44715,41.09936],[43.45281,41.10652],[43.45642,41.10929],[43.45754,41.11262],[43.459,41.11983],[43.46638,41.12183],[43.47411,41.12306],[43.46159,41.15197],[43.44872,41.17597],[43.4295,41.18207],[43.41164,41.18662],[43.40574,41.19014],[43.39984,41.19289],[43.38461,41.19993],[43.37577,41.20318],[43.3701,41.20217],[43.36691,41.20344],[43.35993,41.20174],[43.35526,41.20144],[43.35174,41.20265],[43.34217,41.20209],[43.33775,41.20076],[43.33028,41.20093],[43.32882,41.20015],[43.32702,41.19859],[43.32238,41.19573],[43.31749,41.19469],[43.315,41.19364],[43.31028,41.19157],[43.30775,41.19092],[43.30522,41.18949],[43.30235,41.19031],[43.29914,41.18931],[43.29374,41.18965],[43.28878,41.18696],[43.2823,41.18674],[43.27222,41.18356],[43.26351,41.1796],[43.25634,41.17894],[43.25344,41.17757],[43.24942,41.17715],[43.24677,41.17724],[43.24439,41.17639],[43.24201,41.17451],[43.23945,41.17521],[43.2356,41.17582],[43.23312,41.17566],[43.23076,41.17308],[43.22908,41.17465],[43.23273,41.17763],[43.23775,41.18371],[43.23138,41.191],[43.2142,41.21564],[43.20233,41.23163],[43.20091,41.23453],[43.1988,41.24621],[43.19459,41.25381],[43.19193,41.253],[43.18339,41.25428],[43.17554,41.25451],[43.17409,41.25248],[43.16748,41.24941],[43.1632,41.24972],[43.15609,41.24626],[43.15253,41.24544],[43.14989,41.24683],[43.14725,41.2459],[43.1449,41.24661],[43.14014,41.25041],[43.13508,41.25259],[43.13226,41.25207],[43.12772,41.25309],[43.13307,41.25703],[43.13814,41.25783],[43.14051,41.25682],[43.14135,41.25747],[43.14057,41.25857],[43.1415,41.25967],[43.14721,41.262],[43.14949,41.26149],[43.15211,41.26227],[43.15607,41.26771],[43.16028,41.26843],[43.16346,41.27018],[43.16879,41.27266],[43.17398,41.27145],[43.17611,41.27317],[43.17718,41.27312],[43.17893,41.2723],[43.18072,41.27324],[43.18,41.27573],[43.18472,41.27713],[43.18528,41.27925],[43.18687,41.2806],[43.19035,41.28227],[43.1928,41.28446],[43.1977,41.28574],[43.20019,41.2846],[43.20268,41.28528],[43.20355,41.28687],[43.20741,41.28768],[43.20956,41.28899],[43.21317,41.28956],[43.21147,41.29764],[43.21543,41.29884],[43.2157,41.30034],[43.21274,41.30419],[43.2139,41.30572],[43.2124,41.30639],[43.20512,41.30545],[43.20288,41.30605],[43.20097,41.30794],[43.19819,41.30862],[43.18897,41.3044],[43.18313,41.30452],[43.18074,41.30619],[43.16599,41.309],[43.16307,41.31092],[43.16119,41.31465],[43.1588,41.31566],[43.15603,41.31634],[43.15086,41.31613],[43.14292,41.31711],[43.13665,41.31857],[43.13269,41.32049],[43.12711,41.32712],[43.12565,41.32963],[43.11254,41.34297],[43.11249,41.3455],[43.10936,41.34958],[43.09526,41.35717],[43.09131,41.35859],[43.08598,41.35872],[43.07877,41.36206],[43.07705,41.36245],[43.07498,41.36464],[43.072,41.36469],[43.06741,41.36497],[43.06489,41.36602],[43.06063,41.36637],[43.05875,41.36965],[43.05515,41.37292],[43.04572,41.37594],[43.04075,41.3769],[43.0351,41.3725],[43.03151,41.37093],[43.01853,41.37557],[43.02168,41.37917],[43.02026,41.38127],[43.01781,41.38543],[43.01428,41.38937],[43.01099,41.39623],[43.0065,41.39755],[43.0039,41.40659],[42.99595,41.40884],[42.98954,41.41135],[42.98788,41.41232],[42.98794,41.41458],[42.99012,41.41601],[42.99,41.42402],[42.97716,41.42784],[42.97221,41.43062],[42.97042,41.43072],[42.96692,41.43391],[42.96805,41.43749],[42.97072,41.44171],[42.96792,41.45117],[42.96048,41.45183],[42.95333,41.45383],[42.9503,41.45532],[42.94332,41.45715],[42.936,41.46461],[42.93186,41.46384],[42.92901,41.46674],[42.93183,41.46899],[42.92957,41.47131],[42.92817,41.47094],[42.92368,41.47365],[42.92054,41.47369],[42.91287,41.47632],[42.91076,41.47616],[42.90695,41.4775],[42.90555,41.47677],[42.89892,41.47902],[42.89887,41.48113],[42.89746,41.48349],[42.89668,41.48693],[42.89891,41.4879],[42.89889,41.49008],[42.89921,41.49728],[42.90108,41.49973],[42.90054,41.50089],[42.89839,41.50097],[42.89179,41.50285],[42.88622,41.50242],[42.88373,41.50327],[42.87706,41.50333],[42.8666,41.49642],[42.86523,41.49425],[42.86283,41.49208],[42.86281,41.48926],[42.86073,41.48077],[42.85863,41.47898],[42.85752,41.47694],[42.85882,41.47555],[42.8574,41.47292],[42.85618,41.4716],[42.85118,41.47003],[42.84964,41.47342],[42.84638,41.47294],[42.84054,41.47556],[42.83848,41.47663],[42.83608,41.47782],[42.8323,41.47789],[42.82844,41.48063],[42.82389,41.48619],[42.82028,41.48883],[42.81295,41.49141],[42.80904,41.49348],[42.80575,41.49332],[42.80314,41.4947],[42.80102,41.4967],[42.80192,41.49966],[42.80163,41.50064],[42.80133,41.50265],[42.80349,41.50435],[42.80439,41.50673],[42.8044,41.5085],[42.8008,41.51208],[42.79652,41.51618],[42.80176,41.52381],[42.80439,41.52686],[42.80539,41.52865],[42.8057,41.53043],[42.80701,41.53221],[42.80937,41.53314],[42.81139,41.53509],[42.81326,41.53542],[42.81479,41.5373],[42.81715,41.53925],[42.81734,41.54196],[42.81924,41.54467],[42.81824,41.54881],[42.81899,41.55297],[42.82152,41.55641],[42.82387,41.55638],[42.82677,41.55765],[42.82829,41.55712],[42.83002,41.55881],[42.83003,41.56261],[42.83107,41.56461],[42.834,41.56718],[42.83247,41.56951],[42.83489,41.57132],[42.83507,41.57358],[42.83319,41.57481],[42.83407,41.57701],[42.83374,41.5805],[42.83599,41.58475],[42.83299,41.58554],[42.82964,41.58734],[42.82046,41.58761],[42.81574,41.58865],[42.79292,41.58856],[42.79292,41.58656],[42.78709,41.58555],[42.78245,41.58325],[42.78181,41.58004],[42.7822,41.57735],[42.78057,41.57684],[42.77825,41.57703],[42.77558,41.57824],[42.77356,41.58007],[42.77223,41.58266],[42.76888,41.58503],[42.76268,41.58629],[42.75219,41.58536],[42.74939,41.58815],[42.74782,41.58865],[42.74694,41.59017],[42.74032,41.596],[42.736,41.59654],[42.73099,41.59607],[42.72221,41.59533],[42.71239,41.59537],[42.70546,41.59839],[42.69854,41.60064],[42.69173,41.59984],[42.68768,41.59903],[42.68369,41.59972],[42.65924,41.59264],[42.62543,41.58798],[42.60107,41.58508],[42.59125,41.57354],[42.57593,41.56534],[42.57617,41.56369],[42.57366,41.55792],[42.57612,41.55472],[42.57959,41.54554],[42.58065,41.54304],[42.57638,41.53959],[42.57476,41.53555],[42.57069,41.53378],[42.56937,41.53305],[42.56819,41.52844],[42.56392,41.52588],[42.56729,41.52069],[42.56757,41.51755],[42.57002,41.51509],[42.57248,41.51133],[42.57259,41.50974],[42.57041,41.50797],[42.56572,41.50837],[42.56068,41.50722],[42.55719,41.50434],[42.55644,41.49992],[42.55358,41.49828],[42.54933,41.49876],[42.54508,41.49321],[42.54239,41.49291],[42.53729,41.49133],[42.53225,41.49125],[42.52836,41.48353],[42.52549,41.47864],[42.51805,41.47657],[42.51455,41.47411],[42.51208,41.47165],[42.51299,41.46543],[42.51561,41.4628],[42.5164,41.46013],[42.51831,41.45915],[42.51668,41.45801],[42.51677,41.4561],[42.52142,41.45303],[42.5204,41.44933],[42.52092,41.44667],[42.52453,41.44401],[42.52333,41.44212],[42.52136,41.43808],[42.52007,41.43636],[42.51182,41.44003],[42.50803,41.44023],[42.50663,41.44165],[42.5055,41.44081],[42.503,41.44049],[42.49484,41.44519],[42.49216,41.44552],[42.49111,41.44423],[42.48937,41.44038],[42.48661,41.44122],[42.48179,41.43768],[42.47903,41.43865],[42.47611,41.43862],[42.4719,41.43564],[42.46941,41.43575],[42.46545,41.43727],[42.46183,41.43646],[42.45959,41.43811],[42.457,41.43924],[42.45146,41.4386],[42.44853,41.4386],[42.44792,41.4404],[42.44594,41.44169],[42.4394,41.4417],[42.43766,41.44376],[42.4342,41.44402],[42.42905,41.44807],[42.4239,41.45316],[42.41566,41.4587],[42.41188,41.45831],[42.40587,41.46353],[42.39986,41.46617],[42.3923,41.46592],[42.38543,41.46361],[42.38302,41.46749],[42.37151,41.46454],[42.35992,41.46615],[42.355,41.46934],[42.35007,41.47047],[42.34125,41.47146],[42.32979,41.46828],[42.32609,41.47189],[42.32012,41.47705],[42.31484,41.48066],[42.30427,41.48247],[42.29315,41.48955],[42.29125,41.48819],[42.28385,41.49351],[42.27729,41.49284],[42.27245,41.49397],[42.26761,41.49149],[42.26203,41.49144],[42.25644,41.49498],[42.2494,41.49436],[42.24158,41.49392],[42.23596,41.49704],[42.22896,41.4981],[42.22595,41.49869],[42.21971,41.49562],[42.21384,41.49615],[42.21071,41.49461],[42.20852,41.49157],[42.20285,41.49128],[42.19933,41.49809],[42.19444,41.50746],[42.18654,41.50936],[42.17829,41.51461],[42.1666,41.51144],[42.15831,41.50663],[42.14762,41.50567],[42.13654,41.50787],[42.13051,41.50502],[42.12173,41.50628],[42.11859,41.50879],[42.11153,41.51185],[42.10653,41.50874],[42.10221,41.50665],[42.09731,41.50947],[42.0924,41.51023],[42.08506,41.51033],[42.06765,41.50421],[42.06239,41.50064],[42.05632,41.49834],[42.05162,41.49809],[42.04668,41.4946],[42.04078,41.4935],[42.03144,41.49471],[42.0286,41.49968],[42.01562,41.50201],[42.00607,41.50229],[42.00167,41.50488],[41.9952,41.50439],[41.99311,41.50637],[41.99033,41.51247],[41.99232,41.51439],[41.9915,41.51668],[41.98794,41.51871],[41.98506,41.52229],[41.98012,41.52291],[41.9738,41.52147],[41.96255,41.52477],[41.95484,41.52328],[41.95287,41.52101],[41.94942,41.51843],[41.94752,41.51727],[41.94587,41.51736],[41.94354,41.51642],[41.94024,41.51402],[41.94038,41.51297],[41.93859,41.51073],[41.93336,41.50872],[41.92847,41.50849],[41.92445,41.50697],[41.91754,41.50119],[41.91487,41.50102],[41.91357,41.49982],[41.91064,41.49896],[41.91009,41.4948],[41.90714,41.49212],[41.89973,41.48853],[41.89881,41.48613],[41.89754,41.48397],[41.89529,41.48179],[41.89235,41.47987],[41.89665,41.47608],[41.89515,41.47487],[41.89314,41.47442],[41.88992,41.47276],[41.88756,41.47187],[41.88696,41.4697],[41.88413,41.46753],[41.88345,41.46568],[41.88362,41.46358],[41.88156,41.46032],[41.87814,41.45886],[41.87661,41.45868],[41.87251,41.45705],[41.87033,41.45687],[41.86702,41.45501],[41.86406,41.45431],[41.85913,41.45251],[41.85677,41.45174],[41.85482,41.45081],[41.85287,41.44937],[41.84765,41.44873],[41.84656,41.44822],[41.84665,41.44418],[41.84563,41.44098],[41.83996,41.43799],[41.83362,41.43565],[41.83248,41.43519],[41.83014,41.43524],[41.82677,41.43362],[41.82349,41.43097],[41.82249,41.43245],[41.81821,41.4328],[41.81461,41.43392],[41.81223,41.43668],[41.81226,41.43996],[41.80782,41.44324],[41.80578,41.44652],[41.80117,41.44793],[41.79518,41.44728],[41.79057,41.44874],[41.78871,41.4502],[41.78936,41.45211],[41.78898,41.45427],[41.78718,41.45578],[41.78738,41.46032],[41.786,41.46101],[41.78393,41.46143],[41.78151,41.4625],[41.77567,41.46356],[41.77425,41.46063],[41.77008,41.46207],[41.769,41.46376],[41.76537,41.46461],[41.75693,41.46751],[41.75551,41.46972],[41.7534,41.47038],[41.7506,41.47002],[41.74671,41.47112],[41.74316,41.47068],[41.73951,41.47212],[41.73825,41.47137],[41.73219,41.47293],[41.72763,41.47194],[41.71825,41.47379],[41.71634,41.47335],[41.7134,41.47419],[41.71062,41.47349],[41.70751,41.47408],[41.70944,41.47697],[41.71344,41.47883],[41.71475,41.48169],[41.71468,41.48506],[41.71765,41.48949],[41.71457,41.49288],[41.70977,41.49628],[41.70512,41.496],[41.70048,41.49443],[41.69927,41.493],[41.69737,41.49156],[41.69461,41.49051],[41.69048,41.48792],[41.68566,41.48685],[41.68236,41.48805],[41.67882,41.48697],[41.67425,41.48384],[41.67142,41.48418],[41.66517,41.48247],[41.66136,41.4841],[41.65821,41.4845],[41.65498,41.48548],[41.65184,41.48505],[41.64972,41.48545],[41.6476,41.48517],[41.6436,41.48667],[41.64188,41.48632],[41.64027,41.4864],[41.63874,41.48674],[41.6367,41.48648],[41.63337,41.48685],[41.62845,41.49022],[41.62808,41.49231],[41.62592,41.49298],[41.6226,41.49657],[41.62198,41.49946],[41.61929,41.50081],[41.61528,41.50196],[41.61114,41.50189],[41.60631,41.50387],[41.60214,41.50397],[41.59618,41.50704],[41.59125,41.50813],[41.5869,41.50816],[41.58427,41.50896],[41.58252,41.5103],[41.58163,41.51165],[41.58177,41.51426],[41.57795,41.51727],[41.57204,41.5198],[41.56518,41.51918],[41.56134,41.51956],[41.55774,41.5183],[41.555,41.51809],[41.55225,41.51879],[41.54865,41.52018],[41.54676,41.52038],[41.49877,41.53332],[30,43.5],[30,42],[28.02544,41.97996],[27.91427,41.98153],[27.86142,42.00273],[27.81715,41.99087],[27.8333,41.94838],[27.73036,41.97957],[27.58551,41.93491],[27.57488,41.92177],[27.56975,41.9025],[27.5429,41.9152],[27.51056,41.95652],[27.49256,41.94924],[27.43886,41.97466],[27.39615,42.00824],[27.36977,42.05601],[27.34148,42.05951],[27.29849,42.09489],[27.23628,42.10582],[27.20929,42.09128],[27.20428,42.06247],[27.13932,42.06398],[27.10869,42.08383],[27.06433,42.09145],[27.01873,42.07913],[27.0264,42.05855],[26.9923,42.03372],[26.97056,42.00022],[26.93557,41.99922],[26.90058,41.98801],[26.86866,41.98649],[26.84499,41.97068],[26.82236,41.97377],[26.78677,41.9861],[26.75135,41.95914],[26.6253,41.97507],[26.5627,41.92727],[26.58113,41.90296],[26.57112,41.88673],[26.57572,41.87247],[26.56292,41.85717],[26.55012,41.848],[26.53944,41.82431],[26.37084,41.82314],[26.32515,41.74416],[26.35087,41.71434],[26.39275,41.68964],[26.43463,41.68545],[26.49366,41.66476],[26.48814,41.6521],[26.53068,41.62201],[26.56706,41.61312],[26.59245,41.61039],[26.59956,41.58097],[26.59214,41.56737],[26.59571,41.52501],[26.60285,41.48344],[26.61438,41.46407],[26.61273,41.42331],[26.6303,41.41965],[26.63771,41.37971],[26.62315,41.34183],[26.58769,41.32086],[26.54249,41.34029],[26.49792,41.32628],[26.47151,41.29348],[26.39841,41.25035],[26.32611,41.25532],[26.31331,41.17412],[26.33163,41.14701],[26.30783,41.11486],[26.33301,41.10811],[26.31264,41.07472],[26.33158,41.04385],[26.367,41.02023],[26.35175,40.99702],[26.32277,40.98003],[26.34868,40.96437],[26.36086,40.94146],[26.32205,40.94541],[26.30514,40.92817],[26.29055,40.93312],[26.27784,40.92641],[26.29912,40.90262],[26.284,40.89033],[26.26064,40.91645],[26.24896,40.88383],[26.22527,40.88622],[26.22304,40.86872],[26.21094,40.85997],[26.21312,40.84417],[26.20433,40.8263],[26.16586,40.81246],[26.1274,40.7716],[26.12188,40.74187],[26.07509,40.729],[26.03643,40.72824],[25.58284,40.11726],[26.08451,39.41639],[26.49005,39.40783],[26.73355,38.97176],[26.30455,38.66595],[26.32076,38.44329],[26.17643,38.2822],[27.13561,37.79187],[27.09334,37.70565],[26.95995,37.67625],[27.20893,37.14941],[27.22686,36.95396],[27.43454,36.86791],[27.3159,36.66434],[27.53398,36.61334],[27.84627,36.69365],[27.96671,36.53534],[28.51287,36.5339],[29.34707,36.21821],[29.58839,36.17786],[29.67334,36.12332],[30,36],[30,33.03857],[33.12304,32.49965],[34.21839,31.32427],[34.23548,31.29654],[34.23987,31.29594],[34.33258,31.03998],[34.3676,30.95229],[34.404,30.85782],[34.49783,30.67867],[34.519,30.59181],[34.51667,30.54577],[34.51914,30.53226],[34.55705,30.49459],[34.54218,30.44246],[34.54311,30.41283],[34.61123,30.37103],[34.73673,30.04574],[34.78713,29.90688],[34.84851,29.75849],[34.85688,29.68731],[34.8783,29.64535],[34.87699,29.61394],[34.86676,29.59686],[34.87332,29.57727],[34.8785,29.54395],[34.8847,29.52818],[34.8957,29.51182],[34.90396,29.49366],[34.90191,29.48865],[34.80502,29.13042],[34.47917,28.05488],[34.85457,27.9259],[34.85369,27.92316],[36.52087,23.83941],[42.64797,13.47029],[44.32215,11.48006],[60,15],[60,24],[57.35314,25.2439],[56.44213,26.57008],[54.35644,25.55673],[51.08593,27.41514],[48.61398,29.9301],[48.58453,29.94523],[48.51556,29.96008],[48.45689,29.99635],[48.44801,30.0121],[48.44734,30.03751],[48.44393,30.0647],[48.43027,30.08312],[48.40434,30.10094],[48.37909,30.12174],[48.38363,30.13332],[48.3923,30.14135],[48.40885,30.15917],[48.41855,30.17937],[48.412,30.19722],[48.37662,30.22709],[48.34399,30.25934],[48.30965,30.29751],[48.27187,30.33568],[48.25926,30.3393],[48.24734,30.33996],[48.24125,30.33587],[48.23791,30.33001],[48.2278,30.32065],[48.21494,30.31485],[48.20654,30.31691],[48.19952,30.32074],[48.19303,30.33196],[48.18279,30.37986],[48.18148,30.39755],[48.16616,30.42434],[48.16045,30.42862],[48.13495,30.44312],[48.10915,30.45058],[48.10808,30.4542],[48.0715,30.46114],[48.04428,30.47416],[48.02565,30.478],[48.02983,30.73794],[48.0323,30.99642],[47.68271,30.99754],[47.68322,31.39389],[47.8662,31.78351],[47.85609,31.80479],[47.85666,31.80652],[47.8567,31.80774],[47.85658,31.80909],[47.85662,31.81044],[47.85617,31.81126],[47.8562,31.8122],[47.8561,31.81396],[47.85615,31.81544],[47.85554,31.81627],[47.85525,31.81722],[47.8548,31.81776],[47.85403,31.81845],[47.85247,31.81942],[47.85108,31.82026],[47.84795,31.82153],[47.84669,31.82169],[47.84576,31.82224],[47.84529,31.82239],[47.84466,31.82267],[47.84359,31.82257],[47.82526,31.83257],[47.82492,31.83394],[47.82525,31.83448],[47.82531,31.8365],[47.82516,31.83691],[47.82471,31.83759],[47.82394,31.83814],[47.82272,31.83951],[47.82194,31.84007],[47.82164,31.84048],[47.82136,31.84069],[47.82102,31.84103],[47.82106,31.84096],[47.82034,31.84084],[47.81998,31.84035],[47.81879,31.84039],[47.81815,31.84013],[47.81751,31.84001],[47.81671,31.83989],[47.81592,31.84004],[47.81547,31.84059],[47.81471,31.84168],[47.81456,31.84209],[47.81411,31.84263],[47.81348,31.84305],[47.81286,31.84319],[47.81191,31.84321],[47.81113,31.84349],[47.8097,31.84352],[47.80876,31.84367],[47.80784,31.84342],[47.80704,31.84309],[47.80637,31.84257],[47.8059,31.84331],[47.80595,31.84493],[47.80612,31.84534],[47.80645,31.84587],[47.80631,31.84655],[47.80569,31.8471],[47.80543,31.84886],[47.80531,31.85007],[47.80485,31.85062],[47.80425,31.85158],[47.80302,31.85268],[47.80241,31.85364],[47.80196,31.85432],[47.8012,31.85528],[47.79998,31.8559],[47.79984,31.85746],[47.79991,31.85989],[47.79981,31.86151],[47.79983,31.86232],[47.80017,31.86312],[47.80036,31.8642],[47.80039,31.86488],[47.80024,31.86542],[47.80057,31.86582],[47.8006,31.86663],[47.80003,31.86731],[47.79933,31.8678],[47.79804,31.86813],[47.79817,31.86883],[47.79863,31.8695],[47.79959,31.86988],[47.80149,31.86985],[47.80276,31.86997],[47.80387,31.86995],[47.80516,31.87074],[47.80599,31.87194],[47.80617,31.87261],[47.80651,31.87355],[47.80685,31.87408],[47.80766,31.87488],[47.80862,31.87513],[47.80926,31.87525],[47.80942,31.87539],[47.80943,31.87566],[47.80913,31.8762],[47.80884,31.87715],[47.80871,31.87797],[47.80873,31.87864],[47.80895,31.87951],[47.8093,31.88039],[47.80986,31.88078],[47.80995,31.88105],[47.80998,31.88146],[47.81014,31.88206],[47.81012,31.88267],[47.80922,31.88309],[47.80867,31.88296],[47.80781,31.88338],[47.80683,31.88367],[47.80463,31.88566],[47.80376,31.88568],[47.80313,31.88583],[47.80179,31.88598],[47.80088,31.88593],[47.79977,31.88608],[47.79835,31.88611],[47.79694,31.8864],[47.79547,31.88663],[47.79332,31.88727],[47.79238,31.88783],[47.79155,31.88784],[47.79076,31.88793],[47.78887,31.88757],[47.78845,31.88857],[47.78752,31.8894],[47.78709,31.89062],[47.78649,31.89171],[47.78591,31.89348],[47.78628,31.89536],[47.78632,31.89644],[47.78602,31.89712],[47.78511,31.89713],[47.78415,31.89688],[47.78331,31.89674],[47.78334,31.8977],[47.78354,31.89905],[47.78331,31.90702],[47.78334,31.90797],[47.78306,31.90905],[47.78201,31.90967],[47.78087,31.91003],[47.77976,31.91005],[47.77884,31.90959],[47.77815,31.909],[47.77767,31.90887],[47.77687,31.90889],[47.77621,31.9091],[47.77579,31.90958],[47.77517,31.90999],[47.77439,31.91041],[47.77391,31.91042],[47.77311,31.91003],[47.77216,31.91004],[47.77154,31.91059],[47.77077,31.91142],[47.76969,31.91238],[47.76875,31.91253],[47.76752,31.91255],[47.76648,31.91223],[47.76526,31.91229],[47.76497,31.91327],[47.76439,31.91375],[47.76342,31.91424],[47.76182,31.91373],[47.76116,31.9132],[47.76053,31.91321],[47.75976,31.9139],[47.75867,31.91445],[47.75744,31.91556],[47.75587,31.91626],[47.75541,31.91667],[47.75435,31.91817],[47.7531,31.919],[47.75201,31.91956],[47.75029,31.92013],[47.74918,31.92087],[47.74842,31.92163],[47.74776,31.92174],[47.74759,31.92267],[47.74881,31.92345],[47.749,31.92432],[47.74832,31.92528],[47.74695,31.92647],[47.74549,31.92786],[47.74441,31.92863],[47.74356,31.92885],[47.74304,31.92868],[47.74261,31.92901],[47.74196,31.92862],[47.7411,31.92891],[47.74028,31.93022],[47.73843,31.93344],[47.7357,31.93668],[47.7341,31.93821],[47.73348,31.9387],[47.73301,31.93871],[47.73267,31.93817],[47.73164,31.938],[47.73063,31.93877],[47.72995,31.93959],[47.72915,31.94007],[47.72904,31.94063],[47.72962,31.94116],[47.73034,31.94148],[47.73016,31.9427],[47.72962,31.94319],[47.72942,31.9442],[47.73034,31.94533],[47.7307,31.9464],[47.73034,31.94749],[47.72945,31.94893],[47.72878,31.9501],[47.72768,31.95229],[47.72771,31.95297],[47.72798,31.95391],[47.7281,31.95478],[47.72751,31.95601],[47.72614,31.95753],[47.72594,31.95835],[47.72596,31.95903],[47.72609,31.96017],[47.72644,31.96118],[47.72656,31.96219],[47.72568,31.96397],[47.72475,31.96453],[47.7242,31.96448],[47.72271,31.96492],[47.7201,31.96525],[47.71885,31.96555],[47.71775,31.96599],[47.71595,31.9665],[47.71528,31.96753],[47.71437,31.96864],[47.7126,31.97003],[47.71168,31.9708],[47.71165,31.97118],[47.71135,31.97256],[47.7119,31.97431],[47.71173,31.97397],[47.71196,31.97593],[47.71331,31.97799],[47.71442,31.97986],[47.71582,31.98131],[47.71725,31.98337],[47.71785,31.98464],[47.71776,31.98563],[47.71749,31.98742],[47.71626,31.98853],[47.71582,31.98942],[47.71554,31.99045],[47.71517,31.99106],[47.71449,31.99175],[47.71426,31.99217],[47.71387,31.99313],[47.71352,31.99333],[47.71255,31.99302],[47.71165,31.99236],[47.71037,31.99199],[47.70978,31.99106],[47.70942,31.9909],[47.70868,31.99129],[47.70816,31.99218],[47.70797,31.99333],[47.70767,31.99388],[47.70713,31.9943],[47.70643,31.99459],[47.70581,31.99479],[47.70558,31.99528],[47.70674,31.99634],[47.70795,31.99692],[47.70869,31.99746],[47.70964,31.99807],[47.71021,31.99875],[47.71088,31.99974],[47.71164,32.0005],[47.71257,32.00064],[47.71312,32.00063],[47.71329,32.00001],[47.71347,31.99962],[47.7141,31.99938],[47.71466,31.99952],[47.71526,31.99979],[47.71524,32.00021],[47.71535,32.00082],[47.71527,32.00152],[47.71464,32.00199],[47.71355,32.00248],[47.71135,32.00321],[47.70961,32.00394],[47.70844,32.00496],[47.70771,32.00528],[47.70735,32.00552],[47.7072,32.0059],[47.70793,32.00651],[47.70841,32.00712],[47.70889,32.00781],[47.70937,32.00842],[47.70947,32.00873],[47.70956,32.0088],[47.70957,32.00896],[47.7093,32.00911],[47.70859,32.00979],[47.7084,32.01021],[47.70832,32.01068],[47.70752,32.01154],[47.70716,32.01209],[47.70689,32.01232],[47.70637,32.01202],[47.70541,32.01212],[47.70457,32.01174],[47.70383,32.01168],[47.70309,32.01185],[47.70274,32.01232],[47.70229,32.01302],[47.7023,32.01341],[47.7022,32.01396],[47.7027,32.01433],[47.70346,32.01509],[47.70459,32.01599],[47.70526,32.01683],[47.70575,32.01752],[47.70632,32.0182],[47.70706,32.01834],[47.7077,32.01818],[47.70807,32.01802],[47.70891,32.01847],[47.70956,32.01845],[47.7101,32.01806],[47.71017,32.01736],[47.71014,32.01613],[47.7102,32.01512],[47.71075,32.01473],[47.71137,32.01452],[47.7125,32.01485],[47.71326,32.0153],[47.71383,32.01599],[47.71385,32.01676],[47.71406,32.01752],[47.71435,32.01821],[47.71402,32.0193],[47.71266,32.02048],[47.71175,32.02104],[47.71047,32.02137],[47.70974,32.02162],[47.7091,32.02194],[47.70808,32.0218],[47.70586,32.02184],[47.70458,32.02225],[47.70366,32.02242],[47.70229,32.02283],[47.70165,32.02315],[47.70083,32.02347],[47.70027,32.02348],[47.69963,32.02342],[47.69916,32.02327],[47.69915,32.02257],[47.69876,32.02235],[47.69855,32.02135],[47.69854,32.02081],[47.69787,32.02013],[47.69739,32.01944],[47.69727,32.01844],[47.69716,32.01782],[47.69677,32.01713],[47.69667,32.01667],[47.6961,32.01622],[47.69489,32.01601],[47.69396,32.01572],[47.69312,32.01519],[47.69291,32.0145],[47.6928,32.01388],[47.6922,32.01368],[47.69169,32.01382],[47.69125,32.01437],[47.69063,32.01546],[47.6901,32.01656],[47.6881,32.01759],[47.68646,32.01832],[47.68573,32.01856],[47.68498,32.01834],[47.68442,32.01813],[47.68389,32.0189],[47.6841,32.01967],[47.68421,32.02044],[47.6847,32.02151],[47.685,32.02228],[47.68586,32.02335],[47.68653,32.02411],[47.68774,32.02455],[47.68766,32.02509],[47.68703,32.02549],[47.68639,32.02581],[47.68622,32.02627],[47.6866,32.02673],[47.68752,32.02664],[47.68807,32.02632],[47.68898,32.02607],[47.68942,32.0259],[47.68991,32.02621],[47.68975,32.02691],[47.68938,32.02722],[47.68921,32.02754],[47.6896,32.02838],[47.6888,32.0294],[47.68862,32.02955],[47.68882,32.03033],[47.68828,32.0308],[47.68792,32.03088],[47.68719,32.03136],[47.68664,32.03175],[47.68591,32.03184],[47.68426,32.03241],[47.68316,32.03266],[47.6824,32.03279],[47.68161,32.03261],[47.68075,32.03239],[47.67972,32.03195],[47.67889,32.03189],[47.67808,32.03252],[47.67753,32.03292],[47.67633,32.03309],[47.67486,32.03311],[47.67311,32.03241],[47.67248,32.03257],[47.67239,32.03335],[47.67313,32.03415],[47.67307,32.03523],[47.67263,32.03593],[47.67256,32.03671],[47.67296,32.03801],[47.67282,32.03956],[47.67295,32.04095],[47.67262,32.0425],[47.67238,32.04374],[47.67213,32.04459],[47.66978,32.04679],[47.66906,32.0475],[47.6679,32.04798],[47.66626,32.04886],[47.66581,32.04914],[47.66539,32.04934],[47.66405,32.05006],[47.66213,32.05071],[47.66058,32.05143],[47.65921,32.05223],[47.65849,32.0527],[47.65794,32.05287],[47.65674,32.05289],[47.65591,32.05329],[47.65482,32.05385],[47.65438,32.05463],[47.6542,32.05486],[47.65274,32.05551],[47.65221,32.05637],[47.65148,32.05692],[47.65113,32.05754],[47.6507,32.05847],[47.65044,32.05925],[47.64972,32.05981],[47.64909,32.06036],[47.64893,32.06136],[47.64915,32.06202],[47.64925,32.06298],[47.64909,32.06375],[47.64976,32.06459],[47.65061,32.06527],[47.65164,32.06603],[47.65213,32.0671],[47.65292,32.06863],[47.65333,32.07017],[47.65354,32.07132],[47.65395,32.07263],[47.65409,32.07417],[47.65358,32.0758],[47.65316,32.07735],[47.6531,32.07859],[47.65313,32.07967],[47.65242,32.08092],[47.65226,32.08202],[47.65169,32.08309],[47.6511,32.08169],[47.64996,32.0829],[47.64883,32.08378],[47.64821,32.08403],[47.64761,32.08432],[47.6467,32.08465],[47.64624,32.08496],[47.6458,32.08575],[47.64619,32.08651],[47.64603,32.08713],[47.64512,32.08776],[47.64412,32.08832],[47.64229,32.08912],[47.64193,32.08944],[47.64128,32.08953],[47.64027,32.0897],[47.63944,32.08971],[47.63824,32.08989],[47.63719,32.08979],[47.63602,32.09062],[47.63327,32.09291],[47.632,32.09405],[47.62992,32.09579],[47.62888,32.09669],[47.62816,32.09744],[47.62744,32.09795],[47.62685,32.09846],[47.62604,32.09913],[47.62446,32.10074],[47.62286,32.10228],[47.62151,32.10353],[47.6197,32.10495],[47.61753,32.10677],[47.61554,32.10827],[47.61185,32.11119],[47.60754,32.11447],[47.60585,32.11592],[47.59978,32.12074],[47.59759,32.12278],[47.59642,32.12373],[47.59534,32.12436],[47.5947,32.12479],[47.59349,32.12393],[47.59191,32.12285],[47.589,32.12238],[47.58361,32.12124],[47.58026,32.12037],[47.57895,32.12],[47.57804,32.11979],[47.57522,32.11875],[47.57026,32.11667],[47.56887,32.11618],[47.5673,32.11657],[47.56472,32.11707],[47.56169,32.11789],[47.55942,32.1184],[47.55907,32.11986],[47.5597,32.12202],[47.55924,32.12287],[47.55863,32.12435],[47.55773,32.1256],[47.55666,32.1267],[47.55428,32.12775],[47.55127,32.12926],[47.54962,32.13006],[47.54914,32.13035],[47.54164,32.13598],[47.53744,32.13837],[47.53443,32.13988],[47.53276,32.14063],[47.53234,32.14108],[47.53239,32.14324],[47.53287,32.144],[47.53403,32.14591],[47.53508,32.14698],[47.53553,32.14813],[47.53589,32.14975],[47.53567,32.15554],[47.53544,32.15733],[47.53411,32.1592],[47.53338,32.15983],[47.53333,32.16145],[47.53374,32.16307],[47.53315,32.16532],[47.5329,32.1664],[47.53165,32.16781],[47.53038,32.16891],[47.52956,32.16954],[47.52941,32.17007],[47.52949,32.17047],[47.53362,32.17249],[47.53644,32.1743],[47.53842,32.17543],[47.53941,32.1759],[47.54058,32.17662],[47.54273,32.1776],[47.54592,32.17909],[47.54837,32.18082],[47.55081,32.18233],[47.5538,32.18328],[47.55596,32.18441],[47.55738,32.18546],[47.55833,32.18668],[47.55901,32.18783],[47.5597,32.1884],[47.56061,32.18873],[47.56284,32.18931],[47.56425,32.18991],[47.56592,32.19035],[47.56734,32.19148],[47.56755,32.19217],[47.56739,32.19302],[47.56692,32.19396],[47.56661,32.19512],[47.56609,32.19644],[47.56538,32.19753],[47.56504,32.19862],[47.56472,32.20063],[47.5645,32.20288],[47.56471,32.2038],[47.56555,32.20433],[47.56696,32.205],[47.56781,32.20545],[47.56856,32.20613],[47.56916,32.20759],[47.57027,32.21097],[47.57085,32.21204],[47.57152,32.2128],[47.57191,32.2134],[47.56994,32.21615],[47.56864,32.21926],[47.56803,32.22089],[47.56697,32.22261],[47.56699,32.22354],[47.56721,32.22461],[47.56678,32.22586],[47.56563,32.22788],[47.56441,32.22868],[47.56392,32.22992],[47.56246,32.23072],[47.56015,32.23067],[47.557,32.23088],[47.55368,32.23117],[47.551,32.23137],[47.54803,32.23134],[47.5461,32.23168],[47.54416,32.23186],[47.54241,32.2322],[47.54137,32.23257],[47.54031,32.23355],[47.53879,32.23535],[47.53754,32.23707],[47.53583,32.23918],[47.53494,32.24043],[47.53295,32.24289],[47.53144,32.24538],[47.52983,32.2475],[47.52525,32.25396],[47.52269,32.25788],[47.52109,32.26054],[47.51973,32.26141],[47.5178,32.26213],[47.51599,32.26386],[47.51395,32.26706],[47.51171,32.27003],[47.50819,32.27387],[47.50603,32.2763],[47.50357,32.27773],[47.50126,32.27808],[47.5008,32.2784],[47.50101,32.27901],[47.50418,32.27973],[47.50756,32.28161],[47.50973,32.28327],[47.51165,32.28548],[47.51233,32.28678],[47.51264,32.28801],[47.51275,32.28896],[47.51314,32.28932],[47.51536,32.28959],[47.51936,32.28984],[47.52205,32.29002],[47.52248,32.29225],[47.52219,32.29535],[47.52191,32.29618],[47.522,32.29875],[47.52219,32.30253],[47.52197,32.3047],[47.52192,32.30648],[47.52165,32.30656],[47.51987,32.30589],[47.51699,32.30555],[47.51458,32.30551],[47.51244,32.30516],[47.51038,32.30458],[47.50861,32.30429],[47.50604,32.30503],[47.50502,32.30513],[47.50288,32.30462],[47.50164,32.30424],[47.49996,32.30531],[47.49685,32.30776],[47.49525,32.3073],[47.4899,32.31002],[47.48578,32.31094],[47.48238,32.31081],[47.48025,32.31036],[47.47769,32.31303],[47.47473,32.31488],[47.47307,32.31552],[47.47148,32.31564],[47.46966,32.3155],[47.46691,32.31563],[47.46219,32.31591],[47.46181,32.32124],[47.46196,32.32605],[47.46096,32.32817],[47.45911,32.33135],[47.45848,32.33391],[47.45805,32.33752],[47.4564,32.34131],[47.45486,32.34317],[47.45358,32.34425],[47.45177,32.34603],[47.44917,32.34789],[47.44475,32.34885],[47.44195,32.3501],[47.43898,32.3515],[47.43639,32.3515],[47.43654,32.35304],[47.43812,32.35462],[47.44084,32.35646],[47.4445,32.35765],[47.44933,32.35882],[47.45275,32.35868],[47.4533,32.35982],[47.45293,32.36164],[47.45219,32.36286],[47.45289,32.366],[47.45459,32.36927],[47.45714,32.37164],[47.46006,32.37429],[47.46438,32.37648],[47.46584,32.37796],[47.46622,32.3796],[47.46511,32.38134],[47.46369,32.38295],[47.46337,32.38415],[47.4637,32.38679],[47.46458,32.38879],[47.46571,32.39103],[47.46636,32.39175],[47.4656,32.39328],[47.46218,32.39513],[47.45966,32.39636],[47.45703,32.39748],[47.45525,32.39814],[47.45362,32.40009],[47.44917,32.40398],[47.44545,32.40727],[47.44166,32.41094],[47.43855,32.41384],[47.43481,32.41701],[47.43191,32.41814],[47.43089,32.41862],[47.42882,32.42075],[47.42591,32.4244],[47.42297,32.42899],[47.42015,32.43321],[47.41761,32.4373],[47.41539,32.44019],[47.4128,32.44263],[47.40953,32.44614],[47.40697,32.44963],[47.40458,32.45283],[47.40218,32.45557],[47.40028,32.45725],[47.39857,32.45938],[47.39633,32.46182],[47.39414,32.46397],[47.39273,32.46608],[47.38909,32.46899],[47.38719,32.47036],[47.38459,32.47296],[47.38143,32.47421],[47.37931,32.4744],[47.37633,32.47427],[47.37497,32.47369],[47.37236,32.4736],[47.36997,32.47258],[47.36773,32.472],[47.36632,32.4714],[47.36525,32.4709],[47.36288,32.47134],[47.36093,32.47137],[47.35953,32.47184],[47.3583,32.47175],[47.35672,32.47309],[47.35533,32.47416],[47.35287,32.4748],[47.3479,32.47487],[47.34653,32.47549],[47.34508,32.4767],[47.34298,32.47675],[47.34101,32.47618],[47.33904,32.47546],[47.33741,32.47458],[47.33616,32.4743],[47.33475,32.47462],[47.33301,32.47585],[47.33092,32.47708],[47.32952,32.478],[47.32747,32.47869],[47.32167,32.48263],[47.31765,32.48479],[47.31433,32.48664],[47.31082,32.4882],[47.30816,32.48823],[47.30604,32.48872],[47.30219,32.49073],[47.29816,32.49259],[47.29518,32.49383],[47.29306,32.49432],[47.29076,32.49428],[47.28743,32.49652],[47.28534,32.49743],[47.28414,32.49758],[47.2833,32.49759],[47.28213,32.49427],[47.28193,32.49147],[47.28227,32.48952],[47.2833,32.48758],[47.28181,32.48592],[47.28047,32.48572],[47.27804,32.48432],[47.27681,32.48155],[47.27558,32.47895],[47.27553,32.47758],[47.27232,32.47659],[47.26837,32.47529],[47.26372,32.47416],[47.2605,32.47301],[47.25775,32.47019],[47.25449,32.46768],[47.25196,32.46622],[47.25053,32.46579],[47.24909,32.46506],[47.24739,32.46403],[47.24595,32.4635],[47.24334,32.46374],[47.24162,32.46451],[47.24011,32.4649],[47.2383,32.46508],[47.23622,32.466],[47.23492,32.46639],[47.23327,32.46587],[47.23227,32.46533],[47.23093,32.46434],[47.22926,32.46345],[47.22761,32.46284],[47.22608,32.46203],[47.22388,32.46235],[47.2203,32.46279],[47.21746,32.46275],[47.21517,32.46279],[47.21365,32.46292],[47.21331,32.46246],[47.21303,32.46036],[47.21138,32.46019],[47.20969,32.46036],[47.20758,32.46081],[47.20454,32.46106],[47.20161,32.46157],[47.19923,32.46217],[47.1963,32.4625],[47.19469,32.46286],[47.19226,32.46311],[47.19038,32.46324],[47.18959,32.46318],[47.1897,32.46277],[47.18998,32.46235],[47.19015,32.46106],[47.1895,32.46055],[47.18875,32.46025],[47.18785,32.46009],[47.18684,32.46034],[47.18557,32.46069],[47.18358,32.46153],[47.18257,32.46175],[47.18185,32.46175],[47.18116,32.46152],[47.18093,32.46127],[47.18083,32.46101],[47.18079,32.46056],[47.18086,32.45892],[47.18071,32.45818],[47.1801,32.45755],[47.17956,32.45689],[47.17886,32.45619],[47.1769,32.45641],[47.17301,32.45677],[47.1693,32.45716],[47.1683,32.4573],[47.16531,32.45945],[47.15571,32.46548],[47.15144,32.46842],[47.14968,32.46953],[47.14554,32.47139],[47.14219,32.47246],[47.14024,32.47341],[47.13704,32.47514],[47.12665,32.48087],[47.11774,32.48555],[47.11368,32.48812],[47.11135,32.48925],[47.10682,32.49193],[47.10349,32.49356],[47.10135,32.49425],[47.09724,32.49617],[47.09412,32.49724],[47.0919,32.49841],[47.09166,32.49894],[47.08987,32.50149],[47.08857,32.50369],[47.08797,32.50383],[47.08387,32.50555],[47.07751,32.50859],[47.07635,32.50925],[47.07107,32.51175],[47.0685,32.51435],[47.06201,32.52053],[47.05625,32.52578],[47.05524,32.52619],[47.0507,32.5265],[47.04913,32.52647],[47.04595,32.5285],[47.0444,32.52925],[47.04099,32.53485],[47.03709,32.53998],[47.03371,32.54436],[47.03302,32.54453],[47.02811,32.5473],[47.02361,32.55032],[47.02274,32.55091],[47.01956,32.55407],[47.01746,32.55564],[47.01454,32.55847],[47.00685,32.56504],[47.00237,32.56897],[47.00033,32.57038],[46.9932,32.57343],[46.98758,32.57572],[46.98089,32.57886],[46.97329,32.58147],[46.96843,32.58668],[46.96373,32.5908],[46.95785,32.59614],[46.95579,32.59786],[46.95314,32.59962],[46.9457,32.60341],[46.93968,32.60591],[46.93416,32.60937],[46.92921,32.6123],[46.92348,32.61477],[46.9219,32.61536],[46.91581,32.61801],[46.91413,32.61841],[46.90446,32.62332],[46.89444,32.62852],[46.88718,32.63203],[46.88058,32.6382],[46.87599,32.64269],[46.87218,32.64647],[46.86807,32.64943],[46.86225,32.65301],[46.85746,32.65564],[46.85269,32.65968],[46.84754,32.66353],[46.84246,32.66703],[46.84024,32.66916],[46.83864,32.67084],[46.83746,32.67175],[46.83591,32.6754],[46.83246,32.6819],[46.83111,32.68487],[46.83024,32.68647],[46.82785,32.69045],[46.82649,32.69287],[46.82552,32.69508],[46.82069,32.69728],[46.81463,32.69993],[46.81163,32.70147],[46.80686,32.70418],[46.80413,32.70591],[46.79379,32.71089],[46.79135,32.71203],[46.79,32.7173],[46.78835,32.72147],[46.78774,32.72286],[46.78533,32.72797],[46.78356,32.73036],[46.7733,32.73735],[46.76802,32.74073],[46.76635,32.74203],[46.76375,32.74512],[46.7611,32.74866],[46.75912,32.75064],[46.755,32.75591],[46.75214,32.75943],[46.75135,32.76036],[46.75,32.76144],[46.74506,32.76514],[46.74186,32.76775],[46.74052,32.76897],[46.73782,32.77185],[46.73541,32.77462],[46.73439,32.77564],[46.72864,32.78033],[46.72418,32.78345],[46.72168,32.78596],[46.72079,32.78647],[46.71657,32.78617],[46.71146,32.78596],[46.70801,32.78564],[46.70303,32.78711],[46.69884,32.78897],[46.69828,32.78925],[46.69456,32.79142],[46.69271,32.79259],[46.69134,32.79341],[46.68935,32.79678],[46.68856,32.79786],[46.68008,32.80035],[46.6707,32.80316],[46.66828,32.80397],[46.66278,32.80547],[46.65606,32.80758],[46.65285,32.81053],[46.65004,32.8128],[46.64745,32.81453],[46.64252,32.81594],[46.63704,32.81722],[46.63381,32.81783],[46.63245,32.81786],[46.62786,32.82037],[46.62444,32.82172],[46.62273,32.8223],[46.61923,32.82692],[46.61605,32.83044],[46.61384,32.83258],[46.60965,32.83581],[46.6047,32.83926],[46.60106,32.84147],[46.59693,32.84472],[46.59353,32.84707],[46.59217,32.84786],[46.59245,32.85064],[46.58741,32.85169],[46.58523,32.85175],[46.58051,32.85623],[46.57645,32.85992],[46.57356,32.86175],[46.56887,32.86579],[46.56401,32.86907],[46.55867,32.87294],[46.55578,32.8748],[46.55079,32.87823],[46.5434,32.8831],[46.53746,32.88664],[46.53191,32.89],[46.52773,32.89259],[46.52363,32.89513],[46.51984,32.8979],[46.51828,32.89869],[46.51466,32.89968],[46.51078,32.90036],[46.50682,32.90173],[46.50356,32.9023],[46.50005,32.90268],[46.49464,32.90313],[46.49162,32.90314],[46.48658,32.90926],[46.48339,32.91318],[46.48078,32.91619],[46.47598,32.91722],[46.47217,32.91787],[46.46657,32.91969],[46.46273,32.92091],[46.45679,32.92366],[46.45278,32.92543],[46.45051,32.92647],[46.45099,32.92993],[46.4511,32.9312],[46.4466,32.93431],[46.44384,32.93092],[46.44106,32.93119],[46.43689,32.93341],[46.43162,32.9348],[46.42773,32.93565],[46.42245,32.93758],[46.4172,32.94086],[46.41551,32.94175],[46.41157,32.94597],[46.41051,32.94704],[46.40206,32.94818],[46.39517,32.94855],[46.38976,32.949],[46.38745,32.94897],[46.37013,32.95268],[46.36306,32.95421],[46.35911,32.9548],[46.35405,32.95717],[46.34985,32.95935],[46.34745,32.96036],[46.34466,32.95898],[46.33914,32.96149],[46.3326,32.96476],[46.33161,32.96537],[46.32532,32.96571],[46.32244,32.96564],[46.31718,32.96767],[46.31404,32.96851],[46.31245,32.96897],[46.30637,32.9688],[46.30114,32.96857],[46.29827,32.96841],[46.29297,32.96861],[46.28883,32.96871],[46.28431,32.96898],[46.28244,32.96897],[46.27743,32.97001],[46.27144,32.97137],[46.268,32.97213],[46.26633,32.97258],[46.2606,32.97074],[46.25645,32.9696],[46.25383,32.9687],[46.25044,32.96929],[46.24975,32.96937],[46.24593,32.97002],[46.24411,32.97036],[46.23347,32.96737],[46.22823,32.96591],[46.22397,32.96464],[46.2205,32.96342],[46.21606,32.96241],[46.21077,32.96103],[46.208,32.96009],[46.2035,32.95914],[46.2005,32.95841],[46.19076,32.95688],[46.18295,32.95519],[46.17614,32.95405],[46.17355,32.95341],[46.1659,32.95438],[46.16109,32.95516],[46.15938,32.95536],[46.15089,32.95737],[46.14481,32.95866],[46.14029,32.95976],[46.13772,32.96009],[46.13411,32.96036],[46.12884,32.96389],[46.12474,32.96648],[46.12181,32.9681],[46.11994,32.96897],[46.11454,32.97179],[46.11165,32.97319],[46.10911,32.97425],[46.10403,32.97696],[46.10216,32.97758],[46.09886,32.98014],[46.0974,32.9812],[46.09693,32.98239],[46.09705,32.98405],[46.09618,32.98505],[46.09526,32.98574],[46.09482,32.98638],[46.09466,32.98846],[46.09478,32.98986],[46.09569,32.99135],[46.0961,32.99268],[46.09711,32.99416],[46.09782,32.99515],[46.09754,32.99648],[46.09815,32.99763],[46.0982,32.99799],[46.09861,32.9984],[46.09871,32.99873],[46.09933,32.99968],[46.09935,33.00068],[46.09917,33.00151],[46.09811,33.00244],[46.09654,33.00279],[46.09478,33.00331],[46.0944,33.0039],[46.09472,33.00498],[46.09563,33.0058],[46.09526,33.00697],[46.09439,33.00781],[46.0953,33.0088],[46.09659,33.00912],[46.09709,33.0097],[46.09716,33.01252],[46.09847,33.01384],[46.0997,33.01574],[46.09984,33.01741],[46.10007,33.0189],[46.10057,33.01948],[46.10215,33.01946],[46.10342,33.01894],[46.1044,33.01868],[46.10542,33.02017],[46.10681,33.0209],[46.1077,33.02056],[46.10855,33.01939],[46.10882,33.0183],[46.10921,33.01779],[46.11009,33.01762],[46.11069,33.0182],[46.11139,33.01835],[46.11229,33.01918],[46.11416,33.01907],[46.11574,33.01889],[46.11682,33.01912],[46.11762,33.01953],[46.11885,33.02151],[46.11966,33.02233],[46.12015,33.02233],[46.12189,33.02081],[46.12266,33.01997],[46.12351,33.01846],[46.12409,33.01804],[46.1248,33.01911],[46.12641,33.02034],[46.12751,33.02091],[46.12889,33.02098],[46.13028,33.02121],[46.1303,33.02213],[46.12973,33.02288],[46.12905,33.02347],[46.12906,33.02397],[46.13054,33.02396],[46.13211,33.02377],[46.1332,33.024],[46.13361,33.02475],[46.13285,33.02609],[46.13179,33.02694],[46.13231,33.02801],[46.13332,33.02917],[46.13424,33.03049],[46.13456,33.03148],[46.13457,33.03215],[46.13372,33.03324],[46.13305,33.03416],[46.13268,33.03517],[46.1328,33.03641],[46.1342,33.03698],[46.13599,33.03788],[46.13709,33.03844],[46.13811,33.03985],[46.13894,33.04175],[46.13897,33.04275],[46.1384,33.04401],[46.13822,33.04467],[46.13855,33.04509],[46.14014,33.04657],[46.14154,33.0473],[46.14273,33.04762],[46.14382,33.04802],[46.14384,33.04877],[46.14357,33.04952],[46.14406,33.04968],[46.14474,33.04934],[46.14513,33.04917],[46.14535,33.04992],[46.14565,33.05025],[46.14671,33.04932],[46.14703,33.05006],[46.14816,33.05197],[46.14867,33.05296],[46.14911,33.05342],[46.14902,33.05529],[46.14936,33.05711],[46.15078,33.05851],[46.15159,33.05933],[46.15171,33.06033],[46.15144,33.06142],[46.15147,33.06275],[46.15218,33.06374],[46.15338,33.0643],[46.15517,33.06487],[46.15588,33.06578],[46.15739,33.06684],[46.16017,33.06764],[46.16216,33.06853],[46.16336,33.06918],[46.1647,33.06951],[46.16427,33.07017],[46.1629,33.0706],[46.16182,33.07086],[46.16055,33.07121],[46.1594,33.07256],[46.15793,33.07307],[46.15695,33.07334],[46.15625,33.07293],[46.15544,33.07194],[46.15415,33.0717],[46.15317,33.07197],[46.15199,33.07206],[46.151,33.07207],[46.14973,33.07242],[46.14873,33.07168],[46.14744,33.07145],[46.14597,33.07197],[46.1444,33.07224],[46.14322,33.07225],[46.14188,33.07204],[46.14115,33.07244],[46.14017,33.07246],[46.1378,33.0724],[46.13563,33.07259],[46.13368,33.0732],[46.13212,33.07413],[46.13095,33.07473],[46.12978,33.07491],[46.12829,33.07468],[46.12741,33.07486],[46.12691,33.07486],[46.1263,33.07387],[46.1256,33.07346],[46.12432,33.07347],[46.12303,33.07307],[46.12212,33.0725],[46.12046,33.0731],[46.1189,33.07362],[46.11792,33.07388],[46.11688,33.07397],[46.11607,33.07482],[46.11451,33.07584],[46.11415,33.07717],[46.11459,33.07933],[46.11403,33.0805],[46.11315,33.0811],[46.11147,33.08078],[46.11087,33.08029],[46.1092,33.08073],[46.10697,33.08225],[46.10571,33.08318],[46.10515,33.08452],[46.10457,33.08494],[46.10411,33.08509],[46.10349,33.08512],[46.10289,33.08471],[46.10122,33.08515],[46.09926,33.08559],[46.0973,33.08628],[46.09555,33.08746],[46.0942,33.08848],[46.09332,33.0889],[46.09185,33.089],[46.09045,33.08827],[46.08924,33.0872],[46.08845,33.08746],[46.08838,33.08854],[46.0885,33.08946],[46.08723,33.09005],[46.08626,33.09082],[46.08579,33.09149],[46.08432,33.09192],[46.08264,33.09169],[46.08124,33.09104],[46.07995,33.09055],[46.07819,33.09132],[46.07683,33.09209],[46.07575,33.09227],[46.07435,33.09145],[46.07327,33.09065],[46.07264,33.09022],[46.07126,33.09015],[46.06961,33.09109],[46.06834,33.09185],[46.06648,33.09237],[46.06518,33.09172],[46.06517,33.09106],[46.06417,33.09065],[46.06319,33.09074],[46.0615,33.09035],[46.06032,33.09044],[46.05866,33.09121],[46.05679,33.09132],[46.05503,33.092],[46.05386,33.09235],[46.0527,33.0932],[46.05192,33.09428],[46.0508,33.09505],[46.04961,33.09527],[46.04869,33.09507],[46.0468,33.0945],[46.04444,33.09495],[46.04298,33.09547],[46.0418,33.09565],[46.0411,33.0954],[46.04144,33.09665],[46.04196,33.09812],[46.04238,33.09923],[46.04744,33.1112],[46.05272,33.1262],[46.05382,33.12556],[46.05504,33.12476],[46.05613,33.1245],[46.05778,33.12355],[46.05909,33.123],[46.06108,33.12381],[46.06228,33.12447],[46.06338,33.12487],[46.06499,33.12652],[46.06589,33.12709],[46.06718,33.12741],[46.06828,33.12781],[46.06967,33.12805],[46.07114,33.12778],[46.0728,33.12693],[46.07445,33.12574],[46.07561,33.12482],[46.07669,33.12439],[46.07778,33.12463],[46.07897,33.12486],[46.07975,33.12452],[46.08083,33.12434],[46.0816,33.12375],[46.08248,33.12324],[46.08405,33.12297],[46.08583,33.12295],[46.0874,33.12268],[46.08856,33.12159],[46.08932,33.1205],[46.09,33.11991],[46.09098,33.11973],[46.09237,33.12004],[46.09384,33.11986],[46.09532,33.11976],[46.09642,33.12008],[46.09732,33.12091],[46.09893,33.12222],[46.09994,33.12321],[46.10134,33.12394],[46.10263,33.12409],[46.1043,33.12407],[46.10538,33.12389],[46.10667,33.12413],[46.10796,33.12444],[46.10945,33.12468],[46.11082,33.12416],[46.11219,33.12406],[46.11288,33.12372],[46.11375,33.12313],[46.1157,33.12211],[46.11687,33.12159],[46.11735,33.12109],[46.11853,33.12066],[46.1198,33.12014],[46.1207,33.12072],[46.12102,33.12179],[46.12027,33.12339],[46.1201,33.12455],[46.12052,33.12596],[46.12134,33.12712],[46.12284,33.12793],[46.12368,33.12984],[46.1245,33.13108],[46.1258,33.13214],[46.127,33.13271],[46.12783,33.13437],[46.12915,33.13585],[46.13037,33.13758],[46.13159,33.13915],[46.13232,33.14039],[46.13421,33.14112],[46.13589,33.14143],[46.13718,33.14158],[46.13799,33.14257],[46.13911,33.14422],[46.14082,33.14529],[46.14261,33.14609],[46.14371,33.14633],[46.14492,33.14748],[46.14699,33.14771],[46.15055,33.14791],[46.15255,33.14864],[46.15385,33.14962],[46.15535,33.15044],[46.15636,33.15126],[46.15756,33.15208],[46.15884,33.15206],[46.15944,33.15238],[46.15985,33.15313],[46.16007,33.15388],[46.16088,33.15453],[46.16198,33.15502],[46.16297,33.15559],[46.16378,33.15633],[46.16519,33.15739],[46.16699,33.15829],[46.16809,33.15919],[46.16852,33.16027],[46.16893,33.16118],[46.16955,33.16225],[46.17132,33.16215],[46.17223,33.16272],[46.17342,33.1632],[46.17453,33.16402],[46.17544,33.16493],[46.17655,33.16591],[46.17784,33.16632],[46.17983,33.16679],[46.18153,33.16776],[46.18265,33.16908],[46.18327,33.17041],[46.18516,33.17113],[46.18646,33.17179],[46.18689,33.17286],[46.18652,33.17403],[46.18566,33.17529],[46.1855,33.17662],[46.18623,33.1782],[46.18743,33.1791],[46.18903,33.18],[46.19083,33.18064],[46.1927,33.1807],[46.1939,33.18135],[46.1958,33.18216],[46.19791,33.1838],[46.19893,33.1852],[46.19966,33.18685],[46.19951,33.1886],[46.19854,33.18937],[46.19797,33.19029],[46.19791,33.19179],[46.19835,33.19353],[46.20016,33.19484],[46.20175,33.19524],[46.20802,33.19741],[46.21023,33.19879],[46.21133,33.19954],[46.21244,33.20051],[46.21336,33.20142],[46.213,33.20204],[46.21111,33.20245],[46.20765,33.20232],[46.20522,33.20231],[46.19934,33.20184],[46.19618,33.2018],[46.19522,33.20176],[46.19185,33.20235],[46.18763,33.20349],[46.1836,33.20428],[46.18161,33.20509],[46.17982,33.20691],[46.17984,33.20783],[46.18178,33.21047],[46.18326,33.21062],[46.18384,33.21011],[46.18502,33.20993],[46.18524,33.21076],[46.18527,33.21184],[46.18579,33.21283],[46.18532,33.21417],[46.18466,33.21509],[46.18401,33.2171],[46.18335,33.21802],[46.18247,33.21862],[46.1816,33.21937],[46.18133,33.22037],[46.18236,33.22236],[46.18319,33.22377],[46.18393,33.22576],[46.18436,33.22708],[46.1855,33.22787],[46.18677,33.22864],[46.18835,33.22895],[46.19022,33.22926],[46.19126,33.23066],[46.19168,33.23157],[46.1917,33.2324],[46.19232,33.23356],[46.19263,33.23439],[46.19197,33.23556],[46.19191,33.23681],[46.19262,33.23789],[46.19304,33.2388],[46.19272,33.23926],[46.19189,33.24023],[46.19071,33.24057],[46.19002,33.24058],[46.18846,33.24118],[46.18749,33.24203],[46.18751,33.24311],[46.18764,33.24419],[46.18827,33.24509],[46.1889,33.24709],[46.18911,33.24815],[46.18855,33.24926],[46.18774,33.25016],[46.18698,33.25091],[46.187,33.25239],[46.18778,33.25294],[46.18855,33.25303],[46.18944,33.2533],[46.18967,33.25405],[46.18946,33.25479],[46.18882,33.25581],[46.18883,33.25648],[46.19006,33.25757],[46.19052,33.25896],[46.19053,33.2596],[46.1911,33.26118],[46.19123,33.26201],[46.19113,33.26294],[46.1911,33.2634],[46.19004,33.26397],[46.18883,33.26444],[46.1873,33.2651],[46.1851,33.26567],[46.18334,33.26587],[46.18191,33.26597],[46.17992,33.26561],[46.17937,33.26599],[46.17916,33.26655],[46.17906,33.2671],[46.17911,33.26759],[46.17819,33.26794],[46.17654,33.26814],[46.17511,33.26889],[46.17391,33.26965],[46.17226,33.27012],[46.17105,33.27031],[46.16918,33.27069],[46.1682,33.27154],[46.16766,33.27228],[46.16772,33.27315],[46.16647,33.27368],[46.1646,33.27444],[46.16329,33.27491],[46.16208,33.27529],[46.16132,33.27613],[46.16034,33.27715],[46.15947,33.27763],[46.15782,33.27819],[46.15628,33.27894],[46.15476,33.28025],[46.15322,33.28101],[46.1518,33.28138],[46.14994,33.28242],[46.14829,33.28308],[46.14709,33.28373],[46.14556,33.28495],[46.14466,33.28592],[46.14272,33.28701],[46.14119,33.28776],[46.13977,33.28879],[46.13835,33.28973],[46.13725,33.29019],[46.1356,33.29076],[46.13494,33.29148],[46.13386,33.29245],[46.13266,33.29338],[46.13169,33.29487],[46.13082,33.2958],[46.12972,33.29628],[46.12908,33.29748],[46.12821,33.2986],[46.1269,33.29917],[46.12548,33.30038],[46.12516,33.30159],[46.12463,33.30308],[46.12344,33.30457],[46.12181,33.30616],[46.11951,33.30728],[46.11841,33.30757],[46.11687,33.30851],[46.1155,33.30954],[46.11471,33.31131],[46.11277,33.31447],[46.11039,33.31829],[46.10866,33.32117],[46.10705,33.32424],[46.10546,33.32843],[46.10471,33.3302],[46.10385,33.33187],[46.10289,33.33457],[46.10202,33.33504],[46.09895,33.337],[46.09623,33.33915],[46.09459,33.34083],[46.09254,33.34381],[46.09102,33.34624],[46.09004,33.34708],[46.08731,33.34886],[46.08457,33.35082],[46.08172,33.35204],[46.0805,33.35259],[46.08074,33.35326],[46.08165,33.35483],[46.08198,33.35548],[46.08189,33.35612],[46.08112,33.35659],[46.07994,33.35648],[46.07958,33.35688],[46.07915,33.3579],[46.07838,33.358],[46.07688,33.35787],[46.07706,33.35857],[46.07795,33.35902],[46.07966,33.35954],[46.08009,33.36023],[46.08002,33.36089],[46.07941,33.36165],[46.07839,33.36222],[46.07791,33.36239],[46.07816,33.37414],[46.07824,33.38027],[46.0782,33.38537],[46.078,33.38842],[46.07717,33.39057],[46.07696,33.39131],[46.07633,33.39204],[46.07534,33.3942],[46.07306,33.397],[46.07133,33.39926],[46.07146,33.4009],[46.07093,33.40276],[46.0684,33.40352],[46.06565,33.40455],[46.0627,33.4068],[46.06084,33.40838],[46.05855,33.40954],[46.05789,33.41072],[46.0567,33.41231],[46.05659,33.4124],[46.05562,33.41445],[46.05442,33.41519],[46.05383,33.41537],[46.05233,33.4166],[46.05025,33.41754],[46.04772,33.41815],[46.04761,33.41867],[46.04653,33.42034],[46.04568,33.4235],[46.04504,33.4249],[46.04385,33.42648],[46.0432,33.42806],[46.04213,33.42983],[46.0417,33.43104],[46.0416,33.43196],[46.04063,33.43383],[46.04,33.43606],[46.03981,33.43838],[46.03928,33.43996],[46.03819,33.44136],[46.03716,33.44259],[46.03744,33.44321],[46.03988,33.44385],[46.04278,33.44588],[46.04414,33.44782],[46.04355,33.44787],[46.04251,33.45061],[46.04132,33.4521],[46.04078,33.45303],[46.04145,33.45405],[46.04181,33.4559],[46.04095,33.45804],[46.04009,33.45934],[46.03866,33.46],[46.03669,33.46103],[46.0356,33.46271],[46.03494,33.46342],[46.03519,33.46521],[46.03488,33.46717],[46.03369,33.46912],[46.03186,33.47219],[46.03078,33.47461],[46.02937,33.47675],[46.02851,33.47824],[46.02841,33.47926],[46.02842,33.48019],[46.0269,33.48168],[46.02547,33.4828],[46.02383,33.48383],[46.02327,33.48426],[46.02153,33.48533],[46.01976,33.48599],[46.01882,33.48648],[46.01822,33.48618],[46.01743,33.48507],[46.01696,33.48331],[46.01577,33.48231],[46.01442,33.48286],[46.01255,33.48426],[46.01036,33.48557],[46.00894,33.48688],[46.00799,33.48759],[46.00787,33.48948],[46.00881,33.49375],[46.00906,33.49588],[46.00908,33.49782],[46.00888,33.49922],[46.00796,33.50054],[46.00787,33.50184],[46.00823,33.50332],[46.00836,33.50462],[46.00784,33.50637],[46.00655,33.5087],[46.00502,33.50963],[46.00291,33.51014],[45.99994,33.51072],[45.99894,33.51055],[45.99816,33.51],[45.99725,33.50871],[45.99624,33.50779],[45.99457,33.50743],[45.9928,33.50745],[45.99148,33.50774],[45.99026,33.50737],[45.98903,33.50692],[45.98748,33.50675],[45.98572,33.50722],[45.98466,33.50731],[45.98294,33.50623],[45.98148,33.50522],[45.98014,33.50449],[45.97847,33.50367],[45.97744,33.50287],[45.97491,33.50231],[45.96936,33.50124],[45.96714,33.5007],[45.96404,33.50026],[45.96171,33.49982],[45.96038,33.49983],[45.95911,33.49926],[45.9586,33.49901],[45.95769,33.49754],[45.95645,33.49588],[45.95431,33.49348],[45.95295,33.49155],[45.95238,33.49026],[45.95216,33.48981],[45.95104,33.48953],[45.94915,33.48889],[45.9467,33.4878],[45.94513,33.48679],[45.9439,33.48551],[45.94278,33.4845],[45.94187,33.48321],[45.94133,33.48287],[45.94076,33.4834],[45.94013,33.48535],[45.93907,33.48832],[45.93722,33.49037],[45.93592,33.49177],[45.93299,33.49176],[45.92929,33.49192],[45.92563,33.49157],[45.92164,33.49095],[45.91953,33.49069],[45.91809,33.49061],[45.91622,33.49146],[45.91535,33.49174],[45.91257,33.49111],[45.91013,33.49039],[45.90847,33.49059],[45.90451,33.49164],[45.90087,33.4925],[45.89701,33.49317],[45.89414,33.49375],[45.89187,33.49426],[45.89083,33.49414],[45.88994,33.49396],[45.88782,33.49305],[45.88516,33.49242],[45.88262,33.49281],[45.88018,33.492],[45.87774,33.49192],[45.87521,33.49259],[45.87378,33.49334],[45.87329,33.4943],[45.86926,33.49397],[45.86708,33.49375],[45.86447,33.49342],[45.86271,33.49315],[45.86428,33.49424],[45.86763,33.49616],[45.87376,33.49927],[45.89521,33.51259],[45.92437,33.53093],[45.94688,33.54538],[45.94963,33.54799],[45.95188,33.55028],[45.95459,33.55314],[45.95663,33.55599],[45.95866,33.55848],[45.96023,33.55995],[45.96133,33.5612],[45.96072,33.56272],[45.9593,33.56412],[45.95809,33.56506],[45.95879,33.56654],[45.95892,33.56783],[45.95716,33.56898],[45.95652,33.57026],[45.95498,33.57101],[45.95467,33.57203],[45.95402,33.57315],[45.95206,33.57502],[45.94966,33.57772],[45.94703,33.5795],[45.94466,33.58065],[45.94266,33.58315],[45.93874,33.58716],[45.93656,33.58968],[45.93515,33.59126],[45.93428,33.5922],[45.9323,33.59332],[45.93077,33.59399],[45.92913,33.59557],[45.92551,33.5981],[45.92233,33.60016],[45.91849,33.6026],[45.91541,33.60401],[45.91222,33.60533],[45.9109,33.60571],[45.90947,33.60637],[45.90748,33.60648],[45.90469,33.6054],[45.91661,33.62759],[45.9085,33.63651],[45.90807,33.63797],[45.90675,33.63826],[45.90552,33.63817],[45.90407,33.63763],[45.90263,33.6368],[45.90139,33.63598],[45.89851,33.63609],[45.8963,33.63639],[45.89442,33.63658],[45.8921,33.6366],[45.89055,33.63671],[45.88826,33.63592],[45.88665,33.63525],[45.88564,33.63461],[45.88364,33.63444],[45.88032,33.63446],[45.87756,33.63476],[45.8749,33.63478],[45.87269,33.63526],[45.87114,33.63527],[45.86869,33.63482],[45.86625,33.63428],[45.86435,33.63356],[45.8628,33.6332],[45.86104,33.63205],[45.85934,33.63174],[45.85734,33.6311],[45.85589,33.63037],[45.85366,33.62974],[45.85111,33.62939],[45.84833,33.62894],[45.84689,33.62868],[45.84632,33.62842],[45.844,33.62823],[45.84233,33.6276],[45.84032,33.62659],[45.83699,33.62596],[45.83411,33.62598],[45.83113,33.62656],[45.8287,33.62732],[45.82649,33.62761],[45.82521,33.62731],[45.82316,33.62735],[45.82017,33.62719],[45.81575,33.62805],[45.81354,33.62731],[45.81283,33.62538],[45.81224,33.62242],[45.81154,33.6203],[45.81104,33.61842],[45.80696,33.61737],[45.80305,33.61508],[45.80081,33.61361],[45.7999,33.61291],[45.78882,33.60759],[45.77493,33.6026],[45.75743,33.59454],[45.7544,33.5934],[45.7546,33.59528],[45.75595,33.59703],[45.75641,33.59814],[45.75654,33.59962],[45.75733,33.60082],[45.75802,33.60239],[45.75804,33.60424],[45.75795,33.60517],[45.75907,33.60665],[45.75932,33.60868],[45.75979,33.61072],[45.7607,33.61238],[45.76172,33.61404],[45.76262,33.61496],[45.76463,33.61606],[45.76608,33.61726],[45.76698,33.61808],[45.76734,33.62012],[45.76814,33.62206],[45.76937,33.62279],[45.771,33.6237],[45.77215,33.63037],[45.7716,33.63705],[45.77136,33.63843],[45.76993,33.63919],[45.76784,33.64003],[45.76574,33.64069],[45.76254,33.64183],[45.76034,33.64258],[45.75769,33.64352],[45.75568,33.6441],[45.75228,33.64504],[45.75008,33.64579],[45.7461,33.64918],[45.74316,33.65097],[45.74021,33.65286],[45.73746,33.65409],[45.73604,33.65454],[45.731,33.6575],[45.72519,33.66035],[45.72135,33.66215],[45.7191,33.6626],[45.71602,33.66638],[45.713,33.67002],[45.71063,33.6732],[45.70989,33.67398],[45.70509,33.67799],[45.70268,33.6795],[45.70106,33.68137],[45.69901,33.6837],[45.69743,33.6851],[45.69619,33.68633],[45.69443,33.68718],[45.69335,33.68821],[45.69271,33.68952],[45.6923,33.6911],[45.69132,33.69176],[45.68988,33.69205],[45.68767,33.69235],[45.68591,33.69274],[45.68437,33.6926],[45.68207,33.69445],[45.68011,33.69623],[45.67749,33.69793],[45.67453,33.69982],[45.67303,33.70224],[45.67253,33.70456],[45.67047,33.70653],[45.66631,33.70889],[45.66458,33.71104],[45.66362,33.7129],[45.66192,33.71607],[45.65965,33.7176],[45.65957,33.72008],[45.65927,33.72184],[45.65882,33.7226],[45.65733,33.72417],[45.65491,33.72513],[45.65217,33.72646],[45.64876,33.72788],[45.64768,33.7291],[45.64716,33.73077],[45.6466,33.7323],[45.64519,33.7329],[45.64422,33.73339],[45.64258,33.73434],[45.6415,33.73564],[45.64107,33.7363],[45.64049,33.73731],[45.64046,33.7389],[45.64017,33.74085],[45.64008,33.74187],[45.63993,33.74288],[45.64132,33.7443],[45.64264,33.74612],[45.64365,33.74803],[45.64403,33.74912],[45.6441,33.74927],[45.64456,33.75144],[45.64549,33.75373],[45.64734,33.7561],[45.64898,33.75762],[45.6494,33.75889],[45.64931,33.75983],[45.6491,33.76038],[45.64802,33.76374],[45.64581,33.7674],[45.64442,33.7708],[45.6425,33.77377],[45.6407,33.77616],[45.63868,33.77862],[45.63657,33.78143],[45.63355,33.78492],[45.63092,33.78739],[45.62908,33.78823],[45.62748,33.78901],[45.62543,33.79013],[45.62323,33.7914],[45.62003,33.79331],[45.61287,33.79736],[45.61078,33.79847],[45.60718,33.80043],[45.60329,33.80321],[45.59968,33.81046],[45.601,33.81731],[45.60116,33.81888],[45.59995,33.82007],[45.59843,33.8216],[45.59631,33.82339],[45.59298,33.82645],[45.59035,33.82883],[45.58802,33.83071],[45.58661,33.83165],[45.58437,33.8326],[45.58418,33.83377],[45.58532,33.83564],[45.58493,33.8376],[45.58494,33.83972],[45.58373,33.84108],[45.58212,33.84354],[45.58091,33.84516],[45.57949,33.8466],[45.57778,33.84882],[45.57628,33.85213],[45.57376,33.85544],[45.57165,33.85868],[45.56983,33.8614],[45.56803,33.86488],[45.56592,33.86837],[45.56401,33.87186],[45.5626,33.87398],[45.56048,33.87653],[45.55807,33.88087],[45.55595,33.88376],[45.55364,33.88783],[45.55263,33.8897],[45.55131,33.89121],[45.55021,33.89277],[45.5493,33.89387],[45.54798,33.89362],[45.5466,33.89316],[45.54604,33.89482],[45.54525,33.89745],[45.54455,33.89906],[45.54324,33.90042],[45.54131,33.90187],[45.53858,33.90434],[45.53696,33.90621],[45.53554,33.9074],[45.53525,33.90918],[45.53527,33.91105],[45.53436,33.91258],[45.53243,33.91309],[45.53111,33.91352],[45.52936,33.91427],[45.52878,33.91539],[45.52848,33.91692],[45.52716,33.91769],[45.52594,33.91777],[45.52574,33.91871],[45.52545,33.91964],[45.52423,33.92007],[45.5229,33.92024],[45.52159,33.9201],[45.52169,33.92075],[45.52169,33.92219],[45.52099,33.92338],[45.52018,33.92432],[45.51957,33.92483],[45.51816,33.92704],[45.51767,33.92925],[45.51727,33.93087],[45.51688,33.93273],[45.51668,33.93409],[45.51619,33.93571],[45.51568,33.9369],[45.51477,33.93825],[45.51366,33.93911],[45.51305,33.93987],[45.51287,33.94208],[45.51247,33.94378],[45.51126,33.94556],[45.50974,33.94735],[45.50863,33.94854],[45.50772,33.94939],[45.50701,33.95066],[45.50509,33.9522],[45.50326,33.95424],[45.50282,33.95516],[45.50252,33.95633],[45.5027,33.95732],[45.50163,33.95726],[45.50072,33.95717],[45.49981,33.95642],[45.49849,33.95424],[45.49667,33.95357],[45.49486,33.95298],[45.49304,33.9519],[45.49253,33.95122],[45.49102,33.95014],[45.48964,33.94927],[45.48779,33.94905],[45.48447,33.94863],[45.48356,33.94838],[45.48243,33.9476],[45.48195,33.94805],[45.48166,33.94863],[45.48131,33.94927],[45.48077,33.95015],[45.47846,33.95056],[45.47645,33.9504],[45.47474,33.9504],[45.47313,33.95006],[45.47011,33.94923],[45.4682,33.94957],[45.46629,33.94973],[45.46438,33.94948],[45.46247,33.9489],[45.46045,33.94806],[45.45874,33.94731],[45.45825,33.94677],[45.45652,33.94731],[45.45532,33.94747],[45.45401,33.94698],[45.4526,33.94664],[45.45049,33.94639],[45.44889,33.94698],[45.44808,33.94698],[45.44686,33.94705],[45.44567,33.94782],[45.44437,33.94798],[45.44216,33.94782],[45.44065,33.94748],[45.43854,33.94748],[45.43673,33.9479],[45.43472,33.9474],[45.43351,33.94698],[45.4316,33.9468],[45.4309,33.94749],[45.42981,33.94916],[45.42962,33.95042],[45.42964,33.95243],[45.42974,33.95369],[45.42995,33.95462],[45.42906,33.95537],[45.42715,33.95621],[45.42555,33.95721],[45.42475,33.95797],[45.42356,33.95898],[45.42215,33.95923],[45.42115,33.95973],[45.42036,33.96065],[45.42037,33.96217],[45.42007,33.96334],[45.41928,33.96443],[45.41878,33.96535],[45.41825,33.96593],[45.41759,33.9672],[45.41721,33.96929],[45.41622,33.97122],[45.41492,33.97307],[45.41353,33.97483],[45.41163,33.97575],[45.40983,33.97659],[45.40832,33.97717],[45.40742,33.97732],[45.40964,33.97835],[45.41125,33.97869],[45.41316,33.97894],[45.41548,33.97919],[45.41729,33.97986],[45.41941,33.98086],[45.42052,33.98204],[45.42084,33.98321],[45.42105,33.98472],[45.42146,33.98615],[45.42148,33.98833],[45.42139,33.98959],[45.4218,33.99068],[45.42291,33.99143],[45.42412,33.99185],[45.42523,33.99176],[45.42633,33.99118],[45.42773,33.99084],[45.42894,33.99076],[45.43015,33.99092],[45.43046,33.99252],[45.43108,33.99395],[45.43179,33.9952],[45.4329,33.99621],[45.43402,33.99738],[45.43533,33.99805],[45.43684,33.99813],[45.43805,33.99839],[45.43926,33.99914],[45.43926,33.99922],[45.44209,34.00025],[45.44431,34.00151],[45.44804,34.00353],[45.44985,34.00488],[45.45146,34.00622],[45.45307,34.00748],[45.45549,34.00833],[45.4567,34.00842],[45.45871,34.00867],[45.46083,34.00927],[45.46264,34.00986],[45.46415,34.01012],[45.46587,34.01071],[45.46728,34.01139],[45.46727,34.01197],[45.46697,34.01255],[45.46647,34.01297],[45.46596,34.01364],[45.46617,34.01439],[45.46697,34.01489],[45.46757,34.01557],[45.46788,34.0164],[45.46727,34.0174],[45.46717,34.01824],[45.46717,34.01916],[45.46757,34.02024],[45.46818,34.02058],[45.46918,34.021],[45.4702,34.02067],[45.4709,34.02026],[45.4713,34.02051],[45.4716,34.02143],[45.47231,34.02294],[45.47352,34.0237],[45.47503,34.02487],[45.47614,34.02605],[45.47654,34.02689],[45.47583,34.0273],[45.47553,34.0273],[45.47503,34.02688],[45.47452,34.02629],[45.47412,34.02579],[45.47341,34.02553],[45.47231,34.02562],[45.4717,34.02619],[45.4709,34.02736],[45.4723,34.02904],[45.47321,34.02971],[45.47372,34.03072],[45.47382,34.03197],[45.47361,34.03281],[45.47321,34.03431],[45.47261,34.03489],[45.47119,34.03488],[45.47039,34.0353],[45.47019,34.0358],[45.47039,34.0363],[45.47099,34.03656],[45.4719,34.03681],[45.47281,34.0369],[45.47351,34.03682],[45.47412,34.0364],[45.47493,34.03657],[45.47593,34.03658],[45.47664,34.03608],[45.47765,34.03608],[45.47795,34.03709],[45.47814,34.03801],[45.47784,34.03859],[45.47744,34.03959],[45.47744,34.04051],[45.47774,34.04151],[45.47824,34.04219],[45.47905,34.04269],[45.47945,34.04328],[45.48006,34.04445],[45.47945,34.04528],[45.47986,34.04662],[45.48016,34.04754],[45.48016,34.0483],[45.47985,34.0488],[45.47764,34.05021],[45.47683,34.05112],[45.47643,34.05196],[45.47703,34.05305],[45.47814,34.05422],[45.47935,34.05473],[45.47985,34.05598],[45.47995,34.05732],[45.47935,34.05815],[45.47935,34.0589],[45.47955,34.05983],[45.47914,34.06083],[45.47834,34.06132],[45.47693,34.0614],[45.4733,34.06139],[45.47199,34.06189],[45.47038,34.06263],[45.46867,34.06346],[45.46725,34.06446],[45.46675,34.06537],[45.46736,34.06671],[45.46876,34.0673],[45.46987,34.06815],[45.47088,34.06848],[45.47098,34.06932],[45.47148,34.0699],[45.47199,34.07016],[45.47269,34.07083],[45.47269,34.07133],[45.47239,34.07208],[45.47209,34.07267],[45.47229,34.07309],[45.47279,34.07342],[45.4735,34.07418],[45.4737,34.07501],[45.4738,34.07593],[45.4738,34.07669],[45.474,34.07727],[45.47501,34.07744],[45.47662,34.07762],[45.47783,34.0777],[45.47894,34.07821],[45.47954,34.07913],[45.47964,34.08013],[45.47995,34.08131],[45.48014,34.08215],[45.48105,34.08265],[45.48226,34.08282],[45.48367,34.08266],[45.48387,34.08208],[45.48407,34.08132],[45.48418,34.0799],[45.48458,34.07848],[45.48498,34.07757],[45.48549,34.07707],[45.48629,34.07724],[45.4865,34.07799],[45.4868,34.07933],[45.4876,34.08084],[45.48851,34.08134],[45.48971,34.08177],[45.49012,34.08243],[45.49032,34.08319],[45.49092,34.08361],[45.49213,34.08395],[45.49344,34.08412],[45.49526,34.08421],[45.49626,34.08464],[45.49616,34.08556],[45.49536,34.0863],[45.49364,34.08688],[45.49102,34.08795],[45.49032,34.08871],[45.49123,34.08955],[45.49223,34.0898],[45.49385,34.09031],[45.49395,34.09164],[45.49395,34.09256],[45.49414,34.09357],[45.49485,34.09424],[45.49576,34.09425],[45.49656,34.094],[45.49727,34.09442],[45.49717,34.09584],[45.49737,34.09684],[45.49837,34.09751],[45.49939,34.09793],[45.50009,34.09819],[45.502,34.0992],[45.50432,34.09954],[45.50613,34.09964],[45.50694,34.09989],[45.50714,34.10064],[45.50664,34.10131],[45.50563,34.10222],[45.50492,34.10306],[45.50442,34.10406],[45.50482,34.10514],[45.50603,34.10549],[45.50734,34.10566],[45.50845,34.10683],[45.50996,34.10868],[45.51137,34.11019],[45.51237,34.11086],[45.51368,34.11204],[45.51479,34.11179],[45.5154,34.11179],[45.5157,34.11213],[45.5155,34.1128],[45.51489,34.11313],[45.51469,34.11405],[45.5155,34.11397],[45.5166,34.11355],[45.51832,34.11306],[45.51902,34.11231],[45.51983,34.1119],[45.52034,34.11156],[45.52074,34.11165],[45.52124,34.11215],[45.52124,34.1129],[45.52104,34.11365],[45.52134,34.11466],[45.52164,34.11499],[45.52245,34.11533],[45.52386,34.1155],[45.52457,34.1166],[45.52436,34.11735],[45.52416,34.11801],[45.52366,34.11893],[45.52507,34.11961],[45.52648,34.12003],[45.52809,34.11945],[45.52819,34.11811],[45.52809,34.11686],[45.52809,34.11619],[45.5287,34.11578],[45.5299,34.11562],[45.53081,34.1157],[45.53081,34.11629],[45.53101,34.11695],[45.53152,34.11771],[45.53273,34.11797],[45.53373,34.11797],[45.53353,34.11864],[45.53252,34.11938],[45.53121,34.1198],[45.53031,34.12063],[45.5299,34.1223],[45.53061,34.12314],[45.53171,34.12331],[45.53363,34.12407],[45.53464,34.12507],[45.53595,34.12466],[45.53665,34.12433],[45.53927,34.12551],[45.54108,34.12602],[45.54199,34.12603],[45.5428,34.12653],[45.5432,34.12745],[45.54436,34.12788],[45.54511,34.12838],[45.54572,34.12872],[45.54592,34.1293],[45.54652,34.13022],[45.55075,34.13325],[45.55498,34.13653],[45.5577,34.13846],[45.55881,34.13805],[45.56002,34.13864],[45.56012,34.14006],[45.56551,34.13991],[45.56825,34.13986],[45.57523,34.14388],[45.5816,34.14621],[45.57896,34.15058],[45.57664,34.15484],[45.57482,34.15884],[45.57482,34.16411],[45.57412,34.16904],[45.57331,34.17204],[45.572,34.17379],[45.57049,34.17504],[45.56964,34.1751],[45.56766,34.17753],[45.56555,34.17995],[45.56303,34.18286],[45.5595,34.18652],[45.55748,34.18952],[45.55728,34.18977],[45.55527,34.19286],[45.55426,34.19628],[45.55476,34.19812],[45.55567,34.19946],[45.55714,34.20039],[45.55788,34.20173],[45.5601,34.20425],[45.56187,34.20594],[45.56705,34.21071],[45.56946,34.21289],[45.56993,34.21316],[45.57087,34.21791],[45.57148,34.22084],[45.5727,34.22343],[45.57641,34.23014],[45.57923,34.23474],[45.58049,34.2365],[45.58124,34.24069],[45.58124,34.24211],[45.58144,34.2432],[45.58187,34.24428],[45.58225,34.24687],[45.58255,34.24863],[45.58255,34.24972],[45.58187,34.25511],[45.58178,34.2582],[45.58149,34.26382],[45.58195,34.26783],[45.58215,34.26844],[45.58275,34.27505],[45.58375,34.2796],[45.58529,34.28566],[45.58604,34.28817],[45.58573,34.29346],[45.5857,34.29478],[45.58484,34.29957],[45.5835,34.30291],[45.57465,34.31621],[45.56187,34.33177],[45.53621,34.35369],[45.53543,34.35345],[45.53521,34.35261],[45.53496,34.35113],[45.53463,34.34952],[45.53396,34.34789],[45.53206,34.34714],[45.52996,34.34734],[45.5282,34.34921],[45.52631,34.35017],[45.52392,34.35023],[45.52137,34.34958],[45.5196,34.34923],[45.51774,34.34896],[45.51503,34.34954],[45.51178,34.35154],[45.51051,34.35281],[45.50912,34.35335],[45.50817,34.35297],[45.5075,34.35174],[45.50679,34.35021],[45.50588,34.3486],[45.50468,34.34754],[45.50426,34.34638],[45.50434,34.3445],[45.50371,34.34239],[45.50198,34.34092],[45.50037,34.33989],[45.49987,34.33962],[45.49941,34.3389],[45.49846,34.33771],[45.49742,34.33621],[45.49631,34.33706],[45.49353,34.34178],[45.48075,34.36483],[45.46659,34.38371],[45.46634,34.38628],[45.46381,34.39872],[45.46242,34.40261],[45.45853,34.41594],[45.45797,34.42095],[45.45677,34.43085],[45.45659,34.43325],[45.45436,34.43289],[45.45436,34.43511],[45.45156,34.43665],[45.44881,34.43761],[45.4449,34.43934],[45.4477,34.4398],[45.44355,34.44126],[45.44247,34.44308],[45.44219,34.44744],[45.44274,34.44851],[45.44329,34.44976],[45.44224,34.45208],[45.44131,34.45317],[45.44033,34.45565],[45.44025,34.45805],[45.4407,34.46019],[45.44255,34.46188],[45.44397,34.46411],[45.44548,34.46511],[45.44807,34.46499],[45.44992,34.46428],[45.45298,34.46428],[45.45436,34.4665],[45.45853,34.4665],[45.46016,34.46762],[45.46135,34.46952],[45.46186,34.474],[45.46312,34.47513],[45.4647,34.4752],[45.46663,34.47592],[45.46804,34.47743],[45.46953,34.47808],[45.47119,34.47771],[45.4724,34.47662],[45.47379,34.4759],[45.47798,34.47553],[45.48104,34.47602],[45.4841,34.47609],[45.48698,34.47565],[45.48864,34.47557],[45.49073,34.47528],[45.49177,34.47499],[45.49387,34.47448],[45.49631,34.4744],[45.49805,34.47374],[45.4991,34.47367],[45.49997,34.47367],[45.50079,34.47377],[45.50215,34.47376],[45.50371,34.47334],[45.50579,34.47306],[45.50709,34.47285],[45.50795,34.47261],[45.51022,34.47341],[45.51238,34.47478],[45.51475,34.47605],[45.51712,34.47759],[45.51821,34.47887],[45.51929,34.48086],[45.51939,34.48123],[45.52109,34.48257],[45.52274,34.48529],[45.52371,34.4871],[45.52381,34.48905],[45.52364,34.49064],[45.52453,34.49274],[45.52558,34.49447],[45.52638,34.49592],[45.52647,34.49678],[45.52708,34.49792],[45.52709,34.49824],[45.52674,34.49903],[45.52584,34.49996],[45.52569,34.50163],[45.5258,34.50301],[45.52521,34.50432],[45.52532,34.50614],[45.52604,34.5078],[45.52581,34.50955],[45.52539,34.51064],[45.52497,34.51209],[45.52552,34.51405],[45.5252,34.51558],[45.52494,34.51616],[45.52557,34.51739],[45.52621,34.51942],[45.52678,34.52226],[45.52647,34.52451],[45.52632,34.52669],[45.52602,34.52953],[45.52542,34.53083],[45.52381,34.53183],[45.52345,34.53353],[45.52304,34.53506],[45.52263,34.53717],[45.52266,34.53927],[45.52173,34.54138],[45.52079,34.54248],[45.51845,34.54408],[45.51663,34.54518],[45.51489,34.54585],[45.51368,34.54636],[45.5133,34.54654],[45.51325,34.54702],[45.51362,34.54861],[45.51416,34.54948],[45.5144,34.55046],[45.51215,34.55122],[45.512,34.55167],[45.51289,34.55247],[45.51378,34.55341],[45.51537,34.55434],[45.51747,34.55492],[45.51854,34.55614],[45.51954,34.55839],[45.52183,34.55976],[45.52253,34.55991],[45.52351,34.56113],[45.52345,34.56295],[45.52304,34.5647],[45.52341,34.56644],[45.52309,34.56811],[45.52293,34.56927],[45.52339,34.57109],[45.52306,34.57218],[45.52307,34.57291],[45.52361,34.57363],[45.52397,34.57457],[45.52373,34.57559],[45.52313,34.57661],[45.52314,34.57755],[45.52386,34.57849],[45.52457,34.57922],[45.52589,34.57965],[45.52703,34.58022],[45.52748,34.58124],[45.5275,34.58226],[45.5276,34.58327],[45.5284,34.58414],[45.52938,34.58551],[45.52983,34.58638],[45.53055,34.5874],[45.53091,34.58841],[45.53155,34.58986],[45.53192,34.59168],[45.53142,34.59349],[45.5311,34.5951],[45.53112,34.59633],[45.5314,34.59771],[45.53054,34.59888],[45.52969,34.59997],[45.52953,34.60113],[45.52998,34.60164],[45.53099,34.60183],[45.53243,34.60221],[45.53437,34.60278],[45.53568,34.60306],[45.53664,34.60299],[45.53733,34.60218],[45.53819,34.60109],[45.53809,34.60015],[45.53773,34.59957],[45.53702,34.59906],[45.53614,34.59885],[45.53552,34.5982],[45.53525,34.5974],[45.53523,34.59653],[45.53504,34.59566],[45.53564,34.59485],[45.53616,34.59413],[45.53694,34.59362],[45.53781,34.59339],[45.5386,34.5939],[45.53959,34.59513],[45.54039,34.59592],[45.54136,34.59679],[45.54242,34.59737],[45.5433,34.59794],[45.54418,34.59794],[45.54522,34.5975],[45.54573,34.59684],[45.54651,34.59597],[45.54703,34.59545],[45.54807,34.59509],[45.54877,34.59487],[45.54964,34.59501],[45.55017,34.59544],[45.55166,34.59521],[45.55244,34.59478],[45.55304,34.59412],[45.55347,34.59353],[45.55381,34.59303],[45.55486,34.59266],[45.55529,34.59265],[45.5553,34.59324],[45.55557,34.59374],[45.55646,34.59425],[45.55742,34.59425],[45.55776,34.59381],[45.55801,34.59293],[45.558,34.59214],[45.55738,34.59156],[45.55667,34.59112],[45.55588,34.59113],[45.55518,34.59091],[45.55491,34.59062],[45.55482,34.59011],[45.55525,34.58982],[45.55612,34.58945],[45.55655,34.58873],[45.55741,34.58785],[45.55749,34.58727],[45.55809,34.58654],[45.5586,34.58574],[45.55894,34.58515],[45.55893,34.58457],[45.55805,34.58422],[45.55709,34.58393],[45.55603,34.58328],[45.5554,34.58248],[45.5553,34.58176],[45.55686,34.58059],[45.55878,34.58058],[45.56001,34.58086],[45.56098,34.58086],[45.56141,34.58071],[45.56166,34.58006],[45.56166,34.57955],[45.56121,34.57912],[45.5606,34.57883],[45.55946,34.57854],[45.55866,34.57811],[45.55847,34.57688],[45.55854,34.57622],[45.55889,34.57579],[45.55966,34.57513],[45.56045,34.5749],[45.56124,34.57498],[45.56185,34.57541],[45.56264,34.57555],[45.56335,34.57562],[45.56404,34.57532],[45.5649,34.57459],[45.56568,34.57386],[45.56619,34.57299],[45.56661,34.57204],[45.56703,34.57088],[45.56719,34.56964],[45.56717,34.56841],[45.56708,34.56812],[45.56672,34.56739],[45.56723,34.56652],[45.56801,34.56623],[45.56887,34.56564],[45.56948,34.56484],[45.57025,34.56418],[45.57103,34.56359],[45.57146,34.56345],[45.57217,34.56345],[45.57261,34.56395],[45.57263,34.56526],[45.57326,34.56627],[45.5744,34.56678],[45.57483,34.56641],[45.57491,34.5659],[45.5749,34.5651],[45.5748,34.5643],[45.57479,34.5635],[45.57522,34.56292],[45.57626,34.56211],[45.57685,34.56139],[45.57711,34.56059],[45.57735,34.55957],[45.57734,34.55891],[45.57803,34.5584],[45.57908,34.55818],[45.57978,34.55854],[45.58015,34.55955],[45.58069,34.56035],[45.58165,34.56078],[45.58225,34.55983],[45.58242,34.55918],[45.58267,34.55845],[45.58363,34.55823],[45.58423,34.55757],[45.58536,34.5572],[45.58659,34.55749],[45.58695,34.55828],[45.58801,34.55908],[45.58872,34.55966],[45.58951,34.55994],[45.59073,34.55943],[45.59054,34.55885],[45.59018,34.5582],[45.59,34.55732],[45.59024,34.55653],[45.5905,34.55623],[45.59111,34.55601],[45.59181,34.55593],[45.59233,34.5555],[45.59302,34.5552],[45.5945,34.5549],[45.59537,34.55468],[45.59528,34.55388],[45.59483,34.55323],[45.59464,34.55229],[45.59489,34.55141],[45.59496,34.55069],[45.5954,34.5504],[45.59661,34.55017],[45.59767,34.55046],[45.5989,34.55067],[45.59925,34.55117],[45.59944,34.55168],[45.60014,34.55197],[45.60092,34.55175],[45.60248,34.55051],[45.60378,34.55006],[45.60544,34.54954],[45.60675,34.54939],[45.60745,34.54968],[45.60799,34.55062],[45.60879,34.55164],[45.61106,34.55104],[45.61114,34.55097],[45.61254,34.55125],[45.61308,34.55197],[45.61431,34.55218],[45.61588,34.55218],[45.61657,34.55174],[45.6178,34.55151],[45.61953,34.55092],[45.62172,34.55077],[45.62208,34.55156],[45.62295,34.55105],[45.62365,34.55133],[45.62358,34.55228],[45.62342,34.55315],[45.62526,34.5538],[45.62604,34.55321],[45.62619,34.55139],[45.62617,34.55038],[45.62668,34.54929],[45.6272,34.54899],[45.62816,34.54921],[45.62861,34.55007],[45.62907,34.55109],[45.63021,34.55144],[45.63162,34.55209],[45.63252,34.55361],[45.63264,34.55579],[45.63188,34.55717],[45.63216,34.55884],[45.63305,34.55942],[45.63427,34.55912],[45.63531,34.55846],[45.63555,34.55752],[45.63597,34.55657],[45.63693,34.55635],[45.63869,34.55684],[45.63922,34.55713],[45.63914,34.55772],[45.63872,34.55844],[45.63916,34.5591],[45.64083,34.55916],[45.64125,34.55858],[45.64141,34.55756],[45.64166,34.55683],[45.64129,34.5556],[45.64058,34.5548],[45.64013,34.554],[45.64039,34.55364],[45.64143,34.55356],[45.64292,34.55334],[45.64397,34.55326],[45.64544,34.5526],[45.64605,34.55216],[45.64665,34.55165],[45.64735,34.55164],[45.6484,34.55192],[45.64876,34.5525],[45.64982,34.55294],[45.65113,34.55293],[45.65166,34.55343],[45.65107,34.5546],[45.65074,34.55591],[45.65102,34.55663],[45.65198,34.5567],[45.6524,34.55612],[45.65248,34.55539],[45.6529,34.55451],[45.65325,34.554],[45.65464,34.55363],[45.65552,34.55407],[45.65623,34.55493],[45.65782,34.55558],[45.65982,34.55535],[45.6613,34.55454],[45.66128,34.55323],[45.66196,34.55221],[45.66317,34.55112],[45.66456,34.55104],[45.66503,34.55256],[45.66574,34.55357],[45.66723,34.55371],[45.66905,34.55268],[45.67,34.55187],[45.67121,34.55143],[45.67255,34.55266],[45.67353,34.55367],[45.67434,34.55548],[45.67523,34.55621],[45.67645,34.5562],[45.67775,34.55553],[45.67915,34.55516],[45.67993,34.55523],[45.68065,34.55617],[45.68111,34.55777],[45.68183,34.55878],[45.68227,34.55929],[45.68394,34.55928],[45.68462,34.55862],[45.68461,34.55767],[45.68372,34.55666],[45.68344,34.55601],[45.68335,34.55529],[45.68404,34.55477],[45.685,34.55469],[45.68563,34.55621],[45.68591,34.5573],[45.68637,34.55817],[45.68706,34.5581],[45.68801,34.55736],[45.68888,34.55663],[45.68983,34.55619],[45.69017,34.55561],[45.69095,34.55517],[45.69226,34.55516],[45.69304,34.55464],[45.69303,34.55407],[45.6931,34.55334],[45.6938,34.5529],[45.69493,34.55282],[45.69572,34.55318],[45.69684,34.55186],[45.69805,34.55106],[45.69891,34.5504],[45.69907,34.54931],[45.69975,34.54814],[45.70043,34.54748],[45.70122,34.54719],[45.70227,34.54747],[45.70289,34.5479],[45.70393,34.54753],[45.7041,34.54688],[45.70417,34.54579],[45.70529,34.54527],[45.7066,34.54512],[45.70749,34.54577],[45.70906,34.54583],[45.70957,34.54474],[45.71,34.5443],[45.70938,34.54358],[45.70866,34.54286],[45.70918,34.5422],[45.71013,34.5419],[45.71093,34.54233],[45.71216,34.54283],[45.71276,34.54247],[45.71267,34.54182],[45.71248,34.54101],[45.71326,34.54065],[45.71404,34.54042],[45.71569,34.53969],[45.71683,34.53961],[45.71788,34.53996],[45.71787,34.53946],[45.71751,34.53881],[45.71741,34.5383],[45.71828,34.53778],[45.71915,34.53735],[45.72047,34.53784],[45.72084,34.53893],[45.72189,34.53914],[45.72241,34.53885],[45.72267,34.53863],[45.72327,34.53804],[45.72404,34.53746],[45.72527,34.53767],[45.72623,34.53773],[45.72684,34.53759],[45.72928,34.5367],[45.73014,34.53633],[45.73075,34.53611],[45.7318,34.53588],[45.7325,34.53602],[45.73234,34.53683],[45.73218,34.53777],[45.73289,34.53857],[45.73447,34.5387],[45.73542,34.53826],[45.7362,34.53782],[45.73724,34.5373],[45.73855,34.53693],[45.73967,34.53641],[45.74038,34.53677],[45.74116,34.5367],[45.74194,34.53626],[45.74257,34.53691],[45.74258,34.53763],[45.74338,34.53813],[45.74338,34.5385],[45.7433,34.53904],[45.74279,34.53981],[45.74167,34.54076],[45.74073,34.542],[45.74067,34.54331],[45.74139,34.54476],[45.74237,34.54584],[45.74269,34.54889],[45.7424,34.55071],[45.74196,34.55216],[45.74066,34.55326],[45.7391,34.55378],[45.73632,34.554],[45.73624,34.55532],[45.73609,34.55634],[45.73541,34.5578],[45.73482,34.55918],[45.73468,34.56078],[45.7347,34.56209],[45.73542,34.56346],[45.73576,34.56428],[45.73791,34.56555],[45.73854,34.56686],[45.73918,34.56831],[45.74009,34.57026],[45.74048,34.57259],[45.73989,34.57383],[45.73903,34.57485],[45.73819,34.57667],[45.7383,34.57819],[45.73946,34.57935],[45.7401,34.58094],[45.73917,34.58298],[45.73928,34.58436],[45.73907,34.58683],[45.73831,34.58851],[45.73745,34.58924],[45.7366,34.58956],[45.73554,34.59063],[45.73266,34.59079],[45.73179,34.59109],[45.73049,34.59178],[45.7306,34.59313],[45.73001,34.59459],[45.7288,34.59554],[45.72849,34.59743],[45.72852,34.59917],[45.72819,34.60055],[45.72682,34.60187],[45.72605,34.60333],[45.72504,34.60522],[45.72366,34.60668],[45.72324,34.60771],[45.72243,34.60817],[45.72266,34.60916],[45.72355,34.61039],[45.72399,34.61082],[45.72507,34.61249],[45.72571,34.61372],[45.72572,34.61452],[45.72688,34.61597],[45.72927,34.61711],[45.72965,34.61733],[45.73,34.61878],[45.72959,34.6206],[45.72892,34.62205],[45.72866,34.62278],[45.72782,34.62468],[45.72699,34.62715],[45.72624,34.62919],[45.72566,34.63137],[45.72507,34.63254],[45.7251,34.63435],[45.72486,34.63588],[45.72349,34.63771],[45.72203,34.6388],[45.72029,34.63954],[45.7197,34.64078],[45.7192,34.6426],[45.71802,34.64493],[45.71699,34.64624],[45.71582,34.6493],[45.71455,34.65222],[45.71371,34.65411],[45.7134,34.65607],[45.71255,34.65768],[45.71146,34.66059],[45.71071,34.66277],[45.71056,34.66415],[45.71009,34.66757],[45.71037,34.66873],[45.71049,34.66928],[45.71004,34.67011],[45.70856,34.67034],[45.70715,34.66991],[45.70425,34.66913],[45.70214,34.66893],[45.70006,34.66967],[45.69804,34.66975],[45.69717,34.66968],[45.69604,34.66928],[45.69598,34.67209],[45.69592,34.67361],[45.69596,34.67579],[45.69662,34.67855],[45.69691,34.68029],[45.69686,34.68283],[45.6976,34.68501],[45.69842,34.68682],[45.69977,34.68884],[45.7012,34.69043],[45.70227,34.69188],[45.70299,34.69206],[45.70291,34.69318],[45.70243,34.69344],[45.70223,34.69457],[45.7005,34.69574],[45.69842,34.69699],[45.69642,34.69773],[45.69416,34.69912],[45.69262,34.70116],[45.69195,34.7032],[45.69162,34.70415],[45.69104,34.70483],[45.69025,34.70626],[45.68634,34.70781],[45.68399,34.70884],[45.68287,34.70979],[45.68156,34.70994],[45.67972,34.71025],[45.67824,34.71083],[45.67702,34.71091],[45.67587,34.71041],[45.67455,34.71006],[45.6729,34.71094],[45.67118,34.71247],[45.66882,34.71373],[45.66754,34.71518],[45.66677,34.71642],[45.66546,34.71672],[45.6631,34.71674],[45.66241,34.71725],[45.66164,34.71834],[45.66059,34.71893],[45.6592,34.71915],[45.6578,34.71967],[45.65702,34.72011],[45.65694,34.72069],[45.65599,34.72135],[45.65547,34.72193],[45.65435,34.72296],[45.65357,34.72311],[45.65252,34.72326],[45.65315,34.7242],[45.65431,34.7255],[45.65546,34.72644],[45.65697,34.72795],[45.65821,34.72824],[45.66104,34.72844],[45.66225,34.72923],[45.66332,34.73032],[45.66439,34.73125],[45.66493,34.73198],[45.66664,34.73516],[45.66871,34.73806],[45.67057,34.7395],[45.67138,34.74073],[45.67193,34.74196],[45.67203,34.74269],[45.67287,34.74573],[45.67377,34.74733],[45.6752,34.74928],[45.67554,34.75071],[45.67626,34.75207],[45.67697,34.75323],[45.67715,34.75372],[45.67647,34.7554],[45.6764,34.75771],[45.67756,34.75987],[45.67916,34.76167],[45.68067,34.76369],[45.68215,34.76456],[45.68358,34.76599],[45.68499,34.76671],[45.68684,34.7675],[45.68764,34.76793],[45.68914,34.76937],[45.69143,34.77022],[45.69467,34.77065],[45.69748,34.77093],[45.69937,34.7715],[45.69952,34.77309],[45.69893,34.7749],[45.69815,34.77663],[45.6973,34.77837],[45.69626,34.77953],[45.69513,34.78097],[45.69409,34.78213],[45.69358,34.78321],[45.6941,34.78373],[45.69622,34.78436],[45.69789,34.78522],[45.69984,34.78673],[45.70178,34.78796],[45.70328,34.78918],[45.7041,34.79039],[45.70304,34.79171],[45.70078,34.7933],[45.70036,34.79475],[45.69846,34.79807],[45.69699,34.79938],[45.69532,34.79981],[45.69402,34.80112],[45.69272,34.80271],[45.69212,34.8043],[45.69205,34.8056],[45.69189,34.80755],[45.69104,34.80993],[45.68992,34.81152],[45.68826,34.81317],[45.68846,34.81449],[45.68935,34.816],[45.69076,34.81694],[45.69279,34.81852],[45.69475,34.82125],[45.69626,34.8227],[45.69715,34.82363],[45.6991,34.82429],[45.70326,34.8254],[45.7116,34.82873],[45.71299,34.82957],[45.71354,34.83039],[45.71465,34.83095],[45.72269,34.83945],[45.72397,34.839],[45.7259,34.83899],[45.72714,34.84],[45.72925,34.84028],[45.73117,34.83934],[45.73372,34.83969],[45.73488,34.84127],[45.73623,34.8451],[45.73799,34.8479],[45.73819,34.84697],[45.73719,34.84459],[45.73664,34.84221],[45.736,34.83961],[45.73604,34.83789],[45.73596,34.83586],[45.73638,34.83383],[45.73768,34.83253],[45.74014,34.83303],[45.74305,34.83388],[45.74479,34.8333],[45.74566,34.83229],[45.74652,34.8307],[45.74715,34.829],[45.74852,34.8291],[45.75019,34.82974],[45.75353,34.83041],[45.75576,34.83039],[45.75937,34.83311],[45.76194,34.83461],[45.76503,34.83545],[45.76723,34.83586],[45.76884,34.83701],[45.77033,34.83735],[45.77243,34.83691],[45.7741,34.83704],[45.77482,34.83812],[45.77483,34.83819],[45.77726,34.84156],[45.77952,34.84508],[45.78247,34.8478],[45.78595,34.85045],[45.79057,34.85359],[45.79369,34.85602],[45.79576,34.85707],[45.7965,34.86062],[45.79694,34.86531],[45.79679,34.87066],[45.7974,34.87477],[45.79677,34.8786],[45.79643,34.88359],[45.79477,34.88845],[45.79344,34.89243],[45.79214,34.89765],[45.79132,34.90011],[45.79031,34.90236],[45.7891,34.90352],[45.78747,34.90563],[45.7866,34.90706],[45.787,34.90831],[45.78842,34.90938],[45.79038,34.91052],[45.79172,34.91159],[45.79299,34.91151],[45.79543,34.91265],[45.79999,34.91282],[45.80332,34.91229],[45.80621,34.91154],[45.81077,34.91128],[45.81333,34.91206],[45.81492,34.91241],[45.8171,34.91174],[45.81771,34.91123],[45.81938,34.9115],[45.82183,34.91148],[45.82356,34.91002],[45.82503,34.90892],[45.82658,34.9071],[45.82716,34.90551],[45.82743,34.90345],[45.82826,34.9034],[45.82933,34.90455],[45.83126,34.90439],[45.83343,34.90329],[45.83465,34.90234],[45.83462,34.90089],[45.83451,34.90024],[45.83537,34.89915],[45.83632,34.89845],[45.83826,34.89898],[45.83924,34.89948],[45.84167,34.89823],[45.84248,34.89894],[45.84354,34.89944],[45.84442,34.89943],[45.84571,34.89819],[45.84684,34.89746],[45.84833,34.8973],[45.84928,34.8965],[45.84995,34.8949],[45.85076,34.89401],[45.85195,34.89445],[45.85224,34.89575],[45.85401,34.89624],[45.8563,34.89651],[45.85823,34.89628],[45.86129,34.89574],[45.86322,34.89565],[45.86549,34.89595],[45.86536,34.89715],[45.86494,34.89817],[45.865,34.90105],[45.86576,34.90207],[45.86522,34.90322],[45.86533,34.90423],[45.86597,34.90546],[45.86764,34.90551],[45.86907,34.90673],[45.86901,34.90795],[45.8691,34.90957],[45.86822,34.91266],[45.86803,34.91591],[45.86772,34.91808],[45.86767,34.91989],[45.86884,34.92125],[45.86885,34.92154],[45.86916,34.92377],[45.86875,34.92522],[45.86807,34.92631],[45.86809,34.92733],[45.86952,34.92861],[45.87112,34.92925],[45.87262,34.92996],[45.87309,34.93111],[45.87302,34.93219],[45.87234,34.93328],[45.87186,34.93516],[45.87271,34.93595],[45.87337,34.93631],[45.87459,34.93601],[45.87565,34.93593],[45.87646,34.93686],[45.87778,34.93721],[45.87859,34.93778],[45.8786,34.93879],[45.87854,34.93987],[45.87917,34.94073],[45.88015,34.9413],[45.88149,34.9423],[45.88178,34.94353],[45.8818,34.94432],[45.88199,34.94519],[45.88262,34.94576],[45.88359,34.94582],[45.88436,34.94538],[45.88533,34.94516],[45.88735,34.94521],[45.88851,34.94599],[45.88976,34.94707],[45.8902,34.94699],[45.89125,34.94677],[45.89196,34.94705],[45.8918,34.94798],[45.89155,34.94871],[45.89227,34.94936],[45.89359,34.94971],[45.89422,34.95021],[45.89423,34.95085],[45.89372,34.95173],[45.8941,34.95309],[45.89359,34.95375],[45.89299,34.95426],[45.89326,34.95491],[45.89407,34.95541],[45.89522,34.95626],[45.8956,34.95742],[45.89614,34.95821],[45.8973,34.9587],[45.89775,34.9592],[45.89771,34.95957],[45.89735,34.96116],[45.89642,34.96268],[45.89625,34.96348],[45.89503,34.96385],[45.89496,34.9645],[45.89454,34.96537],[45.89402,34.96559],[45.89359,34.96632],[45.8936,34.96697],[45.8931,34.9682],[45.89215,34.96879],[45.89102,34.96938],[45.89051,34.97032],[45.89046,34.9722],[45.89066,34.97321],[45.89147,34.97414],[45.89175,34.97501],[45.89116,34.97602],[45.89031,34.97726],[45.88998,34.97856],[45.8902,34.98037],[45.88926,34.98182],[45.88743,34.98234],[45.88754,34.98343],[45.88818,34.98465],[45.88865,34.98616],[45.88876,34.98739],[45.88993,34.98845],[45.88804,34.99072],[45.88806,34.99181],[45.88721,34.9929],[45.88643,34.99355],[45.88645,34.99478],[45.88559,34.99544],[45.88553,34.99659],[45.88556,34.99818],[45.88593,34.99948],[45.88446,35.00058],[45.88116,35.00213],[45.88108,35.00278],[45.88029,35.00307],[45.87959,35.00315],[45.87822,35.00461],[45.87789,35.00653],[45.87686,35.00722],[45.87459,35.00775],[45.87393,35.00963],[45.87423,35.01144],[45.87529,35.01186],[45.8768,35.01271],[45.87823,35.01342],[45.87939,35.01421],[45.87966,35.01507],[45.8795,35.01551],[45.87838,35.0166],[45.87753,35.01791],[45.87702,35.01907],[45.87768,35.02073],[45.87779,35.02203],[45.87764,35.0234],[45.87663,35.0255],[45.8764,35.02724],[45.8767,35.02875],[45.87673,35.03006],[45.87571,35.03173],[45.8752,35.0326],[45.87469,35.03376],[45.87594,35.0344],[45.87717,35.03446],[45.87781,35.03568],[45.87872,35.03719],[45.8802,35.03725],[45.8984,35.04631],[45.90023,35.04783],[45.90226,35.04824],[45.90411,35.0483],[45.90657,35.04784],[45.90858,35.04732],[45.90971,35.04672],[45.91084,35.04628],[45.91146,35.0462],[45.9126,35.04626],[45.91445,35.04639],[45.9178,35.04658],[45.9192,35.04635],[45.92157,35.04618],[45.92343,35.04681],[45.92475,35.04695],[45.92615,35.04671],[45.92729,35.04642],[45.92799,35.04612],[45.93011,35.0457],[45.93046,35.04646],[45.93051,35.04863],[45.93019,35.05007],[45.92907,35.05146],[45.9277,35.05299],[45.92631,35.05379],[45.92263,35.05455],[45.92141,35.05492],[45.92063,35.0558],[45.92048,35.05703],[45.92051,35.0584],[45.92089,35.05962],[45.92153,35.06049],[45.92227,35.06221],[45.92221,35.0638],[45.92225,35.06554],[45.92213,35.06843],[45.9221,35.07074],[45.92185,35.07139],[45.92146,35.07371],[45.92133,35.07616],[45.92173,35.07811],[45.92237,35.07941],[45.92233,35.0815],[45.92208,35.08215],[45.92198,35.08569],[45.92192,35.09097],[45.92205,35.09265],[45.92182,35.09465],[45.92159,35.09625],[45.92187,35.09704],[45.92388,35.09623],[45.92482,35.0952],[45.92576,35.09368],[45.92847,35.08888],[45.93035,35.08634],[45.93189,35.0843],[45.93414,35.08255],[45.93598,35.08238],[45.93698,35.08346],[45.9378,35.08489],[45.93908,35.08697],[45.94053,35.08891],[45.94196,35.08998],[45.94384,35.09127],[45.94587,35.09168],[45.94701,35.09131],[45.9491,35.09049],[45.95093,35.08982],[45.95232,35.08865],[45.95334,35.08734],[45.95402,35.08632],[45.95566,35.08465],[45.95686,35.08312],[45.95851,35.08224],[45.95991,35.08179],[45.9621,35.08126],[45.96376,35.0811],[45.96551,35.08036],[45.9669,35.07984],[45.96733,35.07912],[45.96783,35.0781],[45.96779,35.076],[45.96846,35.07434],[45.97029,35.07366],[45.97214,35.07365],[45.97459,35.07305],[45.97591,35.07303],[45.97775,35.07287],[45.97941,35.07242],[45.98037,35.07219],[45.98177,35.07175],[45.98237,35.07102],[45.98297,35.07007],[45.98374,35.06949],[45.9847,35.06904],[45.98734,35.06902],[45.98847,35.06821],[45.98924,35.06748],[45.99002,35.06661],[45.99053,35.06595],[45.99148,35.065],[45.99269,35.06441],[45.99548,35.06316],[45.99705,35.06278],[45.99881,35.06269],[45.99978,35.06268],[46.00121,35.06355],[46.0015,35.06478],[46.00162,35.06674],[46.00236,35.06876],[46.00318,35.07042],[46.00444,35.07194],[46.00559,35.07236],[46.00744,35.07257],[46.00911,35.07263],[46.01202,35.07268],[46.01465,35.07208],[46.0163,35.07083],[46.01707,35.06982],[46.01705,35.06851],[46.01737,35.06669],[46.01841,35.0656],[46.0205,35.06457],[46.02328,35.06296],[46.02571,35.06127],[46.02675,35.0601],[46.02743,35.05851],[46.02776,35.05727],[46.02722,35.05691],[46.02607,35.05627],[46.02587,35.05532],[46.02771,35.05451],[46.03006,35.05326],[46.0325,35.05238],[46.03461,35.05214],[46.03635,35.05126],[46.03907,35.05081],[46.04049,35.05152],[46.04103,35.0521],[46.04184,35.05289],[46.04307,35.05302],[46.04455,35.05243],[46.0455,35.05134],[46.04663,35.05039],[46.04812,35.04994],[46.04945,35.05087],[46.05001,35.05232],[46.05108,35.05304],[46.05239,35.05302],[46.05317,35.0523],[46.05315,35.05106],[46.05252,35.05005],[46.05206,35.04904],[46.05204,35.04817],[46.05273,35.04758],[46.05291,35.04737],[46.05455,35.04598],[46.05559,35.04525],[46.05618,35.04372],[46.05641,35.04205],[46.05648,35.04053],[46.05637,35.03937],[46.05724,35.03871],[46.05828,35.03819],[46.06031,35.03825],[46.06226,35.03925],[46.0635,35.03982],[46.0635,35.03996],[46.06528,35.04133],[46.06618,35.04212],[46.0677,35.04341],[46.06782,35.04529],[46.06821,35.04696],[46.06823,35.04841],[46.06852,35.04978],[46.0695,35.05043],[46.07215,35.05113],[46.07366,35.0517],[46.0764,35.05277],[46.07801,35.05428],[46.07989,35.056],[46.07993,35.05781],[46.07969,35.05934],[46.07839,35.06036],[46.07681,35.06045],[46.076,35.05958],[46.07475,35.05858],[46.07333,35.05772],[46.07165,35.05723],[46.06955,35.05768],[46.0687,35.05935],[46.06837,35.0608],[46.06813,35.06233],[46.06816,35.06378],[46.06828,35.0653],[46.069,35.06631],[46.0699,35.06717],[46.07088,35.06803],[46.07222,35.06911],[46.07241,35.06961],[46.07244,35.07179],[46.07092,35.07484],[46.06989,35.07652],[46.06983,35.07761],[46.07028,35.07833],[46.07188,35.07933],[46.07217,35.08049],[46.07183,35.08107],[46.07131,35.08173],[46.07106,35.0826],[46.07125,35.08318],[46.0717,35.08375],[46.07294,35.08447],[46.0741,35.08489],[46.07656,35.08488],[46.07771,35.0853],[46.07869,35.08573],[46.07994,35.08681],[46.08118,35.08745],[46.08472,35.08815],[46.08622,35.08836],[46.08815,35.08841],[46.09027,35.0889],[46.09204,35.08925],[46.09336,35.08931],[46.09536,35.08813],[46.09579,35.08726],[46.09647,35.08595],[46.09654,35.08508],[46.09704,35.08385],[46.09737,35.08239],[46.09761,35.08138],[46.09821,35.08043],[46.09943,35.07977],[46.10065,35.07918],[46.10284,35.07858],[46.10337,35.07858],[46.10442,35.0782],[46.10661,35.07812],[46.10741,35.07811],[46.10934,35.07795],[46.11048,35.07794],[46.11164,35.07851],[46.1126,35.07814],[46.11328,35.07733],[46.11424,35.07661],[46.11555,35.07587],[46.11616,35.07564],[46.11713,35.07614],[46.11811,35.07686],[46.11892,35.07766],[46.1199,35.07823],[46.12131,35.07858],[46.12148,35.07807],[46.12254,35.07842],[46.12406,35.07943],[46.12549,35.08064],[46.128,35.08287],[46.12951,35.08358],[46.13206,35.08392],[46.13295,35.08406],[46.13462,35.08412],[46.13577,35.08425],[46.13745,35.08497],[46.14039,35.08675],[46.14146,35.08754],[46.14296,35.08782],[46.14411,35.08781],[46.14534,35.08795],[46.14711,35.08829],[46.14887,35.08828],[46.15123,35.08775],[46.1529,35.08752],[46.15501,35.0875],[46.15677,35.08756],[46.15863,35.08812],[46.1597,35.08855],[46.16131,35.08998],[46.16204,35.09114],[46.16312,35.09243],[46.16386,35.09424],[46.1645,35.09554],[46.16601,35.0964],[46.16682,35.09755],[46.16765,35.09921],[46.16872,35.1],[46.17067,35.10071],[46.17211,35.10221],[46.17398,35.10358],[46.17603,35.1045],[46.17843,35.10564],[46.1786,35.10557],[46.17987,35.10715],[46.18227,35.10843],[46.18748,35.10969],[46.18961,35.11025],[46.19095,35.11111],[46.19133,35.11262],[46.1844,35.11533],[46.18227,35.11626],[46.17892,35.11738],[46.17745,35.11833],[46.17622,35.11863],[46.17226,35.11867],[46.17022,35.11818],[46.16833,35.12059],[46.16669,35.12176],[46.16486,35.12301],[46.16225,35.12419],[46.16067,35.12493],[46.15878,35.12712],[46.15696,35.12851],[46.15557,35.12947],[46.1549,35.13025],[46.15456,35.13179],[46.15476,35.13295],[46.15586,35.13512],[46.15685,35.13641],[46.15802,35.13778],[46.16077,35.13957],[46.16107,35.14087],[46.16013,35.14175],[46.15891,35.1427],[46.15896,35.14524],[46.1593,35.14893],[46.16002,35.15008],[46.15917,35.15132],[46.15769,35.15228],[46.1562,35.15294],[46.15563,35.15491],[46.15512,35.15607],[46.15466,35.15679],[46.1551,35.15933],[46.15565,35.16085],[46.15605,35.16317],[46.15599,35.1644],[46.15636,35.16548],[46.15761,35.16612],[46.15916,35.16672],[46.16035,35.16782],[46.16137,35.16943],[46.1623,35.17003],[46.16387,35.17107],[46.16467,35.17157],[46.16566,35.17244],[46.16673,35.17329],[46.16799,35.17444],[46.16951,35.17588],[46.17104,35.17724],[46.1721,35.17767],[46.17556,35.17887],[46.17681,35.17966],[46.17956,35.1805],[46.1805,35.18068],[46.18125,35.18136],[46.1827,35.18309],[46.18456,35.18394],[46.18749,35.18478],[46.19014,35.18498],[46.19188,35.18486],[46.19341,35.1847],[46.19421,35.18458],[46.19466,35.18429],[46.19525,35.18537],[46.19562,35.18638],[46.19511,35.18711],[46.1954,35.18848],[46.1963,35.18927],[46.1973,35.19064],[46.19749,35.19173],[46.19726,35.19311],[46.19657,35.19405],[46.19555,35.19566],[46.19567,35.19718],[46.19612,35.19797],[46.19683,35.1984],[46.19897,35.19954],[46.20022,35.20011],[46.2008,35.20069],[46.20073,35.20091],[46.20084,35.20118],[46.20127,35.2013],[46.1936,35.20349],[46.19352,35.20416],[46.19389,35.20524],[46.19463,35.20726],[46.19467,35.20915],[46.19418,35.21096],[46.19326,35.21329],[46.19197,35.21504],[46.19077,35.21623],[46.18933,35.21978],[46.18708,35.22176],[46.18545,35.22369],[46.18458,35.22438],[46.18255,35.22614],[46.18127,35.22706],[46.17969,35.22809],[46.17817,35.22866],[46.17743,35.22872],[46.17688,35.22873],[46.17564,35.22833],[46.17501,35.22777],[46.17425,35.22702],[46.1737,35.22678],[46.17302,35.22668],[46.17209,35.22628],[46.17189,35.22543],[46.17076,35.22457],[46.16977,35.22413],[46.16897,35.22413],[46.16799,35.22444],[46.16722,35.22461],[46.16578,35.22467],[46.16485,35.22457],[46.16436,35.22427],[46.16367,35.22393],[46.16305,35.22352],[46.16248,35.22303],[46.16188,35.22234],[46.16069,35.22248],[46.15947,35.22325],[46.15814,35.22437],[46.15643,35.22505],[46.15502,35.22526],[46.15368,35.22593],[46.1521,35.22662],[46.14879,35.2279],[46.14701,35.22832],[46.14603,35.22853],[46.14438,35.22845],[46.13998,35.22897],[46.13707,35.22899],[46.1346,35.22894],[46.13265,35.22838],[46.1305,35.2279],[46.1285,35.22903],[46.12594,35.23037],[46.12429,35.23119],[46.12355,35.23151],[46.12365,35.2323],[46.12514,35.23356],[46.12744,35.23512],[46.12605,35.23623],[46.1237,35.23526],[46.11911,35.23262],[46.11707,35.23409],[46.11477,35.23532],[46.11343,35.23598],[46.11251,35.23918],[46.11141,35.2399],[46.10982,35.24037],[46.10883,35.2404],[46.10978,35.24158],[46.11178,35.24334],[46.11356,35.24397],[46.11506,35.24432],[46.11647,35.24453],[46.1186,35.24494],[46.12126,35.24609],[46.12287,35.24708],[46.12327,35.24818],[46.12336,35.24876],[46.12326,35.24882],[46.1238,35.24998],[46.12424,35.25114],[46.12459,35.25229],[46.12503,35.25344],[46.12562,35.25425],[46.12688,35.25486],[46.12814,35.2558],[46.12891,35.25674],[46.1296,35.25789],[46.13036,35.25857],[46.13172,35.26033],[46.13289,35.26093],[46.13431,35.26146],[46.13532,35.2622],[46.13576,35.26329],[46.13702,35.26423],[46.13845,35.26496],[46.13962,35.26563],[46.14038,35.26604],[46.14105,35.26623],[46.14156,35.26725],[46.14241,35.26833],[46.14318,35.26955],[46.14428,35.27036],[46.14513,35.2713],[46.14598,35.27232],[46.14691,35.2732],[46.14776,35.27414],[46.14778,35.27557],[46.14806,35.27706],[46.1485,35.27822],[46.14855,35.27984],[46.14971,35.28038],[46.15071,35.28078],[46.15204,35.28084],[46.15396,35.2815],[46.15563,35.28197],[46.15832,35.28371],[46.15883,35.28429],[46.15802,35.28528],[46.15662,35.2859],[46.15548,35.28686],[46.155,35.28789],[46.1537,35.28939],[46.15239,35.29036],[46.15182,35.29104],[46.15085,35.29214],[46.15054,35.2933],[46.15073,35.29479],[46.15059,35.29602],[46.15094,35.29683],[46.15145,35.29771],[46.1514,35.29927],[46.15076,35.3005],[46.14979,35.30187],[46.14908,35.30371],[46.14853,35.30542],[46.14806,35.30658],[46.14733,35.30787],[46.14679,35.30965],[46.14632,35.31129],[46.14543,35.31251],[46.14445,35.31334],[46.14283,35.31539],[46.14185,35.31594],[46.1403,35.31766],[46.13849,35.31855],[46.13776,35.31924],[46.13644,35.3202],[46.1353,35.32096],[46.13391,35.32213],[46.13301,35.32281],[46.13227,35.32356],[46.13081,35.32501],[46.12967,35.32638],[46.12844,35.32754],[46.12737,35.32768],[46.12661,35.3279],[46.12632,35.32906],[46.12633,35.33],[46.1266,35.33095],[46.12721,35.33231],[46.12747,35.33299],[46.12772,35.33401],[46.12751,35.33496],[46.12611,35.33572],[46.12471,35.33662],[46.12159,35.33827],[46.1201,35.33855],[46.11868,35.33843],[46.11694,35.33837],[46.11561,35.33852],[46.11438,35.33908],[46.11298,35.3399],[46.11109,35.34128],[46.10896,35.34293],[46.10633,35.34451],[46.10503,35.34561],[46.10297,35.34657],[46.10082,35.34713],[46.09908,35.34756],[46.09777,35.34852],[46.09663,35.34961],[46.09555,35.3501],[46.09423,35.35065],[46.0935,35.35134],[46.0928,35.35379],[46.09324,35.35501],[46.09343,35.35637],[46.09381,35.35875],[46.09316,35.35964],[46.09192,35.36026],[46.09027,35.36074],[46.08952,35.36082],[46.08919,35.36096],[46.08606,35.36207],[46.08439,35.36201],[46.08298,35.36216],[46.08175,35.36292],[46.08051,35.36333],[46.07928,35.36409],[46.07788,35.36478],[46.07672,35.36499],[46.07572,35.36507],[46.07465,35.36521],[46.07308,35.36597],[46.0726,35.36686],[46.0717,35.36755],[46.07088,35.36844],[46.06998,35.36912],[46.06875,35.37022],[46.06862,35.37122],[46.06808,35.37204],[46.06741,35.3728],[46.06615,35.37357],[46.06486,35.37521],[46.06438,35.37679],[46.06452,35.37816],[46.06387,35.37995],[46.06223,35.38169],[46.06035,35.3832],[46.05822,35.38478],[46.05658,35.38615],[46.05493,35.38705],[46.05353,35.38787],[46.05206,35.38911],[46.05133,35.39],[46.05087,35.39225],[46.04974,35.39409],[46.04869,35.39573],[46.0479,35.39791],[46.0475,35.39894],[46.04563,35.40153],[46.04213,35.40523],[46.04073,35.40632],[46.03942,35.40742],[46.03871,35.40954],[46.03857,35.41097],[46.03685,35.41247],[46.03563,35.41391],[46.035,35.41535],[46.03418,35.4163],[46.03279,35.41754],[46.03222,35.41849],[46.03158,35.41972],[46.03011,35.42116],[46.02911,35.42208],[46.02905,35.42357],[46.02922,35.42708],[46.02859,35.42926],[46.02771,35.43138],[46.02724,35.43294],[46.02578,35.43458],[46.02467,35.43605],[46.02392,35.43773],[46.02212,35.43944],[46.02048,35.44068],[46.01734,35.44179],[46.01578,35.44309],[46.01488,35.44418],[46.0139,35.44487],[46.01342,35.44603],[46.01203,35.44781],[46.01107,35.44978],[46.01002,35.45156],[46.00965,35.45381],[46.00909,35.45531],[46.00754,35.45695],[46.0059,35.45805],[46.00518,35.45982],[46.00488,35.46159],[46.00482,35.46282],[46.00439,35.46395],[46.00399,35.46574],[46.00307,35.46779],[46.00209,35.46882],[46.00077,35.46998],[45.99985,35.47085],[45.99873,35.47204],[45.9981,35.47322],[45.99715,35.4743],[45.9963,35.47592],[45.99529,35.47802],[45.99468,35.47959],[45.99367,35.48169],[45.99265,35.48314],[45.99163,35.48465],[45.99078,35.48682],[45.9897,35.48918],[45.98867,35.49037],[45.98814,35.49214],[45.98777,35.49384],[45.98653,35.49545],[45.9863,35.49599],[45.98671,35.49778],[45.98721,35.49908],[45.99327,35.51958],[45.99758,35.51787],[45.9995,35.51726],[46.0011,35.51698],[46.00391,35.51669],[46.00521,35.51714],[46.00605,35.51763],[46.00875,35.51763],[46.01207,35.51825],[46.01473,35.51882],[46.01706,35.51892],[46.01911,35.51874],[46.01648,35.52215],[46.01435,35.52375],[46.01197,35.52568],[46.01015,35.52694],[46.00936,35.528],[46.00801,35.52874],[46.00586,35.52974],[46.00411,35.53061],[46.00238,35.5324],[46.00111,35.5336],[45.99992,35.53427],[45.99895,35.53421],[45.99715,35.5343],[45.99715,35.54263],[45.9973,35.54401],[45.99856,35.54656],[45.9991,35.54791],[45.99819,35.54808],[45.99714,35.54802],[45.99594,35.54842],[45.99467,35.54949],[45.9935,35.55094],[45.99255,35.55207],[45.99137,35.55307],[45.98956,35.55525],[45.98822,35.55664],[45.98754,35.55888],[45.98652,35.56014],[45.98468,35.56075],[45.98326,35.56096],[45.98214,35.56222],[45.98152,35.56367],[45.98035,35.56526],[45.97998,35.56703],[45.97938,35.56914],[45.97744,35.57277],[45.97684,35.57514],[45.97654,35.57626],[45.97479,35.57739],[45.97345,35.57879],[45.97291,35.57978],[45.97294,35.58149],[45.97362,35.58351],[45.97354,35.58485],[45.97463,35.58554],[45.97656,35.58552],[45.97816,35.58472],[45.97927,35.58425],[45.98128,35.5839],[45.98273,35.58382],[45.98417,35.58354],[45.98545,35.58314],[45.986,35.58248],[45.98704,35.58207],[45.98888,35.58192],[45.98985,35.58191],[45.99057,35.58158],[45.99127,35.58072],[45.99222,35.58005],[45.99271,35.57958],[45.99364,35.57859],[45.99443,35.57773],[45.99546,35.577],[45.99755,35.57665],[45.99884,35.57671],[45.99981,35.57702],[46.00143,35.57766],[46.00313,35.57804],[46.0044,35.5773],[46.00542,35.57579],[46.00644,35.57479],[46.00918,35.57483],[46.0115,35.57441],[46.013,35.57319],[46.01463,35.57386],[46.01738,35.57436],[46.02085,35.57484],[46.02574,35.57414],[46.02728,35.57485],[46.02948,35.57574],[46.02994,35.57652],[46.02928,35.57831],[46.02858,35.5791],[46.02861,35.58048],[46.0284,35.58213],[46.0273,35.58338],[46.02594,35.58406],[46.02436,35.58525],[46.02383,35.58677],[46.02322,35.58888],[46.0218,35.5902],[46.02045,35.59127],[46.01798,35.59241],[46.01599,35.59322],[46.01399,35.59382],[46.013,35.59402],[46.01378,35.59534],[46.01405,35.59685],[46.01391,35.59803],[46.01316,35.6004],[46.01366,35.60158],[46.01384,35.60263],[46.01509,35.60452],[46.01601,35.60648],[46.01708,35.60759],[46.01784,35.60909],[46.01804,35.61126],[46.01736,35.61317],[46.01674,35.61436],[46.01644,35.61581],[46.01609,35.61811],[46.01515,35.61949],[46.01381,35.62102],[46.01287,35.62228],[46.01282,35.62353],[46.01316,35.6247],[46.01321,35.62694],[46.01292,35.62865],[46.01165,35.62977],[46.01103,35.6307],[46.01072,35.63149],[46.00994,35.63235],[46.00922,35.63295],[46.00802,35.63323],[46.00633,35.63324],[46.00473,35.63365],[46.00329,35.63426],[46.00184,35.63434],[46.00111,35.63415],[45.9999,35.63396],[45.99668,35.63386],[45.99395,35.63448],[45.99327,35.63541],[45.99361,35.63744],[45.99437,35.63933],[45.99493,35.64041],[45.99747,35.64108],[45.999,35.64152],[46.00022,35.64178],[46.00097,35.64302],[46.0014,35.64426],[46.00173,35.64505],[46.00318,35.6451],[46.00561,35.64579],[46.00652,35.64664],[46.00735,35.64814],[46.00865,35.64885],[46.01012,35.64956],[46.01133,35.64985],[46.01144,35.65112],[46.01115,35.6527],[46.01076,35.65402],[46.01216,35.65458],[46.01267,35.65636],[46.01312,35.65873],[46.01331,35.6601],[46.01358,35.66135],[46.01424,35.66233],[46.01483,35.66363],[46.01486,35.66482],[46.01473,35.66639],[46.01411,35.66771],[46.0135,35.66923],[46.01295,35.67009],[46.0116,35.67128],[46.01082,35.67247],[46.00915,35.67354],[46.00796,35.67421],[46.00781,35.675],[46.00771,35.67596],[46.00883,35.67735],[46.01013,35.67819],[46.0112,35.6793],[46.01292,35.68079],[46.01358,35.68131],[46.01401,35.68242],[46.01434,35.68321],[46.01548,35.68372],[46.01621,35.68391],[46.01742,35.68403],[46.018,35.68481],[46.01881,35.685],[46.01969,35.68473],[46.02113,35.68419],[46.0229,35.68418],[46.02396,35.68456],[46.02438,35.68513],[46.02576,35.68586],[46.0261,35.68683],[46.0262,35.68782],[46.02622,35.6888],[46.02584,35.69006],[46.02586,35.69084],[46.02605,35.69124],[46.02685,35.69195],[46.02879,35.69232],[46.03072,35.69224],[46.03162,35.69282],[46.03237,35.69406],[46.03216,35.69551],[46.03162,35.69677],[46.03156,35.69755],[46.03125,35.69854],[46.03103,35.69959],[46.03202,35.70057],[46.03358,35.70167],[46.03416,35.70278],[46.03467,35.70396],[46.03582,35.70519],[46.03735,35.70511],[46.03879,35.70438],[46.04072,35.70436],[46.04171,35.7052],[46.04221,35.70618],[46.04272,35.70652],[46.04407,35.70655],[46.04549,35.70496],[46.04628,35.70391],[46.04696,35.70193],[46.04772,35.70124],[46.0503,35.69992],[46.05239,35.69951],[46.05585,35.69947],[46.05836,35.70004],[46.06014,35.70042],[46.06161,35.70096],[46.06255,35.69993],[46.06323,35.69789],[46.06432,35.69597],[46.06542,35.69465],[46.06661,35.69365],[46.06787,35.69239],[46.06938,35.69152],[46.07028,35.69177],[46.07134,35.69249],[46.0732,35.69286],[46.07554,35.69316],[46.0795,35.69352],[46.08192,35.69369],[46.0833,35.694],[46.08427,35.69399],[46.0855,35.69346],[46.08716,35.69389],[46.08805,35.69369],[46.08955,35.69269],[46.09117,35.6928],[46.0919,35.69325],[46.09392,35.69363],[46.09561,35.69341],[46.09649,35.69288],[46.09744,35.69235],[46.09782,35.69129],[46.09828,35.6899],[46.09922,35.68851],[46.10009,35.68811],[46.1005,35.68763],[46.1033,35.68735],[46.1066,35.68745],[46.11146,35.68825],[46.11502,35.6888],[46.11729,35.68944],[46.11964,35.69033],[46.12207,35.69103],[46.12347,35.69239],[46.12438,35.69343],[46.12602,35.69473],[46.1286,35.69496],[46.13191,35.69499],[46.13459,35.69595],[46.13734,35.69657],[46.13905,35.69722],[46.13979,35.69767],[46.14105,35.69791],[46.1418,35.69764],[46.14275,35.69671],[46.14418,35.69578],[46.14625,35.69483],[46.14817,35.69416],[46.15161,35.69287],[46.15321,35.69266],[46.15506,35.69211],[46.15584,35.69105],[46.15798,35.68952],[46.15892,35.68852],[46.16061,35.68811],[46.16303,35.68841],[46.16466,35.68905],[46.1662,35.68956],[46.16653,35.69008],[46.16688,35.69041],[46.16753,35.69165],[46.16822,35.69348],[46.16898,35.69498],[46.16941,35.69622],[46.17032,35.69733],[46.17155,35.69817],[46.17309,35.69887],[46.17416,35.69985],[46.17419,35.70096],[46.17407,35.70287],[46.17409,35.70385],[46.17453,35.70575],[46.17496,35.7068],[46.17514,35.70772],[46.17598,35.70922],[46.17762,35.71051],[46.1795,35.71161],[46.18128,35.71192],[46.18292,35.71308],[46.18511,35.71378],[46.18762,35.71421],[46.18939,35.71425],[46.19022,35.71485],[46.19151,35.71535],[46.19218,35.71639],[46.19358,35.71788],[46.19426,35.71899],[46.19622,35.72009],[46.19834,35.72131],[46.20036,35.72181],[46.2023,35.72212],[46.20432,35.72223],[46.20586,35.72227],[46.20771,35.72245],[46.21012,35.72203],[46.21568,35.72197],[46.21758,35.72043],[46.21822,35.7199],[46.22069,35.71889],[46.22325,35.71814],[46.22558,35.71752],[46.22775,35.71743],[46.22856,35.71755],[46.2292,35.71748],[46.22994,35.71735],[46.23112,35.71686],[46.23216,35.71626],[46.233,35.71485],[46.23407,35.71505],[46.23601,35.71582],[46.23683,35.71627],[46.23838,35.71671],[46.24072,35.71714],[46.24244,35.7183],[46.243,35.71819],[46.24642,35.71983],[46.24782,35.72106],[46.24938,35.72209],[46.25004,35.72274],[46.25149,35.72387],[46.25394,35.7257],[46.25637,35.72666],[46.25904,35.72724],[46.26105,35.72819],[46.26285,35.72886],[46.26527,35.72911],[46.26793,35.72916],[46.26978,35.72895],[46.27133,35.72846],[46.27455,35.72958],[46.27714,35.73082],[46.28097,35.73342],[46.28373,35.73412],[46.28647,35.73411],[46.28827,35.73402],[46.28834,35.7373],[46.28804,35.7392],[46.28654,35.74111],[46.28355,35.74513],[46.28613,35.7461],[46.28905,35.74734],[46.29067,35.74798],[46.29537,35.74959],[46.29643,35.75011],[46.29837,35.75036],[46.29951,35.75128],[46.30081,35.75206],[46.30245,35.75355],[46.30296,35.75545],[46.30298,35.75683],[46.30389,35.75808],[46.30398,35.75867],[46.30391,35.75965],[46.30433,35.76096],[46.30475,35.76174],[46.30577,35.76208],[46.30717,35.76206],[46.30878,35.76172],[46.31048,35.76197],[46.31178,35.76255],[46.31259,35.76288],[46.31468,35.76254],[46.31677,35.762],[46.31902,35.76159],[46.32072,35.76178],[46.32137,35.76223],[46.32226,35.76269],[46.32363,35.76268],[46.32492,35.76234],[46.32685,35.76213],[46.32855,35.76265],[46.32993,35.76297],[46.33106,35.76316],[46.33244,35.76319],[46.33387,35.76377],[46.33376,35.76907],[46.33845,35.77382],[46.33754,35.78053],[46.34603,35.78727],[46.34421,35.80376],[46.33987,35.81367],[46.34102,35.81913],[46.32969,35.8184],[46.31561,35.81879],[46.30805,35.82652],[46.30116,35.8275],[46.29907,35.83391],[46.29423,35.83504],[46.2887,35.8345],[46.28788,35.82621],[46.28053,35.81986],[46.27456,35.81686],[46.26853,35.81376],[46.26538,35.81423],[46.25978,35.81127],[46.25281,35.81291],[46.24652,35.80982],[46.23922,35.81303],[46.23492,35.81389],[46.23113,35.81283],[46.22175,35.80048],[46.21655,35.79956],[46.21134,35.79419],[46.20299,35.7996],[46.19521,35.80038],[46.19259,35.80659],[46.1846,35.81232],[46.17627,35.80664],[46.17549,35.80151],[46.16766,35.80006],[46.15516,35.80574],[46.1454,35.81643],[46.13661,35.82439],[46.13536,35.83679],[46.13892,35.83863],[46.13669,35.84373],[46.12072,35.84494],[46.1075,35.84837],[46.102,35.84874],[46.09238,35.85728],[46.08172,35.85692],[46.08137,35.85878],[46.06844,35.85647],[46.05689,35.85528],[46.04821,35.85066],[46.04458,35.84531],[46.04075,35.8452],[46.03349,35.83869],[46.02211,35.83496],[46.01505,35.83785],[46.00592,35.83657],[46.0021,35.83417],[45.98522,35.84011],[45.97826,35.83418],[45.97519,35.83448],[45.97144,35.83812],[45.96462,35.84429],[45.9602,35.83514],[45.95647,35.83602],[45.95598,35.82338],[45.95155,35.82261],[45.94888,35.82551],[45.94216,35.8252],[45.93948,35.82365],[45.93269,35.82488],[45.93215,35.8279],[45.92381,35.83109],[45.91331,35.83245],[45.90535,35.83628],[45.89631,35.83726],[45.8892,35.83477],[45.88735,35.83257],[45.88227,35.83095],[45.87967,35.81269],[45.87446,35.81125],[45.86877,35.81526],[45.8617,35.81983],[45.84949,35.81549],[45.83109,35.81003],[45.82014,35.81798],[45.80027,35.82704],[45.79691,35.81343],[45.77991,35.8107],[45.77335,35.8136],[45.77092,35.80508],[45.76437,35.79935],[45.76062,35.80517],[45.7555,35.80822],[45.75589,35.81346],[45.74707,35.82619],[45.73904,35.8277],[45.73883,35.83879],[45.73451,35.84432],[45.72915,35.84706],[45.72517,35.85259],[45.72366,35.86078],[45.71656,35.86168],[45.71679,35.86658],[45.71496,35.8687],[45.71724,35.87273],[45.713,35.87983],[45.70533,35.88525],[45.69799,35.88523],[45.69551,35.88716],[45.69509,35.89187],[45.69838,35.89462],[45.69328,35.90067],[45.68034,35.89774],[45.67765,35.90295],[45.67564,35.9065],[45.67123,35.91338],[45.67094,35.91581],[45.66846,35.92417],[45.6528,35.93591],[45.6484,35.93488],[45.63959,35.94395],[45.62736,35.94662],[45.62227,35.95768],[45.61835,35.95599],[45.61021,35.95764],[45.6082,35.96069],[45.60413,35.95763],[45.59476,35.96632],[45.59586,35.97247],[45.5916,35.97416],[45.59009,35.97696],[45.58541,35.97705],[45.58705,35.97223],[45.58208,35.97148],[45.57557,35.97608],[45.57558,35.98152],[45.57148,35.98307],[45.56361,35.98978],[45.55506,35.99816],[45.54969,36.00112],[45.54374,35.99894],[45.5371,35.99787],[45.53081,35.99542],[45.52177,35.99463],[45.51536,35.99624],[45.50621,35.99897],[45.5053,36.00265],[45.49782,36.00173],[45.49034,36.00247],[45.48355,36.00072],[45.4795,36.0023],[45.46678,35.99588],[45.4611,35.99572],[45.45487,35.98901],[45.45277,35.99453],[45.44032,35.99945],[45.43241,35.99475],[45.43327,35.99129],[45.43163,35.99039],[45.42704,35.98549],[45.42039,35.98171],[45.41382,35.98348],[45.41186,35.98225],[45.41075,35.98061],[45.40771,35.98028],[45.40777,35.97927],[45.40954,35.97728],[45.40857,35.97598],[45.40639,35.9758],[45.4051,35.97419],[45.40783,35.97055],[45.40592,35.96981],[45.40313,35.97055],[45.39819,35.97018],[45.39308,35.96772],[45.3894,35.97205],[45.3816,35.97465],[45.37457,35.96998],[45.37357,35.97356],[45.37625,35.97613],[45.37344,35.98287],[45.36645,35.98162],[45.36396,35.98287],[45.36242,35.97981],[45.36603,35.97621],[45.36638,35.97371],[45.36261,35.9747],[45.36115,35.97623],[45.35764,35.97568],[45.35594,35.97354],[45.35105,35.97637],[45.34788,35.97933],[45.34717,35.98267],[45.35091,35.9874],[45.34244,35.99713],[45.34564,36.00187],[45.34198,36.00383],[45.34329,36.00697],[45.34203,36.00761],[45.34642,36.0147],[45.35287,36.01957],[45.35142,36.02444],[45.35135,36.02764],[45.35438,36.03432],[45.36035,36.03794],[45.36359,36.04267],[45.3717,36.05048],[45.37433,36.06218],[45.37873,36.07136],[45.37716,36.07567],[45.38245,36.07943],[45.37935,36.08728],[45.37471,36.0937],[45.37007,36.09901],[45.37006,36.10472],[45.3563,36.10905],[45.35011,36.10838],[45.34458,36.12091],[45.34113,36.12218],[45.34042,36.13011],[45.33717,36.13375],[45.32979,36.13684],[45.32706,36.13996],[45.32776,36.1453],[45.32434,36.14898],[45.3292,36.15648],[45.32796,36.15761],[45.32502,36.16386],[45.32576,36.16581],[45.32496,36.16735],[45.32035,36.16762],[45.32341,36.17805],[45.32067,36.18251],[45.3164,36.1835],[45.31831,36.18521],[45.32665,36.19038],[45.32293,36.19214],[45.32381,36.19495],[45.32813,36.19555],[45.33657,36.20367],[45.33182,36.20924],[45.32912,36.2148],[45.32261,36.21626],[45.32091,36.21938],[45.31475,36.22175],[45.3134,36.22744],[45.31549,36.2298],[45.31295,36.23793],[45.30256,36.23995],[45.29218,36.24142],[45.2776,36.24519],[45.2656,36.25328],[45.27715,36.26181],[45.28801,36.26757],[45.29475,36.26946],[45.30012,36.26802],[45.3009,36.27248],[45.30443,36.27362],[45.29222,36.28358],[45.28413,36.28799],[45.27517,36.29766],[45.26753,36.29542],[45.26189,36.30088],[45.2616,36.30655],[45.26475,36.31056],[45.26418,36.31415],[45.26786,36.32023],[45.26627,36.32409],[45.271,36.32295],[45.27333,36.33122],[45.27929,36.33424],[45.284,36.33603],[45.28252,36.34114],[45.27668,36.34234],[45.27497,36.34464],[45.27618,36.35081],[45.27189,36.35422],[45.27121,36.35955],[45.27536,36.36689],[45.26923,36.37108],[45.27002,36.37392],[45.27745,36.37618],[45.27361,36.38255],[45.27115,36.38893],[45.27228,36.39288],[45.26468,36.39595],[45.25844,36.40178],[45.25422,36.40239],[45.25024,36.40692],[45.25223,36.41433],[45.24155,36.41872],[45.24255,36.42423],[45.23767,36.43357],[45.23094,36.43266],[45.22489,36.42872],[45.21899,36.42967],[45.20786,36.4244],[45.19658,36.42379],[45.18724,36.42226],[45.17927,36.41796],[45.16883,36.41876],[45.15481,36.4165],[45.1532,36.40492],[45.14353,36.40507],[45.13767,36.40762],[45.12905,36.40521],[45.12247,36.40784],[45.11452,36.4055],[45.1089,36.41144],[45.10397,36.4135],[45.1044,36.41598],[45.09154,36.42258],[45.08779,36.42199],[45.08236,36.42521],[45.081,36.42867],[45.07826,36.43131],[45.07623,36.43824],[45.07935,36.44489],[45.0756,36.45431],[45.07179,36.46043],[45.06181,36.4627],[45.05794,36.47258],[45.05956,36.47528],[45.05457,36.48235],[45.05541,36.49411],[45.05351,36.50642],[45.04271,36.51165],[45.03808,36.51025],[45.03192,36.51451],[45.02712,36.51491],[45.02028,36.51708],[45.01275,36.51926],[45.0066,36.52695],[45.0049,36.533],[45.00182,36.5374],[45.00682,36.5462],[45.00496,36.55113],[45.01104,36.55437],[45.01574,36.55762],[45.02171,36.55694],[45.03778,36.56055],[45.03892,36.57016],[45.03937,36.58034],[45.03351,36.58287],[45.02833,36.58817],[45.02634,36.59681],[45.0271,36.60379],[45.03136,36.60785],[45.04074,36.60755],[45.04669,36.6111],[45.05298,36.61604],[45.06304,36.61408],[45.06667,36.62334],[45.06994,36.62956],[45.07021,36.63619],[45.06773,36.64336],[45.071,36.64339],[45.07207,36.65253],[45.06993,36.65826],[45.06779,36.66454],[45.0693,36.67415],[45.06531,36.68211],[45.06626,36.68812],[45.06053,36.69675],[45.05548,36.70373],[45.0494,36.71099],[45.04607,36.71715],[45.04112,36.7201],[45.04071,36.72351],[45.03158,36.73016],[45.0324,36.73654],[45.03054,36.74045],[45.02354,36.74353],[45.01809,36.7443],[45.01677,36.74617],[45.01207,36.74661],[45.01296,36.75244],[45.00726,36.75505],[45.00087,36.75271],[44.99772,36.75326],[44.98934,36.74776],[44.97347,36.74848],[44.96927,36.75141],[44.96567,36.75973],[44.95711,36.77307],[44.95308,36.77544],[44.94768,36.78056],[44.93962,36.78641],[44.9338,36.7849],[44.93025,36.78021],[44.92293,36.77635],[44.91171,36.77689],[44.9043,36.77839],[44.89585,36.77935],[44.89065,36.78235],[44.88354,36.78229],[44.87963,36.7805],[44.86508,36.77954],[44.8578,36.77218],[44.85244,36.77621],[44.84434,36.77858],[44.84451,36.78363],[44.84047,36.78918],[44.83713,36.79693],[44.83764,36.80199],[44.83746,36.80759],[44.83951,36.80911],[44.8388,36.81599],[44.84676,36.82417],[44.85334,36.8307],[44.8593,36.83222],[44.8664,36.83251],[44.86136,36.8376],[44.86114,36.84489],[44.87167,36.84607],[44.87671,36.84944],[44.88249,36.85208],[44.89033,36.85363],[44.89645,36.85436],[44.90189,36.85783],[44.90308,36.86191],[44.90253,36.86732],[44.90403,36.87274],[44.90085,36.87533],[44.906,36.88161],[44.90445,36.8842],[44.90848,36.89291],[44.91119,36.89424],[44.91281,36.89819],[44.91238,36.90487],[44.90876,36.90946],[44.91167,36.91268],[44.91244,36.91703],[44.91114,36.92194],[44.90445,36.92588],[44.89912,36.93368],[44.90015,36.93773],[44.89669,36.94463],[44.885,36.94632],[44.88499,36.9521],[44.88154,36.95404],[44.88445,36.96136],[44.88873,36.96649],[44.88923,36.97408],[44.89248,36.98004],[44.89417,36.98782],[44.89586,36.99835],[44.90062,37.00351],[44.90469,37.00373],[44.90587,37.00735],[44.90166,37.01423],[44.90019,37.02276],[44.89597,37.02554],[44.8945,37.02831],[44.88712,37.03075],[44.88318,37.0299],[44.87958,37.03098],[44.87392,37.03205],[44.86913,37.03196],[44.85682,37.03725],[44.8585,37.04374],[44.85331,37.04803],[44.84843,37.04675],[44.84278,37.04857],[44.83233,37.04519],[44.8247,37.04268],[44.81708,37.03962],[44.81283,37.04359],[44.80994,37.04502],[44.8074,37.04411],[44.80683,37.04642],[44.80205,37.04812],[44.80346,37.05639],[44.79911,37.06665],[44.78275,37.0758],[44.77737,37.0762],[44.77724,37.08503],[44.78398,37.08948],[44.78371,37.09181],[44.77795,37.09605],[44.77494,37.09646],[44.76633,37.09919],[44.76285,37.1052],[44.74969,37.11229],[44.75032,37.11519],[44.74752,37.11973],[44.75262,37.12495],[44.75585,37.1251],[44.7639,37.12908],[44.76447,37.13651],[44.77232,37.13914],[44.78016,37.14231],[44.78479,37.14466],[44.78598,37.14866],[44.78356,37.15664],[44.78559,37.15949],[44.78453,37.1637],[44.78622,37.16681],[44.77993,37.17381],[44.77214,37.17795],[44.771,37.18021],[44.76595,37.18364],[44.76822,37.19324],[44.76615,37.19943],[44.76133,37.20507],[44.76026,37.2169],[44.7626,37.22307],[44.75842,37.22623],[44.75766,37.22885],[44.76057,37.23475],[44.76657,37.23874],[44.76895,37.24508],[44.78676,37.25667],[44.79652,37.25714],[44.80136,37.25998],[44.80209,37.26502],[44.80281,37.26978],[44.8056,37.27181],[44.81295,37.27528],[44.81551,37.27985],[44.81048,37.28906],[44.80478,37.29992],[44.80078,37.30395],[44.79816,37.31016],[44.79202,37.31359],[44.78656,37.31757],[44.77634,37.32279],[44.77374,37.32668],[44.76649,37.32983],[44.75408,37.33051],[44.74919,37.33381],[44.74223,37.33492],[44.73861,37.33987],[44.72538,37.34454],[44.71967,37.34571],[44.71602,37.34852],[44.71559,37.35249],[44.7255,37.35332],[44.72462,37.35782],[44.7204,37.36062],[44.72173,37.36748],[44.72136,37.37227],[44.72305,37.37488],[44.71622,37.37699],[44.71008,37.38073],[44.7029,37.38092],[44.69847,37.3833],[44.68797,37.38517],[44.68331,37.38213],[44.67549,37.3847],[44.66883,37.38326],[44.6553,37.38618],[44.65313,37.39257],[44.65539,37.39823],[44.65717,37.40082],[44.65207,37.40278],[44.64423,37.40856],[44.63334,37.41903],[44.63698,37.4236],[44.63203,37.43171],[44.62777,37.4322],[44.61874,37.43725],[44.60701,37.43623],[44.60012,37.4379],[44.59289,37.43846],[44.58773,37.43957],[44.57927,37.4475],[44.5861,37.45174],[44.58789,37.46051],[44.58626,37.46656],[44.58634,37.4767],[44.5823,37.48302],[44.58418,37.49675],[44.58605,37.50885],[44.5939,37.51147],[44.60107,37.51355],[44.60162,37.52527],[44.60491,37.52936],[44.60806,37.53973],[44.61293,37.5452],[44.61262,37.54957],[44.60739,37.5493],[44.60148,37.55338],[44.60277,37.55992],[44.61235,37.56237],[44.61368,37.56536],[44.60868,37.57002],[44.61236,37.57153],[44.60734,37.57609],[44.60242,37.5762],[44.59819,37.58011],[44.60556,37.58455],[44.61087,37.5879],[44.61206,37.59533],[44.61462,37.60167],[44.60894,37.60754],[44.60669,37.61124],[44.59945,37.61781],[44.59527,37.61574],[44.58614,37.62816],[44.58044,37.63732],[44.57316,37.63769],[44.56672,37.6419],[44.57387,37.65682],[44.57384,37.66577],[44.5896,37.67119],[44.59222,37.67729],[44.59108,37.68175],[44.59885,37.68405],[44.608,37.69015],[44.61714,37.69905],[44.62628,37.70742],[44.62233,37.71821],[44.62044,37.72792],[44.61581,37.73155],[44.61117,37.73247],[44.60654,37.73881],[44.60327,37.74027],[44.60108,37.74421],[44.59478,37.74815],[44.58628,37.76471],[44.57748,37.76573],[44.56947,37.76895],[44.56422,37.77109],[44.56344,37.77476],[44.55726,37.78046],[44.54352,37.78141],[44.5291,37.78291],[44.52138,37.78074],[44.51786,37.77721],[44.51434,37.77586],[44.49803,37.77369],[44.49408,37.77043],[44.48,37.77233],[44.47211,37.76392],[44.45785,37.76719],[44.45107,37.76854],[44.44498,37.77099],[44.44352,37.77737],[44.45029,37.78484],[44.4478,37.79691],[44.44806,37.80682],[44.43209,37.79897],[44.42436,37.79926],[44.42186,37.80446],[44.41697,37.8064],[44.41404,37.81571],[44.4064,37.81942],[44.39601,37.8215],[44.39171,37.82783],[44.39635,37.83767],[44.40441,37.84127],[44.40561,37.84569],[44.40337,37.85119],[44.39535,37.85709],[44.38801,37.86245],[44.37724,37.86442],[44.36234,37.86259],[44.34865,37.86673],[44.3384,37.87032],[44.33299,37.87426],[44.31748,37.87742],[44.31008,37.87006],[44.30232,37.86811],[44.29295,37.86712],[44.28838,37.87263],[44.28312,37.87271],[44.27415,37.87018],[44.26724,37.86764],[44.25859,37.86949],[44.25097,37.87621],[44.24638,37.87449],[44.24082,37.87891],[44.2387,37.88442],[44.23279,37.88505],[44.22209,37.88839],[44.22647,37.89282],[44.23292,37.89995],[44.22453,37.90664],[44.22707,37.91021],[44.23167,37.9127],[44.22919,37.91767],[44.23426,37.91993],[44.2359,37.92707],[44.24296,37.92915],[44.24718,37.93182],[44.24659,37.93719],[44.25109,37.94299],[44.24843,37.95107],[44.24332,37.95158],[44.24027,37.95535],[44.24129,37.96437],[44.24914,37.97042],[44.25493,37.97593],[44.25456,37.97976],[44.25969,37.98414],[44.26104,37.98879],[44.26789,37.99452],[44.26706,37.99963],[44.26898,38.00853],[44.27571,38.01635],[44.28175,38.02147],[44.28668,38.02137],[44.29333,38.02803],[44.30135,38.03252],[44.30455,38.03771],[44.30912,38.04614],[44.30556,38.04679],[44.30118,38.05456],[44.31221,38.05871],[44.32049,38.06287],[44.31989,38.06902],[44.31148,38.06808],[44.31199,38.07308],[44.31714,38.07416],[44.32161,38.07849],[44.32796,38.07768],[44.32873,38.08539],[44.33225,38.0893],[44.32864,38.09525],[44.32916,38.0985],[44.33534,38.09824],[44.35387,38.10554],[44.36211,38.10312],[44.36486,38.10448],[44.35842,38.11375],[44.35953,38.12357],[44.35446,38.12704],[44.34939,38.13105],[44.35145,38.13465],[44.36055,38.13528],[44.36827,38.13537],[44.37067,38.13825],[44.37994,38.13844],[44.38578,38.14456],[44.39264,38.14654],[44.39114,38.15321],[44.39553,38.15978],[44.39121,38.16496],[44.39169,38.16852],[44.39654,38.17222],[44.4,38.18351],[44.39727,38.18995],[44.40087,38.19396],[44.39772,38.19836],[44.39923,38.20163],[44.40212,38.20168],[44.40772,38.2143],[44.41126,38.21991],[44.40769,38.22655],[44.4055,38.23372],[44.39812,38.23814],[44.39949,38.24325],[44.40155,38.24633],[44.40224,38.25158],[44.4073,38.25414],[44.41305,38.25669],[44.41357,38.26126],[44.42267,38.26772],[44.42859,38.2696],[44.43314,38.26879],[44.43974,38.27483],[44.44841,38.28303],[44.45476,38.28434],[44.46034,38.28943],[44.46935,38.29453],[44.47287,38.29504],[44.47845,38.30202],[44.49201,38.30237],[44.49871,38.30973],[44.49665,38.31754],[44.49939,38.32159],[44.49665,38.32982],[44.49733,38.33373],[44.51038,38.33592],[44.51213,38.34093],[44.50976,38.34595],[44.50021,38.34575],[44.49553,38.34373],[44.49373,38.34615],[44.49913,38.35073],[44.48982,38.35787],[44.48371,38.35831],[44.47761,38.35767],[44.47295,38.35477],[44.47029,38.35841],[44.46282,38.35936],[44.46201,38.36494],[44.45913,38.36945],[44.45684,38.37427],[44.45179,38.378],[44.44857,38.38547],[44.43952,38.38357],[44.43056,38.37663],[44.41817,38.37024],[44.40303,38.36572],[44.40026,38.36724],[44.39133,38.36369],[44.38789,38.36266],[44.38446,38.35895],[44.37828,38.35798],[44.37281,38.36262],[44.36974,38.36888],[44.36564,38.36948],[44.36224,38.37547],[44.35684,38.3752],[44.35154,38.36926],[44.34212,38.37141],[44.335,38.36952],[44.32561,38.37019],[44.31473,38.37537],[44.31033,38.382],[44.30709,38.38908],[44.30042,38.39455],[44.31041,38.39536],[44.313,38.40438],[44.31902,38.40855],[44.31645,38.41771],[44.31664,38.42524],[44.3177,38.43225],[44.30573,38.44034],[44.3027,38.44682],[44.31061,38.45198],[44.30959,38.45823],[44.31374,38.46426],[44.3131,38.47739],[44.32243,38.48381],[44.32304,38.48784],[44.31991,38.492],[44.31885,38.49508],[44.32358,38.49938],[44.32488,38.50313],[44.32193,38.50544],[44.32104,38.51151],[44.31513,38.51505],[44.31266,38.52342],[44.30881,38.53018],[44.31038,38.53539],[44.31265,38.53898],[44.31305,38.54669],[44.31621,38.54743],[44.31645,38.55251],[44.31327,38.55599],[44.31352,38.56322],[44.31795,38.57391],[44.32272,38.57547],[44.32475,38.57811],[44.32476,38.5809],[44.32271,38.58638],[44.32342,38.58928],[44.31865,38.59884],[44.32079,38.60079],[44.31751,38.60791],[44.32194,38.60821],[44.32119,38.62328],[44.31399,38.62991],[44.30748,38.63599],[44.2917,38.64011],[44.28433,38.64083],[44.27284,38.64531],[44.26977,38.6505],[44.27126,38.65486],[44.27894,38.65707],[44.28146,38.66304],[44.27986,38.66793],[44.28239,38.67517],[44.27635,38.68],[44.27236,38.68482],[44.27275,38.69019],[44.26902,38.69823],[44.27117,38.70306],[44.26689,38.70496],[44.26123,38.70418],[44.26091,38.71494],[44.25457,38.71737],[44.25509,38.71981],[44.26372,38.71923],[44.26795,38.72314],[44.27424,38.72813],[44.28087,38.73311],[44.27995,38.73595],[44.27674,38.74003],[44.27695,38.74518],[44.28701,38.75361],[44.28815,38.75853],[44.29203,38.76398],[44.29192,38.76724],[44.28905,38.77051],[44.291,38.77538],[44.28991,38.77968],[44.28676,38.78292],[44.28979,38.78605],[44.29968,38.79133],[44.30236,38.80249],[44.31297,38.80566],[44.31465,38.80776],[44.30683,38.81617],[44.30326,38.82332],[44.29626,38.82672],[44.30183,38.83995],[44.29258,38.84285],[44.28264,38.84736],[44.27787,38.85478],[44.26669,38.85235],[44.25757,38.84778],[44.24592,38.85098],[44.24113,38.85793],[44.24448,38.86394],[44.24577,38.86942],[44.2408,38.87183],[44.23499,38.87824],[44.22911,38.88211],[44.2198,38.88599],[44.21149,38.88999],[44.21065,38.89801],[44.21564,38.90282],[44.21927,38.90442],[44.2204,38.90996],[44.21879,38.91764],[44.21145,38.92178],[44.19882,38.92258],[44.19675,38.93038],[44.18988,38.9339],[44.19554,38.93954],[44.19983,38.94518],[44.20017,38.9495],[44.19764,38.9508],[44.19047,38.95196],[44.18386,38.95575],[44.18231,38.9552],[44.18007,38.95653],[44.18151,38.96058],[44.18448,38.96544],[44.18819,38.96759],[44.18657,38.97148],[44.18826,38.97425],[44.19177,38.9747],[44.18755,38.97835],[44.18938,38.98069],[44.18189,38.98463],[44.17165,38.99018],[44.17529,39.00146],[44.18236,39.01168],[44.191,39.00996],[44.20308,39.01706],[44.21242,39.02148],[44.20501,39.03053],[44.19623,39.03799],[44.19378,39.04436],[44.20639,39.0555],[44.1953,39.06611],[44.19109,39.07512],[44.19825,39.08669],[44.20541,39.08973],[44.21081,39.08835],[44.21998,39.0915],[44.22709,39.09571],[44.22355,39.10298],[44.21869,39.10394],[44.21657,39.10758],[44.20743,39.11465],[44.21081,39.12145],[44.21351,39.13038],[44.20769,39.13761],[44.20119,39.14058],[44.19554,39.15074],[44.19066,39.15342],[44.18921,39.15877],[44.17894,39.16897],[44.16594,39.17703],[44.15305,39.18146],[44.14291,39.18588],[44.13602,39.18275],[44.12512,39.1858],[44.11215,39.19097],[44.10922,39.20025],[44.09718,39.20497],[44.09439,39.21709],[44.10132,39.22434],[44.09864,39.22733],[44.10151,39.23173],[44.10314,39.24318],[44.08897,39.24786],[44.0858,39.25652],[44.09142,39.26244],[44.09086,39.26888],[44.09455,39.27593],[44.10124,39.27674],[44.10708,39.28474],[44.10226,39.28957],[44.0899,39.29055],[44.07925,39.29632],[44.07753,39.30558],[44.07856,39.31165],[44.0789,39.31825],[44.07924,39.32432],[44.07499,39.33338],[44.0625,39.34296],[44.05674,39.34354],[44.05621,39.35532],[44.03766,39.3614],[44.0374,39.3663],[44.03199,39.37147],[44.03387,39.37729],[44.03919,39.37964],[44.04176,39.38359],[44.05444,39.38875],[44.05783,39.3858],[44.0518,39.39772],[44.05229,39.40486],[44.07069,39.41247],[44.08423,39.4077],[44.09538,39.41228],[44.1182,39.40174],[44.13054,39.40559],[44.13292,39.39884],[44.12412,39.38983],[44.13111,39.39038],[44.14482,39.39904],[44.15991,39.40239],[44.17535,39.40062],[44.18804,39.40204],[44.1942,39.41017],[44.21196,39.41723],[44.2243,39.41548],[44.23801,39.41373],[44.24758,39.39908],[44.26744,39.3993],[44.276,39.38295],[44.28868,39.37829],[44.2955,39.37732],[44.30644,39.38165],[44.32008,39.39139],[44.33362,39.38858],[44.35608,39.39956],[44.37992,39.41161],[44.4015,39.41368],[44.42172,39.41204],[44.42698,39.42914],[44.43225,39.43988],[44.42549,39.44781],[44.42009,39.46527],[44.41682,39.46666],[44.41371,39.46831],[44.41137,39.46949],[44.40835,39.47121],[44.4088,39.47303],[44.41042,39.47442],[44.41239,39.47515],[44.41608,39.48276],[44.41856,39.48614],[44.42707,39.48903],[44.43344,39.49292],[44.43388,39.49589],[44.43964,39.50111],[44.43776,39.50229],[44.44034,39.50506],[44.43845,39.50856],[44.43295,39.50913],[44.43294,39.51724],[44.43636,39.52008],[44.4312,39.52414],[44.42947,39.52927],[44.42534,39.53264],[44.42503,39.5375],[44.42679,39.53866],[44.42631,39.54021],[44.42687,39.54335],[44.42334,39.54791],[44.42393,39.54903],[44.42065,39.55141],[44.41953,39.55379],[44.41566,39.55484],[44.41753,39.55841],[44.42043,39.56092],[44.42452,39.56567],[44.42205,39.56749],[44.43478,39.57191],[44.44063,39.57262],[44.44669,39.57741],[44.46615,39.60071],[44.47998,39.61029],[44.48813,39.64269],[44.48425,39.64627],[44.48515,39.65153],[44.48433,39.65547],[44.48407,39.66545],[44.48295,39.66672],[44.48286,39.67036],[44.47631,39.67469],[44.47424,39.67943],[44.46702,39.68443],[44.47221,39.68691],[44.48013,39.69224],[44.48633,39.6952],[44.4926,39.70094],[44.61327,39.78175],[44.6162,39.77932],[44.62162,39.76992],[44.62154,39.76633],[44.62345,39.76561],[44.62401,39.76332],[44.62521,39.76252],[44.6265,39.76199],[44.6266,39.76153],[44.62636,39.76108],[44.6259,39.76083],[44.62596,39.76017],[44.62756,39.75948],[44.62718,39.75882],[44.62751,39.75854],[44.62849,39.759],[44.62947,39.75912],[44.63056,39.75889],[44.63106,39.75815],[44.62967,39.75642],[44.63037,39.75578],[44.63236,39.75607],[44.63263,39.75349],[44.63117,39.75272],[44.63119,39.75214],[44.63172,39.75175],[44.63137,39.75035],[44.63025,39.74865],[44.62947,39.74668],[44.63141,39.74404],[44.63472,39.74325],[44.63654,39.74113],[44.6388,39.74085],[44.6416,39.73872],[44.6408,39.73691],[44.64332,39.73522],[44.64172,39.73405],[44.64401,39.73264],[44.64561,39.73149],[44.6479,39.72769],[44.65248,39.72748],[44.65657,39.725],[44.65997,39.72146],[44.66098,39.7207],[44.66198,39.71861],[44.66559,39.71705],[44.66818,39.7147],[44.67668,39.71466],[44.68519,39.71514],[44.68969,39.71788],[44.69079,39.71648],[44.68761,39.7135],[44.69305,39.7132],[44.69647,39.7124],[44.70264,39.71027],[44.70314,39.71185],[44.70631,39.71303],[44.7103,39.71349],[44.71298,39.71465],[44.71498,39.71448],[44.71446,39.71196],[44.71711,39.70911],[44.71943,39.70758],[44.72113,39.70755],[44.72523,39.70563],[44.72827,39.70259],[44.72719,39.70021],[44.73026,39.69836],[44.73196,39.69704],[44.73435,39.69413],[44.73834,39.69314],[44.74164,39.69373],[44.74406,39.6898],[44.74923,39.68772],[44.75234,39.68273],[44.75372,39.68156],[44.75424,39.6782],[44.75724,39.67718],[44.75853,39.6759],[44.75853,39.6735],[44.75767,39.6715],[44.75389,39.67292],[44.75459,39.67073],[44.75846,39.66992],[44.76174,39.67055],[44.76191,39.66918],[44.7607,39.66808],[44.76377,39.66529],[44.76803,39.66552],[44.77049,39.66357],[44.7702,39.66123],[44.77749,39.65991],[44.78585,39.65482],[44.78804,39.65185],[44.7985,39.64841],[44.80373,39.64167],[44.80291,39.63196],[44.8069,39.62859]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Iran#YA", "itu_zone_number": 40 }, "geometry": { "type": "Polygon", "coordinates": [[[60,24],[57.35314,25.2439],[56.44213,26.57008],[54.35644,25.55673],[51.08593,27.41514],[48.61398,29.9301],[48.58453,29.94523],[48.51556,29.96008],[48.45689,29.99635],[48.44801,30.0121],[48.44734,30.03751],[48.44393,30.0647],[48.43027,30.08312],[48.40434,30.10094],[48.37909,30.12174],[48.38363,30.13332],[48.3923,30.14135],[48.40885,30.15917],[48.41855,30.17937],[48.412,30.19722],[48.37662,30.22709],[48.34399,30.25934],[48.30965,30.29751],[48.27187,30.33568],[48.25926,30.3393],[48.24734,30.33996],[48.24125,30.33587],[48.23791,30.33001],[48.2278,30.32065],[48.21494,30.31485],[48.20654,30.31691],[48.19952,30.32074],[48.19303,30.33196],[48.18279,30.37986],[48.18148,30.39755],[48.16616,30.42434],[48.16045,30.42862],[48.13495,30.44312],[48.10915,30.45058],[48.10808,30.4542],[48.0715,30.46114],[48.04428,30.47416],[48.02565,30.478],[48.02983,30.73794],[48.0323,30.99642],[47.68271,30.99754],[47.68322,31.39389],[47.8662,31.78351],[47.85609,31.80479],[47.85666,31.80652],[47.8567,31.80774],[47.85658,31.80909],[47.85662,31.81044],[47.85617,31.81126],[47.8562,31.8122],[47.8561,31.81396],[47.85615,31.81544],[47.85554,31.81627],[47.85525,31.81722],[47.8548,31.81776],[47.85403,31.81845],[47.85247,31.81942],[47.85108,31.82026],[47.84795,31.82153],[47.84669,31.82169],[47.84576,31.82224],[47.84529,31.82239],[47.84466,31.82267],[47.84359,31.82257],[47.82526,31.83257],[47.82492,31.83394],[47.82525,31.83448],[47.82531,31.8365],[47.82516,31.83691],[47.82471,31.83759],[47.82394,31.83814],[47.82272,31.83951],[47.82194,31.84007],[47.82164,31.84048],[47.82136,31.84069],[47.82102,31.84103],[47.82106,31.84096],[47.82034,31.84084],[47.81998,31.84035],[47.81879,31.84039],[47.81815,31.84013],[47.81751,31.84001],[47.81671,31.83989],[47.81592,31.84004],[47.81547,31.84059],[47.81471,31.84168],[47.81456,31.84209],[47.81411,31.84263],[47.81348,31.84305],[47.81286,31.84319],[47.81191,31.84321],[47.81113,31.84349],[47.8097,31.84352],[47.80876,31.84367],[47.80784,31.84342],[47.80704,31.84309],[47.80637,31.84257],[47.8059,31.84331],[47.80595,31.84493],[47.80612,31.84534],[47.80645,31.84587],[47.80631,31.84655],[47.80569,31.8471],[47.80543,31.84886],[47.80531,31.85007],[47.80485,31.85062],[47.80425,31.85158],[47.80302,31.85268],[47.80241,31.85364],[47.80196,31.85432],[47.8012,31.85528],[47.79998,31.8559],[47.79984,31.85746],[47.79991,31.85989],[47.79981,31.86151],[47.79983,31.86232],[47.80017,31.86312],[47.80036,31.8642],[47.80039,31.86488],[47.80024,31.86542],[47.80057,31.86582],[47.8006,31.86663],[47.80003,31.86731],[47.79933,31.8678],[47.79804,31.86813],[47.79817,31.86883],[47.79863,31.8695],[47.79959,31.86988],[47.80149,31.86985],[47.80276,31.86997],[47.80387,31.86995],[47.80516,31.87074],[47.80599,31.87194],[47.80617,31.87261],[47.80651,31.87355],[47.80685,31.87408],[47.80766,31.87488],[47.80862,31.87513],[47.80926,31.87525],[47.80942,31.87539],[47.80943,31.87566],[47.80913,31.8762],[47.80884,31.87715],[47.80871,31.87797],[47.80873,31.87864],[47.80895,31.87951],[47.8093,31.88039],[47.80986,31.88078],[47.80995,31.88105],[47.80998,31.88146],[47.81014,31.88206],[47.81012,31.88267],[47.80922,31.88309],[47.80867,31.88296],[47.80781,31.88338],[47.80683,31.88367],[47.80463,31.88566],[47.80376,31.88568],[47.80313,31.88583],[47.80179,31.88598],[47.80088,31.88593],[47.79977,31.88608],[47.79835,31.88611],[47.79694,31.8864],[47.79547,31.88663],[47.79332,31.88727],[47.79238,31.88783],[47.79155,31.88784],[47.79076,31.88793],[47.78887,31.88757],[47.78845,31.88857],[47.78752,31.8894],[47.78709,31.89062],[47.78649,31.89171],[47.78591,31.89348],[47.78628,31.89536],[47.78632,31.89644],[47.78602,31.89712],[47.78511,31.89713],[47.78415,31.89688],[47.78331,31.89674],[47.78334,31.8977],[47.78354,31.89905],[47.78331,31.90702],[47.78334,31.90797],[47.78306,31.90905],[47.78201,31.90967],[47.78087,31.91003],[47.77976,31.91005],[47.77884,31.90959],[47.77815,31.909],[47.77767,31.90887],[47.77687,31.90889],[47.77621,31.9091],[47.77579,31.90958],[47.77517,31.90999],[47.77439,31.91041],[47.77391,31.91042],[47.77311,31.91003],[47.77216,31.91004],[47.77154,31.91059],[47.77077,31.91142],[47.76969,31.91238],[47.76875,31.91253],[47.76752,31.91255],[47.76648,31.91223],[47.76526,31.91229],[47.76497,31.91327],[47.76439,31.91375],[47.76342,31.91424],[47.76182,31.91373],[47.76116,31.9132],[47.76053,31.91321],[47.75976,31.9139],[47.75867,31.91445],[47.75744,31.91556],[47.75587,31.91626],[47.75541,31.91667],[47.75435,31.91817],[47.7531,31.919],[47.75201,31.91956],[47.75029,31.92013],[47.74918,31.92087],[47.74842,31.92163],[47.74776,31.92174],[47.74759,31.92267],[47.74881,31.92345],[47.749,31.92432],[47.74832,31.92528],[47.74695,31.92647],[47.74549,31.92786],[47.74441,31.92863],[47.74356,31.92885],[47.74304,31.92868],[47.74261,31.92901],[47.74196,31.92862],[47.7411,31.92891],[47.74028,31.93022],[47.73843,31.93344],[47.7357,31.93668],[47.7341,31.93821],[47.73348,31.9387],[47.73301,31.93871],[47.73267,31.93817],[47.73164,31.938],[47.73063,31.93877],[47.72995,31.93959],[47.72915,31.94007],[47.72904,31.94063],[47.72962,31.94116],[47.73034,31.94148],[47.73016,31.9427],[47.72962,31.94319],[47.72942,31.9442],[47.73034,31.94533],[47.7307,31.9464],[47.73034,31.94749],[47.72945,31.94893],[47.72878,31.9501],[47.72768,31.95229],[47.72771,31.95297],[47.72798,31.95391],[47.7281,31.95478],[47.72751,31.95601],[47.72614,31.95753],[47.72594,31.95835],[47.72596,31.95903],[47.72609,31.96017],[47.72644,31.96118],[47.72656,31.96219],[47.72568,31.96397],[47.72475,31.96453],[47.7242,31.96448],[47.72271,31.96492],[47.7201,31.96525],[47.71885,31.96555],[47.71775,31.96599],[47.71595,31.9665],[47.71528,31.96753],[47.71437,31.96864],[47.7126,31.97003],[47.71168,31.9708],[47.71165,31.97118],[47.71135,31.97256],[47.7119,31.97431],[47.71173,31.97397],[47.71196,31.97593],[47.71331,31.97799],[47.71442,31.97986],[47.71582,31.98131],[47.71725,31.98337],[47.71785,31.98464],[47.71776,31.98563],[47.71749,31.98742],[47.71626,31.98853],[47.71582,31.98942],[47.71554,31.99045],[47.71517,31.99106],[47.71449,31.99175],[47.71426,31.99217],[47.71387,31.99313],[47.71352,31.99333],[47.71255,31.99302],[47.71165,31.99236],[47.71037,31.99199],[47.70978,31.99106],[47.70942,31.9909],[47.70868,31.99129],[47.70816,31.99218],[47.70797,31.99333],[47.70767,31.99388],[47.70713,31.9943],[47.70643,31.99459],[47.70581,31.99479],[47.70558,31.99528],[47.70674,31.99634],[47.70795,31.99692],[47.70869,31.99746],[47.70964,31.99807],[47.71021,31.99875],[47.71088,31.99974],[47.71164,32.0005],[47.71257,32.00064],[47.71312,32.00063],[47.71329,32.00001],[47.71347,31.99962],[47.7141,31.99938],[47.71466,31.99952],[47.71526,31.99979],[47.71524,32.00021],[47.71535,32.00082],[47.71527,32.00152],[47.71464,32.00199],[47.71355,32.00248],[47.71135,32.00321],[47.70961,32.00394],[47.70844,32.00496],[47.70771,32.00528],[47.70735,32.00552],[47.7072,32.0059],[47.70793,32.00651],[47.70841,32.00712],[47.70889,32.00781],[47.70937,32.00842],[47.70947,32.00873],[47.70956,32.0088],[47.70957,32.00896],[47.7093,32.00911],[47.70859,32.00979],[47.7084,32.01021],[47.70832,32.01068],[47.70752,32.01154],[47.70716,32.01209],[47.70689,32.01232],[47.70637,32.01202],[47.70541,32.01212],[47.70457,32.01174],[47.70383,32.01168],[47.70309,32.01185],[47.70274,32.01232],[47.70229,32.01302],[47.7023,32.01341],[47.7022,32.01396],[47.7027,32.01433],[47.70346,32.01509],[47.70459,32.01599],[47.70526,32.01683],[47.70575,32.01752],[47.70632,32.0182],[47.70706,32.01834],[47.7077,32.01818],[47.70807,32.01802],[47.70891,32.01847],[47.70956,32.01845],[47.7101,32.01806],[47.71017,32.01736],[47.71014,32.01613],[47.7102,32.01512],[47.71075,32.01473],[47.71137,32.01452],[47.7125,32.01485],[47.71326,32.0153],[47.71383,32.01599],[47.71385,32.01676],[47.71406,32.01752],[47.71435,32.01821],[47.71402,32.0193],[47.71266,32.02048],[47.71175,32.02104],[47.71047,32.02137],[47.70974,32.02162],[47.7091,32.02194],[47.70808,32.0218],[47.70586,32.02184],[47.70458,32.02225],[47.70366,32.02242],[47.70229,32.02283],[47.70165,32.02315],[47.70083,32.02347],[47.70027,32.02348],[47.69963,32.02342],[47.69916,32.02327],[47.69915,32.02257],[47.69876,32.02235],[47.69855,32.02135],[47.69854,32.02081],[47.69787,32.02013],[47.69739,32.01944],[47.69727,32.01844],[47.69716,32.01782],[47.69677,32.01713],[47.69667,32.01667],[47.6961,32.01622],[47.69489,32.01601],[47.69396,32.01572],[47.69312,32.01519],[47.69291,32.0145],[47.6928,32.01388],[47.6922,32.01368],[47.69169,32.01382],[47.69125,32.01437],[47.69063,32.01546],[47.6901,32.01656],[47.6881,32.01759],[47.68646,32.01832],[47.68573,32.01856],[47.68498,32.01834],[47.68442,32.01813],[47.68389,32.0189],[47.6841,32.01967],[47.68421,32.02044],[47.6847,32.02151],[47.685,32.02228],[47.68586,32.02335],[47.68653,32.02411],[47.68774,32.02455],[47.68766,32.02509],[47.68703,32.02549],[47.68639,32.02581],[47.68622,32.02627],[47.6866,32.02673],[47.68752,32.02664],[47.68807,32.02632],[47.68898,32.02607],[47.68942,32.0259],[47.68991,32.02621],[47.68975,32.02691],[47.68938,32.02722],[47.68921,32.02754],[47.6896,32.02838],[47.6888,32.0294],[47.68862,32.02955],[47.68882,32.03033],[47.68828,32.0308],[47.68792,32.03088],[47.68719,32.03136],[47.68664,32.03175],[47.68591,32.03184],[47.68426,32.03241],[47.68316,32.03266],[47.6824,32.03279],[47.68161,32.03261],[47.68075,32.03239],[47.67972,32.03195],[47.67889,32.03189],[47.67808,32.03252],[47.67753,32.03292],[47.67633,32.03309],[47.67486,32.03311],[47.67311,32.03241],[47.67248,32.03257],[47.67239,32.03335],[47.67313,32.03415],[47.67307,32.03523],[47.67263,32.03593],[47.67256,32.03671],[47.67296,32.03801],[47.67282,32.03956],[47.67295,32.04095],[47.67262,32.0425],[47.67238,32.04374],[47.67213,32.04459],[47.66978,32.04679],[47.66906,32.0475],[47.6679,32.04798],[47.66626,32.04886],[47.66581,32.04914],[47.66539,32.04934],[47.66405,32.05006],[47.66213,32.05071],[47.66058,32.05143],[47.65921,32.05223],[47.65849,32.0527],[47.65794,32.05287],[47.65674,32.05289],[47.65591,32.05329],[47.65482,32.05385],[47.65438,32.05463],[47.6542,32.05486],[47.65274,32.05551],[47.65221,32.05637],[47.65148,32.05692],[47.65113,32.05754],[47.6507,32.05847],[47.65044,32.05925],[47.64972,32.05981],[47.64909,32.06036],[47.64893,32.06136],[47.64915,32.06202],[47.64925,32.06298],[47.64909,32.06375],[47.64976,32.06459],[47.65061,32.06527],[47.65164,32.06603],[47.65213,32.0671],[47.65292,32.06863],[47.65333,32.07017],[47.65354,32.07132],[47.65395,32.07263],[47.65409,32.07417],[47.65358,32.0758],[47.65316,32.07735],[47.6531,32.07859],[47.65313,32.07967],[47.65242,32.08092],[47.65226,32.08202],[47.65169,32.08309],[47.6511,32.08169],[47.64996,32.0829],[47.64883,32.08378],[47.64821,32.08403],[47.64761,32.08432],[47.6467,32.08465],[47.64624,32.08496],[47.6458,32.08575],[47.64619,32.08651],[47.64603,32.08713],[47.64512,32.08776],[47.64412,32.08832],[47.64229,32.08912],[47.64193,32.08944],[47.64128,32.08953],[47.64027,32.0897],[47.63944,32.08971],[47.63824,32.08989],[47.63719,32.08979],[47.63602,32.09062],[47.63327,32.09291],[47.632,32.09405],[47.62992,32.09579],[47.62888,32.09669],[47.62816,32.09744],[47.62744,32.09795],[47.62685,32.09846],[47.62604,32.09913],[47.62446,32.10074],[47.62286,32.10228],[47.62151,32.10353],[47.6197,32.10495],[47.61753,32.10677],[47.61554,32.10827],[47.61185,32.11119],[47.60754,32.11447],[47.60585,32.11592],[47.59978,32.12074],[47.59759,32.12278],[47.59642,32.12373],[47.59534,32.12436],[47.5947,32.12479],[47.59349,32.12393],[47.59191,32.12285],[47.589,32.12238],[47.58361,32.12124],[47.58026,32.12037],[47.57895,32.12],[47.57804,32.11979],[47.57522,32.11875],[47.57026,32.11667],[47.56887,32.11618],[47.5673,32.11657],[47.56472,32.11707],[47.56169,32.11789],[47.55942,32.1184],[47.55907,32.11986],[47.5597,32.12202],[47.55924,32.12287],[47.55863,32.12435],[47.55773,32.1256],[47.55666,32.1267],[47.55428,32.12775],[47.55127,32.12926],[47.54962,32.13006],[47.54914,32.13035],[47.54164,32.13598],[47.53744,32.13837],[47.53443,32.13988],[47.53276,32.14063],[47.53234,32.14108],[47.53239,32.14324],[47.53287,32.144],[47.53403,32.14591],[47.53508,32.14698],[47.53553,32.14813],[47.53589,32.14975],[47.53567,32.15554],[47.53544,32.15733],[47.53411,32.1592],[47.53338,32.15983],[47.53333,32.16145],[47.53374,32.16307],[47.53315,32.16532],[47.5329,32.1664],[47.53165,32.16781],[47.53038,32.16891],[47.52956,32.16954],[47.52941,32.17007],[47.52949,32.17047],[47.53362,32.17249],[47.53644,32.1743],[47.53842,32.17543],[47.53941,32.1759],[47.54058,32.17662],[47.54273,32.1776],[47.54592,32.17909],[47.54837,32.18082],[47.55081,32.18233],[47.5538,32.18328],[47.55596,32.18441],[47.55738,32.18546],[47.55833,32.18668],[47.55901,32.18783],[47.5597,32.1884],[47.56061,32.18873],[47.56284,32.18931],[47.56425,32.18991],[47.56592,32.19035],[47.56734,32.19148],[47.56755,32.19217],[47.56739,32.19302],[47.56692,32.19396],[47.56661,32.19512],[47.56609,32.19644],[47.56538,32.19753],[47.56504,32.19862],[47.56472,32.20063],[47.5645,32.20288],[47.56471,32.2038],[47.56555,32.20433],[47.56696,32.205],[47.56781,32.20545],[47.56856,32.20613],[47.56916,32.20759],[47.57027,32.21097],[47.57085,32.21204],[47.57152,32.2128],[47.57191,32.2134],[47.56994,32.21615],[47.56864,32.21926],[47.56803,32.22089],[47.56697,32.22261],[47.56699,32.22354],[47.56721,32.22461],[47.56678,32.22586],[47.56563,32.22788],[47.56441,32.22868],[47.56392,32.22992],[47.56246,32.23072],[47.56015,32.23067],[47.557,32.23088],[47.55368,32.23117],[47.551,32.23137],[47.54803,32.23134],[47.5461,32.23168],[47.54416,32.23186],[47.54241,32.2322],[47.54137,32.23257],[47.54031,32.23355],[47.53879,32.23535],[47.53754,32.23707],[47.53583,32.23918],[47.53494,32.24043],[47.53295,32.24289],[47.53144,32.24538],[47.52983,32.2475],[47.52525,32.25396],[47.52269,32.25788],[47.52109,32.26054],[47.51973,32.26141],[47.5178,32.26213],[47.51599,32.26386],[47.51395,32.26706],[47.51171,32.27003],[47.50819,32.27387],[47.50603,32.2763],[47.50357,32.27773],[47.50126,32.27808],[47.5008,32.2784],[47.50101,32.27901],[47.50418,32.27973],[47.50756,32.28161],[47.50973,32.28327],[47.51165,32.28548],[47.51233,32.28678],[47.51264,32.28801],[47.51275,32.28896],[47.51314,32.28932],[47.51536,32.28959],[47.51936,32.28984],[47.52205,32.29002],[47.52248,32.29225],[47.52219,32.29535],[47.52191,32.29618],[47.522,32.29875],[47.52219,32.30253],[47.52197,32.3047],[47.52192,32.30648],[47.52165,32.30656],[47.51987,32.30589],[47.51699,32.30555],[47.51458,32.30551],[47.51244,32.30516],[47.51038,32.30458],[47.50861,32.30429],[47.50604,32.30503],[47.50502,32.30513],[47.50288,32.30462],[47.50164,32.30424],[47.49996,32.30531],[47.49685,32.30776],[47.49525,32.3073],[47.4899,32.31002],[47.48578,32.31094],[47.48238,32.31081],[47.48025,32.31036],[47.47769,32.31303],[47.47473,32.31488],[47.47307,32.31552],[47.47148,32.31564],[47.46966,32.3155],[47.46691,32.31563],[47.46219,32.31591],[47.46181,32.32124],[47.46196,32.32605],[47.46096,32.32817],[47.45911,32.33135],[47.45848,32.33391],[47.45805,32.33752],[47.4564,32.34131],[47.45486,32.34317],[47.45358,32.34425],[47.45177,32.34603],[47.44917,32.34789],[47.44475,32.34885],[47.44195,32.3501],[47.43898,32.3515],[47.43639,32.3515],[47.43654,32.35304],[47.43812,32.35462],[47.44084,32.35646],[47.4445,32.35765],[47.44933,32.35882],[47.45275,32.35868],[47.4533,32.35982],[47.45293,32.36164],[47.45219,32.36286],[47.45289,32.366],[47.45459,32.36927],[47.45714,32.37164],[47.46006,32.37429],[47.46438,32.37648],[47.46584,32.37796],[47.46622,32.3796],[47.46511,32.38134],[47.46369,32.38295],[47.46337,32.38415],[47.4637,32.38679],[47.46458,32.38879],[47.46571,32.39103],[47.46636,32.39175],[47.4656,32.39328],[47.46218,32.39513],[47.45966,32.39636],[47.45703,32.39748],[47.45525,32.39814],[47.45362,32.40009],[47.44917,32.40398],[47.44545,32.40727],[47.44166,32.41094],[47.43855,32.41384],[47.43481,32.41701],[47.43191,32.41814],[47.43089,32.41862],[47.42882,32.42075],[47.42591,32.4244],[47.42297,32.42899],[47.42015,32.43321],[47.41761,32.4373],[47.41539,32.44019],[47.4128,32.44263],[47.40953,32.44614],[47.40697,32.44963],[47.40458,32.45283],[47.40218,32.45557],[47.40028,32.45725],[47.39857,32.45938],[47.39633,32.46182],[47.39414,32.46397],[47.39273,32.46608],[47.38909,32.46899],[47.38719,32.47036],[47.38459,32.47296],[47.38143,32.47421],[47.37931,32.4744],[47.37633,32.47427],[47.37497,32.47369],[47.37236,32.4736],[47.36997,32.47258],[47.36773,32.472],[47.36632,32.4714],[47.36525,32.4709],[47.36288,32.47134],[47.36093,32.47137],[47.35953,32.47184],[47.3583,32.47175],[47.35672,32.47309],[47.35533,32.47416],[47.35287,32.4748],[47.3479,32.47487],[47.34653,32.47549],[47.34508,32.4767],[47.34298,32.47675],[47.34101,32.47618],[47.33904,32.47546],[47.33741,32.47458],[47.33616,32.4743],[47.33475,32.47462],[47.33301,32.47585],[47.33092,32.47708],[47.32952,32.478],[47.32747,32.47869],[47.32167,32.48263],[47.31765,32.48479],[47.31433,32.48664],[47.31082,32.4882],[47.30816,32.48823],[47.30604,32.48872],[47.30219,32.49073],[47.29816,32.49259],[47.29518,32.49383],[47.29306,32.49432],[47.29076,32.49428],[47.28743,32.49652],[47.28534,32.49743],[47.28414,32.49758],[47.2833,32.49759],[47.28213,32.49427],[47.28193,32.49147],[47.28227,32.48952],[47.2833,32.48758],[47.28181,32.48592],[47.28047,32.48572],[47.27804,32.48432],[47.27681,32.48155],[47.27558,32.47895],[47.27553,32.47758],[47.27232,32.47659],[47.26837,32.47529],[47.26372,32.47416],[47.2605,32.47301],[47.25775,32.47019],[47.25449,32.46768],[47.25196,32.46622],[47.25053,32.46579],[47.24909,32.46506],[47.24739,32.46403],[47.24595,32.4635],[47.24334,32.46374],[47.24162,32.46451],[47.24011,32.4649],[47.2383,32.46508],[47.23622,32.466],[47.23492,32.46639],[47.23327,32.46587],[47.23227,32.46533],[47.23093,32.46434],[47.22926,32.46345],[47.22761,32.46284],[47.22608,32.46203],[47.22388,32.46235],[47.2203,32.46279],[47.21746,32.46275],[47.21517,32.46279],[47.21365,32.46292],[47.21331,32.46246],[47.21303,32.46036],[47.21138,32.46019],[47.20969,32.46036],[47.20758,32.46081],[47.20454,32.46106],[47.20161,32.46157],[47.19923,32.46217],[47.1963,32.4625],[47.19469,32.46286],[47.19226,32.46311],[47.19038,32.46324],[47.18959,32.46318],[47.1897,32.46277],[47.18998,32.46235],[47.19015,32.46106],[47.1895,32.46055],[47.18875,32.46025],[47.18785,32.46009],[47.18684,32.46034],[47.18557,32.46069],[47.18358,32.46153],[47.18257,32.46175],[47.18185,32.46175],[47.18116,32.46152],[47.18093,32.46127],[47.18083,32.46101],[47.18079,32.46056],[47.18086,32.45892],[47.18071,32.45818],[47.1801,32.45755],[47.17956,32.45689],[47.17886,32.45619],[47.1769,32.45641],[47.17301,32.45677],[47.1693,32.45716],[47.1683,32.4573],[47.16531,32.45945],[47.15571,32.46548],[47.15144,32.46842],[47.14968,32.46953],[47.14554,32.47139],[47.14219,32.47246],[47.14024,32.47341],[47.13704,32.47514],[47.12665,32.48087],[47.11774,32.48555],[47.11368,32.48812],[47.11135,32.48925],[47.10682,32.49193],[47.10349,32.49356],[47.10135,32.49425],[47.09724,32.49617],[47.09412,32.49724],[47.0919,32.49841],[47.09166,32.49894],[47.08987,32.50149],[47.08857,32.50369],[47.08797,32.50383],[47.08387,32.50555],[47.07751,32.50859],[47.07635,32.50925],[47.07107,32.51175],[47.0685,32.51435],[47.06201,32.52053],[47.05625,32.52578],[47.05524,32.52619],[47.0507,32.5265],[47.04913,32.52647],[47.04595,32.5285],[47.0444,32.52925],[47.04099,32.53485],[47.03709,32.53998],[47.03371,32.54436],[47.03302,32.54453],[47.02811,32.5473],[47.02361,32.55032],[47.02274,32.55091],[47.01956,32.55407],[47.01746,32.55564],[47.01454,32.55847],[47.00685,32.56504],[47.00237,32.56897],[47.00033,32.57038],[46.9932,32.57343],[46.98758,32.57572],[46.98089,32.57886],[46.97329,32.58147],[46.96843,32.58668],[46.96373,32.5908],[46.95785,32.59614],[46.95579,32.59786],[46.95314,32.59962],[46.9457,32.60341],[46.93968,32.60591],[46.93416,32.60937],[46.92921,32.6123],[46.92348,32.61477],[46.9219,32.61536],[46.91581,32.61801],[46.91413,32.61841],[46.90446,32.62332],[46.89444,32.62852],[46.88718,32.63203],[46.88058,32.6382],[46.87599,32.64269],[46.87218,32.64647],[46.86807,32.64943],[46.86225,32.65301],[46.85746,32.65564],[46.85269,32.65968],[46.84754,32.66353],[46.84246,32.66703],[46.84024,32.66916],[46.83864,32.67084],[46.83746,32.67175],[46.83591,32.6754],[46.83246,32.6819],[46.83111,32.68487],[46.83024,32.68647],[46.82785,32.69045],[46.82649,32.69287],[46.82552,32.69508],[46.82069,32.69728],[46.81463,32.69993],[46.81163,32.70147],[46.80686,32.70418],[46.80413,32.70591],[46.79379,32.71089],[46.79135,32.71203],[46.79,32.7173],[46.78835,32.72147],[46.78774,32.72286],[46.78533,32.72797],[46.78356,32.73036],[46.7733,32.73735],[46.76802,32.74073],[46.76635,32.74203],[46.76375,32.74512],[46.7611,32.74866],[46.75912,32.75064],[46.755,32.75591],[46.75214,32.75943],[46.75135,32.76036],[46.75,32.76144],[46.74506,32.76514],[46.74186,32.76775],[46.74052,32.76897],[46.73782,32.77185],[46.73541,32.77462],[46.73439,32.77564],[46.72864,32.78033],[46.72418,32.78345],[46.72168,32.78596],[46.72079,32.78647],[46.71657,32.78617],[46.71146,32.78596],[46.70801,32.78564],[46.70303,32.78711],[46.69884,32.78897],[46.69828,32.78925],[46.69456,32.79142],[46.69271,32.79259],[46.69134,32.79341],[46.68935,32.79678],[46.68856,32.79786],[46.68008,32.80035],[46.6707,32.80316],[46.66828,32.80397],[46.66278,32.80547],[46.65606,32.80758],[46.65285,32.81053],[46.65004,32.8128],[46.64745,32.81453],[46.64252,32.81594],[46.63704,32.81722],[46.63381,32.81783],[46.63245,32.81786],[46.62786,32.82037],[46.62444,32.82172],[46.62273,32.8223],[46.61923,32.82692],[46.61605,32.83044],[46.61384,32.83258],[46.60965,32.83581],[46.6047,32.83926],[46.60106,32.84147],[46.59693,32.84472],[46.59353,32.84707],[46.59217,32.84786],[46.59245,32.85064],[46.58741,32.85169],[46.58523,32.85175],[46.58051,32.85623],[46.57645,32.85992],[46.57356,32.86175],[46.56887,32.86579],[46.56401,32.86907],[46.55867,32.87294],[46.55578,32.8748],[46.55079,32.87823],[46.5434,32.8831],[46.53746,32.88664],[46.53191,32.89],[46.52773,32.89259],[46.52363,32.89513],[46.51984,32.8979],[46.51828,32.89869],[46.51466,32.89968],[46.51078,32.90036],[46.50682,32.90173],[46.50356,32.9023],[46.50005,32.90268],[46.49464,32.90313],[46.49162,32.90314],[46.48658,32.90926],[46.48339,32.91318],[46.48078,32.91619],[46.47598,32.91722],[46.47217,32.91787],[46.46657,32.91969],[46.46273,32.92091],[46.45679,32.92366],[46.45278,32.92543],[46.45051,32.92647],[46.45099,32.92993],[46.4511,32.9312],[46.4466,32.93431],[46.44384,32.93092],[46.44106,32.93119],[46.43689,32.93341],[46.43162,32.9348],[46.42773,32.93565],[46.42245,32.93758],[46.4172,32.94086],[46.41551,32.94175],[46.41157,32.94597],[46.41051,32.94704],[46.40206,32.94818],[46.39517,32.94855],[46.38976,32.949],[46.38745,32.94897],[46.37013,32.95268],[46.36306,32.95421],[46.35911,32.9548],[46.35405,32.95717],[46.34985,32.95935],[46.34745,32.96036],[46.34466,32.95898],[46.33914,32.96149],[46.3326,32.96476],[46.33161,32.96537],[46.32532,32.96571],[46.32244,32.96564],[46.31718,32.96767],[46.31404,32.96851],[46.31245,32.96897],[46.30637,32.9688],[46.30114,32.96857],[46.29827,32.96841],[46.29297,32.96861],[46.28883,32.96871],[46.28431,32.96898],[46.28244,32.96897],[46.27743,32.97001],[46.27144,32.97137],[46.268,32.97213],[46.26633,32.97258],[46.2606,32.97074],[46.25645,32.9696],[46.25383,32.9687],[46.25044,32.96929],[46.24975,32.96937],[46.24593,32.97002],[46.24411,32.97036],[46.23347,32.96737],[46.22823,32.96591],[46.22397,32.96464],[46.2205,32.96342],[46.21606,32.96241],[46.21077,32.96103],[46.208,32.96009],[46.2035,32.95914],[46.2005,32.95841],[46.19076,32.95688],[46.18295,32.95519],[46.17614,32.95405],[46.17355,32.95341],[46.1659,32.95438],[46.16109,32.95516],[46.15938,32.95536],[46.15089,32.95737],[46.14481,32.95866],[46.14029,32.95976],[46.13772,32.96009],[46.13411,32.96036],[46.12884,32.96389],[46.12474,32.96648],[46.12181,32.9681],[46.11994,32.96897],[46.11454,32.97179],[46.11165,32.97319],[46.10911,32.97425],[46.10403,32.97696],[46.10216,32.97758],[46.09886,32.98014],[46.0974,32.9812],[46.09693,32.98239],[46.09705,32.98405],[46.09618,32.98505],[46.09526,32.98574],[46.09482,32.98638],[46.09466,32.98846],[46.09478,32.98986],[46.09569,32.99135],[46.0961,32.99268],[46.09711,32.99416],[46.09782,32.99515],[46.09754,32.99648],[46.09815,32.99763],[46.0982,32.99799],[46.09861,32.9984],[46.09871,32.99873],[46.09933,32.99968],[46.09935,33.00068],[46.09917,33.00151],[46.09811,33.00244],[46.09654,33.00279],[46.09478,33.00331],[46.0944,33.0039],[46.09472,33.00498],[46.09563,33.0058],[46.09526,33.00697],[46.09439,33.00781],[46.0953,33.0088],[46.09659,33.00912],[46.09709,33.0097],[46.09716,33.01252],[46.09847,33.01384],[46.0997,33.01574],[46.09984,33.01741],[46.10007,33.0189],[46.10057,33.01948],[46.10215,33.01946],[46.10342,33.01894],[46.1044,33.01868],[46.10542,33.02017],[46.10681,33.0209],[46.1077,33.02056],[46.10855,33.01939],[46.10882,33.0183],[46.10921,33.01779],[46.11009,33.01762],[46.11069,33.0182],[46.11139,33.01835],[46.11229,33.01918],[46.11416,33.01907],[46.11574,33.01889],[46.11682,33.01912],[46.11762,33.01953],[46.11885,33.02151],[46.11966,33.02233],[46.12015,33.02233],[46.12189,33.02081],[46.12266,33.01997],[46.12351,33.01846],[46.12409,33.01804],[46.1248,33.01911],[46.12641,33.02034],[46.12751,33.02091],[46.12889,33.02098],[46.13028,33.02121],[46.1303,33.02213],[46.12973,33.02288],[46.12905,33.02347],[46.12906,33.02397],[46.13054,33.02396],[46.13211,33.02377],[46.1332,33.024],[46.13361,33.02475],[46.13285,33.02609],[46.13179,33.02694],[46.13231,33.02801],[46.13332,33.02917],[46.13424,33.03049],[46.13456,33.03148],[46.13457,33.03215],[46.13372,33.03324],[46.13305,33.03416],[46.13268,33.03517],[46.1328,33.03641],[46.1342,33.03698],[46.13599,33.03788],[46.13709,33.03844],[46.13811,33.03985],[46.13894,33.04175],[46.13897,33.04275],[46.1384,33.04401],[46.13822,33.04467],[46.13855,33.04509],[46.14014,33.04657],[46.14154,33.0473],[46.14273,33.04762],[46.14382,33.04802],[46.14384,33.04877],[46.14357,33.04952],[46.14406,33.04968],[46.14474,33.04934],[46.14513,33.04917],[46.14535,33.04992],[46.14565,33.05025],[46.14671,33.04932],[46.14703,33.05006],[46.14816,33.05197],[46.14867,33.05296],[46.14911,33.05342],[46.14902,33.05529],[46.14936,33.05711],[46.15078,33.05851],[46.15159,33.05933],[46.15171,33.06033],[46.15144,33.06142],[46.15147,33.06275],[46.15218,33.06374],[46.15338,33.0643],[46.15517,33.06487],[46.15588,33.06578],[46.15739,33.06684],[46.16017,33.06764],[46.16216,33.06853],[46.16336,33.06918],[46.1647,33.06951],[46.16427,33.07017],[46.1629,33.0706],[46.16182,33.07086],[46.16055,33.07121],[46.1594,33.07256],[46.15793,33.07307],[46.15695,33.07334],[46.15625,33.07293],[46.15544,33.07194],[46.15415,33.0717],[46.15317,33.07197],[46.15199,33.07206],[46.151,33.07207],[46.14973,33.07242],[46.14873,33.07168],[46.14744,33.07145],[46.14597,33.07197],[46.1444,33.07224],[46.14322,33.07225],[46.14188,33.07204],[46.14115,33.07244],[46.14017,33.07246],[46.1378,33.0724],[46.13563,33.07259],[46.13368,33.0732],[46.13212,33.07413],[46.13095,33.07473],[46.12978,33.07491],[46.12829,33.07468],[46.12741,33.07486],[46.12691,33.07486],[46.1263,33.07387],[46.1256,33.07346],[46.12432,33.07347],[46.12303,33.07307],[46.12212,33.0725],[46.12046,33.0731],[46.1189,33.07362],[46.11792,33.07388],[46.11688,33.07397],[46.11607,33.07482],[46.11451,33.07584],[46.11415,33.07717],[46.11459,33.07933],[46.11403,33.0805],[46.11315,33.0811],[46.11147,33.08078],[46.11087,33.08029],[46.1092,33.08073],[46.10697,33.08225],[46.10571,33.08318],[46.10515,33.08452],[46.10457,33.08494],[46.10411,33.08509],[46.10349,33.08512],[46.10289,33.08471],[46.10122,33.08515],[46.09926,33.08559],[46.0973,33.08628],[46.09555,33.08746],[46.0942,33.08848],[46.09332,33.0889],[46.09185,33.089],[46.09045,33.08827],[46.08924,33.0872],[46.08845,33.08746],[46.08838,33.08854],[46.0885,33.08946],[46.08723,33.09005],[46.08626,33.09082],[46.08579,33.09149],[46.08432,33.09192],[46.08264,33.09169],[46.08124,33.09104],[46.07995,33.09055],[46.07819,33.09132],[46.07683,33.09209],[46.07575,33.09227],[46.07435,33.09145],[46.07327,33.09065],[46.07264,33.09022],[46.07126,33.09015],[46.06961,33.09109],[46.06834,33.09185],[46.06648,33.09237],[46.06518,33.09172],[46.06517,33.09106],[46.06417,33.09065],[46.06319,33.09074],[46.0615,33.09035],[46.06032,33.09044],[46.05866,33.09121],[46.05679,33.09132],[46.05503,33.092],[46.05386,33.09235],[46.0527,33.0932],[46.05192,33.09428],[46.0508,33.09505],[46.04961,33.09527],[46.04869,33.09507],[46.0468,33.0945],[46.04444,33.09495],[46.04298,33.09547],[46.0418,33.09565],[46.0411,33.0954],[46.04144,33.09665],[46.04196,33.09812],[46.04238,33.09923],[46.04744,33.1112],[46.05272,33.1262],[46.05382,33.12556],[46.05504,33.12476],[46.05613,33.1245],[46.05778,33.12355],[46.05909,33.123],[46.06108,33.12381],[46.06228,33.12447],[46.06338,33.12487],[46.06499,33.12652],[46.06589,33.12709],[46.06718,33.12741],[46.06828,33.12781],[46.06967,33.12805],[46.07114,33.12778],[46.0728,33.12693],[46.07445,33.12574],[46.07561,33.12482],[46.07669,33.12439],[46.07778,33.12463],[46.07897,33.12486],[46.07975,33.12452],[46.08083,33.12434],[46.0816,33.12375],[46.08248,33.12324],[46.08405,33.12297],[46.08583,33.12295],[46.0874,33.12268],[46.08856,33.12159],[46.08932,33.1205],[46.09,33.11991],[46.09098,33.11973],[46.09237,33.12004],[46.09384,33.11986],[46.09532,33.11976],[46.09642,33.12008],[46.09732,33.12091],[46.09893,33.12222],[46.09994,33.12321],[46.10134,33.12394],[46.10263,33.12409],[46.1043,33.12407],[46.10538,33.12389],[46.10667,33.12413],[46.10796,33.12444],[46.10945,33.12468],[46.11082,33.12416],[46.11219,33.12406],[46.11288,33.12372],[46.11375,33.12313],[46.1157,33.12211],[46.11687,33.12159],[46.11735,33.12109],[46.11853,33.12066],[46.1198,33.12014],[46.1207,33.12072],[46.12102,33.12179],[46.12027,33.12339],[46.1201,33.12455],[46.12052,33.12596],[46.12134,33.12712],[46.12284,33.12793],[46.12368,33.12984],[46.1245,33.13108],[46.1258,33.13214],[46.127,33.13271],[46.12783,33.13437],[46.12915,33.13585],[46.13037,33.13758],[46.13159,33.13915],[46.13232,33.14039],[46.13421,33.14112],[46.13589,33.14143],[46.13718,33.14158],[46.13799,33.14257],[46.13911,33.14422],[46.14082,33.14529],[46.14261,33.14609],[46.14371,33.14633],[46.14492,33.14748],[46.14699,33.14771],[46.15055,33.14791],[46.15255,33.14864],[46.15385,33.14962],[46.15535,33.15044],[46.15636,33.15126],[46.15756,33.15208],[46.15884,33.15206],[46.15944,33.15238],[46.15985,33.15313],[46.16007,33.15388],[46.16088,33.15453],[46.16198,33.15502],[46.16297,33.15559],[46.16378,33.15633],[46.16519,33.15739],[46.16699,33.15829],[46.16809,33.15919],[46.16852,33.16027],[46.16893,33.16118],[46.16955,33.16225],[46.17132,33.16215],[46.17223,33.16272],[46.17342,33.1632],[46.17453,33.16402],[46.17544,33.16493],[46.17655,33.16591],[46.17784,33.16632],[46.17983,33.16679],[46.18153,33.16776],[46.18265,33.16908],[46.18327,33.17041],[46.18516,33.17113],[46.18646,33.17179],[46.18689,33.17286],[46.18652,33.17403],[46.18566,33.17529],[46.1855,33.17662],[46.18623,33.1782],[46.18743,33.1791],[46.18903,33.18],[46.19083,33.18064],[46.1927,33.1807],[46.1939,33.18135],[46.1958,33.18216],[46.19791,33.1838],[46.19893,33.1852],[46.19966,33.18685],[46.19951,33.1886],[46.19854,33.18937],[46.19797,33.19029],[46.19791,33.19179],[46.19835,33.19353],[46.20016,33.19484],[46.20175,33.19524],[46.20802,33.19741],[46.21023,33.19879],[46.21133,33.19954],[46.21244,33.20051],[46.21336,33.20142],[46.213,33.20204],[46.21111,33.20245],[46.20765,33.20232],[46.20522,33.20231],[46.19934,33.20184],[46.19618,33.2018],[46.19522,33.20176],[46.19185,33.20235],[46.18763,33.20349],[46.1836,33.20428],[46.18161,33.20509],[46.17982,33.20691],[46.17984,33.20783],[46.18178,33.21047],[46.18326,33.21062],[46.18384,33.21011],[46.18502,33.20993],[46.18524,33.21076],[46.18527,33.21184],[46.18579,33.21283],[46.18532,33.21417],[46.18466,33.21509],[46.18401,33.2171],[46.18335,33.21802],[46.18247,33.21862],[46.1816,33.21937],[46.18133,33.22037],[46.18236,33.22236],[46.18319,33.22377],[46.18393,33.22576],[46.18436,33.22708],[46.1855,33.22787],[46.18677,33.22864],[46.18835,33.22895],[46.19022,33.22926],[46.19126,33.23066],[46.19168,33.23157],[46.1917,33.2324],[46.19232,33.23356],[46.19263,33.23439],[46.19197,33.23556],[46.19191,33.23681],[46.19262,33.23789],[46.19304,33.2388],[46.19272,33.23926],[46.19189,33.24023],[46.19071,33.24057],[46.19002,33.24058],[46.18846,33.24118],[46.18749,33.24203],[46.18751,33.24311],[46.18764,33.24419],[46.18827,33.24509],[46.1889,33.24709],[46.18911,33.24815],[46.18855,33.24926],[46.18774,33.25016],[46.18698,33.25091],[46.187,33.25239],[46.18778,33.25294],[46.18855,33.25303],[46.18944,33.2533],[46.18967,33.25405],[46.18946,33.25479],[46.18882,33.25581],[46.18883,33.25648],[46.19006,33.25757],[46.19052,33.25896],[46.19053,33.2596],[46.1911,33.26118],[46.19123,33.26201],[46.19113,33.26294],[46.1911,33.2634],[46.19004,33.26397],[46.18883,33.26444],[46.1873,33.2651],[46.1851,33.26567],[46.18334,33.26587],[46.18191,33.26597],[46.17992,33.26561],[46.17937,33.26599],[46.17916,33.26655],[46.17906,33.2671],[46.17911,33.26759],[46.17819,33.26794],[46.17654,33.26814],[46.17511,33.26889],[46.17391,33.26965],[46.17226,33.27012],[46.17105,33.27031],[46.16918,33.27069],[46.1682,33.27154],[46.16766,33.27228],[46.16772,33.27315],[46.16647,33.27368],[46.1646,33.27444],[46.16329,33.27491],[46.16208,33.27529],[46.16132,33.27613],[46.16034,33.27715],[46.15947,33.27763],[46.15782,33.27819],[46.15628,33.27894],[46.15476,33.28025],[46.15322,33.28101],[46.1518,33.28138],[46.14994,33.28242],[46.14829,33.28308],[46.14709,33.28373],[46.14556,33.28495],[46.14466,33.28592],[46.14272,33.28701],[46.14119,33.28776],[46.13977,33.28879],[46.13835,33.28973],[46.13725,33.29019],[46.1356,33.29076],[46.13494,33.29148],[46.13386,33.29245],[46.13266,33.29338],[46.13169,33.29487],[46.13082,33.2958],[46.12972,33.29628],[46.12908,33.29748],[46.12821,33.2986],[46.1269,33.29917],[46.12548,33.30038],[46.12516,33.30159],[46.12463,33.30308],[46.12344,33.30457],[46.12181,33.30616],[46.11951,33.30728],[46.11841,33.30757],[46.11687,33.30851],[46.1155,33.30954],[46.11471,33.31131],[46.11277,33.31447],[46.11039,33.31829],[46.10866,33.32117],[46.10705,33.32424],[46.10546,33.32843],[46.10471,33.3302],[46.10385,33.33187],[46.10289,33.33457],[46.10202,33.33504],[46.09895,33.337],[46.09623,33.33915],[46.09459,33.34083],[46.09254,33.34381],[46.09102,33.34624],[46.09004,33.34708],[46.08731,33.34886],[46.08457,33.35082],[46.08172,33.35204],[46.0805,33.35259],[46.08074,33.35326],[46.08165,33.35483],[46.08198,33.35548],[46.08189,33.35612],[46.08112,33.35659],[46.07994,33.35648],[46.07958,33.35688],[46.07915,33.3579],[46.07838,33.358],[46.07688,33.35787],[46.07706,33.35857],[46.07795,33.35902],[46.07966,33.35954],[46.08009,33.36023],[46.08002,33.36089],[46.07941,33.36165],[46.07839,33.36222],[46.07791,33.36239],[46.07816,33.37414],[46.07824,33.38027],[46.0782,33.38537],[46.078,33.38842],[46.07717,33.39057],[46.07696,33.39131],[46.07633,33.39204],[46.07534,33.3942],[46.07306,33.397],[46.07133,33.39926],[46.07146,33.4009],[46.07093,33.40276],[46.0684,33.40352],[46.06565,33.40455],[46.0627,33.4068],[46.06084,33.40838],[46.05855,33.40954],[46.05789,33.41072],[46.0567,33.41231],[46.05659,33.4124],[46.05562,33.41445],[46.05442,33.41519],[46.05383,33.41537],[46.05233,33.4166],[46.05025,33.41754],[46.04772,33.41815],[46.04761,33.41867],[46.04653,33.42034],[46.04568,33.4235],[46.04504,33.4249],[46.04385,33.42648],[46.0432,33.42806],[46.04213,33.42983],[46.0417,33.43104],[46.0416,33.43196],[46.04063,33.43383],[46.04,33.43606],[46.03981,33.43838],[46.03928,33.43996],[46.03819,33.44136],[46.03716,33.44259],[46.03744,33.44321],[46.03988,33.44385],[46.04278,33.44588],[46.04414,33.44782],[46.04355,33.44787],[46.04251,33.45061],[46.04132,33.4521],[46.04078,33.45303],[46.04145,33.45405],[46.04181,33.4559],[46.04095,33.45804],[46.04009,33.45934],[46.03866,33.46],[46.03669,33.46103],[46.0356,33.46271],[46.03494,33.46342],[46.03519,33.46521],[46.03488,33.46717],[46.03369,33.46912],[46.03186,33.47219],[46.03078,33.47461],[46.02937,33.47675],[46.02851,33.47824],[46.02841,33.47926],[46.02842,33.48019],[46.0269,33.48168],[46.02547,33.4828],[46.02383,33.48383],[46.02327,33.48426],[46.02153,33.48533],[46.01976,33.48599],[46.01882,33.48648],[46.01822,33.48618],[46.01743,33.48507],[46.01696,33.48331],[46.01577,33.48231],[46.01442,33.48286],[46.01255,33.48426],[46.01036,33.48557],[46.00894,33.48688],[46.00799,33.48759],[46.00787,33.48948],[46.00881,33.49375],[46.00906,33.49588],[46.00908,33.49782],[46.00888,33.49922],[46.00796,33.50054],[46.00787,33.50184],[46.00823,33.50332],[46.00836,33.50462],[46.00784,33.50637],[46.00655,33.5087],[46.00502,33.50963],[46.00291,33.51014],[45.99994,33.51072],[45.99894,33.51055],[45.99816,33.51],[45.99725,33.50871],[45.99624,33.50779],[45.99457,33.50743],[45.9928,33.50745],[45.99148,33.50774],[45.99026,33.50737],[45.98903,33.50692],[45.98748,33.50675],[45.98572,33.50722],[45.98466,33.50731],[45.98294,33.50623],[45.98148,33.50522],[45.98014,33.50449],[45.97847,33.50367],[45.97744,33.50287],[45.97491,33.50231],[45.96936,33.50124],[45.96714,33.5007],[45.96404,33.50026],[45.96171,33.49982],[45.96038,33.49983],[45.95911,33.49926],[45.9586,33.49901],[45.95769,33.49754],[45.95645,33.49588],[45.95431,33.49348],[45.95295,33.49155],[45.95238,33.49026],[45.95216,33.48981],[45.95104,33.48953],[45.94915,33.48889],[45.9467,33.4878],[45.94513,33.48679],[45.9439,33.48551],[45.94278,33.4845],[45.94187,33.48321],[45.94133,33.48287],[45.94076,33.4834],[45.94013,33.48535],[45.93907,33.48832],[45.93722,33.49037],[45.93592,33.49177],[45.93299,33.49176],[45.92929,33.49192],[45.92563,33.49157],[45.92164,33.49095],[45.91953,33.49069],[45.91809,33.49061],[45.91622,33.49146],[45.91535,33.49174],[45.91257,33.49111],[45.91013,33.49039],[45.90847,33.49059],[45.90451,33.49164],[45.90087,33.4925],[45.89701,33.49317],[45.89414,33.49375],[45.89187,33.49426],[45.89083,33.49414],[45.88994,33.49396],[45.88782,33.49305],[45.88516,33.49242],[45.88262,33.49281],[45.88018,33.492],[45.87774,33.49192],[45.87521,33.49259],[45.87378,33.49334],[45.87329,33.4943],[45.86926,33.49397],[45.86708,33.49375],[45.86447,33.49342],[45.86271,33.49315],[45.86428,33.49424],[45.86763,33.49616],[45.87376,33.49927],[45.89521,33.51259],[45.92437,33.53093],[45.94688,33.54538],[45.94963,33.54799],[45.95188,33.55028],[45.95459,33.55314],[45.95663,33.55599],[45.95866,33.55848],[45.96023,33.55995],[45.96133,33.5612],[45.96072,33.56272],[45.9593,33.56412],[45.95809,33.56506],[45.95879,33.56654],[45.95892,33.56783],[45.95716,33.56898],[45.95652,33.57026],[45.95498,33.57101],[45.95467,33.57203],[45.95402,33.57315],[45.95206,33.57502],[45.94966,33.57772],[45.94703,33.5795],[45.94466,33.58065],[45.94266,33.58315],[45.93874,33.58716],[45.93656,33.58968],[45.93515,33.59126],[45.93428,33.5922],[45.9323,33.59332],[45.93077,33.59399],[45.92913,33.59557],[45.92551,33.5981],[45.92233,33.60016],[45.91849,33.6026],[45.91541,33.60401],[45.91222,33.60533],[45.9109,33.60571],[45.90947,33.60637],[45.90748,33.60648],[45.90469,33.6054],[45.91661,33.62759],[45.9085,33.63651],[45.90807,33.63797],[45.90675,33.63826],[45.90552,33.63817],[45.90407,33.63763],[45.90263,33.6368],[45.90139,33.63598],[45.89851,33.63609],[45.8963,33.63639],[45.89442,33.63658],[45.8921,33.6366],[45.89055,33.63671],[45.88826,33.63592],[45.88665,33.63525],[45.88564,33.63461],[45.88364,33.63444],[45.88032,33.63446],[45.87756,33.63476],[45.8749,33.63478],[45.87269,33.63526],[45.87114,33.63527],[45.86869,33.63482],[45.86625,33.63428],[45.86435,33.63356],[45.8628,33.6332],[45.86104,33.63205],[45.85934,33.63174],[45.85734,33.6311],[45.85589,33.63037],[45.85366,33.62974],[45.85111,33.62939],[45.84833,33.62894],[45.84689,33.62868],[45.84632,33.62842],[45.844,33.62823],[45.84233,33.6276],[45.84032,33.62659],[45.83699,33.62596],[45.83411,33.62598],[45.83113,33.62656],[45.8287,33.62732],[45.82649,33.62761],[45.82521,33.62731],[45.82316,33.62735],[45.82017,33.62719],[45.81575,33.62805],[45.81354,33.62731],[45.81283,33.62538],[45.81224,33.62242],[45.81154,33.6203],[45.81104,33.61842],[45.80696,33.61737],[45.80305,33.61508],[45.80081,33.61361],[45.7999,33.61291],[45.78882,33.60759],[45.77493,33.6026],[45.75743,33.59454],[45.7544,33.5934],[45.7546,33.59528],[45.75595,33.59703],[45.75641,33.59814],[45.75654,33.59962],[45.75733,33.60082],[45.75802,33.60239],[45.75804,33.60424],[45.75795,33.60517],[45.75907,33.60665],[45.75932,33.60868],[45.75979,33.61072],[45.7607,33.61238],[45.76172,33.61404],[45.76262,33.61496],[45.76463,33.61606],[45.76608,33.61726],[45.76698,33.61808],[45.76734,33.62012],[45.76814,33.62206],[45.76937,33.62279],[45.771,33.6237],[45.77215,33.63037],[45.7716,33.63705],[45.77136,33.63843],[45.76993,33.63919],[45.76784,33.64003],[45.76574,33.64069],[45.76254,33.64183],[45.76034,33.64258],[45.75769,33.64352],[45.75568,33.6441],[45.75228,33.64504],[45.75008,33.64579],[45.7461,33.64918],[45.74316,33.65097],[45.74021,33.65286],[45.73746,33.65409],[45.73604,33.65454],[45.731,33.6575],[45.72519,33.66035],[45.72135,33.66215],[45.7191,33.6626],[45.71602,33.66638],[45.713,33.67002],[45.71063,33.6732],[45.70989,33.67398],[45.70509,33.67799],[45.70268,33.6795],[45.70106,33.68137],[45.69901,33.6837],[45.69743,33.6851],[45.69619,33.68633],[45.69443,33.68718],[45.69335,33.68821],[45.69271,33.68952],[45.6923,33.6911],[45.69132,33.69176],[45.68988,33.69205],[45.68767,33.69235],[45.68591,33.69274],[45.68437,33.6926],[45.68207,33.69445],[45.68011,33.69623],[45.67749,33.69793],[45.67453,33.69982],[45.67303,33.70224],[45.67253,33.70456],[45.67047,33.70653],[45.66631,33.70889],[45.66458,33.71104],[45.66362,33.7129],[45.66192,33.71607],[45.65965,33.7176],[45.65957,33.72008],[45.65927,33.72184],[45.65882,33.7226],[45.65733,33.72417],[45.65491,33.72513],[45.65217,33.72646],[45.64876,33.72788],[45.64768,33.7291],[45.64716,33.73077],[45.6466,33.7323],[45.64519,33.7329],[45.64422,33.73339],[45.64258,33.73434],[45.6415,33.73564],[45.64107,33.7363],[45.64049,33.73731],[45.64046,33.7389],[45.64017,33.74085],[45.64008,33.74187],[45.63993,33.74288],[45.64132,33.7443],[45.64264,33.74612],[45.64365,33.74803],[45.64403,33.74912],[45.6441,33.74927],[45.64456,33.75144],[45.64549,33.75373],[45.64734,33.7561],[45.64898,33.75762],[45.6494,33.75889],[45.64931,33.75983],[45.6491,33.76038],[45.64802,33.76374],[45.64581,33.7674],[45.64442,33.7708],[45.6425,33.77377],[45.6407,33.77616],[45.63868,33.77862],[45.63657,33.78143],[45.63355,33.78492],[45.63092,33.78739],[45.62908,33.78823],[45.62748,33.78901],[45.62543,33.79013],[45.62323,33.7914],[45.62003,33.79331],[45.61287,33.79736],[45.61078,33.79847],[45.60718,33.80043],[45.60329,33.80321],[45.59968,33.81046],[45.601,33.81731],[45.60116,33.81888],[45.59995,33.82007],[45.59843,33.8216],[45.59631,33.82339],[45.59298,33.82645],[45.59035,33.82883],[45.58802,33.83071],[45.58661,33.83165],[45.58437,33.8326],[45.58418,33.83377],[45.58532,33.83564],[45.58493,33.8376],[45.58494,33.83972],[45.58373,33.84108],[45.58212,33.84354],[45.58091,33.84516],[45.57949,33.8466],[45.57778,33.84882],[45.57628,33.85213],[45.57376,33.85544],[45.57165,33.85868],[45.56983,33.8614],[45.56803,33.86488],[45.56592,33.86837],[45.56401,33.87186],[45.5626,33.87398],[45.56048,33.87653],[45.55807,33.88087],[45.55595,33.88376],[45.55364,33.88783],[45.55263,33.8897],[45.55131,33.89121],[45.55021,33.89277],[45.5493,33.89387],[45.54798,33.89362],[45.5466,33.89316],[45.54604,33.89482],[45.54525,33.89745],[45.54455,33.89906],[45.54324,33.90042],[45.54131,33.90187],[45.53858,33.90434],[45.53696,33.90621],[45.53554,33.9074],[45.53525,33.90918],[45.53527,33.91105],[45.53436,33.91258],[45.53243,33.91309],[45.53111,33.91352],[45.52936,33.91427],[45.52878,33.91539],[45.52848,33.91692],[45.52716,33.91769],[45.52594,33.91777],[45.52574,33.91871],[45.52545,33.91964],[45.52423,33.92007],[45.5229,33.92024],[45.52159,33.9201],[45.52169,33.92075],[45.52169,33.92219],[45.52099,33.92338],[45.52018,33.92432],[45.51957,33.92483],[45.51816,33.92704],[45.51767,33.92925],[45.51727,33.93087],[45.51688,33.93273],[45.51668,33.93409],[45.51619,33.93571],[45.51568,33.9369],[45.51477,33.93825],[45.51366,33.93911],[45.51305,33.93987],[45.51287,33.94208],[45.51247,33.94378],[45.51126,33.94556],[45.50974,33.94735],[45.50863,33.94854],[45.50772,33.94939],[45.50701,33.95066],[45.50509,33.9522],[45.50326,33.95424],[45.50282,33.95516],[45.50252,33.95633],[45.5027,33.95732],[45.50163,33.95726],[45.50072,33.95717],[45.49981,33.95642],[45.49849,33.95424],[45.49667,33.95357],[45.49486,33.95298],[45.49304,33.9519],[45.49253,33.95122],[45.49102,33.95014],[45.48964,33.94927],[45.48779,33.94905],[45.48447,33.94863],[45.48356,33.94838],[45.48243,33.9476],[45.48195,33.94805],[45.48166,33.94863],[45.48131,33.94927],[45.48077,33.95015],[45.47846,33.95056],[45.47645,33.9504],[45.47474,33.9504],[45.47313,33.95006],[45.47011,33.94923],[45.4682,33.94957],[45.46629,33.94973],[45.46438,33.94948],[45.46247,33.9489],[45.46045,33.94806],[45.45874,33.94731],[45.45825,33.94677],[45.45652,33.94731],[45.45532,33.94747],[45.45401,33.94698],[45.4526,33.94664],[45.45049,33.94639],[45.44889,33.94698],[45.44808,33.94698],[45.44686,33.94705],[45.44567,33.94782],[45.44437,33.94798],[45.44216,33.94782],[45.44065,33.94748],[45.43854,33.94748],[45.43673,33.9479],[45.43472,33.9474],[45.43351,33.94698],[45.4316,33.9468],[45.4309,33.94749],[45.42981,33.94916],[45.42962,33.95042],[45.42964,33.95243],[45.42974,33.95369],[45.42995,33.95462],[45.42906,33.95537],[45.42715,33.95621],[45.42555,33.95721],[45.42475,33.95797],[45.42356,33.95898],[45.42215,33.95923],[45.42115,33.95973],[45.42036,33.96065],[45.42037,33.96217],[45.42007,33.96334],[45.41928,33.96443],[45.41878,33.96535],[45.41825,33.96593],[45.41759,33.9672],[45.41721,33.96929],[45.41622,33.97122],[45.41492,33.97307],[45.41353,33.97483],[45.41163,33.97575],[45.40983,33.97659],[45.40832,33.97717],[45.40742,33.97732],[45.40964,33.97835],[45.41125,33.97869],[45.41316,33.97894],[45.41548,33.97919],[45.41729,33.97986],[45.41941,33.98086],[45.42052,33.98204],[45.42084,33.98321],[45.42105,33.98472],[45.42146,33.98615],[45.42148,33.98833],[45.42139,33.98959],[45.4218,33.99068],[45.42291,33.99143],[45.42412,33.99185],[45.42523,33.99176],[45.42633,33.99118],[45.42773,33.99084],[45.42894,33.99076],[45.43015,33.99092],[45.43046,33.99252],[45.43108,33.99395],[45.43179,33.9952],[45.4329,33.99621],[45.43402,33.99738],[45.43533,33.99805],[45.43684,33.99813],[45.43805,33.99839],[45.43926,33.99914],[45.43926,33.99922],[45.44209,34.00025],[45.44431,34.00151],[45.44804,34.00353],[45.44985,34.00488],[45.45146,34.00622],[45.45307,34.00748],[45.45549,34.00833],[45.4567,34.00842],[45.45871,34.00867],[45.46083,34.00927],[45.46264,34.00986],[45.46415,34.01012],[45.46587,34.01071],[45.46728,34.01139],[45.46727,34.01197],[45.46697,34.01255],[45.46647,34.01297],[45.46596,34.01364],[45.46617,34.01439],[45.46697,34.01489],[45.46757,34.01557],[45.46788,34.0164],[45.46727,34.0174],[45.46717,34.01824],[45.46717,34.01916],[45.46757,34.02024],[45.46818,34.02058],[45.46918,34.021],[45.4702,34.02067],[45.4709,34.02026],[45.4713,34.02051],[45.4716,34.02143],[45.47231,34.02294],[45.47352,34.0237],[45.47503,34.02487],[45.47614,34.02605],[45.47654,34.02689],[45.47583,34.0273],[45.47553,34.0273],[45.47503,34.02688],[45.47452,34.02629],[45.47412,34.02579],[45.47341,34.02553],[45.47231,34.02562],[45.4717,34.02619],[45.4709,34.02736],[45.4723,34.02904],[45.47321,34.02971],[45.47372,34.03072],[45.47382,34.03197],[45.47361,34.03281],[45.47321,34.03431],[45.47261,34.03489],[45.47119,34.03488],[45.47039,34.0353],[45.47019,34.0358],[45.47039,34.0363],[45.47099,34.03656],[45.4719,34.03681],[45.47281,34.0369],[45.47351,34.03682],[45.47412,34.0364],[45.47493,34.03657],[45.47593,34.03658],[45.47664,34.03608],[45.47765,34.03608],[45.47795,34.03709],[45.47814,34.03801],[45.47784,34.03859],[45.47744,34.03959],[45.47744,34.04051],[45.47774,34.04151],[45.47824,34.04219],[45.47905,34.04269],[45.47945,34.04328],[45.48006,34.04445],[45.47945,34.04528],[45.47986,34.04662],[45.48016,34.04754],[45.48016,34.0483],[45.47985,34.0488],[45.47764,34.05021],[45.47683,34.05112],[45.47643,34.05196],[45.47703,34.05305],[45.47814,34.05422],[45.47935,34.05473],[45.47985,34.05598],[45.47995,34.05732],[45.47935,34.05815],[45.47935,34.0589],[45.47955,34.05983],[45.47914,34.06083],[45.47834,34.06132],[45.47693,34.0614],[45.4733,34.06139],[45.47199,34.06189],[45.47038,34.06263],[45.46867,34.06346],[45.46725,34.06446],[45.46675,34.06537],[45.46736,34.06671],[45.46876,34.0673],[45.46987,34.06815],[45.47088,34.06848],[45.47098,34.06932],[45.47148,34.0699],[45.47199,34.07016],[45.47269,34.07083],[45.47269,34.07133],[45.47239,34.07208],[45.47209,34.07267],[45.47229,34.07309],[45.47279,34.07342],[45.4735,34.07418],[45.4737,34.07501],[45.4738,34.07593],[45.4738,34.07669],[45.474,34.07727],[45.47501,34.07744],[45.47662,34.07762],[45.47783,34.0777],[45.47894,34.07821],[45.47954,34.07913],[45.47964,34.08013],[45.47995,34.08131],[45.48014,34.08215],[45.48105,34.08265],[45.48226,34.08282],[45.48367,34.08266],[45.48387,34.08208],[45.48407,34.08132],[45.48418,34.0799],[45.48458,34.07848],[45.48498,34.07757],[45.48549,34.07707],[45.48629,34.07724],[45.4865,34.07799],[45.4868,34.07933],[45.4876,34.08084],[45.48851,34.08134],[45.48971,34.08177],[45.49012,34.08243],[45.49032,34.08319],[45.49092,34.08361],[45.49213,34.08395],[45.49344,34.08412],[45.49526,34.08421],[45.49626,34.08464],[45.49616,34.08556],[45.49536,34.0863],[45.49364,34.08688],[45.49102,34.08795],[45.49032,34.08871],[45.49123,34.08955],[45.49223,34.0898],[45.49385,34.09031],[45.49395,34.09164],[45.49395,34.09256],[45.49414,34.09357],[45.49485,34.09424],[45.49576,34.09425],[45.49656,34.094],[45.49727,34.09442],[45.49717,34.09584],[45.49737,34.09684],[45.49837,34.09751],[45.49939,34.09793],[45.50009,34.09819],[45.502,34.0992],[45.50432,34.09954],[45.50613,34.09964],[45.50694,34.09989],[45.50714,34.10064],[45.50664,34.10131],[45.50563,34.10222],[45.50492,34.10306],[45.50442,34.10406],[45.50482,34.10514],[45.50603,34.10549],[45.50734,34.10566],[45.50845,34.10683],[45.50996,34.10868],[45.51137,34.11019],[45.51237,34.11086],[45.51368,34.11204],[45.51479,34.11179],[45.5154,34.11179],[45.5157,34.11213],[45.5155,34.1128],[45.51489,34.11313],[45.51469,34.11405],[45.5155,34.11397],[45.5166,34.11355],[45.51832,34.11306],[45.51902,34.11231],[45.51983,34.1119],[45.52034,34.11156],[45.52074,34.11165],[45.52124,34.11215],[45.52124,34.1129],[45.52104,34.11365],[45.52134,34.11466],[45.52164,34.11499],[45.52245,34.11533],[45.52386,34.1155],[45.52457,34.1166],[45.52436,34.11735],[45.52416,34.11801],[45.52366,34.11893],[45.52507,34.11961],[45.52648,34.12003],[45.52809,34.11945],[45.52819,34.11811],[45.52809,34.11686],[45.52809,34.11619],[45.5287,34.11578],[45.5299,34.11562],[45.53081,34.1157],[45.53081,34.11629],[45.53101,34.11695],[45.53152,34.11771],[45.53273,34.11797],[45.53373,34.11797],[45.53353,34.11864],[45.53252,34.11938],[45.53121,34.1198],[45.53031,34.12063],[45.5299,34.1223],[45.53061,34.12314],[45.53171,34.12331],[45.53363,34.12407],[45.53464,34.12507],[45.53595,34.12466],[45.53665,34.12433],[45.53927,34.12551],[45.54108,34.12602],[45.54199,34.12603],[45.5428,34.12653],[45.5432,34.12745],[45.54436,34.12788],[45.54511,34.12838],[45.54572,34.12872],[45.54592,34.1293],[45.54652,34.13022],[45.55075,34.13325],[45.55498,34.13653],[45.5577,34.13846],[45.55881,34.13805],[45.56002,34.13864],[45.56012,34.14006],[45.56551,34.13991],[45.56825,34.13986],[45.57523,34.14388],[45.5816,34.14621],[45.57896,34.15058],[45.57664,34.15484],[45.57482,34.15884],[45.57482,34.16411],[45.57412,34.16904],[45.57331,34.17204],[45.572,34.17379],[45.57049,34.17504],[45.56964,34.1751],[45.56766,34.17753],[45.56555,34.17995],[45.56303,34.18286],[45.5595,34.18652],[45.55748,34.18952],[45.55728,34.18977],[45.55527,34.19286],[45.55426,34.19628],[45.55476,34.19812],[45.55567,34.19946],[45.55714,34.20039],[45.55788,34.20173],[45.5601,34.20425],[45.56187,34.20594],[45.56705,34.21071],[45.56946,34.21289],[45.56993,34.21316],[45.57087,34.21791],[45.57148,34.22084],[45.5727,34.22343],[45.57641,34.23014],[45.57923,34.23474],[45.58049,34.2365],[45.58124,34.24069],[45.58124,34.24211],[45.58144,34.2432],[45.58187,34.24428],[45.58225,34.24687],[45.58255,34.24863],[45.58255,34.24972],[45.58187,34.25511],[45.58178,34.2582],[45.58149,34.26382],[45.58195,34.26783],[45.58215,34.26844],[45.58275,34.27505],[45.58375,34.2796],[45.58529,34.28566],[45.58604,34.28817],[45.58573,34.29346],[45.5857,34.29478],[45.58484,34.29957],[45.5835,34.30291],[45.57465,34.31621],[45.56187,34.33177],[45.53621,34.35369],[45.53543,34.35345],[45.53521,34.35261],[45.53496,34.35113],[45.53463,34.34952],[45.53396,34.34789],[45.53206,34.34714],[45.52996,34.34734],[45.5282,34.34921],[45.52631,34.35017],[45.52392,34.35023],[45.52137,34.34958],[45.5196,34.34923],[45.51774,34.34896],[45.51503,34.34954],[45.51178,34.35154],[45.51051,34.35281],[45.50912,34.35335],[45.50817,34.35297],[45.5075,34.35174],[45.50679,34.35021],[45.50588,34.3486],[45.50468,34.34754],[45.50426,34.34638],[45.50434,34.3445],[45.50371,34.34239],[45.50198,34.34092],[45.50037,34.33989],[45.49987,34.33962],[45.49941,34.3389],[45.49846,34.33771],[45.49742,34.33621],[45.49631,34.33706],[45.49353,34.34178],[45.48075,34.36483],[45.46659,34.38371],[45.46634,34.38628],[45.46381,34.39872],[45.46242,34.40261],[45.45853,34.41594],[45.45797,34.42095],[45.45677,34.43085],[45.45659,34.43325],[45.45436,34.43289],[45.45436,34.43511],[45.45156,34.43665],[45.44881,34.43761],[45.4449,34.43934],[45.4477,34.4398],[45.44355,34.44126],[45.44247,34.44308],[45.44219,34.44744],[45.44274,34.44851],[45.44329,34.44976],[45.44224,34.45208],[45.44131,34.45317],[45.44033,34.45565],[45.44025,34.45805],[45.4407,34.46019],[45.44255,34.46188],[45.44397,34.46411],[45.44548,34.46511],[45.44807,34.46499],[45.44992,34.46428],[45.45298,34.46428],[45.45436,34.4665],[45.45853,34.4665],[45.46016,34.46762],[45.46135,34.46952],[45.46186,34.474],[45.46312,34.47513],[45.4647,34.4752],[45.46663,34.47592],[45.46804,34.47743],[45.46953,34.47808],[45.47119,34.47771],[45.4724,34.47662],[45.47379,34.4759],[45.47798,34.47553],[45.48104,34.47602],[45.4841,34.47609],[45.48698,34.47565],[45.48864,34.47557],[45.49073,34.47528],[45.49177,34.47499],[45.49387,34.47448],[45.49631,34.4744],[45.49805,34.47374],[45.4991,34.47367],[45.49997,34.47367],[45.50079,34.47377],[45.50215,34.47376],[45.50371,34.47334],[45.50579,34.47306],[45.50709,34.47285],[45.50795,34.47261],[45.51022,34.47341],[45.51238,34.47478],[45.51475,34.47605],[45.51712,34.47759],[45.51821,34.47887],[45.51929,34.48086],[45.51939,34.48123],[45.52109,34.48257],[45.52274,34.48529],[45.52371,34.4871],[45.52381,34.48905],[45.52364,34.49064],[45.52453,34.49274],[45.52558,34.49447],[45.52638,34.49592],[45.52647,34.49678],[45.52708,34.49792],[45.52709,34.49824],[45.52674,34.49903],[45.52584,34.49996],[45.52569,34.50163],[45.5258,34.50301],[45.52521,34.50432],[45.52532,34.50614],[45.52604,34.5078],[45.52581,34.50955],[45.52539,34.51064],[45.52497,34.51209],[45.52552,34.51405],[45.5252,34.51558],[45.52494,34.51616],[45.52557,34.51739],[45.52621,34.51942],[45.52678,34.52226],[45.52647,34.52451],[45.52632,34.52669],[45.52602,34.52953],[45.52542,34.53083],[45.52381,34.53183],[45.52345,34.53353],[45.52304,34.53506],[45.52263,34.53717],[45.52266,34.53927],[45.52173,34.54138],[45.52079,34.54248],[45.51845,34.54408],[45.51663,34.54518],[45.51489,34.54585],[45.51368,34.54636],[45.5133,34.54654],[45.51325,34.54702],[45.51362,34.54861],[45.51416,34.54948],[45.5144,34.55046],[45.51215,34.55122],[45.512,34.55167],[45.51289,34.55247],[45.51378,34.55341],[45.51537,34.55434],[45.51747,34.55492],[45.51854,34.55614],[45.51954,34.55839],[45.52183,34.55976],[45.52253,34.55991],[45.52351,34.56113],[45.52345,34.56295],[45.52304,34.5647],[45.52341,34.56644],[45.52309,34.56811],[45.52293,34.56927],[45.52339,34.57109],[45.52306,34.57218],[45.52307,34.57291],[45.52361,34.57363],[45.52397,34.57457],[45.52373,34.57559],[45.52313,34.57661],[45.52314,34.57755],[45.52386,34.57849],[45.52457,34.57922],[45.52589,34.57965],[45.52703,34.58022],[45.52748,34.58124],[45.5275,34.58226],[45.5276,34.58327],[45.5284,34.58414],[45.52938,34.58551],[45.52983,34.58638],[45.53055,34.5874],[45.53091,34.58841],[45.53155,34.58986],[45.53192,34.59168],[45.53142,34.59349],[45.5311,34.5951],[45.53112,34.59633],[45.5314,34.59771],[45.53054,34.59888],[45.52969,34.59997],[45.52953,34.60113],[45.52998,34.60164],[45.53099,34.60183],[45.53243,34.60221],[45.53437,34.60278],[45.53568,34.60306],[45.53664,34.60299],[45.53733,34.60218],[45.53819,34.60109],[45.53809,34.60015],[45.53773,34.59957],[45.53702,34.59906],[45.53614,34.59885],[45.53552,34.5982],[45.53525,34.5974],[45.53523,34.59653],[45.53504,34.59566],[45.53564,34.59485],[45.53616,34.59413],[45.53694,34.59362],[45.53781,34.59339],[45.5386,34.5939],[45.53959,34.59513],[45.54039,34.59592],[45.54136,34.59679],[45.54242,34.59737],[45.5433,34.59794],[45.54418,34.59794],[45.54522,34.5975],[45.54573,34.59684],[45.54651,34.59597],[45.54703,34.59545],[45.54807,34.59509],[45.54877,34.59487],[45.54964,34.59501],[45.55017,34.59544],[45.55166,34.59521],[45.55244,34.59478],[45.55304,34.59412],[45.55347,34.59353],[45.55381,34.59303],[45.55486,34.59266],[45.55529,34.59265],[45.5553,34.59324],[45.55557,34.59374],[45.55646,34.59425],[45.55742,34.59425],[45.55776,34.59381],[45.55801,34.59293],[45.558,34.59214],[45.55738,34.59156],[45.55667,34.59112],[45.55588,34.59113],[45.55518,34.59091],[45.55491,34.59062],[45.55482,34.59011],[45.55525,34.58982],[45.55612,34.58945],[45.55655,34.58873],[45.55741,34.58785],[45.55749,34.58727],[45.55809,34.58654],[45.5586,34.58574],[45.55894,34.58515],[45.55893,34.58457],[45.55805,34.58422],[45.55709,34.58393],[45.55603,34.58328],[45.5554,34.58248],[45.5553,34.58176],[45.55686,34.58059],[45.55878,34.58058],[45.56001,34.58086],[45.56098,34.58086],[45.56141,34.58071],[45.56166,34.58006],[45.56166,34.57955],[45.56121,34.57912],[45.5606,34.57883],[45.55946,34.57854],[45.55866,34.57811],[45.55847,34.57688],[45.55854,34.57622],[45.55889,34.57579],[45.55966,34.57513],[45.56045,34.5749],[45.56124,34.57498],[45.56185,34.57541],[45.56264,34.57555],[45.56335,34.57562],[45.56404,34.57532],[45.5649,34.57459],[45.56568,34.57386],[45.56619,34.57299],[45.56661,34.57204],[45.56703,34.57088],[45.56719,34.56964],[45.56717,34.56841],[45.56708,34.56812],[45.56672,34.56739],[45.56723,34.56652],[45.56801,34.56623],[45.56887,34.56564],[45.56948,34.56484],[45.57025,34.56418],[45.57103,34.56359],[45.57146,34.56345],[45.57217,34.56345],[45.57261,34.56395],[45.57263,34.56526],[45.57326,34.56627],[45.5744,34.56678],[45.57483,34.56641],[45.57491,34.5659],[45.5749,34.5651],[45.5748,34.5643],[45.57479,34.5635],[45.57522,34.56292],[45.57626,34.56211],[45.57685,34.56139],[45.57711,34.56059],[45.57735,34.55957],[45.57734,34.55891],[45.57803,34.5584],[45.57908,34.55818],[45.57978,34.55854],[45.58015,34.55955],[45.58069,34.56035],[45.58165,34.56078],[45.58225,34.55983],[45.58242,34.55918],[45.58267,34.55845],[45.58363,34.55823],[45.58423,34.55757],[45.58536,34.5572],[45.58659,34.55749],[45.58695,34.55828],[45.58801,34.55908],[45.58872,34.55966],[45.58951,34.55994],[45.59073,34.55943],[45.59054,34.55885],[45.59018,34.5582],[45.59,34.55732],[45.59024,34.55653],[45.5905,34.55623],[45.59111,34.55601],[45.59181,34.55593],[45.59233,34.5555],[45.59302,34.5552],[45.5945,34.5549],[45.59537,34.55468],[45.59528,34.55388],[45.59483,34.55323],[45.59464,34.55229],[45.59489,34.55141],[45.59496,34.55069],[45.5954,34.5504],[45.59661,34.55017],[45.59767,34.55046],[45.5989,34.55067],[45.59925,34.55117],[45.59944,34.55168],[45.60014,34.55197],[45.60092,34.55175],[45.60248,34.55051],[45.60378,34.55006],[45.60544,34.54954],[45.60675,34.54939],[45.60745,34.54968],[45.60799,34.55062],[45.60879,34.55164],[45.61106,34.55104],[45.61114,34.55097],[45.61254,34.55125],[45.61308,34.55197],[45.61431,34.55218],[45.61588,34.55218],[45.61657,34.55174],[45.6178,34.55151],[45.61953,34.55092],[45.62172,34.55077],[45.62208,34.55156],[45.62295,34.55105],[45.62365,34.55133],[45.62358,34.55228],[45.62342,34.55315],[45.62526,34.5538],[45.62604,34.55321],[45.62619,34.55139],[45.62617,34.55038],[45.62668,34.54929],[45.6272,34.54899],[45.62816,34.54921],[45.62861,34.55007],[45.62907,34.55109],[45.63021,34.55144],[45.63162,34.55209],[45.63252,34.55361],[45.63264,34.55579],[45.63188,34.55717],[45.63216,34.55884],[45.63305,34.55942],[45.63427,34.55912],[45.63531,34.55846],[45.63555,34.55752],[45.63597,34.55657],[45.63693,34.55635],[45.63869,34.55684],[45.63922,34.55713],[45.63914,34.55772],[45.63872,34.55844],[45.63916,34.5591],[45.64083,34.55916],[45.64125,34.55858],[45.64141,34.55756],[45.64166,34.55683],[45.64129,34.5556],[45.64058,34.5548],[45.64013,34.554],[45.64039,34.55364],[45.64143,34.55356],[45.64292,34.55334],[45.64397,34.55326],[45.64544,34.5526],[45.64605,34.55216],[45.64665,34.55165],[45.64735,34.55164],[45.6484,34.55192],[45.64876,34.5525],[45.64982,34.55294],[45.65113,34.55293],[45.65166,34.55343],[45.65107,34.5546],[45.65074,34.55591],[45.65102,34.55663],[45.65198,34.5567],[45.6524,34.55612],[45.65248,34.55539],[45.6529,34.55451],[45.65325,34.554],[45.65464,34.55363],[45.65552,34.55407],[45.65623,34.55493],[45.65782,34.55558],[45.65982,34.55535],[45.6613,34.55454],[45.66128,34.55323],[45.66196,34.55221],[45.66317,34.55112],[45.66456,34.55104],[45.66503,34.55256],[45.66574,34.55357],[45.66723,34.55371],[45.66905,34.55268],[45.67,34.55187],[45.67121,34.55143],[45.67255,34.55266],[45.67353,34.55367],[45.67434,34.55548],[45.67523,34.55621],[45.67645,34.5562],[45.67775,34.55553],[45.67915,34.55516],[45.67993,34.55523],[45.68065,34.55617],[45.68111,34.55777],[45.68183,34.55878],[45.68227,34.55929],[45.68394,34.55928],[45.68462,34.55862],[45.68461,34.55767],[45.68372,34.55666],[45.68344,34.55601],[45.68335,34.55529],[45.68404,34.55477],[45.685,34.55469],[45.68563,34.55621],[45.68591,34.5573],[45.68637,34.55817],[45.68706,34.5581],[45.68801,34.55736],[45.68888,34.55663],[45.68983,34.55619],[45.69017,34.55561],[45.69095,34.55517],[45.69226,34.55516],[45.69304,34.55464],[45.69303,34.55407],[45.6931,34.55334],[45.6938,34.5529],[45.69493,34.55282],[45.69572,34.55318],[45.69684,34.55186],[45.69805,34.55106],[45.69891,34.5504],[45.69907,34.54931],[45.69975,34.54814],[45.70043,34.54748],[45.70122,34.54719],[45.70227,34.54747],[45.70289,34.5479],[45.70393,34.54753],[45.7041,34.54688],[45.70417,34.54579],[45.70529,34.54527],[45.7066,34.54512],[45.70749,34.54577],[45.70906,34.54583],[45.70957,34.54474],[45.71,34.5443],[45.70938,34.54358],[45.70866,34.54286],[45.70918,34.5422],[45.71013,34.5419],[45.71093,34.54233],[45.71216,34.54283],[45.71276,34.54247],[45.71267,34.54182],[45.71248,34.54101],[45.71326,34.54065],[45.71404,34.54042],[45.71569,34.53969],[45.71683,34.53961],[45.71788,34.53996],[45.71787,34.53946],[45.71751,34.53881],[45.71741,34.5383],[45.71828,34.53778],[45.71915,34.53735],[45.72047,34.53784],[45.72084,34.53893],[45.72189,34.53914],[45.72241,34.53885],[45.72267,34.53863],[45.72327,34.53804],[45.72404,34.53746],[45.72527,34.53767],[45.72623,34.53773],[45.72684,34.53759],[45.72928,34.5367],[45.73014,34.53633],[45.73075,34.53611],[45.7318,34.53588],[45.7325,34.53602],[45.73234,34.53683],[45.73218,34.53777],[45.73289,34.53857],[45.73447,34.5387],[45.73542,34.53826],[45.7362,34.53782],[45.73724,34.5373],[45.73855,34.53693],[45.73967,34.53641],[45.74038,34.53677],[45.74116,34.5367],[45.74194,34.53626],[45.74257,34.53691],[45.74258,34.53763],[45.74338,34.53813],[45.74338,34.5385],[45.7433,34.53904],[45.74279,34.53981],[45.74167,34.54076],[45.74073,34.542],[45.74067,34.54331],[45.74139,34.54476],[45.74237,34.54584],[45.74269,34.54889],[45.7424,34.55071],[45.74196,34.55216],[45.74066,34.55326],[45.7391,34.55378],[45.73632,34.554],[45.73624,34.55532],[45.73609,34.55634],[45.73541,34.5578],[45.73482,34.55918],[45.73468,34.56078],[45.7347,34.56209],[45.73542,34.56346],[45.73576,34.56428],[45.73791,34.56555],[45.73854,34.56686],[45.73918,34.56831],[45.74009,34.57026],[45.74048,34.57259],[45.73989,34.57383],[45.73903,34.57485],[45.73819,34.57667],[45.7383,34.57819],[45.73946,34.57935],[45.7401,34.58094],[45.73917,34.58298],[45.73928,34.58436],[45.73907,34.58683],[45.73831,34.58851],[45.73745,34.58924],[45.7366,34.58956],[45.73554,34.59063],[45.73266,34.59079],[45.73179,34.59109],[45.73049,34.59178],[45.7306,34.59313],[45.73001,34.59459],[45.7288,34.59554],[45.72849,34.59743],[45.72852,34.59917],[45.72819,34.60055],[45.72682,34.60187],[45.72605,34.60333],[45.72504,34.60522],[45.72366,34.60668],[45.72324,34.60771],[45.72243,34.60817],[45.72266,34.60916],[45.72355,34.61039],[45.72399,34.61082],[45.72507,34.61249],[45.72571,34.61372],[45.72572,34.61452],[45.72688,34.61597],[45.72927,34.61711],[45.72965,34.61733],[45.73,34.61878],[45.72959,34.6206],[45.72892,34.62205],[45.72866,34.62278],[45.72782,34.62468],[45.72699,34.62715],[45.72624,34.62919],[45.72566,34.63137],[45.72507,34.63254],[45.7251,34.63435],[45.72486,34.63588],[45.72349,34.63771],[45.72203,34.6388],[45.72029,34.63954],[45.7197,34.64078],[45.7192,34.6426],[45.71802,34.64493],[45.71699,34.64624],[45.71582,34.6493],[45.71455,34.65222],[45.71371,34.65411],[45.7134,34.65607],[45.71255,34.65768],[45.71146,34.66059],[45.71071,34.66277],[45.71056,34.66415],[45.71009,34.66757],[45.71037,34.66873],[45.71049,34.66928],[45.71004,34.67011],[45.70856,34.67034],[45.70715,34.66991],[45.70425,34.66913],[45.70214,34.66893],[45.70006,34.66967],[45.69804,34.66975],[45.69717,34.66968],[45.69604,34.66928],[45.69598,34.67209],[45.69592,34.67361],[45.69596,34.67579],[45.69662,34.67855],[45.69691,34.68029],[45.69686,34.68283],[45.6976,34.68501],[45.69842,34.68682],[45.69977,34.68884],[45.7012,34.69043],[45.70227,34.69188],[45.70299,34.69206],[45.70291,34.69318],[45.70243,34.69344],[45.70223,34.69457],[45.7005,34.69574],[45.69842,34.69699],[45.69642,34.69773],[45.69416,34.69912],[45.69262,34.70116],[45.69195,34.7032],[45.69162,34.70415],[45.69104,34.70483],[45.69025,34.70626],[45.68634,34.70781],[45.68399,34.70884],[45.68287,34.70979],[45.68156,34.70994],[45.67972,34.71025],[45.67824,34.71083],[45.67702,34.71091],[45.67587,34.71041],[45.67455,34.71006],[45.6729,34.71094],[45.67118,34.71247],[45.66882,34.71373],[45.66754,34.71518],[45.66677,34.71642],[45.66546,34.71672],[45.6631,34.71674],[45.66241,34.71725],[45.66164,34.71834],[45.66059,34.71893],[45.6592,34.71915],[45.6578,34.71967],[45.65702,34.72011],[45.65694,34.72069],[45.65599,34.72135],[45.65547,34.72193],[45.65435,34.72296],[45.65357,34.72311],[45.65252,34.72326],[45.65315,34.7242],[45.65431,34.7255],[45.65546,34.72644],[45.65697,34.72795],[45.65821,34.72824],[45.66104,34.72844],[45.66225,34.72923],[45.66332,34.73032],[45.66439,34.73125],[45.66493,34.73198],[45.66664,34.73516],[45.66871,34.73806],[45.67057,34.7395],[45.67138,34.74073],[45.67193,34.74196],[45.67203,34.74269],[45.67287,34.74573],[45.67377,34.74733],[45.6752,34.74928],[45.67554,34.75071],[45.67626,34.75207],[45.67697,34.75323],[45.67715,34.75372],[45.67647,34.7554],[45.6764,34.75771],[45.67756,34.75987],[45.67916,34.76167],[45.68067,34.76369],[45.68215,34.76456],[45.68358,34.76599],[45.68499,34.76671],[45.68684,34.7675],[45.68764,34.76793],[45.68914,34.76937],[45.69143,34.77022],[45.69467,34.77065],[45.69748,34.77093],[45.69937,34.7715],[45.69952,34.77309],[45.69893,34.7749],[45.69815,34.77663],[45.6973,34.77837],[45.69626,34.77953],[45.69513,34.78097],[45.69409,34.78213],[45.69358,34.78321],[45.6941,34.78373],[45.69622,34.78436],[45.69789,34.78522],[45.69984,34.78673],[45.70178,34.78796],[45.70328,34.78918],[45.7041,34.79039],[45.70304,34.79171],[45.70078,34.7933],[45.70036,34.79475],[45.69846,34.79807],[45.69699,34.79938],[45.69532,34.79981],[45.69402,34.80112],[45.69272,34.80271],[45.69212,34.8043],[45.69205,34.8056],[45.69189,34.80755],[45.69104,34.80993],[45.68992,34.81152],[45.68826,34.81317],[45.68846,34.81449],[45.68935,34.816],[45.69076,34.81694],[45.69279,34.81852],[45.69475,34.82125],[45.69626,34.8227],[45.69715,34.82363],[45.6991,34.82429],[45.70326,34.8254],[45.7116,34.82873],[45.71299,34.82957],[45.71354,34.83039],[45.71465,34.83095],[45.72269,34.83945],[45.72397,34.839],[45.7259,34.83899],[45.72714,34.84],[45.72925,34.84028],[45.73117,34.83934],[45.73372,34.83969],[45.73488,34.84127],[45.73623,34.8451],[45.73799,34.8479],[45.73819,34.84697],[45.73719,34.84459],[45.73664,34.84221],[45.736,34.83961],[45.73604,34.83789],[45.73596,34.83586],[45.73638,34.83383],[45.73768,34.83253],[45.74014,34.83303],[45.74305,34.83388],[45.74479,34.8333],[45.74566,34.83229],[45.74652,34.8307],[45.74715,34.829],[45.74852,34.8291],[45.75019,34.82974],[45.75353,34.83041],[45.75576,34.83039],[45.75937,34.83311],[45.76194,34.83461],[45.76503,34.83545],[45.76723,34.83586],[45.76884,34.83701],[45.77033,34.83735],[45.77243,34.83691],[45.7741,34.83704],[45.77482,34.83812],[45.77483,34.83819],[45.77726,34.84156],[45.77952,34.84508],[45.78247,34.8478],[45.78595,34.85045],[45.79057,34.85359],[45.79369,34.85602],[45.79576,34.85707],[45.7965,34.86062],[45.79694,34.86531],[45.79679,34.87066],[45.7974,34.87477],[45.79677,34.8786],[45.79643,34.88359],[45.79477,34.88845],[45.79344,34.89243],[45.79214,34.89765],[45.79132,34.90011],[45.79031,34.90236],[45.7891,34.90352],[45.78747,34.90563],[45.7866,34.90706],[45.787,34.90831],[45.78842,34.90938],[45.79038,34.91052],[45.79172,34.91159],[45.79299,34.91151],[45.79543,34.91265],[45.79999,34.91282],[45.80332,34.91229],[45.80621,34.91154],[45.81077,34.91128],[45.81333,34.91206],[45.81492,34.91241],[45.8171,34.91174],[45.81771,34.91123],[45.81938,34.9115],[45.82183,34.91148],[45.82356,34.91002],[45.82503,34.90892],[45.82658,34.9071],[45.82716,34.90551],[45.82743,34.90345],[45.82826,34.9034],[45.82933,34.90455],[45.83126,34.90439],[45.83343,34.90329],[45.83465,34.90234],[45.83462,34.90089],[45.83451,34.90024],[45.83537,34.89915],[45.83632,34.89845],[45.83826,34.89898],[45.83924,34.89948],[45.84167,34.89823],[45.84248,34.89894],[45.84354,34.89944],[45.84442,34.89943],[45.84571,34.89819],[45.84684,34.89746],[45.84833,34.8973],[45.84928,34.8965],[45.84995,34.8949],[45.85076,34.89401],[45.85195,34.89445],[45.85224,34.89575],[45.85401,34.89624],[45.8563,34.89651],[45.85823,34.89628],[45.86129,34.89574],[45.86322,34.89565],[45.86549,34.89595],[45.86536,34.89715],[45.86494,34.89817],[45.865,34.90105],[45.86576,34.90207],[45.86522,34.90322],[45.86533,34.90423],[45.86597,34.90546],[45.86764,34.90551],[45.86907,34.90673],[45.86901,34.90795],[45.8691,34.90957],[45.86822,34.91266],[45.86803,34.91591],[45.86772,34.91808],[45.86767,34.91989],[45.86884,34.92125],[45.86885,34.92154],[45.86916,34.92377],[45.86875,34.92522],[45.86807,34.92631],[45.86809,34.92733],[45.86952,34.92861],[45.87112,34.92925],[45.87262,34.92996],[45.87309,34.93111],[45.87302,34.93219],[45.87234,34.93328],[45.87186,34.93516],[45.87271,34.93595],[45.87337,34.93631],[45.87459,34.93601],[45.87565,34.93593],[45.87646,34.93686],[45.87778,34.93721],[45.87859,34.93778],[45.8786,34.93879],[45.87854,34.93987],[45.87917,34.94073],[45.88015,34.9413],[45.88149,34.9423],[45.88178,34.94353],[45.8818,34.94432],[45.88199,34.94519],[45.88262,34.94576],[45.88359,34.94582],[45.88436,34.94538],[45.88533,34.94516],[45.88735,34.94521],[45.88851,34.94599],[45.88976,34.94707],[45.8902,34.94699],[45.89125,34.94677],[45.89196,34.94705],[45.8918,34.94798],[45.89155,34.94871],[45.89227,34.94936],[45.89359,34.94971],[45.89422,34.95021],[45.89423,34.95085],[45.89372,34.95173],[45.8941,34.95309],[45.89359,34.95375],[45.89299,34.95426],[45.89326,34.95491],[45.89407,34.95541],[45.89522,34.95626],[45.8956,34.95742],[45.89614,34.95821],[45.8973,34.9587],[45.89775,34.9592],[45.89771,34.95957],[45.89735,34.96116],[45.89642,34.96268],[45.89625,34.96348],[45.89503,34.96385],[45.89496,34.9645],[45.89454,34.96537],[45.89402,34.96559],[45.89359,34.96632],[45.8936,34.96697],[45.8931,34.9682],[45.89215,34.96879],[45.89102,34.96938],[45.89051,34.97032],[45.89046,34.9722],[45.89066,34.97321],[45.89147,34.97414],[45.89175,34.97501],[45.89116,34.97602],[45.89031,34.97726],[45.88998,34.97856],[45.8902,34.98037],[45.88926,34.98182],[45.88743,34.98234],[45.88754,34.98343],[45.88818,34.98465],[45.88865,34.98616],[45.88876,34.98739],[45.88993,34.98845],[45.88804,34.99072],[45.88806,34.99181],[45.88721,34.9929],[45.88643,34.99355],[45.88645,34.99478],[45.88559,34.99544],[45.88553,34.99659],[45.88556,34.99818],[45.88593,34.99948],[45.88446,35.00058],[45.88116,35.00213],[45.88108,35.00278],[45.88029,35.00307],[45.87959,35.00315],[45.87822,35.00461],[45.87789,35.00653],[45.87686,35.00722],[45.87459,35.00775],[45.87393,35.00963],[45.87423,35.01144],[45.87529,35.01186],[45.8768,35.01271],[45.87823,35.01342],[45.87939,35.01421],[45.87966,35.01507],[45.8795,35.01551],[45.87838,35.0166],[45.87753,35.01791],[45.87702,35.01907],[45.87768,35.02073],[45.87779,35.02203],[45.87764,35.0234],[45.87663,35.0255],[45.8764,35.02724],[45.8767,35.02875],[45.87673,35.03006],[45.87571,35.03173],[45.8752,35.0326],[45.87469,35.03376],[45.87594,35.0344],[45.87717,35.03446],[45.87781,35.03568],[45.87872,35.03719],[45.8802,35.03725],[45.8984,35.04631],[45.90023,35.04783],[45.90226,35.04824],[45.90411,35.0483],[45.90657,35.04784],[45.90858,35.04732],[45.90971,35.04672],[45.91084,35.04628],[45.91146,35.0462],[45.9126,35.04626],[45.91445,35.04639],[45.9178,35.04658],[45.9192,35.04635],[45.92157,35.04618],[45.92343,35.04681],[45.92475,35.04695],[45.92615,35.04671],[45.92729,35.04642],[45.92799,35.04612],[45.93011,35.0457],[45.93046,35.04646],[45.93051,35.04863],[45.93019,35.05007],[45.92907,35.05146],[45.9277,35.05299],[45.92631,35.05379],[45.92263,35.05455],[45.92141,35.05492],[45.92063,35.0558],[45.92048,35.05703],[45.92051,35.0584],[45.92089,35.05962],[45.92153,35.06049],[45.92227,35.06221],[45.92221,35.0638],[45.92225,35.06554],[45.92213,35.06843],[45.9221,35.07074],[45.92185,35.07139],[45.92146,35.07371],[45.92133,35.07616],[45.92173,35.07811],[45.92237,35.07941],[45.92233,35.0815],[45.92208,35.08215],[45.92198,35.08569],[45.92192,35.09097],[45.92205,35.09265],[45.92182,35.09465],[45.92159,35.09625],[45.92187,35.09704],[45.92388,35.09623],[45.92482,35.0952],[45.92576,35.09368],[45.92847,35.08888],[45.93035,35.08634],[45.93189,35.0843],[45.93414,35.08255],[45.93598,35.08238],[45.93698,35.08346],[45.9378,35.08489],[45.93908,35.08697],[45.94053,35.08891],[45.94196,35.08998],[45.94384,35.09127],[45.94587,35.09168],[45.94701,35.09131],[45.9491,35.09049],[45.95093,35.08982],[45.95232,35.08865],[45.95334,35.08734],[45.95402,35.08632],[45.95566,35.08465],[45.95686,35.08312],[45.95851,35.08224],[45.95991,35.08179],[45.9621,35.08126],[45.96376,35.0811],[45.96551,35.08036],[45.9669,35.07984],[45.96733,35.07912],[45.96783,35.0781],[45.96779,35.076],[45.96846,35.07434],[45.97029,35.07366],[45.97214,35.07365],[45.97459,35.07305],[45.97591,35.07303],[45.97775,35.07287],[45.97941,35.07242],[45.98037,35.07219],[45.98177,35.07175],[45.98237,35.07102],[45.98297,35.07007],[45.98374,35.06949],[45.9847,35.06904],[45.98734,35.06902],[45.98847,35.06821],[45.98924,35.06748],[45.99002,35.06661],[45.99053,35.06595],[45.99148,35.065],[45.99269,35.06441],[45.99548,35.06316],[45.99705,35.06278],[45.99881,35.06269],[45.99978,35.06268],[46.00121,35.06355],[46.0015,35.06478],[46.00162,35.06674],[46.00236,35.06876],[46.00318,35.07042],[46.00444,35.07194],[46.00559,35.07236],[46.00744,35.07257],[46.00911,35.07263],[46.01202,35.07268],[46.01465,35.07208],[46.0163,35.07083],[46.01707,35.06982],[46.01705,35.06851],[46.01737,35.06669],[46.01841,35.0656],[46.0205,35.06457],[46.02328,35.06296],[46.02571,35.06127],[46.02675,35.0601],[46.02743,35.05851],[46.02776,35.05727],[46.02722,35.05691],[46.02607,35.05627],[46.02587,35.05532],[46.02771,35.05451],[46.03006,35.05326],[46.0325,35.05238],[46.03461,35.05214],[46.03635,35.05126],[46.03907,35.05081],[46.04049,35.05152],[46.04103,35.0521],[46.04184,35.05289],[46.04307,35.05302],[46.04455,35.05243],[46.0455,35.05134],[46.04663,35.05039],[46.04812,35.04994],[46.04945,35.05087],[46.05001,35.05232],[46.05108,35.05304],[46.05239,35.05302],[46.05317,35.0523],[46.05315,35.05106],[46.05252,35.05005],[46.05206,35.04904],[46.05204,35.04817],[46.05273,35.04758],[46.05291,35.04737],[46.05455,35.04598],[46.05559,35.04525],[46.05618,35.04372],[46.05641,35.04205],[46.05648,35.04053],[46.05637,35.03937],[46.05724,35.03871],[46.05828,35.03819],[46.06031,35.03825],[46.06226,35.03925],[46.0635,35.03982],[46.0635,35.03996],[46.06528,35.04133],[46.06618,35.04212],[46.0677,35.04341],[46.06782,35.04529],[46.06821,35.04696],[46.06823,35.04841],[46.06852,35.04978],[46.0695,35.05043],[46.07215,35.05113],[46.07366,35.0517],[46.0764,35.05277],[46.07801,35.05428],[46.07989,35.056],[46.07993,35.05781],[46.07969,35.05934],[46.07839,35.06036],[46.07681,35.06045],[46.076,35.05958],[46.07475,35.05858],[46.07333,35.05772],[46.07165,35.05723],[46.06955,35.05768],[46.0687,35.05935],[46.06837,35.0608],[46.06813,35.06233],[46.06816,35.06378],[46.06828,35.0653],[46.069,35.06631],[46.0699,35.06717],[46.07088,35.06803],[46.07222,35.06911],[46.07241,35.06961],[46.07244,35.07179],[46.07092,35.07484],[46.06989,35.07652],[46.06983,35.07761],[46.07028,35.07833],[46.07188,35.07933],[46.07217,35.08049],[46.07183,35.08107],[46.07131,35.08173],[46.07106,35.0826],[46.07125,35.08318],[46.0717,35.08375],[46.07294,35.08447],[46.0741,35.08489],[46.07656,35.08488],[46.07771,35.0853],[46.07869,35.08573],[46.07994,35.08681],[46.08118,35.08745],[46.08472,35.08815],[46.08622,35.08836],[46.08815,35.08841],[46.09027,35.0889],[46.09204,35.08925],[46.09336,35.08931],[46.09536,35.08813],[46.09579,35.08726],[46.09647,35.08595],[46.09654,35.08508],[46.09704,35.08385],[46.09737,35.08239],[46.09761,35.08138],[46.09821,35.08043],[46.09943,35.07977],[46.10065,35.07918],[46.10284,35.07858],[46.10337,35.07858],[46.10442,35.0782],[46.10661,35.07812],[46.10741,35.07811],[46.10934,35.07795],[46.11048,35.07794],[46.11164,35.07851],[46.1126,35.07814],[46.11328,35.07733],[46.11424,35.07661],[46.11555,35.07587],[46.11616,35.07564],[46.11713,35.07614],[46.11811,35.07686],[46.11892,35.07766],[46.1199,35.07823],[46.12131,35.07858],[46.12148,35.07807],[46.12254,35.07842],[46.12406,35.07943],[46.12549,35.08064],[46.128,35.08287],[46.12951,35.08358],[46.13206,35.08392],[46.13295,35.08406],[46.13462,35.08412],[46.13577,35.08425],[46.13745,35.08497],[46.14039,35.08675],[46.14146,35.08754],[46.14296,35.08782],[46.14411,35.08781],[46.14534,35.08795],[46.14711,35.08829],[46.14887,35.08828],[46.15123,35.08775],[46.1529,35.08752],[46.15501,35.0875],[46.15677,35.08756],[46.15863,35.08812],[46.1597,35.08855],[46.16131,35.08998],[46.16204,35.09114],[46.16312,35.09243],[46.16386,35.09424],[46.1645,35.09554],[46.16601,35.0964],[46.16682,35.09755],[46.16765,35.09921],[46.16872,35.1],[46.17067,35.10071],[46.17211,35.10221],[46.17398,35.10358],[46.17603,35.1045],[46.17843,35.10564],[46.1786,35.10557],[46.17987,35.10715],[46.18227,35.10843],[46.18748,35.10969],[46.18961,35.11025],[46.19095,35.11111],[46.19133,35.11262],[46.1844,35.11533],[46.18227,35.11626],[46.17892,35.11738],[46.17745,35.11833],[46.17622,35.11863],[46.17226,35.11867],[46.17022,35.11818],[46.16833,35.12059],[46.16669,35.12176],[46.16486,35.12301],[46.16225,35.12419],[46.16067,35.12493],[46.15878,35.12712],[46.15696,35.12851],[46.15557,35.12947],[46.1549,35.13025],[46.15456,35.13179],[46.15476,35.13295],[46.15586,35.13512],[46.15685,35.13641],[46.15802,35.13778],[46.16077,35.13957],[46.16107,35.14087],[46.16013,35.14175],[46.15891,35.1427],[46.15896,35.14524],[46.1593,35.14893],[46.16002,35.15008],[46.15917,35.15132],[46.15769,35.15228],[46.1562,35.15294],[46.15563,35.15491],[46.15512,35.15607],[46.15466,35.15679],[46.1551,35.15933],[46.15565,35.16085],[46.15605,35.16317],[46.15599,35.1644],[46.15636,35.16548],[46.15761,35.16612],[46.15916,35.16672],[46.16035,35.16782],[46.16137,35.16943],[46.1623,35.17003],[46.16387,35.17107],[46.16467,35.17157],[46.16566,35.17244],[46.16673,35.17329],[46.16799,35.17444],[46.16951,35.17588],[46.17104,35.17724],[46.1721,35.17767],[46.17556,35.17887],[46.17681,35.17966],[46.17956,35.1805],[46.1805,35.18068],[46.18125,35.18136],[46.1827,35.18309],[46.18456,35.18394],[46.18749,35.18478],[46.19014,35.18498],[46.19188,35.18486],[46.19341,35.1847],[46.19421,35.18458],[46.19466,35.18429],[46.19525,35.18537],[46.19562,35.18638],[46.19511,35.18711],[46.1954,35.18848],[46.1963,35.18927],[46.1973,35.19064],[46.19749,35.19173],[46.19726,35.19311],[46.19657,35.19405],[46.19555,35.19566],[46.19567,35.19718],[46.19612,35.19797],[46.19683,35.1984],[46.19897,35.19954],[46.20022,35.20011],[46.2008,35.20069],[46.20073,35.20091],[46.20084,35.20118],[46.20127,35.2013],[46.1936,35.20349],[46.19352,35.20416],[46.19389,35.20524],[46.19463,35.20726],[46.19467,35.20915],[46.19418,35.21096],[46.19326,35.21329],[46.19197,35.21504],[46.19077,35.21623],[46.18933,35.21978],[46.18708,35.22176],[46.18545,35.22369],[46.18458,35.22438],[46.18255,35.22614],[46.18127,35.22706],[46.17969,35.22809],[46.17817,35.22866],[46.17743,35.22872],[46.17688,35.22873],[46.17564,35.22833],[46.17501,35.22777],[46.17425,35.22702],[46.1737,35.22678],[46.17302,35.22668],[46.17209,35.22628],[46.17189,35.22543],[46.17076,35.22457],[46.16977,35.22413],[46.16897,35.22413],[46.16799,35.22444],[46.16722,35.22461],[46.16578,35.22467],[46.16485,35.22457],[46.16436,35.22427],[46.16367,35.22393],[46.16305,35.22352],[46.16248,35.22303],[46.16188,35.22234],[46.16069,35.22248],[46.15947,35.22325],[46.15814,35.22437],[46.15643,35.22505],[46.15502,35.22526],[46.15368,35.22593],[46.1521,35.22662],[46.14879,35.2279],[46.14701,35.22832],[46.14603,35.22853],[46.14438,35.22845],[46.13998,35.22897],[46.13707,35.22899],[46.1346,35.22894],[46.13265,35.22838],[46.1305,35.2279],[46.1285,35.22903],[46.12594,35.23037],[46.12429,35.23119],[46.12355,35.23151],[46.12365,35.2323],[46.12514,35.23356],[46.12744,35.23512],[46.12605,35.23623],[46.1237,35.23526],[46.11911,35.23262],[46.11707,35.23409],[46.11477,35.23532],[46.11343,35.23598],[46.11251,35.23918],[46.11141,35.2399],[46.10982,35.24037],[46.10883,35.2404],[46.10978,35.24158],[46.11178,35.24334],[46.11356,35.24397],[46.11506,35.24432],[46.11647,35.24453],[46.1186,35.24494],[46.12126,35.24609],[46.12287,35.24708],[46.12327,35.24818],[46.12336,35.24876],[46.12326,35.24882],[46.1238,35.24998],[46.12424,35.25114],[46.12459,35.25229],[46.12503,35.25344],[46.12562,35.25425],[46.12688,35.25486],[46.12814,35.2558],[46.12891,35.25674],[46.1296,35.25789],[46.13036,35.25857],[46.13172,35.26033],[46.13289,35.26093],[46.13431,35.26146],[46.13532,35.2622],[46.13576,35.26329],[46.13702,35.26423],[46.13845,35.26496],[46.13962,35.26563],[46.14038,35.26604],[46.14105,35.26623],[46.14156,35.26725],[46.14241,35.26833],[46.14318,35.26955],[46.14428,35.27036],[46.14513,35.2713],[46.14598,35.27232],[46.14691,35.2732],[46.14776,35.27414],[46.14778,35.27557],[46.14806,35.27706],[46.1485,35.27822],[46.14855,35.27984],[46.14971,35.28038],[46.15071,35.28078],[46.15204,35.28084],[46.15396,35.2815],[46.15563,35.28197],[46.15832,35.28371],[46.15883,35.28429],[46.15802,35.28528],[46.15662,35.2859],[46.15548,35.28686],[46.155,35.28789],[46.1537,35.28939],[46.15239,35.29036],[46.15182,35.29104],[46.15085,35.29214],[46.15054,35.2933],[46.15073,35.29479],[46.15059,35.29602],[46.15094,35.29683],[46.15145,35.29771],[46.1514,35.29927],[46.15076,35.3005],[46.14979,35.30187],[46.14908,35.30371],[46.14853,35.30542],[46.14806,35.30658],[46.14733,35.30787],[46.14679,35.30965],[46.14632,35.31129],[46.14543,35.31251],[46.14445,35.31334],[46.14283,35.31539],[46.14185,35.31594],[46.1403,35.31766],[46.13849,35.31855],[46.13776,35.31924],[46.13644,35.3202],[46.1353,35.32096],[46.13391,35.32213],[46.13301,35.32281],[46.13227,35.32356],[46.13081,35.32501],[46.12967,35.32638],[46.12844,35.32754],[46.12737,35.32768],[46.12661,35.3279],[46.12632,35.32906],[46.12633,35.33],[46.1266,35.33095],[46.12721,35.33231],[46.12747,35.33299],[46.12772,35.33401],[46.12751,35.33496],[46.12611,35.33572],[46.12471,35.33662],[46.12159,35.33827],[46.1201,35.33855],[46.11868,35.33843],[46.11694,35.33837],[46.11561,35.33852],[46.11438,35.33908],[46.11298,35.3399],[46.11109,35.34128],[46.10896,35.34293],[46.10633,35.34451],[46.10503,35.34561],[46.10297,35.34657],[46.10082,35.34713],[46.09908,35.34756],[46.09777,35.34852],[46.09663,35.34961],[46.09555,35.3501],[46.09423,35.35065],[46.0935,35.35134],[46.0928,35.35379],[46.09324,35.35501],[46.09343,35.35637],[46.09381,35.35875],[46.09316,35.35964],[46.09192,35.36026],[46.09027,35.36074],[46.08952,35.36082],[46.08919,35.36096],[46.08606,35.36207],[46.08439,35.36201],[46.08298,35.36216],[46.08175,35.36292],[46.08051,35.36333],[46.07928,35.36409],[46.07788,35.36478],[46.07672,35.36499],[46.07572,35.36507],[46.07465,35.36521],[46.07308,35.36597],[46.0726,35.36686],[46.0717,35.36755],[46.07088,35.36844],[46.06998,35.36912],[46.06875,35.37022],[46.06862,35.37122],[46.06808,35.37204],[46.06741,35.3728],[46.06615,35.37357],[46.06486,35.37521],[46.06438,35.37679],[46.06452,35.37816],[46.06387,35.37995],[46.06223,35.38169],[46.06035,35.3832],[46.05822,35.38478],[46.05658,35.38615],[46.05493,35.38705],[46.05353,35.38787],[46.05206,35.38911],[46.05133,35.39],[46.05087,35.39225],[46.04974,35.39409],[46.04869,35.39573],[46.0479,35.39791],[46.0475,35.39894],[46.04563,35.40153],[46.04213,35.40523],[46.04073,35.40632],[46.03942,35.40742],[46.03871,35.40954],[46.03857,35.41097],[46.03685,35.41247],[46.03563,35.41391],[46.035,35.41535],[46.03418,35.4163],[46.03279,35.41754],[46.03222,35.41849],[46.03158,35.41972],[46.03011,35.42116],[46.02911,35.42208],[46.02905,35.42357],[46.02922,35.42708],[46.02859,35.42926],[46.02771,35.43138],[46.02724,35.43294],[46.02578,35.43458],[46.02467,35.43605],[46.02392,35.43773],[46.02212,35.43944],[46.02048,35.44068],[46.01734,35.44179],[46.01578,35.44309],[46.01488,35.44418],[46.0139,35.44487],[46.01342,35.44603],[46.01203,35.44781],[46.01107,35.44978],[46.01002,35.45156],[46.00965,35.45381],[46.00909,35.45531],[46.00754,35.45695],[46.0059,35.45805],[46.00518,35.45982],[46.00488,35.46159],[46.00482,35.46282],[46.00439,35.46395],[46.00399,35.46574],[46.00307,35.46779],[46.00209,35.46882],[46.00077,35.46998],[45.99985,35.47085],[45.99873,35.47204],[45.9981,35.47322],[45.99715,35.4743],[45.9963,35.47592],[45.99529,35.47802],[45.99468,35.47959],[45.99367,35.48169],[45.99265,35.48314],[45.99163,35.48465],[45.99078,35.48682],[45.9897,35.48918],[45.98867,35.49037],[45.98814,35.49214],[45.98777,35.49384],[45.98653,35.49545],[45.9863,35.49599],[45.98671,35.49778],[45.98721,35.49908],[45.99327,35.51958],[45.99758,35.51787],[45.9995,35.51726],[46.0011,35.51698],[46.00391,35.51669],[46.00521,35.51714],[46.00605,35.51763],[46.00875,35.51763],[46.01207,35.51825],[46.01473,35.51882],[46.01706,35.51892],[46.01911,35.51874],[46.01648,35.52215],[46.01435,35.52375],[46.01197,35.52568],[46.01015,35.52694],[46.00936,35.528],[46.00801,35.52874],[46.00586,35.52974],[46.00411,35.53061],[46.00238,35.5324],[46.00111,35.5336],[45.99992,35.53427],[45.99895,35.53421],[45.99715,35.5343],[45.99715,35.54263],[45.9973,35.54401],[45.99856,35.54656],[45.9991,35.54791],[45.99819,35.54808],[45.99714,35.54802],[45.99594,35.54842],[45.99467,35.54949],[45.9935,35.55094],[45.99255,35.55207],[45.99137,35.55307],[45.98956,35.55525],[45.98822,35.55664],[45.98754,35.55888],[45.98652,35.56014],[45.98468,35.56075],[45.98326,35.56096],[45.98214,35.56222],[45.98152,35.56367],[45.98035,35.56526],[45.97998,35.56703],[45.97938,35.56914],[45.97744,35.57277],[45.97684,35.57514],[45.97654,35.57626],[45.97479,35.57739],[45.97345,35.57879],[45.97291,35.57978],[45.97294,35.58149],[45.97362,35.58351],[45.97354,35.58485],[45.97463,35.58554],[45.97656,35.58552],[45.97816,35.58472],[45.97927,35.58425],[45.98128,35.5839],[45.98273,35.58382],[45.98417,35.58354],[45.98545,35.58314],[45.986,35.58248],[45.98704,35.58207],[45.98888,35.58192],[45.98985,35.58191],[45.99057,35.58158],[45.99127,35.58072],[45.99222,35.58005],[45.99271,35.57958],[45.99364,35.57859],[45.99443,35.57773],[45.99546,35.577],[45.99755,35.57665],[45.99884,35.57671],[45.99981,35.57702],[46.00143,35.57766],[46.00313,35.57804],[46.0044,35.5773],[46.00542,35.57579],[46.00644,35.57479],[46.00918,35.57483],[46.0115,35.57441],[46.013,35.57319],[46.01463,35.57386],[46.01738,35.57436],[46.02085,35.57484],[46.02574,35.57414],[46.02728,35.57485],[46.02948,35.57574],[46.02994,35.57652],[46.02928,35.57831],[46.02858,35.5791],[46.02861,35.58048],[46.0284,35.58213],[46.0273,35.58338],[46.02594,35.58406],[46.02436,35.58525],[46.02383,35.58677],[46.02322,35.58888],[46.0218,35.5902],[46.02045,35.59127],[46.01798,35.59241],[46.01599,35.59322],[46.01399,35.59382],[46.013,35.59402],[46.01378,35.59534],[46.01405,35.59685],[46.01391,35.59803],[46.01316,35.6004],[46.01366,35.60158],[46.01384,35.60263],[46.01509,35.60452],[46.01601,35.60648],[46.01708,35.60759],[46.01784,35.60909],[46.01804,35.61126],[46.01736,35.61317],[46.01674,35.61436],[46.01644,35.61581],[46.01609,35.61811],[46.01515,35.61949],[46.01381,35.62102],[46.01287,35.62228],[46.01282,35.62353],[46.01316,35.6247],[46.01321,35.62694],[46.01292,35.62865],[46.01165,35.62977],[46.01103,35.6307],[46.01072,35.63149],[46.00994,35.63235],[46.00922,35.63295],[46.00802,35.63323],[46.00633,35.63324],[46.00473,35.63365],[46.00329,35.63426],[46.00184,35.63434],[46.00111,35.63415],[45.9999,35.63396],[45.99668,35.63386],[45.99395,35.63448],[45.99327,35.63541],[45.99361,35.63744],[45.99437,35.63933],[45.99493,35.64041],[45.99747,35.64108],[45.999,35.64152],[46.00022,35.64178],[46.00097,35.64302],[46.0014,35.64426],[46.00173,35.64505],[46.00318,35.6451],[46.00561,35.64579],[46.00652,35.64664],[46.00735,35.64814],[46.00865,35.64885],[46.01012,35.64956],[46.01133,35.64985],[46.01144,35.65112],[46.01115,35.6527],[46.01076,35.65402],[46.01216,35.65458],[46.01267,35.65636],[46.01312,35.65873],[46.01331,35.6601],[46.01358,35.66135],[46.01424,35.66233],[46.01483,35.66363],[46.01486,35.66482],[46.01473,35.66639],[46.01411,35.66771],[46.0135,35.66923],[46.01295,35.67009],[46.0116,35.67128],[46.01082,35.67247],[46.00915,35.67354],[46.00796,35.67421],[46.00781,35.675],[46.00771,35.67596],[46.00883,35.67735],[46.01013,35.67819],[46.0112,35.6793],[46.01292,35.68079],[46.01358,35.68131],[46.01401,35.68242],[46.01434,35.68321],[46.01548,35.68372],[46.01621,35.68391],[46.01742,35.68403],[46.018,35.68481],[46.01881,35.685],[46.01969,35.68473],[46.02113,35.68419],[46.0229,35.68418],[46.02396,35.68456],[46.02438,35.68513],[46.02576,35.68586],[46.0261,35.68683],[46.0262,35.68782],[46.02622,35.6888],[46.02584,35.69006],[46.02586,35.69084],[46.02605,35.69124],[46.02685,35.69195],[46.02879,35.69232],[46.03072,35.69224],[46.03162,35.69282],[46.03237,35.69406],[46.03216,35.69551],[46.03162,35.69677],[46.03156,35.69755],[46.03125,35.69854],[46.03103,35.69959],[46.03202,35.70057],[46.03358,35.70167],[46.03416,35.70278],[46.03467,35.70396],[46.03582,35.70519],[46.03735,35.70511],[46.03879,35.70438],[46.04072,35.70436],[46.04171,35.7052],[46.04221,35.70618],[46.04272,35.70652],[46.04407,35.70655],[46.04549,35.70496],[46.04628,35.70391],[46.04696,35.70193],[46.04772,35.70124],[46.0503,35.69992],[46.05239,35.69951],[46.05585,35.69947],[46.05836,35.70004],[46.06014,35.70042],[46.06161,35.70096],[46.06255,35.69993],[46.06323,35.69789],[46.06432,35.69597],[46.06542,35.69465],[46.06661,35.69365],[46.06787,35.69239],[46.06938,35.69152],[46.07028,35.69177],[46.07134,35.69249],[46.0732,35.69286],[46.07554,35.69316],[46.0795,35.69352],[46.08192,35.69369],[46.0833,35.694],[46.08427,35.69399],[46.0855,35.69346],[46.08716,35.69389],[46.08805,35.69369],[46.08955,35.69269],[46.09117,35.6928],[46.0919,35.69325],[46.09392,35.69363],[46.09561,35.69341],[46.09649,35.69288],[46.09744,35.69235],[46.09782,35.69129],[46.09828,35.6899],[46.09922,35.68851],[46.10009,35.68811],[46.1005,35.68763],[46.1033,35.68735],[46.1066,35.68745],[46.11146,35.68825],[46.11502,35.6888],[46.11729,35.68944],[46.11964,35.69033],[46.12207,35.69103],[46.12347,35.69239],[46.12438,35.69343],[46.12602,35.69473],[46.1286,35.69496],[46.13191,35.69499],[46.13459,35.69595],[46.13734,35.69657],[46.13905,35.69722],[46.13979,35.69767],[46.14105,35.69791],[46.1418,35.69764],[46.14275,35.69671],[46.14418,35.69578],[46.14625,35.69483],[46.14817,35.69416],[46.15161,35.69287],[46.15321,35.69266],[46.15506,35.69211],[46.15584,35.69105],[46.15798,35.68952],[46.15892,35.68852],[46.16061,35.68811],[46.16303,35.68841],[46.16466,35.68905],[46.1662,35.68956],[46.16653,35.69008],[46.16688,35.69041],[46.16753,35.69165],[46.16822,35.69348],[46.16898,35.69498],[46.16941,35.69622],[46.17032,35.69733],[46.17155,35.69817],[46.17309,35.69887],[46.17416,35.69985],[46.17419,35.70096],[46.17407,35.70287],[46.17409,35.70385],[46.17453,35.70575],[46.17496,35.7068],[46.17514,35.70772],[46.17598,35.70922],[46.17762,35.71051],[46.1795,35.71161],[46.18128,35.71192],[46.18292,35.71308],[46.18511,35.71378],[46.18762,35.71421],[46.18939,35.71425],[46.19022,35.71485],[46.19151,35.71535],[46.19218,35.71639],[46.19358,35.71788],[46.19426,35.71899],[46.19622,35.72009],[46.19834,35.72131],[46.20036,35.72181],[46.2023,35.72212],[46.20432,35.72223],[46.20586,35.72227],[46.20771,35.72245],[46.21012,35.72203],[46.21568,35.72197],[46.21758,35.72043],[46.21822,35.7199],[46.22069,35.71889],[46.22325,35.71814],[46.22558,35.71752],[46.22775,35.71743],[46.22856,35.71755],[46.2292,35.71748],[46.22994,35.71735],[46.23112,35.71686],[46.23216,35.71626],[46.233,35.71485],[46.23407,35.71505],[46.23601,35.71582],[46.23683,35.71627],[46.23838,35.71671],[46.24072,35.71714],[46.24244,35.7183],[46.243,35.71819],[46.24642,35.71983],[46.24782,35.72106],[46.24938,35.72209],[46.25004,35.72274],[46.25149,35.72387],[46.25394,35.7257],[46.25637,35.72666],[46.25904,35.72724],[46.26105,35.72819],[46.26285,35.72886],[46.26527,35.72911],[46.26793,35.72916],[46.26978,35.72895],[46.27133,35.72846],[46.27455,35.72958],[46.27714,35.73082],[46.28097,35.73342],[46.28373,35.73412],[46.28647,35.73411],[46.28827,35.73402],[46.28834,35.7373],[46.28804,35.7392],[46.28654,35.74111],[46.28355,35.74513],[46.28613,35.7461],[46.28905,35.74734],[46.29067,35.74798],[46.29537,35.74959],[46.29643,35.75011],[46.29837,35.75036],[46.29951,35.75128],[46.30081,35.75206],[46.30245,35.75355],[46.30296,35.75545],[46.30298,35.75683],[46.30389,35.75808],[46.30398,35.75867],[46.30391,35.75965],[46.30433,35.76096],[46.30475,35.76174],[46.30577,35.76208],[46.30717,35.76206],[46.30878,35.76172],[46.31048,35.76197],[46.31178,35.76255],[46.31259,35.76288],[46.31468,35.76254],[46.31677,35.762],[46.31902,35.76159],[46.32072,35.76178],[46.32137,35.76223],[46.32226,35.76269],[46.32363,35.76268],[46.32492,35.76234],[46.32685,35.76213],[46.32855,35.76265],[46.32993,35.76297],[46.33106,35.76316],[46.33244,35.76319],[46.33387,35.76377],[46.33376,35.76907],[46.33845,35.77382],[46.33754,35.78053],[46.34603,35.78727],[46.34421,35.80376],[46.33987,35.81367],[46.34102,35.81913],[46.32969,35.8184],[46.31561,35.81879],[46.30805,35.82652],[46.30116,35.8275],[46.29907,35.83391],[46.29423,35.83504],[46.2887,35.8345],[46.28788,35.82621],[46.28053,35.81986],[46.27456,35.81686],[46.26853,35.81376],[46.26538,35.81423],[46.25978,35.81127],[46.25281,35.81291],[46.24652,35.80982],[46.23922,35.81303],[46.23492,35.81389],[46.23113,35.81283],[46.22175,35.80048],[46.21655,35.79956],[46.21134,35.79419],[46.20299,35.7996],[46.19521,35.80038],[46.19259,35.80659],[46.1846,35.81232],[46.17627,35.80664],[46.17549,35.80151],[46.16766,35.80006],[46.15516,35.80574],[46.1454,35.81643],[46.13661,35.82439],[46.13536,35.83679],[46.13892,35.83863],[46.13669,35.84373],[46.12072,35.84494],[46.1075,35.84837],[46.102,35.84874],[46.09238,35.85728],[46.08172,35.85692],[46.08137,35.85878],[46.06844,35.85647],[46.05689,35.85528],[46.04821,35.85066],[46.04458,35.84531],[46.04075,35.8452],[46.03349,35.83869],[46.02211,35.83496],[46.01505,35.83785],[46.00592,35.83657],[46.0021,35.83417],[45.98522,35.84011],[45.97826,35.83418],[45.97519,35.83448],[45.97144,35.83812],[45.96462,35.84429],[45.9602,35.83514],[45.95647,35.83602],[45.95598,35.82338],[45.95155,35.82261],[45.94888,35.82551],[45.94216,35.8252],[45.93948,35.82365],[45.93269,35.82488],[45.93215,35.8279],[45.92381,35.83109],[45.91331,35.83245],[45.90535,35.83628],[45.89631,35.83726],[45.8892,35.83477],[45.88735,35.83257],[45.88227,35.83095],[45.87967,35.81269],[45.87446,35.81125],[45.86877,35.81526],[45.8617,35.81983],[45.84949,35.81549],[45.83109,35.81003],[45.82014,35.81798],[45.80027,35.82704],[45.79691,35.81343],[45.77991,35.8107],[45.77335,35.8136],[45.77092,35.80508],[45.76437,35.79935],[45.76062,35.80517],[45.7555,35.80822],[45.75589,35.81346],[45.74707,35.82619],[45.73904,35.8277],[45.73883,35.83879],[45.73451,35.84432],[45.72915,35.84706],[45.72517,35.85259],[45.72366,35.86078],[45.71656,35.86168],[45.71679,35.86658],[45.71496,35.8687],[45.71724,35.87273],[45.713,35.87983],[45.70533,35.88525],[45.69799,35.88523],[45.69551,35.88716],[45.69509,35.89187],[45.69838,35.89462],[45.69328,35.90067],[45.68034,35.89774],[45.67765,35.90295],[45.67564,35.9065],[45.67123,35.91338],[45.67094,35.91581],[45.66846,35.92417],[45.6528,35.93591],[45.6484,35.93488],[45.63959,35.94395],[45.62736,35.94662],[45.62227,35.95768],[45.61835,35.95599],[45.61021,35.95764],[45.6082,35.96069],[45.60413,35.95763],[45.59476,35.96632],[45.59586,35.97247],[45.5916,35.97416],[45.59009,35.97696],[45.58541,35.97705],[45.58705,35.97223],[45.58208,35.97148],[45.57557,35.97608],[45.57558,35.98152],[45.57148,35.98307],[45.56361,35.98978],[45.55506,35.99816],[45.54969,36.00112],[45.54374,35.99894],[45.5371,35.99787],[45.53081,35.99542],[45.52177,35.99463],[45.51536,35.99624],[45.50621,35.99897],[45.5053,36.00265],[45.49782,36.00173],[45.49034,36.00247],[45.48355,36.00072],[45.4795,36.0023],[45.46678,35.99588],[45.4611,35.99572],[45.45487,35.98901],[45.45277,35.99453],[45.44032,35.99945],[45.43241,35.99475],[45.43327,35.99129],[45.43163,35.99039],[45.42704,35.98549],[45.42039,35.98171],[45.41382,35.98348],[45.41186,35.98225],[45.41075,35.98061],[45.40771,35.98028],[45.40777,35.97927],[45.40954,35.97728],[45.40857,35.97598],[45.40639,35.9758],[45.4051,35.97419],[45.40783,35.97055],[45.40592,35.96981],[45.40313,35.97055],[45.39819,35.97018],[45.39308,35.96772],[45.3894,35.97205],[45.3816,35.97465],[45.37457,35.96998],[45.37357,35.97356],[45.37625,35.97613],[45.37344,35.98287],[45.36645,35.98162],[45.36396,35.98287],[45.36242,35.97981],[45.36603,35.97621],[45.36638,35.97371],[45.36261,35.9747],[45.36115,35.97623],[45.35764,35.97568],[45.35594,35.97354],[45.35105,35.97637],[45.34788,35.97933],[45.34717,35.98267],[45.35091,35.9874],[45.34244,35.99713],[45.34564,36.00187],[45.34198,36.00383],[45.34329,36.00697],[45.34203,36.00761],[45.34642,36.0147],[45.35287,36.01957],[45.35142,36.02444],[45.35135,36.02764],[45.35438,36.03432],[45.36035,36.03794],[45.36359,36.04267],[45.3717,36.05048],[45.37433,36.06218],[45.37873,36.07136],[45.37716,36.07567],[45.38245,36.07943],[45.37935,36.08728],[45.37471,36.0937],[45.37007,36.09901],[45.37006,36.10472],[45.3563,36.10905],[45.35011,36.10838],[45.34458,36.12091],[45.34113,36.12218],[45.34042,36.13011],[45.33717,36.13375],[45.32979,36.13684],[45.32706,36.13996],[45.32776,36.1453],[45.32434,36.14898],[45.3292,36.15648],[45.32796,36.15761],[45.32502,36.16386],[45.32576,36.16581],[45.32496,36.16735],[45.32035,36.16762],[45.32341,36.17805],[45.32067,36.18251],[45.3164,36.1835],[45.31831,36.18521],[45.32665,36.19038],[45.32293,36.19214],[45.32381,36.19495],[45.32813,36.19555],[45.33657,36.20367],[45.33182,36.20924],[45.32912,36.2148],[45.32261,36.21626],[45.32091,36.21938],[45.31475,36.22175],[45.3134,36.22744],[45.31549,36.2298],[45.31295,36.23793],[45.30256,36.23995],[45.29218,36.24142],[45.2776,36.24519],[45.2656,36.25328],[45.27715,36.26181],[45.28801,36.26757],[45.29475,36.26946],[45.30012,36.26802],[45.3009,36.27248],[45.30443,36.27362],[45.29222,36.28358],[45.28413,36.28799],[45.27517,36.29766],[45.26753,36.29542],[45.26189,36.30088],[45.2616,36.30655],[45.26475,36.31056],[45.26418,36.31415],[45.26786,36.32023],[45.26627,36.32409],[45.271,36.32295],[45.27333,36.33122],[45.27929,36.33424],[45.284,36.33603],[45.28252,36.34114],[45.27668,36.34234],[45.27497,36.34464],[45.27618,36.35081],[45.27189,36.35422],[45.27121,36.35955],[45.27536,36.36689],[45.26923,36.37108],[45.27002,36.37392],[45.27745,36.37618],[45.27361,36.38255],[45.27115,36.38893],[45.27228,36.39288],[45.26468,36.39595],[45.25844,36.40178],[45.25422,36.40239],[45.25024,36.40692],[45.25223,36.41433],[45.24155,36.41872],[45.24255,36.42423],[45.23767,36.43357],[45.23094,36.43266],[45.22489,36.42872],[45.21899,36.42967],[45.20786,36.4244],[45.19658,36.42379],[45.18724,36.42226],[45.17927,36.41796],[45.16883,36.41876],[45.15481,36.4165],[45.1532,36.40492],[45.14353,36.40507],[45.13767,36.40762],[45.12905,36.40521],[45.12247,36.40784],[45.11452,36.4055],[45.1089,36.41144],[45.10397,36.4135],[45.1044,36.41598],[45.09154,36.42258],[45.08779,36.42199],[45.08236,36.42521],[45.081,36.42867],[45.07826,36.43131],[45.07623,36.43824],[45.07935,36.44489],[45.0756,36.45431],[45.07179,36.46043],[45.06181,36.4627],[45.05794,36.47258],[45.05956,36.47528],[45.05457,36.48235],[45.05541,36.49411],[45.05351,36.50642],[45.04271,36.51165],[45.03808,36.51025],[45.03192,36.51451],[45.02712,36.51491],[45.02028,36.51708],[45.01275,36.51926],[45.0066,36.52695],[45.0049,36.533],[45.00182,36.5374],[45.00682,36.5462],[45.00496,36.55113],[45.01104,36.55437],[45.01574,36.55762],[45.02171,36.55694],[45.03778,36.56055],[45.03892,36.57016],[45.03937,36.58034],[45.03351,36.58287],[45.02833,36.58817],[45.02634,36.59681],[45.0271,36.60379],[45.03136,36.60785],[45.04074,36.60755],[45.04669,36.6111],[45.05298,36.61604],[45.06304,36.61408],[45.06667,36.62334],[45.06994,36.62956],[45.07021,36.63619],[45.06773,36.64336],[45.071,36.64339],[45.07207,36.65253],[45.06993,36.65826],[45.06779,36.66454],[45.0693,36.67415],[45.06531,36.68211],[45.06626,36.68812],[45.06053,36.69675],[45.05548,36.70373],[45.0494,36.71099],[45.04607,36.71715],[45.04112,36.7201],[45.04071,36.72351],[45.03158,36.73016],[45.0324,36.73654],[45.03054,36.74045],[45.02354,36.74353],[45.01809,36.7443],[45.01677,36.74617],[45.01207,36.74661],[45.01296,36.75244],[45.00726,36.75505],[45.00087,36.75271],[44.99772,36.75326],[44.98934,36.74776],[44.97347,36.74848],[44.96927,36.75141],[44.96567,36.75973],[44.95711,36.77307],[44.95308,36.77544],[44.94768,36.78056],[44.93962,36.78641],[44.9338,36.7849],[44.93025,36.78021],[44.92293,36.77635],[44.91171,36.77689],[44.9043,36.77839],[44.89585,36.77935],[44.89065,36.78235],[44.88354,36.78229],[44.87963,36.7805],[44.86508,36.77954],[44.8578,36.77218],[44.85244,36.77621],[44.84434,36.77858],[44.84451,36.78363],[44.84047,36.78918],[44.83713,36.79693],[44.83764,36.80199],[44.83746,36.80759],[44.83951,36.80911],[44.8388,36.81599],[44.84676,36.82417],[44.85334,36.8307],[44.8593,36.83222],[44.8664,36.83251],[44.86136,36.8376],[44.86114,36.84489],[44.87167,36.84607],[44.87671,36.84944],[44.88249,36.85208],[44.89033,36.85363],[44.89645,36.85436],[44.90189,36.85783],[44.90308,36.86191],[44.90253,36.86732],[44.90403,36.87274],[44.90085,36.87533],[44.906,36.88161],[44.90445,36.8842],[44.90848,36.89291],[44.91119,36.89424],[44.91281,36.89819],[44.91238,36.90487],[44.90876,36.90946],[44.91167,36.91268],[44.91244,36.91703],[44.91114,36.92194],[44.90445,36.92588],[44.89912,36.93368],[44.90015,36.93773],[44.89669,36.94463],[44.885,36.94632],[44.88499,36.9521],[44.88154,36.95404],[44.88445,36.96136],[44.88873,36.96649],[44.88923,36.97408],[44.89248,36.98004],[44.89417,36.98782],[44.89586,36.99835],[44.90062,37.00351],[44.90469,37.00373],[44.90587,37.00735],[44.90166,37.01423],[44.90019,37.02276],[44.89597,37.02554],[44.8945,37.02831],[44.88712,37.03075],[44.88318,37.0299],[44.87958,37.03098],[44.87392,37.03205],[44.86913,37.03196],[44.85682,37.03725],[44.8585,37.04374],[44.85331,37.04803],[44.84843,37.04675],[44.84278,37.04857],[44.83233,37.04519],[44.8247,37.04268],[44.81708,37.03962],[44.81283,37.04359],[44.80994,37.04502],[44.8074,37.04411],[44.80683,37.04642],[44.80205,37.04812],[44.80346,37.05639],[44.79911,37.06665],[44.78275,37.0758],[44.77737,37.0762],[44.77724,37.08503],[44.78398,37.08948],[44.78371,37.09181],[44.77795,37.09605],[44.77494,37.09646],[44.76633,37.09919],[44.76285,37.1052],[44.74969,37.11229],[44.75032,37.11519],[44.74752,37.11973],[44.75262,37.12495],[44.75585,37.1251],[44.7639,37.12908],[44.76447,37.13651],[44.77232,37.13914],[44.78016,37.14231],[44.78479,37.14466],[44.78598,37.14866],[44.78356,37.15664],[44.78559,37.15949],[44.78453,37.1637],[44.78622,37.16681],[44.77993,37.17381],[44.77214,37.17795],[44.771,37.18021],[44.76595,37.18364],[44.76822,37.19324],[44.76615,37.19943],[44.76133,37.20507],[44.76026,37.2169],[44.7626,37.22307],[44.75842,37.22623],[44.75766,37.22885],[44.76057,37.23475],[44.76657,37.23874],[44.76895,37.24508],[44.78676,37.25667],[44.79652,37.25714],[44.80136,37.25998],[44.80209,37.26502],[44.80281,37.26978],[44.8056,37.27181],[44.81295,37.27528],[44.81551,37.27985],[44.81048,37.28906],[44.80478,37.29992],[44.80078,37.30395],[44.79816,37.31016],[44.79202,37.31359],[44.78656,37.31757],[44.77634,37.32279],[44.77374,37.32668],[44.76649,37.32983],[44.75408,37.33051],[44.74919,37.33381],[44.74223,37.33492],[44.73861,37.33987],[44.72538,37.34454],[44.71967,37.34571],[44.71602,37.34852],[44.71559,37.35249],[44.7255,37.35332],[44.72462,37.35782],[44.7204,37.36062],[44.72173,37.36748],[44.72136,37.37227],[44.72305,37.37488],[44.71622,37.37699],[44.71008,37.38073],[44.7029,37.38092],[44.69847,37.3833],[44.68797,37.38517],[44.68331,37.38213],[44.67549,37.3847],[44.66883,37.38326],[44.6553,37.38618],[44.65313,37.39257],[44.65539,37.39823],[44.65717,37.40082],[44.65207,37.40278],[44.64423,37.40856],[44.63334,37.41903],[44.63698,37.4236],[44.63203,37.43171],[44.62777,37.4322],[44.61874,37.43725],[44.60701,37.43623],[44.60012,37.4379],[44.59289,37.43846],[44.58773,37.43957],[44.57927,37.4475],[44.5861,37.45174],[44.58789,37.46051],[44.58626,37.46656],[44.58634,37.4767],[44.5823,37.48302],[44.58418,37.49675],[44.58605,37.50885],[44.5939,37.51147],[44.60107,37.51355],[44.60162,37.52527],[44.60491,37.52936],[44.60806,37.53973],[44.61293,37.5452],[44.61262,37.54957],[44.60739,37.5493],[44.60148,37.55338],[44.60277,37.55992],[44.61235,37.56237],[44.61368,37.56536],[44.60868,37.57002],[44.61236,37.57153],[44.60734,37.57609],[44.60242,37.5762],[44.59819,37.58011],[44.60556,37.58455],[44.61087,37.5879],[44.61206,37.59533],[44.61462,37.60167],[44.60894,37.60754],[44.60669,37.61124],[44.59945,37.61781],[44.59527,37.61574],[44.58614,37.62816],[44.58044,37.63732],[44.57316,37.63769],[44.56672,37.6419],[44.57387,37.65682],[44.57384,37.66577],[44.5896,37.67119],[44.59222,37.67729],[44.59108,37.68175],[44.59885,37.68405],[44.608,37.69015],[44.61714,37.69905],[44.62628,37.70742],[44.62233,37.71821],[44.62044,37.72792],[44.61581,37.73155],[44.61117,37.73247],[44.60654,37.73881],[44.60327,37.74027],[44.60108,37.74421],[44.59478,37.74815],[44.58628,37.76471],[44.57748,37.76573],[44.56947,37.76895],[44.56422,37.77109],[44.56344,37.77476],[44.55726,37.78046],[44.54352,37.78141],[44.5291,37.78291],[44.52138,37.78074],[44.51786,37.77721],[44.51434,37.77586],[44.49803,37.77369],[44.49408,37.77043],[44.48,37.77233],[44.47211,37.76392],[44.45785,37.76719],[44.45107,37.76854],[44.44498,37.77099],[44.44352,37.77737],[44.45029,37.78484],[44.4478,37.79691],[44.44806,37.80682],[44.43209,37.79897],[44.42436,37.79926],[44.42186,37.80446],[44.41697,37.8064],[44.41404,37.81571],[44.4064,37.81942],[44.39601,37.8215],[44.39171,37.82783],[44.39635,37.83767],[44.40441,37.84127],[44.40561,37.84569],[44.40337,37.85119],[44.39535,37.85709],[44.38801,37.86245],[44.37724,37.86442],[44.36234,37.86259],[44.34865,37.86673],[44.3384,37.87032],[44.33299,37.87426],[44.31748,37.87742],[44.31008,37.87006],[44.30232,37.86811],[44.29295,37.86712],[44.28838,37.87263],[44.28312,37.87271],[44.27415,37.87018],[44.26724,37.86764],[44.25859,37.86949],[44.25097,37.87621],[44.24638,37.87449],[44.24082,37.87891],[44.2387,37.88442],[44.23279,37.88505],[44.22209,37.88839],[44.22647,37.89282],[44.23292,37.89995],[44.22453,37.90664],[44.22707,37.91021],[44.23167,37.9127],[44.22919,37.91767],[44.23426,37.91993],[44.2359,37.92707],[44.24296,37.92915],[44.24718,37.93182],[44.24659,37.93719],[44.25109,37.94299],[44.24843,37.95107],[44.24332,37.95158],[44.24027,37.95535],[44.24129,37.96437],[44.24914,37.97042],[44.25493,37.97593],[44.25456,37.97976],[44.25969,37.98414],[44.26104,37.98879],[44.26789,37.99452],[44.26706,37.99963],[44.26898,38.00853],[44.27571,38.01635],[44.28175,38.02147],[44.28668,38.02137],[44.29333,38.02803],[44.30135,38.03252],[44.30455,38.03771],[44.30912,38.04614],[44.30556,38.04679],[44.30118,38.05456],[44.31221,38.05871],[44.32049,38.06287],[44.31989,38.06902],[44.31148,38.06808],[44.31199,38.07308],[44.31714,38.07416],[44.32161,38.07849],[44.32796,38.07768],[44.32873,38.08539],[44.33225,38.0893],[44.32864,38.09525],[44.32916,38.0985],[44.33534,38.09824],[44.35387,38.10554],[44.36211,38.10312],[44.36486,38.10448],[44.35842,38.11375],[44.35953,38.12357],[44.35446,38.12704],[44.34939,38.13105],[44.35145,38.13465],[44.36055,38.13528],[44.36827,38.13537],[44.37067,38.13825],[44.37994,38.13844],[44.38578,38.14456],[44.39264,38.14654],[44.39114,38.15321],[44.39553,38.15978],[44.39121,38.16496],[44.39169,38.16852],[44.39654,38.17222],[44.4,38.18351],[44.39727,38.18995],[44.40087,38.19396],[44.39772,38.19836],[44.39923,38.20163],[44.40212,38.20168],[44.40772,38.2143],[44.41126,38.21991],[44.40769,38.22655],[44.4055,38.23372],[44.39812,38.23814],[44.39949,38.24325],[44.40155,38.24633],[44.40224,38.25158],[44.4073,38.25414],[44.41305,38.25669],[44.41357,38.26126],[44.42267,38.26772],[44.42859,38.2696],[44.43314,38.26879],[44.43974,38.27483],[44.44841,38.28303],[44.45476,38.28434],[44.46034,38.28943],[44.46935,38.29453],[44.47287,38.29504],[44.47845,38.30202],[44.49201,38.30237],[44.49871,38.30973],[44.49665,38.31754],[44.49939,38.32159],[44.49665,38.32982],[44.49733,38.33373],[44.51038,38.33592],[44.51213,38.34093],[44.50976,38.34595],[44.50021,38.34575],[44.49553,38.34373],[44.49373,38.34615],[44.49913,38.35073],[44.48982,38.35787],[44.48371,38.35831],[44.47761,38.35767],[44.47295,38.35477],[44.47029,38.35841],[44.46282,38.35936],[44.46201,38.36494],[44.45913,38.36945],[44.45684,38.37427],[44.45179,38.378],[44.44857,38.38547],[44.43952,38.38357],[44.43056,38.37663],[44.41817,38.37024],[44.40303,38.36572],[44.40026,38.36724],[44.39133,38.36369],[44.38789,38.36266],[44.38446,38.35895],[44.37828,38.35798],[44.37281,38.36262],[44.36974,38.36888],[44.36564,38.36948],[44.36224,38.37547],[44.35684,38.3752],[44.35154,38.36926],[44.34212,38.37141],[44.335,38.36952],[44.32561,38.37019],[44.31473,38.37537],[44.31033,38.382],[44.30709,38.38908],[44.30042,38.39455],[44.31041,38.39536],[44.313,38.40438],[44.31902,38.40855],[44.31645,38.41771],[44.31664,38.42524],[44.3177,38.43225],[44.30573,38.44034],[44.3027,38.44682],[44.31061,38.45198],[44.30959,38.45823],[44.31374,38.46426],[44.3131,38.47739],[44.32243,38.48381],[44.32304,38.48784],[44.31991,38.492],[44.31885,38.49508],[44.32358,38.49938],[44.32488,38.50313],[44.32193,38.50544],[44.32104,38.51151],[44.31513,38.51505],[44.31266,38.52342],[44.30881,38.53018],[44.31038,38.53539],[44.31265,38.53898],[44.31305,38.54669],[44.31621,38.54743],[44.31645,38.55251],[44.31327,38.55599],[44.31352,38.56322],[44.31795,38.57391],[44.32272,38.57547],[44.32475,38.57811],[44.32476,38.5809],[44.32271,38.58638],[44.32342,38.58928],[44.31865,38.59884],[44.32079,38.60079],[44.31751,38.60791],[44.32194,38.60821],[44.32119,38.62328],[44.31399,38.62991],[44.30748,38.63599],[44.2917,38.64011],[44.28433,38.64083],[44.27284,38.64531],[44.26977,38.6505],[44.27126,38.65486],[44.27894,38.65707],[44.28146,38.66304],[44.27986,38.66793],[44.28239,38.67517],[44.27635,38.68],[44.27236,38.68482],[44.27275,38.69019],[44.26902,38.69823],[44.27117,38.70306],[44.26689,38.70496],[44.26123,38.70418],[44.26091,38.71494],[44.25457,38.71737],[44.25509,38.71981],[44.26372,38.71923],[44.26795,38.72314],[44.27424,38.72813],[44.28087,38.73311],[44.27995,38.73595],[44.27674,38.74003],[44.27695,38.74518],[44.28701,38.75361],[44.28815,38.75853],[44.29203,38.76398],[44.29192,38.76724],[44.28905,38.77051],[44.291,38.77538],[44.28991,38.77968],[44.28676,38.78292],[44.28979,38.78605],[44.29968,38.79133],[44.30236,38.80249],[44.31297,38.80566],[44.31465,38.80776],[44.30683,38.81617],[44.30326,38.82332],[44.29626,38.82672],[44.30183,38.83995],[44.29258,38.84285],[44.28264,38.84736],[44.27787,38.85478],[44.26669,38.85235],[44.25757,38.84778],[44.24592,38.85098],[44.24113,38.85793],[44.24448,38.86394],[44.24577,38.86942],[44.2408,38.87183],[44.23499,38.87824],[44.22911,38.88211],[44.2198,38.88599],[44.21149,38.88999],[44.21065,38.89801],[44.21564,38.90282],[44.21927,38.90442],[44.2204,38.90996],[44.21879,38.91764],[44.21145,38.92178],[44.19882,38.92258],[44.19675,38.93038],[44.18988,38.9339],[44.19554,38.93954],[44.19983,38.94518],[44.20017,38.9495],[44.19764,38.9508],[44.19047,38.95196],[44.18386,38.95575],[44.18231,38.9552],[44.18007,38.95653],[44.18151,38.96058],[44.18448,38.96544],[44.18819,38.96759],[44.18657,38.97148],[44.18826,38.97425],[44.19177,38.9747],[44.18755,38.97835],[44.18938,38.98069],[44.18189,38.98463],[44.17165,38.99018],[44.17529,39.00146],[44.18236,39.01168],[44.191,39.00996],[44.20308,39.01706],[44.21242,39.02148],[44.20501,39.03053],[44.19623,39.03799],[44.19378,39.04436],[44.20639,39.0555],[44.1953,39.06611],[44.19109,39.07512],[44.19825,39.08669],[44.20541,39.08973],[44.21081,39.08835],[44.21998,39.0915],[44.22709,39.09571],[44.22355,39.10298],[44.21869,39.10394],[44.21657,39.10758],[44.20743,39.11465],[44.21081,39.12145],[44.21351,39.13038],[44.20769,39.13761],[44.20119,39.14058],[44.19554,39.15074],[44.19066,39.15342],[44.18921,39.15877],[44.17894,39.16897],[44.16594,39.17703],[44.15305,39.18146],[44.14291,39.18588],[44.13602,39.18275],[44.12512,39.1858],[44.11215,39.19097],[44.10922,39.20025],[44.09718,39.20497],[44.09439,39.21709],[44.10132,39.22434],[44.09864,39.22733],[44.10151,39.23173],[44.10314,39.24318],[44.08897,39.24786],[44.0858,39.25652],[44.09142,39.26244],[44.09086,39.26888],[44.09455,39.27593],[44.10124,39.27674],[44.10708,39.28474],[44.10226,39.28957],[44.0899,39.29055],[44.07925,39.29632],[44.07753,39.30558],[44.07856,39.31165],[44.0789,39.31825],[44.07924,39.32432],[44.07499,39.33338],[44.0625,39.34296],[44.05674,39.34354],[44.05621,39.35532],[44.03766,39.3614],[44.0374,39.3663],[44.03199,39.37147],[44.03387,39.37729],[44.03919,39.37964],[44.04176,39.38359],[44.05444,39.38875],[44.05783,39.3858],[44.0518,39.39772],[44.05229,39.40486],[44.07069,39.41247],[44.08423,39.4077],[44.09538,39.41228],[44.1182,39.40174],[44.13054,39.40559],[44.13292,39.39884],[44.12412,39.38983],[44.13111,39.39038],[44.14482,39.39904],[44.15991,39.40239],[44.17535,39.40062],[44.18804,39.40204],[44.1942,39.41017],[44.21196,39.41723],[44.2243,39.41548],[44.23801,39.41373],[44.24758,39.39908],[44.26744,39.3993],[44.276,39.38295],[44.28868,39.37829],[44.2955,39.37732],[44.30644,39.38165],[44.32008,39.39139],[44.33362,39.38858],[44.35608,39.39956],[44.37992,39.41161],[44.4015,39.41368],[44.42172,39.41204],[44.42698,39.42914],[44.43225,39.43988],[44.42549,39.44781],[44.42009,39.46527],[44.41682,39.46666],[44.41371,39.46831],[44.41137,39.46949],[44.40835,39.47121],[44.4088,39.47303],[44.41042,39.47442],[44.41239,39.47515],[44.41608,39.48276],[44.41856,39.48614],[44.42707,39.48903],[44.43344,39.49292],[44.43388,39.49589],[44.43964,39.50111],[44.43776,39.50229],[44.44034,39.50506],[44.43845,39.50856],[44.43295,39.50913],[44.43294,39.51724],[44.43636,39.52008],[44.4312,39.52414],[44.42947,39.52927],[44.42534,39.53264],[44.42503,39.5375],[44.42679,39.53866],[44.42631,39.54021],[44.42687,39.54335],[44.42334,39.54791],[44.42393,39.54903],[44.42065,39.55141],[44.41953,39.55379],[44.41566,39.55484],[44.41753,39.55841],[44.42043,39.56092],[44.42452,39.56567],[44.42205,39.56749],[44.43478,39.57191],[44.44063,39.57262],[44.44669,39.57741],[44.46615,39.60071],[44.47998,39.61029],[44.48813,39.64269],[44.48425,39.64627],[44.48515,39.65153],[44.48433,39.65547],[44.48407,39.66545],[44.48295,39.66672],[44.48286,39.67036],[44.47631,39.67469],[44.47424,39.67943],[44.46702,39.68443],[44.47221,39.68691],[44.48013,39.69224],[44.48633,39.6952],[44.4926,39.70094],[44.61327,39.78175],[44.6162,39.77932],[44.62162,39.76992],[44.62154,39.76633],[44.62345,39.76561],[44.62401,39.76332],[44.62521,39.76252],[44.6265,39.76199],[44.6266,39.76153],[44.62636,39.76108],[44.6259,39.76083],[44.62596,39.76017],[44.62756,39.75948],[44.62718,39.75882],[44.62751,39.75854],[44.62849,39.759],[44.62947,39.75912],[44.63056,39.75889],[44.63106,39.75815],[44.62967,39.75642],[44.63037,39.75578],[44.63236,39.75607],[44.63263,39.75349],[44.63117,39.75272],[44.63119,39.75214],[44.63172,39.75175],[44.63137,39.75035],[44.63025,39.74865],[44.62947,39.74668],[44.63141,39.74404],[44.63472,39.74325],[44.63654,39.74113],[44.6388,39.74085],[44.6416,39.73872],[44.6408,39.73691],[44.64332,39.73522],[44.64172,39.73405],[44.64401,39.73264],[44.64561,39.73149],[44.6479,39.72769],[44.65248,39.72748],[44.65657,39.725],[44.65997,39.72146],[44.66098,39.7207],[44.66198,39.71861],[44.66559,39.71705],[44.66818,39.7147],[44.67668,39.71466],[44.68519,39.71514],[44.68969,39.71788],[44.69079,39.71648],[44.68761,39.7135],[44.69305,39.7132],[44.69647,39.7124],[44.70264,39.71027],[44.70314,39.71185],[44.70631,39.71303],[44.7103,39.71349],[44.71298,39.71465],[44.71498,39.71448],[44.71446,39.71196],[44.71711,39.70911],[44.71943,39.70758],[44.72113,39.70755],[44.72523,39.70563],[44.72827,39.70259],[44.72719,39.70021],[44.73026,39.69836],[44.73196,39.69704],[44.73435,39.69413],[44.73834,39.69314],[44.74164,39.69373],[44.74406,39.6898],[44.74923,39.68772],[44.75234,39.68273],[44.75372,39.68156],[44.75424,39.6782],[44.75724,39.67718],[44.75853,39.6759],[44.75853,39.6735],[44.75767,39.6715],[44.75389,39.67292],[44.75459,39.67073],[44.75846,39.66992],[44.76174,39.67055],[44.76191,39.66918],[44.7607,39.66808],[44.76377,39.66529],[44.76803,39.66552],[44.77049,39.66357],[44.7702,39.66123],[44.77749,39.65991],[44.78585,39.65482],[44.78804,39.65185],[44.7985,39.64841],[44.80373,39.64167],[44.80291,39.63196],[44.8069,39.62859],[44.81744,39.61467],[44.82592,39.61134],[44.83718,39.6128],[44.8459,39.60864],[44.85394,39.60236],[44.86128,39.6019],[44.86658,39.60383],[44.8657,39.60787],[44.86619,39.61297],[44.86942,39.61649],[44.87935,39.61418],[44.88173,39.60976],[44.87228,39.59961],[44.87243,39.59528],[44.87877,39.59387],[44.89129,39.59721],[44.89438,39.60634],[44.89902,39.6043],[44.9009,39.60066],[44.88717,39.58242],[44.90571,39.57661],[44.91601,39.56762],[44.90802,39.55823],[44.91034,39.55308],[44.91163,39.54925],[44.90536,39.54118],[44.91652,39.53617],[44.9177,39.53303],[44.91408,39.53096],[44.91046,39.531],[44.90821,39.52733],[44.91364,39.52009],[44.92319,39.51708],[44.92725,39.51142],[44.93797,39.51315],[44.94312,39.50134],[44.95153,39.49464],[44.94923,39.48985],[44.94327,39.49117],[44.94005,39.4893],[44.93887,39.48661],[44.95024,39.48493],[44.94683,39.48184],[44.93724,39.48247],[44.93898,39.47805],[44.94758,39.47258],[44.94192,39.46323],[44.94629,39.45988],[44.94642,39.45396],[44.94861,39.45229],[44.9614,39.45067],[44.97693,39.45169],[44.97462,39.44529],[44.96316,39.44369],[44.96201,39.43812],[44.96635,39.43042],[44.96543,39.42246],[44.975,39.41951],[44.99006,39.41603],[44.99752,39.4096],[45.00464,39.41034],[45.00923,39.40567],[45.01805,39.40439],[45.02952,39.3932],[45.0355,39.39049],[45.04011,39.3915],[45.04438,39.38004],[45.05836,39.38236],[45.05781,39.36787],[45.05862,39.36346],[45.07501,39.35942],[45.08728,39.35166],[45.08702,39.34782],[45.08058,39.33336],[45.08959,39.33004],[45.10028,39.33476],[45.10322,39.32969],[45.10341,39.32302],[45.10787,39.30967],[45.12452,39.30407],[45.12838,39.29648],[45.11782,39.28783],[45.12125,39.28619],[45.13305,39.28785],[45.14142,39.28313],[45.14103,39.27894],[45.13378,39.27156],[45.13867,39.26691],[45.14494,39.26491],[45.14691,39.25095],[45.15094,39.24178],[45.14845,39.23101],[45.15098,39.21791],[45.14699,39.20535],[45.15009,39.20514],[45.16622,39.21398],[45.17447,39.21092],[45.17207,39.21876],[45.17242,39.22288],[45.18067,39.22287],[45.18755,39.21647],[45.18553,39.20312],[45.21101,39.20143],[45.22153,39.2079],[45.22242,39.19521],[45.28598,39.1796],[45.30868,39.19379],[45.32936,39.16783],[45.33699,39.16688],[45.39372,39.10416],[45.40308,39.09206],[45.39989,39.08009],[45.40253,39.07323],[45.40929,39.07117],[45.4236,39.06138],[45.42801,39.06102],[45.43186,39.05853],[45.43365,39.05284],[45.4399,39.05061],[45.44421,39.05192],[45.44921,39.05537],[45.45439,39.05266],[45.45674,39.04716],[45.45085,39.03953],[45.44937,39.02854],[45.44331,39.02131],[45.43862,39.01354],[45.43817,39.00495],[45.44896,38.99476],[45.45681,38.99047],[45.46554,38.98993],[45.47427,38.98832],[45.47922,38.98552],[45.48692,38.98591],[45.49222,38.98363],[45.49752,38.98296],[45.50762,38.97864],[45.52812,38.9706],[45.53425,38.96979],[45.53766,38.96618],[45.55127,38.96399],[45.55796,38.96852],[45.56602,38.96879],[45.5684,38.97572],[45.58022,38.97851],[45.58372,38.9763],[45.58413,38.96929],[45.58722,38.96568],[45.59271,38.96394],[45.59974,38.96134],[45.6078,38.95607],[45.61256,38.95787],[45.6146,38.9553],[45.61355,38.94952],[45.6162,38.94271],[45.63219,38.94469],[45.64371,38.94586],[45.64696,38.95127],[45.65947,38.95159],[45.67901,38.94624],[45.6855,38.94903],[45.70984,38.94461],[45.7189,38.93455],[45.72583,38.93566],[45.7293,38.92873],[45.73034,38.93061],[45.7367,38.92728],[45.75224,38.92935],[45.76035,38.92424],[45.76716,38.9257],[45.7719,38.92715],[45.77665,38.92577],[45.78072,38.91691],[45.78994,38.92194],[45.79503,38.92163],[45.81037,38.91112],[45.8153,38.90506],[45.82673,38.90437],[45.83541,38.90475],[45.83836,38.90925],[45.84563,38.91022],[45.85485,38.90689],[45.86339,38.90089],[45.8599,38.89516],[45.86556,38.88945],[45.87216,38.88927],[45.87602,38.89015],[45.88167,38.88631],[45.89007,38.88461],[45.89294,38.87634],[45.90405,38.87769],[45.90761,38.87369],[45.9135,38.87436],[45.91872,38.87236],[45.92755,38.87893],[45.93294,38.88871],[45.94442,38.89597],[45.9564,38.88911],[45.96479,38.88995],[45.97413,38.88236],[45.98155,38.8815],[45.98485,38.87744],[46.01017,38.87174],[46.01667,38.87365],[46.02661,38.8729],[46.03329,38.87506],[46.04066,38.87187],[46.05593,38.87885],[46.054,38.88369],[46.05894,38.88747],[46.06676,38.88753],[46.07217,38.87825],[46.07964,38.87163],[46.09442,38.86762],[46.10679,38.86642],[46.11298,38.86522],[46.11232,38.85908],[46.12952,38.85026],[46.12868,38.84645],[46.13675,38.84639],[46.14398,38.84251],[46.15053,38.84172],[46.15517,38.84373],[46.1605,38.84145],[46.16739,38.84306],[46.17427,38.8404],[46.18465,38.84042],[46.19372,38.85115],[46.21207,38.85334],[46.21874,38.86514],[46.23175,38.8679],[46.24134,38.87169],[46.2475,38.87334],[46.25039,38.87779],[46.26016,38.88385],[46.26683,38.88616],[46.26733,38.89169],[46.26942,38.89454],[46.27701,38.89632],[46.28323,38.90104],[46.29151,38.90095],[46.2999,38.90166],[46.3028,38.90665],[46.30905,38.903],[46.31668,38.90149],[46.32943,38.90879],[46.33668,38.91074],[46.33755,38.91691],[46.35515,38.91625],[46.35949,38.91486],[46.36451,38.91613],[46.369,38.90976],[46.37966,38.9066],[46.39331,38.90407],[46.40308,38.9001],[46.41147,38.89292],[46.41589,38.89246],[46.4165,38.88566],[46.42122,38.8826],[46.42564,38.88646],[46.42731,38.89192],[46.43415,38.89479],[46.44031,38.89445],[46.44337,38.89704],[46.4504,38.89701],[46.45468,38.89964],[46.46547,38.8889],[46.47489,38.88991],[46.48431,38.88558],[46.48851,38.88657],[46.49203,38.88916],[46.49932,38.88961],[46.50592,38.88579],[46.51569,38.88964],[46.52573,38.88782],[46.52272,38.88173],[46.52716,38.87178],[46.53435,38.86772],[46.55186,38.88285],[46.56388,38.88622],[46.58053,38.89699],[46.60268,38.90776],[46.60079,38.91372],[46.62568,38.9309],[46.6395,38.94407],[46.64027,38.95082],[46.65487,38.95524],[46.65547,38.96186],[46.66912,38.97595],[46.668,38.98044],[46.67306,38.98759],[46.68508,38.98791],[46.69178,38.99315],[46.68586,39.00003],[46.68575,39.00629],[46.69153,39.01182],[46.69339,39.01778],[46.69663,39.02001],[46.70682,39.01693],[46.71089,39.01806],[46.7153,39.01465],[46.72697,39.01598],[46.73418,39.01491],[46.7359,39.02051],[46.74122,39.02224],[46.74379,39.02558],[46.751,39.0253],[46.75486,39.0263],[46.75667,39.03317],[46.76302,39.0357],[46.75718,39.04902],[46.76096,39.05168],[46.76096,39.06337],[46.7668,39.06734],[46.76972,39.07279],[46.77401,39.07663],[46.77405,39.07979],[46.79332,39.08508],[46.79684,39.09246],[46.80624,39.09689],[46.80774,39.10477],[46.81295,39.10472],[46.81542,39.11053],[46.82036,39.11629],[46.8283,39.11332],[46.83398,39.12222],[46.83624,39.13592],[46.84182,39.13585],[46.84808,39.14004],[46.86083,39.14],[46.8593,39.14637],[46.86283,39.15142],[46.86499,39.15647],[46.87443,39.15406],[46.87982,39.15602],[46.88589,39.15478],[46.90353,39.16403],[46.90978,39.15727],[46.91992,39.15731],[46.92869,39.16055],[46.93574,39.15926],[46.93996,39.14983],[46.94692,39.14732],[46.94904,39.13923],[46.958,39.14131],[46.96215,39.14019],[46.97004,39.14518],[46.97655,39.14645],[46.9937,39.15429],[46.99172,39.16025],[46.99386,39.16407],[47.00089,39.16747],[47.01718,39.16687],[47.02155,39.16976],[47.02065,39.17254],[47.02318,39.17532],[47.03363,39.17917],[47.03653,39.18356],[47.04295,39.18629],[47.05281,39.19274],[47.05362,39.1965],[47.05993,39.20132],[47.06177,39.20641],[47.06429,39.20884],[47.06374,39.21243],[47.05494,39.21283],[47.05541,39.22015],[47.06138,39.22746],[47.05572,39.23334],[47.06104,39.24134],[47.06774,39.24375],[47.07349,39.25267],[47.07568,39.25367],[47.07787,39.26106],[47.09401,39.26696],[47.09693,39.27097],[47.09539,39.27658],[47.10502,39.27615],[47.11293,39.27997],[47.11193,39.28736],[47.12138,39.29211],[47.13152,39.2974],[47.13763,39.2969],[47.14652,39.29852],[47.14926,39.30118],[47.14856,39.30491],[47.15198,39.30545],[47.16289,39.31133],[47.17587,39.31084],[47.17746,39.31491],[47.18249,39.31579],[47.18911,39.31969],[47.19843,39.31831],[47.20638,39.31534],[47.21158,39.31822],[47.21472,39.31844],[47.22067,39.32297],[47.22662,39.32697],[47.23257,39.32885],[47.23439,39.33285],[47.24498,39.34084],[47.25007,39.34032],[47.25478,39.34524],[47.26086,39.34909],[47.26453,39.35136],[47.27027,39.3568],[47.2748,39.35761],[47.28119,39.36199],[47.29238,39.36478],[47.29829,39.37195],[47.30983,39.3689],[47.31312,39.3701],[47.31387,39.3753],[47.31767,39.38136],[47.32628,39.38423],[47.32805,39.39023],[47.32982,39.39252],[47.33347,39.39636],[47.33232,39.40419],[47.33391,39.40618],[47.33651,39.40731],[47.34185,39.40526],[47.34705,39.40751],[47.34915,39.41481],[47.35401,39.42635],[47.36655,39.42663],[47.37317,39.43658],[47.37086,39.44441],[47.37878,39.44364],[47.38206,39.44988],[47.38121,39.45613],[47.39025,39.46845],[47.39832,39.46844],[47.40099,39.46393],[47.40678,39.46406],[47.41105,39.46784],[47.41326,39.46843],[47.42667,39.46683],[47.42875,39.47262],[47.43804,39.47645],[47.44938,39.47922],[47.46037,39.47914],[47.46587,39.48172],[47.47446,39.4827],[47.48374,39.48581],[47.48894,39.49158],[47.49763,39.49474],[47.50287,39.4942],[47.51705,39.49868],[47.52779,39.49893],[47.53407,39.50093],[47.53687,39.50431],[47.54035,39.50558],[47.55085,39.51063],[47.55929,39.51171],[47.56522,39.51596],[47.56979,39.51968],[47.57239,39.52712],[47.5798,39.53191],[47.58608,39.53259],[47.58824,39.53909],[47.59349,39.54108],[47.59634,39.54079],[47.5992,39.53891],[47.60789,39.53967],[47.61293,39.54455],[47.61819,39.54408],[47.62082,39.55232],[47.62729,39.55406],[47.63307,39.5595],[47.6475,39.56116],[47.65713,39.56495],[47.65919,39.56856],[47.66332,39.57059],[47.66848,39.57341],[47.66797,39.57746],[47.67089,39.57887],[47.67881,39.57771],[47.6838,39.58242],[47.68664,39.58266],[47.68948,39.58766],[47.69758,39.58505],[47.70705,39.58455],[47.72338,39.59437],[47.73567,39.59584],[47.74252,39.60123],[47.74868,39.60557],[47.75176,39.61091],[47.75621,39.6099],[47.76443,39.61424],[47.76503,39.6185],[47.76424,39.62064],[47.76954,39.63022],[47.77534,39.63246],[47.77801,39.63745],[47.78815,39.63846],[47.78979,39.64068],[47.78937,39.64713],[47.79196,39.64998],[47.79988,39.64803],[47.80369,39.64819],[47.80861,39.65359],[47.81434,39.65275],[47.81755,39.65743],[47.82522,39.66025],[47.83427,39.66043],[47.83338,39.66592],[47.83901,39.66692],[47.84801,39.66028],[47.86487,39.66938],[47.8757,39.6668],[47.87871,39.67105],[47.88616,39.66683],[47.89292,39.66102],[47.90827,39.66183],[47.91743,39.65945],[47.91892,39.66277],[47.9417,39.67561],[47.94126,39.67961],[47.94928,39.68081],[47.95329,39.68512],[47.95798,39.68625],[47.96353,39.68923],[47.97458,39.68904],[47.97567,39.70153],[47.97999,39.70487],[47.97608,39.70769],[47.98583,39.70882],[48.03155,39.69159],[48.34146,39.41613],[48.36848,39.3813],[48.36093,39.36964],[48.34584,39.37072],[48.3261,39.36264],[48.32079,39.36305],[48.31085,39.36003],[48.31137,39.35825],[48.29481,39.35046],[48.2707,39.33896],[48.26842,39.34151],[48.26306,39.33927],[48.26765,39.33412],[48.26057,39.33534],[48.25422,39.33067],[48.24358,39.33088],[48.23981,39.33324],[48.2381,39.3356],[48.23329,39.33607],[48.23004,39.33495],[48.22609,39.32587],[48.21134,39.32788],[48.19607,39.32046],[48.18629,39.31304],[48.17548,39.308],[48.16604,39.30403],[48.16141,39.2958],[48.15421,39.29389],[48.15285,39.28782],[48.15081,39.28401],[48.14475,39.2817],[48.14625,39.27833],[48.14199,39.27742],[48.13863,39.27424],[48.13835,39.27199],[48.13375,39.26995],[48.135,39.26621],[48.13463,39.26327],[48.13693,39.26178],[48.1376,39.25863],[48.13434,39.25588],[48.13116,39.24961],[48.13141,39.24657],[48.12978,39.24419],[48.13278,39.24124],[48.13149,39.23936],[48.13479,39.23762],[48.13303,39.23521],[48.13544,39.23343],[48.13374,39.22953],[48.13753,39.22796],[48.1373,39.22407],[48.14015,39.2227],[48.13636,39.22039],[48.13481,39.21795],[48.14131,39.21479],[48.14322,39.21139],[48.14185,39.2085],[48.14289,39.20574],[48.15007,39.20064],[48.15883,39.19728],[48.15964,39.19521],[48.162,39.19407],[48.16329,39.19099],[48.16714,39.19067],[48.16984,39.18818],[48.17598,39.18635],[48.18609,39.18224],[48.19062,39.17945],[48.19255,39.17656],[48.19481,39.17581],[48.19875,39.17628],[48.20217,39.17403],[48.20422,39.17044],[48.21357,39.16772],[48.21446,39.16424],[48.21765,39.16449],[48.2199,39.16228],[48.21474,39.15878],[48.22177,39.14585],[48.2288,39.14038],[48.23169,39.13346],[48.23477,39.13333],[48.23614,39.1304],[48.24481,39.1286],[48.2473,39.1288],[48.25124,39.12594],[48.25673,39.1261],[48.25814,39.12415],[48.26007,39.12499],[48.26316,39.1237],[48.26951,39.12454],[48.27403,39.12273],[48.27715,39.12249],[48.28044,39.12171],[48.29724,39.11504],[48.30199,39.1125],[48.30536,39.10916],[48.30521,39.10665],[48.30712,39.10414],[48.30567,39.10282],[48.30748,39.10164],[48.30508,39.09895],[48.30491,39.09319],[48.30758,39.0905],[48.31187,39.09074],[48.31687,39.0852],[48.31766,39.08126],[48.31621,39.07859],[48.31956,39.07326],[48.31879,39.06949],[48.32385,39.06106],[48.32763,39.05833],[48.32704,39.05461],[48.32781,39.05263],[48.33219,39.05213],[48.33335,39.0493],[48.33307,39.04648],[48.33588,39.04353],[48.337,39.03763],[48.33915,39.03587],[48.33521,39.02628],[48.33388,39.02055],[48.33049,39.01855],[48.32852,39.01295],[48.31551,38.99786],[48.30799,38.99344],[48.30874,38.99101],[48.30091,38.98591],[48.29101,38.97974],[48.29011,38.97647],[48.27559,38.96844],[48.26999,38.9668],[48.2584,38.96695],[48.22411,38.95955],[48.20219,38.95375],[48.18881,38.95696],[48.17818,38.95483],[48.17029,38.9567],[48.1636,38.95443],[48.15623,38.9543],[48.14904,38.9479],[48.14391,38.94684],[48.13594,38.94785],[48.12728,38.94672],[48.11725,38.94692],[48.10722,38.94552],[48.10707,38.94272],[48.09979,38.94507],[48.08838,38.94687],[48.08615,38.94025],[48.08195,38.93828],[48.08118,38.93417],[48.07938,38.92859],[48.08032,38.92461],[48.07878,38.91612],[48.07243,38.91351],[48.06814,38.90983],[48.06231,38.91049],[48.05546,38.90752],[48.04379,38.90149],[48.03658,38.90115],[48.03126,38.89965],[48.02663,38.90028],[48.02391,38.9085],[48.01912,38.91085],[48.01402,38.9102],[48.01028,38.90261],[48.02129,38.83775],[48.0261,38.83379],[48.03503,38.83143],[48.0419,38.81495],[48.04765,38.81297],[48.05134,38.80992],[48.05941,38.80809],[48.07348,38.80123],[48.08173,38.80088],[48.07898,38.79833],[48.07898,38.79417],[48.091,38.79216],[48.09409,38.78907],[48.10988,38.78742],[48.10198,38.78096],[48.1049,38.77265],[48.11057,38.76915],[48.11741,38.77268],[48.12392,38.76803],[48.13043,38.76712],[48.13282,38.76942],[48.1407,38.76744],[48.14755,38.76626],[48.15166,38.76241],[48.165,38.75984],[48.17372,38.7615],[48.18839,38.75564],[48.19206,38.7562],[48.19196,38.75107],[48.19811,38.74885],[48.20083,38.74823],[48.2032,38.7428],[48.20695,38.74004],[48.21738,38.737],[48.22363,38.73923],[48.22369,38.73504],[48.23085,38.73186],[48.23871,38.73137],[48.24313,38.73114],[48.25167,38.72663],[48.24866,38.71975],[48.25986,38.71015],[48.26076,38.70109],[48.25737,38.69805],[48.25123,38.69448],[48.24936,38.69109],[48.2523,38.68073],[48.24999,38.67179],[48.25249,38.66501],[48.25328,38.6609],[48.25749,38.6584],[48.26607,38.65631],[48.27234,38.65606],[48.27929,38.65259],[48.28379,38.65152],[48.2883,38.64778],[48.29113,38.64833],[48.29581,38.64458],[48.2943,38.63654],[48.2975,38.63105],[48.3007,38.62931],[48.30458,38.62032],[48.30709,38.61939],[48.3058,38.61243],[48.31202,38.60627],[48.31756,38.60225],[48.32185,38.60256],[48.32743,38.60424],[48.33439,38.59949],[48.33963,38.6001],[48.35105,38.59588],[48.35612,38.5969],[48.36394,38.59577],[48.36832,38.5984],[48.37395,38.5989],[48.37888,38.60048],[48.38717,38.60593],[48.39062,38.60234],[48.40642,38.60243],[48.41776,38.60703],[48.4224,38.61148],[48.42703,38.61325],[48.43529,38.61181],[48.44234,38.61386],[48.44732,38.61002],[48.45505,38.60992],[48.45866,38.60661],[48.45763,38.60246],[48.45865,38.5967],[48.45383,38.58947],[48.45691,38.58653],[48.45518,38.58198],[48.46201,38.57184],[48.46261,38.56337],[48.46806,38.56102],[48.4687,38.55866],[48.47342,38.55234],[48.48527,38.55473],[48.49187,38.5519],[48.49586,38.55263],[48.50164,38.54924],[48.50535,38.54585],[48.50496,38.54104],[48.50801,38.53623],[48.50861,38.52662],[48.51354,38.52222],[48.51367,38.51836],[48.51895,38.51476],[48.52365,38.51565],[48.52629,38.51385],[48.5329,38.50464],[48.53539,38.50403],[48.54264,38.49714],[48.5492,38.49348],[48.55268,38.48713],[48.55753,38.48132],[48.56663,38.47977],[48.57358,38.47146],[48.57843,38.46247],[48.58154,38.46336],[48.58241,38.45896],[48.58053,38.45564],[48.59048,38.45522],[48.59025,38.44805],[48.59276,38.44302],[48.59046,38.43934],[48.59343,38.43077],[48.59709,38.42544],[48.60143,38.42372],[48.59958,38.41824],[48.60958,38.41411],[48.61614,38.40836],[48.62546,38.40288],[48.63751,38.39794],[48.64047,38.40052],[48.64618,38.40149],[48.65395,38.39762],[48.66171,38.3916],[48.67068,38.39499],[48.67896,38.39677],[48.68621,38.39989],[48.69415,38.40032],[48.69938,38.40496],[48.7053,38.4069],[48.71165,38.40809],[48.71918,38.40856],[48.72809,38.41118],[48.73836,38.41111],[48.74519,38.4177],[48.75203,38.4261],[48.75956,38.43343],[48.76044,38.43753],[48.7675,38.44109],[48.77681,38.44176],[48.78344,38.44828],[48.78921,38.44888],[48.79377,38.45172],[48.79969,38.45188],[48.80588,38.44941],[48.81052,38.44824],[48.81292,38.44841],[48.81947,38.45063],[48.82221,38.44894],[48.82783,38.45038],[48.84072,38.45073],[48.84744,38.44933],[48.85184,38.45018],[48.85624,38.44833],[48.86415,38.44353],[48.86631,38.44301],[48.86881,38.4437],[48.87143,38.44203],[48.87559,38.44089],[48.8807,38.44239],[48.88161,38.44212],[48.88278,38.43937],[48.88821,38.43925],[51.39511,37.88291],[53.90931,37.34744],[54.24427,37.32038],[54.24939,37.32519],[54.25864,37.3289],[54.28537,37.35216],[54.34836,37.34835],[54.39855,37.36098],[54.43813,37.38755],[54.45141,37.394],[54.46619,37.40229],[54.47575,37.40774],[54.48605,37.41419],[54.4902,37.42134],[54.50259,37.41976],[54.52049,37.43296],[54.53069,37.43461],[54.53544,37.43933],[54.54155,37.44197],[54.55222,37.44361],[54.55691,37.44719],[54.56666,37.4461],[54.57669,37.45508],[54.58302,37.45544],[54.58752,37.45305],[54.59244,37.45364],[54.59438,37.45133],[54.60041,37.45166],[54.60313,37.44633],[54.61611,37.44447],[54.62563,37.43772],[54.64169,37.43827],[54.64922,37.43102],[54.65325,37.43072],[54.67566,37.44038],[54.68472,37.44616],[54.70461,37.46274],[54.70624,37.46391],[54.71169,37.46772],[54.7155,37.47044],[54.71814,37.47269],[54.72222,37.47491],[54.72713,37.47669],[54.73177,37.47844],[54.73669,37.47975],[54.74191,37.48105],[54.74597,37.48283],[54.74944,37.48394],[54.75352,37.48616],[54.75791,37.48863],[54.76258,37.49247],[54.76661,37.49616],[54.7685,37.49924],[54.77155,37.50249],[54.77569,37.5063],[54.77266,37.51072],[54.77505,37.51366],[54.7858,37.51664],[54.79777,37.52305],[54.79791,37.54505],[54.80014,37.55144],[54.8063,37.55566],[54.80677,37.56116],[54.80363,37.56261],[54.80661,37.5653],[54.80919,37.57419],[54.81655,37.58802],[54.81911,37.60538],[54.81583,37.6105],[54.80711,37.61711],[54.79813,37.61569],[54.79244,37.61739],[54.78908,37.62066],[54.78766,37.62405],[54.784,37.63269],[54.78969,37.64864],[54.80102,37.66055],[54.80227,37.66419],[54.79811,37.6691],[54.80027,37.67319],[54.7998,37.67708],[54.80308,37.68047],[54.8113,37.68466],[54.81691,37.69852],[54.82166,37.7021],[54.82088,37.70486],[54.81458,37.70635],[54.82355,37.71649],[54.82249,37.71927],[54.82383,37.72522],[54.83083,37.72783],[54.83466,37.73002],[54.84308,37.74019],[54.83974,37.74483],[54.85205,37.75055],[54.85191,37.75536],[54.85672,37.76052],[54.86491,37.7645],[54.87002,37.76208],[54.87602,37.7693],[54.88497,37.76866],[54.89247,37.76553],[54.89288,37.76627],[54.89291,37.7663],[54.92072,37.78397],[54.94939,37.80091],[54.95766,37.81822],[54.98636,37.83516],[55.01189,37.84969],[55.02794,37.86311],[55.03133,37.873],[55.0428,37.89022],[55.06824,37.90224],[55.09713,37.92413],[55.12933,37.95097],[55.15152,37.95805],[55.16513,37.9578],[55.17352,37.95766],[55.18613,37.95866],[55.19224,37.95233],[55.20519,37.96455],[55.22905,37.97408],[55.24499,37.98125],[55.26547,37.98211],[55.27191,37.9863],[55.27244,37.98666],[55.27744,37.98977],[55.28363,37.99333],[55.28952,37.99619],[55.29422,37.99885],[55.30333,38.00283],[55.31269,38.00585],[55.32233,38.00844],[55.32902,38.01013],[55.33519,38.01233],[55.34572,38.01625],[55.35102,38.01889],[55.35572,38.02111],[55.3613,38.02349],[55.3663,38.02572],[55.37158,38.02766],[55.37744,38.02986],[55.38213,38.03205],[55.388,38.03422],[55.39413,38.03616],[55.4,38.03836],[55.40644,38.04027],[55.4138,38.0438],[55.41997,38.04691],[55.42499,38.05025],[55.42916,38.05313],[55.43355,38.05489],[55.44175,38.05702],[55.44619,38.06013],[55.4483,38.0633],[55.45047,38.06739],[55.45288,38.07077],[55.45586,38.07325],[55.45999,38.07591],[55.46502,38.07833],[55.46972,38.08052],[55.47419,38.08433],[55.48091,38.0858],[55.48439,38.08549],[55.48749,38.08313],[55.48972,38.07988],[55.4925,38.07594],[55.4973,38.07241],[55.50255,38.07322],[55.50869,38.07472],[55.51369,38.07688],[55.51991,38.08089],[55.52255,38.082],[55.52608,38.0833],[55.5328,38.08475],[55.54069,38.08666],[55.54563,38.08702],[55.55175,38.08758],[55.55872,38.08858],[55.56514,38.08935],[55.57122,38.08902],[55.57644,38.08935],[55.58197,38.08947],[55.58836,38.09027],[55.59425,38.09244],[55.60155,38.09411],[55.61147,38.09619],[55.62227,38.0978],[55.63216,38.09875],[55.63886,38.0993],[55.64841,38.09933],[55.65652,38.09869],[55.66175,38.09836],[55.67127,38.09722],[55.67852,38.09708],[55.68463,38.09763],[55.69133,38.09816],[55.69714,38.09875],[55.71175,38.10163],[55.71989,38.10213],[55.72716,38.10289],[55.73336,38.10527],[55.7378,38.10794],[55.74191,38.10991],[55.74805,38.11091],[55.75444,38.11125],[55.76316,38.11127],[55.76952,38.11066],[55.77613,38.10916],[55.78622,38.10733],[55.79494,38.1078],[55.80077,38.10861],[55.80577,38.11055],[55.81336,38.11152],[55.81797,38.1105],[55.8228,38.10811],[55.82994,38.10497],[55.83711,38.10205],[55.8428,38.09894],[55.85019,38.09511],[55.85705,38.09175],[55.86591,38.08833],[55.87219,38.08522],[55.88108,38.0825],[55.8911,38.07927],[55.89858,38.07705],[55.90552,38.07688],[55.91164,38.07788],[55.91808,38.07888],[55.92713,38.08075],[55.93241,38.08291],[55.93794,38.08322],[55.94488,38.08238],[55.94952,38.08227],[55.95211,38.08152],[55.95469,38.081],[55.96011,38.07836],[55.96261,38.07533],[55.96602,38.07363],[55.96888,38.07241],[55.97255,38.07027],[55.9765,38.06719],[55.98077,38.06502],[55.98485,38.06561],[55.98922,38.06619],[55.99272,38.06658],[55.9953,38.06583],[56.00166,38.06544],[56.00719,38.06555],[56.01241,38.06563],[56.01766,38.06622],[56.02433,38.0665],[56.03333,38.0663],[56.03969,38.06636],[56.04377,38.06694],[56.04905,38.06797],[56.05547,38.06894],[56.06191,38.07064],[56.07972,38.07338],[56.08641,38.07391],[56.09311,38.07466],[56.09922,38.07544],[56.11175,38.07675],[56.12666,38.07958],[56.13452,38.08052],[56.14238,38.08169],[56.16044,38.08283],[56.16683,38.08313],[56.17319,38.08252],[56.17889,38.07986],[56.18397,38.07675],[56.19138,38.07336],[56.19641,38.06886],[56.21149,38.06135],[56.21841,38.06027],[56.22477,38.06011],[56.23205,38.06061],[56.23905,38.06158],[56.24688,38.06205],[56.25919,38.06472],[56.26652,38.06683],[56.27269,38.0685],[56.28116,38.06986],[56.28755,38.07061],[56.29455,38.07114],[56.30236,38.07047],[56.31166,38.07088],[56.31916,38.07047],[56.32872,38.06975],[56.33336,38.06986],[56.33713,38.07],[56.33919,38.07064],[56.33983,38.08549],[56.34114,38.08913],[56.3433,38.09227],[56.34788,38.09788],[56.35177,38.10075],[56.35386,38.10161],[56.35627,38.10386],[56.35847,38.10791],[56.35883,38.1095],[56.35866,38.11202],[56.35791,38.11502],[56.35714,38.11711],[56.35575,38.11897],[56.35408,38.12041],[56.35297,38.1218],[56.35186,38.12274],[56.35049,38.12508],[56.34916,38.12786],[56.34811,38.13019],[56.34674,38.13205],[56.3448,38.13416],[56.34166,38.13538],[56.33736,38.13689],[56.33452,38.13833],[56.3335,38.14136],[56.33358,38.14363],[56.33394,38.14544],[56.33433,38.14749],[56.33324,38.14913],[56.33105,38.15219],[56.32914,38.15522],[56.32838,38.15797],[56.32794,38.16119],[56.32722,38.16489],[56.32819,38.16691],[56.32919,38.17011],[56.33136,38.17372],[56.33475,38.17819],[56.3378,38.18133],[56.34022,38.18377],[56.34444,38.18733],[56.34833,38.19022],[56.35405,38.19486],[56.35883,38.19772],[56.36211,38.19991],[56.36811,38.20411],[56.37319,38.20763],[56.37952,38.21274],[56.38608,38.21691],[56.39177,38.22066],[56.39988,38.22708],[56.41099,38.23524],[56.41705,38.24036],[56.42452,38.24497],[56.43277,38.2475],[56.4398,38.24889],[56.44855,38.2498],[56.45469,38.25191],[56.45594,38.25236],[56.46327,38.25397],[56.46849,38.25361],[56.47988,38.25444],[56.48441,38.25419],[56.48799,38.25397],[56.49494,38.25333],[56.50422,38.2526],[56.51208,38.2526],[56.51733,38.25291],[56.52288,38.25391],[56.52672,38.25494],[56.53113,38.25619],[56.53638,38.25627],[56.54241,38.25497],[56.54966,38.25452],[56.55491,38.25461],[56.56186,38.25419],[56.56766,38.25402],[56.57516,38.25241],[56.58,38.25],[56.58647,38.24522],[56.59008,38.24147],[56.59394,38.23722],[56.59577,38.23236],[56.59905,38.22791],[56.60152,38.22486],[56.60408,38.22341],[56.60761,38.22447],[56.61177,38.22663],[56.61477,38.22838],[56.62125,38.23047],[56.62658,38.23216],[56.63183,38.23291],[56.638,38.23436],[56.64302,38.2358],[56.64544,38.2378],[56.64583,38.23986],[56.6468,38.24211],[56.64805,38.24436],[56.65141,38.24747],[56.65499,38.24966],[56.65975,38.25158],[56.66591,38.25322],[56.67324,38.25461],[56.67969,38.25536],[56.68583,38.25585],[56.69166,38.25661],[56.69694,38.25713],[56.70158,38.25677],[56.70561,38.25597],[56.7108,38.25511],[56.71683,38.25333],[56.72294,38.25338],[56.72763,38.25439],[56.73147,38.25541],[56.7368,38.25755],[56.74011,38.25974],[56.74372,38.26261],[56.74739,38.26616],[56.75044,38.26952],[56.75466,38.27258],[56.75669,38.27253],[56.75919,38.26972],[56.76052,38.26738],[56.76319,38.2625],[56.76719,38.261],[56.77388,38.25483],[56.77894,38.25099],[56.782,38.24839],[56.78455,38.24672],[56.78705,38.24433],[56.7915,38.24033],[56.79427,38.23772],[56.79791,38.23463],[56.80219,38.23311],[56.80711,38.23249],[56.81055,38.23149],[56.81572,38.23019],[56.82086,38.22797],[56.8263,38.22641],[56.83305,38.22208],[56.84072,38.21797],[56.84725,38.215],[56.85608,38.21152],[56.867,38.20891],[56.87566,38.2075],[56.88283,38.20544],[56.88886,38.20386],[56.89436,38.20369],[56.89925,38.20286],[56.90502,38.20175],[56.91191,38.20039],[56.91799,38.19997],[56.92319,38.19936],[56.93138,38.19886],[56.93161,38.19886],[56.94055,38.19766],[56.94808,38.19697],[56.95591,38.19672],[56.96175,38.19722],[56.96966,38.19833],[56.97494,38.19933],[56.98075,38.19936],[56.98619,38.1978],[56.99063,38.19377],[56.99444,38.18883],[56.99739,38.18347],[56.9978,38.18024],[57.00172,38.17738],[57.01177,38.17544],[57.02244,38.17372],[57.03197,38.17274],[57.04238,38.17194],[57.05197,38.17186],[57.06189,38.17222],[57.06891,38.17361],[57.0748,38.17499],[57.08041,38.17666],[57.08516,38.1788],[57.08935,38.18094],[57.0945,38.18469],[57.09814,38.188],[57.1015,38.19086],[57.10455,38.19352],[57.10819,38.19683],[57.11069,38.19997],[57.11402,38.20261],[57.11708,38.20547],[57.12044,38.20858],[57.12441,38.21211],[57.1293,38.21652],[57.13391,38.22141],[57.13491,38.22269],[57.13702,38.22544],[57.14161,38.22963],[57.14502,38.23366],[57.14816,38.23814],[57.151,38.24194],[57.15352,38.24597],[57.15638,38.25047],[57.1605,38.25652],[57.16502,38.25958],[57.16914,38.26058],[57.17441,38.26108],[57.1788,38.26163],[57.1838,38.26305],[57.19005,38.26561],[57.19538,38.2675],[57.2028,38.26977],[57.21211,38.27013],[57.22055,38.26985],[57.22572,38.26874],[57.23291,38.26713],[57.23975,38.26438],[57.24511,38.26169],[57.24897,38.25744],[57.25099,38.25208],[57.25244,38.24677],[57.25099,38.2413],[57.25366,38.23711],[57.2543,38.23249],[57.25577,38.22741],[57.25608,38.2228],[57.25825,38.21952],[57.2633,38.21636],[57.271,38.21358],[57.27752,38.2106],[57.28525,38.20827],[57.29166,38.20347],[57.29547,38.19877],[57.29611,38.19461],[57.29674,38.19025],[57.29652,38.18624],[57.29647,38.18497],[57.2953,38.17974],[57.29294,38.17363],[57.29353,38.16858],[57.29236,38.16288],[57.2928,38.1553],[57.29369,38.15024],[57.29872,38.14686],[57.3058,38.14339],[57.31291,38.14063],[57.32166,38.13619],[57.32844,38.13252],[57.33402,38.12844],[57.33872,38.12416],[57.34197,38.12014],[57.3438,38.11616],[57.34524,38.11108],[57.34763,38.10688],[57.35138,38.10147],[57.35549,38.09674],[57.36158,38.09149],[57.36861,38.08733],[57.37533,38.08297],[57.37939,38.0778],[57.38058,38.07294],[57.37939,38.06724],[57.37736,38.06227],[57.37711,38.05794],[57.37541,38.05319],[57.37222,38.04824],[57.36991,38.04327],[57.36733,38.03833],[57.36616,38.03311],[57.36594,38.02922],[57.36663,38.02597],[57.36844,38.02202],[57.36836,38.01538],[57.36774,38.00966],[57.36544,38.00425],[57.36277,37.99839],[57.35719,37.99169],[57.35313,37.98658],[57.3523,37.98199],[57.35358,37.97874],[57.35633,37.97613],[57.35913,37.97444],[57.36511,37.97263],[57.3708,37.97058],[57.37764,37.96827],[57.38366,37.96716],[57.38994,37.96555],[57.39269,37.96316],[57.39749,37.96072],[57.40233,37.95938],[57.40741,37.95669],[57.41216,37.95352],[57.4163,37.95016],[57.42244,37.94561],[57.42941,37.941],[57.43677,37.93822],[57.44566,37.9363],[57.45308,37.93441],[57.46108,37.93252],[57.46941,37.9313],[57.47744,37.92963],[57.48744,37.92744],[57.49458,37.92536],[57.5008,37.92283],[57.50725,37.91938],[57.51197,37.91577],[57.51797,37.91441],[57.52497,37.91485],[57.53111,37.91624],[57.53672,37.91786],[57.54347,37.91966],[57.54905,37.92108],[57.55519,37.922],[57.56369,37.92352],[57.57066,37.92394],[57.58172,37.92469],[57.58924,37.92464],[57.59786,37.92341],[57.6033,37.92227],[57.60924,37.91977],[57.61641,37.91883],[57.62725,37.91566],[57.63613,37.91419],[57.6468,37.91333],[57.65519,37.91325],[57.66439,37.91175],[57.67358,37.91072],[57.6868,37.90883],[57.69577,37.90897],[57.7058,37.9118],[57.71419,37.91169],[57.72547,37.91149],[57.73261,37.90963],[57.73761,37.90644],[57.74336,37.90072],[57.75011,37.89725],[57.75722,37.89516],[57.76263,37.89402],[57.77161,37.89391],[57.78025,37.89313],[57.78719,37.89308],[57.79397,37.89008],[57.79863,37.88622],[57.80244,37.88194],[57.80816,37.87599],[57.81277,37.87099],[57.81713,37.86647],[57.82241,37.86305],[57.82783,37.86147],[57.83441,37.86052],[57.84055,37.86166],[57.84555,37.86283],[57.85285,37.86369],[57.86219,37.86494],[57.87147,37.86525],[57.88066,37.86397],[57.88977,37.86155],[57.89686,37.85922],[57.90541,37.85702],[57.91144,37.85633],[57.91483,37.85505],[57.91902,37.85261],[57.92533,37.85144],[57.93247,37.84999],[57.95147,37.84397],[57.956,37.84241],[57.96324,37.838],[57.97005,37.83566],[57.97908,37.83208],[57.99411,37.82275],[58.00188,37.81763],[58.00752,37.81533],[58.01538,37.81135],[58.02233,37.80694],[58.02936,37.79933],[58.03372,37.79961],[58.03819,37.79735],[58.04216,37.79605],[58.04936,37.7953],[58.05516,37.79575],[58.06186,37.79661],[58.06894,37.79838],[58.07533,37.7988],[58.07958,37.79772],[58.0835,37.79572],[58.08886,37.79366],[58.09377,37.79347],[58.09597,37.79155],[58.09744,37.78758],[58.103,37.78413],[58.10702,37.78374],[58.11,37.78477],[58.11238,37.78627],[58.11547,37.78913],[58.11902,37.79058],[58.12094,37.78891],[58.12344,37.78697],[58.12614,37.78389],[58.13469,37.77777],[58.14141,37.77911],[58.14688,37.783],[58.15375,37.78594],[58.1598,37.78569],[58.16369,37.78347],[58.16697,37.78058],[58.17397,37.77705],[58.18072,37.77425],[58.191,37.77199],[58.19919,37.76936],[58.20783,37.76416],[58.21188,37.76011],[58.21297,37.75477],[58.21297,37.75019],[58.21261,37.74494],[58.21397,37.73914],[58.21605,37.73583],[58.21963,37.73316],[58.22263,37.73052],[58.22569,37.72855],[58.22716,37.72458],[58.23214,37.72116],[58.23325,37.7163],[58.2335,37.71147],[58.23316,37.70622],[58.23141,37.70169],[58.22905,37.69675],[58.22761,37.69222],[58.22613,37.68747],[58.22641,37.68288],[58.22741,37.68055],[58.23011,37.67789],[58.23733,37.67347],[58.24411,37.67111],[58.25088,37.66899],[58.25544,37.66788],[58.2605,37.66583],[58.26755,37.66322],[58.27297,37.66208],[58.27755,37.66166],[58.28513,37.65858],[58.29136,37.65647],[58.29991,37.65497],[58.30369,37.65527],[58.30833,37.65574],[58.31561,37.65636],[58.32338,37.65602],[58.33091,37.65638],[58.33761,37.65724],[58.34322,37.65494],[58.35083,37.65208],[58.35955,37.64872],[58.36547,37.64664],[58.36875,37.64397],[58.36986,37.63908],[58.37038,37.63402],[58.37149,37.62916],[58.3745,37.62672],[58.37891,37.62355],[58.38272,37.62041],[58.38711,37.617],[58.39277,37.61539],[58.39714,37.61589],[58.40158,37.61752],[58.40519,37.61966],[58.40972,37.62266],[58.41299,37.62413],[58.41711,37.62486],[58.4218,37.62602],[58.42588,37.62655],[58.4333,37.6253],[58.4408,37.62519],[58.44827,37.62486],[58.45461,37.62483],[58.45983,37.62505],[58.46625,37.62614],[58.4733,37.62788],[58.47925,37.63016],[58.48611,37.63327],[58.4923,37.6353],[58.50497,37.643],[58.50919,37.64533],[58.51258,37.64838],[58.51483,37.65197],[58.51622,37.6551],[58.51761,37.6585],[58.51944,37.66391],[58.52058,37.66799],[58.52194,37.67069],[58.52624,37.67441],[58.52933,37.67747],[58.53188,37.68058],[58.53466,37.68341],[58.53749,37.68652],[58.54172,37.68908],[58.5468,37.69138],[58.55327,37.69313],[58.55825,37.69383],[58.56341,37.69339],[58.56913,37.69266],[58.57722,37.69274],[58.58002,37.69124],[58.58336,37.68949],[58.587,37.68772],[58.59036,37.68619],[58.59469,37.68233],[58.59936,37.67891],[58.60561,37.67333],[58.60989,37.66855],[58.61358,37.66358],[58.6165,37.66022],[58.62049,37.65547],[58.62833,37.65189],[58.64127,37.64716],[58.6508,37.64305],[58.67178,37.63774],[58.68558,37.63663],[58.69552,37.63458],[58.70811,37.63308],[58.719,37.63188],[58.7298,37.62955],[58.73816,37.62939],[58.74224,37.62989],[58.74386,37.63211],[58.74488,37.63436],[58.74502,37.63619],[58.74622,37.64094],[58.74828,37.64497],[58.7508,37.6483],[58.75358,37.65047],[58.75825,37.65139],[58.76233,37.65166],[58.77188,37.64799],[58.77691,37.64594],[58.78877,37.64216],[58.79305,37.64149],[58.7968,37.64155],[58.80061,37.64205],[58.80416,37.6435],[58.80758,37.64655],[58.8095,37.64899],[58.80994,37.65127],[58.8125,37.6585],[58.81355,37.66072],[58.81516,37.66319],[58.81736,37.66536],[58.8195,37.66711],[58.82144,37.66999],[58.8233,37.67174],[58.82375,37.67355],[58.82389,37.67561],[58.82236,37.67844],[58.81835,37.68277],[58.81605,37.68677],[58.81622,37.68905],[58.8178,37.69105],[58.82194,37.692],[58.82563,37.69136],[58.83013,37.68955],[58.83564,37.68608],[58.84149,37.68305],[58.84602,37.68191],[58.85138,37.68027],[58.85749,37.67677],[58.86355,37.67283],[58.86925,37.66797],[58.879,37.65924],[58.88694,37.65336],[58.89336,37.65027],[58.89822,37.64958],[58.90486,37.6495],[58.91058,37.64899],[58.91747,37.64822],[58.92641,37.64802],[58.93241,37.64749],[58.94614,37.64544],[58.95097,37.6443],[58.95827,37.64188],[58.96419,37.63977],[58.9818,37.63225],[58.99077,37.62861],[58.99575,37.62583],[59.00569,37.62352],[59.01536,37.62166],[59.02444,37.61961],[59.03316,37.61666],[59.04052,37.61469],[59.04761,37.61275],[59.05566,37.60869],[59.06283,37.60441],[59.0695,37.60088],[59.07688,37.59569],[59.08519,37.59116],[59.09227,37.58575],[59.09966,37.58058],[59.10594,37.57613],[59.11539,37.57108],[59.12286,37.56724],[59.13161,37.56108],[59.13933,37.55633],[59.14574,37.55372],[59.15475,37.55075],[59.15858,37.54802],[59.16397,37.54294],[59.16836,37.54019],[59.17252,37.53813],[59.17697,37.53586],[59.18063,37.53475],[59.1828,37.53305],[59.18641,37.53147],[59.18794,37.52864],[59.18888,37.52608],[59.19302,37.5238],[59.19688,37.52155],[59.20016,37.51908],[59.20391,37.51544],[59.20561,37.51147],[59.21005,37.50775],[59.21263,37.50561],[59.21714,37.50422],[59.22288,37.50394],[59.22811,37.50413],[59.2318,37.50347],[59.2363,37.50211],[59.24128,37.49933],[59.24666,37.49813],[59.25411,37.49752],[59.26413,37.49702],[59.27627,37.4973],[59.28216,37.49861],[59.28516,37.50008],[59.29055,37.50255],[59.2948,37.50533],[59.30208,37.50977],[59.30989,37.5135],[59.31994,37.51666],[59.32838,37.51761],[59.33055,37.51769],[59.33464,37.51788],[59.3356,37.51791],[59.34214,37.51666],[59.34783,37.51544],[59.35049,37.51302],[59.35316,37.51036],[59.35527,37.50772],[59.35644,37.50444],[59.35733,37.50119],[59.36024,37.49805],[59.36516,37.49458],[59.36869,37.49185],[59.37127,37.48805],[59.37805,37.48288],[59.38122,37.47927],[59.38405,37.47499],[59.3858,37.47169],[59.38722,37.46794],[59.38691,37.4643],[59.38497,37.46141],[59.38427,37.44605],[59.38433,37.44308],[59.38722,37.43972],[59.39291,37.43527],[59.40311,37.42602],[59.40258,37.42308],[59.39988,37.42183],[59.38689,37.41769],[59.38353,37.41533],[59.3798,37.4123],[59.37702,37.40972],[59.3753,37.40636],[59.37413,37.40274],[59.3735,37.39841],[59.37486,37.39374],[59.37655,37.3863],[59.37891,37.38],[59.38083,37.37508],[59.38349,37.36552],[59.38639,37.3548],[59.38722,37.35094],[59.3895,37.34016],[59.39172,37.33202],[59.39244,37.32672],[59.39588,37.31963],[59.39838,37.31147],[59.402,37.30625],[59.40658,37.30255],[59.4118,37.29952],[59.41769,37.29761],[59.42189,37.296],[59.42672,37.29208],[59.42911,37.28944],[59.43033,37.28683],[59.43147,37.28311],[59.43375,37.27955],[59.43755,37.2768],[59.44352,37.27236],[59.44833,37.268],[59.45333,37.26244],[59.45888,37.25641],[59.46341,37.25202],[59.47275,37.24327],[59.47858,37.23722],[59.48424,37.22911],[59.48691,37.22669],[59.49066,37.22349],[59.49013,37.2203],[59.48797,37.21858],[59.48613,37.2173],[59.48308,37.21494],[59.48,37.21235],[59.47744,37.20927],[59.47605,37.20635],[59.47502,37.20433],[59.4788,37.20161],[59.48322,37.19933],[59.48644,37.19661],[59.49111,37.19386],[59.49766,37.18983],[59.50294,37.18772],[59.50825,37.18583],[59.5138,37.18347],[59.52041,37.18011],[59.52391,37.17741],[59.52711,37.17425],[59.53122,37.17197],[59.53627,37.1703],[59.53705,37.17008],[59.54272,37.16858],[59.54836,37.16736],[59.55199,37.16624],[59.55372,37.16272],[59.5543,37.15947],[59.55286,37.15588],[59.55169,37.15227],[59.55105,37.14772],[59.54925,37.14344],[59.54863,37.13933],[59.54911,37.13472],[59.54988,37.13033],[59.55075,37.12705],[59.55383,37.12252],[59.5581,37.12208],[59.56325,37.12202],[59.57663,37.12083],[59.58469,37.12086],[59.59291,37.11975],[59.59919,37.11916],[59.60594,37.11766],[59.61364,37.11355],[59.62466,37.10813],[59.6305,37.10944],[59.63708,37.10908],[59.64238,37.10741],[59.64788,37.10802],[59.65116,37.10922],[59.65313,37.11233],[59.6553,37.11774],[59.65783,37.12358],[59.66008,37.12644],[59.66216,37.12747],[59.66541,37.12866],[59.67038,37.12955],[59.6761,37.12947],[59.68188,37.12983],[59.68844,37.12925],[59.69955,37.12819],[59.70513,37.12649],[59.7113,37.12477],[59.71594,37.122],[59.72225,37.11844],[59.72625,37.11477],[59.72947,37.11205],[59.73341,37.10794],[59.73825,37.10422],[59.74355,37.10233],[59.74924,37.10177],[59.75474,37.10241],[59.75849,37.10266],[59.75955,37.10488],[59.76005,37.10738],[59.76027,37.10991],[59.7625,37.1123],[59.76661,37.11347],[59.77002,37.11327],[59.77372,37.11283],[59.77794,37.11191],[59.7908,37.10455],[59.79833,37.10183],[59.80983,37.09888],[59.81905,37.09586],[59.82574,37.09386],[59.83305,37.09208],[59.83994,37.08869],[59.84508,37.08497],[59.86119,37.06913],[59.87614,37.0561],[59.88094,37.05541],[59.88655,37.05416],[59.88958,37.05261],[59.89164,37.04997],[59.89511,37.04678],[59.89911,37.04355],[59.90569,37.03996],[59.91141,37.03666],[59.91663,37.03408],[59.92105,37.032],[59.92744,37.02977],[59.93336,37.02852],[59.93875,37.02777],[59.94422,37.02813],[59.94827,37.02861],[59.95322,37.02925],[59.95758,37.03014],[59.9623,37.03172],[59.96697,37.03258],[59.97222,37.03344],[59.97888,37.03422],[59.98458,37.03366],[59.99113,37.03327],[59.99536,37.03258],[60,37.03955],[60.00441,37.03966],[60.01358,37.03611],[60.02094,37.03327],[60.05066,37.01224],[60.08433,36.97852],[60.08891,36.97072],[60.09663,36.94861],[60.10258,36.93602],[60.12691,36.90588],[60.16122,36.86255],[60.17675,36.84241],[60.21416,36.81047],[60.24866,36.77677],[60.27052,36.7513],[60.29525,36.71389],[60.31563,36.6811],[60.33144,36.65613],[60.34002,36.64772],[60.35244,36.64188],[60.36739,36.62811],[60.37066,36.62424],[60.48319,36.62708],[60.56694,36.62772],[60.58541,36.62766],[60.63477,36.62755],[60.72102,36.63541],[60.83025,36.64261],[60.86408,36.64408],[60.95735,36.65127],[61.1203,36.66086],[61.14002,36.66202],[61.14025,36.66205],[61.14761,36.65594],[61.14994,36.65041],[61.14805,36.64872],[61.15252,36.64086],[61.18075,36.58819],[61.19097,36.56772],[61.19316,36.54852],[61.18933,36.52988],[61.17935,36.51422],[61.17235,36.49866],[61.17269,36.49308],[61.17544,36.48114],[61.17822,36.46838],[61.17549,36.44819],[61.164,36.39311],[61.16375,36.38105],[61.17025,36.34033],[61.18547,36.30319],[61.19952,36.26841],[61.206,36.25983],[61.20905,36.24227],[61.22286,36.19544],[61.22922,36.17239],[61.2328,36.14602],[61.22755,36.12444],[61.22647,36.12008],[61.19813,36.0651],[61.1795,36.03058],[61.17327,36.01908],[61.16833,36.00283],[61.15927,35.98961],[61.13447,35.97491],[61.12302,35.96802],[61.12308,35.96786],[61.1243,35.96324],[61.12855,35.95861],[61.13897,35.95686],[61.15952,35.95344],[61.1688,35.95197],[61.1795,35.95024],[61.21099,35.93627],[61.21302,35.93433],[61.21833,35.92933],[61.22272,35.92227],[61.22691,35.91841],[61.234,35.9155],[61.23377,35.9121],[61.2335,35.90744],[61.23197,35.90016],[61.2293,35.89522],[61.23141,35.89288],[61.23725,35.89474],[61.24213,35.89574],[61.24713,35.89433],[61.24822,35.89277],[61.24452,35.88861],[61.23988,35.8836],[61.23797,35.88272],[61.2435,35.8733],[61.24269,35.87005],[61.24191,35.8668],[61.24441,35.85808],[61.24952,35.85505],[61.25352,35.85441],[61.25483,35.84886],[61.25222,35.84311],[61.25636,35.84008],[61.2596,35.83538],[61.257,35.82966],[61.25816,35.8265],[61.25847,35.82169],[61.25977,35.81611],[61.25997,35.81291],[61.26422,35.80825],[61.26533,35.80588],[61.26347,35.80422],[61.25683,35.79991],[61.25508,35.79583],[61.25272,35.78611],[61.25025,35.77797],[61.24858,35.77308],[61.2468,35.7698],[61.25183,35.76839],[61.25491,35.7661],[61.25516,35.76208],[61.25244,35.75797],[61.25002,35.74902],[61.2508,35.73622],[61.2503,35.72816],[61.24591,35.71913],[61.24177,35.70611],[61.23383,35.70741],[61.22925,35.70161],[61.2198,35.69477],[61.21902,35.69155],[61.22266,35.68044],[61.22291,35.67647],[61.22333,35.66925],[61.22344,35.66761],[61.22288,35.66036],[61.22722,35.65411],[61.23188,35.6583],[61.24219,35.65069],[61.24124,35.64985],[61.25214,35.63261],[61.2605,35.62491],[61.27377,35.61661],[61.27663,35.61316],[61.30591,35.62272],[61.31661,35.62474],[61.3688,35.62441],[61.37144,35.61327],[61.37213,35.60125],[61.37444,35.59572],[61.38225,35.59683],[61.39413,35.59566],[61.40024,35.59191],[61.39961,35.58625],[61.39025,35.57786],[61.38483,35.56961],[61.38722,35.56247],[61.39433,35.55872],[61.40325,35.55747],[61.40924,35.5561],[61.4113,35.55458],[61.41249,35.55061],[61.42166,35.54533],[61.43264,35.54255],[61.43866,35.54039],[61.44494,35.53419],[61.45152,35.52238],[61.46672,35.51413],[61.48605,35.50283],[61.50905,35.4878],[61.51158,35.48613],[61.56661,35.45127],[61.58075,35.44458],[61.59986,35.43647],[61.61372,35.43458],[61.63941,35.43152],[61.66605,35.42927],[61.73627,35.4198],[61.75316,35.41641],[61.76699,35.4145],[61.77872,35.41572],[61.8165,35.4251],[61.87969,35.43699],[61.93605,35.44858],[61.96427,35.45358],[61.99,35.44963],[62.02063,35.44586],[62.05738,35.43747],[62.07711,35.41644],[62.12158,35.37055],[62.13089,35.36041],[62.14344,35.34477],[62.19936,35.32411],[62.24813,35.3088],[62.25613,35.30505],[62.2613,35.29961],[62.27419,35.27591],[62.27702,35.26927],[62.27883,35.26511],[62.283,35.25533],[62.29997,35.14424],[62.30208,35.14108],[62.3098,35.14294],[62.32489,35.15547],[62.43391,35.25361],[62.45925,35.27847],[62.46683,35.2843],[62.47558,35.28538],[62.48841,35.28336],[62.49649,35.27797],[62.50141,35.27733],[62.51216,35.27844],[62.52122,35.2731],[62.5343,35.26466],[62.5355,35.25988],[62.53886,35.25033],[62.55891,35.23969],[62.56991,35.23438],[62.58161,35.23555],[62.60491,35.24022],[62.60691,35.23949],[62.61027,35.22913],[62.61572,35.21647],[62.61975,35.21416],[62.62269,35.21424],[62.63036,35.21769],[62.65591,35.23849],[62.66361,35.24191],[62.687,35.24419],[62.7228,35.25486],[62.74783,35.26519],[62.75225,35.27655],[62.75561,35.29027],[62.76516,35.29616],[62.77761,35.30294],[62.80683,35.30775],[62.82627,35.3115],[62.83588,35.31577],[62.85408,35.32672],[62.86427,35.34144],[62.867,35.34713],[62.8728,35.34888],[62.88652,35.34925],[62.88747,35.35008],[62.88728,35.35488],[62.88894,35.36216],[62.89472,35.36472],[62.90158,35.36491],[62.92638,35.38244],[62.95636,35.39366],[62.98914,35.40894],[62.99786,35.41158],[63.00474,35.41097],[63.01669,35.40644],[63.01952,35.40975],[63.02024,35.41616],[63.01108,35.42477],[63.01097,35.42797],[63.01486,35.42889],[63.03469,35.42377],[63.0465,35.42247],[63.07391,35.42394],[63.09635,35.42772],[63.11069,35.46502],[63.11475,35.4876],[63.12002,35.50458],[63.11883,35.51016],[63.11275,35.51563],[63.11161,35.51963],[63.11833,35.5238],[63.12466,35.53841],[63.12722,35.54972],[63.12405,35.55524],[63.11002,35.56213],[63.10494,35.56683],[63.10272,35.574],[63.10436,35.58289],[63.10594,35.59336],[63.10263,35.60291],[63.09635,35.61238],[63.09516,35.61877],[63.10066,35.62936],[63.11975,35.64508],[63.16544,35.66064],[63.20047,35.67191],[63.24425,35.68661],[63.24797,35.6923],[63.24366,35.70264],[63.23444,35.71286],[63.22547,35.71586],[63.20969,35.71711],[63.19758,35.72483],[63.18422,35.74058],[63.17394,35.75236],[63.16486,35.75777],[63.14975,35.76702],[63.14055,35.77563],[63.13955,35.80291],[63.12819,35.81663],[63.12716,35.81786],[63.11202,35.82713],[63.10883,35.83347],[63.11422,35.84805],[63.1206,35.86186],[63.12922,35.8693],[63.14008,35.86875],[63.18158,35.86736],[63.20747,35.86669],[63.23097,35.86611],[63.26433,35.86536],[63.30011,35.86452],[63.3305,35.87002],[63.40599,35.88458],[63.4903,35.90166],[63.51486,35.90619],[63.52272,35.90716],[63.53258,35.90739],[63.54719,35.9133],[63.5593,35.93605],[63.57447,35.95641],[63.58008,35.95822],[63.58525,35.95986],[63.63158,35.96241],[63.67391,35.96727],[63.777,35.99013],[63.81527,35.99889],[63.82597,36.00472],[63.84533,36.01952],[63.86888,36.02558],[63.93475,36.03961],[63.96336,36.04172],[63.97622,36.04194],[63.99414,36.03741],[64.01611,36.02816],[64.03919,36.01491],[64.05222,36.00791],[64.06522,36.00172],[64.07111,36.00341],[64.07397,36.00827],[64.07366,36.0195],[64.06402,36.04986],[64.06155,36.06905],[64.06214,36.08514],[64.07252,36.10455],[64.08222,36.11275],[64.10158,36.12194],[64.10669,36.12439],[64.12925,36.13197],[64.13605,36.13769],[64.1478,36.14269],[64.16649,36.14702],[64.1683,36.15505],[64.17211,36.16155],[64.19677,36.16513],[64.22149,36.16633],[64.22652,36.16319],[64.23458,36.15769],[64.23858,36.15536],[64.24547,36.15705],[64.26122,36.1621],[64.26613,36.16299],[64.27119,36.15824],[64.28319,36.1528],[64.2891,36.15369],[64.29677,36.16585],[64.31783,36.19905],[64.32952,36.20724],[64.37372,36.22633],[64.4151,36.23733],[64.42991,36.23994],[64.4488,36.237],[64.45749,36.24836],[64.48261,36.28158],[64.51094,36.30361],[64.5383,36.32563],[64.56261,36.3508],[64.58108,36.37272],[64.60433,36.4035],[64.61489,36.42286],[64.62144,36.44461],[64.62294,36.47272],[64.6183,36.50877],[64.61227,36.56647],[64.60519,36.62655],[64.60702,36.6338],[64.61772,36.64919],[64.636,36.6855],[64.6728,36.74611],[64.70766,36.80588],[64.73783,36.85274],[64.78955,36.92872],[64.79544,36.936],[64.78805,36.95919],[64.77927,37.00722],[64.75885,37.09125],[64.75661,37.10647],[64.77047,37.11622],[64.87797,37.16624],[64.93475,37.19166],[64.95966,37.20311],[64.97264,37.20886],[64.98261,37.21294],[65.05469,37.22638],[65.10175,37.23561],[65.1368,37.24069],[65.14383,37.24155],[65.174,37.23694],[65.18505,37.23541],[65.19208,37.23627],[65.20905,37.2436],[65.22203,37.24933],[65.22805,37.25016],[65.24116,37.24383],[65.2498,37.23952],[65.26335,37.23275],[65.3848,37.2335],[65.50322,37.23408],[65.5243,37.23416],[65.54924,37.25836],[65.60719,37.30511],[65.62419,37.31961],[65.63819,37.33488],[65.64111,37.35174],[65.64369,37.43113],[65.69758,37.52836],[65.74191,37.5325],[65.758,37.54136],[65.76605,37.54458],[65.77713,37.54299],[65.7983,37.53822],[65.80841,37.53025],[65.81652,37.5118],[65.83572,37.49338],[65.87705,37.47261],[65.90747,37.46602],[65.93947,37.45905],[65.99383,37.4543],[66.03108,37.44869],[66.06833,37.43827],[66.0985,37.42944],[66.11961,37.415],[66.12666,37.40536],[66.12966,37.39413],[66.13266,37.38772],[66.14775,37.37727],[66.17185,37.36763],[66.18794,37.3636],[66.21308,37.366],[66.23016,37.36758],[66.23922,37.36516],[66.24622,37.35633],[66.25627,37.34908],[66.27433,37.33944],[66.28636,37.33139],[66.30041,37.32333],[66.31044,37.32011],[66.32952,37.31847],[66.34764,37.32325],[66.36978,37.32799],[66.38989,37.33194],[66.41799,37.33108],[66.4753,37.33411],[66.48435,37.33405],[66.49944,37.33963],[66.52597,37.34758],[66.54677,37.35388],[66.56894,37.36022],[66.59408,37.36091],[66.61516,37.3568],[66.62819,37.35113],[66.63517,37.34227],[66.63683,37.34152],[66.64616,37.33741],[66.66325,37.33572],[66.68336,37.33722],[66.69747,37.34197],[66.71461,37.34908],[66.72875,37.35544],[66.73577,37.35699],[66.76294,37.35844],[66.79308,37.35666],[66.81919,37.3525],[66.83125,37.35161],[66.85341,37.35869],[66.87558,37.36336],[66.91388,37.37272],[66.93711,37.38139],[66.94921,37.3853],[66.97135,37.38674],[66.98642,37.38422],[67.03655,37.37099],[67.06246,37.35555],[67.08342,37.34255],[67.09833,37.33038],[67.09919,37.31994],[67.10097,37.30308],[67.10778,37.28619],[67.12366,37.27322],[67.14866,37.26497],[67.1728,37.26716],[67.19278,37.25897],[67.20375,37.25486],[67.21058,37.24113],[67.21836,37.22422],[67.22428,37.21775],[67.24016,37.20716],[67.26396,37.18849],[67.27894,37.18433],[67.29905,37.18813],[67.31222,37.19603],[67.33049,37.20947],[67.35366,37.21405],[67.38686,37.21849],[67.39991,37.21916],[67.41911,37.22697],[67.4403,37.23313],[67.4606,37.24655],[67.48402,37.26311],[67.49622,37.2718],[67.5103,37.27244],[67.53919,37.26005],[67.55102,37.24949],[67.55869,37.23094],[67.55966,37.23036],[67.56663,37.22602],[67.57966,37.22505],[67.58977,37.22894],[67.596,37.23849],[67.61411,37.24147],[67.62828,37.24611],[67.63333,37.24844],[67.6403,37.24594],[67.65191,37.24089],[67.66122,37.23686],[67.69813,37.22674],[67.73217,37.22161],[67.73317,37.22144],[67.75213,37.21797],[67.76511,37.20961],[67.76997,37.2065],[67.78275,37.19508],[67.79052,37.18375],[67.79111,37.16447],[67.78958,37.14205],[67.78511,37.12044],[67.78372,37.10361],[67.78653,37.09394],[67.80327,37.08166],[67.82111,37.07261],[67.84302,37.06747],[67.88208,37.06689],[67.89408,37.06588],[67.89905,37.06422],[67.90091,37.05858],[67.89763,37.04658],[67.90399,37.01922],[67.92869,37.006],[67.95239,36.992],[67.96822,36.98452],[67.98105,36.97791],[67.98886,36.96974],[67.99055,36.95689],[67.99805,36.93752],[68.00585,36.92935],[68.00705,36.9293],[68.02383,36.92827],[68.04196,36.93441],[68.05608,36.93819],[68.07819,36.94263],[68.0843,36.94655],[68.10063,36.95911],[68.11094,36.97097],[68.12205,36.9748],[68.13716,36.97855],[68.1565,36.99105],[68.17702,37.00994],[68.19233,37.02011],[68.20344,37.02394],[68.22041,37.02202],[68.2343,37.01777],[68.24605,37.00791],[68.26191,37.00283],[68.27114,37.00988],[68.28138,37.01852],[68.28908,37.07694],[68.29558,37.0945],[68.30291,37.10558],[68.31308,37.11099],[68.32716,37.11236],[68.35702,37.10536],[68.37997,37.10172],[68.39511,37.10544],[68.41852,37.11702],[68.42177,37.125],[68.42199,37.13302],[68.42227,37.14183],[68.42541,37.14577],[68.43653,37.14877],[68.45255,37.14847],[68.47775,37.15197],[68.48391,37.15666],[68.49802,37.1588],[68.51522,37.16327],[68.53939,37.16677],[68.54769,37.17544],[68.56086,37.18491],[68.56722,37.18947],[68.60663,37.1983],[68.63905,37.20724],[68.65136,37.2158],[68.65261,37.223],[68.6511,37.23827],[68.65333,37.24463],[68.6573,37.24294],[68.66419,37.2388],[68.67514,37.23616],[68.67427,37.24019],[68.66883,37.25794],[68.67021,37.26916],[68.68049,37.27616],[68.69049,37.27433],[68.71186,37.27249],[68.71553,37.27219],[68.72955,37.27108],[68.74183,37.27722],[68.75811,37.2833],[68.77124,37.28541],[68.78224,37.28436],[68.78902,37.277],[68.79541,37.25838],[68.80603,37.24611],[68.81297,37.24355],[68.82421,37.24972],[68.82949,37.2568],[68.82599,37.27133],[68.80758,37.29022],[68.81016,37.30619],[68.82555,37.31547],[68.84369,37.31666],[68.86438,37.30497],[68.87488,37.28947],[68.88733,37.27314],[68.89624,37.26972],[68.90728,37.26866],[68.92152,37.27394],[68.92575,37.27947],[68.91897,37.28605],[68.90516,37.29358],[68.90058,37.30572],[68.89191,37.31555],[68.88616,37.32372],[68.89035,37.32844],[68.89746,37.33066],[68.90644,37.32805],[68.9173,37.323],[68.92116,37.31889],[68.93228,37.32025],[68.94438,37.32155],[68.95041,37.32141],[68.96041,37.31955],[68.97333,37.31605],[68.98427,37.31258],[68.9971,37.30666],[69.00794,37.30077],[69.01852,37.28847],[69.02422,37.27953],[69.02391,37.2715],[69.02972,37.26575],[69.0433,37.25338],[69.06192,37.24089],[69.08047,37.22758],[69.09014,37.21772],[69.1016,37.20377],[69.11405,37.18822],[69.12264,37.17677],[69.12647,37.17186],[69.1343,37.16686],[69.14122,37.16427],[69.15008,37.16002],[69.15483,37.1535],[69.16072,37.15013],[69.17266,37.14822],[69.18164,37.14638],[69.18741,37.14061],[69.19625,37.13558],[69.20896,37.12802],[69.22238,37.11244],[69.23114,37.10577],[69.23997,37.10152],[69.24883,37.0973],[69.25592,37.09872],[69.26605,37.10166],[69.2783,37.10694],[69.28555,37.11238],[69.28771,37.11633],[69.29872,37.11602],[69.31886,37.11791],[69.32939,37.12966],[69.35028,37.14916],[69.35864,37.15777],[69.37005,37.16627],[69.38522,37.16908],[69.39841,37.17272],[69.41433,37.19236],[69.4488,37.22349],[69.45517,37.23136],[69.45549,37.23936],[69.44752,37.24039],[69.44039,37.23819],[69.42905,37.23127],[69.42402,37.23141],[69.41713,37.2348],[69.41967,37.24677],[69.42108,37.25639],[69.41649,37.26614],[69.41175,37.27269],[69.40691,37.27683],[69.40819,37.28322],[69.41041,37.28797],[69.40763,37.29366],[69.4018,37.29863],[69.39597,37.3028],[69.39708,37.30519],[69.39919,37.30752],[69.40133,37.31069],[69.40041,37.31311],[69.39749,37.3148],[69.39344,37.31411],[69.38942,37.31422],[69.38461,37.31916],[69.38458,37.32133],[69.3843,37.33522],[69.38566,37.34402],[69.39138,37.35105],[69.39205,37.35186],[69.39116,37.35511],[69.38927,37.35755],[69.38627,37.35844],[69.38163,37.35858],[69.38124,37.35858],[69.38044,37.3626],[69.38021,37.36488],[69.37975,37.36986],[69.37894,37.37469],[69.37713,37.37955],[69.37872,37.39316],[69.36716,37.40549],[69.36936,37.40947],[69.3758,37.41891],[69.37394,37.42297],[69.37613,37.42694],[69.3775,37.43491],[69.3793,37.44308],[69.38122,37.45166],[69.38733,37.45311],[69.39653,37.45608],[69.4113,37.47172],[69.41744,37.47394],[69.42755,37.47527],[69.42972,37.47844],[69.43602,37.48466],[69.4473,37.48916],[69.4486,37.49688],[69.44866,37.49716],[69.45294,37.50266],[69.45922,37.50811],[69.46863,37.51586],[69.47699,37.52286],[69.48694,37.52472],[69.48819,37.52494],[69.48952,37.53213],[69.49485,37.53919],[69.50888,37.54822],[69.51044,37.54919],[69.51339,37.56024],[69.52424,37.58499],[69.5238,37.58486],[69.52417,37.58572],[69.52539,37.58638],[69.53244,37.5903],[69.54055,37.59088],[69.5493,37.58341],[69.56227,37.58063],[69.5743,37.57866],[69.5855,37.58077],[69.60678,37.58336],[69.62088,37.58294],[69.63989,37.57919],[69.663,37.57688],[69.67925,37.57963],[69.69716,37.57427],[69.71221,37.57302],[69.71839,37.57524],[69.73694,37.58352],[69.75344,37.59105],[69.76869,37.5938],[69.77864,37.5903],[69.78552,37.58686],[69.79413,37.57697],[69.80908,37.5733],[69.81819,37.57383],[69.83283,37.58461],[69.85783,37.60069],[69.86808,37.60358],[69.87525,37.60577],[69.88466,37.61269],[69.89492,37.61558],[69.90808,37.61677],[69.92697,37.61058],[69.93872,37.60377],[69.9453,37.59394],[69.94797,37.58663],[69.94921,37.57133],[69.95388,37.56397],[69.96194,37.56372],[69.97613,37.56486],[69.99524,37.56425],[69.99605,37.56022],[70.00475,37.55272],[70.01652,37.54591],[70.02119,37.54655],[70.0313,37.54772],[70.03472,37.54691],[70.04155,37.54269],[70.04344,37.54022],[70.0466,37.54252],[70.05378,37.54469],[70.05683,37.54541],[70.06183,37.54444],[70.06663,37.54027],[70.07444,37.53519],[70.07836,37.53266],[70.08633,37.5308],[70.09233,37.5298],[70.10214,37.52466],[70.14025,37.52097],[70.14341,37.52327],[70.14497,37.52444],[70.14655,37.52558],[70.14978,37.52949],[70.15697,37.53166],[70.16383,37.52822],[70.16789,37.52888],[70.1703,37.53602],[70.17614,37.55108],[70.1768,37.55327],[70.18103,37.56697],[70.191,37.56502],[70.20703,37.56647],[70.21028,37.56677],[70.21052,37.57158],[70.20666,37.57491],[70.20508,37.57775],[70.20505,37.57777],[70.20391,37.57983],[70.205,37.58141],[70.21997,37.57849],[70.22208,37.58002],[70.21944,37.58733],[70.21386,37.59635],[70.21499,37.59872],[70.22333,37.60324],[70.25005,37.61197],[70.25283,37.60786],[70.25978,37.60522],[70.26388,37.60669],[70.26819,37.61136],[70.2663,37.63047],[70.26558,37.63794],[70.26589,37.64352],[70.27016,37.64822],[70.27838,37.65033],[70.27952,37.65269],[70.27922,37.66555],[70.28138,37.66869],[70.28455,37.671],[70.28971,37.67322],[70.29108,37.67958],[70.29113,37.68038],[70.29841,37.68416],[70.30366,37.688],[70.30613,37.69591],[70.3003,37.70013],[70.29358,37.7068],[70.29091,37.7133],[70.2975,37.72272],[70.29753,37.72316],[70.2976,37.72511],[70.29513,37.73483],[70.29341,37.7405],[70.29183,37.74858],[70.29483,37.76614],[70.29196,37.76944],[70.28516,37.7745],[70.27944,37.78111],[70.2758,37.78847],[70.2761,37.79408],[70.28111,37.81155],[70.27733,37.8165],[70.26258,37.82422],[70.24166,37.83055],[70.21258,37.83555],[70.19674,37.84252],[70.18261,37.86225],[70.18064,37.86991],[70.17758,37.88169],[70.17466,37.92188],[70.17744,37.93624],[70.17991,37.94419],[70.18305,37.94649],[70.18808,37.94552],[70.20063,37.93386],[70.20413,37.92333],[70.21003,37.91991],[70.21208,37.92063],[70.2135,37.9278],[70.21577,37.93255],[70.23332,37.93838],[70.24866,37.94108],[70.26569,37.93727],[70.27169,37.93547],[70.27805,37.94086],[70.27441,37.94822],[70.26992,37.9588],[70.26638,37.96855],[70.2656,37.97258],[70.26569,37.97419],[70.27669,37.97141],[70.2816,37.96883],[70.2888,37.97019],[70.29086,37.97091],[70.29227,37.97808],[70.29252,37.98288],[70.29775,37.98513],[70.30483,37.98489],[70.30825,37.99197],[70.31658,37.99572],[70.32583,37.9978],[70.33041,38.00727],[70.33702,38.01666],[70.34433,38.02041],[70.34958,38.02344],[70.35197,38.02977],[70.36027,38.0335],[70.36483,38.04216],[70.36536,38.05177],[70.36758,38.05491],[70.3748,38.05708],[70.39688,38.07075],[70.41877,38.08038],[70.42163,38.08572],[70.42297,38.08816],[70.42558,38.09299],[70.43294,38.09755],[70.44838,38.10102],[70.4658,38.10361],[70.4753,38.10969],[70.48371,38.115],[70.4981,38.11769],[70.50138,38.12158],[70.50174,38.1233],[70.50277,38.12794],[70.49891,38.14894],[70.50369,38.16161],[70.51294,38.18055],[70.51999,38.19713],[70.52903,38.2043],[70.53067,38.20558],[70.53416,38.21347],[70.53844,38.23419],[70.55175,38.25297],[70.55844,38.26313],[70.56586,38.26769],[70.5878,38.2773],[70.59727,38.28258],[70.60166,38.28802],[70.6018,38.3073],[70.60866,38.31988],[70.60541,38.33174],[70.60446,38.33527],[70.60549,38.3408],[70.60597,38.34324],[70.6123,38.34702],[70.62258,38.34825],[70.65094,38.34558],[70.6573,38.34936],[70.66263,38.35319],[70.66791,38.35619],[70.67813,38.35974],[70.68455,38.362],[70.69,38.36741],[70.69052,38.37622],[70.68994,38.38344],[70.68205,38.38774],[70.67424,38.39014],[70.67302,38.39049],[70.6735,38.39849],[70.6781,38.40716],[70.68533,38.40941],[70.68955,38.41075],[70.7018,38.41108],[70.709,38.4108],[70.71605,38.41055],[70.72847,38.4133],[70.73997,38.41872],[70.74108,38.41925],[70.74972,38.42694],[70.75972,38.44019],[70.7653,38.448],[70.76953,38.45024],[70.77664,38.44997],[70.78255,38.44655],[70.79341,38.44049],[70.79369,38.44047],[70.80149,38.43938],[70.80864,38.43914],[70.81383,38.44052],[70.81816,38.44438],[70.81933,38.44675],[70.8265,38.44727],[70.84024,38.43872],[70.842,38.43383],[70.84291,38.43219],[70.84596,38.43208],[70.85136,38.43666],[70.85399,38.44619],[70.85541,38.45258],[70.86069,38.45558],[70.86722,38.46175],[70.87347,38.46391],[70.88255,38.46194],[70.89155,38.45919],[70.89638,38.455],[70.89685,38.44614],[70.89805,38.43897],[70.89833,38.43724],[70.90405,38.43061],[70.91208,38.42869],[70.926,38.42577],[70.92619,38.42575],[70.93397,38.43586],[70.93911,38.43647],[70.94105,38.43477],[70.95022,38.43441],[70.95658,38.43816],[70.95739,38.45097],[70.95372,38.45755],[70.94391,38.46355],[70.94441,38.47155],[70.96683,38.47066],[70.9763,38.47511],[70.98383,38.48122],[70.98908,38.48341],[70.99305,38.48166],[70.99966,38.47338],[71.00441,38.46758],[71.01133,38.46408],[71.0183,38.46138],[71.02114,38.45808],[71.02146,38.45672],[71.02153,38.45652],[71.02278,38.45158],[71.02616,38.44102],[71.03414,38.42224],[71.04064,38.41236],[71.04219,38.40508],[71.04483,38.39855],[71.05175,38.39505],[71.05813,38.39588],[71.06099,38.39627],[71.06463,38.40497],[71.07089,38.40711],[71.07325,38.41183],[71.07961,38.41558],[71.08889,38.41683],[71.09505,38.41736],[71.09794,38.41485],[71.09919,38.40274],[71.10308,38.40019],[71.11016,38.39911],[71.11633,38.39966],[71.11941,38.40033],[71.1213,38.39783],[71.12608,38.39283],[71.13019,38.39347],[71.13571,38.39966],[71.14341,38.39291],[71.14305,38.38733],[71.14894,38.38386],[71.15489,38.38122],[71.15997,38.381],[71.16291,38.37927],[71.16642,38.3703],[71.16872,38.35897],[71.17514,38.34827],[71.18174,38.33824],[71.1868,38.33977],[71.19125,38.34072],[71.193,38.34111],[71.19877,38.33605],[71.20144,38.33033],[71.20224,38.32708],[71.21616,38.32169],[71.22724,38.31963],[71.24013,38.31427],[71.24797,38.30994],[71.25708,38.30875],[71.26824,38.30827],[71.27644,38.30872],[71.2948,38.30875],[71.29963,38.30533],[71.30455,38.30272],[71.3188,38.30211],[71.32177,38.30119],[71.32744,38.29452],[71.32716,38.29066],[71.32705,38.28891],[71.32666,38.28333],[71.3273,38.27766],[71.32772,38.26883],[71.33274,38.2678],[71.34796,38.26716],[71.35394,38.2653],[71.35961,38.25864],[71.36491,38.24716],[71.36724,38.23663],[71.3645,38.22633],[71.36411,38.22072],[71.36694,38.21738],[71.37061,38.21161],[71.37136,38.20755],[71.3678,38.2005],[71.36347,38.19666],[71.36174,38.1863],[71.3618,38.17266],[71.3635,38.16775],[71.36616,38.16202],[71.36386,38.15811],[71.35935,38.15189],[71.35005,38.14988],[71.34177,38.14783],[71.34066,38.14541],[71.33702,38.13758],[71.33294,38.1225],[71.32744,38.11633],[71.32277,38.10769],[71.31852,38.09022],[71.31747,38.075],[71.3125,38.06158],[71.30149,38.04919],[71.29066,38.03922],[71.28538,38.03622],[71.28678,38.02955],[71.28808,38.02344],[71.28844,38.02166],[71.28497,38.01538],[71.27764,38.01169],[71.2743,38.0078],[71.274,38.00299],[71.27674,37.99885],[71.27424,37.99174],[71.27116,37.99108],[71.26597,37.98969],[71.26672,37.98563],[71.26905,37.97511],[71.26819,37.9623],[71.26686,37.95755],[71.2645,37.95283],[71.26108,37.94736],[71.26017,37.93375],[71.25811,37.93302],[71.25305,37.93325],[71.24783,37.93105],[71.24847,37.92541],[71.25336,37.92277],[71.25814,37.91858],[71.26602,37.91502],[71.27319,37.91633],[71.28341,37.91749],[71.28922,37.9285],[71.2913,37.92919],[71.29169,37.92916],[71.29333,37.92911],[71.31052,37.91322],[71.31019,37.91264],[71.3098,37.9121],[71.31324,37.909],[71.31697,37.90402],[71.32233,37.89336],[71.32683,37.88513],[71.33177,37.88333],[71.34014,37.88697],[71.35658,37.89027],[71.36616,37.89708],[71.37249,37.90083],[71.38475,37.90191],[71.40305,37.90272],[71.41574,37.91019],[71.42927,37.91522],[71.44388,37.921],[71.46128,37.92344],[71.47908,37.93149],[71.49292,37.94052],[71.50158,37.94819],[71.51303,37.95249],[71.52938,37.95416],[71.54433,37.9503],[71.55186,37.94191],[71.56644,37.93325],[71.57824,37.92789],[71.58372,37.91961],[71.58535,37.91391],[71.58538,37.90027],[71.58486,37.89308],[71.58816,37.88247],[71.58872,37.87602],[71.59027,37.86952],[71.58977,37.86233],[71.58508,37.85372],[71.58438,37.85138],[71.58244,37.845],[71.58158,37.833],[71.58386,37.82244],[71.58821,37.81261],[71.5908,37.80608],[71.59027,37.79886],[71.58908,37.7965],[71.5828,37.79358],[71.5671,37.78625],[71.55063,37.77986],[71.53507,37.76638],[71.52994,37.75741],[71.53527,37.74505],[71.54247,37.73972],[71.54472,37.73391],[71.54497,37.73102],[71.54675,37.70949],[71.54091,37.70333],[71.53971,37.69994],[71.53605,37.69127],[71.52794,37.67638],[71.52383,37.6613],[71.52427,37.65325],[71.52588,37.64755],[71.52236,37.64049],[71.51977,37.63258],[71.51833,37.62622],[71.51349,37.61519],[71.51216,37.61041],[71.50433,37.59952],[71.50436,37.59936],[71.5056,37.58902],[71.50489,37.5786],[71.50336,37.57147],[71.49944,37.55877],[71.50011,37.55394],[71.4978,37.55002],[71.4953,37.54291],[71.49394,37.53813],[71.49469,37.53411],[71.49485,37.53394],[71.49942,37.52986],[71.50011,37.52502],[71.50096,37.52013],[71.50155,37.51691],[71.50316,37.51547],[71.5063,37.51269],[71.50714,37.51025],[71.5078,37.50539],[71.51489,37.49144],[71.52047,37.48474],[71.52302,37.47822],[71.51921,37.46714],[71.51347,37.45697],[71.50922,37.45394],[71.5038,37.44855],[71.50169,37.44702],[71.49458,37.40316],[71.49222,37.39847],[71.48722,37.39869],[71.4823,37.4005],[71.47799,37.39669],[71.47444,37.3888],[71.47311,37.38405],[71.47783,37.37983],[71.48558,37.37547],[71.48835,37.37213],[71.48899,37.36647],[71.48566,37.34347],[71.48508,37.33933],[71.48664,37.33286],[71.49008,37.32466],[71.49733,37.31308],[71.499,37.30819],[71.49475,37.29072],[71.49019,37.26841],[71.48371,37.24783],[71.47647,37.23047],[71.47308,37.2265],[71.46661,37.21886],[71.459,37.21036],[71.45649,37.20325],[71.45716,37.18394],[71.45188,37.18016],[71.45114,37.17933],[71.44644,37.17397],[71.44574,37.16436],[71.44694,37.15224],[71.4455,37.14588],[71.44305,37.13958],[71.44244,37.13077],[71.44005,37.12525],[71.43922,37.11322],[71.44078,37.10675],[71.44144,37.10189],[71.4356,37.09008],[71.42983,37.07911],[71.4273,37.07119],[71.4258,37.06402],[71.42719,37.05511],[71.43103,37.05255],[71.43597,37.05152],[71.43663,37.04666],[71.43819,37.04016],[71.44674,37.03336],[71.44841,37.0315],[71.45124,37.0283],[71.45791,37.02083],[71.4593,37.01191],[71.46069,37.0078],[71.46263,37.00213],[71.46594,36.99233],[71.46633,36.9835],[71.46591,36.97708],[71.46275,36.9748],[71.45697,36.96383],[71.45913,36.95166],[71.46677,36.94649],[71.47716,36.93864],[71.47916,36.93711],[71.48336,36.92569],[71.48572,36.9213],[71.48874,36.91661],[71.49722,36.909],[71.50566,36.90058],[71.51158,36.88505],[71.5193,36.86702],[71.52541,36.85388],[71.53536,36.83897],[71.54111,36.82105],[71.54824,36.80866],[71.55033,36.79572],[71.55547,36.78344],[71.55899,36.77683],[71.55913,36.76477],[71.55941,36.764],[71.55997,36.76233],[71.56058,36.75669],[71.56533,36.75325],[71.57091,36.74739],[71.57836,36.7398],[71.58461,36.72905],[71.59522,36.72375],[71.60388,36.71936],[71.61638,36.71233],[71.61897,36.70661],[71.62344,36.69916],[71.62708,36.69416],[71.63591,36.69216],[71.64675,36.69005],[71.65149,36.68661],[71.65805,36.68069],[71.66683,36.67786],[71.69866,36.67638],[71.7125,36.67413],[71.72366,36.67683],[71.73461,36.6763],[71.74758,36.67649],[71.75677,36.67927],[71.78258,36.67727],[71.8078,36.68088],[71.83022,36.68705],[71.85205,36.69886],[71.86477,36.70872],[71.86472,36.70791],[71.87322,36.71472],[71.88569,36.72135],[71.89566,36.73455],[71.90139,36.7386],[71.90141,36.73863],[71.90305,36.7398],[71.94725,36.75616],[71.95842,36.77169],[71.96575,36.77616],[71.97119,36.7823],[71.97941,36.78513],[71.99091,36.7918],[72.00553,36.79991],[72.01049,36.81252],[72.01366,36.8148],[72.0298,36.81641],[72.03402,36.81941],[72.04477,36.82933],[72.04714,36.83402],[72.05069,36.83486],[72.06147,36.83874],[72.09525,36.84405],[72.09788,36.84416],[72.09896,36.84433],[72.10619,36.84719],[72.11558,36.86519],[72.13472,36.8795],[72.14839,36.8863],[72.1728,36.90572],[72.2061,36.92172],[72.23219,36.93486],[72.25833,36.9488],[72.2863,36.96022],[72.31872,36.97705],[72.37305,36.99191],[72.39966,36.99858],[72.42422,37.00452],[72.44705,37.00172],[72.47274,36.99713],[72.48786,36.99794],[72.50283,36.99716],[72.51694,36.99802],[72.52827,37.00144],[72.54677,37.00688],[72.55889,37.00783],[72.59169,37.01652],[72.60655,37.02616],[72.6218,37.02855],[72.63272,37.02716],[72.6503,37.02138],[72.65916,37.0193],[72.67033,37.02111],[72.67563,37.02622],[72.67974,37.03747],[72.68605,37.05241],[72.69733,37.06708],[72.70122,37.0773],[72.71205,37.09275],[72.71347,37.09452],[72.71733,37.09905],[72.7383,37.12352],[72.76947,37.18211],[72.78322,37.20144],[72.79447,37.2153],[72.80525,37.22352],[72.8178,37.22927],[72.83789,37.22897],[72.85927,37.23177],[72.88099,37.2386],[72.89808,37.24972],[72.92894,37.27622],[72.94969,37.28699],[72.99727,37.30119],[73.04122,37.30833],[73.0753,37.31763],[73.09046,37.32961],[73.10541,37.36091],[73.12239,37.37038],[73.13153,37.38191],[73.13678,37.39527],[73.1413,37.40066],[73.15605,37.40783],[73.18499,37.40453],[73.204,37.40263],[73.21747,37.40666],[73.23872,37.41827],[73.24285,37.43008],[73.26511,37.44163],[73.28105,37.45035],[73.29033,37.45222],[73.29972,37.45569],[73.30841,37.46241],[73.30913,37.46235],[73.3235,37.46149],[73.3343,37.45844],[73.34627,37.45694],[73.35939,37.45694],[73.36003,37.45288],[73.36119,37.44397],[73.36769,37.43797],[73.36853,37.43833],[73.39616,37.45072],[73.42994,37.46638],[73.45363,37.47139],[73.47689,37.47158],[73.50127,37.47069],[73.51008,37.47036],[73.53855,37.46219],[73.55477,37.45233],[73.56991,37.44175],[73.59191,37.43961],[73.63797,37.43594],[73.64878,37.43286],[73.66011,37.43536],[73.67138,37.43708],[73.70363,37.43666],[73.73283,37.43563],[73.75597,37.435],[73.76274,37.43213],[73.76775,37.42136],[73.7685,37.38833],[73.76847,37.35777],[73.7673,37.346],[73.76658,37.33858],[73.75205,37.32422],[73.73613,37.31636],[73.72072,37.3133],[73.70047,37.31216],[73.67694,37.3088],[73.66061,37.30661],[73.65544,37.30533],[73.65013,37.30244],[73.64533,37.28424],[73.63786,37.27988],[73.62474,37.27988],[73.61761,37.27872],[73.61296,37.27258],[73.61219,37.26458],[73.61741,37.25622],[73.62733,37.24433],[73.65158,37.23477],[73.65705,37.23927],[73.67283,37.24633],[73.68399,37.24722],[73.7108,37.24313],[73.72733,37.23727],[73.7393,37.22605],[73.746,37.22241],[73.75208,37.22283],[73.76055,37.22711],[73.76897,37.23061],[73.79188,37.22835],[73.81813,37.22908],[73.83255,37.23219],[73.84036,37.23975],[73.84722,37.24816],[73.85285,37.25422],[73.86344,37.25919],[73.89408,37.2733],[73.90194,37.27505],[73.91366,37.27769],[73.92308,37.28111],[73.92691,37.27925],[73.93761,37.27533],[73.94552,37.27399],[73.94994,37.27774],[73.95674,37.28536],[73.9635,37.29216],[73.97374,37.29391],[73.98349,37.29085],[73.99527,37.28766],[74,37.28736],[74.00716,37.28811],[74.02288,37.30463],[74.02966,37.30613],[74.04019,37.30049],[74.04582,37.30172],[74.05899,37.31277],[74.09983,37.32641],[74.1015,37.3268],[74.1433,37.33583],[74.14614,37.33988],[74.14566,37.35228],[74.16402,37.34266],[74.18483,37.33436],[74.19921,37.33441],[74.21191,37.34058],[74.22225,37.34802],[74.22922,37.36102],[74.2416,37.36763],[74.24502,37.37172],[74.24586,37.37544],[74.24322,37.37966],[74.22819,37.39083],[74.2263,37.39625],[74.23661,37.41447],[74.246,37.41241],[74.25883,37.40688],[74.26989,37.40538],[74.29116,37.39866],[74.30655,37.39672],[74.32372,37.3978],[74.33102,37.40002],[74.34469,37.41633],[74.356,37.41875],[74.36755,37.41819],[74.37702,37.415],[74.38236,37.40586],[74.38324,37.3983],[74.38942,37.39333],[74.40039,37.3893],[74.42461,37.38822],[74.45649,37.39994],[74.46739,37.40024],[74.48458,37.39374],[74.51738,37.39722],[74.52597,37.40177],[74.54405,37.39855],[74.55325,37.39485],[74.55733,37.39047],[74.5578,37.38085],[74.56222,37.37947],[74.57519,37.38116],[74.58828,37.38436],[74.60544,37.38555],[74.6255,37.38344],[74.64174,37.38527],[74.65814,37.39094],[74.68258,37.40414],[74.7068,37.3805],[74.78744,37.35349],[74.79502,37.35094],[74.80305,37.34719],[74.81219,37.34027],[74.82047,37.33722],[74.82969,37.32916],[74.84777,37.29464],[74.87127,37.26819],[74.87944,37.2511],[74.87855,37.23569],[74.87322,37.23016],[74.84494,37.22077],[74.82685,37.21694],[74.81469,37.21844],[74.79544,37.2265],[74.78888,37.2333],[74.78147,37.25202],[74.77727,37.25825],[74.76505,37.268],[74.76136,37.26955],[74.74725,37.27541],[74.72016,37.27666],[74.70469,37.27247],[74.6933,37.26733],[74.65992,37.23838],[74.6503,37.23652],[74.63772,37.23961],[74.62513,37.24633],[74.61411,37.24808],[74.59552,37.24327],[74.58033,37.23563],[74.57211,37.2343],[74.56194,37.23566],[74.54272,37.24274],[74.53221,37.24497],[74.50797,37.23919],[74.49847,37.23963],[74.48911,37.24191],[74.48664,37.23697],[74.49227,37.23083],[74.49258,37.22325],[74.48847,37.2173],[74.48078,37.21302],[74.47269,37.20249],[74.46978,37.19569],[74.4733,37.18761],[74.47872,37.18419],[74.49372,37.17966],[74.49433,37.17555],[74.48374,37.16424],[74.45671,37.14702],[74.44875,37.13169],[74.43222,37.12328],[74.43311,37.11574],[74.45533,37.11022],[74.46619,37.10433],[74.48127,37.09619],[74.48644,37.09338],[74.50283,37.07444],[74.52478,37.03235],[74.52958,37.02938],[74.55239,37.03074],[74.57155,37.02978],[74.57219,37.02997],[74.57341,37.02166],[74.56891,36.98744],[74.56297,36.96419],[74.55841,36.96027],[74.55075,36.95966],[74.54149,36.96105],[74.53658,36.96516],[74.52833,36.9905],[74.52463,36.9933],[74.51736,36.99891],[74.49813,36.99955],[74.42786,36.99763],[74.42055,36.99611],[74.41344,36.98816],[74.40119,36.98044],[74.37394,36.97399],[74.35408,36.96469],[74.33444,36.94699],[74.33141,36.94424],[74.31083,36.92986],[74.264,36.90444],[74.2548,36.90127],[74.2523,36.90039],[74.23635,36.89958],[74.21028,36.90761],[74.19061,36.91005],[74.16647,36.91153],[74.15203,36.90986],[74.14753,36.90569],[74.14119,36.89572],[74.13744,36.88275],[74.13422,36.87155],[74.12741,36.84811],[74.11966,36.84172],[74.10972,36.84094],[74.09413,36.84633],[74.08499,36.8463],[74.07888,36.84413],[74.05275,36.82872],[74.03099,36.82914],[74.02525,36.83297],[74.00608,36.83677],[74,36.83402],[73.97969,36.83302],[73.96319,36.8375],[73.93552,36.86736],[73.91735,36.87619],[73.90833,36.88102],[73.89011,36.8788],[73.8838,36.87922],[73.87913,36.88547],[73.84658,36.89861],[73.82213,36.89764],[73.80797,36.89344],[73.80016,36.88969],[73.79435,36.89516],[73.79074,36.90133],[73.78461,36.90344],[73.77594,36.90144],[73.7633,36.90224],[73.74996,36.9065],[73.74025,36.90455],[73.73683,36.90222],[73.73352,36.90072],[73.72511,36.90127],[73.71386,36.90538],[73.70505,36.91272],[73.69347,36.91347],[73.66255,36.91116],[73.63955,36.90325],[73.6185,36.90458],[73.59764,36.90758],[73.58555,36.90322],[73.58338,36.90152],[73.57755,36.89691],[73.55036,36.88925],[73.52777,36.88555],[73.51572,36.89224],[73.50641,36.89452],[73.46958,36.89677],[73.44061,36.89261],[73.41664,36.89661],[73.40313,36.89913],[73.38905,36.89574],[73.37225,36.88572],[73.35694,36.88069],[73.3478,36.88463],[73.33622,36.88533],[73.31771,36.87963],[73.30661,36.87313],[73.29766,36.87369],[73.28919,36.87933],[73.27336,36.88855],[73.26194,36.89025],[73.23339,36.88677],[73.21566,36.88988],[73.18939,36.88319],[73.1818,36.88466],[73.14414,36.89411],[73.12166,36.88716],[73.08836,36.88808],[73.07174,36.88905],[73.04727,36.87397],[73.02683,36.86069],[72.99747,36.86238],[72.96888,36.8733],[72.95339,36.87211],[72.92949,36.84875],[72.92414,36.84594],[72.90752,36.84688],[72.88263,36.84108],[72.87105,36.84069],[72.82508,36.84327],[72.79853,36.84786],[72.78158,36.84466],[72.76266,36.8488],[72.75,36.85055],[72.71847,36.84197],[72.68524,36.8438],[72.65616,36.84983],[72.63161,36.84841],[72.62658,36.84158],[72.5661,36.83241],[72.54538,36.82286],[72.50753,36.79288],[72.50447,36.78239],[72.49522,36.77755],[72.41116,36.77666],[72.39005,36.76177],[72.36763,36.75763],[72.33683,36.75922],[72.31369,36.74619],[72.31205,36.74602],[72.30255,36.74499],[72.24136,36.75347],[72.22691,36.73822],[72.22133,36.72991],[72.22127,36.7298],[72.19689,36.69355],[72.20444,36.67719],[72.21447,36.66422],[72.19163,36.65472],[72.16555,36.65961],[72.14069,36.65197],[72.11624,36.64966],[72.10291,36.64855],[72.09727,36.63283],[72.10622,36.60572],[72.09674,36.59733],[72.05916,36.59563],[72.01294,36.56772],[71.96438,36.56655],[71.9353,36.56089],[71.92778,36.5488],[71.91716,36.52444],[71.91664,36.51736],[71.90914,36.5053],[71.88486,36.50469],[71.83205,36.50547],[71.82186,36.48641],[71.81786,36.46172],[71.81852,36.44452],[71.81886,36.44197],[71.82905,36.43452],[71.86166,36.42941],[71.86502,36.41505],[71.85727,36.39941],[71.84371,36.39474],[71.81744,36.396],[71.79577,36.40058],[71.75788,36.42372],[71.7458,36.4326],[71.72447,36.44838],[71.70744,36.45627],[71.68794,36.46075],[71.67763,36.46875],[71.67336,36.47208],[71.65619,36.47822],[71.63594,36.47205],[71.62361,36.45308],[71.62258,36.43883],[71.62197,36.43005],[71.61389,36.40911],[71.5928,36.39055],[71.56539,36.37583],[71.55613,36.36914],[71.55952,36.35477],[71.57216,36.34708],[71.56874,36.32949],[71.53552,36.32566],[71.52422,36.32086],[71.52116,36.30855],[71.52055,36.29972],[71.49974,36.29752],[71.48516,36.29597],[71.46886,36.2825],[71.45719,36.27236],[71.4443,36.27],[71.44163,36.26952],[71.43447,36.26094],[71.41905,36.22789],[71.40047,36.21272],[71.38458,36.20455],[71.36685,36.2018],[71.35908,36.19869],[71.35241,36.18122],[71.34744,36.17255],[71.34058,36.16838],[71.31028,36.15816],[71.28419,36.14508],[71.2546,36.12861],[71.24544,36.12277],[71.24266,36.11399],[71.2438,36.09794],[71.24236,36.09269],[71.22799,36.09063],[71.20808,36.07105],[71.19899,36.04922],[71.19953,36.04633],[71.20141,36.03577],[71.21502,36.0263],[71.2288,36.0195],[71.2536,35.99708],[71.26108,35.99408],[71.28485,35.98949],[71.3028,35.97983],[71.31933,35.96488],[71.33225,35.96163],[71.34963,35.95999],[71.36169,35.96033],[71.37672,35.95611],[71.38138,35.94436],[71.38408,35.91936],[71.38114,35.90791],[71.38072,35.90172],[71.39319,35.89227],[71.4073,35.89075],[71.41819,35.89027],[71.42966,35.88174],[71.4618,35.8403],[71.46741,35.82672],[71.48986,35.80347],[71.48936,35.79639],[71.48133,35.77452],[71.48055,35.763],[71.48535,35.75388],[71.4978,35.74441],[71.52216,35.73352],[71.5328,35.7295],[71.54666,35.72022],[71.54677,35.70544],[71.5388,35.68827],[71.50958,35.65824],[71.50042,35.64022],[71.49947,35.62641],[71.51005,35.61577],[71.52627,35.60488],[71.55586,35.59152],[71.57788,35.58313],[71.60121,35.57744],[71.61222,35.57322],[71.61416,35.56852],[71.61088,35.55391],[71.59928,35.53322],[71.59369,35.5178],[71.59339,35.49752],[71.60608,35.48491],[71.63616,35.46322],[71.64894,35.45247],[71.65066,35.445],[71.64638,35.43227],[71.64105,35.42052],[71.62336,35.40936],[71.5558,35.31286],[71.55358,35.29661],[71.55355,35.29636],[71.55944,35.28408],[71.57003,35.27436],[71.59594,35.25838],[71.62252,35.23591],[71.63541,35.227],[71.65763,35.22319],[71.67197,35.21883],[71.67672,35.20661],[71.67488,35.19652],[71.63894,35.165],[71.62882,35.14888],[71.6173,35.1398],[71.60363,35.13586],[71.58533,35.12936],[71.55258,35.10797],[71.53577,35.09041],[71.53005,35.07236],[71.53397,35.06391],[71.53883,35.05361],[71.54666,35.03766],[71.55603,35.02805],[71.55208,35.01908],[71.53488,35.01252],[71.5176,35.00416],[71.51013,34.99258],[71.51041,34.98066],[71.50646,34.97166],[71.49925,34.96374],[71.48574,34.96163],[71.47621,34.95288],[71.44564,34.94513],[71.43291,34.93838],[71.42238,34.93061],[71.40061,34.9215],[71.38472,34.91672],[71.37016,34.91555],[71.3543,34.91166],[71.34371,34.90297],[71.32839,34.88991],[71.30986,34.87883],[71.30119,34.86547],[71.29575,34.85011],[71.29244,34.83377],[71.27944,34.80502],[71.27122,34.79805],[71.2463,34.79088],[71.22988,34.76044],[71.22499,34.75333],[71.2191,34.74808],[71.19572,34.74727],[71.18172,34.73688],[71.17128,34.72999],[71.15427,34.72433],[71.14372,34.71561],[71.13666,34.70949],[71.11452,34.71047],[71.10602,34.69891],[71.09566,34.67552],[71.09586,34.66086],[71.10578,34.64211],[71.11058,34.62997],[71.10705,34.62036],[71.08708,34.59044],[71.0738,34.58222],[71.05433,34.57691],[71.01797,34.57316],[71.00375,34.56675],[70.99555,34.55477],[70.99283,34.52763],[70.99485,34.4915],[71.0068,34.46111],[71.023,34.44813],[71.0485,34.43091],[71.05358,34.4275],[71.06536,34.41205],[71.07602,34.39577],[71.08728,34.38913],[71.11846,34.379],[71.15394,34.36955],[71.16947,34.3636],[71.17124,34.35825],[71.17108,34.33891],[71.15841,34.32277],[71.15675,34.31316],[71.13033,34.28091],[71.12205,34.26719],[71.1213,34.25494],[71.12652,34.23714],[71.1353,34.2253],[71.12828,34.21419],[71.12444,34.2038],[71.12605,34.17913],[71.12608,34.16241],[71.10939,34.14908],[71.08586,34.12088],[71.07966,34.11344],[71.07274,34.10569],[71.07733,34.07966],[71.07627,34.0625],[71.06527,34.0518],[71.04235,34.04933],[71.03416,34.05052],[71.0178,34.03661],[70.99869,34.0288],[70.98317,34.02861],[70.95463,34.01861],[70.9356,34.01166],[70.9253,34.01208],[70.91794,34.0098],[70.91638,34.00127],[70.89872,33.98222],[70.88494,33.97674],[70.8685,33.9783],[70.85108,33.98072],[70.82428,33.98183],[70.80938,33.97469],[70.78833,33.9678],[70.77947,33.95783],[70.76794,33.95486],[70.75072,33.96072],[70.74036,33.96027],[70.70114,33.96097],[70.6763,33.96022],[70.65116,33.95433],[70.63066,33.95686],[70.59388,33.96433],[70.56047,33.95786],[70.54772,33.95147],[70.53913,33.94577],[70.52502,33.95233],[70.51139,33.94855],[70.50183,33.94377],[70.46772,33.94333],[70.43939,33.95386],[70.4263,33.96038],[70.40372,33.96294],[70.32624,33.96322],[70.29794,33.97458],[70.29783,33.97286],[70.27911,33.98027],[70.26094,33.97772],[70.23883,33.97314],[70.22377,33.98119],[70.19821,33.9853],[70.1693,33.99919],[70.1543,34.0083],[70.13647,34.01216],[70.11191,34.01086],[70.10016,34.00805],[70.07991,34.01519],[70.06747,34.02419],[70.04619,34.03672],[70.02441,34.03961],[70.01927,34.03978],[70.01197,34.04861],[70.00166,34.04894],[69.98711,34.04085],[69.96636,34.03833],[69.91349,34.03794],[69.89753,34.02774],[69.89666,34.00955],[69.90105,33.9933],[69.90066,33.98474],[69.89516,33.97741],[69.87669,33.96836],[69.8658,33.95586],[69.86119,33.93991],[69.86575,33.92691],[69.88297,33.91025],[69.90389,33.89027],[69.91219,33.87497],[69.9163,33.85341],[69.92597,33.84022],[69.94594,33.82775],[69.95569,33.81669],[69.96302,33.78213],[69.9698,33.76261],[69.99183,33.74044],[70.00563,33.73352],[70.02603,33.73069],[70.03505,33.73147],[70.09211,33.71664],[70.10247,33.71841],[70.11677,33.72222],[70.12447,33.72194],[70.13697,33.71505],[70.1501,33.6953],[70.15071,33.68241],[70.14719,33.66325],[70.14927,33.65352],[70.16933,33.64422],[70.18966,33.6403],[70.19702,33.6336],[70.19358,33.61655],[70.17941,33.56452],[70.17472,33.54752],[70.17358,33.52505],[70.18191,33.51297],[70.20055,33.50158],[70.20764,33.48952],[70.2148,33.47963],[70.23124,33.4758],[70.24008,33.47336],[70.25238,33.4386],[70.25849,33.43302],[70.28786,33.43194],[70.2978,33.42622],[70.30097,33.41325],[70.31539,33.39555],[70.31494,33.387],[70.31172,33.37424],[70.32099,33.35569],[70.32658,33.34047],[70.32352,33.33094],[70.30816,33.33041],[70.29142,33.32783],[70.27108,33.30497],[70.23347,33.2688],[70.20827,33.25041],[70.20694,33.24974],[70.18994,33.24141],[70.16805,33.23791],[70.16397,33.23269],[70.15574,33.22119],[70.13111,33.21347],[70.10414,33.21014],[70.09386,33.20836],[70.07894,33.21638],[70.0673,33.21355],[70.02308,33.14327],[70.00638,33.14061],[70,33.13977],[69.98713,33.13805],[69.97683,33.13627],[69.96514,33.1313],[69.94589,33.12872],[69.9288,33.11752],[69.91669,33.10397],[69.90127,33.10127],[69.89236,33.10158],[69.87552,33.09569],[69.85644,33.09633],[69.8288,33.10475],[69.79911,33.12391],[69.78653,33.12755],[69.77347,33.12047],[69.7668,33.11425],[69.74639,33.11383],[69.7373,33.10983],[69.73049,33.10038],[69.72255,33.09314],[69.70458,33.0905],[69.68947,33.09419],[69.67941,33.09772],[69.66672,33.09811],[69.65511,33.09524],[69.61699,33.09749],[69.58005,33.09755],[69.56663,33.08189],[69.54274,33.05905],[69.50736,33.02925],[69.50711,33.02902],[69.49964,33.00247],[69.49302,32.96622],[69.49202,32.94269],[69.51508,32.88627],[69.53108,32.874],[69.53458,32.86641],[69.53052,32.86116],[69.51247,32.85422],[69.50077,32.84814],[69.49739,32.84849],[69.47422,32.85105],[69.46391,32.84708],[69.45825,32.83333],[69.44097,32.81455],[69.41217,32.79288],[69.39522,32.78158],[69.39236,32.77416],[69.39311,32.7613],[69.40277,32.74922],[69.4151,32.7403],[69.43125,32.73233],[69.44122,32.72774],[69.44216,32.72022],[69.44047,32.70955],[69.4388,32.69997],[69.43727,32.69358],[69.43697,32.68608],[69.44294,32.67736],[69.44774,32.67077],[69.45122,32.66316],[69.44441,32.65158],[69.43369,32.63691],[69.41635,32.616],[69.4001,32.58969],[69.38524,32.56655],[69.3428,32.54955],[69.32608,32.54252],[69.30072,32.54111],[69.28522,32.53297],[69.27022,32.50555],[69.24069,32.46138],[69.23877,32.4443],[69.25025,32.414],[69.27141,32.37377],[69.28082,32.35638],[69.27958,32.29216],[69.26997,32.27208],[69.27386,32.20986],[69.27578,32.19374],[69.27366,32.17239],[69.27283,32.151],[69.28947,32.09272],[69.2861,32.07138],[69.29846,32],[69.30033,31.99194],[69.31199,31.98613],[69.31272,31.97608],[69.31527,31.96877],[69.3235,31.94416],[69.3233,31.94072],[69.31761,31.92808],[69.31285,31.9248],[69.29927,31.91913],[69.27766,31.91152],[69.27185,31.90619],[69.26725,31.89514],[69.26258,31.88661],[69.23111,31.86258],[69.21064,31.85408],[69.20341,31.85261],[69.1976,31.84838],[69.19758,31.84824],[69.19255,31.8308],[69.19233,31.83],[69.18575,31.82327],[69.18094,31.80947],[69.17469,31.79999],[69.15625,31.78394],[69.14897,31.75888],[69.13524,31.74791],[69.13227,31.73619],[69.12741,31.72447],[69.12,31.72022],[69.12011,31.719],[69.12102,31.70994],[69.11794,31.70325],[69.10969,31.70038],[69.09644,31.69355],[69.09647,31.69305],[69.09647,31.69263],[69.08116,31.68119],[69.06647,31.66725],[69.0468,31.65986],[69.0315,31.65022],[69.02417,31.64211],[69.021,31.62672],[69.01088,31.62472],[69.00091,31.62825],[68.99344,31.62697],[68.98594,31.628],[68.97827,31.63613],[68.96891,31.63552],[68.96158,31.64044],[68.94916,31.64575],[68.94441,31.64225],[68.93367,31.62055],[68.92847,31.61336],[68.91688,31.60472],[68.90064,31.60125],[68.89536,31.60133],[68.89438,31.60133],[68.872,31.60169],[68.85869,31.59827],[68.8483,31.59741],[68.84355,31.59869],[68.84183,31.59913],[68.83152,31.60583],[68.82191,31.605],[68.81216,31.60963],[68.80494,31.60997],[68.7975,31.61877],[68.78266,31.63525],[68.77794,31.65508],[68.77349,31.66097],[68.75189,31.66952],[68.74283,31.67944],[68.717,31.69663],[68.71391,31.70208],[68.71572,31.71608],[68.70925,31.75099],[68.70183,31.76989],[68.69805,31.77141],[68.68219,31.77366],[68.67816,31.77336],[68.63952,31.77563],[68.63222,31.77825],[68.5821,31.82086],[68.57611,31.82555],[68.57013,31.82797],[68.5548,31.82036],[68.53841,31.81111],[68.52069,31.80116],[68.47783,31.78066],[68.46594,31.77405],[68.46497,31.77383],[68.4513,31.77055],[68.43697,31.76524],[68.43311,31.76325],[68.4476,31.75788],[68.45766,31.75213],[68.46366,31.74813],[68.47916,31.75025],[68.49292,31.7528],[68.49836,31.75383],[68.53852,31.75458],[68.56402,31.75252],[68.57611,31.75161],[68.58203,31.75033],[68.57463,31.73486],[68.56353,31.71977],[68.55561,31.71436],[68.53713,31.71402],[68.51039,31.73388],[68.50089,31.7383],[68.49038,31.74038],[68.47916,31.73925],[68.45664,31.74066],[68.45339,31.74219],[68.44533,31.7425],[68.43611,31.74713],[68.42302,31.75536],[68.42175,31.75736],[68.41952,31.75619],[68.40958,31.75716],[68.37202,31.75847],[68.32089,31.75747],[68.28661,31.757],[68.27822,31.7598],[68.25375,31.7815],[68.25096,31.78536],[68.25936,31.80155],[68.24124,31.80644],[68.19144,31.81275],[68.17749,31.8145],[68.17191,31.82172],[68.17119,31.82788],[68.16889,31.83425],[68.16494,31.83072],[68.15408,31.81744],[68.14436,31.80119],[68.14044,31.79814],[68.12108,31.76597],[68.11669,31.75869],[68.10121,31.74761],[68.09083,31.73638],[68.08408,31.72869],[68.06733,31.7155],[68.06749,31.71025],[68.06408,31.69938],[68.05783,31.6933],[68.0468,31.68597],[68.0315,31.67922],[68.02255,31.67375],[67.98772,31.64891],[67.9698,31.63958],[67.94991,31.63341],[67.93716,31.63288],[67.92453,31.63238],[67.91683,31.63013],[67.90438,31.62597],[67.8945,31.62572],[67.88661,31.62944],[67.87377,31.62961],[67.86869,31.6288],[67.84314,31.61652],[67.81597,31.59633],[67.81172,31.59161],[67.80358,31.58213],[67.79,31.57219],[67.77819,31.5655],[67.76697,31.55674],[67.74913,31.54025],[67.74205,31.53372],[67.72605,31.52483],[67.71308,31.52063],[67.70433,31.5198],[67.69977,31.51938],[67.6778,31.52091],[67.66175,31.52097],[67.6538,31.51872],[67.65,31.51844],[67.64847,31.51836],[67.63639,31.52813],[67.62774,31.53019],[67.62155,31.53116],[67.61005,31.53136],[67.58455,31.53438],[67.56955,31.53469],[67.5595,31.53236],[67.554,31.5288],[67.55503,31.52194],[67.57566,31.50505],[67.591,31.47958],[67.59505,31.4705],[67.59864,31.45961],[67.59911,31.45366],[67.59469,31.4343],[67.59764,31.4268],[67.60539,31.41852],[67.62286,31.41508],[67.62774,31.41336],[67.63378,31.40069],[67.64405,31.39683],[67.66007,31.39722],[67.68922,31.40436],[67.72633,31.41191],[67.74094,31.41477],[67.75033,31.41363],[67.76041,31.40747],[67.76403,31.40341],[67.77133,31.39994],[67.7783,31.39116],[67.78577,31.37461],[67.78986,31.35661],[67.78544,31.34391],[67.77558,31.33433],[67.77408,31.33286],[67.76277,31.32755],[67.75616,31.3258],[67.73786,31.32458],[67.73119,31.32322],[67.71772,31.32341],[67.7071,31.32025],[67.69171,31.31369],[67.68289,31.30683],[67.6583,31.29155],[67.62041,31.27638],[67.61219,31.27527],[67.60294,31.27275],[67.59063,31.27402],[67.58019,31.2733],[67.57466,31.27294],[67.57099,31.27077],[67.53925,31.26355],[67.53136,31.26038],[67.51039,31.24997],[67.49066,31.24214],[67.46416,31.23755],[67.44405,31.23288],[67.43066,31.22772],[67.40641,31.21974],[67.39297,31.21708],[67.39052,31.21658],[67.36616,31.21913],[67.34536,31.21972],[67.32719,31.21372],[67.31461,31.21519],[67.30486,31.21197],[67.29149,31.2125],[67.2715,31.20577],[67.2621,31.20688],[67.24583,31.21469],[67.22699,31.21944],[67.19574,31.22061],[67.18333,31.22486],[67.17099,31.24008],[67.16633,31.24338],[67.11761,31.2413],[67.10997,31.23925],[67.09371,31.23191],[67.06903,31.22961],[67.05616,31.23083],[67.04963,31.23386],[67.04025,31.23541],[67.03099,31.24019],[67.02566,31.24666],[67.02185,31.25502],[67.0248,31.2613],[67.04025,31.26933],[67.04775,31.27527],[67.0513,31.28591],[67.05002,31.29161],[67.04447,31.30383],[67.03463,31.30927],[67.0188,31.31133],[66.98566,31.31286],[66.9691,31.31261],[66.95772,31.31066],[66.95183,31.30983],[66.93419,31.30561],[66.90227,31.29616],[66.8668,31.28272],[66.85658,31.2785],[66.83496,31.26427],[66.82228,31.2483],[66.80802,31.22644],[66.80577,31.224],[66.802,31.21908],[66.79291,31.21305],[66.77625,31.2098],[66.75785,31.20969],[66.73108,31.2125],[66.72016,31.20597],[66.71817,31.20269],[66.71316,31.18261],[66.7093,31.16069],[66.70361,31.15066],[66.69694,31.13211],[66.68619,31.11527],[66.68814,31.10111],[66.68421,31.09319],[66.68316,31.07458],[66.667,31.06675],[66.66422,31.063],[66.65983,31.06033],[66.6388,31.04177],[66.61816,31.02047],[66.57963,30.9885],[66.56255,30.97761],[66.53389,30.97024],[66.51855,30.96839],[66.50746,30.96616],[66.48416,30.96402],[66.48239,30.96191],[66.44622,30.95588],[66.44008,30.95436],[66.40097,30.94472],[66.39133,30.9405],[66.38658,30.93391],[66.38394,30.92188],[66.38133,30.91494],[66.37191,30.88227],[66.36172,30.84408],[66.34139,30.77275],[66.33303,30.74058],[66.3311,30.73661],[66.32222,30.70488],[66.31608,30.68838],[66.29877,30.62677],[66.29294,30.60983],[66.28936,30.59594],[66.28666,30.58727],[66.28394,30.57858],[66.28105,30.56927],[66.28108,30.56308],[66.28269,30.55694],[66.29233,30.53777],[66.29788,30.5093],[66.30535,30.50244],[66.30994,30.50077],[66.32592,30.49327],[66.32763,30.49036],[66.3398,30.4793],[66.33663,30.45602],[66.33891,30.44694],[66.34958,30.43377],[66.35411,30.42727],[66.35436,30.42177],[66.35111,30.41225],[66.33799,30.39252],[66.33469,30.38347],[66.33277,30.3733],[66.33419,30.35452],[66.33652,30.3498],[66.33522,30.33736],[66.33247,30.3173],[66.32744,30.30588],[66.32044,30.27949],[66.31661,30.24286],[66.31041,30.22819],[66.30139,30.2178],[66.29289,30.20188],[66.28694,30.18744],[66.28771,30.17097],[66.28644,30.16402],[66.2843,30.15891],[66.26852,30.14091],[66.26008,30.12913],[66.25724,30.11069],[66.23844,30.08408],[66.23822,30.06641],[66.24166,30.05505],[66.25905,30.04397],[66.28855,30.02227],[66.30041,30.01625],[66.30374,30.01294],[66.32222,30],[66.35874,29.97444],[66.3615,29.97202],[66.36194,29.96814],[66.35685,29.9583],[66.34564,29.95013],[66.33019,29.92502],[66.31916,29.91294],[66.31891,29.91269],[66.31319,29.91088],[66.31224,29.90833],[66.28933,29.89125],[66.26983,29.87494],[66.25397,29.85566],[66.24563,29.85136],[66.23058,29.84669],[66.20224,29.83927],[66.18386,29.83311],[66.16486,29.8283],[66.1558,29.82522],[66.13322,29.81897],[66.11658,29.81438],[66.07241,29.80244],[66.03552,29.79213],[66.00252,29.78355],[65.9381,29.76691],[65.91555,29.76011],[65.88797,29.75377],[65.87452,29.74961],[65.85322,29.74419],[65.83405,29.73841],[65.78113,29.72374],[65.73722,29.7133],[65.7313,29.71077],[65.6978,29.7028],[65.65866,29.69208],[65.63608,29.68658],[65.61086,29.681],[65.57152,29.6693],[65.53466,29.66047],[65.52253,29.65608],[65.51574,29.65511],[65.44132,29.63622],[65.42346,29.63111],[65.36966,29.61558],[65.28627,29.59347],[65.27588,29.59163],[65.26194,29.58738],[65.23994,29.58116],[65.19488,29.56958],[65.16083,29.56027],[65.09713,29.54283],[65.06705,29.53622],[65.054,29.53475],[65.02855,29.5343],[65,29.53741],[64.95578,29.55358],[64.82169,29.56408],[64.80741,29.56575],[64.7621,29.57113],[64.66744,29.57838],[64.63191,29.58108],[64.53228,29.57586],[64.48761,29.57177],[64.45547,29.56399],[64.4281,29.55094],[64.4118,29.54511],[64.39074,29.54416],[64.37,29.54872],[64.3526,29.54538],[64.31527,29.53033],[64.27941,29.52808],[64.2668,29.52383],[64.23741,29.50244],[64.20805,29.49436],[64.17105,29.45952],[64.15233,29.44955],[64.14658,29.434],[64.13108,29.39194],[64.12,29.38211],[64.1053,29.37747],[64.08725,29.38288],[64.06783,29.39177],[64.04469,29.41302],[64.03236,29.41769],[63.91077,29.43861],[63.77411,29.45969],[63.64483,29.47947],[63.63216,29.48205],[63.59083,29.49041],[63.56016,29.48944],[63.4163,29.47986],[63.36449,29.47636],[63.27272,29.4678],[63.1293,29.45433],[62.98591,29.44069],[62.84258,29.42691],[62.69927,29.41297],[62.556,29.39891],[62.45577,29.38897],[62.2783,29.44177],[62.14169,29.48222],[62.00497,29.52252],[61.86816,29.56269],[61.73122,29.60275],[61.65252,29.62569],[61.59458,29.64355],[61.45827,29.68544],[61.32186,29.72722],[61.18536,29.76883],[61.04875,29.81033],[61.00169,29.82455],[60.91202,29.85169],[60.87861,29.86177],[60.96524,29.76077],[60.98736,29.73497],[61.05172,29.65975],[61.12586,29.57294],[61.19258,29.5025],[61.23461,29.46494],[61.31113,29.39647],[61.37086,29.35002],[61.37138,29.34961],[61.37227,29.34844],[61.37274,29.34727],[61.37686,29.33686],[61.37749,29.3353],[61.37341,29.31647],[61.35775,29.28277],[61.38349,29.22147],[61.39097,29.21361],[61.39913,29.20852],[61.42244,29.2005],[61.42866,29.19377],[61.41483,29.15619],[61.41336,29.14122],[61.4158,29.13563],[61.44352,29.12811],[61.45863,29.12241],[61.47052,29.11394],[61.47794,29.10277],[61.47886,29.08055],[61.50316,29.05641],[61.50555,29.04805],[61.49531,29.04461],[61.47821,29.02436],[61.53403,29.00942],[61.57704,28.92725],[61.60932,28.86216],[61.63615,28.81619],[61.67621,28.76576],[61.69558,28.75147],[61.72586,28.7412],[61.77752,28.67991],[61.79561,28.65583],[61.80416,28.64016],[61.82291,28.63269],[61.87011,28.59705],[61.89213,28.58372],[61.90861,28.57377],[61.95758,28.54869],[61.99316,28.54075],[62.01583,28.52858],[62.01827,28.52677],[62.0433,28.50788],[62.11577,28.48511],[62.14855,28.48905],[62.15236,28.4895],[62.17055,28.48755],[62.20241,28.47869],[62.23988,28.46586],[62.26944,28.46647],[62.29627,28.46344],[62.34997,28.44119],[62.37252,28.43802],[62.41669,28.41833],[62.43188,28.41094],[62.43966,28.40713],[62.47233,28.37605],[62.50288,28.33133],[62.51597,28.32227],[62.54158,28.30997],[62.57311,28.27852],[62.5923,28.25513],[62.63069,28.25936],[62.78694,28.28119],[62.79194,28.27711],[62.79658,28.20894],[62.7808,28.10294],[62.76822,28.03241],[62.77183,28.01505],[62.79005,27.97811],[62.79747,27.91444],[62.80827,27.85158],[62.8198,27.805],[62.82058,27.79977],[62.83002,27.73527],[62.83858,27.64744],[62.85125,27.54886],[62.85202,27.54266],[62.85538,27.46513],[62.83997,27.42502],[62.80738,27.34008],[62.82805,27.31933],[62.83252,27.30494],[62.82319,27.28622],[62.78147,27.25141],[62.78297,27.23427],[62.79794,27.22152],[62.82136,27.21233],[62.84366,27.21308],[62.87833,27.21713],[62.89233,27.21077],[62.90869,27.19924],[62.95166,27.19208],[62.97724,27.19511],[63.05864,27.23319],[63.11577,27.23436],[63.1952,27.25975],[63.22715,27.22622],[63.25746,27.22693],[63.2809,27.21176],[63.33326,27.11788],[63.30955,27.12716],[63.2903,27.11875],[63.26358,27.11039],[63.26077,27.09208],[63.25111,27.09028],[63.25311,26.90238],[63.24137,26.89607],[63.23906,26.88165],[63.24636,26.86723],[63.2405,26.84088],[63.18556,26.83516],[63.19877,26.79841],[63.20319,26.76825],[63.19868,26.7429],[63.19972,26.71282],[63.18821,26.69826],[63.2016,26.67437],[63.18907,26.66733],[63.19577,26.64556],[63.16919,26.6473],[63.16202,26.64361],[63.15652,26.645],[63.09002,26.64408],[63.05144,26.63758],[63.00191,26.65194],[62.98588,26.65336],[62.95275,26.65297],[62.94652,26.65291],[62.91947,26.64613],[62.84008,26.64752],[62.8216,26.65219],[62.80347,26.65225],[62.77869,26.65227],[62.76069,26.64841],[62.73683,26.63852],[62.73394,26.63622],[62.73158,26.6343],[62.72638,26.62411],[62.72139,26.61988],[62.71022,26.617],[62.69741,26.61366],[62.69649,26.61333],[62.68516,26.61255],[62.66086,26.6165],[62.64833,26.60913],[62.6378,26.59941],[62.60813,26.58499],[62.58197,26.58283],[62.52986,26.57847],[62.51197,26.58133],[62.47841,26.56955],[62.46336,26.56761],[62.44122,26.57002],[62.43452,26.56813],[62.41069,26.54439],[62.40352,26.53933],[62.39711,26.5383],[62.36133,26.53952],[62.35341,26.53591],[62.34325,26.53125],[62.33361,26.52852],[62.31505,26.52886],[62.30602,26.52441],[62.29938,26.51363],[62.29586,26.49875],[62.29702,26.49413],[62.3045,26.4848],[62.30877,26.47669],[62.3088,26.47666],[62.30219,26.46761],[62.28258,26.44725],[62.26977,26.44574],[62.25772,26.44883],[62.25636,26.44597],[62.26461,26.43208],[62.26472,26.41269],[62.28583,26.3776],[62.25734,26.3687],[62.24982,26.34102],[62.27126,26.3346],[62.26862,26.32429],[62.24567,26.32147],[62.23189,26.33211],[62.23263,26.31493],[62.21253,26.27143],[62.15005,26.27037],[62.09718,26.28533],[62.09573,26.31059],[62.06897,26.32502],[62.02984,26.33453],[62.02474,26.30926],[61.98666,26.27966],[61.95824,26.26858],[61.91696,26.25473],[61.90117,26.26263],[61.88882,26.25143],[61.89048,26.23105],[61.86093,26.17515],[61.83897,26.06693],[61.83587,26.02005],[61.82375,25.96218],[61.8333,25.9119],[61.85775,25.91378],[61.87402,25.89202],[61.89179,25.89036],[61.89033,25.88005],[61.84626,25.87792],[61.8221,25.84738],[61.84923,25.81868],[61.83951,25.79435],[61.84078,25.74529],[61.80834,25.73649],[61.80077,25.71925],[61.73626,25.73913],[61.69504,25.69125],[61.69414,25.6793],[61.68899,25.66255],[61.6766,25.64631],[61.66722,25.51238],[61.65355,25.30557],[61.5713,25.01276],[60,24]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Bhutan#AP", "itu_zone_number": 41 }, "geometry": { "type": "Polygon", "coordinates": [[[90,28.33293],[89.98701,28.33257],[89.98226,28.31379],[89.94074,28.31527],[89.93013,28.31827],[89.9176,28.31795],[89.90439,28.31188],[89.89719,28.30942],[89.89239,28.31417],[89.88039,28.3109],[89.87405,28.31335],[89.86839,28.31338],[89.85878,28.30799],[89.83956,28.28869],[89.82997,28.28214],[89.82748,28.25891],[89.82294,28.24959],[89.82038,28.24122],[89.81438,28.23893],[89.80563,28.23785],[89.79775,28.24657],[89.79229,28.24647],[89.79131,28.23917],[89.78691,28.22944],[89.7781,28.22814],[89.77306,28.22381],[89.76803,28.2219],[89.77239,28.21824],[89.77539,28.21096],[89.78103,28.21091],[89.78339,28.20779],[89.77583,28.19638],[89.76964,28.19344],[89.7655,28.18697],[89.76545,28.18309],[89.75528,28.18617],[89.74786,28.19077],[89.74559,28.18901],[89.74194,28.19027],[89.72907,28.17552],[89.71894,28.17166],[89.71397,28.17725],[89.68917,28.18156],[89.68291,28.18466],[89.67532,28.18156],[89.66978,28.17059],[89.66116,28.17142],[89.65871,28.16801],[89.64593,28.16968],[89.64138,28.17376],[89.62431,28.16521],[89.61959,28.16816],[89.60972,28.16808],[89.59642,28.16377],[89.59515,28.15287],[89.59005,28.1453],[89.58289,28.14015],[89.56936,28.11956],[89.5602,28.12165],[89.55052,28.11665],[89.5532,28.1053],[89.54879,28.1034],[89.543,28.09727],[89.53521,28.08925],[89.52495,28.09016],[89.51022,28.0947],[89.50531,28.08677],[89.50556,28.08126],[89.49781,28.07449],[89.49384,28.06892],[89.48506,28.06215],[89.48503,28.05795],[89.47608,28.05011],[89.47452,28.04498],[89.46816,28.04167],[89.46498,28.03698],[89.45973,28.03533],[89.46024,28.0308],[89.47129,28.02316],[89.46862,28.01431],[89.45771,28.01122],[89.4516,28.00692],[89.45478,27.99724],[89.45041,27.98816],[89.45198,27.97486],[89.43931,27.96464],[89.43927,27.95549],[89.43375,27.95058],[89.43371,27.94719],[89.41995,27.94441],[89.41507,27.93596],[89.4102,27.93358],[89.41456,27.92557],[89.4061,27.92248],[89.39901,27.91877],[89.39862,27.90988],[89.39412,27.90585],[89.38956,27.89141],[89.37565,27.88376],[89.36843,27.87151],[89.36016,27.87188],[89.34932,27.86538],[89.33779,27.86252],[89.32949,27.85437],[89.31192,27.85442],[89.30877,27.85751],[89.30518,27.85393],[89.29815,27.85338],[89.29301,27.84835],[89.28788,27.83997],[89.28137,27.83827],[89.27419,27.82881],[89.26563,27.82845],[89.26635,27.8224],[89.26843,27.81271],[89.25712,27.8071],[89.24512,27.80271],[89.23947,27.80348],[89.2345,27.80243],[89.2349,27.79318],[89.23221,27.78849],[89.23096,27.78396],[89.225,27.78341],[89.22518,27.77576],[89.22159,27.77207],[89.22263,27.76468],[89.21991,27.7584],[89.22266,27.75695],[89.22679,27.74639],[89.22061,27.74167],[89.222,27.738],[89.22887,27.73291],[89.2196,27.72356],[89.20725,27.72059],[89.20519,27.72187],[89.19697,27.72094],[89.19219,27.70213],[89.18363,27.69365],[89.18435,27.68851],[89.17751,27.68155],[89.18272,27.67432],[89.17419,27.67317],[89.17077,27.66722],[89.16392,27.66553],[89.15604,27.65684],[89.15159,27.65545],[89.14066,27.64807],[89.14209,27.6419],[89.13391,27.63939],[89.12923,27.63259],[89.13279,27.62944],[89.12983,27.62142],[89.12893,27.61522],[89.12337,27.61509],[89.11782,27.61983],[89.1126,27.6194],[89.10739,27.62383],[89.10073,27.62296],[89.09683,27.62574],[89.07872,27.62175],[89.07194,27.61746],[89.06112,27.61405],[89.05854,27.60912],[89.05116,27.60723],[89.04125,27.59753],[89.03786,27.58906],[89.03451,27.57819],[89.02391,27.57595],[89.014,27.57432],[89.00721,27.56985],[89.00284,27.5602],[88.99846,27.55542],[89.00575,27.5552],[89.00481,27.54951],[88.9983,27.5459],[88.99746,27.54044],[88.99386,27.53681],[88.98361,27.5296],[88.97888,27.52917],[88.97562,27.52587],[88.97544,27.51954],[88.97183,27.51442],[88.97834,27.50856],[88.98691,27.49174],[88.97521,27.48489],[88.96557,27.47348],[88.96721,27.46004],[88.96136,27.45188],[88.95551,27.43702],[88.9644,27.42437],[88.96295,27.41707],[88.94987,27.41372],[88.96324,27.40565],[88.96607,27.39952],[88.97027,27.39887],[88.97516,27.38603],[88.98035,27.36285],[88.97745,27.35674],[88.98767,27.35156],[88.98937,27.34721],[88.99656,27.34652],[89.00135,27.3376],[89.00477,27.32624],[88.98162,27.31592],[88.97289,27.3056],[88.96139,27.31058],[88.95297,27.32044],[88.93752,27.33771],[88.9267,27.33506],[88.92618,27.32997],[88.9224,27.32773],[88.91758,27.33127],[88.90567,27.32894],[88.90097,27.333],[88.895,27.3326],[88.89267,27.33849],[88.88252,27.3454],[88.88488,27.35008],[88.88205,27.35272],[88.8805,27.36105],[88.87294,27.36316],[88.86195,27.37015],[88.86332,27.37924],[88.86126,27.38645],[88.84598,27.3848],[88.83853,27.37899],[88.8304,27.38964],[88.82168,27.39205],[88.81984,27.40085],[88.82143,27.40479],[88.80806,27.40443],[88.80602,27.40803],[88.80743,27.41036],[88.80477,27.41563],[88.80769,27.42434],[88.80185,27.42237],[88.79927,27.42748],[88.79601,27.42772],[88.79051,27.4378],[88.79428,27.43935],[88.79325,27.44699],[88.78947,27.44765],[88.78621,27.45255],[88.78295,27.4544],[88.78294,27.45877],[88.77607,27.47055],[88.78292,27.47523],[88.7802,27.48207],[88.78434,27.48465],[88.78402,27.49971],[88.78645,27.50381],[88.78667,27.50957],[88.79032,27.51472],[88.78801,27.52107],[88.79395,27.52498],[88.79295,27.53148],[88.78269,27.52976],[88.77792,27.5317],[88.77387,27.53923],[88.77254,27.55699],[88.76296,27.56685],[88.76969,27.57122],[88.78123,27.57012],[88.7859,27.57388],[88.79263,27.5746],[88.78866,27.58601],[88.80475,27.59544],[88.80847,27.60244],[88.80662,27.60875],[88.80992,27.61903],[88.80394,27.62443],[88.81121,27.63734],[88.81572,27.64842],[88.82407,27.64443],[88.83122,27.64702],[88.84922,27.66747],[88.84799,27.67575],[88.84141,27.68351],[88.84788,27.69309],[88.84744,27.69697],[88.84357,27.70267],[88.83789,27.70555],[88.83958,27.71194],[88.85669,27.71681],[88.8587,27.73809],[88.86757,27.74357],[88.86185,27.75393],[88.85682,27.75335],[88.85467,27.76924],[88.85595,27.77357],[88.85483,27.77913],[88.8592,27.79075],[88.86089,27.80446],[88.8574,27.80576],[88.85866,27.81687],[88.87503,27.82828],[88.87978,27.82974],[88.88316,27.83544],[88.88013,27.84094],[88.88122,27.85128],[88.8889,27.8568],[88.88101,27.86728],[88.87792,27.88261],[88.88137,27.89142],[88.87074,27.90114],[88.86921,27.91875],[88.8602,27.92725],[88.84745,27.92603],[88.83471,27.93028],[88.83812,27.94606],[88.84223,27.94788],[88.84376,27.9538],[88.83981,27.96942],[88.84219,27.97519],[88.84078,27.98247],[88.84281,27.98552],[88.83758,28.0007],[88.8358,28.0165],[88.8293,28.01763],[88.82075,28.0224],[88.81494,28.02112],[88.80433,28.03074],[88.79683,28.04149],[88.79343,28.04384],[88.79208,28.04922],[88.78765,28.04998],[88.78321,28.05376],[88.7764,28.05467],[88.75523,28.08073],[88.74292,28.07575],[88.72992,28.07259],[88.71502,28.07843],[88.69778,28.0765],[88.69255,28.07882],[88.68265,28.07838],[88.67873,28.0724],[88.6675,28.07531],[88.66451,28.08731],[88.6443,28.1027],[88.64058,28.11567],[88.63381,28.12343],[88.6275,28.11625],[88.61638,28.11271],[88.60857,28.10804],[88.60118,28.08962],[88.59481,28.09059],[88.58914,28.08731],[88.58705,28.08451],[88.57741,28.08492],[88.56916,28.09139],[88.56431,28.0898],[88.56218,28.08631],[88.55525,28.08221],[88.55491,28.07838],[88.55732,28.07454],[88.55423,28.06692],[88.5539,28.05627],[88.54979,28.0483],[88.55324,28.03881],[88.54642,28.03358],[88.53497,28.03368],[88.52832,28.03803],[88.52396,28.03581],[88.51935,28.0429],[88.51116,28.04282],[88.5025,28.05099],[88.49522,28.05493],[88.49164,28.04752],[88.48531,28.04436],[88.47541,28.03621],[88.47443,28.02716],[88.46796,28.01749],[88.45547,28.01435],[88.4375,28.00878],[88.43023,28.00736],[88.42365,28.00169],[88.41666,27.99946],[88.4135,27.99059],[88.41377,27.98051],[88.40189,27.98062],[88.39001,27.97649],[88.38259,27.98448],[88.37723,27.98884],[88.35626,27.98846],[88.33461,27.98322],[88.3315,27.97616],[88.32289,27.98002],[88.31532,27.97807],[88.31393,27.97248],[88.3029,27.96495],[88.29322,27.96686],[88.28415,27.96523],[88.28017,27.95466],[88.27138,27.9544],[88.26891,27.95753],[88.26396,27.95529],[88.25935,27.94653],[88.25063,27.9414],[88.23799,27.96937],[88.23127,27.96815],[88.22317,27.96147],[88.21317,27.96388],[88.20593,27.96129],[88.20694,27.94051],[88.19586,27.94297],[88.18753,27.9424],[88.17851,27.94972],[88.17327,27.95036],[88.16185,27.95782],[88.15351,27.95862],[88.1493,27.96275],[88.14166,27.96506],[88.13529,27.95364],[88.1303,27.9495],[88.13458,27.94567],[88.13611,27.93698],[88.13104,27.93287],[88.12941,27.92511],[88.12133,27.92355],[88.11752,27.9168],[88.12434,27.90419],[88.13871,27.88977],[88.13576,27.88122],[88.14087,27.87729],[88.14391,27.87883],[88.14904,27.87702],[88.15554,27.87035],[88.16119,27.8696],[88.17989,27.85609],[88.19737,27.8558],[88.1956,27.8492],[88.19917,27.84439],[88.19931,27.83957],[88.18895,27.82842],[88.18203,27.82395],[88.17286,27.82185],[88.17237,27.81947],[88.18128,27.81052],[88.18882,27.79974],[88.19635,27.79018],[88.19051,27.78297],[88.1826,27.77576],[88.18121,27.76757],[88.17776,27.75695],[88.17841,27.74663],[88.16976,27.74394],[88.1563,27.74185],[88.1531,27.71555],[88.14755,27.70969],[88.14613,27.70383],[88.15071,27.69897],[88.15082,27.69259],[88.14544,27.68134],[88.14499,27.66614],[88.13938,27.66112],[88.12485,27.65246],[88.1205,27.64425],[88.11799,27.62449],[88.10849,27.6061],[88.10449,27.60109],[88.09446,27.59917],[88.08855,27.59421],[88.07742,27.57393],[88.07967,27.56309],[88.07781,27.56017],[88.06994,27.55633],[88.0684,27.54985],[88.05932,27.5391],[88.06074,27.51742],[88.05544,27.50864],[88.04567,27.49804],[88.04353,27.48604],[88.04552,27.47708],[88.0641,27.46258],[88.06824,27.45076],[88.07375,27.44626],[88.06411,27.42796],[88.05104,27.41089],[88.04447,27.37828],[88.04771,27.36868],[88.0713,27.34375],[88.07842,27.33408],[88.07803,27.32647],[88.05725,27.31369],[88.04549,27.30059],[88.03441,27.28444],[88.03199,27.26132],[88.02708,27.24638],[88.01861,27.23555],[88.01289,27.22044],[88.00993,27.19634],[88.01211,27.16583],[88.01086,27.15182],[87.99704,27.12745],[87.99283,27.11347],[87.99595,27.103],[88.01502,27.09074],[88.01898,27.08642],[88.0314,27.05263],[88.04619,27.042],[88.05618,27.03994],[88.07272,27.03153],[88.08108,27.02418],[88.08969,27.00453],[88.10037,27.0017],[88.10776,26.99463],[88.11585,26.98756],[88.12805,26.98813],[88.13407,26.98503],[88.12333,26.96822],[88.12083,26.94956],[88.13584,26.93539],[88.14466,26.92122],[88.14481,26.91216],[88.13755,26.89895],[88.14746,26.88911],[88.15997,26.88297],[88.1645,26.87653],[88.16506,26.87086],[88.16774,26.86802],[88.17179,26.86886],[88.17375,26.85287],[88.16752,26.8507],[88.16974,26.84403],[88.16853,26.83798],[88.17324,26.83342],[88.17109,26.82641],[88.1789,26.81511],[88.1773,26.80394],[88.18068,26.79609],[88.18132,26.7858],[88.18807,26.77255],[88.18659,26.74725],[88.18099,26.7195],[88.16635,26.70016],[88.16797,26.68358],[88.16519,26.67201],[88.1638,26.66316],[88.16242,26.64572],[88.1555,26.63241],[88.14028,26.62542],[88.13869,26.61146],[88.13001,26.60317],[88.12916,26.57644],[88.11458,26.56936],[88.10602,26.55151],[88.1095,26.54408],[88.09586,26.53535],[88.10694,26.52662],[88.09468,26.51052],[88.10061,26.50364],[88.09968,26.48938],[88.10605,26.48914],[88.10543,26.47956],[88.09796,26.4792],[88.10146,26.46409],[88.08883,26.46282],[88.0968,26.44925],[88.09077,26.4258],[88.07539,26.41899],[88.05313,26.40234],[88.02785,26.3838],[88.03085,26.36516],[88.00698,26.36151],[88.00053,26.36614],[87.99535,26.36442],[87.99154,26.37007],[87.99216,26.38015],[87.97222,26.39257],[87.96087,26.39693],[87.94952,26.39945],[87.93919,26.41372],[87.92407,26.42516],[87.92611,26.44521],[87.92231,26.44808],[87.90849,26.44557],[87.9029,26.4486],[87.89723,26.46633],[87.88931,26.47351],[87.86583,26.46063],[87.85721,26.45387],[87.84722,26.43973],[87.83617,26.43913],[87.81737,26.44932],[87.80471,26.45872],[87.79067,26.4589],[87.77564,26.45003],[87.77374,26.42461],[87.77047,26.41271],[87.76752,26.40776],[87.76114,26.40773],[87.74494,26.41443],[87.7356,26.41252],[87.72627,26.41431],[87.72236,26.42187],[87.71639,26.42636],[87.70858,26.4255],[87.69596,26.43017],[87.68379,26.42404],[87.67771,26.41759],[87.67506,26.41114],[87.66652,26.40379],[87.64875,26.39955],[87.64273,26.39229],[87.63173,26.39008],[87.60906,26.38664],[87.60459,26.38117],[87.59256,26.37878],[87.58567,26.38261],[87.58081,26.39027],[87.53128,26.41788],[87.49724,26.43123],[87.4838,26.43596],[87.46448,26.43498],[87.44167,26.43147],[87.40375,26.42057],[87.36857,26.40291],[87.3595,26.38833],[87.35064,26.35736],[87.34255,26.35017],[87.32939,26.34772],[87.31897,26.35205],[87.30981,26.36346],[87.29697,26.37028],[87.27281,26.3725],[87.2665,26.37963],[87.25911,26.40386],[87.24589,26.41209],[87.23953,26.41356],[87.22905,26.41088],[87.21995,26.40574],[87.20998,26.40591],[87.20588,26.40935],[87.19972,26.41095],[87.18466,26.40246],[87.17032,26.40024],[87.15194,26.39887],[87.13322,26.4135],[87.11999,26.42874],[87.11366,26.43184],[87.10294,26.44231],[87.09566,26.45216],[87.08369,26.48665],[87.06869,26.55255],[87.06947,26.58004],[87.06682,26.58666],[87.06076,26.58852],[87.0499,26.5867],[87.03365,26.57199],[87.0046,26.53398],[86.99094,26.52619],[86.96628,26.52453],[86.94856,26.53044],[86.9402,26.52653],[86.93321,26.51954],[86.93089,26.51354],[86.9169,26.51091],[86.90154,26.50244],[86.89485,26.48796],[86.89108,26.47191],[86.82104,26.43673],[86.79877,26.44697],[86.7765,26.45106],[86.76079,26.44942],[86.74543,26.42379],[86.73694,26.41968],[86.73128,26.41976],[86.72561,26.42169],[86.69627,26.4398],[86.68341,26.4493],[86.65991,26.45603],[86.6419,26.4646],[86.61669,26.48437],[86.5908,26.48999],[86.57374,26.49283],[86.55703,26.50345],[86.54032,26.52452],[86.52681,26.53224],[86.48881,26.53847],[86.47072,26.54869],[86.43957,26.5583],[86.42456,26.56269],[86.40985,26.56795],[86.40112,26.57703],[86.3917,26.58242],[86.37945,26.58799],[86.35553,26.58926],[86.3324,26.58443],[86.32804,26.58767],[86.33466,26.60687],[86.33166,26.61256],[86.3268,26.61395],[86.30477,26.61351],[86.29029,26.61429],[86.27581,26.612],[86.2488,26.60224],[86.22086,26.587],[86.20654,26.58539],[86.19881,26.58977],[86.1897,26.60644],[86.18523,26.60845],[86.16222,26.60725],[86.14127,26.60236],[86.13505,26.6049],[86.12745,26.61634],[86.11782,26.61869],[86.11368,26.61551],[86.10472,26.61805],[86.07927,26.6433],[86.06861,26.6524],[86.04696,26.66149],[86.02907,26.66312],[86.00336,26.65031],[85.9962,26.64855],[85.96998,26.64832],[85.96265,26.64656],[85.94489,26.61818],[85.92095,26.60822],[85.90608,26.59985],[85.89727,26.59107],[85.89533,26.59026],[85.87795,26.58152],[85.86929,26.57447],[85.85471,26.5702],[85.84971,26.5728],[85.84677,26.57601],[85.84227,26.58735],[85.84493,26.59284],[85.84142,26.60324],[85.83653,26.6075],[85.83071,26.60919],[85.81166,26.60075],[85.80842,26.60151],[85.78458,26.62316],[85.76781,26.6321],[85.75104,26.6435],[85.73054,26.66629],[85.72394,26.70452],[85.72764,26.73477],[85.73231,26.78577],[85.7279,26.8001],[85.70898,26.81737],[85.6832,26.8328],[85.66859,26.83646],[85.65888,26.84319],[85.64918,26.84747],[85.63938,26.86062],[85.63026,26.86826],[85.62182,26.86606],[85.60857,26.86019],[85.59991,26.85395],[85.58948,26.84944],[85.57067,26.84594],[85.50729,26.81351],[85.47943,26.80196],[85.46735,26.79838],[85.45994,26.79107],[85.45253,26.78683],[85.44605,26.78549],[85.42997,26.7909],[85.42148,26.79589],[85.41207,26.79484],[85.39184,26.77754],[85.3807,26.76246],[85.37001,26.75455],[85.35197,26.75029],[85.34628,26.74664],[85.34002,26.73757],[85.33496,26.7345],[85.30999,26.73941],[85.29575,26.74554],[85.27413,26.74984],[85.21065,26.76763],[85.19993,26.77384],[85.19333,26.78373],[85.18743,26.79301],[85.18426,26.80351],[85.18745,26.81777],[85.19339,26.83141],[85.19633,26.84951],[85.18849,26.86517],[85.17165,26.87023],[85.14004,26.87222],[85.10156,26.86763],[85.09122,26.86182],[85.07814,26.85049],[85.05991,26.84728],[85.04167,26.84713],[85.03611,26.8499],[85.03432,26.85611],[85.04695,26.87702],[85.04062,26.88639],[85.00858,26.88934],[84.97447,26.90118],[84.96832,26.90878],[84.96628,26.92066],[84.96751,26.93331],[84.96668,26.94596],[84.94833,26.96205],[84.92723,26.96925],[84.89395,26.97326],[84.87928,26.98306],[84.85431,26.99591],[84.84857,27.01091],[84.84351,27.0149],[84.81367,27.01983],[84.80322,27.01581],[84.79971,27.00707],[84.79484,27.00262],[84.78876,27.00382],[84.78061,27.01175],[84.76938,27.01265],[84.75965,27.00698],[84.7506,27.00743],[84.70328,27.02233],[84.68785,27.031],[84.66263,27.03656],[84.64977,27.04212],[84.6451,27.04999],[84.64386,27.05908],[84.65326,27.08254],[84.66335,27.09927],[84.67968,27.13135],[84.68201,27.14296],[84.67816,27.16801],[84.68693,27.19795],[84.68011,27.23433],[84.65816,27.2684],[84.65269,27.29391],[84.63234,27.31573],[84.60925,27.33632],[84.59695,27.34086],[84.58464,27.34356],[84.56346,27.3441],[84.50108,27.35652],[84.46303,27.35969],[84.44282,27.36895],[84.39583,27.36819],[84.33285,27.37726],[84.29871,27.38755],[84.28234,27.40352],[84.27484,27.42796],[84.26148,27.44505],[84.2548,27.44994],[84.24262,27.45483],[84.23505,27.45247],[84.22268,27.44218],[84.2182,27.44042],[84.21166,27.4411],[84.2061,27.44625],[84.20632,27.45781],[84.20106,27.4712],[84.1897,27.47836],[84.17628,27.48125],[84.15445,27.48962],[84.14635,27.49738],[84.14512,27.50355],[84.14732,27.51215],[84.14417,27.52387],[84.1268,27.518],[84.106,27.51761],[84.09927,27.51616],[84.09598,27.51288],[84.09437,27.50234],[84.08829,27.49455],[84.06242,27.47895],[84.06063,27.46537],[84.05542,27.45422],[84.04018,27.44412],[84.00778,27.44345],[83.983,27.4483],[83.96714,27.45254],[83.95868,27.45153],[83.95273,27.44797],[83.93923,27.44686],[83.93329,27.44788],[83.92347,27.45114],[83.89285,27.44182],[83.86738,27.4386],[83.84709,27.44094],[83.83866,27.43937],[83.83436,27.43476],[83.83439,27.42833],[83.83786,27.41947],[83.85853,27.39382],[83.86989,27.38328],[83.87851,27.36847],[83.87721,27.36203],[83.87264,27.35657],[83.86602,27.35294],[83.8538,27.35331],[83.8358,27.36534],[83.81169,27.37806],[83.78759,27.38835],[83.74916,27.408],[83.69769,27.42704],[83.65037,27.45232],[83.60785,27.46846],[83.52444,27.47346],[83.44207,27.47023],[83.4208,27.47309],[83.39473,27.47839],[83.38659,27.47286],[83.38325,27.45818],[83.37692,27.44345],[83.37848,27.43573],[83.38211,27.42801],[83.39097,27.42402],[83.3964,27.41698],[83.3973,27.41296],[83.38721,27.39218],[83.3737,27.372],[83.34734,27.34537],[83.33745,27.33874],[83.32069,27.33578],[83.29198,27.33687],[83.27095,27.34576],[83.25636,27.38606],[83.23786,27.40124],[83.21181,27.4146],[83.20086,27.42643],[83.18443,27.44679],[83.16247,27.44951],[83.11649,27.44856],[83.03963,27.4479],[82.96899,27.4612],[82.9474,27.46861],[82.93455,27.48572],[82.92513,27.49429],[82.91368,27.49683],[82.89388,27.4911],[82.87408,27.49084],[82.82813,27.49658],[82.78217,27.49927],[82.76522,27.50211],[82.75011,27.54056],[82.74187,27.55604],[82.7453,27.57138],[82.74736,27.58429],[82.73637,27.60342],[82.73156,27.61646],[82.73448,27.63162],[82.73121,27.64253],[82.72126,27.65462],[82.72246,27.68164],[82.71061,27.70502],[82.69996,27.71103],[82.6916,27.70664],[82.68118,27.70347],[82.66515,27.70685],[82.65163,27.70692],[82.59279,27.68905],[82.55719,27.68346],[82.53258,27.68517],[82.4897,27.6743],[82.47135,27.6719],[82.45026,27.67194],[82.43111,27.67634],[82.40046,27.69483],[82.38595,27.71454],[82.35555,27.74363],[82.34077,27.74749],[82.32154,27.74922],[82.30222,27.76142],[82.27741,27.77909],[82.22986,27.81897],[82.19879,27.83759],[82.17046,27.85743],[82.14917,27.86462],[82.12238,27.86365],[82.11277,27.86755],[82.10469,27.87732],[82.09799,27.89315],[82.08184,27.90722],[82.06998,27.91302],[82.04439,27.91882],[82.00144,27.92252],[81.97859,27.91832],[81.95677,27.90563],[81.93441,27.8851],[81.91138,27.85543],[81.89796,27.85246],[81.88214,27.85557],[81.86111,27.86835],[81.82188,27.89326],[81.78188,27.90911],[81.71442,27.96712],[81.69789,27.97624],[81.68034,27.98081],[81.66862,27.98114],[81.64457,27.98525],[81.63356,27.98814],[81.62187,27.99624],[81.61567,28.00859],[81.60466,28.02117],[81.55553,28.04314],[81.50503,28.06814],[81.47801,28.08117],[81.47228,28.08875],[81.47036,28.09792],[81.47325,28.11193],[81.47078,28.12421],[81.45049,28.13391],[81.43913,28.15602],[81.42246,28.16632],[81.40442,28.17117],[81.38413,28.17421],[81.37387,28.16683],[81.3739,28.1595],[81.37048,28.14613],[81.36439,28.13863],[81.34104,28.13195],[81.31975,28.13012],[81.31643,28.13437],[81.31724,28.13863],[81.3213,28.14273],[81.32331,28.14804],[81.31771,28.15019],[81.31211,28.1493],[81.30433,28.1528],[81.2993,28.1569],[81.29816,28.16207],[81.30138,28.16758],[81.31605,28.17042],[81.32092,28.17219],[81.31477,28.18185],[81.31069,28.18848],[81.31219,28.19505],[81.2788,28.22655],[81.24953,28.25443],[81.23631,28.2754],[81.22703,28.31171],[81.21227,28.34802],[81.20093,28.36015],[81.1896,28.36927],[81.13097,28.38457],[81.07304,28.39686],[81.05639,28.40166],[81.04662,28.40646],[81.03806,28.4064],[81.03224,28.40211],[81.02368,28.40265],[81.01346,28.40723],[81.01475,28.42176],[81.01466,28.43507],[81.00803,28.44244],[80.99728,28.44135],[80.98258,28.43544],[80.97681,28.43676],[80.97169,28.43867],[80.96932,28.443],[80.96389,28.44501],[80.95331,28.44037],[80.94205,28.43936],[80.90084,28.46274],[80.89887,28.46896],[80.902,28.48565],[80.89861,28.49842],[80.89329,28.50633],[80.87423,28.50791],[80.85655,28.50044],[80.84432,28.50062],[80.83277,28.50443],[80.77878,28.53617],[80.75663,28.56949],[80.74659,28.57349],[80.71663,28.57447],[80.70204,28.57944],[80.69361,28.58602],[80.68998,28.59259],[80.68959,28.60635],[80.68538,28.60914],[80.67504,28.61461],[80.66676,28.62128],[80.66603,28.62825],[80.66255,28.63282],[80.64486,28.63565],[80.62305,28.63668],[80.60757,28.64175],[80.58075,28.6567],[80.57884,28.66471],[80.58304,28.67654],[80.58242,28.68235],[80.57654,28.68571],[80.56566,28.68261],[80.55753,28.68101],[80.54882,28.68505],[80.53963,28.68529],[80.50768,28.66376],[80.50437,28.65232],[80.52166,28.57941],[80.51573,28.5668],[80.50799,28.56691],[80.47207,28.58945],[80.46343,28.61158],[80.45514,28.62046],[80.43586,28.63189],[80.41795,28.63369],[80.40102,28.62733],[80.37791,28.62338],[80.36224,28.62693],[80.35278,28.63352],[80.34444,28.64601],[80.33473,28.66513],[80.31237,28.69821],[80.29819,28.70496],[80.27508,28.70991],[80.26216,28.71859],[80.25408,28.74519],[80.24391,28.75162],[80.20352,28.75263],[80.18696,28.75855],[80.17528,28.76464],[80.16155,28.77855],[80.15468,28.78952],[80.13064,28.81568],[80.09819,28.82372],[80.06814,28.82484],[80.06007,28.82897],[80.05543,28.83671],[80.0592,28.86206],[80.05491,28.87425],[80.05336,28.88644],[80.05182,28.90133],[80.05439,28.91563],[80.0616,28.93339],[80.06881,28.94875],[80.08837,28.96258],[80.11893,28.97671],[80.12217,28.97959],[80.12815,28.99027],[80.13292,29.00292],[80.12946,29.01383],[80.12188,29.02233],[80.12047,29.03154],[80.13107,29.05305],[80.13911,29.0638],[80.1451,29.07876],[80.14866,29.10042],[80.14673,29.10828],[80.15819,29.11867],[80.17239,29.12607],[80.18398,29.12977],[80.19775,29.12877],[80.20773,29.12467],[80.22045,29.12297],[80.23165,29.12751],[80.2408,29.1357],[80.25682,29.14388],[80.26002,29.14886],[80.25581,29.15703],[80.24959,29.16292],[80.2468,29.1688],[80.24457,29.18875],[80.23718,29.2036],[80.23667,29.21125],[80.2449,29.21911],[80.26782,29.20935],[80.2818,29.20319],[80.28815,29.20555],[80.29046,29.23161],[80.2969,29.25766],[80.3077,29.31096],[80.2998,29.31965],[80.27954,29.31936],[80.2761,29.3228],[80.26443,29.36275],[80.2658,29.37233],[80.26236,29.39089],[80.24587,29.40638],[80.23694,29.4126],[80.23625,29.42495],[80.2414,29.43999],[80.25599,29.44988],[80.28062,29.45422],[80.2874,29.46095],[80.28739,29.47922],[80.29048,29.48343],[80.29648,29.48374],[80.30155,29.4833],[80.30661,29.48525],[80.30781,29.49179],[80.31382,29.49893],[80.34145,29.51683],[80.35055,29.52576],[80.35132,29.53529],[80.3466,29.54124],[80.34574,29.54805],[80.35518,29.55779],[80.36968,29.5643],[80.38831,29.57738],[80.40443,29.59268],[80.4089,29.59899],[80.41061,29.62082],[80.41884,29.63548],[80.41541,29.64717],[80.40578,29.65524],[80.39066,29.66332],[80.38396,29.68168],[80.38,29.70122],[80.37141,29.73675],[80.37537,29.7463],[80.38139,29.75346],[80.39893,29.7672],[80.41959,29.7899],[80.44385,29.79652],[80.48493,29.79688],[80.51366,29.82496],[80.54101,29.84679],[80.55263,29.87103],[80.5663,29.89705],[80.58067,29.92084],[80.58748,29.93868],[80.59338,29.95041],[80.6041,29.95917],[80.6269,29.96359],[80.65946,29.96292],[80.67932,29.97087],[80.69574,29.98596],[80.705,29.99942],[80.71426,30.00872],[80.72181,30.011],[80.73005,30.01327],[80.74172,30.01703],[80.74721,30.02197],[80.74719,30.02511],[80.75405,30.03479],[80.75882,30.05563],[80.76911,30.06219],[80.78043,30.06517],[80.78626,30.07053],[80.80177,30.09472],[80.81453,30.10345],[80.83284,30.10874],[80.8412,30.11126],[80.84475,30.11913],[80.87521,30.14081],[80.87668,30.14893],[80.87541,30.15825],[80.87012,30.16411],[80.86346,30.1676],[80.86161,30.1705],[80.88339,30.1846],[80.88423,30.19514],[80.89297,30.20658],[80.8967,30.21122],[80.90111,30.21348],[80.90994,30.22276],[80.91987,30.22764],[80.92808,30.21383],[80.92321,30.20311],[80.92309,30.19474],[80.92628,30.18691],[80.93951,30.17944],[80.95969,30.18535],[80.96806,30.18534],[80.97369,30.18948],[80.98472,30.18606],[80.99987,30.18501],[81.0137,30.19418],[81.03449,30.1971],[81.03453,30.20087],[81.0435,30.20464],[81.04462,30.21069],[81.04137,30.21449],[81.03005,30.2203],[81.02938,30.22552],[81.02596,30.22778],[81.03044,30.23596],[81.02805,30.23881],[81.03151,30.24629],[81.02037,30.25114],[81.01128,30.25421],[81.0041,30.2645],[80.98149,30.26967],[80.95276,30.26992],[80.9365,30.2639],[80.92665,30.26622],[80.92435,30.27211],[80.93144,30.27617],[80.9275,30.28292],[80.91454,30.28733],[80.90776,30.29708],[80.90991,30.3012],[80.90725,30.30413],[80.89261,30.3013],[80.87384,30.30085],[80.87338,30.30467],[80.86079,30.31351],[80.84248,30.31755],[80.83332,30.31377],[80.82461,30.31511],[80.81886,30.32312],[80.80051,30.32314],[80.80127,30.33413],[80.78796,30.34008],[80.78563,30.34841],[80.78536,30.35317],[80.7783,30.35471],[80.77431,30.3622],[80.76413,30.37266],[80.76094,30.37224],[80.75919,30.3762],[80.75125,30.38016],[80.75029,30.38737],[80.74384,30.38925],[80.7337,30.40012],[80.72919,30.40112],[80.71675,30.4132],[80.70474,30.41855],[80.70045,30.41384],[80.69418,30.41362],[80.6879,30.41517],[80.68634,30.42124],[80.67771,30.42332],[80.67832,30.42866],[80.67025,30.43248],[80.66287,30.43985],[80.64056,30.45104],[80.63764,30.44997],[80.63172,30.45624],[80.62855,30.4566],[80.62409,30.46216],[80.61388,30.45848],[80.6074,30.46492],[80.60641,30.47136],[80.59835,30.4711],[80.59647,30.4683],[80.58291,30.46847],[80.57725,30.46478],[80.56541,30.46346],[80.5661,30.45935],[80.54997,30.4499],[80.54276,30.44873],[80.52719,30.45828],[80.52534,30.46665],[80.51891,30.47214],[80.50733,30.47615],[80.49849,30.48844],[80.48943,30.48453],[80.48244,30.49068],[80.46995,30.48972],[80.4458,30.49764],[80.44121,30.50407],[80.43182,30.50695],[80.42814,30.51329],[80.41519,30.51608],[80.41528,30.52006],[80.41773,30.52354],[80.41096,30.5246],[80.39898,30.5175],[80.38014,30.51869],[80.3768,30.52343],[80.36393,30.527],[80.35724,30.52317],[80.34574,30.51993],[80.3363,30.52833],[80.3351,30.53496],[80.32034,30.54525],[80.31623,30.56465],[80.28456,30.57053],[80.25358,30.56458],[80.23771,30.57784],[80.22016,30.57916],[80.2088,30.58756],[80.20398,30.58643],[80.19779,30.58825],[80.18953,30.58185],[80.17852,30.5784],[80.16958,30.57435],[80.15907,30.5775],[80.14763,30.57051],[80.14191,30.5611],[80.1362,30.5576],[80.12294,30.55934],[80.10899,30.56464],[80.10672,30.56934],[80.10239,30.57227],[80.0856,30.57175],[80.07776,30.59112],[80.07696,30.59344],[80.06449,30.59577],[80.06008,30.59588],[80.0543,30.59481],[80.04824,30.5974],[80.04217,30.59822],[80.03846,30.61004],[80.03269,30.61064],[80.02871,30.61597],[80.03606,30.621],[80.03355,30.62677],[80.03036,30.62899],[80.03152,30.63373],[80.02926,30.63906],[80.02081,30.63996],[80.02129,30.64381],[80.01377,30.64829],[80.01724,30.65632],[80.01256,30.66716],[80.00542,30.66964],[79.99827,30.6786],[79.9925,30.68226],[79.98398,30.69063],[79.98567,30.69715],[79.98255,30.70366],[79.9866,30.71079],[79.98579,30.73094],[79.98292,30.74017],[79.98457,30.74331],[79.98485,30.74822],[79.97954,30.74981],[79.97559,30.75436],[79.97268,30.75537],[79.96703,30.76286],[79.95108,30.76753],[79.95229,30.77219],[79.95853,30.7767],[79.94612,30.78205],[79.93782,30.79153],[79.9305,30.7917],[79.9258,30.79532],[79.92111,30.79482],[79.91139,30.80118],[79.89754,30.80046],[79.88988,30.81319],[79.89218,30.81766],[79.90615,30.81623],[79.90881,30.83766],[79.89255,30.8469],[79.88796,30.85968],[79.88015,30.86284],[79.8741,30.8624],[79.8708,30.85961],[79.86283,30.86052],[79.83768,30.85022],[79.82765,30.85054],[79.80954,30.87364],[79.80467,30.88399],[79.79912,30.89021],[79.79693,30.8997],[79.78751,30.90624],[79.78153,30.91338],[79.77093,30.92707],[79.77009,30.93406],[79.76376,30.93516],[79.75709,30.94363],[79.7511,30.94679],[79.73832,30.94081],[79.7218,30.94872],[79.71077,30.9525],[79.70073,30.96302],[79.70031,30.97059],[79.68847,30.97483],[79.67457,30.98261],[79.66635,30.98316],[79.66292,30.97552],[79.66498,30.96788],[79.66361,30.96497],[79.64971,30.96013],[79.63513,30.95352],[79.61822,30.94948],[79.61436,30.94426],[79.60183,30.93913],[79.58949,30.94561],[79.58265,30.95268],[79.55317,30.95798],[79.54837,30.96758],[79.54152,30.97307],[79.53672,30.9815],[79.52849,30.98462],[79.52696,30.99011],[79.52337,30.99088],[79.51618,30.99773],[79.51976,31.00465],[79.51579,31.01275],[79.50874,31.01555],[79.50727,31.02195],[79.5106,31.02541],[79.50709,31.0322],[79.49095,31.03156],[79.47208,31.03386],[79.46384,31.03089],[79.45354,31.03086],[79.43706,31.0226],[79.42745,31.02257],[79.42202,31.03578],[79.41866,31.04841],[79.42126,31.05597],[79.41906,31.06589],[79.41261,31.07278],[79.4171,31.07953],[79.41748,31.08864],[79.41411,31.10685],[79.40806,31.11446],[79.39208,31.11687],[79.38241,31.11483],[79.37756,31.11279],[79.37393,31.11603],[79.36824,31.11692],[79.36442,31.1234],[79.35347,31.12209],[79.34183,31.12725],[79.33916,31.13228],[79.32833,31.13293],[79.31131,31.14879],[79.30864,31.16215],[79.30456,31.16883],[79.30872,31.17199],[79.30553,31.18726],[79.3044,31.20723],[79.2994,31.21898],[79.29035,31.2269],[79.28335,31.23894],[79.26591,31.23776],[79.25569,31.24275],[79.24337,31.25317],[79.22624,31.26066],[79.23016,31.26829],[79.23831,31.27064],[79.24684,31.27681],[79.24699,31.28018],[79.24844,31.28891],[79.25126,31.29236],[79.24395,31.29794],[79.22978,31.3041],[79.22522,31.31085],[79.22066,31.31643],[79.2251,31.32818],[79.23573,31.33464],[79.22868,31.34014],[79.22507,31.34564],[79.21631,31.34792],[79.21373,31.3543],[79.1981,31.35416],[79.16942,31.36282],[79.16906,31.37383],[79.17643,31.3852],[79.17222,31.39323],[79.17144,31.39833],[79.16505,31.39677],[79.15361,31.41093],[79.15058,31.41857],[79.14343,31.42446],[79.14218,31.43212],[79.12837,31.43898],[79.12089,31.44013],[79.1086,31.44479],[79.1067,31.44943],[79.09807,31.45403],[79.08318,31.45028],[79.07997,31.45708],[79.07491,31.45778],[79.06891,31.45069],[79.06859,31.43926],[79.06209,31.43369],[79.06145,31.42957],[79.05605,31.43072],[79.05091,31.4248],[79.0444,31.43236],[79.03102,31.43112],[79.01764,31.42521],[79.0156,31.40985],[79.017,31.38747],[79.0092,31.38214],[79.01114,31.37097],[79.01857,31.35922],[79.01807,31.34856],[79.00095,31.34101],[78.98688,31.3481],[78.9886,31.35635],[78.98003,31.36319],[78.97077,31.35639],[78.9507,31.36589],[78.94435,31.36601],[78.93955,31.34631],[78.93339,31.34186],[78.92516,31.32846],[78.91692,31.32059],[78.9183,31.31565],[78.9123,31.30866],[78.90561,31.30871],[78.89704,31.30235],[78.90133,31.298],[78.90083,31.29013],[78.88264,31.28612],[78.87635,31.30359],[78.86909,31.30676],[78.86114,31.31462],[78.85405,31.31199],[78.85107,31.30789],[78.85243,31.30342],[78.8562,31.30013],[78.85686,31.29412],[78.84101,31.29632],[78.83787,31.29353],[78.82409,31.29574],[78.81511,31.30087],[78.81601,31.30366],[78.81107,31.30703],[78.79394,31.3044],[78.77921,31.31173],[78.7795,31.32036],[78.77209,31.3232],[78.7688,31.32547],[78.7686,31.33015],[78.77297,31.33102],[78.7739,31.33365],[78.76389,31.34067],[78.77099,31.34912],[78.75428,31.35834],[78.74857,31.36755],[78.75489,31.37058],[78.75772,31.37474],[78.75573,31.37889],[78.75328,31.38496],[78.76253,31.39906],[78.77315,31.4155],[78.78617,31.43165],[78.79508,31.43725],[78.79726,31.44318],[78.77748,31.45262],[78.76675,31.47266],[78.76039,31.48114],[78.74896,31.48433],[78.7396,31.48168],[78.72705,31.48456],[78.72008,31.50707],[78.7217,31.51318],[78.72606,31.51608],[78.73248,31.53361],[78.7444,31.54171],[78.75774,31.54137],[78.76146,31.54805],[78.77544,31.54328],[78.7798,31.55548],[78.80381,31.56599],[78.80654,31.5765],[78.82053,31.57774],[78.82649,31.58859],[78.83382,31.59711],[78.84025,31.59747],[78.84737,31.60836],[78.84084,31.62239],[78.8295,31.62531],[78.81781,31.63759],[78.80954,31.63817],[78.80077,31.64964],[78.79818,31.66929],[78.80039,31.67784],[78.79849,31.68288],[78.7884,31.67832],[78.76663,31.67405],[78.754,31.6772],[78.74933,31.68466],[78.75373,31.68999],[78.75263,31.69591],[78.74597,31.7057],[78.74295,31.71826],[78.73378,31.72403],[78.72754,31.74255],[78.72888,31.74539],[78.72542,31.75115],[78.72461,31.75783],[78.7207,31.76119],[78.71747,31.76719],[78.70601,31.77435],[78.70465,31.78123],[78.70741,31.78403],[78.70261,31.79442],[78.70468,31.8013],[78.70267,31.80782],[78.71731,31.82222],[78.73057,31.83138],[78.74724,31.8744],[78.73938,31.88579],[78.74669,31.89448],[78.74163,31.902],[78.74992,31.90779],[78.74859,31.91301],[78.75462,31.9146],[78.76065,31.92551],[78.76723,31.92752],[78.76905,31.93625],[78.76813,31.94497],[78.76354,31.94844],[78.76467,31.95072],[78.76476,31.95998],[78.7703,31.96345],[78.77719,31.96315],[78.77859,31.96459],[78.77504,31.9731],[78.77631,31.97696],[78.77403,31.98584],[78.77976,31.99485],[78.76921,31.99722],[78.76517,32.00454],[78.75518,32.00172],[78.7493,32.00326],[78.73984,32.00127],[78.73312,32.00568],[78.73411,32.01276],[78.72797,32.01703],[78.72321,32.02711],[78.72055,32.03098],[78.7221,32.03929],[78.71305,32.04705],[78.71154,32.05364],[78.70764,32.05645],[78.70442,32.06624],[78.6894,32.07069],[78.68262,32.08038],[78.69014,32.088],[78.69268,32.09736],[78.68299,32.11354],[78.67471,32.11378],[78.6733,32.11707],[78.65812,32.11552],[78.64847,32.11895],[78.64226,32.12355],[78.63051,32.12636],[78.63031,32.13287],[78.62598,32.13822],[78.60979,32.15184],[78.59633,32.1576],[78.59112,32.16801],[78.59949,32.17431],[78.59928,32.19339],[78.59268,32.20017],[78.57965,32.2034],[78.57142,32.20197],[78.56387,32.20404],[78.56045,32.20261],[78.55423,32.21374],[78.54391,32.2225],[78.54114,32.22835],[78.53214,32.24393],[78.5252,32.24528],[78.51963,32.26289],[78.50894,32.26861],[78.49689,32.27606],[78.49132,32.27386],[78.48773,32.27583],[78.49965,32.29172],[78.49908,32.29443],[78.51019,32.30295],[78.50451,32.30957],[78.49883,32.32373],[78.47889,32.3242],[78.47648,32.33496],[78.48161,32.34629],[78.48057,32.3511],[78.4864,32.35706],[78.48046,32.36592],[78.46942,32.36533],[78.46511,32.37339],[78.45771,32.37972],[78.45237,32.38721],[78.46003,32.39179],[78.47112,32.39521],[78.47019,32.40407],[78.4727,32.41235],[78.46921,32.41927],[78.47189,32.42909],[78.47109,32.44294],[78.46467,32.4463],[78.46201,32.4549],[78.45042,32.4606],[78.45669,32.47021],[78.44716,32.47576],[78.4415,32.47934],[78.43819,32.48806],[78.43077,32.49098],[78.42622,32.50088],[78.42897,32.50457],[78.41318,32.51753],[78.40702,32.5265],[78.39607,32.52939],[78.39271,32.53808],[78.3987,32.54546],[78.40376,32.54409],[78.40538,32.55429],[78.41309,32.55878],[78.4153,32.56675],[78.42191,32.57053],[78.43001,32.56953],[78.43469,32.57258],[78.45022,32.57463],[78.45339,32.58073],[78.46317,32.57931],[78.46676,32.58078],[78.47526,32.57631],[78.48431,32.57783],[78.49268,32.58514],[78.50074,32.58314],[78.50897,32.59238],[78.51239,32.60161],[78.51564,32.60029],[78.51851,32.60676],[78.51451,32.61206],[78.51683,32.61343],[78.5465,32.61353],[78.5463,32.61884],[78.5553,32.6173],[78.5588,32.62328],[78.56368,32.61653],[78.56788,32.61557],[78.57193,32.62413],[78.57942,32.62112],[78.57997,32.6261],[78.57846,32.63252],[78.57901,32.63721],[78.58534,32.64208],[78.59698,32.64045],[78.61344,32.64345],[78.62472,32.63397],[78.63153,32.6346],[78.63393,32.64562],[78.64216,32.64275],[78.65142,32.6516],[78.66446,32.65813],[78.67166,32.65671],[78.70427,32.66801],[78.7101,32.66804],[78.71671,32.67281],[78.724,32.67412],[78.73927,32.69523],[78.75071,32.6886],[78.74648,32.67821],[78.74018,32.66204],[78.74299,32.65533],[78.75128,32.64631],[78.75048,32.64134],[78.76684,32.63348],[78.7705,32.63006],[78.77313,32.61822],[78.78125,32.61621],[78.77982,32.60841],[78.7777,32.60755],[78.77759,32.5931],[78.77017,32.58094],[78.76241,32.57919],[78.75685,32.5673],[78.76085,32.55955],[78.76005,32.55759],[78.76342,32.54851],[78.77023,32.54],[78.76708,32.53613],[78.77011,32.52357],[78.78102,32.51633],[78.77912,32.51047],[78.77927,32.50055],[78.77763,32.49776],[78.78149,32.48571],[78.78027,32.47898],[78.79414,32.47557],[78.80842,32.44111],[78.81694,32.43083],[78.83232,32.42751],[78.83424,32.41565],[78.84303,32.41017],[78.85484,32.41387],[78.86871,32.41293],[78.88014,32.39831],[78.88746,32.39828],[78.89204,32.40115],[78.89593,32.39416],[78.9005,32.39587],[78.90637,32.38939],[78.90149,32.38632],[78.90216,32.38164],[78.90626,32.3787],[78.90622,32.37398],[78.92592,32.36287],[78.93876,32.35699],[78.954,32.34531],[78.96924,32.33536],[78.9738,32.33924],[78.98936,32.37038],[79.01275,32.38116],[79.0231,32.38383],[79.02749,32.3792],[79.03669,32.38327],[79.04451,32.38227],[79.05989,32.38765],[79.07355,32.38353],[79.08175,32.37901],[79.0879,32.37274],[79.09805,32.37001],[79.10462,32.37442],[79.10157,32.38636],[79.10402,32.38989],[79.10078,32.39484],[79.10097,32.3969],[79.10479,32.40101],[79.10518,32.40744],[79.11243,32.41156],[79.11419,32.41857],[79.12553,32.41864],[79.12656,32.42277],[79.12169,32.43523],[79.11785,32.43754],[79.12122,32.4471],[79.11707,32.45449],[79.1191,32.4584],[79.12755,32.4613],[79.12903,32.46652],[79.13181,32.46985],[79.12909,32.47724],[79.1312,32.48158],[79.14923,32.47696],[79.15216,32.48971],[79.1592,32.49667],[79.16436,32.49451],[79.18462,32.49698],[79.18102,32.50346],[79.183,32.50642],[79.18154,32.51169],[79.18877,32.51598],[79.20148,32.51303],[79.20535,32.50983],[79.21265,32.51069],[79.22106,32.51008],[79.22077,32.52464],[79.22328,32.52451],[79.23402,32.51802],[79.24795,32.51603],[79.25242,32.52156],[79.25844,32.53764],[79.26454,32.53584],[79.26795,32.53886],[79.26861,32.54536],[79.27271,32.5478],[79.27612,32.55603],[79.28369,32.55047],[79.28266,32.54654],[79.29399,32.53971],[79.30017,32.54648],[79.30704,32.55152],[79.3079,32.55635],[79.31082,32.55887],[79.32301,32.55878],[79.32636,32.56366],[79.33108,32.56622],[79.33436,32.55908],[79.34038,32.5531],[79.33287,32.54966],[79.33429,32.54042],[79.35567,32.52716],[79.364,32.53358],[79.39357,32.52434],[79.40012,32.52638],[79.40461,32.51916],[79.4134,32.51965],[79.41265,32.52367],[79.41776,32.52567],[79.41876,32.53231],[79.41382,32.53729],[79.41369,32.54054],[79.41596,32.54147],[79.42852,32.54009],[79.43275,32.54345],[79.43629,32.55028],[79.42757,32.55585],[79.42788,32.56157],[79.43568,32.56785],[79.44005,32.58049],[79.44535,32.58379],[79.44585,32.58795],[79.45228,32.5938],[79.45321,32.60253],[79.46382,32.60609],[79.46962,32.6166],[79.47885,32.619],[79.48397,32.62603],[79.49397,32.63177],[79.50189,32.64302],[79.50706,32.64387],[79.525,32.65187],[79.52728,32.65776],[79.53574,32.66364],[79.53973,32.67183],[79.54922,32.67656],[79.54416,32.68096],[79.53911,32.68246],[79.54023,32.69957],[79.54204,32.70454],[79.54624,32.70687],[79.55044,32.70515],[79.55361,32.70805],[79.55747,32.70922],[79.56107,32.71372],[79.55986,32.71822],[79.55469,32.72087],[79.54884,32.72121],[79.5426,32.73008],[79.54631,32.73923],[79.54728,32.74839],[79.55374,32.75134],[79.55745,32.75775],[79.55114,32.76422],[79.54171,32.76413],[79.54481,32.77378],[79.52147,32.77911],[79.50499,32.78445],[79.48886,32.79498],[79.48097,32.80147],[79.48097,32.81114],[79.4693,32.8208],[79.46759,32.82989],[79.46107,32.83263],[79.46296,32.83852],[79.47077,32.84233],[79.47261,32.84972],[79.47103,32.8548],[79.47275,32.86572],[79.46932,32.86796],[79.47276,32.87877],[79.46145,32.88122],[79.45837,32.87906],[79.45385,32.8825],[79.45138,32.8894],[79.43209,32.8914],[79.42104,32.89629],[79.40821,32.90663],[79.39058,32.91698],[79.40097,32.94141],[79.37904,32.94498],[79.36604,32.9376],[79.35249,32.95174],[79.35362,32.95564],[79.36104,32.95932],[79.36298,32.963],[79.35865,32.96651],[79.35614,32.97317],[79.35225,32.97925],[79.34427,32.97936],[79.34247,32.98509],[79.33862,32.98737],[79.33708,32.99423],[79.33073,33.00108],[79.3383,33.00098],[79.34174,33.01866],[79.33831,33.0277],[79.32801,33.0337],[79.33519,33.04691],[79.33843,33.05582],[79.3488,33.06128],[79.35884,33.06185],[79.35788,33.07055],[79.36128,33.07228],[79.36262,33.07689],[79.36668,33.07979],[79.36809,33.08672],[79.3649,33.09276],[79.36702,33.10105],[79.36426,33.1059],[79.3684,33.10762],[79.37066,33.1112],[79.37345,33.11903],[79.38149,33.12577],[79.39158,33.13941],[79.39853,33.13822],[79.4,33.15025],[79.39494,33.1528],[79.39193,33.15649],[79.3971,33.17013],[79.40998,33.16847],[79.41256,33.17715],[79.40948,33.18819],[79.40009,33.19545],[79.38521,33.20271],[79.38007,33.19824],[79.36188,33.19722],[79.35021,33.20223],[79.33511,33.20322],[79.3237,33.19472],[79.32294,33.19054],[79.30286,33.19108],[79.29568,33.20281],[79.28918,33.20276],[79.28062,33.20731],[79.27274,33.21358],[79.27284,33.22085],[79.26602,33.21859],[79.26019,33.21502],[79.25368,33.21603],[79.25027,33.22094],[79.238,33.23367],[79.22995,33.23299],[79.21709,33.23805],[79.21241,33.23214],[79.21391,33.22394],[79.21005,33.22045],[79.2092,33.21289],[79.20132,33.20869],[79.19755,33.21478],[79.19103,33.22087],[79.1828,33.2204],[79.18196,33.21218],[79.17493,33.20913],[79.17546,33.20436],[79.16844,33.19959],[79.16412,33.19437],[79.16391,33.19146],[79.1539,33.18562],[79.15241,33.18086],[79.14495,33.1864],[79.14367,33.19022],[79.13462,33.19436],[79.13106,33.19965],[79.12647,33.2012],[79.12531,33.20332],[79.12163,33.20097],[79.11451,33.20263],[79.10783,33.19907],[79.10287,33.20628],[79.09386,33.21132],[79.08486,33.21981],[79.07234,33.22329],[79.06539,33.23422],[79.06806,33.23653],[79.07555,33.24064],[79.08029,33.24533],[79.06884,33.25298],[79.06071,33.25537],[79.05258,33.26178],[79.04482,33.26114],[79.03293,33.27772],[79.03938,33.28505],[79.03855,33.28996],[79.03153,33.29314],[79.03894,33.30809],[79.02883,33.30761],[79.02491,33.31402],[79.02736,33.31996],[79.01985,33.32468],[79.01129,33.32274],[79.0041,33.32768],[78.99537,33.32516],[78.97977,33.32724],[78.97673,33.33425],[78.96212,33.3398],[78.95919,33.34706],[78.95419,33.35519],[78.95675,33.35873],[78.94917,33.36523],[78.95463,33.37116],[78.94701,33.37901],[78.94115,33.38092],[78.93665,33.38685],[78.92804,33.38916],[78.92286,33.39319],[78.91047,33.4008],[78.90425,33.40956],[78.89561,33.4116],[78.89108,33.41537],[78.86967,33.41436],[78.8668,33.41852],[78.85712,33.4158],[78.8447,33.41938],[78.84252,33.42483],[78.83563,33.42515],[78.83492,33.43178],[78.83319,33.43583],[78.83694,33.43816],[78.82852,33.44484],[78.82834,33.44866],[78.82317,33.45514],[78.81647,33.45834],[78.81664,33.46383],[78.80942,33.4748],[78.8142,33.48301],[78.80327,33.48979],[78.79402,33.49976],[78.78478,33.50573],[78.77252,33.51815],[78.77022,33.52513],[78.7329,33.56931],[78.7423,33.57709],[78.74072,33.5906],[78.74134,33.60073],[78.75316,33.60995],[78.754,33.61916],[78.75843,33.62359],[78.75149,33.62729],[78.72476,33.62267],[78.71725,33.62262],[78.72033,33.63381],[78.72547,33.64442],[78.72958,33.64818],[78.73027,33.65177],[78.73507,33.66051],[78.76387,33.72011],[78.76513,33.72627],[78.77195,33.73106],[78.77533,33.73871],[78.77718,33.74647],[78.77032,33.74946],[78.76415,33.7593],[78.7627,33.76629],[78.76399,33.77727],[78.75422,33.78326],[78.76079,33.80751],[78.76168,33.82334],[78.7653,33.83346],[78.76403,33.84259],[78.76013,33.84558],[78.75898,33.85314],[78.76148,33.85514],[78.75672,33.86755],[78.75127,33.88509],[78.76303,33.891],[78.76107,33.90318],[78.76476,33.90639],[78.76228,33.91473],[78.74958,33.91473],[78.74375,33.92043],[78.73174,33.92043],[78.72797,33.92271],[78.73511,33.93967],[78.73469,33.95548],[78.74114,33.97614],[78.74241,33.98401],[78.74024,33.99302],[78.74278,33.99908],[78.73558,34.0065],[78.72718,34.00851],[78.72701,34.01564],[78.72169,34.01416],[78.70539,34.01837],[78.70179,34.02401],[78.70163,34.02793],[78.68962,34.02284],[78.67419,34.02515],[78.66803,34.03203],[78.66362,34.03073],[78.65508,34.03227],[78.65528,34.03842],[78.65632,34.04115],[78.65461,34.05354],[78.65882,34.05768],[78.66647,34.07091],[78.65704,34.0752],[78.66025,34.08045],[78.66141,34.0857],[78.66921,34.09222],[78.67519,34.08934],[78.68168,34.07959],[78.69502,34.08377],[78.69277,34.08899],[78.69804,34.09299],[78.70744,34.09473],[78.71511,34.0902],[78.72098,34.09205],[78.72822,34.08993],[78.74061,34.09235],[78.74545,34.09023],[78.75118,34.09914],[78.75988,34.09876],[78.76034,34.10578],[78.76985,34.10872],[78.77583,34.11699],[78.78524,34.12014],[78.78608,34.1287],[78.79446,34.13725],[78.81433,34.1312],[78.82596,34.12459],[78.83478,34.12803],[78.83467,34.13317],[78.84133,34.14176],[78.85673,34.14211],[78.86032,34.16217],[78.86322,34.16575],[78.87375,34.16454],[78.88176,34.15542],[78.88153,34.15368],[78.8916,34.14728],[78.89825,34.14856],[78.90489,34.14074],[78.90947,34.14273],[78.90787,34.1487],[78.9136,34.1521],[78.92553,34.15322],[78.92588,34.16204],[78.92759,34.16745],[78.92382,34.17145],[78.93309,34.19107],[78.94476,34.22518],[78.95214,34.22777],[78.9609,34.23604],[78.95922,34.24357],[78.96442,34.24769],[78.96313,34.25934],[78.97017,34.27925],[78.98515,34.30059],[78.97953,34.30662],[78.9803,34.315],[79.01174,34.30291],[79.01571,34.30671],[79.02777,34.30579],[79.03845,34.29608],[79.05463,34.29658],[79.0586,34.30139],[79.05719,34.30784],[79.05303,34.31372],[79.05364,34.32151],[79.04596,34.32456],[79.04034,34.33158],[79.03117,34.33313],[79.0316,34.34574],[79.03869,34.3563],[79.03753,34.35836],[79.03223,34.36232],[79.02898,34.36969],[79.02334,34.37393],[79.02524,34.37818],[79.02127,34.38331],[79.02141,34.38845],[79.01744,34.39046],[79.0169,34.39474],[79.00964,34.40076],[79.00718,34.40677],[78.98665,34.4018],[78.97436,34.39852],[78.96426,34.38768],[78.94593,34.38874],[78.94133,34.38441],[78.93261,34.38121],[78.92778,34.37992],[78.91609,34.38883],[78.91262,34.38909],[78.90499,34.3998],[78.88931,34.39826],[78.87843,34.39503],[78.86962,34.402],[78.86217,34.40443],[78.85415,34.41354],[78.84682,34.41756],[78.83186,34.41728],[78.8162,34.42098],[78.81305,34.42893],[78.80784,34.42924],[78.80538,34.43635],[78.79726,34.43699],[78.78982,34.44046],[78.7832,34.44287],[78.77657,34.4388],[78.76375,34.43927],[78.75735,34.44699],[78.74711,34.45056],[78.73893,34.45584],[78.73831,34.45913],[78.75035,34.46134],[78.75691,34.46638],[78.75372,34.47135],[78.75739,34.47857],[78.76268,34.48057],[78.74774,34.4885],[78.73554,34.49359],[78.71459,34.50209],[78.71318,34.51513],[78.70831,34.52705],[78.68625,34.52749],[78.68272,34.53019],[78.66742,34.53277],[78.64972,34.53987],[78.64438,34.54414],[78.64705,34.54992],[78.6238,34.53649],[78.61291,34.53947],[78.60279,34.53412],[78.60316,34.53191],[78.59222,34.52747],[78.5937,34.51747],[78.58831,34.51228],[78.58841,34.50709],[78.5799,34.50387],[78.57241,34.50885],[78.56012,34.51044],[78.56035,34.5161],[78.55634,34.52006],[78.56127,34.52629],[78.55669,34.53337],[78.56036,34.53988],[78.5606,34.55631],[78.55625,34.55647],[78.5526,34.56285],[78.55146,34.57165],[78.54144,34.57274],[78.5328,34.57722],[78.51595,34.57268],[78.50458,34.57718],[78.49834,34.58393],[78.49246,34.57894],[78.48383,34.58018],[78.47824,34.57587],[78.47849,34.57014],[78.47244,34.56756],[78.46014,34.56938],[78.45746,34.56781],[78.45565,34.56279],[78.45041,34.55833],[78.45159,34.55225],[78.44535,34.54263],[78.43631,34.54204],[78.42899,34.55616],[78.42578,34.55897],[78.43104,34.57052],[78.43012,34.59055],[78.42439,34.59256],[78.42141,34.59514],[78.41672,34.59348],[78.41202,34.5969],[78.40784,34.5958],[78.3913,34.60487],[78.38699,34.60446],[78.38474,34.60687],[78.37185,34.60589],[78.36514,34.60886],[78.36376,34.60534],[78.35619,34.60238],[78.35135,34.60494],[78.34787,34.60281],[78.33753,34.60294],[78.33126,34.60716],[78.32902,34.6122],[78.32163,34.61217],[78.31699,34.61439],[78.31149,34.6135],[78.30256,34.61487],[78.29362,34.61762],[78.29014,34.61505],[78.28322,34.62236],[78.27289,34.62913],[78.26875,34.63646],[78.26933,34.6494],[78.26649,34.6516],[78.26628,34.65742],[78.26127,34.66098],[78.26433,34.66581],[78.2722,34.66782],[78.27491,34.67321],[78.279,34.67635],[78.27463,34.6862],[78.27618,34.68896],[78.27517,34.69561],[78.27177,34.70157],[78.26425,34.70189],[78.25947,34.70899],[78.25607,34.70759],[78.24718,34.709],[78.239,34.71495],[78.23186,34.71383],[78.22265,34.7178],[78.21695,34.71613],[78.2078,34.72068],[78.20395,34.73118],[78.20146,34.73604],[78.20456,34.74023],[78.20389,34.74184],[78.20461,34.75128],[78.18816,34.79061],[78.18545,34.79385],[78.18567,34.79838],[78.1907,34.80009],[78.19582,34.8044],[78.19939,34.80717],[78.20295,34.80705],[78.20479,34.80862],[78.20949,34.80641],[78.21622,34.80834],[78.21849,34.81111],[78.2225,34.81228],[78.22568,34.81173],[78.22955,34.81935],[78.2286,34.82218],[78.22835,34.82586],[78.23076,34.82816],[78.23342,34.83347],[78.23265,34.83709],[78.2342,34.83954],[78.23354,34.84537],[78.23134,34.8467],[78.23085,34.84972],[78.22815,34.85182],[78.2282,34.85504],[78.23184,34.85667],[78.23705,34.87006],[78.23436,34.875],[78.23648,34.88107],[78.22699,34.88616],[78.22573,34.88901],[78.21499,34.8885],[78.20424,34.89137],[78.20343,34.89723],[78.20811,34.90366],[78.19802,34.90896],[78.19687,34.91371],[78.18805,34.91917],[78.18747,34.92239],[78.17693,34.92898],[78.17407,34.93903],[78.17744,34.94209],[78.18356,34.94064],[78.19374,34.95003],[78.20253,34.95435],[78.20309,34.96599],[78.20228,34.97256],[78.19619,34.97388],[78.18421,34.98271],[78.17823,34.98487],[78.17636,34.98759],[78.1713,34.98557],[78.15662,34.98861],[78.15169,34.99231],[78.14881,34.99938],[78.14375,35.00228],[78.14135,35.03272],[78.13912,35.03787],[78.13414,35.04048],[78.1283,35.04628],[78.12899,35.04888],[78.13788,35.05061],[78.13408,35.05654],[78.13303,35.06077],[78.13814,35.06475],[78.13981,35.0676],[78.14454,35.06909],[78.14651,35.07171],[78.14,35.07654],[78.13709,35.08233],[78.13074,35.09149],[78.13522,35.09521],[78.13215,35.09982],[78.12771,35.10051],[78.11269,35.10719],[78.11239,35.11713],[78.10248,35.12034],[78.10183,35.12831],[78.09927,35.13143],[78.09945,35.13623],[78.10119,35.1419],[78.08506,35.16585],[78.07116,35.17165],[78.0552,35.17914],[78.05086,35.1853],[78.0431,35.19201],[78.0391,35.20012],[78.03374,35.20319],[78.02777,35.20459],[78.02592,35.2116],[78.02153,35.21608],[78.0155,35.21551],[78.011,35.22896],[78.00583,35.22769],[78.00478,35.23034],[78.00817,35.23846],[78.00328,35.23978],[78.00319,35.24335],[78.01092,35.27376],[78.01136,35.3052],[78.02277,35.35795],[78.0276,35.36469],[78.03518,35.37032],[78.04415,35.381],[78.04675,35.38859],[78.05285,35.39882],[78.06483,35.40841],[78.072,35.41129],[78.07428,35.41549],[78.08343,35.42081],[78.08936,35.42195],[78.09564,35.42588],[78.10123,35.43093],[78.10282,35.43397],[78.10784,35.4398],[78.10428,35.44423],[78.10415,35.44699],[78.10991,35.46159],[78.10901,35.46833],[78.11429,35.47395],[78.10462,35.48366],[78.1003,35.48209],[78.08499,35.4861],[78.08185,35.49106],[78.07596,35.49546],[78.07482,35.49335],[78.07025,35.49348],[78.06569,35.48728],[78.05311,35.49159],[78.04053,35.48919],[78.03556,35.48312],[78.03608,35.47928],[78.0342,35.476],[78.03532,35.47324],[78.03369,35.47049],[78.02753,35.47036],[78.02548,35.46856],[78.00838,35.4826],[78.00707,35.48992],[78.00095,35.49389],[77.99639,35.48937],[77.96986,35.49492],[77.96794,35.49323],[77.96741,35.48148],[77.95348,35.48398],[77.94779,35.4781],[77.93918,35.48382],[77.93538,35.49121],[77.92435,35.4965],[77.91712,35.48934],[77.92158,35.48385],[77.91813,35.47892],[77.91812,35.47288],[77.91398,35.4689],[77.9119,35.46156],[77.90465,35.46533],[77.90083,35.4652],[77.89765,35.47331],[77.8931,35.47416],[77.88915,35.47948],[77.88314,35.47922],[77.87627,35.48595],[77.87696,35.49044],[77.86734,35.49804],[77.86047,35.50004],[77.85427,35.49072],[77.84419,35.49671],[77.8403,35.50269],[77.82702,35.50628],[77.82313,35.51402],[77.81328,35.52223],[77.80858,35.51981],[77.80388,35.51964],[77.79881,35.51054],[77.7934,35.50843],[77.79143,35.50633],[77.78404,35.50491],[77.78009,35.49845],[77.76995,35.49969],[77.76463,35.50204],[77.75724,35.50327],[77.75466,35.4978],[77.74288,35.49561],[77.71879,35.46264],[77.70869,35.46215],[77.70682,35.46334],[77.69965,35.46404],[77.69522,35.46195],[77.69301,35.4567],[77.68668,35.45426],[77.67791,35.46489],[77.6712,35.46713],[77.65282,35.48727],[77.63888,35.48345],[77.63738,35.47629],[77.64206,35.46802],[77.63082,35.4621],[77.61581,35.47016],[77.60423,35.47263],[77.60158,35.46951],[77.59549,35.46974],[77.59156,35.46574],[77.5782,35.47002],[77.5827,35.47934],[77.57293,35.484],[77.56042,35.48643],[77.5509,35.48288],[77.54275,35.48438],[77.54019,35.48848],[77.53574,35.48894],[77.52512,35.48437],[77.52041,35.48674],[77.51639,35.48407],[77.50903,35.48712],[77.50118,35.48931],[77.49028,35.48475],[77.4835,35.48354],[77.48016,35.48065],[77.4642,35.47263],[77.46035,35.46862],[77.45305,35.46685],[77.44294,35.4612],[77.4342,35.46506],[77.43046,35.46495],[77.42434,35.47143],[77.4188,35.47033],[77.40844,35.47371],[77.40035,35.47331],[77.39363,35.4701],[77.3898,35.47208],[77.38145,35.47325],[77.37654,35.48337],[77.37059,35.49041],[77.3722,35.49745],[77.36306,35.49978],[77.35529,35.49429],[77.33963,35.50362],[77.33976,35.50959],[77.33615,35.51392],[77.3394,35.51826],[77.33766,35.52442],[77.32869,35.5317],[77.32762,35.53395],[77.31899,35.539],[77.31376,35.53625],[77.31059,35.54243],[77.30347,35.54498],[77.30047,35.54139],[77.29609,35.54087],[77.29378,35.5437],[77.28277,35.53849],[77.27314,35.53606],[77.26451,35.53959],[77.24956,35.53074],[77.22705,35.52972],[77.21141,35.52282],[77.19371,35.52151],[77.17997,35.52816],[77.17584,35.53201],[77.16414,35.53804],[77.15251,35.53788],[77.14637,35.54052],[77.13684,35.55138],[77.1267,35.55691],[77.12084,35.55679],[77.11102,35.56354],[77.10032,35.56355],[77.09169,35.5658],[77.06279,35.59903],[77.05656,35.60212],[77.04541,35.59899],[77.02747,35.60049],[77.01022,35.61093],[77.00095,35.60853],[76.99443,35.61003],[76.98379,35.5987],[76.97297,35.6014],[76.96697,35.59546],[76.95805,35.59549],[76.94814,35.60335],[76.93803,35.60589],[76.93136,35.61065],[76.91767,35.61126],[76.89984,35.61909],[76.89987,35.62358],[76.87923,35.64086],[76.85996,35.65199],[76.85233,35.66869],[76.84414,35.67467],[76.83871,35.66837],[76.83292,35.66905],[76.82302,35.66583],[76.81455,35.66997],[76.80539,35.66463],[76.79394,35.66428],[76.78866,35.66169],[76.78292,35.66126],[76.77718,35.65804],[76.77327,35.66076],[76.76662,35.65958],[76.75642,35.66596],[76.75378,35.67401],[76.75674,35.6812],[76.75115,35.68566],[76.74763,35.68567],[76.74382,35.68904],[76.7431,35.69491],[76.73794,35.70008],[76.73209,35.69968],[76.72845,35.7043],[76.72687,35.70948],[76.7151,35.71486],[76.70264,35.7247],[76.69626,35.72486],[76.69568,35.72923],[76.69373,35.7336],[76.69773,35.74052],[76.69343,35.74731],[76.685,35.75298],[76.67158,35.75597],[76.66263,35.75449],[76.653,35.75682],[76.64749,35.76138],[76.64851,35.76496],[76.64197,35.77021],[76.63439,35.77125],[76.6254,35.7683],[76.61567,35.76185],[76.60302,35.77101],[76.58664,35.77497],[76.58467,35.77894],[76.59105,35.78296],[76.57771,35.79853],[76.57879,35.80407],[76.57096,35.80712],[76.56588,35.8124],[76.56509,35.82018],[76.56087,35.8224],[76.5709,35.83157],[76.58779,35.84353],[76.5858,35.84825],[76.58313,35.863],[76.57345,35.86825],[76.57271,35.87127],[76.58246,35.87928],[76.58809,35.88728],[76.59201,35.88889],[76.59112,35.89161],[76.59923,35.90082],[76.58456,35.91089],[76.5862,35.91554],[76.58372,35.9202],[76.56692,35.92546],[76.56216,35.92208],[76.5562,35.9278],[76.5475,35.92741],[76.54394,35.92493],[76.54319,35.90729],[76.54588,35.90299],[76.53408,35.89926],[76.51954,35.88775],[76.51243,35.8814],[76.50892,35.88716],[76.49443,35.89013],[76.48124,35.88774],[76.47593,35.89133],[76.46651,35.89046],[76.45658,35.88317],[76.44772,35.87416],[76.44442,35.86559],[76.43184,35.8591],[76.42751,35.85262],[76.41678,35.85439],[76.40249,35.85306],[76.3882,35.86062],[76.37842,35.85833],[76.36975,35.86359],[76.36521,35.86328],[76.35149,35.85467],[76.35596,35.84439],[76.35477,35.83592],[76.35838,35.82855],[76.35084,35.83011],[76.33918,35.83054],[76.32699,35.83536],[76.31619,35.83739],[76.3083,35.83254],[76.29983,35.84305],[76.28873,35.8419],[76.27007,35.84187],[76.26549,35.83784],[76.25787,35.84098],[76.24888,35.8391],[76.24161,35.84085],[76.22267,35.84203],[76.22038,35.838],[76.22181,35.83446],[76.22049,35.82868],[76.20738,35.82674],[76.20045,35.82368],[76.17527,35.82397],[76.17,35.82092],[76.15788,35.82625],[76.14508,35.83716],[76.14532,35.84333],[76.14075,35.85006],[76.14546,35.85637],[76.15159,35.85897],[76.15497,35.86546],[76.14859,35.87419],[76.15334,35.88163],[76.14778,35.89241],[76.15796,35.90813],[76.15921,35.91828],[76.15266,35.92772],[76.14663,35.93188],[76.14294,35.94258],[76.13718,35.94772],[76.13506,35.9552],[76.11983,35.96738],[76.11479,35.96875],[76.1125,35.97234],[76.10775,35.97691],[76.10643,35.98315],[76.10422,35.98572],[76.10339,35.99217],[76.09817,35.99707],[76.09707,36.00918],[76.1031,36.01175],[76.10054,36.01588],[76.08562,36.02279],[76.04753,36.02438],[76.03727,36.02147],[76.02912,36.02287],[76.02365,36.01732],[76.01474,36.01648],[76.00445,36.01676],[75.99282,36.02176],[75.98398,36.03121],[75.9766,36.03234],[75.97472,36.03624],[75.95688,36.0463],[75.95484,36.05197],[75.94863,36.05562],[75.9493,36.06217],[75.9534,36.06482],[75.95278,36.06623],[75.94117,36.07042],[75.94227,36.07571],[75.95504,36.07823],[75.95363,36.08188],[75.94398,36.08775],[75.94602,36.09609],[75.93777,36.10499],[75.94187,36.1089],[75.94872,36.1117],[75.9472,36.11854],[75.93195,36.12759],[75.93241,36.13589],[75.95083,36.14143],[75.96513,36.14751],[75.96854,36.14923],[75.96302,36.15704],[75.96845,36.16379],[75.98281,36.16444],[75.98825,36.16288],[75.99695,36.16755],[76.00427,36.16668],[76.01257,36.17248],[76.02773,36.17329],[76.0299,36.17547],[76.018,36.17864],[76.01033,36.17995],[76.00472,36.18292],[76.00495,36.18815],[76.00998,36.19061],[76.01158,36.19474],[76.00693,36.19929],[76.00915,36.20773],[76.00671,36.22626],[76.00322,36.23229],[76.00972,36.23545],[76.01828,36.23308],[76.01962,36.23608],[76.02646,36.23619],[76.03331,36.23409],[76.03501,36.22867],[76.0435,36.22426],[76.05611,36.22318],[76.06211,36.22657],[76.05744,36.23072],[76.06033,36.23488],[76.05738,36.23959],[76.05786,36.24541],[76.04647,36.25372],[76.03782,36.26424],[76.026,36.26944],[76.01693,36.30065],[75.99534,36.30773],[75.99558,36.32385],[75.99238,36.33148],[75.98505,36.34132],[75.9846,36.35171],[75.99376,36.35602],[75.99811,36.3633],[75.99817,36.36885],[76.00098,36.37164],[76.00275,36.38106],[76.016,36.38881],[76.02719,36.39159],[76.02664,36.39799],[76.03322,36.40285],[76.03569,36.40771],[76.02767,36.41924],[76.02308,36.43575],[76.01626,36.45377],[76.00807,36.47345],[75.99383,36.48866],[75.98637,36.50469],[75.97371,36.51354],[75.9638,36.52294],[75.95939,36.53159],[75.9488,36.54135],[75.9393,36.55646],[75.92533,36.5644],[75.92441,36.57069],[75.94145,36.59153],[75.94201,36.59859],[75.93529,36.60055],[75.9285,36.60952],[75.92446,36.61409],[75.91818,36.62003],[75.91328,36.62762],[75.90691,36.63179],[75.89034,36.63744],[75.88088,36.64821],[75.87348,36.65568],[75.87201,36.66203],[75.86642,36.66894],[75.85662,36.67393],[75.84829,36.67353],[75.8395,36.68],[75.83207,36.68372],[75.82637,36.6924],[75.81699,36.69702],[75.81105,36.69778],[75.80277,36.71072],[75.79449,36.7121],[75.79204,36.71541],[75.76556,36.72533],[75.7466,36.74009],[75.73505,36.74582],[75.72076,36.75265],[75.71347,36.74651],[75.70411,36.74696],[75.69864,36.74682],[75.69042,36.75768],[75.67399,36.76509],[75.66442,36.76453],[75.65485,36.76782],[75.64704,36.76752],[75.63991,36.77053],[75.63082,36.7669],[75.62241,36.76878],[75.5867,36.76841],[75.57297,36.7664],[75.56902,36.76745],[75.56783,36.7751],[75.55118,36.77038],[75.53384,36.7717],[75.53368,36.76167],[75.52677,36.75669],[75.53154,36.75116],[75.53665,36.74205],[75.53577,36.73832],[75.53774,36.73371],[75.53215,36.72029],[75.51803,36.72203],[75.50823,36.72896],[75.50435,36.73682],[75.50048,36.73919],[75.49239,36.73428],[75.48629,36.7288],[75.47469,36.72332],[75.46901,36.71538],[75.46057,36.72011],[75.45278,36.72346],[75.4498,36.73177],[75.44451,36.74508],[75.43442,36.75013],[75.43531,36.75849],[75.42975,36.7615],[75.42762,36.76561],[75.4213,36.77053],[75.42144,36.77794],[75.42432,36.78371],[75.42735,36.79415],[75.42034,36.79907],[75.4235,36.80906],[75.42323,36.81904],[75.42993,36.82888],[75.42977,36.8453],[75.42258,36.86662],[75.42261,36.87409],[75.41956,36.88046],[75.422,36.88738],[75.41906,36.89085],[75.41064,36.89158],[75.39706,36.90026],[75.38623,36.90401],[75.39153,36.9175],[75.38723,36.9266],[75.39211,36.93266],[75.40592,36.93652],[75.41012,36.94615],[75.40295,36.94986],[75.40133,36.95491],[75.39421,36.95556],[75.39303,36.95083],[75.38613,36.94739],[75.37305,36.94723],[75.35856,36.9568],[75.34167,36.95662],[75.32341,36.9592],[75.31925,36.96745],[75.31441,36.96967],[75.30816,36.96477],[75.29644,36.9733],[75.28542,36.9747],[75.27711,36.972],[75.27064,36.97329],[75.26868,36.96818],[75.25917,36.96416],[75.25241,36.96454],[75.2485,36.96173],[75.23967,36.96114],[75.23497,36.95891],[75.21664,36.96543],[75.21616,36.97194],[75.19947,36.97632],[75.19422,36.97413],[75.17786,36.97879],[75.17318,36.98619],[75.16874,36.98608],[75.16019,36.98817],[75.15747,36.99712],[75.16332,37.00406],[75.16659,37.00561],[75.16779,37.0088],[75.16281,37.01638],[75.15234,37.01574],[75.14976,37.02346],[75.14444,37.02679],[75.13755,37.02695],[75.12929,37.0196],[75.12511,37.01259],[75.11607,37.0117],[75.11345,37.00665],[75.10464,37.01135],[75.09594,37.01096],[75.09068,37.00838],[75.08199,37.00791],[75.07146,37.00258],[75.05733,37.00177],[75.04457,37.00698],[75.04172,37.01412],[75.02913,37.01688],[75.01955,37.00976],[75.01134,37.00044],[75.00454,37.001],[74.99876,36.99772],[74.99587,36.99252],[74.98955,36.99006],[74.98263,36.98973],[74.97815,36.99643],[74.97366,36.99764],[74.96376,36.98788],[74.94328,36.98811],[74.92892,36.97945],[74.91636,36.97816],[74.92204,36.97107],[74.92359,36.96069],[74.92995,36.9547],[74.9315,36.94597],[74.92782,36.94478],[74.91658,36.94633],[74.92182,36.93554],[74.91951,36.93298],[74.91411,36.93343],[74.90802,36.9284],[74.89997,36.93425],[74.88608,36.93352],[74.88386,36.93663],[74.8858,36.94835],[74.8812,36.95294],[74.88026,36.95993],[74.87486,36.96499],[74.87358,36.97061],[74.86517,36.98019],[74.84853,37.01007],[74.83952,37.0174],[74.84631,37.02857],[74.84108,37.04275],[74.84087,37.0556],[74.8386,37.05967],[74.82535,37.05539],[74.79973,37.0522],[74.79108,37.04281],[74.79487,37.0311],[74.78801,37.02744],[74.78115,37.02761],[74.77343,37.02152],[74.7616,37.02475],[74.74892,37.02216],[74.73487,37.02177],[74.72581,37.02846],[74.72361,37.03405],[74.7173,37.03773],[74.71716,37.04195],[74.72152,37.05738],[74.70597,37.06597],[74.7068,37.07765],[74.69939,37.08359],[74.6689,37.08289],[74.65778,37.07788],[74.65146,37.07013],[74.64206,37.06855],[74.62304,37.06039],[74.62414,37.04572],[74.57155,37.02978],[74.57219,37.02997],[74.57341,37.02166],[74.56891,36.98744],[74.56297,36.96419],[74.55841,36.96027],[74.55075,36.95966],[74.54149,36.96105],[74.53658,36.96516],[74.52833,36.9905],[74.52463,36.9933],[74.51736,36.99891],[74.49813,36.99955],[74.42786,36.99763],[74.42055,36.99611],[74.41344,36.98816],[74.40119,36.98044],[74.37394,36.97399],[74.35408,36.96469],[74.33444,36.94699],[74.33141,36.94424],[74.31083,36.92986],[74.264,36.90444],[74.2548,36.90127],[74.2523,36.90039],[74.23635,36.89958],[74.21028,36.90761],[74.19061,36.91005],[74.16647,36.91153],[74.15203,36.90986],[74.14753,36.90569],[74.14119,36.89572],[74.13744,36.88275],[74.13422,36.87155],[74.12741,36.84811],[74.11966,36.84172],[74.10972,36.84094],[74.09413,36.84633],[74.08499,36.8463],[74.07888,36.84413],[74.05275,36.82872],[74.03099,36.82914],[74.02525,36.83297],[74.00608,36.83677],[74,36.83402],[73.97969,36.83302],[73.96319,36.8375],[73.93552,36.86736],[73.91735,36.87619],[73.90833,36.88102],[73.89011,36.8788],[73.8838,36.87922],[73.87913,36.88547],[73.84658,36.89861],[73.82213,36.89764],[73.80797,36.89344],[73.80016,36.88969],[73.79435,36.89516],[73.79074,36.90133],[73.78461,36.90344],[73.77594,36.90144],[73.7633,36.90224],[73.74996,36.9065],[73.74025,36.90455],[73.73683,36.90222],[73.73352,36.90072],[73.72511,36.90127],[73.71386,36.90538],[73.70505,36.91272],[73.69347,36.91347],[73.66255,36.91116],[73.63955,36.90325],[73.6185,36.90458],[73.59764,36.90758],[73.58555,36.90322],[73.58338,36.90152],[73.57755,36.89691],[73.55036,36.88925],[73.52777,36.88555],[73.51572,36.89224],[73.50641,36.89452],[73.46958,36.89677],[73.44061,36.89261],[73.41664,36.89661],[73.40313,36.89913],[73.38905,36.89574],[73.37225,36.88572],[73.35694,36.88069],[73.3478,36.88463],[73.33622,36.88533],[73.31771,36.87963],[73.30661,36.87313],[73.29766,36.87369],[73.28919,36.87933],[73.27336,36.88855],[73.26194,36.89025],[73.23339,36.88677],[73.21566,36.88988],[73.18939,36.88319],[73.1818,36.88466],[73.14414,36.89411],[73.12166,36.88716],[73.08836,36.88808],[73.07174,36.88905],[73.04727,36.87397],[73.02683,36.86069],[72.99747,36.86238],[72.96888,36.8733],[72.95339,36.87211],[72.92949,36.84875],[72.92414,36.84594],[72.90752,36.84688],[72.88263,36.84108],[72.87105,36.84069],[72.82508,36.84327],[72.79853,36.84786],[72.78158,36.84466],[72.76266,36.8488],[72.75,36.85055],[72.71847,36.84197],[72.68524,36.8438],[72.65616,36.84983],[72.63161,36.84841],[72.62658,36.84158],[72.5661,36.83241],[72.54538,36.82286],[72.50753,36.79288],[72.50447,36.78239],[72.49522,36.77755],[72.41116,36.77666],[72.39005,36.76177],[72.36763,36.75763],[72.33683,36.75922],[72.31369,36.74619],[72.31205,36.74602],[72.30255,36.74499],[72.24136,36.75347],[72.22691,36.73822],[72.22133,36.72991],[72.22127,36.7298],[72.19689,36.69355],[72.20444,36.67719],[72.21447,36.66422],[72.19163,36.65472],[72.16555,36.65961],[72.14069,36.65197],[72.11624,36.64966],[72.10291,36.64855],[72.09727,36.63283],[72.10622,36.60572],[72.09674,36.59733],[72.05916,36.59563],[72.01294,36.56772],[71.96438,36.56655],[71.9353,36.56089],[71.92778,36.5488],[71.91716,36.52444],[71.91664,36.51736],[71.90914,36.5053],[71.88486,36.50469],[71.83205,36.50547],[71.82186,36.48641],[71.81786,36.46172],[71.81852,36.44452],[71.81886,36.44197],[71.82905,36.43452],[71.86166,36.42941],[71.86502,36.41505],[71.85727,36.39941],[71.84371,36.39474],[71.81744,36.396],[71.79577,36.40058],[71.75788,36.42372],[71.7458,36.4326],[71.72447,36.44838],[71.70744,36.45627],[71.68794,36.46075],[71.67763,36.46875],[71.67336,36.47208],[71.65619,36.47822],[71.63594,36.47205],[71.62361,36.45308],[71.62258,36.43883],[71.62197,36.43005],[71.61389,36.40911],[71.5928,36.39055],[71.56539,36.37583],[71.55613,36.36914],[71.55952,36.35477],[71.57216,36.34708],[71.56874,36.32949],[71.53552,36.32566],[71.52422,36.32086],[71.52116,36.30855],[71.52055,36.29972],[71.49974,36.29752],[71.48516,36.29597],[71.46886,36.2825],[71.45719,36.27236],[71.4443,36.27],[71.44163,36.26952],[71.43447,36.26094],[71.41905,36.22789],[71.40047,36.21272],[71.38458,36.20455],[71.36685,36.2018],[71.35908,36.19869],[71.35241,36.18122],[71.34744,36.17255],[71.34058,36.16838],[71.31028,36.15816],[71.28419,36.14508],[71.2546,36.12861],[71.24544,36.12277],[71.24266,36.11399],[71.2438,36.09794],[71.24236,36.09269],[71.22799,36.09063],[71.20808,36.07105],[71.19899,36.04922],[71.19953,36.04633],[71.20141,36.03577],[71.21502,36.0263],[71.2288,36.0195],[71.2536,35.99708],[71.26108,35.99408],[71.28485,35.98949],[71.3028,35.97983],[71.31933,35.96488],[71.33225,35.96163],[71.34963,35.95999],[71.36169,35.96033],[71.37672,35.95611],[71.38138,35.94436],[71.38408,35.91936],[71.38114,35.90791],[71.38072,35.90172],[71.39319,35.89227],[71.4073,35.89075],[71.41819,35.89027],[71.42966,35.88174],[71.4618,35.8403],[71.46741,35.82672],[71.48986,35.80347],[71.48936,35.79639],[71.48133,35.77452],[71.48055,35.763],[71.48535,35.75388],[71.4978,35.74441],[71.52216,35.73352],[71.5328,35.7295],[71.54666,35.72022],[71.54677,35.70544],[71.5388,35.68827],[71.50958,35.65824],[71.50042,35.64022],[71.49947,35.62641],[71.51005,35.61577],[71.52627,35.60488],[71.55586,35.59152],[71.57788,35.58313],[71.60121,35.57744],[71.61222,35.57322],[71.61416,35.56852],[71.61088,35.55391],[71.59928,35.53322],[71.59369,35.5178],[71.59339,35.49752],[71.60608,35.48491],[71.63616,35.46322],[71.64894,35.45247],[71.65066,35.445],[71.64638,35.43227],[71.64105,35.42052],[71.62336,35.40936],[71.5558,35.31286],[71.55358,35.29661],[71.55355,35.29636],[71.55944,35.28408],[71.57003,35.27436],[71.59594,35.25838],[71.62252,35.23591],[71.63541,35.227],[71.65763,35.22319],[71.67197,35.21883],[71.67672,35.20661],[71.67488,35.19652],[71.63894,35.165],[71.62882,35.14888],[71.6173,35.1398],[71.60363,35.13586],[71.58533,35.12936],[71.55258,35.10797],[71.53577,35.09041],[71.53005,35.07236],[71.53397,35.06391],[71.53883,35.05361],[71.54666,35.03766],[71.55603,35.02805],[71.55208,35.01908],[71.53488,35.01252],[71.5176,35.00416],[71.51013,34.99258],[71.51041,34.98066],[71.50646,34.97166],[71.49925,34.96374],[71.48574,34.96163],[71.47621,34.95288],[71.44564,34.94513],[71.43291,34.93838],[71.42238,34.93061],[71.40061,34.9215],[71.38472,34.91672],[71.37016,34.91555],[71.3543,34.91166],[71.34371,34.90297],[71.32839,34.88991],[71.30986,34.87883],[71.30119,34.86547],[71.29575,34.85011],[71.29244,34.83377],[71.27944,34.80502],[71.27122,34.79805],[71.2463,34.79088],[71.22988,34.76044],[71.22499,34.75333],[71.2191,34.74808],[71.19572,34.74727],[71.18172,34.73688],[71.17128,34.72999],[71.15427,34.72433],[71.14372,34.71561],[71.13666,34.70949],[71.11452,34.71047],[71.10602,34.69891],[71.09566,34.67552],[71.09586,34.66086],[71.10578,34.64211],[71.11058,34.62997],[71.10705,34.62036],[71.08708,34.59044],[71.0738,34.58222],[71.05433,34.57691],[71.01797,34.57316],[71.00375,34.56675],[70.99555,34.55477],[70.99283,34.52763],[70.99485,34.4915],[71.0068,34.46111],[71.023,34.44813],[71.0485,34.43091],[71.05358,34.4275],[71.06536,34.41205],[71.07602,34.39577],[71.08728,34.38913],[71.11846,34.379],[71.15394,34.36955],[71.16947,34.3636],[71.17124,34.35825],[71.17108,34.33891],[71.15841,34.32277],[71.15675,34.31316],[71.13033,34.28091],[71.12205,34.26719],[71.1213,34.25494],[71.12652,34.23714],[71.1353,34.2253],[71.12828,34.21419],[71.12444,34.2038],[71.12605,34.17913],[71.12608,34.16241],[71.10939,34.14908],[71.08586,34.12088],[71.07966,34.11344],[71.07274,34.10569],[71.07733,34.07966],[71.07627,34.0625],[71.06527,34.0518],[71.04235,34.04933],[71.03416,34.05052],[71.0178,34.03661],[70.99869,34.0288],[70.98317,34.02861],[70.95463,34.01861],[70.9356,34.01166],[70.9253,34.01208],[70.91794,34.0098],[70.91638,34.00127],[70.89872,33.98222],[70.88494,33.97674],[70.8685,33.9783],[70.85108,33.98072],[70.82428,33.98183],[70.80938,33.97469],[70.78833,33.9678],[70.77947,33.95783],[70.76794,33.95486],[70.75072,33.96072],[70.74036,33.96027],[70.70114,33.96097],[70.6763,33.96022],[70.65116,33.95433],[70.63066,33.95686],[70.59388,33.96433],[70.56047,33.95786],[70.54772,33.95147],[70.53913,33.94577],[70.52502,33.95233],[70.51139,33.94855],[70.50183,33.94377],[70.46772,33.94333],[70.43939,33.95386],[70.4263,33.96038],[70.40372,33.96294],[70.32624,33.96322],[70.29794,33.97458],[70.29783,33.97286],[70.27911,33.98027],[70.26094,33.97772],[70.23883,33.97314],[70.22377,33.98119],[70.19821,33.9853],[70.1693,33.99919],[70.1543,34.0083],[70.13647,34.01216],[70.11191,34.01086],[70.10016,34.00805],[70.07991,34.01519],[70.06747,34.02419],[70.04619,34.03672],[70.02441,34.03961],[70.01927,34.03978],[70.01197,34.04861],[70.00166,34.04894],[69.98711,34.04085],[69.96636,34.03833],[69.91349,34.03794],[69.89753,34.02774],[69.89666,34.00955],[69.90105,33.9933],[69.90066,33.98474],[69.89516,33.97741],[69.87669,33.96836],[69.8658,33.95586],[69.86119,33.93991],[69.86575,33.92691],[69.88297,33.91025],[69.90389,33.89027],[69.91219,33.87497],[69.9163,33.85341],[69.92597,33.84022],[69.94594,33.82775],[69.95569,33.81669],[69.96302,33.78213],[69.9698,33.76261],[69.99183,33.74044],[70.00563,33.73352],[70.02603,33.73069],[70.03505,33.73147],[70.09211,33.71664],[70.10247,33.71841],[70.11677,33.72222],[70.12447,33.72194],[70.13697,33.71505],[70.1501,33.6953],[70.15071,33.68241],[70.14719,33.66325],[70.14927,33.65352],[70.16933,33.64422],[70.18966,33.6403],[70.19702,33.6336],[70.19358,33.61655],[70.17941,33.56452],[70.17472,33.54752],[70.17358,33.52505],[70.18191,33.51297],[70.20055,33.50158],[70.20764,33.48952],[70.2148,33.47963],[70.23124,33.4758],[70.24008,33.47336],[70.25238,33.4386],[70.25849,33.43302],[70.28786,33.43194],[70.2978,33.42622],[70.30097,33.41325],[70.31539,33.39555],[70.31494,33.387],[70.31172,33.37424],[70.32099,33.35569],[70.32658,33.34047],[70.32352,33.33094],[70.30816,33.33041],[70.29142,33.32783],[70.27108,33.30497],[70.23347,33.2688],[70.20827,33.25041],[70.20694,33.24974],[70.18994,33.24141],[70.16805,33.23791],[70.16397,33.23269],[70.15574,33.22119],[70.13111,33.21347],[70.10414,33.21014],[70.09386,33.20836],[70.07894,33.21638],[70.0673,33.21355],[70.02308,33.14327],[70.00638,33.14061],[70,33.13977],[69.98713,33.13805],[69.97683,33.13627],[69.96514,33.1313],[69.94589,33.12872],[69.9288,33.11752],[69.91669,33.10397],[69.90127,33.10127],[69.89236,33.10158],[69.87552,33.09569],[69.85644,33.09633],[69.8288,33.10475],[69.79911,33.12391],[69.78653,33.12755],[69.77347,33.12047],[69.7668,33.11425],[69.74639,33.11383],[69.7373,33.10983],[69.73049,33.10038],[69.72255,33.09314],[69.70458,33.0905],[69.68947,33.09419],[69.67941,33.09772],[69.66672,33.09811],[69.65511,33.09524],[69.61699,33.09749],[69.58005,33.09755],[69.56663,33.08189],[69.54274,33.05905],[69.50736,33.02925],[69.50711,33.02902],[69.49964,33.00247],[69.49302,32.96622],[69.49202,32.94269],[69.51508,32.88627],[69.53108,32.874],[69.53458,32.86641],[69.53052,32.86116],[69.51247,32.85422],[69.50077,32.84814],[69.49739,32.84849],[69.47422,32.85105],[69.46391,32.84708],[69.45825,32.83333],[69.44097,32.81455],[69.41217,32.79288],[69.39522,32.78158],[69.39236,32.77416],[69.39311,32.7613],[69.40277,32.74922],[69.4151,32.7403],[69.43125,32.73233],[69.44122,32.72774],[69.44216,32.72022],[69.44047,32.70955],[69.4388,32.69997],[69.43727,32.69358],[69.43697,32.68608],[69.44294,32.67736],[69.44774,32.67077],[69.45122,32.66316],[69.44441,32.65158],[69.43369,32.63691],[69.41635,32.616],[69.4001,32.58969],[69.38524,32.56655],[69.3428,32.54955],[69.32608,32.54252],[69.30072,32.54111],[69.28522,32.53297],[69.27022,32.50555],[69.24069,32.46138],[69.23877,32.4443],[69.25025,32.414],[69.27141,32.37377],[69.28082,32.35638],[69.27958,32.29216],[69.26997,32.27208],[69.27386,32.20986],[69.27578,32.19374],[69.27366,32.17239],[69.27283,32.151],[69.28947,32.09272],[69.2861,32.07138],[69.29846,32],[69.30033,31.99194],[69.31199,31.98613],[69.31272,31.97608],[69.31527,31.96877],[69.3235,31.94416],[69.3233,31.94072],[69.31761,31.92808],[69.31285,31.9248],[69.29927,31.91913],[69.27766,31.91152],[69.27185,31.90619],[69.26725,31.89514],[69.26258,31.88661],[69.23111,31.86258],[69.21064,31.85408],[69.20341,31.85261],[69.1976,31.84838],[69.19758,31.84824],[69.19255,31.8308],[69.19233,31.83],[69.18575,31.82327],[69.18094,31.80947],[69.17469,31.79999],[69.15625,31.78394],[69.14897,31.75888],[69.13524,31.74791],[69.13227,31.73619],[69.12741,31.72447],[69.12,31.72022],[69.12011,31.719],[69.12102,31.70994],[69.11794,31.70325],[69.10969,31.70038],[69.09644,31.69355],[69.09647,31.69305],[69.09647,31.69263],[69.08116,31.68119],[69.06647,31.66725],[69.0468,31.65986],[69.0315,31.65022],[69.02417,31.64211],[69.021,31.62672],[69.01088,31.62472],[69.00091,31.62825],[68.99344,31.62697],[68.98594,31.628],[68.97827,31.63613],[68.96891,31.63552],[68.96158,31.64044],[68.94916,31.64575],[68.94441,31.64225],[68.93367,31.62055],[68.92847,31.61336],[68.91688,31.60472],[68.90064,31.60125],[68.89536,31.60133],[68.89438,31.60133],[68.872,31.60169],[68.85869,31.59827],[68.8483,31.59741],[68.84355,31.59869],[68.84183,31.59913],[68.83152,31.60583],[68.82191,31.605],[68.81216,31.60963],[68.80494,31.60997],[68.7975,31.61877],[68.78266,31.63525],[68.77794,31.65508],[68.77349,31.66097],[68.75189,31.66952],[68.74283,31.67944],[68.717,31.69663],[68.71391,31.70208],[68.71572,31.71608],[68.70925,31.75099],[68.70183,31.76989],[68.69805,31.77141],[68.68219,31.77366],[68.67816,31.77336],[68.63952,31.77563],[68.63222,31.77825],[68.5821,31.82086],[68.57611,31.82555],[68.57013,31.82797],[68.5548,31.82036],[68.53841,31.81111],[68.52069,31.80116],[68.47783,31.78066],[68.46594,31.77405],[68.46497,31.77383],[68.4513,31.77055],[68.43697,31.76524],[68.43311,31.76325],[68.4476,31.75788],[68.45766,31.75213],[68.46366,31.74813],[68.47916,31.75025],[68.49292,31.7528],[68.49836,31.75383],[68.53852,31.75458],[68.56402,31.75252],[68.57611,31.75161],[68.58203,31.75033],[68.57463,31.73486],[68.56353,31.71977],[68.55561,31.71436],[68.53713,31.71402],[68.51039,31.73388],[68.50089,31.7383],[68.49038,31.74038],[68.47916,31.73925],[68.45664,31.74066],[68.45339,31.74219],[68.44533,31.7425],[68.43611,31.74713],[68.42302,31.75536],[68.42175,31.75736],[68.41952,31.75619],[68.40958,31.75716],[68.37202,31.75847],[68.32089,31.75747],[68.28661,31.757],[68.27822,31.7598],[68.25375,31.7815],[68.25096,31.78536],[68.25936,31.80155],[68.24124,31.80644],[68.19144,31.81275],[68.17749,31.8145],[68.17191,31.82172],[68.17119,31.82788],[68.16889,31.83425],[68.16494,31.83072],[68.15408,31.81744],[68.14436,31.80119],[68.14044,31.79814],[68.12108,31.76597],[68.11669,31.75869],[68.10121,31.74761],[68.09083,31.73638],[68.08408,31.72869],[68.06733,31.7155],[68.06749,31.71025],[68.06408,31.69938],[68.05783,31.6933],[68.0468,31.68597],[68.0315,31.67922],[68.02255,31.67375],[67.98772,31.64891],[67.9698,31.63958],[67.94991,31.63341],[67.93716,31.63288],[67.92453,31.63238],[67.91683,31.63013],[67.90438,31.62597],[67.8945,31.62572],[67.88661,31.62944],[67.87377,31.62961],[67.86869,31.6288],[67.84314,31.61652],[67.81597,31.59633],[67.81172,31.59161],[67.80358,31.58213],[67.79,31.57219],[67.77819,31.5655],[67.76697,31.55674],[67.74913,31.54025],[67.74205,31.53372],[67.72605,31.52483],[67.71308,31.52063],[67.70433,31.5198],[67.69977,31.51938],[67.6778,31.52091],[67.66175,31.52097],[67.6538,31.51872],[67.65,31.51844],[67.64847,31.51836],[67.63639,31.52813],[67.62774,31.53019],[67.62155,31.53116],[67.61005,31.53136],[67.58455,31.53438],[67.56955,31.53469],[67.5595,31.53236],[67.554,31.5288],[67.55503,31.52194],[67.57566,31.50505],[67.591,31.47958],[67.59505,31.4705],[67.59864,31.45961],[67.59911,31.45366],[67.59469,31.4343],[67.59764,31.4268],[67.60539,31.41852],[67.62286,31.41508],[67.62774,31.41336],[67.63378,31.40069],[67.64405,31.39683],[67.66007,31.39722],[67.68922,31.40436],[67.72633,31.41191],[67.74094,31.41477],[67.75033,31.41363],[67.76041,31.40747],[67.76403,31.40341],[67.77133,31.39994],[67.7783,31.39116],[67.78577,31.37461],[67.78986,31.35661],[67.78544,31.34391],[67.77558,31.33433],[67.77408,31.33286],[67.76277,31.32755],[67.75616,31.3258],[67.73786,31.32458],[67.73119,31.32322],[67.71772,31.32341],[67.7071,31.32025],[67.69171,31.31369],[67.68289,31.30683],[67.6583,31.29155],[67.62041,31.27638],[67.61219,31.27527],[67.60294,31.27275],[67.59063,31.27402],[67.58019,31.2733],[67.57466,31.27294],[67.57099,31.27077],[67.53925,31.26355],[67.53136,31.26038],[67.51039,31.24997],[67.49066,31.24214],[67.46416,31.23755],[67.44405,31.23288],[67.43066,31.22772],[67.40641,31.21974],[67.39297,31.21708],[67.39052,31.21658],[67.36616,31.21913],[67.34536,31.21972],[67.32719,31.21372],[67.31461,31.21519],[67.30486,31.21197],[67.29149,31.2125],[67.2715,31.20577],[67.2621,31.20688],[67.24583,31.21469],[67.22699,31.21944],[67.19574,31.22061],[67.18333,31.22486],[67.17099,31.24008],[67.16633,31.24338],[67.11761,31.2413],[67.10997,31.23925],[67.09371,31.23191],[67.06903,31.22961],[67.05616,31.23083],[67.04963,31.23386],[67.04025,31.23541],[67.03099,31.24019],[67.02566,31.24666],[67.02185,31.25502],[67.0248,31.2613],[67.04025,31.26933],[67.04775,31.27527],[67.0513,31.28591],[67.05002,31.29161],[67.04447,31.30383],[67.03463,31.30927],[67.0188,31.31133],[66.98566,31.31286],[66.9691,31.31261],[66.95772,31.31066],[66.95183,31.30983],[66.93419,31.30561],[66.90227,31.29616],[66.8668,31.28272],[66.85658,31.2785],[66.83496,31.26427],[66.82228,31.2483],[66.80802,31.22644],[66.80577,31.224],[66.802,31.21908],[66.79291,31.21305],[66.77625,31.2098],[66.75785,31.20969],[66.73108,31.2125],[66.72016,31.20597],[66.71817,31.20269],[66.71316,31.18261],[66.7093,31.16069],[66.70361,31.15066],[66.69694,31.13211],[66.68619,31.11527],[66.68814,31.10111],[66.68421,31.09319],[66.68316,31.07458],[66.667,31.06675],[66.66422,31.063],[66.65983,31.06033],[66.6388,31.04177],[66.61816,31.02047],[66.57963,30.9885],[66.56255,30.97761],[66.53389,30.97024],[66.51855,30.96839],[66.50746,30.96616],[66.48416,30.96402],[66.48239,30.96191],[66.44622,30.95588],[66.44008,30.95436],[66.40097,30.94472],[66.39133,30.9405],[66.38658,30.93391],[66.38394,30.92188],[66.38133,30.91494],[66.37191,30.88227],[66.36172,30.84408],[66.34139,30.77275],[66.33303,30.74058],[66.3311,30.73661],[66.32222,30.70488],[66.31608,30.68838],[66.29877,30.62677],[66.29294,30.60983],[66.28936,30.59594],[66.28666,30.58727],[66.28394,30.57858],[66.28105,30.56927],[66.28108,30.56308],[66.28269,30.55694],[66.29233,30.53777],[66.29788,30.5093],[66.30535,30.50244],[66.30994,30.50077],[66.32592,30.49327],[66.32763,30.49036],[66.3398,30.4793],[66.33663,30.45602],[66.33891,30.44694],[66.34958,30.43377],[66.35411,30.42727],[66.35436,30.42177],[66.35111,30.41225],[66.33799,30.39252],[66.33469,30.38347],[66.33277,30.3733],[66.33419,30.35452],[66.33652,30.3498],[66.33522,30.33736],[66.33247,30.3173],[66.32744,30.30588],[66.32044,30.27949],[66.31661,30.24286],[66.31041,30.22819],[66.30139,30.2178],[66.29289,30.20188],[66.28694,30.18744],[66.28771,30.17097],[66.28644,30.16402],[66.2843,30.15891],[66.26852,30.14091],[66.26008,30.12913],[66.25724,30.11069],[66.23844,30.08408],[66.23822,30.06641],[66.24166,30.05505],[66.25905,30.04397],[66.28855,30.02227],[66.30041,30.01625],[66.30374,30.01294],[66.32222,30],[66.35874,29.97444],[66.3615,29.97202],[66.36194,29.96814],[66.35685,29.9583],[66.34564,29.95013],[66.33019,29.92502],[66.31916,29.91294],[66.31891,29.91269],[66.31319,29.91088],[66.31224,29.90833],[66.28933,29.89125],[66.26983,29.87494],[66.25397,29.85566],[66.24563,29.85136],[66.23058,29.84669],[66.20224,29.83927],[66.18386,29.83311],[66.16486,29.8283],[66.1558,29.82522],[66.13322,29.81897],[66.11658,29.81438],[66.07241,29.80244],[66.03552,29.79213],[66.00252,29.78355],[65.9381,29.76691],[65.91555,29.76011],[65.88797,29.75377],[65.87452,29.74961],[65.85322,29.74419],[65.83405,29.73841],[65.78113,29.72374],[65.73722,29.7133],[65.7313,29.71077],[65.6978,29.7028],[65.65866,29.69208],[65.63608,29.68658],[65.61086,29.681],[65.57152,29.6693],[65.53466,29.66047],[65.52253,29.65608],[65.51574,29.65511],[65.44132,29.63622],[65.42346,29.63111],[65.36966,29.61558],[65.28627,29.59347],[65.27588,29.59163],[65.26194,29.58738],[65.23994,29.58116],[65.19488,29.56958],[65.16083,29.56027],[65.09713,29.54283],[65.06705,29.53622],[65.054,29.53475],[65.02855,29.5343],[65,29.53741],[64.95578,29.55358],[64.82169,29.56408],[64.80741,29.56575],[64.7621,29.57113],[64.66744,29.57838],[64.63191,29.58108],[64.53228,29.57586],[64.48761,29.57177],[64.45547,29.56399],[64.4281,29.55094],[64.4118,29.54511],[64.39074,29.54416],[64.37,29.54872],[64.3526,29.54538],[64.31527,29.53033],[64.27941,29.52808],[64.2668,29.52383],[64.23741,29.50244],[64.20805,29.49436],[64.17105,29.45952],[64.15233,29.44955],[64.14658,29.434],[64.13108,29.39194],[64.12,29.38211],[64.1053,29.37747],[64.08725,29.38288],[64.06783,29.39177],[64.04469,29.41302],[64.03236,29.41769],[63.91077,29.43861],[63.77411,29.45969],[63.64483,29.47947],[63.63216,29.48205],[63.59083,29.49041],[63.56016,29.48944],[63.4163,29.47986],[63.36449,29.47636],[63.27272,29.4678],[63.1293,29.45433],[62.98591,29.44069],[62.84258,29.42691],[62.69927,29.41297],[62.556,29.39891],[62.45577,29.38897],[62.2783,29.44177],[62.14169,29.48222],[62.00497,29.52252],[61.86816,29.56269],[61.73122,29.60275],[61.65252,29.62569],[61.59458,29.64355],[61.45827,29.68544],[61.32186,29.72722],[61.18536,29.76883],[61.04875,29.81033],[61.00169,29.82455],[60.91202,29.85169],[60.87861,29.86177],[60.96524,29.76077],[60.98736,29.73497],[61.05172,29.65975],[61.12586,29.57294],[61.19258,29.5025],[61.23461,29.46494],[61.31113,29.39647],[61.37086,29.35002],[61.37138,29.34961],[61.37227,29.34844],[61.37274,29.34727],[61.37686,29.33686],[61.37749,29.3353],[61.37341,29.31647],[61.35775,29.28277],[61.38349,29.22147],[61.39097,29.21361],[61.39913,29.20852],[61.42244,29.2005],[61.42866,29.19377],[61.41483,29.15619],[61.41336,29.14122],[61.4158,29.13563],[61.44352,29.12811],[61.45863,29.12241],[61.47052,29.11394],[61.47794,29.10277],[61.47886,29.08055],[61.50316,29.05641],[61.50555,29.04805],[61.49531,29.04461],[61.47821,29.02436],[61.53403,29.00942],[61.57704,28.92725],[61.60932,28.86216],[61.63615,28.81619],[61.67621,28.76576],[61.69558,28.75147],[61.72586,28.7412],[61.77752,28.67991],[61.79561,28.65583],[61.80416,28.64016],[61.82291,28.63269],[61.87011,28.59705],[61.89213,28.58372],[61.90861,28.57377],[61.95758,28.54869],[61.99316,28.54075],[62.01583,28.52858],[62.01827,28.52677],[62.0433,28.50788],[62.11577,28.48511],[62.14855,28.48905],[62.15236,28.4895],[62.17055,28.48755],[62.20241,28.47869],[62.23988,28.46586],[62.26944,28.46647],[62.29627,28.46344],[62.34997,28.44119],[62.37252,28.43802],[62.41669,28.41833],[62.43188,28.41094],[62.43966,28.40713],[62.47233,28.37605],[62.50288,28.33133],[62.51597,28.32227],[62.54158,28.30997],[62.57311,28.27852],[62.5923,28.25513],[62.63069,28.25936],[62.78694,28.28119],[62.79194,28.27711],[62.79658,28.20894],[62.7808,28.10294],[62.76822,28.03241],[62.77183,28.01505],[62.79005,27.97811],[62.79747,27.91444],[62.80827,27.85158],[62.8198,27.805],[62.82058,27.79977],[62.83002,27.73527],[62.83858,27.64744],[62.85125,27.54886],[62.85202,27.54266],[62.85538,27.46513],[62.83997,27.42502],[62.80738,27.34008],[62.82805,27.31933],[62.83252,27.30494],[62.82319,27.28622],[62.78147,27.25141],[62.78297,27.23427],[62.79794,27.22152],[62.82136,27.21233],[62.84366,27.21308],[62.87833,27.21713],[62.89233,27.21077],[62.90869,27.19924],[62.95166,27.19208],[62.97724,27.19511],[63.05864,27.23319],[63.11577,27.23436],[63.1952,27.25975],[63.22715,27.22622],[63.25746,27.22693],[63.2809,27.21176],[63.33326,27.11788],[63.30955,27.12716],[63.2903,27.11875],[63.26358,27.11039],[63.26077,27.09208],[63.25111,27.09028],[63.25311,26.90238],[63.24137,26.89607],[63.23906,26.88165],[63.24636,26.86723],[63.2405,26.84088],[63.18556,26.83516],[63.19877,26.79841],[63.20319,26.76825],[63.19868,26.7429],[63.19972,26.71282],[63.18821,26.69826],[63.2016,26.67437],[63.18907,26.66733],[63.19577,26.64556],[63.16919,26.6473],[63.16202,26.64361],[63.15652,26.645],[63.09002,26.64408],[63.05144,26.63758],[63.00191,26.65194],[62.98588,26.65336],[62.95275,26.65297],[62.94652,26.65291],[62.91947,26.64613],[62.84008,26.64752],[62.8216,26.65219],[62.80347,26.65225],[62.77869,26.65227],[62.76069,26.64841],[62.73683,26.63852],[62.73394,26.63622],[62.73158,26.6343],[62.72638,26.62411],[62.72139,26.61988],[62.71022,26.617],[62.69741,26.61366],[62.69649,26.61333],[62.68516,26.61255],[62.66086,26.6165],[62.64833,26.60913],[62.6378,26.59941],[62.60813,26.58499],[62.58197,26.58283],[62.52986,26.57847],[62.51197,26.58133],[62.47841,26.56955],[62.46336,26.56761],[62.44122,26.57002],[62.43452,26.56813],[62.41069,26.54439],[62.40352,26.53933],[62.39711,26.5383],[62.36133,26.53952],[62.35341,26.53591],[62.34325,26.53125],[62.33361,26.52852],[62.31505,26.52886],[62.30602,26.52441],[62.29938,26.51363],[62.29586,26.49875],[62.29702,26.49413],[62.3045,26.4848],[62.30877,26.47669],[62.3088,26.47666],[62.30219,26.46761],[62.28258,26.44725],[62.26977,26.44574],[62.25772,26.44883],[62.25636,26.44597],[62.26461,26.43208],[62.26472,26.41269],[62.28583,26.3776],[62.25734,26.3687],[62.24982,26.34102],[62.27126,26.3346],[62.26862,26.32429],[62.24567,26.32147],[62.23189,26.33211],[62.23263,26.31493],[62.21253,26.27143],[62.15005,26.27037],[62.09718,26.28533],[62.09573,26.31059],[62.06897,26.32502],[62.02984,26.33453],[62.02474,26.30926],[61.98666,26.27966],[61.95824,26.26858],[61.91696,26.25473],[61.90117,26.26263],[61.88882,26.25143],[61.89048,26.23105],[61.86093,26.17515],[61.83897,26.06693],[61.83587,26.02005],[61.82375,25.96218],[61.8333,25.9119],[61.85775,25.91378],[61.87402,25.89202],[61.89179,25.89036],[61.89033,25.88005],[61.84626,25.87792],[61.8221,25.84738],[61.84923,25.81868],[61.83951,25.79435],[61.84078,25.74529],[61.80834,25.73649],[61.80077,25.71925],[61.73626,25.73913],[61.69504,25.69125],[61.69414,25.6793],[61.68899,25.66255],[61.6766,25.64631],[61.66722,25.51238],[61.65355,25.30557],[61.5713,25.01276],[60,24],[60,0],[62.46122,-10],[90,-10],[90,20],[92.37132,20.7013],[92.37498,20.72474],[92.35827,20.76408],[92.33881,20.82396],[92.30905,20.88501],[92.29165,20.91527],[92.27287,20.94424],[92.27088,20.95565],[92.27233,20.97924],[92.26835,21.00077],[92.25353,21.0214],[92.25264,21.03572],[92.25656,21.0494],[92.26161,21.05432],[92.26459,21.05988],[92.2589,21.07741],[92.23338,21.09529],[92.22468,21.11733],[92.21769,21.12205],[92.2075,21.11752],[92.20006,21.12324],[92.19753,21.13853],[92.20324,21.14997],[92.19932,21.16052],[92.1917,21.16292],[92.18136,21.15771],[92.17515,21.15827],[92.17236,21.16907],[92.17337,21.17479],[92.17233,21.18051],[92.17557,21.18367],[92.18087,21.18619],[92.18275,21.19209],[92.18669,21.19671],[92.19423,21.20019],[92.19968,21.20064],[92.21062,21.22476],[92.21711,21.22745],[92.21947,21.23333],[92.21175,21.24791],[92.21348,21.25147],[92.22106,21.25603],[92.21662,21.26762],[92.21784,21.27886],[92.20944,21.28562],[92.21083,21.28824],[92.20294,21.29946],[92.1978,21.31069],[92.20124,21.31808],[92.1985,21.32738],[92.21362,21.33989],[92.21602,21.34493],[92.22409,21.35001],[92.23079,21.34806],[92.23319,21.35182],[92.25276,21.35879],[92.25898,21.36436],[92.25469,21.36703],[92.25316,21.37226],[92.25771,21.37744],[92.25402,21.38708],[92.26785,21.39993],[92.26383,21.40818],[92.26394,21.41322],[92.26937,21.41492],[92.2697,21.41918],[92.26918,21.4277],[92.27441,21.43292],[92.28012,21.42945],[92.28686,21.42827],[92.29292,21.42964],[92.29418,21.42398],[92.29749,21.42024],[92.30137,21.42402],[92.31073,21.41758],[92.31504,21.42067],[92.32435,21.41917],[92.32649,21.43089],[92.33832,21.43643],[92.33618,21.44785],[92.34061,21.45421],[92.34366,21.46823],[92.35724,21.46935],[92.36464,21.47367],[92.36792,21.47927],[92.37344,21.4761],[92.38241,21.47931],[92.39861,21.4624],[92.41208,21.44167],[92.41648,21.44179],[92.4254,21.43415],[92.43157,21.40508],[92.42744,21.39647],[92.42743,21.38148],[92.43085,21.37224],[92.43697,21.37174],[92.43897,21.36515],[92.45783,21.3689],[92.46211,21.36533],[92.46982,21.36305],[92.47182,21.35518],[92.48484,21.35765],[92.48724,21.36082],[92.49718,21.36208],[92.50266,21.35628],[92.50706,21.3573],[92.51145,21.36792],[92.50712,21.37595],[92.51447,21.37758],[92.5163,21.38838],[92.53119,21.38831],[92.53555,21.37793],[92.54013,21.37642],[92.54952,21.37875],[92.55181,21.38215],[92.55685,21.38491],[92.56223,21.37776],[92.56349,21.36997],[92.56651,21.3451],[92.57296,21.33365],[92.57145,21.32931],[92.57197,21.32311],[92.57593,21.31818],[92.58658,21.28658],[92.58419,21.28185],[92.59124,21.26381],[92.59623,21.24513],[92.61358,21.24744],[92.62406,21.25167],[92.62116,21.25942],[92.62932,21.26457],[92.63066,21.26779],[92.65364,21.27835],[92.66822,21.28236],[92.68006,21.28636],[92.6796,21.29685],[92.66427,21.31969],[92.65626,21.34998],[92.65151,21.35915],[92.64882,21.37791],[92.65093,21.38644],[92.64893,21.38986],[92.64446,21.39969],[92.63998,21.41462],[92.64064,21.42852],[92.63783,21.43714],[92.63457,21.43873],[92.62992,21.44864],[92.63231,21.45247],[92.62404,21.47547],[92.62742,21.48697],[92.62016,21.51619],[92.62113,21.52881],[92.61484,21.56873],[92.6082,21.59141],[92.61049,21.62048],[92.60343,21.65299],[92.6047,21.6718],[92.60872,21.68487],[92.60176,21.70304],[92.6048,21.72137],[92.6099,21.73142],[92.60534,21.73651],[92.61107,21.78179],[92.60813,21.79965],[92.60999,21.81879],[92.62078,21.82359],[92.6145,21.84224],[92.61396,21.85201],[92.62097,21.86177],[92.63106,21.86167],[92.63084,21.86923],[92.63384,21.87413],[92.61992,21.92218],[92.61342,21.92337],[92.61378,21.92711],[92.61313,21.93205],[92.61664,21.93937],[92.61541,21.94318],[92.60953,21.94381],[92.6115,21.95779],[92.60307,21.98259],[92.61348,21.9873],[92.6232,21.99456],[92.63293,22.00404],[92.64471,22.01862],[92.6522,22.02254],[92.66587,22.02073],[92.67105,22.02058],[92.68017,22.02783],[92.68516,22.03953],[92.68317,22.07233],[92.67878,22.08603],[92.67851,22.09974],[92.68346,22.10139],[92.69588,22.09457],[92.70004,22.09562],[92.7004,22.09965],[92.69646,22.14904],[92.70067,22.15593],[92.71102,22.16033],[92.72477,22.15808],[92.73372,22.14692],[92.75733,22.13098],[92.78802,22.11634],[92.80954,22.10074],[92.81962,22.08818],[92.8242,22.07879],[92.8398,22.06486],[92.85722,22.05885],[92.86833,22.04502],[92.88081,22.02674],[92.88535,22.01405],[92.89126,21.96315],[92.89546,21.9546],[92.90034,21.95432],[92.90684,21.96006],[92.91421,21.96961],[92.92168,21.99189],[92.92914,22.01991],[92.93857,22.02612],[92.94947,22.0289],[92.95967,22.02469],[92.97357,22.00225],[92.98429,21.99103],[92.99158,21.99127],[93.00038,21.99554],[93.00713,22.00427],[93.00219,22.02287],[92.99246,22.04656],[92.9889,22.05529],[92.99161,22.06781],[93.00669,22.09115],[93.01074,22.10792],[93.0168,22.1157],[93.02415,22.11749],[93.03435,22.11774],[93.03974,22.11609],[93.04778,22.11724],[93.05238,22.11966],[93.04784,22.13618],[93.04241,22.14619],[93.04038,22.16169],[93.04486,22.17326],[93.04866,22.17783],[93.04886,22.18872],[93.04426,22.20215],[93.05075,22.20852],[93.06479,22.21172],[93.07845,22.21176],[93.08906,22.20797],[93.1031,22.20671],[93.11165,22.20324],[93.12348,22.18815],[93.13124,22.18549],[93.14106,22.18346],[93.14951,22.18589],[93.1662,22.19213],[93.16172,22.20548],[93.15655,22.21565],[93.14623,22.22487],[93.14141,22.23154],[93.14362,22.23743],[93.14747,22.24037],[93.15407,22.2414],[93.17413,22.24172],[93.19138,22.24792],[93.19691,22.25515],[93.19901,22.26365],[93.19863,22.27894],[93.19756,22.29106],[93.19718,22.31843],[93.19012,22.38197],[93.18282,22.41089],[93.18294,22.42566],[93.18101,22.44044],[93.16563,22.4531],[93.1418,22.4626],[93.13514,22.47528],[93.13768,22.4914],[93.13569,22.4988],[93.1241,22.51635],[93.11739,22.53433],[93.11926,22.55548],[93.13427,22.58254],[93.13662,22.59321],[93.13555,22.60199],[93.12952,22.61998],[93.11731,22.63416],[93.10389,22.64858],[93.0977,22.66106],[93.09632,22.66983],[93.09907,22.67739],[93.09769,22.68874],[93.09494,22.69894],[93.0915,22.71547],[93.09733,22.7282],[93.09973,22.73903],[93.10109,22.77761],[93.09901,22.79148],[93.105,22.81106],[93.11168,22.83001],[93.11595,22.86478],[93.11954,22.87613],[93.1397,22.89138],[93.14405,22.90009],[93.14291,22.91323],[93.14852,22.91458],[93.15413,22.91277],[93.16158,22.91927],[93.14711,22.93986],[93.13848,22.95791],[93.13495,22.99276],[93.12686,23.00825],[93.12536,23.01465],[93.1266,23.02547],[93.13779,23.0483],[93.14648,23.05435],[93.15735,23.05168],[93.16478,23.05218],[93.18052,23.05889],[93.19491,23.05941],[93.20724,23.0574],[93.21302,23.0499],[93.2238,23.02245],[93.22978,23.01333],[93.24005,23.00784],[93.25101,23.00678],[93.26986,23.00319],[93.2841,23.00582],[93.29352,23.00908],[93.30783,23.01809],[93.31729,23.02858],[93.32443,23.04394],[93.33281,23.05699],[93.34626,23.06667],[93.35011,23.07256],[93.35004,23.09139],[93.3579,23.11217],[93.36938,23.12572],[93.38474,23.13471],[93.38737,23.13948],[93.38452,23.14489],[93.37479,23.1506],[93.37165,23.15473],[93.37125,23.16201],[93.37702,23.19347],[93.38965,23.2243],[93.38624,23.24855],[93.37115,23.27582],[93.37132,23.28958],[93.36875,23.30459],[93.37339,23.32087],[93.37322,23.32895],[93.36607,23.34973],[93.36746,23.35449],[93.37091,23.35736],[93.37988,23.35995],[93.38816,23.36096],[93.39369,23.36575],[93.40414,23.37673],[93.40418,23.3894],[93.40285,23.39387],[93.39881,23.43434],[93.39992,23.45495],[93.40562,23.4725],[93.40308,23.48375],[93.40411,23.50074],[93.41474,23.53977],[93.41577,23.54984],[93.41405,23.56746],[93.42091,23.58351],[93.42434,23.59704],[93.42605,23.60822],[93.42416,23.62607],[93.42012,23.64066],[93.41947,23.65267],[93.42158,23.66091],[93.43221,23.67492],[93.43323,23.67887],[93.42944,23.69157],[93.41672,23.7005],[93.4105,23.70703],[93.40631,23.71759],[93.3993,23.74436],[93.39901,23.7822],[93.39569,23.80948],[93.38492,23.83956],[93.38194,23.88539],[93.3872,23.90987],[93.38573,23.91816],[93.38357,23.92332],[93.37651,23.92924],[93.36857,23.93292],[93.36298,23.93337],[93.3583,23.93689],[93.35499,23.94543],[93.34151,23.97067],[93.33205,23.97534],[93.3274,23.98252],[93.32927,24.00852],[93.32771,24.03515],[93.32993,24.03983],[93.33283,24.06834],[93.33556,24.07579],[93.35031,24.08766],[93.36352,24.09109],[93.3794,24.0903],[93.39386,24.08551],[93.40352,24.07885],[93.41171,24.06615],[93.41918,24.04453],[93.43867,24.02165],[93.44944,24.01271],[93.46296,24.00315],[93.46786,23.98544],[93.46795,23.97651],[93.47606,23.96671],[93.49131,23.96285],[93.50861,23.9615],[93.52935,23.96359],[93.54521,23.97092],[93.55555,23.98211],[93.56245,23.98514],[93.56672,23.98647],[93.57649,23.97901],[93.58092,23.97099],[93.59222,23.97081],[93.60283,23.97566],[93.61204,23.99883],[93.62193,24.01636],[93.63356,24.01593],[93.65481,24.01174],[93.66197,24.01194],[93.68768,24.01527],[93.70189,24.01108],[93.71815,24.00438],[93.74225,24.00558],[93.75879,24.00677],[93.76579,24.00289],[93.77669,23.99231],[93.78472,23.97636],[93.78691,23.9673],[93.79266,23.95735],[93.8024,23.94641],[93.81764,23.9361],[93.82824,23.93552],[93.84227,23.93807],[93.86553,23.9438],[93.89227,23.95232],[93.92175,23.95706],[93.93609,23.95213],[93.97282,23.93175],[93.99857,23.92611],[94.03256,23.9211],[94.04647,23.90997],[94.04999,23.90032],[94.05999,23.89518],[94.07754,23.89381],[94.09797,23.88581],[94.10956,23.86769],[94.1102,23.86208],[94.11963,23.85188],[94.12906,23.84357],[94.13609,23.84374],[94.1451,23.84822],[94.15303,23.85862],[94.16131,23.88095],[94.16127,23.90278],[94.16053,23.92398],[94.16151,23.93451],[94.16524,23.94442],[94.17373,23.94917],[94.1869,23.95563],[94.20619,23.9849],[94.21633,23.9999],[94.22579,24.03058],[94.22289,24.05123],[94.2241,24.0587],[94.23911,24.06929],[94.24321,24.0829],[94.24181,24.10905],[94.2452,24.12062],[94.25025,24.14593],[94.25965,24.16329],[94.26973,24.17877],[94.27289,24.19627],[94.27881,24.22693],[94.29296,24.25132],[94.29695,24.25319],[94.30272,24.26258],[94.31109,24.27791],[94.31391,24.28589],[94.31604,24.29763],[94.31442,24.31947],[94.31898,24.3363],[94.32878,24.34556],[94.35403,24.36578],[94.36143,24.37473],[94.35392,24.39889],[94.35464,24.40492],[94.37601,24.40838],[94.38624,24.41886],[94.38926,24.43403],[94.38851,24.45701],[94.38913,24.47937],[94.39358,24.48564],[94.40129,24.49003],[94.41408,24.49253],[94.42412,24.50253],[94.42958,24.51821],[94.43813,24.55449],[94.44579,24.56867],[94.45521,24.5753],[94.46874,24.58006],[94.4937,24.59648],[94.5044,24.60668],[94.51648,24.62062],[94.5289,24.65141],[94.53476,24.69146],[94.53529,24.70243],[94.53788,24.70779],[94.54655,24.71133],[94.57582,24.70925],[94.58587,24.71372],[94.59728,24.72442],[94.61823,24.76101],[94.61892,24.76808],[94.61825,24.80031],[94.62308,24.81614],[94.63962,24.84096],[94.65581,24.85426],[94.66925,24.86942],[94.68756,24.91506],[94.69294,24.92544],[94.69597,24.93499],[94.69645,24.9488],[94.69314,24.96096],[94.69258,24.97438],[94.69659,24.98311],[94.7034,24.98965],[94.70952,24.99308],[94.7226,25.00826],[94.73361,25.02157],[94.73711,25.0426],[94.73301,25.10136],[94.73474,25.12452],[94.72892,25.13524],[94.72137,25.13995],[94.69631,25.15131],[94.67056,25.16143],[94.65752,25.16525],[94.63881,25.16762],[94.61598,25.16999],[94.59916,25.17847],[94.59015,25.18829],[94.58458,25.19626],[94.57617,25.21404],[94.57669,25.23711],[94.57995,25.2521],[94.58202,25.2891],[94.58917,25.30204],[94.59962,25.31192],[94.61074,25.32987],[94.61515,25.34189],[94.61793,25.35828],[94.61865,25.37033],[94.62422,25.39567],[94.6339,25.40953],[94.64767,25.41709],[94.66007,25.42588],[94.66413,25.43279],[94.67025,25.449],[94.68907,25.46893],[94.69962,25.47453],[94.71291,25.47951],[94.72333,25.48417],[94.73472,25.49301],[94.74679,25.49689],[94.76031,25.49318],[94.77107,25.49133],[94.78962,25.49666],[94.80405,25.50768],[94.81779,25.52181],[94.83119,25.54541],[94.84185,25.55972],[94.85046,25.56697],[94.87159,25.56594],[94.88008,25.56836],[94.88513,25.57263],[94.88562,25.57808],[94.87769,25.58649],[94.88036,25.59341],[94.89689,25.6033],[94.9108,25.61962],[94.92128,25.63595],[94.94446,25.66651],[94.96421,25.69026],[94.97365,25.69798],[94.98035,25.70755],[94.98619,25.72112],[94.99306,25.72972],[94.99976,25.73416],[95.01581,25.73545],[95.0274,25.73767],[95.03426,25.74376],[95.03976,25.75254],[95.03908,25.76856],[95.03463,25.79625],[95.02881,25.82579],[95.01822,25.89237],[95.02012,25.92268],[95.02271,25.93076],[95.03375,25.93931],[95.06022,25.94329],[95.07404,25.94875],[95.08649,25.95484],[95.11469,25.98119],[95.13534,26.00321],[95.14995,26.02001],[95.15976,26.03002],[95.17163,26.04558],[95.17722,26.05583],[95.17938,26.06485],[95.17566,26.07654],[95.17311,26.08053],[95.15788,26.08986],[95.11793,26.10165],[95.11152,26.11325],[95.11072,26.12676],[95.11266,26.1378],[95.11414,26.15156],[95.1118,26.16152],[95.1041,26.16958],[95.10372,26.181],[95.10952,26.18933],[95.11669,26.19335],[95.11994,26.19813],[95.12044,26.2023],[95.11581,26.20878],[95.09908,26.2114],[95.08763,26.21672],[95.08098,26.22881],[95.07695,26.25961],[95.07087,26.29472],[95.06718,26.30429],[95.06534,26.32876],[95.06831,26.3477],[95.08857,26.39051],[95.09528,26.40638],[95.09451,26.41678],[95.09031,26.42717],[95.0692,26.45338],[95.06483,26.46833],[95.06746,26.48287],[95.07735,26.49783],[95.08745,26.50653],[95.09548,26.51032],[95.10976,26.52262],[95.11717,26.54412],[95.14312,26.56134],[95.14751,26.56564],[95.15032,26.57501],[95.14902,26.58131],[95.13913,26.59406],[95.13837,26.6043],[95.14143,26.61342],[95.15188,26.62289],[95.1589,26.62622],[95.17466,26.62996],[95.19454,26.63616],[95.20515,26.64358],[95.21423,26.65957],[95.22632,26.66848],[95.23106,26.67362],[95.2461,26.67999],[95.25328,26.67903],[95.25702,26.67378],[95.25752,26.66701],[95.2539,26.65656],[95.25715,26.65072],[95.26392,26.64534],[95.27138,26.64487],[95.31813,26.66856],[95.34734,26.67887],[95.38959,26.68488],[95.43875,26.70797],[95.45027,26.71614],[95.4708,26.74322],[95.48072,26.75769],[95.49083,26.78485],[95.503,26.81016],[95.51573,26.82019],[95.52313,26.82459],[95.54151,26.82715],[95.60471,26.81909],[95.61347,26.82298],[95.61949,26.8287],[95.63015,26.8521],[95.63385,26.87029],[95.64394,26.88506],[95.65791,26.8949],[95.6681,26.89873],[95.68006,26.89728],[95.69909,26.89105],[95.71194,26.88849],[95.71903,26.89293],[95.72716,26.89787],[95.73803,26.91016],[95.74719,26.93347],[95.75074,26.94727],[95.75978,26.96351],[95.77521,26.97273],[95.78395,26.97734],[95.79657,26.99281],[95.80781,27.0046],[95.84006,27.00984],[95.86373,27.00989],[95.87417,27.01259],[95.90616,27.02648],[95.92663,27.0426],[95.94269,27.05984],[95.95107,27.07029],[95.96151,27.08013],[95.98135,27.11016],[96.00363,27.15543],[96.01271,27.17135],[96.0248,27.18359],[96.03634,27.19215],[96.06889,27.20926],[96.09045,27.2282],[96.15342,27.25483],[96.1722,27.25808],[96.18685,27.26865],[96.19285,27.2707],[96.2168,27.27172],[96.22838,27.27579],[96.25816,27.27605],[96.27146,27.27875],[96.28201,27.28603],[96.29805,27.29026],[96.32413,27.28672],[96.34163,27.28953],[96.35467,27.29478],[96.37411,27.29324],[96.3915,27.29353],[96.4082,27.30206],[96.42714,27.30603],[96.44828,27.30313],[96.46531,27.29718],[96.4819,27.30266],[96.49779,27.30203],[96.50745,27.29562],[96.51675,27.29271],[96.52551,27.29431],[96.53436,27.30365],[96.54252,27.30506],[96.55652,27.30397],[96.56902,27.30922],[96.57987,27.31907],[96.59113,27.3365],[96.59642,27.3504],[96.60318,27.36162],[96.60994,27.36674],[96.6177,27.36806],[96.63222,27.36079],[96.64566,27.34617],[96.64834,27.34298],[96.65444,27.33917],[96.66501,27.33933],[96.67284,27.34193],[96.68003,27.34372],[96.68791,27.35038],[96.6951,27.35857],[96.70298,27.36493],[96.71359,27.36775],[96.7491,27.36092],[96.78496,27.34617],[96.80017,27.33049],[96.80525,27.3281],[96.81858,27.32448],[96.82395,27.3197],[96.83413,27.29249],[96.84774,27.26894],[96.8585,27.26083],[96.87474,27.25882],[96.88001,27.25924],[96.8839,27.25416],[96.8855,27.24872],[96.88435,27.24328],[96.88252,27.23937],[96.87657,27.23729],[96.86845,27.22885],[96.86101,27.21614],[96.86249,27.20862],[96.86604,27.19804],[96.87802,27.18432],[96.89809,27.17196],[96.96511,27.14531],[96.98043,27.1381],[97.0001,27.13266],[97.01703,27.12722],[97.02895,27.11974],[97.0459,27.0995],[97.06078,27.0927],[97.06687,27.09195],[97.09017,27.10196],[97.10935,27.10098],[97.12478,27.08755],[97.12881,27.08496],[97.13764,27.08542],[97.14618,27.09589],[97.14717,27.10758],[97.15879,27.12172],[97.16012,27.13647],[97.1489,27.15062],[97.12531,27.16354],[97.12296,27.17077],[97.12443,27.17654],[97.12796,27.17988],[97.12816,27.18532],[97.12595,27.19214],[97.11963,27.19774],[97.09668,27.2065],[97.07309,27.24873],[97.05706,27.26837],[97.04823,27.28222],[97.03598,27.2979],[96.99909,27.33051],[96.99035,27.34298],[96.97268,27.36247],[96.96257,27.37526],[96.95787,27.38347],[96.95515,27.39284],[96.94899,27.40404],[96.93394,27.41303],[96.92506,27.43008],[96.91239,27.44258],[96.90589,27.45019],[96.89981,27.46481],[96.90006,27.47577],[96.90441,27.484],[96.91769,27.50014],[96.91816,27.5044],[96.90802,27.52594],[96.90475,27.55966],[96.8958,27.56499],[96.88874,27.57703],[96.88589,27.59126],[96.88687,27.60568],[96.88923,27.61766],[96.89493,27.62581],[96.91368,27.63821],[96.9179,27.64426],[96.92213,27.65092],[96.93219,27.66183],[96.94157,27.66486],[96.95313,27.66486],[96.96125,27.6679],[96.97933,27.6843],[97.00343,27.71807],[97.01587,27.74212],[97.02685,27.74587],[97.04195,27.74835],[97.0598,27.75205],[97.07833,27.74638],[97.08382,27.74922],[97.08721,27.75587],[97.08822,27.77742],[97.0906,27.78196],[97.09727,27.78498],[97.1163,27.78922],[97.12484,27.79526],[97.13046,27.81011],[97.13402,27.81403],[97.15166,27.81673],[97.15762,27.82126],[97.1659,27.83026],[97.17831,27.83744],[97.18691,27.84832],[97.20581,27.86284],[97.22299,27.87996],[97.22849,27.88494],[97.23744,27.89673],[97.24859,27.90726],[97.26659,27.9087],[97.28047,27.91681],[97.28553,27.91859],[97.29332,27.91916],[97.30583,27.91392],[97.31011,27.90364],[97.30985,27.89304],[97.3113,27.88031],[97.3173,27.87762],[97.32841,27.88225],[97.33952,27.88932],[97.3435,27.89131],[97.36465,27.8927],[97.36746,27.89669],[97.36743,27.90243],[97.36259,27.92578],[97.36069,27.94083],[97.36489,27.96063],[97.38278,27.99479],[97.39312,28.00712],[97.39578,28.01223],[97.39431,28.01915],[97.37597,28.03216],[97.36724,28.04213],[97.36764,28.04753],[97.36285,28.05138],[97.35874,28.05766],[97.35945,28.06233],[97.35538,28.06682],[97.34862,28.06551],[97.3426,28.06066],[97.33452,28.05884],[97.32648,28.06196],[97.32004,28.05852],[97.3129,28.06175],[97.3219,28.08232],[97.32815,28.08532],[97.32785,28.0947],[97.32479,28.10226],[97.3345,28.10809],[97.33043,28.11191],[97.32498,28.11331],[97.32508,28.12459],[97.31899,28.12678],[97.31438,28.1345],[97.30976,28.141],[97.31606,28.1481],[97.32167,28.14792],[97.32462,28.14304],[97.33433,28.1418],[97.34542,28.15087],[97.35474,28.1532],[97.35613,28.15969],[97.36027,28.16496],[97.3548,28.17672],[97.36108,28.19026],[97.36323,28.20076],[97.36075,28.20521],[97.3538,28.20785],[97.34731,28.20812],[97.34503,28.2141],[97.3406,28.21574],[97.33618,28.21495],[97.33007,28.21518],[97.29863,28.23199],[97.2847,28.23338],[97.2845,28.24565],[97.27818,28.24407],[97.27186,28.24492],[97.2702,28.25628],[97.26361,28.26328],[97.24603,28.26484],[97.24383,28.27158],[97.2405,28.27298],[97.23579,28.28346],[97.23942,28.29353],[97.22147,28.3024],[97.21862,28.30826],[97.20812,28.30099],[97.19979,28.31005],[97.19694,28.3161],[97.19174,28.3197],[97.17928,28.33297],[97.17219,28.33401],[97.16853,28.32961],[97.15561,28.33669],[97.14914,28.34416],[97.14611,28.35284],[97.14098,28.35169],[97.12279,28.36262],[97.10049,28.366],[97.09329,28.36878],[97.07893,28.37203],[97.06584,28.36375],[97.0545,28.35901],[97.04384,28.34943],[97.02728,28.32985],[97.00311,28.32452],[96.99119,28.32745],[96.97652,28.32978],[96.95269,28.3453],[96.92383,28.35249],[96.92244,28.3639],[96.91342,28.36764],[96.90921,28.3738],[96.89972,28.38096],[96.89023,28.38449],[96.88349,28.39829],[96.88424,28.40519],[96.89323,28.41693],[96.88909,28.42819],[96.87913,28.43442],[96.86573,28.44851],[96.86089,28.48492],[96.82148,28.50034],[96.78344,28.51394],[96.76751,28.51411],[96.74952,28.54263],[96.75954,28.55865],[96.74511,28.57158],[96.72792,28.57425],[96.71487,28.58448],[96.6922,28.58688],[96.66679,28.59952],[96.65408,28.60977],[96.63039,28.61097],[96.61459,28.61397],[96.5799,28.59213],[96.55138,28.58295],[96.53796,28.57166],[96.5237,28.55184],[96.51356,28.5278],[96.51077,28.45771],[96.50543,28.43865],[96.49596,28.42987],[96.48926,28.43408],[96.48325,28.44916],[96.47775,28.49049],[96.44684,28.48927],[96.44289,28.49908],[96.43413,28.50586],[96.40838,28.50857],[96.41155,28.51711],[96.43202,28.5253],[96.45248,28.53048],[96.4587,28.5343],[96.46765,28.54405],[96.4814,28.55501],[96.48235,28.56041],[96.48056,28.56642],[96.45165,28.58267],[96.44676,28.58687],[96.46162,28.60147],[96.48931,28.60636],[96.49502,28.60944],[96.49511,28.62223],[96.49658,28.62597],[96.50594,28.6234],[96.51254,28.62624],[96.537,28.6547],[96.5371,28.66257],[96.53446,28.67526],[96.53605,28.68135],[96.54409,28.68758],[96.55693,28.6908],[96.59772,28.69723],[96.60349,28.69945],[96.60905,28.70723],[96.62079,28.72766],[96.62162,28.73539],[96.61806,28.73713],[96.60351,28.75872],[96.60092,28.78071],[96.59323,28.78069],[96.57832,28.77886],[96.57269,28.78335],[96.57048,28.78784],[96.57746,28.79738],[96.57804,28.80561],[96.58479,28.81144],[96.58937,28.81827],[96.57827,28.8178],[96.56586,28.82448],[96.55829,28.83202],[96.5521,28.84016],[96.54795,28.84921],[96.54387,28.84728],[96.53773,28.84774],[96.52751,28.8583],[96.52141,28.86134],[96.51939,28.86918],[96.52423,28.87882],[96.51718,28.88701],[96.51537,28.90794],[96.52455,28.91564],[96.52025,28.93359],[96.50839,28.94614],[96.48193,28.9478],[96.47298,28.92799],[96.46404,28.9337],[96.45511,28.93595],[96.44309,28.9515],[96.43639,28.96168],[96.43523,28.97669],[96.42823,28.98479],[96.42879,28.9983],[96.43519,29.0013],[96.43445,29.00614],[96.39633,29.02942],[96.38654,29.03115],[96.37516,29.03219],[96.36585,29.03922],[96.36164,29.0485],[96.3623,29.06864],[96.35405,29.06804],[96.35199,29.07466],[96.35884,29.09388],[96.36843,29.10952],[96.34744,29.10131],[96.34155,29.10014],[96.32536,29.10123],[96.30952,29.10141],[96.29626,29.09885],[96.28198,29.09989],[96.26908,29.09673],[96.26176,29.08825],[96.25377,29.08457],[96.24257,29.07421],[96.23772,29.06066],[96.23011,29.04712],[96.21353,29.02723],[96.20553,29.02415],[96.19822,29.02348],[96.19546,29.03515],[96.18585,29.04069],[96.18241,29.04442],[96.18686,29.05009],[96.186,29.05353],[96.18239,29.05516],[96.18581,29.0596],[96.19815,29.07245],[96.19603,29.08421],[96.18841,29.09687],[96.18353,29.11073],[96.19353,29.11767],[96.22805,29.12833],[96.23874,29.13182],[96.24394,29.13861],[96.24541,29.1504],[96.25436,29.15372],[96.2609,29.15914],[96.29285,29.15647],[96.29783,29.15932],[96.30169,29.17663],[96.30007,29.19035],[96.28308,29.2022],[96.28325,29.20955],[96.27078,29.20958],[96.26179,29.21453],[96.2528,29.2135],[96.26218,29.22074],[96.2624,29.2269],[96.2592,29.23008],[96.26217,29.23684],[96.26171,29.24421],[96.24894,29.24875],[96.23912,29.24863],[96.22381,29.25569],[96.2175,29.26239],[96.21425,29.26406],[96.19658,29.26274],[96.18783,29.26681],[96.18252,29.27208],[96.1805,29.27997],[96.17402,29.28307],[96.16616,29.29456],[96.15004,29.29348],[96.14559,29.31157],[96.13943,29.3166],[96.14359,29.32906],[96.13749,29.3456],[96.12517,29.34953],[96.1156,29.35526],[96.10465,29.35919],[96.09165,29.36551],[96.08348,29.36523],[96.07052,29.37272],[96.06163,29.37482],[96.05755,29.38111],[96.05213,29.38352],[96.03718,29.37637],[96.0273,29.3686],[96.01742,29.36323],[96.00657,29.36748],[95.99572,29.36873],[95.98127,29.36146],[95.97766,29.36398],[95.97404,29.37189],[95.96613,29.37573],[95.95477,29.36726],[95.94203,29.36597],[95.93939,29.34978],[95.93073,29.34715],[95.92503,29.34255],[95.90559,29.33615],[95.88897,29.32851],[95.87632,29.31443],[95.86784,29.31798],[95.86151,29.31536],[95.85561,29.31704],[95.8497,29.31633],[95.84612,29.3194],[95.8398,29.32127],[95.83676,29.33398],[95.84334,29.34071],[95.83876,29.35207],[95.82857,29.35141],[95.8122,29.34715],[95.8051,29.3411],[95.79801,29.33805],[95.77969,29.32355],[95.75725,29.32222],[95.73755,29.29896],[95.74711,29.2901],[95.74881,29.28058],[95.75187,29.27585],[95.74241,29.26184],[95.73638,29.25561],[95.73584,29.25088],[95.73042,29.24043],[95.73114,29.23431],[95.73768,29.22675],[95.74354,29.22519],[95.73658,29.21766],[95.72756,29.21792],[95.71825,29.21416],[95.70994,29.20426],[95.70361,29.20484],[95.70552,29.21381],[95.69886,29.22397],[95.666,29.22418],[95.65757,29.21715],[95.64777,29.21012],[95.63831,29.21508],[95.63709,29.22244],[95.61818,29.23355],[95.60613,29.23507],[95.60352,29.23463],[95.5961,29.22519],[95.5972,29.21538],[95.59486,29.20737],[95.60351,29.19576],[95.60173,29.19181],[95.59651,29.18786],[95.58882,29.18775],[95.56396,29.19857],[95.56024,29.20641],[95.55152,29.20209],[95.54853,29.19603],[95.53249,29.19477],[95.52892,29.18896],[95.5068,29.19453],[95.50227,29.19196],[95.50001,29.18228],[95.50579,29.17791],[95.50677,29.16994],[95.51379,29.16521],[95.51256,29.15808],[95.51521,29.15362],[95.51305,29.14855],[95.51523,29.14272],[95.51055,29.13809],[95.5093,29.12566],[95.50386,29.12724],[95.48058,29.14142],[95.47461,29.14139],[95.46744,29.13461],[95.4589,29.13622],[95.45142,29.14635],[95.45356,29.15227],[95.44891,29.16112],[95.45456,29.16398],[95.45282,29.17029],[95.45382,29.1754],[95.44724,29.17992],[95.44616,29.18564],[95.43563,29.19294],[95.42688,29.18471],[95.4195,29.18128],[95.41968,29.16616],[95.41436,29.16363],[95.41574,29.14925],[95.40888,29.14387],[95.40991,29.13698],[95.41386,29.13173],[95.413,29.12589],[95.40476,29.12439],[95.39721,29.1247],[95.39515,29.1298],[95.39172,29.13491],[95.37939,29.13685],[95.3458,29.13413],[95.33905,29.13708],[95.32818,29.13553],[95.31182,29.13879],[95.30587,29.13839],[95.29992,29.1362],[95.29506,29.12798],[95.28539,29.12096],[95.27704,29.11593],[95.2829,29.11072],[95.27229,29.10432],[95.27179,29.08716],[95.2706,29.07301],[95.26169,29.06801],[95.25878,29.07616],[95.25999,29.08011],[95.25215,29.0829],[95.24308,29.08219],[95.23676,29.08569],[95.23012,29.10285],[95.21946,29.10498],[95.21016,29.10772],[95.18903,29.10068],[95.17889,29.10385],[95.16696,29.09884],[95.15914,29.09862],[95.1518,29.09046],[95.13691,29.0883],[95.13048,29.09238],[95.12998,29.09753],[95.12485,29.09945],[95.10908,29.09566],[95.10224,29.09668],[95.10096,29.10134],[95.11617,29.1084],[95.11901,29.11366],[95.11027,29.12208],[95.10085,29.1275],[95.09681,29.14198],[95.08925,29.14158],[95.07757,29.14529],[95.0652,29.14719],[95.05419,29.15359],[95.04301,29.15064],[95.02266,29.15816],[95.00574,29.16567],[95.00535,29.16756],[95.00155,29.16866],[94.99981,29.17215],[94.99427,29.17314],[94.98516,29.17409],[94.98833,29.17082],[94.99493,29.16935],[95.00119,29.16218],[95.01015,29.1541],[95.01464,29.14466],[95.01585,29.13245],[95.02255,29.12743],[95.01649,29.1267],[94.99944,29.13196],[94.99612,29.14113],[94.99212,29.14609],[94.96168,29.15996],[94.95192,29.15891],[94.94079,29.16087],[94.93316,29.15944],[94.92485,29.15622],[94.91675,29.15731],[94.90796,29.16139],[94.90754,29.16837],[94.89803,29.17437],[94.89195,29.17768],[94.879,29.17979],[94.86155,29.18042],[94.84931,29.1835],[94.83943,29.17833],[94.83366,29.17855],[94.82803,29.17282],[94.8224,29.17248],[94.80887,29.16435],[94.80427,29.16641],[94.79768,29.1859],[94.8003,29.20508],[94.80415,29.20808],[94.79342,29.21872],[94.77391,29.21659],[94.75197,29.23021],[94.74391,29.2445],[94.74891,29.25041],[94.74849,29.25677],[94.74465,29.26313],[94.73805,29.27098],[94.73627,29.27584],[94.7353,29.28629],[94.72401,29.29124],[94.71547,29.2914],[94.71005,29.3019],[94.69373,29.3181],[94.68266,29.31457],[94.67492,29.30844],[94.66717,29.30471],[94.65718,29.30624],[94.64406,29.29627],[94.62613,29.29587],[94.61845,29.28295],[94.60184,29.27542],[94.59554,29.27358],[94.5913,29.27173],[94.58212,29.26116],[94.57157,29.25598],[94.57145,29.2477],[94.56761,29.24026],[94.56034,29.23762],[94.55597,29.22884],[94.5516,29.22845],[94.54105,29.21907],[94.51549,29.22698],[94.5119,29.2313],[94.5053,29.22656],[94.50214,29.21584],[94.49306,29.20757],[94.47402,29.21009],[94.45773,29.21261],[94.45245,29.20646],[94.45335,29.19073],[94.44555,29.18083],[94.43946,29.18532],[94.42925,29.18741],[94.4181,29.17871],[94.40326,29.18305],[94.39184,29.18439],[94.38893,29.18093],[94.38534,29.16069],[94.38025,29.15469],[94.3731,29.1541],[94.36732,29.1514],[94.35536,29.15291],[94.34736,29.15113],[94.33901,29.15504],[94.3341,29.15476],[94.32462,29.153],[94.31857,29.15603],[94.30373,29.1522],[94.29369,29.15257],[94.29585,29.13444],[94.28978,29.12171],[94.27694,29.11245],[94.27405,29.10079],[94.27917,29.08873],[94.29733,29.08266],[94.31377,29.079],[94.3165,29.07147],[94.31374,29.06693],[94.3239,29.05648],[94.32823,29.03942],[94.34285,29.03557],[94.36115,29.03529],[94.36641,29.02601],[94.34319,29.00241],[94.32134,28.99322],[94.30855,28.99405],[94.30176,28.98332],[94.27983,28.96985],[94.27369,28.96719],[94.27485,28.95206],[94.26753,28.9463],[94.26656,28.93976],[94.26024,28.93077],[94.25323,28.929],[94.23206,28.92732],[94.2153,28.93313],[94.20678,28.93173],[94.19414,28.93513],[94.17876,28.93613],[94.16755,28.92761],[94.16596,28.91849],[94.17514,28.91107],[94.16001,28.90397],[94.14557,28.89808],[94.1325,28.88888],[94.11669,28.8893],[94.10173,28.88431],[94.08471,28.88172],[94.07883,28.88256],[94.07055,28.87648],[94.05746,28.87401],[94.05805,28.85885],[94.03863,28.85773],[94.02892,28.85326],[94.02265,28.84397],[94.01814,28.82609],[94.02079,28.79333],[94.01296,28.79401],[94.00355,28.79165],[93.99552,28.79109],[93.98494,28.79658],[93.98809,28.8069],[93.9786,28.81819],[93.97461,28.82046],[93.95756,28.80823],[93.94806,28.80321],[93.9396,28.78917],[93.92633,28.78356],[93.91169,28.77313],[93.9193,28.74535],[93.91487,28.74108],[93.90975,28.74104],[93.89683,28.7571],[93.86743,28.74547],[93.86069,28.74167],[93.85223,28.74659],[93.84102,28.74851],[93.82542,28.73987],[93.81051,28.74027],[93.80253,28.73459],[93.79181,28.73615],[93.78899,28.73619],[93.78686,28.72962],[93.78556,28.71434],[93.75543,28.69876],[93.74909,28.69276],[93.73383,28.68375],[93.72998,28.6803],[93.7275,28.67323],[93.71369,28.66496],[93.70606,28.66452],[93.6884,28.67759],[93.67135,28.66959],[93.65841,28.66821],[93.63734,28.65461],[93.62921,28.66483],[93.62795,28.68047],[93.62336,28.68766],[93.61397,28.6843],[93.60389,28.68456],[93.58454,28.67909],[93.52124,28.67423],[93.51099,28.66892],[93.49387,28.66962],[93.48431,28.67274],[93.4768,28.67406],[93.47182,28.67072],[93.45928,28.66919],[93.44777,28.66887],[93.43695,28.66433],[93.42733,28.66248],[93.4232,28.65762],[93.41477,28.65426],[93.39399,28.63945],[93.38195,28.63335],[93.30792,28.5931],[93.24831,28.54985],[93.1852,28.49461],[93.17394,28.47106],[93.16852,28.41974],[93.14864,28.37596],[93.14799,28.36661],[93.13859,28.36265],[93.11569,28.34436],[93.1,28.34019],[93.08569,28.32696],[93.0779,28.32483],[93.07423,28.32225],[93.0637,28.30638],[93.05912,28.30487],[93.05133,28.31029],[93.02776,28.29946],[93.00282,28.29408],[92.9954,28.27962],[92.99071,28.27363],[92.96066,28.26721],[92.95793,28.26354],[92.95177,28.26168],[92.947,28.26159],[92.93193,28.2491],[92.92749,28.22592],[92.93658,28.21825],[92.92987,28.20575],[92.91921,28.2001],[92.91162,28.20152],[92.88338,28.20193],[92.87578,28.19721],[92.86748,28.19008],[92.85502,28.18609],[92.84313,28.18115],[92.83434,28.17531],[92.82692,28.17491],[92.8145,28.17975],[92.80715,28.18059],[92.80393,28.18323],[92.79062,28.18853],[92.77773,28.18399],[92.76672,28.17673],[92.77139,28.17002],[92.76954,28.16453],[92.75898,28.16141],[92.7454,28.16122],[92.74109,28.15649],[92.7361,28.1554],[92.73128,28.16035],[92.72508,28.16168],[92.71681,28.16796],[92.71086,28.16547],[92.70285,28.15571],[92.69163,28.15011],[92.67744,28.15103],[92.66748,28.12505],[92.66301,28.09691],[92.65597,28.08497],[92.65799,28.07532],[92.66687,28.06809],[92.684,28.06813],[92.69324,28.06603],[92.70181,28.06818],[92.71382,28.06492],[92.73132,28.05439],[92.73131,28.04908],[92.73611,28.03953],[92.72615,28.01847],[92.7203,28.00044],[92.72372,27.98985],[92.73316,27.98641],[92.73161,27.97995],[92.70792,27.96337],[92.6983,27.96298],[92.69006,27.95197],[92.67632,27.94823],[92.67039,27.94124],[92.6645,27.93001],[92.65862,27.92545],[92.65328,27.91832],[92.64587,27.9118],[92.63656,27.91149],[92.62754,27.90965],[92.62202,27.91354],[92.60757,27.91682],[92.59443,27.91112],[92.59071,27.89991],[92.58081,27.88871],[92.58293,27.88114],[92.56857,27.88207],[92.56528,27.8768],[92.55513,27.87336],[92.54566,27.86597],[92.53344,27.86646],[92.53309,27.86057],[92.52998,27.85588],[92.51142,27.84712],[92.50037,27.85086],[92.49328,27.8429],[92.47589,27.83312],[92.47766,27.82793],[92.47227,27.82055],[92.46756,27.80954],[92.45702,27.80065],[92.45609,27.79358],[92.43761,27.80539],[92.42749,27.80197],[92.42312,27.80846],[92.42631,27.81494],[92.42272,27.82154],[92.42607,27.83121],[92.42462,27.83482],[92.41328,27.82891],[92.40598,27.81939],[92.39593,27.82019],[92.38387,27.81284],[92.37181,27.80915],[92.36353,27.80332],[92.35662,27.80478],[92.33858,27.79645],[92.31917,27.79783],[92.32017,27.81092],[92.31225,27.82279],[92.30605,27.82556],[92.29709,27.83318],[92.29878,27.84171],[92.30391,27.85146],[92.29591,27.86283],[92.2934,27.86994],[92.2842,27.87615],[92.27569,27.88296],[92.26896,27.88566],[92.25542,27.87846],[92.24463,27.8846],[92.24078,27.88525],[92.23107,27.8795],[92.22203,27.87313],[92.2129,27.87315],[92.21082,27.868],[92.21218,27.86225],[92.20117,27.85892],[92.18536,27.84466],[92.1743,27.84713],[92.16385,27.82839],[92.14173,27.83394],[92.13182,27.82621],[92.12893,27.81795],[92.10769,27.80232],[92.09965,27.79983],[92.0606,27.78802],[92.0577,27.77952],[92.04724,27.78135],[92.03634,27.77558],[92.01721,27.7771],[92.01053,27.78257],[92.00231,27.78106],[91.99409,27.78259],[91.98453,27.77805],[91.97771,27.77291],[91.97579,27.76217],[91.96701,27.75082],[91.96385,27.74088],[91.95181,27.73545],[91.94182,27.72881],[91.91978,27.71735],[91.90627,27.72907],[91.901,27.72986],[91.8942,27.72361],[91.87295,27.7223],[91.86818,27.73134],[91.86035,27.73512],[91.86076,27.74072],[91.85005,27.7607],[91.6453,27.76116],[91.64435,27.77029],[91.63941,27.77364],[91.63694,27.7899],[91.63447,27.80312],[91.62424,27.81377],[91.6099,27.82382],[91.60163,27.8227],[91.5985,27.81855],[91.58851,27.81865],[91.58157,27.81156],[91.57669,27.81115],[91.56937,27.81856],[91.56342,27.82961],[91.55357,27.84988],[91.5531,27.85461],[91.55836,27.85558],[91.57092,27.84778],[91.57509,27.86497],[91.58678,27.86093],[91.58954,27.85627],[91.59369,27.85606],[91.60205,27.86404],[91.61178,27.85745],[91.6206,27.86431],[91.62226,27.87533],[91.61897,27.88205],[91.62007,27.88511],[91.62543,27.88816],[91.62529,27.89181],[91.61829,27.89569],[91.60991,27.89472],[91.59589,27.90249],[91.5919,27.90711],[91.57564,27.90485],[91.56866,27.89686],[91.55481,27.89857],[91.5484,27.91898],[91.53763,27.92144],[91.53373,27.92389],[91.5273,27.92335],[91.51847,27.92917],[91.50963,27.93681],[91.50245,27.93948],[91.49526,27.9382],[91.48327,27.9442],[91.49128,27.96456],[91.48738,27.97353],[91.48415,27.97393],[91.48297,27.97978],[91.47445,27.97996],[91.4677,27.99609],[91.4638,27.99864],[91.46563,28.00555],[91.44693,28.01006],[91.43934,28.00255],[91.43452,28.00425],[91.43106,28.00838],[91.43098,28.017],[91.42105,28.01997],[91.41421,28.01779],[91.40427,28.02397],[91.39776,28.03137],[91.39229,28.02949],[91.38271,28.03185],[91.37243,28.04118],[91.36216,28.0487],[91.34196,28.04903],[91.34304,28.06148],[91.33834,28.06639],[91.33402,28.06666],[91.32833,28.06207],[91.32126,28.06294],[91.30939,28.06078],[91.29899,28.06668],[91.29645,28.06369],[91.29185,28.06435],[91.28678,28.06262],[91.27456,28.06644],[91.2673,28.0656],[91.26308,28.0718],[91.24755,28.06267],[91.246,28.05464],[91.24925,28.05024],[91.24529,28.04311],[91.23859,28.0378],[91.23788,28.02901],[91.23237,28.02869],[91.2265,28.02231],[91.21788,28.01774],[91.21508,27.99792],[91.21502,27.99204],[91.20845,27.98677],[91.20325,27.98635],[91.19068,27.98648],[91.16897,28.0013],[91.15953,27.99731],[91.14871,27.9897],[91.13256,27.99568],[91.12209,27.99442],[91.11367,27.99135],[91.10878,27.99421],[91.10663,27.99707],[91.10165,28.00037],[91.09476,27.99626],[91.0872,28.00179],[91.0762,28.00368],[91.07285,27.99977],[91.07358,27.99236],[91.06675,27.99223],[91.06271,27.99742],[91.05387,27.99958],[91.04939,28.0076],[91.04251,28.00555],[91.02877,28.01623],[91.02326,28.02486],[91.01535,28.02327],[91.00402,28.02168],[90.99782,28.02213],[90.99093,28.01699],[90.98813,28.00548],[90.97846,28.00064],[90.97154,28.00429],[90.96995,28.00918],[90.96472,28.00806],[90.95798,28.01462],[90.95261,28.01754],[90.94463,28.02763],[90.94702,28.03343],[90.92985,28.04166],[90.92778,28.04443],[90.91836,28.03775],[90.92061,28.03288],[90.91256,28.02741],[90.90658,28.02558],[90.90113,28.02918],[90.89293,28.02854],[90.89928,28.0363],[90.88957,28.0429],[90.87301,28.04526],[90.86322,28.05179],[90.8529,28.0537],[90.85315,28.04631],[90.83577,28.04836],[90.82885,28.04403],[90.82298,28.04247],[90.8173,28.04745],[90.81378,28.0466],[90.80682,28.04939],[90.802,28.0496],[90.79718,28.04617],[90.79303,28.04839],[90.78821,28.0436],[90.77996,28.04123],[90.77411,28.04885],[90.77375,28.05163],[90.76301,28.04757],[90.74299,28.05383],[90.72709,28.0625],[90.72412,28.06896],[90.7078,28.07022],[90.70286,28.07235],[90.69929,28.07934],[90.69079,28.08057],[90.68425,28.07724],[90.67634,28.06785],[90.67081,28.06725],[90.6689,28.06179],[90.66151,28.05634],[90.65426,28.05755],[90.63559,28.04665],[90.62585,28.04666],[90.61611,28.04788],[90.59971,28.03304],[90.58468,28.02185],[90.58089,28.0256],[90.58052,28.03056],[90.57569,28.02977],[90.57223,28.03261],[90.57032,28.04],[90.56361,28.04679],[90.55223,28.05126],[90.54886,28.0507],[90.53107,28.05498],[90.52571,28.05991],[90.50673,28.06614],[90.49402,28.05904],[90.48268,28.05074],[90.46997,28.04819],[90.4552,28.04746],[90.4483,28.05159],[90.44416,28.06183],[90.44208,28.06419],[90.44549,28.06959],[90.44789,28.07955],[90.45165,28.08649],[90.47153,28.08698],[90.48385,28.09815],[90.50029,28.1075],[90.49545,28.11897],[90.4865,28.12834],[90.48442,28.13468],[90.49254,28.13843],[90.5034,28.14218],[90.50865,28.14908],[90.54698,28.15737],[90.5579,28.17755],[90.56782,28.18946],[90.57432,28.20077],[90.60206,28.20779],[90.60647,28.22086],[90.61389,28.22764],[90.60698,28.23171],[90.6035,28.2376],[90.5983,28.23501],[90.59311,28.23424],[90.58357,28.24041],[90.57404,28.24477],[90.53614,28.24756],[90.52983,28.25155],[90.50504,28.25082],[90.48026,28.25554],[90.46982,28.27284],[90.45664,28.28046],[90.44415,28.2905],[90.43359,28.29426],[90.42195,28.28884],[90.41032,28.27557],[90.39868,28.28013],[90.38911,28.2859],[90.38254,28.28676],[90.38146,28.29245],[90.38274,28.30626],[90.37903,28.30825],[90.37222,28.30662],[90.35585,28.30548],[90.34854,28.305],[90.34282,28.29981],[90.33643,28.27527],[90.33277,28.26585],[90.32336,28.26376],[90.31179,28.26573],[90.30091,28.27013],[90.28772,28.27197],[90.28003,28.27925],[90.26876,28.2793],[90.26004,28.28537],[90.25681,28.29145],[90.26667,28.33034],[90.25665,28.33842],[90.25371,28.34638],[90.24664,28.35374],[90.23768,28.35793],[90.22461,28.36091],[90.21287,28.35962],[90.18913,28.34103],[90.18697,28.33079],[90.18206,28.31994],[90.17475,28.31907],[90.16057,28.31397],[90.15266,28.31673],[90.14956,28.3222],[90.13614,28.33376],[90.12049,28.33579],[90.11102,28.34085],[90.10588,28.3407],[90.0925,28.32966],[90.08566,28.33358],[90.07161,28.33478],[90.05978,28.34505],[90.05551,28.34626],[90.04489,28.34247],[90.03633,28.34171],[90.00855,28.33641],[90,28.33293]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**China, west of 90º E#9N", "itu_zone_number": 42 }, "geometry": { "type": "Polygon", "coordinates": [[[90,28.33293],[89.98701,28.33257],[89.98226,28.31379],[89.94074,28.31527],[89.93013,28.31827],[89.9176,28.31795],[89.90439,28.31188],[89.89719,28.30942],[89.89239,28.31417],[89.88039,28.3109],[89.87405,28.31335],[89.86839,28.31338],[89.85878,28.30799],[89.83956,28.28869],[89.82997,28.28214],[89.82748,28.25891],[89.82294,28.24959],[89.82038,28.24122],[89.81438,28.23893],[89.80563,28.23785],[89.79775,28.24657],[89.79229,28.24647],[89.79131,28.23917],[89.78691,28.22944],[89.7781,28.22814],[89.77306,28.22381],[89.76803,28.2219],[89.77239,28.21824],[89.77539,28.21096],[89.78103,28.21091],[89.78339,28.20779],[89.77583,28.19638],[89.76964,28.19344],[89.7655,28.18697],[89.76545,28.18309],[89.75528,28.18617],[89.74786,28.19077],[89.74559,28.18901],[89.74194,28.19027],[89.72907,28.17552],[89.71894,28.17166],[89.71397,28.17725],[89.68917,28.18156],[89.68291,28.18466],[89.67532,28.18156],[89.66978,28.17059],[89.66116,28.17142],[89.65871,28.16801],[89.64593,28.16968],[89.64138,28.17376],[89.62431,28.16521],[89.61959,28.16816],[89.60972,28.16808],[89.59642,28.16377],[89.59515,28.15287],[89.59005,28.1453],[89.58289,28.14015],[89.56936,28.11956],[89.5602,28.12165],[89.55052,28.11665],[89.5532,28.1053],[89.54879,28.1034],[89.543,28.09727],[89.53521,28.08925],[89.52495,28.09016],[89.51022,28.0947],[89.50531,28.08677],[89.50556,28.08126],[89.49781,28.07449],[89.49384,28.06892],[89.48506,28.06215],[89.48503,28.05795],[89.47608,28.05011],[89.47452,28.04498],[89.46816,28.04167],[89.46498,28.03698],[89.45973,28.03533],[89.46024,28.0308],[89.47129,28.02316],[89.46862,28.01431],[89.45771,28.01122],[89.4516,28.00692],[89.45478,27.99724],[89.45041,27.98816],[89.45198,27.97486],[89.43931,27.96464],[89.43927,27.95549],[89.43375,27.95058],[89.43371,27.94719],[89.41995,27.94441],[89.41507,27.93596],[89.4102,27.93358],[89.41456,27.92557],[89.4061,27.92248],[89.39901,27.91877],[89.39862,27.90988],[89.39412,27.90585],[89.38956,27.89141],[89.37565,27.88376],[89.36843,27.87151],[89.36016,27.87188],[89.34932,27.86538],[89.33779,27.86252],[89.32949,27.85437],[89.31192,27.85442],[89.30877,27.85751],[89.30518,27.85393],[89.29815,27.85338],[89.29301,27.84835],[89.28788,27.83997],[89.28137,27.83827],[89.27419,27.82881],[89.26563,27.82845],[89.26635,27.8224],[89.26843,27.81271],[89.25712,27.8071],[89.24512,27.80271],[89.23947,27.80348],[89.2345,27.80243],[89.2349,27.79318],[89.23221,27.78849],[89.23096,27.78396],[89.225,27.78341],[89.22518,27.77576],[89.22159,27.77207],[89.22263,27.76468],[89.21991,27.7584],[89.22266,27.75695],[89.22679,27.74639],[89.22061,27.74167],[89.222,27.738],[89.22887,27.73291],[89.2196,27.72356],[89.20725,27.72059],[89.20519,27.72187],[89.19697,27.72094],[89.19219,27.70213],[89.18363,27.69365],[89.18435,27.68851],[89.17751,27.68155],[89.18272,27.67432],[89.17419,27.67317],[89.17077,27.66722],[89.16392,27.66553],[89.15604,27.65684],[89.15159,27.65545],[89.14066,27.64807],[89.14209,27.6419],[89.13391,27.63939],[89.12923,27.63259],[89.13279,27.62944],[89.12983,27.62142],[89.12893,27.61522],[89.12337,27.61509],[89.11782,27.61983],[89.1126,27.6194],[89.10739,27.62383],[89.10073,27.62296],[89.09683,27.62574],[89.07872,27.62175],[89.07194,27.61746],[89.06112,27.61405],[89.05854,27.60912],[89.05116,27.60723],[89.04125,27.59753],[89.03786,27.58906],[89.03451,27.57819],[89.02391,27.57595],[89.014,27.57432],[89.00721,27.56985],[89.00284,27.5602],[88.99846,27.55542],[89.00575,27.5552],[89.00481,27.54951],[88.9983,27.5459],[88.99746,27.54044],[88.99386,27.53681],[88.98361,27.5296],[88.97888,27.52917],[88.97562,27.52587],[88.97544,27.51954],[88.97183,27.51442],[88.97834,27.50856],[88.98691,27.49174],[88.97521,27.48489],[88.96557,27.47348],[88.96721,27.46004],[88.96136,27.45188],[88.95551,27.43702],[88.9644,27.42437],[88.96295,27.41707],[88.94987,27.41372],[88.96324,27.40565],[88.96607,27.39952],[88.97027,27.39887],[88.97516,27.38603],[88.98035,27.36285],[88.97745,27.35674],[88.98767,27.35156],[88.98937,27.34721],[88.99656,27.34652],[89.00135,27.3376],[89.00477,27.32624],[88.98162,27.31592],[88.97289,27.3056],[88.96139,27.31058],[88.95297,27.32044],[88.93752,27.33771],[88.9267,27.33506],[88.92618,27.32997],[88.9224,27.32773],[88.91758,27.33127],[88.90567,27.32894],[88.90097,27.333],[88.895,27.3326],[88.89267,27.33849],[88.88252,27.3454],[88.88488,27.35008],[88.88205,27.35272],[88.8805,27.36105],[88.87294,27.36316],[88.86195,27.37015],[88.86332,27.37924],[88.86126,27.38645],[88.84598,27.3848],[88.83853,27.37899],[88.8304,27.38964],[88.82168,27.39205],[88.81984,27.40085],[88.82143,27.40479],[88.80806,27.40443],[88.80602,27.40803],[88.80743,27.41036],[88.80477,27.41563],[88.80769,27.42434],[88.80185,27.42237],[88.79927,27.42748],[88.79601,27.42772],[88.79051,27.4378],[88.79428,27.43935],[88.79325,27.44699],[88.78947,27.44765],[88.78621,27.45255],[88.78295,27.4544],[88.78294,27.45877],[88.77607,27.47055],[88.78292,27.47523],[88.7802,27.48207],[88.78434,27.48465],[88.78402,27.49971],[88.78645,27.50381],[88.78667,27.50957],[88.79032,27.51472],[88.78801,27.52107],[88.79395,27.52498],[88.79295,27.53148],[88.78269,27.52976],[88.77792,27.5317],[88.77387,27.53923],[88.77254,27.55699],[88.76296,27.56685],[88.76969,27.57122],[88.78123,27.57012],[88.7859,27.57388],[88.79263,27.5746],[88.78866,27.58601],[88.80475,27.59544],[88.80847,27.60244],[88.80662,27.60875],[88.80992,27.61903],[88.80394,27.62443],[88.81121,27.63734],[88.81572,27.64842],[88.82407,27.64443],[88.83122,27.64702],[88.84922,27.66747],[88.84799,27.67575],[88.84141,27.68351],[88.84788,27.69309],[88.84744,27.69697],[88.84357,27.70267],[88.83789,27.70555],[88.83958,27.71194],[88.85669,27.71681],[88.8587,27.73809],[88.86757,27.74357],[88.86185,27.75393],[88.85682,27.75335],[88.85467,27.76924],[88.85595,27.77357],[88.85483,27.77913],[88.8592,27.79075],[88.86089,27.80446],[88.8574,27.80576],[88.85866,27.81687],[88.87503,27.82828],[88.87978,27.82974],[88.88316,27.83544],[88.88013,27.84094],[88.88122,27.85128],[88.8889,27.8568],[88.88101,27.86728],[88.87792,27.88261],[88.88137,27.89142],[88.87074,27.90114],[88.86921,27.91875],[88.8602,27.92725],[88.84745,27.92603],[88.83471,27.93028],[88.83812,27.94606],[88.84223,27.94788],[88.84376,27.9538],[88.83981,27.96942],[88.84219,27.97519],[88.84078,27.98247],[88.84281,27.98552],[88.83758,28.0007],[88.8358,28.0165],[88.8293,28.01763],[88.82075,28.0224],[88.81494,28.02112],[88.80433,28.03074],[88.79683,28.04149],[88.79343,28.04384],[88.79208,28.04922],[88.78765,28.04998],[88.78321,28.05376],[88.7764,28.05467],[88.75523,28.08073],[88.74292,28.07575],[88.72992,28.07259],[88.71502,28.07843],[88.69778,28.0765],[88.69255,28.07882],[88.68265,28.07838],[88.67873,28.0724],[88.6675,28.07531],[88.66451,28.08731],[88.6443,28.1027],[88.64058,28.11567],[88.63381,28.12343],[88.6275,28.11625],[88.61638,28.11271],[88.60857,28.10804],[88.60118,28.08962],[88.59481,28.09059],[88.58914,28.08731],[88.58705,28.08451],[88.57741,28.08492],[88.56916,28.09139],[88.56431,28.0898],[88.56218,28.08631],[88.55525,28.08221],[88.55491,28.07838],[88.55732,28.07454],[88.55423,28.06692],[88.5539,28.05627],[88.54979,28.0483],[88.55324,28.03881],[88.54642,28.03358],[88.53497,28.03368],[88.52832,28.03803],[88.52396,28.03581],[88.51935,28.0429],[88.51116,28.04282],[88.5025,28.05099],[88.49522,28.05493],[88.49164,28.04752],[88.48531,28.04436],[88.47541,28.03621],[88.47443,28.02716],[88.46796,28.01749],[88.45547,28.01435],[88.4375,28.00878],[88.43023,28.00736],[88.42365,28.00169],[88.41666,27.99946],[88.4135,27.99059],[88.41377,27.98051],[88.40189,27.98062],[88.39001,27.97649],[88.38259,27.98448],[88.37723,27.98884],[88.35626,27.98846],[88.33461,27.98322],[88.3315,27.97616],[88.32289,27.98002],[88.31532,27.97807],[88.31393,27.97248],[88.3029,27.96495],[88.29322,27.96686],[88.28415,27.96523],[88.28017,27.95466],[88.27138,27.9544],[88.26891,27.95753],[88.26396,27.95529],[88.25935,27.94653],[88.25063,27.9414],[88.23799,27.96937],[88.23127,27.96815],[88.22317,27.96147],[88.21317,27.96388],[88.20593,27.96129],[88.20694,27.94051],[88.19586,27.94297],[88.18753,27.9424],[88.17851,27.94972],[88.17327,27.95036],[88.16185,27.95782],[88.15351,27.95862],[88.1493,27.96275],[88.14166,27.96506],[88.13529,27.95364],[88.1303,27.9495],[88.13458,27.94567],[88.13611,27.93698],[88.13104,27.93287],[88.12941,27.92511],[88.12133,27.92355],[88.11752,27.9168],[88.12434,27.90419],[88.13871,27.88977],[88.13576,27.88122],[88.14087,27.87729],[88.14391,27.87883],[88.14904,27.87702],[88.15554,27.87035],[88.16119,27.8696],[88.17989,27.85609],[88.19737,27.8558],[88.1956,27.8492],[88.19917,27.84439],[88.19931,27.83957],[88.18895,27.82842],[88.18203,27.82395],[88.17286,27.82185],[88.17237,27.81947],[88.18128,27.81052],[88.18882,27.79974],[88.19635,27.79018],[88.19051,27.78297],[88.1826,27.77576],[88.18121,27.76757],[88.17776,27.75695],[88.17841,27.74663],[88.16976,27.74394],[88.1563,27.74185],[88.1531,27.71555],[88.14755,27.70969],[88.14613,27.70383],[88.15071,27.69897],[88.15082,27.69259],[88.14544,27.68134],[88.14499,27.66614],[88.13938,27.66112],[88.12485,27.65246],[88.1205,27.64425],[88.11799,27.62449],[88.10849,27.6061],[88.10449,27.60109],[88.09446,27.59917],[88.08855,27.59421],[88.07742,27.57393],[88.07967,27.56309],[88.07781,27.56017],[88.06994,27.55633],[88.0684,27.54985],[88.05932,27.5391],[88.06074,27.51742],[88.05544,27.50864],[88.04567,27.49804],[88.04353,27.48604],[88.04552,27.47708],[88.0641,27.46258],[88.06824,27.45076],[88.07375,27.44626],[88.06411,27.42796],[88.05104,27.41089],[88.04447,27.37828],[88.04771,27.36868],[88.0713,27.34375],[88.07842,27.33408],[88.07803,27.32647],[88.05725,27.31369],[88.04549,27.30059],[88.03441,27.28444],[88.03199,27.26132],[88.02708,27.24638],[88.01861,27.23555],[88.01289,27.22044],[88.00993,27.19634],[88.01211,27.16583],[88.01086,27.15182],[87.99704,27.12745],[87.99283,27.11347],[87.99595,27.103],[88.01502,27.09074],[88.01898,27.08642],[88.0314,27.05263],[88.04619,27.042],[88.05618,27.03994],[88.07272,27.03153],[88.08108,27.02418],[88.08969,27.00453],[88.10037,27.0017],[88.10776,26.99463],[88.11585,26.98756],[88.12805,26.98813],[88.13407,26.98503],[88.12333,26.96822],[88.12083,26.94956],[88.13584,26.93539],[88.14466,26.92122],[88.14481,26.91216],[88.13755,26.89895],[88.14746,26.88911],[88.15997,26.88297],[88.1645,26.87653],[88.16506,26.87086],[88.16774,26.86802],[88.17179,26.86886],[88.17375,26.85287],[88.16752,26.8507],[88.16974,26.84403],[88.16853,26.83798],[88.17324,26.83342],[88.17109,26.82641],[88.1789,26.81511],[88.1773,26.80394],[88.18068,26.79609],[88.18132,26.7858],[88.18807,26.77255],[88.18659,26.74725],[88.18099,26.7195],[88.16635,26.70016],[88.16797,26.68358],[88.16519,26.67201],[88.1638,26.66316],[88.16242,26.64572],[88.1555,26.63241],[88.14028,26.62542],[88.13869,26.61146],[88.13001,26.60317],[88.12916,26.57644],[88.11458,26.56936],[88.10602,26.55151],[88.1095,26.54408],[88.09586,26.53535],[88.10694,26.52662],[88.09468,26.51052],[88.10061,26.50364],[88.09968,26.48938],[88.10605,26.48914],[88.10543,26.47956],[88.09796,26.4792],[88.10146,26.46409],[88.08883,26.46282],[88.0968,26.44925],[88.09077,26.4258],[88.07539,26.41899],[88.05313,26.40234],[88.02785,26.3838],[88.03085,26.36516],[88.00698,26.36151],[88.00053,26.36614],[87.99535,26.36442],[87.99154,26.37007],[87.99216,26.38015],[87.97222,26.39257],[87.96087,26.39693],[87.94952,26.39945],[87.93919,26.41372],[87.92407,26.42516],[87.92611,26.44521],[87.92231,26.44808],[87.90849,26.44557],[87.9029,26.4486],[87.89723,26.46633],[87.88931,26.47351],[87.86583,26.46063],[87.85721,26.45387],[87.84722,26.43973],[87.83617,26.43913],[87.81737,26.44932],[87.80471,26.45872],[87.79067,26.4589],[87.77564,26.45003],[87.77374,26.42461],[87.77047,26.41271],[87.76752,26.40776],[87.76114,26.40773],[87.74494,26.41443],[87.7356,26.41252],[87.72627,26.41431],[87.72236,26.42187],[87.71639,26.42636],[87.70858,26.4255],[87.69596,26.43017],[87.68379,26.42404],[87.67771,26.41759],[87.67506,26.41114],[87.66652,26.40379],[87.64875,26.39955],[87.64273,26.39229],[87.63173,26.39008],[87.60906,26.38664],[87.60459,26.38117],[87.59256,26.37878],[87.58567,26.38261],[87.58081,26.39027],[87.53128,26.41788],[87.49724,26.43123],[87.4838,26.43596],[87.46448,26.43498],[87.44167,26.43147],[87.40375,26.42057],[87.36857,26.40291],[87.3595,26.38833],[87.35064,26.35736],[87.34255,26.35017],[87.32939,26.34772],[87.31897,26.35205],[87.30981,26.36346],[87.29697,26.37028],[87.27281,26.3725],[87.2665,26.37963],[87.25911,26.40386],[87.24589,26.41209],[87.23953,26.41356],[87.22905,26.41088],[87.21995,26.40574],[87.20998,26.40591],[87.20588,26.40935],[87.19972,26.41095],[87.18466,26.40246],[87.17032,26.40024],[87.15194,26.39887],[87.13322,26.4135],[87.11999,26.42874],[87.11366,26.43184],[87.10294,26.44231],[87.09566,26.45216],[87.08369,26.48665],[87.06869,26.55255],[87.06947,26.58004],[87.06682,26.58666],[87.06076,26.58852],[87.0499,26.5867],[87.03365,26.57199],[87.0046,26.53398],[86.99094,26.52619],[86.96628,26.52453],[86.94856,26.53044],[86.9402,26.52653],[86.93321,26.51954],[86.93089,26.51354],[86.9169,26.51091],[86.90154,26.50244],[86.89485,26.48796],[86.89108,26.47191],[86.82104,26.43673],[86.79877,26.44697],[86.7765,26.45106],[86.76079,26.44942],[86.74543,26.42379],[86.73694,26.41968],[86.73128,26.41976],[86.72561,26.42169],[86.69627,26.4398],[86.68341,26.4493],[86.65991,26.45603],[86.6419,26.4646],[86.61669,26.48437],[86.5908,26.48999],[86.57374,26.49283],[86.55703,26.50345],[86.54032,26.52452],[86.52681,26.53224],[86.48881,26.53847],[86.47072,26.54869],[86.43957,26.5583],[86.42456,26.56269],[86.40985,26.56795],[86.40112,26.57703],[86.3917,26.58242],[86.37945,26.58799],[86.35553,26.58926],[86.3324,26.58443],[86.32804,26.58767],[86.33466,26.60687],[86.33166,26.61256],[86.3268,26.61395],[86.30477,26.61351],[86.29029,26.61429],[86.27581,26.612],[86.2488,26.60224],[86.22086,26.587],[86.20654,26.58539],[86.19881,26.58977],[86.1897,26.60644],[86.18523,26.60845],[86.16222,26.60725],[86.14127,26.60236],[86.13505,26.6049],[86.12745,26.61634],[86.11782,26.61869],[86.11368,26.61551],[86.10472,26.61805],[86.07927,26.6433],[86.06861,26.6524],[86.04696,26.66149],[86.02907,26.66312],[86.00336,26.65031],[85.9962,26.64855],[85.96998,26.64832],[85.96265,26.64656],[85.94489,26.61818],[85.92095,26.60822],[85.90608,26.59985],[85.89727,26.59107],[85.89533,26.59026],[85.87795,26.58152],[85.86929,26.57447],[85.85471,26.5702],[85.84971,26.5728],[85.84677,26.57601],[85.84227,26.58735],[85.84493,26.59284],[85.84142,26.60324],[85.83653,26.6075],[85.83071,26.60919],[85.81166,26.60075],[85.80842,26.60151],[85.78458,26.62316],[85.76781,26.6321],[85.75104,26.6435],[85.73054,26.66629],[85.72394,26.70452],[85.72764,26.73477],[85.73231,26.78577],[85.7279,26.8001],[85.70898,26.81737],[85.6832,26.8328],[85.66859,26.83646],[85.65888,26.84319],[85.64918,26.84747],[85.63938,26.86062],[85.63026,26.86826],[85.62182,26.86606],[85.60857,26.86019],[85.59991,26.85395],[85.58948,26.84944],[85.57067,26.84594],[85.50729,26.81351],[85.47943,26.80196],[85.46735,26.79838],[85.45994,26.79107],[85.45253,26.78683],[85.44605,26.78549],[85.42997,26.7909],[85.42148,26.79589],[85.41207,26.79484],[85.39184,26.77754],[85.3807,26.76246],[85.37001,26.75455],[85.35197,26.75029],[85.34628,26.74664],[85.34002,26.73757],[85.33496,26.7345],[85.30999,26.73941],[85.29575,26.74554],[85.27413,26.74984],[85.21065,26.76763],[85.19993,26.77384],[85.19333,26.78373],[85.18743,26.79301],[85.18426,26.80351],[85.18745,26.81777],[85.19339,26.83141],[85.19633,26.84951],[85.18849,26.86517],[85.17165,26.87023],[85.14004,26.87222],[85.10156,26.86763],[85.09122,26.86182],[85.07814,26.85049],[85.05991,26.84728],[85.04167,26.84713],[85.03611,26.8499],[85.03432,26.85611],[85.04695,26.87702],[85.04062,26.88639],[85.00858,26.88934],[84.97447,26.90118],[84.96832,26.90878],[84.96628,26.92066],[84.96751,26.93331],[84.96668,26.94596],[84.94833,26.96205],[84.92723,26.96925],[84.89395,26.97326],[84.87928,26.98306],[84.85431,26.99591],[84.84857,27.01091],[84.84351,27.0149],[84.81367,27.01983],[84.80322,27.01581],[84.79971,27.00707],[84.79484,27.00262],[84.78876,27.00382],[84.78061,27.01175],[84.76938,27.01265],[84.75965,27.00698],[84.7506,27.00743],[84.70328,27.02233],[84.68785,27.031],[84.66263,27.03656],[84.64977,27.04212],[84.6451,27.04999],[84.64386,27.05908],[84.65326,27.08254],[84.66335,27.09927],[84.67968,27.13135],[84.68201,27.14296],[84.67816,27.16801],[84.68693,27.19795],[84.68011,27.23433],[84.65816,27.2684],[84.65269,27.29391],[84.63234,27.31573],[84.60925,27.33632],[84.59695,27.34086],[84.58464,27.34356],[84.56346,27.3441],[84.50108,27.35652],[84.46303,27.35969],[84.44282,27.36895],[84.39583,27.36819],[84.33285,27.37726],[84.29871,27.38755],[84.28234,27.40352],[84.27484,27.42796],[84.26148,27.44505],[84.2548,27.44994],[84.24262,27.45483],[84.23505,27.45247],[84.22268,27.44218],[84.2182,27.44042],[84.21166,27.4411],[84.2061,27.44625],[84.20632,27.45781],[84.20106,27.4712],[84.1897,27.47836],[84.17628,27.48125],[84.15445,27.48962],[84.14635,27.49738],[84.14512,27.50355],[84.14732,27.51215],[84.14417,27.52387],[84.1268,27.518],[84.106,27.51761],[84.09927,27.51616],[84.09598,27.51288],[84.09437,27.50234],[84.08829,27.49455],[84.06242,27.47895],[84.06063,27.46537],[84.05542,27.45422],[84.04018,27.44412],[84.00778,27.44345],[83.983,27.4483],[83.96714,27.45254],[83.95868,27.45153],[83.95273,27.44797],[83.93923,27.44686],[83.93329,27.44788],[83.92347,27.45114],[83.89285,27.44182],[83.86738,27.4386],[83.84709,27.44094],[83.83866,27.43937],[83.83436,27.43476],[83.83439,27.42833],[83.83786,27.41947],[83.85853,27.39382],[83.86989,27.38328],[83.87851,27.36847],[83.87721,27.36203],[83.87264,27.35657],[83.86602,27.35294],[83.8538,27.35331],[83.8358,27.36534],[83.81169,27.37806],[83.78759,27.38835],[83.74916,27.408],[83.69769,27.42704],[83.65037,27.45232],[83.60785,27.46846],[83.52444,27.47346],[83.44207,27.47023],[83.4208,27.47309],[83.39473,27.47839],[83.38659,27.47286],[83.38325,27.45818],[83.37692,27.44345],[83.37848,27.43573],[83.38211,27.42801],[83.39097,27.42402],[83.3964,27.41698],[83.3973,27.41296],[83.38721,27.39218],[83.3737,27.372],[83.34734,27.34537],[83.33745,27.33874],[83.32069,27.33578],[83.29198,27.33687],[83.27095,27.34576],[83.25636,27.38606],[83.23786,27.40124],[83.21181,27.4146],[83.20086,27.42643],[83.18443,27.44679],[83.16247,27.44951],[83.11649,27.44856],[83.03963,27.4479],[82.96899,27.4612],[82.9474,27.46861],[82.93455,27.48572],[82.92513,27.49429],[82.91368,27.49683],[82.89388,27.4911],[82.87408,27.49084],[82.82813,27.49658],[82.78217,27.49927],[82.76522,27.50211],[82.75011,27.54056],[82.74187,27.55604],[82.7453,27.57138],[82.74736,27.58429],[82.73637,27.60342],[82.73156,27.61646],[82.73448,27.63162],[82.73121,27.64253],[82.72126,27.65462],[82.72246,27.68164],[82.71061,27.70502],[82.69996,27.71103],[82.6916,27.70664],[82.68118,27.70347],[82.66515,27.70685],[82.65163,27.70692],[82.59279,27.68905],[82.55719,27.68346],[82.53258,27.68517],[82.4897,27.6743],[82.47135,27.6719],[82.45026,27.67194],[82.43111,27.67634],[82.40046,27.69483],[82.38595,27.71454],[82.35555,27.74363],[82.34077,27.74749],[82.32154,27.74922],[82.30222,27.76142],[82.27741,27.77909],[82.22986,27.81897],[82.19879,27.83759],[82.17046,27.85743],[82.14917,27.86462],[82.12238,27.86365],[82.11277,27.86755],[82.10469,27.87732],[82.09799,27.89315],[82.08184,27.90722],[82.06998,27.91302],[82.04439,27.91882],[82.00144,27.92252],[81.97859,27.91832],[81.95677,27.90563],[81.93441,27.8851],[81.91138,27.85543],[81.89796,27.85246],[81.88214,27.85557],[81.86111,27.86835],[81.82188,27.89326],[81.78188,27.90911],[81.71442,27.96712],[81.69789,27.97624],[81.68034,27.98081],[81.66862,27.98114],[81.64457,27.98525],[81.63356,27.98814],[81.62187,27.99624],[81.61567,28.00859],[81.60466,28.02117],[81.55553,28.04314],[81.50503,28.06814],[81.47801,28.08117],[81.47228,28.08875],[81.47036,28.09792],[81.47325,28.11193],[81.47078,28.12421],[81.45049,28.13391],[81.43913,28.15602],[81.42246,28.16632],[81.40442,28.17117],[81.38413,28.17421],[81.37387,28.16683],[81.3739,28.1595],[81.37048,28.14613],[81.36439,28.13863],[81.34104,28.13195],[81.31975,28.13012],[81.31643,28.13437],[81.31724,28.13863],[81.3213,28.14273],[81.32331,28.14804],[81.31771,28.15019],[81.31211,28.1493],[81.30433,28.1528],[81.2993,28.1569],[81.29816,28.16207],[81.30138,28.16758],[81.31605,28.17042],[81.32092,28.17219],[81.31477,28.18185],[81.31069,28.18848],[81.31219,28.19505],[81.2788,28.22655],[81.24953,28.25443],[81.23631,28.2754],[81.22703,28.31171],[81.21227,28.34802],[81.20093,28.36015],[81.1896,28.36927],[81.13097,28.38457],[81.07304,28.39686],[81.05639,28.40166],[81.04662,28.40646],[81.03806,28.4064],[81.03224,28.40211],[81.02368,28.40265],[81.01346,28.40723],[81.01475,28.42176],[81.01466,28.43507],[81.00803,28.44244],[80.99728,28.44135],[80.98258,28.43544],[80.97681,28.43676],[80.97169,28.43867],[80.96932,28.443],[80.96389,28.44501],[80.95331,28.44037],[80.94205,28.43936],[80.90084,28.46274],[80.89887,28.46896],[80.902,28.48565],[80.89861,28.49842],[80.89329,28.50633],[80.87423,28.50791],[80.85655,28.50044],[80.84432,28.50062],[80.83277,28.50443],[80.77878,28.53617],[80.75663,28.56949],[80.74659,28.57349],[80.71663,28.57447],[80.70204,28.57944],[80.69361,28.58602],[80.68998,28.59259],[80.68959,28.60635],[80.68538,28.60914],[80.67504,28.61461],[80.66676,28.62128],[80.66603,28.62825],[80.66255,28.63282],[80.64486,28.63565],[80.62305,28.63668],[80.60757,28.64175],[80.58075,28.6567],[80.57884,28.66471],[80.58304,28.67654],[80.58242,28.68235],[80.57654,28.68571],[80.56566,28.68261],[80.55753,28.68101],[80.54882,28.68505],[80.53963,28.68529],[80.50768,28.66376],[80.50437,28.65232],[80.52166,28.57941],[80.51573,28.5668],[80.50799,28.56691],[80.47207,28.58945],[80.46343,28.61158],[80.45514,28.62046],[80.43586,28.63189],[80.41795,28.63369],[80.40102,28.62733],[80.37791,28.62338],[80.36224,28.62693],[80.35278,28.63352],[80.34444,28.64601],[80.33473,28.66513],[80.31237,28.69821],[80.29819,28.70496],[80.27508,28.70991],[80.26216,28.71859],[80.25408,28.74519],[80.24391,28.75162],[80.20352,28.75263],[80.18696,28.75855],[80.17528,28.76464],[80.16155,28.77855],[80.15468,28.78952],[80.13064,28.81568],[80.09819,28.82372],[80.06814,28.82484],[80.06007,28.82897],[80.05543,28.83671],[80.0592,28.86206],[80.05491,28.87425],[80.05336,28.88644],[80.05182,28.90133],[80.05439,28.91563],[80.0616,28.93339],[80.06881,28.94875],[80.08837,28.96258],[80.11893,28.97671],[80.12217,28.97959],[80.12815,28.99027],[80.13292,29.00292],[80.12946,29.01383],[80.12188,29.02233],[80.12047,29.03154],[80.13107,29.05305],[80.13911,29.0638],[80.1451,29.07876],[80.14866,29.10042],[80.14673,29.10828],[80.15819,29.11867],[80.17239,29.12607],[80.18398,29.12977],[80.19775,29.12877],[80.20773,29.12467],[80.22045,29.12297],[80.23165,29.12751],[80.2408,29.1357],[80.25682,29.14388],[80.26002,29.14886],[80.25581,29.15703],[80.24959,29.16292],[80.2468,29.1688],[80.24457,29.18875],[80.23718,29.2036],[80.23667,29.21125],[80.2449,29.21911],[80.26782,29.20935],[80.2818,29.20319],[80.28815,29.20555],[80.29046,29.23161],[80.2969,29.25766],[80.3077,29.31096],[80.2998,29.31965],[80.27954,29.31936],[80.2761,29.3228],[80.26443,29.36275],[80.2658,29.37233],[80.26236,29.39089],[80.24587,29.40638],[80.23694,29.4126],[80.23625,29.42495],[80.2414,29.43999],[80.25599,29.44988],[80.28062,29.45422],[80.2874,29.46095],[80.28739,29.47922],[80.29048,29.48343],[80.29648,29.48374],[80.30155,29.4833],[80.30661,29.48525],[80.30781,29.49179],[80.31382,29.49893],[80.34145,29.51683],[80.35055,29.52576],[80.35132,29.53529],[80.3466,29.54124],[80.34574,29.54805],[80.35518,29.55779],[80.36968,29.5643],[80.38831,29.57738],[80.40443,29.59268],[80.4089,29.59899],[80.41061,29.62082],[80.41884,29.63548],[80.41541,29.64717],[80.40578,29.65524],[80.39066,29.66332],[80.38396,29.68168],[80.38,29.70122],[80.37141,29.73675],[80.37537,29.7463],[80.38139,29.75346],[80.39893,29.7672],[80.41959,29.7899],[80.44385,29.79652],[80.48493,29.79688],[80.51366,29.82496],[80.54101,29.84679],[80.55263,29.87103],[80.5663,29.89705],[80.58067,29.92084],[80.58748,29.93868],[80.59338,29.95041],[80.6041,29.95917],[80.6269,29.96359],[80.65946,29.96292],[80.67932,29.97087],[80.69574,29.98596],[80.705,29.99942],[80.71426,30.00872],[80.72181,30.011],[80.73005,30.01327],[80.74172,30.01703],[80.74721,30.02197],[80.74719,30.02511],[80.75405,30.03479],[80.75882,30.05563],[80.76911,30.06219],[80.78043,30.06517],[80.78626,30.07053],[80.80177,30.09472],[80.81453,30.10345],[80.83284,30.10874],[80.8412,30.11126],[80.84475,30.11913],[80.87521,30.14081],[80.87668,30.14893],[80.87541,30.15825],[80.87012,30.16411],[80.86346,30.1676],[80.86161,30.1705],[80.88339,30.1846],[80.88423,30.19514],[80.89297,30.20658],[80.8967,30.21122],[80.90111,30.21348],[80.90994,30.22276],[80.91987,30.22764],[80.92808,30.21383],[80.92321,30.20311],[80.92309,30.19474],[80.92628,30.18691],[80.93951,30.17944],[80.95969,30.18535],[80.96806,30.18534],[80.97369,30.18948],[80.98472,30.18606],[80.99987,30.18501],[81.0137,30.19418],[81.03449,30.1971],[81.03453,30.20087],[81.0435,30.20464],[81.04462,30.21069],[81.04137,30.21449],[81.03005,30.2203],[81.02938,30.22552],[81.02596,30.22778],[81.03044,30.23596],[81.02805,30.23881],[81.03151,30.24629],[81.02037,30.25114],[81.01128,30.25421],[81.0041,30.2645],[80.98149,30.26967],[80.95276,30.26992],[80.9365,30.2639],[80.92665,30.26622],[80.92435,30.27211],[80.93144,30.27617],[80.9275,30.28292],[80.91454,30.28733],[80.90776,30.29708],[80.90991,30.3012],[80.90725,30.30413],[80.89261,30.3013],[80.87384,30.30085],[80.87338,30.30467],[80.86079,30.31351],[80.84248,30.31755],[80.83332,30.31377],[80.82461,30.31511],[80.81886,30.32312],[80.80051,30.32314],[80.80127,30.33413],[80.78796,30.34008],[80.78563,30.34841],[80.78536,30.35317],[80.7783,30.35471],[80.77431,30.3622],[80.76413,30.37266],[80.76094,30.37224],[80.75919,30.3762],[80.75125,30.38016],[80.75029,30.38737],[80.74384,30.38925],[80.7337,30.40012],[80.72919,30.40112],[80.71675,30.4132],[80.70474,30.41855],[80.70045,30.41384],[80.69418,30.41362],[80.6879,30.41517],[80.68634,30.42124],[80.67771,30.42332],[80.67832,30.42866],[80.67025,30.43248],[80.66287,30.43985],[80.64056,30.45104],[80.63764,30.44997],[80.63172,30.45624],[80.62855,30.4566],[80.62409,30.46216],[80.61388,30.45848],[80.6074,30.46492],[80.60641,30.47136],[80.59835,30.4711],[80.59647,30.4683],[80.58291,30.46847],[80.57725,30.46478],[80.56541,30.46346],[80.5661,30.45935],[80.54997,30.4499],[80.54276,30.44873],[80.52719,30.45828],[80.52534,30.46665],[80.51891,30.47214],[80.50733,30.47615],[80.49849,30.48844],[80.48943,30.48453],[80.48244,30.49068],[80.46995,30.48972],[80.4458,30.49764],[80.44121,30.50407],[80.43182,30.50695],[80.42814,30.51329],[80.41519,30.51608],[80.41528,30.52006],[80.41773,30.52354],[80.41096,30.5246],[80.39898,30.5175],[80.38014,30.51869],[80.3768,30.52343],[80.36393,30.527],[80.35724,30.52317],[80.34574,30.51993],[80.3363,30.52833],[80.3351,30.53496],[80.32034,30.54525],[80.31623,30.56465],[80.28456,30.57053],[80.25358,30.56458],[80.23771,30.57784],[80.22016,30.57916],[80.2088,30.58756],[80.20398,30.58643],[80.19779,30.58825],[80.18953,30.58185],[80.17852,30.5784],[80.16958,30.57435],[80.15907,30.5775],[80.14763,30.57051],[80.14191,30.5611],[80.1362,30.5576],[80.12294,30.55934],[80.10899,30.56464],[80.10672,30.56934],[80.10239,30.57227],[80.0856,30.57175],[80.07776,30.59112],[80.07696,30.59344],[80.06449,30.59577],[80.06008,30.59588],[80.0543,30.59481],[80.04824,30.5974],[80.04217,30.59822],[80.03846,30.61004],[80.03269,30.61064],[80.02871,30.61597],[80.03606,30.621],[80.03355,30.62677],[80.03036,30.62899],[80.03152,30.63373],[80.02926,30.63906],[80.02081,30.63996],[80.02129,30.64381],[80.01377,30.64829],[80.01724,30.65632],[80.01256,30.66716],[80.00542,30.66964],[79.99827,30.6786],[79.9925,30.68226],[79.98398,30.69063],[79.98567,30.69715],[79.98255,30.70366],[79.9866,30.71079],[79.98579,30.73094],[79.98292,30.74017],[79.98457,30.74331],[79.98485,30.74822],[79.97954,30.74981],[79.97559,30.75436],[79.97268,30.75537],[79.96703,30.76286],[79.95108,30.76753],[79.95229,30.77219],[79.95853,30.7767],[79.94612,30.78205],[79.93782,30.79153],[79.9305,30.7917],[79.9258,30.79532],[79.92111,30.79482],[79.91139,30.80118],[79.89754,30.80046],[79.88988,30.81319],[79.89218,30.81766],[79.90615,30.81623],[79.90881,30.83766],[79.89255,30.8469],[79.88796,30.85968],[79.88015,30.86284],[79.8741,30.8624],[79.8708,30.85961],[79.86283,30.86052],[79.83768,30.85022],[79.82765,30.85054],[79.80954,30.87364],[79.80467,30.88399],[79.79912,30.89021],[79.79693,30.8997],[79.78751,30.90624],[79.78153,30.91338],[79.77093,30.92707],[79.77009,30.93406],[79.76376,30.93516],[79.75709,30.94363],[79.7511,30.94679],[79.73832,30.94081],[79.7218,30.94872],[79.71077,30.9525],[79.70073,30.96302],[79.70031,30.97059],[79.68847,30.97483],[79.67457,30.98261],[79.66635,30.98316],[79.66292,30.97552],[79.66498,30.96788],[79.66361,30.96497],[79.64971,30.96013],[79.63513,30.95352],[79.61822,30.94948],[79.61436,30.94426],[79.60183,30.93913],[79.58949,30.94561],[79.58265,30.95268],[79.55317,30.95798],[79.54837,30.96758],[79.54152,30.97307],[79.53672,30.9815],[79.52849,30.98462],[79.52696,30.99011],[79.52337,30.99088],[79.51618,30.99773],[79.51976,31.00465],[79.51579,31.01275],[79.50874,31.01555],[79.50727,31.02195],[79.5106,31.02541],[79.50709,31.0322],[79.49095,31.03156],[79.47208,31.03386],[79.46384,31.03089],[79.45354,31.03086],[79.43706,31.0226],[79.42745,31.02257],[79.42202,31.03578],[79.41866,31.04841],[79.42126,31.05597],[79.41906,31.06589],[79.41261,31.07278],[79.4171,31.07953],[79.41748,31.08864],[79.41411,31.10685],[79.40806,31.11446],[79.39208,31.11687],[79.38241,31.11483],[79.37756,31.11279],[79.37393,31.11603],[79.36824,31.11692],[79.36442,31.1234],[79.35347,31.12209],[79.34183,31.12725],[79.33916,31.13228],[79.32833,31.13293],[79.31131,31.14879],[79.30864,31.16215],[79.30456,31.16883],[79.30872,31.17199],[79.30553,31.18726],[79.3044,31.20723],[79.2994,31.21898],[79.29035,31.2269],[79.28335,31.23894],[79.26591,31.23776],[79.25569,31.24275],[79.24337,31.25317],[79.22624,31.26066],[79.23016,31.26829],[79.23831,31.27064],[79.24684,31.27681],[79.24699,31.28018],[79.24844,31.28891],[79.25126,31.29236],[79.24395,31.29794],[79.22978,31.3041],[79.22522,31.31085],[79.22066,31.31643],[79.2251,31.32818],[79.23573,31.33464],[79.22868,31.34014],[79.22507,31.34564],[79.21631,31.34792],[79.21373,31.3543],[79.1981,31.35416],[79.16942,31.36282],[79.16906,31.37383],[79.17643,31.3852],[79.17222,31.39323],[79.17144,31.39833],[79.16505,31.39677],[79.15361,31.41093],[79.15058,31.41857],[79.14343,31.42446],[79.14218,31.43212],[79.12837,31.43898],[79.12089,31.44013],[79.1086,31.44479],[79.1067,31.44943],[79.09807,31.45403],[79.08318,31.45028],[79.07997,31.45708],[79.07491,31.45778],[79.06891,31.45069],[79.06859,31.43926],[79.06209,31.43369],[79.06145,31.42957],[79.05605,31.43072],[79.05091,31.4248],[79.0444,31.43236],[79.03102,31.43112],[79.01764,31.42521],[79.0156,31.40985],[79.017,31.38747],[79.0092,31.38214],[79.01114,31.37097],[79.01857,31.35922],[79.01807,31.34856],[79.00095,31.34101],[78.98688,31.3481],[78.9886,31.35635],[78.98003,31.36319],[78.97077,31.35639],[78.9507,31.36589],[78.94435,31.36601],[78.93955,31.34631],[78.93339,31.34186],[78.92516,31.32846],[78.91692,31.32059],[78.9183,31.31565],[78.9123,31.30866],[78.90561,31.30871],[78.89704,31.30235],[78.90133,31.298],[78.90083,31.29013],[78.88264,31.28612],[78.87635,31.30359],[78.86909,31.30676],[78.86114,31.31462],[78.85405,31.31199],[78.85107,31.30789],[78.85243,31.30342],[78.8562,31.30013],[78.85686,31.29412],[78.84101,31.29632],[78.83787,31.29353],[78.82409,31.29574],[78.81511,31.30087],[78.81601,31.30366],[78.81107,31.30703],[78.79394,31.3044],[78.77921,31.31173],[78.7795,31.32036],[78.77209,31.3232],[78.7688,31.32547],[78.7686,31.33015],[78.77297,31.33102],[78.7739,31.33365],[78.76389,31.34067],[78.77099,31.34912],[78.75428,31.35834],[78.74857,31.36755],[78.75489,31.37058],[78.75772,31.37474],[78.75573,31.37889],[78.75328,31.38496],[78.76253,31.39906],[78.77315,31.4155],[78.78617,31.43165],[78.79508,31.43725],[78.79726,31.44318],[78.77748,31.45262],[78.76675,31.47266],[78.76039,31.48114],[78.74896,31.48433],[78.7396,31.48168],[78.72705,31.48456],[78.72008,31.50707],[78.7217,31.51318],[78.72606,31.51608],[78.73248,31.53361],[78.7444,31.54171],[78.75774,31.54137],[78.76146,31.54805],[78.77544,31.54328],[78.7798,31.55548],[78.80381,31.56599],[78.80654,31.5765],[78.82053,31.57774],[78.82649,31.58859],[78.83382,31.59711],[78.84025,31.59747],[78.84737,31.60836],[78.84084,31.62239],[78.8295,31.62531],[78.81781,31.63759],[78.80954,31.63817],[78.80077,31.64964],[78.79818,31.66929],[78.80039,31.67784],[78.79849,31.68288],[78.7884,31.67832],[78.76663,31.67405],[78.754,31.6772],[78.74933,31.68466],[78.75373,31.68999],[78.75263,31.69591],[78.74597,31.7057],[78.74295,31.71826],[78.73378,31.72403],[78.72754,31.74255],[78.72888,31.74539],[78.72542,31.75115],[78.72461,31.75783],[78.7207,31.76119],[78.71747,31.76719],[78.70601,31.77435],[78.70465,31.78123],[78.70741,31.78403],[78.70261,31.79442],[78.70468,31.8013],[78.70267,31.80782],[78.71731,31.82222],[78.73057,31.83138],[78.74724,31.8744],[78.73938,31.88579],[78.74669,31.89448],[78.74163,31.902],[78.74992,31.90779],[78.74859,31.91301],[78.75462,31.9146],[78.76065,31.92551],[78.76723,31.92752],[78.76905,31.93625],[78.76813,31.94497],[78.76354,31.94844],[78.76467,31.95072],[78.76476,31.95998],[78.7703,31.96345],[78.77719,31.96315],[78.77859,31.96459],[78.77504,31.9731],[78.77631,31.97696],[78.77403,31.98584],[78.77976,31.99485],[78.76921,31.99722],[78.76517,32.00454],[78.75518,32.00172],[78.7493,32.00326],[78.73984,32.00127],[78.73312,32.00568],[78.73411,32.01276],[78.72797,32.01703],[78.72321,32.02711],[78.72055,32.03098],[78.7221,32.03929],[78.71305,32.04705],[78.71154,32.05364],[78.70764,32.05645],[78.70442,32.06624],[78.6894,32.07069],[78.68262,32.08038],[78.69014,32.088],[78.69268,32.09736],[78.68299,32.11354],[78.67471,32.11378],[78.6733,32.11707],[78.65812,32.11552],[78.64847,32.11895],[78.64226,32.12355],[78.63051,32.12636],[78.63031,32.13287],[78.62598,32.13822],[78.60979,32.15184],[78.59633,32.1576],[78.59112,32.16801],[78.59949,32.17431],[78.59928,32.19339],[78.59268,32.20017],[78.57965,32.2034],[78.57142,32.20197],[78.56387,32.20404],[78.56045,32.20261],[78.55423,32.21374],[78.54391,32.2225],[78.54114,32.22835],[78.53214,32.24393],[78.5252,32.24528],[78.51963,32.26289],[78.50894,32.26861],[78.49689,32.27606],[78.49132,32.27386],[78.48773,32.27583],[78.49965,32.29172],[78.49908,32.29443],[78.51019,32.30295],[78.50451,32.30957],[78.49883,32.32373],[78.47889,32.3242],[78.47648,32.33496],[78.48161,32.34629],[78.48057,32.3511],[78.4864,32.35706],[78.48046,32.36592],[78.46942,32.36533],[78.46511,32.37339],[78.45771,32.37972],[78.45237,32.38721],[78.46003,32.39179],[78.47112,32.39521],[78.47019,32.40407],[78.4727,32.41235],[78.46921,32.41927],[78.47189,32.42909],[78.47109,32.44294],[78.46467,32.4463],[78.46201,32.4549],[78.45042,32.4606],[78.45669,32.47021],[78.44716,32.47576],[78.4415,32.47934],[78.43819,32.48806],[78.43077,32.49098],[78.42622,32.50088],[78.42897,32.50457],[78.41318,32.51753],[78.40702,32.5265],[78.39607,32.52939],[78.39271,32.53808],[78.3987,32.54546],[78.40376,32.54409],[78.40538,32.55429],[78.41309,32.55878],[78.4153,32.56675],[78.42191,32.57053],[78.43001,32.56953],[78.43469,32.57258],[78.45022,32.57463],[78.45339,32.58073],[78.46317,32.57931],[78.46676,32.58078],[78.47526,32.57631],[78.48431,32.57783],[78.49268,32.58514],[78.50074,32.58314],[78.50897,32.59238],[78.51239,32.60161],[78.51564,32.60029],[78.51851,32.60676],[78.51451,32.61206],[78.51683,32.61343],[78.5465,32.61353],[78.5463,32.61884],[78.5553,32.6173],[78.5588,32.62328],[78.56368,32.61653],[78.56788,32.61557],[78.57193,32.62413],[78.57942,32.62112],[78.57997,32.6261],[78.57846,32.63252],[78.57901,32.63721],[78.58534,32.64208],[78.59698,32.64045],[78.61344,32.64345],[78.62472,32.63397],[78.63153,32.6346],[78.63393,32.64562],[78.64216,32.64275],[78.65142,32.6516],[78.66446,32.65813],[78.67166,32.65671],[78.70427,32.66801],[78.7101,32.66804],[78.71671,32.67281],[78.724,32.67412],[78.73927,32.69523],[78.75071,32.6886],[78.74648,32.67821],[78.74018,32.66204],[78.74299,32.65533],[78.75128,32.64631],[78.75048,32.64134],[78.76684,32.63348],[78.7705,32.63006],[78.77313,32.61822],[78.78125,32.61621],[78.77982,32.60841],[78.7777,32.60755],[78.77759,32.5931],[78.77017,32.58094],[78.76241,32.57919],[78.75685,32.5673],[78.76085,32.55955],[78.76005,32.55759],[78.76342,32.54851],[78.77023,32.54],[78.76708,32.53613],[78.77011,32.52357],[78.78102,32.51633],[78.77912,32.51047],[78.77927,32.50055],[78.77763,32.49776],[78.78149,32.48571],[78.78027,32.47898],[78.79414,32.47557],[78.80842,32.44111],[78.81694,32.43083],[78.83232,32.42751],[78.83424,32.41565],[78.84303,32.41017],[78.85484,32.41387],[78.86871,32.41293],[78.88014,32.39831],[78.88746,32.39828],[78.89204,32.40115],[78.89593,32.39416],[78.9005,32.39587],[78.90637,32.38939],[78.90149,32.38632],[78.90216,32.38164],[78.90626,32.3787],[78.90622,32.37398],[78.92592,32.36287],[78.93876,32.35699],[78.954,32.34531],[78.96924,32.33536],[78.9738,32.33924],[78.98936,32.37038],[79.01275,32.38116],[79.0231,32.38383],[79.02749,32.3792],[79.03669,32.38327],[79.04451,32.38227],[79.05989,32.38765],[79.07355,32.38353],[79.08175,32.37901],[79.0879,32.37274],[79.09805,32.37001],[79.10462,32.37442],[79.10157,32.38636],[79.10402,32.38989],[79.10078,32.39484],[79.10097,32.3969],[79.10479,32.40101],[79.10518,32.40744],[79.11243,32.41156],[79.11419,32.41857],[79.12553,32.41864],[79.12656,32.42277],[79.12169,32.43523],[79.11785,32.43754],[79.12122,32.4471],[79.11707,32.45449],[79.1191,32.4584],[79.12755,32.4613],[79.12903,32.46652],[79.13181,32.46985],[79.12909,32.47724],[79.1312,32.48158],[79.14923,32.47696],[79.15216,32.48971],[79.1592,32.49667],[79.16436,32.49451],[79.18462,32.49698],[79.18102,32.50346],[79.183,32.50642],[79.18154,32.51169],[79.18877,32.51598],[79.20148,32.51303],[79.20535,32.50983],[79.21265,32.51069],[79.22106,32.51008],[79.22077,32.52464],[79.22328,32.52451],[79.23402,32.51802],[79.24795,32.51603],[79.25242,32.52156],[79.25844,32.53764],[79.26454,32.53584],[79.26795,32.53886],[79.26861,32.54536],[79.27271,32.5478],[79.27612,32.55603],[79.28369,32.55047],[79.28266,32.54654],[79.29399,32.53971],[79.30017,32.54648],[79.30704,32.55152],[79.3079,32.55635],[79.31082,32.55887],[79.32301,32.55878],[79.32636,32.56366],[79.33108,32.56622],[79.33436,32.55908],[79.34038,32.5531],[79.33287,32.54966],[79.33429,32.54042],[79.35567,32.52716],[79.364,32.53358],[79.39357,32.52434],[79.40012,32.52638],[79.40461,32.51916],[79.4134,32.51965],[79.41265,32.52367],[79.41776,32.52567],[79.41876,32.53231],[79.41382,32.53729],[79.41369,32.54054],[79.41596,32.54147],[79.42852,32.54009],[79.43275,32.54345],[79.43629,32.55028],[79.42757,32.55585],[79.42788,32.56157],[79.43568,32.56785],[79.44005,32.58049],[79.44535,32.58379],[79.44585,32.58795],[79.45228,32.5938],[79.45321,32.60253],[79.46382,32.60609],[79.46962,32.6166],[79.47885,32.619],[79.48397,32.62603],[79.49397,32.63177],[79.50189,32.64302],[79.50706,32.64387],[79.525,32.65187],[79.52728,32.65776],[79.53574,32.66364],[79.53973,32.67183],[79.54922,32.67656],[79.54416,32.68096],[79.53911,32.68246],[79.54023,32.69957],[79.54204,32.70454],[79.54624,32.70687],[79.55044,32.70515],[79.55361,32.70805],[79.55747,32.70922],[79.56107,32.71372],[79.55986,32.71822],[79.55469,32.72087],[79.54884,32.72121],[79.5426,32.73008],[79.54631,32.73923],[79.54728,32.74839],[79.55374,32.75134],[79.55745,32.75775],[79.55114,32.76422],[79.54171,32.76413],[79.54481,32.77378],[79.52147,32.77911],[79.50499,32.78445],[79.48886,32.79498],[79.48097,32.80147],[79.48097,32.81114],[79.4693,32.8208],[79.46759,32.82989],[79.46107,32.83263],[79.46296,32.83852],[79.47077,32.84233],[79.47261,32.84972],[79.47103,32.8548],[79.47275,32.86572],[79.46932,32.86796],[79.47276,32.87877],[79.46145,32.88122],[79.45837,32.87906],[79.45385,32.8825],[79.45138,32.8894],[79.43209,32.8914],[79.42104,32.89629],[79.40821,32.90663],[79.39058,32.91698],[79.40097,32.94141],[79.37904,32.94498],[79.36604,32.9376],[79.35249,32.95174],[79.35362,32.95564],[79.36104,32.95932],[79.36298,32.963],[79.35865,32.96651],[79.35614,32.97317],[79.35225,32.97925],[79.34427,32.97936],[79.34247,32.98509],[79.33862,32.98737],[79.33708,32.99423],[79.33073,33.00108],[79.3383,33.00098],[79.34174,33.01866],[79.33831,33.0277],[79.32801,33.0337],[79.33519,33.04691],[79.33843,33.05582],[79.3488,33.06128],[79.35884,33.06185],[79.35788,33.07055],[79.36128,33.07228],[79.36262,33.07689],[79.36668,33.07979],[79.36809,33.08672],[79.3649,33.09276],[79.36702,33.10105],[79.36426,33.1059],[79.3684,33.10762],[79.37066,33.1112],[79.37345,33.11903],[79.38149,33.12577],[79.39158,33.13941],[79.39853,33.13822],[79.4,33.15025],[79.39494,33.1528],[79.39193,33.15649],[79.3971,33.17013],[79.40998,33.16847],[79.41256,33.17715],[79.40948,33.18819],[79.40009,33.19545],[79.38521,33.20271],[79.38007,33.19824],[79.36188,33.19722],[79.35021,33.20223],[79.33511,33.20322],[79.3237,33.19472],[79.32294,33.19054],[79.30286,33.19108],[79.29568,33.20281],[79.28918,33.20276],[79.28062,33.20731],[79.27274,33.21358],[79.27284,33.22085],[79.26602,33.21859],[79.26019,33.21502],[79.25368,33.21603],[79.25027,33.22094],[79.238,33.23367],[79.22995,33.23299],[79.21709,33.23805],[79.21241,33.23214],[79.21391,33.22394],[79.21005,33.22045],[79.2092,33.21289],[79.20132,33.20869],[79.19755,33.21478],[79.19103,33.22087],[79.1828,33.2204],[79.18196,33.21218],[79.17493,33.20913],[79.17546,33.20436],[79.16844,33.19959],[79.16412,33.19437],[79.16391,33.19146],[79.1539,33.18562],[79.15241,33.18086],[79.14495,33.1864],[79.14367,33.19022],[79.13462,33.19436],[79.13106,33.19965],[79.12647,33.2012],[79.12531,33.20332],[79.12163,33.20097],[79.11451,33.20263],[79.10783,33.19907],[79.10287,33.20628],[79.09386,33.21132],[79.08486,33.21981],[79.07234,33.22329],[79.06539,33.23422],[79.06806,33.23653],[79.07555,33.24064],[79.08029,33.24533],[79.06884,33.25298],[79.06071,33.25537],[79.05258,33.26178],[79.04482,33.26114],[79.03293,33.27772],[79.03938,33.28505],[79.03855,33.28996],[79.03153,33.29314],[79.03894,33.30809],[79.02883,33.30761],[79.02491,33.31402],[79.02736,33.31996],[79.01985,33.32468],[79.01129,33.32274],[79.0041,33.32768],[78.99537,33.32516],[78.97977,33.32724],[78.97673,33.33425],[78.96212,33.3398],[78.95919,33.34706],[78.95419,33.35519],[78.95675,33.35873],[78.94917,33.36523],[78.95463,33.37116],[78.94701,33.37901],[78.94115,33.38092],[78.93665,33.38685],[78.92804,33.38916],[78.92286,33.39319],[78.91047,33.4008],[78.90425,33.40956],[78.89561,33.4116],[78.89108,33.41537],[78.86967,33.41436],[78.8668,33.41852],[78.85712,33.4158],[78.8447,33.41938],[78.84252,33.42483],[78.83563,33.42515],[78.83492,33.43178],[78.83319,33.43583],[78.83694,33.43816],[78.82852,33.44484],[78.82834,33.44866],[78.82317,33.45514],[78.81647,33.45834],[78.81664,33.46383],[78.80942,33.4748],[78.8142,33.48301],[78.80327,33.48979],[78.79402,33.49976],[78.78478,33.50573],[78.77252,33.51815],[78.77022,33.52513],[78.7329,33.56931],[78.7423,33.57709],[78.74072,33.5906],[78.74134,33.60073],[78.75316,33.60995],[78.754,33.61916],[78.75843,33.62359],[78.75149,33.62729],[78.72476,33.62267],[78.71725,33.62262],[78.72033,33.63381],[78.72547,33.64442],[78.72958,33.64818],[78.73027,33.65177],[78.73507,33.66051],[78.76387,33.72011],[78.76513,33.72627],[78.77195,33.73106],[78.77533,33.73871],[78.77718,33.74647],[78.77032,33.74946],[78.76415,33.7593],[78.7627,33.76629],[78.76399,33.77727],[78.75422,33.78326],[78.76079,33.80751],[78.76168,33.82334],[78.7653,33.83346],[78.76403,33.84259],[78.76013,33.84558],[78.75898,33.85314],[78.76148,33.85514],[78.75672,33.86755],[78.75127,33.88509],[78.76303,33.891],[78.76107,33.90318],[78.76476,33.90639],[78.76228,33.91473],[78.74958,33.91473],[78.74375,33.92043],[78.73174,33.92043],[78.72797,33.92271],[78.73511,33.93967],[78.73469,33.95548],[78.74114,33.97614],[78.74241,33.98401],[78.74024,33.99302],[78.74278,33.99908],[78.73558,34.0065],[78.72718,34.00851],[78.72701,34.01564],[78.72169,34.01416],[78.70539,34.01837],[78.70179,34.02401],[78.70163,34.02793],[78.68962,34.02284],[78.67419,34.02515],[78.66803,34.03203],[78.66362,34.03073],[78.65508,34.03227],[78.65528,34.03842],[78.65632,34.04115],[78.65461,34.05354],[78.65882,34.05768],[78.66647,34.07091],[78.65704,34.0752],[78.66025,34.08045],[78.66141,34.0857],[78.66921,34.09222],[78.67519,34.08934],[78.68168,34.07959],[78.69502,34.08377],[78.69277,34.08899],[78.69804,34.09299],[78.70744,34.09473],[78.71511,34.0902],[78.72098,34.09205],[78.72822,34.08993],[78.74061,34.09235],[78.74545,34.09023],[78.75118,34.09914],[78.75988,34.09876],[78.76034,34.10578],[78.76985,34.10872],[78.77583,34.11699],[78.78524,34.12014],[78.78608,34.1287],[78.79446,34.13725],[78.81433,34.1312],[78.82596,34.12459],[78.83478,34.12803],[78.83467,34.13317],[78.84133,34.14176],[78.85673,34.14211],[78.86032,34.16217],[78.86322,34.16575],[78.87375,34.16454],[78.88176,34.15542],[78.88153,34.15368],[78.8916,34.14728],[78.89825,34.14856],[78.90489,34.14074],[78.90947,34.14273],[78.90787,34.1487],[78.9136,34.1521],[78.92553,34.15322],[78.92588,34.16204],[78.92759,34.16745],[78.92382,34.17145],[78.93309,34.19107],[78.94476,34.22518],[78.95214,34.22777],[78.9609,34.23604],[78.95922,34.24357],[78.96442,34.24769],[78.96313,34.25934],[78.97017,34.27925],[78.98515,34.30059],[78.97953,34.30662],[78.9803,34.315],[79.01174,34.30291],[79.01571,34.30671],[79.02777,34.30579],[79.03845,34.29608],[79.05463,34.29658],[79.0586,34.30139],[79.05719,34.30784],[79.05303,34.31372],[79.05364,34.32151],[79.04596,34.32456],[79.04034,34.33158],[79.03117,34.33313],[79.0316,34.34574],[79.03869,34.3563],[79.03753,34.35836],[79.03223,34.36232],[79.02898,34.36969],[79.02334,34.37393],[79.02524,34.37818],[79.02127,34.38331],[79.02141,34.38845],[79.01744,34.39046],[79.0169,34.39474],[79.00964,34.40076],[79.00718,34.40677],[78.98665,34.4018],[78.97436,34.39852],[78.96426,34.38768],[78.94593,34.38874],[78.94133,34.38441],[78.93261,34.38121],[78.92778,34.37992],[78.91609,34.38883],[78.91262,34.38909],[78.90499,34.3998],[78.88931,34.39826],[78.87843,34.39503],[78.86962,34.402],[78.86217,34.40443],[78.85415,34.41354],[78.84682,34.41756],[78.83186,34.41728],[78.8162,34.42098],[78.81305,34.42893],[78.80784,34.42924],[78.80538,34.43635],[78.79726,34.43699],[78.78982,34.44046],[78.7832,34.44287],[78.77657,34.4388],[78.76375,34.43927],[78.75735,34.44699],[78.74711,34.45056],[78.73893,34.45584],[78.73831,34.45913],[78.75035,34.46134],[78.75691,34.46638],[78.75372,34.47135],[78.75739,34.47857],[78.76268,34.48057],[78.74774,34.4885],[78.73554,34.49359],[78.71459,34.50209],[78.71318,34.51513],[78.70831,34.52705],[78.68625,34.52749],[78.68272,34.53019],[78.66742,34.53277],[78.64972,34.53987],[78.64438,34.54414],[78.64705,34.54992],[78.6238,34.53649],[78.61291,34.53947],[78.60279,34.53412],[78.60316,34.53191],[78.59222,34.52747],[78.5937,34.51747],[78.58831,34.51228],[78.58841,34.50709],[78.5799,34.50387],[78.57241,34.50885],[78.56012,34.51044],[78.56035,34.5161],[78.55634,34.52006],[78.56127,34.52629],[78.55669,34.53337],[78.56036,34.53988],[78.5606,34.55631],[78.55625,34.55647],[78.5526,34.56285],[78.55146,34.57165],[78.54144,34.57274],[78.5328,34.57722],[78.51595,34.57268],[78.50458,34.57718],[78.49834,34.58393],[78.49246,34.57894],[78.48383,34.58018],[78.47824,34.57587],[78.47849,34.57014],[78.47244,34.56756],[78.46014,34.56938],[78.45746,34.56781],[78.45565,34.56279],[78.45041,34.55833],[78.45159,34.55225],[78.44535,34.54263],[78.43631,34.54204],[78.42899,34.55616],[78.42578,34.55897],[78.43104,34.57052],[78.43012,34.59055],[78.42439,34.59256],[78.42141,34.59514],[78.41672,34.59348],[78.41202,34.5969],[78.40784,34.5958],[78.3913,34.60487],[78.38699,34.60446],[78.38474,34.60687],[78.37185,34.60589],[78.36514,34.60886],[78.36376,34.60534],[78.35619,34.60238],[78.35135,34.60494],[78.34787,34.60281],[78.33753,34.60294],[78.33126,34.60716],[78.32902,34.6122],[78.32163,34.61217],[78.31699,34.61439],[78.31149,34.6135],[78.30256,34.61487],[78.29362,34.61762],[78.29014,34.61505],[78.28322,34.62236],[78.27289,34.62913],[78.26875,34.63646],[78.26933,34.6494],[78.26649,34.6516],[78.26628,34.65742],[78.26127,34.66098],[78.26433,34.66581],[78.2722,34.66782],[78.27491,34.67321],[78.279,34.67635],[78.27463,34.6862],[78.27618,34.68896],[78.27517,34.69561],[78.27177,34.70157],[78.26425,34.70189],[78.25947,34.70899],[78.25607,34.70759],[78.24718,34.709],[78.239,34.71495],[78.23186,34.71383],[78.22265,34.7178],[78.21695,34.71613],[78.2078,34.72068],[78.20395,34.73118],[78.20146,34.73604],[78.20456,34.74023],[78.20389,34.74184],[78.20461,34.75128],[78.18816,34.79061],[78.18545,34.79385],[78.18567,34.79838],[78.1907,34.80009],[78.19582,34.8044],[78.19939,34.80717],[78.20295,34.80705],[78.20479,34.80862],[78.20949,34.80641],[78.21622,34.80834],[78.21849,34.81111],[78.2225,34.81228],[78.22568,34.81173],[78.22955,34.81935],[78.2286,34.82218],[78.22835,34.82586],[78.23076,34.82816],[78.23342,34.83347],[78.23265,34.83709],[78.2342,34.83954],[78.23354,34.84537],[78.23134,34.8467],[78.23085,34.84972],[78.22815,34.85182],[78.2282,34.85504],[78.23184,34.85667],[78.23705,34.87006],[78.23436,34.875],[78.23648,34.88107],[78.22699,34.88616],[78.22573,34.88901],[78.21499,34.8885],[78.20424,34.89137],[78.20343,34.89723],[78.20811,34.90366],[78.19802,34.90896],[78.19687,34.91371],[78.18805,34.91917],[78.18747,34.92239],[78.17693,34.92898],[78.17407,34.93903],[78.17744,34.94209],[78.18356,34.94064],[78.19374,34.95003],[78.20253,34.95435],[78.20309,34.96599],[78.20228,34.97256],[78.19619,34.97388],[78.18421,34.98271],[78.17823,34.98487],[78.17636,34.98759],[78.1713,34.98557],[78.15662,34.98861],[78.15169,34.99231],[78.14881,34.99938],[78.14375,35.00228],[78.14135,35.03272],[78.13912,35.03787],[78.13414,35.04048],[78.1283,35.04628],[78.12899,35.04888],[78.13788,35.05061],[78.13408,35.05654],[78.13303,35.06077],[78.13814,35.06475],[78.13981,35.0676],[78.14454,35.06909],[78.14651,35.07171],[78.14,35.07654],[78.13709,35.08233],[78.13074,35.09149],[78.13522,35.09521],[78.13215,35.09982],[78.12771,35.10051],[78.11269,35.10719],[78.11239,35.11713],[78.10248,35.12034],[78.10183,35.12831],[78.09927,35.13143],[78.09945,35.13623],[78.10119,35.1419],[78.08506,35.16585],[78.07116,35.17165],[78.0552,35.17914],[78.05086,35.1853],[78.0431,35.19201],[78.0391,35.20012],[78.03374,35.20319],[78.02777,35.20459],[78.02592,35.2116],[78.02153,35.21608],[78.0155,35.21551],[78.011,35.22896],[78.00583,35.22769],[78.00478,35.23034],[78.00817,35.23846],[78.00328,35.23978],[78.00319,35.24335],[78.01092,35.27376],[78.01136,35.3052],[78.02277,35.35795],[78.0276,35.36469],[78.03518,35.37032],[78.04415,35.381],[78.04675,35.38859],[78.05285,35.39882],[78.06483,35.40841],[78.072,35.41129],[78.07428,35.41549],[78.08343,35.42081],[78.08936,35.42195],[78.09564,35.42588],[78.10123,35.43093],[78.10282,35.43397],[78.10784,35.4398],[78.10428,35.44423],[78.10415,35.44699],[78.10991,35.46159],[78.10901,35.46833],[78.11429,35.47395],[78.10462,35.48366],[78.1003,35.48209],[78.08499,35.4861],[78.08185,35.49106],[78.07596,35.49546],[78.07482,35.49335],[78.07025,35.49348],[78.06569,35.48728],[78.05311,35.49159],[78.04053,35.48919],[78.03556,35.48312],[78.03608,35.47928],[78.0342,35.476],[78.03532,35.47324],[78.03369,35.47049],[78.02753,35.47036],[78.02548,35.46856],[78.00838,35.4826],[78.00707,35.48992],[78.00095,35.49389],[77.99639,35.48937],[77.96986,35.49492],[77.96794,35.49323],[77.96741,35.48148],[77.95348,35.48398],[77.94779,35.4781],[77.93918,35.48382],[77.93538,35.49121],[77.92435,35.4965],[77.91712,35.48934],[77.92158,35.48385],[77.91813,35.47892],[77.91812,35.47288],[77.91398,35.4689],[77.9119,35.46156],[77.90465,35.46533],[77.90083,35.4652],[77.89765,35.47331],[77.8931,35.47416],[77.88915,35.47948],[77.88314,35.47922],[77.87627,35.48595],[77.87696,35.49044],[77.86734,35.49804],[77.86047,35.50004],[77.85427,35.49072],[77.84419,35.49671],[77.8403,35.50269],[77.82702,35.50628],[77.82313,35.51402],[77.81328,35.52223],[77.80858,35.51981],[77.80388,35.51964],[77.79881,35.51054],[77.7934,35.50843],[77.79143,35.50633],[77.78404,35.50491],[77.78009,35.49845],[77.76995,35.49969],[77.76463,35.50204],[77.75724,35.50327],[77.75466,35.4978],[77.74288,35.49561],[77.71879,35.46264],[77.70869,35.46215],[77.70682,35.46334],[77.69965,35.46404],[77.69522,35.46195],[77.69301,35.4567],[77.68668,35.45426],[77.67791,35.46489],[77.6712,35.46713],[77.65282,35.48727],[77.63888,35.48345],[77.63738,35.47629],[77.64206,35.46802],[77.63082,35.4621],[77.61581,35.47016],[77.60423,35.47263],[77.60158,35.46951],[77.59549,35.46974],[77.59156,35.46574],[77.5782,35.47002],[77.5827,35.47934],[77.57293,35.484],[77.56042,35.48643],[77.5509,35.48288],[77.54275,35.48438],[77.54019,35.48848],[77.53574,35.48894],[77.52512,35.48437],[77.52041,35.48674],[77.51639,35.48407],[77.50903,35.48712],[77.50118,35.48931],[77.49028,35.48475],[77.4835,35.48354],[77.48016,35.48065],[77.4642,35.47263],[77.46035,35.46862],[77.45305,35.46685],[77.44294,35.4612],[77.4342,35.46506],[77.43046,35.46495],[77.42434,35.47143],[77.4188,35.47033],[77.40844,35.47371],[77.40035,35.47331],[77.39363,35.4701],[77.3898,35.47208],[77.38145,35.47325],[77.37654,35.48337],[77.37059,35.49041],[77.3722,35.49745],[77.36306,35.49978],[77.35529,35.49429],[77.33963,35.50362],[77.33976,35.50959],[77.33615,35.51392],[77.3394,35.51826],[77.33766,35.52442],[77.32869,35.5317],[77.32762,35.53395],[77.31899,35.539],[77.31376,35.53625],[77.31059,35.54243],[77.30347,35.54498],[77.30047,35.54139],[77.29609,35.54087],[77.29378,35.5437],[77.28277,35.53849],[77.27314,35.53606],[77.26451,35.53959],[77.24956,35.53074],[77.22705,35.52972],[77.21141,35.52282],[77.19371,35.52151],[77.17997,35.52816],[77.17584,35.53201],[77.16414,35.53804],[77.15251,35.53788],[77.14637,35.54052],[77.13684,35.55138],[77.1267,35.55691],[77.12084,35.55679],[77.11102,35.56354],[77.10032,35.56355],[77.09169,35.5658],[77.06279,35.59903],[77.05656,35.60212],[77.04541,35.59899],[77.02747,35.60049],[77.01022,35.61093],[77.00095,35.60853],[76.99443,35.61003],[76.98379,35.5987],[76.97297,35.6014],[76.96697,35.59546],[76.95805,35.59549],[76.94814,35.60335],[76.93803,35.60589],[76.93136,35.61065],[76.91767,35.61126],[76.89984,35.61909],[76.89987,35.62358],[76.87923,35.64086],[76.85996,35.65199],[76.85233,35.66869],[76.84414,35.67467],[76.83871,35.66837],[76.83292,35.66905],[76.82302,35.66583],[76.81455,35.66997],[76.80539,35.66463],[76.79394,35.66428],[76.78866,35.66169],[76.78292,35.66126],[76.77718,35.65804],[76.77327,35.66076],[76.76662,35.65958],[76.75642,35.66596],[76.75378,35.67401],[76.75674,35.6812],[76.75115,35.68566],[76.74763,35.68567],[76.74382,35.68904],[76.7431,35.69491],[76.73794,35.70008],[76.73209,35.69968],[76.72845,35.7043],[76.72687,35.70948],[76.7151,35.71486],[76.70264,35.7247],[76.69626,35.72486],[76.69568,35.72923],[76.69373,35.7336],[76.69773,35.74052],[76.69343,35.74731],[76.685,35.75298],[76.67158,35.75597],[76.66263,35.75449],[76.653,35.75682],[76.64749,35.76138],[76.64851,35.76496],[76.64197,35.77021],[76.63439,35.77125],[76.6254,35.7683],[76.61567,35.76185],[76.60302,35.77101],[76.58664,35.77497],[76.58467,35.77894],[76.59105,35.78296],[76.57771,35.79853],[76.57879,35.80407],[76.57096,35.80712],[76.56588,35.8124],[76.56509,35.82018],[76.56087,35.8224],[76.5709,35.83157],[76.58779,35.84353],[76.5858,35.84825],[76.58313,35.863],[76.57345,35.86825],[76.57271,35.87127],[76.58246,35.87928],[76.58809,35.88728],[76.59201,35.88889],[76.59112,35.89161],[76.59923,35.90082],[76.58456,35.91089],[76.5862,35.91554],[76.58372,35.9202],[76.56692,35.92546],[76.56216,35.92208],[76.5562,35.9278],[76.5475,35.92741],[76.54394,35.92493],[76.54319,35.90729],[76.54588,35.90299],[76.53408,35.89926],[76.51954,35.88775],[76.51243,35.8814],[76.50892,35.88716],[76.49443,35.89013],[76.48124,35.88774],[76.47593,35.89133],[76.46651,35.89046],[76.45658,35.88317],[76.44772,35.87416],[76.44442,35.86559],[76.43184,35.8591],[76.42751,35.85262],[76.41678,35.85439],[76.40249,35.85306],[76.3882,35.86062],[76.37842,35.85833],[76.36975,35.86359],[76.36521,35.86328],[76.35149,35.85467],[76.35596,35.84439],[76.35477,35.83592],[76.35838,35.82855],[76.35084,35.83011],[76.33918,35.83054],[76.32699,35.83536],[76.31619,35.83739],[76.3083,35.83254],[76.29983,35.84305],[76.28873,35.8419],[76.27007,35.84187],[76.26549,35.83784],[76.25787,35.84098],[76.24888,35.8391],[76.24161,35.84085],[76.22267,35.84203],[76.22038,35.838],[76.22181,35.83446],[76.22049,35.82868],[76.20738,35.82674],[76.20045,35.82368],[76.17527,35.82397],[76.17,35.82092],[76.15788,35.82625],[76.14508,35.83716],[76.14532,35.84333],[76.14075,35.85006],[76.14546,35.85637],[76.15159,35.85897],[76.15497,35.86546],[76.14859,35.87419],[76.15334,35.88163],[76.14778,35.89241],[76.15796,35.90813],[76.15921,35.91828],[76.15266,35.92772],[76.14663,35.93188],[76.14294,35.94258],[76.13718,35.94772],[76.13506,35.9552],[76.11983,35.96738],[76.11479,35.96875],[76.1125,35.97234],[76.10775,35.97691],[76.10643,35.98315],[76.10422,35.98572],[76.10339,35.99217],[76.09817,35.99707],[76.09707,36.00918],[76.1031,36.01175],[76.10054,36.01588],[76.08562,36.02279],[76.04753,36.02438],[76.03727,36.02147],[76.02912,36.02287],[76.02365,36.01732],[76.01474,36.01648],[76.00445,36.01676],[75.99282,36.02176],[75.98398,36.03121],[75.9766,36.03234],[75.97472,36.03624],[75.95688,36.0463],[75.95484,36.05197],[75.94863,36.05562],[75.9493,36.06217],[75.9534,36.06482],[75.95278,36.06623],[75.94117,36.07042],[75.94227,36.07571],[75.95504,36.07823],[75.95363,36.08188],[75.94398,36.08775],[75.94602,36.09609],[75.93777,36.10499],[75.94187,36.1089],[75.94872,36.1117],[75.9472,36.11854],[75.93195,36.12759],[75.93241,36.13589],[75.95083,36.14143],[75.96513,36.14751],[75.96854,36.14923],[75.96302,36.15704],[75.96845,36.16379],[75.98281,36.16444],[75.98825,36.16288],[75.99695,36.16755],[76.00427,36.16668],[76.01257,36.17248],[76.02773,36.17329],[76.0299,36.17547],[76.018,36.17864],[76.01033,36.17995],[76.00472,36.18292],[76.00495,36.18815],[76.00998,36.19061],[76.01158,36.19474],[76.00693,36.19929],[76.00915,36.20773],[76.00671,36.22626],[76.00322,36.23229],[76.00972,36.23545],[76.01828,36.23308],[76.01962,36.23608],[76.02646,36.23619],[76.03331,36.23409],[76.03501,36.22867],[76.0435,36.22426],[76.05611,36.22318],[76.06211,36.22657],[76.05744,36.23072],[76.06033,36.23488],[76.05738,36.23959],[76.05786,36.24541],[76.04647,36.25372],[76.03782,36.26424],[76.026,36.26944],[76.01693,36.30065],[75.99534,36.30773],[75.99558,36.32385],[75.99238,36.33148],[75.98505,36.34132],[75.9846,36.35171],[75.99376,36.35602],[75.99811,36.3633],[75.99817,36.36885],[76.00098,36.37164],[76.00275,36.38106],[76.016,36.38881],[76.02719,36.39159],[76.02664,36.39799],[76.03322,36.40285],[76.03569,36.40771],[76.02767,36.41924],[76.02308,36.43575],[76.01626,36.45377],[76.00807,36.47345],[75.99383,36.48866],[75.98637,36.50469],[75.97371,36.51354],[75.9638,36.52294],[75.95939,36.53159],[75.9488,36.54135],[75.9393,36.55646],[75.92533,36.5644],[75.92441,36.57069],[75.94145,36.59153],[75.94201,36.59859],[75.93529,36.60055],[75.9285,36.60952],[75.92446,36.61409],[75.91818,36.62003],[75.91328,36.62762],[75.90691,36.63179],[75.89034,36.63744],[75.88088,36.64821],[75.87348,36.65568],[75.87201,36.66203],[75.86642,36.66894],[75.85662,36.67393],[75.84829,36.67353],[75.8395,36.68],[75.83207,36.68372],[75.82637,36.6924],[75.81699,36.69702],[75.81105,36.69778],[75.80277,36.71072],[75.79449,36.7121],[75.79204,36.71541],[75.76556,36.72533],[75.7466,36.74009],[75.73505,36.74582],[75.72076,36.75265],[75.71347,36.74651],[75.70411,36.74696],[75.69864,36.74682],[75.69042,36.75768],[75.67399,36.76509],[75.66442,36.76453],[75.65485,36.76782],[75.64704,36.76752],[75.63991,36.77053],[75.63082,36.7669],[75.62241,36.76878],[75.5867,36.76841],[75.57297,36.7664],[75.56902,36.76745],[75.56783,36.7751],[75.55118,36.77038],[75.53384,36.7717],[75.53368,36.76167],[75.52677,36.75669],[75.53154,36.75116],[75.53665,36.74205],[75.53577,36.73832],[75.53774,36.73371],[75.53215,36.72029],[75.51803,36.72203],[75.50823,36.72896],[75.50435,36.73682],[75.50048,36.73919],[75.49239,36.73428],[75.48629,36.7288],[75.47469,36.72332],[75.46901,36.71538],[75.46057,36.72011],[75.45278,36.72346],[75.4498,36.73177],[75.44451,36.74508],[75.43442,36.75013],[75.43531,36.75849],[75.42975,36.7615],[75.42762,36.76561],[75.4213,36.77053],[75.42144,36.77794],[75.42432,36.78371],[75.42735,36.79415],[75.42034,36.79907],[75.4235,36.80906],[75.42323,36.81904],[75.42993,36.82888],[75.42977,36.8453],[75.42258,36.86662],[75.42261,36.87409],[75.41956,36.88046],[75.422,36.88738],[75.41906,36.89085],[75.41064,36.89158],[75.39706,36.90026],[75.38623,36.90401],[75.39153,36.9175],[75.38723,36.9266],[75.39211,36.93266],[75.40592,36.93652],[75.41012,36.94615],[75.40295,36.94986],[75.40133,36.95491],[75.39421,36.95556],[75.39303,36.95083],[75.38613,36.94739],[75.37305,36.94723],[75.35856,36.9568],[75.34167,36.95662],[75.32341,36.9592],[75.31925,36.96745],[75.31441,36.96967],[75.30816,36.96477],[75.29644,36.9733],[75.28542,36.9747],[75.27711,36.972],[75.27064,36.97329],[75.26868,36.96818],[75.25917,36.96416],[75.25241,36.96454],[75.2485,36.96173],[75.23967,36.96114],[75.23497,36.95891],[75.21664,36.96543],[75.21616,36.97194],[75.19947,36.97632],[75.19422,36.97413],[75.17786,36.97879],[75.17318,36.98619],[75.16874,36.98608],[75.16019,36.98817],[75.15747,36.99712],[75.16332,37.00406],[75.16659,37.00561],[75.16779,37.0088],[75.16281,37.01638],[75.15234,37.01574],[75.14976,37.02346],[75.14444,37.02679],[75.13755,37.02695],[75.12929,37.0196],[75.12511,37.01259],[75.11607,37.0117],[75.11345,37.00665],[75.10464,37.01135],[75.09594,37.01096],[75.09068,37.00838],[75.08199,37.00791],[75.07146,37.00258],[75.05733,37.00177],[75.04457,37.00698],[75.04172,37.01412],[75.02913,37.01688],[75.01955,37.00976],[75.01134,37.00044],[75.00454,37.001],[74.99876,36.99772],[74.99587,36.99252],[74.98955,36.99006],[74.98263,36.98973],[74.97815,36.99643],[74.97366,36.99764],[74.96376,36.98788],[74.94328,36.98811],[74.92892,36.97945],[74.91636,36.97816],[74.92204,36.97107],[74.92359,36.96069],[74.92995,36.9547],[74.9315,36.94597],[74.92782,36.94478],[74.91658,36.94633],[74.92182,36.93554],[74.91951,36.93298],[74.91411,36.93343],[74.90802,36.9284],[74.89997,36.93425],[74.88608,36.93352],[74.88386,36.93663],[74.8858,36.94835],[74.8812,36.95294],[74.88026,36.95993],[74.87486,36.96499],[74.87358,36.97061],[74.86517,36.98019],[74.84853,37.01007],[74.83952,37.0174],[74.84631,37.02857],[74.84108,37.04275],[74.84087,37.0556],[74.8386,37.05967],[74.82535,37.05539],[74.79973,37.0522],[74.79108,37.04281],[74.79487,37.0311],[74.78801,37.02744],[74.78115,37.02761],[74.77343,37.02152],[74.7616,37.02475],[74.74892,37.02216],[74.73487,37.02177],[74.72581,37.02846],[74.72361,37.03405],[74.7173,37.03773],[74.71716,37.04195],[74.72152,37.05738],[74.70597,37.06597],[74.7068,37.07765],[74.69939,37.08359],[74.6689,37.08289],[74.65778,37.07788],[74.65146,37.07013],[74.64206,37.06855],[74.62304,37.06039],[74.62414,37.04572],[74.57155,37.02978],[74.55239,37.03074],[74.52958,37.02938],[74.52478,37.03235],[74.50283,37.07444],[74.48644,37.09338],[74.48127,37.09619],[74.46619,37.10433],[74.45533,37.11022],[74.43311,37.11574],[74.43222,37.12328],[74.44875,37.13169],[74.45671,37.14702],[74.48374,37.16424],[74.49433,37.17555],[74.49372,37.17966],[74.47872,37.18419],[74.4733,37.18761],[74.46978,37.19569],[74.47269,37.20249],[74.48078,37.21302],[74.48847,37.2173],[74.49258,37.22325],[74.49227,37.23083],[74.48664,37.23697],[74.48911,37.24191],[74.49847,37.23963],[74.50797,37.23919],[74.53221,37.24497],[74.54272,37.24274],[74.56194,37.23566],[74.57211,37.2343],[74.58033,37.23563],[74.59552,37.24327],[74.61411,37.24808],[74.62513,37.24633],[74.63772,37.23961],[74.6503,37.23652],[74.65992,37.23838],[74.6933,37.26733],[74.70469,37.27247],[74.72016,37.27666],[74.74725,37.27541],[74.76136,37.26955],[74.76505,37.268],[74.77727,37.25825],[74.78147,37.25202],[74.78888,37.2333],[74.79544,37.2265],[74.81469,37.21844],[74.82685,37.21694],[74.84494,37.22077],[74.87322,37.23016],[74.87855,37.23569],[74.89203,37.23294],[74.90583,37.23287],[74.91411,37.23639],[74.91722,37.2417],[74.91208,37.24701],[74.91559,37.25678],[74.91909,37.26108],[74.91374,37.26777],[74.91113,37.27501],[74.92605,37.28375],[74.93214,37.28239],[74.93998,37.2858],[74.94254,37.28915],[74.95127,37.2914],[74.9631,37.28758],[74.9697,37.29031],[74.97973,37.2854],[75.00718,37.29195],[75.02606,37.29796],[75.03275,37.30233],[75.04468,37.30588],[75.0518,37.30343],[75.06242,37.30616],[75.06362,37.31108],[75.07349,37.31162],[75.07739,37.3149],[75.08746,37.31517],[75.09685,37.31818],[75.11001,37.31463],[75.12318,37.31435],[75.12894,37.3241],[75.12166,37.33057],[75.12151,37.34024],[75.11503,37.34592],[75.10546,37.3576],[75.10411,37.36072],[75.09452,37.37011],[75.10218,37.37612],[75.11122,37.37777],[75.11487,37.3838],[75.12298,37.38574],[75.12896,37.39072],[75.13013,37.39898],[75.14297,37.40287],[75.15307,37.40895],[75.14627,37.4166],[75.14772,37.42099],[75.13961,37.43521],[75.13357,37.44289],[75.12884,37.44373],[75.12548,37.44838],[75.12466,37.46492],[75.10999,37.47293],[75.10399,37.4715],[75.09473,37.485],[75.08907,37.48515],[75.08272,37.49401],[75.08384,37.49749],[75.07878,37.50641],[75.07415,37.50738],[75.0632,37.51995],[75.06188,37.52549],[75.05718,37.52458],[75.04779,37.50806],[75.03312,37.50061],[75.0264,37.50829],[75.01926,37.50941],[75.0183,37.51707],[75.01103,37.52482],[75.00129,37.52452],[74.98869,37.53482],[74.98123,37.53478],[74.97378,37.53909],[74.96456,37.53891],[74.95489,37.54808],[74.95553,37.55345],[74.94415,37.55337],[74.93193,37.56857],[74.93483,37.57615],[74.9305,37.58617],[74.93903,37.60241],[74.92543,37.61285],[74.92695,37.62274],[74.92311,37.62946],[74.91085,37.63538],[74.90752,37.64346],[74.90191,37.64846],[74.90179,37.65617],[74.89606,37.6629],[74.90265,37.67786],[74.933,37.69202],[74.92216,37.70373],[74.93466,37.71708],[74.94744,37.71821],[74.95061,37.72477],[74.96106,37.72974],[74.96687,37.75164],[74.98487,37.7518],[74.98984,37.76174],[74.99644,37.76154],[75.00098,37.76895],[75.00964,37.76985],[75.01019,37.77735],[75.00594,37.77888],[74.98642,37.80778],[74.979,37.80584],[74.96609,37.8104],[74.95318,37.80737],[74.94576,37.81519],[74.94396,37.82404],[74.92522,37.82766],[74.92242,37.83887],[74.9131,37.85468],[74.91916,37.86225],[74.92867,37.8682],[74.93199,37.87821],[74.93777,37.88131],[74.93702,37.89634],[74.92967,37.90013],[74.91957,37.90012],[74.91221,37.9077],[74.92065,37.9169],[74.91664,37.92717],[74.92202,37.93623],[74.91778,37.94312],[74.91927,37.95131],[74.9132,37.95516],[74.91411,37.9621],[74.90748,37.9647],[74.90862,37.97045],[74.91522,37.97487],[74.91715,37.98547],[74.91289,37.99769],[74.9186,38.00693],[74.91537,38.01455],[74.91648,38.02438],[74.90648,38.03395],[74.89821,38.03271],[74.89268,38.03687],[74.88498,38.02322],[74.86903,38.02554],[74.86656,38.03076],[74.86669,38.03769],[74.85543,38.04359],[74.85175,38.05007],[74.8522,38.05709],[74.85652,38.06139],[74.85383,38.06909],[74.84495,38.07463],[74.83916,38.07259],[74.83406,38.07327],[74.82695,38.08245],[74.82052,38.08568],[74.81763,38.10026],[74.81954,38.10673],[74.8165,38.12021],[74.81827,38.12937],[74.80527,38.13813],[74.806,38.14742],[74.79786,38.15468],[74.8031,38.16589],[74.8056,38.17981],[74.80303,38.18767],[74.8034,38.198],[74.80098,38.20168],[74.7704,38.19619],[74.76077,38.2058],[74.7532,38.21488],[74.73393,38.21495],[74.71055,38.21287],[74.70659,38.22138],[74.69783,38.22827],[74.69541,38.2647],[74.70569,38.28254],[74.70362,38.29738],[74.69331,38.30845],[74.68831,38.3314],[74.66546,38.38021],[74.69529,38.42477],[74.665,38.43574],[74.65119,38.4467],[74.61747,38.44853],[74.50959,38.47187],[74.2849,38.59747],[74.25908,38.60175],[74.18643,38.64091],[74.12195,38.64171],[74.11515,38.6114],[74.09666,38.61247],[74.07679,38.60926],[74.07477,38.58672],[74.06315,38.57706],[74.07835,38.55131],[74.09075,38.54863],[74.08665,38.53763],[74.07844,38.53092],[74.0431,38.54387],[74.00675,38.53219],[74.00813,38.52404],[73.99441,38.52232],[73.97658,38.53609],[73.95668,38.53411],[73.92579,38.5418],[73.91928,38.55432],[73.90504,38.56487],[73.89766,38.58402],[73.88025,38.58565],[73.86147,38.57869],[73.83101,38.59802],[73.79849,38.61575],[73.80933,38.63779],[73.80239,38.64961],[73.80368,38.66358],[73.78197,38.68116],[73.77948,38.69017],[73.77175,38.69639],[73.77414,38.70134],[73.76657,38.70587],[73.77065,38.71708],[73.74311,38.73307],[73.75333,38.7496],[73.7557,38.77072],[73.76631,38.77042],[73.76707,38.77954],[73.75135,38.80043],[73.73777,38.8251],[73.72847,38.83377],[73.72908,38.84363],[73.71047,38.84654],[73.69872,38.85159],[73.70347,38.86393],[73.69998,38.87734],[73.71092,38.88808],[73.70812,38.89669],[73.71625,38.90588],[73.734,38.91293],[73.73859,38.92757],[73.75555,38.94007],[73.76867,38.93873],[73.77904,38.94165],[73.79354,38.92909],[73.80529,38.93415],[73.81986,38.91997],[73.83031,38.91648],[73.84709,38.94848],[73.85563,38.9527],[73.84439,38.9799],[73.84289,39.00044],[73.82766,39.02098],[73.81204,39.0423],[73.79207,39.0433],[73.78582,39.0315],[73.77471,39.02604],[73.76497,39.03231],[73.74973,39.02364],[73.73717,39.03661],[73.73834,39.05277],[73.72969,39.06697],[73.71555,39.07157],[73.71103,39.0783],[73.71914,39.09603],[73.71358,39.10223],[73.72038,39.11163],[73.70627,39.12243],[73.70588,39.13535],[73.67563,39.14348],[73.68588,39.16013],[73.67781,39.16722],[73.66011,39.16473],[73.65769,39.19275],[73.65147,39.20089],[73.64287,39.20416],[73.63856,39.21537],[73.63151,39.22871],[73.61293,39.24696],[73.58534,39.23735],[73.56187,39.24795],[73.56298,39.27126],[73.54831,39.27172],[73.53776,39.27749],[73.54908,39.29034],[73.56315,39.30638],[73.55284,39.31401],[73.55145,39.33989],[73.56789,39.34705],[73.53897,39.36456],[73.52242,39.37464],[73.50727,39.37437],[73.499,39.38047],[73.52711,39.39029],[73.5566,39.39374],[73.57098,39.39825],[73.57542,39.40475],[73.59085,39.41125],[73.59238,39.42093],[73.59665,39.42531],[73.58925,39.43605],[73.59696,39.44255],[73.5952,39.45343],[73.60169,39.46007],[73.61771,39.46441],[73.62686,39.47301],[73.64586,39.47597],[73.65524,39.46834],[73.66302,39.47216],[73.67034,39.46549],[73.67904,39.46306],[73.69322,39.46499],[73.73761,39.46056],[73.78247,39.46736],[73.79711,39.46673],[73.83852,39.47272],[73.87443,39.48294],[73.87692,39.49431],[73.87254,39.49932],[73.87476,39.51146],[73.89156,39.53362],[73.87848,39.54298],[73.91548,39.56595],[73.91395,39.58966],[73.94798,39.59898],[73.94695,39.61879],[73.94179,39.63225],[73.93698,39.66023],[73.92322,39.69398],[73.92594,39.70441],[73.91076,39.72213],[73.91896,39.7257],[73.90658,39.73277],[73.90245,39.74513],[73.87288,39.74607],[73.86222,39.75815],[73.84659,39.75944],[73.8392,39.7544],[73.84003,39.76769],[73.83262,39.78098],[73.84024,39.80371],[73.84923,39.83594],[73.86647,39.84971],[73.87959,39.85293],[73.88467,39.8637],[73.90487,39.86182],[73.91511,39.88327],[73.92123,39.90683],[73.90263,39.91459],[73.94208,39.96796],[73.95819,39.97501],[73.97581,40.00503],[73.93551,40.02405],[73.93606,40.03343],[73.95447,40.03439],[73.98303,40.04894],[73.99759,40.04545],[74.00453,40.06368],[74.01833,40.07245],[74.01184,40.07972],[74.04243,40.10065],[74.06928,40.07842],[74.10458,40.08775],[74.12233,40.11161],[74.14695,40.10502],[74.16169,40.11387],[74.21625,40.12692],[74.23062,40.12153],[74.25941,40.13398],[74.27792,40.10346],[74.30605,40.11389],[74.34289,40.09123],[74.41213,40.1366],[74.46254,40.16349],[74.46646,40.17747],[74.48489,40.18708],[74.49647,40.20351],[74.52588,40.20873],[74.56256,40.25328],[74.59237,40.2821],[74.62864,40.2821],[74.64404,40.27215],[74.66217,40.27372],[74.68598,40.29102],[74.67751,40.29508],[74.70005,40.32224],[74.69925,40.33684],[74.69193,40.34917],[74.7185,40.34827],[74.73684,40.34318],[74.74464,40.35215],[74.77188,40.34722],[74.79089,40.3538],[74.83164,40.33974],[74.85729,40.32359],[74.88136,40.33633],[74.91229,40.34592],[74.90097,40.35526],[74.88004,40.36459],[74.85602,40.39267],[74.84538,40.40178],[74.82513,40.41402],[74.79974,40.4312],[74.7874,40.45301],[74.80786,40.45531],[74.81809,40.4878],[74.81596,40.50671],[74.83904,40.52282],[74.88374,40.50679],[74.92158,40.49284],[74.9189,40.4857],[74.95153,40.46876],[74.98829,40.45182],[75,40.45768],[75.00363,40.45856],[75.01755,40.4657],[75.02668,40.45952],[75.02884,40.45591],[75.03678,40.45175],[75.04316,40.45359],[75.04532,40.44955],[75.05152,40.44462],[75.05634,40.44712],[75.06253,40.447],[75.06666,40.44401],[75.0756,40.4405],[75.08454,40.44222],[75.0897,40.43445],[75.1012,40.43684],[75.10661,40.44587],[75.11446,40.44804],[75.12079,40.45487],[75.12369,40.45752],[75.1279,40.45656],[75.14065,40.46209],[75.14359,40.45754],[75.14791,40.45613],[75.15894,40.45513],[75.17066,40.45674],[75.17693,40.45421],[75.18269,40.44829],[75.19278,40.44716],[75.20149,40.4476],[75.20695,40.44424],[75.21514,40.44873],[75.21907,40.44601],[75.223,40.44538],[75.23841,40.4483],[75.23809,40.45701],[75.23915,40.46102],[75.26046,40.47115],[75.25669,40.48035],[75.26158,40.48121],[75.26442,40.48312],[75.27068,40.48137],[75.27519,40.48154],[75.28038,40.47857],[75.30237,40.49121],[75.30246,40.49645],[75.29911,40.50064],[75.30753,40.51059],[75.31972,40.51844],[75.32985,40.52108],[75.32745,40.52636],[75.3278,40.53163],[75.33295,40.53199],[75.34154,40.53078],[75.34567,40.53567],[75.35185,40.53533],[75.36198,40.54282],[75.37142,40.54821],[75.37649,40.54843],[75.38087,40.545],[75.38786,40.55111],[75.39211,40.55252],[75.40014,40.55263],[75.40885,40.55326],[75.4171,40.55717],[75.42225,40.56121],[75.42946,40.56473],[75.43358,40.57099],[75.43874,40.5749],[75.44183,40.57881],[75.44595,40.5788],[75.45695,40.59027],[75.46109,40.60174],[75.46796,40.605],[75.47759,40.60617],[75.48378,40.61197],[75.48859,40.61881],[75.50679,40.62914],[75.52842,40.63738],[75.52842,40.64041],[75.53443,40.64495],[75.54778,40.65077],[75.55975,40.65503],[75.56791,40.65417],[75.57289,40.65739],[75.57924,40.65905],[75.5849,40.66252],[75.59331,40.66444],[75.59743,40.66116],[75.60155,40.66385],[75.60326,40.66103],[75.59622,40.65415],[75.59755,40.64996],[75.59476,40.64576],[75.60192,40.64626],[75.61115,40.64623],[75.61526,40.64033],[75.61114,40.63521],[75.61766,40.63186],[75.6192,40.62811],[75.62899,40.62383],[75.63242,40.61984],[75.62714,40.61468],[75.62048,40.60066],[75.62276,40.58116],[75.62389,40.57115],[75.62137,40.5651],[75.62434,40.56062],[75.62339,40.55317],[75.62313,40.54573],[75.6263,40.5435],[75.63634,40.53241],[75.64054,40.52783],[75.63856,40.52274],[75.64315,40.51299],[75.64705,40.50533],[75.6576,40.50358],[75.66772,40.49592],[75.67303,40.49921],[75.67834,40.49989],[75.68722,40.49897],[75.68575,40.49321],[75.69253,40.48484],[75.69852,40.48585],[75.70692,40.48007],[75.71395,40.47952],[75.7242,40.47364],[75.71883,40.46568],[75.7213,40.463],[75.70674,40.45304],[75.7101,40.44441],[75.70114,40.43434],[75.69117,40.43036],[75.69046,40.42506],[75.68149,40.42168],[75.67529,40.40431],[75.66944,40.39631],[75.67047,40.38621],[75.66977,40.37455],[75.66565,40.37178],[75.66116,40.3644],[75.66475,40.35757],[75.66354,40.35545],[75.67997,40.34541],[75.68167,40.3362],[75.68611,40.33432],[75.68506,40.3237],[75.6902,40.31622],[75.69498,40.31381],[75.70004,40.30316],[75.69141,40.29941],[75.68942,40.29415],[75.69224,40.28837],[75.6906,40.28495],[75.69527,40.28454],[75.69967,40.27962],[75.70609,40.28036],[75.70976,40.28581],[75.71756,40.28759],[75.72105,40.29013],[75.72248,40.29686],[75.72907,40.30202],[75.73496,40.30614],[75.7423,40.29409],[75.74529,40.29487],[75.74884,40.29893],[75.75513,40.30246],[75.76247,40.30063],[75.76981,40.30193],[75.77303,40.30036],[75.77831,40.30035],[75.78222,40.30559],[75.78794,40.30716],[75.78955,40.31082],[75.79728,40.31107],[75.80355,40.31276],[75.80494,40.31672],[75.80771,40.31806],[75.81119,40.32441],[75.81703,40.32412],[75.82561,40.32749],[75.82707,40.32295],[75.82986,40.3212],[75.82988,40.31771],[75.83197,40.31474],[75.84475,40.31151],[75.85081,40.31016],[75.8548,40.31194],[75.86492,40.31411],[75.87025,40.31053],[75.87729,40.3127],[75.88638,40.30597],[75.89402,40.30732],[75.90098,40.30291],[75.90943,40.3028],[75.90896,40.29483],[75.91213,40.29094],[75.91711,40.29477],[75.92209,40.2944],[75.92304,40.29867],[75.92879,40.30189],[75.92806,40.30572],[75.93145,40.31165],[75.929,40.31654],[75.92518,40.318],[75.9241,40.32155],[75.92508,40.32642],[75.92351,40.32963],[75.92582,40.3315],[75.92538,40.33494],[75.93274,40.33608],[75.94535,40.34251],[75.9463,40.35104],[75.95918,40.36078],[75.96038,40.36606],[75.95358,40.36986],[75.95433,40.37575],[75.96201,40.37446],[75.97416,40.38101],[75.98689,40.37879],[75.9907,40.38128],[75.99708,40.37736],[75.99719,40.36964],[75.99964,40.36762],[76.00224,40.36922],[76.00938,40.36375],[76.0126,40.35577],[76.01868,40.35388],[76.02132,40.35304],[76.03884,40.35516],[76.04675,40.35467],[76.04714,40.35809],[76.04253,40.36477],[76.04135,40.36936],[76.04566,40.37239],[76.05273,40.37227],[76.05876,40.37476],[76.05937,40.37784],[76.06826,40.38226],[76.07715,40.38354],[76.08575,40.37485],[76.10397,40.37716],[76.11224,40.37292],[76.11808,40.37524],[76.1253,40.37496],[76.13462,40.37171],[76.13825,40.36695],[76.14933,40.36614],[76.15973,40.36585],[76.16159,40.36783],[76.16835,40.36778],[76.17752,40.37923],[76.18566,40.37944],[76.18727,40.38226],[76.196,40.38895],[76.20795,40.39291],[76.21461,40.39516],[76.21485,40.39863],[76.22768,40.40377],[76.23226,40.41466],[76.25068,40.41841],[76.25302,40.4229],[76.26243,40.42437],[76.26679,40.43085],[76.27184,40.43889],[76.27976,40.43214],[76.2863,40.42853],[76.2834,40.42149],[76.27843,40.41237],[76.29166,40.40768],[76.29656,40.40508],[76.31244,40.40561],[76.31504,40.39442],[76.32252,40.3917],[76.32794,40.38688],[76.32271,40.37958],[76.32147,40.37149],[76.31508,40.36444],[76.32291,40.36263],[76.32615,40.35576],[76.32833,40.35025],[76.33189,40.34789],[76.33557,40.33844],[76.34362,40.34073],[76.33906,40.34946],[76.34296,40.35566],[76.35315,40.36399],[76.35585,40.3747],[76.36218,40.38182],[76.36578,40.38685],[76.37194,40.38691],[76.37879,40.38907],[76.38215,40.3854],[76.38005,40.37991],[76.38344,40.37494],[76.39332,40.37807],[76.40251,40.37807],[76.4075,40.38329],[76.40974,40.3859],[76.42486,40.3859],[76.43174,40.38824],[76.43931,40.38915],[76.44755,40.39379],[76.44447,40.39716],[76.44413,40.40052],[76.45375,40.40326],[76.45445,40.41175],[76.46373,40.41606],[76.46975,40.41324],[76.47859,40.42073],[76.48125,40.42716],[76.48667,40.42853],[76.49266,40.42652],[76.49796,40.42817],[76.50513,40.42729],[76.50389,40.43359],[76.50636,40.43831],[76.50471,40.44146],[76.50703,40.44518],[76.52438,40.45681],[76.53271,40.46184],[76.53761,40.4653],[76.53506,40.46733],[76.53547,40.47244],[76.53833,40.4743],[76.53581,40.48796],[76.5404,40.49021],[76.54018,40.49691],[76.54064,40.50412],[76.53151,40.50949],[76.53711,40.51617],[76.54202,40.52076],[76.54533,40.52266],[76.54864,40.53031],[76.55184,40.5315],[76.5493,40.53912],[76.5557,40.55094],[76.5676,40.55963],[76.57664,40.56854],[76.58567,40.57275],[76.58853,40.57644],[76.59276,40.57753],[76.59741,40.57972],[76.59698,40.58343],[76.5993,40.58714],[76.60516,40.59154],[76.60416,40.60242],[76.61278,40.6107],[76.62155,40.61225],[76.62825,40.61484],[76.63701,40.61248],[76.64521,40.61893],[76.65478,40.6212],[76.65148,40.63599],[76.64818,40.6492],[76.64906,40.65708],[76.65922,40.66184],[76.65426,40.67909],[76.665,40.68694],[76.67369,40.69374],[76.67087,40.69716],[76.66637,40.70746],[76.66187,40.70943],[76.65623,40.71523],[76.65316,40.71508],[76.6501,40.71701],[76.64603,40.72503],[76.64681,40.73639],[76.64394,40.73829],[76.64107,40.748],[76.63929,40.75104],[76.6437,40.75615],[76.64083,40.7617],[76.64463,40.76568],[76.64843,40.76602],[76.65397,40.76878],[76.66849,40.77378],[76.66821,40.78339],[76.6848,40.77765],[76.69298,40.78234],[76.70185,40.78755],[76.70508,40.79678],[76.709,40.80446],[76.70915,40.80771],[76.71334,40.80934],[76.71131,40.81301],[76.72783,40.81824],[76.72167,40.82034],[76.72065,40.82424],[76.71773,40.82957],[76.71825,40.84217],[76.73202,40.84532],[76.73141,40.84799],[76.72949,40.84813],[76.72497,40.85387],[76.7277,40.85787],[76.72837,40.86343],[76.73282,40.86665],[76.73933,40.87559],[76.73861,40.89189],[76.73269,40.89594],[76.72973,40.90005],[76.73088,40.90363],[76.73482,40.90809],[76.73499,40.91247],[76.73954,40.91907],[76.74409,40.91996],[76.74923,40.9287],[76.75469,40.93282],[76.75329,40.93848],[76.75117,40.94204],[76.75146,40.94741],[76.75381,40.95355],[76.76267,40.95341],[76.76953,40.95688],[76.77432,40.95723],[76.77671,40.96018],[76.78546,40.96139],[76.79146,40.96053],[76.79469,40.96253],[76.79586,40.96869],[76.80665,40.97199],[76.80826,40.97442],[76.818,40.97667],[76.82321,40.97598],[76.8368,40.97693],[76.84559,40.97373],[76.8536,40.97707],[76.84935,40.9805],[76.85129,40.98807],[76.84761,40.99648],[76.84976,40.99996],[76.85398,41.00137],[76.86069,41.01041],[76.86672,41.01531],[76.86611,41.02142],[76.86928,41.02468],[76.87314,41.02535],[76.8805,41.02825],[76.88718,41.02493],[76.89262,41.01735],[76.90355,41.0178],[76.90938,41.02042],[76.91315,41.02044],[76.91864,41.0241],[76.92757,41.02464],[76.92662,41.02582],[76.93254,41.02959],[76.93958,41.03092],[76.94541,41.03408],[76.9454,41.03815],[76.95294,41.03963],[76.95346,41.04464],[76.95946,41.04655],[76.96029,41.05305],[76.96319,41.05852],[76.97055,41.06036],[76.98114,41.06561],[76.98899,41.06931],[76.99301,41.07204],[77.00086,41.0708],[77.00427,41.06682],[77.01282,41.06491],[77.01332,41.05842],[77.03284,41.05838],[77.04035,41.06274],[77.04772,41.06214],[77.05509,41.06259],[77.06212,41.06018],[77.06983,41.05985],[77.07764,41.06209],[77.08477,41.06279],[77.08562,41.05945],[77.09129,41.05457],[77.0985,41.05359],[77.10674,41.04854],[77.10211,41.04394],[77.10022,41.03831],[77.10734,41.03484],[77.11035,41.03138],[77.1146,41.03042],[77.11816,41.02688],[77.12322,41.02756],[77.13009,41.026],[77.13902,41.02599],[77.14143,41.01976],[77.14796,41.02027],[77.15312,41.01714],[77.16378,41.01349],[77.16723,41.01086],[77.17206,41.01185],[77.17966,41.01151],[77.18452,41.00961],[77.18539,41.02326],[77.20471,41.02244],[77.21471,41.02643],[77.21834,41.02558],[77.22256,41.02878],[77.22952,41.03043],[77.23653,41.02731],[77.24312,41.02705],[77.24504,41.02304],[77.23873,41.01643],[77.24313,41.01383],[77.25748,41.01486],[77.26429,41.01277],[77.26079,41.00991],[77.26248,41.00408],[77.26959,41.00404],[77.27602,41.00142],[77.29069,41.00372],[77.29494,41.00668],[77.30358,41.00894],[77.30619,41.00851],[77.3123,41.01089],[77.31085,41.01741],[77.31788,41.01916],[77.32215,41.02194],[77.32368,41.02446],[77.33166,41.02832],[77.33894,41.02802],[77.34288,41.03119],[77.35093,41.0354],[77.35589,41.04064],[77.36215,41.03808],[77.37356,41.0407],[77.37615,41.03264],[77.37985,41.02758],[77.38355,41.03029],[77.39129,41.03129],[77.39766,41.03385],[77.40047,41.03788],[77.40875,41.03756],[77.41427,41.03413],[77.41104,41.02933],[77.41467,41.02609],[77.42125,41.02788],[77.42548,41.02526],[77.42844,41.02104],[77.44467,41.01884],[77.44691,41.02271],[77.46031,41.02061],[77.46996,41.02158],[77.47353,41.01694],[77.46997,41.0129],[77.46642,41.0117],[77.46412,41.00231],[77.46776,40.99856],[77.47854,40.99562],[77.48451,40.99785],[77.4922,40.99646],[77.5036,40.99888],[77.51157,40.99766],[77.52492,41.00262],[77.52798,41.00032],[77.535,41.00176],[77.54133,41.0001],[77.55194,41.00453],[77.55755,41.00192],[77.56522,40.99568],[77.57358,40.99617],[77.58399,40.99252],[77.58377,41.00176],[77.58813,41.00417],[77.59695,41.00166],[77.60646,41.0095],[77.6137,41.00928],[77.61751,41.0044],[77.62405,41.00196],[77.63403,41.00729],[77.64331,41.01106],[77.64711,41.01432],[77.65186,41.00795],[77.65936,41.00157],[77.66699,41.00361],[77.67461,41.00409],[77.68781,41.00349],[77.69334,41.00684],[77.69749,41.00604],[77.701,41.00652],[77.70114,41.01007],[77.70888,41.01442],[77.71457,41.0138],[77.71957,41.0194],[77.72889,41.02178],[77.73104,41.02966],[77.7413,41.02466],[77.74643,41.02397],[77.7495,41.02122],[77.7565,41.01738],[77.76487,41.01433],[77.76884,41.01663],[77.7687,41.01997],[77.7739,41.02251],[77.77876,41.02168],[77.78119,41.02463],[77.77898,41.02741],[77.77951,41.02914],[77.78682,41.03732],[77.78711,41.04067],[77.79151,41.04297],[77.7962,41.04862],[77.80294,41.04738],[77.80872,41.04287],[77.81583,41.04434],[77.82041,41.05025],[77.8195,41.05305],[77.82479,41.05857],[77.81805,41.06597],[77.81132,41.06922],[77.80733,41.07481],[77.80059,41.09023],[77.80227,41.10966],[77.80463,41.11719],[77.80317,41.12345],[77.81,41.12998],[77.81442,41.13728],[77.83154,41.15027],[77.84043,41.15551],[77.85339,41.15719],[77.87459,41.16455],[77.88253,41.16979],[77.88635,41.17554],[77.89463,41.17871],[77.91116,41.18549],[77.91777,41.18562],[77.92186,41.18758],[77.93075,41.18591],[77.9403,41.18724],[77.95775,41.19063],[77.96352,41.18885],[77.96687,41.18473],[77.97262,41.18086],[77.98091,41.18313],[77.98301,41.18539],[77.98938,41.18717],[77.99095,41.18895],[77.99836,41.19227],[78.00618,41.19316],[78.00871,41.18973],[78.0196,41.19189],[78.02592,41.19657],[78.02744,41.20176],[78.0293,41.20256],[78.03367,41.20011],[78.03872,41.20129],[78.0546,41.21047],[78.06391,41.21196],[78.072,41.21451],[78.08902,41.22429],[78.11143,41.22598],[78.11791,41.22695],[78.12439,41.22715],[78.12748,41.23599],[78.13057,41.23915],[78.12971,41.24422],[78.13365,41.24567],[78.13314,41.24996],[78.13125,41.25218],[78.13193,41.26172],[78.13055,41.26378],[78.13329,41.27048],[78.13208,41.27796],[78.13293,41.28492],[78.13875,41.28749],[78.13863,41.29513],[78.13782,41.30483],[78.13757,41.31289],[78.1466,41.32108],[78.14807,41.32387],[78.14886,41.32976],[78.1517,41.33256],[78.1518,41.33484],[78.15756,41.33841],[78.15646,41.3492],[78.15261,41.35419],[78.14863,41.36132],[78.14533,41.36639],[78.15514,41.37389],[78.1549,41.38124],[78.17269,41.38746],[78.18808,41.39393],[78.19522,41.39371],[78.2113,41.39607],[78.21738,41.39598],[78.2262,41.40104],[78.23905,41.40035],[78.2452,41.39376],[78.25721,41.39176],[78.26303,41.39284],[78.27809,41.38842],[78.28525,41.39198],[78.29054,41.39196],[78.29358,41.38886],[78.30006,41.38628],[78.30957,41.38936],[78.31392,41.38606],[78.31622,41.38275],[78.3208,41.38078],[78.33637,41.39529],[78.34244,41.39481],[78.34959,41.39149],[78.35523,41.39163],[78.36155,41.39357],[78.36712,41.39117],[78.37608,41.39255],[78.38229,41.39135],[78.38717,41.39539],[78.3927,41.40102],[78.3893,41.40819],[78.3938,41.41259],[78.40105,41.41442],[78.40661,41.40932],[78.42433,41.41617],[78.429,41.41375],[78.43676,41.41699],[78.44201,41.41655],[78.44567,41.41325],[78.45001,41.41303],[78.46373,41.42009],[78.47813,41.42562],[78.49391,41.43062],[78.50642,41.43267],[78.50778,41.43408],[78.50528,41.43535],[78.51226,41.43933],[78.51984,41.44007],[78.52742,41.43926],[78.5326,41.44206],[78.53072,41.44604],[78.53296,41.45156],[78.53948,41.45979],[78.54601,41.46596],[78.55254,41.47008],[78.5534,41.47368],[78.557,41.47625],[78.56549,41.47978],[78.57397,41.48176],[78.58005,41.4804],[78.58054,41.47505],[78.58412,41.46866],[78.59295,41.46958],[78.59903,41.46742],[78.60711,41.46932],[78.60971,41.47225],[78.61745,41.47441],[78.62039,41.47657],[78.62882,41.47449],[78.63244,41.47138],[78.64026,41.47098],[78.64464,41.46903],[78.64972,41.47326],[78.64755,41.47767],[78.655,41.48155],[78.65799,41.49033],[78.66325,41.4996],[78.67092,41.50346],[78.67653,41.50835],[78.68191,41.51003],[78.69141,41.51067],[78.69473,41.51594],[78.70354,41.5207],[78.7031,41.52321],[78.6951,41.52468],[78.68951,41.53053],[78.69632,41.53962],[78.69939,41.5398],[78.70195,41.54605],[78.71284,41.55252],[78.7176,41.55139],[78.72342,41.55442],[78.73113,41.5549],[78.73842,41.55104],[78.7411,41.55277],[78.74722,41.55347],[78.74846,41.55642],[78.75994,41.55707],[78.77393,41.55893],[78.77714,41.56089],[78.78596,41.56187],[78.78968,41.56416],[78.79635,41.55914],[78.80517,41.55996],[78.81606,41.55874],[78.81644,41.56134],[78.82281,41.56521],[78.82438,41.57165],[78.83678,41.57142],[78.84162,41.57788],[78.85166,41.57897],[78.85365,41.5822],[78.85221,41.59056],[78.85483,41.59496],[78.86201,41.59755],[78.87487,41.59217],[78.87636,41.59493],[78.88541,41.59564],[78.88691,41.59943],[78.88491,41.60415],[78.89044,41.60856],[78.89801,41.61205],[78.9066,41.61251],[78.91124,41.61968],[78.92145,41.623],[78.91937,41.62653],[78.91945,41.63195],[78.92879,41.63262],[78.92984,41.63348],[78.92917,41.63485],[78.93076,41.63618],[78.92919,41.63803],[78.9283,41.64182],[78.93256,41.64123],[78.9363,41.63993],[78.94183,41.64497],[78.95079,41.64539],[78.95338,41.64894],[78.95913,41.65148],[78.96352,41.65043],[78.96886,41.65424],[78.97599,41.6546],[78.99067,41.66369],[78.99794,41.66043],[78.99667,41.65667],[79.00432,41.65701],[79.00614,41.65838],[79.01735,41.65701],[79.02124,41.6594],[79.0194,41.66829],[79.02536,41.66684],[79.02936,41.67048],[79.0269,41.67537],[79.02925,41.67872],[79.04424,41.68016],[79.04796,41.68523],[79.05511,41.68466],[79.059,41.68907],[79.06805,41.68808],[79.07325,41.69016],[79.08258,41.68915],[79.08819,41.69484],[79.09305,41.69665],[79.09586,41.70001],[79.1033,41.70041],[79.11143,41.70236],[79.12425,41.72214],[79.13363,41.7234],[79.14141,41.7207],[79.14977,41.7232],[79.16184,41.72624],[79.16293,41.72877],[79.173,41.72926],[79.17598,41.72746],[79.18124,41.72835],[79.18559,41.72367],[79.20642,41.72468],[79.21695,41.7262],[79.21947,41.73129],[79.22718,41.73318],[79.23077,41.73814],[79.22834,41.7414],[79.2338,41.74337],[79.2489,41.74488],[79.25198,41.74922],[79.2482,41.75459],[79.24888,41.75714],[79.25668,41.76062],[79.25989,41.76006],[79.27203,41.76411],[79.27468,41.7699],[79.27046,41.77364],[79.27197,41.77549],[79.27548,41.77309],[79.28444,41.77855],[79.29478,41.79066],[79.30897,41.79564],[79.31218,41.80062],[79.31881,41.80433],[79.32271,41.81059],[79.33475,41.80668],[79.34,41.80072],[79.3473,41.79321],[79.35323,41.79365],[79.35688,41.80026],[79.36466,41.80422],[79.37175,41.81022],[79.38182,41.81302],[79.39149,41.82415],[79.3916,41.829],[79.39732,41.83002],[79.40946,41.84127],[79.42462,41.84191],[79.4391,41.84255],[79.45083,41.84677],[79.45635,41.84734],[79.4598,41.85096],[79.46462,41.85303],[79.47399,41.85057],[79.48749,41.84402],[79.48278,41.83925],[79.4849,41.83713],[79.49726,41.83629],[79.50757,41.838],[79.53711,41.83888],[79.54423,41.83774],[79.55548,41.84274],[79.5681,41.84263],[79.57316,41.84711],[79.59394,41.85302],[79.59892,41.85535],[79.60562,41.85589],[79.61438,41.86001],[79.61704,41.86603],[79.62176,41.87205],[79.61747,41.87541],[79.61946,41.87883],[79.62389,41.88079],[79.63126,41.8874],[79.63322,41.89121],[79.63725,41.8935],[79.6475,41.89344],[79.65775,41.89542],[79.66835,41.8946],[79.67963,41.89684],[79.68572,41.89724],[79.69318,41.89815],[79.69951,41.89587],[79.70447,41.89564],[79.71819,41.89975],[79.72092,41.90233],[79.72606,41.90004],[79.7312,41.90082],[79.74012,41.90288],[79.74664,41.90058],[79.75316,41.90186],[79.76689,41.89164],[79.77101,41.89267],[79.77715,41.9001],[79.78365,41.901],[79.7881,41.91162],[79.7963,41.91317],[79.79559,41.9165],[79.80314,41.92072],[79.80279,41.92513],[79.80776,41.93091],[79.80244,41.93669],[79.80481,41.94029],[79.81266,41.94542],[79.81365,41.94928],[79.81827,41.94967],[79.81611,41.95881],[79.81739,41.96539],[79.82136,41.96755],[79.82506,41.96582],[79.83137,41.96955],[79.83418,41.97728],[79.84177,41.9809],[79.84762,41.97862],[79.84995,41.98329],[79.85227,41.9854],[79.84532,42.00027],[79.84806,42.00295],[79.84805,42.00717],[79.84596,42.01357],[79.85004,42.01871],[79.85649,42.02266],[79.87461,42.02917],[79.87921,42.03064],[79.88037,42.03415],[79.88782,42.03514],[79.89595,42.03459],[79.90992,42.04221],[79.92274,42.04169],[79.93122,42.03964],[79.94987,42.0455],[79.96092,42.04384],[79.96921,42.04065],[79.97635,42.04537],[79.99021,42.04417],[79.99509,42.04076],[80.01778,42.04211],[80.02466,42.04891],[80.03841,42.04755],[80.0428,42.04921],[80.05158,42.04588],[80.06655,42.04408],[80.07362,42.04687],[80.08471,42.0424],[80.09649,42.03946],[80.10562,42.03856],[80.11818,42.03765],[80.12903,42.03496],[80.13919,42.03124],[80.14738,42.03376],[80.14869,42.03576],[80.15447,42.03521],[80.16158,42.03699],[80.16663,42.03519],[80.17467,42.03875],[80.18863,42.03714],[80.19915,42.03758],[80.20322,42.04079],[80.20934,42.04248],[80.21265,42.04839],[80.22043,42.05584],[80.22753,42.06329],[80.22391,42.06633],[80.21136,42.06988],[80.20481,42.07646],[80.18899,42.08229],[80.17179,42.09423],[80.16696,42.09916],[80.158,42.11275],[80.15214,42.11565],[80.14902,42.11905],[80.15115,42.12467],[80.15122,42.12978],[80.15163,42.13361],[80.14793,42.13949],[80.14395,42.14156],[80.13791,42.14821],[80.1396,42.15308],[80.1358,42.15693],[80.13093,42.1682],[80.14632,42.17012],[80.16412,42.16974],[80.16372,42.206],[80.16884,42.20951],[80.17464,42.21098],[80.1806,42.22212],[80.20074,42.22972],[80.21744,42.22817],[80.21973,42.22268],[80.22957,42.21719],[80.23381,42.21877],[80.24313,42.21803],[80.24972,42.21882],[80.25257,42.22141],[80.2616,42.22364],[80.272,42.22638],[80.27495,42.23034],[80.27893,42.232],[80.28421,42.23573],[80.28538,42.24453],[80.28084,42.2474],[80.29009,42.26024],[80.28442,42.2725],[80.27943,42.28171],[80.26772,42.28504],[80.2601,42.2927],[80.26002,42.30418],[80.26994,42.3084],[80.27044,42.31305],[80.27893,42.31487],[80.2842,42.31882],[80.27997,42.32486],[80.2758,42.32357],[80.26901,42.32766],[80.26428,42.32768],[80.25955,42.33177],[80.25277,42.33434],[80.2469,42.34105],[80.23729,42.34055],[80.23659,42.34766],[80.23246,42.34869],[80.22971,42.35327],[80.2297,42.35734],[80.22623,42.35841],[80.2289,42.36309],[80.22599,42.36635],[80.23804,42.37998],[80.23674,42.38339],[80.2399,42.38782],[80.2355,42.39224],[80.23014,42.39172],[80.22753,42.39778],[80.23144,42.4004],[80.23399,42.40402],[80.23096,42.4052],[80.22588,42.40892],[80.22327,42.40874],[80.21558,42.41311],[80.21462,42.42388],[80.20514,42.42818],[80.21036,42.4373],[80.2094,42.44338],[80.21269,42.44718],[80.21255,42.453],[80.2083,42.45756],[80.20891,42.46238],[80.20679,42.46871],[80.21617,42.47299],[80.21937,42.48132],[80.2291,42.48711],[80.23516,42.49077],[80.23608,42.49898],[80.23939,42.50146],[80.24271,42.50546],[80.24946,42.50161],[80.25896,42.5003],[80.26571,42.50328],[80.27355,42.51465],[80.27452,42.51943],[80.25963,42.51518],[80.25299,42.51852],[80.25044,42.52328],[80.23896,42.52729],[80.23435,42.52572],[80.22209,42.53213],[80.21098,42.54494],[80.20124,42.55573],[80.20031,42.56113],[80.19942,42.56295],[80.19441,42.56579],[80.1892,42.57096],[80.18565,42.57877],[80.18197,42.58123],[80.17898,42.59053],[80.17942,42.59375],[80.17775,42.60363],[80.17196,42.60921],[80.1676,42.61894],[80.16255,42.62514],[80.16206,42.63146],[80.16765,42.63985],[80.16819,42.64435],[80.16804,42.64885],[80.17461,42.65329],[80.17338,42.66057],[80.17517,42.66471],[80.17421,42.66785],[80.1782,42.67232],[80.18424,42.67628],[80.19289,42.6832],[80.20334,42.68543],[80.20528,42.68879],[80.2165,42.69013],[80.21947,42.69197],[80.22748,42.69339],[80.22931,42.69582],[80.22565,42.70252],[80.22243,42.71339],[80.23296,42.73563],[80.25378,42.78258],[80.26145,42.82446],[80.27554,42.83807],[80.32241,42.8338],[80.33358,42.82953],[80.40571,42.83258],[80.4284,42.85275],[80.50291,42.87592],[80.54704,42.88449],[80.60215,42.89507],[80.59896,42.89399],[80.59714,42.89744],[80.59763,42.90032],[80.59503,42.9037],[80.59448,42.90658],[80.59094,42.91357],[80.58076,42.91699],[80.57791,42.9188],[80.57083,42.9199],[80.56118,42.92855],[80.545,42.93368],[80.53935,42.93609],[80.52737,42.9384],[80.51229,42.9387],[80.4979,42.94202],[80.49451,42.94456],[80.48837,42.9441],[80.47472,42.9502],[80.47488,42.95185],[80.45048,42.96268],[80.43738,42.96776],[80.43454,42.9714],[80.41581,42.98269],[80.41406,42.98568],[80.40443,42.99007],[80.39274,42.99647],[80.38858,43.00373],[80.3802,43.02175],[80.393,43.02644],[80.39481,43.03616],[80.39834,43.04035],[80.39843,43.04504],[80.40582,43.05091],[80.4091,43.05729],[80.43214,43.0644],[80.43995,43.06731],[80.44296,43.06771],[80.44838,43.07263],[80.45791,43.07554],[80.46539,43.07211],[80.47355,43.0722],[80.47759,43.06903],[80.48369,43.06987],[80.48628,43.0718],[80.49448,43.07404],[80.49925,43.07878],[80.50627,43.08003],[80.50986,43.08528],[80.52058,43.08741],[80.52559,43.09073],[80.52649,43.09405],[80.5327,43.09462],[80.53824,43.10019],[80.53983,43.09838],[80.54829,43.09707],[80.55372,43.10068],[80.5564,43.10228],[80.55737,43.10689],[80.5604,43.1105],[80.56059,43.1158],[80.57259,43.11859],[80.57772,43.12739],[80.58661,43.13648],[80.59202,43.13863],[80.60208,43.13514],[80.60938,43.14217],[80.61793,43.14247],[80.62304,43.14026],[80.6297,43.14105],[80.63094,43.14576],[80.63698,43.14746],[80.64199,43.14516],[80.64771,43.14796],[80.65754,43.14977],[80.66498,43.14881],[80.6731,43.14385],[80.68367,43.14419],[80.69905,43.14303],[80.70412,43.1463],[80.71537,43.13403],[80.72277,43.13406],[80.73316,43.14071],[80.74218,43.14736],[80.75086,43.14625],[80.76481,43.14569],[80.77041,43.1404],[80.78151,43.13762],[80.7853,43.14102],[80.78841,43.14243],[80.78808,43.14708],[80.79307,43.15542],[80.79188,43.16076],[80.79672,43.16407],[80.79399,43.17048],[80.79676,43.17338],[80.80349,43.17493],[80.80747,43.17699],[80.79759,43.1846],[80.79327,43.19383],[80.787,43.20069],[80.78621,43.20305],[80.78817,43.2079],[80.78315,43.2161],[80.7826,43.22756],[80.78617,43.23602],[80.79015,43.23634],[80.78974,43.23838],[80.78568,43.24039],[80.78163,43.24791],[80.77812,43.24919],[80.77255,43.25547],[80.77171,43.25904],[80.76454,43.26667],[80.76575,43.27286],[80.76972,43.27706],[80.77342,43.2799],[80.77094,43.28975],[80.77429,43.29634],[80.77393,43.30087],[80.77837,43.30389],[80.77939,43.30841],[80.77834,43.31193],[80.76631,43.31607],[80.75722,43.31539],[80.75018,43.3192],[80.74605,43.31598],[80.73162,43.31699],[80.71789,43.3175],[80.70414,43.31903],[80.69793,43.31562],[80.68931,43.32247],[80.68344,43.32781],[80.68324,43.33251],[80.68579,43.33721],[80.69427,43.34255],[80.69589,43.3459],[80.70202,43.35032],[80.70677,43.35674],[80.7053,43.36358],[80.71692,43.3725],[80.72343,43.37497],[80.73062,43.38993],[80.73473,43.39291],[80.733,43.40288],[80.73695,43.41111],[80.73246,43.41713],[80.73484,43.42265],[80.73412,43.43418],[80.74523,43.44197],[80.75634,43.44727],[80.75665,43.4517],[80.75284,43.45763],[80.75277,43.4655],[80.72043,43.52243],[80.68741,43.57738],[80.60436,43.6998],[80.52268,43.82223],[80.52105,43.83969],[80.51941,43.85914],[80.51202,43.86634],[80.50685,43.87479],[80.51161,43.8823],[80.50808,43.90624],[80.49279,43.91503],[80.48471,43.92778],[80.4732,43.93757],[80.47628,43.94758],[80.48143,43.95611],[80.47044,43.96823],[80.45945,43.97517],[80.45257,43.98805],[80.44911,44.00889],[80.45593,44.02998],[80.44936,44.03502],[80.45475,44.04509],[80.44494,44.06722],[80.4411,44.06905],[80.44511,44.07467],[80.41582,44.0978],[80.39477,44.11157],[80.39603,44.11763],[80.40043,44.12854],[80.40141,44.13256],[80.4053,44.14369],[80.40335,44.15409],[80.4021,44.16301],[80.40187,44.16765],[80.40005,44.17003],[80.39837,44.18415],[80.39875,44.19335],[80.39779,44.19402],[80.39737,44.20161],[80.40214,44.21391],[80.40416,44.2262],[80.40483,44.23333],[80.4031,44.24169],[80.40617,44.24907],[80.40478,44.25276],[80.40587,44.2921],[80.39817,44.30397],[80.39253,44.3124],[80.39097,44.3229],[80.3901,44.33439],[80.3875,44.33876],[80.38628,44.35442],[80.38415,44.37485],[80.38068,44.382],[80.37861,44.39495],[80.37723,44.41182],[80.37103,44.41761],[80.37255,44.4219],[80.36858,44.43208],[80.36681,44.44067],[80.35817,44.4478],[80.35523,44.4565],[80.34954,44.45982],[80.35115,44.47259],[80.34727,44.48046],[80.34791,44.48294],[80.35475,44.4903],[80.36159,44.49472],[80.36738,44.50405],[80.37061,44.51141],[80.36949,44.51852],[80.36836,44.52416],[80.371,44.52789],[80.3709,44.5326],[80.37647,44.53609],[80.37822,44.54567],[80.38081,44.55094],[80.37997,44.55329],[80.38688,44.5576],[80.38554,44.56143],[80.39316,44.5681],[80.39173,44.57595],[80.39376,44.5833],[80.39167,44.59114],[80.399,44.59509],[80.40506,44.60146],[80.41182,44.60881],[80.40642,44.61328],[80.40446,44.61725],[80.39873,44.62172],[80.39642,44.62912],[80.39103,44.63175],[80.38289,44.63585],[80.38172,44.6416],[80.37765,44.64309],[80.37425,44.64823],[80.36741,44.65484],[80.35805,44.65931],[80.35075,44.66573],[80.34894,44.67191],[80.34576,44.67468],[80.34402,44.67547],[80.34397,44.68048],[80.33633,44.69001],[80.33408,44.68953],[80.31242,44.70372],[80.2882,44.709],[80.2746,44.7141],[80.26236,44.71822],[80.24875,44.72015],[80.24298,44.72136],[80.23789,44.72062],[80.22806,44.72638],[80.21891,44.73067],[80.21079,44.73765],[80.20473,44.74219],[80.20257,44.74225],[80.19149,44.75108],[80.19299,44.75579],[80.19723,44.75757],[80.19748,44.76114],[80.19352,44.76486],[80.18216,44.7796],[80.17613,44.78326],[80.17627,44.78984],[80.17313,44.79422],[80.16878,44.79435],[80.16375,44.79934],[80.16673,44.80349],[80.1648,44.80911],[80.16149,44.81277],[80.16316,44.8201],[80.16758,44.82596],[80.16684,44.83913],[80.16405,44.84159],[80.15789,44.84193],[80.15311,44.83934],[80.15315,44.83515],[80.14804,44.83144],[80.14706,44.82676],[80.12655,44.82349],[80.12457,44.81631],[80.11823,44.81317],[80.11325,44.80955],[80.10381,44.81103],[80.09644,44.8135],[80.08734,44.81182],[80.07825,44.81257],[80.07277,44.80927],[80.05974,44.80742],[80.05288,44.80156],[80.04122,44.80057],[80.03301,44.80395],[80.01939,44.79845],[80.01893,44.79355],[80.0068,44.79073],[80.00108,44.78992],[79.99604,44.79155],[79.99334,44.79416],[79.99269,44.79822],[79.99758,44.80343],[79.99912,44.81628],[79.99654,44.82036],[79.99602,44.82396],[79.98914,44.82385],[79.98226,44.83055],[79.9771,44.83166],[79.97177,44.83659],[79.96781,44.83812],[79.96642,44.84179],[79.95773,44.84405],[79.95832,44.84851],[79.95569,44.85062],[79.95198,44.84997],[79.95032,44.84834],[79.94511,44.84962],[79.94394,44.85174],[79.94689,44.85775],[79.94592,44.86589],[79.95213,44.86837],[79.95422,44.87329],[79.96184,44.8768],[79.96368,44.87896],[79.96415,44.8816],[79.9538,44.88193],[79.94208,44.88616],[79.93105,44.88673],[79.92894,44.89266],[79.91992,44.89539],[79.91365,44.90104],[79.90385,44.90115],[79.89352,44.89457],[79.88594,44.89383],[79.88807,44.90317],[79.88196,44.91106],[79.89142,44.91801],[79.90225,44.92399],[79.90538,44.92867],[79.91506,44.92731],[79.92447,44.93142],[79.92957,44.93293],[79.93467,44.9325],[79.93894,44.93776],[79.9432,44.93815],[79.94816,44.94389],[79.9448,44.94749],[79.94483,44.95196],[79.95309,44.95322],[79.95619,44.95718],[79.95654,44.96163],[79.96237,44.96312],[79.96959,44.96607],[79.9744,44.96202],[79.9846,44.96702],[79.9893,44.97882],[80.01382,44.98057],[80.01406,44.98521],[80.01831,44.98825],[80.01911,44.9913],[80.0276,44.99327],[80.03149,44.9963],[80.03412,44.99637],[80.03332,45.00031],[80.03905,45.00299],[80.0458,45.00178],[80.04972,45.00367],[80.05433,45.01235],[80.05619,45.01423],[80.06054,45.01283],[80.0649,45.01336],[80.07566,45.01007],[80.0751,45.00727],[80.08237,45.00756],[80.08497,45.00504],[80.09108,45.00718],[80.09719,45.00786],[80.09396,45.02712],[80.08798,45.02939],[80.0867,45.03307],[80.09092,45.03773],[80.08896,45.04626],[80.09689,45.04761],[80.10618,45.04531],[80.1134,45.0489],[80.11788,45.04132],[80.12286,45.03948],[80.12785,45.03957],[80.13023,45.04504],[80.13467,45.04711],[80.13944,45.0532],[80.13935,45.05761],[80.14893,45.05303],[80.15232,45.05329],[80.15674,45.04725],[80.16974,45.03757],[80.18113,45.0426],[80.18528,45.03505],[80.19149,45.02846],[80.19566,45.02717],[80.20259,45.03025],[80.21363,45.02289],[80.23189,45.03374],[80.2358,45.02972],[80.23972,45.02715],[80.25463,45.04109],[80.26002,45.0483],[80.2613,45.05405],[80.26667,45.05399],[80.27712,45.05931],[80.2855,45.06123],[80.29285,45.06655],[80.29207,45.06509],[80.31296,45.06824],[80.31722,45.07006],[80.32561,45.06945],[80.32982,45.0636],[80.32815,45.06019],[80.33041,45.0546],[80.33335,45.05338],[80.33859,45.04584],[80.34521,45.04023],[80.35955,45.03971],[80.37114,45.04308],[80.37454,45.041],[80.37898,45.04142],[80.38136,45.03989],[80.38785,45.04558],[80.39256,45.04445],[80.39869,45.04704],[80.40276,45.04721],[80.40782,45.05773],[80.41749,45.06108],[80.42717,45.06638],[80.43338,45.07254],[80.43821,45.0758],[80.44304,45.08312],[80.44236,45.09045],[80.43792,45.09535],[80.43759,45.09734],[80.44545,45.10024],[80.44918,45.1041],[80.45635,45.10626],[80.46215,45.11231],[80.47821,45.11398],[80.48418,45.12329],[80.48877,45.12679],[80.49728,45.11865],[80.49923,45.11395],[80.50599,45.11118],[80.50966,45.106],[80.51471,45.10517],[80.52802,45.10745],[80.54806,45.11101],[80.55774,45.11109],[80.56193,45.11263],[80.57528,45.10967],[80.58177,45.10573],[80.59993,45.1047],[80.60292,45.10736],[80.60729,45.10904],[80.6148,45.10782],[80.62024,45.11532],[80.62466,45.11822],[80.63305,45.11459],[80.63724,45.11616],[80.63659,45.11913],[80.64741,45.12132],[80.65549,45.12158],[80.66005,45.12461],[80.66666,45.12426],[80.67065,45.12711],[80.67739,45.12851],[80.6792,45.13227],[80.68798,45.13398],[80.6967,45.13241],[80.70518,45.14422],[80.71148,45.14625],[80.71572,45.14585],[80.72444,45.15082],[80.72605,45.15403],[80.72995,45.1537],[80.7319,45.15741],[80.73836,45.15757],[80.74346,45.16015],[80.75597,45.15319],[80.76299,45.15156],[80.76864,45.14606],[80.77497,45.14297],[80.78214,45.14625],[80.78726,45.15049],[80.79196,45.14894],[80.79461,45.15078],[80.80412,45.14681],[80.82467,45.14241],[80.83423,45.13969],[80.84509,45.13062],[80.85157,45.1266],[80.86012,45.125],[80.86624,45.12761],[80.87764,45.13127],[80.88972,45.12427],[80.89759,45.12509],[80.90007,45.12953],[80.90461,45.13301],[80.90709,45.13696],[80.91163,45.13899],[80.91468,45.14368],[80.92117,45.14499],[80.92797,45.15728],[80.94203,45.15842],[80.94648,45.16101],[80.95161,45.15997],[80.95743,45.16667],[80.96736,45.16757],[80.97383,45.16333],[80.98531,45.16072],[80.98855,45.16102],[80.99532,45.15883],[81.00575,45.16209],[81.01068,45.16196],[81.01658,45.16455],[81.02454,45.16328],[81.02938,45.16603],[81.03627,45.16684],[81.04557,45.17056],[81.05091,45.1763],[81.05694,45.17767],[81.06276,45.17256],[81.07064,45.1718],[81.07543,45.17927],[81.07491,45.18489],[81.07843,45.18673],[81.08332,45.19389],[81.0874,45.19627],[81.09353,45.19622],[81.1007,45.19956],[81.10924,45.2],[81.10777,45.20304],[81.10698,45.20947],[81.10336,45.21023],[81.09954,45.21708],[81.107,45.22206],[81.11135,45.21741],[81.12005,45.21508],[81.12955,45.21827],[81.13218,45.21807],[81.13859,45.20906],[81.14179,45.20988],[81.14912,45.20899],[81.15644,45.20521],[81.16376,45.2065],[81.17052,45.2144],[81.16628,45.22424],[81.17292,45.22605],[81.18058,45.22622],[81.18757,45.2322],[81.20496,45.2369],[81.21171,45.23326],[81.22264,45.23832],[81.22121,45.24484],[81.22831,45.24817],[81.2382,45.23995],[81.25036,45.24189],[81.25289,45.23814],[81.26102,45.23627],[81.26915,45.23681],[81.27522,45.24002],[81.28128,45.23935],[81.28838,45.2428],[81.29468,45.24742],[81.29892,45.24817],[81.30264,45.24673],[81.30704,45.24673],[81.3075,45.25399],[81.31791,45.25424],[81.33176,45.25641],[81.34252,45.25835],[81.3519,45.26077],[81.35676,45.25902],[81.36231,45.26065],[81.36887,45.25446],[81.37679,45.25262],[81.38075,45.25786],[81.38128,45.26358],[81.38902,45.26931],[81.38921,45.27068],[81.40099,45.27588],[81.40208,45.27896],[81.4087,45.28094],[81.4167,45.28099],[81.42102,45.28301],[81.42641,45.27955],[81.43426,45.28],[81.43799,45.27754],[81.4348,45.27408],[81.43767,45.26728],[81.45043,45.26218],[81.45613,45.26423],[81.45977,45.26337],[81.46567,45.26643],[81.46952,45.27095],[81.47269,45.27159],[81.47791,45.27514],[81.47987,45.27355],[81.49658,45.27582],[81.4982,45.28147],[81.50633,45.28169],[81.51516,45.28046],[81.52113,45.28186],[81.52315,45.28858],[81.52998,45.2953],[81.52785,45.30052],[81.53217,45.3059],[81.53993,45.30548],[81.54788,45.30101],[81.55309,45.30476],[81.56693,45.30597],[81.5746,45.30718],[81.57071,45.3154],[81.56842,45.31806],[81.56888,45.32555],[81.57826,45.32824],[81.58541,45.33193],[81.59119,45.33996],[81.6006,45.34205],[81.61276,45.34172],[81.61958,45.35153],[81.62434,45.35169],[81.6315,45.35595],[81.63934,45.35635],[81.65011,45.35012],[81.65523,45.35133],[81.66962,45.35134],[81.67815,45.35497],[81.67706,45.36245],[81.67941,45.36415],[81.68634,45.36345],[81.69464,45.36902],[81.70191,45.3653],[81.7027,45.36208],[81.71172,45.35789],[81.7219,45.36291],[81.72837,45.36326],[81.73414,45.36601],[81.73059,45.37224],[81.73184,45.37461],[81.73659,45.37371],[81.74789,45.37302],[81.75164,45.37474],[81.75913,45.37239],[81.76494,45.37484],[81.76869,45.37777],[81.78562,45.36782],[81.78997,45.36382],[81.79317,45.3594],[81.80233,45.35671],[81.80668,45.35547],[81.80914,45.35146],[81.81998,45.34029],[81.8206,45.33712],[81.8267,45.33394],[81.83122,45.32656],[81.83039,45.3178],[81.8365,45.31149],[81.84333,45.31002],[81.84398,45.3047],[81.85417,45.30156],[81.85543,45.29553],[81.86893,45.28792],[81.87969,45.2837],[81.88335,45.27863],[81.89926,45.25884],[81.90858,45.24483],[81.92203,45.22889],[81.93874,45.23546],[81.95361,45.23512],[81.97055,45.2343],[81.97547,45.23539],[81.97971,45.23866],[81.98526,45.2363],[81.99493,45.2325],[82.00597,45.23461],[82.00944,45.23301],[82.017,45.23777],[82.02628,45.24005],[82.04036,45.24668],[82.04174,45.25365],[82.04506,45.25414],[82.0531,45.25028],[82.06457,45.24641],[82.06746,45.2498],[82.07162,45.24932],[82.07372,45.24594],[82.07734,45.2469],[82.08165,45.24594],[82.08493,45.24714],[82.09095,45.24545],[82.08672,45.23785],[82.08112,45.23507],[82.08295,45.22909],[82.08204,45.22312],[82.08353,45.22004],[82.08839,45.21874],[82.09769,45.20769],[82.10081,45.20245],[82.11572,45.20198],[82.12445,45.21118],[82.14066,45.2165],[82.15549,45.22231],[82.17046,45.22122],[82.18475,45.22497],[82.19135,45.22329],[82.20076,45.2285],[82.21086,45.23274],[82.23313,45.23445],[82.24312,45.23119],[82.24983,45.23585],[82.25722,45.23422],[82.26758,45.24124],[82.27526,45.24126],[82.29014,45.23257],[82.29999,45.22267],[82.31384,45.22086],[82.32356,45.21131],[82.33286,45.20935],[82.3401,45.20884],[82.35352,45.2035],[82.36488,45.20154],[82.37382,45.2018],[82.38275,45.19965],[82.39101,45.19486],[82.39908,45.19283],[82.41677,45.19176],[82.42949,45.1877],[82.44925,45.18605],[82.45596,45.18731],[82.47384,45.17676],[82.56202,45.20412],[82.58223,45.22012],[82.58786,45.34449],[82.54268,45.42125],[82.43846,45.45952],[82.27888,45.53544],[82.27085,45.55042],[82.26591,45.57142],[82.25786,45.61594],[82.27042,45.62827],[82.27609,45.63187],[82.28314,45.64844],[82.28486,45.67532],[82.28169,45.68054],[82.28745,45.7083],[82.29904,45.71928],[82.30994,45.73792],[82.31389,45.75796],[82.31854,45.76314],[82.32849,45.77142],[82.33776,45.78065],[82.34189,45.79204],[82.34532,45.79625],[82.34292,45.80993],[82.34395,45.82457],[82.34705,45.83279],[82.34603,45.83815],[82.33882,45.84996],[82.33437,45.8656],[82.33026,45.88636],[82.33423,45.89109],[82.33557,45.89645],[82.33896,45.90182],[82.34099,45.9079],[82.34098,45.91694],[82.33548,45.93459],[82.3358,45.9393],[82.37593,45.96422],[82.39342,45.96665],[82.41023,45.96908],[82.42669,45.96722],[82.4562,45.97682],[82.47764,46.04964],[82.51213,46.15391],[82.55153,46.21433],[82.56759,46.24006],[82.57437,46.25012],[82.58116,46.25875],[82.60563,46.29401],[82.63697,46.34635],[82.71362,46.47395],[82.72197,46.48575],[82.72757,46.49803],[82.73466,46.50824],[82.73901,46.51846],[82.74496,46.5351],[82.76986,46.60049],[82.77416,46.63568],[82.77384,46.65937],[82.77798,46.66416],[82.78623,46.68025],[82.78831,46.69359],[82.82407,46.74598],[82.83474,46.75925],[82.84007,46.768],[82.8527,46.78695],[82.86141,46.79713],[82.86463,46.80308],[82.86672,46.81669],[82.87119,46.82467],[82.87567,46.8397],[82.89426,46.88383],[82.90191,46.8951],[82.90819,46.90897],[82.91927,46.92893],[82.91966,46.93842],[82.92131,46.94046],[82.92124,46.95192],[82.92529,46.96104],[82.92859,46.96709],[82.93174,46.9717],[82.93009,46.97819],[82.93201,46.9798],[82.92989,46.99302],[82.93672,47.00431],[82.93567,47.00691],[82.93858,47.01079],[82.93806,47.01607],[82.94216,47.01846],[82.95107,47.02038],[82.95758,47.02497],[82.96272,47.0319],[82.96718,47.03602],[82.96906,47.04229],[82.96888,47.04856],[82.97453,47.05166],[82.97743,47.05475],[82.98033,47.05527],[82.99216,47.06328],[82.99332,47.07],[82.99802,47.07781],[82.99969,47.08943],[83.00258,47.10014],[83.00547,47.10338],[83.0064,47.10616],[83.00938,47.10894],[83.00825,47.11242],[83.01003,47.11462],[83.00927,47.11643],[83.00683,47.11791],[83.00267,47.12057],[83.00912,47.12728],[83.01904,47.13052],[83.01971,47.13307],[83.01832,47.13493],[83.01973,47.13631],[83.01845,47.14212],[83.01141,47.14276],[83.0121,47.1469],[83.02103,47.15312],[83.02446,47.15621],[83.02313,47.15994],[83.02867,47.16216],[83.02601,47.16483],[83.02713,47.16751],[83.02618,47.16972],[83.02687,47.17119],[83.02894,47.17219],[83.02971,47.17508],[83.02705,47.17937],[83.02709,47.18198],[83.02405,47.18693],[83.02587,47.18958],[83.0285,47.19172],[83.02638,47.19885],[83.02529,47.19969],[83.02523,47.20187],[83.02814,47.20448],[83.02659,47.21128],[83.02382,47.21416],[83.02373,47.21496],[83.02741,47.21622],[83.02848,47.21983],[83.03039,47.22116],[83.03195,47.22367],[83.03412,47.22249],[83.03726,47.21876],[83.04143,47.21503],[83.04252,47.21494],[83.04806,47.22254],[83.05086,47.2235],[83.05194,47.2254],[83.05743,47.22507],[83.06361,47.22801],[83.07252,47.22783],[83.08384,47.22881],[83.08847,47.2251],[83.09379,47.22373],[83.10992,47.22949],[83.11712,47.22966],[83.13462,47.23379],[83.14337,47.23422],[83.15074,47.23465],[83.15854,47.22835],[83.17321,47.22018],[83.1841,47.21994],[83.19362,47.21876],[83.20142,47.21549],[83.20785,47.21175],[83.20883,47.20603],[83.20638,47.19845],[83.21425,47.19209],[83.22075,47.1876],[83.22553,47.18871],[83.23581,47.18935],[83.23767,47.18742],[83.23541,47.18082],[83.24414,47.17703],[83.26533,47.1756],[83.28308,47.17557],[83.28847,47.18232],[83.2958,47.18173],[83.30381,47.17788],[83.30731,47.17747],[83.31835,47.17145],[83.33489,47.17034],[83.33973,47.17212],[83.35278,47.1735],[83.35485,47.17721],[83.36379,47.17763],[83.36574,47.17517],[83.36091,47.17257],[83.36363,47.16764],[83.36429,47.1634],[83.37458,47.15802],[83.38006,47.15509],[83.38246,47.15176],[83.38624,47.15077],[83.38876,47.14639],[83.38785,47.14201],[83.40754,47.12875],[83.40845,47.12353],[83.41303,47.12161],[83.41315,47.11596],[83.4292,47.11452],[83.42755,47.1203],[83.43002,47.1242],[83.44155,47.12487],[83.45034,47.13161],[83.45775,47.13157],[83.46201,47.12724],[83.47107,47.12805],[83.46634,47.12542],[83.46259,47.12176],[83.46519,47.11877],[83.48082,47.11764],[83.48433,47.11291],[83.48127,47.11031],[83.48446,47.10908],[83.49451,47.11018],[83.49816,47.10687],[83.50593,47.10965],[83.50958,47.10774],[83.51101,47.10084],[83.51481,47.09786],[83.51587,47.09487],[83.5276,47.09148],[83.52559,47.08574],[83.53536,47.0827],[83.5447,47.08445],[83.54993,47.08012],[83.56602,47.07823],[83.56446,47.06946],[83.55877,47.06068],[83.5631,47.05644],[83.5688,47.05501],[83.57334,47.0601],[83.58063,47.0605],[83.60247,47.05439],[83.60721,47.05133],[83.60614,47.0463],[83.61351,47.04869],[83.62234,47.04872],[83.62705,47.04641],[83.63905,47.04354],[83.64333,47.04421],[83.65611,47.04197],[83.66045,47.03921],[83.67233,47.03833],[83.68055,47.03499],[83.69563,47.0354],[83.70074,47.03013],[83.70141,47.02094],[83.69617,47.01759],[83.70672,47.01751],[83.71144,47.02306],[83.7186,47.02512],[83.73248,47.02756],[83.74018,47.03328],[83.74731,47.03327],[83.75431,47.02578],[83.75884,47.02437],[83.76419,47.02718],[83.78369,47.0239],[83.79447,47.01688],[83.7978,47.01876],[83.8055,47.01536],[83.81251,47.01665],[83.81714,47.01334],[83.82795,47.01097],[83.83738,47.00369],[83.83459,46.99917],[83.83524,46.99419],[83.83882,46.99767],[83.85201,46.99506],[83.85987,46.99734],[83.87118,46.99424],[83.87032,46.98777],[83.88593,46.98505],[83.88994,46.98851],[83.89438,46.98492],[83.90568,46.98087],[83.90256,46.97564],[83.91645,46.9742],[83.92134,46.97699],[83.92187,46.9805],[83.92557,46.98436],[83.92927,46.98588],[83.93309,46.98447],[83.9395,46.98699],[83.94728,46.99092],[83.95575,46.99121],[83.95873,46.98635],[83.95896,46.9822],[83.97001,46.98549],[83.97625,46.99019],[83.98248,46.99232],[83.98597,46.99538],[84.00824,46.98906],[84.01089,46.98209],[84.01496,46.98142],[84.01765,46.98356],[84.03129,46.97776],[84.04188,46.97393],[84.04512,46.97037],[84.05385,46.96822],[84.05743,46.96928],[84.06032,46.97268],[84.07203,46.97071],[84.07825,46.96922],[84.10437,46.96913],[84.11504,46.96675],[84.12037,46.96883],[84.12501,46.96764],[84.13058,46.97051],[84.1416,46.97359],[84.15071,46.97881],[84.15569,46.98075],[84.15828,46.98081],[84.15888,46.98834],[84.1647,46.98999],[84.1664,46.99445],[84.17702,46.99352],[84.17734,46.99681],[84.1871,46.99807],[84.18793,47.00028],[84.19322,46.9985],[84.20195,47.00187],[84.21222,47.00103],[84.22524,46.99738],[84.23205,47.00132],[84.2479,46.99837],[84.25757,47.00151],[84.27995,47.00044],[84.28289,46.99709],[84.28721,47.00171],[84.30003,46.99487],[84.30644,46.99801],[84.31062,46.99634],[84.31342,46.99935],[84.32,46.99674],[84.33002,47.00303],[84.33811,47.00047],[84.35033,46.99884],[84.35554,47.00075],[84.38218,46.99585],[84.39234,47.00265],[84.39803,47.00056],[84.40054,47.00397],[84.41586,47.00497],[84.43657,47.00828],[84.44762,47.00759],[84.45866,47.00831],[84.45807,47.0043],[84.46161,46.99796],[84.45999,46.99677],[84.46044,46.99277],[84.4778,46.99062],[84.48487,46.99221],[84.4918,46.98534],[84.5011,46.97932],[84.50971,46.97472],[84.51492,46.98048],[84.54279,46.98391],[84.55106,46.98879],[84.55452,46.99366],[84.56466,46.99493],[84.57145,46.99814],[84.58099,46.99901],[84.59533,46.99964],[84.60422,46.99738],[84.61379,46.99793],[84.61607,46.99655],[84.62384,46.99752],[84.62944,46.99776],[84.63092,46.9952],[84.64008,46.99637],[84.64511,46.99896],[84.65478,46.99931],[84.66135,47.00178],[84.67104,46.99746],[84.67179,47.00158],[84.6788,47.00325],[84.69419,47.00473],[84.71054,47.00908],[84.71373,47.00654],[84.72481,47.00541],[84.75237,47.00522],[84.75427,46.99991],[84.76121,46.9989],[84.77583,46.99117],[84.77665,46.98493],[84.78118,46.98251],[84.7809,46.97634],[84.78263,46.97326],[84.78574,46.97346],[84.79777,46.9664],[84.80482,46.96334],[84.81461,46.95793],[84.82292,46.96038],[84.84664,46.95434],[84.84746,46.95153],[84.85034,46.95107],[84.85061,46.9478],[84.85732,46.94642],[84.86065,46.9443],[84.85957,46.93949],[84.8578,46.92765],[84.86281,46.92634],[84.87116,46.92006],[84.8729,46.91696],[84.87808,46.91105],[84.88774,46.90815],[84.88932,46.90684],[84.89502,46.90413],[84.89613,46.90058],[84.90526,46.89833],[84.90583,46.89613],[84.91464,46.8897],[84.91486,46.87976],[84.91921,46.87927],[84.92287,46.87549],[84.93019,46.87497],[84.93342,46.87069],[84.94353,46.86219],[84.9526,46.86354],[84.96503,46.86703],[84.96369,46.87042],[84.96612,46.87282],[84.97316,46.87214],[84.97884,46.87287],[84.97697,46.87751],[84.97716,46.88168],[84.97391,46.88515],[84.9741,46.88862],[84.9783,46.89076],[84.97814,46.89552],[84.98074,46.89652],[84.97974,46.90416],[84.98012,46.91063],[84.98394,46.91522],[84.99396,46.92116],[85.00172,46.92179],[85.00216,46.92562],[85.00604,46.9257],[85.01916,46.92368],[85.03364,46.92165],[85.04854,46.92768],[85.06045,46.92741],[85.06298,46.9254],[85.06664,46.9251],[85.06825,46.92855],[85.07353,46.93142],[85.07779,46.93077],[85.07777,46.93777],[85.08256,46.94008],[85.08323,46.94499],[85.08597,46.94895],[85.07841,46.95386],[85.07909,46.9583],[85.08847,46.95802],[85.09441,46.95869],[85.09669,46.9647],[85.10881,46.96735],[85.11143,46.97136],[85.1168,46.97117],[85.11999,46.9703],[85.12862,46.97481],[85.1273,46.97908],[85.12941,46.98101],[85.13397,46.98135],[85.14608,46.98919],[85.15339,46.98591],[85.15945,46.98684],[85.16619,46.98637],[85.17625,46.99292],[85.17876,46.9962],[85.17556,46.99971],[85.17578,47.00369],[85.18185,47.00416],[85.18688,47.00674],[85.18796,47.00943],[85.19407,47.01198],[85.194,47.01687],[85.19756,47.02065],[85.2018,47.02631],[85.20411,47.03248],[85.21216,47.03873],[85.21109,47.04516],[85.21514,47.05192],[85.22022,47.05344],[85.22482,47.05163],[85.22506,47.04909],[85.23547,47.04993],[85.24109,47.05403],[85.24788,47.05252],[85.25399,47.05288],[85.26148,47.04973],[85.26628,47.05164],[85.26901,47.05448],[85.27467,47.05548],[85.27484,47.05882],[85.27243,47.06551],[85.27653,47.06952],[85.27652,47.06622],[85.28166,47.06363],[85.28475,47.06432],[85.28953,47.06334],[85.29908,47.06464],[85.30378,47.05696],[85.30684,47.05036],[85.31196,47.0489],[85.31949,47.04394],[85.32426,47.04319],[85.33,47.04707],[85.3394,47.04735],[85.34173,47.05446],[85.34777,47.05465],[85.35062,47.05205],[85.36651,47.05226],[85.37691,47.04732],[85.38387,47.0466],[85.38957,47.04854],[85.39457,47.04814],[85.40596,47.05202],[85.41373,47.06051],[85.42366,47.06053],[85.42725,47.05727],[85.43282,47.05727],[85.43839,47.06055],[85.45347,47.05987],[85.46168,47.06386],[85.46698,47.05952],[85.47547,47.05735],[85.48122,47.05284],[85.49732,47.05352],[85.50482,47.05628],[85.51681,47.05427],[85.53017,47.05085],[85.5322,47.04907],[85.53836,47.04888],[85.54144,47.05183],[85.54727,47.05338],[85.55471,47.0507],[85.55871,47.05037],[85.56167,47.06216],[85.56521,47.06548],[85.56738,47.07114],[85.57811,47.09519],[85.57613,47.1003],[85.57965,47.11149],[85.58616,47.11417],[85.58375,47.11919],[85.57447,47.12422],[85.57787,47.13871],[85.57941,47.14193],[85.58988,47.14701],[85.59348,47.15209],[85.61012,47.16044],[85.6132,47.16524],[85.62676,47.17371],[85.63045,47.17911],[85.64032,47.18451],[85.64351,47.19245],[85.64683,47.19502],[85.64671,47.19853],[85.64967,47.20554],[85.65743,47.20859],[85.65971,47.21351],[85.6791,47.21965],[85.682,47.2223],[85.68621,47.22992],[85.68556,47.23606],[85.68936,47.2403],[85.68782,47.24172],[85.68835,47.24593],[85.68233,47.24572],[85.67974,47.25064],[85.68746,47.26232],[85.69105,47.26421],[85.69413,47.27192],[85.69378,47.27777],[85.69789,47.28316],[85.69856,47.28854],[85.69131,47.29774],[85.68338,47.30507],[85.68527,47.30831],[85.67446,47.3111],[85.67327,47.3218],[85.68496,47.32972],[85.68565,47.34264],[85.68805,47.35555],[85.68703,47.36056],[85.68943,47.36562],[85.69819,47.36583],[85.69947,47.37244],[85.70214,47.38138],[85.69513,47.3866],[85.68675,47.39322],[85.68524,47.40007],[85.68236,47.40692],[85.68661,47.40875],[85.68275,47.42962],[85.67722,47.43622],[85.67375,47.4419],[85.66543,47.44999],[85.65001,47.45358],[85.64683,47.45806],[85.64022,47.4644],[85.63868,47.4678],[85.63217,47.4746],[85.62531,47.48587],[85.61642,47.49125],[85.61235,47.49935],[85.60829,47.50885],[85.6104,47.51185],[85.60771,47.52273],[85.60953,47.52549],[85.60861,47.53102],[85.6181,47.54419],[85.61866,47.54854],[85.62709,47.55762],[85.62804,47.56517],[85.62899,47.57736],[85.6357,47.58644],[85.55278,47.98125],[85.53917,47.98438],[85.53998,47.98934],[85.5401,47.99661],[85.54435,48.00112],[85.5469,48.01041],[85.54034,48.01983],[85.5279,48.02487],[85.5271,48.02722],[85.53249,48.03049],[85.53022,48.0352],[85.53048,48.04277],[85.54113,48.05332],[85.53669,48.0717],[85.54665,48.08123],[85.54682,48.09929],[85.55137,48.10718],[85.54953,48.11502],[85.55043,48.12837],[85.55368,48.12888],[85.55737,48.12479],[85.55899,48.13169],[85.56411,48.13226],[85.55551,48.13582],[85.55376,48.13937],[85.56916,48.15724],[85.57439,48.15667],[85.57837,48.16532],[85.58277,48.17422],[85.58634,48.18279],[85.5851,48.19136],[85.59033,48.1908],[85.58847,48.19693],[85.59647,48.19701],[85.61077,48.20552],[85.62233,48.20259],[85.63424,48.2317],[85.64913,48.23871],[85.65039,48.24496],[85.65823,48.24146],[85.66661,48.25868],[85.67527,48.26226],[85.67239,48.26794],[85.67472,48.27146],[85.67774,48.27133],[85.68211,48.27932],[85.68291,48.29085],[85.6919,48.30073],[85.69124,48.32965],[85.70259,48.34274],[85.71325,48.34898],[85.71074,48.3529],[85.71224,48.36125],[85.72328,48.36702],[85.72519,48.37154],[85.74193,48.38224],[85.75099,48.39284],[85.7573,48.40297],[85.76367,48.40454],[85.79201,48.41818],[85.80521,48.4156],[85.81765,48.41784],[85.83005,48.42238],[85.83213,48.42601],[85.86475,48.43079],[85.88519,48.42954],[85.89884,48.4321],[85.90532,48.4352],[85.91386,48.43603],[86.05821,48.43824],[86.2248,48.43205],[86.23428,48.43306],[86.23751,48.43889],[86.24565,48.44591],[86.25035,48.45201],[86.25378,48.45427],[86.25996,48.4547],[86.2682,48.45081],[86.27232,48.45876],[86.28123,48.46278],[86.2819,48.47173],[86.29699,48.47726],[86.29698,48.48253],[86.30144,48.48699],[86.29904,48.49008],[86.32211,48.48798],[86.32403,48.49376],[86.33014,48.49369],[86.32942,48.49092],[86.35001,48.49148],[86.36854,48.49296],[86.36853,48.50171],[86.37746,48.50071],[86.37883,48.49288],[86.38913,48.49052],[86.3905,48.48752],[86.39393,48.48534],[86.39599,48.48106],[86.40766,48.47906],[86.58255,48.53947],[86.58937,48.542],[86.59503,48.55093],[86.59656,48.55985],[86.59466,48.56719],[86.59714,48.56882],[86.59701,48.57236],[86.59413,48.57544],[86.59837,48.57644],[86.5985,48.58107],[86.60102,48.5823],[86.60149,48.58489],[86.6086,48.58507],[86.61228,48.59797],[86.61948,48.59793],[86.62823,48.6054],[86.63423,48.61151],[86.63421,48.6264],[86.64154,48.62919],[86.6689,48.63149],[86.66987,48.63355],[86.67654,48.63367],[86.6809,48.63668],[86.69145,48.64287],[86.68919,48.64778],[86.69724,48.65269],[86.69876,48.66122],[86.7002,48.66844],[86.71226,48.67658],[86.72568,48.68337],[86.73912,48.69669],[86.75392,48.70775],[86.77147,48.72018],[86.77803,48.73509],[86.7709,48.75054],[86.76775,48.75859],[86.76253,48.76211],[86.75142,48.77821],[86.75648,48.79152],[86.76154,48.80392],[86.76862,48.80899],[86.7908,48.81632],[86.8044,48.82501],[86.81869,48.83234],[86.81814,48.84428],[86.81691,48.85576],[86.8015,48.86711],[86.7902,48.87258],[86.78342,48.8763],[86.77663,48.88883],[86.75164,48.89594],[86.75187,48.90273],[86.74112,48.91269],[86.73163,48.9371],[86.73038,48.94979],[86.72701,48.95028],[86.7272,48.95863],[86.73013,48.97194],[86.72723,48.98006],[86.7299,48.98345],[86.72776,48.99134],[86.74861,49.01086],[86.76946,49.02633],[86.78106,49.02806],[86.79511,49.0386],[86.83131,49.05062],[86.84726,49.06557],[86.84221,49.08587],[86.84472,49.10167],[86.85793,49.11417],[86.87526,49.12127],[86.87903,49.12842],[86.89945,49.13513],[86.94142,49.13029],[86.9573,49.13174],[86.97893,49.13698],[86.99884,49.14311],[87.02251,49.13834],[87.04396,49.13123],[87.05991,49.12929],[87.06463,49.12662],[87.06728,49.13024],[87.07395,49.13258],[87.08192,49.13083],[87.08886,49.13761],[87.10014,49.14004],[87.10078,49.14786],[87.10554,49.15118],[87.11558,49.15253],[87.12562,49.15254],[87.12995,49.1512],[87.13978,49.15075],[87.14137,49.15233],[87.15051,49.15076],[87.15273,49.14482],[87.1693,49.13893],[87.17415,49.1398],[87.18515,49.13867],[87.18861,49.14247],[87.1935,49.14161],[87.19976,49.14344],[87.20373,49.14008],[87.2077,49.13537],[87.21442,49.13246],[87.21564,49.12864],[87.21308,49.12292],[87.22348,49.11984],[87.2277,49.11945],[87.22892,49.11463],[87.23451,49.11413],[87.23804,49.11138],[87.2425,49.11321],[87.25383,49.11235],[87.26035,49.11463],[87.27253,49.1142],[87.27725,49.11803],[87.28197,49.11782],[87.28886,49.11457],[87.29506,49.11357],[87.304,49.10785],[87.32256,49.10438],[87.32156,49.10081],[87.33308,49.09902],[87.34666,49.10218],[87.35119,49.10089],[87.3561,49.09618],[87.36101,49.09462],[87.36533,49.09689],[87.38161,49.09272],[87.38447,49.0891],[87.39764,49.08637],[87.39925,49.08321],[87.40497,49.08049],[87.40663,49.07531],[87.42477,49.07373],[87.42746,49.07125],[87.43565,49.07237],[87.43954,49.07442],[87.44619,49.08006],[87.4562,49.08457],[87.46073,49.08548],[87.46634,49.08865],[87.47722,49.0896],[87.49017,49.0865],[87.49939,49.08968],[87.50312,49.09286],[87.50445,49.09604],[87.50509,49.10057],[87.50741,49.10401],[87.5056,49.11015],[87.50645,49.11658],[87.49357,49.1266],[87.4908,49.13228],[87.49353,49.13885],[87.50575,49.13786],[87.52079,49.14141],[87.52347,49.14452],[87.53439,49.14065],[87.54187,49.14173],[87.54905,49.14003],[87.55485,49.14012],[87.56168,49.13594],[87.56645,49.13536],[87.56941,49.14156],[87.57638,49.14264],[87.58197,49.14103],[87.58929,49.14604],[87.59797,49.14925],[87.60643,49.14862],[87.61009,49.14528],[87.61452,49.14422],[87.61758,49.14496],[87.6203,49.14772],[87.62714,49.15003],[87.63294,49.14796],[87.64081,49.14859],[87.64629,49.15081],[87.64971,49.15348],[87.65879,49.15144],[87.67131,49.15164],[87.68005,49.15896],[87.68339,49.16375],[87.68674,49.17168],[87.69519,49.17595],[87.70399,49.17618],[87.71982,49.17731],[87.73703,49.17574],[87.74586,49.1734],[87.75127,49.16747],[87.77083,49.17266],[87.77383,49.17654],[87.77854,49.17891],[87.78695,49.17417],[87.80093,49.17],[87.81183,49.16751],[87.81646,49.16982],[87.80908,49.15612],[87.82092,49.14241],[87.82812,49.14734],[87.8645,49.11048],[87.83838,49.09067],[87.83833,49.08165],[87.85063,49.07262],[87.84855,49.06182],[87.83273,49.0618],[87.82977,49.04373],[87.84339,49.03607],[87.85702,49.03561],[87.88026,49.01895],[87.86853,49.00612],[87.87228,48.9907],[87.90025,48.98479],[87.89775,48.97463],[87.87453,48.97495],[87.86841,48.96069],[87.87328,48.94824],[87.84401,48.94555],[87.812,48.94827],[87.78007,48.92674],[87.75192,48.93327],[87.75981,48.91627],[87.73475,48.88393],[87.74231,48.86799],[87.7835,48.86957],[87.79312,48.84054],[87.81372,48.8432],[87.82333,48.82374],[87.79449,48.82055],[87.83157,48.79865],[87.8556,48.80308],[87.89508,48.78087],[87.93457,48.75323],[87.9689,48.77286],[88.02031,48.7503],[88.05524,48.71325],[88.0894,48.7116],[88.06314,48.68007],[88.01156,48.65071],[88.02589,48.63041],[87.97336,48.60635],[87.95929,48.59319],[87.97396,48.56986],[88.00716,48.56676],[88.02387,48.54911],[88.05695,48.54211],[88.07623,48.5486],[88.10236,48.54185],[88.112,48.52419],[88.13546,48.52992],[88.18153,48.49548],[88.21935,48.5029],[88.29134,48.4857],[88.35235,48.45939],[88.3543,48.44583],[88.35625,48.43045],[88.39586,48.41427],[88.43822,48.38715],[88.47993,48.39541],[88.48568,48.40774],[88.52289,48.3911],[88.51128,48.38006],[88.54736,48.35812],[88.54824,48.37179],[88.56928,48.36585],[88.57155,48.35193],[88.60565,48.33219],[88.56834,48.27411],[88.59684,48.24456],[88.58729,48.21935],[88.62234,48.21042],[88.633,48.18215],[88.66563,48.16853],[88.69185,48.17582],[88.71183,48.17031],[88.70877,48.15748],[88.73318,48.15198],[88.82806,48.09975],[88.84617,48.11083],[88.93213,48.10719],[88.95362,48.08427],[88.97237,48.06685],[89.00759,48.05219],[89.02795,48.02466],[89.05929,47.98795],[89.12281,47.98416],[89.15448,47.99701],[89.1889,47.97676],[89.24117,47.9749],[89.25632,47.99051],[89.28174,47.98636],[89.29583,48.0137],[89.31446,48.01317],[89.34682,48.02367],[89.35446,48.01579],[89.37079,48.02209],[89.37888,48.04492],[89.40208,48.02916],[89.44495,48.03166],[89.49333,48.0268],[89.5491,48.03907],[89.5811,48.03143],[89.60535,48.00648],[89.58564,47.9999],[89.59335,47.97267],[89.60763,47.95759],[89.6384,47.94802],[89.63895,47.92558],[89.65324,47.90314],[89.72431,47.89986],[89.74963,47.87601],[89.73924,47.86506],[89.7577,47.82922],[89.80601,47.83235],[89.85707,47.82625],[89.89027,47.83767],[89.93022,47.83324],[89.95094,47.83434],[89.95325,47.86004],[89.95556,47.88758],[90,47.88026],[90,28.33293]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**China, between 90º and 110º E - excluding Hainan Island", "itu_zone_number": 43 }, "geometry": { "type": "Polygon", "coordinates": [[[110,20.04166],[110,42.63674],[109.89816,42.63306],[109.6796,42.55965],[109.62641,42.52739],[109.53203,42.46882],[109.51757,42.46688],[109.4983,42.46696],[109.48144,42.4559],[109.47576,42.45442],[109.45197,42.45166],[109.43917,42.45193],[109.41606,42.44906],[109.38334,42.4467],[109.31,42.43969],[109.28452,42.43504],[109.2623,42.43597],[109.01485,42.45717],[109.00583,42.45056],[108.99818,42.448],[108.98563,42.44845],[108.9516,42.43871],[108.8396,42.39643],[108.83542,42.39907],[108.82816,42.40322],[108.81971,42.40593],[108.79994,42.41117],[108.78512,42.41634],[108.77905,42.41368],[108.74569,42.41432],[108.71544,42.41325],[108.69412,42.41344],[108.53491,42.44325],[108.4408,42.44393],[108.43088,42.44255],[108.42111,42.44224],[108.40791,42.44143],[108.38861,42.44111],[108.3573,42.43954],[108.29468,42.43942],[108.24464,42.46397],[108.19923,42.45424],[108.15725,42.44881],[108.13501,42.44503],[108.11307,42.44212],[108.08461,42.4377],[108.06451,42.43774],[108.0409,42.43548],[108.02003,42.4355],[108.0102,42.4298],[107.99865,42.42411],[107.991,42.41957],[107.97982,42.4148],[107.96396,42.41456],[107.92939,42.40153],[107.90506,42.40337],[107.73792,42.41308],[107.65437,42.41277],[107.57494,42.41069],[107.56565,42.41147],[107.52982,42.43376],[107.51247,42.4444],[107.49477,42.45498],[107.45818,42.4582],[107.42656,42.44769],[107.2904,42.40785],[107.26025,42.36046],[107.05158,42.31712],[106.78668,42.28831],[106.64526,42.25072],[106.36581,42.15564],[106.10285,42.06056],[105.71839,41.93778],[105.58247,41.88159],[105.48154,41.83071],[105.38611,41.79825],[105.36071,41.7791],[105.29412,41.74767],[105.23167,41.74591],[105.00579,41.58008],[104.91912,41.65444],[104.68322,41.64484],[104.51873,41.66192],[104.52621,41.87442],[104.07733,41.80345],[103.85643,41.79799],[103.41716,41.88043],[102.99978,42.03342],[102.70874,42.14764],[102.54798,42.15834],[102.44564,42.14129],[102.07962,42.22196],[101.80481,42.50359],[101.55891,42.52878],[100.84198,42.67322],[100.31997,42.68622],[100.26277,42.63729],[99.97486,42.64694],[99.50065,42.56523],[98.56227,42.63358],[98.20068,42.65342],[97.1733,42.79391],[96.96796,42.75391],[96.75712,42.75423],[96.38763,42.72362],[96.3594,42.89626],[96.13536,43.06738],[95.91407,43.23047],[95.8768,43.2765],[95.86778,43.32951],[95.85876,43.40849],[95.73616,43.59621],[95.65151,43.76851],[95.62179,43.84955],[95.52391,44.00389],[95.44244,44.00451],[95.40422,44.01009],[95.36601,44.02358],[95.32253,44.02685],[95.34525,44.08108],[95.35424,44.17476],[95.37771,44.22609],[95.41079,44.24401],[95.42871,44.27755],[95.41091,44.29536],[94.99614,44.25089],[94.93022,44.29333],[94.81966,44.31819],[94.76954,44.34108],[94.72696,44.33774],[94.67511,44.38838],[94.60129,44.44883],[94.54679,44.45951],[94.47031,44.50744],[94.39152,44.521],[94.34928,44.51285],[94.3408,44.52686],[94.34604,44.54479],[94.32907,44.5826],[94.26491,44.61127],[94.22448,44.64515],[94.2068,44.67189],[94.14945,44.6824],[94.06223,44.73081],[93.73605,44.86028],[93.71493,44.86979],[93.70755,44.89292],[93.60266,44.93066],[93.50601,44.96452],[93.42759,44.95505],[93.39586,44.97473],[93.36802,44.98548],[93.32369,44.99429],[93.31744,44.98082],[93.28846,44.98301],[93.21554,44.9954],[93.1893,45.0078],[93.14521,45.01242],[93.08465,45.00733],[93.05605,45.01714],[93.00435,45.00955],[92.98423,44.99905],[92.96961,45.01574],[92.92759,45.01648],[92.92321,45.03349],[92.88148,45.04617],[92.84473,45.03658],[92.77671,45.04846],[92.74447,45.04217],[92.73146,45.03588],[92.64226,45.02136],[92.549,45.01755],[92.48596,45.00015],[92.42291,45.01771],[92.34214,45.01107],[92.31355,45.02772],[92.27423,45.02027],[92.25045,45.02042],[92.23766,45.01281],[92.18735,45.0364],[92.10134,45.07552],[92.05996,45.08264],[91.89508,45.07553],[91.80435,45.08201],[91.6856,45.06162],[91.61814,45.0701],[91.56992,45.08052],[91.55877,45.06767],[91.53534,45.08548],[91.49327,45.10273],[91.4924,45.11416],[91.46045,45.14866],[91.42952,45.15564],[91.39624,45.12888],[91.37669,45.10986],[91.32968,45.12767],[91.24146,45.13191],[91.22297,45.15007],[91.189,45.15624],[91.17976,45.16435],[91.16346,45.20017],[91.11988,45.21372],[91.08392,45.21445],[91.04796,45.2055],[90.99827,45.21687],[90.95132,45.19534],[90.88439,45.18857],[90.86428,45.19906],[90.8936,45.25211],[90.86985,45.28278],[90.83607,45.29772],[90.79874,45.28896],[90.8129,45.31939],[90.7726,45.40167],[90.76526,45.43765],[90.7057,45.46285],[90.66535,45.48805],[90.66021,45.53336],[90.68372,45.62716],[90.71273,45.72864],[90.84697,45.88774],[91.01966,46.02008],[91.02058,46.05632],[91.00777,46.07922],[91.01509,46.085],[91.01052,46.12705],[90.97666,46.15786],[90.96111,46.19657],[90.9428,46.21436],[90.95014,46.22904],[90.89435,46.30682],[90.92997,46.33551],[90.97658,46.3604],[90.99434,46.42038],[91.00597,46.4343],[91.01042,46.45831],[91.03419,46.49504],[91.05246,46.51097],[91.05016,46.54022],[91.07808,46.55814],[91.07074,46.57508],[91.0176,46.57876],[91.01381,46.60833],[91.04846,46.71712],[91.01249,46.76264],[90.99313,46.76847],[90.98202,46.78935],[90.9348,46.8202],[90.95218,46.84435],[90.95582,46.87601],[90.9329,46.88676],[90.9141,46.91535],[90.91727,46.93643],[90.87534,46.97064],[90.82517,46.99549],[90.76458,46.98801],[90.7429,47.02696],[90.72947,47.02659],[90.68583,47.07489],[90.6463,47.11102],[90.6442,47.12729],[90.62287,47.14356],[90.56098,47.20973],[90.53412,47.24866],[90.51824,47.28945],[90.48099,47.31886],[90.50539,47.33936],[90.49957,47.35242],[90.51815,47.37667],[90.50588,47.40286],[90.48132,47.39758],[90.45694,47.41306],[90.46414,47.44344],[90.47133,47.4924],[90.42668,47.52994],[90.40125,47.5378],[90.37512,47.59902],[90.34282,47.625],[90.35002,47.64539],[90.37096,47.64357],[90.37395,47.65092],[90.34948,47.67123],[90.32526,47.68408],[90.28593,47.69232],[90.25485,47.69501],[90.24036,47.70762],[90.21413,47.70327],[90.17816,47.72231],[90.13917,47.72341],[90.09839,47.75307],[90.07134,47.77904],[90.06489,47.81885],[90.07218,47.84944],[90.09201,47.8579],[90.05927,47.8842],[90.04575,47.87366],[90.0034,47.8797],[90,47.88026],[90,28.33293],[90.00855,28.33641],[90.03633,28.34171],[90.04489,28.34247],[90.05551,28.34626],[90.05978,28.34505],[90.07161,28.33478],[90.08566,28.33358],[90.0925,28.32966],[90.10588,28.3407],[90.11102,28.34085],[90.12049,28.33579],[90.13614,28.33376],[90.14956,28.3222],[90.15266,28.31673],[90.16057,28.31397],[90.17475,28.31907],[90.18206,28.31994],[90.18697,28.33079],[90.18913,28.34103],[90.21287,28.35962],[90.22461,28.36091],[90.23768,28.35793],[90.24664,28.35374],[90.25371,28.34638],[90.25665,28.33842],[90.26667,28.33034],[90.25681,28.29145],[90.26004,28.28537],[90.26876,28.2793],[90.28003,28.27925],[90.28772,28.27197],[90.30091,28.27013],[90.31179,28.26573],[90.32336,28.26376],[90.33277,28.26585],[90.33643,28.27527],[90.34282,28.29981],[90.34854,28.305],[90.35585,28.30548],[90.37222,28.30662],[90.37903,28.30825],[90.38274,28.30626],[90.38146,28.29245],[90.38254,28.28676],[90.38911,28.2859],[90.39868,28.28013],[90.41032,28.27557],[90.42195,28.28884],[90.43359,28.29426],[90.44415,28.2905],[90.45664,28.28046],[90.46982,28.27284],[90.48026,28.25554],[90.50504,28.25082],[90.52983,28.25155],[90.53614,28.24756],[90.57404,28.24477],[90.58357,28.24041],[90.59311,28.23424],[90.5983,28.23501],[90.6035,28.2376],[90.60698,28.23171],[90.61389,28.22764],[90.60647,28.22086],[90.60206,28.20779],[90.57432,28.20077],[90.56782,28.18946],[90.5579,28.17755],[90.54698,28.15737],[90.50865,28.14908],[90.5034,28.14218],[90.49254,28.13843],[90.48442,28.13468],[90.4865,28.12834],[90.49545,28.11897],[90.50029,28.1075],[90.48385,28.09815],[90.47153,28.08698],[90.45165,28.08649],[90.44789,28.07955],[90.44549,28.06959],[90.44208,28.06419],[90.44416,28.06183],[90.4483,28.05159],[90.4552,28.04746],[90.46997,28.04819],[90.48268,28.05074],[90.49402,28.05904],[90.50673,28.06614],[90.52571,28.05991],[90.53107,28.05498],[90.54886,28.0507],[90.55223,28.05126],[90.56361,28.04679],[90.57032,28.04],[90.57223,28.03261],[90.57569,28.02977],[90.58052,28.03056],[90.58089,28.0256],[90.58468,28.02185],[90.59971,28.03304],[90.61611,28.04788],[90.62585,28.04666],[90.63559,28.04665],[90.65426,28.05755],[90.66151,28.05634],[90.6689,28.06179],[90.67081,28.06725],[90.67634,28.06785],[90.68425,28.07724],[90.69079,28.08057],[90.69929,28.07934],[90.70286,28.07235],[90.7078,28.07022],[90.72412,28.06896],[90.72709,28.0625],[90.74299,28.05383],[90.76301,28.04757],[90.77375,28.05163],[90.77411,28.04885],[90.77996,28.04123],[90.78821,28.0436],[90.79303,28.04839],[90.79718,28.04617],[90.802,28.0496],[90.80682,28.04939],[90.81378,28.0466],[90.8173,28.04745],[90.82298,28.04247],[90.82885,28.04403],[90.83577,28.04836],[90.85315,28.04631],[90.8529,28.0537],[90.86322,28.05179],[90.87301,28.04526],[90.88957,28.0429],[90.89928,28.0363],[90.89293,28.02854],[90.90113,28.02918],[90.90658,28.02558],[90.91256,28.02741],[90.92061,28.03288],[90.91836,28.03775],[90.92778,28.04443],[90.92985,28.04166],[90.94702,28.03343],[90.94463,28.02763],[90.95261,28.01754],[90.95798,28.01462],[90.96472,28.00806],[90.96995,28.00918],[90.97154,28.00429],[90.97846,28.00064],[90.98813,28.00548],[90.99093,28.01699],[90.99782,28.02213],[91.00402,28.02168],[91.01535,28.02327],[91.02326,28.02486],[91.02877,28.01623],[91.04251,28.00555],[91.04939,28.0076],[91.05387,27.99958],[91.06271,27.99742],[91.06675,27.99223],[91.07358,27.99236],[91.07285,27.99977],[91.0762,28.00368],[91.0872,28.00179],[91.09476,27.99626],[91.10165,28.00037],[91.10663,27.99707],[91.10878,27.99421],[91.11367,27.99135],[91.12209,27.99442],[91.13256,27.99568],[91.14871,27.9897],[91.15953,27.99731],[91.16897,28.0013],[91.19068,27.98648],[91.20325,27.98635],[91.20845,27.98677],[91.21502,27.99204],[91.21508,27.99792],[91.21788,28.01774],[91.2265,28.02231],[91.23237,28.02869],[91.23788,28.02901],[91.23859,28.0378],[91.24529,28.04311],[91.24925,28.05024],[91.246,28.05464],[91.24755,28.06267],[91.26308,28.0718],[91.2673,28.0656],[91.27456,28.06644],[91.28678,28.06262],[91.29185,28.06435],[91.29645,28.06369],[91.29899,28.06668],[91.30939,28.06078],[91.32126,28.06294],[91.32833,28.06207],[91.33402,28.06666],[91.33834,28.06639],[91.34304,28.06148],[91.34196,28.04903],[91.36216,28.0487],[91.37243,28.04118],[91.38271,28.03185],[91.39229,28.02949],[91.39776,28.03137],[91.40427,28.02397],[91.41421,28.01779],[91.42105,28.01997],[91.43098,28.017],[91.43106,28.00838],[91.43452,28.00425],[91.43934,28.00255],[91.44693,28.01006],[91.46563,28.00555],[91.4638,27.99864],[91.4677,27.99609],[91.47445,27.97996],[91.48297,27.97978],[91.48415,27.97393],[91.48738,27.97353],[91.49128,27.96456],[91.48327,27.9442],[91.49526,27.9382],[91.50245,27.93948],[91.50963,27.93681],[91.51847,27.92917],[91.5273,27.92335],[91.53373,27.92389],[91.53763,27.92144],[91.5484,27.91898],[91.55481,27.89857],[91.56866,27.89686],[91.57564,27.90485],[91.5919,27.90711],[91.59589,27.90249],[91.60991,27.89472],[91.61829,27.89569],[91.62529,27.89181],[91.62543,27.88816],[91.62007,27.88511],[91.61897,27.88205],[91.62226,27.87533],[91.6206,27.86431],[91.61178,27.85745],[91.60205,27.86404],[91.59369,27.85606],[91.58954,27.85627],[91.58678,27.86093],[91.57509,27.86497],[91.57092,27.84778],[91.55836,27.85558],[91.5531,27.85461],[91.55357,27.84988],[91.56342,27.82961],[91.56937,27.81856],[91.57669,27.81115],[91.58157,27.81156],[91.58851,27.81865],[91.5985,27.81855],[91.60163,27.8227],[91.6099,27.82382],[91.62424,27.81377],[91.63447,27.80312],[91.63694,27.7899],[91.63941,27.77364],[91.64435,27.77029],[91.6453,27.76116],[91.85005,27.7607],[91.86076,27.74072],[91.86035,27.73512],[91.86818,27.73134],[91.87295,27.7223],[91.8942,27.72361],[91.901,27.72986],[91.90627,27.72907],[91.91978,27.71735],[91.94182,27.72881],[91.95181,27.73545],[91.96385,27.74088],[91.96701,27.75082],[91.97579,27.76217],[91.97771,27.77291],[91.98453,27.77805],[91.99409,27.78259],[92.00231,27.78106],[92.01053,27.78257],[92.01721,27.7771],[92.03634,27.77558],[92.04724,27.78135],[92.0577,27.77952],[92.0606,27.78802],[92.09965,27.79983],[92.10769,27.80232],[92.12893,27.81795],[92.13182,27.82621],[92.14173,27.83394],[92.16385,27.82839],[92.1743,27.84713],[92.18536,27.84466],[92.20117,27.85892],[92.21218,27.86225],[92.21082,27.868],[92.2129,27.87315],[92.22203,27.87313],[92.23107,27.8795],[92.24078,27.88525],[92.24463,27.8846],[92.25542,27.87846],[92.26896,27.88566],[92.27569,27.88296],[92.2842,27.87615],[92.2934,27.86994],[92.29591,27.86283],[92.30391,27.85146],[92.29878,27.84171],[92.29709,27.83318],[92.30605,27.82556],[92.31225,27.82279],[92.32017,27.81092],[92.31917,27.79783],[92.33858,27.79645],[92.35662,27.80478],[92.36353,27.80332],[92.37181,27.80915],[92.38387,27.81284],[92.39593,27.82019],[92.40598,27.81939],[92.41328,27.82891],[92.42462,27.83482],[92.42607,27.83121],[92.42272,27.82154],[92.42631,27.81494],[92.42312,27.80846],[92.42749,27.80197],[92.43761,27.80539],[92.45609,27.79358],[92.45702,27.80065],[92.46756,27.80954],[92.47227,27.82055],[92.47766,27.82793],[92.47589,27.83312],[92.49328,27.8429],[92.50037,27.85086],[92.51142,27.84712],[92.52998,27.85588],[92.53309,27.86057],[92.53344,27.86646],[92.54566,27.86597],[92.55513,27.87336],[92.56528,27.8768],[92.56857,27.88207],[92.58293,27.88114],[92.58081,27.88871],[92.59071,27.89991],[92.59443,27.91112],[92.60757,27.91682],[92.62202,27.91354],[92.62754,27.90965],[92.63656,27.91149],[92.64587,27.9118],[92.65328,27.91832],[92.65862,27.92545],[92.6645,27.93001],[92.67039,27.94124],[92.67632,27.94823],[92.69006,27.95197],[92.6983,27.96298],[92.70792,27.96337],[92.73161,27.97995],[92.73316,27.98641],[92.72372,27.98985],[92.7203,28.00044],[92.72615,28.01847],[92.73611,28.03953],[92.73131,28.04908],[92.73132,28.05439],[92.71382,28.06492],[92.70181,28.06818],[92.69324,28.06603],[92.684,28.06813],[92.66687,28.06809],[92.65799,28.07532],[92.65597,28.08497],[92.66301,28.09691],[92.66748,28.12505],[92.67744,28.15103],[92.69163,28.15011],[92.70285,28.15571],[92.71086,28.16547],[92.71681,28.16796],[92.72508,28.16168],[92.73128,28.16035],[92.7361,28.1554],[92.74109,28.15649],[92.7454,28.16122],[92.75898,28.16141],[92.76954,28.16453],[92.77139,28.17002],[92.76672,28.17673],[92.77773,28.18399],[92.79062,28.18853],[92.80393,28.18323],[92.80715,28.18059],[92.8145,28.17975],[92.82692,28.17491],[92.83434,28.17531],[92.84313,28.18115],[92.85502,28.18609],[92.86748,28.19008],[92.87578,28.19721],[92.88338,28.20193],[92.91162,28.20152],[92.91921,28.2001],[92.92987,28.20575],[92.93658,28.21825],[92.92749,28.22592],[92.93193,28.2491],[92.947,28.26159],[92.95177,28.26168],[92.95793,28.26354],[92.96066,28.26721],[92.99071,28.27363],[92.9954,28.27962],[93.00282,28.29408],[93.02776,28.29946],[93.05133,28.31029],[93.05912,28.30487],[93.0637,28.30638],[93.07423,28.32225],[93.0779,28.32483],[93.08569,28.32696],[93.1,28.34019],[93.11569,28.34436],[93.13859,28.36265],[93.14799,28.36661],[93.14864,28.37596],[93.16852,28.41974],[93.17394,28.47106],[93.1852,28.49461],[93.24831,28.54985],[93.30792,28.5931],[93.38195,28.63335],[93.39399,28.63945],[93.41477,28.65426],[93.4232,28.65762],[93.42733,28.66248],[93.43695,28.66433],[93.44777,28.66887],[93.45928,28.66919],[93.47182,28.67072],[93.4768,28.67406],[93.48431,28.67274],[93.49387,28.66962],[93.51099,28.66892],[93.52124,28.67423],[93.58454,28.67909],[93.60389,28.68456],[93.61397,28.6843],[93.62336,28.68766],[93.62795,28.68047],[93.62921,28.66483],[93.63734,28.65461],[93.65841,28.66821],[93.67135,28.66959],[93.6884,28.67759],[93.70606,28.66452],[93.71369,28.66496],[93.7275,28.67323],[93.72998,28.6803],[93.73383,28.68375],[93.74909,28.69276],[93.75543,28.69876],[93.78556,28.71434],[93.78686,28.72962],[93.78899,28.73619],[93.79181,28.73615],[93.80253,28.73459],[93.81051,28.74027],[93.82542,28.73987],[93.84102,28.74851],[93.85223,28.74659],[93.86069,28.74167],[93.86743,28.74547],[93.89683,28.7571],[93.90975,28.74104],[93.91487,28.74108],[93.9193,28.74535],[93.91169,28.77313],[93.92633,28.78356],[93.9396,28.78917],[93.94806,28.80321],[93.95756,28.80823],[93.97461,28.82046],[93.9786,28.81819],[93.98809,28.8069],[93.98494,28.79658],[93.99552,28.79109],[94.00355,28.79165],[94.01296,28.79401],[94.02079,28.79333],[94.01814,28.82609],[94.02265,28.84397],[94.02892,28.85326],[94.03863,28.85773],[94.05805,28.85885],[94.05746,28.87401],[94.07055,28.87648],[94.07883,28.88256],[94.08471,28.88172],[94.10173,28.88431],[94.11669,28.8893],[94.1325,28.88888],[94.14557,28.89808],[94.16001,28.90397],[94.17514,28.91107],[94.16596,28.91849],[94.16755,28.92761],[94.17876,28.93613],[94.19414,28.93513],[94.20678,28.93173],[94.2153,28.93313],[94.23206,28.92732],[94.25323,28.929],[94.26024,28.93077],[94.26656,28.93976],[94.26753,28.9463],[94.27485,28.95206],[94.27369,28.96719],[94.27983,28.96985],[94.30176,28.98332],[94.30855,28.99405],[94.32134,28.99322],[94.34319,29.00241],[94.36641,29.02601],[94.36115,29.03529],[94.34285,29.03557],[94.32823,29.03942],[94.3239,29.05648],[94.31374,29.06693],[94.3165,29.07147],[94.31377,29.079],[94.29733,29.08266],[94.27917,29.08873],[94.27405,29.10079],[94.27694,29.11245],[94.28978,29.12171],[94.29585,29.13444],[94.29369,29.15257],[94.30373,29.1522],[94.31857,29.15603],[94.32462,29.153],[94.3341,29.15476],[94.33901,29.15504],[94.34736,29.15113],[94.35536,29.15291],[94.36732,29.1514],[94.3731,29.1541],[94.38025,29.15469],[94.38534,29.16069],[94.38893,29.18093],[94.39184,29.18439],[94.40326,29.18305],[94.4181,29.17871],[94.42925,29.18741],[94.43946,29.18532],[94.44555,29.18083],[94.45335,29.19073],[94.45245,29.20646],[94.45773,29.21261],[94.47402,29.21009],[94.49306,29.20757],[94.50214,29.21584],[94.5053,29.22656],[94.5119,29.2313],[94.51549,29.22698],[94.54105,29.21907],[94.5516,29.22845],[94.55597,29.22884],[94.56034,29.23762],[94.56761,29.24026],[94.57145,29.2477],[94.57157,29.25598],[94.58212,29.26116],[94.5913,29.27173],[94.59554,29.27358],[94.60184,29.27542],[94.61845,29.28295],[94.62613,29.29587],[94.64406,29.29627],[94.65718,29.30624],[94.66717,29.30471],[94.67492,29.30844],[94.68266,29.31457],[94.69373,29.3181],[94.71005,29.3019],[94.71547,29.2914],[94.72401,29.29124],[94.7353,29.28629],[94.73627,29.27584],[94.73805,29.27098],[94.74465,29.26313],[94.74849,29.25677],[94.74891,29.25041],[94.74391,29.2445],[94.75197,29.23021],[94.77391,29.21659],[94.79342,29.21872],[94.80415,29.20808],[94.8003,29.20508],[94.79768,29.1859],[94.80427,29.16641],[94.80887,29.16435],[94.8224,29.17248],[94.82803,29.17282],[94.83366,29.17855],[94.83943,29.17833],[94.84931,29.1835],[94.86155,29.18042],[94.879,29.17979],[94.89195,29.17768],[94.89803,29.17437],[94.90754,29.16837],[94.90796,29.16139],[94.91675,29.15731],[94.92485,29.15622],[94.93316,29.15944],[94.94079,29.16087],[94.95192,29.15891],[94.96168,29.15996],[94.99212,29.14609],[94.99612,29.14113],[94.99944,29.13196],[95.01649,29.1267],[95.02255,29.12743],[95.01585,29.13245],[95.01464,29.14466],[95.01015,29.1541],[95.00119,29.16218],[94.99493,29.16935],[94.98833,29.17082],[94.98516,29.17409],[94.99427,29.17314],[94.99981,29.17215],[95.00155,29.16866],[95.00535,29.16756],[95.00574,29.16567],[95.02266,29.15816],[95.04301,29.15064],[95.05419,29.15359],[95.0652,29.14719],[95.07757,29.14529],[95.08925,29.14158],[95.09681,29.14198],[95.10085,29.1275],[95.11027,29.12208],[95.11901,29.11366],[95.11617,29.1084],[95.10096,29.10134],[95.10224,29.09668],[95.10908,29.09566],[95.12485,29.09945],[95.12998,29.09753],[95.13048,29.09238],[95.13691,29.0883],[95.1518,29.09046],[95.15914,29.09862],[95.16696,29.09884],[95.17889,29.10385],[95.18903,29.10068],[95.21016,29.10772],[95.21946,29.10498],[95.23012,29.10285],[95.23676,29.08569],[95.24308,29.08219],[95.25215,29.0829],[95.25999,29.08011],[95.25878,29.07616],[95.26169,29.06801],[95.2706,29.07301],[95.27179,29.08716],[95.27229,29.10432],[95.2829,29.11072],[95.27704,29.11593],[95.28539,29.12096],[95.29506,29.12798],[95.29992,29.1362],[95.30587,29.13839],[95.31182,29.13879],[95.32818,29.13553],[95.33905,29.13708],[95.3458,29.13413],[95.37939,29.13685],[95.39172,29.13491],[95.39515,29.1298],[95.39721,29.1247],[95.40476,29.12439],[95.413,29.12589],[95.41386,29.13173],[95.40991,29.13698],[95.40888,29.14387],[95.41574,29.14925],[95.41436,29.16363],[95.41968,29.16616],[95.4195,29.18128],[95.42688,29.18471],[95.43563,29.19294],[95.44616,29.18564],[95.44724,29.17992],[95.45382,29.1754],[95.45282,29.17029],[95.45456,29.16398],[95.44891,29.16112],[95.45356,29.15227],[95.45142,29.14635],[95.4589,29.13622],[95.46744,29.13461],[95.47461,29.14139],[95.48058,29.14142],[95.50386,29.12724],[95.5093,29.12566],[95.51055,29.13809],[95.51523,29.14272],[95.51305,29.14855],[95.51521,29.15362],[95.51256,29.15808],[95.51379,29.16521],[95.50677,29.16994],[95.50579,29.17791],[95.50001,29.18228],[95.50227,29.19196],[95.5068,29.19453],[95.52892,29.18896],[95.53249,29.19477],[95.54853,29.19603],[95.55152,29.20209],[95.56024,29.20641],[95.56396,29.19857],[95.58882,29.18775],[95.59651,29.18786],[95.60173,29.19181],[95.60351,29.19576],[95.59486,29.20737],[95.5972,29.21538],[95.5961,29.22519],[95.60352,29.23463],[95.60613,29.23507],[95.61818,29.23355],[95.63709,29.22244],[95.63831,29.21508],[95.64777,29.21012],[95.65757,29.21715],[95.666,29.22418],[95.69886,29.22397],[95.70552,29.21381],[95.70361,29.20484],[95.70994,29.20426],[95.71825,29.21416],[95.72756,29.21792],[95.73658,29.21766],[95.74354,29.22519],[95.73768,29.22675],[95.73114,29.23431],[95.73042,29.24043],[95.73584,29.25088],[95.73638,29.25561],[95.74241,29.26184],[95.75187,29.27585],[95.74881,29.28058],[95.74711,29.2901],[95.73755,29.29896],[95.75725,29.32222],[95.77969,29.32355],[95.79801,29.33805],[95.8051,29.3411],[95.8122,29.34715],[95.82857,29.35141],[95.83876,29.35207],[95.84334,29.34071],[95.83676,29.33398],[95.8398,29.32127],[95.84612,29.3194],[95.8497,29.31633],[95.85561,29.31704],[95.86151,29.31536],[95.86784,29.31798],[95.87632,29.31443],[95.88897,29.32851],[95.90559,29.33615],[95.92503,29.34255],[95.93073,29.34715],[95.93939,29.34978],[95.94203,29.36597],[95.95477,29.36726],[95.96613,29.37573],[95.97404,29.37189],[95.97766,29.36398],[95.98127,29.36146],[95.99572,29.36873],[96.00657,29.36748],[96.01742,29.36323],[96.0273,29.3686],[96.03718,29.37637],[96.05213,29.38352],[96.05755,29.38111],[96.06163,29.37482],[96.07052,29.37272],[96.08348,29.36523],[96.09165,29.36551],[96.10465,29.35919],[96.1156,29.35526],[96.12517,29.34953],[96.13749,29.3456],[96.14359,29.32906],[96.13943,29.3166],[96.14559,29.31157],[96.15004,29.29348],[96.16616,29.29456],[96.17402,29.28307],[96.1805,29.27997],[96.18252,29.27208],[96.18783,29.26681],[96.19658,29.26274],[96.21425,29.26406],[96.2175,29.26239],[96.22381,29.25569],[96.23912,29.24863],[96.24894,29.24875],[96.26171,29.24421],[96.26217,29.23684],[96.2592,29.23008],[96.2624,29.2269],[96.26218,29.22074],[96.2528,29.2135],[96.26179,29.21453],[96.27078,29.20958],[96.28325,29.20955],[96.28308,29.2022],[96.30007,29.19035],[96.30169,29.17663],[96.29783,29.15932],[96.29285,29.15647],[96.2609,29.15914],[96.25436,29.15372],[96.24541,29.1504],[96.24394,29.13861],[96.23874,29.13182],[96.22805,29.12833],[96.19353,29.11767],[96.18353,29.11073],[96.18841,29.09687],[96.19603,29.08421],[96.19815,29.07245],[96.18581,29.0596],[96.18239,29.05516],[96.186,29.05353],[96.18686,29.05009],[96.18241,29.04442],[96.18585,29.04069],[96.19546,29.03515],[96.19822,29.02348],[96.20553,29.02415],[96.21353,29.02723],[96.23011,29.04712],[96.23772,29.06066],[96.24257,29.07421],[96.25377,29.08457],[96.26176,29.08825],[96.26908,29.09673],[96.28198,29.09989],[96.29626,29.09885],[96.30952,29.10141],[96.32536,29.10123],[96.34155,29.10014],[96.34744,29.10131],[96.36843,29.10952],[96.35884,29.09388],[96.35199,29.07466],[96.35405,29.06804],[96.3623,29.06864],[96.36164,29.0485],[96.36585,29.03922],[96.37516,29.03219],[96.38654,29.03115],[96.39633,29.02942],[96.43445,29.00614],[96.43519,29.0013],[96.42879,28.9983],[96.42823,28.98479],[96.43523,28.97669],[96.43639,28.96168],[96.44309,28.9515],[96.45511,28.93595],[96.46404,28.9337],[96.47298,28.92799],[96.48193,28.9478],[96.50839,28.94614],[96.52025,28.93359],[96.52455,28.91564],[96.51537,28.90794],[96.51718,28.88701],[96.52423,28.87882],[96.51939,28.86918],[96.52141,28.86134],[96.52751,28.8583],[96.53773,28.84774],[96.54387,28.84728],[96.54795,28.84921],[96.5521,28.84016],[96.55829,28.83202],[96.56586,28.82448],[96.57827,28.8178],[96.58937,28.81827],[96.58479,28.81144],[96.57804,28.80561],[96.57746,28.79738],[96.57048,28.78784],[96.57269,28.78335],[96.57832,28.77886],[96.59323,28.78069],[96.60092,28.78071],[96.60351,28.75872],[96.61806,28.73713],[96.62162,28.73539],[96.62079,28.72766],[96.60905,28.70723],[96.60349,28.69945],[96.59772,28.69723],[96.55693,28.6908],[96.54409,28.68758],[96.53605,28.68135],[96.53446,28.67526],[96.5371,28.66257],[96.537,28.6547],[96.51254,28.62624],[96.50594,28.6234],[96.49658,28.62597],[96.49511,28.62223],[96.49502,28.60944],[96.48931,28.60636],[96.46162,28.60147],[96.44676,28.58687],[96.45165,28.58267],[96.48056,28.56642],[96.48235,28.56041],[96.4814,28.55501],[96.46765,28.54405],[96.4587,28.5343],[96.45248,28.53048],[96.43202,28.5253],[96.41155,28.51711],[96.40838,28.50857],[96.43413,28.50586],[96.44289,28.49908],[96.44684,28.48927],[96.47775,28.49049],[96.48325,28.44916],[96.48926,28.43408],[96.49596,28.42987],[96.50543,28.43865],[96.51077,28.45771],[96.51356,28.5278],[96.5237,28.55184],[96.53796,28.57166],[96.55138,28.58295],[96.5799,28.59213],[96.61459,28.61397],[96.63039,28.61097],[96.65408,28.60977],[96.66679,28.59952],[96.6922,28.58688],[96.71487,28.58448],[96.72792,28.57425],[96.74511,28.57158],[96.75954,28.55865],[96.74952,28.54263],[96.76751,28.51411],[96.78344,28.51394],[96.82148,28.50034],[96.86089,28.48492],[96.86573,28.44851],[96.87913,28.43442],[96.88909,28.42819],[96.89323,28.41693],[96.88424,28.40519],[96.88349,28.39829],[96.89023,28.38449],[96.89972,28.38096],[96.90921,28.3738],[96.91342,28.36764],[96.92244,28.3639],[96.92383,28.35249],[96.95269,28.3453],[96.97652,28.32978],[96.99119,28.32745],[97.00311,28.32452],[97.02728,28.32985],[97.04384,28.34943],[97.0545,28.35901],[97.06584,28.36375],[97.07893,28.37203],[97.09329,28.36878],[97.10049,28.366],[97.12279,28.36262],[97.14098,28.35169],[97.14611,28.35284],[97.14914,28.34416],[97.15561,28.33669],[97.16853,28.32961],[97.17219,28.33401],[97.17928,28.33297],[97.19174,28.3197],[97.19694,28.3161],[97.19979,28.31005],[97.20812,28.30099],[97.21862,28.30826],[97.22147,28.3024],[97.23942,28.29353],[97.23579,28.28346],[97.2405,28.27298],[97.24383,28.27158],[97.24603,28.26484],[97.26361,28.26328],[97.2702,28.25628],[97.27186,28.24492],[97.27818,28.24407],[97.2845,28.24565],[97.2847,28.23338],[97.29863,28.23199],[97.33007,28.21518],[97.33618,28.21495],[97.3406,28.21574],[97.34503,28.2141],[97.34874,28.22621],[97.35039,28.24014],[97.35688,28.24227],[97.36287,28.24151],[97.36818,28.24318],[97.37429,28.23836],[97.38282,28.23871],[97.38982,28.24131],[97.39614,28.24088],[97.40295,28.24789],[97.40838,28.25006],[97.41168,28.25107],[97.41362,28.2545],[97.41174,28.26157],[97.40129,28.27227],[97.40113,28.28236],[97.4053,28.28766],[97.4105,28.28994],[97.41365,28.29464],[97.42451,28.298],[97.43132,28.29151],[97.44537,28.2795],[97.45411,28.27592],[97.46285,28.26991],[97.46928,28.27446],[97.47009,28.27916],[97.47682,28.28245],[97.48286,28.2809],[97.48326,28.28355],[97.4763,28.28946],[97.46797,28.30626],[97.47732,28.3096],[97.48117,28.31597],[97.49842,28.3184],[97.50275,28.31433],[97.5092,28.32121],[97.51142,28.32671],[97.51775,28.3304],[97.51806,28.33353],[97.50175,28.33824],[97.50329,28.34173],[97.49641,28.34523],[97.48954,28.35054],[97.49433,28.36206],[97.48634,28.36789],[97.48316,28.37855],[97.47887,28.37993],[97.48141,28.38683],[97.48668,28.39233],[97.49127,28.3924],[97.49688,28.3985],[97.50003,28.39793],[97.50298,28.40067],[97.50171,28.40657],[97.50691,28.41193],[97.50642,28.41793],[97.50078,28.42303],[97.50746,28.43501],[97.51582,28.44133],[97.52488,28.44523],[97.52122,28.45034],[97.51425,28.45199],[97.50355,28.4667],[97.50404,28.48356],[97.50041,28.49318],[97.51062,28.49697],[97.52121,28.49132],[97.52377,28.49574],[97.52014,28.50257],[97.52451,28.50636],[97.53597,28.50765],[97.53758,28.51252],[97.53644,28.52162],[97.53875,28.52428],[97.54313,28.52271],[97.54583,28.52902],[97.55128,28.5311],[97.5552,28.52883],[97.55648,28.5298],[97.5557,28.535],[97.56698,28.54734],[97.58043,28.54722],[97.58991,28.53902],[97.5897,28.53531],[97.59636,28.53039],[97.59114,28.52207],[97.59581,28.52202],[97.60226,28.51746],[97.61476,28.51941],[97.62554,28.52558],[97.62688,28.53231],[97.63302,28.53664],[97.64637,28.53508],[97.65286,28.54257],[97.66356,28.53882],[97.66807,28.52421],[97.68063,28.52491],[97.69034,28.51982],[97.69044,28.50689],[97.70076,28.50246],[97.71245,28.50054],[97.72276,28.49681],[97.72444,28.48273],[97.73053,28.47996],[97.73342,28.47429],[97.73769,28.4668],[97.73406,28.45057],[97.73843,28.44577],[97.7358,28.43281],[97.73318,28.43192],[97.73549,28.41919],[97.74465,28.41337],[97.73596,28.40694],[97.73574,28.39832],[97.74341,28.3945],[97.75549,28.38503],[97.75466,28.37789],[97.75974,28.37945],[97.76022,28.38567],[97.76413,28.38463],[97.77764,28.37039],[97.78645,28.35723],[97.78914,28.34612],[97.79645,28.3304],[97.80583,28.33055],[97.81189,28.33425],[97.81973,28.33428],[97.8255,28.32949],[97.84254,28.32888],[97.84696,28.33458],[97.84381,28.35115],[97.85923,28.35733],[97.86762,28.36675],[97.87739,28.36652],[97.88868,28.36604],[97.90822,28.36919],[97.91356,28.3632],[97.91409,28.35842],[97.9282,28.34464],[97.93788,28.33942],[97.94104,28.32967],[97.9488,28.32691],[97.95999,28.32536],[97.95765,28.3124],[97.95187,28.30427],[97.95474,28.30012],[97.96687,28.2952],[97.98736,28.29366],[97.99206,28.2909],[97.99401,28.28501],[98.01387,28.27178],[98.02378,28.24586],[98.01553,28.24575],[98.01167,28.23264],[98.01329,28.22437],[98.00694,28.22235],[98.00921,28.21029],[98.01766,28.20429],[98.01914,28.19766],[98.02406,28.19708],[98.02976,28.19108],[98.05267,28.19027],[98.04881,28.20368],[98.07933,28.20628],[98.08206,28.19926],[98.08823,28.20029],[98.09183,28.19132],[98.08925,28.18537],[98.09817,28.16501],[98.11756,28.16678],[98.12781,28.15965],[98.13259,28.15034],[98.13875,28.14526],[98.14363,28.1353],[98.15057,28.12232],[98.14797,28.11694],[98.16062,28.10407],[98.15917,28.09483],[98.15977,28.08924],[98.1544,28.07553],[98.15179,28.06486],[98.14574,28.05464],[98.13969,28.04563],[98.13986,28.0293],[98.14254,28.02582],[98.14385,28.01931],[98.13892,28.01113],[98.1405,27.99872],[98.13375,27.99524],[98.1336,27.98679],[98.1362,27.97895],[98.13674,27.9705],[98.14072,27.95477],[98.15446,27.94091],[98.17059,27.94095],[98.18879,27.94281],[98.18948,27.93346],[98.19429,27.92533],[98.20236,27.90445],[98.20137,27.8971],[98.20588,27.89158],[98.2018,27.88545],[98.20185,27.87568],[98.18125,27.87429],[98.18082,27.86728],[98.17546,27.865],[98.1749,27.85785],[98.17035,27.85419],[98.17267,27.84142],[98.17593,27.83591],[98.19718,27.82527],[98.2143,27.81342],[98.22486,27.81401],[98.22413,27.80163],[98.22683,27.79715],[98.21975,27.78554],[98.21748,27.76481],[98.22564,27.7557],[98.24306,27.74842],[98.2471,27.74342],[98.24519,27.7373],[98.23805,27.73364],[98.23352,27.73455],[98.23174,27.7312],[98.22474,27.72815],[98.22575,27.72356],[98.22332,27.71471],[98.2341,27.7069],[98.23336,27.70373],[98.23674,27.69934],[98.2332,27.69482],[98.26011,27.67971],[98.26434,27.67509],[98.26824,27.66075],[98.27706,27.6649],[98.2853,27.65782],[98.28582,27.64266],[98.28839,27.63664],[98.30041,27.63553],[98.30325,27.63009],[98.29711,27.61673],[98.30537,27.59453],[98.31089,27.58815],[98.30686,27.56082],[98.30862,27.54623],[98.31739,27.53681],[98.31621,27.52283],[98.32884,27.51976],[98.33817,27.51107],[98.35232,27.5164],[98.37024,27.51015],[98.38335,27.51517],[98.39573,27.52654],[98.40125,27.54339],[98.41415,27.54974],[98.43048,27.55183],[98.43465,27.58338],[98.42921,27.59546],[98.43476,27.60814],[98.42932,27.61352],[98.43849,27.62816],[98.43793,27.63608],[98.43255,27.64218],[98.43451,27.65042],[98.43029,27.65927],[98.43263,27.6661],[98.44358,27.66921],[98.44941,27.66203],[98.45799,27.65851],[98.46691,27.64355],[98.47513,27.63735],[98.50592,27.63617],[98.50847,27.62858],[98.51994,27.62828],[98.52798,27.6219],[98.53465,27.62526],[98.53838,27.63858],[98.54897,27.64339],[98.55029,27.64881],[98.55573,27.64997],[98.56254,27.64371],[98.57385,27.61442],[98.5776,27.60825],[98.58203,27.59751],[98.58647,27.59104],[98.58264,27.57352],[98.59061,27.56838],[98.59858,27.57298],[98.59728,27.5788],[98.60696,27.58157],[98.61407,27.57711],[98.62119,27.57935],[98.64708,27.56862],[98.65097,27.57093],[98.6528,27.57994],[98.65716,27.58579],[98.66654,27.59079],[98.67492,27.58494],[98.68465,27.56666],[98.69438,27.5636],[98.70217,27.56539],[98.70733,27.55725],[98.69807,27.54851],[98.69962,27.53824],[98.70461,27.52006],[98.69835,27.51793],[98.69447,27.51976],[98.68921,27.51307],[98.69175,27.50698],[98.68853,27.498],[98.68395,27.48963],[98.69584,27.47472],[98.7043,27.46711],[98.70147,27.4525],[98.68766,27.4513],[98.68891,27.4379],[98.68672,27.43395],[98.689,27.42406],[98.70158,27.41752],[98.7006,27.40465],[98.7032,27.39943],[98.70373,27.3869],[98.69829,27.38303],[98.70726,27.36513],[98.71332,27.36392],[98.71731,27.3554],[98.73629,27.3536],[98.73183,27.34806],[98.73166,27.34011],[98.74042,27.33155],[98.7358,27.30482],[98.73211,27.30243],[98.73323,27.28967],[98.7274,27.27939],[98.71813,27.27461],[98.71453,27.25914],[98.7305,27.24886],[98.73025,27.2453],[98.72519,27.24479],[98.71807,27.23634],[98.72571,27.23003],[98.72288,27.22283],[98.70907,27.22174],[98.69784,27.21454],[98.69141,27.20123],[98.70326,27.18797],[98.70643,27.18073],[98.70579,27.16626],[98.71027,27.15852],[98.70856,27.15017],[98.7127,27.14263],[98.70781,27.13699],[98.71253,27.12647],[98.71335,27.11815],[98.70964,27.11308],[98.71005,27.10433],[98.71464,27.09724],[98.71237,27.07853],[98.72628,27.06989],[98.74088,27.07593],[98.76527,27.05288],[98.7669,27.04437],[98.76305,27.0221],[98.74631,27.01695],[98.73301,27.00477],[98.74435,26.99562],[98.73646,26.97179],[98.73818,26.96064],[98.74265,26.9556],[98.74677,26.94598],[98.74369,26.93429],[98.75227,26.92626],[98.75402,26.90805],[98.75783,26.88371],[98.75237,26.87394],[98.74534,26.87028],[98.73146,26.85498],[98.73567,26.8427],[98.7495,26.8298],[98.75508,26.81568],[98.75998,26.81198],[98.76188,26.80198],[98.75665,26.78043],[98.7584,26.7769],[98.75893,26.76838],[98.75671,26.76661],[98.75572,26.74959],[98.75238,26.74533],[98.75453,26.73617],[98.74991,26.73256],[98.74689,26.72151],[98.74386,26.71965],[98.74224,26.71313],[98.74623,26.71109],[98.74679,26.69985],[98.75993,26.69333],[98.771,26.69417],[98.77093,26.68629],[98.76467,26.68148],[98.76803,26.67268],[98.76109,26.66572],[98.76823,26.64994],[98.77193,26.63784],[98.78181,26.62375],[98.77817,26.61732],[98.77807,26.61073],[98.78208,26.60536],[98.77509,26.58843],[98.76879,26.57457],[98.76047,26.57401],[98.7549,26.56977],[98.75482,26.55142],[98.75405,26.53798],[98.75299,26.52357],[98.74917,26.50979],[98.75665,26.50065],[98.75123,26.48316],[98.75062,26.46936],[98.74734,26.45897],[98.74215,26.43941],[98.75237,26.4292],[98.74543,26.41685],[98.74848,26.41283],[98.74348,26.40651],[98.74167,26.38767],[98.73183,26.3844],[98.72795,26.37169],[98.73367,26.35376],[98.70622,26.32783],[98.68289,26.30929],[98.68544,26.29504],[98.67769,26.28634],[98.67729,26.28001],[98.68036,26.27285],[98.67999,26.25706],[98.67169,26.24212],[98.68187,26.24113],[98.69136,26.23645],[98.69845,26.24439],[98.71241,26.2357],[98.71478,26.22589],[98.72196,26.22038],[98.72533,26.21184],[98.72441,26.20176],[98.73654,26.1886],[98.73179,26.1747],[98.72704,26.16327],[98.72243,26.16032],[98.71165,26.16046],[98.70793,26.15211],[98.70821,26.14496],[98.71281,26.14631],[98.71752,26.13959],[98.71948,26.13041],[98.70567,26.12043],[98.7008,26.11292],[98.69304,26.11611],[98.68665,26.10511],[98.67934,26.09961],[98.67409,26.10027],[98.6678,26.09169],[98.66015,26.09236],[98.65728,26.10472],[98.66477,26.11367],[98.66746,26.12386],[98.66095,26.13053],[98.66062,26.13659],[98.65103,26.14623],[98.63254,26.15135],[98.62685,26.1497],[98.6239,26.14374],[98.61525,26.14291],[98.60936,26.13468],[98.60346,26.13261],[98.58961,26.14451],[98.58193,26.14593],[98.58493,26.13686],[98.57968,26.12593],[98.57331,26.12196],[98.58411,26.09887],[98.58676,26.08271],[98.58186,26.08072],[98.58279,26.0736],[98.59264,26.0745],[98.59975,26.06244],[98.60193,26.03205],[98.60505,26.02244],[98.60936,26.02103],[98.60979,26.01663],[98.60795,26.01535],[98.60954,26.00852],[98.61077,25.99737],[98.61791,25.98594],[98.61544,25.97388],[98.62074,25.97449],[98.63017,25.97263],[98.63471,25.97579],[98.64199,25.97648],[98.64833,25.97292],[98.64805,25.9638],[98.6589,25.96109],[98.66158,25.9551],[98.68146,25.94223],[98.69002,25.92993],[98.68736,25.92809],[98.6895,25.91205],[98.69727,25.90789],[98.70561,25.89469],[98.70366,25.88829],[98.70857,25.88258],[98.70593,25.86883],[98.70752,25.8605],[98.70342,25.85391],[98.69383,25.84732],[98.68974,25.84845],[98.68565,25.84587],[98.68501,25.83948],[98.68232,25.8368],[98.67394,25.81989],[98.66058,25.82122],[98.65415,25.8166],[98.64979,25.80704],[98.64477,25.80961],[98.64112,25.80042],[98.6304,25.80029],[98.62892,25.80672],[98.62125,25.80944],[98.61417,25.80994],[98.6112,25.81384],[98.60411,25.81465],[98.58924,25.82615],[98.57781,25.829],[98.57465,25.83979],[98.56146,25.84839],[98.55332,25.84883],[98.55077,25.84415],[98.54685,25.8438],[98.54175,25.8468],[98.53303,25.84767],[98.52845,25.84092],[98.51976,25.83665],[98.51712,25.83173],[98.52067,25.82433],[98.50637,25.81602],[98.49481,25.81264],[98.49032,25.80574],[98.48995,25.79513],[98.48512,25.79472],[98.47479,25.78256],[98.47471,25.77312],[98.48149,25.75934],[98.46974,25.7499],[98.46004,25.73675],[98.45987,25.72646],[98.46932,25.70751],[98.4628,25.70178],[98.45937,25.68971],[98.4333,25.68257],[98.43261,25.67908],[98.41888,25.67312],[98.40688,25.65625],[98.41171,25.65189],[98.40538,25.63795],[98.40791,25.62348],[98.40976,25.61148],[98.40355,25.60691],[98.40282,25.59987],[98.38337,25.60218],[98.37261,25.58817],[98.36151,25.5791],[98.3503,25.5808],[98.34707,25.57816],[98.34384,25.58047],[98.33806,25.57333],[98.3241,25.56461],[98.31334,25.54781],[98.30395,25.55212],[98.29661,25.562],[98.2943,25.5768],[98.28302,25.58204],[98.27517,25.59347],[98.26938,25.59499],[98.26359,25.60146],[98.25879,25.6029],[98.25399,25.6062],[98.24713,25.60579],[98.24233,25.61342],[98.23617,25.60866],[98.21559,25.61288],[98.21493,25.61587],[98.20472,25.61975],[98.20013,25.61581],[98.19039,25.61527],[98.1843,25.62627],[98.16818,25.62693],[98.1684,25.62098],[98.17205,25.6175],[98.1816,25.59393],[98.18291,25.58336],[98.18828,25.574],[98.18208,25.56154],[98.17382,25.54907],[98.16178,25.54652],[98.15936,25.52725],[98.15309,25.52671],[98.14651,25.52179],[98.13994,25.52059],[98.13083,25.52013],[98.12426,25.50806],[98.13861,25.4977],[98.13925,25.49129],[98.1485,25.47692],[98.15638,25.46007],[98.15723,25.45318],[98.15464,25.45001],[98.15428,25.44118],[98.14532,25.43283],[98.15523,25.42231],[98.14818,25.41612],[98.14808,25.40806],[98.1446,25.40496],[98.14286,25.39597],[98.13769,25.38636],[98.12787,25.38607],[98.12181,25.38461],[98.1027,25.39431],[98.09951,25.39075],[98.10205,25.38892],[98.09714,25.38056],[98.10189,25.3801],[98.09896,25.3744],[98.09603,25.35133],[98.09189,25.35165],[98.0898,25.33831],[98.08152,25.33584],[98.07525,25.33648],[98.07275,25.32968],[98.07219,25.321],[98.06957,25.31481],[98.06232,25.31011],[98.03791,25.30479],[98.02862,25.30585],[98.02311,25.31095],[98.01141,25.30687],[98.00264,25.2966],[98.00691,25.28323],[98.0002,25.27699],[97.988,25.2571],[97.97767,25.25332],[97.96803,25.23837],[97.96173,25.2419],[97.95165,25.22587],[97.94432,25.21792],[97.93395,25.21862],[97.91743,25.21308],[97.90538,25.21809],[97.8954,25.23498],[97.88336,25.24753],[97.87575,25.26144],[97.8698,25.26389],[97.86797,25.26634],[97.86134,25.26414],[97.84097,25.27249],[97.83508,25.26384],[97.83248,25.25424],[97.82232,25.23781],[97.81643,25.22513],[97.8097,25.20388],[97.80298,25.18542],[97.8036,25.1787],[97.79803,25.1726],[97.79995,25.16786],[97.78916,25.15162],[97.77769,25.13165],[97.77849,25.12511],[97.76636,25.11049],[97.75698,25.0965],[97.75,25.09541],[97.74577,25.08127],[97.73913,25.07993],[97.73112,25.0817],[97.73049,25.08907],[97.72606,25.08591],[97.72025,25.08524],[97.72649,25.06667],[97.72861,25.04748],[97.71843,25.01345],[97.71884,25.00017],[97.71718,24.98004],[97.71987,24.97216],[97.72739,24.96293],[97.73046,24.95307],[97.73091,24.93803],[97.7284,24.93051],[97.73034,24.91147],[97.73984,24.90551],[97.74597,24.89443],[97.75641,24.88967],[97.75803,24.88558],[97.76376,24.88273],[97.77178,24.88981],[97.77622,24.88416],[97.7834,24.881],[97.78852,24.87442],[97.78971,24.86396],[97.79752,24.86372],[97.79845,24.85351],[97.78228,24.8399],[97.7711,24.83185],[97.76267,24.82878],[97.74857,24.82946],[97.74462,24.83354],[97.7344,24.82997],[97.70903,24.83815],[97.70253,24.84629],[97.70082,24.8418],[97.69568,24.83543],[97.68125,24.83031],[97.66717,24.81498],[97.65035,24.79622],[97.6341,24.79081],[97.61545,24.77885],[97.58914,24.77052],[97.5688,24.77007],[97.56077,24.75293],[97.54783,24.7428],[97.54926,24.73665],[97.55274,24.73049],[97.56669,24.72816],[97.56896,24.71461],[97.56897,24.70767],[97.56554,24.70322],[97.56556,24.69619],[97.56971,24.69337],[97.56909,24.66527],[97.57426,24.66285],[97.57393,24.65731],[97.56847,24.65622],[97.56746,24.64693],[97.56988,24.60207],[97.56474,24.59466],[97.56492,24.58097],[97.56192,24.57631],[97.56489,24.56243],[97.56139,24.56048],[97.55995,24.52981],[97.55702,24.52226],[97.55271,24.48598],[97.53741,24.46],[97.52898,24.4434],[97.53474,24.44292],[97.53006,24.43643],[97.54764,24.44069],[97.57737,24.44188],[97.5912,24.43872],[97.60018,24.44652],[97.60536,24.44073],[97.64228,24.44721],[97.67027,24.45557],[97.67796,24.44667],[97.67528,24.4341],[97.68012,24.41781],[97.68427,24.41528],[97.67582,24.4092],[97.69185,24.38678],[97.70467,24.38464],[97.70319,24.37856],[97.70794,24.37897],[97.71477,24.37667],[97.71407,24.36707],[97.71699,24.36499],[97.71467,24.35706],[97.7096,24.35477],[97.70231,24.34685],[97.68814,24.34393],[97.68795,24.34124],[97.68089,24.34043],[97.67707,24.34632],[97.66874,24.3481],[97.65905,24.33533],[97.66653,24.30067],[97.68979,24.29482],[97.70555,24.29659],[97.71924,24.30023],[97.72992,24.29138],[97.73854,24.28941],[97.74923,24.28274],[97.74961,24.27796],[97.7683,24.26444],[97.75815,24.25406],[97.74388,24.24806],[97.72807,24.22891],[97.72566,24.20274],[97.72736,24.18847],[97.74314,24.18468],[97.7512,24.17418],[97.7524,24.16556],[97.74364,24.16289],[97.7372,24.15059],[97.73467,24.13347],[97.73065,24.12868],[97.7287,24.11448],[97.71493,24.10962],[97.70871,24.10351],[97.70931,24.09943],[97.70091,24.09691],[97.69304,24.09751],[97.67729,24.07741],[97.65128,24.06102],[97.64047,24.04581],[97.63326,24.04799],[97.63258,24.02163],[97.62299,24.02347],[97.62714,24.00645],[97.61333,24.00055],[97.59677,23.99465],[97.57396,23.98725],[97.56762,23.97012],[97.56274,23.96438],[97.55001,23.96028],[97.5318,23.95116],[97.52835,23.94204],[97.52764,23.93167],[97.54238,23.9221],[97.55112,23.9239],[97.56536,23.91315],[97.57289,23.91457],[97.57666,23.91021],[97.5873,23.90774],[97.59931,23.89458],[97.61682,23.89272],[97.62231,23.88395],[97.63192,23.88083],[97.63291,23.87268],[97.63889,23.87143],[97.63742,23.86578],[97.64184,23.86045],[97.6413,23.85213],[97.64556,23.84255],[97.65004,23.84381],[97.64903,23.85511],[97.65728,23.86516],[97.65866,23.8727],[97.66107,23.86799],[97.65953,23.86187],[97.66417,23.85637],[97.66847,23.85716],[97.67141,23.8636],[97.67796,23.86328],[97.68426,23.88276],[97.69228,23.88309],[97.69389,23.87885],[97.68851,23.87548],[97.69887,23.86752],[97.71641,23.87232],[97.71385,23.87755],[97.7033,23.8764],[97.70386,23.88242],[97.70785,23.88655],[97.71874,23.88344],[97.72865,23.89915],[97.74665,23.90481],[97.75153,23.91046],[97.76427,23.91109],[97.76715,23.91439],[97.76248,23.91894],[97.76742,23.92349],[97.76549,23.93118],[97.77434,23.93871],[97.79181,23.94499],[97.79403,23.95691],[97.80612,23.95283],[97.80633,23.95958],[97.81227,23.96232],[97.81558,23.96087],[97.81243,23.95356],[97.80846,23.94833],[97.81248,23.94431],[97.81581,23.94844],[97.8171,23.95447],[97.82496,23.9578],[97.82649,23.96197],[97.82197,23.96576],[97.81827,23.97126],[97.8283,23.97236],[97.82982,23.9639],[97.83488,23.96175],[97.84228,23.9644],[97.8399,23.97471],[97.84409,23.97714],[97.84627,23.97195],[97.85751,23.98229],[97.87012,23.97599],[97.89188,23.97567],[97.89647,23.98288],[97.88745,23.98694],[97.88186,23.99602],[97.89332,24.00479],[97.8986,24.01607],[97.9176,24.02234],[97.92648,24.02265],[97.93878,24.01983],[97.96173,24.02798],[97.98399,24.03488],[97.99579,24.04905],[98.02091,24.06084],[98.04515,24.07614],[98.05143,24.07469],[98.05628,24.07868],[98.07004,24.08067],[98.07349,24.07915],[98.0838,24.0831],[98.08792,24.08266],[98.08873,24.08774],[98.11317,24.09342],[98.14839,24.09782],[98.15908,24.10049],[98.17115,24.10065],[98.16674,24.10551],[98.19371,24.10199],[98.20421,24.10411],[98.20588,24.11013],[98.21333,24.11179],[98.21667,24.11596],[98.224,24.11633],[98.24575,24.11042],[98.27849,24.11109],[98.29406,24.10237],[98.32732,24.10463],[98.34326,24.10169],[98.35123,24.10555],[98.35556,24.10434],[98.35188,24.10092],[98.35897,24.10014],[98.36183,24.11041],[98.36744,24.11379],[98.38979,24.11707],[98.46242,24.12811],[98.48432,24.12361],[98.54741,24.13038],[98.55432,24.11236],[98.57167,24.1019],[98.58901,24.09457],[98.59418,24.08305],[98.61869,24.09175],[98.62673,24.09793],[98.6476,24.10905],[98.66165,24.10725],[98.67981,24.10169],[98.70003,24.11054],[98.71339,24.12941],[98.72397,24.13067],[98.73338,24.12753],[98.74417,24.13004],[98.7575,24.12691],[98.76725,24.12879],[98.7722,24.13255],[98.81934,24.13693],[98.8373,24.12957],[98.85003,24.13165],[98.85795,24.1356],[98.8786,24.15604],[98.88793,24.14341],[98.89383,24.12514],[98.88906,24.11773],[98.89459,24.11721],[98.89839,24.10901],[98.89377,24.10178],[98.88401,24.09267],[98.87006,24.0878],[98.86391,24.08031],[98.86943,24.07471],[98.8631,24.06736],[98.83315,24.04895],[98.819,24.04622],[98.79858,24.02571],[98.77121,24.02926],[98.75922,24.01493],[98.76714,23.99873],[98.75865,23.99649],[98.7529,23.98295],[98.74003,23.98224],[98.73626,23.97139],[98.72599,23.96915],[98.71601,23.97807],[98.70123,23.98699],[98.67581,23.96235],[98.67373,23.95652],[98.69838,23.95457],[98.69755,23.94689],[98.70531,23.94047],[98.70345,23.93656],[98.69973,23.93815],[98.69532,23.93472],[98.68955,23.92894],[98.6872,23.92253],[98.67839,23.91284],[98.68871,23.89992],[98.68529,23.89327],[98.68942,23.89278],[98.69492,23.88726],[98.69527,23.87335],[98.70111,23.872],[98.69631,23.85778],[98.6915,23.85738],[98.69256,23.84817],[98.69834,23.84646],[98.7048,23.84286],[98.69094,23.81242],[98.67833,23.81562],[98.67303,23.80694],[98.68645,23.80342],[98.69488,23.78783],[98.70093,23.78614],[98.70877,23.7922],[98.73651,23.79135],[98.73982,23.78746],[98.74357,23.7846],[98.74662,23.78488],[98.75068,23.77665],[98.78988,23.78406],[98.79832,23.77445],[98.80744,23.76925],[98.80489,23.76625],[98.80567,23.76035],[98.81876,23.74577],[98.83117,23.72868],[98.8238,23.72678],[98.81575,23.71232],[98.81886,23.69784],[98.84019,23.68901],[98.84073,23.67092],[98.8447,23.66792],[98.84783,23.64368],[98.85097,23.63486],[98.8636,23.62982],[98.87828,23.62478],[98.89187,23.6166],[98.89066,23.60444],[98.88053,23.59229],[98.86369,23.58623],[98.85612,23.57725],[98.84475,23.58039],[98.83664,23.57204],[98.83324,23.56382],[98.81542,23.55559],[98.81029,23.54991],[98.80859,23.54296],[98.80107,23.54041],[98.80909,23.52498],[98.80612,23.52159],[98.81757,23.50435],[98.81975,23.49215],[98.81534,23.49078],[98.82104,23.48379],[98.82698,23.48565],[98.82742,23.47869],[98.83476,23.48153],[98.839,23.47877],[98.85004,23.47897],[98.84804,23.4842],[98.85984,23.48617],[98.87643,23.4894],[98.89785,23.45735],[98.89689,23.44794],[98.92064,23.41963],[98.92053,23.41275],[98.91081,23.39578],[98.92238,23.37818],[98.91855,23.37379],[98.92154,23.36466],[98.91767,23.35364],[98.90099,23.3568],[98.89026,23.34281],[98.87679,23.33009],[98.89748,23.33498],[98.90855,23.33546],[98.91529,23.32892],[98.92134,23.32932],[98.93288,23.31774],[98.94106,23.31478],[98.94512,23.30931],[98.93774,23.3068],[98.93662,23.29404],[98.93005,23.2938],[98.92555,23.29546],[98.92555,23.28225],[98.93173,23.26904],[98.91199,23.25456],[98.91148,23.23631],[98.90367,23.22308],[98.89037,23.21237],[98.89595,23.20703],[98.885,23.19142],[98.88503,23.1833],[98.88985,23.17897],[98.90257,23.18133],[98.90996,23.1885],[98.92602,23.18767],[98.93315,23.18243],[98.95241,23.1802],[98.95466,23.17546],[98.96652,23.17072],[98.98069,23.17025],[99.00447,23.16409],[99.01877,23.16432],[99.03444,23.16266],[99.04461,23.16669],[99.05245,23.16333],[99.06097,23.17324],[99.05619,23.15397],[99.049,23.1456],[99.05021,23.13446],[99.04661,23.12333],[99.09624,23.10249],[99.1033,23.09301],[99.11558,23.09253],[99.11276,23.10153],[99.11646,23.10485],[99.12236,23.10078],[99.12963,23.10177],[99.14481,23.10875],[99.15651,23.1053],[99.16546,23.10831],[99.17336,23.10634],[99.18238,23.10758],[99.18933,23.10504],[99.20015,23.11258],[99.20685,23.10861],[99.20737,23.10086],[99.21596,23.09166],[99.22661,23.09193],[99.23383,23.0941],[99.23813,23.09101],[99.2383,23.0854],[99.24895,23.07922],[99.26338,23.08581],[99.25995,23.091],[99.26442,23.10117],[99.27506,23.09809],[99.27987,23.10675],[99.29223,23.10792],[99.30597,23.10215],[99.31088,23.10752],[99.3178,23.10894],[99.32472,23.11288],[99.32493,23.11603],[99.32329,23.12013],[99.32573,23.12612],[99.32955,23.13591],[99.337,23.1329],[99.34245,23.13771],[99.3479,23.13747],[99.34883,23.13351],[99.36303,23.12679],[99.36361,23.11712],[99.3687,23.11608],[99.37125,23.11145],[99.38248,23.10882],[99.38501,23.10087],[99.39108,23.10195],[99.4053,23.0967],[99.41128,23.09839],[99.43442,23.08745],[99.43609,23.08266],[99.44119,23.08608],[99.45899,23.0854],[99.46172,23.08727],[99.47372,23.08252],[99.47869,23.08741],[99.48213,23.08621],[99.48558,23.08249],[99.4952,23.08288],[99.50071,23.08074],[99.51036,23.0848],[99.52486,23.07398],[99.52756,23.06181],[99.53164,23.0547],[99.53025,23.04921],[99.52612,23.04962],[99.52269,23.04687],[99.52542,23.04233],[99.52541,23.03905],[99.52145,23.03773],[99.5175,23.03451],[99.52127,23.02618],[99.51782,23.02511],[99.51644,23.02142],[99.5185,23.01835],[99.52326,23.00271],[99.51946,22.99931],[99.52511,22.9875],[99.53557,22.97506],[99.53449,22.96353],[99.53954,22.9627],[99.54391,22.9644],[99.5536,22.95868],[99.56191,22.946],[99.56526,22.93246],[99.56106,22.92461],[99.56089,22.90765],[99.553,22.90535],[99.54547,22.90835],[99.53659,22.8998],[99.52373,22.90264],[99.51637,22.90801],[99.50912,22.90816],[99.48814,22.91591],[99.47502,22.92887],[99.45709,22.93487],[99.44054,22.94214],[99.44073,22.937],[99.43612,22.92679],[99.43854,22.9207],[99.43581,22.91587],[99.44409,22.88945],[99.44977,22.88001],[99.45089,22.8677],[99.45049,22.86162],[99.45695,22.85807],[99.46204,22.84819],[99.44082,22.84746],[99.43056,22.83855],[99.42268,22.83631],[99.42045,22.83235],[99.42029,22.82775],[99.4032,22.83019],[99.39705,22.82191],[99.3974,22.8181],[99.3902,22.81556],[99.39192,22.81081],[99.38969,22.7964],[99.38502,22.7909],[99.38927,22.78034],[99.38609,22.76554],[99.37882,22.76472],[99.36674,22.76707],[99.36324,22.76467],[99.3618,22.76101],[99.35262,22.75964],[99.35043,22.76133],[99.34549,22.76113],[99.34056,22.75902],[99.34043,22.75564],[99.32636,22.75335],[99.32361,22.74219],[99.31469,22.73926],[99.3182,22.7298],[99.32583,22.72542],[99.32896,22.71562],[99.33758,22.71343],[99.34998,22.6745],[99.36169,22.66344],[99.35901,22.65739],[99.36332,22.6386],[99.369,22.61602],[99.37418,22.61078],[99.37081,22.60473],[99.38392,22.58791],[99.38267,22.58343],[99.38554,22.57451],[99.37296,22.55847],[99.35832,22.53798],[99.3601,22.53091],[99.35845,22.52637],[99.36572,22.51518],[99.38055,22.50652],[99.3809,22.4952],[99.36794,22.48808],[99.36116,22.47716],[99.35125,22.47123],[99.34477,22.46148],[99.33657,22.4565],[99.3325,22.44771],[99.3126,22.44093],[99.30902,22.43644],[99.30963,22.4307],[99.30407,22.42306],[99.28111,22.40329],[99.25236,22.39739],[99.24842,22.39258],[99.25084,22.38549],[99.2653,22.37449],[99.27838,22.36349],[99.27646,22.34869],[99.26666,22.34493],[99.25549,22.33482],[99.25032,22.32094],[99.2472,22.31406],[99.23981,22.30934],[99.23645,22.3054],[99.23684,22.3012],[99.23241,22.29828],[99.23545,22.28324],[99.22942,22.27159],[99.23574,22.25168],[99.22328,22.23734],[99.2188,22.23471],[99.2095,22.23589],[99.20433,22.22786],[99.20526,22.22235],[99.20071,22.22193],[99.19615,22.21611],[99.19656,22.20655],[99.19147,22.21161],[99.19016,22.20269],[99.17509,22.1906],[99.18094,22.18423],[99.1794,22.18201],[99.17486,22.18184],[99.17544,22.17863],[99.18357,22.17477],[99.18715,22.17722],[99.18997,22.17082],[99.19485,22.17459],[99.202,22.17505],[99.19474,22.16724],[99.18021,22.16576],[99.17323,22.17],[99.16477,22.16831],[99.16158,22.17065],[99.15727,22.16897],[99.15936,22.16467],[99.15597,22.16291],[99.16906,22.15035],[99.18178,22.14661],[99.18093,22.14506],[99.18943,22.14174],[99.19362,22.13757],[99.19983,22.13485],[99.20398,22.13022],[99.21366,22.1305],[99.2161,22.1246],[99.26126,22.10957],[99.27183,22.10014],[99.27601,22.10176],[99.27951,22.1091],[99.29132,22.11234],[99.29434,22.11297],[99.30354,22.10216],[99.31714,22.10279],[99.3269,22.0942],[99.33047,22.09897],[99.3385,22.09611],[99.34173,22.10024],[99.35808,22.09388],[99.36438,22.1062],[99.37578,22.10536],[99.39074,22.09954],[99.40543,22.0998],[99.40935,22.09898],[99.41336,22.10335],[99.41463,22.10898],[99.42643,22.11017],[99.43093,22.10506],[99.4342,22.10409],[99.43611,22.1114],[99.44094,22.11424],[99.44645,22.1128],[99.45813,22.12257],[99.46535,22.13001],[99.47393,22.1368],[99.48517,22.13536],[99.48324,22.12987],[99.48639,22.12745],[99.49517,22.12655],[99.49579,22.1207],[99.50848,22.10969],[99.52597,22.09805],[99.53316,22.1074],[99.54568,22.1108],[99.55332,22.10932],[99.56164,22.11739],[99.56884,22.10601],[99.57794,22.10223],[99.58386,22.10766],[99.59163,22.11005],[99.59322,22.11499],[99.60145,22.11189],[99.60506,22.10617],[99.60935,22.10364],[99.61175,22.09666],[99.62411,22.097],[99.62789,22.10257],[99.64213,22.10536],[99.65157,22.10497],[99.64985,22.10067],[99.65208,22.09216],[99.66212,22.09045],[99.66954,22.07782],[99.67497,22.07501],[99.68283,22.07551],[99.68677,22.07862],[99.69663,22.07127],[99.69401,22.06378],[99.69472,22.05856],[99.68789,22.04698],[99.71127,22.0405],[99.7178,22.04393],[99.72176,22.04979],[99.72069,22.0573],[99.71893,22.06035],[99.72269,22.06665],[99.7285,22.06914],[99.73466,22.06907],[99.74049,22.07445],[99.7573,22.07315],[99.7791,22.05656],[99.80914,22.05397],[99.81347,22.04975],[99.8233,22.04806],[99.83746,22.03707],[99.83308,22.02988],[99.85155,22.02681],[99.86659,22.0282],[99.86756,22.03627],[99.878,22.03903],[99.87807,22.04169],[99.86849,22.04747],[99.86234,22.05898],[99.87625,22.07039],[99.89109,22.07037],[99.90525,22.06972],[99.90851,22.06172],[99.91735,22.05836],[99.92745,22.05975],[99.93962,22.06241],[99.94252,22.05934],[99.94088,22.05717],[99.96237,22.0529],[99.96934,22.05872],[99.97317,22.05781],[99.96908,22.0475],[99.96222,22.04361],[99.95949,22.03972],[99.96049,22.03019],[99.96423,22.01812],[99.97056,22.01351],[99.97758,22.00191],[99.98613,21.99779],[99.99973,21.97495],[99.98998,21.96008],[99.98823,21.95254],[99.98236,21.93863],[99.98003,21.935],[99.98251,21.92308],[99.97443,21.91453],[99.96032,21.90954],[99.96235,21.89464],[99.96473,21.88528],[99.9582,21.874],[99.94577,21.86682],[99.94537,21.84848],[99.94702,21.84512],[99.94403,21.82404],[99.94927,21.80901],[99.95795,21.79972],[99.96062,21.79027],[99.96195,21.77662],[99.97016,21.76552],[99.97145,21.75416],[99.97687,21.74662],[99.97484,21.74298],[99.98104,21.73144],[99.98414,21.71706],[99.98981,21.7121],[99.99136,21.70587],[100.01684,21.69456],[100.02615,21.69752],[100.0339,21.69485],[100.03581,21.68885],[100.03291,21.6886],[100.03124,21.6798],[100.03453,21.67523],[100.04262,21.67642],[100.04581,21.66935],[100.05037,21.66675],[100.04944,21.67372],[100.05653,21.68359],[100.06328,21.68574],[100.07209,21.69299],[100.08542,21.69454],[100.09531,21.7063],[100.09972,21.70594],[100.10219,21.70106],[100.1103,21.69926],[100.11085,21.70384],[100.12053,21.70631],[100.12332,21.70163],[100.13054,21.70185],[100.14145,21.68994],[100.16128,21.67548],[100.17485,21.65613],[100.1744,21.65183],[100.17189,21.64882],[100.16114,21.65091],[100.15314,21.64981],[100.14517,21.63902],[100.1396,21.63684],[100.13441,21.62714],[100.13403,21.61807],[100.12915,21.61319],[100.12221,21.61086],[100.1175,21.60501],[100.10867,21.60172],[100.10722,21.59416],[100.10787,21.58527],[100.1178,21.57859],[100.1238,21.56632],[100.11881,21.54829],[100.12251,21.54105],[100.12505,21.532],[100.12072,21.52487],[100.12797,21.50805],[100.1479,21.50053],[100.16783,21.48661],[100.17283,21.49107],[100.1792,21.51788],[100.19129,21.51695],[100.20475,21.51282],[100.21587,21.49114],[100.22576,21.4874],[100.23001,21.48186],[100.23008,21.47398],[100.23358,21.46993],[100.25034,21.46715],[100.25525,21.47171],[100.26285,21.47016],[100.27045,21.47309],[100.28302,21.48605],[100.29688,21.47914],[100.3047,21.49024],[100.31552,21.49263],[100.33356,21.51642],[100.35022,21.53126],[100.37203,21.52965],[100.37572,21.53172],[100.38478,21.52605],[100.39109,21.52421],[100.40913,21.53442],[100.43197,21.5408],[100.44146,21.5226],[100.44106,21.51766],[100.44336,21.51722],[100.44566,21.51359],[100.45689,21.51251],[100.46319,21.49824],[100.45962,21.49339],[100.45879,21.48855],[100.4662,21.48243],[100.46648,21.47904],[100.4697,21.47608],[100.47029,21.47204],[100.47607,21.46906],[100.47656,21.46341],[100.47979,21.45777],[100.48912,21.45825],[100.49214,21.46221],[100.50271,21.46361],[100.51362,21.47044],[100.52179,21.47152],[100.53838,21.47056],[100.55429,21.45428],[100.56224,21.45731],[100.57205,21.45052],[100.58687,21.45314],[100.5955,21.46343],[100.61031,21.46476],[100.62356,21.47502],[100.63888,21.48222],[100.64666,21.48366],[100.65992,21.48287],[100.66907,21.47952],[100.67991,21.48614],[100.68533,21.50478],[100.68943,21.50417],[100.69285,21.50995],[100.70313,21.51541],[100.71376,21.51111],[100.72286,21.51152],[100.7332,21.52472],[100.74354,21.536],[100.74667,21.546],[100.75579,21.55611],[100.76653,21.56181],[100.77109,21.57133],[100.78166,21.57018],[100.7936,21.57094],[100.79285,21.58384],[100.80071,21.59156],[100.80017,21.60309],[100.81257,21.61905],[100.83458,21.63758],[100.84633,21.63759],[100.85441,21.65233],[100.86799,21.67089],[100.88534,21.6869],[100.89058,21.68438],[100.90453,21.68758],[100.90956,21.68376],[100.9138,21.68248],[100.91185,21.69014],[100.91757,21.69047],[100.92329,21.68879],[100.93382,21.6935],[100.93988,21.69852],[100.94449,21.7001],[100.95047,21.69976],[100.97327,21.69942],[100.98165,21.70355],[100.99832,21.70696],[101.01223,21.70974],[101.01585,21.7173],[101.03719,21.73322],[101.05714,21.75169],[101.08103,21.76651],[101.08706,21.77495],[101.10339,21.77478],[101.12178,21.77652],[101.11125,21.76246],[101.10999,21.74905],[101.11972,21.71396],[101.11583,21.69163],[101.12418,21.69001],[101.12561,21.68473],[101.13662,21.67284],[101.15176,21.67116],[101.15105,21.66098],[101.15173,21.65143],[101.15619,21.6508],[101.15928,21.6457],[101.16268,21.63812],[101.15853,21.63309],[101.16195,21.61749],[101.1688,21.60508],[101.16909,21.59246],[101.15275,21.59191],[101.14729,21.58889],[101.14183,21.58141],[101.13842,21.5724],[101.14289,21.56407],[101.14736,21.56212],[101.1496,21.56408],[101.15631,21.56492],[101.17485,21.56185],[101.18825,21.55751],[101.19828,21.56183],[101.20432,21.56176],[101.21037,21.56424],[101.21401,21.56209],[101.21696,21.55675],[101.21655,21.5461],[101.21889,21.538],[101.21645,21.53044],[101.20886,21.52543],[101.21082,21.51558],[101.20905,21.51289],[101.21072,21.50573],[101.22218,21.50008],[101.21453,21.49068],[101.20246,21.4831],[101.19108,21.47553],[101.19361,21.46188],[101.19338,21.45207],[101.19722,21.447],[101.20017,21.43936],[101.19145,21.42212],[101.18058,21.41838],[101.1883,21.41556],[101.19078,21.40712],[101.19786,21.40769],[101.20243,21.40319],[101.21364,21.40157],[101.21822,21.39821],[101.22348,21.39804],[101.23017,21.39298],[101.24098,21.38665],[101.2365,21.38325],[101.23872,21.37867],[101.24155,21.37958],[101.24125,21.37492],[101.25388,21.37024],[101.25635,21.37195],[101.26362,21.37174],[101.26472,21.36833],[101.27131,21.36556],[101.25926,21.35618],[101.25985,21.3492],[101.25563,21.33966],[101.2473,21.33908],[101.24034,21.33849],[101.2387,21.33319],[101.23843,21.32725],[101.22553,21.33008],[101.22555,21.32799],[101.22969,21.32655],[101.22698,21.31982],[101.21882,21.31915],[101.21924,21.31241],[101.21348,21.31015],[101.21682,21.30746],[101.23596,21.3067],[101.24313,21.30023],[101.24389,21.29718],[101.2474,21.29284],[101.2496,21.29569],[101.25182,21.292],[101.24649,21.28894],[101.24459,21.27757],[101.23857,21.27579],[101.23891,21.2681],[101.22825,21.26361],[101.22961,21.25783],[101.22205,21.25398],[101.22702,21.24797],[101.21551,21.23108],[101.21722,21.22796],[101.2246,21.23407],[101.22627,21.23288],[101.22588,21.22785],[101.23271,21.22282],[101.24195,21.22511],[101.24932,21.21953],[101.24855,21.2113],[101.24365,21.20499],[101.24899,21.20498],[101.25433,21.19985],[101.26639,21.19663],[101.27403,21.18954],[101.28037,21.17794],[101.29042,21.17405],[101.29922,21.1769],[101.31358,21.18889],[101.32519,21.1868],[101.33645,21.19735],[101.34429,21.20022],[101.35164,21.20581],[101.35899,21.2082],[101.36737,21.21892],[101.37575,21.22067],[101.3841,21.22674],[101.39926,21.22722],[101.40686,21.22577],[101.42683,21.23168],[101.44817,21.22672],[101.45835,21.22991],[101.4597,21.23375],[101.48164,21.24527],[101.50084,21.24943],[101.50836,21.24655],[101.53069,21.24988],[101.54752,21.25705],[101.55955,21.24736],[101.57448,21.24315],[101.5853,21.24023],[101.58875,21.23428],[101.59943,21.24313],[101.60944,21.23663],[101.61498,21.2282],[101.60352,21.22281],[101.60066,21.21874],[101.60369,21.21223],[101.59182,21.19905],[101.58543,21.19035],[101.59768,21.17764],[101.6038,21.18121],[101.60961,21.17563],[101.61325,21.17989],[101.62022,21.18459],[101.6217,21.188],[101.63036,21.19845],[101.65001,21.19962],[101.67309,21.20398],[101.67801,21.19769],[101.676,21.19198],[101.67949,21.18115],[101.68715,21.18062],[101.69147,21.17536],[101.69922,21.17395],[101.70388,21.16325],[101.69509,21.15609],[101.69797,21.14894],[101.70711,21.14947],[101.71487,21.1468],[101.71665,21.14338],[101.73255,21.14724],[101.73745,21.14407],[101.74545,21.14794],[101.75666,21.14475],[101.76513,21.14476],[101.7642,21.15391],[101.77082,21.15602],[101.77465,21.16139],[101.7826,21.16613],[101.79123,21.18687],[101.78636,21.1919],[101.78972,21.20205],[101.77625,21.20291],[101.77203,21.20505],[101.76781,21.21551],[101.7804,21.21988],[101.79918,21.20634],[101.81573,21.21333],[101.82606,21.21139],[101.82848,21.20497],[101.84102,21.20721],[101.83969,21.21209],[101.8418,21.21696],[101.83738,21.2196],[101.8361,21.22938],[101.84512,21.25325],[101.83423,21.25823],[101.8298,21.25755],[101.82124,21.26072],[101.80993,21.25588],[101.81236,21.26129],[101.80247,21.27436],[101.80082,21.29192],[101.79011,21.28733],[101.78283,21.29489],[101.76759,21.2889],[101.75551,21.29582],[101.7393,21.31042],[101.74027,21.31415],[101.73505,21.32235],[101.72696,21.3547],[101.73673,21.36434],[101.74168,21.36439],[101.73656,21.37191],[101.74381,21.37878],[101.73731,21.39845],[101.74025,21.40988],[101.74455,21.41108],[101.75045,21.40629],[101.75361,21.40917],[101.75523,21.41688],[101.7468,21.42972],[101.75604,21.43752],[101.75529,21.4544],[101.74967,21.45876],[101.75079,21.46685],[101.74617,21.46512],[101.73761,21.48468],[101.74413,21.48982],[101.7486,21.49112],[101.7534,21.49883],[101.76027,21.50212],[101.76783,21.51252],[101.77952,21.51608],[101.76999,21.52871],[101.7584,21.53047],[101.75446,21.54677],[101.76236,21.56276],[101.75653,21.56247],[101.75215,21.56575],[101.74778,21.57286],[101.74992,21.58253],[101.74932,21.58773],[101.75533,21.58614],[101.76203,21.58265],[101.76632,21.5849],[101.78113,21.57812],[101.80418,21.57581],[101.81072,21.58423],[101.80903,21.58946],[101.82243,21.59989],[101.83445,21.61416],[101.82588,21.62385],[101.81867,21.62396],[101.81147,21.62917],[101.8107,21.63718],[101.80585,21.63991],[101.80168,21.63498],[101.79817,21.63532],[101.7916,21.63773],[101.78504,21.63631],[101.78572,21.64207],[101.78229,21.64783],[101.78435,21.65744],[101.78058,21.65588],[101.77681,21.65943],[101.76995,21.65759],[101.77272,21.66446],[101.77136,21.67324],[101.77585,21.67788],[101.7769,21.6889],[101.7715,21.6934],[101.76412,21.69476],[101.77326,21.70147],[101.76799,21.7184],[101.75881,21.7261],[101.751,21.72614],[101.74594,21.72809],[101.7474,21.73731],[101.742,21.75034],[101.75136,21.75222],[101.75866,21.75793],[101.7609,21.78082],[101.77027,21.80437],[101.77237,21.81934],[101.78287,21.82045],[101.78443,21.82411],[101.77601,21.82909],[101.7772,21.83216],[101.77801,21.83556],[101.77195,21.83768],[101.76809,21.83682],[101.76514,21.83486],[101.75259,21.83863],[101.73847,21.84808],[101.73602,21.85976],[101.73769,21.86443],[101.73869,21.87153],[101.73557,21.87799],[101.72517,21.88408],[101.71408,21.88189],[101.70598,21.89345],[101.69445,21.90278],[101.6995,21.90999],[101.7073,21.92039],[101.70571,21.92646],[101.70274,21.92872],[101.69852,21.94596],[101.6897,21.94649],[101.67984,21.94129],[101.67799,21.93598],[101.66809,21.93173],[101.66322,21.93959],[101.65766,21.94298],[101.65477,21.95296],[101.63163,21.95562],[101.61662,21.977],[101.61802,21.99126],[101.62011,22.00234],[101.63389,22.01049],[101.6177,22.02401],[101.61113,22.03816],[101.61445,22.0512],[101.60771,22.05581],[101.60439,22.06297],[101.59364,22.06336],[101.59661,22.08349],[101.58817,22.08947],[101.58935,22.09355],[101.5862,22.10234],[101.57948,22.1018],[101.57612,22.11489],[101.57344,22.12798],[101.58903,22.13158],[101.59477,22.12702],[101.59936,22.13142],[101.606,22.13009],[101.59983,22.13556],[101.59366,22.14675],[101.60397,22.15578],[101.60057,22.16047],[101.59784,22.15805],[101.59649,22.16263],[101.59237,22.16316],[101.58689,22.16688],[101.59136,22.17632],[101.58897,22.18258],[101.57752,22.1866],[101.56745,22.20015],[101.57135,22.20819],[101.56523,22.21602],[101.54263,22.2283],[101.54475,22.23646],[101.53894,22.24244],[101.538,22.2487],[101.53913,22.25496],[101.55536,22.26949],[101.56129,22.28083],[101.58755,22.28108],[101.59927,22.27272],[101.60824,22.26944],[101.61606,22.27434],[101.62684,22.28028],[101.62982,22.28707],[101.62732,22.2983],[101.63266,22.31445],[101.63938,22.31567],[101.64789,22.32486],[101.65227,22.33468],[101.65103,22.34007],[101.64704,22.34608],[101.65695,22.36687],[101.67633,22.37313],[101.67957,22.38162],[101.6712,22.40097],[101.66078,22.41969],[101.66923,22.42699],[101.67157,22.4311],[101.66636,22.43838],[101.66321,22.44186],[101.66555,22.44851],[101.67286,22.45035],[101.68611,22.45721],[101.69062,22.46459],[101.68313,22.47165],[101.684,22.47452],[101.68693,22.47803],[101.6956,22.47535],[101.71115,22.47583],[101.72026,22.473],[101.72583,22.47531],[101.73414,22.49728],[101.74259,22.49701],[101.75173,22.49356],[101.75389,22.49517],[101.75193,22.49868],[101.75489,22.50062],[101.77221,22.50333],[101.78334,22.4997],[101.79974,22.48009],[101.81055,22.48337],[101.81416,22.47998],[101.80807,22.47544],[101.81292,22.46365],[101.8212,22.46391],[101.82669,22.45144],[101.82429,22.43917],[101.83279,22.42039],[101.85558,22.40243],[101.866,22.38765],[101.88193,22.38651],[101.8892,22.38784],[101.89284,22.38312],[101.89912,22.38139],[101.90265,22.38347],[101.9044,22.38905],[101.91096,22.39718],[101.9148,22.40455],[101.91212,22.41255],[101.9161,22.4248],[101.90985,22.43125],[101.90741,22.43637],[101.91573,22.43956],[101.92748,22.44084],[101.92755,22.43704],[101.9403,22.43705],[101.94495,22.43959],[101.95071,22.44086],[101.95304,22.44213],[101.9569,22.43685],[101.96673,22.42817],[101.97585,22.43082],[101.98498,22.42902],[101.99911,22.4324],[102.00088,22.43579],[101.99853,22.44044],[102.00145,22.44383],[102.01158,22.44087],[102.01497,22.44727],[102.0211,22.45049],[102.02239,22.45568],[102.04059,22.45505],[102.04643,22.45822],[102.0581,22.44966],[102.07595,22.44506],[102.08728,22.44117],[102.09466,22.44367],[102.10205,22.443],[102.11166,22.43633],[102.12265,22.43602],[102.12574,22.43284],[102.12728,22.42015],[102.1332,22.40714],[102.14462,22.39857],[102.14751,22.40555],[102.15411,22.41285],[102.15534,22.42412],[102.15802,22.42372],[102.16001,22.42904],[102.16918,22.42793],[102.17698,22.43253],[102.18157,22.4315],[102.18821,22.43364],[102.20893,22.42626],[102.21291,22.43061],[102.22444,22.4248],[102.22987,22.42681],[102.2401,22.42565],[102.24899,22.41825],[102.26337,22.41211],[102.26661,22.4192],[102.26986,22.42248],[102.2644,22.43655],[102.25893,22.44231],[102.25689,22.44935],[102.24941,22.45591],[102.25025,22.46078],[102.26359,22.4646],[102.26614,22.47539],[102.2729,22.47952],[102.27168,22.4842],[102.28144,22.50094],[102.28845,22.50372],[102.29402,22.51208],[102.30298,22.53165],[102.32293,22.54773],[102.32256,22.55456],[102.33946,22.55881],[102.35499,22.56495],[102.35554,22.56993],[102.35136,22.57495],[102.34649,22.58188],[102.34828,22.5893],[102.35317,22.58863],[102.35805,22.59177],[102.36328,22.58952],[102.37263,22.5917],[102.38713,22.6072],[102.39196,22.61852],[102.39918,22.6245],[102.40365,22.63111],[102.41087,22.63344],[102.42083,22.63514],[102.41878,22.64096],[102.41124,22.6426],[102.40506,22.63981],[102.4007,22.64756],[102.39909,22.65595],[102.389,22.66513],[102.38393,22.68158],[102.39438,22.69049],[102.4099,22.68434],[102.42075,22.69092],[102.42569,22.6913],[102.43682,22.70182],[102.44588,22.72532],[102.45769,22.73171],[102.45218,22.74221],[102.45388,22.74714],[102.45215,22.75207],[102.46927,22.77116],[102.47878,22.77008],[102.48211,22.77343],[102.4827,22.77995],[102.51078,22.77806],[102.5269,22.76414],[102.53565,22.76002],[102.54371,22.74831],[102.55124,22.74483],[102.54918,22.74024],[102.55569,22.7294],[102.56071,22.72875],[102.56574,22.72304],[102.5696,22.70339],[102.58582,22.70559],[102.58878,22.72189],[102.60056,22.7313],[102.60753,22.73185],[102.62586,22.71492],[102.64464,22.70012],[102.65163,22.69715],[102.65656,22.68912],[102.67156,22.69712],[102.68318,22.69827],[102.69,22.70259],[102.70843,22.69286],[102.71113,22.67975],[102.72449,22.67764],[102.7274,22.6731],[102.73675,22.66512],[102.7452,22.6662],[102.74884,22.67045],[102.7542,22.66646],[102.76505,22.6479],[102.77385,22.64835],[102.7779,22.64509],[102.78813,22.64373],[102.78718,22.63797],[102.78396,22.63667],[102.78853,22.62525],[102.79476,22.62581],[102.80237,22.62256],[102.80929,22.62501],[102.81828,22.62303],[102.82216,22.62604],[102.82605,22.62714],[102.8317,22.62355],[102.84559,22.61995],[102.84796,22.61213],[102.86474,22.61128],[102.86636,22.6023],[102.87025,22.59876],[102.87484,22.59839],[102.884,22.58845],[102.88204,22.57927],[102.87459,22.57516],[102.88509,22.56758],[102.88451,22.563],[102.8798,22.56032],[102.88883,22.55288],[102.89305,22.55242],[102.89895,22.54328],[102.89262,22.54303],[102.89316,22.53643],[102.89767,22.53085],[102.90876,22.52476],[102.91259,22.51775],[102.9123,22.51011],[102.92407,22.50782],[102.9235,22.49493],[102.92594,22.48655],[102.93196,22.48204],[102.93913,22.48456],[102.95248,22.48137],[102.95484,22.4839],[102.95789,22.48388],[102.96513,22.4774],[102.9794,22.47861],[102.98817,22.47791],[102.98857,22.47305],[102.99309,22.47199],[102.99321,22.46417],[103.00959,22.45583],[103.03146,22.44177],[103.03616,22.44586],[103.05328,22.44504],[103.05666,22.45057],[103.06965,22.44643],[103.08059,22.45053],[103.08211,22.45988],[103.08046,22.46361],[103.07951,22.46923],[103.07087,22.47588],[103.07204,22.49039],[103.08057,22.50053],[103.08841,22.51066],[103.10107,22.51603],[103.12079,22.5173],[103.12507,22.52586],[103.13064,22.52871],[103.14102,22.54044],[103.14866,22.54456],[103.15801,22.54107],[103.17064,22.55044],[103.1843,22.56045],[103.17523,22.56696],[103.17028,22.57663],[103.16292,22.58314],[103.15762,22.59472],[103.16248,22.59791],[103.16576,22.61154],[103.17719,22.62978],[103.18531,22.63097],[103.18353,22.64012],[103.18642,22.64438],[103.19679,22.65063],[103.20747,22.64552],[103.2286,22.64867],[103.23196,22.65753],[103.25355,22.67273],[103.26194,22.6713],[103.26545,22.67407],[103.26896,22.67304],[103.28378,22.68313],[103.28276,22.68906],[103.2838,22.70323],[103.28829,22.70653],[103.28832,22.71601],[103.2904,22.71916],[103.28596,22.72928],[103.28752,22.73782],[103.29632,22.74676],[103.30375,22.75824],[103.30901,22.76279],[103.31358,22.77684],[103.32135,22.78151],[103.31734,22.78648],[103.31959,22.79009],[103.31798,22.8014],[103.31911,22.807],[103.32136,22.81189],[103.3273,22.81338],[103.33027,22.81159],[103.33004,22.8088],[103.33461,22.80664],[103.35394,22.80275],[103.3719,22.79886],[103.38482,22.78696],[103.39086,22.78266],[103.40888,22.7778],[103.41316,22.77483],[103.41745,22.76902],[103.41571,22.76468],[103.42163,22.76043],[103.42892,22.76061],[103.4369,22.75478],[103.44007,22.75338],[103.44312,22.74184],[103.44549,22.73854],[103.43964,22.738],[103.42829,22.73366],[103.42966,22.71898],[103.4269,22.7138],[103.4311,22.71029],[103.43256,22.70234],[103.43436,22.70358],[103.44578,22.69405],[103.44629,22.68988],[103.45512,22.68431],[103.46122,22.67747],[103.45708,22.66015],[103.46497,22.65243],[103.46312,22.64909],[103.46735,22.64331],[103.47432,22.64322],[103.47797,22.63734],[103.48299,22.63464],[103.4817,22.62986],[103.48964,22.61923],[103.50047,22.6136],[103.50856,22.61304],[103.50786,22.60411],[103.52295,22.59585],[103.5305,22.59328],[103.54828,22.61313],[103.54672,22.61794],[103.55177,22.62573],[103.55339,22.63542],[103.57087,22.64059],[103.58007,22.66298],[103.57667,22.67125],[103.56846,22.67888],[103.56441,22.69921],[103.58058,22.72046],[103.6098,22.75754],[103.61015,22.76555],[103.62012,22.77418],[103.61789,22.78314],[103.62048,22.78576],[103.63165,22.78974],[103.6369,22.78888],[103.63986,22.79636],[103.64392,22.79472],[103.65072,22.79309],[103.6624,22.78818],[103.66721,22.76864],[103.6806,22.76429],[103.68369,22.75456],[103.69399,22.74546],[103.7036,22.74246],[103.73828,22.71082],[103.73996,22.70821],[103.73751,22.70053],[103.74743,22.69634],[103.75082,22.68803],[103.76678,22.69058],[103.77288,22.6818],[103.77829,22.6781],[103.78155,22.66942],[103.79409,22.662],[103.80598,22.64605],[103.81306,22.64087],[103.82379,22.61784],[103.83984,22.60681],[103.84628,22.59514],[103.86027,22.58791],[103.87688,22.56559],[103.88313,22.56394],[103.88591,22.57072],[103.89143,22.56863],[103.91582,22.54415],[103.9138,22.53418],[103.91932,22.53396],[103.92655,22.54039],[103.93277,22.5263],[103.94518,22.52648],[103.95145,22.51384],[103.96355,22.50438],[103.96568,22.51045],[103.97087,22.51126],[103.97277,22.50596],[103.97922,22.50712],[103.98313,22.51245],[103.98817,22.5148],[103.99116,22.51906],[104.00269,22.5175],[104.01217,22.52101],[104.00963,22.53277],[104.0063,22.53896],[104.00978,22.54301],[104.0153,22.54282],[104.01222,22.54685],[104.01515,22.54981],[104.01146,22.55922],[104.01683,22.56297],[104.01573,22.56865],[104.00729,22.57086],[104.00587,22.57648],[104.00994,22.5783],[104.01366,22.57791],[104.01552,22.59324],[104.01876,22.59399],[104.02587,22.61355],[104.02387,22.62461],[104.03148,22.64012],[104.03051,22.65087],[104.0316,22.65338],[104.02648,22.65713],[104.02136,22.66532],[104.03103,22.6836],[104.02978,22.68847],[104.03465,22.70436],[104.03951,22.72216],[104.04813,22.73399],[104.06102,22.74972],[104.06635,22.74962],[104.07325,22.75511],[104.0822,22.75807],[104.0812,22.76156],[104.0905,22.76695],[104.09739,22.78531],[104.10907,22.79798],[104.12144,22.80748],[104.13002,22.80969],[104.13947,22.80131],[104.1441,22.80178],[104.15569,22.80756],[104.16733,22.81614],[104.17758,22.81777],[104.18841,22.82236],[104.19391,22.81888],[104.22002,22.82711],[104.22587,22.82522],[104.24889,22.83915],[104.258,22.84074],[104.26599,22.84407],[104.27639,22.83822],[104.26682,22.81911],[104.26824,22.81393],[104.25528,22.77762],[104.2588,22.77075],[104.2582,22.76641],[104.26989,22.75443],[104.26879,22.74155],[104.27452,22.74008],[104.27956,22.74177],[104.30143,22.72921],[104.30878,22.72876],[104.31452,22.7317],[104.32026,22.73085],[104.33826,22.72217],[104.3407,22.71825],[104.34176,22.71117],[104.34867,22.70726],[104.35351,22.69322],[104.36523,22.6924],[104.3742,22.68969],[104.3897,22.69838],[104.3997,22.70137],[104.40938,22.72579],[104.4156,22.72882],[104.42214,22.7373],[104.45974,22.75262],[104.46507,22.75148],[104.47715,22.75786],[104.49408,22.77275],[104.49574,22.77584],[104.50083,22.77576],[104.50723,22.78448],[104.51712,22.78765],[104.52652,22.80285],[104.52967,22.81282],[104.53777,22.81781],[104.54312,22.82532],[104.5659,22.83324],[104.57014,22.84779],[104.57879,22.85444],[104.57803,22.85895],[104.58688,22.85966],[104.58771,22.85416],[104.59952,22.84487],[104.59907,22.83927],[104.60343,22.83241],[104.60401,22.82776],[104.59847,22.82417],[104.59842,22.81615],[104.6071,22.81969],[104.61442,22.81626],[104.61807,22.82523],[104.62124,22.82229],[104.62484,22.83222],[104.65744,22.83626],[104.66395,22.82733],[104.6684,22.826],[104.67659,22.81685],[104.69027,22.82796],[104.72183,22.82244],[104.73485,22.81818],[104.73397,22.83171],[104.73857,22.84018],[104.73563,22.84959],[104.73817,22.85395],[104.75729,22.8606],[104.76542,22.87391],[104.76605,22.88531],[104.77014,22.88879],[104.77184,22.89591],[104.77613,22.90042],[104.78178,22.9005],[104.78306,22.90418],[104.79051,22.90564],[104.79441,22.90645],[104.79693,22.91169],[104.80118,22.91124],[104.80576,22.91553],[104.8102,22.91894],[104.81875,22.9236],[104.8358,22.92521],[104.85114,22.9363],[104.86305,22.94992],[104.85952,22.96205],[104.85384,22.96572],[104.84746,22.96559],[104.84295,22.97039],[104.84689,22.97948],[104.8431,22.99513],[104.83757,22.99483],[104.8375,22.99928],[104.82705,23.01198],[104.83096,23.02416],[104.82801,23.03634],[104.83034,23.04806],[104.82401,23.07024],[104.81262,23.08287],[104.8129,23.11886],[104.82008,23.12139],[104.83191,23.11823],[104.85061,23.11633],[104.85504,23.11791],[104.85879,23.12643],[104.86294,23.12632],[104.86228,23.12279],[104.87259,23.12115],[104.87816,23.14366],[104.87625,23.15078],[104.87791,23.16502],[104.8964,23.18021],[104.90803,23.18719],[104.91881,23.18609],[104.94725,23.17062],[104.95097,23.1722],[104.95901,23.18814],[104.95514,23.19958],[104.95623,23.20528],[104.95869,23.20782],[104.96699,23.20406],[104.97666,23.19398],[104.99612,23.19999],[105.00173,23.2153],[105.00483,23.21879],[105.01755,23.21912],[105.02925,23.22295],[105.03484,23.23235],[105.04386,23.2367],[105.05022,23.24476],[105.05934,23.24936],[105.06183,23.25544],[105.06692,23.25681],[105.07201,23.26195],[105.0819,23.25953],[105.08204,23.25548],[105.09413,23.26008],[105.10278,23.26216],[105.10996,23.24907],[105.11931,23.24975],[105.12523,23.2561],[105.13677,23.25864],[105.14425,23.26212],[105.15312,23.26497],[105.16246,23.27384],[105.16653,23.2849],[105.17337,23.28459],[105.1802,23.28176],[105.18361,23.27704],[105.19355,23.27846],[105.19784,23.27633],[105.19757,23.26707],[105.19802,23.26444],[105.20328,23.26559],[105.20648,23.27084],[105.21254,23.27473],[105.21385,23.26658],[105.22045,23.26825],[105.22395,23.27213],[105.23123,23.27159],[105.23315,23.27637],[105.22794,23.28317],[105.22955,23.2855],[105.23391,23.28594],[105.23764,23.28837],[105.24411,23.2889],[105.25264,23.3112],[105.25705,23.31205],[105.25888,23.31964],[105.2487,23.32878],[105.25528,23.34187],[105.26338,23.34305],[105.27353,23.33982],[105.28406,23.34299],[105.28418,23.34835],[105.28772,23.35056],[105.28795,23.35877],[105.29528,23.36161],[105.30054,23.37454],[105.32274,23.39347],[105.33332,23.38068],[105.34732,23.37042],[105.35072,23.36576],[105.35137,23.34345],[105.36885,23.32366],[105.37106,23.3185],[105.38384,23.30993],[105.38955,23.30186],[105.39411,23.29309],[105.40658,23.28307],[105.40989,23.28279],[105.41869,23.29955],[105.42531,23.30215],[105.43291,23.29919],[105.44669,23.27983],[105.45188,23.27846],[105.47069,23.25588],[105.47851,23.25096],[105.48483,23.23904],[105.48634,23.23406],[105.49035,23.23062],[105.49093,23.22277],[105.49529,23.21586],[105.49507,23.20736],[105.49896,23.20453],[105.5267,23.19374],[105.54365,23.1814],[105.55855,23.16906],[105.56227,23.15963],[105.56207,23.14986],[105.56736,23.14073],[105.55764,23.13228],[105.56496,23.12645],[105.5652,23.12046],[105.57162,23.10942],[105.57323,23.1028],[105.56731,23.09275],[105.5671,23.0878],[105.57032,23.07749],[105.5747,23.07328],[105.58467,23.07098],[105.5902,23.07521],[105.59264,23.07977],[105.5985,23.08053],[105.60715,23.07922],[105.61237,23.07537],[105.61607,23.06885],[105.62621,23.07316],[105.63011,23.07961],[105.64501,23.08416],[105.6496,23.07987],[105.65213,23.07557],[105.66399,23.07388],[105.67721,23.06271],[105.70847,23.06374],[105.72616,23.06521],[105.73157,23.05773],[105.72983,23.05396],[105.72878,23.04388],[105.73426,23.0379],[105.73698,23.03508],[105.7472,23.03993],[105.75505,23.03793],[105.75726,23.03504],[105.76428,23.03341],[105.77373,23.02352],[105.78163,23.02017],[105.78747,23.00544],[105.80362,22.99261],[105.81496,22.99318],[105.833,22.97924],[105.83201,22.97086],[105.83515,22.96374],[105.84221,22.96065],[105.85476,22.94998],[105.85289,22.94626],[105.85809,22.94027],[105.85986,22.93555],[105.86609,22.93778],[105.87263,22.93131],[105.87135,22.92795],[105.87002,22.92406],[105.87588,22.91927],[105.88174,22.91891],[105.88914,22.93559],[105.92336,22.94945],[105.92486,22.94233],[105.93453,22.93687],[105.94658,22.93731],[105.95519,22.939],[105.9575,22.95006],[105.98177,22.945],[105.98945,22.93899],[105.99497,22.94238],[105.99775,22.94009],[105.99982,22.95001],[106.00327,22.95803],[106.00791,22.96599],[106.00509,22.97219],[106.00157,22.97332],[105.99729,22.97149],[105.99583,22.97531],[106.00163,22.98007],[106.00262,22.99051],[106.02329,22.99067],[106.03709,22.99271],[106.04163,22.98908],[106.05008,22.99263],[106.06185,22.98998],[106.07844,22.99808],[106.08733,22.99581],[106.09486,22.98931],[106.10876,22.98969],[106.1224,22.97992],[106.12545,22.98358],[106.12209,22.98623],[106.12285,22.99014],[106.12773,22.99279],[106.13055,22.99924],[106.13979,22.99381],[106.14509,22.99458],[106.16199,22.98785],[106.16516,22.98365],[106.18375,22.98462],[106.20371,22.98244],[106.21128,22.97059],[106.21575,22.97099],[106.21832,22.9636],[106.22408,22.96528],[106.22365,22.95748],[106.23293,22.95511],[106.23586,22.95773],[106.23629,22.94797],[106.24131,22.94182],[106.24382,22.94634],[106.24908,22.92493],[106.25769,22.91989],[106.26276,22.91421],[106.2644,22.90726],[106.26161,22.90489],[106.26088,22.89619],[106.25157,22.89446],[106.26408,22.88125],[106.25592,22.8794],[106.28617,22.86708],[106.29031,22.86946],[106.28998,22.87382],[106.29908,22.87378],[106.30809,22.86396],[106.31093,22.86362],[106.32026,22.87069],[106.32346,22.87309],[106.32802,22.87296],[106.3358,22.86498],[106.34563,22.85701],[106.36234,22.86359],[106.36342,22.86697],[106.36176,22.87035],[106.36491,22.87374],[106.36325,22.87902],[106.37574,22.88366],[106.38239,22.87977],[106.39127,22.88385],[106.39533,22.88035],[106.40278,22.88093],[106.40605,22.87357],[106.41535,22.87466],[106.41608,22.87937],[106.40863,22.88499],[106.42325,22.89624],[106.42913,22.88584],[106.43397,22.88839],[106.44292,22.89094],[106.44671,22.90202],[106.45478,22.90281],[106.46156,22.89499],[106.46496,22.90025],[106.47215,22.90035],[106.4712,22.9048],[106.47518,22.90766],[106.47917,22.90735],[106.48234,22.90264],[106.4965,22.90424],[106.50132,22.90836],[106.49824,22.91865],[106.50197,22.92215],[106.50021,22.92881],[106.50397,22.92913],[106.50292,22.93578],[106.51045,22.93959],[106.51111,22.94845],[106.52755,22.94484],[106.53781,22.94438],[106.54086,22.94203],[106.54204,22.93263],[106.54606,22.92667],[106.56588,22.91755],[106.57332,22.92375],[106.58076,22.92426],[106.58603,22.93004],[106.59129,22.93267],[106.59621,22.9277],[106.60211,22.92775],[106.60732,22.92084],[106.6095,22.90953],[106.61986,22.89628],[106.63159,22.89125],[106.62428,22.88064],[106.63212,22.87733],[106.64339,22.87403],[106.65289,22.86363],[106.66514,22.87537],[106.66886,22.87364],[106.67072,22.87816],[106.66604,22.88324],[106.6689,22.89212],[106.67549,22.89055],[106.68413,22.88202],[106.6876,22.88614],[106.69379,22.88756],[106.69655,22.8833],[106.70139,22.88362],[106.70244,22.88757],[106.70639,22.88892],[106.71047,22.88166],[106.71867,22.87441],[106.70897,22.8637],[106.74337,22.84232],[106.74272,22.83828],[106.75167,22.83626],[106.75443,22.83234],[106.7683,22.82629],[106.76416,22.81228],[106.76501,22.80942],[106.77341,22.81794],[106.78071,22.81524],[106.79487,22.81571],[106.80469,22.82132],[106.81864,22.81997],[106.82523,22.81276],[106.83457,22.80808],[106.83677,22.80252],[106.83277,22.80113],[106.8274,22.78961],[106.82283,22.78809],[106.82384,22.77972],[106.81866,22.77325],[106.81383,22.76963],[106.80625,22.76917],[106.79722,22.77051],[106.78449,22.7515],[106.77141,22.73375],[106.76981,22.73066],[106.7744,22.7206],[106.76846,22.71569],[106.78214,22.71007],[106.78552,22.70381],[106.77022,22.69831],[106.75972,22.68963],[106.76632,22.68261],[106.76241,22.67561],[106.75781,22.67178],[106.74216,22.66976],[106.73682,22.66221],[106.73895,22.65717],[106.73284,22.6458],[106.72627,22.64465],[106.72137,22.63728],[106.7289,22.63282],[106.72338,22.61949],[106.7144,22.61311],[106.71713,22.61024],[106.7274,22.60293],[106.72735,22.58641],[106.70809,22.57865],[106.69844,22.58356],[106.68073,22.5712],[106.66655,22.5769],[106.65225,22.57468],[106.63546,22.58998],[106.6269,22.60464],[106.6098,22.60289],[106.60296,22.58804],[106.60691,22.58559],[106.6095,22.57934],[106.59887,22.57572],[106.60386,22.56148],[106.59846,22.55657],[106.59924,22.5504],[106.59,22.5495],[106.58937,22.53105],[106.58118,22.51703],[106.58129,22.50486],[106.58415,22.47556],[106.58109,22.47312],[106.57734,22.46814],[106.57259,22.47149],[106.55897,22.46235],[106.55728,22.45602],[106.55902,22.44397],[106.56526,22.43639],[106.56563,22.42466],[106.55895,22.42197],[106.56531,22.40976],[106.56603,22.39613],[106.57608,22.38233],[106.58338,22.37614],[106.57965,22.37099],[106.57195,22.37031],[106.57317,22.36265],[106.55953,22.34917],[106.5686,22.3427],[106.57704,22.34617],[106.58205,22.34011],[106.58919,22.34279],[106.60252,22.33849],[106.61446,22.33959],[106.62023,22.3337],[106.63784,22.34044],[106.65008,22.33809],[106.65958,22.33383],[106.66002,22.32596],[106.66321,22.32126],[106.66637,22.32152],[106.66541,22.31067],[106.67008,22.29857],[106.66658,22.28998],[106.66689,22.28537],[106.6728,22.28533],[106.67871,22.28973],[106.6812,22.29049],[106.69054,22.27853],[106.68894,22.27109],[106.68393,22.26722],[106.68991,22.25764],[106.695,22.23274],[106.70215,22.23072],[106.7045,22.22044],[106.69953,22.218],[106.69869,22.2073],[106.68945,22.20179],[106.67852,22.20411],[106.68215,22.20035],[106.67205,22.18196],[106.67747,22.17627],[106.67877,22.16993],[106.68934,22.16265],[106.70355,22.16155],[106.70747,22.15536],[106.69862,22.15515],[106.69526,22.14285],[106.68813,22.13755],[106.69336,22.13289],[106.69249,22.11974],[106.69617,22.11381],[106.69608,22.10724],[106.7072,22.1013],[106.71215,22.09537],[106.71127,22.08926],[106.70626,22.08505],[106.70847,22.08181],[106.70656,22.06711],[106.69655,22.05361],[106.70092,22.04864],[106.69841,22.04113],[106.70508,22.0382],[106.70831,22.02495],[106.69774,22.01388],[106.68374,22.00343],[106.68484,21.98503],[106.6928,21.96409],[106.70081,21.96941],[106.70607,21.96901],[106.70687,21.97624],[106.71928,21.97413],[106.73184,21.99488],[106.72628,21.99968],[106.7283,22.00718],[106.74545,22.01379],[106.74716,22.00939],[106.75093,22.00818],[106.75454,22.01219],[106.76707,22.01302],[106.77333,22.00563],[106.78371,22.00461],[106.78792,21.98991],[106.79052,21.98894],[106.79586,21.99306],[106.79811,21.98763],[106.79747,21.98564],[106.80027,21.97982],[106.80578,21.98058],[106.80718,21.97496],[106.81204,21.97329],[106.83239,21.97421],[106.83215,21.98246],[106.8382,21.98308],[106.8454,21.97839],[106.84916,21.98133],[106.86494,21.98173],[106.87797,21.98021],[106.90437,21.97145],[106.91449,21.97567],[106.91911,21.97224],[106.92367,21.96203],[106.92205,21.95244],[106.92833,21.94127],[106.93049,21.92978],[106.95285,21.93348],[106.95364,21.92445],[106.96198,21.91925],[106.97924,21.92646],[106.98768,21.94117],[106.99337,21.95332],[107.00466,21.94601],[107.02351,21.94506],[107.02847,21.93695],[107.0348,21.93775],[107.04003,21.93194],[107.04937,21.92932],[107.05116,21.92319],[107.05982,21.91961],[107.05786,21.91088],[107.06345,21.89323],[107.05214,21.88256],[107.04013,21.87825],[107.03122,21.86758],[107.01613,21.862],[107.01358,21.85314],[107.02064,21.84236],[107.02515,21.82336],[107.03941,21.81495],[107.06096,21.8093],[107.08182,21.80908],[107.09849,21.79525],[107.11721,21.79416],[107.12567,21.77775],[107.13402,21.77369],[107.13962,21.76325],[107.15975,21.75704],[107.16477,21.74892],[107.17152,21.75283],[107.17621,21.74781],[107.18559,21.74669],[107.1936,21.73346],[107.19817,21.73172],[107.19654,21.72089],[107.22042,21.70754],[107.24841,21.70407],[107.25012,21.71618],[107.26436,21.72766],[107.28109,21.7334],[107.28751,21.73181],[107.28843,21.73659],[107.30058,21.74297],[107.30538,21.73881],[107.30744,21.7294],[107.31361,21.72892],[107.31413,21.72446],[107.32219,21.72509],[107.31824,21.7152],[107.33446,21.6975],[107.33594,21.68925],[107.34492,21.6848],[107.34841,21.68035],[107.34474,21.67625],[107.35961,21.66576],[107.36268,21.63959],[107.36225,21.6348],[107.35426,21.63001],[107.35473,21.62203],[107.35932,21.6198],[107.36007,21.61118],[107.3567,21.60575],[107.36369,21.59841],[107.36949,21.6008],[107.38285,21.59616],[107.39273,21.60593],[107.39781,21.60931],[107.3943,21.6162],[107.408,21.62252],[107.4073,21.62568],[107.41759,21.63269],[107.41449,21.63874],[107.43217,21.64943],[107.45234,21.6586],[107.46702,21.66395],[107.47803,21.66257],[107.49658,21.63348],[107.49281,21.6234],[107.49745,21.61709],[107.49496,21.60563],[107.48183,21.59577],[107.48995,21.59686],[107.49806,21.59539],[107.50446,21.59679],[107.51933,21.59303],[107.52511,21.59001],[107.53281,21.59201],[107.53775,21.59465],[107.54382,21.5899],[107.55799,21.6125],[107.56941,21.61243],[107.57268,21.61763],[107.58118,21.61864],[107.58556,21.61007],[107.61123,21.60445],[107.62316,21.60713],[107.67243,21.60611],[107.69597,21.61548],[107.71404,21.62021],[107.72181,21.62878],[107.73136,21.62939],[107.74228,21.63894],[107.75183,21.64242],[107.75795,21.64208],[107.78114,21.64921],[107.78209,21.65597],[107.79778,21.65558],[107.81827,21.65711],[107.82228,21.65322],[107.82772,21.65319],[107.83525,21.64264],[107.84416,21.64183],[107.84553,21.64845],[107.85308,21.65016],[107.85445,21.65379],[107.85876,21.65398],[107.86091,21.64833],[107.86787,21.64906],[107.87054,21.64708],[107.87252,21.64191],[107.87934,21.64028],[107.87793,21.63163],[107.88873,21.62619],[107.88579,21.61883],[107.88903,21.61818],[107.89237,21.61498],[107.88266,21.61114],[107.88511,21.60633],[107.89182,21.60712],[107.89312,21.60209],[107.88965,21.59989],[107.89359,21.59711],[107.89753,21.5956],[107.89941,21.59298],[107.89863,21.58927],[107.90047,21.58662],[107.90328,21.58689],[107.90455,21.59131],[107.91648,21.58617],[107.92378,21.59029],[107.92743,21.58852],[107.92627,21.58292],[107.93057,21.57775],[107.94311,21.57002],[107.94261,21.56591],[107.9518,21.5399],[107.95619,21.53625],[107.96347,21.53756],[107.96711,21.5355],[107.97178,21.54079],[107.97425,21.53955],[107.97721,21.54005],[107.97748,21.54349],[107.97913,21.54469],[107.98648,21.54365],[107.99315,21.54612],[108.02479,21.54625],[108.03905,21.54502],[108.05022,21.53826],[108.05597,21.52993],[108.33333,21.29166],[108.33333,20.04166],[110,20.04166]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Taiwan#BY", "itu_zone_number": 44 }, "geometry": { "type": "Polygon", "coordinates": [[[121.73667,22.00146],[126.52906,32.47984],[131.99573,37.18814],[136.66227,42.24603],[130.77271,42.24603],[130.68908,42.29407],[130.68248,42.30341],[130.6594,42.31581],[130.64937,42.32363],[130.64483,42.33451],[130.64424,42.3469],[130.64913,42.3527],[130.65536,42.35915],[130.66294,42.36225],[130.66846,42.36636],[130.66855,42.37495],[130.6651,42.37996],[130.66063,42.38398],[130.65753,42.38775],[130.65486,42.39042],[130.64514,42.40221],[130.64472,42.40826],[130.64337,42.4104],[130.64082,42.4131],[130.64067,42.41543],[130.63897,42.42016],[130.63762,42.42189],[130.63524,42.42374],[130.635,42.42489],[130.63425,42.42604],[130.6313,42.42718],[130.62422,42.43262],[130.61714,42.43528],[130.61418,42.43464],[130.61139,42.43653],[130.60895,42.43944],[130.6029,42.44121],[130.59427,42.44627],[130.59354,42.45059],[130.59142,42.45441],[130.59235,42.45621],[130.59035,42.46409],[130.59522,42.46766],[130.59083,42.4732],[130.5854,42.47873],[130.58604,42.48106],[130.58392,42.48465],[130.58484,42.48728],[130.55825,42.50303],[130.55264,42.51861],[130.55381,42.52098],[130.56254,42.51729],[130.55787,42.52523],[130.56075,42.52912],[130.56499,42.534],[130.56921,42.53787],[130.56256,42.55497],[130.56903,42.55488],[130.5748,42.55834],[130.58498,42.55918],[130.59412,42.55724],[130.60395,42.55176],[130.60417,42.56506],[130.61538,42.57077],[130.62178,42.58179],[130.62029,42.58543],[130.62566,42.58857],[130.62589,42.59373],[130.62817,42.59888],[130.62054,42.60538],[130.61635,42.61238],[130.61833,42.61836],[130.61482,42.6284],[130.61289,42.63038],[130.60616,42.63085],[130.60505,42.63431],[130.59604,42.6403],[130.59809,42.64356],[130.59463,42.64683],[130.59596,42.65184],[130.58842,42.6602],[130.58843,42.66488],[130.58362,42.67108],[130.57676,42.67538],[130.56853,42.67817],[130.5621,42.68535],[130.5548,42.68931],[130.55286,42.69001],[130.54851,42.68946],[130.54514,42.69175],[130.54229,42.69122],[130.53243,42.69839],[130.52256,42.70103],[130.51654,42.70054],[130.50776,42.69552],[130.50051,42.69506],[130.49842,42.69258],[130.49428,42.69336],[130.49151,42.69011],[130.48763,42.69044],[130.48443,42.68826],[130.47849,42.69011],[130.47186,42.68944],[130.46822,42.68987],[130.45908,42.68474],[130.44977,42.69444],[130.44802,42.70161],[130.44543,42.70078],[130.43871,42.70147],[130.4344,42.70367],[130.43077,42.70788],[130.42009,42.70333],[130.40735,42.7129],[130.40853,42.71541],[130.40147,42.72398],[130.39422,42.72447],[130.46619,42.7686],[130.57111,42.8087],[130.67053,42.85482],[130.72024,42.82955],[130.76446,42.84052],[130.78396,42.87214],[130.82667,42.87989],[130.88586,42.84739],[130.91635,42.87498],[130.98103,42.85455],[131.04022,42.8623],[131.01605,42.91746],[131.11272,42.91227],[131.13322,42.92919],[131.14273,42.96219],[131.10682,42.97192],[131.09838,43.02183],[131.11739,43.07175],[131.16601,43.07062],[131.16972,43.1062],[131.21187,43.14579],[131.20274,43.16659],[131.21009,43.18338],[131.19272,43.20618],[131.20281,43.22898],[131.25005,43.27213],[131.27532,43.37125],[131.31157,43.38849],[131.28575,43.43302],[131.30937,43.45761],[131.26361,43.4936],[131.19312,43.5256],[131.18124,43.55376],[131.22615,43.58614],[131.21708,43.67874],[131.20994,43.80828],[131.22285,43.86712],[131.25773,43.91012],[131.23493,43.98083],[131.24869,44],[111.78081,44],[111.86206,43.94186],[111.89582,43.89499],[111.95567,43.8214],[111.96506,43.74945],[111.96363,43.73717],[111.95121,43.70503],[111.94835,43.69039],[111.92352,43.68618],[111.87946,43.67154],[111.78584,43.66857],[111.60364,43.5131],[111.56152,43.48804],[111.50635,43.485],[111.45119,43.48994],[111.40151,43.47445],[111.3527,43.43667],[111.23042,43.40688],[111.14964,43.37722],[111.06268,43.35255],[111.05698,43.34415],[111.0519,43.34245],[111.04065,43.3405],[111.02708,43.33356],[111.00081,43.31513],[110.99701,43.31375],[110.9669,43.2894],[110.91961,43.24456],[110.90885,43.23528],[110.87062,43.19797],[110.81968,43.1504],[110.76669,43.09982],[110.74684,43.09168],[110.73284,43.08568],[110.72764,43.07907],[110.71317,43.0677],[110.68371,43.03869],[110.68302,43.03262],[110.68369,43.0273],[110.68437,43.02274],[110.68385,43.01705],[110.66925,42.99601],[110.65911,42.98301],[110.65378,42.97265],[110.62562,42.93327],[110.50277,42.8585],[110.48409,42.84571],[110.46506,42.83393],[110.43713,42.78393],[110.43392,42.77978],[110.34172,42.73557],[110.32403,42.72818],[110.30321,42.72329],[110.26145,42.71033],[110.23011,42.70081],[110.13619,42.67167],[110.12739,42.66571],[110.10519,42.64409],[110.10063,42.64101],[110.01323,42.6366],[110,42.63674],[110,20.04166],[108.33333,20.04166],[108.33333,18],[112.19409,14.97469],[121.73667,22.00146]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Japan#JD1", "itu_zone_number": 45 }, "geometry": { "type": "Polygon", "coordinates": [[[150,45.21871],[146.16455,43.26843],[145.54187,43.542],[145.22612,43.82251],[146.49147,45.73822],[139.77955,45.73822],[136.66227,42.24603],[131.99573,37.18814],[126.52906,32.47984],[121.73667,22.00146],[130,22.00146],[130,20],[140,20],[140,22],[150,22],[150,45.21871]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Gambia#D4", "itu_zone_number": 46 }, "geometry": { "type": "Polygon", "coordinates": [[[5,0],[-28,0],[-28,7],[-40,23],[-17,23],[-13.45361,27.66646],[-8.66588,27.66646],[-8.66667,27.29444],[-4.85704,25.0159],[-3.72807,24.28551],[1.16658,21.1163],[1.19058,20.99261],[1.19109,20.94114],[1.15863,20.74085],[1.18773,20.72156],[1.22781,20.72796],[1.32282,20.7395],[1.3574,20.67141],[1.59766,20.59637],[1.66322,20.53259],[1.67385,20.40193],[1.81356,20.2918],[1.88736,20.28986],[1.91653,20.22541],[1.94896,20.25246],[1.97698,20.25922],[2.005,20.24537],[2.04457,20.2692],[2.1237,20.23697],[2.18523,20.26982],[2.20832,20.31812],[2.25122,20.30522],[2.30768,20.27479],[2.30371,20.23406],[2.35742,20.19591],[2.35956,20.16137],[2.40564,20.13198],[2.39281,20.10204],[2.37746,20.09675],[2.38547,20.06437],[2.3749,20.02771],[2.39729,20.04135],[2.39706,20.06315],[2.41204,20.07469],[2.4339,20.0772],[2.4482,20.08745],[2.45701,20.08867],[2.46581,20.0957],[2.47325,20.09628],[2.48067,20.08504],[2.4977,20.09316],[2.50993,20.08772],[2.51941,20.0939],[2.52689,20.08199],[2.53713,20.06235],[2.55148,20.0556],[2.55522,20.03997],[2.56171,20.03337],[2.59667,20.03243],[2.60278,20.04439],[2.62469,20.05377],[2.6377,20.04814],[2.63528,20.0408],[2.66085,20.05326],[2.66449,20.05186],[2.66677,20.05949],[2.6711,20.0768],[2.66914,20.08416],[2.68053,20.0988],[2.68642,20.09797],[2.69937,20.08355],[2.69883,20.07123],[2.73125,19.99699],[2.82616,19.96468],[2.8936,19.96334],[2.97443,19.95002],[3.01251,19.93371],[3.03507,19.91543],[3.09197,19.89844],[3.11561,19.87865],[3.13376,19.87306],[3.14946,19.85801],[3.19802,19.84148],[3.23741,19.84161],[3.25689,19.83463],[3.26354,19.81648],[3.2472,19.79353],[3.24735,19.768],[3.24612,19.74377],[3.23116,19.70919],[3.23363,19.67444],[3.25533,19.63711],[3.23007,19.59995],[3.23667,19.56294],[3.26524,19.52851],[3.24986,19.49926],[3.26744,19.44931],[3.2591,19.43548],[3.20682,19.42942],[3.1971,19.39098],[3.17915,19.3629],[3.18592,19.32769],[3.20367,19.30803],[3.19798,19.27649],[3.12754,19.18359],[3.11479,19.13998],[3.23896,19.05925],[3.28732,19.02019],[3.29941,18.99938],[3.33347,18.99157],[3.35764,18.96814],[5.81301,19.44323],[7.45937,20.84341],[12,23.49999],[13.41288,23.21085],[13.50089,23.1768],[13.56143,23.1478],[13.61797,23.11379],[13.76653,23.0027],[13.79011,22.97882],[14.1894,22.64545],[14.99767,23.00427],[15.19752,21.99847],[15.19994,21.49606],[15.28202,21.45203],[15.48187,20.99663],[15.50754,20.97375],[15.50252,20.9636],[15.49475,20.95088],[15.4806,20.90365],[15.42213,20.87259],[15.40937,20.84038],[15.42565,20.79667],[15.52296,20.73115],[15.52894,20.70027],[15.54316,20.68737],[15.59632,20.60505],[15.60005,20.58699],[15.59553,20.56892],[15.62289,20.53851],[15.67914,20.53102],[15.71067,20.50809],[15.72161,20.48066],[15.74078,20.45838],[15.7599,20.46013],[15.99843,20.36163],[15.75588,19.94567],[15.66698,19.31669],[15.59181,18.79144],[15.53348,16.74936],[14.99431,16.27434],[14.64876,15.99965],[14.39523,15.74564],[14.23537,15.536],[14.08101,15.3171],[14.00001,15.20149],[13.9705,15.16357],[13.87233,15.05209],[13.78997,14.87381],[13.79616,14.79729],[13.8106,14.73139],[13.77336,14.70155],[13.7471,14.70359],[13.67415,14.64187],[13.69459,14.62],[13.69289,14.55899],[13.63436,14.51253],[13.57308,14.51393],[13.50102,14.48495],[13.47015,14.46395],[13.4712,14.41127],[13.63293,13.71035],[14.0835,13.08413],[14.20167,12.53671],[14.19995,12.50047],[14.18176,12.47765],[14.19104,12.43739],[14.17645,12.41592],[14.21404,12.36763],[14.33971,12.36625],[14.46537,12.35682],[14.54229,12.28164],[14.55534,12.23466],[14.59311,12.22526],[14.61371,12.18902],[14.66453,12.19573],[14.68177,12.15968],[14.65505,12.13974],[14.65269,12.11701],[14.63658,12.09429],[14.65656,12.0663],[14.62786,12.05731],[14.62113,12.03354],[14.65739,11.96],[14.6408,11.93451],[14.6407,11.9144],[14.60479,11.8688],[14.61262,11.78299],[14.55137,11.71889],[14.59735,11.6969],[14.64334,11.65608],[14.64538,11.5776],[14.62306,11.54778],[14.61996,11.51526],[14.51556,11.474],[14.4661,11.42914],[14.43038,11.41658],[14.33696,11.33695],[14.23805,11.29233],[14.22565,11.27061],[14.18442,11.2381],[14.14799,11.24836],[14.10575,11.26695],[14.08822,11.26938],[13.97554,11.31682],[13.94049,11.21963],[13.87659,11.1359],[13.7955,11.00888],[13.73408,11.00349],[13.71573,10.9536],[13.72852,10.92327],[13.71432,10.85821],[13.65068,10.80933],[13.62684,10.7129],[13.57921,10.68088],[13.57829,10.62024],[13.56547,10.61826],[13.57462,10.55689],[13.59201,10.5247],[13.57678,10.51106],[13.53957,10.50823],[13.53608,10.47981],[13.51336,10.43518],[13.54207,10.37023],[13.51916,10.27002],[13.49947,10.2483],[13.50175,10.20765],[13.47755,10.1936],[13.45609,10.17145],[13.42417,10.15147],[13.43404,10.14411],[13.43018,10.11783],[13.39774,10.13285],[13.39826,10.12083],[13.36857,10.11422],[13.35227,10.10491],[13.33871,10.11723],[13.30867,10.10251],[13.29512,10.07427],[13.29547,10.05158],[13.24913,10.03431],[13.25222,9.99779],[13.27987,9.98629],[13.28678,9.97462],[13.27995,9.93861],[13.26356,9.92881],[13.23481,9.91764],[13.24726,9.86049],[13.26666,9.8517],[13.30529,9.82803],[13.26701,9.78813],[13.21074,9.55277],[13.02469,9.50186],[12.97424,9.46016],[12.93477,9.41303],[12.85382,9.36812],[12.87425,9.3452],[12.89469,9.35208],[12.91238,9.35626],[12.92732,9.33604],[12.91149,9.30997],[12.91213,9.24053],[12.88733,9.14637],[12.89343,9.11525],[12.88579,9.07058],[12.86786,9.01915],[12.82181,8.97173],[12.81147,8.92432],[12.80648,8.84953],[12.81523,8.83174],[12.78328,8.7473],[12.71938,8.76028],[12.70787,8.73536],[12.6991,8.67243],[12.67883,8.64704],[12.65221,8.64927],[12.61186,8.63793],[12.59982,8.59353],[12.50474,8.64222],[12.43437,8.6203],[12.46223,8.5376],[12.33627,8.44946],[12.34196,8.43052],[12.31194,8.42244],[12.2986,8.44432],[12.26307,8.44764],[12.24558,8.38363],[12.25,8.16731],[12.19316,8.11354],[12.20773,7.9673],[12.07345,7.79448],[12.05575,7.74345],[11.9996,7.67337],[12.01976,7.52255],[11.91632,7.46432],[11.92926,7.43682],[11.92572,7.38754],[11.88412,7.36358],[11.88097,7.32328],[11.84447,7.26446],[11.88133,7.24356],[11.85856,7.21267],[11.86228,7.14818],[11.88248,7.10549],[11.86787,7.08182],[11.82714,7.08272],[11.78916,7.06454],[11.77726,7.04499],[11.726,7.04885],[11.65962,6.99598],[11.62621,6.98399],[11.60515,6.91749],[11.56853,6.89787],[11.55663,6.85643],[11.57623,6.84423],[11.58191,6.81631],[11.59583,6.7993],[11.57199,6.78775],[11.58385,6.73801],[11.55538,6.71218],[11.55201,6.67142],[11.52286,6.64285],[11.51843,6.61429],[11.49171,6.60184],[11.4595,6.60575],[11.4198,6.59721],[11.4324,6.54876],[11.42304,6.53169],[11.36311,6.52619],[11.35853,6.50265],[11.32375,6.50367],[11.28027,6.53572],[11.2416,6.52343],[11.22089,6.53912],[11.20018,6.5357],[11.20112,6.5123],[11.13751,6.50391],[11.13939,6.53078],[11.11655,6.51399],[11.09371,6.52176],[11.09573,6.67836],[11.06342,6.71627],[11.03215,6.71204],[11.00638,6.69689],[10.97718,6.68584],[10.94816,6.68986],[10.91639,6.70753],[10.91429,6.76453],[10.89297,6.76699],[10.87665,6.79624],[10.84926,6.80814],[10.82462,6.82549],[10.81945,6.85399],[10.84203,6.93183],[10.79839,6.96258],[10.7546,6.96432],[10.66404,7.04425],[10.64414,7.04584],[10.60502,7.0665],[10.59886,7.13759],[10.57622,7.16234],[10.56729,7.14355],[10.55287,6.99393],[10.53226,6.92365],[10.49518,6.91744],[10.489,6.89525],[10.46634,6.91941],[10.21638,6.88641],[10.17788,6.94035],[10.1751,7.00246],[10.15308,7.04003],[9.8654,6.77597],[9.78043,6.79245],[9.70773,6.51288],[9.5986,6.52589],[9.58285,6.47614],[9.52123,6.44219],[9.46785,6.45191],[9.43148,6.31767],[9.34453,6.35548],[9.33378,6.29464],[9.30655,6.25837],[9.26583,6.18036],[9.21322,6.17042],[9.16906,6.13541],[9.15237,6.09494],[9.05718,6.00718],[9.04781,5.99616],[8.94505,5.91412],[8.91531,5.90029],[8.90478,5.8625],[8.87812,5.8592],[8.84047,5.82311],[8.85226,5.79932],[8.88602,5.80012],[8.88099,5.77052],[8.851,5.7079],[8.8375,5.70267],[8.84277,5.67855],[8.90572,5.62163],[8.919,5.56791],[8.87141,5.48783],[8.8325,5.43275],[8.84579,5.38587],[8.83413,5.32886],[8.8132,5.28122],[8.81372,5.21911],[8.82085,5.18122],[8.78321,5.11578],[8.74654,5.10221],[8.72433,5.05778],[8.72009,5.03693],[8.68563,5.00514],[8.69775,4.98807],[8.6736,4.9727],[8.66839,4.94859],[8.65219,4.9409],[8.651,4.91401],[8.63332,4.90628],[8.62174,4.90446],[8.59916,4.87255],[8.61994,4.8525],[8.63454,4.82219],[8.59514,4.80429],[8.54751,4.80009],[8.52502,4.7643],[8.5282,4.7293],[8.54511,4.71346],[8,4],[5,4],[5,0]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Sudan, west of 31º E#S9", "itu_zone_number": 47 }, "geometry": { "type": "Polygon", "coordinates": [[[5,0],[8,0],[8,1],[9.36582,1],[9.58786,1.01923],[9.6633,1.0636],[9.7551,1.06347],[9.8002,1.00018],[9.84255,1.00279],[9.88845,0.98488],[9.89237,0.95637],[9.93141,0.93662],[9.94848,0.91688],[9.99085,0.93505],[9.99203,0.99717],[11.33801,0.99862],[11.33268,2.17257],[11.35847,2.17226],[11.35942,2.22158],[11.37913,2.25173],[11.37686,2.29286],[11.6957,2.31342],[11.75636,2.27361],[12.00105,2.29143],[12.21128,2.27838],[12.25048,2.25265],[12.30616,2.27631],[12.46868,2.25157],[12.57071,2.26632],[12.67823,2.24264],[12.7418,2.2272],[12.80655,2.24693],[12.89052,2.23646],[12.93638,2.2428],[13.08112,2.24915],[13.13523,2.28568],[13.18933,2.28379],[13.28792,2.24708],[13.29863,2.16645],[14.28984,2.17164],[14.41273,2.18757],[14.44773,2.12665],[14.60013,2.20518],[14.65573,2.14152],[14.769,2.09707],[14.77654,2.07046],[14.83473,2.06861],[14.87094,2.10793],[14.8815,2.07201],[14.91128,2.0608],[14.8875,2.01801],[14.92415,1.99993],[14.96122,2.0055],[14.9873,2.03028],[15.04221,1.98103],[15.10606,1.98659],[15.13661,2.02094],[15.1754,2.02785],[15.20939,2.03543],[15.24887,2.0238],[15.30208,1.97375],[15.30671,1.93774],[15.33237,1.93895],[15.3443,1.91546],[15.48571,1.98165],[15.74593,1.91318],[15.88428,1.79247],[16.03311,1.76094],[16.01607,1.71531],[16.02649,1.65595],[16.06123,1.66196],[16.08224,1.68444],[16.09157,1.698],[16.11657,1.70208],[16.13881,1.68969],[16.14733,1.69788],[16.1476,1.71157],[16.1341,1.74328],[16.14257,1.76539],[16.13479,1.80001],[16.10985,1.84491],[16.10688,1.89119],[16.08401,1.88964],[16.07625,1.94505],[16.04788,1.9785],[16.05221,1.99252],[16.04967,2.01067],[16.07792,2.03689],[16.08106,2.04863],[16.07047,2.05625],[16.05753,2.0667],[16.08304,2.08675],[16.07933,2.13744],[16.08386,2.19911],[16.13618,2.19757],[16.14105,2.17553],[16.17988,2.20088],[16.19261,2.22073],[16.50901,2.83207],[16.51851,2.87557],[16.51059,2.90084],[16.48619,2.92063],[16.50299,2.96648],[16.49353,2.98803],[16.51215,3.03721],[16.53626,3.05896],[16.53896,3.07934],[16.50595,3.09424],[16.50452,3.16262],[16.52715,3.20366],[16.52748,3.24201],[16.52781,3.27213],[16.56685,3.32387],[16.58391,3.35917],[16.57685,3.38239],[16.58901,3.4056],[16.58586,3.4822],[16.66472,3.54903],[16.76078,3.55398],[16.85409,3.51782],[16.9419,3.55567],[17.03521,3.51676],[17.06807,3.55858],[17.15587,3.58122],[17.18461,3.56822],[17.24632,3.58537],[17.24612,3.61556],[17.32843,3.6101],[17.33932,3.57723],[17.36247,3.58138],[17.36366,3.60472],[17.39446,3.66093],[17.46371,3.70891],[17.60713,3.64726],[17.82303,3.62465],[17.85491,3.53626],[17.90357,3.55941],[17.93575,3.60175],[17.95282,3.56596],[17.97813,3.54662],[18.02738,3.55317],[18.07196,3.57126],[18.13852,3.56467],[18.16525,3.52382],[18.1755,3.4857],[18.23142,3.49058],[18.27037,3.59308],[18.31953,3.59013],[18.3577,3.60911],[18.39175,3.57874],[18.42114,3.58275],[18.40836,3.60257],[18.42944,3.61248],[18.44273,3.59825],[18.45876,3.60595],[18.45985,3.62972],[18.48292,3.65349],[18.53757,3.606],[18.55844,3.55198],[18.60128,3.47328],[18.62655,3.4749],[18.60845,3.5222],[18.58211,3.78059],[18.61458,3.93006],[18.64866,3.95411],[18.66077,3.99735],[18.61109,4.1714],[18.53943,4.31805],[18.60504,4.36929],[18.62665,4.35726],[18.68122,4.36165],[18.76289,4.40058],[18.80886,4.48879],[18.83011,4.58248],[18.907,4.65292],[19.01409,4.76716],[19.11019,4.94363],[19.20321,4.9443],[19.23855,5.01063],[19.36316,5.07697],[19.40898,5.12381],[19.48502,5.12415],[19.54273,5.15451],[19.61418,5.13015],[19.68842,5.14162],[19.8259,5.09891],[19.9086,4.9916],[19.93216,4.97596],[19.9667,4.98221],[20.01107,4.97009],[20.0998,4.9048],[20.18303,4.89014],[20.20955,4.83081],[20.25254,4.79338],[20.29291,4.7732],[20.34703,4.76944],[20.38301,4.72582],[20.39702,4.68493],[20.46349,4.61959],[20.45197,4.55257],[20.47436,4.5129],[20.51049,4.47597],[20.54524,4.43903],[20.58823,4.41032],[20.71232,4.43058],[20.79796,4.42619],[20.84652,4.44782],[20.94727,4.44206],[21.04252,4.40901],[21.09658,4.38417],[21.10531,4.34291],[21.21817,4.29214],[21.25537,4.33797],[21.28708,4.33998],[21.35213,4.28296],[21.44463,4.28619],[21.49089,4.26316],[21.55362,4.24834],[21.65162,4.31184],[21.77632,4.29103],[21.82961,4.27022],[21.8829,4.24394],[21.94937,4.23353],[21.99662,4.2423],[22.09717,4.21659],[22.1605,4.15923],[22.2403,4.11829],[22.44111,4.12683],[22.54726,4.21362],[22.54221,4.30379],[22.61407,4.36931],[22.58705,4.40608],[22.59299,4.47571],[22.65705,4.49447],[22.67992,4.47216],[22.70299,4.47505],[22.70684,4.52997],[22.73101,4.55766],[22.73816,4.62399],[22.78542,4.72381],[22.81592,4.72992],[22.84641,4.69771],[22.89339,4.75446],[22.88381,4.79064],[22.90444,4.81586],[22.93198,4.81158],[22.96783,4.83858],[23.01346,4.75764],[23.10853,4.70954],[23.16958,4.74747],[23.23675,4.67551],[23.26419,4.6719],[23.27789,4.64091],[23.32727,4.60903],[23.36088,4.61705],[23.38351,4.58674],[23.42603,4.60004],[23.42692,4.65405],[23.46559,4.68055],[23.50152,4.67969],[23.59238,4.75546],[23.67901,4.76598],[23.70859,4.78766],[23.77662,4.78197],[23.83075,4.83721],[23.85232,4.8142],[23.86565,4.81582],[23.89231,4.83274],[23.92212,4.81794],[23.95467,4.81409],[23.95661,4.85154],[23.96259,4.87321],[23.99878,4.873],[24.02398,4.86047],[24.04644,4.86983],[24.05153,4.8824],[24.11155,4.91686],[24.14411,4.88974],[24.16293,4.89547],[24.18991,4.93711],[24.23336,4.95686],[24.24661,4.93966],[24.26421,4.93517],[24.27633,4.95257],[24.26162,4.97291],[24.3037,5.0036],[24.35128,5.00693],[24.40229,5.03632],[24.38669,5.05594],[24.36241,5.0425],[24.34362,5.05368],[24.36235,5.07193],[24.36622,5.09884],[24.38107,5.11754],[24.4199,5.09387],[24.4297,5.06562],[24.45324,5.05925],[24.452,5.10133],[24.53467,5.08701],[24.55993,5.03374],[24.61869,5.03117],[24.63458,4.97403],[24.67314,4.97162],[24.65808,4.9198],[24.71647,4.9103],[24.72515,4.89475],[24.76381,4.90749],[24.78051,4.89835],[24.80335,4.92471],[24.8564,4.92917],[24.86276,4.95006],[24.90804,4.94971],[24.92382,4.9769],[24.96156,4.9904],[25.06037,4.92677],[25.08503,4.97669],[25.12207,4.98661],[25.12616,5.0102],[25.15061,5.0293],[25.17478,5.00457],[25.21228,5.00793],[25.24977,5.02498],[25.31652,5.03445],[25.32032,5.07983],[25.3351,5.09237],[25.34713,5.11997],[25.34543,5.1503],[25.3252,5.14986],[25.30221,5.18497],[25.32917,5.20595],[25.33141,5.25975],[25.35563,5.28346],[25.3746,5.29259],[25.36611,5.30718],[25.39018,5.33297],[25.40908,5.31031],[25.4527,5.33961],[25.48089,5.3613],[25.50047,5.3448],[25.54323,5.36116],[25.53379,5.38299],[25.5744,5.37738],[25.58509,5.3527],[25.61775,5.3499],[25.59519,5.32515],[25.63335,5.30594],[25.6332,5.32642],[25.65228,5.32775],[25.66345,5.31107],[25.70209,5.29987],[25.71945,5.26199],[25.73681,5.26788],[25.74137,5.23869],[25.7766,5.25691],[25.76401,5.26876],[25.78163,5.2806],[25.79717,5.26098],[25.77885,5.24434],[25.81089,5.24832],[25.80219,5.22159],[25.83194,5.1976],[25.85018,5.22373],[25.88127,5.22176],[25.9023,5.16606],[25.91694,5.18198],[25.90366,5.19951],[25.95195,5.20281],[25.97553,5.24713],[26.01436,5.21309],[26.06261,5.20838],[26.09773,5.2279],[26.14108,5.27205],[26.29724,5.15011],[26.34795,5.15177],[26.39866,5.13975],[26.48361,5.05553],[26.76337,5.10867],[26.80299,5.05181],[26.8591,5.04692],[26.90505,5.08194],[26.94002,5.14431],[27.02305,5.18616],[27.10608,5.2116],[27.18019,5.18438],[27.2502,5.14752],[27.32296,5.12981],[27.44238,5.0725],[27.44167,5.01922],[27.46018,4.99056],[27.5124,4.96205],[27.50555,4.93274],[27.56118,4.89346],[27.64942,4.89435],[27.7059,4.82363],[27.69843,4.79238],[27.7254,4.79141],[27.7359,4.80139],[27.77611,4.78303],[27.76927,4.69432],[27.79882,4.60753],[27.89873,4.5395],[27.93332,4.53686],[27.94869,4.57803],[28.04259,4.54401],[28.03542,4.47789],[28.08401,4.41608],[28.10145,4.44405],[28.1436,4.43094],[28.14215,4.40346],[28.1785,4.38287],[28.20661,4.35132],[28.27238,4.3566],[28.35874,4.35504],[28.38193,4.28227],[28.45564,4.28788],[28.51837,4.37566],[28.58246,4.38402],[28.60674,4.42113],[28.64773,4.42347],[28.67499,4.4395],[28.72635,4.54469],[28.80078,4.5658],[28.81204,4.49928],[28.8369,4.47972],[28.87607,4.49125],[28.92623,4.47815],[29.02655,4.49301],[29.04718,4.47169],[29.0788,4.45584],[29.08433,4.43726],[29.1338,4.42963],[29.22183,4.33886],[29.25062,4.35569],[29.25402,4.38328],[29.26567,4.39717],[29.30676,4.38429],[29.34499,4.3996],[29.35713,4.4505],[29.37476,4.47129],[29.40729,4.47726],[29.44805,4.52157],[29.4463,4.56463],[29.47575,4.59326],[29.46676,4.66502],[29.49347,4.69435],[29.5359,4.65852],[29.553,4.6721],[29.69887,4.61865],[29.74847,4.56866],[29.7664,4.58611],[29.82617,4.5565],[29.79838,4.51021],[29.80852,4.49459],[29.79711,4.42654],[29.80218,4.36944],[29.84655,4.33639],[29.89916,4.34715],[29.96592,4.28926],[29.94564,4.24195],[29.97685,4.21382],[30.02318,4.20759],[30.02967,4.17535],[30.06364,4.12941],[30.12232,4.11086],[30.15903,4.11422],[30.1679,4.03878],[30.18501,4.03182],[30.2165,3.93845],[30.2882,3.95651],[30.30223,3.91428],[30.34951,3.91751],[30.38688,3.89412],[30.41601,3.86525],[30.44515,3.87954],[30.47428,3.83354],[30.52627,3.8537],[30.55079,3.84098],[30.58198,3.72921],[30.55824,3.62292],[30.6219,3.60266],[30.6526,3.62078],[30.6833,3.64301],[30.73048,3.62139],[30.7754,3.6823],[30.79624,3.65366],[30.79705,3.61057],[30.80885,3.59488],[30.85991,3.57722],[30.86621,3.54508],[30.85151,3.52354],[30.85054,3.49925],[30.85411,3.49246],[30.86593,3.49527],[30.89079,3.55839],[30.90494,3.57454],[30.90796,3.59176],[30.91908,3.60192],[30.93296,3.61927],[30.94999,3.63385],[30.9489,3.65182],[30.97994,3.70191],[31,3.70541],[31,22],[30.64489,22.00045],[28.0931,22.01895],[25.00004,21.99993],[25.00003,20.00042],[24.00134,19.9996],[23.99966,19.50146],[22.05295,20.51722],[20.07329,21.51239],[15.99997,23.44918],[14.99767,23.00427],[15.19752,21.99847],[15.19994,21.49606],[15.28202,21.45203],[15.48187,20.99663],[15.50754,20.97375],[15.50252,20.9636],[15.49475,20.95088],[15.4806,20.90365],[15.42213,20.87259],[15.40937,20.84038],[15.42565,20.79667],[15.52296,20.73115],[15.52894,20.70027],[15.54316,20.68737],[15.59632,20.60505],[15.60005,20.58699],[15.59553,20.56892],[15.62289,20.53851],[15.67914,20.53102],[15.71067,20.50809],[15.72161,20.48066],[15.74078,20.45838],[15.7599,20.46013],[15.99843,20.36163],[15.75588,19.94567],[15.66698,19.31669],[15.59181,18.79144],[15.53348,16.74936],[14.99431,16.27434],[14.64876,15.99965],[14.39523,15.74564],[14.23537,15.536],[14.08101,15.3171],[14.00001,15.20149],[13.9705,15.16357],[13.87233,15.05209],[13.78997,14.87381],[13.79616,14.79729],[13.8106,14.73139],[13.77336,14.70155],[13.7471,14.70359],[13.67415,14.64187],[13.69459,14.62],[13.69289,14.55899],[13.63436,14.51253],[13.57308,14.51393],[13.50102,14.48495],[13.47015,14.46395],[13.4712,14.41127],[13.63293,13.71035],[14.0835,13.08413],[14.20167,12.53671],[14.19995,12.50047],[14.18176,12.47765],[14.19104,12.43739],[14.17645,12.41592],[14.21404,12.36763],[14.33971,12.36625],[14.46537,12.35682],[14.54229,12.28164],[14.55534,12.23466],[14.59311,12.22526],[14.61371,12.18902],[14.66453,12.19573],[14.68177,12.15968],[14.65505,12.13974],[14.65269,12.11701],[14.63658,12.09429],[14.65656,12.0663],[14.62786,12.05731],[14.62113,12.03354],[14.65739,11.96],[14.6408,11.93451],[14.6407,11.9144],[14.60479,11.8688],[14.61262,11.78299],[14.55137,11.71889],[14.59735,11.6969],[14.64334,11.65608],[14.64538,11.5776],[14.62306,11.54778],[14.61996,11.51526],[14.51556,11.474],[14.4661,11.42914],[14.43038,11.41658],[14.33696,11.33695],[14.23805,11.29233],[14.22565,11.27061],[14.18442,11.2381],[14.14799,11.24836],[14.10575,11.26695],[14.08822,11.26938],[13.97554,11.31682],[13.94049,11.21963],[13.87659,11.1359],[13.7955,11.00888],[13.73408,11.00349],[13.71573,10.9536],[13.72852,10.92327],[13.71432,10.85821],[13.65068,10.80933],[13.62684,10.7129],[13.57921,10.68088],[13.57829,10.62024],[13.56547,10.61826],[13.57462,10.55689],[13.59201,10.5247],[13.57678,10.51106],[13.53957,10.50823],[13.53608,10.47981],[13.51336,10.43518],[13.54207,10.37023],[13.51916,10.27002],[13.49947,10.2483],[13.50175,10.20765],[13.47755,10.1936],[13.45609,10.17145],[13.42417,10.15147],[13.43404,10.14411],[13.43018,10.11783],[13.39774,10.13285],[13.39826,10.12083],[13.36857,10.11422],[13.35227,10.10491],[13.33871,10.11723],[13.30867,10.10251],[13.29512,10.07427],[13.29547,10.05158],[13.24913,10.03431],[13.25222,9.99779],[13.27987,9.98629],[13.28678,9.97462],[13.27995,9.93861],[13.26356,9.92881],[13.23481,9.91764],[13.24726,9.86049],[13.26666,9.8517],[13.30529,9.82803],[13.26701,9.78813],[13.21074,9.55277],[13.02469,9.50186],[12.97424,9.46016],[12.93477,9.41303],[12.85382,9.36812],[12.87425,9.3452],[12.89469,9.35208],[12.91238,9.35626],[12.92732,9.33604],[12.91149,9.30997],[12.91213,9.24053],[12.88733,9.14637],[12.89343,9.11525],[12.88579,9.07058],[12.86786,9.01915],[12.82181,8.97173],[12.81147,8.92432],[12.80648,8.84953],[12.81523,8.83174],[12.78328,8.7473],[12.71938,8.76028],[12.70787,8.73536],[12.6991,8.67243],[12.67883,8.64704],[12.65221,8.64927],[12.61186,8.63793],[12.59982,8.59353],[12.50474,8.64222],[12.43437,8.6203],[12.46223,8.5376],[12.33627,8.44946],[12.34196,8.43052],[12.31194,8.42244],[12.2986,8.44432],[12.26307,8.44764],[12.24558,8.38363],[12.25,8.16731],[12.19316,8.11354],[12.20773,7.9673],[12.07345,7.79448],[12.05575,7.74345],[11.9996,7.67337],[12.01976,7.52255],[11.91632,7.46432],[11.92926,7.43682],[11.92572,7.38754],[11.88412,7.36358],[11.88097,7.32328],[11.84447,7.26446],[11.88133,7.24356],[11.85856,7.21267],[11.86228,7.14818],[11.88248,7.10549],[11.86787,7.08182],[11.82714,7.08272],[11.78916,7.06454],[11.77726,7.04499],[11.726,7.04885],[11.65962,6.99598],[11.62621,6.98399],[11.60515,6.91749],[11.56853,6.89787],[11.55663,6.85643],[11.57623,6.84423],[11.58191,6.81631],[11.59583,6.7993],[11.57199,6.78775],[11.58385,6.73801],[11.55538,6.71218],[11.55201,6.67142],[11.52286,6.64285],[11.51843,6.61429],[11.49171,6.60184],[11.4595,6.60575],[11.4198,6.59721],[11.4324,6.54876],[11.42304,6.53169],[11.36311,6.52619],[11.35853,6.50265],[11.32375,6.50367],[11.28027,6.53572],[11.2416,6.52343],[11.22089,6.53912],[11.20018,6.5357],[11.20112,6.5123],[11.13751,6.50391],[11.13939,6.53078],[11.11655,6.51399],[11.09371,6.52176],[11.09573,6.67836],[11.06342,6.71627],[11.03215,6.71204],[11.00638,6.69689],[10.97718,6.68584],[10.94816,6.68986],[10.91639,6.70753],[10.91429,6.76453],[10.89297,6.76699],[10.87665,6.79624],[10.84926,6.80814],[10.82462,6.82549],[10.81945,6.85399],[10.84203,6.93183],[10.79839,6.96258],[10.7546,6.96432],[10.66404,7.04425],[10.64414,7.04584],[10.60502,7.0665],[10.59886,7.13759],[10.57622,7.16234],[10.56729,7.14355],[10.55287,6.99393],[10.53226,6.92365],[10.49518,6.91744],[10.489,6.89525],[10.46634,6.91941],[10.21638,6.88641],[10.17788,6.94035],[10.1751,7.00246],[10.15308,7.04003],[9.8654,6.77597],[9.78043,6.79245],[9.70773,6.51288],[9.5986,6.52589],[9.58285,6.47614],[9.52123,6.44219],[9.46785,6.45191],[9.43148,6.31767],[9.34453,6.35548],[9.33378,6.29464],[9.30655,6.25837],[9.26583,6.18036],[9.21322,6.17042],[9.16906,6.13541],[9.15237,6.09494],[9.05718,6.00718],[9.04781,5.99616],[8.94505,5.91412],[8.91531,5.90029],[8.90478,5.8625],[8.87812,5.8592],[8.84047,5.82311],[8.85226,5.79932],[8.88602,5.80012],[8.88099,5.77052],[8.851,5.7079],[8.8375,5.70267],[8.84277,5.67855],[8.90572,5.62163],[8.919,5.56791],[8.87141,5.48783],[8.8325,5.43275],[8.84579,5.38587],[8.83413,5.32886],[8.8132,5.28122],[8.81372,5.21911],[8.82085,5.18122],[8.78321,5.11578],[8.74654,5.10221],[8.72433,5.05778],[8.72009,5.03693],[8.68563,5.00514],[8.69775,4.98807],[8.6736,4.9727],[8.66839,4.94859],[8.65219,4.9409],[8.651,4.91401],[8.63332,4.90628],[8.62174,4.90446],[8.59916,4.87255],[8.61994,4.8525],[8.63454,4.82219],[8.59514,4.80429],[8.54751,4.80009],[8.52502,4.7643],[8.5282,4.7293],[8.54511,4.71346],[8,4],[5,4],[5,0]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Ethiopia#E3", "itu_zone_number": 48 }, "geometry": { "type": "Polygon", "coordinates": [[[36.52087,23.83941],[35.62166,23.14851],[35.2079,22.7861],[34.94687,22.85971],[34.81584,22.57721],[34.68756,22.29472],[34.42051,22.24805],[34.14935,22.20393],[34.07868,22.00018],[34.00321,21.77032],[33.55737,21.72439],[33.16646,21.99978],[31,22],[31,3.70541],[30.97994,3.70191],[30.9489,3.65182],[30.94999,3.63385],[30.93296,3.61927],[30.91908,3.60192],[30.90796,3.59176],[30.90494,3.57454],[30.89079,3.55839],[30.86593,3.49527],[30.85411,3.49246],[30.85054,3.49925],[30.84791,3.48868],[30.86582,3.47791],[30.87921,3.48137],[30.88162,3.48893],[30.8988,3.50269],[30.94276,3.50754],[30.94072,3.49114],[30.93826,3.40604],[30.88896,3.33607],[30.89041,3.31891],[30.87602,3.30485],[30.86713,3.27708],[30.84064,3.26397],[30.82877,3.20531],[30.80361,3.12388],[30.79377,3.06397],[30.77295,3.05342],[30.78199,3.01754],[30.80711,3.0092],[30.82125,3.00908],[30.83813,2.96885],[30.85343,2.95834],[30.85226,2.93959],[30.89151,2.86188],[30.87681,2.7901],[30.83189,2.75124],[30.77599,2.60128],[30.75215,2.58254],[30.76358,2.49772],[30.74733,2.48686],[30.74205,2.44719],[30.75156,2.41602],[30.7803,2.43149],[30.83502,2.42127],[30.88405,2.34047],[30.93877,2.33026],[30.94406,2.36669],[30.95425,2.39452],[30.98917,2.40862],[31.03153,2.37645],[31.07328,2.34382],[31.0741,2.32537],[31.08591,2.30693],[31.06888,2.30083],[31.12903,2.26347],[31.144,2.2791],[31.16933,2.27868],[31.20291,2.29198],[31.2038,2.21991],[31.24887,2.19828],[31.31592,2.14783],[31.31543,2.11692],[31.23005,1.99715],[31.03205,1.75111],[30.71646,1.50123],[30.48038,1.21567],[30.45635,1.19735],[30.40177,1.19231],[30.36212,1.1994],[30.34718,1.17628],[30.33654,1.14653],[30.28745,1.17169],[30.2387,1.13415],[30.24317,1.1037],[30.23029,1.07887],[30.22566,1.04854],[30.22635,0.9904],[30.19133,0.95698],[30.17297,0.93215],[30.17108,0.90457],[30.14259,0.88511],[30.10758,0.89103],[30.06158,0.87499],[29.99773,0.84521],[29.97783,0.82916],[29.96444,0.77501],[29.97304,0.74009],[29.96825,0.67573],[29.95418,0.64424],[29.97307,0.59352],[29.96947,0.5716],[29.98235,0.54967],[29.97789,0.50582],[29.87365,0.38518],[29.82435,0.16704],[29.77762,0.16728],[29.74189,0.12071],[29.71715,0.06865],[29.72398,0.01396],[29.74454,-0.02974],[29.72241,-0.07272],[29.7276,-0.08725],[29.65282,-0.45965],[29.67326,-0.47379],[29.67357,-0.55217],[29.68211,-0.56737],[29.66742,-0.59074],[29.64999,-0.60038],[29.66182,-0.6279],[29.63878,-0.68018],[29.62626,-0.70805],[29.63099,-0.80713],[29.64178,-0.82846],[29.63061,-0.8498],[29.62767,-0.87525],[29.63572,-0.90071],[29.58818,-0.89906],[29.58281,-0.90736],[29.59941,-0.98707],[29.58442,-0.98988],[29.58866,-1.06135],[29.57815,-1.19344],[29.60657,-1.22694],[29.60705,-1.24644],[29.59104,-1.27418],[29.60573,-1.31867],[29.59115,-1.38568],[29.63989,-1.38733],[29.67489,-1.3835],[29.69994,-1.35687],[29.73324,-1.33573],[29.76516,-1.35166],[29.77837,-1.36787],[29.79708,-1.37308],[29.80049,-1.34728],[29.81731,-1.32752],[29.82313,-1.30775],[29.86192,-1.36075],[29.88148,-1.35883],[29.88731,-1.42556],[29.89297,-1.45069],[29.91511,-1.48268],[29.98822,-1.45259],[30.02013,-1.41426],[30.05669,-1.43491],[30.05479,-1.40064],[30.08396,-1.37055],[30.11894,-1.38588],[30.13799,-1.35676],[30.16527,-1.34687],[30.17196,-1.27244],[30.20748,-1.27765],[30.28195,-1.19927],[30.30408,-1.14635],[30.34543,-1.12638],[30.33887,-1.09881],[30.35429,-1.06574],[30.42534,-1.06328],[30.4485,-1.04832],[30.49167,-1.06143],[30.51287,-1.07455],[30.54221,-1.07538],[30.58254,-1.05973],[30.64947,-1.06688],[30.66771,-1.05482],[30.67222,-1.04],[30.69496,-1.01313],[30.71572,-1.0143],[30.76548,-0.98369],[30.79909,-0.99937],[34.01135,-0.99957],[34.01833,-1.00279],[34.02805,-1.01356],[34.02827,-1.02549],[34.02786,-1.03334],[34.03089,-1.04051],[34.03769,-1.04596],[34.04587,-1.0466],[34.07969,-1.02155],[35.8564,-2.02381],[37.51227,-2.95293],[37.6733,-3.06109],[37.71202,-3.31141],[37.68562,-3.32299],[37.68529,-3.35081],[37.68092,-3.35666],[37.66402,-3.3584],[37.6177,-3.40357],[37.58444,-3.44068],[37.58656,-3.46282],[37.61578,-3.46293],[37.62489,-3.46847],[37.62602,-3.48631],[37.59677,-3.5223],[37.62335,-3.52796],[37.66778,-3.5062],[37.69003,-3.51889],[37.70109,-3.5296],[37.72313,-3.53757],[37.74524,-3.54528],[37.76199,-3.61671],[37.7856,-3.67718],[38.68495,-4.30718],[39.21428,-4.67826],[39.69966,-4.74546],[50,0],[60,0],[60,15],[44.32215,11.48006],[42.64797,13.47029],[36.52087,23.83941]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Thailand#VU4", "itu_zone_number": 49 }, "geometry": { "type": "Polygon", "coordinates": [[[97.34503,28.2141],[97.34874,28.22621],[97.35039,28.24014],[97.35688,28.24227],[97.36287,28.24151],[97.36818,28.24318],[97.37429,28.23836],[97.38282,28.23871],[97.38982,28.24131],[97.39614,28.24088],[97.40295,28.24789],[97.40838,28.25006],[97.41168,28.25107],[97.41362,28.2545],[97.41174,28.26157],[97.40129,28.27227],[97.40113,28.28236],[97.4053,28.28766],[97.4105,28.28994],[97.41365,28.29464],[97.42451,28.298],[97.43132,28.29151],[97.44537,28.2795],[97.45411,28.27592],[97.46285,28.26991],[97.46928,28.27446],[97.47009,28.27916],[97.47682,28.28245],[97.48286,28.2809],[97.48326,28.28355],[97.4763,28.28946],[97.46797,28.30626],[97.47732,28.3096],[97.48117,28.31597],[97.49842,28.3184],[97.50275,28.31433],[97.5092,28.32121],[97.51142,28.32671],[97.51775,28.3304],[97.51806,28.33353],[97.50175,28.33824],[97.50329,28.34173],[97.49641,28.34523],[97.48954,28.35054],[97.49433,28.36206],[97.48634,28.36789],[97.48316,28.37855],[97.47887,28.37993],[97.48141,28.38683],[97.48668,28.39233],[97.49127,28.3924],[97.49688,28.3985],[97.50003,28.39793],[97.50298,28.40067],[97.50171,28.40657],[97.50691,28.41193],[97.50642,28.41793],[97.50078,28.42303],[97.50746,28.43501],[97.51582,28.44133],[97.52488,28.44523],[97.52122,28.45034],[97.51425,28.45199],[97.50355,28.4667],[97.50404,28.48356],[97.50041,28.49318],[97.51062,28.49697],[97.52121,28.49132],[97.52377,28.49574],[97.52014,28.50257],[97.52451,28.50636],[97.53597,28.50765],[97.53758,28.51252],[97.53644,28.52162],[97.53875,28.52428],[97.54313,28.52271],[97.54583,28.52902],[97.55128,28.5311],[97.5552,28.52883],[97.55648,28.5298],[97.5557,28.535],[97.56698,28.54734],[97.58043,28.54722],[97.58991,28.53902],[97.5897,28.53531],[97.59636,28.53039],[97.59114,28.52207],[97.59581,28.52202],[97.60226,28.51746],[97.61476,28.51941],[97.62554,28.52558],[97.62688,28.53231],[97.63302,28.53664],[97.64637,28.53508],[97.65286,28.54257],[97.66356,28.53882],[97.66807,28.52421],[97.68063,28.52491],[97.69034,28.51982],[97.69044,28.50689],[97.70076,28.50246],[97.71245,28.50054],[97.72276,28.49681],[97.72444,28.48273],[97.73053,28.47996],[97.73342,28.47429],[97.73769,28.4668],[97.73406,28.45057],[97.73843,28.44577],[97.7358,28.43281],[97.73318,28.43192],[97.73549,28.41919],[97.74465,28.41337],[97.73596,28.40694],[97.73574,28.39832],[97.74341,28.3945],[97.75549,28.38503],[97.75466,28.37789],[97.75974,28.37945],[97.76022,28.38567],[97.76413,28.38463],[97.77764,28.37039],[97.78645,28.35723],[97.78914,28.34612],[97.79645,28.3304],[97.80583,28.33055],[97.81189,28.33425],[97.81973,28.33428],[97.8255,28.32949],[97.84254,28.32888],[97.84696,28.33458],[97.84381,28.35115],[97.85923,28.35733],[97.86762,28.36675],[97.87739,28.36652],[97.88868,28.36604],[97.90822,28.36919],[97.91356,28.3632],[97.91409,28.35842],[97.9282,28.34464],[97.93788,28.33942],[97.94104,28.32967],[97.9488,28.32691],[97.95999,28.32536],[97.95765,28.3124],[97.95187,28.30427],[97.95474,28.30012],[97.96687,28.2952],[97.98736,28.29366],[97.99206,28.2909],[97.99401,28.28501],[98.01387,28.27178],[98.02378,28.24586],[98.01553,28.24575],[98.01167,28.23264],[98.01329,28.22437],[98.00694,28.22235],[98.00921,28.21029],[98.01766,28.20429],[98.01914,28.19766],[98.02406,28.19708],[98.02976,28.19108],[98.05267,28.19027],[98.04881,28.20368],[98.07933,28.20628],[98.08206,28.19926],[98.08823,28.20029],[98.09183,28.19132],[98.08925,28.18537],[98.09817,28.16501],[98.11756,28.16678],[98.12781,28.15965],[98.13259,28.15034],[98.13875,28.14526],[98.14363,28.1353],[98.15057,28.12232],[98.14797,28.11694],[98.16062,28.10407],[98.15917,28.09483],[98.15977,28.08924],[98.1544,28.07553],[98.15179,28.06486],[98.14574,28.05464],[98.13969,28.04563],[98.13986,28.0293],[98.14254,28.02582],[98.14385,28.01931],[98.13892,28.01113],[98.1405,27.99872],[98.13375,27.99524],[98.1336,27.98679],[98.1362,27.97895],[98.13674,27.9705],[98.14072,27.95477],[98.15446,27.94091],[98.17059,27.94095],[98.18879,27.94281],[98.18948,27.93346],[98.19429,27.92533],[98.20236,27.90445],[98.20137,27.8971],[98.20588,27.89158],[98.2018,27.88545],[98.20185,27.87568],[98.18125,27.87429],[98.18082,27.86728],[98.17546,27.865],[98.1749,27.85785],[98.17035,27.85419],[98.17267,27.84142],[98.17593,27.83591],[98.19718,27.82527],[98.2143,27.81342],[98.22486,27.81401],[98.22413,27.80163],[98.22683,27.79715],[98.21975,27.78554],[98.21748,27.76481],[98.22564,27.7557],[98.24306,27.74842],[98.2471,27.74342],[98.24519,27.7373],[98.23805,27.73364],[98.23352,27.73455],[98.23174,27.7312],[98.22474,27.72815],[98.22575,27.72356],[98.22332,27.71471],[98.2341,27.7069],[98.23336,27.70373],[98.23674,27.69934],[98.2332,27.69482],[98.26011,27.67971],[98.26434,27.67509],[98.26824,27.66075],[98.27706,27.6649],[98.2853,27.65782],[98.28582,27.64266],[98.28839,27.63664],[98.30041,27.63553],[98.30325,27.63009],[98.29711,27.61673],[98.30537,27.59453],[98.31089,27.58815],[98.30686,27.56082],[98.30862,27.54623],[98.31739,27.53681],[98.31621,27.52283],[98.32884,27.51976],[98.33817,27.51107],[98.35232,27.5164],[98.37024,27.51015],[98.38335,27.51517],[98.39573,27.52654],[98.40125,27.54339],[98.41415,27.54974],[98.43048,27.55183],[98.43465,27.58338],[98.42921,27.59546],[98.43476,27.60814],[98.42932,27.61352],[98.43849,27.62816],[98.43793,27.63608],[98.43255,27.64218],[98.43451,27.65042],[98.43029,27.65927],[98.43263,27.6661],[98.44358,27.66921],[98.44941,27.66203],[98.45799,27.65851],[98.46691,27.64355],[98.47513,27.63735],[98.50592,27.63617],[98.50847,27.62858],[98.51994,27.62828],[98.52798,27.6219],[98.53465,27.62526],[98.53838,27.63858],[98.54897,27.64339],[98.55029,27.64881],[98.55573,27.64997],[98.56254,27.64371],[98.57385,27.61442],[98.5776,27.60825],[98.58203,27.59751],[98.58647,27.59104],[98.58264,27.57352],[98.59061,27.56838],[98.59858,27.57298],[98.59728,27.5788],[98.60696,27.58157],[98.61407,27.57711],[98.62119,27.57935],[98.64708,27.56862],[98.65097,27.57093],[98.6528,27.57994],[98.65716,27.58579],[98.66654,27.59079],[98.67492,27.58494],[98.68465,27.56666],[98.69438,27.5636],[98.70217,27.56539],[98.70733,27.55725],[98.69807,27.54851],[98.69962,27.53824],[98.70461,27.52006],[98.69835,27.51793],[98.69447,27.51976],[98.68921,27.51307],[98.69175,27.50698],[98.68853,27.498],[98.68395,27.48963],[98.69584,27.47472],[98.7043,27.46711],[98.70147,27.4525],[98.68766,27.4513],[98.68891,27.4379],[98.68672,27.43395],[98.689,27.42406],[98.70158,27.41752],[98.7006,27.40465],[98.7032,27.39943],[98.70373,27.3869],[98.69829,27.38303],[98.70726,27.36513],[98.71332,27.36392],[98.71731,27.3554],[98.73629,27.3536],[98.73183,27.34806],[98.73166,27.34011],[98.74042,27.33155],[98.7358,27.30482],[98.73211,27.30243],[98.73323,27.28967],[98.7274,27.27939],[98.71813,27.27461],[98.71453,27.25914],[98.7305,27.24886],[98.73025,27.2453],[98.72519,27.24479],[98.71807,27.23634],[98.72571,27.23003],[98.72288,27.22283],[98.70907,27.22174],[98.69784,27.21454],[98.69141,27.20123],[98.70326,27.18797],[98.70643,27.18073],[98.70579,27.16626],[98.71027,27.15852],[98.70856,27.15017],[98.7127,27.14263],[98.70781,27.13699],[98.71253,27.12647],[98.71335,27.11815],[98.70964,27.11308],[98.71005,27.10433],[98.71464,27.09724],[98.71237,27.07853],[98.72628,27.06989],[98.74088,27.07593],[98.76527,27.05288],[98.7669,27.04437],[98.76305,27.0221],[98.74631,27.01695],[98.73301,27.00477],[98.74435,26.99562],[98.73646,26.97179],[98.73818,26.96064],[98.74265,26.9556],[98.74677,26.94598],[98.74369,26.93429],[98.75227,26.92626],[98.75402,26.90805],[98.75783,26.88371],[98.75237,26.87394],[98.74534,26.87028],[98.73146,26.85498],[98.73567,26.8427],[98.7495,26.8298],[98.75508,26.81568],[98.75998,26.81198],[98.76188,26.80198],[98.75665,26.78043],[98.7584,26.7769],[98.75893,26.76838],[98.75671,26.76661],[98.75572,26.74959],[98.75238,26.74533],[98.75453,26.73617],[98.74991,26.73256],[98.74689,26.72151],[98.74386,26.71965],[98.74224,26.71313],[98.74623,26.71109],[98.74679,26.69985],[98.75993,26.69333],[98.771,26.69417],[98.77093,26.68629],[98.76467,26.68148],[98.76803,26.67268],[98.76109,26.66572],[98.76823,26.64994],[98.77193,26.63784],[98.78181,26.62375],[98.77817,26.61732],[98.77807,26.61073],[98.78208,26.60536],[98.77509,26.58843],[98.76879,26.57457],[98.76047,26.57401],[98.7549,26.56977],[98.75482,26.55142],[98.75405,26.53798],[98.75299,26.52357],[98.74917,26.50979],[98.75665,26.50065],[98.75123,26.48316],[98.75062,26.46936],[98.74734,26.45897],[98.74215,26.43941],[98.75237,26.4292],[98.74543,26.41685],[98.74848,26.41283],[98.74348,26.40651],[98.74167,26.38767],[98.73183,26.3844],[98.72795,26.37169],[98.73367,26.35376],[98.70622,26.32783],[98.68289,26.30929],[98.68544,26.29504],[98.67769,26.28634],[98.67729,26.28001],[98.68036,26.27285],[98.67999,26.25706],[98.67169,26.24212],[98.68187,26.24113],[98.69136,26.23645],[98.69845,26.24439],[98.71241,26.2357],[98.71478,26.22589],[98.72196,26.22038],[98.72533,26.21184],[98.72441,26.20176],[98.73654,26.1886],[98.73179,26.1747],[98.72704,26.16327],[98.72243,26.16032],[98.71165,26.16046],[98.70793,26.15211],[98.70821,26.14496],[98.71281,26.14631],[98.71752,26.13959],[98.71948,26.13041],[98.70567,26.12043],[98.7008,26.11292],[98.69304,26.11611],[98.68665,26.10511],[98.67934,26.09961],[98.67409,26.10027],[98.6678,26.09169],[98.66015,26.09236],[98.65728,26.10472],[98.66477,26.11367],[98.66746,26.12386],[98.66095,26.13053],[98.66062,26.13659],[98.65103,26.14623],[98.63254,26.15135],[98.62685,26.1497],[98.6239,26.14374],[98.61525,26.14291],[98.60936,26.13468],[98.60346,26.13261],[98.58961,26.14451],[98.58193,26.14593],[98.58493,26.13686],[98.57968,26.12593],[98.57331,26.12196],[98.58411,26.09887],[98.58676,26.08271],[98.58186,26.08072],[98.58279,26.0736],[98.59264,26.0745],[98.59975,26.06244],[98.60193,26.03205],[98.60505,26.02244],[98.60936,26.02103],[98.60979,26.01663],[98.60795,26.01535],[98.60954,26.00852],[98.61077,25.99737],[98.61791,25.98594],[98.61544,25.97388],[98.62074,25.97449],[98.63017,25.97263],[98.63471,25.97579],[98.64199,25.97648],[98.64833,25.97292],[98.64805,25.9638],[98.6589,25.96109],[98.66158,25.9551],[98.68146,25.94223],[98.69002,25.92993],[98.68736,25.92809],[98.6895,25.91205],[98.69727,25.90789],[98.70561,25.89469],[98.70366,25.88829],[98.70857,25.88258],[98.70593,25.86883],[98.70752,25.8605],[98.70342,25.85391],[98.69383,25.84732],[98.68974,25.84845],[98.68565,25.84587],[98.68501,25.83948],[98.68232,25.8368],[98.67394,25.81989],[98.66058,25.82122],[98.65415,25.8166],[98.64979,25.80704],[98.64477,25.80961],[98.64112,25.80042],[98.6304,25.80029],[98.62892,25.80672],[98.62125,25.80944],[98.61417,25.80994],[98.6112,25.81384],[98.60411,25.81465],[98.58924,25.82615],[98.57781,25.829],[98.57465,25.83979],[98.56146,25.84839],[98.55332,25.84883],[98.55077,25.84415],[98.54685,25.8438],[98.54175,25.8468],[98.53303,25.84767],[98.52845,25.84092],[98.51976,25.83665],[98.51712,25.83173],[98.52067,25.82433],[98.50637,25.81602],[98.49481,25.81264],[98.49032,25.80574],[98.48995,25.79513],[98.48512,25.79472],[98.47479,25.78256],[98.47471,25.77312],[98.48149,25.75934],[98.46974,25.7499],[98.46004,25.73675],[98.45987,25.72646],[98.46932,25.70751],[98.4628,25.70178],[98.45937,25.68971],[98.4333,25.68257],[98.43261,25.67908],[98.41888,25.67312],[98.40688,25.65625],[98.41171,25.65189],[98.40538,25.63795],[98.40791,25.62348],[98.40976,25.61148],[98.40355,25.60691],[98.40282,25.59987],[98.38337,25.60218],[98.37261,25.58817],[98.36151,25.5791],[98.3503,25.5808],[98.34707,25.57816],[98.34384,25.58047],[98.33806,25.57333],[98.3241,25.56461],[98.31334,25.54781],[98.30395,25.55212],[98.29661,25.562],[98.2943,25.5768],[98.28302,25.58204],[98.27517,25.59347],[98.26938,25.59499],[98.26359,25.60146],[98.25879,25.6029],[98.25399,25.6062],[98.24713,25.60579],[98.24233,25.61342],[98.23617,25.60866],[98.21559,25.61288],[98.21493,25.61587],[98.20472,25.61975],[98.20013,25.61581],[98.19039,25.61527],[98.1843,25.62627],[98.16818,25.62693],[98.1684,25.62098],[98.17205,25.6175],[98.1816,25.59393],[98.18291,25.58336],[98.18828,25.574],[98.18208,25.56154],[98.17382,25.54907],[98.16178,25.54652],[98.15936,25.52725],[98.15309,25.52671],[98.14651,25.52179],[98.13994,25.52059],[98.13083,25.52013],[98.12426,25.50806],[98.13861,25.4977],[98.13925,25.49129],[98.1485,25.47692],[98.15638,25.46007],[98.15723,25.45318],[98.15464,25.45001],[98.15428,25.44118],[98.14532,25.43283],[98.15523,25.42231],[98.14818,25.41612],[98.14808,25.40806],[98.1446,25.40496],[98.14286,25.39597],[98.13769,25.38636],[98.12787,25.38607],[98.12181,25.38461],[98.1027,25.39431],[98.09951,25.39075],[98.10205,25.38892],[98.09714,25.38056],[98.10189,25.3801],[98.09896,25.3744],[98.09603,25.35133],[98.09189,25.35165],[98.0898,25.33831],[98.08152,25.33584],[98.07525,25.33648],[98.07275,25.32968],[98.07219,25.321],[98.06957,25.31481],[98.06232,25.31011],[98.03791,25.30479],[98.02862,25.30585],[98.02311,25.31095],[98.01141,25.30687],[98.00264,25.2966],[98.00691,25.28323],[98.0002,25.27699],[97.988,25.2571],[97.97767,25.25332],[97.96803,25.23837],[97.96173,25.2419],[97.95165,25.22587],[97.94432,25.21792],[97.93395,25.21862],[97.91743,25.21308],[97.90538,25.21809],[97.8954,25.23498],[97.88336,25.24753],[97.87575,25.26144],[97.8698,25.26389],[97.86797,25.26634],[97.86134,25.26414],[97.84097,25.27249],[97.83508,25.26384],[97.83248,25.25424],[97.82232,25.23781],[97.81643,25.22513],[97.8097,25.20388],[97.80298,25.18542],[97.8036,25.1787],[97.79803,25.1726],[97.79995,25.16786],[97.78916,25.15162],[97.77769,25.13165],[97.77849,25.12511],[97.76636,25.11049],[97.75698,25.0965],[97.75,25.09541],[97.74577,25.08127],[97.73913,25.07993],[97.73112,25.0817],[97.73049,25.08907],[97.72606,25.08591],[97.72025,25.08524],[97.72649,25.06667],[97.72861,25.04748],[97.71843,25.01345],[97.71884,25.00017],[97.71718,24.98004],[97.71987,24.97216],[97.72739,24.96293],[97.73046,24.95307],[97.73091,24.93803],[97.7284,24.93051],[97.73034,24.91147],[97.73984,24.90551],[97.74597,24.89443],[97.75641,24.88967],[97.75803,24.88558],[97.76376,24.88273],[97.77178,24.88981],[97.77622,24.88416],[97.7834,24.881],[97.78852,24.87442],[97.78971,24.86396],[97.79752,24.86372],[97.79845,24.85351],[97.78228,24.8399],[97.7711,24.83185],[97.76267,24.82878],[97.74857,24.82946],[97.74462,24.83354],[97.7344,24.82997],[97.70903,24.83815],[97.70253,24.84629],[97.70082,24.8418],[97.69568,24.83543],[97.68125,24.83031],[97.66717,24.81498],[97.65035,24.79622],[97.6341,24.79081],[97.61545,24.77885],[97.58914,24.77052],[97.5688,24.77007],[97.56077,24.75293],[97.54783,24.7428],[97.54926,24.73665],[97.55274,24.73049],[97.56669,24.72816],[97.56896,24.71461],[97.56897,24.70767],[97.56554,24.70322],[97.56556,24.69619],[97.56971,24.69337],[97.56909,24.66527],[97.57426,24.66285],[97.57393,24.65731],[97.56847,24.65622],[97.56746,24.64693],[97.56988,24.60207],[97.56474,24.59466],[97.56492,24.58097],[97.56192,24.57631],[97.56489,24.56243],[97.56139,24.56048],[97.55995,24.52981],[97.55702,24.52226],[97.55271,24.48598],[97.53741,24.46],[97.52898,24.4434],[97.53474,24.44292],[97.53006,24.43643],[97.54764,24.44069],[97.57737,24.44188],[97.5912,24.43872],[97.60018,24.44652],[97.60536,24.44073],[97.64228,24.44721],[97.67027,24.45557],[97.67796,24.44667],[97.67528,24.4341],[97.68012,24.41781],[97.68427,24.41528],[97.67582,24.4092],[97.69185,24.38678],[97.70467,24.38464],[97.70319,24.37856],[97.70794,24.37897],[97.71477,24.37667],[97.71407,24.36707],[97.71699,24.36499],[97.71467,24.35706],[97.7096,24.35477],[97.70231,24.34685],[97.68814,24.34393],[97.68795,24.34124],[97.68089,24.34043],[97.67707,24.34632],[97.66874,24.3481],[97.65905,24.33533],[97.66653,24.30067],[97.68979,24.29482],[97.70555,24.29659],[97.71924,24.30023],[97.72992,24.29138],[97.73854,24.28941],[97.74923,24.28274],[97.74961,24.27796],[97.7683,24.26444],[97.75815,24.25406],[97.74388,24.24806],[97.72807,24.22891],[97.72566,24.20274],[97.72736,24.18847],[97.74314,24.18468],[97.7512,24.17418],[97.7524,24.16556],[97.74364,24.16289],[97.7372,24.15059],[97.73467,24.13347],[97.73065,24.12868],[97.7287,24.11448],[97.71493,24.10962],[97.70871,24.10351],[97.70931,24.09943],[97.70091,24.09691],[97.69304,24.09751],[97.67729,24.07741],[97.65128,24.06102],[97.64047,24.04581],[97.63326,24.04799],[97.63258,24.02163],[97.62299,24.02347],[97.62714,24.00645],[97.61333,24.00055],[97.59677,23.99465],[97.57396,23.98725],[97.56762,23.97012],[97.56274,23.96438],[97.55001,23.96028],[97.5318,23.95116],[97.52835,23.94204],[97.52764,23.93167],[97.54238,23.9221],[97.55112,23.9239],[97.56536,23.91315],[97.57289,23.91457],[97.57666,23.91021],[97.5873,23.90774],[97.59931,23.89458],[97.61682,23.89272],[97.62231,23.88395],[97.63192,23.88083],[97.63291,23.87268],[97.63889,23.87143],[97.63742,23.86578],[97.64184,23.86045],[97.6413,23.85213],[97.64556,23.84255],[97.65004,23.84381],[97.64903,23.85511],[97.65728,23.86516],[97.65866,23.8727],[97.66107,23.86799],[97.65953,23.86187],[97.66417,23.85637],[97.66847,23.85716],[97.67141,23.8636],[97.67796,23.86328],[97.68426,23.88276],[97.69228,23.88309],[97.69389,23.87885],[97.68851,23.87548],[97.69887,23.86752],[97.71641,23.87232],[97.71385,23.87755],[97.7033,23.8764],[97.70386,23.88242],[97.70785,23.88655],[97.71874,23.88344],[97.72865,23.89915],[97.74665,23.90481],[97.75153,23.91046],[97.76427,23.91109],[97.76715,23.91439],[97.76248,23.91894],[97.76742,23.92349],[97.76549,23.93118],[97.77434,23.93871],[97.79181,23.94499],[97.79403,23.95691],[97.80612,23.95283],[97.80633,23.95958],[97.81227,23.96232],[97.81558,23.96087],[97.81243,23.95356],[97.80846,23.94833],[97.81248,23.94431],[97.81581,23.94844],[97.8171,23.95447],[97.82496,23.9578],[97.82649,23.96197],[97.82197,23.96576],[97.81827,23.97126],[97.8283,23.97236],[97.82982,23.9639],[97.83488,23.96175],[97.84228,23.9644],[97.8399,23.97471],[97.84409,23.97714],[97.84627,23.97195],[97.85751,23.98229],[97.87012,23.97599],[97.89188,23.97567],[97.89647,23.98288],[97.88745,23.98694],[97.88186,23.99602],[97.89332,24.00479],[97.8986,24.01607],[97.9176,24.02234],[97.92648,24.02265],[97.93878,24.01983],[97.96173,24.02798],[97.98399,24.03488],[97.99579,24.04905],[98.02091,24.06084],[98.04515,24.07614],[98.05143,24.07469],[98.05628,24.07868],[98.07004,24.08067],[98.07349,24.07915],[98.0838,24.0831],[98.08792,24.08266],[98.08873,24.08774],[98.11317,24.09342],[98.14839,24.09782],[98.15908,24.10049],[98.17115,24.10065],[98.16674,24.10551],[98.19371,24.10199],[98.20421,24.10411],[98.20588,24.11013],[98.21333,24.11179],[98.21667,24.11596],[98.224,24.11633],[98.24575,24.11042],[98.27849,24.11109],[98.29406,24.10237],[98.32732,24.10463],[98.34326,24.10169],[98.35123,24.10555],[98.35556,24.10434],[98.35188,24.10092],[98.35897,24.10014],[98.36183,24.11041],[98.36744,24.11379],[98.38979,24.11707],[98.46242,24.12811],[98.48432,24.12361],[98.54741,24.13038],[98.55432,24.11236],[98.57167,24.1019],[98.58901,24.09457],[98.59418,24.08305],[98.61869,24.09175],[98.62673,24.09793],[98.6476,24.10905],[98.66165,24.10725],[98.67981,24.10169],[98.70003,24.11054],[98.71339,24.12941],[98.72397,24.13067],[98.73338,24.12753],[98.74417,24.13004],[98.7575,24.12691],[98.76725,24.12879],[98.7722,24.13255],[98.81934,24.13693],[98.8373,24.12957],[98.85003,24.13165],[98.85795,24.1356],[98.8786,24.15604],[98.88793,24.14341],[98.89383,24.12514],[98.88906,24.11773],[98.89459,24.11721],[98.89839,24.10901],[98.89377,24.10178],[98.88401,24.09267],[98.87006,24.0878],[98.86391,24.08031],[98.86943,24.07471],[98.8631,24.06736],[98.83315,24.04895],[98.819,24.04622],[98.79858,24.02571],[98.77121,24.02926],[98.75922,24.01493],[98.76714,23.99873],[98.75865,23.99649],[98.7529,23.98295],[98.74003,23.98224],[98.73626,23.97139],[98.72599,23.96915],[98.71601,23.97807],[98.70123,23.98699],[98.67581,23.96235],[98.67373,23.95652],[98.69838,23.95457],[98.69755,23.94689],[98.70531,23.94047],[98.70345,23.93656],[98.69973,23.93815],[98.69532,23.93472],[98.68955,23.92894],[98.6872,23.92253],[98.67839,23.91284],[98.68871,23.89992],[98.68529,23.89327],[98.68942,23.89278],[98.69492,23.88726],[98.69527,23.87335],[98.70111,23.872],[98.69631,23.85778],[98.6915,23.85738],[98.69256,23.84817],[98.69834,23.84646],[98.7048,23.84286],[98.69094,23.81242],[98.67833,23.81562],[98.67303,23.80694],[98.68645,23.80342],[98.69488,23.78783],[98.70093,23.78614],[98.70877,23.7922],[98.73651,23.79135],[98.73982,23.78746],[98.74357,23.7846],[98.74662,23.78488],[98.75068,23.77665],[98.78988,23.78406],[98.79832,23.77445],[98.80744,23.76925],[98.80489,23.76625],[98.80567,23.76035],[98.81876,23.74577],[98.83117,23.72868],[98.8238,23.72678],[98.81575,23.71232],[98.81886,23.69784],[98.84019,23.68901],[98.84073,23.67092],[98.8447,23.66792],[98.84783,23.64368],[98.85097,23.63486],[98.8636,23.62982],[98.87828,23.62478],[98.89187,23.6166],[98.89066,23.60444],[98.88053,23.59229],[98.86369,23.58623],[98.85612,23.57725],[98.84475,23.58039],[98.83664,23.57204],[98.83324,23.56382],[98.81542,23.55559],[98.81029,23.54991],[98.80859,23.54296],[98.80107,23.54041],[98.80909,23.52498],[98.80612,23.52159],[98.81757,23.50435],[98.81975,23.49215],[98.81534,23.49078],[98.82104,23.48379],[98.82698,23.48565],[98.82742,23.47869],[98.83476,23.48153],[98.839,23.47877],[98.85004,23.47897],[98.84804,23.4842],[98.85984,23.48617],[98.87643,23.4894],[98.89785,23.45735],[98.89689,23.44794],[98.92064,23.41963],[98.92053,23.41275],[98.91081,23.39578],[98.92238,23.37818],[98.91855,23.37379],[98.92154,23.36466],[98.91767,23.35364],[98.90099,23.3568],[98.89026,23.34281],[98.87679,23.33009],[98.89748,23.33498],[98.90855,23.33546],[98.91529,23.32892],[98.92134,23.32932],[98.93288,23.31774],[98.94106,23.31478],[98.94512,23.30931],[98.93774,23.3068],[98.93662,23.29404],[98.93005,23.2938],[98.92555,23.29546],[98.92555,23.28225],[98.93173,23.26904],[98.91199,23.25456],[98.91148,23.23631],[98.90367,23.22308],[98.89037,23.21237],[98.89595,23.20703],[98.885,23.19142],[98.88503,23.1833],[98.88985,23.17897],[98.90257,23.18133],[98.90996,23.1885],[98.92602,23.18767],[98.93315,23.18243],[98.95241,23.1802],[98.95466,23.17546],[98.96652,23.17072],[98.98069,23.17025],[99.00447,23.16409],[99.01877,23.16432],[99.03444,23.16266],[99.04461,23.16669],[99.05245,23.16333],[99.06097,23.17324],[99.05619,23.15397],[99.049,23.1456],[99.05021,23.13446],[99.04661,23.12333],[99.09624,23.10249],[99.1033,23.09301],[99.11558,23.09253],[99.11276,23.10153],[99.11646,23.10485],[99.12236,23.10078],[99.12963,23.10177],[99.14481,23.10875],[99.15651,23.1053],[99.16546,23.10831],[99.17336,23.10634],[99.18238,23.10758],[99.18933,23.10504],[99.20015,23.11258],[99.20685,23.10861],[99.20737,23.10086],[99.21596,23.09166],[99.22661,23.09193],[99.23383,23.0941],[99.23813,23.09101],[99.2383,23.0854],[99.24895,23.07922],[99.26338,23.08581],[99.25995,23.091],[99.26442,23.10117],[99.27506,23.09809],[99.27987,23.10675],[99.29223,23.10792],[99.30597,23.10215],[99.31088,23.10752],[99.3178,23.10894],[99.32472,23.11288],[99.32493,23.11603],[99.32329,23.12013],[99.32573,23.12612],[99.32955,23.13591],[99.337,23.1329],[99.34245,23.13771],[99.3479,23.13747],[99.34883,23.13351],[99.36303,23.12679],[99.36361,23.11712],[99.3687,23.11608],[99.37125,23.11145],[99.38248,23.10882],[99.38501,23.10087],[99.39108,23.10195],[99.4053,23.0967],[99.41128,23.09839],[99.43442,23.08745],[99.43609,23.08266],[99.44119,23.08608],[99.45899,23.0854],[99.46172,23.08727],[99.47372,23.08252],[99.47869,23.08741],[99.48213,23.08621],[99.48558,23.08249],[99.4952,23.08288],[99.50071,23.08074],[99.51036,23.0848],[99.52486,23.07398],[99.52756,23.06181],[99.53164,23.0547],[99.53025,23.04921],[99.52612,23.04962],[99.52269,23.04687],[99.52542,23.04233],[99.52541,23.03905],[99.52145,23.03773],[99.5175,23.03451],[99.52127,23.02618],[99.51782,23.02511],[99.51644,23.02142],[99.5185,23.01835],[99.52326,23.00271],[99.51946,22.99931],[99.52511,22.9875],[99.53557,22.97506],[99.53449,22.96353],[99.53954,22.9627],[99.54391,22.9644],[99.5536,22.95868],[99.56191,22.946],[99.56526,22.93246],[99.56106,22.92461],[99.56089,22.90765],[99.553,22.90535],[99.54547,22.90835],[99.53659,22.8998],[99.52373,22.90264],[99.51637,22.90801],[99.50912,22.90816],[99.48814,22.91591],[99.47502,22.92887],[99.45709,22.93487],[99.44054,22.94214],[99.44073,22.937],[99.43612,22.92679],[99.43854,22.9207],[99.43581,22.91587],[99.44409,22.88945],[99.44977,22.88001],[99.45089,22.8677],[99.45049,22.86162],[99.45695,22.85807],[99.46204,22.84819],[99.44082,22.84746],[99.43056,22.83855],[99.42268,22.83631],[99.42045,22.83235],[99.42029,22.82775],[99.4032,22.83019],[99.39705,22.82191],[99.3974,22.8181],[99.3902,22.81556],[99.39192,22.81081],[99.38969,22.7964],[99.38502,22.7909],[99.38927,22.78034],[99.38609,22.76554],[99.37882,22.76472],[99.36674,22.76707],[99.36324,22.76467],[99.3618,22.76101],[99.35262,22.75964],[99.35043,22.76133],[99.34549,22.76113],[99.34056,22.75902],[99.34043,22.75564],[99.32636,22.75335],[99.32361,22.74219],[99.31469,22.73926],[99.3182,22.7298],[99.32583,22.72542],[99.32896,22.71562],[99.33758,22.71343],[99.34998,22.6745],[99.36169,22.66344],[99.35901,22.65739],[99.36332,22.6386],[99.369,22.61602],[99.37418,22.61078],[99.37081,22.60473],[99.38392,22.58791],[99.38267,22.58343],[99.38554,22.57451],[99.37296,22.55847],[99.35832,22.53798],[99.3601,22.53091],[99.35845,22.52637],[99.36572,22.51518],[99.38055,22.50652],[99.3809,22.4952],[99.36794,22.48808],[99.36116,22.47716],[99.35125,22.47123],[99.34477,22.46148],[99.33657,22.4565],[99.3325,22.44771],[99.3126,22.44093],[99.30902,22.43644],[99.30963,22.4307],[99.30407,22.42306],[99.28111,22.40329],[99.25236,22.39739],[99.24842,22.39258],[99.25084,22.38549],[99.2653,22.37449],[99.27838,22.36349],[99.27646,22.34869],[99.26666,22.34493],[99.25549,22.33482],[99.25032,22.32094],[99.2472,22.31406],[99.23981,22.30934],[99.23645,22.3054],[99.23684,22.3012],[99.23241,22.29828],[99.23545,22.28324],[99.22942,22.27159],[99.23574,22.25168],[99.22328,22.23734],[99.2188,22.23471],[99.2095,22.23589],[99.20433,22.22786],[99.20526,22.22235],[99.20071,22.22193],[99.19615,22.21611],[99.19656,22.20655],[99.19147,22.21161],[99.19016,22.20269],[99.17509,22.1906],[99.18094,22.18423],[99.1794,22.18201],[99.17486,22.18184],[99.17544,22.17863],[99.18357,22.17477],[99.18715,22.17722],[99.18997,22.17082],[99.19485,22.17459],[99.202,22.17505],[99.19474,22.16724],[99.18021,22.16576],[99.17323,22.17],[99.16477,22.16831],[99.16158,22.17065],[99.15727,22.16897],[99.15936,22.16467],[99.15597,22.16291],[99.16906,22.15035],[99.18178,22.14661],[99.18093,22.14506],[99.18943,22.14174],[99.19362,22.13757],[99.19983,22.13485],[99.20398,22.13022],[99.21366,22.1305],[99.2161,22.1246],[99.26126,22.10957],[99.27183,22.10014],[99.27601,22.10176],[99.27951,22.1091],[99.29132,22.11234],[99.29434,22.11297],[99.30354,22.10216],[99.31714,22.10279],[99.3269,22.0942],[99.33047,22.09897],[99.3385,22.09611],[99.34173,22.10024],[99.35808,22.09388],[99.36438,22.1062],[99.37578,22.10536],[99.39074,22.09954],[99.40543,22.0998],[99.40935,22.09898],[99.41336,22.10335],[99.41463,22.10898],[99.42643,22.11017],[99.43093,22.10506],[99.4342,22.10409],[99.43611,22.1114],[99.44094,22.11424],[99.44645,22.1128],[99.45813,22.12257],[99.46535,22.13001],[99.47393,22.1368],[99.48517,22.13536],[99.48324,22.12987],[99.48639,22.12745],[99.49517,22.12655],[99.49579,22.1207],[99.50848,22.10969],[99.52597,22.09805],[99.53316,22.1074],[99.54568,22.1108],[99.55332,22.10932],[99.56164,22.11739],[99.56884,22.10601],[99.57794,22.10223],[99.58386,22.10766],[99.59163,22.11005],[99.59322,22.11499],[99.60145,22.11189],[99.60506,22.10617],[99.60935,22.10364],[99.61175,22.09666],[99.62411,22.097],[99.62789,22.10257],[99.64213,22.10536],[99.65157,22.10497],[99.64985,22.10067],[99.65208,22.09216],[99.66212,22.09045],[99.66954,22.07782],[99.67497,22.07501],[99.68283,22.07551],[99.68677,22.07862],[99.69663,22.07127],[99.69401,22.06378],[99.69472,22.05856],[99.68789,22.04698],[99.71127,22.0405],[99.7178,22.04393],[99.72176,22.04979],[99.72069,22.0573],[99.71893,22.06035],[99.72269,22.06665],[99.7285,22.06914],[99.73466,22.06907],[99.74049,22.07445],[99.7573,22.07315],[99.7791,22.05656],[99.80914,22.05397],[99.81347,22.04975],[99.8233,22.04806],[99.83746,22.03707],[99.83308,22.02988],[99.85155,22.02681],[99.86659,22.0282],[99.86756,22.03627],[99.878,22.03903],[99.87807,22.04169],[99.86849,22.04747],[99.86234,22.05898],[99.87625,22.07039],[99.89109,22.07037],[99.90525,22.06972],[99.90851,22.06172],[99.91735,22.05836],[99.92745,22.05975],[99.93962,22.06241],[99.94252,22.05934],[99.94088,22.05717],[99.96237,22.0529],[99.96934,22.05872],[99.97317,22.05781],[99.96908,22.0475],[99.96222,22.04361],[99.95949,22.03972],[99.96049,22.03019],[99.96423,22.01812],[99.97056,22.01351],[99.97758,22.00191],[99.98613,21.99779],[99.99973,21.97495],[99.98998,21.96008],[99.98823,21.95254],[99.98236,21.93863],[99.98003,21.935],[99.98251,21.92308],[99.97443,21.91453],[99.96032,21.90954],[99.96235,21.89464],[99.96473,21.88528],[99.9582,21.874],[99.94577,21.86682],[99.94537,21.84848],[99.94702,21.84512],[99.94403,21.82404],[99.94927,21.80901],[99.95795,21.79972],[99.96062,21.79027],[99.96195,21.77662],[99.97016,21.76552],[99.97145,21.75416],[99.97687,21.74662],[99.97484,21.74298],[99.98104,21.73144],[99.98414,21.71706],[99.98981,21.7121],[99.99136,21.70587],[100.01684,21.69456],[100.02615,21.69752],[100.0339,21.69485],[100.03581,21.68885],[100.03291,21.6886],[100.03124,21.6798],[100.03453,21.67523],[100.04262,21.67642],[100.04581,21.66935],[100.05037,21.66675],[100.04944,21.67372],[100.05653,21.68359],[100.06328,21.68574],[100.07209,21.69299],[100.08542,21.69454],[100.09531,21.7063],[100.09972,21.70594],[100.10219,21.70106],[100.1103,21.69926],[100.11085,21.70384],[100.12053,21.70631],[100.12332,21.70163],[100.13054,21.70185],[100.14145,21.68994],[100.16128,21.67548],[100.17485,21.65613],[100.1744,21.65183],[100.17189,21.64882],[100.16114,21.65091],[100.15314,21.64981],[100.14517,21.63902],[100.1396,21.63684],[100.13441,21.62714],[100.13403,21.61807],[100.12915,21.61319],[100.12221,21.61086],[100.1175,21.60501],[100.10867,21.60172],[100.10722,21.59416],[100.10787,21.58527],[100.1178,21.57859],[100.1238,21.56632],[100.11881,21.54829],[100.12251,21.54105],[100.12505,21.532],[100.12072,21.52487],[100.12797,21.50805],[100.1479,21.50053],[100.16783,21.48661],[100.17283,21.49107],[100.1792,21.51788],[100.19129,21.51695],[100.20475,21.51282],[100.21587,21.49114],[100.22576,21.4874],[100.23001,21.48186],[100.23008,21.47398],[100.23358,21.46993],[100.25034,21.46715],[100.25525,21.47171],[100.26285,21.47016],[100.27045,21.47309],[100.28302,21.48605],[100.29688,21.47914],[100.3047,21.49024],[100.31552,21.49263],[100.33356,21.51642],[100.35022,21.53126],[100.37203,21.52965],[100.37572,21.53172],[100.38478,21.52605],[100.39109,21.52421],[100.40913,21.53442],[100.43197,21.5408],[100.44146,21.5226],[100.44106,21.51766],[100.44336,21.51722],[100.44566,21.51359],[100.45689,21.51251],[100.46319,21.49824],[100.45962,21.49339],[100.45879,21.48855],[100.4662,21.48243],[100.46648,21.47904],[100.4697,21.47608],[100.47029,21.47204],[100.47607,21.46906],[100.47656,21.46341],[100.47979,21.45777],[100.48912,21.45825],[100.49214,21.46221],[100.50271,21.46361],[100.51362,21.47044],[100.52179,21.47152],[100.53838,21.47056],[100.55429,21.45428],[100.56224,21.45731],[100.57205,21.45052],[100.58687,21.45314],[100.5955,21.46343],[100.61031,21.46476],[100.62356,21.47502],[100.63888,21.48222],[100.64666,21.48366],[100.65992,21.48287],[100.66907,21.47952],[100.67991,21.48614],[100.68533,21.50478],[100.68943,21.50417],[100.69285,21.50995],[100.70313,21.51541],[100.71376,21.51111],[100.72286,21.51152],[100.7332,21.52472],[100.74354,21.536],[100.74667,21.546],[100.75579,21.55611],[100.76653,21.56181],[100.77109,21.57133],[100.78166,21.57018],[100.7936,21.57094],[100.79285,21.58384],[100.80071,21.59156],[100.80017,21.60309],[100.81257,21.61905],[100.83458,21.63758],[100.84633,21.63759],[100.85441,21.65233],[100.86799,21.67089],[100.88534,21.6869],[100.89058,21.68438],[100.90453,21.68758],[100.90956,21.68376],[100.9138,21.68248],[100.91185,21.69014],[100.91757,21.69047],[100.92329,21.68879],[100.93382,21.6935],[100.93988,21.69852],[100.94449,21.7001],[100.95047,21.69976],[100.97327,21.69942],[100.98165,21.70355],[100.99832,21.70696],[101.01223,21.70974],[101.01585,21.7173],[101.03719,21.73322],[101.05714,21.75169],[101.08103,21.76651],[101.08706,21.77495],[101.10339,21.77478],[101.12178,21.77652],[101.11125,21.76246],[101.10999,21.74905],[101.11972,21.71396],[101.11583,21.69163],[101.12418,21.69001],[101.12561,21.68473],[101.13662,21.67284],[101.15176,21.67116],[101.15105,21.66098],[101.15173,21.65143],[101.15619,21.6508],[101.15928,21.6457],[101.16268,21.63812],[101.15853,21.63309],[101.16195,21.61749],[101.1688,21.60508],[101.16909,21.59246],[101.15275,21.59191],[101.14729,21.58889],[101.14183,21.58141],[101.13842,21.5724],[101.14289,21.56407],[101.14736,21.56212],[101.1496,21.56408],[101.15631,21.56492],[101.17485,21.56185],[101.18825,21.55751],[101.19828,21.56183],[101.20432,21.56176],[101.21037,21.56424],[101.21401,21.56209],[101.21696,21.55675],[101.21655,21.5461],[101.21889,21.538],[101.21645,21.53044],[101.20886,21.52543],[101.21082,21.51558],[101.20905,21.51289],[101.21072,21.50573],[101.22218,21.50008],[101.21453,21.49068],[101.20246,21.4831],[101.19108,21.47553],[101.19361,21.46188],[101.19338,21.45207],[101.19722,21.447],[101.20017,21.43936],[101.19145,21.42212],[101.18058,21.41838],[101.1883,21.41556],[101.19078,21.40712],[101.19786,21.40769],[101.20243,21.40319],[101.21364,21.40157],[101.21822,21.39821],[101.22348,21.39804],[101.23017,21.39298],[101.24098,21.38665],[101.2365,21.38325],[101.23872,21.37867],[101.24155,21.37958],[101.24125,21.37492],[101.25388,21.37024],[101.25635,21.37195],[101.26362,21.37174],[101.26472,21.36833],[101.27131,21.36556],[101.25926,21.35618],[101.25985,21.3492],[101.25563,21.33966],[101.2473,21.33908],[101.24034,21.33849],[101.2387,21.33319],[101.23843,21.32725],[101.22553,21.33008],[101.22555,21.32799],[101.22969,21.32655],[101.22698,21.31982],[101.21882,21.31915],[101.21924,21.31241],[101.21348,21.31015],[101.21682,21.30746],[101.23596,21.3067],[101.24313,21.30023],[101.24389,21.29718],[101.2474,21.29284],[101.2496,21.29569],[101.25182,21.292],[101.24649,21.28894],[101.24459,21.27757],[101.23857,21.27579],[101.23891,21.2681],[101.22825,21.26361],[101.22961,21.25783],[101.22205,21.25398],[101.22702,21.24797],[101.21551,21.23108],[101.21722,21.22796],[101.2246,21.23407],[101.22627,21.23288],[101.22588,21.22785],[101.23271,21.22282],[101.24195,21.22511],[101.24932,21.21953],[101.24855,21.2113],[101.24365,21.20499],[101.24899,21.20498],[101.25433,21.19985],[101.26639,21.19663],[101.27403,21.18954],[101.28037,21.17794],[101.29042,21.17405],[101.29922,21.1769],[101.31358,21.18889],[101.32519,21.1868],[101.33645,21.19735],[101.34429,21.20022],[101.35164,21.20581],[101.35899,21.2082],[101.36737,21.21892],[101.37575,21.22067],[101.3841,21.22674],[101.39926,21.22722],[101.40686,21.22577],[101.42683,21.23168],[101.44817,21.22672],[101.45835,21.22991],[101.4597,21.23375],[101.48164,21.24527],[101.50084,21.24943],[101.50836,21.24655],[101.53069,21.24988],[101.54752,21.25705],[101.55955,21.24736],[101.57448,21.24315],[101.5853,21.24023],[101.58875,21.23428],[101.59943,21.24313],[101.60944,21.23663],[101.61498,21.2282],[101.60352,21.22281],[101.60066,21.21874],[101.60369,21.21223],[101.59182,21.19905],[101.58543,21.19035],[101.59768,21.17764],[101.6038,21.18121],[101.60961,21.17563],[101.61325,21.17989],[101.62022,21.18459],[101.6217,21.188],[101.63036,21.19845],[101.65001,21.19962],[101.67309,21.20398],[101.67801,21.19769],[101.676,21.19198],[101.67949,21.18115],[101.68715,21.18062],[101.69147,21.17536],[101.69922,21.17395],[101.70388,21.16325],[101.69509,21.15609],[101.69797,21.14894],[101.70711,21.14947],[101.71487,21.1468],[101.71665,21.14338],[101.73255,21.14724],[101.73745,21.14407],[101.74545,21.14794],[101.75666,21.14475],[101.76513,21.14476],[101.7642,21.15391],[101.77082,21.15602],[101.77465,21.16139],[101.7826,21.16613],[101.79123,21.18687],[101.78636,21.1919],[101.78972,21.20205],[101.77625,21.20291],[101.77203,21.20505],[101.76781,21.21551],[101.7804,21.21988],[101.79918,21.20634],[101.81573,21.21333],[101.82606,21.21139],[101.82848,21.20497],[101.84102,21.20721],[101.83969,21.21209],[101.8418,21.21696],[101.83738,21.2196],[101.8361,21.22938],[101.84512,21.25325],[101.83423,21.25823],[101.8298,21.25755],[101.82124,21.26072],[101.80993,21.25588],[101.81236,21.26129],[101.80247,21.27436],[101.80082,21.29192],[101.79011,21.28733],[101.78283,21.29489],[101.76759,21.2889],[101.75551,21.29582],[101.7393,21.31042],[101.74027,21.31415],[101.73505,21.32235],[101.72696,21.3547],[101.73673,21.36434],[101.74168,21.36439],[101.73656,21.37191],[101.74381,21.37878],[101.73731,21.39845],[101.74025,21.40988],[101.74455,21.41108],[101.75045,21.40629],[101.75361,21.40917],[101.75523,21.41688],[101.7468,21.42972],[101.75604,21.43752],[101.75529,21.4544],[101.74967,21.45876],[101.75079,21.46685],[101.74617,21.46512],[101.73761,21.48468],[101.74413,21.48982],[101.7486,21.49112],[101.7534,21.49883],[101.76027,21.50212],[101.76783,21.51252],[101.77952,21.51608],[101.76999,21.52871],[101.7584,21.53047],[101.75446,21.54677],[101.76236,21.56276],[101.75653,21.56247],[101.75215,21.56575],[101.74778,21.57286],[101.74992,21.58253],[101.74932,21.58773],[101.75533,21.58614],[101.76203,21.58265],[101.76632,21.5849],[101.78113,21.57812],[101.80418,21.57581],[101.81072,21.58423],[101.80903,21.58946],[101.82243,21.59989],[101.83445,21.61416],[101.82588,21.62385],[101.81867,21.62396],[101.81147,21.62917],[101.8107,21.63718],[101.80585,21.63991],[101.80168,21.63498],[101.79817,21.63532],[101.7916,21.63773],[101.78504,21.63631],[101.78572,21.64207],[101.78229,21.64783],[101.78435,21.65744],[101.78058,21.65588],[101.77681,21.65943],[101.76995,21.65759],[101.77272,21.66446],[101.77136,21.67324],[101.77585,21.67788],[101.7769,21.6889],[101.7715,21.6934],[101.76412,21.69476],[101.77326,21.70147],[101.76799,21.7184],[101.75881,21.7261],[101.751,21.72614],[101.74594,21.72809],[101.7474,21.73731],[101.742,21.75034],[101.75136,21.75222],[101.75866,21.75793],[101.7609,21.78082],[101.77027,21.80437],[101.77237,21.81934],[101.78287,21.82045],[101.78443,21.82411],[101.77601,21.82909],[101.7772,21.83216],[101.77801,21.83556],[101.77195,21.83768],[101.76809,21.83682],[101.76514,21.83486],[101.75259,21.83863],[101.73847,21.84808],[101.73602,21.85976],[101.73769,21.86443],[101.73869,21.87153],[101.73557,21.87799],[101.72517,21.88408],[101.71408,21.88189],[101.70598,21.89345],[101.69445,21.90278],[101.6995,21.90999],[101.7073,21.92039],[101.70571,21.92646],[101.70274,21.92872],[101.69852,21.94596],[101.6897,21.94649],[101.67984,21.94129],[101.67799,21.93598],[101.66809,21.93173],[101.66322,21.93959],[101.65766,21.94298],[101.65477,21.95296],[101.63163,21.95562],[101.61662,21.977],[101.61802,21.99126],[101.62011,22.00234],[101.63389,22.01049],[101.6177,22.02401],[101.61113,22.03816],[101.61445,22.0512],[101.60771,22.05581],[101.60439,22.06297],[101.59364,22.06336],[101.59661,22.08349],[101.58817,22.08947],[101.58935,22.09355],[101.5862,22.10234],[101.57948,22.1018],[101.57612,22.11489],[101.57344,22.12798],[101.58903,22.13158],[101.59477,22.12702],[101.59936,22.13142],[101.606,22.13009],[101.59983,22.13556],[101.59366,22.14675],[101.60397,22.15578],[101.60057,22.16047],[101.59784,22.15805],[101.59649,22.16263],[101.59237,22.16316],[101.58689,22.16688],[101.59136,22.17632],[101.58897,22.18258],[101.57752,22.1866],[101.56745,22.20015],[101.57135,22.20819],[101.56523,22.21602],[101.54263,22.2283],[101.54475,22.23646],[101.53894,22.24244],[101.538,22.2487],[101.53913,22.25496],[101.55536,22.26949],[101.56129,22.28083],[101.58755,22.28108],[101.59927,22.27272],[101.60824,22.26944],[101.61606,22.27434],[101.62684,22.28028],[101.62982,22.28707],[101.62732,22.2983],[101.63266,22.31445],[101.63938,22.31567],[101.64789,22.32486],[101.65227,22.33468],[101.65103,22.34007],[101.64704,22.34608],[101.65695,22.36687],[101.67633,22.37313],[101.67957,22.38162],[101.6712,22.40097],[101.66078,22.41969],[101.66923,22.42699],[101.67157,22.4311],[101.66636,22.43838],[101.66321,22.44186],[101.66555,22.44851],[101.67286,22.45035],[101.68611,22.45721],[101.69062,22.46459],[101.68313,22.47165],[101.684,22.47452],[101.68693,22.47803],[101.6956,22.47535],[101.71115,22.47583],[101.72026,22.473],[101.72583,22.47531],[101.73414,22.49728],[101.74259,22.49701],[101.75173,22.49356],[101.75389,22.49517],[101.75193,22.49868],[101.75489,22.50062],[101.77221,22.50333],[101.78334,22.4997],[101.79974,22.48009],[101.81055,22.48337],[101.81416,22.47998],[101.80807,22.47544],[101.81292,22.46365],[101.8212,22.46391],[101.82669,22.45144],[101.82429,22.43917],[101.83279,22.42039],[101.85558,22.40243],[101.866,22.38765],[101.88193,22.38651],[101.8892,22.38784],[101.89284,22.38312],[101.89912,22.38139],[101.90265,22.38347],[101.9044,22.38905],[101.91096,22.39718],[101.9148,22.40455],[101.91212,22.41255],[101.9161,22.4248],[101.90985,22.43125],[101.90741,22.43637],[101.91573,22.43956],[101.92748,22.44084],[101.92755,22.43704],[101.9403,22.43705],[101.94495,22.43959],[101.95071,22.44086],[101.95304,22.44213],[101.9569,22.43685],[101.96673,22.42817],[101.97585,22.43082],[101.98498,22.42902],[101.99911,22.4324],[102.00088,22.43579],[101.99853,22.44044],[102.00145,22.44383],[102.01158,22.44087],[102.01497,22.44727],[102.0211,22.45049],[102.02239,22.45568],[102.04059,22.45505],[102.04643,22.45822],[102.0581,22.44966],[102.07595,22.44506],[102.08728,22.44117],[102.09466,22.44367],[102.10205,22.443],[102.11166,22.43633],[102.12265,22.43602],[102.12574,22.43284],[102.12728,22.42015],[102.1332,22.40714],[102.14462,22.39857],[102.14751,22.40555],[102.15411,22.41285],[102.15534,22.42412],[102.15802,22.42372],[102.16001,22.42904],[102.16918,22.42793],[102.17698,22.43253],[102.18157,22.4315],[102.18821,22.43364],[102.20893,22.42626],[102.21291,22.43061],[102.22444,22.4248],[102.22987,22.42681],[102.2401,22.42565],[102.24899,22.41825],[102.26337,22.41211],[102.26661,22.4192],[102.26986,22.42248],[102.2644,22.43655],[102.25893,22.44231],[102.25689,22.44935],[102.24941,22.45591],[102.25025,22.46078],[102.26359,22.4646],[102.26614,22.47539],[102.2729,22.47952],[102.27168,22.4842],[102.28144,22.50094],[102.28845,22.50372],[102.29402,22.51208],[102.30298,22.53165],[102.32293,22.54773],[102.32256,22.55456],[102.33946,22.55881],[102.35499,22.56495],[102.35554,22.56993],[102.35136,22.57495],[102.34649,22.58188],[102.34828,22.5893],[102.35317,22.58863],[102.35805,22.59177],[102.36328,22.58952],[102.37263,22.5917],[102.38713,22.6072],[102.39196,22.61852],[102.39918,22.6245],[102.40365,22.63111],[102.41087,22.63344],[102.42083,22.63514],[102.41878,22.64096],[102.41124,22.6426],[102.40506,22.63981],[102.4007,22.64756],[102.39909,22.65595],[102.389,22.66513],[102.38393,22.68158],[102.39438,22.69049],[102.4099,22.68434],[102.42075,22.69092],[102.42569,22.6913],[102.43682,22.70182],[102.44588,22.72532],[102.45769,22.73171],[102.45218,22.74221],[102.45388,22.74714],[102.45215,22.75207],[102.46927,22.77116],[102.47878,22.77008],[102.48211,22.77343],[102.4827,22.77995],[102.51078,22.77806],[102.5269,22.76414],[102.53565,22.76002],[102.54371,22.74831],[102.55124,22.74483],[102.54918,22.74024],[102.55569,22.7294],[102.56071,22.72875],[102.56574,22.72304],[102.5696,22.70339],[102.58582,22.70559],[102.58878,22.72189],[102.60056,22.7313],[102.60753,22.73185],[102.62586,22.71492],[102.64464,22.70012],[102.65163,22.69715],[102.65656,22.68912],[102.67156,22.69712],[102.68318,22.69827],[102.69,22.70259],[102.70843,22.69286],[102.71113,22.67975],[102.72449,22.67764],[102.7274,22.6731],[102.73675,22.66512],[102.7452,22.6662],[102.74884,22.67045],[102.7542,22.66646],[102.76505,22.6479],[102.77385,22.64835],[102.7779,22.64509],[102.78813,22.64373],[102.78718,22.63797],[102.78396,22.63667],[102.78853,22.62525],[102.79476,22.62581],[102.80237,22.62256],[102.80929,22.62501],[102.81828,22.62303],[102.82216,22.62604],[102.82605,22.62714],[102.8317,22.62355],[102.84559,22.61995],[102.84796,22.61213],[102.86474,22.61128],[102.86636,22.6023],[102.87025,22.59876],[102.87484,22.59839],[102.884,22.58845],[102.88204,22.57927],[102.87459,22.57516],[102.88509,22.56758],[102.88451,22.563],[102.8798,22.56032],[102.88883,22.55288],[102.89305,22.55242],[102.89895,22.54328],[102.89262,22.54303],[102.89316,22.53643],[102.89767,22.53085],[102.90876,22.52476],[102.91259,22.51775],[102.9123,22.51011],[102.92407,22.50782],[102.9235,22.49493],[102.92594,22.48655],[102.93196,22.48204],[102.93913,22.48456],[102.95248,22.48137],[102.95484,22.4839],[102.95789,22.48388],[102.96513,22.4774],[102.9794,22.47861],[102.98817,22.47791],[102.98857,22.47305],[102.99309,22.47199],[102.99321,22.46417],[103.00959,22.45583],[103.03146,22.44177],[103.03616,22.44586],[103.05328,22.44504],[103.05666,22.45057],[103.06965,22.44643],[103.08059,22.45053],[103.08211,22.45988],[103.08046,22.46361],[103.07951,22.46923],[103.07087,22.47588],[103.07204,22.49039],[103.08057,22.50053],[103.08841,22.51066],[103.10107,22.51603],[103.12079,22.5173],[103.12507,22.52586],[103.13064,22.52871],[103.14102,22.54044],[103.14866,22.54456],[103.15801,22.54107],[103.17064,22.55044],[103.1843,22.56045],[103.17523,22.56696],[103.17028,22.57663],[103.16292,22.58314],[103.15762,22.59472],[103.16248,22.59791],[103.16576,22.61154],[103.17719,22.62978],[103.18531,22.63097],[103.18353,22.64012],[103.18642,22.64438],[103.19679,22.65063],[103.20747,22.64552],[103.2286,22.64867],[103.23196,22.65753],[103.25355,22.67273],[103.26194,22.6713],[103.26545,22.67407],[103.26896,22.67304],[103.28378,22.68313],[103.28276,22.68906],[103.2838,22.70323],[103.28829,22.70653],[103.28832,22.71601],[103.2904,22.71916],[103.28596,22.72928],[103.28752,22.73782],[103.29632,22.74676],[103.30375,22.75824],[103.30901,22.76279],[103.31358,22.77684],[103.32135,22.78151],[103.31734,22.78648],[103.31959,22.79009],[103.31798,22.8014],[103.31911,22.807],[103.32136,22.81189],[103.3273,22.81338],[103.33027,22.81159],[103.33004,22.8088],[103.33461,22.80664],[103.35394,22.80275],[103.3719,22.79886],[103.38482,22.78696],[103.39086,22.78266],[103.40888,22.7778],[103.41316,22.77483],[103.41745,22.76902],[103.41571,22.76468],[103.42163,22.76043],[103.42892,22.76061],[103.4369,22.75478],[103.44007,22.75338],[103.44312,22.74184],[103.44549,22.73854],[103.43964,22.738],[103.42829,22.73366],[103.42966,22.71898],[103.4269,22.7138],[103.4311,22.71029],[103.43256,22.70234],[103.43436,22.70358],[103.44578,22.69405],[103.44629,22.68988],[103.45512,22.68431],[103.46122,22.67747],[103.45708,22.66015],[103.46497,22.65243],[103.46312,22.64909],[103.46735,22.64331],[103.47432,22.64322],[103.47797,22.63734],[103.48299,22.63464],[103.4817,22.62986],[103.48964,22.61923],[103.50047,22.6136],[103.50856,22.61304],[103.50786,22.60411],[103.52295,22.59585],[103.5305,22.59328],[103.54828,22.61313],[103.54672,22.61794],[103.55177,22.62573],[103.55339,22.63542],[103.57087,22.64059],[103.58007,22.66298],[103.57667,22.67125],[103.56846,22.67888],[103.56441,22.69921],[103.58058,22.72046],[103.6098,22.75754],[103.61015,22.76555],[103.62012,22.77418],[103.61789,22.78314],[103.62048,22.78576],[103.63165,22.78974],[103.6369,22.78888],[103.63986,22.79636],[103.64392,22.79472],[103.65072,22.79309],[103.6624,22.78818],[103.66721,22.76864],[103.6806,22.76429],[103.68369,22.75456],[103.69399,22.74546],[103.7036,22.74246],[103.73828,22.71082],[103.73996,22.70821],[103.73751,22.70053],[103.74743,22.69634],[103.75082,22.68803],[103.76678,22.69058],[103.77288,22.6818],[103.77829,22.6781],[103.78155,22.66942],[103.79409,22.662],[103.80598,22.64605],[103.81306,22.64087],[103.82379,22.61784],[103.83984,22.60681],[103.84628,22.59514],[103.86027,22.58791],[103.87688,22.56559],[103.88313,22.56394],[103.88591,22.57072],[103.89143,22.56863],[103.91582,22.54415],[103.9138,22.53418],[103.91932,22.53396],[103.92655,22.54039],[103.93277,22.5263],[103.94518,22.52648],[103.95145,22.51384],[103.96355,22.50438],[103.96568,22.51045],[103.97087,22.51126],[103.97277,22.50596],[103.97922,22.50712],[103.98313,22.51245],[103.98817,22.5148],[103.99116,22.51906],[104.00269,22.5175],[104.01217,22.52101],[104.00963,22.53277],[104.0063,22.53896],[104.00978,22.54301],[104.0153,22.54282],[104.01222,22.54685],[104.01515,22.54981],[104.01146,22.55922],[104.01683,22.56297],[104.01573,22.56865],[104.00729,22.57086],[104.00587,22.57648],[104.00994,22.5783],[104.01366,22.57791],[104.01552,22.59324],[104.01876,22.59399],[104.02587,22.61355],[104.02387,22.62461],[104.03148,22.64012],[104.03051,22.65087],[104.0316,22.65338],[104.02648,22.65713],[104.02136,22.66532],[104.03103,22.6836],[104.02978,22.68847],[104.03465,22.70436],[104.03951,22.72216],[104.04813,22.73399],[104.06102,22.74972],[104.06635,22.74962],[104.07325,22.75511],[104.0822,22.75807],[104.0812,22.76156],[104.0905,22.76695],[104.09739,22.78531],[104.10907,22.79798],[104.12144,22.80748],[104.13002,22.80969],[104.13947,22.80131],[104.1441,22.80178],[104.15569,22.80756],[104.16733,22.81614],[104.17758,22.81777],[104.18841,22.82236],[104.19391,22.81888],[104.22002,22.82711],[104.22587,22.82522],[104.24889,22.83915],[104.258,22.84074],[104.26599,22.84407],[104.27639,22.83822],[104.26682,22.81911],[104.26824,22.81393],[104.25528,22.77762],[104.2588,22.77075],[104.2582,22.76641],[104.26989,22.75443],[104.26879,22.74155],[104.27452,22.74008],[104.27956,22.74177],[104.30143,22.72921],[104.30878,22.72876],[104.31452,22.7317],[104.32026,22.73085],[104.33826,22.72217],[104.3407,22.71825],[104.34176,22.71117],[104.34867,22.70726],[104.35351,22.69322],[104.36523,22.6924],[104.3742,22.68969],[104.3897,22.69838],[104.3997,22.70137],[104.40938,22.72579],[104.4156,22.72882],[104.42214,22.7373],[104.45974,22.75262],[104.46507,22.75148],[104.47715,22.75786],[104.49408,22.77275],[104.49574,22.77584],[104.50083,22.77576],[104.50723,22.78448],[104.51712,22.78765],[104.52652,22.80285],[104.52967,22.81282],[104.53777,22.81781],[104.54312,22.82532],[104.5659,22.83324],[104.57014,22.84779],[104.57879,22.85444],[104.57803,22.85895],[104.58688,22.85966],[104.58771,22.85416],[104.59952,22.84487],[104.59907,22.83927],[104.60343,22.83241],[104.60401,22.82776],[104.59847,22.82417],[104.59842,22.81615],[104.6071,22.81969],[104.61442,22.81626],[104.61807,22.82523],[104.62124,22.82229],[104.62484,22.83222],[104.65744,22.83626],[104.66395,22.82733],[104.6684,22.826],[104.67659,22.81685],[104.69027,22.82796],[104.72183,22.82244],[104.73485,22.81818],[104.73397,22.83171],[104.73857,22.84018],[104.73563,22.84959],[104.73817,22.85395],[104.75729,22.8606],[104.76542,22.87391],[104.76605,22.88531],[104.77014,22.88879],[104.77184,22.89591],[104.77613,22.90042],[104.78178,22.9005],[104.78306,22.90418],[104.79051,22.90564],[104.79441,22.90645],[104.79693,22.91169],[104.80118,22.91124],[104.80576,22.91553],[104.8102,22.91894],[104.81875,22.9236],[104.8358,22.92521],[104.85114,22.9363],[104.86305,22.94992],[104.85952,22.96205],[104.85384,22.96572],[104.84746,22.96559],[104.84295,22.97039],[104.84689,22.97948],[104.8431,22.99513],[104.83757,22.99483],[104.8375,22.99928],[104.82705,23.01198],[104.83096,23.02416],[104.82801,23.03634],[104.83034,23.04806],[104.82401,23.07024],[104.81262,23.08287],[104.8129,23.11886],[104.82008,23.12139],[104.83191,23.11823],[104.85061,23.11633],[104.85504,23.11791],[104.85879,23.12643],[104.86294,23.12632],[104.86228,23.12279],[104.87259,23.12115],[104.87816,23.14366],[104.87625,23.15078],[104.87791,23.16502],[104.8964,23.18021],[104.90803,23.18719],[104.91881,23.18609],[104.94725,23.17062],[104.95097,23.1722],[104.95901,23.18814],[104.95514,23.19958],[104.95623,23.20528],[104.95869,23.20782],[104.96699,23.20406],[104.97666,23.19398],[104.99612,23.19999],[105.00173,23.2153],[105.00483,23.21879],[105.01755,23.21912],[105.02925,23.22295],[105.03484,23.23235],[105.04386,23.2367],[105.05022,23.24476],[105.05934,23.24936],[105.06183,23.25544],[105.06692,23.25681],[105.07201,23.26195],[105.0819,23.25953],[105.08204,23.25548],[105.09413,23.26008],[105.10278,23.26216],[105.10996,23.24907],[105.11931,23.24975],[105.12523,23.2561],[105.13677,23.25864],[105.14425,23.26212],[105.15312,23.26497],[105.16246,23.27384],[105.16653,23.2849],[105.17337,23.28459],[105.1802,23.28176],[105.18361,23.27704],[105.19355,23.27846],[105.19784,23.27633],[105.19757,23.26707],[105.19802,23.26444],[105.20328,23.26559],[105.20648,23.27084],[105.21254,23.27473],[105.21385,23.26658],[105.22045,23.26825],[105.22395,23.27213],[105.23123,23.27159],[105.23315,23.27637],[105.22794,23.28317],[105.22955,23.2855],[105.23391,23.28594],[105.23764,23.28837],[105.24411,23.2889],[105.25264,23.3112],[105.25705,23.31205],[105.25888,23.31964],[105.2487,23.32878],[105.25528,23.34187],[105.26338,23.34305],[105.27353,23.33982],[105.28406,23.34299],[105.28418,23.34835],[105.28772,23.35056],[105.28795,23.35877],[105.29528,23.36161],[105.30054,23.37454],[105.32274,23.39347],[105.33332,23.38068],[105.34732,23.37042],[105.35072,23.36576],[105.35137,23.34345],[105.36885,23.32366],[105.37106,23.3185],[105.38384,23.30993],[105.38955,23.30186],[105.39411,23.29309],[105.40658,23.28307],[105.40989,23.28279],[105.41869,23.29955],[105.42531,23.30215],[105.43291,23.29919],[105.44669,23.27983],[105.45188,23.27846],[105.47069,23.25588],[105.47851,23.25096],[105.48483,23.23904],[105.48634,23.23406],[105.49035,23.23062],[105.49093,23.22277],[105.49529,23.21586],[105.49507,23.20736],[105.49896,23.20453],[105.5267,23.19374],[105.54365,23.1814],[105.55855,23.16906],[105.56227,23.15963],[105.56207,23.14986],[105.56736,23.14073],[105.55764,23.13228],[105.56496,23.12645],[105.5652,23.12046],[105.57162,23.10942],[105.57323,23.1028],[105.56731,23.09275],[105.5671,23.0878],[105.57032,23.07749],[105.5747,23.07328],[105.58467,23.07098],[105.5902,23.07521],[105.59264,23.07977],[105.5985,23.08053],[105.60715,23.07922],[105.61237,23.07537],[105.61607,23.06885],[105.62621,23.07316],[105.63011,23.07961],[105.64501,23.08416],[105.6496,23.07987],[105.65213,23.07557],[105.66399,23.07388],[105.67721,23.06271],[105.70847,23.06374],[105.72616,23.06521],[105.73157,23.05773],[105.72983,23.05396],[105.72878,23.04388],[105.73426,23.0379],[105.73698,23.03508],[105.7472,23.03993],[105.75505,23.03793],[105.75726,23.03504],[105.76428,23.03341],[105.77373,23.02352],[105.78163,23.02017],[105.78747,23.00544],[105.80362,22.99261],[105.81496,22.99318],[105.833,22.97924],[105.83201,22.97086],[105.83515,22.96374],[105.84221,22.96065],[105.85476,22.94998],[105.85289,22.94626],[105.85809,22.94027],[105.85986,22.93555],[105.86609,22.93778],[105.87263,22.93131],[105.87135,22.92795],[105.87002,22.92406],[105.87588,22.91927],[105.88174,22.91891],[105.88914,22.93559],[105.92336,22.94945],[105.92486,22.94233],[105.93453,22.93687],[105.94658,22.93731],[105.95519,22.939],[105.9575,22.95006],[105.98177,22.945],[105.98945,22.93899],[105.99497,22.94238],[105.99775,22.94009],[105.99982,22.95001],[106.00327,22.95803],[106.00791,22.96599],[106.00509,22.97219],[106.00157,22.97332],[105.99729,22.97149],[105.99583,22.97531],[106.00163,22.98007],[106.00262,22.99051],[106.02329,22.99067],[106.03709,22.99271],[106.04163,22.98908],[106.05008,22.99263],[106.06185,22.98998],[106.07844,22.99808],[106.08733,22.99581],[106.09486,22.98931],[106.10876,22.98969],[106.1224,22.97992],[106.12545,22.98358],[106.12209,22.98623],[106.12285,22.99014],[106.12773,22.99279],[106.13055,22.99924],[106.13979,22.99381],[106.14509,22.99458],[106.16199,22.98785],[106.16516,22.98365],[106.18375,22.98462],[106.20371,22.98244],[106.21128,22.97059],[106.21575,22.97099],[106.21832,22.9636],[106.22408,22.96528],[106.22365,22.95748],[106.23293,22.95511],[106.23586,22.95773],[106.23629,22.94797],[106.24131,22.94182],[106.24382,22.94634],[106.24908,22.92493],[106.25769,22.91989],[106.26276,22.91421],[106.2644,22.90726],[106.26161,22.90489],[106.26088,22.89619],[106.25157,22.89446],[106.26408,22.88125],[106.25592,22.8794],[106.28617,22.86708],[106.29031,22.86946],[106.28998,22.87382],[106.29908,22.87378],[106.30809,22.86396],[106.31093,22.86362],[106.32026,22.87069],[106.32346,22.87309],[106.32802,22.87296],[106.3358,22.86498],[106.34563,22.85701],[106.36234,22.86359],[106.36342,22.86697],[106.36176,22.87035],[106.36491,22.87374],[106.36325,22.87902],[106.37574,22.88366],[106.38239,22.87977],[106.39127,22.88385],[106.39533,22.88035],[106.40278,22.88093],[106.40605,22.87357],[106.41535,22.87466],[106.41608,22.87937],[106.40863,22.88499],[106.42325,22.89624],[106.42913,22.88584],[106.43397,22.88839],[106.44292,22.89094],[106.44671,22.90202],[106.45478,22.90281],[106.46156,22.89499],[106.46496,22.90025],[106.47215,22.90035],[106.4712,22.9048],[106.47518,22.90766],[106.47917,22.90735],[106.48234,22.90264],[106.4965,22.90424],[106.50132,22.90836],[106.49824,22.91865],[106.50197,22.92215],[106.50021,22.92881],[106.50397,22.92913],[106.50292,22.93578],[106.51045,22.93959],[106.51111,22.94845],[106.52755,22.94484],[106.53781,22.94438],[106.54086,22.94203],[106.54204,22.93263],[106.54606,22.92667],[106.56588,22.91755],[106.57332,22.92375],[106.58076,22.92426],[106.58603,22.93004],[106.59129,22.93267],[106.59621,22.9277],[106.60211,22.92775],[106.60732,22.92084],[106.6095,22.90953],[106.61986,22.89628],[106.63159,22.89125],[106.62428,22.88064],[106.63212,22.87733],[106.64339,22.87403],[106.65289,22.86363],[106.66514,22.87537],[106.66886,22.87364],[106.67072,22.87816],[106.66604,22.88324],[106.6689,22.89212],[106.67549,22.89055],[106.68413,22.88202],[106.6876,22.88614],[106.69379,22.88756],[106.69655,22.8833],[106.70139,22.88362],[106.70244,22.88757],[106.70639,22.88892],[106.71047,22.88166],[106.71867,22.87441],[106.70897,22.8637],[106.74337,22.84232],[106.74272,22.83828],[106.75167,22.83626],[106.75443,22.83234],[106.7683,22.82629],[106.76416,22.81228],[106.76501,22.80942],[106.77341,22.81794],[106.78071,22.81524],[106.79487,22.81571],[106.80469,22.82132],[106.81864,22.81997],[106.82523,22.81276],[106.83457,22.80808],[106.83677,22.80252],[106.83277,22.80113],[106.8274,22.78961],[106.82283,22.78809],[106.82384,22.77972],[106.81866,22.77325],[106.81383,22.76963],[106.80625,22.76917],[106.79722,22.77051],[106.78449,22.7515],[106.77141,22.73375],[106.76981,22.73066],[106.7744,22.7206],[106.76846,22.71569],[106.78214,22.71007],[106.78552,22.70381],[106.77022,22.69831],[106.75972,22.68963],[106.76632,22.68261],[106.76241,22.67561],[106.75781,22.67178],[106.74216,22.66976],[106.73682,22.66221],[106.73895,22.65717],[106.73284,22.6458],[106.72627,22.64465],[106.72137,22.63728],[106.7289,22.63282],[106.72338,22.61949],[106.7144,22.61311],[106.71713,22.61024],[106.7274,22.60293],[106.72735,22.58641],[106.70809,22.57865],[106.69844,22.58356],[106.68073,22.5712],[106.66655,22.5769],[106.65225,22.57468],[106.63546,22.58998],[106.6269,22.60464],[106.6098,22.60289],[106.60296,22.58804],[106.60691,22.58559],[106.6095,22.57934],[106.59887,22.57572],[106.60386,22.56148],[106.59846,22.55657],[106.59924,22.5504],[106.59,22.5495],[106.58937,22.53105],[106.58118,22.51703],[106.58129,22.50486],[106.58415,22.47556],[106.58109,22.47312],[106.57734,22.46814],[106.57259,22.47149],[106.55897,22.46235],[106.55728,22.45602],[106.55902,22.44397],[106.56526,22.43639],[106.56563,22.42466],[106.55895,22.42197],[106.56531,22.40976],[106.56603,22.39613],[106.57608,22.38233],[106.58338,22.37614],[106.57965,22.37099],[106.57195,22.37031],[106.57317,22.36265],[106.55953,22.34917],[106.5686,22.3427],[106.57704,22.34617],[106.58205,22.34011],[106.58919,22.34279],[106.60252,22.33849],[106.61446,22.33959],[106.62023,22.3337],[106.63784,22.34044],[106.65008,22.33809],[106.65958,22.33383],[106.66002,22.32596],[106.66321,22.32126],[106.66637,22.32152],[106.66541,22.31067],[106.67008,22.29857],[106.66658,22.28998],[106.66689,22.28537],[106.6728,22.28533],[106.67871,22.28973],[106.6812,22.29049],[106.69054,22.27853],[106.68894,22.27109],[106.68393,22.26722],[106.68991,22.25764],[106.695,22.23274],[106.70215,22.23072],[106.7045,22.22044],[106.69953,22.218],[106.69869,22.2073],[106.68945,22.20179],[106.67852,22.20411],[106.68215,22.20035],[106.67205,22.18196],[106.67747,22.17627],[106.67877,22.16993],[106.68934,22.16265],[106.70355,22.16155],[106.70747,22.15536],[106.69862,22.15515],[106.69526,22.14285],[106.68813,22.13755],[106.69336,22.13289],[106.69249,22.11974],[106.69617,22.11381],[106.69608,22.10724],[106.7072,22.1013],[106.71215,22.09537],[106.71127,22.08926],[106.70626,22.08505],[106.70847,22.08181],[106.70656,22.06711],[106.69655,22.05361],[106.70092,22.04864],[106.69841,22.04113],[106.70508,22.0382],[106.70831,22.02495],[106.69774,22.01388],[106.68374,22.00343],[106.68484,21.98503],[106.6928,21.96409],[106.70081,21.96941],[106.70607,21.96901],[106.70687,21.97624],[106.71928,21.97413],[106.73184,21.99488],[106.72628,21.99968],[106.7283,22.00718],[106.74545,22.01379],[106.74716,22.00939],[106.75093,22.00818],[106.75454,22.01219],[106.76707,22.01302],[106.77333,22.00563],[106.78371,22.00461],[106.78792,21.98991],[106.79052,21.98894],[106.79586,21.99306],[106.79811,21.98763],[106.79747,21.98564],[106.80027,21.97982],[106.80578,21.98058],[106.80718,21.97496],[106.81204,21.97329],[106.83239,21.97421],[106.83215,21.98246],[106.8382,21.98308],[106.8454,21.97839],[106.84916,21.98133],[106.86494,21.98173],[106.87797,21.98021],[106.90437,21.97145],[106.91449,21.97567],[106.91911,21.97224],[106.92367,21.96203],[106.92205,21.95244],[106.92833,21.94127],[106.93049,21.92978],[106.95285,21.93348],[106.95364,21.92445],[106.96198,21.91925],[106.97924,21.92646],[106.98768,21.94117],[106.99337,21.95332],[107.00466,21.94601],[107.02351,21.94506],[107.02847,21.93695],[107.0348,21.93775],[107.04003,21.93194],[107.04937,21.92932],[107.05116,21.92319],[107.05982,21.91961],[107.05786,21.91088],[107.06345,21.89323],[107.05214,21.88256],[107.04013,21.87825],[107.03122,21.86758],[107.01613,21.862],[107.01358,21.85314],[107.02064,21.84236],[107.02515,21.82336],[107.03941,21.81495],[107.06096,21.8093],[107.08182,21.80908],[107.09849,21.79525],[107.11721,21.79416],[107.12567,21.77775],[107.13402,21.77369],[107.13962,21.76325],[107.15975,21.75704],[107.16477,21.74892],[107.17152,21.75283],[107.17621,21.74781],[107.18559,21.74669],[107.1936,21.73346],[107.19817,21.73172],[107.19654,21.72089],[107.22042,21.70754],[107.24841,21.70407],[107.25012,21.71618],[107.26436,21.72766],[107.28109,21.7334],[107.28751,21.73181],[107.28843,21.73659],[107.30058,21.74297],[107.30538,21.73881],[107.30744,21.7294],[107.31361,21.72892],[107.31413,21.72446],[107.32219,21.72509],[107.31824,21.7152],[107.33446,21.6975],[107.33594,21.68925],[107.34492,21.6848],[107.34841,21.68035],[107.34474,21.67625],[107.35961,21.66576],[107.36268,21.63959],[107.36225,21.6348],[107.35426,21.63001],[107.35473,21.62203],[107.35932,21.6198],[107.36007,21.61118],[107.3567,21.60575],[107.36369,21.59841],[107.36949,21.6008],[107.38285,21.59616],[107.39273,21.60593],[107.39781,21.60931],[107.3943,21.6162],[107.408,21.62252],[107.4073,21.62568],[107.41759,21.63269],[107.41449,21.63874],[107.43217,21.64943],[107.45234,21.6586],[107.46702,21.66395],[107.47803,21.66257],[107.49658,21.63348],[107.49281,21.6234],[107.49745,21.61709],[107.49496,21.60563],[107.48183,21.59577],[107.48995,21.59686],[107.49806,21.59539],[107.50446,21.59679],[107.51933,21.59303],[107.52511,21.59001],[107.53281,21.59201],[107.53775,21.59465],[107.54382,21.5899],[107.55799,21.6125],[107.56941,21.61243],[107.57268,21.61763],[107.58118,21.61864],[107.58556,21.61007],[107.61123,21.60445],[107.62316,21.60713],[107.67243,21.60611],[107.69597,21.61548],[107.71404,21.62021],[107.72181,21.62878],[107.73136,21.62939],[107.74228,21.63894],[107.75183,21.64242],[107.75795,21.64208],[107.78114,21.64921],[107.78209,21.65597],[107.79778,21.65558],[107.81827,21.65711],[107.82228,21.65322],[107.82772,21.65319],[107.83525,21.64264],[107.84416,21.64183],[107.84553,21.64845],[107.85308,21.65016],[107.85445,21.65379],[107.85876,21.65398],[107.86091,21.64833],[107.86787,21.64906],[107.87054,21.64708],[107.87252,21.64191],[107.87934,21.64028],[107.87793,21.63163],[107.88873,21.62619],[107.88579,21.61883],[107.88903,21.61818],[107.89237,21.61498],[107.88266,21.61114],[107.88511,21.60633],[107.89182,21.60712],[107.89312,21.60209],[107.88965,21.59989],[107.89359,21.59711],[107.89753,21.5956],[107.89941,21.59298],[107.89863,21.58927],[107.90047,21.58662],[107.90328,21.58689],[107.90455,21.59131],[107.91648,21.58617],[107.92378,21.59029],[107.92743,21.58852],[107.92627,21.58292],[107.93057,21.57775],[107.94311,21.57002],[107.94261,21.56591],[107.9518,21.5399],[107.95619,21.53625],[107.96347,21.53756],[107.96711,21.5355],[107.97178,21.54079],[107.97425,21.53955],[107.97721,21.54005],[107.97748,21.54349],[107.97913,21.54469],[107.98648,21.54365],[107.99315,21.54612],[108.02479,21.54625],[108.03905,21.54502],[108.05022,21.53826],[108.05597,21.52993],[108.33333,21.29166],[108.33333,18],[112.19409,14.97469],[108.53354,6.87119],[102.13866,6.2691],[102.09119,6.23429],[102.0805,6.22507],[102.07927,6.17131],[102.08484,6.16082],[102.09315,6.14486],[102.07803,6.12609],[102.06154,6.10185],[102.05328,6.08069],[102.03158,6.06636],[102.02091,6.05339],[102.00425,6.05237],[102.00278,6.04025],[101.98896,6.04042],[101.97916,6.02779],[101.97349,6.0097],[101.94205,5.98017],[101.94494,5.95337],[101.93013,5.94621],[101.93192,5.92581],[101.92527,5.92312],[101.92135,5.91087],[101.9318,5.90832],[101.94156,5.89074],[101.94171,5.86907],[101.93123,5.86079],[101.92898,5.85251],[101.91488,5.84142],[101.89666,5.84399],[101.89115,5.83724],[101.88701,5.84005],[101.87597,5.8197],[101.88,5.81044],[101.87236,5.80391],[101.86334,5.80148],[101.86812,5.7921],[101.85266,5.79219],[101.8372,5.78818],[101.82275,5.76104],[101.82376,5.73287],[101.81624,5.73305],[101.81128,5.74082],[101.79259,5.75406],[101.77305,5.77098],[101.77823,5.78243],[101.75502,5.79816],[101.73689,5.78144],[101.72996,5.78272],[101.72439,5.77991],[101.71739,5.78794],[101.71711,5.76575],[101.70846,5.7602],[101.70393,5.75192],[101.69349,5.75312],[101.68717,5.76235],[101.68909,5.77978],[101.67783,5.77911],[101.66725,5.79825],[101.6654,5.81123],[101.65942,5.81056],[101.65846,5.83687],[101.66279,5.84593],[101.6575,5.85635],[101.66271,5.86422],[101.65557,5.87619],[101.63899,5.86856],[101.62515,5.87527],[101.62298,5.89428],[101.61572,5.90037],[101.61533,5.91056],[101.60904,5.91488],[101.59726,5.91238],[101.59034,5.91932],[101.58892,5.929],[101.58195,5.93332],[101.57257,5.92484],[101.55908,5.91772],[101.54627,5.92153],[101.52522,5.90759],[101.525,5.89959],[101.51516,5.90389],[101.50235,5.89062],[101.49595,5.88092],[101.48543,5.87941],[101.48498,5.8682],[101.475,5.86719],[101.46364,5.87301],[101.45329,5.86415],[101.4367,5.86831],[101.42081,5.87382],[101.39392,5.87251],[101.38616,5.85076],[101.37153,5.83175],[101.35821,5.83061],[101.349,5.82537],[101.34639,5.81147],[101.33793,5.80826],[101.32397,5.81324],[101.31391,5.8027],[101.3051,5.81281],[101.2908,5.81608],[101.26769,5.80759],[101.26017,5.787],[101.26053,5.7767],[101.25677,5.7746],[101.24997,5.76074],[101.25759,5.75097],[101.25591,5.74267],[101.26133,5.73479],[101.2585,5.72691],[101.26247,5.71798],[101.251,5.70848],[101.25144,5.69963],[101.24549,5.69794],[101.2464,5.69215],[101.23445,5.68683],[101.21742,5.68575],[101.2216,5.67701],[101.21546,5.66307],[101.20483,5.6602],[101.19832,5.64982],[101.17642,5.64859],[101.16962,5.64395],[101.16625,5.63214],[101.15327,5.62306],[101.14578,5.62149],[101.14479,5.61319],[101.13555,5.61309],[101.12283,5.66182],[101.11279,5.67844],[101.09862,5.6896],[101.09913,5.70234],[101.05963,5.74218],[101.03798,5.73693],[100.98436,5.80612],[100.99807,5.81556],[101.01179,5.83456],[101.00697,5.85089],[101.0104,5.87132],[101.02962,5.90063],[101.02686,5.91218],[101.03956,5.91502],[101.055,5.9083],[101.06253,5.91945],[101.07694,5.91694],[101.08447,5.90623],[101.087,5.92606],[101.09913,5.93906],[101.09594,5.95004],[101.11266,5.96034],[101.12526,5.97883],[101.11005,5.9898],[101.10858,6.0281],[101.11672,6.03498],[101.10288,6.05142],[101.11339,6.07014],[101.1184,6.09023],[101.12616,6.09256],[101.1298,6.10582],[101.11857,6.11159],[101.10734,6.11327],[101.10504,6.12177],[101.08901,6.13165],[101.05784,6.14109],[101.07676,6.16117],[101.07645,6.17033],[101.08781,6.17608],[101.09917,6.17773],[101.1171,6.18171],[101.12403,6.19252],[101.10502,6.23886],[101.11165,6.25008],[101.09906,6.26131],[101.0614,6.25581],[101.02787,6.24348],[101.01572,6.2475],[100.98526,6.27532],[100.96853,6.28404],[100.96643,6.27173],[100.94786,6.26216],[100.94231,6.23891],[100.91472,6.24839],[100.90112,6.23165],[100.89165,6.2463],[100.87133,6.26333],[100.87024,6.24076],[100.85404,6.22912],[100.834,6.2932],[100.84829,6.31223],[100.82607,6.35576],[100.81917,6.36757],[100.82326,6.37939],[100.82457,6.40575],[100.81345,6.44209],[100.79204,6.44841],[100.7775,6.46155],[100.77108,6.45703],[100.75505,6.45525],[100.74497,6.47078],[100.73832,6.48904],[100.7453,6.49817],[100.73854,6.51139],[100.73187,6.50406],[100.73069,6.49673],[100.72421,6.49435],[100.71925,6.48634],[100.71018,6.48105],[100.70988,6.47185],[100.70054,6.46989],[100.69531,6.4652],[100.68624,6.46538],[100.68319,6.45345],[100.66092,6.44902],[100.65238,6.44187],[100.64123,6.44819],[100.64518,6.45724],[100.62029,6.45673],[100.61188,6.46578],[100.59592,6.4762],[100.57584,6.47979],[100.56314,6.49379],[100.54701,6.48631],[100.51714,6.48837],[100.49552,6.50613],[100.49587,6.51979],[100.48471,6.52475],[100.47218,6.52015],[100.45811,6.53143],[100.44867,6.52683],[100.43511,6.5236],[100.4231,6.51714],[100.40886,6.52892],[100.39324,6.5366],[100.37419,6.54429],[100.36749,6.53833],[100.35968,6.5495],[100.35874,6.55659],[100.35162,6.56981],[100.3445,6.57757],[100.33531,6.58534],[100.32476,6.58492],[100.31489,6.60087],[100.30227,6.60863],[100.32442,6.61902],[100.31901,6.63888],[100.32111,6.65563],[100.32734,6.66284],[100.30648,6.6694],[100.30292,6.6795],[100.29112,6.68141],[100.29335,6.7109],[100.26399,6.70152],[100.25687,6.70978],[100.24013,6.69213],[100.21971,6.69844],[100.21499,6.71727],[100.2034,6.7252],[100.19001,6.71802],[100.17113,6.69311],[100.17817,6.68066],[100.17971,6.66821],[100.17989,6.65507],[100.16907,6.64739],[100.16804,6.61395],[100.1792,6.60064],[100.17929,6.59058],[100.18349,6.57369],[100.17457,6.56684],[100.1581,6.5777],[100.1605,6.5596],[100.15329,6.55923],[100.1569,6.53858],[100.15639,6.52202],[100.16137,6.50205],[100.15948,6.48345],[100.15399,6.47756],[100.15261,6.47167],[100.143,6.46398],[100.1485,6.45133],[100.13579,6.44501],[100.13408,6.43049],[100.11966,6.42331],[99.86587,6.52268],[99.58333,6.45833],[90,6.45833],[90,20],[92.37132,20.7013],[92.37498,20.72474],[92.35827,20.76408],[92.33881,20.82396],[92.30905,20.88501],[92.29165,20.91527],[92.27287,20.94424],[92.27088,20.95565],[92.27233,20.97924],[92.26835,21.00077],[92.25353,21.0214],[92.25264,21.03572],[92.25656,21.0494],[92.26161,21.05432],[92.26459,21.05988],[92.2589,21.07741],[92.23338,21.09529],[92.22468,21.11733],[92.21769,21.12205],[92.2075,21.11752],[92.20006,21.12324],[92.19753,21.13853],[92.20324,21.14997],[92.19932,21.16052],[92.1917,21.16292],[92.18136,21.15771],[92.17515,21.15827],[92.17236,21.16907],[92.17337,21.17479],[92.17233,21.18051],[92.17557,21.18367],[92.18087,21.18619],[92.18275,21.19209],[92.18669,21.19671],[92.19423,21.20019],[92.19968,21.20064],[92.21062,21.22476],[92.21711,21.22745],[92.21947,21.23333],[92.21175,21.24791],[92.21348,21.25147],[92.22106,21.25603],[92.21662,21.26762],[92.21784,21.27886],[92.20944,21.28562],[92.21083,21.28824],[92.20294,21.29946],[92.1978,21.31069],[92.20124,21.31808],[92.1985,21.32738],[92.21362,21.33989],[92.21602,21.34493],[92.22409,21.35001],[92.23079,21.34806],[92.23319,21.35182],[92.25276,21.35879],[92.25898,21.36436],[92.25469,21.36703],[92.25316,21.37226],[92.25771,21.37744],[92.25402,21.38708],[92.26785,21.39993],[92.26383,21.40818],[92.26394,21.41322],[92.26937,21.41492],[92.2697,21.41918],[92.26918,21.4277],[92.27441,21.43292],[92.28012,21.42945],[92.28686,21.42827],[92.29292,21.42964],[92.29418,21.42398],[92.29749,21.42024],[92.30137,21.42402],[92.31073,21.41758],[92.31504,21.42067],[92.32435,21.41917],[92.32649,21.43089],[92.33832,21.43643],[92.33618,21.44785],[92.34061,21.45421],[92.34366,21.46823],[92.35724,21.46935],[92.36464,21.47367],[92.36792,21.47927],[92.37344,21.4761],[92.38241,21.47931],[92.39861,21.4624],[92.41208,21.44167],[92.41648,21.44179],[92.4254,21.43415],[92.43157,21.40508],[92.42744,21.39647],[92.42743,21.38148],[92.43085,21.37224],[92.43697,21.37174],[92.43897,21.36515],[92.45783,21.3689],[92.46211,21.36533],[92.46982,21.36305],[92.47182,21.35518],[92.48484,21.35765],[92.48724,21.36082],[92.49718,21.36208],[92.50266,21.35628],[92.50706,21.3573],[92.51145,21.36792],[92.50712,21.37595],[92.51447,21.37758],[92.5163,21.38838],[92.53119,21.38831],[92.53555,21.37793],[92.54013,21.37642],[92.54952,21.37875],[92.55181,21.38215],[92.55685,21.38491],[92.56223,21.37776],[92.56349,21.36997],[92.56651,21.3451],[92.57296,21.33365],[92.57145,21.32931],[92.57197,21.32311],[92.57593,21.31818],[92.58658,21.28658],[92.58419,21.28185],[92.59124,21.26381],[92.59623,21.24513],[92.61358,21.24744],[92.62406,21.25167],[92.62116,21.25942],[92.62932,21.26457],[92.63066,21.26779],[92.65364,21.27835],[92.66822,21.28236],[92.68006,21.28636],[92.6796,21.29685],[92.66427,21.31969],[92.65626,21.34998],[92.65151,21.35915],[92.64882,21.37791],[92.65093,21.38644],[92.64893,21.38986],[92.64446,21.39969],[92.63998,21.41462],[92.64064,21.42852],[92.63783,21.43714],[92.63457,21.43873],[92.62992,21.44864],[92.63231,21.45247],[92.62404,21.47547],[92.62742,21.48697],[92.62016,21.51619],[92.62113,21.52881],[92.61484,21.56873],[92.6082,21.59141],[92.61049,21.62048],[92.60343,21.65299],[92.6047,21.6718],[92.60872,21.68487],[92.60176,21.70304],[92.6048,21.72137],[92.6099,21.73142],[92.60534,21.73651],[92.61107,21.78179],[92.60813,21.79965],[92.60999,21.81879],[92.62078,21.82359],[92.6145,21.84224],[92.61396,21.85201],[92.62097,21.86177],[92.63106,21.86167],[92.63084,21.86923],[92.63384,21.87413],[92.61992,21.92218],[92.61342,21.92337],[92.61378,21.92711],[92.61313,21.93205],[92.61664,21.93937],[92.61541,21.94318],[92.60953,21.94381],[92.6115,21.95779],[92.60307,21.98259],[92.61348,21.9873],[92.6232,21.99456],[92.63293,22.00404],[92.64471,22.01862],[92.6522,22.02254],[92.66587,22.02073],[92.67105,22.02058],[92.68017,22.02783],[92.68516,22.03953],[92.68317,22.07233],[92.67878,22.08603],[92.67851,22.09974],[92.68346,22.10139],[92.69588,22.09457],[92.70004,22.09562],[92.7004,22.09965],[92.69646,22.14904],[92.70067,22.15593],[92.71102,22.16033],[92.72477,22.15808],[92.73372,22.14692],[92.75733,22.13098],[92.78802,22.11634],[92.80954,22.10074],[92.81962,22.08818],[92.8242,22.07879],[92.8398,22.06486],[92.85722,22.05885],[92.86833,22.04502],[92.88081,22.02674],[92.88535,22.01405],[92.89126,21.96315],[92.89546,21.9546],[92.90034,21.95432],[92.90684,21.96006],[92.91421,21.96961],[92.92168,21.99189],[92.92914,22.01991],[92.93857,22.02612],[92.94947,22.0289],[92.95967,22.02469],[92.97357,22.00225],[92.98429,21.99103],[92.99158,21.99127],[93.00038,21.99554],[93.00713,22.00427],[93.00219,22.02287],[92.99246,22.04656],[92.9889,22.05529],[92.99161,22.06781],[93.00669,22.09115],[93.01074,22.10792],[93.0168,22.1157],[93.02415,22.11749],[93.03435,22.11774],[93.03974,22.11609],[93.04778,22.11724],[93.05238,22.11966],[93.04784,22.13618],[93.04241,22.14619],[93.04038,22.16169],[93.04486,22.17326],[93.04866,22.17783],[93.04886,22.18872],[93.04426,22.20215],[93.05075,22.20852],[93.06479,22.21172],[93.07845,22.21176],[93.08906,22.20797],[93.1031,22.20671],[93.11165,22.20324],[93.12348,22.18815],[93.13124,22.18549],[93.14106,22.18346],[93.14951,22.18589],[93.1662,22.19213],[93.16172,22.20548],[93.15655,22.21565],[93.14623,22.22487],[93.14141,22.23154],[93.14362,22.23743],[93.14747,22.24037],[93.15407,22.2414],[93.17413,22.24172],[93.19138,22.24792],[93.19691,22.25515],[93.19901,22.26365],[93.19863,22.27894],[93.19756,22.29106],[93.19718,22.31843],[93.19012,22.38197],[93.18282,22.41089],[93.18294,22.42566],[93.18101,22.44044],[93.16563,22.4531],[93.1418,22.4626],[93.13514,22.47528],[93.13768,22.4914],[93.13569,22.4988],[93.1241,22.51635],[93.11739,22.53433],[93.11926,22.55548],[93.13427,22.58254],[93.13662,22.59321],[93.13555,22.60199],[93.12952,22.61998],[93.11731,22.63416],[93.10389,22.64858],[93.0977,22.66106],[93.09632,22.66983],[93.09907,22.67739],[93.09769,22.68874],[93.09494,22.69894],[93.0915,22.71547],[93.09733,22.7282],[93.09973,22.73903],[93.10109,22.77761],[93.09901,22.79148],[93.105,22.81106],[93.11168,22.83001],[93.11595,22.86478],[93.11954,22.87613],[93.1397,22.89138],[93.14405,22.90009],[93.14291,22.91323],[93.14852,22.91458],[93.15413,22.91277],[93.16158,22.91927],[93.14711,22.93986],[93.13848,22.95791],[93.13495,22.99276],[93.12686,23.00825],[93.12536,23.01465],[93.1266,23.02547],[93.13779,23.0483],[93.14648,23.05435],[93.15735,23.05168],[93.16478,23.05218],[93.18052,23.05889],[93.19491,23.05941],[93.20724,23.0574],[93.21302,23.0499],[93.2238,23.02245],[93.22978,23.01333],[93.24005,23.00784],[93.25101,23.00678],[93.26986,23.00319],[93.2841,23.00582],[93.29352,23.00908],[93.30783,23.01809],[93.31729,23.02858],[93.32443,23.04394],[93.33281,23.05699],[93.34626,23.06667],[93.35011,23.07256],[93.35004,23.09139],[93.3579,23.11217],[93.36938,23.12572],[93.38474,23.13471],[93.38737,23.13948],[93.38452,23.14489],[93.37479,23.1506],[93.37165,23.15473],[93.37125,23.16201],[93.37702,23.19347],[93.38965,23.2243],[93.38624,23.24855],[93.37115,23.27582],[93.37132,23.28958],[93.36875,23.30459],[93.37339,23.32087],[93.37322,23.32895],[93.36607,23.34973],[93.36746,23.35449],[93.37091,23.35736],[93.37988,23.35995],[93.38816,23.36096],[93.39369,23.36575],[93.40414,23.37673],[93.40418,23.3894],[93.40285,23.39387],[93.39881,23.43434],[93.39992,23.45495],[93.40562,23.4725],[93.40308,23.48375],[93.40411,23.50074],[93.41474,23.53977],[93.41577,23.54984],[93.41405,23.56746],[93.42091,23.58351],[93.42434,23.59704],[93.42605,23.60822],[93.42416,23.62607],[93.42012,23.64066],[93.41947,23.65267],[93.42158,23.66091],[93.43221,23.67492],[93.43323,23.67887],[93.42944,23.69157],[93.41672,23.7005],[93.4105,23.70703],[93.40631,23.71759],[93.3993,23.74436],[93.39901,23.7822],[93.39569,23.80948],[93.38492,23.83956],[93.38194,23.88539],[93.3872,23.90987],[93.38573,23.91816],[93.38357,23.92332],[93.37651,23.92924],[93.36857,23.93292],[93.36298,23.93337],[93.3583,23.93689],[93.35499,23.94543],[93.34151,23.97067],[93.33205,23.97534],[93.3274,23.98252],[93.32927,24.00852],[93.32771,24.03515],[93.32993,24.03983],[93.33283,24.06834],[93.33556,24.07579],[93.35031,24.08766],[93.36352,24.09109],[93.3794,24.0903],[93.39386,24.08551],[93.40352,24.07885],[93.41171,24.06615],[93.41918,24.04453],[93.43867,24.02165],[93.44944,24.01271],[93.46296,24.00315],[93.46786,23.98544],[93.46795,23.97651],[93.47606,23.96671],[93.49131,23.96285],[93.50861,23.9615],[93.52935,23.96359],[93.54521,23.97092],[93.55555,23.98211],[93.56245,23.98514],[93.56672,23.98647],[93.57649,23.97901],[93.58092,23.97099],[93.59222,23.97081],[93.60283,23.97566],[93.61204,23.99883],[93.62193,24.01636],[93.63356,24.01593],[93.65481,24.01174],[93.66197,24.01194],[93.68768,24.01527],[93.70189,24.01108],[93.71815,24.00438],[93.74225,24.00558],[93.75879,24.00677],[93.76579,24.00289],[93.77669,23.99231],[93.78472,23.97636],[93.78691,23.9673],[93.79266,23.95735],[93.8024,23.94641],[93.81764,23.9361],[93.82824,23.93552],[93.84227,23.93807],[93.86553,23.9438],[93.89227,23.95232],[93.92175,23.95706],[93.93609,23.95213],[93.97282,23.93175],[93.99857,23.92611],[94.03256,23.9211],[94.04647,23.90997],[94.04999,23.90032],[94.05999,23.89518],[94.07754,23.89381],[94.09797,23.88581],[94.10956,23.86769],[94.1102,23.86208],[94.11963,23.85188],[94.12906,23.84357],[94.13609,23.84374],[94.1451,23.84822],[94.15303,23.85862],[94.16131,23.88095],[94.16127,23.90278],[94.16053,23.92398],[94.16151,23.93451],[94.16524,23.94442],[94.17373,23.94917],[94.1869,23.95563],[94.20619,23.9849],[94.21633,23.9999],[94.22579,24.03058],[94.22289,24.05123],[94.2241,24.0587],[94.23911,24.06929],[94.24321,24.0829],[94.24181,24.10905],[94.2452,24.12062],[94.25025,24.14593],[94.25965,24.16329],[94.26973,24.17877],[94.27289,24.19627],[94.27881,24.22693],[94.29296,24.25132],[94.29695,24.25319],[94.30272,24.26258],[94.31109,24.27791],[94.31391,24.28589],[94.31604,24.29763],[94.31442,24.31947],[94.31898,24.3363],[94.32878,24.34556],[94.35403,24.36578],[94.36143,24.37473],[94.35392,24.39889],[94.35464,24.40492],[94.37601,24.40838],[94.38624,24.41886],[94.38926,24.43403],[94.38851,24.45701],[94.38913,24.47937],[94.39358,24.48564],[94.40129,24.49003],[94.41408,24.49253],[94.42412,24.50253],[94.42958,24.51821],[94.43813,24.55449],[94.44579,24.56867],[94.45521,24.5753],[94.46874,24.58006],[94.4937,24.59648],[94.5044,24.60668],[94.51648,24.62062],[94.5289,24.65141],[94.53476,24.69146],[94.53529,24.70243],[94.53788,24.70779],[94.54655,24.71133],[94.57582,24.70925],[94.58587,24.71372],[94.59728,24.72442],[94.61823,24.76101],[94.61892,24.76808],[94.61825,24.80031],[94.62308,24.81614],[94.63962,24.84096],[94.65581,24.85426],[94.66925,24.86942],[94.68756,24.91506],[94.69294,24.92544],[94.69597,24.93499],[94.69645,24.9488],[94.69314,24.96096],[94.69258,24.97438],[94.69659,24.98311],[94.7034,24.98965],[94.70952,24.99308],[94.7226,25.00826],[94.73361,25.02157],[94.73711,25.0426],[94.73301,25.10136],[94.73474,25.12452],[94.72892,25.13524],[94.72137,25.13995],[94.69631,25.15131],[94.67056,25.16143],[94.65752,25.16525],[94.63881,25.16762],[94.61598,25.16999],[94.59916,25.17847],[94.59015,25.18829],[94.58458,25.19626],[94.57617,25.21404],[94.57669,25.23711],[94.57995,25.2521],[94.58202,25.2891],[94.58917,25.30204],[94.59962,25.31192],[94.61074,25.32987],[94.61515,25.34189],[94.61793,25.35828],[94.61865,25.37033],[94.62422,25.39567],[94.6339,25.40953],[94.64767,25.41709],[94.66007,25.42588],[94.66413,25.43279],[94.67025,25.449],[94.68907,25.46893],[94.69962,25.47453],[94.71291,25.47951],[94.72333,25.48417],[94.73472,25.49301],[94.74679,25.49689],[94.76031,25.49318],[94.77107,25.49133],[94.78962,25.49666],[94.80405,25.50768],[94.81779,25.52181],[94.83119,25.54541],[94.84185,25.55972],[94.85046,25.56697],[94.87159,25.56594],[94.88008,25.56836],[94.88513,25.57263],[94.88562,25.57808],[94.87769,25.58649],[94.88036,25.59341],[94.89689,25.6033],[94.9108,25.61962],[94.92128,25.63595],[94.94446,25.66651],[94.96421,25.69026],[94.97365,25.69798],[94.98035,25.70755],[94.98619,25.72112],[94.99306,25.72972],[94.99976,25.73416],[95.01581,25.73545],[95.0274,25.73767],[95.03426,25.74376],[95.03976,25.75254],[95.03908,25.76856],[95.03463,25.79625],[95.02881,25.82579],[95.01822,25.89237],[95.02012,25.92268],[95.02271,25.93076],[95.03375,25.93931],[95.06022,25.94329],[95.07404,25.94875],[95.08649,25.95484],[95.11469,25.98119],[95.13534,26.00321],[95.14995,26.02001],[95.15976,26.03002],[95.17163,26.04558],[95.17722,26.05583],[95.17938,26.06485],[95.17566,26.07654],[95.17311,26.08053],[95.15788,26.08986],[95.11793,26.10165],[95.11152,26.11325],[95.11072,26.12676],[95.11266,26.1378],[95.11414,26.15156],[95.1118,26.16152],[95.1041,26.16958],[95.10372,26.181],[95.10952,26.18933],[95.11669,26.19335],[95.11994,26.19813],[95.12044,26.2023],[95.11581,26.20878],[95.09908,26.2114],[95.08763,26.21672],[95.08098,26.22881],[95.07695,26.25961],[95.07087,26.29472],[95.06718,26.30429],[95.06534,26.32876],[95.06831,26.3477],[95.08857,26.39051],[95.09528,26.40638],[95.09451,26.41678],[95.09031,26.42717],[95.0692,26.45338],[95.06483,26.46833],[95.06746,26.48287],[95.07735,26.49783],[95.08745,26.50653],[95.09548,26.51032],[95.10976,26.52262],[95.11717,26.54412],[95.14312,26.56134],[95.14751,26.56564],[95.15032,26.57501],[95.14902,26.58131],[95.13913,26.59406],[95.13837,26.6043],[95.14143,26.61342],[95.15188,26.62289],[95.1589,26.62622],[95.17466,26.62996],[95.19454,26.63616],[95.20515,26.64358],[95.21423,26.65957],[95.22632,26.66848],[95.23106,26.67362],[95.2461,26.67999],[95.25328,26.67903],[95.25702,26.67378],[95.25752,26.66701],[95.2539,26.65656],[95.25715,26.65072],[95.26392,26.64534],[95.27138,26.64487],[95.31813,26.66856],[95.34734,26.67887],[95.38959,26.68488],[95.43875,26.70797],[95.45027,26.71614],[95.4708,26.74322],[95.48072,26.75769],[95.49083,26.78485],[95.503,26.81016],[95.51573,26.82019],[95.52313,26.82459],[95.54151,26.82715],[95.60471,26.81909],[95.61347,26.82298],[95.61949,26.8287],[95.63015,26.8521],[95.63385,26.87029],[95.64394,26.88506],[95.65791,26.8949],[95.6681,26.89873],[95.68006,26.89728],[95.69909,26.89105],[95.71194,26.88849],[95.71903,26.89293],[95.72716,26.89787],[95.73803,26.91016],[95.74719,26.93347],[95.75074,26.94727],[95.75978,26.96351],[95.77521,26.97273],[95.78395,26.97734],[95.79657,26.99281],[95.80781,27.0046],[95.84006,27.00984],[95.86373,27.00989],[95.87417,27.01259],[95.90616,27.02648],[95.92663,27.0426],[95.94269,27.05984],[95.95107,27.07029],[95.96151,27.08013],[95.98135,27.11016],[96.00363,27.15543],[96.01271,27.17135],[96.0248,27.18359],[96.03634,27.19215],[96.06889,27.20926],[96.09045,27.2282],[96.15342,27.25483],[96.1722,27.25808],[96.18685,27.26865],[96.19285,27.2707],[96.2168,27.27172],[96.22838,27.27579],[96.25816,27.27605],[96.27146,27.27875],[96.28201,27.28603],[96.29805,27.29026],[96.32413,27.28672],[96.34163,27.28953],[96.35467,27.29478],[96.37411,27.29324],[96.3915,27.29353],[96.4082,27.30206],[96.42714,27.30603],[96.44828,27.30313],[96.46531,27.29718],[96.4819,27.30266],[96.49779,27.30203],[96.50745,27.29562],[96.51675,27.29271],[96.52551,27.29431],[96.53436,27.30365],[96.54252,27.30506],[96.55652,27.30397],[96.56902,27.30922],[96.57987,27.31907],[96.59113,27.3365],[96.59642,27.3504],[96.60318,27.36162],[96.60994,27.36674],[96.6177,27.36806],[96.63222,27.36079],[96.64566,27.34617],[96.64834,27.34298],[96.65444,27.33917],[96.66501,27.33933],[96.67284,27.34193],[96.68003,27.34372],[96.68791,27.35038],[96.6951,27.35857],[96.70298,27.36493],[96.71359,27.36775],[96.7491,27.36092],[96.78496,27.34617],[96.80017,27.33049],[96.80525,27.3281],[96.81858,27.32448],[96.82395,27.3197],[96.83413,27.29249],[96.84774,27.26894],[96.8585,27.26083],[96.87474,27.25882],[96.88001,27.25924],[96.8839,27.25416],[96.8855,27.24872],[96.88435,27.24328],[96.88252,27.23937],[96.87657,27.23729],[96.86845,27.22885],[96.86101,27.21614],[96.86249,27.20862],[96.86604,27.19804],[96.87802,27.18432],[96.89809,27.17196],[96.96511,27.14531],[96.98043,27.1381],[97.0001,27.13266],[97.01703,27.12722],[97.02895,27.11974],[97.0459,27.0995],[97.06078,27.0927],[97.06687,27.09195],[97.09017,27.10196],[97.10935,27.10098],[97.12478,27.08755],[97.12881,27.08496],[97.13764,27.08542],[97.14618,27.09589],[97.14717,27.10758],[97.15879,27.12172],[97.16012,27.13647],[97.1489,27.15062],[97.12531,27.16354],[97.12296,27.17077],[97.12443,27.17654],[97.12796,27.17988],[97.12816,27.18532],[97.12595,27.19214],[97.11963,27.19774],[97.09668,27.2065],[97.07309,27.24873],[97.05706,27.26837],[97.04823,27.28222],[97.03598,27.2979],[96.99909,27.33051],[96.99035,27.34298],[96.97268,27.36247],[96.96257,27.37526],[96.95787,27.38347],[96.95515,27.39284],[96.94899,27.40404],[96.93394,27.41303],[96.92506,27.43008],[96.91239,27.44258],[96.90589,27.45019],[96.89981,27.46481],[96.90006,27.47577],[96.90441,27.484],[96.91769,27.50014],[96.91816,27.5044],[96.90802,27.52594],[96.90475,27.55966],[96.8958,27.56499],[96.88874,27.57703],[96.88589,27.59126],[96.88687,27.60568],[96.88923,27.61766],[96.89493,27.62581],[96.91368,27.63821],[96.9179,27.64426],[96.92213,27.65092],[96.93219,27.66183],[96.94157,27.66486],[96.95313,27.66486],[96.96125,27.6679],[96.97933,27.6843],[97.00343,27.71807],[97.01587,27.74212],[97.02685,27.74587],[97.04195,27.74835],[97.0598,27.75205],[97.07833,27.74638],[97.08382,27.74922],[97.08721,27.75587],[97.08822,27.77742],[97.0906,27.78196],[97.09727,27.78498],[97.1163,27.78922],[97.12484,27.79526],[97.13046,27.81011],[97.13402,27.81403],[97.15166,27.81673],[97.15762,27.82126],[97.1659,27.83026],[97.17831,27.83744],[97.18691,27.84832],[97.20581,27.86284],[97.22299,27.87996],[97.22849,27.88494],[97.23744,27.89673],[97.24859,27.90726],[97.26659,27.9087],[97.28047,27.91681],[97.28553,27.91859],[97.29332,27.91916],[97.30583,27.91392],[97.31011,27.90364],[97.30985,27.89304],[97.3113,27.88031],[97.3173,27.87762],[97.32841,27.88225],[97.33952,27.88932],[97.3435,27.89131],[97.36465,27.8927],[97.36746,27.89669],[97.36743,27.90243],[97.36259,27.92578],[97.36069,27.94083],[97.36489,27.96063],[97.38278,27.99479],[97.39312,28.00712],[97.39578,28.01223],[97.39431,28.01915],[97.37597,28.03216],[97.36724,28.04213],[97.36764,28.04753],[97.36285,28.05138],[97.35874,28.05766],[97.35945,28.06233],[97.35538,28.06682],[97.34862,28.06551],[97.3426,28.06066],[97.33452,28.05884],[97.32648,28.06196],[97.32004,28.05852],[97.3129,28.06175],[97.3219,28.08232],[97.32815,28.08532],[97.32785,28.0947],[97.32479,28.10226],[97.3345,28.10809],[97.33043,28.11191],[97.32498,28.11331],[97.32508,28.12459],[97.31899,28.12678],[97.31438,28.1345],[97.30976,28.141],[97.31606,28.1481],[97.32167,28.14792],[97.32462,28.14304],[97.33433,28.1418],[97.34542,28.15087],[97.35474,28.1532],[97.35613,28.15969],[97.36027,28.16496],[97.3548,28.17672],[97.36108,28.19026],[97.36323,28.20076],[97.36075,28.20521],[97.3538,28.20785],[97.34731,28.20812],[97.34503,28.2141]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Philippines#BS7", "itu_zone_number": 50 }, "geometry": { "type": "Polygon", "coordinates": [[[112.19409,14.97469],[121.73667,22.00146],[130,22.00146],[130,2.5],[127.00219,5.5],[119.1477,4.19658],[118.98877,4.79656],[119.45312,5.3708],[118.13962,6.04534],[117.93055,6.61753],[117.35361,7.39417],[116.78216,7.66089],[114.75624,5.79238],[108.53354,6.87119],[112.19409,14.97469]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Solomon Islands#H40", "itu_zone_number": 51 }, "geometry": { "type": "Polygon", "coordinates": [[[130,2.5],[140,0],[162,0],[173,-12],[158.60986,-12.11939],[144.88891,-12.00696],[144.32409,-9.26347],[142.62997,-9.35315],[142.17979,-9.18656],[142.06744,-9.24768],[130,-10],[130,2.5]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Angola#TN", "itu_zone_number": 52 }, "geometry": { "type": "Polygon", "coordinates": [[[5,0],[8,0],[8,1],[9.36582,1],[9.58786,1.01923],[9.6633,1.0636],[9.7551,1.06347],[9.8002,1.00018],[9.84255,1.00279],[9.88845,0.98488],[9.89237,0.95637],[9.93141,0.93662],[9.94848,0.91688],[9.99085,0.93505],[9.99203,0.99717],[11.33801,0.99862],[11.33268,2.17257],[11.35847,2.17226],[11.35942,2.22158],[11.37913,2.25173],[11.37686,2.29286],[11.6957,2.31342],[11.75636,2.27361],[12.00105,2.29143],[12.21128,2.27838],[12.25048,2.25265],[12.30616,2.27631],[12.46868,2.25157],[12.57071,2.26632],[12.67823,2.24264],[12.7418,2.2272],[12.80655,2.24693],[12.89052,2.23646],[12.93638,2.2428],[13.08112,2.24915],[13.13523,2.28568],[13.18933,2.28379],[13.28792,2.24708],[13.29863,2.16645],[14.28984,2.17164],[14.41273,2.18757],[14.44773,2.12665],[14.60013,2.20518],[14.65573,2.14152],[14.769,2.09707],[14.77654,2.07046],[14.83473,2.06861],[14.87094,2.10793],[14.8815,2.07201],[14.91128,2.0608],[14.8875,2.01801],[14.92415,1.99993],[14.96122,2.0055],[14.9873,2.03028],[15.04221,1.98103],[15.10606,1.98659],[15.13661,2.02094],[15.1754,2.02785],[15.20939,2.03543],[15.24887,2.0238],[15.30208,1.97375],[15.30671,1.93774],[15.33237,1.93895],[15.3443,1.91546],[15.48571,1.98165],[15.74593,1.91318],[15.88428,1.79247],[16.03311,1.76094],[16.01607,1.71531],[16.02649,1.65595],[16.06123,1.66196],[16.08224,1.68444],[16.09157,1.698],[16.11657,1.70208],[16.13881,1.68969],[16.14733,1.69788],[16.1476,1.71157],[16.1341,1.74328],[16.14257,1.76539],[16.13479,1.80001],[16.10985,1.84491],[16.10688,1.89119],[16.08401,1.88964],[16.07625,1.94505],[16.04788,1.9785],[16.05221,1.99252],[16.04967,2.01067],[16.07792,2.03689],[16.08106,2.04863],[16.07047,2.05625],[16.05753,2.0667],[16.08304,2.08675],[16.07933,2.13744],[16.08386,2.19911],[16.13618,2.19757],[16.14105,2.17553],[16.17988,2.20088],[16.19261,2.22073],[16.50901,2.83207],[16.51851,2.87557],[16.51059,2.90084],[16.48619,2.92063],[16.50299,2.96648],[16.49353,2.98803],[16.51215,3.03721],[16.53626,3.05896],[16.53896,3.07934],[16.50595,3.09424],[16.50452,3.16262],[16.52715,3.20366],[16.52748,3.24201],[16.52781,3.27213],[16.56685,3.32387],[16.58391,3.35917],[16.57685,3.38239],[16.58901,3.4056],[16.58586,3.4822],[16.66472,3.54903],[16.76078,3.55398],[16.85409,3.51782],[16.9419,3.55567],[17.03521,3.51676],[17.06807,3.55858],[17.15587,3.58122],[17.18461,3.56822],[17.24632,3.58537],[17.24612,3.61556],[17.32843,3.6101],[17.33932,3.57723],[17.36247,3.58138],[17.36366,3.60472],[17.39446,3.66093],[17.46371,3.70891],[17.60713,3.64726],[17.82303,3.62465],[17.85491,3.53626],[17.90357,3.55941],[17.93575,3.60175],[17.95282,3.56596],[17.97813,3.54662],[18.02738,3.55317],[18.07196,3.57126],[18.13852,3.56467],[18.16525,3.52382],[18.1755,3.4857],[18.23142,3.49058],[18.27037,3.59308],[18.31953,3.59013],[18.3577,3.60911],[18.39175,3.57874],[18.42114,3.58275],[18.40836,3.60257],[18.42944,3.61248],[18.44273,3.59825],[18.45876,3.60595],[18.45985,3.62972],[18.48292,3.65349],[18.53757,3.606],[18.55844,3.55198],[18.60128,3.47328],[18.62655,3.4749],[18.60845,3.5222],[18.58211,3.78059],[18.61458,3.93006],[18.64866,3.95411],[18.66077,3.99735],[18.61109,4.1714],[18.53943,4.31805],[18.60504,4.36929],[18.62665,4.35726],[18.68122,4.36165],[18.76289,4.40058],[18.80886,4.48879],[18.83011,4.58248],[18.907,4.65292],[19.01409,4.76716],[19.11019,4.94363],[19.20321,4.9443],[19.23855,5.01063],[19.36316,5.07697],[19.40898,5.12381],[19.48502,5.12415],[19.54273,5.15451],[19.61418,5.13015],[19.68842,5.14162],[19.8259,5.09891],[19.9086,4.9916],[19.93216,4.97596],[19.9667,4.98221],[20.01107,4.97009],[20.0998,4.9048],[20.18303,4.89014],[20.20955,4.83081],[20.25254,4.79338],[20.29291,4.7732],[20.34703,4.76944],[20.38301,4.72582],[20.39702,4.68493],[20.46349,4.61959],[20.45197,4.55257],[20.47436,4.5129],[20.51049,4.47597],[20.54524,4.43903],[20.58823,4.41032],[20.71232,4.43058],[20.79796,4.42619],[20.84652,4.44782],[20.94727,4.44206],[21.04252,4.40901],[21.09658,4.38417],[21.10531,4.34291],[21.21817,4.29214],[21.25537,4.33797],[21.28708,4.33998],[21.35213,4.28296],[21.44463,4.28619],[21.49089,4.26316],[21.55362,4.24834],[21.65162,4.31184],[21.77632,4.29103],[21.82961,4.27022],[21.8829,4.24394],[21.94937,4.23353],[21.99662,4.2423],[22.09717,4.21659],[22.1605,4.15923],[22.2403,4.11829],[22.44111,4.12683],[22.54726,4.21362],[22.54221,4.30379],[22.61407,4.36931],[22.58705,4.40608],[22.59299,4.47571],[22.65705,4.49447],[22.67992,4.47216],[22.70299,4.47505],[22.70684,4.52997],[22.73101,4.55766],[22.73816,4.62399],[22.78542,4.72381],[22.81592,4.72992],[22.84641,4.69771],[22.89339,4.75446],[22.88381,4.79064],[22.90444,4.81586],[22.93198,4.81158],[22.96783,4.83858],[23.01346,4.75764],[23.10853,4.70954],[23.16958,4.74747],[23.23675,4.67551],[23.26419,4.6719],[23.27789,4.64091],[23.32727,4.60903],[23.36088,4.61705],[23.38351,4.58674],[23.42603,4.60004],[23.42692,4.65405],[23.46559,4.68055],[23.50152,4.67969],[23.59238,4.75546],[23.67901,4.76598],[23.70859,4.78766],[23.77662,4.78197],[23.83075,4.83721],[23.85232,4.8142],[23.86565,4.81582],[23.89231,4.83274],[23.92212,4.81794],[23.95467,4.81409],[23.95661,4.85154],[23.96259,4.87321],[23.99878,4.873],[24.02398,4.86047],[24.04644,4.86983],[24.05153,4.8824],[24.11155,4.91686],[24.14411,4.88974],[24.16293,4.89547],[24.18991,4.93711],[24.23336,4.95686],[24.24661,4.93966],[24.26421,4.93517],[24.27633,4.95257],[24.26162,4.97291],[24.3037,5.0036],[24.35128,5.00693],[24.40229,5.03632],[24.38669,5.05594],[24.36241,5.0425],[24.34362,5.05368],[24.36235,5.07193],[24.36622,5.09884],[24.38107,5.11754],[24.4199,5.09387],[24.4297,5.06562],[24.45324,5.05925],[24.452,5.10133],[24.53467,5.08701],[24.55993,5.03374],[24.61869,5.03117],[24.63458,4.97403],[24.67314,4.97162],[24.65808,4.9198],[24.71647,4.9103],[24.72515,4.89475],[24.76381,4.90749],[24.78051,4.89835],[24.80335,4.92471],[24.8564,4.92917],[24.86276,4.95006],[24.90804,4.94971],[24.92382,4.9769],[24.96156,4.9904],[25.06037,4.92677],[25.08503,4.97669],[25.12207,4.98661],[25.12616,5.0102],[25.15061,5.0293],[25.17478,5.00457],[25.21228,5.00793],[25.24977,5.02498],[25.31652,5.03445],[25.32032,5.07983],[25.3351,5.09237],[25.34713,5.11997],[25.34543,5.1503],[25.3252,5.14986],[25.30221,5.18497],[25.32917,5.20595],[25.33141,5.25975],[25.35563,5.28346],[25.3746,5.29259],[25.36611,5.30718],[25.39018,5.33297],[25.40908,5.31031],[25.4527,5.33961],[25.48089,5.3613],[25.50047,5.3448],[25.54323,5.36116],[25.53379,5.38299],[25.5744,5.37738],[25.58509,5.3527],[25.61775,5.3499],[25.59519,5.32515],[25.63335,5.30594],[25.6332,5.32642],[25.65228,5.32775],[25.66345,5.31107],[25.70209,5.29987],[25.71945,5.26199],[25.73681,5.26788],[25.74137,5.23869],[25.7766,5.25691],[25.76401,5.26876],[25.78163,5.2806],[25.79717,5.26098],[25.77885,5.24434],[25.81089,5.24832],[25.80219,5.22159],[25.83194,5.1976],[25.85018,5.22373],[25.88127,5.22176],[25.9023,5.16606],[25.91694,5.18198],[25.90366,5.19951],[25.95195,5.20281],[25.97553,5.24713],[26.01436,5.21309],[26.06261,5.20838],[26.09773,5.2279],[26.14108,5.27205],[26.29724,5.15011],[26.34795,5.15177],[26.39866,5.13975],[26.48361,5.05553],[26.76337,5.10867],[26.80299,5.05181],[26.8591,5.04692],[26.90505,5.08194],[26.94002,5.14431],[27.02305,5.18616],[27.10608,5.2116],[27.18019,5.18438],[27.2502,5.14752],[27.32296,5.12981],[27.44238,5.0725],[27.44167,5.01922],[27.46018,4.99056],[27.5124,4.96205],[27.50555,4.93274],[27.56118,4.89346],[27.64942,4.89435],[27.7059,4.82363],[27.69843,4.79238],[27.7254,4.79141],[27.7359,4.80139],[27.77611,4.78303],[27.76927,4.69432],[27.79882,4.60753],[27.89873,4.5395],[27.93332,4.53686],[27.94869,4.57803],[28.04259,4.54401],[28.03542,4.47789],[28.08401,4.41608],[28.10145,4.44405],[28.1436,4.43094],[28.14215,4.40346],[28.1785,4.38287],[28.20661,4.35132],[28.27238,4.3566],[28.35874,4.35504],[28.38193,4.28227],[28.45564,4.28788],[28.51837,4.37566],[28.58246,4.38402],[28.60674,4.42113],[28.64773,4.42347],[28.67499,4.4395],[28.72635,4.54469],[28.80078,4.5658],[28.81204,4.49928],[28.8369,4.47972],[28.87607,4.49125],[28.92623,4.47815],[29.02655,4.49301],[29.04718,4.47169],[29.0788,4.45584],[29.08433,4.43726],[29.1338,4.42963],[29.22183,4.33886],[29.25062,4.35569],[29.25402,4.38328],[29.26567,4.39717],[29.30676,4.38429],[29.34499,4.3996],[29.35713,4.4505],[29.37476,4.47129],[29.40729,4.47726],[29.44805,4.52157],[29.4463,4.56463],[29.47575,4.59326],[29.46676,4.66502],[29.49347,4.69435],[29.5359,4.65852],[29.553,4.6721],[29.69887,4.61865],[29.74847,4.56866],[29.7664,4.58611],[29.82617,4.5565],[29.79838,4.51021],[29.80852,4.49459],[29.79711,4.42654],[29.80218,4.36944],[29.84655,4.33639],[29.89916,4.34715],[29.96592,4.28926],[29.94564,4.24195],[29.97685,4.21382],[30.02318,4.20759],[30.02967,4.17535],[30.06364,4.12941],[30.12232,4.11086],[30.15903,4.11422],[30.1679,4.03878],[30.18501,4.03182],[30.2165,3.93845],[30.2882,3.95651],[30.30223,3.91428],[30.34951,3.91751],[30.38688,3.89412],[30.41601,3.86525],[30.44515,3.87954],[30.47428,3.83354],[30.52627,3.8537],[30.55079,3.84098],[30.58198,3.72921],[30.55824,3.62292],[30.6219,3.60266],[30.6526,3.62078],[30.6833,3.64301],[30.73048,3.62139],[30.7754,3.6823],[30.79624,3.65366],[30.79705,3.61057],[30.80885,3.59488],[30.85991,3.57722],[30.86621,3.54508],[30.85151,3.52354],[30.85054,3.49925],[30.84791,3.48868],[30.86582,3.47791],[30.87921,3.48137],[30.88162,3.48893],[30.8988,3.50269],[30.94276,3.50754],[30.94072,3.49114],[30.93826,3.40604],[30.88896,3.33607],[30.89041,3.31891],[30.87602,3.30485],[30.86713,3.27708],[30.84064,3.26397],[30.82877,3.20531],[30.80361,3.12388],[30.79377,3.06397],[30.77295,3.05342],[30.78199,3.01754],[30.80711,3.0092],[30.82125,3.00908],[30.83813,2.96885],[30.85343,2.95834],[30.85226,2.93959],[30.89151,2.86188],[30.87681,2.7901],[30.83189,2.75124],[30.77599,2.60128],[30.75215,2.58254],[30.76358,2.49772],[30.74733,2.48686],[30.74205,2.44719],[30.75156,2.41602],[30.7803,2.43149],[30.83502,2.42127],[30.88405,2.34047],[30.93877,2.33026],[30.94406,2.36669],[30.95425,2.39452],[30.98917,2.40862],[31.03153,2.37645],[31.07328,2.34382],[31.0741,2.32537],[31.08591,2.30693],[31.06888,2.30083],[31.12903,2.26347],[31.144,2.2791],[31.16933,2.27868],[31.20291,2.29198],[31.2038,2.21991],[31.24887,2.19828],[31.31592,2.14783],[31.31543,2.11692],[31.23005,1.99715],[31.03205,1.75111],[30.71646,1.50123],[30.48038,1.21567],[30.45635,1.19735],[30.40177,1.19231],[30.36212,1.1994],[30.34718,1.17628],[30.33654,1.14653],[30.28745,1.17169],[30.2387,1.13415],[30.24317,1.1037],[30.23029,1.07887],[30.22566,1.04854],[30.22635,0.9904],[30.19133,0.95698],[30.17297,0.93215],[30.17108,0.90457],[30.14259,0.88511],[30.10758,0.89103],[30.06158,0.87499],[29.99773,0.84521],[29.97783,0.82916],[29.96444,0.77501],[29.97304,0.74009],[29.96825,0.67573],[29.95418,0.64424],[29.97307,0.59352],[29.96947,0.5716],[29.98235,0.54967],[29.97789,0.50582],[29.87365,0.38518],[29.82435,0.16704],[29.77762,0.16728],[29.74189,0.12071],[29.71715,0.06865],[29.72398,0.01396],[29.74454,-0.02974],[29.72241,-0.07272],[29.7276,-0.08725],[29.65282,-0.45965],[29.67326,-0.47379],[29.67357,-0.55217],[29.68211,-0.56737],[29.66742,-0.59074],[29.64999,-0.60038],[29.66182,-0.6279],[29.63878,-0.68018],[29.62626,-0.70805],[29.63099,-0.80713],[29.64178,-0.82846],[29.63061,-0.8498],[29.62767,-0.87525],[29.63572,-0.90071],[29.58818,-0.89906],[29.58281,-0.90736],[29.59941,-0.98707],[29.58442,-0.98988],[29.58866,-1.06135],[29.57815,-1.19344],[29.60657,-1.22694],[29.60705,-1.24644],[29.59104,-1.27418],[29.60573,-1.31867],[29.59115,-1.38568],[29.63989,-1.38733],[29.67489,-1.3835],[29.69994,-1.35687],[29.73324,-1.33573],[29.76516,-1.35166],[29.77837,-1.36787],[29.79708,-1.37308],[29.80049,-1.34728],[29.81731,-1.32752],[29.82313,-1.30775],[29.86192,-1.36075],[29.88148,-1.35883],[29.88731,-1.42556],[29.89297,-1.45069],[29.91511,-1.48268],[29.98822,-1.45259],[30.02013,-1.41426],[30.05669,-1.43491],[30.05479,-1.40064],[30.08396,-1.37055],[30.11894,-1.38588],[30.13799,-1.35676],[30.16527,-1.34687],[30.17196,-1.27244],[30.20748,-1.27765],[30.28195,-1.19927],[30.30408,-1.14635],[30.34543,-1.12638],[30.33887,-1.09881],[30.35429,-1.06574],[30.42534,-1.06328],[30.4485,-1.04832],[30.47386,-1.05762],[30.45262,-1.08299],[30.4587,-1.12099],[30.47301,-1.1233],[30.4736,-1.15718],[30.49723,-1.16039],[30.50714,-1.17184],[30.55225,-1.25472],[30.56244,-1.29478],[30.55793,-1.30795],[30.57264,-1.34033],[30.61398,-1.35179],[30.63008,-1.38262],[30.68464,-1.39699],[30.73883,-1.45043],[30.74358,-1.51759],[30.83897,-1.65066],[30.82074,-1.69831],[30.82998,-1.8146],[30.80727,-1.93737],[30.86457,-2.02895],[30.89716,-2.07387],[30.84872,-2.20387],[30.84279,-2.24186],[30.85609,-2.31279],[30.84111,-2.32527],[30.82613,-2.35696],[30.80016,-2.36669],[30.77419,-2.39015],[30.71365,-2.35572],[30.65861,-2.41186],[30.62278,-2.39939],[30.57878,-2.41648],[30.54027,-2.41436],[30.48339,-2.55856],[30.42102,-2.65886],[30.43143,-2.68097],[30.46548,-2.69203],[30.5237,-2.65229],[30.5307,-2.67185],[30.48614,-2.72141],[30.46951,-2.72077],[30.46111,-2.73658],[30.43883,-2.75176],[30.44542,-2.78075],[30.41081,-2.86185],[30.43333,-2.87257],[30.43773,-2.89713],[30.45036,-2.91347],[30.50365,-2.95411],[30.57357,-2.89375],[30.64561,-2.95683],[30.65004,-2.97328],[30.67095,-2.99248],[30.69939,-2.97155],[30.7498,-2.99452],[30.85062,-2.97736],[30.7982,-3.06376],[30.84191,-3.1008],[30.84168,-3.2064],[30.81135,-3.22355],[30.8387,-3.25715],[30.76331,-3.29089],[30.73897,-3.26368],[30.71737,-3.30502],[30.6632,-3.32463],[30.6358,-3.36412],[30.67432,-3.39812],[30.66897,-3.42501],[30.63474,-3.45638],[30.58678,-3.48227],[30.5347,-3.50268],[30.51283,-3.52858],[30.49127,-3.52249],[30.44541,-3.56514],[30.45818,-3.59675],[30.43023,-3.63174],[30.38855,-3.71881],[30.41041,-3.76028],[30.40479,-3.799],[30.38533,-3.78327],[30.35076,-3.77164],[30.32992,-3.79017],[30.30424,-3.84782],[30.25796,-3.89123],[30.21559,-3.99377],[30.22816,-4.01412],[30.22219,-4.03925],[30.20523,-4.04795],[30.18552,-4.05801],[30.19054,-4.08177],[30.07601,-4.1741],[30.04113,-4.2719],[30.01385,-4.27454],[30.00031,-4.29361],[29.98146,-4.29615],[29.95475,-4.33135],[29.86837,-4.37984],[29.82309,-4.36133],[29.76133,-4.42497],[29.76964,-4.45367],[29.75605,-4.46725],[29.66354,-4.44765],[29.41996,-4.44996],[29.43242,-4.54033],[29.34489,-4.7737],[29.34251,-4.89484],[29.38271,-5.0543],[29.46135,-5.19188],[29.53285,-5.45344],[29.60019,-5.58013],[29.63524,-5.74597],[29.6126,-5.80249],[29.51272,-5.92255],[29.49523,-5.99616],[29.49747,-6.04868],[29.53268,-6.1804],[29.55414,-6.31485],[29.65664,-6.45339],[29.71056,-6.60242],[29.89683,-6.7615],[30.04189,-6.82511],[30.17996,-6.94863],[30.30394,-7.12756],[30.39477,-7.31785],[30.43891,-7.51632],[30.45549,-7.58419],[30.52695,-7.69707],[30.59841,-7.80178],[30.70298,-7.9784],[30.77203,-8.20381],[28.89206,-8.47755],[28.9529,-8.59025],[28.95331,-8.69209],[28.85347,-8.8523],[28.67948,-9.05866],[28.379,-9.2491],[28.41004,-9.28902],[28.52347,-9.35605],[28.5188,-9.44211],[28.59612,-9.55291],[28.62094,-9.72277],[28.6952,-9.81141],[28.62939,-9.93531],[28.62669,-10.14873],[28.57316,-10.21489],[28.63703,-10.30473],[28.624,-10.36214],[28.65209,-10.51622],[28.68566,-10.6541],[28.66949,-10.68808],[28.66141,-10.71991],[28.61625,-10.71666],[28.57715,-10.79933],[28.48174,-11.09779],[28.49692,-11.16348],[28.44894,-11.37611],[28.39473,-11.50664],[28.40095,-11.5995],[28.42857,-11.7421],[28.49739,-11.87932],[28.71149,-11.98039],[28.86798,-12.14376],[29.01763,-12.29524],[29.04851,-12.38171],[29.16729,-12.40378],[29.27015,-12.36535],[29.47539,-12.47489],[29.52857,-12.40089],[29.44024,-12.33409],[29.50594,-12.24164],[29.57164,-12.20288],[29.66459,-12.24345],[29.7605,-12.15635],[29.81521,-12.15247],[29.81414,-13.44083],[29.71494,-13.45441],[29.60475,-13.40923],[29.67551,-13.22798],[29.62817,-13.25255],[29.58632,-13.2076],[29.18273,-13.4501],[29.13344,-13.36657],[29.01274,-13.41663],[28.78508,-12.95753],[28.64927,-12.83506],[28.56489,-12.90237],[28.46777,-12.72177],[28.53544,-12.6376],[28.31876,-12.42002],[28.05135,-12.39015],[27.88282,-12.2315],[27.63364,-12.27915],[27.5063,-12.15801],[27.45587,-11.95095],[27.38671,-11.86085],[27.21867,-11.77074],[27.2012,-11.57977],[27.05828,-11.6033],[26.99781,-11.85709],[26.86043,-11.9926],[26.37684,-11.97541],[25.94799,-11.87646],[25.321,-11.6138],[25.30375,-11.37243],[25.35242,-11.19568],[24.82491,-11.29948],[24.48416,-11.46792],[24.30272,-11.37777],[24.40426,-11.23575],[24.38362,-11.09469],[24.28507,-11.03247],[24.16456,-11.03494],[24.12095,-10.9053],[24.01141,-10.90509],[24.02094,-11.24321],[24.06343,-11.4089],[23.9946,-11.62187],[23.97778,-12.17722],[24.06825,-12.34221],[23.939,-12.57158],[23.88115,-12.79556],[24.02106,-12.99812],[22.00241,-13.00087],[21.99975,-16.17237],[22.07327,-16.23868],[22.08087,-16.28391],[22.12555,-16.34364],[22.13415,-16.417],[22.13159,-16.48001],[22.14276,-16.49035],[22.47656,-16.77131],[22.74233,-17.05381],[23.07847,-17.34723],[23.20586,-17.48332],[23.43529,-17.6073],[23.43401,-17.63702],[21.42353,-18.02662],[21.3088,-17.98042],[21.21055,-17.92899],[20.96461,-17.96723],[20.83615,-18.03859],[20.75681,-18.0168],[20.70769,-18.01591],[20.65307,-17.98106],[20.6012,-17.97755],[20.54246,-17.98189],[20.50416,-17.95205],[20.47411,-17.94573],[20.45448,-17.91095],[20.38816,-17.89708],[20.31869,-17.86542],[20.13717,-17.91449],[19.85871,-17.86001],[19.75243,-17.90596],[19.62419,-17.86826],[19.31994,-17.84295],[19.13992,-17.81325],[19.09848,-17.8375],[18.87278,-17.81281],[18.7336,-17.71359],[18.61639,-17.63008],[18.62778,-17.6088],[18.60071,-17.5823],[18.56855,-17.58164],[18.54818,-17.55416],[18.51293,-17.49396],[18.48088,-17.47831],[18.47721,-17.45228],[18.42042,-17.38975],[14.21877,-17.3923],[14.21319,-17.40158],[14.21311,-17.41086],[14.19861,-17.41425],[14.18685,-17.41239],[14.1618,-17.41676],[14.15133,-17.42779],[14.14224,-17.42965],[14.1249,-17.43609],[14.11581,-17.42419],[14.10208,-17.43948],[14.07737,-17.43511],[14.05231,-17.42736],[14.04373,-17.42092],[14.03789,-17.42365],[14.01283,-17.41458],[14.00442,-17.42075],[14.00013,-17.43085],[13.98744,-17.43533],[13.98023,-17.42736],[13.95655,-17.43381],[13.92612,-17.41167],[13.93151,-17.40519],[13.92866,-17.39741],[13.9154,-17.38641],[13.91725,-17.37804],[13.9053,-17.37074],[13.89884,-17.36213],[13.8873,-17.35933],[13.87245,-17.34325],[13.85758,-17.34291],[13.84821,-17.33734],[13.83746,-17.32848],[13.82396,-17.32618],[13.78509,-17.30387],[13.77629,-17.29402],[13.76063,-17.2868],[13.73755,-17.26973],[13.71661,-17.26641],[13.69499,-17.24736],[13.68427,-17.24866],[13.66393,-17.23554],[13.63835,-17.20929],[13.61553,-17.20009],[13.5927,-17.17909],[13.55108,-17.1539],[13.54244,-17.14731],[13.53312,-17.14465],[13.51104,-17.1354],[13.50808,-17.12609],[13.51731,-17.12088],[13.52105,-17.11305],[13.52274,-17.10699],[13.52169,-17.10029],[13.52097,-17.09016],[13.49815,-17.06866],[13.48425,-17.03797],[13.47773,-17.0335],[13.4767,-17.02575],[13.46847,-17.02095],[13.46366,-17.0109],[13.44341,-17.00951],[13.42813,-17.00159],[13.41767,-16.99761],[13.40857,-16.9988],[13.39879,-16.99671],[13.39416,-16.99594],[13.39081,-16.99062],[13.38678,-16.98859],[13.37923,-16.98305],[13.3703,-16.98146],[13.36241,-16.97953],[13.35383,-16.97432],[13.3512,-16.97417],[13.34342,-16.9773],[13.32959,-16.98291],[13.31524,-16.98572],[13.30926,-16.98795],[13.30157,-16.98821],[13.2945,-16.99088],[13.2864,-16.9929],[13.28091,-16.99468],[13.27131,-16.99941],[13.25795,-16.99279],[13.25487,-16.99388],[13.25316,-16.99629],[13.25076,-16.99869],[13.24699,-17.00012],[13.23842,-16.99606],[13.24118,-16.993],[13.23686,-16.9878],[13.23219,-16.98621],[13.22375,-16.98462],[13.21943,-16.98632],[13.2042,-16.98916],[13.20097,-16.98904],[13.19809,-16.98467],[13.19751,-16.98198],[13.19898,-16.97996],[13.2008,-16.9776],[13.19953,-16.97393],[13.18638,-16.96928],[13.18113,-16.97152],[13.17982,-16.97384],[13.17646,-16.97255],[13.16938,-16.96341],[13.16518,-16.96528],[13.16102,-16.96523],[13.15514,-16.96452],[13.15145,-16.96705],[13.146,-16.96552],[13.14055,-16.9653],[13.12151,-16.96901],[13.10898,-16.97242],[13.1016,-16.97484],[13.09972,-16.97792],[13.09715,-16.97936],[13.09053,-16.98032],[13.0873,-16.97719],[13.08305,-16.97569],[13.07667,-16.97564],[13.06289,-16.97289],[13.0516,-16.98059],[13.04417,-16.97998],[13.03711,-16.98157],[13.03245,-16.97724],[13.02794,-16.97712],[13.01969,-16.98191],[12.98363,-16.98211],[12.97541,-16.99018],[12.97019,-16.98987],[12.96668,-16.9912],[12.96619,-17.00075],[12.96261,-17.01031],[12.95327,-17.01032],[12.94808,-17.00984],[12.94392,-17.01231],[12.94772,-17.01809],[12.9428,-17.02019],[12.93941,-17.01851],[12.92887,-17.01976],[12.92261,-17.02166],[12.91499,-17.0216],[12.90763,-17.02877],[12.90336,-17.03693],[12.8907,-17.04405],[12.8727,-17.04794],[12.87118,-17.05839],[12.87241,-17.06622],[12.84617,-17.07799],[12.83555,-17.08869],[12.82356,-17.08495],[12.81056,-17.1011],[12.80511,-17.11593],[12.77907,-17.12158],[12.76332,-17.1397],[12.73659,-17.146],[12.73421,-17.15112],[12.72359,-17.15624],[12.71435,-17.1594],[12.71334,-17.17174],[12.70573,-17.17315],[12.69984,-17.16865],[12.69466,-17.16993],[12.68879,-17.1722],[12.68464,-17.17299],[12.68015,-17.1764],[12.67738,-17.17345],[12.67357,-17.17215],[12.66901,-17.17502],[12.66616,-17.17954],[12.66542,-17.18139],[12.66297,-17.18258],[12.65841,-17.18594],[12.65597,-17.18538],[12.64685,-17.19055],[12.64665,-17.19442],[12.64421,-17.19746],[12.63746,-17.19871],[12.6322,-17.199],[12.63174,-17.20291],[12.62622,-17.20599],[12.62172,-17.20678],[12.61723,-17.20625],[12.61102,-17.20934],[12.60564,-17.21632],[12.60862,-17.2267],[12.6061,-17.23118],[12.60197,-17.22903],[12.59921,-17.23213],[12.59679,-17.23572],[12.59094,-17.23177],[12.5813,-17.23043],[12.57852,-17.2281],[12.57182,-17.23529],[12.56873,-17.23734],[12.56461,-17.23938],[12.56495,-17.2438],[12.55954,-17.2414],[12.5531,-17.24063],[12.54378,-17.23926],[12.5422,-17.24296],[12.54181,-17.24797],[12.53593,-17.2461],[12.53292,-17.24253],[12.52425,-17.24813],[12.51034,-17.2453],[12.4942,-17.24798],[12.4808,-17.24279],[12.47771,-17.25072],[12.46912,-17.25472],[12.46156,-17.25806],[12.45263,-17.25484],[12.44714,-17.26342],[12.43615,-17.26282],[12.44023,-17.25051],[12.43745,-17.24475],[12.43055,-17.24031],[12.43601,-17.22275],[12.4235,-17.20768],[12.42102,-17.2131],[12.41579,-17.2113],[12.40851,-17.20721],[12.39642,-17.20771],[12.39325,-17.21346],[12.3942,-17.22117],[12.38667,-17.21873],[12.37364,-17.22678],[12.37023,-17.23384],[12.35925,-17.22918],[12.3517,-17.21861],[12.34374,-17.22387],[12.33234,-17.22586],[12.32747,-17.22915],[12.31779,-17.22851],[12.30983,-17.23492],[12.29568,-17.23412],[12.28429,-17.24217],[12.27069,-17.23275],[12.26259,-17.23251],[12.25362,-17.24069],[12.23435,-17.2351],[12.2298,-17.22458],[12.21688,-17.21785],[12.21082,-17.21898],[12.19941,-17.20814],[12.19485,-17.19729],[12.1824,-17.19628],[12.17579,-17.17789],[12.16128,-17.16146],[12.14781,-17.16045],[12.13158,-17.16732],[12.1181,-17.15713],[12.10462,-17.16005],[12.08179,-17.14229],[12.05801,-17.15572],[12.03423,-17.15077],[12.02558,-17.1564],[12.02236,-17.16192],[12.01778,-17.16055],[12.00741,-17.16601],[11.99909,-17.16853],[11.99586,-17.17112],[11.98678,-17.17273],[11.9834,-17.17268],[11.97418,-17.17672],[11.96324,-17.17486],[11.96037,-17.17685],[11.95877,-17.17965],[11.95579,-17.18213],[11.95109,-17.18157],[11.94777,-17.18035],[11.94318,-17.18054],[11.93834,-17.18454],[11.93213,-17.19051],[11.92368,-17.19468],[11.92169,-17.19643],[11.91763,-17.19622],[11.91039,-17.19965],[11.909,-17.20202],[11.9052,-17.20439],[11.90184,-17.20414],[11.90053,-17.20651],[11.89768,-17.20707],[11.89174,-17.21026],[11.88437,-17.22491],[11.8697,-17.23289],[11.86116,-17.23409],[11.85818,-17.24133],[11.85489,-17.23962],[11.84954,-17.24218],[11.84612,-17.23567],[11.83755,-17.23605],[11.83436,-17.23853],[11.831,-17.24248],[11.82361,-17.25495],[11.82146,-17.25803],[11.82,-17.26209],[11.81674,-17.26464],[11.81243,-17.26451],[11.80846,-17.26864],[11.79881,-17.26772],[11.79396,-17.27467],[11.77552,-17.25938],[11.75845,-17.25328],[11.5,-17],[5,-17],[5,0]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Mozambique#D6", "itu_zone_number": 53 }, "geometry": { "type": "Polygon", "coordinates": [[[23.43401,-17.63702],[23.43529,-17.6073],[23.20586,-17.48332],[23.07847,-17.34723],[22.74233,-17.05381],[22.47656,-16.77131],[22.14276,-16.49035],[22.13159,-16.48001],[22.13415,-16.417],[22.12555,-16.34364],[22.08087,-16.28391],[22.07327,-16.23868],[21.99975,-16.17237],[22.00241,-13.00087],[24.02106,-12.99812],[23.88115,-12.79556],[23.939,-12.57158],[24.06825,-12.34221],[23.97778,-12.17722],[23.9946,-11.62187],[24.06343,-11.4089],[24.02094,-11.24321],[24.01141,-10.90509],[24.12095,-10.9053],[24.16456,-11.03494],[24.28507,-11.03247],[24.38362,-11.09469],[24.40426,-11.23575],[24.30272,-11.37777],[24.48416,-11.46792],[24.82491,-11.29948],[25.35242,-11.19568],[25.30375,-11.37243],[25.321,-11.6138],[25.94799,-11.87646],[26.37684,-11.97541],[26.86043,-11.9926],[26.99781,-11.85709],[27.05828,-11.6033],[27.2012,-11.57977],[27.21867,-11.77074],[27.38671,-11.86085],[27.45587,-11.95095],[27.5063,-12.15801],[27.63364,-12.27915],[27.88282,-12.2315],[28.05135,-12.39015],[28.31876,-12.42002],[28.53544,-12.6376],[28.46777,-12.72177],[28.56489,-12.90237],[28.64927,-12.83506],[28.78508,-12.95753],[29.01274,-13.41663],[29.13344,-13.36657],[29.18273,-13.4501],[29.58632,-13.2076],[29.62817,-13.25255],[29.67551,-13.22798],[29.60475,-13.40923],[29.71494,-13.45441],[29.81414,-13.44083],[29.81521,-12.15247],[29.7605,-12.15635],[29.66459,-12.24345],[29.57164,-12.20288],[29.50594,-12.24164],[29.44024,-12.33409],[29.52857,-12.40089],[29.47539,-12.47489],[29.27015,-12.36535],[29.16729,-12.40378],[29.04851,-12.38171],[29.01763,-12.29524],[28.86798,-12.14376],[28.71149,-11.98039],[28.49739,-11.87932],[28.42857,-11.7421],[28.40095,-11.5995],[28.39473,-11.50664],[28.44894,-11.37611],[28.49692,-11.16348],[28.48174,-11.09779],[28.57715,-10.79933],[28.61625,-10.71666],[28.66141,-10.71991],[28.66949,-10.68808],[28.68566,-10.6541],[28.65209,-10.51622],[28.624,-10.36214],[28.63703,-10.30473],[28.57316,-10.21489],[28.62669,-10.14873],[28.62939,-9.93531],[28.6952,-9.81141],[28.62094,-9.72277],[28.59612,-9.55291],[28.5188,-9.44211],[28.52347,-9.35605],[28.41004,-9.28902],[28.379,-9.2491],[28.67948,-9.05866],[28.85347,-8.8523],[28.95331,-8.69209],[28.9529,-8.59025],[28.89206,-8.47755],[30.77203,-8.20381],[30.70298,-7.9784],[30.59841,-7.80178],[30.52695,-7.69707],[30.45549,-7.58419],[30.43891,-7.51632],[30.39477,-7.31785],[30.30394,-7.12756],[30.17996,-6.94863],[30.04189,-6.82511],[29.89683,-6.7615],[29.71056,-6.60242],[29.65664,-6.45339],[29.55414,-6.31485],[29.53268,-6.1804],[29.49747,-6.04868],[29.49523,-5.99616],[29.51272,-5.92255],[29.6126,-5.80249],[29.63524,-5.74597],[29.60019,-5.58013],[29.53285,-5.45344],[29.46135,-5.19188],[29.38271,-5.0543],[29.34251,-4.89484],[29.34489,-4.7737],[29.43242,-4.54033],[29.41996,-4.44996],[29.66354,-4.44765],[29.75605,-4.46725],[29.76964,-4.45367],[29.76133,-4.42497],[29.82309,-4.36133],[29.86837,-4.37984],[29.95475,-4.33135],[29.98146,-4.29615],[30.00031,-4.29361],[30.01385,-4.27454],[30.04113,-4.2719],[30.07601,-4.1741],[30.19054,-4.08177],[30.18552,-4.05801],[30.20523,-4.04795],[30.22219,-4.03925],[30.22816,-4.01412],[30.21559,-3.99377],[30.25796,-3.89123],[30.30424,-3.84782],[30.32992,-3.79017],[30.35076,-3.77164],[30.38533,-3.78327],[30.40479,-3.799],[30.41041,-3.76028],[30.38855,-3.71881],[30.43023,-3.63174],[30.45818,-3.59675],[30.44541,-3.56514],[30.49127,-3.52249],[30.51283,-3.52858],[30.5347,-3.50268],[30.58678,-3.48227],[30.63474,-3.45638],[30.66897,-3.42501],[30.67432,-3.39812],[30.6358,-3.36412],[30.6632,-3.32463],[30.71737,-3.30502],[30.73897,-3.26368],[30.76331,-3.29089],[30.8387,-3.25715],[30.81135,-3.22355],[30.84168,-3.2064],[30.84191,-3.1008],[30.7982,-3.06376],[30.85062,-2.97736],[30.7498,-2.99452],[30.69939,-2.97155],[30.67095,-2.99248],[30.65004,-2.97328],[30.64561,-2.95683],[30.57357,-2.89375],[30.50365,-2.95411],[30.45036,-2.91347],[30.43773,-2.89713],[30.43333,-2.87257],[30.41081,-2.86185],[30.44542,-2.78075],[30.43883,-2.75176],[30.46111,-2.73658],[30.46951,-2.72077],[30.48614,-2.72141],[30.5307,-2.67185],[30.5237,-2.65229],[30.46548,-2.69203],[30.43143,-2.68097],[30.42102,-2.65886],[30.48339,-2.55856],[30.54027,-2.41436],[30.57878,-2.41648],[30.62278,-2.39939],[30.65861,-2.41186],[30.71365,-2.35572],[30.77419,-2.39015],[30.80016,-2.36669],[30.82613,-2.35696],[30.84111,-2.32527],[30.85609,-2.31279],[30.84279,-2.24186],[30.84872,-2.20387],[30.89716,-2.07387],[30.86457,-2.02895],[30.80727,-1.93737],[30.82998,-1.8146],[30.82074,-1.69831],[30.83897,-1.65066],[30.74358,-1.51759],[30.73883,-1.45043],[30.68464,-1.39699],[30.63008,-1.38262],[30.61398,-1.35179],[30.57264,-1.34033],[30.55793,-1.30795],[30.56244,-1.29478],[30.55225,-1.25472],[30.50714,-1.17184],[30.49723,-1.16039],[30.4736,-1.15718],[30.47301,-1.1233],[30.4587,-1.12099],[30.45262,-1.08299],[30.47386,-1.05762],[30.49167,-1.06143],[30.51287,-1.07455],[30.54221,-1.07538],[30.58254,-1.05973],[30.64947,-1.06688],[30.66771,-1.05482],[30.67222,-1.04],[30.69496,-1.01313],[30.71572,-1.0143],[30.76548,-0.98369],[30.79909,-0.99937],[34.01135,-0.99957],[34.01833,-1.00279],[34.02805,-1.01356],[34.02827,-1.02549],[34.02786,-1.03334],[34.03089,-1.04051],[34.03769,-1.04596],[34.04587,-1.0466],[34.07969,-1.02155],[35.8564,-2.02381],[37.51227,-2.95293],[37.6733,-3.06109],[37.71202,-3.31141],[37.68562,-3.32299],[37.68529,-3.35081],[37.68092,-3.35666],[37.66402,-3.3584],[37.6177,-3.40357],[37.58444,-3.44068],[37.58656,-3.46282],[37.61578,-3.46293],[37.62489,-3.46847],[37.62602,-3.48631],[37.59677,-3.5223],[37.62335,-3.52796],[37.66778,-3.5062],[37.69003,-3.51889],[37.70109,-3.5296],[37.72313,-3.53757],[37.74524,-3.54528],[37.76199,-3.61671],[37.7856,-3.67718],[38.68495,-4.30718],[39.21428,-4.67826],[39.69966,-4.74546],[50,0],[60,0],[65,-20],[60,-27],[33,-27],[32.89373,-26.857],[32.85914,-26.86327],[32.79796,-26.86423],[32.77661,-26.86151],[32.72848,-26.86675],[32.6982,-26.86832],[32.51572,-26.86371],[32.33186,-26.864],[32.32972,-26.86165],[32.32415,-26.85378],[32.31918,-26.85214],[32.31387,-26.8551],[32.30856,-26.85622],[32.29416,-26.85263],[32.28765,-26.8536],[32.28113,-26.84905],[32.27573,-26.8494],[32.26347,-26.84731],[32.25636,-26.84919],[32.25383,-26.84339],[32.24718,-26.84005],[32.23639,-26.83953],[32.2201,-26.83227],[32.21188,-26.83627],[32.20777,-26.8398],[32.20743,-26.84279],[32.20572,-26.847],[32.20607,-26.85345],[32.20299,-26.85621],[32.1982,-26.8553],[32.18722,-26.86419],[32.15808,-26.85748],[32.14282,-26.8477],[32.14171,-26.84127],[32.13443,-26.83975],[32.13492,-26.5272],[32.07766,-26.40524],[32.07443,-26.30614],[32.10314,-26.17102],[32.08576,-26.02989],[32.08761,-26.00873],[32.03003,-26.00029],[32.01039,-25.99324],[32.00311,-25.99699],[31.97587,-25.95336],[31.93065,-25.8403],[31.97839,-25.693],[31.99642,-25.6763],[32.00587,-25.64505],[32.00535,-25.60474],[32.00038,-25.58516],[31.9954,-25.52621],[31.98006,-25.52419],[31.97712,-25.50908],[31.9781,-25.49283],[31.97736,-25.47441],[31.97903,-25.46668],[31.97897,-25.45803],[31.98615,-25.44354],[31.9899,-25.4303],[32.01453,-25.38638],[32.0268,-25.26211],[32.03629,-25.13251],[31.99736,-24.69592],[32.01061,-24.46112],[31.98542,-24.30632],[31.90735,-24.1803],[31.88421,-23.9553],[31.76758,-23.88479],[31.69765,-23.72385],[31.68961,-23.62814],[31.66392,-23.58777],[31.56131,-23.48194],[31.54837,-23.41635],[31.56368,-23.1869],[31.30724,-22.42436],[31.29489,-22.41034],[31.28854,-22.40492],[31.27635,-22.3849],[31.27618,-22.37924],[31.27087,-22.3685],[31.25799,-22.36284],[31.244,-22.36335],[31.23409,-22.36574],[31.22604,-22.36948],[31.22006,-22.37068],[31.21064,-22.36913],[31.20087,-22.36234],[31.19439,-22.3494],[31.1831,-22.3355],[31.17162,-22.32982],[31.15739,-22.32796],[31.12348,-22.33859],[31.10171,-22.34613],[31.08682,-22.34859],[31.06329,-22.34286],[31.02714,-22.32634],[30.9965,-22.31522],[30.99059,-22.32606],[30.98194,-22.32705],[30.97535,-22.32487],[30.96739,-22.31443],[30.94494,-22.31482],[30.93966,-22.31013],[30.9315,-22.30076],[30.92276,-22.30096],[30.89892,-22.29607],[30.88351,-22.30473],[30.86983,-22.29886],[30.86027,-22.29743],[30.83977,-22.29141],[30.77395,-22.30477],[30.75783,-22.30469],[30.74994,-22.30779],[30.72593,-22.31017],[30.70744,-22.31749],[30.65991,-22.30861],[30.64602,-22.32355],[30.63221,-22.3361],[30.61843,-22.33317],[30.6129,-22.32706],[30.60634,-22.32206],[30.58433,-22.31817],[30.56523,-22.32199],[30.55369,-22.33056],[30.52212,-22.32502],[30.50359,-22.32225],[30.4878,-22.31567],[30.4727,-22.32115],[30.44387,-22.33553],[30.39857,-22.34523],[30.37866,-22.35167],[30.36837,-22.34794],[30.3567,-22.34676],[30.34092,-22.35066],[30.31621,-22.34702],[30.30248,-22.35536],[30.28876,-22.35735],[30.27215,-22.34594],[30.25416,-22.31548],[30.24242,-22.31168],[30.23755,-22.30407],[30.23336,-22.29773],[30.22506,-22.2952],[30.15586,-22.30038],[30.1271,-22.31361],[30.10109,-22.28619],[30.07439,-22.27464],[30.0576,-22.25616],[30.03258,-22.25675],[30.02138,-22.25256],[30.01978,-22.22931],[29.99622,-22.22831],[29.96991,-22.22095],[29.92484,-22.18843],[29.88389,-22.19533],[29.86045,-22.17488],[29.82951,-22.17484],[29.8068,-22.16589],[29.77444,-22.14099],[29.72696,-22.14153],[29.7166,-22.14346],[29.70417,-22.13839],[29.69329,-22.13523],[29.67691,-22.13843],[29.67173,-22.13875],[29.66723,-22.13145],[29.65823,-22.12447],[29.64031,-22.13148],[29.63101,-22.13372],[29.62567,-22.13738],[29.62239,-22.14231],[29.61093,-22.15793],[29.59534,-22.14684],[29.58034,-22.13843],[29.56396,-22.15037],[29.53808,-22.15391],[29.53445,-22.15771],[29.53357,-22.16279],[29.53475,-22.16818],[29.5318,-22.17294],[29.52764,-22.17928],[29.5118,-22.17799],[29.49433,-22.17018],[29.47617,-22.16555],[29.45836,-22.16632],[29.44054,-22.16964],[29.43724,-22.17184],[29.42294,-22.1715],[29.42043,-22.17388],[29.41586,-22.17498],[29.40922,-22.17767],[29.4074,-22.181],[29.37425,-22.19618],[29.35767,-22.19036],[29.34453,-22.1731],[29.32829,-22.15393],[29.31548,-22.14557],[29.28594,-22.12028],[29.28009,-22.10389],[29.26909,-22.07605],[29.24676,-22.06094],[29.21916,-22.07025],[29.19087,-22.07575],[29.15949,-22.07583],[29.1288,-22.07019],[29.09982,-22.05803],[29.07428,-22.04141],[29.05355,-22.02224],[29.03624,-21.99734],[29.02684,-21.97594],[29.02087,-21.95135],[29.01936,-21.92613],[29.02265,-21.90091],[29.03076,-21.87552],[29.04367,-21.85332],[29.05898,-21.83463],[29.07704,-21.81785],[29.06394,-21.80198],[29.04736,-21.80008],[29.0356,-21.79626],[29.02417,-21.79181],[29.00657,-21.78927],[28.99952,-21.7708],[28.98535,-21.76826],[28.96225,-21.77592],[28.89044,-21.76006],[28.87889,-21.76007],[28.87489,-21.75753],[28.86918,-21.75531],[28.8614,-21.75627],[28.84276,-21.74099],[28.82962,-21.73463],[28.82205,-21.7329],[28.798,-21.73308],[28.78752,-21.72568],[28.77773,-21.71508],[28.76004,-21.70991],[28.74785,-21.70155],[28.70799,-21.68979],[28.67226,-21.67804],[28.66399,-21.6741],[28.65229,-21.65485],[28.63614,-21.65032],[28.62635,-21.6503],[28.61312,-21.6458],[28.59594,-21.64351],[28.58701,-21.63344],[28.57739,-21.6291],[28.57328,-21.6295],[28.5599,-21.64183],[28.55476,-21.64395],[28.53968,-21.64156],[28.52357,-21.65991],[28.50678,-21.66997],[28.49562,-21.66706],[28.48722,-21.66223],[28.47247,-21.65833],[28.45704,-21.6541],[28.44572,-21.64158],[28.43423,-21.63767],[28.42471,-21.63668],[28.41519,-21.63377],[28.40302,-21.62635],[28.3959,-21.62424],[28.38947,-21.61766],[28.36985,-21.60577],[28.36278,-21.60175],[28.35709,-21.60538],[28.35071,-21.60886],[28.33952,-21.60212],[28.33142,-21.59793],[28.31646,-21.59693],[28.30439,-21.59479],[28.29389,-21.58892],[28.28613,-21.592],[28.2538,-21.59528],[28.24551,-21.59728],[28.2205,-21.59801],[28.20099,-21.60385],[28.17941,-21.59692],[28.14617,-21.59318],[28.13118,-21.58652],[28.11687,-21.58561],[28.09879,-21.57799],[28.09032,-21.58187],[28.07893,-21.58431],[28.07373,-21.58101],[28.0668,-21.57834],[28.05027,-21.58014],[28.02038,-21.57608],[28.00724,-21.55586],[28.00781,-21.54724],[28.00254,-21.53942],[27.99539,-21.5324],[27.99372,-21.52539],[27.99712,-21.52244],[28.00086,-21.52141],[28.00389,-21.51647],[27.99037,-21.51634],[27.98258,-21.51595],[27.97684,-21.52514],[27.97043,-21.51805],[27.97546,-21.50716],[27.97294,-21.49754],[27.98059,-21.49172],[27.98345,-21.48463],[27.95949,-21.4751],[27.96399,-21.46522],[27.97674,-21.46046],[27.96548,-21.4391],[27.95149,-21.43053],[27.9592,-21.41594],[27.9444,-21.38421],[27.91894,-21.36806],[27.92094,-21.32889],[27.80409,-21.18017],[27.79273,-21.1814],[27.77313,-21.15702],[27.75316,-21.15179],[27.69611,-21.09092],[27.68887,-21.05536],[27.70361,-21.0403],[27.6998,-21.00345],[27.70973,-20.99993],[27.69768,-20.98615],[27.70761,-20.95955],[27.6897,-20.93778],[27.69651,-20.90061],[27.69096,-20.87114],[27.71288,-20.84423],[27.71791,-20.79579],[27.72935,-20.79645],[27.73164,-20.70672],[27.7036,-20.66329],[27.70577,-20.60445],[27.7266,-20.5613],[27.7298,-20.51873],[27.68402,-20.48504],[27.67462,-20.49474],[27.64806,-20.4993],[27.62377,-20.47946],[27.60222,-20.47957],[27.57519,-20.49511],[27.54815,-20.48363],[27.52112,-20.47859],[27.46979,-20.46722],[27.43494,-20.48158],[27.38594,-20.47912],[27.36165,-20.46764],[27.28783,-20.49894],[27.28406,-20.48817],[27.29813,-20.42465],[27.29608,-20.35937],[27.30432,-20.33052],[27.29943,-20.29724],[27.28835,-20.28071],[27.29093,-20.27082],[27.28509,-20.23302],[27.27677,-20.22268],[27.2657,-20.21492],[27.26698,-20.2004],[27.26003,-20.18329],[27.25025,-20.16713],[27.24733,-20.14581],[27.23222,-20.11855],[27.22261,-20.10943],[27.21849,-20.09644],[27.20613,-20.08086],[27.18485,-20.0756],[27.14434,-20.08066],[27.11241,-20.06578],[27.09559,-20.0496],[27.08477,-20.03197],[27.04374,-20.00789],[27.02881,-20.01026],[27.00564,-20.00747],[26.99259,-20.01308],[26.97139,-20.01476],[26.91586,-19.98934],[26.9023,-19.97979],[26.87801,-19.97276],[26.8496,-19.96315],[26.82737,-19.96192],[26.79909,-19.94905],[26.77905,-19.94392],[26.75356,-19.93544],[26.72532,-19.93987],[26.70292,-19.89847],[26.70386,-19.88935],[26.63915,-19.87175],[26.6225,-19.88385],[26.60593,-19.86035],[26.59349,-19.83815],[26.57958,-19.79504],[26.56225,-19.78293],[26.53847,-19.78269],[26.53529,-19.77083],[26.51512,-19.76922],[26.50435,-19.76066],[26.48672,-19.75727],[26.47114,-19.75259],[26.45281,-19.75308],[26.4299,-19.74501],[26.41659,-19.7308],[26.41016,-19.71013],[26.40441,-19.69204],[26.39535,-19.683],[26.38904,-19.66878],[26.35394,-19.67543],[26.32677,-19.66194],[26.32845,-19.65233],[26.34003,-19.63052],[26.35711,-19.61389],[26.32991,-19.59725],[26.31231,-19.57674],[26.25214,-19.58534],[26.23779,-19.58328],[26.21519,-19.56311],[26.20543,-19.56065],[26.18879,-19.55302],[26.16788,-19.54423],[26.16176,-19.52277],[26.15258,-19.49425],[26.14203,-19.43726],[26.12667,-19.42753],[26.11131,-19.3647],[26.09526,-19.34559],[26.08882,-19.32259],[26.07415,-19.29506],[26.07183,-19.27141],[26.06214,-19.263],[26.0442,-19.23515],[26.04403,-19.21184],[25.97916,-19.13152],[25.96149,-19.10078],[25.96579,-19.06355],[25.99637,-19.03062],[25.99124,-19.00809],[25.98474,-18.97386],[25.97531,-18.96048],[25.96863,-18.94191],[25.95389,-18.91645],[25.94088,-18.9032],[25.92411,-18.89938],[25.9087,-18.88776],[25.8727,-18.86055],[25.84234,-18.84824],[25.82434,-18.83334],[25.82053,-18.80658],[25.80711,-18.79153],[25.7885,-18.72112],[25.79325,-18.69492],[25.80348,-18.68693],[25.791,-18.6651],[25.78401,-18.62506],[25.77573,-18.61603],[25.76746,-18.6135],[25.75644,-18.60317],[25.74268,-18.59934],[25.72995,-18.59226],[25.71721,-18.59169],[25.70136,-18.57753],[25.69102,-18.57078],[25.68069,-18.55751],[25.67072,-18.54404],[25.66487,-18.52797],[25.65591,-18.51927],[25.64754,-18.49616],[25.60828,-18.4836],[25.57176,-18.43392],[25.51464,-18.37641],[25.51795,-18.36582],[25.49036,-18.2982],[25.45528,-18.24222],[25.45727,-18.22928],[25.44739,-18.21716],[25.44574,-18.20765],[25.43283,-18.18731],[25.41251,-18.14926],[25.3911,-18.11752],[25.37254,-18.12046],[25.36498,-18.11385],[25.36429,-18.10071],[25.35467,-18.0901],[25.32167,-18.0777],[25.3148,-18.06076],[25.30381,-18.05101],[25.28457,-18.01584],[25.28113,-18.00417],[25.2818,-17.98988],[25.26641,-17.95014],[25.25376,-17.94306],[25.23812,-17.91286],[25.24308,-17.89965],[25.238,-17.88781],[25.23842,-17.87467],[25.26482,-17.81491],[25.26375,-17.79176],[25.22304,-17.76755],[25.19074,-17.76934],[25.18546,-17.76478],[25.18018,-17.75859],[25.17662,-17.75256],[25.1679,-17.74522],[25.15923,-17.74477],[25.15604,-17.74138],[25.1554,-17.73706],[25.15921,-17.73275],[25.16114,-17.72942],[25.16135,-17.72347],[25.15697,-17.71419],[25.15156,-17.70622],[25.14879,-17.70441],[25.14508,-17.70416],[25.14233,-17.70538],[25.13853,-17.71151],[25.13517,-17.71216],[25.13308,-17.7092],[25.13587,-17.70036],[25.13408,-17.69404],[25.12508,-17.69213],[25.12015,-17.69378],[25.11111,-17.70197],[25.10629,-17.70655],[25.09923,-17.71016],[25.09422,-17.70886],[25.09334,-17.70387],[25.09804,-17.6996],[25.10059,-17.69723],[25.1016,-17.69419],[25.10448,-17.68682],[25.10924,-17.68009],[25.10834,-17.67615],[25.10401,-17.67417],[25.10722,-17.66729],[25.10426,-17.66563],[25.10066,-17.66298],[25.09293,-17.66426],[25.08503,-17.66027],[25.08366,-17.64116],[25.07576,-17.63599],[25.06915,-17.63519],[25.06585,-17.62988],[25.06598,-17.62392],[25.06765,-17.61566],[25.06108,-17.61461],[25.0552,-17.61388],[25.05688,-17.62362],[25.05474,-17.62906],[25.04849,-17.63156],[25.0431,-17.62849],[25.04217,-17.62281],[25.04685,-17.61366],[25.05176,-17.59927],[25.04751,-17.58949],[25.02555,-17.58426],[25.02372,-17.59266],[25.01775,-17.59613],[25.00697,-17.59796],[24.99665,-17.59057],[24.99113,-17.57827],[24.98905,-17.5627],[24.9801,-17.55368],[24.97329,-17.55226],[24.96374,-17.56394],[24.95281,-17.56514],[24.94326,-17.57027],[24.94126,-17.55708],[24.9475,-17.54911],[24.94076,-17.54759],[24.91148,-17.55437],[24.9028,-17.55198],[24.8956,-17.54572],[24.88102,-17.52703],[24.87626,-17.52672],[24.86978,-17.52869],[24.85665,-17.53019],[24.84069,-17.52563],[24.82971,-17.51943],[24.8097,-17.53047],[24.80197,-17.53725],[24.79587,-17.5368],[24.79098,-17.53487],[24.78865,-17.53008],[24.78599,-17.5135],[24.78048,-17.508],[24.7768,-17.50835],[24.77071,-17.51313],[24.76497,-17.5175],[24.75974,-17.51793],[24.75119,-17.51314],[24.74488,-17.51258],[24.72724,-17.50007],[24.70672,-17.49683],[24.69495,-17.50079],[24.67906,-17.50058],[24.66599,-17.49862],[24.66356,-17.49699],[24.6571,-17.49499],[24.64901,-17.49602],[24.64223,-17.49671],[24.63716,-17.50066],[24.63724,-17.50397],[24.64179,-17.5094],[24.64249,-17.51262],[24.64095,-17.51438],[24.63778,-17.5149],[24.63462,-17.51346],[24.62829,-17.51165],[24.62178,-17.51491],[24.6186,-17.52239],[24.61795,-17.5299],[24.60769,-17.53609],[24.58716,-17.53408],[24.57299,-17.53681],[24.56522,-17.5385],[24.55608,-17.53889],[24.55242,-17.53289],[24.55083,-17.52492],[24.54958,-17.51434],[24.54627,-17.50899],[24.53605,-17.50732],[24.52342,-17.51497],[24.50956,-17.51348],[24.48985,-17.49856],[24.4753,-17.48741],[24.45937,-17.48051],[24.44898,-17.47891],[24.43206,-17.47928],[24.39033,-17.46954],[24.36113,-17.47814],[24.33193,-17.49198],[24.32428,-17.49249],[24.31012,-17.48645],[24.28007,-17.4842],[24.275,-17.48684],[24.27199,-17.49112],[24.26182,-17.48892],[24.2537,-17.48115],[24.24949,-17.47446],[23.43401,-17.63702]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Brunei#VK9C", "itu_zone_number": 54 }, "geometry": { "type": "Polygon", "coordinates": [[[90,-13],[115,-13],[129,-10],[130,-10],[130,2.5],[127.00219,5.5],[119.1477,4.19658],[118.98877,4.79656],[119.45312,5.3708],[118.13962,6.04534],[117.93055,6.61753],[117.35361,7.39417],[116.78216,7.66089],[114.75624,5.79238],[108.53354,6.87119],[102.13866,6.2691],[102.09119,6.23429],[102.0805,6.22507],[102.07927,6.17131],[102.08484,6.16082],[102.09315,6.14486],[102.07803,6.12609],[102.06154,6.10185],[102.05328,6.08069],[102.03158,6.06636],[102.02091,6.05339],[102.00425,6.05237],[102.00278,6.04025],[101.98896,6.04042],[101.97916,6.02779],[101.97349,6.0097],[101.94205,5.98017],[101.94494,5.95337],[101.93013,5.94621],[101.93192,5.92581],[101.92527,5.92312],[101.92135,5.91087],[101.9318,5.90832],[101.94156,5.89074],[101.94171,5.86907],[101.93123,5.86079],[101.92898,5.85251],[101.91488,5.84142],[101.89666,5.84399],[101.89115,5.83724],[101.88701,5.84005],[101.87597,5.8197],[101.88,5.81044],[101.87236,5.80391],[101.86334,5.80148],[101.86812,5.7921],[101.85266,5.79219],[101.8372,5.78818],[101.82275,5.76104],[101.82376,5.73287],[101.81624,5.73305],[101.81128,5.74082],[101.79259,5.75406],[101.77305,5.77098],[101.77823,5.78243],[101.75502,5.79816],[101.73689,5.78144],[101.72996,5.78272],[101.72439,5.77991],[101.71739,5.78794],[101.71711,5.76575],[101.70846,5.7602],[101.70393,5.75192],[101.69349,5.75312],[101.68717,5.76235],[101.68909,5.77978],[101.67783,5.77911],[101.66725,5.79825],[101.6654,5.81123],[101.65942,5.81056],[101.65846,5.83687],[101.66279,5.84593],[101.6575,5.85635],[101.66271,5.86422],[101.65557,5.87619],[101.63899,5.86856],[101.62515,5.87527],[101.62298,5.89428],[101.61572,5.90037],[101.61533,5.91056],[101.60904,5.91488],[101.59726,5.91238],[101.59034,5.91932],[101.58892,5.929],[101.58195,5.93332],[101.57257,5.92484],[101.55908,5.91772],[101.54627,5.92153],[101.52522,5.90759],[101.525,5.89959],[101.51516,5.90389],[101.50235,5.89062],[101.49595,5.88092],[101.48543,5.87941],[101.48498,5.8682],[101.475,5.86719],[101.46364,5.87301],[101.45329,5.86415],[101.4367,5.86831],[101.42081,5.87382],[101.39392,5.87251],[101.38616,5.85076],[101.37153,5.83175],[101.35821,5.83061],[101.349,5.82537],[101.34639,5.81147],[101.33793,5.80826],[101.32397,5.81324],[101.31391,5.8027],[101.3051,5.81281],[101.2908,5.81608],[101.26769,5.80759],[101.26017,5.787],[101.26053,5.7767],[101.25677,5.7746],[101.24997,5.76074],[101.25759,5.75097],[101.25591,5.74267],[101.26133,5.73479],[101.2585,5.72691],[101.26247,5.71798],[101.251,5.70848],[101.25144,5.69963],[101.24549,5.69794],[101.2464,5.69215],[101.23445,5.68683],[101.21742,5.68575],[101.2216,5.67701],[101.21546,5.66307],[101.20483,5.6602],[101.19832,5.64982],[101.17642,5.64859],[101.16962,5.64395],[101.16625,5.63214],[101.15327,5.62306],[101.14578,5.62149],[101.14479,5.61319],[101.13555,5.61309],[101.12283,5.66182],[101.11279,5.67844],[101.09862,5.6896],[101.09913,5.70234],[101.05963,5.74218],[101.03798,5.73693],[100.98436,5.80612],[100.99807,5.81556],[101.01179,5.83456],[101.00697,5.85089],[101.0104,5.87132],[101.02962,5.90063],[101.02686,5.91218],[101.03956,5.91502],[101.055,5.9083],[101.06253,5.91945],[101.07694,5.91694],[101.08447,5.90623],[101.087,5.92606],[101.09913,5.93906],[101.09594,5.95004],[101.11266,5.96034],[101.12526,5.97883],[101.11005,5.9898],[101.10858,6.0281],[101.11672,6.03498],[101.10288,6.05142],[101.11339,6.07014],[101.1184,6.09023],[101.12616,6.09256],[101.1298,6.10582],[101.11857,6.11159],[101.10734,6.11327],[101.10504,6.12177],[101.08901,6.13165],[101.05784,6.14109],[101.07676,6.16117],[101.07645,6.17033],[101.08781,6.17608],[101.09917,6.17773],[101.1171,6.18171],[101.12403,6.19252],[101.10502,6.23886],[101.11165,6.25008],[101.09906,6.26131],[101.0614,6.25581],[101.02787,6.24348],[101.01572,6.2475],[100.98526,6.27532],[100.96853,6.28404],[100.96643,6.27173],[100.94786,6.26216],[100.94231,6.23891],[100.91472,6.24839],[100.90112,6.23165],[100.89165,6.2463],[100.87133,6.26333],[100.87024,6.24076],[100.85404,6.22912],[100.834,6.2932],[100.84829,6.31223],[100.82607,6.35576],[100.81917,6.36757],[100.82326,6.37939],[100.82457,6.40575],[100.81345,6.44209],[100.79204,6.44841],[100.7775,6.46155],[100.77108,6.45703],[100.75505,6.45525],[100.74497,6.47078],[100.73832,6.48904],[100.7453,6.49817],[100.73854,6.51139],[100.73187,6.50406],[100.73069,6.49673],[100.72421,6.49435],[100.71925,6.48634],[100.71018,6.48105],[100.70988,6.47185],[100.70054,6.46989],[100.69531,6.4652],[100.68624,6.46538],[100.68319,6.45345],[100.66092,6.44902],[100.65238,6.44187],[100.64123,6.44819],[100.64518,6.45724],[100.62029,6.45673],[100.61188,6.46578],[100.59592,6.4762],[100.57584,6.47979],[100.56314,6.49379],[100.54701,6.48631],[100.51714,6.48837],[100.49552,6.50613],[100.49587,6.51979],[100.48471,6.52475],[100.47218,6.52015],[100.45811,6.53143],[100.44867,6.52683],[100.43511,6.5236],[100.4231,6.51714],[100.40886,6.52892],[100.39324,6.5366],[100.37419,6.54429],[100.36749,6.53833],[100.35968,6.5495],[100.35874,6.55659],[100.35162,6.56981],[100.3445,6.57757],[100.33531,6.58534],[100.32476,6.58492],[100.31489,6.60087],[100.30227,6.60863],[100.32442,6.61902],[100.31901,6.63888],[100.32111,6.65563],[100.32734,6.66284],[100.30648,6.6694],[100.30292,6.6795],[100.29112,6.68141],[100.29335,6.7109],[100.26399,6.70152],[100.25687,6.70978],[100.24013,6.69213],[100.21971,6.69844],[100.21499,6.71727],[100.2034,6.7252],[100.19001,6.71802],[100.17113,6.69311],[100.17817,6.68066],[100.17971,6.66821],[100.17989,6.65507],[100.16907,6.64739],[100.16804,6.61395],[100.1792,6.60064],[100.17929,6.59058],[100.18349,6.57369],[100.17457,6.56684],[100.1581,6.5777],[100.1605,6.5596],[100.15329,6.55923],[100.1569,6.53858],[100.15639,6.52202],[100.16137,6.50205],[100.15948,6.48345],[100.15399,6.47756],[100.15261,6.47167],[100.143,6.46398],[100.1485,6.45133],[100.13579,6.44501],[100.13408,6.43049],[100.11966,6.42331],[99.86587,6.52268],[99.58333,6.45833],[90,6.45833],[90,-13]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Australia#VK4", "itu_zone_number": 55 }, "geometry": { "type": "Polygon", "coordinates": [[[130,-10],[129,-10],[129,-26],[140.97138,-26],[140.97958,-28.99379],[148.95372,-29.0002],[148.96602,-28.99178],[148.97077,-28.97916],[148.97723,-28.97495],[148.98713,-28.97374],[148.99191,-28.97178],[149.0015,-28.97162],[149.00559,-28.96066],[149.00968,-28.9575],[149.01497,-28.95584],[149.01958,-28.95899],[149.02418,-28.95493],[149.03016,-28.95628],[149.03535,-28.9528],[149.03435,-28.94632],[149.03918,-28.94038],[149.04332,-28.93924],[149.04541,-28.93156],[149.04308,-28.92821],[149.04741,-28.92533],[149.04761,-28.91825],[149.05737,-28.91065],[149.05618,-28.90114],[149.05937,-28.89728],[149.05912,-28.89342],[149.06431,-28.88822],[149.05301,-28.88632],[149.06095,-28.87901],[149.07014,-28.87226],[149.07336,-28.86107],[149.08001,-28.8577],[149.08123,-28.843],[149.09618,-28.83251],[149.10215,-28.8332],[149.10331,-28.83749],[149.11511,-28.83036],[149.12761,-28.83525],[149.14375,-28.82144],[149.13723,-28.81243],[149.14239,-28.80734],[149.15389,-28.8093],[149.16033,-28.80999],[149.16197,-28.80706],[149.17777,-28.80334],[149.18671,-28.79065],[149.18843,-28.78069],[149.19426,-28.77254],[149.25026,-28.74536],[149.298,-28.71096],[149.35505,-28.68791],[149.38463,-28.69499],[149.43529,-28.63952],[149.43376,-28.62262],[149.45679,-28.59243],[149.50079,-28.5788],[149.57775,-28.57724],[149.59252,-28.57553],[149.61278,-28.60277],[149.63408,-28.59695],[149.64989,-28.61525],[149.66482,-28.615],[149.67152,-28.63404],[149.7014,-28.63113],[149.70897,-28.61688],[149.79069,-28.61227],[149.86625,-28.61028],[149.89443,-28.62397],[149.91127,-28.61393],[149.94184,-28.61354],[149.97927,-28.60953],[150.0222,-28.58141],[150.0514,-28.58946],[150.09071,-28.57901],[150.09707,-28.56615],[150.1613,-28.55603],[150.2118,-28.57244],[150.25955,-28.5418],[150.32103,-28.54012],[150.37087,-28.62043],[150.40952,-28.63286],[150.4262,-28.65733],[150.52939,-28.65349],[150.52606,-28.66964],[150.54745,-28.67615],[150.55177,-28.65785],[150.58237,-28.65629],[150.60591,-28.67358],[150.6322,-28.67641],[150.67419,-28.65641],[150.74051,-28.63548],[150.86725,-28.68685],[150.89079,-28.70109],[150.9061,-28.68882],[150.92954,-28.70858],[150.93651,-28.73076],[150.97781,-28.73487],[150.99846,-28.73812],[151.01636,-28.75342],[151.02174,-28.79651],[151.03953,-28.7976],[151.03607,-28.82702],[151.04359,-28.842],[151.0621,-28.84766],[151.09709,-28.83648],[151.12522,-28.85537],[151.16158,-28.86705],[151.17307,-28.87859],[151.20103,-28.88533],[151.21027,-28.90121],[151.237,-28.90652],[151.24398,-28.92836],[151.28117,-28.943],[151.27441,-29.0273],[151.28963,-29.05637],[151.27258,-29.09323],[151.30771,-29.12529],[151.31401,-29.16334],[151.34502,-29.18461],[151.3968,-29.17045],[151.42662,-29.14669],[151.46879,-29.10254],[151.49997,-29.07519],[151.48818,-29.03609],[151.5478,-28.95137],[151.60991,-28.92431],[151.63907,-28.92369],[151.68608,-28.89062],[151.72759,-28.87438],[151.77554,-28.95608],[151.80538,-28.94765],[151.83796,-28.96566],[151.8537,-28.90555],[151.92437,-28.92356],[152.00602,-28.9031],[152.02856,-28.88752],[152.04012,-28.85752],[152.01929,-28.84561],[152.03428,-28.83003],[152.04103,-28.77114],[152.04504,-28.72908],[152.07376,-28.7063],[152.0582,-28.66995],[152.00693,-28.66492],[151.99228,-28.59222],[151.95566,-28.55809],[151.96023,-28.51431],[151.97746,-28.50329],[151.99156,-28.52915],[152.0194,-28.52123],[152.06821,-28.47158],[152.12526,-28.45815],[152.17407,-28.42539],[152.22013,-28.45059],[152.23735,-28.41542],[152.2738,-28.39715],[152.31923,-28.36364],[152.38664,-28.36879],[152.41622,-28.33571],[152.41284,-28.2978],[152.44654,-28.29859],[152.45516,-28.26149],[152.50222,-28.24616],[152.53541,-28.26421],[152.5274,-28.30887],[152.57844,-28.34022],[152.613,-28.27242],[152.67662,-28.33029],[152.74849,-28.36157],[152.77625,-28.34612],[152.80125,-28.35726],[152.82625,-28.32126],[152.86499,-28.30943],[152.9348,-28.33466],[153.03482,-28.34296],[153.10463,-28.35852],[153.13702,-28.31331],[153.1694,-28.29228],[153.17924,-28.25022],[153.23148,-28.26511],[153.24387,-28.24474],[153.29197,-28.23646],[153.3291,-28.23562],[153.3408,-28.24973],[153.36349,-28.25173],[153.39582,-28.22851],[153.42266,-28.19561],[153.43975,-28.18648],[153.45753,-28.18037],[153.4657,-28.16458],[153.48005,-28.15544],[153.4983,-28.16128],[153.53446,-28.1769],[153.54204,-28.16915],[153.55168,-28.16473],[154,-28],[154,-12.08162],[144.88891,-12.00696],[144.32409,-9.26347],[142.62997,-9.35315],[142.17979,-9.18656],[142.06744,-9.24768],[130,-10]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**New Caledonia#FK/C", "itu_zone_number": 56 }, "geometry": { "type": "Polygon", "coordinates": [[[154,-28],[154,-12],[178,-12],[183,-16],[183,-22],[180,-22],[180,-28],[154,-28]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Botswana#V5", "itu_zone_number": 57 }, "geometry": { "type": "Polygon", "coordinates": [[[5,-17],[5,-20],[20,-50],[40,-50],[40,-27],[33,-27],[32.89373,-26.857],[32.85914,-26.86327],[32.79796,-26.86423],[32.77661,-26.86151],[32.72848,-26.86675],[32.6982,-26.86832],[32.51572,-26.86371],[32.33186,-26.864],[32.32972,-26.86165],[32.32415,-26.85378],[32.31918,-26.85214],[32.31387,-26.8551],[32.30856,-26.85622],[32.29416,-26.85263],[32.28765,-26.8536],[32.28113,-26.84905],[32.27573,-26.8494],[32.26347,-26.84731],[32.25636,-26.84919],[32.25383,-26.84339],[32.24718,-26.84005],[32.23639,-26.83953],[32.2201,-26.83227],[32.21188,-26.83627],[32.20777,-26.8398],[32.20743,-26.84279],[32.20572,-26.847],[32.20607,-26.85345],[32.20299,-26.85621],[32.1982,-26.8553],[32.18722,-26.86419],[32.15808,-26.85748],[32.14282,-26.8477],[32.14171,-26.84127],[32.13443,-26.83975],[32.13492,-26.5272],[32.07766,-26.40524],[32.07443,-26.30614],[32.10314,-26.17102],[32.08576,-26.02989],[32.08761,-26.00873],[32.03003,-26.00029],[32.01039,-25.99324],[32.00311,-25.99699],[31.97587,-25.95336],[31.93065,-25.8403],[31.97839,-25.693],[31.99642,-25.6763],[32.00587,-25.64505],[32.00535,-25.60474],[32.00038,-25.58516],[31.9954,-25.52621],[31.98006,-25.52419],[31.97712,-25.50908],[31.9781,-25.49283],[31.97736,-25.47441],[31.97903,-25.46668],[31.97897,-25.45803],[31.98615,-25.44354],[31.9899,-25.4303],[32.01453,-25.38638],[32.0268,-25.26211],[32.03629,-25.13251],[31.99736,-24.69592],[32.01061,-24.46112],[31.98542,-24.30632],[31.90735,-24.1803],[31.88421,-23.9553],[31.76758,-23.88479],[31.69765,-23.72385],[31.68961,-23.62814],[31.66392,-23.58777],[31.56131,-23.48194],[31.54837,-23.41635],[31.56368,-23.1869],[31.30724,-22.42436],[31.29489,-22.41034],[31.28854,-22.40492],[31.27635,-22.3849],[31.27618,-22.37924],[31.27087,-22.3685],[31.25799,-22.36284],[31.244,-22.36335],[31.23409,-22.36574],[31.22604,-22.36948],[31.22006,-22.37068],[31.21064,-22.36913],[31.20087,-22.36234],[31.19439,-22.3494],[31.1831,-22.3355],[31.17162,-22.32982],[31.15739,-22.32796],[31.12348,-22.33859],[31.10171,-22.34613],[31.08682,-22.34859],[31.06329,-22.34286],[31.02714,-22.32634],[30.9965,-22.31522],[30.99059,-22.32606],[30.98194,-22.32705],[30.97535,-22.32487],[30.96739,-22.31443],[30.94494,-22.31482],[30.93966,-22.31013],[30.9315,-22.30076],[30.92276,-22.30096],[30.89892,-22.29607],[30.88351,-22.30473],[30.86983,-22.29886],[30.86027,-22.29743],[30.83977,-22.29141],[30.77395,-22.30477],[30.75783,-22.30469],[30.74994,-22.30779],[30.72593,-22.31017],[30.70744,-22.31749],[30.65991,-22.30861],[30.64602,-22.32355],[30.63221,-22.3361],[30.61843,-22.33317],[30.6129,-22.32706],[30.60634,-22.32206],[30.58433,-22.31817],[30.56523,-22.32199],[30.55369,-22.33056],[30.52212,-22.32502],[30.50359,-22.32225],[30.4878,-22.31567],[30.4727,-22.32115],[30.44387,-22.33553],[30.39857,-22.34523],[30.37866,-22.35167],[30.36837,-22.34794],[30.3567,-22.34676],[30.34092,-22.35066],[30.31621,-22.34702],[30.30248,-22.35536],[30.28876,-22.35735],[30.27215,-22.34594],[30.25416,-22.31548],[30.24242,-22.31168],[30.23755,-22.30407],[30.23336,-22.29773],[30.22506,-22.2952],[30.15586,-22.30038],[30.1271,-22.31361],[30.10109,-22.28619],[30.07439,-22.27464],[30.0576,-22.25616],[30.03258,-22.25675],[30.02138,-22.25256],[30.01978,-22.22931],[29.99622,-22.22831],[29.96991,-22.22095],[29.92484,-22.18843],[29.88389,-22.19533],[29.86045,-22.17488],[29.82951,-22.17484],[29.8068,-22.16589],[29.77444,-22.14099],[29.72696,-22.14153],[29.7166,-22.14346],[29.70417,-22.13839],[29.69329,-22.13523],[29.67691,-22.13843],[29.67173,-22.13875],[29.66723,-22.13145],[29.65823,-22.12447],[29.64031,-22.13148],[29.63101,-22.13372],[29.62567,-22.13738],[29.62239,-22.14231],[29.61093,-22.15793],[29.59534,-22.14684],[29.58034,-22.13843],[29.56396,-22.15037],[29.53808,-22.15391],[29.53445,-22.15771],[29.53357,-22.16279],[29.53475,-22.16818],[29.5318,-22.17294],[29.52764,-22.17928],[29.5118,-22.17799],[29.49433,-22.17018],[29.47617,-22.16555],[29.45836,-22.16632],[29.44054,-22.16964],[29.43724,-22.17184],[29.42294,-22.1715],[29.42043,-22.17388],[29.41586,-22.17498],[29.40922,-22.17767],[29.4074,-22.181],[29.37425,-22.19618],[29.35767,-22.19036],[29.34453,-22.1731],[29.32829,-22.15393],[29.31548,-22.14557],[29.28594,-22.12028],[29.28009,-22.10389],[29.26909,-22.07605],[29.24676,-22.06094],[29.21916,-22.07025],[29.19087,-22.07575],[29.15949,-22.07583],[29.1288,-22.07019],[29.09982,-22.05803],[29.07428,-22.04141],[29.05355,-22.02224],[29.03624,-21.99734],[29.02684,-21.97594],[29.02087,-21.95135],[29.01936,-21.92613],[29.02265,-21.90091],[29.03076,-21.87552],[29.04367,-21.85332],[29.05898,-21.83463],[29.07704,-21.81785],[29.06394,-21.80198],[29.04736,-21.80008],[29.0356,-21.79626],[29.02417,-21.79181],[29.00657,-21.78927],[28.99952,-21.7708],[28.98535,-21.76826],[28.96225,-21.77592],[28.89044,-21.76006],[28.87889,-21.76007],[28.87489,-21.75753],[28.86918,-21.75531],[28.8614,-21.75627],[28.84276,-21.74099],[28.82962,-21.73463],[28.82205,-21.7329],[28.798,-21.73308],[28.78752,-21.72568],[28.77773,-21.71508],[28.76004,-21.70991],[28.74785,-21.70155],[28.70799,-21.68979],[28.67226,-21.67804],[28.66399,-21.6741],[28.65229,-21.65485],[28.63614,-21.65032],[28.62635,-21.6503],[28.61312,-21.6458],[28.59594,-21.64351],[28.58701,-21.63344],[28.57739,-21.6291],[28.57328,-21.6295],[28.5599,-21.64183],[28.55476,-21.64395],[28.53968,-21.64156],[28.52357,-21.65991],[28.50678,-21.66997],[28.49562,-21.66706],[28.48722,-21.66223],[28.47247,-21.65833],[28.45704,-21.6541],[28.44572,-21.64158],[28.43423,-21.63767],[28.42471,-21.63668],[28.41519,-21.63377],[28.40302,-21.62635],[28.3959,-21.62424],[28.38947,-21.61766],[28.36985,-21.60577],[28.36278,-21.60175],[28.35709,-21.60538],[28.35071,-21.60886],[28.33952,-21.60212],[28.33142,-21.59793],[28.31646,-21.59693],[28.30439,-21.59479],[28.29389,-21.58892],[28.28613,-21.592],[28.2538,-21.59528],[28.24551,-21.59728],[28.2205,-21.59801],[28.20099,-21.60385],[28.17941,-21.59692],[28.14617,-21.59318],[28.13118,-21.58652],[28.11687,-21.58561],[28.09879,-21.57799],[28.09032,-21.58187],[28.07893,-21.58431],[28.07373,-21.58101],[28.0668,-21.57834],[28.05027,-21.58014],[28.02038,-21.57608],[28.00724,-21.55586],[28.00781,-21.54724],[28.00254,-21.53942],[27.99539,-21.5324],[27.99372,-21.52539],[27.99712,-21.52244],[28.00086,-21.52141],[28.00389,-21.51647],[27.99037,-21.51634],[27.98258,-21.51595],[27.97684,-21.52514],[27.97043,-21.51805],[27.97546,-21.50716],[27.97294,-21.49754],[27.98059,-21.49172],[27.98345,-21.48463],[27.95949,-21.4751],[27.96399,-21.46522],[27.97674,-21.46046],[27.96548,-21.4391],[27.95149,-21.43053],[27.9592,-21.41594],[27.9444,-21.38421],[27.91894,-21.36806],[27.92094,-21.32889],[27.80409,-21.18017],[27.79273,-21.1814],[27.77313,-21.15702],[27.75316,-21.15179],[27.69611,-21.09092],[27.68887,-21.05536],[27.70361,-21.0403],[27.6998,-21.00345],[27.70973,-20.99993],[27.69768,-20.98615],[27.70761,-20.95955],[27.6897,-20.93778],[27.69651,-20.90061],[27.69096,-20.87114],[27.71288,-20.84423],[27.71791,-20.79579],[27.72935,-20.79645],[27.73164,-20.70672],[27.7036,-20.66329],[27.70577,-20.60445],[27.7266,-20.5613],[27.7298,-20.51873],[27.68402,-20.48504],[27.67462,-20.49474],[27.64806,-20.4993],[27.62377,-20.47946],[27.60222,-20.47957],[27.57519,-20.49511],[27.54815,-20.48363],[27.52112,-20.47859],[27.46979,-20.46722],[27.43494,-20.48158],[27.38594,-20.47912],[27.36165,-20.46764],[27.28783,-20.49894],[27.28406,-20.48817],[27.29813,-20.42465],[27.29608,-20.35937],[27.30432,-20.33052],[27.29943,-20.29724],[27.28835,-20.28071],[27.29093,-20.27082],[27.28509,-20.23302],[27.27677,-20.22268],[27.2657,-20.21492],[27.26698,-20.2004],[27.26003,-20.18329],[27.25025,-20.16713],[27.24733,-20.14581],[27.23222,-20.11855],[27.22261,-20.10943],[27.21849,-20.09644],[27.20613,-20.08086],[27.18485,-20.0756],[27.14434,-20.08066],[27.11241,-20.06578],[27.09559,-20.0496],[27.08477,-20.03197],[27.04374,-20.00789],[27.02881,-20.01026],[27.00564,-20.00747],[26.99259,-20.01308],[26.97139,-20.01476],[26.91586,-19.98934],[26.9023,-19.97979],[26.87801,-19.97276],[26.8496,-19.96315],[26.82737,-19.96192],[26.79909,-19.94905],[26.77905,-19.94392],[26.75356,-19.93544],[26.72532,-19.93987],[26.70292,-19.89847],[26.70386,-19.88935],[26.63915,-19.87175],[26.6225,-19.88385],[26.60593,-19.86035],[26.59349,-19.83815],[26.57958,-19.79504],[26.56225,-19.78293],[26.53847,-19.78269],[26.53529,-19.77083],[26.51512,-19.76922],[26.50435,-19.76066],[26.48672,-19.75727],[26.47114,-19.75259],[26.45281,-19.75308],[26.4299,-19.74501],[26.41659,-19.7308],[26.41016,-19.71013],[26.40441,-19.69204],[26.39535,-19.683],[26.38904,-19.66878],[26.35394,-19.67543],[26.32677,-19.66194],[26.32845,-19.65233],[26.34003,-19.63052],[26.35711,-19.61389],[26.32991,-19.59725],[26.31231,-19.57674],[26.25214,-19.58534],[26.23779,-19.58328],[26.21519,-19.56311],[26.20543,-19.56065],[26.18879,-19.55302],[26.16788,-19.54423],[26.16176,-19.52277],[26.15258,-19.49425],[26.14203,-19.43726],[26.12667,-19.42753],[26.11131,-19.3647],[26.09526,-19.34559],[26.08882,-19.32259],[26.07415,-19.29506],[26.07183,-19.27141],[26.06214,-19.263],[26.0442,-19.23515],[26.04403,-19.21184],[25.97916,-19.13152],[25.96149,-19.10078],[25.96579,-19.06355],[25.99637,-19.03062],[25.99124,-19.00809],[25.98474,-18.97386],[25.97531,-18.96048],[25.96863,-18.94191],[25.95389,-18.91645],[25.94088,-18.9032],[25.92411,-18.89938],[25.9087,-18.88776],[25.8727,-18.86055],[25.84234,-18.84824],[25.82434,-18.83334],[25.82053,-18.80658],[25.80711,-18.79153],[25.7885,-18.72112],[25.79325,-18.69492],[25.80348,-18.68693],[25.791,-18.6651],[25.78401,-18.62506],[25.77573,-18.61603],[25.76746,-18.6135],[25.75644,-18.60317],[25.74268,-18.59934],[25.72995,-18.59226],[25.71721,-18.59169],[25.70136,-18.57753],[25.69102,-18.57078],[25.68069,-18.55751],[25.67072,-18.54404],[25.66487,-18.52797],[25.65591,-18.51927],[25.64754,-18.49616],[25.60828,-18.4836],[25.57176,-18.43392],[25.51464,-18.37641],[25.51795,-18.36582],[25.49036,-18.2982],[25.45528,-18.24222],[25.45727,-18.22928],[25.44739,-18.21716],[25.44574,-18.20765],[25.43283,-18.18731],[25.41251,-18.14926],[25.3911,-18.11752],[25.37254,-18.12046],[25.36498,-18.11385],[25.36429,-18.10071],[25.35467,-18.0901],[25.32167,-18.0777],[25.3148,-18.06076],[25.30381,-18.05101],[25.28457,-18.01584],[25.28113,-18.00417],[25.2818,-17.98988],[25.26641,-17.95014],[25.25376,-17.94306],[25.23812,-17.91286],[25.24308,-17.89965],[25.238,-17.88781],[25.23842,-17.87467],[25.26482,-17.81491],[25.26375,-17.79176],[25.22304,-17.76755],[25.19074,-17.76934],[25.18546,-17.76478],[25.18018,-17.75859],[25.17662,-17.75256],[25.1679,-17.74522],[25.15923,-17.74477],[25.15604,-17.74138],[25.1554,-17.73706],[25.15921,-17.73275],[25.16114,-17.72942],[25.16135,-17.72347],[25.15697,-17.71419],[25.15156,-17.70622],[25.14879,-17.70441],[25.14508,-17.70416],[25.14233,-17.70538],[25.13853,-17.71151],[25.13517,-17.71216],[25.13308,-17.7092],[25.13587,-17.70036],[25.13408,-17.69404],[25.12508,-17.69213],[25.12015,-17.69378],[25.11111,-17.70197],[25.10629,-17.70655],[25.09923,-17.71016],[25.09422,-17.70886],[25.09334,-17.70387],[25.09804,-17.6996],[25.10059,-17.69723],[25.1016,-17.69419],[25.10448,-17.68682],[25.10924,-17.68009],[25.10834,-17.67615],[25.10401,-17.67417],[25.10722,-17.66729],[25.10426,-17.66563],[25.10066,-17.66298],[25.09293,-17.66426],[25.08503,-17.66027],[25.08366,-17.64116],[25.07576,-17.63599],[25.06915,-17.63519],[25.06585,-17.62988],[25.06598,-17.62392],[25.06765,-17.61566],[25.06108,-17.61461],[25.0552,-17.61388],[25.05688,-17.62362],[25.05474,-17.62906],[25.04849,-17.63156],[25.0431,-17.62849],[25.04217,-17.62281],[25.04685,-17.61366],[25.05176,-17.59927],[25.04751,-17.58949],[25.02555,-17.58426],[25.02372,-17.59266],[25.01775,-17.59613],[25.00697,-17.59796],[24.99665,-17.59057],[24.99113,-17.57827],[24.98905,-17.5627],[24.9801,-17.55368],[24.97329,-17.55226],[24.96374,-17.56394],[24.95281,-17.56514],[24.94326,-17.57027],[24.94126,-17.55708],[24.9475,-17.54911],[24.94076,-17.54759],[24.91148,-17.55437],[24.9028,-17.55198],[24.8956,-17.54572],[24.88102,-17.52703],[24.87626,-17.52672],[24.86978,-17.52869],[24.85665,-17.53019],[24.84069,-17.52563],[24.82971,-17.51943],[24.8097,-17.53047],[24.80197,-17.53725],[24.79587,-17.5368],[24.79098,-17.53487],[24.78865,-17.53008],[24.78599,-17.5135],[24.78048,-17.508],[24.7768,-17.50835],[24.77071,-17.51313],[24.76497,-17.5175],[24.75974,-17.51793],[24.75119,-17.51314],[24.74488,-17.51258],[24.72724,-17.50007],[24.70672,-17.49683],[24.69495,-17.50079],[24.67906,-17.50058],[24.66599,-17.49862],[24.66356,-17.49699],[24.6571,-17.49499],[24.64901,-17.49602],[24.64223,-17.49671],[24.63716,-17.50066],[24.63724,-17.50397],[24.64179,-17.5094],[24.64249,-17.51262],[24.64095,-17.51438],[24.63778,-17.5149],[24.63462,-17.51346],[24.62829,-17.51165],[24.62178,-17.51491],[24.6186,-17.52239],[24.61795,-17.5299],[24.60769,-17.53609],[24.58716,-17.53408],[24.57299,-17.53681],[24.56522,-17.5385],[24.55608,-17.53889],[24.55242,-17.53289],[24.55083,-17.52492],[24.54958,-17.51434],[24.54627,-17.50899],[24.53605,-17.50732],[24.52342,-17.51497],[24.50956,-17.51348],[24.48985,-17.49856],[24.4753,-17.48741],[24.45937,-17.48051],[24.44898,-17.47891],[24.43206,-17.47928],[24.39033,-17.46954],[24.36113,-17.47814],[24.33193,-17.49198],[24.32428,-17.49249],[24.31012,-17.48645],[24.28007,-17.4842],[24.275,-17.48684],[24.27199,-17.49112],[24.26182,-17.48892],[24.2537,-17.48115],[24.24949,-17.47446],[21.42353,-18.02662],[21.3088,-17.98042],[21.21055,-17.92899],[20.96461,-17.96723],[20.83615,-18.03859],[20.75681,-18.0168],[20.70769,-18.01591],[20.65307,-17.98106],[20.6012,-17.97755],[20.54246,-17.98189],[20.50416,-17.95205],[20.47411,-17.94573],[20.45448,-17.91095],[20.38816,-17.89708],[20.31869,-17.86542],[20.13717,-17.91449],[19.85871,-17.86001],[19.75243,-17.90596],[19.62419,-17.86826],[19.31994,-17.84295],[19.13992,-17.81325],[19.09848,-17.8375],[18.87278,-17.81281],[18.7336,-17.71359],[18.61639,-17.63008],[18.62778,-17.6088],[18.60071,-17.5823],[18.56855,-17.58164],[18.54818,-17.55416],[18.51293,-17.49396],[18.48088,-17.47831],[18.47721,-17.45228],[18.42042,-17.38975],[14.21877,-17.3923],[14.21319,-17.40158],[14.21311,-17.41086],[14.19861,-17.41425],[14.18685,-17.41239],[14.1618,-17.41676],[14.15133,-17.42779],[14.14224,-17.42965],[14.1249,-17.43609],[14.11581,-17.42419],[14.10208,-17.43948],[14.07737,-17.43511],[14.05231,-17.42736],[14.04373,-17.42092],[14.03789,-17.42365],[14.01283,-17.41458],[14.00442,-17.42075],[14.00013,-17.43085],[13.98744,-17.43533],[13.98023,-17.42736],[13.95655,-17.43381],[13.92612,-17.41167],[13.93151,-17.40519],[13.92866,-17.39741],[13.9154,-17.38641],[13.91725,-17.37804],[13.9053,-17.37074],[13.89884,-17.36213],[13.8873,-17.35933],[13.87245,-17.34325],[13.85758,-17.34291],[13.84821,-17.33734],[13.83746,-17.32848],[13.82396,-17.32618],[13.78509,-17.30387],[13.77629,-17.29402],[13.76063,-17.2868],[13.73755,-17.26973],[13.71661,-17.26641],[13.69499,-17.24736],[13.68427,-17.24866],[13.66393,-17.23554],[13.63835,-17.20929],[13.61553,-17.20009],[13.5927,-17.17909],[13.55108,-17.1539],[13.54244,-17.14731],[13.53312,-17.14465],[13.51104,-17.1354],[13.50808,-17.12609],[13.51731,-17.12088],[13.52105,-17.11305],[13.52274,-17.10699],[13.52169,-17.10029],[13.52097,-17.09016],[13.49815,-17.06866],[13.48425,-17.03797],[13.47773,-17.0335],[13.4767,-17.02575],[13.46847,-17.02095],[13.46366,-17.0109],[13.44341,-17.00951],[13.42813,-17.00159],[13.41767,-16.99761],[13.40857,-16.9988],[13.39879,-16.99671],[13.39416,-16.99594],[13.39081,-16.99062],[13.38678,-16.98859],[13.37923,-16.98305],[13.3703,-16.98146],[13.36241,-16.97953],[13.35383,-16.97432],[13.3512,-16.97417],[13.34342,-16.9773],[13.32959,-16.98291],[13.31524,-16.98572],[13.30926,-16.98795],[13.30157,-16.98821],[13.2945,-16.99088],[13.2864,-16.9929],[13.28091,-16.99468],[13.27131,-16.99941],[13.25795,-16.99279],[13.25487,-16.99388],[13.25316,-16.99629],[13.25076,-16.99869],[13.24699,-17.00012],[13.23842,-16.99606],[13.24118,-16.993],[13.23686,-16.9878],[13.23219,-16.98621],[13.22375,-16.98462],[13.21943,-16.98632],[13.2042,-16.98916],[13.20097,-16.98904],[13.19809,-16.98467],[13.19751,-16.98198],[13.19898,-16.97996],[13.2008,-16.9776],[13.19953,-16.97393],[13.18638,-16.96928],[13.18113,-16.97152],[13.17982,-16.97384],[13.17646,-16.97255],[13.16938,-16.96341],[13.16518,-16.96528],[13.16102,-16.96523],[13.15514,-16.96452],[13.15145,-16.96705],[13.146,-16.96552],[13.14055,-16.9653],[13.12151,-16.96901],[13.10898,-16.97242],[13.1016,-16.97484],[13.09972,-16.97792],[13.09715,-16.97936],[13.09053,-16.98032],[13.0873,-16.97719],[13.08305,-16.97569],[13.07667,-16.97564],[13.06289,-16.97289],[13.0516,-16.98059],[13.04417,-16.97998],[13.03711,-16.98157],[13.03245,-16.97724],[13.02794,-16.97712],[13.01969,-16.98191],[12.98363,-16.98211],[12.97541,-16.99018],[12.97019,-16.98987],[12.96668,-16.9912],[12.96619,-17.00075],[12.96261,-17.01031],[12.95327,-17.01032],[12.94808,-17.00984],[12.94392,-17.01231],[12.94772,-17.01809],[12.9428,-17.02019],[12.93941,-17.01851],[12.92887,-17.01976],[12.92261,-17.02166],[12.91499,-17.0216],[12.90763,-17.02877],[12.90336,-17.03693],[12.8907,-17.04405],[12.8727,-17.04794],[12.87118,-17.05839],[12.87241,-17.06622],[12.84617,-17.07799],[12.83555,-17.08869],[12.82356,-17.08495],[12.81056,-17.1011],[12.80511,-17.11593],[12.77907,-17.12158],[12.76332,-17.1397],[12.73659,-17.146],[12.73421,-17.15112],[12.72359,-17.15624],[12.71435,-17.1594],[12.71334,-17.17174],[12.70573,-17.17315],[12.69984,-17.16865],[12.69466,-17.16993],[12.68879,-17.1722],[12.68464,-17.17299],[12.68015,-17.1764],[12.67738,-17.17345],[12.67357,-17.17215],[12.66901,-17.17502],[12.66616,-17.17954],[12.66542,-17.18139],[12.66297,-17.18258],[12.65841,-17.18594],[12.65597,-17.18538],[12.64685,-17.19055],[12.64665,-17.19442],[12.64421,-17.19746],[12.63746,-17.19871],[12.6322,-17.199],[12.63174,-17.20291],[12.62622,-17.20599],[12.62172,-17.20678],[12.61723,-17.20625],[12.61102,-17.20934],[12.60564,-17.21632],[12.60862,-17.2267],[12.6061,-17.23118],[12.60197,-17.22903],[12.59921,-17.23213],[12.59679,-17.23572],[12.59094,-17.23177],[12.5813,-17.23043],[12.57852,-17.2281],[12.57182,-17.23529],[12.56873,-17.23734],[12.56461,-17.23938],[12.56495,-17.2438],[12.55954,-17.2414],[12.5531,-17.24063],[12.54378,-17.23926],[12.5422,-17.24296],[12.54181,-17.24797],[12.53593,-17.2461],[12.53292,-17.24253],[12.52425,-17.24813],[12.51034,-17.2453],[12.4942,-17.24798],[12.4808,-17.24279],[12.47771,-17.25072],[12.46912,-17.25472],[12.46156,-17.25806],[12.45263,-17.25484],[12.44714,-17.26342],[12.43615,-17.26282],[12.44023,-17.25051],[12.43745,-17.24475],[12.43055,-17.24031],[12.43601,-17.22275],[12.4235,-17.20768],[12.42102,-17.2131],[12.41579,-17.2113],[12.40851,-17.20721],[12.39642,-17.20771],[12.39325,-17.21346],[12.3942,-17.22117],[12.38667,-17.21873],[12.37364,-17.22678],[12.37023,-17.23384],[12.35925,-17.22918],[12.3517,-17.21861],[12.34374,-17.22387],[12.33234,-17.22586],[12.32747,-17.22915],[12.31779,-17.22851],[12.30983,-17.23492],[12.29568,-17.23412],[12.28429,-17.24217],[12.27069,-17.23275],[12.26259,-17.23251],[12.25362,-17.24069],[12.23435,-17.2351],[12.2298,-17.22458],[12.21688,-17.21785],[12.21082,-17.21898],[12.19941,-17.20814],[12.19485,-17.19729],[12.1824,-17.19628],[12.17579,-17.17789],[12.16128,-17.16146],[12.14781,-17.16045],[12.13158,-17.16732],[12.1181,-17.15713],[12.10462,-17.16005],[12.08179,-17.14229],[12.05801,-17.15572],[12.03423,-17.15077],[12.02558,-17.1564],[12.02236,-17.16192],[12.01778,-17.16055],[12.00741,-17.16601],[11.99909,-17.16853],[11.99586,-17.17112],[11.98678,-17.17273],[11.9834,-17.17268],[11.97418,-17.17672],[11.96324,-17.17486],[11.96037,-17.17685],[11.95877,-17.17965],[11.95579,-17.18213],[11.95109,-17.18157],[11.94777,-17.18035],[11.94318,-17.18054],[11.93834,-17.18454],[11.93213,-17.19051],[11.92368,-17.19468],[11.92169,-17.19643],[11.91763,-17.19622],[11.91039,-17.19965],[11.909,-17.20202],[11.9052,-17.20439],[11.90184,-17.20414],[11.90053,-17.20651],[11.89768,-17.20707],[11.89174,-17.21026],[11.88437,-17.22491],[11.8697,-17.23289],[11.86116,-17.23409],[11.85818,-17.24133],[11.85489,-17.23962],[11.84954,-17.24218],[11.84612,-17.23567],[11.83755,-17.23605],[11.83436,-17.23853],[11.831,-17.24248],[11.82361,-17.25495],[11.82146,-17.25803],[11.82,-17.26209],[11.81674,-17.26464],[11.81243,-17.26451],[11.80846,-17.26864],[11.79881,-17.26772],[11.79396,-17.27467],[11.77552,-17.25938],[11.75845,-17.25328],[11.5,-17],[5,-17]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Australia#VK6", "itu_zone_number": 58 }, "geometry": { "type": "Polygon", "coordinates": [[[129,-10],[129,-40],[110,-40],[110,-13],[115,-13],[129,-10]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Australia#VK1", "itu_zone_number": 59 }, "geometry": { "type": "Polygon", "coordinates": [[[129,-26],[140.97138,-26],[140.97958,-28.99379],[148.95372,-29.0002],[148.96602,-28.99178],[148.97077,-28.97916],[148.97723,-28.97495],[148.98713,-28.97374],[148.99191,-28.97178],[149.0015,-28.97162],[149.00559,-28.96066],[149.00968,-28.9575],[149.01497,-28.95584],[149.01958,-28.95899],[149.02418,-28.95493],[149.03016,-28.95628],[149.03535,-28.9528],[149.03435,-28.94632],[149.03918,-28.94038],[149.04332,-28.93924],[149.04541,-28.93156],[149.04308,-28.92821],[149.04741,-28.92533],[149.04761,-28.91825],[149.05737,-28.91065],[149.05618,-28.90114],[149.05937,-28.89728],[149.05912,-28.89342],[149.06431,-28.88822],[149.05301,-28.88632],[149.06095,-28.87901],[149.07014,-28.87226],[149.07336,-28.86107],[149.08001,-28.8577],[149.08123,-28.843],[149.09618,-28.83251],[149.10215,-28.8332],[149.10331,-28.83749],[149.11511,-28.83036],[149.12761,-28.83525],[149.14375,-28.82144],[149.13723,-28.81243],[149.14239,-28.80734],[149.15389,-28.8093],[149.16033,-28.80999],[149.16197,-28.80706],[149.17777,-28.80334],[149.18671,-28.79065],[149.18843,-28.78069],[149.19426,-28.77254],[149.25026,-28.74536],[149.298,-28.71096],[149.35505,-28.68791],[149.38463,-28.69499],[149.43529,-28.63952],[149.43376,-28.62262],[149.45679,-28.59243],[149.50079,-28.5788],[149.57775,-28.57724],[149.59252,-28.57553],[149.61278,-28.60277],[149.63408,-28.59695],[149.64989,-28.61525],[149.66482,-28.615],[149.67152,-28.63404],[149.7014,-28.63113],[149.70897,-28.61688],[149.79069,-28.61227],[149.86625,-28.61028],[149.89443,-28.62397],[149.91127,-28.61393],[149.94184,-28.61354],[149.97927,-28.60953],[150.0222,-28.58141],[150.0514,-28.58946],[150.09071,-28.57901],[150.09707,-28.56615],[150.1613,-28.55603],[150.2118,-28.57244],[150.25955,-28.5418],[150.32103,-28.54012],[150.37087,-28.62043],[150.40952,-28.63286],[150.4262,-28.65733],[150.52939,-28.65349],[150.52606,-28.66964],[150.54745,-28.67615],[150.55177,-28.65785],[150.58237,-28.65629],[150.60591,-28.67358],[150.6322,-28.67641],[150.67419,-28.65641],[150.74051,-28.63548],[150.86725,-28.68685],[150.89079,-28.70109],[150.9061,-28.68882],[150.92954,-28.70858],[150.93651,-28.73076],[150.97781,-28.73487],[150.99846,-28.73812],[151.01636,-28.75342],[151.02174,-28.79651],[151.03953,-28.7976],[151.03607,-28.82702],[151.04359,-28.842],[151.0621,-28.84766],[151.09709,-28.83648],[151.12522,-28.85537],[151.16158,-28.86705],[151.17307,-28.87859],[151.20103,-28.88533],[151.21027,-28.90121],[151.237,-28.90652],[151.24398,-28.92836],[151.28117,-28.943],[151.27441,-29.0273],[151.28963,-29.05637],[151.27258,-29.09323],[151.30771,-29.12529],[151.31401,-29.16334],[151.34502,-29.18461],[151.3968,-29.17045],[151.42662,-29.14669],[151.46879,-29.10254],[151.49997,-29.07519],[151.48818,-29.03609],[151.5478,-28.95137],[151.60991,-28.92431],[151.63907,-28.92369],[151.68608,-28.89062],[151.72759,-28.87438],[151.77554,-28.95608],[151.80538,-28.94765],[151.83796,-28.96566],[151.8537,-28.90555],[151.92437,-28.92356],[152.00602,-28.9031],[152.02856,-28.88752],[152.04012,-28.85752],[152.01929,-28.84561],[152.03428,-28.83003],[152.04103,-28.77114],[152.04504,-28.72908],[152.07376,-28.7063],[152.0582,-28.66995],[152.00693,-28.66492],[151.99228,-28.59222],[151.95566,-28.55809],[151.96023,-28.51431],[151.97746,-28.50329],[151.99156,-28.52915],[152.0194,-28.52123],[152.06821,-28.47158],[152.12526,-28.45815],[152.17407,-28.42539],[152.22013,-28.45059],[152.23735,-28.41542],[152.2738,-28.39715],[152.31923,-28.36364],[152.38664,-28.36879],[152.41622,-28.33571],[152.41284,-28.2978],[152.44654,-28.29859],[152.45516,-28.26149],[152.50222,-28.24616],[152.53541,-28.26421],[152.5274,-28.30887],[152.57844,-28.34022],[152.613,-28.27242],[152.67662,-28.33029],[152.74849,-28.36157],[152.77625,-28.34612],[152.80125,-28.35726],[152.82625,-28.32126],[152.86499,-28.30943],[152.9348,-28.33466],[153.03482,-28.34296],[153.10463,-28.35852],[153.13702,-28.31331],[153.1694,-28.29228],[153.17924,-28.25022],[153.23148,-28.26511],[153.24387,-28.24474],[153.29197,-28.23646],[153.3291,-28.23562],[153.3408,-28.24973],[153.36349,-28.25173],[153.39582,-28.22851],[153.42266,-28.19561],[153.43975,-28.18648],[153.45753,-28.18037],[153.4657,-28.16458],[153.48005,-28.15544],[153.4983,-28.16128],[153.53446,-28.1769],[153.54204,-28.16915],[153.55168,-28.16473],[154,-28],[154,-50],[140,-50],[129,-40],[129,-26]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Lord Howe Islands#VK9N", "itu_zone_number": 60 }, "geometry": { "type": "Polygon", "coordinates": [[[154,-28],[154,-55],[185,-55],[185,-28],[154,-28]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Baker & Howland islands#KH3", "itu_zone_number": 61 }, "geometry": { "type": "Polygon", "coordinates": [[[-190,30],[-190,15],[-185,15],[-185,0],[-150,0],[-150,30],[-190,30]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Tonga#E51", "itu_zone_number": 62 }, "geometry": { "type": "Polygon", "coordinates": [[[-178,0],[-178,-12],[-182,-12],[-177,-16],[-177,-22],[-180,-22],[-180,-28],[-163,-28],[-163.5,-13],[-156,-10],[-159,0],[-178,0]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Easter Island – but not Salas y Gomez Island#E52", "itu_zone_number": 63 }, "geometry": { "type": "Polygon", "coordinates": [[[-159,0],[-156,-10],[-163.5,-13],[-163,-28],[-107,-28],[-107,-20],[-120,0],[-159,0]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Palau#KH2", "itu_zone_number": 64 }, "geometry": { "type": "Polygon", "coordinates": [[[150,22],[150,0],[140,0],[130,2.5],[130,20],[140,20],[140,22],[150,22]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Nauru#KH9", "itu_zone_number": 65 }, "geometry": { "type": "Polygon", "coordinates": [[[150,22],[170,22],[170,15],[175,15],[175,0],[182,0],[182,-12],[173,-12],[162,0],[150,0],[150,22]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Saint Helena#ZD8", "itu_zone_number": 66 }, "geometry": { "type": "Polygon", "coordinates": [[[-28,0],[5,0],[5,-45],[-28,-45],[-28,0]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Antarctica - north of 80º S and between 20º W and 40º E#3Y", "itu_zone_number": 67 }, "geometry": { "type": "Polygon", "coordinates": [[[-20,-50],[40,-50],[40,-80],[-20,-80],[-20,-50]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Crozet Islands#FT...X", "itu_zone_number": 68 }, "geometry": { "type": "Polygon", "coordinates": [[[40,-60],[40,-35],[80,-35],[80,-60],[40,-60]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Antarctica - north of 80º S and between 40º and 100º E", "itu_zone_number": 69 }, "geometry": { "type": "Polygon", "coordinates": [[[40,-60],[100,-60],[100,-80],[40,-80],[40,-60]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Antarctica - north of 80º S and between 100º and 160º E", "itu_zone_number": 70 }, "geometry": { "type": "Polygon", "coordinates": [[[100,-60],[160,-60],[160,-80],[100,-80],[100,-60]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Antarctica - north of 80º S and between 160º E and 140º W", "itu_zone_number": 71 }, "geometry": { "type": "Polygon", "coordinates": [[[-200,-60],[-140,-60],[-140,-80],[-200,-80],[-200,-60]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Antarctica - north of 80º S and between 140º and 80º W#3Y", "itu_zone_number": 72 }, "geometry": { "type": "Polygon", "coordinates": [[[-140,-60],[-80,-60],[-80,-80],[-140,-80],[-140,-60]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Antarctica - north of 80º S and between 80º and 20º W#VP8", "itu_zone_number": 73 }, "geometry": { "type": "Polygon", "coordinates": [[[-80,-60],[-55,-60],[-55,-50],[-20,-50],[-20,-80],[-80,-80],[-80,-60]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Antarctica - between 80º and 90º S", "itu_zone_number": 74 }, "geometry": { "type": "Polygon", "coordinates": [[[180,-80],[-180,-80],[-180,-85],[180,-85]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Svalbard, north of 80º N#OX", "itu_zone_number": 75 }, "geometry": { "type": "Polygon", "coordinates": [[[-180,80],[180,80],[180,85],[-180,85]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**only water zone+NOT VALID FOR ITUPSK", "itu_zone_number": 76 }, "geometry": { "type": "Polygon", "coordinates": [[[-175,30],[-123.1156,30],[-124.63097,32.46386],[-130.784,48.57479],[-141,58],[-170,50],[-175,50],[-175,30]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**only water zone+NOT VALID FOR ITUPSK", "itu_zone_number": 77 }, "geometry": { "type": "Polygon", "coordinates": [[[-150,30],[-150,0],[-120,0],[-109.89813,6.32386],[-123.1156,30],[-150,30]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Salas y Gomez Island only", "itu_zone_number": 78 }, "geometry": { "type": "Polygon", "coordinates": [[[-107,-28],[-82.24915,-28.94332],[-77.10206,-18.33367],[-92.02149,-5.96576],[-92.18997,6.011],[-109.89813,6.32386],[-120,0],[-107,-20],[-107,-28]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**only water zone+NOT VALID FOR ITUPSK", "itu_zone_number": 79 }, "geometry": { "type": "Polygon", "coordinates": [[[-175,-28],[-175,-55],[-180,-55],[-180,-60],[-140,-60],[-140,-28],[-175,-28]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**only water zone+NOT VALID FOR ITUPSK", "itu_zone_number": 80 }, "geometry": { "type": "Polygon", "coordinates": [[[-140,-28],[-140,-60],[-107,-60],[-107,-28],[-140,-28]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**only water zone+NOT VALID FOR ITUPSK", "itu_zone_number": 81 }, "geometry": { "type": "Polygon", "coordinates": [[[-107,-28],[-107,-60],[-78,-60],[-78,-40],[-79.31855,-40],[-82.24915,-28.94332],[-107,-28]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**only water zone+NOT VALID FOR ITUPSK", "itu_zone_number": 82 }, "geometry": { "type": "Polygon", "coordinates": [[[-14,60.35968],[-13,44],[-40,44],[-40,43],[-50,43],[-50,54],[-14,60.35968]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**only water zone+NOT VALID FOR ITUPSK", "itu_zone_number": 83 }, "geometry": { "type": "Polygon", "coordinates": [[[-57,43],[-57,10],[-60,10],[-51.62045,7],[-28,7],[-40,23],[-40,43],[-57,43]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**only water zone+NOT VALID FOR ITUPSK", "itu_zone_number": 84 }, "geometry": { "type": "Polygon", "coordinates": [[[-55,-40],[-55,-50],[-20,-50],[-20,-45],[-28,-45],[-28,-40],[-55,-40]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**only water zone+NOT VALID FOR ITUPSK", "itu_zone_number": 85 }, "geometry": { "type": "Polygon", "coordinates": [[[-20,-45],[-20,-50],[20,-50],[5,-20],[5,-45],[-20,-45]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**only water zone+NOT VALID FOR ITUPSK", "itu_zone_number": 86 }, "geometry": { "type": "Polygon", "coordinates": [[[40,-35],[40,-27],[60,-27],[65,-20],[62.46122,-10],[80,-10],[80,-35],[40,-35]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**only water zone+NOT VALID FOR ITUPSK", "itu_zone_number": 87 }, "geometry": { "type": "Polygon", "coordinates": [[[80,-40],[110,-40],[110,-13],[90,-13],[90,-10],[80,-10],[80,-40]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**only water zone+NOT VALID FOR ITUPSK", "itu_zone_number": 88 }, "geometry": { "type": "Polygon", "coordinates": [[[80,-60],[80,-40],[110,-40],[110,-60],[80,-60]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**only water zone+NOT VALID FOR ITUPSK", "itu_zone_number": 89 }, "geometry": { "type": "Polygon", "coordinates": [[[110,-60],[110,-40],[129,-40],[140,-50],[154,-50],[154,-55],[180,-55],[180,-60],[110,-60]]]} },{ "type": "Feature", "properties": { "cq_zone_name": "**Minami Tori-shima", "itu_zone_number": 90 }, "geometry": { "type": "Polygon", "coordinates": [[[160,50],[185,50],[185,30],[170,30],[170,22],[150,22],[150,45.21871],[160,50]]]} } +] +} diff --git a/assets/js/sections/logbookadvanced.js b/assets/js/sections/logbookadvanced.js index 92f2d839d..113c872af 100644 --- a/assets/js/sections/logbookadvanced.js +++ b/assets/js/sections/logbookadvanced.js @@ -1,6 +1,26 @@ var callBookProcessingDialog = null; var inCallbookProcessing = false; var inCallbookItemProcessing = false; +var clicklines = []; +var map; +var maidenhead; +var geojson; +var itugeojson; +var zonemarkers = []; +var ituzonemarkers = []; + +var defaultlinecolor = 'blue'; + +if (isDarkModeTheme()) { + defaultlinecolor = 'red'; +} + +var iconsList = { 'qso': { 'color': defaultlinecolor, 'icon': 'fas fa-dot-circle', 'iconSize': [5, 5] }, 'qsoconfirm': { 'color': defaultlinecolor, 'icon': 'fas fa-dot-circle', 'iconSize': [5, 5] } }; + +var stationIcon = L.divIcon({ className: 'cspot_station', iconSize: [5, 5], iconAnchor: [5, 5]}); +var qsoIcon = L.divIcon({ className: 'cspot_qso', iconSize: [5, 5], iconAnchor: [5, 5] }); //default (fas fa-dot-circle red) +var qsoconfirmIcon = L.divIcon({ className: 'cspot_qsoconfirm', iconSize: [5, 5], iconAnchor: [5, 5] }); +var redIconImg = L.icon({ iconUrl: icon_dot_url, iconSize: [5, 5] }); // old // $('#band').change(function () { var band = $("#band option:selected").text(); @@ -253,6 +273,7 @@ $(document).ready(function () { if(container != null){ container._leaflet_id = null; container.remove(); + $(".coordinates").remove(); } $("#qsoList").attr("Hidden", false); @@ -844,7 +865,7 @@ function mapQsos(form) { $("#qsoList_wrapper").attr("Hidden", true); $("#qsoList_info").attr("Hidden", true); - var amap = $('#advancedmap').val(); + amap = $('#advancedmap').val(); if (amap == undefined) { $(".qso_manager").append('
'); } @@ -854,10 +875,11 @@ function mapQsos(form) { url: base_url + 'index.php/logbookadvanced/mapSelectedQsos', type: 'post', data: { - ids: id_list + ids: id_list, + de: form.de.value }, success: function(data) { - loadMap(data); + loadMapOptions(data); }, error: function() { $('#mapButton').prop("disabled", false); @@ -898,7 +920,7 @@ function mapQsos(form) { qslimages: form.qslimages.value, }, success: function(data) { - loadMap(data); + loadMapOptions(data); }, error: function() { $('#mapButton').prop("disabled", false); @@ -907,20 +929,52 @@ function mapQsos(form) { } }; -function loadMap(data) { +function loadMapOptions(data) { + $.ajax({ + url: base_url + 'index.php/user_options/get_map_custom', + type: 'GET', + dataType: 'json', + error: function () { + }, + success: function (json_mapinfo) { + if (typeof json_mapinfo.qso !== "undefined") { + iconsList = json_mapinfo; + } + loadMap(data, iconsList) + } + }); +} + +function loadMap(data, iconsList) { $('#mapButton').prop("disabled", false); var osmUrl='https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png'; var osmAttrib='Map data © OpenStreetMap contributors'; // If map is already initialized var container = L.DomUtil.get('advancedmap'); + var bounds = L.latLngBounds() + if(container != null){ container._leaflet_id = null; container.remove(); + $(".coordinates").remove(); $(".qso_manager").append('
'); + $(".qso_manager").append('
' + + '
' + lang_gen_hamradio_latitude + ' 
' + + '
' + + '
' + lang_gen_hamradio_longitude + ' 
' + + '
' + + '
' + lang_gen_hamradio_gridsquare + ' 
' + + '
' + + '
' + lang_gen_hamradio_distance + ' 
' + + '
' + + '
' + lang_gen_hamradio_bearing + ' 
' + + '
' + + '
'); + $('.cohidden').show(); } - var map = new L.Map('advancedmap', { + map = new L.Map('advancedmap', { fullscreenControl: true, fullscreenControlOptions: { position: 'topleft' @@ -939,18 +993,9 @@ function loadMap(data) { map.setView([30, 0], 1.5); - var maidenhead = L.maidenheadqrb().addTo(map); var osm = new L.TileLayer(osmUrl, {minZoom: 1, maxZoom: 9, attribution: osmAttrib}); - map.addLayer(osm); - - var linecolor = 'blue'; - - if (isDarkModeTheme()) { - linecolor = 'red'; - } - var redIcon = L.icon({ iconUrl: icon_dot_url, iconSize: [10, 10], // size of the icon @@ -971,16 +1016,29 @@ function loadMap(data) { var popupmessage = createContentMessage(this); var popupmessage2 = createContentMessageDx(this); - var marker = L.marker([this.latlng1[0], this.latlng1[1]], {icon: redIcon}, {closeOnClick: false, autoClose: false}).addTo(map).bindPopup(popupmessage); + var marker = L.marker([this.latlng1[0], this.latlng1[1]], {icon: stationIcon}, {closeOnClick: false, autoClose: false}).addTo(map).bindPopup(popupmessage); + marker.on('mouseover',function(ev) { ev.target.openPopup(); }); + let lat_lng = [this.latlng1[0], this.latlng1[1]]; + bounds.extend(lat_lng); + + if (this.confirmed && iconsList.qsoconfirm.icon !== "0") { + var marker2 = L.marker([this.latlng2[0], this.latlng2[1]], {icon: qsoconfirmIcon},{closeOnClick: false, autoClose: false}).addTo(map).bindPopup(popupmessage2); + linecolor = iconsList.qsoconfirm.color; + } else { + var marker2 = L.marker([this.latlng2[0], this.latlng2[1]], {icon: qsoIcon},{closeOnClick: false, autoClose: false}).addTo(map).bindPopup(popupmessage2); + linecolor = iconsList.qso.color; + } - var marker2 = L.marker([this.latlng2[0], this.latlng2[1]], {icon: redIcon},{closeOnClick: false, autoClose: false}).addTo(map).bindPopup(popupmessage2);; marker2.on('mouseover',function(ev) { ev.target.openPopup(); }); + lat_lng = [this.latlng2[0], this.latlng2[1]]; + bounds.extend(lat_lng); + const multiplelines = []; multiplelines.push( new L.LatLng(this.latlng1[0], this.latlng1[1]), @@ -994,6 +1052,8 @@ function loadMap(data) { wrap: false, steps: 100 }).addTo(map); + + clicklines.push(geodesic); }); /*Legend specific*/ @@ -1001,11 +1061,34 @@ function loadMap(data) { legend.onAdd = function(map) { var div = L.DomUtil.create("div", "legend"); - div.innerHTML += "

" + counter + " QSOs plotted

"; + div.innerHTML += '
' + counter + " QSOs plotted
"; + div.innerHTML += ' Path lines
'; + div.innerHTML += ' Gridsquares
'; + div.innerHTML += ' CQ Zones
'; + div.innerHTML += ' ITU Zones'; return div; }; legend.addTo(map); + + maidenhead = L.maidenheadqrb().addTo(map); + + + map.fitBounds(bounds); + + $.each(iconsList, function (icon, data) { + $('#advancedmap' + ' .cspot_' + icon).addClass(data.icon).css("color", data.color); + }); + + var printer = L.easyPrint({ + tileLayer: osm, + sizeModes: ['Current', 'A4Landscape', 'A4Portrait'], + filename: 'Wavelog', + exportOnly: true, + hideControlContainer: true + }).addTo(map); + + map.on('mousemove', onMapMove); } function createContentMessage(qso) { @@ -1103,3 +1186,231 @@ function loadMap(data) { }, }); } + + function toggleFunction(bool) { + if(bool) { + addLines(); + } else { + clearLines(); + } + }; + + function toggleGridsquares(bool) { + if(!bool) { + map.removeLayer(maidenhead); + } else { + maidenhead.addTo(map); + } + }; + + const cqzonenames = [ + [ "75", "-140" ], + [ "70", "-82.5" ], + [ "45", "-125" ], + [ "45", "-100" ], + [ "45", "-65" ], + [ "25.5", "-115" ], + [ "14.5", "-90" ], + [ "22", "-60" ], + [ "11.5", "-70" ], + [ "-5", "-100" ], + [ "-9", "-45" ], + [ "-45", "-106" ], + [ "-45", "-55" ], + [ "52", "-14" ], + [ "46", "11" ], + [ "60", "35" ], + [ "55", "65" ], + [ "70", "90" ], + [ "70", "150" ], + [ "42", "29" ], + [ "28", "53" ], + [ "6", "75" ], + [ "44", "93" ], + [ "33", "110" ], + [ "38", "134" ], + [ "16", "100" ], + [ "15", "140" ], + [ "0", "125" ], + [ "-25", "115" ], + [ "-25", "145" ], + [ "15", "-165" ], + [ "-25", "-165" ], + [ "32", "-26" ], + [ "25", "25.5" ], + [ "15", "-6" ], + [ "-5", "-6" ], + [ "6", "51" ], + [ "-45", "8" ], + [ "-25", "55"], + [ "78", "-10"], + ]; + + const ituzonenames = [ + ["60","-160"], + ["55","-125"], + ["55","-100"], + ["55","-78"], + ["73","-40"], + ["40","-119"], + ["40","-100"], + ["40","-80"], + ["55","-60"], + ["20","-102"], + ["21","-75"], + ["-3","-72"], + ["-5","-45"], + ["-30","-65"], + ["-25","-45"], + ["-50","-65"], + ["61","-26"], + ["70","10"], + ["70","40"], + ["70","62.5"], + ["70","82.5"], + ["70","100"], + ["70","122.5"], + ["70","142.5"], + ["70","162.5"], + ["70","180"], + ["52","2"], + ["45","18"], + ["53","36"], + ["53","62.5"], + ["53","82.5"], + ["53","100"], + ["53","122.5"], + ["53","142"], + ["55","160"], + ["35","-25"], + ["35","0"], + ["27.5","22.5"], + ["27","42"], + ["32","56"], + ["10","75"], + ["39","82.5"], + ["33","100"], + ["33","118"], + ["33","140"], + ["15","-10"], + ["12.5","22"], + ["5","40"], + ["15","100"], + ["10","120"], + ["-4","150"], + ["-7","17"], + ["-12.5","45"], + ["-2","115"], + ["-20","140"], + ["-20","170"], + ["-30","24"], + ["-25","120"], + ["-40","140"], + ["-40","170"], + ["15","-170"], + ["-15","-170"], + ["-15","-135"], + ["10","140"], + ["10","162"], + ["-23","-11"], + ["-70","10"], + ["-47.5","60"], + ["-70","70"], + ["-70","130"], + ["-70","-170"], + ["-70","-110"], + ["-70","-050"], + ["-82.5","0"], + ["82.5","0"], + ["40","-150"], + ["15","-135"], + ["-15","-95"], + ["-40","-160"], + ["-40","-125"], + ["-40","-90"], + ["50","-30"], + ["25","-47.5"], + ["-45","-40"], + ["-45","10"], + ["-25","70"], + ["-25","95"], + ["-50","95"], + ["-54","140"], + ["39","165"] + ]; + + function toggleCqZones(bool) { + if(!bool) { + zonemarkers.forEach(function (item) { + map.removeLayer(item); + }); + map.removeLayer(geojson); + } else { + geojson = L.geoJson(zonestuff, {style: style}).addTo(map); + for (var i = 0; i < cqzonenames.length; i++) { + + var title = '' + (Number(i)+Number(1)) + ''; + var myIcon = L.divIcon({className: 'my-div-icon', html: title}); + + var marker = L.marker( + [cqzonenames[i][0], cqzonenames[i][1]], { + icon: myIcon, + title: (Number(i)+Number(1)), + zIndex: 1000, + } + ).addTo(map); + zonemarkers.push(marker); + } + } + } + + function toggleItuZones(bool) { + if(!bool) { + ituzonemarkers.forEach(function (item) { + map.removeLayer(item); + }); + map.removeLayer(itugeojson); + } else { + itugeojson = L.geoJson(ituzonestuff, {style: style}).addTo(map); + for (var i = 0; i < ituzonenames.length; i++) { + + var title = '' + (Number(i)+Number(1)) + ''; + var myIcon = L.divIcon({className: 'my-div-icon', html: title}); + + var marker = L.marker( + [ituzonenames[i][0], ituzonenames[i][1]], { + icon: myIcon, + title: (Number(i)+Number(1)), + zIndex: 1000, + } + ).addTo(map); + ituzonemarkers.push(marker); + } + } + } + + function style(feature) { + var bordercolor = "black"; + if (isDarkModeTheme()) { + bordercolor = "white"; + } + return { + fillColor: "white", + fillOpacity: 0, + opacity: 0.65, + color: bordercolor, + weight: 1, + }; + } + + function clearLines() { + clicklines.forEach(function (item) { + map.removeLayer(item); + }); + } + + function addLines() { + clicklines.forEach(function (item) { + map.addLayer(item); + }); + } diff --git a/assets/js/sections/qso.js b/assets/js/sections/qso.js index 69c010e43..b52183e43 100644 --- a/assets/js/sections/qso.js +++ b/assets/js/sections/qso.js @@ -1,12 +1,68 @@ $( document ).ready(function() { - setTimeout(function() { - var callsignValue = localStorage.getItem("quicklogCallsign"); - if (callsignValue !== null && callsignValue !== undefined) { - $("#callsign").val(callsignValue); - $("#mode").focus(); - localStorage.removeItem("quicklogCallsign"); + clearTimeout(); + set_timers(); + + function set_timers() { + setTimeout(function() { + var callsignValue = localStorage.getItem("quicklogCallsign"); + if (callsignValue !== null && callsignValue !== undefined) { + $("#callsign").val(callsignValue); + $("#mode").focus(); + localStorage.removeItem("quicklogCallsign"); + } + }, 100); + } + + $("#qso_input").off('submit').on('submit', function(e){ + var _submit = true; + if ((typeof qso_manual !== "undefined")&&(qso_manual == "1")) { + if ($('#qso_input input[name="end_time"]').length == 1) { _submit = testTimeOffConsistency(); } } - }, 100); + if ( _submit) { + var saveQsoButtonText = $("#saveQso").html(); + $("#saveQso").html(' ' + saveQsoButtonText + '...').prop('disabled', true); + manual_addon='?manual='+qso_manual; + e.preventDefault(); + $.ajax({ + url: base_url+'index.php/qso'+manual_addon, + method: 'POST', + type: 'post', + data: $(this).serialize(), + success: function(resdata) { + result = JSON.parse(resdata); + if (result.message == 'success') { + $("#noticer").removeClass(""); + $("#noticer").addClass("alert alert-info"); + $("#noticer").html("QSO Added"); + $("#noticer").show(); + reset_fields(); + clearTimeout(); + set_timers(); + resetTimers(qso_manual); + htmx.trigger("#qso-last-table", "qso_event") + $("#saveQso").html(saveQsoButtonText).prop("disabled",false); + $("#callsign").val(""); + $("#callsign").focus(); + $("#noticer").fadeOut(2000); + } else { + $("#noticer").removeClass(""); + $("#noticer").addClass("alert alert-warning"); + $("#noticer").html(result.errors); + $("#noticer").show(); + $("#saveQso").html(saveQsoButtonText).prop("disabled",false); + } + }, + error: function() { + $("#noticer").removeClass(""); + $("#noticer").addClass("alert alert-warning"); + $("#noticer").html("Timeout while adding QSO. NOT added"); + $("#noticer").show(); + $("#saveQso").html(saveQsoButtonText).prop("disabled",false); + } + }); + } + return false; + }); $('#reset_time').click(function() { var now = new Date(); var localTime = now.getTime(); @@ -115,7 +171,7 @@ var favs={}; } }); } - + var bc_bandmap = new BroadcastChannel('qso_window'); bc_bandmap.onmessage = function (ev) { @@ -347,15 +403,7 @@ var favs={}; $('.satellite_names_list').append(items.join( "" )); }); - // Test Consistency value on submit form // - $("#qso_input").off('submit').on('submit', function(){ - var _submit = true; - if ((typeof qso_manual !== "undefined")&&(qso_manual == "1")) { - if ($('#qso_input input[name="end_time"]').length == 1) { _submit = testTimeOffConsistency(); } - } - return _submit; - }) -}); + }); var selected_sat; var selected_sat_mode; @@ -513,6 +561,8 @@ function reset_fields() { $('#input_usa_state').val(""); $('#qso-last-table').show(); $('#partial_view').hide(); + $('.callsign-suggest').hide(); + setRst($(".mode").val()); var $select = $('#wwff_ref').selectize(); var selectize = $select[0].selectize; selectize.clear(); @@ -883,7 +933,7 @@ $("#locator").keyup(function(){ $('#locator').removeClass("workedGrid"); $('#locator').removeClass("newGrid"); $('#locator').attr('title', ''); - + if (result.confirmed) { $('#locator').addClass("confirmedGrid"); $('#locator').attr('title', 'Grid was already worked and confimred in the past'); @@ -1080,7 +1130,7 @@ function testTimeOffConsistency() { $('#qso_input input[name="end_time"]').removeClass('inputError'); $('#qso_input .warningOnSubmit').hide(); $('#qso_input .warningOnSubmit_txt').empty(); - if ( !( (parseInt(_start_time.replaceAll(':','')) <= parseInt(_end_time.replaceAll(':',''))) + if ( !( (parseInt(_start_time.replaceAll(':','')) <= parseInt(_end_time.replaceAll(':',''))) || ((_start_time.substring(0,2)=="23")&&(_end_time.substring(0,2)=="00")) ) ) { $('#qso_input input[name="end_time"]').addClass('inputError'); $('#qso_input .warningOnSubmit_txt').html(text_error_timeoff_less_timeon); @@ -1088,5 +1138,5 @@ function testTimeOffConsistency() { $('#qso_input input[name="end_time"]').off('change').on('change',function(){ testTimeOffConsistency(); }); return false; } - return true; + return true; } diff --git a/install/config/config.php b/install/config/config.php index 09c8e1539..39e1adfde 100644 --- a/install/config/config.php +++ b/install/config/config.php @@ -653,3 +653,16 @@ $config['rewrite_short_tags'] = FALSE; | Array: array('10.0.1.200', '192.168.5.0/24') */ $config['proxy_ips'] = ''; + +/* +|-------------------------------------------------------------------------- +| Users Data Directory Options +|-------------------------------------------------------------------------- +| +| 'userdata' Name of principal/centralized data folder +| +| If you are a contributor to Wavelog you perhaps should add this folder path to .gitignore +| +*/ + +// $config['userdata'] = "userdata"; \ No newline at end of file