From 54ee80735313ef7c94cf2441e40e01157e5ec7f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=85=94=E5=A7=AC=E6=A1=91?= Date: Mon, 27 Jul 2020 08:07:30 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=8A=82=E7=82=B9=E5=9C=B0?= =?UTF-8?q?=E5=9B=BE=20+=20=E4=BF=AE=E5=A4=8D=E7=B3=BB=E7=BB=9F=E8=AE=BE?= =?UTF-8?q?=E7=BD=AE=E9=A1=B5=E9=9D=A2=E5=85=83=E7=B4=A0=E9=94=99=E8=AF=AF?= =?UTF-8?q?+=E4=BB=A3=E7=A0=81=E7=AE=80=E5=86=99=E8=A7=84=E8=8C=83?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Components/Helpers.php | 13 +- app/Components/IPIP.php | 4 +- app/Components/Namesilo.php | 3 +- app/Components/NetworkDetection.php | 8 +- app/Components/PushNotification.php | 6 +- app/Components/QQInfo.php | 23 +-- app/Console/Commands/AutoJob.php | 6 +- app/Console/Commands/AutoPingNode.php | 11 +- .../AutoStatisticsNodeDailyTraffic.php | 3 +- .../AutoStatisticsNodeHourlyTraffic.php | 3 +- .../AutoStatisticsUserDailyTraffic.php | 6 +- .../AutoStatisticsUserHourlyTraffic.php | 6 +- .../Commands/UserExpireAutoWarning.php | 3 +- .../Commands/UserTrafficAutoWarning.php | 3 +- app/Console/Commands/updateTicket.php | 9 +- app/Console/Commands/updateUserLevel.php | 3 +- app/Console/Commands/updateUserName.php | 10 +- app/Console/Commands/upgradeUserResetTime.php | 3 +- .../Controllers/Admin/GroupController.php | 120 +++++++++++++ .../Controllers/Admin/MarketingController.php | 3 +- app/Http/Controllers/Admin/RuleController.php | 19 +-- app/Http/Controllers/Admin/ShopController.php | 4 +- .../Controllers/Admin/ToolsController.php | 12 +- app/Http/Controllers/AdminController.php | 67 ++++---- app/Http/Controllers/Api/LoginController.php | 9 +- .../Controllers/Api/WebApi/BaseController.php | 23 ++- .../Api/WebApi/TrojanController.php | 7 +- .../Api/WebApi/V2RayController.php | 7 +- .../Controllers/Api/WebApi/VNetController.php | 9 +- app/Http/Controllers/AuthController.php | 23 ++- app/Http/Controllers/Controller.php | 3 +- .../Controllers/Gateway/AbstractPayment.php | 3 +- app/Http/Controllers/Gateway/BitpayX.php | 9 +- app/Http/Controllers/Gateway/CodePay.php | 2 +- app/Http/Controllers/Gateway/F2Fpay.php | 6 +- app/Http/Controllers/NodeController.php | 107 ++++++++---- .../Controllers/User/AffiliateController.php | 3 +- .../Controllers/User/SubscribeController.php | 9 +- app/Http/Controllers/UserController.php | 26 +-- app/Http/Middleware/isForbidden.php | 4 +- app/Models/Article.php | 2 +- app/Models/Invite.php | 2 +- app/Models/Marketing.php | 2 +- app/Models/NodeCertificate.php | 2 +- app/Models/NotificationLog.php | 4 +- app/Models/Order.php | 2 +- app/Models/Payment.php | 2 +- app/Models/PaymentCallback.php | 2 +- app/Models/RuleGroup.php | 2 +- app/Models/SsNode.php | 23 ++- app/Models/TicketReply.php | 4 +- app/Models/User.php | 31 ++++ app/Models/UserGroup.php | 25 +++ app/Models/UserTrafficLog.php | 2 +- app/helpers.php | 7 +- config/app.php | 1 + .../maps/jquery-jvectormap-world-mill-cn.js | 1 + .../maps/jquery-jvectormap-world-mill-en.js | 0 .../vendor/jvectormap/jquery-jvectormap.css | 159 ++++++++++-------- .../vendor/jvectormap/jquery-jvectormap.js | 44 ----- .../jvectormap/jquery-jvectormap.min.css | 1 - .../jvectormap/jquery-jvectormap.min.js | 3 +- .../maps/jquery-jvectormap-au-mill-en.js | 1 - .../maps/jquery-jvectormap-ca-lcc-en.js | 1 - .../maps/jquery-jvectormap-de-mill-en.js | 1 - .../maps/jquery-jvectormap-europe-mill-en.js | 1 - .../maps/jquery-jvectormap-fr-mill-en.js | 1 - .../jquery-jvectormap-uk_regions-mill-en.js | 1 - .../maps/jquery-jvectormap-us-merc-en.js | 1 - ...jquery-jvectormap-us-ny-newyork-mill-en.js | 1 - .../maps/jquery-jvectormap-za-mill-en.js | 1 - readme.md | 4 +- resources/views/admin/config/config.blade.php | 10 +- resources/views/admin/config/system.blade.php | 32 ++-- .../views/admin/group/groupInfo.blade.php | 124 ++++++++++++++ .../views/admin/group/groupList.blade.php | 94 +++++++++++ resources/views/admin/layouts.blade.php | 7 +- resources/views/admin/node/nodeInfo.blade.php | 18 +- resources/views/admin/node/nodeList.blade.php | 41 ++++- .../views/admin/shop/goodsInfo.blade.php | 20 ++- resources/views/admin/tools/convert.blade.php | 6 +- resources/views/admin/user/userInfo.blade.php | 23 ++- resources/views/components/avatar.blade.php | 4 +- resources/views/user/index.blade.php | 4 +- resources/views/user/nodeList.blade.php | 104 +++++++++++- routes/web.php | 8 + sql/db.sql | 19 ++- sql/mod/20200725.sql | 13 ++ 88 files changed, 1030 insertions(+), 429 deletions(-) create mode 100644 app/Http/Controllers/Admin/GroupController.php create mode 100644 app/Models/UserGroup.php create mode 100644 public/assets/custom/maps/jquery-jvectormap-world-mill-cn.js rename public/assets/{global/vendor/jvectormap => custom}/maps/jquery-jvectormap-world-mill-en.js (100%) delete mode 100644 public/assets/global/vendor/jvectormap/jquery-jvectormap.js delete mode 100644 public/assets/global/vendor/jvectormap/jquery-jvectormap.min.css delete mode 100644 public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-au-mill-en.js delete mode 100644 public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-ca-lcc-en.js delete mode 100644 public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-de-mill-en.js delete mode 100644 public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-europe-mill-en.js delete mode 100644 public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-fr-mill-en.js delete mode 100644 public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-uk_regions-mill-en.js delete mode 100644 public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-us-merc-en.js delete mode 100644 public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-us-ny-newyork-mill-en.js delete mode 100644 public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-za-mill-en.js create mode 100644 resources/views/admin/group/groupInfo.blade.php create mode 100644 resources/views/admin/group/groupList.blade.php create mode 100644 sql/mod/20200725.sql diff --git a/app/Components/Helpers.php b/app/Components/Helpers.php index 72c5915d8..b26333709 100644 --- a/app/Components/Helpers.php +++ b/app/Components/Helpers.php @@ -102,12 +102,9 @@ public static function addUser($email, $password, $transfer_enable, $data, $refe // 获取系统配置 public static function systemConfig(): array { - $config = Config::query()->get(); - $data = []; - foreach($config as $vo){ + foreach(Config::all() as $vo){ $data[$vo->name] = $vo->value; } - $data['is_onlinePay'] = ($data['is_AliPay'] || $data['is_QQPay'] || $data['is_WeChatPay'] || $data['is_otherPay'])?: 0; return $data; @@ -115,11 +112,10 @@ public static function systemConfig(): array { // 获取一个随机端口 public static function getRandPort() { - $config = self::systemConfig(); - $port = random_int($config['min_port'], $config['max_port']); + $port = random_int(self::systemConfig()['min_port'], self::systemConfig()['max_port']); $exists_port = User::query()->pluck('port')->toArray(); - if(in_array($port, $exists_port, true) || in_array($port, self::$denyPorts)){ + if(in_array($port, $exists_port, true) || in_array($port, self::$denyPorts, true)){ $port = self::getRandPort(); } @@ -128,8 +124,7 @@ public static function getRandPort() { // 获取一个随机端口 public static function getOnlyPort() { - $config = self::systemConfig(); - $port = $config['min_port']; + $port = (int) self::systemConfig()['min_port']; $exists_port = User::query()->where('port', '>=', $port)->pluck('port')->toArray(); while(in_array($port, $exists_port, true) || in_array($port, self::$denyPorts, true)){ diff --git a/app/Components/IPIP.php b/app/Components/IPIP.php index 336fb53b8..69faed6f8 100644 --- a/app/Components/IPIP.php +++ b/app/Components/IPIP.php @@ -14,8 +14,6 @@ class IPIP { */ public static function ip($ip): ?array { $filePath = database_path('ipip.ipdb'); - $loc = new City($filePath); - - return $loc->findMap($ip, 'CN'); + return (new City($filePath))->findMap($ip, 'CN'); } } diff --git a/app/Components/Namesilo.php b/app/Components/Namesilo.php index 141005f3b..87454ef33 100644 --- a/app/Components/Namesilo.php +++ b/app/Components/Namesilo.php @@ -32,8 +32,7 @@ private function send($operation, $data = []) { $content = '请求操作:['.$operation.'] --- 请求数据:['.http_build_query($query).']'; - $client = new Client(['timeout' => 10]); - $request = $client->get(self::$host.$operation.'?'.http_build_query($query)); + $request = (new Client(['timeout' => 10]))->get(self::$host.$operation.'?'.http_build_query($query)); $result = XML2Array::createArray(json_decode($request->getBody(), true)); if($request->getStatusCode() != 200){ diff --git a/app/Components/NetworkDetection.php b/app/Components/NetworkDetection.php index 2b92ccb6f..675c8d04f 100644 --- a/app/Components/NetworkDetection.php +++ b/app/Components/NetworkDetection.php @@ -18,8 +18,7 @@ class NetworkDetection { public static function networkCheck($ip, $type, $port = null) { $url = 'https://api.50network.com/china-firewall/check/ip/'.($type? 'icmp/' : ($port? 'tcp_port/' : 'tcp_ack/')).$ip.($port? '/'.$port : ''); $checkName = $type? 'ICMP' : 'TCP'; - $client = new Client(['timeout' => 10]); - $request = $client->get($url); + $request = (new Client(['timeout' => 10]))->get($url); $result = json_decode($request->getBody(), true); if($request->getStatusCode() == 200){ @@ -66,9 +65,8 @@ public static function networkCheck($ip, $type, $port = null) { */ public static function ping($ip) { $url = 'https://api.oioweb.cn/api/hostping.php?host='.$ip;//https://api.iiwl.cc/api/ping.php?host= - $client = new Client(['timeout' => 20]); - $request = $client->get($url); - $message = json_decode($client->get($url)->getBody(), true); + $request = (new Client(['timeout' => 20]))->get($url); + $message = json_decode($request->getBody(), true); // 发送成功 if($request->getStatusCode() == 200){ diff --git a/app/Components/PushNotification.php b/app/Components/PushNotification.php index c2c17b0f7..d43192f10 100644 --- a/app/Components/PushNotification.php +++ b/app/Components/PushNotification.php @@ -30,8 +30,7 @@ public static function send($title, $content) { */ private static function ServerChan($title, $content) { // TODO:一天仅可发送不超过500条 - $client = new Client(['timeout' => 5]); - $request = $client->get('https://sc.ftqq.com/'.Helpers::systemConfig()['server_chan_key'].'.send?text='.$title.'&desp='.urlencode($content)); + $request = (new Client(['timeout' => 5]))->get('https://sc.ftqq.com/'.Helpers::systemConfig()['server_chan_key'].'.send?text='.$title.'&desp='.urlencode($content)); $message = json_decode($request->getBody(), true); Log::debug($message); // 发送成功 @@ -58,8 +57,7 @@ private static function ServerChan($title, $content) { * @return mixed */ private static function Bark($title, $content) { - $client = new Client(['timeout' => 5]); - $request = $client->get('https://api.day.app/'.Helpers::systemConfig()['bark_key'].'/'.$title.'/'.$content); + $request = (new Client(['timeout' => 5]))->get('https://api.day.app/'.Helpers::systemConfig()['bark_key'].'/'.$title.'/'.$content); $message = json_decode($request->getBody(), true); if($request->getStatusCode() == 200){ diff --git a/app/Components/QQInfo.php b/app/Components/QQInfo.php index db5a744fc..5009343c7 100644 --- a/app/Components/QQInfo.php +++ b/app/Components/QQInfo.php @@ -8,18 +8,15 @@ class QQInfo { public static function getName(string $qq): string { //向接口发起请求获取json数据 $url = 'https://r.qzone.qq.com/fcg-bin/cgi_get_portrait.fcg?get_nick=1&uins='.$qq; - $client = new Client(['timeout' => 10]); - $request = $client->get($url); + $request = (new Client(['timeout' => 10]))->get($url); $message = mb_convert_encoding($request->getBody(), "UTF-8", "GBK"); // 接口是否异常 - if($request->getStatusCode() == 200){ - if(strpos($message, $qq) !== false){ - //对获取的json数据进行截取并解析成数组 - $message = json_decode(substr($message, 17, -1), true); + if($request->getStatusCode() == 200 && str_contains($message, $qq)){ + //对获取的json数据进行截取并解析成数组 + $message = json_decode(substr($message, 17, -1), true); - return stripslashes($message[$qq][6]); - } + return stripslashes($message[$qq][6]); } return $qq; @@ -28,12 +25,11 @@ public static function getName(string $qq): string { public static function getName2(string $qq): string { //向接口发起请求获取json数据 $url = 'https://api.toubiec.cn/qq?qq='.$qq.'&size=100'; - $client = new Client(['timeout' => 10]); - $request = $client->get($url); + $request = (new Client(['timeout' => 10]))->get($url); $message = json_decode($request->getBody(), true); // 接口是否异常 - if($request->getStatusCode() == 200 && $message && $message['code'] == 200){ + if($message && $message['code'] == 200 && $request->getStatusCode() == 200){ return $message['name']; } @@ -43,12 +39,11 @@ public static function getName2(string $qq): string { public static function getName3(string $qq): string { //向接口发起请求获取json数据 $url = 'https://api.unipay.qq.com/v1/r/1450000186/wechat_query?cmd=1&pf=mds_storeopen_qb-__mds_qqclub_tab_-html5&pfkey=pfkey&from_h5=1&from_https=1&openid=openid&openkey=openkey&session_id=hy_gameid&session_type=st_dummy&qq_appid=&offerId=1450000186&sandbox=&provide_uin='.$qq; - $client = new Client(['timeout' => 10]); - $request = $client->get($url); + $request = (new Client(['timeout' => 10]))->get($url); $message = json_decode($request->getBody(), true); // 接口是否异常 - if($request->getStatusCode() == 200 && $message && $message['ret'] == 0){ + if($message && $message['ret'] == 0 && $request->getStatusCode() == 200){ return urldecode($message['nick']); } diff --git a/app/Console/Commands/AutoJob.php b/app/Console/Commands/AutoJob.php index 654c056c4..584a6e2ff 100644 --- a/app/Console/Commands/AutoJob.php +++ b/app/Console/Commands/AutoJob.php @@ -177,8 +177,7 @@ private function expireCode(): void { // 封禁访问异常的订阅链接 private function blockSubscribe(): void { if(self::$systemConfig['is_subscribe_ban']){ - $userList = User::query()->where('status', '>=', 0)->whereEnable(1)->get(); - foreach($userList as $user){ + foreach(User::query()->activeUser()->get() as $user){ $subscribe = UserSubscribe::query()->whereUserId($user->id)->first(); if($subscribe){ // 24小时内不同IP的请求次数 @@ -318,8 +317,7 @@ private function dispatchPort(): void { // 检测节点是否离线 private function checkNodeStatus(): void { if(self::$systemConfig['is_node_offline']){ - $nodeList = SsNode::whereIsRelay(0)->whereStatus(1)->get(); - foreach($nodeList as $node){ + foreach(SsNode::whereIsRelay(0)->whereStatus(1)->get() as $node){ // 10分钟内无节点负载信息则认为是后端炸了 $nodeTTL = SsNodeInfo::query() ->whereNodeId($node->id) diff --git a/app/Console/Commands/AutoPingNode.php b/app/Console/Commands/AutoPingNode.php index d1ec041b4..30d51f9c7 100644 --- a/app/Console/Commands/AutoPingNode.php +++ b/app/Console/Commands/AutoPingNode.php @@ -15,8 +15,7 @@ class AutoPingNode extends Command { public function handle(): void { $jobStartTime = microtime(true); - $nodeList = SsNode::query()->whereIsRelay(0)->whereStatus(1)->get(); - foreach($nodeList as $node){ + foreach(SsNode::query()->whereIsRelay(0)->whereStatus(1)->get() as $node){ $this->pingNode($node->id, $node->is_ddns? $node->server : $node->ip); } @@ -33,10 +32,10 @@ private function pingNode($nodeId, $ip): void { if($result){ $obj = new SsNodePing(); $obj->node_id = $nodeId; - $obj->ct = intval($result['telecom']['time']);//电信 - $obj->cu = intval($result['Unicom']['time']);// 联通 - $obj->cm = intval($result['move']['time']);// 移动 - $obj->hk = intval($result['HongKong']['time']);// 香港 + $obj->ct = (int) $result['telecom']['time'];//电信 + $obj->cu = (int) $result['Unicom']['time'];// 联通 + $obj->cm = (int) $result['move']['time'];// 移动 + $obj->hk = (int) $result['HongKong']['time'];// 香港 $obj->save(); }else{ Log::info("【".$ip."】Ping测速获取失败"); diff --git a/app/Console/Commands/AutoStatisticsNodeDailyTraffic.php b/app/Console/Commands/AutoStatisticsNodeDailyTraffic.php index 620cb1b01..9cf886783 100644 --- a/app/Console/Commands/AutoStatisticsNodeDailyTraffic.php +++ b/app/Console/Commands/AutoStatisticsNodeDailyTraffic.php @@ -15,8 +15,7 @@ class AutoStatisticsNodeDailyTraffic extends Command { public function handle(): void { $jobStartTime = microtime(true); - $nodeList = SsNode::query()->whereStatus(1)->orderBy('id')->get(); - foreach($nodeList as $node){ + foreach(SsNode::query()->whereStatus(1)->orderBy('id')->get() as $node){ $this->statisticsByNode($node->id); } diff --git a/app/Console/Commands/AutoStatisticsNodeHourlyTraffic.php b/app/Console/Commands/AutoStatisticsNodeHourlyTraffic.php index 06a69be53..7d479d276 100644 --- a/app/Console/Commands/AutoStatisticsNodeHourlyTraffic.php +++ b/app/Console/Commands/AutoStatisticsNodeHourlyTraffic.php @@ -15,8 +15,7 @@ class AutoStatisticsNodeHourlyTraffic extends Command { public function handle(): void { $jobStartTime = microtime(true); - $nodeList = SsNode::query()->whereStatus(1)->orderBy('id')->get(); - foreach($nodeList as $node){ + foreach(SsNode::query()->whereStatus(1)->orderBy('id')->get() as $node){ $this->statisticsByNode($node->id); } diff --git a/app/Console/Commands/AutoStatisticsUserDailyTraffic.php b/app/Console/Commands/AutoStatisticsUserDailyTraffic.php index 4e22aff59..7c5715773 100644 --- a/app/Console/Commands/AutoStatisticsUserDailyTraffic.php +++ b/app/Console/Commands/AutoStatisticsUserDailyTraffic.php @@ -16,14 +16,12 @@ class AutoStatisticsUserDailyTraffic extends Command { public function handle(): void { $jobStartTime = microtime(true); - $userList = User::query()->where('status', '>=', 0)->whereEnable(1)->get(); - foreach($userList as $user){ + foreach(User::query()->activeUser()->get() as $user){ // 统计一次所有节点的总和 $this->statisticsByNode($user->id); // 统计每个节点产生的流量 - $nodeList = SsNode::query()->whereStatus(1)->orderBy('id')->get(); - foreach($nodeList as $node){ + foreach(SsNode::query()->whereStatus(1)->orderBy('id')->get() as $node){ $this->statisticsByNode($user->id, $node->id); } } diff --git a/app/Console/Commands/AutoStatisticsUserHourlyTraffic.php b/app/Console/Commands/AutoStatisticsUserHourlyTraffic.php index 066ff827f..aefa40d74 100644 --- a/app/Console/Commands/AutoStatisticsUserHourlyTraffic.php +++ b/app/Console/Commands/AutoStatisticsUserHourlyTraffic.php @@ -16,14 +16,12 @@ class AutoStatisticsUserHourlyTraffic extends Command { public function handle(): void { $jobStartTime = microtime(true); - $userList = User::query()->where('status', '>=', 0)->whereEnable(1)->get(); - foreach($userList as $user){ + foreach(User::query()->activeUser()->get() as $user){ // 统计一次所有节点的总和 $this->statisticsByNode($user->id); // 统计每个节点产生的流量 - $nodeList = SsNode::query()->whereStatus(1)->orderBy('id')->get(); - foreach($nodeList as $node){ + foreach(SsNode::query()->whereStatus(1)->orderBy('id')->get() as $node){ $this->statisticsByNode($user->id, $node->id); } } diff --git a/app/Console/Commands/UserExpireAutoWarning.php b/app/Console/Commands/UserExpireAutoWarning.php index bb54f5927..a18348344 100644 --- a/app/Console/Commands/UserExpireAutoWarning.php +++ b/app/Console/Commands/UserExpireAutoWarning.php @@ -36,8 +36,7 @@ public function handle(): void { private function userExpireWarning(): void { // 只取SSR没被禁用的用户,其他不用管 - $userList = User::query()->whereEnable(1)->get(); - foreach($userList as $user){ + foreach(User::query()->whereEnable(1)->get() as $user){ // 用户名不是邮箱的跳过 if(false === filter_var($user->email, FILTER_VALIDATE_EMAIL)){ continue; diff --git a/app/Console/Commands/UserTrafficAutoWarning.php b/app/Console/Commands/UserTrafficAutoWarning.php index f19971823..809df6ff2 100644 --- a/app/Console/Commands/UserTrafficAutoWarning.php +++ b/app/Console/Commands/UserTrafficAutoWarning.php @@ -35,8 +35,7 @@ public function handle(): void { // 用户流量超过警告阈值自动发邮件提醒 private function userTrafficWarning(): void { - $userList = User::query()->where('status', '>=', 0)->whereEnable(1)->where('transfer_enable', '>', 0)->get(); - foreach($userList as $user){ + foreach(User::query()->activeUser()->where('transfer_enable', '>', 0)->get() as $user){ // 用户名不是邮箱的跳过 if(false === filter_var($user->email, FILTER_VALIDATE_EMAIL)){ continue; diff --git a/app/Console/Commands/updateTicket.php b/app/Console/Commands/updateTicket.php index f20b2ad2d..ea33cff21 100644 --- a/app/Console/Commands/updateTicket.php +++ b/app/Console/Commands/updateTicket.php @@ -14,13 +14,10 @@ class updateTicket extends Command { public function handle(): void { Log::info('----------------------------【更新工单】开始----------------------------'); // 获取管理员 - $adminList = User::query()->whereIsAdmin(1)->get(); - foreach($adminList as $admin){ + foreach(User::query()->whereIsAdmin(1)->get() as $admin){ Log::info('----------------------------【更新管理员'.$admin->id.'回复工单】开始----------------------------'); - // 获取该管理回复过的工单 - $replyList = TicketReply::query()->whereUserId($admin->id)->get(); - // 更新工单 - foreach($replyList as $reply){ + // 获取该管理回复过的工单, 更新工单 + foreach(TicketReply::query()->whereUserId($admin->id)->get() as $reply){ $ret = TicketReply::query()->whereId($reply->id)->update(['user_id' => 0, 'admin_id' => $admin->id]); if($ret){ Log::info('--- 管理员:'.$admin->email.'回复子单ID:'.$reply->id.' ---'); diff --git a/app/Console/Commands/updateUserLevel.php b/app/Console/Commands/updateUserLevel.php index 19499a9e8..90a1bc194 100644 --- a/app/Console/Commands/updateUserLevel.php +++ b/app/Console/Commands/updateUserLevel.php @@ -15,8 +15,7 @@ class updateUserLevel extends Command { public function handle(): void { Log::info('----------------------------【用户等级升级】开始----------------------------'); // 预设level 0 - $users = User::query()->where('level', '<>', 0)->get(); - foreach($users as $user){ + foreach(User::query()->where('level', '<>', 0)->get() as $user){ User::query()->whereId($user->id)->update(['level' => 0]); } // 获取商品列表,取新等级 diff --git a/app/Console/Commands/updateUserName.php b/app/Console/Commands/updateUserName.php index 070066f00..f6fef47c4 100644 --- a/app/Console/Commands/updateUserName.php +++ b/app/Console/Commands/updateUserName.php @@ -14,7 +14,7 @@ class updateUserName extends Command { public function handle(): void { Log::info('----------------------------【升级用户昵称】开始----------------------------'); - $userList = User::query()->get(); + $userList = User::all(); foreach($userList as $user){ $name = process($user->id); User::query()->whereId($user->id)->update(['username' => $name]); @@ -44,17 +44,17 @@ function process($id) { if($user->qq){ $name = QQInfo::getName3($user->qq); // 检测用户注册是否为QQ邮箱 - }elseif(stripos($user->email, '@qq') != false){ + }elseif(stripos($user->email, '@qq') !== false){ // 分离QQ邮箱后缀 - $email = explode('@', $user->email); + $email = explode('@', $user->email, 2); if(is_numeric($email[0])){ $name = QQInfo::getName3($email[0]); - }elseif(strpos($email[0], '.') !== false){ + }elseif(str_contains($email[0], '.')){ $temp = explode('.', $email[0]); if(is_numeric($temp[1])){ $name = QQInfo::getName3($temp[1]); }else{ - print_r($user->email.PHP_EOL); + echo $user->email.PHP_EOL; } } } diff --git a/app/Console/Commands/upgradeUserResetTime.php b/app/Console/Commands/upgradeUserResetTime.php index 07970f902..8cab3330f 100644 --- a/app/Console/Commands/upgradeUserResetTime.php +++ b/app/Console/Commands/upgradeUserResetTime.php @@ -13,8 +13,7 @@ class upgradeUserResetTime extends Command { public function handle(): void { Log::info('----------------------------【升级用户重置日期】开始----------------------------'); - $userList = User::query()->get(); - foreach($userList as $user){ + foreach(User::all() as $user){ $reset_time = null; if($user->traffic_reset_day){ $today = date('d');// 今天 日期 diff --git a/app/Http/Controllers/Admin/GroupController.php b/app/Http/Controllers/Admin/GroupController.php new file mode 100644 index 000000000..8e52fad66 --- /dev/null +++ b/app/Http/Controllers/Admin/GroupController.php @@ -0,0 +1,120 @@ +orderByDesc('id')->paginate(15)->appends($request->except('page')); + return Response::view('admin.group.groupList', $view); + } + + // 添加用户分组 + public function addUserGroup(Request $request) { + if($request->isMethod('POST')){ + $validator = Validator::make($request->all(), [ + 'name' => 'required', + 'nodes' => 'required', + ]); + + if($validator->fails()){ + return Redirect::back()->withInput()->withErrors($validator->errors()); + } + + $ret = UserGroup::query()->insert([ + 'name' => $request->input('name'), + 'nodes' => implode(',', $request->input('nodes')) + ]); + + if($ret){ + return Redirect::back()->with('successMsg', '操作成功'); + } + return Redirect::back()->withInput()->withErrors('操作失败'); + } + $view['nodeList'] = SsNode::query()->whereStatus(1)->get(); + return Response::view('admin.group.groupInfo', $view); + } + + // 编辑用户分组 + public function editUserGroup(Request $request) { + $id = $request->input('id'); + if($request->isMethod('POST')){ + $validator = Validator::make($request->all(), [ + 'id' => 'required', + 'name' => 'required', + ]); + + if($validator->fails()){ + return Redirect::back()->withInput()->withErrors($validator->errors()); + } + $name = $request->input('name'); + $nodes = $request->input('nodes'); + $userGroup = UserGroup::query()->find($id); + if(!$userGroup){ + return Redirect::back()->withInput()->withErrors('未找到需要编辑的用户分组!'); + } + + $data = []; + if($userGroup->name != $name){ + $data['name'] = $name; + } + + if($nodes){ + $nodeStr = implode(',', $nodes); + if($userGroup->nodes != $nodeStr){ + $data['nodes'] = $nodeStr; + }elseif($data == []){ + return Redirect::back()->with('successMsg', '检测为未修改,无变动!'); + } + }elseif(isset($userGroup->nodes)){ + $data['nodes'] = $nodes; + } + $ret = UserGroup::query()->whereId($id)->update($data); + if($ret){ + return Redirect::back()->with('successMsg', '操作成功'); + } + return Redirect::back()->withInput()->withErrors('操作失败'); + } + + $userGroup = UserGroup::query()->find($id); + if(!$userGroup){ + return Redirect::back(); + } + $view['nodeList'] = SsNode::query()->whereStatus(1)->get(); + + return view('admin.group.groupInfo', $view)->with(compact('userGroup')); + } + + // 删除用户分组 + public function delUserGroup(Request $request): JsonResponse { + $id = $request->input('id'); + // 校验该分组下是否存在关联账号 + $userCount = User::query()->whereGroupId($id)->count(); + if($userCount){ + return Response::json(['status' => 'fail', 'message' => '该分组下存在关联账号,请先取消关联!']); + } + + $userGroup = UserGroup::query()->whereId($id)->first(); + if(!$userGroup){ + return Response::json(['status' => 'fail', 'message' => '删除失败,未找到用户分组']); + } + + try{ + UserGroup::query()->whereId($id)->delete(); + }catch(Exception $e){ + return Response::json(['status' => 'fail', 'message' => '删除失败,'.$e->getMessage()]); + } + + return Response::json(['status' => 'success', 'message' => '清理成功']); + } +} diff --git a/app/Http/Controllers/Admin/MarketingController.php b/app/Http/Controllers/Admin/MarketingController.php index 9b7838665..1fa6e4085 100644 --- a/app/Http/Controllers/Admin/MarketingController.php +++ b/app/Http/Controllers/Admin/MarketingController.php @@ -69,8 +69,7 @@ public function addPushMarketing(Request $request): ?JsonResponse { DB::beginTransaction(); try{ - $client = new Client(); - $response = $client->request('GET', 'https://pushbear.ftqq.com/sub', [ + $response = (new Client())->get('https://pushbear.ftqq.com/sub', [ 'query' => [ 'sendkey' => self::$systemConfig['push_bear_send_key'], 'text' => $title, diff --git a/app/Http/Controllers/Admin/RuleController.php b/app/Http/Controllers/Admin/RuleController.php index 4ccf9c161..e4ecab739 100644 --- a/app/Http/Controllers/Admin/RuleController.php +++ b/app/Http/Controllers/Admin/RuleController.php @@ -81,8 +81,7 @@ public function delRule(Request $request): JsonResponse { try{ Rule::query()->whereId($id)->delete(); - $RuleGroupList = RuleGroup::query()->get(); - foreach($RuleGroupList as $RuleGroup){ + foreach(RuleGroup::all() as $RuleGroup){ $rules = explode(',', $RuleGroup->rules); if(in_array($id, $rules, true)){ $rules = implode(',', array_diff($rules, [$id])); @@ -116,7 +115,7 @@ public function addRuleGroup(Request $request) { $obj = new RuleGroup(); $obj->name = $request->input('name'); - $obj->type = intval($request->input('type')); + $obj->type = (int) $request->input('type'); $obj->rules = implode(',', $request->input('rules')); $obj->save(); @@ -125,7 +124,7 @@ public function addRuleGroup(Request $request) { } return Redirect::back()->withInput()->withErrors('操作失败'); } - $view['ruleList'] = Rule::query()->get(); + $view['ruleList'] = Rule::all(); return Response::view('admin.rule.ruleGroupInfo', $view); } @@ -143,7 +142,7 @@ public function editRuleGroup(Request $request) { return Redirect::back()->withInput()->withErrors($validator->errors()); } $name = $request->input('name'); - $type = intval($request->input('type')); + $type = (int) $request->input('type'); $rules = $request->input('rules'); $ruleGroup = RuleGroup::query()->find($id); if(!$ruleGroup){ @@ -161,7 +160,7 @@ public function editRuleGroup(Request $request) { $ruleStr = implode(',', $rules); if($ruleGroup->rules != $ruleStr){ $data['rules'] = $ruleStr; - }else{ + }elseif($data == []){ return Redirect::back()->with('successMsg', '检测为未修改,无变动!'); } }elseif(isset($ruleGroup->rules)){ @@ -178,7 +177,7 @@ public function editRuleGroup(Request $request) { if(!$ruleGroup){ return Redirect::back(); } - $view['ruleList'] = Rule::query()->get(); + $view['ruleList'] = Rule::all(); return view('admin.rule.ruleGroupInfo', $view)->with(compact('ruleGroup')); } @@ -247,7 +246,7 @@ public function assignNode(Request $request) { } $view['ruleGroup'] = RuleGroup::query()->find($id); - $view['nodeList'] = SsNode::query()->get(); + $view['nodeList'] = SsNode::all(); return Response::view('admin.rule.assignNode', $view); } @@ -275,8 +274,8 @@ public function ruleLogList(Request $request): \Illuminate\Http\Response { $query->whereRuleId($ruleId); } - $view['nodeList'] = SsNode::query()->get(); - $view['ruleList'] = Rule::query()->get(); + $view['nodeList'] = SsNode::all(); + $view['ruleList'] = Rule::all(); $view['ruleLogs'] = $query->paginate(15)->appends($request->except('page')); return Response::view('admin.rule.ruleLogList', $view); } diff --git a/app/Http/Controllers/Admin/ShopController.php b/app/Http/Controllers/Admin/ShopController.php index 6e850476b..fecd1be5d 100644 --- a/app/Http/Controllers/Admin/ShopController.php +++ b/app/Http/Controllers/Admin/ShopController.php @@ -101,7 +101,7 @@ public function addGoods(Request $request) { return Redirect::back()->withInput()->withErrors('添加失败'); } }else{ - $view['level_list'] = Level::query()->orderBy('level')->get(); + $view['levelList'] = Level::query()->orderBy('level')->get(); return Response::view('admin.shop.goodsInfo', $view); } @@ -176,7 +176,7 @@ public function editGoods(Request $request) { } $goods = Goods::query()->whereId($id)->first(); - $view['level_list'] = Level::query()->orderBy('level')->get(); + $view['levelList'] = Level::query()->orderBy('level')->get(); return view('admin.shop.goodsInfo', $view)->with(compact('goods')); } diff --git a/app/Http/Controllers/Admin/ToolsController.php b/app/Http/Controllers/Admin/ToolsController.php index 7ab802541..90f9b4a8f 100644 --- a/app/Http/Controllers/Admin/ToolsController.php +++ b/app/Http/Controllers/Admin/ToolsController.php @@ -31,9 +31,9 @@ public function decompile(Request $request) { foreach($content as $item){ // 判断是SS还是SSR链接 $str = ''; - if(false !== strpos($item, 'ssr://')){ + if(str_contains($item, 'ssr://')){ $str = mb_substr($item, 6); - }elseif(false !== strpos($item, 'ss://')){ + }elseif(str_contains($item, 'ss://')){ $str = mb_substr($item, 5); } @@ -101,9 +101,9 @@ public function convert(Request $request) { } // 加密方式、协议、混淆 - $view['method_list'] = Helpers::methodList(); - $view['protocol_list'] = Helpers::protocolList(); - $view['obfs_list'] = Helpers::obfsList(); + $view['methodList'] = Helpers::methodList(); + $view['protocolList'] = Helpers::protocolList(); + $view['obfsList'] = Helpers::obfsList(); return Response::view('admin.tools.convert', $view); } @@ -219,7 +219,7 @@ public function analysis(): \Illuminate\Http\Response { }else{ $url = []; foreach($logs as $log){ - if(strpos($log, 'TCP connecting')){ + if(str_contains($log, 'TCP connecting')){ continue; } diff --git a/app/Http/Controllers/AdminController.php b/app/Http/Controllers/AdminController.php index 1d1f200d3..b4fd150d1 100644 --- a/app/Http/Controllers/AdminController.php +++ b/app/Http/Controllers/AdminController.php @@ -24,6 +24,7 @@ use App\Models\User; use App\Models\UserBanLog; use App\Models\UserCreditLog; +use App\Models\UserGroup; use App\Models\UserLoginLog; use App\Models\UserSubscribe; use App\Models\UserTrafficDaily; @@ -253,13 +254,14 @@ public function addUser(Request $request) { $user->method = $request->input('method'); $user->protocol = $request->input('protocol'); $user->obfs = $request->input('obfs'); - $user->speed_limit = $request->input('speed_limit'); + $user->speed_limit = $request->input('speed_limit') * Mbps; $user->wechat = $request->input('wechat'); $user->qq = $request->input('qq'); $user->enable_time = $request->input('enable_time')?: date('Y-m-d'); $user->expire_time = $request->input('expire_time')?: date('Y-m-d', strtotime("+365 days")); $user->remark = str_replace(["atob", "eval"], "", $request->input('remark')); $user->level = $request->input('level')?: 0; + $user->group_id = $request->input('group_id')?: 0; $user->reg_ip = getClientIp(); $user->reset_time = $request->input('reset_time') > date('Y-m-d')? $request->input('reset_time') : null; $user->invite_num = $request->input('invite_num')?: 0; @@ -285,10 +287,11 @@ public function addUser(Request $request) { } // 生成一个可用端口 - $view['method_list'] = Helpers::methodList(); - $view['protocol_list'] = Helpers::protocolList(); - $view['obfs_list'] = Helpers::obfsList(); - $view['level_list'] = Level::query()->orderBy('level')->get(); + $view['methodList'] = Helpers::methodList(); + $view['protocolList'] = Helpers::protocolList(); + $view['obfsList'] = Helpers::obfsList(); + $view['levelList'] = Level::query()->orderBy('level')->get(); + $view['groupList'] = UserGroup::query()->orderBy('id')->get(); return Response::view('admin.user.userInfo', $view); } @@ -374,24 +377,25 @@ public function editUser(Request $request, $id) { 'method' => $request->input('method'), 'protocol' => $request->input('protocol'), 'obfs' => $request->input('obfs'), - 'speed_limit' => $request->input('speed_limit'), + 'speed_limit' => $request->input('speed_limit') * Mbps, 'wechat' => $request->input('wechat'), 'qq' => $request->input('qq'), 'enable_time' => $request->input('enable_time')?: date('Y-m-d'), 'expire_time' => $request->input('expire_time')?: date('Y-m-d', strtotime("+365 days")), 'remark' => str_replace("eval", "", str_replace("atob", "", $request->input('remark'))), 'level' => $request->input('level'), + 'group_id' => $request->input('group_id'), 'reset_time' => $request->input('reset_time'), 'status' => $status ]; // 只有admin才有权限操作管理员属性 if(Auth::getUser()->is_admin == 1){ - $data['is_admin'] = intval($is_admin); + $data['is_admin'] = (int) $is_admin; } // 非演示环境才可以修改管理员密码 - if(!empty($password) && !(env('APP_DEMO') && $id == 1)){ + if(!empty($password) && !(config('app.demo') && $id == 1)){ $data['password'] = Hash::make($password); } @@ -419,10 +423,11 @@ public function editUser(Request $request, $id) { } $view['user'] = $user; - $view['method_list'] = Helpers::methodList(); - $view['protocol_list'] = Helpers::protocolList(); - $view['obfs_list'] = Helpers::obfsList(); - $view['level_list'] = Level::query()->orderBy('level')->get(); + $view['methodList'] = Helpers::methodList(); + $view['protocolList'] = Helpers::protocolList(); + $view['obfsList'] = Helpers::obfsList(); + $view['levelList'] = Level::query()->orderBy('level')->get(); + $view['groupList'] = UserGroup::query()->orderBy('id')->get(); return view('admin.user.userInfo', $view)->with(compact('user')); } @@ -695,7 +700,7 @@ public function exportSSJson(): BinaryFileResponse { $filePath = public_path('downloads/'.$fileName); file_put_contents($filePath, $json); - if(!file_exists($filePath)){ + if(!is_file($filePath)){ exit('文件生成失败,请检查目录权限'); } @@ -824,16 +829,16 @@ public function config(Request $request) { return Response::json(['status' => 'success', 'data' => '', 'message' => '添加成功']); } - $labelList = Label::query()->get(); + $labelList = Label::all(); foreach($labelList as $label){ $label->nodeCount = SsNodeLabel::query()->whereLabelId($label->id)->groupBy('label_id')->count(); } - $view['method_list'] = SsConfig::type(1)->get(); - $view['protocol_list'] = SsConfig::type(2)->get(); - $view['obfs_list'] = SsConfig::type(3)->get(); - $view['country_list'] = Country::query()->get(); - $view['level_list'] = Level::query()->get(); + $view['methodList'] = SsConfig::type(1)->get(); + $view['protocolList'] = SsConfig::type(2)->get(); + $view['obfsList'] = SsConfig::type(3)->get(); + $view['countryList'] = Country::all(); + $view['levelList'] = Level::all(); $view['labelList'] = $labelList; return Response::view('admin.config.config', $view); @@ -1105,14 +1110,14 @@ public function delCountry(Request $request): ?JsonResponse { // 系统设置 public function system(): \Illuminate\Http\Response { $view = self::$systemConfig; - $view['label_list'] = Label::query()->orderByDesc('sort')->orderBy('id')->get(); + $view['labelList'] = Label::query()->orderByDesc('sort')->orderBy('id')->get(); return Response::view('admin.config.system', $view); } // 设置某个配置项 public function setConfig(Request $request): JsonResponse { - $name = $request->input('name'); + $name = (string) $request->input('name'); $value = $request->input('value'); if(!$name){ @@ -1125,21 +1130,21 @@ public function setConfig(Request $request): JsonResponse { } // 如果开启用户邮件重置密码,则先设置网站名称和网址 - if($value != '0' - && in_array($name, ['is_reset_password', 'is_activate_account', 'expire_warning', 'traffic_warning'])){ - $config = Config::query()->whereName('website_name')->first(); - if($config->value == ''){ + if($value !== '0' + && in_array($name, ['is_reset_password', 'is_activate_account', 'expire_warning', 'traffic_warning'], true)){ + $config = Config::query()->whereName('website_name')->firstOrFail(); + if(!$config->value){ return Response::json(['status' => 'fail', 'message' => '设置失败:启用该配置需要先设置【网站名称】']); } - $config = Config::query()->whereName('website_url')->first(); - if($config->value == ''){ + $config = Config::query()->whereName('website_url')->firstOrFail(); + if(!$config->value){ return Response::json(['status' => 'fail', 'message' => '设置失败:启用该配置需要先设置【网站地址】']); } } // 支付设置判断 - if($value != '' && in_array($name, ['is_AliPay', 'is_QQPay', 'is_WeChatPay', 'is_otherPay'])){ + if($value !== '' && in_array($name, ['is_AliPay', 'is_QQPay', 'is_WeChatPay', 'is_otherPay'], true)){ switch($value){ case 'f2fpay': if(!self::$systemConfig['f2fpay_app_id'] || !self::$systemConfig['f2fpay_private_key'] @@ -1181,7 +1186,7 @@ public function setConfig(Request $request): JsonResponse { } // 演示环境禁止修改特定配置项 - if(env('APP_DEMO')){ + if(config('app.demo')){ $denyConfig = [ 'website_url', 'min_rand_traffic', @@ -1199,7 +1204,7 @@ public function setConfig(Request $request): JsonResponse { // 如果是返利比例,则需要除100 if($name === 'referral_percent'){ - $value = intval($value) / 100; + $value = (int) $value / 100; } // 更新配置 @@ -1469,7 +1474,7 @@ public function userOnlineIPList(Request $request): \Illuminate\Http\Response { $wechat = $request->input('wechat'); $qq = $request->input('qq'); - $query = User::query()->where('status', '>=', 0)->whereEnable(1); + $query = User::query()->activeUser(); if(isset($email)){ $query->where('email', 'like', '%'.$email.'%'); diff --git a/app/Http/Controllers/Api/LoginController.php b/app/Http/Controllers/Api/LoginController.php index 67d2a6fd2..b0fd385f3 100644 --- a/app/Http/Controllers/Api/LoginController.php +++ b/app/Http/Controllers/Api/LoginController.php @@ -77,8 +77,13 @@ public function login(Request $request): ?JsonResponse { $url = self::$systemConfig['subscribe_domain']?: self::$systemConfig['website_url']; // 节点列表 - $nodeList = SsNode::query()->whereStatus(1)->where('level', '<=', $user->level)->get(); - + $nodeList = SsNode::query() + ->whereStatus(1) + ->GroupNodePermit($user->group_id) + ->where('level', '<=', $user->level) + ->orderByDesc('sort') + ->orderBy('id') + ->get(); $c_nodes = collect(); foreach($nodeList as $node){ diff --git a/app/Http/Controllers/Api/WebApi/BaseController.php b/app/Http/Controllers/Api/WebApi/BaseController.php index efa871767..51c84b715 100644 --- a/app/Http/Controllers/Api/WebApi/BaseController.php +++ b/app/Http/Controllers/Api/WebApi/BaseController.php @@ -19,9 +19,9 @@ class BaseController { // 上报节点心跳信息 public function setNodeStatus(Request $request, $id): JsonResponse { - $cpu = intval($request->input('cpu')) / 100; - $mem = intval($request->input('mem')) / 100; - $disk = intval($request->input('disk')) / 100; + $cpu = (int) $request->input('cpu') / 100; + $mem = (int) $request->input('mem') / 100; + $disk = (int) $request->input('disk') / 100; if(is_null($request->input('uptime'))){ return $this->returnData('上报节点心跳信息失败,请检查字段'); @@ -29,7 +29,7 @@ public function setNodeStatus(Request $request, $id): JsonResponse { $obj = new SsNodeInfo(); $obj->node_id = $id; - $obj->uptime = intval($request->input('uptime')); + $obj->uptime = (int) $request->input('uptime'); //$obj->load = $request->input('load'); $obj->load = implode(' ', [$cpu, $mem, $disk]); $obj->log_time = time(); @@ -43,7 +43,7 @@ public function setNodeStatus(Request $request, $id): JsonResponse { } // 返回数据 - public function returnData($message, $status = 'fail', $code = 400, $data = '', $addition = false): JsonResponse { + public function returnData($message, $status = 'fail', $code = 400, $data = '', $addition = []): JsonResponse { $data = ['status' => $status, 'code' => $code, 'data' => $data, 'message' => $message]; if($addition){ @@ -95,9 +95,7 @@ public function setNodeOnline(Request $request, $id): JsonResponse { // 上报用户流量日志 public function setUserTraffic(Request $request, $id): JsonResponse { - $inputArray = $request->all(); - - foreach($inputArray as $input){ + foreach($request->all() as $input){ if(!array_key_exists('uid', $input)){ return $this->returnData('上报用户流量日志失败,请检查字段'); } @@ -105,9 +103,9 @@ public function setUserTraffic(Request $request, $id): JsonResponse { $rate = SsNode::find($id)->traffic_rate; $obj = new UserTrafficLog(); - $obj->user_id = intval($input['uid']); - $obj->u = intval($input['upload']) * $rate; - $obj->d = intval($input['download']) * $rate; + $obj->user_id = (int) $input['uid']; + $obj->u = (int) $input['upload'] * $rate; + $obj->d = (int) $input['download'] * $rate; $obj->node_id = $id; $obj->rate = $rate; $obj->traffic = flowAutoShow($obj->u + $obj->d); @@ -130,8 +128,7 @@ public function getNodeRule($id): JsonResponse { if($nodeRule){ $ruleGroup = RuleGroup::query()->whereId($nodeRule->rule_group_id)->first(); if($ruleGroup){ - $rules = explode(',', $ruleGroup->rules); - foreach($rules as $ruleId){ + foreach(explode(',', $ruleGroup->rules) as $ruleId){ $rule = Rule::query()->whereId($ruleId)->first(); if($rule){ $new = [ diff --git a/app/Http/Controllers/Api/WebApi/TrojanController.php b/app/Http/Controllers/Api/WebApi/TrojanController.php index ae2860a88..69f68f5de 100644 --- a/app/Http/Controllers/Api/WebApi/TrojanController.php +++ b/app/Http/Controllers/Api/WebApi/TrojanController.php @@ -28,7 +28,12 @@ public function getNodeInfo($id): JsonResponse { // 获取节点可用的用户列表 public function getUserList($id): JsonResponse { $node = SsNode::query()->whereId($id)->first(); - $users = User::query()->where('status', '<>', -1)->whereEnable(1)->where('level', '>=', $node->level)->get(); + $users = User::query() + ->where('status', '<>', -1) + ->whereEnable(1) + ->groupUserPermit($node->id) + ->where('level', '>=', $node->level) + ->get(); $data = []; foreach($users as $user){ diff --git a/app/Http/Controllers/Api/WebApi/V2RayController.php b/app/Http/Controllers/Api/WebApi/V2RayController.php index 4c0f57779..2671f6bad 100644 --- a/app/Http/Controllers/Api/WebApi/V2RayController.php +++ b/app/Http/Controllers/Api/WebApi/V2RayController.php @@ -41,7 +41,12 @@ public function getNodeInfo($id): JsonResponse { // 获取节点可用的用户列表 public function getUserList($id): JsonResponse { $node = SsNode::query()->whereId($id)->first(); - $users = User::query()->where('status', '<>', -1)->whereEnable(1)->where('level', '>=', $node->level)->get(); + $users = User::query() + ->where('status', '<>', -1) + ->whereEnable(1) + ->groupUserPermit($node->id) + ->where('level', '>=', $node->level) + ->get(); $data = []; foreach($users as $user){ diff --git a/app/Http/Controllers/Api/WebApi/VNetController.php b/app/Http/Controllers/Api/WebApi/VNetController.php index 7b5ebd3fd..d981d1cb6 100644 --- a/app/Http/Controllers/Api/WebApi/VNetController.php +++ b/app/Http/Controllers/Api/WebApi/VNetController.php @@ -22,7 +22,7 @@ public function getNodeInfo($id): JsonResponse { 'speed_limit' => $node->speed_limit, 'client_limit' => $node->client_limit, 'single' => $node->single, - 'port' => strval($node->port), + 'port' => (string) $node->port, 'passwd' => $node->passwd?: '', 'push_port' => $node->push_port, 'secret' => $node->auth->secret, @@ -33,7 +33,12 @@ public function getNodeInfo($id): JsonResponse { // 获取节点可用的用户列表 public function getUserList($id): JsonResponse { $node = SsNode::query()->whereId($id)->first(); - $users = User::query()->where('status', '<>', -1)->whereEnable(1)->where('level', '>=', $node->level)->get(); + $users = User::query() + ->where('status', '<>', -1) + ->whereEnable(1) + ->groupUserPermit($node->id) + ->where('level', '>=', $node->level) + ->get(); $data = []; foreach($users as $user){ diff --git a/app/Http/Controllers/AuthController.php b/app/Http/Controllers/AuthController.php index 1adefeac4..6e31dbae5 100644 --- a/app/Http/Controllers/AuthController.php +++ b/app/Http/Controllers/AuthController.php @@ -166,7 +166,7 @@ private function check_captcha($request) { private function addUserLoginLog($userId, $ip): void { if(filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6)){ Log::info('识别到IPv6,尝试解析:'.$ip); - $ipInfo = getIPv6($ip); + $ipInfo = getIPInfo($ip); }else{ $ipInfo = QQWry::ip($ip); // 通过纯真IP库解析IPv4信息 if(isset($ipInfo['error'])){ @@ -242,10 +242,10 @@ public function register(Request $request) { $register_token = $request->input('register_token'); $code = $request->input('code'); $verify_code = $request->input('verify_code'); - $aff = intval($request->input('aff')); + $aff = (int) $request->input('aff'); // 防止重复提交 - if($register_token != Session::get('register_token')){ + if($register_token !== Session::get('register_token')){ return Redirect::back()->withInput()->withErrors(trans('auth.repeat_request')); } @@ -258,8 +258,8 @@ public function register(Request $request) { // 校验域名邮箱黑白名单 if(self::$systemConfig['is_email_filtering']){ - $result = $this->emailChecker($email); - if($result != false){ + $result = $this->emailChecker($email, 1); + if($result !== false){ return $result; } } @@ -406,23 +406,32 @@ public function register(Request $request) { } //邮箱检查 - private function emailChecker($email) { + private function emailChecker($email, $returnType = 0) { $sensitiveWords = $this->sensitiveWords(self::$systemConfig['is_email_filtering']); $emailSuffix = explode('@', $email); // 提取邮箱后缀 switch(self::$systemConfig['is_email_filtering']){ // 黑名单 case 1: if(in_array(strtolower($emailSuffix[1]), $sensitiveWords, true)){ + if($returnType){ + return Redirect::back()->withErrors(trans('auth.email_banned')); + } return Response::json(['status' => 'fail', 'message' => trans('auth.email_banned')]); } break; //白名单 case 2: if(!in_array(strtolower($emailSuffix[1]), $sensitiveWords, true)){ + if($returnType){ + return Redirect::back()->withErrors(trans('auth.email_invalid')); + } return Response::json(['status' => 'fail', 'message' => trans('auth.email_invalid')]); } break; default: + if($returnType){ + return Redirect::back()->withErrors(trans('auth.email_invalid')); + } return Response::json(['status' => 'fail', 'message' => trans('auth.email_invalid')]); } @@ -743,7 +752,7 @@ public function sendCode(Request $request) { // 校验域名邮箱黑白名单 if(self::$systemConfig['is_email_filtering']){ $result = $this->emailChecker($email); - if($result != false){ + if($result !== false){ return $result; } } diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php index 276b87dc3..45b199c54 100644 --- a/app/Http/Controllers/Controller.php +++ b/app/Http/Controllers/Controller.php @@ -11,6 +11,7 @@ use Illuminate\Foundation\Validation\ValidatesRequests; use Illuminate\Http\UploadedFile; use Illuminate\Routing\Controller as BaseController; +use Ramsey\Uuid\UuidInterface; use RuntimeException; use Str; @@ -23,7 +24,7 @@ public function makePasswd() { } // 生成UUID - public function makeUUID() { + public function makeUUID(): UuidInterface { return Str::uuid(); } diff --git a/app/Http/Controllers/Gateway/AbstractPayment.php b/app/Http/Controllers/Gateway/AbstractPayment.php index b3d59629f..a1c332422 100644 --- a/app/Http/Controllers/Gateway/AbstractPayment.php +++ b/app/Http/Controllers/Gateway/AbstractPayment.php @@ -12,7 +12,6 @@ use Illuminate\Http\JsonResponse; use Illuminate\Http\Request; use Log; -use Str; abstract class AbstractPayment { protected static $systemConfig; @@ -39,7 +38,7 @@ protected function postPayment($data, $method): int { $user = User::find($order->user_id); //余额充值 - if($order->goods_id == 0 || $order->goods_id == null){ + if($order->goods_id == 0){ Order::query()->whereOid($order->oid)->update(['status' => 2]); User::query()->whereId($order->user_id)->increment('credit', $order->amount * 100); // 余额变动记录日志 diff --git a/app/Http/Controllers/Gateway/BitpayX.php b/app/Http/Controllers/Gateway/BitpayX.php index 8029f5313..9d6235803 100644 --- a/app/Http/Controllers/Gateway/BitpayX.php +++ b/app/Http/Controllers/Gateway/BitpayX.php @@ -7,6 +7,7 @@ use GuzzleHttp\Client; use Illuminate\Http\JsonResponse; use Log; +use Psr\Http\Message\StreamInterface; use Response; class BitpayX extends AbstractPayment { @@ -52,12 +53,12 @@ private function prepareSignId($tradeno) { 'secret' => parent::$systemConfig['bitpay_secret'], 'type' => 'FIAT' ]; - ksort($data_sign); + ksort($data_sign, SORT_STRING); return http_build_query($data_sign); } - private function mprequest($data, $type = 'pay') { + private function mprequest($data, $type = 'pay'): StreamInterface { $client = new Client(['base_uri' => 'https://api.mugglepay.com/v1/', 'timeout' => 10]); if($type === 'query'){ @@ -91,9 +92,9 @@ public function notify($request): void { } // 准备待签名数据 $str_to_sign = $this->prepareSignId($inputJSON['merchant_order_id']); - $isPaid = $data != null && $data['status'] != null && $data['status'] === 'PAID'; + $isPaid = $data != null && $data['status'] && $data['status'] === 'PAID'; - if($this->sign($str_to_sign) === $inputJSON['token'] && $isPaid){ + if($isPaid && $this->sign($str_to_sign) === $inputJSON['token']){ $this->postPayment($inputJSON['merchant_order_id'], 'BitPayX'); echo json_encode(['status' => 200]); }else{ diff --git a/app/Http/Controllers/Gateway/CodePay.php b/app/Http/Controllers/Gateway/CodePay.php index e184ae3df..43d28b5ef 100644 --- a/app/Http/Controllers/Gateway/CodePay.php +++ b/app/Http/Controllers/Gateway/CodePay.php @@ -60,7 +60,7 @@ public function notify($request): void { } $sign .= "$key=$val"; } - if(!$_POST['pay_no'] || md5($sign.parent::$systemConfig['codepay_key']) != $_POST['sign']){ + if(!$_POST['pay_no'] || hash_equals($sign.parent::$systemConfig['codepay_key'], $_POST['sign'])){ exit('fail'); } $payment = Payment::whereTradeNo($_POST['pay_id'])->first(); diff --git a/app/Http/Controllers/Gateway/F2Fpay.php b/app/Http/Controllers/Gateway/F2Fpay.php index 00c188e55..b4c844dc7 100644 --- a/app/Http/Controllers/Gateway/F2Fpay.php +++ b/app/Http/Controllers/Gateway/F2Fpay.php @@ -42,8 +42,7 @@ public function purchase($request): JsonResponse { ]; try{ - $client = new Client(Client::ALIPAY, self::$aliConfig); - $result = $client->pay(Client::ALI_CHANNEL_QR, $data); + $result = (new Client(Client::ALIPAY, self::$aliConfig))->pay(Client::ALI_CHANNEL_QR, $data); }catch(InvalidArgumentException $e){ Log::error("【支付宝当面付】输入信息错误: ".$e->getMessage()); exit; @@ -67,8 +66,7 @@ public function notify($request): void { ]; try{ - $client = new Client(Client::ALIPAY, self::$aliConfig); - $result = $client->tradeQuery($data); + $result = (new Client(Client::ALIPAY, self::$aliConfig))->tradeQuery($data); Log::info("【支付宝当面付】回调验证查询:".var_export($result, true)); }catch(InvalidArgumentException $e){ Log::error("【支付宝当面付】回调信息错误: ".$e->getMessage()); diff --git a/app/Http/Controllers/NodeController.php b/app/Http/Controllers/NodeController.php index 2471ca79a..582fc611c 100644 --- a/app/Http/Controllers/NodeController.php +++ b/app/Http/Controllers/NodeController.php @@ -18,6 +18,7 @@ use App\Models\SsNodePing; use App\Models\SsNodeTrafficDaily; use App\Models\SsNodeTrafficHourly; +use App\Models\UserGroup; use App\Models\UserTrafficDaily; use App\Models\UserTrafficHourly; use App\Models\UserTrafficLog; @@ -112,7 +113,7 @@ public function addNode(Request $request) { $node->relay_server = $request->input('relay_server'); $node->relay_port = $request->input('relay_port'); $node->level = $request->input('level'); - $node->speed_limit = intval($request->input('speed_limit')) * Mbps; + $node->speed_limit = (int) $request->input('speed_limit') * Mbps; $node->client_limit = $request->input('client_limit'); $node->description = $request->input('description'); $node->method = $request->input('method'); @@ -121,18 +122,18 @@ public function addNode(Request $request) { $node->obfs = $request->input('obfs'); $node->obfs_param = $request->input('obfs_param'); $node->traffic_rate = $request->input('traffic_rate'); - $node->is_subscribe = intval($request->input('is_subscribe')); - $node->is_ddns = intval($request->input('is_ddns')); - $node->is_relay = intval($request->input('is_relay')); - $node->is_udp = intval($request->input('is_udp')); + $node->is_subscribe = (int) $request->input('is_subscribe'); + $node->is_ddns = (int) $request->input('is_ddns'); + $node->is_relay = (int) $request->input('is_relay'); + $node->is_udp = (int) $request->input('is_udp'); $node->push_port = $request->input('push_port'); $node->detection_type = $request->input('detection_type'); - $node->compatible = intval($request->input('compatible')); - $node->single = intval($request->input('single')); + $node->compatible = (int) $request->input('compatible'); + $node->single = (int) $request->input('single'); $node->port = $request->input('port'); $node->passwd = $request->input('passwd'); $node->sort = $request->input('sort'); - $node->status = intval($request->input('status')); + $node->status = (int) $request->input('status'); $node->v2_alter_id = $request->input('v2_alter_id'); $node->v2_port = $request->input('v2_port'); $node->v2_method = $request->input('v2_method'); @@ -140,13 +141,14 @@ public function addNode(Request $request) { $node->v2_type = $request->input('v2_type'); $node->v2_host = $request->input('v2_host')?: ''; $node->v2_path = $request->input('v2_path'); - $node->v2_tls = intval($request->input('v2_tls')); + $node->v2_tls = (int) $request->input('v2_tls'); $node->tls_provider = $request->input('tls_provider'); $node->save(); DB::commit(); // 生成节点标签 $this->makeLabels($node->id, $request->input('labels')); + $this->getNodeGeo($node->id); return Response::json(['status' => 'success', 'message' => '添加成功']); }catch(Exception $e){ @@ -156,13 +158,13 @@ public function addNode(Request $request) { return Response::json(['status' => 'fail', 'message' => '添加失败:'.$e->getMessage()]); } }else{ - $view['method_list'] = Helpers::methodList(); - $view['protocol_list'] = Helpers::protocolList(); - $view['obfs_list'] = Helpers::obfsList(); - $view['country_list'] = Country::query()->orderBy('code')->get(); - $view['level_list'] = Level::query()->orderBy('level')->get(); - $view['label_list'] = Label::query()->orderByDesc('sort')->orderBy('id')->get(); - $view['dv_list'] = NodeCertificate::query()->orderBy('id')->get(); + $view['methodList'] = Helpers::methodList(); + $view['protocolList'] = Helpers::protocolList(); + $view['obfsList'] = Helpers::obfsList(); + $view['countryList'] = Country::query()->orderBy('code')->get(); + $view['levelList'] = Level::query()->orderBy('level')->get(); + $view['labelList'] = Label::query()->orderByDesc('sort')->orderBy('id')->get(); + $view['dvList'] = NodeCertificate::query()->orderBy('id')->get(); return Response::view('admin.node.nodeInfo', $view); } @@ -238,6 +240,36 @@ private function makeLabels($nodeId, $labels): void { } } + // 获取节点地理位置 + private function getNodeGeo($id): bool { + $nodes = SsNode::query()->whereStatus(1); + if($id){ + $nodes = $nodes->whereId($id)->get(); + }else{ + $nodes = $nodes->get(); + } + $result = 0; + foreach($nodes as $node){ + $data = getIPInfo($node->is_ddns == 1? gethostbyname($node->server) : $node->ip); + if($data){ + $ret = SsNode::query()->whereId($node->id)->update(['geo' => $data['latitude'].','.$data['longitude']]); + if($ret){ + $result++; + } + } + } + return $result; + } + + // 刷新节点地理位置 + public function refreshGeo(Request $request): JsonResponse { + if($this->getNodeGeo($request->input('id', 0))){ + return Response::json(['status' => 'success', 'message' => '获取地理位置更新成功!']); + } + return Response::json(['status' => 'fail', 'message' => '获取地理位置更新失败!']); + } + + // 编辑节点 public function editNode(Request $request) { $id = $request->input('id'); @@ -261,7 +293,7 @@ public function editNode(Request $request) { 'relay_server' => $request->input('relay_server'), 'relay_port' => $request->input('relay_port'), 'level' => $request->input('level'), - 'speed_limit' => intval($request->input('speed_limit')) * Mbps, + 'speed_limit' => (int) $request->input('speed_limit') * Mbps, 'client_limit' => $request->input('client_limit'), 'description' => $request->input('description'), 'method' => $request->input('method'), @@ -270,18 +302,18 @@ public function editNode(Request $request) { 'obfs' => $request->input('obfs'), 'obfs_param' => $request->input('obfs_param'), 'traffic_rate' => $request->input('traffic_rate'), - 'is_subscribe' => intval($request->input('is_subscribe')), - 'is_ddns' => intval($request->input('is_ddns')), - 'is_relay' => intval($request->input('is_relay')), - 'is_udp' => intval($request->input('is_udp')), + 'is_subscribe' => (int) $request->input('is_subscribe'), + 'is_ddns' => (int) $request->input('is_ddns'), + 'is_relay' => (int) $request->input('is_relay'), + 'is_udp' => (int) $request->input('is_udp'), 'push_port' => $request->input('push_port'), 'detection_type' => $request->input('detection_type'), - 'compatible' => intval($request->input('compatible')), - 'single' => intval($request->input('single')), + 'compatible' => (int) $request->input('compatible'), + 'single' => (int) $request->input('single'), 'port' => $request->input('port'), 'passwd' => $request->input('passwd'), 'sort' => $request->input('sort'), - 'status' => intval($request->input('status')), + 'status' => (int) $request->input('status'), 'v2_alter_id' => $request->input('v2_alter_id'), 'v2_port' => $request->input('v2_port'), 'v2_method' => $request->input('v2_method'), @@ -289,7 +321,7 @@ public function editNode(Request $request) { 'v2_type' => $request->input('v2_type'), 'v2_host' => $request->input('v2_host')?: '', 'v2_path' => $request->input('v2_path'), - 'v2_tls' => intval($request->input('v2_tls')), + 'v2_tls' => (int) $request->input('v2_tls'), 'tls_provider' => $request->input('tls_provider') ]; @@ -300,6 +332,7 @@ public function editNode(Request $request) { // TODO:更新节点绑定的域名DNS(将节点IP更新到域名DNS 的A记录) DB::commit(); + $this->getNodeGeo($id); return Response::json(['status' => 'success', 'message' => '编辑成功']); }catch(Exception $e){ @@ -315,13 +348,13 @@ public function editNode(Request $request) { } $view['node'] = $node; - $view['method_list'] = Helpers::methodList(); - $view['protocol_list'] = Helpers::protocolList(); - $view['obfs_list'] = Helpers::obfsList(); - $view['country_list'] = Country::query()->orderBy('code')->get(); - $view['level_list'] = Level::query()->orderBy('level')->get(); - $view['label_list'] = Label::query()->orderByDesc('sort')->orderBy('id')->get(); - $view['dv_list'] = NodeCertificate::query()->orderBy('id')->get(); + $view['methodList'] = Helpers::methodList(); + $view['protocolList'] = Helpers::protocolList(); + $view['obfsList'] = Helpers::obfsList(); + $view['countryList'] = Country::query()->orderBy('code')->get(); + $view['levelList'] = Level::query()->orderBy('level')->get(); + $view['labelList'] = Label::query()->orderByDesc('sort')->orderBy('id')->get(); + $view['dvList'] = NodeCertificate::query()->orderBy('id')->get(); return view('admin.node.nodeInfo', $view)->with(compact('node')); } @@ -351,14 +384,20 @@ public function delNode(Request $request): ?JsonResponse { UserTrafficLog::query()->whereNodeId($id)->delete(); NodeAuth::query()->whereNodeId($id)->delete(); NodeRule::query()->whereNodeId($id)->delete(); - $RuleGroupList = RuleGroup::query()->get(); - foreach($RuleGroupList as $RuleGroup){ + foreach(RuleGroup::all() as $RuleGroup){ $nodes = explode(',', $RuleGroup->nodes); if(in_array($id, $nodes, true)){ $nodes = implode(',', array_diff($nodes, [$id])); RuleGroup::query()->whereId($RuleGroup->id)->update(['nodes' => $nodes]); } } + foreach(UserGroup::all() as $UserGroup){ + $nodes = explode(',', $UserGroup->nodes); + if(in_array($id, $nodes, true)){ + $nodes = implode(',', array_diff($nodes, [$id])); + UserGroup::query()->whereId($UserGroup->id)->update(['nodes' => $nodes]); + } + } DB::commit(); diff --git a/app/Http/Controllers/User/AffiliateController.php b/app/Http/Controllers/User/AffiliateController.php index 2d28adc67..ae4205b89 100644 --- a/app/Http/Controllers/User/AffiliateController.php +++ b/app/Http/Controllers/User/AffiliateController.php @@ -70,8 +70,7 @@ public function extractMoney(): JsonResponse { // 取出本次申请关联返利日志ID $link_logs = ''; - $referralLog = ReferralLog::uid()->whereStatus(0)->get(); - foreach($referralLog as $log){ + foreach(ReferralLog::uid()->whereStatus(0)->get() as $log){ $link_logs .= $log->id.','; } $link_logs = rtrim($link_logs, ','); diff --git a/app/Http/Controllers/User/SubscribeController.php b/app/Http/Controllers/User/SubscribeController.php index f622b0c2a..48bd8f6f6 100644 --- a/app/Http/Controllers/User/SubscribeController.php +++ b/app/Http/Controllers/User/SubscribeController.php @@ -8,6 +8,7 @@ use App\Models\User; use App\Models\UserSubscribe; use App\Models\UserSubscribeLog; +use Arr; use Illuminate\Http\Request; use Redirect; use Response; @@ -71,7 +72,11 @@ public function getSubscribeByCode(Request $request, $code) { $this->subscribeLog($subscribe->id, getClientIp(), $request->headers); // 获取这个账号可用节点 - $query = SsNode::query()->whereStatus(1)->whereIsSubscribe(1)->where('level', '<=', $user->level); + $query = SsNode::query() + ->whereStatus(1) + ->whereIsSubscribe(1) + ->groupNodePermit($user->group_id) + ->where('level', '<=', $user->level); if($this->subType === 1){ $query = $query->whereIn('type', [1, 4]); @@ -86,7 +91,7 @@ public function getSubscribeByCode(Request $request, $code) { // 打乱数组 if(self::$systemConfig['rand_subscribe']){ - shuffle($nodeList); + $nodeList = Arr::shuffle($nodeList); } $scheme = null; diff --git a/app/Http/Controllers/UserController.php b/app/Http/Controllers/UserController.php index da82754f5..5e051cf72 100644 --- a/app/Http/Controllers/UserController.php +++ b/app/Http/Controllers/UserController.php @@ -169,6 +169,7 @@ public function checkIn(): JsonResponse { // 节点列表 public function nodeList(Request $request) { + $user = Auth::getUser(); if($request->isMethod('POST')){ $node_id = $request->input('id'); $infoType = $request->input('type'); @@ -180,7 +181,7 @@ public function nodeList(Request $request) { }else{ $proxyType = 'V2Ray'; } - $data = $this->getUserNodeInfo(Auth::id(), $node->id, $infoType !== 'text'? 0 : 1); + $data = $this->getUserNodeInfo($user->id, $node->id, $infoType !== 'text'? 0 : 1); return Response::json(['status' => 'success', 'data' => $data, 'title' => $proxyType]); } @@ -188,11 +189,13 @@ public function nodeList(Request $request) { // 获取当前用户可用节点 $nodeList = SsNode::query() ->whereStatus(1) - ->where('level', '<=', Auth::getUser()->level) + ->groupNodePermit($user->group_id) + ->where('level', '<=', $user->level) ->orderByDesc('sort') ->orderBy('id') ->get(); + $nodesGeo = $nodeList->pluck('name', 'geo')->toArray(); foreach($nodeList as $node){ $node->ct = number_format(SsNodePing::query()->whereNodeId($node->id)->where('ct', '>', '0')->avg('ct'), 1, '.', ''); @@ -213,7 +216,7 @@ public function nodeList(Request $request) { $node->labels = SsNodeLabel::query()->whereNodeId($node->id)->get(); } $view['nodeList'] = $nodeList?: []; - + $view['nodesGeo'] = $nodesGeo; return Response::view('user.nodeList', $view); } @@ -247,7 +250,7 @@ public function profile(Request $request) { } // 演示环境禁止改管理员密码 - if($user->id == 1 && env('APP_DEMO')){ + if($user->id === 1 && config('app.demo')){ return Redirect::to('profile#tab_1')->withErrors('演示环境禁止修改管理员密码'); } @@ -381,6 +384,7 @@ public function invoiceDetail($sn): \Illuminate\Http\Response { // 添加工单 public function createTicket(Request $request): ?JsonResponse { + $user = Auth::getUser(); $title = $request->input('title'); $content = clean($request->input('content')); $content = str_replace(["atob", "eval"], "", $content); @@ -390,7 +394,7 @@ public function createTicket(Request $request): ?JsonResponse { } $obj = new Ticket(); - $obj->user_id = Auth::id(); + $obj->user_id = $user->id; $obj->title = $title; $obj->content = $content; $obj->status = 0; @@ -398,7 +402,7 @@ public function createTicket(Request $request): ?JsonResponse { if($obj->id){ $emailTitle = "新工单提醒"; - $content = "标题:【".$title."】
用户:".Auth::getUser()->email."
内容:".$content; + $content = "标题:【".$title."】
用户:".$user->email."
内容:".$content; // 发邮件通知管理员 if(self::$systemConfig['webmaster_email']){ @@ -498,12 +502,13 @@ public function invite(): \Illuminate\Http\Response { // 生成邀请码 public function makeInvite(): JsonResponse { - if(Auth::getUser()->invite_num <= 0){ + $user = Auth::getUser(); + if($user->invite_num <= 0){ return Response::json(['status' => 'fail', 'message' => '生成失败:已无邀请码生成名额']); } $obj = new Invite(); - $obj->uid = Auth::id(); + $obj->uid = $user->id; $obj->fuid = 0; $obj->code = strtoupper(mb_substr(md5(microtime().makeRandStr()), 8, 12)); $obj->status = 0; @@ -564,12 +569,13 @@ public function redeemCoupon(Request $request): JsonResponse { // 购买服务 public function buy($goods_id) { + $user = Auth::getUser(); $goods = Goods::query()->whereId($goods_id)->whereStatus(1)->first(); if(empty($goods)){ return Redirect::to('services'); } // 有重置日时按照重置日为标准,否者就以过期日为标准 - $dataPlusDays = Auth::getUser()->reset_time?: Auth::getUser()->expire_time; + $dataPlusDays = $user->reset_time?: $user->expire_time; $view['dataPlusDays'] = $dataPlusDays > date('Y-m-d')? round((strtotime($dataPlusDays) - strtotime(date('Y-m-d'))) / Day) : 0; $view['activePlan'] = Order::uid() ->with(['goods']) @@ -588,7 +594,7 @@ public function buy($goods_id) { public function help(): \Illuminate\Http\Response { //$view['articleList'] = Article::type(1)->orderByDesc('sort')->orderByDesc('id')->limit(10)->paginate(5); $data = []; - if(SsNode::query()->whereIn('type',[1,4])->whereStatus(1)->exists()){ + if(SsNode::query()->whereIn('type', [1, 4])->whereStatus(1)->exists()){ $data[] = 'ss'; //array_push } diff --git a/app/Http/Middleware/isForbidden.php b/app/Http/Middleware/isForbidden.php index f11522a4b..1c9bbcd6d 100644 --- a/app/Http/Middleware/isForbidden.php +++ b/app/Http/Middleware/isForbidden.php @@ -29,7 +29,7 @@ public function handle($request, Closure $next) { // 拒绝通过订阅链接域名访问网站,防止网站被探测 if(true === strpos(Helpers::systemConfig()['subscribe_domain'], $request->getHost()) - && false === strpos(Helpers::systemConfig()['subscribe_domain'], Helpers::systemConfig()['website_url'])){ + && !str_contains(Helpers::systemConfig()['subscribe_domain'], Helpers::systemConfig()['website_url'])){ Log::info("识别到通过订阅链接访问,强制跳转至百度(".getClientIp().")"); return redirect('https://www.baidu.com'); @@ -39,7 +39,7 @@ public function handle($request, Closure $next) { if(filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6)){ Log::info('识别到IPv6,尝试解析:'.$ip); $isIPv6 = true; - $ipInfo = getIPv6($ip); + $ipInfo = getIPInfo($ip); }else{ $isIPv6 = false; $ipInfo = QQWry::ip($ip); // 通过纯真IP库解析IPv4信息 diff --git a/app/Models/Article.php b/app/Models/Article.php index c5be9eb94..5f5dc62a1 100644 --- a/app/Models/Article.php +++ b/app/Models/Article.php @@ -10,12 +10,12 @@ * 文章 * * @property int $id + * @property int|null $type 类型:1-文章、2-站内公告、3-站外公告 * @property string $title 标题 * @property string|null $author 作者 * @property string|null $summary 简介 * @property string|null $logo LOGO * @property string|null $content 内容 - * @property int|null $type 类型:1-文章、2-站内公告、3-站外公告 * @property int $sort 排序 * @property \Illuminate\Support\Carbon|null $created_at 创建时间 * @property \Illuminate\Support\Carbon|null $updated_at 最后更新时间 diff --git a/app/Models/Invite.php b/app/Models/Invite.php index 06917400d..e9cb6492a 100644 --- a/app/Models/Invite.php +++ b/app/Models/Invite.php @@ -21,7 +21,7 @@ * @property \Illuminate\Support\Carbon|null $updated_at * @property \Illuminate\Support\Carbon|null $deleted_at 删除时间 * @property-read \App\Models\User|null $generator - * @property-read mixed $status_label + * @property-read string $status_label * @property-read \App\Models\User|null $user * @method static \Illuminate\Database\Eloquent\Builder|Invite newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|Invite newQuery() diff --git a/app/Models/Marketing.php b/app/Models/Marketing.php index 4d14612f6..8ac8b410d 100644 --- a/app/Models/Marketing.php +++ b/app/Models/Marketing.php @@ -17,7 +17,7 @@ * @property int $status 状态:-1-失败、0-待发送、1-成功 * @property \Illuminate\Support\Carbon $created_at * @property \Illuminate\Support\Carbon $updated_at - * @property-read mixed $status_label + * @property-read string $status_label * @method static Builder|Marketing newModelQuery() * @method static Builder|Marketing newQuery() * @method static Builder|Marketing query() diff --git a/app/Models/NodeCertificate.php b/app/Models/NodeCertificate.php index 4cd1050ec..f9bbff272 100644 --- a/app/Models/NodeCertificate.php +++ b/app/Models/NodeCertificate.php @@ -6,7 +6,7 @@ use Illuminate\Database\Eloquent\Model; /** - * App\Models\NodeCertificate + * 伪装域名证书 * * @property int $id * @property string $domain 域名 diff --git a/app/Models/NotificationLog.php b/app/Models/NotificationLog.php index d56bf7684..1cfb12aea 100644 --- a/app/Models/NotificationLog.php +++ b/app/Models/NotificationLog.php @@ -11,8 +11,8 @@ * @property int $id * @property int $type 类型:1-邮件、2-ServerChan、3-Bark、4-Telegram * @property string $address 收信地址 - * @property string|null $title 邮件标题 - * @property string|null $content 邮件内容 + * @property string $title 标题 + * @property string $content 内容 * @property int $status 状态:-1发送失败、0-等待发送、1-发送成功 * @property string|null $error 发送失败抛出的异常信息 * @property \Illuminate\Support\Carbon|null $created_at 创建时间 diff --git a/app/Models/Order.php b/app/Models/Order.php index 2049a7165..f60a9d02e 100644 --- a/app/Models/Order.php +++ b/app/Models/Order.php @@ -78,7 +78,7 @@ public function payment(): HasOne { } // 订单状态 - public function getStatusLabelAttribute() { + public function getStatusLabelAttribute(): string { switch($this->attributes['status']){ case -1: $status_label = trans('home.invoice_status_closed'); diff --git a/app/Models/Payment.php b/app/Models/Payment.php index 2a2d41d2a..cb65c766a 100644 --- a/app/Models/Payment.php +++ b/app/Models/Payment.php @@ -20,7 +20,7 @@ * @property int $status 支付状态:-1-支付失败、0-等待支付、1-支付成功 * @property \Illuminate\Support\Carbon $created_at * @property \Illuminate\Support\Carbon $updated_at - * @property-read mixed $status_label + * @property-read string $status_label * @property-read \App\Models\Order|null $order * @property-read \App\Models\User $user * @method static Builder|Payment newModelQuery() diff --git a/app/Models/PaymentCallback.php b/app/Models/PaymentCallback.php index 9f938aa82..30b4440df 100644 --- a/app/Models/PaymentCallback.php +++ b/app/Models/PaymentCallback.php @@ -15,7 +15,7 @@ * @property int|null $status 交易状态:0-失败、1-成功 * @property \Illuminate\Support\Carbon|null $created_at * @property \Illuminate\Support\Carbon|null $updated_at - * @property-read mixed $status_label + * @property-read string $status_label * @method static Builder|PaymentCallback newModelQuery() * @method static Builder|PaymentCallback newQuery() * @method static Builder|PaymentCallback query() diff --git a/app/Models/RuleGroup.php b/app/Models/RuleGroup.php index fd88ebd64..28e183be3 100644 --- a/app/Models/RuleGroup.php +++ b/app/Models/RuleGroup.php @@ -15,7 +15,7 @@ * @property string|null $nodes 关联的节点ID,多个用,号分隔 * @property \Illuminate\Support\Carbon|null $created_at * @property \Illuminate\Support\Carbon|null $updated_at - * @property-read mixed $type_label + * @property-read string $type_label * @method static Builder|RuleGroup newModelQuery() * @method static Builder|RuleGroup newQuery() * @method static Builder|RuleGroup query() diff --git a/app/Models/SsNode.php b/app/Models/SsNode.php index 48a8d51a5..e712466ee 100644 --- a/app/Models/SsNode.php +++ b/app/Models/SsNode.php @@ -11,18 +11,19 @@ * SS节点信息 * * @property int $id - * @property int $type 服务类型:1-ShadowsocksR、2-V2ray + * @property int $type 服务类型:1-Shadowsocks(R)、2-V2ray、3-Trojan、4-VNet * @property string $name 名称 - * @property string|null $country_code 国家代码 + * @property string $country_code 国家代码 * @property string|null $server 服务器域名地址 * @property string|null $ip 服务器IPV4地址 * @property string|null $ipv6 服务器IPV6地址 - * @property string|null $relay_server 中转地址 - * @property int|null $relay_port 中转端口 * @property int $level 等级:0-无等级,全部可见 * @property int $speed_limit 节点限速,为0表示不限速,单位Byte * @property int $client_limit 设备数限制 + * @property string|null $relay_server 中转地址 + * @property int|null $relay_port 中转端口 * @property string|null $description 节点简单描述 + * @property string|null $geo 节点地理位置 * @property string $method 加密方式 * @property string $protocol 协议 * @property string|null $protocol_param 协议参数 @@ -56,6 +57,7 @@ * @property-read string $type_label * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\SsNodeLabel[] $label * @property-read int|null $label_count + * @method static Builder|SsNode groupNodePermit($group_id = 0) * @method static Builder|SsNode newModelQuery() * @method static Builder|SsNode newQuery() * @method static Builder|SsNode query() @@ -65,6 +67,7 @@ * @method static Builder|SsNode whereCreatedAt($value) * @method static Builder|SsNode whereDescription($value) * @method static Builder|SsNode whereDetectionType($value) + * @method static Builder|SsNode whereGeo($value) * @method static Builder|SsNode whereId($value) * @method static Builder|SsNode whereIp($value) * @method static Builder|SsNode whereIpv6($value) @@ -118,6 +121,18 @@ public function getLevel(): HasOne { return $this->hasOne(Level::class, 'level', 'level'); } + // Node查询,查用户所在分组Node权限 + public function scopeGroupNodePermit($query, $group_id = 0) { + $userGroup = UserGroup::find($group_id); + if($userGroup){ + $nodes = explode(',', $userGroup->nodes); + if($nodes){ + return $query->whereIn('id', $nodes); + } + } + return $query; + } + public function getTypeLabelAttribute(): string { switch($this->attributes['type']){ case 1: diff --git a/app/Models/TicketReply.php b/app/Models/TicketReply.php index 4039ef5cc..e70a21c35 100644 --- a/app/Models/TicketReply.php +++ b/app/Models/TicketReply.php @@ -11,8 +11,8 @@ * * @property int $id * @property int $ticket_id 工单ID - * @property int $user_id 回复用户的ID - * @property int|null $admin_id 管理员ID + * @property int $user_id 回复用户ID + * @property int $admin_id 管理员ID * @property string $content 回复内容 * @property \Illuminate\Support\Carbon|null $created_at 创建时间 * @property \Illuminate\Support\Carbon|null $updated_at 最后更新时间 diff --git a/app/Models/User.php b/app/Models/User.php index ab684a344..12208097a 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -38,6 +38,7 @@ * @property int $ban_time 封禁到期时间 * @property string|null $remark 备注 * @property int $level 等级,默认0级 + * @property int $group_id 所属分组 * @property int $is_admin 是否管理员:0-否、1-是 * @property string $reg_ip 注册IP * @property int $last_login 最后登录时间 @@ -48,12 +49,15 @@ * @property string|null $remember_token * @property \Illuminate\Support\Carbon|null $created_at * @property \Illuminate\Support\Carbon|null $updated_at + * @property-read \App\Models\UserGroup|null $group * @property-read \Illuminate\Notifications\DatabaseNotificationCollection|\Illuminate\Notifications\DatabaseNotification[] $notifications * @property-read int|null $notifications_count * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Payment[] $payment * @property-read int|null $payment_count * @property-read \App\Models\User|null $referral * @property-read \App\Models\UserSubscribe|null $subscribe + * @method static Builder|User activeUser() + * @method static Builder|User groupUserPermit($node_id = 0) * @method static Builder|User newModelQuery() * @method static Builder|User newQuery() * @method static Builder|User query() @@ -66,6 +70,7 @@ * @method static Builder|User whereEnable($value) * @method static Builder|User whereEnableTime($value) * @method static Builder|User whereExpireTime($value) + * @method static Builder|User whereGroupId($value) * @method static Builder|User whereId($value) * @method static Builder|User whereInviteNum($value) * @method static Builder|User whereIp($value) @@ -109,6 +114,14 @@ public function payment(): HasMany { return $this->hasMany(Payment::class, 'user_id', 'id'); } + public function getLevel(): HasOne { + return $this->hasOne(Level::class, 'level', 'level'); + } + + public function group(): HasOne { + return $this->hasOne(UserGroup::class, 'id', 'group_id'); + } + public function subscribe(): HasOne { return $this->hasOne(UserSubscribe::class, 'user_id', 'id'); } @@ -124,4 +137,22 @@ public function getCreditAttribute($value) { public function setCreditAttribute($value) { return $this->attributes['credit'] = $value * 100; } + + // User查询,查那些用户有传入Node的权限 + public function scopeGroupUserPermit($query, $node_id = 0) { + $groups = [0]; + if($node_id){ + foreach(UserGroup::all() as $userGroup){ + $nodes = explode(',', $userGroup->nodes); + if(in_array($node_id, $nodes, true)){ + $groups[] = $userGroup->id; + } + } + } + return $query->whereIn('group_id', $groups); + } + + public function scopeActiveUser($query) { + return $query->where('status', '>=', 0)->whereEnable(1); + } } diff --git a/app/Models/UserGroup.php b/app/Models/UserGroup.php new file mode 100644 index 000000000..c5a5653a6 --- /dev/null +++ b/app/Models/UserGroup.php @@ -0,0 +1,25 @@ + 5]); - $request = $client->get('https://api.ip.sb/geoip/'.$ip); +if(!function_exists('getIPInfo')){ + function getIPInfo($ip) { + $request = (new Client(['timeout' => 5]))->get('https://api.ip.sb/geoip/'.$ip); $message = json_decode($request->getBody(), true); if($request->getStatusCode() == 200){ diff --git a/config/app.php b/config/app.php index 3cead92a5..7319cee41 100644 --- a/config/app.php +++ b/config/app.php @@ -40,6 +40,7 @@ */ 'debug' => env('APP_DEBUG', false), + 'demo' => env('APP_DEMO', false), /* |-------------------------------------------------------------------------- diff --git a/public/assets/custom/maps/jquery-jvectormap-world-mill-cn.js b/public/assets/custom/maps/jquery-jvectormap-world-mill-cn.js new file mode 100644 index 000000000..58fb7fbbe --- /dev/null +++ b/public/assets/custom/maps/jquery-jvectormap-world-mill-cn.js @@ -0,0 +1 @@ +jQuery.fn.vectorMap("addMap","world_mill",{insets:[{width:900,top:0,height:440.7063107441331,bbox:[{y:-12671671.123330014,x:-20004297.151525836},{y:6930392.025135122,x:20026572.394749384}],left:0}],paths:{BD:{path:"M651.84,230.21l-0.6,-2.0l-1.36,-1.71l-2.31,-0.11l-0.41,0.48l0.2,0.94l-0.53,0.99l-0.72,-0.36l-0.68,0.35l-1.2,-0.36l-0.37,-2.0l-0.81,-1.86l0.39,-1.46l-0.22,-0.47l-1.14,-0.53l0.29,-0.5l1.48,-0.94l0.03,-0.65l-1.55,-1.22l0.55,-1.14l1.61,0.94l1.04,0.15l0.18,1.54l0.34,0.35l5.64,0.63l-0.84,1.64l-1.22,0.34l-0.77,1.51l0.07,0.47l1.37,1.37l0.67,-0.19l0.42,-1.39l1.21,3.84l-0.03,1.21l-0.33,-0.15l-0.4,0.28Z",name:"孟加拉"},BE:{path:"M429.29,144.05l1.91,0.24l2.1,-0.63l2.63,1.99l-0.21,1.66l-0.69,0.4l-0.18,1.2l-1.66,-1.13l-1.39,0.15l-2.73,-2.7l-1.17,-0.18l-0.16,-0.52l1.54,-0.5Z",name:"比利时"},BF:{path:"M421.42,247.64l-0.11,0.95l0.34,1.16l1.4,1.71l0.07,1.1l0.32,0.37l2.55,0.51l-0.04,1.28l-0.38,0.53l-1.07,0.21l-0.72,1.18l-0.63,0.21l-3.22,-0.25l-0.94,0.39l-5.4,-0.05l-0.39,0.38l0.16,2.73l-1.23,-0.43l-1.17,0.1l-0.89,0.57l-2.27,-1.72l-0.13,-1.11l0.61,-0.96l0.02,-0.93l1.87,-1.98l0.44,-1.81l0.43,-0.39l1.28,0.26l1.05,-0.52l0.47,-0.73l1.84,-1.09l0.55,-0.83l2.2,-1.0l1.15,-0.3l0.72,0.45l1.13,-0.01Z",name:"布基纳法索"},BG:{path:"M491.65,168.18l-0.86,0.88l-0.91,2.17l0.48,1.34l-1.6,-0.24l-2.55,0.95l-0.28,1.51l-1.8,0.22l-2.0,-1.0l-1.92,0.79l-1.42,-0.07l-0.15,-1.63l-1.05,-0.97l0.0,-0.8l1.2,-1.57l0.01,-0.56l-1.14,-1.23l-0.05,-0.94l0.88,0.97l0.88,-0.2l1.91,0.47l3.68,0.16l1.42,-0.81l2.72,-0.66l2.55,1.24Z",name:"保加利亚"},BA:{path:"M463.49,163.65l2.1,0.5l1.72,-0.03l1.52,0.68l-0.36,0.78l0.08,0.45l1.04,1.02l-0.25,0.98l-1.81,1.15l-0.38,1.38l-1.67,-0.87l-0.89,-1.2l-2.11,-1.83l-1.63,-2.22l0.23,-0.57l0.48,0.38l0.55,-0.06l0.43,-0.51l0.94,-0.06Z",name:"波斯尼亚和黑塞哥维那"},BN:{path:"M707.48,273.58l0.68,-0.65l1.41,-0.91l-0.15,1.63l-0.81,-0.05l-0.61,0.58l-0.53,-0.6Z",name:"文莱"},BO:{path:"M263.83,340.69l-3.09,-0.23l-0.38,0.23l-0.7,1.52l-1.31,-1.53l-3.28,-0.64l-2.37,2.4l-1.31,0.26l-0.88,-3.26l-1.3,-2.86l0.74,-2.37l-0.13,-0.43l-1.2,-1.01l-0.37,-1.89l-1.08,-1.55l1.45,-2.56l-0.96,-2.33l0.47,-1.06l-0.34,-0.73l0.91,-1.32l0.16,-3.84l0.5,-1.18l-1.81,-3.41l2.46,0.07l0.8,-0.85l3.4,-1.91l2.66,-0.35l-0.19,1.38l0.3,1.07l-0.05,1.97l2.72,2.27l2.88,0.49l0.89,0.86l1.79,0.58l0.98,0.7l1.71,0.05l1.17,0.61l0.6,2.7l-0.7,0.54l0.96,2.99l0.37,0.28l4.3,0.1l-0.25,1.2l0.27,1.02l1.43,0.9l0.5,1.35l-0.41,1.86l-0.65,1.08l0.12,1.35l-2.69,-1.65l-2.4,-0.03l-4.36,0.76l-1.49,2.5l-0.11,1.52l-0.75,2.37Z",name:"玻利维亚"},JP:{path:"M781.12,166.87l1.81,0.68l1.62,-0.97l0.39,2.42l-3.35,0.75l-2.23,2.88l-3.63,-1.9l-0.56,0.2l-1.26,3.05l-2.16,0.03l-0.29,-2.51l1.08,-2.03l2.45,-0.16l0.37,-0.33l1.25,-5.94l2.47,2.71l2.03,1.12ZM773.56,187.34l-0.91,2.22l0.37,1.52l-1.14,1.75l-3.02,1.26l-4.58,0.27l-3.34,3.01l-1.25,-0.8l-0.09,-1.9l-0.46,-0.38l-4.35,0.62l-3.0,1.32l-2.85,0.05l-0.37,0.27l0.13,0.44l2.32,1.89l-1.54,4.34l-1.26,0.9l-0.79,-0.7l0.56,-2.27l-0.21,-0.45l-1.47,-0.75l-0.74,-1.4l2.12,-0.84l1.26,-1.7l2.45,-1.42l1.83,-1.91l4.78,-0.81l2.6,0.57l0.44,-0.21l2.39,-4.66l1.29,1.06l0.5,0.01l5.1,-4.02l1.69,-3.73l-0.38,-3.4l0.9,-1.61l2.14,-0.44l1.23,3.72l-0.07,2.18l-2.23,2.84l-0.04,3.16ZM757.78,196.26l0.19,0.56l-1.01,1.21l-1.16,-0.68l-1.28,0.65l-0.69,1.45l-1.02,-0.5l0.01,-0.93l1.14,-1.38l1.57,0.14l0.85,-0.98l1.4,0.46Z",name:"日本"},BI:{path:"M495.45,295.49l-1.08,-2.99l1.14,-0.11l0.64,-1.19l0.76,0.09l0.65,1.83l-2.1,2.36Z",name:"布隆迪"},BJ:{path:"M429.57,255.75l-0.05,0.8l0.5,1.34l-0.42,0.86l0.17,0.79l-1.81,2.12l-0.57,1.76l-0.08,5.42l-1.41,0.2l-0.48,-1.36l0.11,-5.71l-0.52,-0.7l-0.2,-1.35l-1.48,-1.48l0.21,-0.9l0.89,-0.43l0.42,-0.92l1.27,-0.36l1.22,-1.34l0.61,-0.0l1.62,1.24Z",name:"贝宁"},BT:{path:"M650.32,213.86l0.84,0.71l-0.12,1.1l-3.76,-0.11l-1.57,0.4l-1.93,-0.87l1.48,-1.96l1.13,-0.57l1.63,0.57l1.33,0.08l0.99,0.65Z",name:"不丹"},JM:{path:"M228.38,239.28l-0.8,0.4l-2.26,-1.06l0.84,-0.23l2.14,0.3l1.17,0.56l-1.08,0.03Z",name:"牙买加"},BW:{path:"M483.92,330.07l2.27,4.01l2.83,2.86l0.96,0.31l0.78,2.43l2.13,0.61l1.02,0.76l-3.0,1.64l-2.32,2.02l-1.54,2.69l-1.52,0.45l-0.64,1.94l-1.34,0.52l-1.85,-0.12l-1.21,-0.74l-1.35,-0.3l-1.22,0.62l-0.75,1.37l-2.31,1.9l-1.4,0.21l-0.35,-0.59l0.16,-1.75l-1.48,-2.54l-0.62,-0.43l-0.0,-7.1l2.08,-0.08l0.39,-0.4l0.07,-8.9l5.19,-0.93l0.8,0.89l0.51,0.07l1.5,-0.95l2.21,-0.49Z",name:"博茨瓦纳"},BR:{path:"M259.98,275.05l3.24,0.7l0.65,-0.53l4.55,-1.32l1.08,-1.06l-0.02,-0.63l0.55,-0.05l0.28,0.28l-0.26,0.87l0.22,0.48l0.73,0.32l0.4,0.81l-0.62,0.86l-0.4,2.13l0.82,2.56l1.69,1.43l1.43,0.2l3.17,-1.68l3.18,0.3l0.65,-0.75l-0.27,-0.92l1.9,-0.09l2.39,0.99l1.06,-0.61l0.84,0.78l1.2,-0.18l1.18,-1.06l0.84,-1.94l1.36,-2.11l0.37,-0.05l1.89,5.45l1.33,0.59l0.05,1.28l-1.77,1.94l0.02,0.56l1.02,0.87l4.07,0.36l0.08,2.16l0.66,0.29l1.74,-1.5l6.97,2.32l1.02,1.22l-0.35,1.18l0.49,0.5l2.81,-0.74l4.77,1.3l3.75,-0.08l3.57,2.0l3.29,2.86l1.93,0.72l2.12,0.12l0.71,0.62l1.21,4.51l-0.95,3.98l-4.72,5.06l-1.64,2.92l-1.72,2.05l-0.8,0.3l-0.72,2.03l0.18,4.75l-0.94,5.53l-0.81,1.13l-0.43,3.36l-2.55,3.5l-0.4,2.51l-1.86,1.04l-0.67,1.53l-2.54,0.01l-3.94,1.01l-1.83,1.2l-2.87,0.82l-3.03,2.19l-2.2,2.83l-0.36,2.0l0.4,1.58l-0.44,2.6l-0.51,1.2l-1.77,1.54l-2.75,4.78l-3.83,3.42l-1.24,2.74l-1.18,1.15l-0.36,-0.83l0.95,-1.14l0.01,-0.5l-1.52,-1.97l-4.56,-3.32l-1.03,-0.0l-2.38,-2.02l-0.81,-0.0l5.34,-5.45l3.77,-2.58l0.22,-2.46l-1.35,-1.81l-0.91,0.07l0.58,-2.33l0.01,-1.54l-1.11,-0.83l-1.75,0.3l-0.44,-3.11l-0.52,-0.95l-1.88,-0.88l-1.24,0.47l-2.17,-0.41l0.15,-3.21l-0.62,-1.34l0.66,-0.73l-0.22,-1.34l0.66,-1.13l0.44,-2.04l-0.61,-1.83l-1.4,-0.86l-0.2,-0.75l0.34,-1.39l-0.38,-0.5l-4.52,-0.1l-0.72,-2.22l0.59,-0.42l-0.03,-1.1l-0.5,-0.87l-0.32,-1.7l-1.45,-0.76l-1.63,-0.02l-1.05,-0.72l-1.6,-0.48l-1.13,-0.99l-2.69,-0.4l-2.47,-2.06l0.13,-4.35l-0.45,-0.45l-3.46,0.5l-3.44,1.94l-0.6,0.74l-2.9,-0.17l-1.47,0.42l-0.72,-0.18l0.15,-3.52l-0.63,-0.34l-1.94,1.41l-1.87,-0.06l-0.83,-1.18l-1.37,-0.26l0.21,-1.01l-1.35,-1.49l-0.88,-1.91l0.56,-0.6l-0.0,-0.81l1.29,-0.62l0.22,-0.43l-0.22,-1.19l0.61,-0.91l0.15,-0.99l2.65,-1.58l1.99,-0.47l0.42,-0.36l2.06,0.11l0.42,-0.33l1.19,-8.0l-0.41,-1.56l-1.1,-1.0l0.01,-1.33l1.91,-0.42l0.08,-0.96l-0.33,-0.43l-1.14,-0.2l-0.02,-0.83l4.47,0.05l0.82,-0.67l0.82,1.81l0.8,0.07l1.15,1.1l2.26,-0.05l0.71,-0.83l2.78,-0.96l0.48,-1.13l1.6,-0.64l0.24,-0.47l-0.48,-0.82l-1.83,-0.19l-0.36,-3.22Z",name:"巴西"},BS:{path:"M226.4,223.87l-0.48,-1.15l-0.84,-0.75l0.36,-1.11l0.95,1.95l0.01,1.06ZM225.56,216.43l-1.87,0.29l-0.04,-0.22l0.74,-0.14l1.17,0.06Z",name:"巴哈马群岛"},BY:{path:"M493.84,128.32l0.29,0.7l0.49,0.23l1.19,-0.38l2.09,0.72l0.19,1.26l-0.45,1.24l1.57,2.26l0.89,0.59l0.17,0.81l1.58,0.56l0.4,0.5l-0.53,0.41l-1.87,-0.11l-0.73,0.38l-0.13,0.52l1.04,2.74l-1.91,0.26l-0.89,0.99l-0.11,1.18l-2.73,-0.04l-0.53,-0.62l-0.52,-0.08l-0.75,0.46l-0.91,-0.42l-1.92,-0.07l-2.75,-0.79l-2.6,-0.28l-2.0,0.07l-1.5,0.92l-0.67,0.07l-0.08,-1.22l-0.59,-1.19l1.36,-0.88l0.01,-1.35l-0.7,-1.41l-0.07,-1.0l2.16,-0.02l2.72,-1.3l0.75,-2.04l1.91,-1.04l0.2,-0.41l-0.19,-1.25l3.8,-1.78l2.3,0.77Z",name:"白俄罗斯"},BZ:{path:"M198.03,244.38l0.1,-4.49l0.69,-0.06l0.74,-1.3l0.34,0.28l-0.4,1.3l0.17,0.58l-0.34,2.25l-1.3,1.42Z",name:"伯利兹城"},RU:{path:"M491.55,115.25l2.55,-1.85l-0.01,-0.65l-2.2,-1.5l7.32,-6.76l1.03,-2.11l-0.13,-0.49l-3.46,-2.52l0.86,-2.7l-2.11,-2.81l1.56,-3.67l-2.77,-4.52l2.15,-2.99l-0.08,-0.55l-3.65,-2.73l0.3,-2.54l1.81,-0.37l4.26,-1.77l2.42,-1.45l4.06,2.61l6.79,1.04l9.34,4.85l1.78,1.88l0.14,2.46l-2.55,2.02l-3.9,1.06l-11.07,-3.14l-2.06,0.53l-0.13,0.7l3.94,2.94l0.31,5.86l0.26,0.36l5.14,2.24l0.58,-0.29l0.32,-1.94l-1.35,-1.78l1.13,-1.09l6.13,2.42l2.11,-0.98l0.18,-0.56l-1.51,-2.67l5.41,-3.76l2.07,0.22l2.26,1.41l0.57,-0.16l1.46,-2.87l-0.05,-0.44l-1.92,-2.32l1.12,-2.32l-1.32,-2.27l5.87,1.16l1.04,1.75l-2.59,0.43l-0.33,0.4l0.02,2.36l2.46,1.83l3.87,-0.91l0.86,-2.8l13.69,-5.65l0.99,0.11l-1.92,2.06l0.23,0.67l3.11,0.45l2.0,-1.48l4.56,-0.12l3.64,-1.73l2.65,2.44l0.56,-0.01l2.85,-2.88l-0.01,-0.57l-2.35,-2.29l0.9,-1.01l7.14,1.3l3.41,1.36l9.05,4.97l0.51,-0.11l1.67,-2.27l-0.05,-0.53l-2.43,-2.21l-0.06,-0.78l-0.34,-0.36l-2.52,-0.36l0.64,-1.93l-1.32,-3.46l-0.06,-1.21l4.48,-4.06l1.69,-4.29l1.6,-0.81l6.23,1.18l0.44,2.21l-2.29,3.64l0.06,0.5l1.47,1.39l0.76,3.0l-0.56,6.03l2.69,2.82l-0.96,2.57l-4.86,5.95l0.23,0.64l2.86,0.61l0.42,-0.17l0.93,-1.4l2.64,-1.03l0.87,-2.24l2.09,-1.96l0.07,-0.5l-1.36,-2.28l1.09,-2.69l-0.32,-0.55l-2.47,-0.33l-0.5,-2.06l1.94,-4.38l-0.06,-0.42l-2.96,-3.4l4.12,-2.88l0.16,-0.4l-0.51,-2.93l0.54,-0.05l1.13,2.25l-0.96,4.35l0.27,0.47l2.68,0.84l0.5,-0.51l-1.02,-2.99l3.79,-1.66l5.01,-0.24l4.53,2.61l0.48,-0.06l0.07,-0.48l-2.18,-3.82l-0.23,-4.67l3.98,-0.9l5.97,0.21l5.49,-0.64l0.27,-0.65l-1.83,-2.31l2.56,-2.9l2.87,-0.17l4.8,-2.47l6.54,-0.67l1.03,-1.42l6.25,-0.45l2.32,1.11l5.53,-2.7l4.5,0.08l0.39,-0.28l0.66,-2.15l2.26,-2.12l5.69,-2.11l3.21,1.29l-2.46,0.94l-0.25,0.42l0.34,0.35l5.41,0.77l0.61,2.33l0.58,0.25l2.2,-1.22l7.13,0.07l5.51,2.47l1.79,1.72l-0.53,2.24l-9.16,4.15l-1.97,1.52l0.16,0.71l6.77,1.91l2.16,-0.78l1.13,2.74l0.67,0.11l1.01,-1.15l3.81,-0.73l7.7,0.77l0.54,1.99l0.36,0.29l10.47,0.71l0.43,-0.38l0.13,-3.23l4.87,0.78l3.95,-0.02l3.83,2.4l1.03,2.71l-1.35,1.79l0.02,0.5l3.15,3.64l4.07,1.96l0.53,-0.18l2.23,-4.47l3.95,1.93l4.16,-1.21l4.73,1.39l2.05,-1.26l3.94,0.62l0.43,-0.55l-1.68,-4.02l2.89,-1.8l22.31,3.03l2.16,2.75l6.55,3.51l10.29,-0.81l4.82,0.73l1.85,1.66l-0.29,3.08l0.25,0.41l3.08,1.26l3.56,-0.88l4.35,-0.11l4.8,0.87l4.57,-0.47l4.23,3.79l0.43,0.07l3.1,-1.4l0.16,-0.6l-1.88,-2.62l0.85,-1.52l7.71,1.21l5.22,-0.26l7.09,2.09l9.59,5.22l6.35,4.11l-0.2,2.38l1.88,1.41l0.6,-0.42l-0.48,-2.53l6.15,0.57l4.4,3.51l-1.97,1.43l-4.0,0.41l-0.36,0.39l-0.06,3.79l-0.74,0.62l-2.07,-0.11l-1.91,-1.39l-3.14,-1.11l-0.78,-1.85l-2.72,-0.68l-2.63,0.49l-1.04,-1.1l0.46,-1.31l-0.5,-0.51l-3.0,0.98l-0.22,0.58l0.99,1.7l-1.21,1.48l-3.04,1.68l-3.12,-0.28l-0.4,0.23l0.09,0.46l2.2,2.09l1.46,3.2l1.15,1.1l0.24,1.33l-0.42,0.67l-4.63,-0.77l-6.96,2.9l-2.19,0.44l-7.6,5.06l-0.84,1.45l-3.61,-2.37l-6.24,2.82l-0.94,-1.15l-0.53,-0.08l-2.28,1.52l-3.2,-0.49l-0.44,0.27l-0.78,2.37l-3.05,3.78l0.09,1.47l0.29,0.36l2.54,0.72l-0.29,4.53l-1.97,0.11l-0.35,0.26l-1.07,2.94l0.8,1.45l-3.91,1.58l-1.05,3.95l-3.48,0.77l-0.3,0.3l-0.72,3.29l-3.09,2.65l-0.7,-1.74l-2.44,-12.44l1.16,-4.71l2.04,-2.06l0.22,-1.64l3.8,-0.86l4.46,-4.61l4.28,-3.81l4.48,-3.01l2.17,-5.63l-0.42,-0.54l-3.04,0.33l-1.77,3.31l-5.86,3.86l-1.86,-4.25l-0.45,-0.23l-6.46,1.3l-6.47,6.44l-0.01,0.55l1.58,1.74l-8.24,1.17l0.15,-2.2l-0.34,-0.42l-3.89,-0.56l-3.25,1.81l-7.62,-0.62l-8.45,1.19l-17.71,15.41l0.22,0.7l3.74,0.41l1.36,2.17l2.43,0.76l1.88,-1.68l2.4,0.2l3.4,3.54l0.08,2.6l-1.95,3.42l-0.21,3.9l-1.1,5.06l-3.71,4.54l-0.87,2.21l-8.29,8.89l-3.19,1.7l-1.32,0.03l-1.45,-1.36l-0.49,-0.04l-2.27,1.5l0.41,-3.65l-0.59,-2.47l1.75,-0.89l2.91,0.53l0.42,-0.2l1.68,-3.03l0.87,-3.46l0.97,-1.18l1.32,-2.88l-0.45,-0.56l-4.14,0.95l-2.19,1.25l-3.41,-0.0l-1.06,-2.93l-2.97,-2.3l-4.28,-1.06l-1.75,-5.07l-2.66,-5.01l-2.29,-1.29l-3.75,-1.01l-3.44,0.08l-3.18,0.62l-2.24,1.77l0.05,0.66l1.18,0.69l0.02,1.43l-1.33,1.05l-2.26,3.51l-0.04,1.43l-3.16,1.84l-2.82,-1.16l-3.01,0.23l-1.35,-1.07l-1.5,-0.35l-3.9,2.31l-3.22,0.52l-2.27,0.79l-3.05,-0.51l-2.21,0.03l-1.48,-1.6l-2.6,-1.63l-2.63,-0.43l-5.46,1.01l-3.23,-1.25l-0.72,-2.57l-5.2,-1.24l-2.75,-1.36l-0.5,0.12l-2.59,3.45l0.84,2.1l-2.06,1.93l-3.41,-0.77l-2.42,-0.12l-1.83,-1.54l-2.53,-0.05l-2.42,-0.98l-3.86,1.57l-4.72,2.78l-3.3,0.75l-1.55,-1.92l-3.0,0.41l-1.11,-1.33l-1.62,-0.59l-1.31,-1.94l-1.38,-0.6l-3.7,0.79l-3.31,-1.83l-0.51,0.11l-0.99,1.29l-5.29,-8.05l-2.96,-2.48l0.65,-0.77l0.01,-0.51l-0.5,-0.11l-6.2,3.21l-1.84,0.15l0.15,-1.39l-0.26,-0.42l-3.22,-1.17l-2.46,0.7l-0.69,-3.16l-0.32,-0.31l-4.5,-0.75l-2.47,1.47l-6.19,1.27l-1.29,0.86l-9.51,1.3l-1.15,1.17l-0.03,0.53l1.47,1.9l-1.89,0.69l-0.22,0.56l0.31,0.6l-2.11,1.44l0.03,0.68l3.75,2.12l-0.39,0.98l-3.23,-0.13l-0.86,0.86l-3.09,-1.59l-3.97,0.07l-2.66,1.35l-8.32,-3.56l-4.07,0.06l-5.39,3.68l-0.39,2.0l-2.03,-1.5l-0.59,0.13l-2.0,3.59l0.57,0.93l-1.28,2.16l0.06,0.48l2.13,2.17l1.95,0.04l1.37,1.82l-0.23,1.46l0.25,0.43l0.83,0.33l-0.8,1.31l-2.49,0.62l-2.49,3.2l0.0,0.49l2.17,2.78l-0.15,2.18l2.5,3.24l-1.58,1.59l-0.7,-0.13l-1.63,-1.72l-2.29,-0.84l-0.94,-1.31l-2.34,-0.63l-1.48,0.4l-0.43,-0.47l-3.51,-1.48l-5.76,-1.01l-0.45,0.19l-2.89,-2.34l-2.9,-1.2l-1.53,-1.29l1.29,-0.43l2.08,-2.61l-0.05,-0.55l-0.89,-0.79l3.05,-1.06l0.27,-0.42l-0.07,-0.69l-0.49,-0.35l-1.73,0.39l0.04,-0.68l1.04,-0.72l2.66,-0.48l0.4,-1.32l-0.5,-1.6l0.92,-1.54l0.03,-1.17l-0.29,-0.37l-3.69,-1.06l-1.41,0.02l-1.42,-1.41l-2.19,0.38l-2.77,-1.01l-0.03,-0.59l-0.89,-1.43l-2.0,-0.32l-0.11,-0.54l0.49,-0.53l0.01,-0.53l-1.6,-1.9l-3.58,0.02l-0.88,0.73l-0.46,-0.07l-1.0,-2.79l2.22,-0.02l0.97,-0.74l0.07,-0.57l-0.9,-1.04l-1.35,-0.48l-0.11,-0.7l-0.95,-0.58l-1.38,-1.99l0.46,-0.98l-0.51,-1.96l-2.45,-0.84l-1.21,0.3l-0.46,-0.76l-2.46,-0.83l-0.72,-1.87l-0.21,-1.69l-0.99,-0.85l0.85,-1.17l-0.7,-3.21l1.66,-1.97l-0.16,-0.79ZM749.2,170.72l-0.6,0.4l-0.13,0.16l-0.01,-0.51l0.74,-0.05ZM871.88,65.81l2.17,-0.13l3.19,1.16l-2.39,1.09l-5.63,0.48l-0.26,-0.84l2.92,-1.76ZM797.39,48.49l-2.0,1.36l-3.8,-0.42l-4.25,-1.8l0.35,-0.97l9.69,1.83ZM783.67,46.12l-1.63,3.09l-8.98,-0.13l-4.09,1.14l-4.54,-2.97l1.16,-3.01l3.05,-0.89l6.5,0.22l8.54,2.56ZM778.2,134.98l-0.56,-0.9l0.27,-0.12l0.29,1.01ZM778.34,135.48l0.94,3.53l-0.05,3.38l1.05,3.39l2.18,5.0l-2.89,-0.83l-0.49,0.26l-1.54,4.65l2.42,3.5l-0.04,1.13l-1.24,-1.24l-0.61,0.06l-1.09,1.61l-0.28,-1.61l0.27,-3.1l-0.28,-3.4l0.58,-2.47l0.11,-4.39l-1.46,-3.36l0.21,-4.32l2.15,-1.46l0.07,-0.34ZM771.95,56.61l1.76,-1.42l2.89,-0.42l3.28,1.71l0.14,0.6l-3.27,0.03l-4.81,-0.5ZM683.76,31.09l-13.01,1.93l4.03,-6.35l1.82,-0.56l1.73,0.34l5.99,2.98l-0.56,1.66ZM670.85,27.93l-5.08,0.64l-6.86,-1.57l-3.99,-2.05l-2.1,-4.16l-2.6,-0.87l5.72,-3.5l5.2,-1.28l4.69,2.85l5.59,5.4l-0.56,4.53ZM564.15,68.94l-0.64,0.17l-7.85,-0.57l-0.86,-2.04l-4.28,-1.17l-0.28,-1.94l2.27,-0.89l0.25,-0.39l-0.08,-2.38l4.81,-3.97l-0.15,-0.7l-1.47,-0.38l5.3,-3.81l0.15,-0.44l-0.58,-1.94l5.28,-2.51l8.21,-3.27l8.28,-0.96l4.35,-1.94l4.6,-0.64l1.36,1.61l-1.34,1.28l-16.43,4.94l-7.97,4.88l-7.74,9.63l0.66,4.14l4.16,3.27ZM548.81,18.48l-5.5,1.18l-0.58,1.02l-2.59,0.84l-2.13,-1.07l1.12,-1.42l-0.3,-0.65l-2.33,-0.07l1.68,-0.36l3.47,-0.06l0.42,1.29l0.66,0.16l1.38,-1.34l2.15,-0.88l2.94,1.01l-0.39,0.36ZM477.37,133.15l-4.08,0.05l-2.56,-0.32l0.33,-0.87l3.17,-1.03l3.24,0.96l-0.09,1.23Z",name:"俄罗斯"},RW:{path:"M497.0,288.25l0.71,1.01l-0.11,1.09l-1.63,0.03l-1.04,1.39l-0.83,-0.11l0.51,-1.2l0.08,-1.34l0.42,-0.41l0.7,0.14l1.19,-0.61Z",name:"卢旺达"},RS:{path:"M469.4,163.99l0.42,-0.5l-0.01,-0.52l-1.15,-1.63l1.43,-0.62l1.33,0.12l1.17,1.06l0.46,1.13l1.34,0.64l0.35,1.35l1.46,0.9l0.76,-0.29l0.2,0.69l-0.48,0.78l0.22,1.12l1.05,1.22l-0.77,0.8l-0.37,1.52l-1.21,0.08l0.24,-0.64l-0.39,-0.54l-2.08,-1.64l-0.9,0.05l-0.48,0.94l-2.12,-1.37l0.53,-1.6l-1.11,-1.37l0.51,-1.1l-0.41,-0.57Z",name:"塞尔维亚"},TL:{path:"M734.55,307.93l-0.1,-0.97l4.5,-0.86l-2.82,1.28l-1.59,0.55Z",name:"东帝汶"},TM:{path:"M553.03,173.76l-0.04,0.34l-0.09,-0.22l0.13,-0.12ZM555.87,172.66l0.45,-0.1l1.48,0.74l2.06,2.43l4.07,-0.18l0.38,-0.51l-0.32,-1.19l1.92,-0.94l1.91,-1.59l2.94,1.39l0.43,2.47l1.19,0.67l2.58,-0.13l0.62,0.4l1.32,3.12l4.54,3.44l2.67,1.45l3.06,1.14l-0.04,1.05l-1.33,-0.75l-0.59,0.19l-0.32,0.84l-2.2,0.81l-0.46,2.13l-1.21,0.74l-1.91,0.42l-0.73,1.33l-1.56,0.31l-2.22,-0.94l-0.2,-2.17l-0.38,-0.36l-1.73,-0.09l-2.76,-2.46l-2.14,-0.4l-2.84,-1.48l-1.78,-0.27l-1.24,0.53l-1.57,-0.08l-2.0,1.69l-1.7,0.43l-0.36,-1.58l0.36,-2.98l-0.22,-0.4l-1.65,-0.84l0.54,-1.69l-0.34,-0.52l-1.22,-0.13l0.36,-1.64l2.22,0.59l2.2,-0.95l0.12,-0.65l-1.77,-1.74l-0.66,-1.57Z",name:"土库曼斯坦"},TJ:{path:"M597.75,178.82l-2.54,-0.44l-0.47,0.34l-0.24,1.7l0.43,0.45l2.64,-0.22l3.18,0.95l4.39,-0.41l0.56,2.37l0.52,0.29l0.67,-0.24l1.11,0.49l0.21,2.13l-3.76,-0.21l-1.8,1.32l-1.76,0.74l-0.61,-0.58l0.21,-2.23l-0.64,-0.49l-0.07,-0.93l-1.36,-0.66l-0.45,0.07l-1.08,1.01l-0.55,1.48l-1.31,-0.05l-0.95,1.16l-0.9,-0.35l-1.86,0.74l1.26,-2.83l-0.54,-2.17l-1.67,-0.82l0.33,-0.66l2.18,-0.04l1.19,-1.63l0.76,-1.79l2.43,-0.5l-0.26,1.0l0.73,1.05Z",name:"塔吉克斯坦"},RO:{path:"M487.53,154.23l0.6,0.24l2.87,3.98l-0.17,2.69l0.45,1.42l1.32,0.81l1.35,-0.42l0.76,0.36l0.02,0.31l-0.83,0.45l-0.59,-0.22l-0.54,0.3l-0.62,3.3l-1.0,-0.22l-2.07,-1.13l-2.95,0.71l-1.25,0.76l-3.51,-0.15l-1.89,-0.47l-0.87,0.16l-0.82,-1.3l0.29,-0.26l-0.06,-0.64l-1.09,-0.34l-0.56,0.5l-1.05,-0.64l-0.39,-1.39l-1.36,-0.65l-0.35,-1.0l-0.83,-0.75l1.54,-0.54l2.66,-4.21l2.4,-1.24l2.96,0.34l1.48,0.73l0.79,-0.45l1.78,-0.3l0.75,-0.74l0.79,0.0Z",name:"罗马尼亚"},GW:{path:"M386.23,253.6l-0.29,0.84l0.15,0.6l-2.21,0.59l-0.86,0.96l-1.04,-0.83l-1.09,-0.23l-0.54,-1.06l-0.66,-0.49l2.41,-0.48l4.13,0.1Z",name:"几内亚比绍"},GT:{path:"M195.08,249.77l-2.48,-0.37l-1.03,-0.45l-1.14,-0.89l0.3,-0.99l-0.24,-0.68l0.96,-1.66l2.98,-0.01l0.4,-0.37l-0.19,-1.28l-1.67,-1.4l0.51,-0.4l0.0,-1.05l3.85,0.02l-0.21,4.53l0.4,0.43l1.46,0.38l-1.48,0.98l-0.35,0.7l0.12,0.57l-2.2,1.96Z",name:"危地马拉"},GR:{path:"M487.07,174.59l-0.59,1.43l-0.37,0.21l-2.84,-0.35l-3.03,0.77l-0.18,0.68l1.28,1.23l-0.61,0.23l-1.14,0.0l-1.2,-1.39l-0.63,0.03l-0.53,1.01l0.56,1.76l1.03,1.19l-0.56,0.38l-0.05,0.62l2.52,2.12l0.02,0.87l-1.78,-0.59l-0.48,0.56l0.5,1.0l-1.07,0.2l-0.3,0.53l0.75,2.01l-0.98,0.02l-1.84,-1.12l-1.37,-4.2l-2.21,-2.95l-0.11,-0.56l1.04,-1.28l0.2,-0.95l0.85,-0.66l0.03,-0.46l1.32,-0.21l1.01,-0.64l1.22,0.05l0.65,-0.56l2.26,-0.0l1.82,-0.75l1.85,1.0l2.28,-0.28l0.35,-0.39l0.01,-0.77l0.34,0.22ZM480.49,192.16l0.58,0.4l-0.68,-0.12l0.11,-0.28ZM482.52,192.82l2.51,0.06l0.24,0.32l-1.99,0.13l-0.77,-0.51Z",name:"希腊"},GQ:{path:"M448.79,279.62l0.02,2.22l-4.09,0.0l0.69,-2.27l3.38,0.05Z",name:"赤几"},GY:{path:"M277.42,270.07l-0.32,1.83l-1.32,0.57l-0.23,0.46l-0.28,2.0l1.11,1.82l0.83,0.19l0.32,1.25l1.13,1.62l-1.21,-0.19l-1.08,0.71l-1.77,0.5l-0.44,0.46l-0.86,-0.09l-1.32,-1.01l-0.77,-2.27l0.36,-1.9l0.68,-1.23l-0.57,-1.17l-0.74,-0.43l0.12,-1.16l-0.9,-0.69l-1.1,0.09l-1.31,-1.48l0.53,-0.72l-0.04,-0.84l1.99,-0.86l0.05,-0.59l-0.71,-0.78l0.14,-0.57l1.66,-1.24l1.36,0.77l1.41,1.49l0.06,1.15l0.37,0.38l0.8,0.05l2.06,1.86Z",name:"圭亚那"},GE:{path:"M521.71,168.93l5.29,0.89l4.07,2.01l1.41,-0.44l2.07,0.56l0.68,1.1l1.07,0.55l-0.12,0.59l0.98,1.29l-1.01,-0.13l-1.81,-0.83l-0.94,0.47l-3.23,0.43l-2.29,-1.39l-2.33,0.05l0.21,-0.97l-0.76,-2.26l-1.45,-1.12l-1.43,-0.39l-0.41,-0.42Z",name:"格鲁吉亚"},GB:{path:"M412.61,118.72l-2.19,3.22l-0.0,0.45l5.13,-0.3l-0.53,2.37l-2.2,3.12l0.29,0.63l2.37,0.21l2.33,4.3l1.76,0.69l2.2,5.12l2.94,0.77l-0.23,1.62l-1.15,0.88l-0.1,0.52l0.82,1.42l-1.86,1.43l-3.3,-0.02l-4.12,0.87l-1.04,-0.58l-0.47,0.06l-1.51,1.41l-2.12,-0.34l-1.86,1.18l-0.6,-0.29l3.19,-3.0l2.16,-0.69l0.28,-0.41l-0.34,-0.36l-3.73,-0.53l-0.4,-0.76l2.2,-0.87l0.17,-0.61l-1.26,-1.67l0.36,-1.7l3.38,0.28l0.43,-0.33l0.37,-1.99l-1.79,-2.49l-3.11,-0.72l-0.38,-0.59l0.79,-1.35l-0.04,-0.46l-0.82,-0.97l-0.61,0.01l-0.68,0.84l-0.1,-2.34l-1.23,-1.88l0.85,-3.47l1.77,-2.68l1.85,0.26l2.17,-0.22ZM406.26,132.86l-1.01,1.77l-1.57,-0.59l-1.16,0.01l0.37,-1.54l-0.39,-1.39l1.45,-0.1l2.3,1.84Z",name:"英国"},GA:{path:"M453.24,279.52l-0.08,0.98l0.7,1.29l2.36,0.24l-0.98,2.63l1.18,1.79l0.25,1.78l-0.29,1.52l-0.6,0.93l-1.84,-0.09l-1.23,-1.11l-0.66,0.23l-0.15,0.84l-1.42,0.26l-1.02,0.7l-0.11,0.52l0.77,1.35l-1.34,0.97l-3.94,-4.3l-1.44,-2.45l0.06,-0.6l0.54,-0.81l1.05,-3.46l4.17,-0.07l0.4,-0.4l-0.02,-2.66l2.39,0.21l1.25,-0.27Z",name:"加蓬"},GN:{path:"M391.8,254.11l0.47,0.8l1.11,-0.32l0.98,0.7l1.07,0.2l2.26,-1.22l0.64,0.44l1.13,1.56l-0.48,1.4l0.8,0.3l-0.08,0.48l0.46,0.68l-0.35,1.36l1.05,2.61l-1.0,0.69l0.03,1.41l-0.72,-0.06l-1.08,1.0l-0.24,-0.27l0.07,-1.11l-1.05,-1.54l-1.79,0.21l-0.35,-2.01l-1.6,-2.18l-2.0,-0.0l-1.31,0.54l-1.95,2.18l-1.86,-2.19l-1.2,-0.78l-0.3,-1.11l-0.8,-0.85l0.65,-0.72l0.81,-0.03l1.64,-0.8l0.23,-1.87l2.67,0.64l0.89,-0.3l1.21,0.15Z",name:"几内亚"},GM:{path:"M379.31,251.39l0.1,-0.35l2.43,-0.07l0.74,-0.61l0.51,-0.03l0.77,0.49l-1.03,-0.3l-1.87,0.9l-1.65,-0.04ZM384.03,250.91l0.91,0.05l0.75,-0.24l-0.59,0.31l-1.08,-0.13Z",name:"冈比亚"},GL:{path:"M353.02,1.2l14.69,4.67l-3.68,1.89l-22.97,0.86l-0.36,0.27l0.12,0.43l1.55,1.18l8.79,-0.66l7.48,2.07l4.86,-1.77l1.66,1.73l-2.53,3.19l-0.01,0.48l0.46,0.15l6.35,-2.2l12.06,-2.31l7.24,1.13l1.09,1.99l-9.79,4.01l-1.44,1.32l-7.87,0.98l-0.35,0.41l0.38,0.38l5.07,0.24l-2.53,3.58l-2.07,3.81l0.08,6.05l2.57,3.11l-3.22,0.2l-4.12,1.66l-0.05,0.72l4.45,2.65l0.51,3.75l-2.3,0.4l-0.25,0.64l2.79,3.69l-4.82,0.31l-0.36,0.29l0.16,0.44l2.62,1.8l-0.59,1.22l-3.3,0.7l-3.45,0.01l-0.29,0.68l3.03,3.12l0.02,1.34l-4.4,-1.73l-1.72,1.35l0.15,0.66l3.31,1.15l3.13,2.71l0.81,3.16l-3.85,0.75l-4.89,-4.26l-0.47,-0.03l-0.17,0.44l0.79,2.86l-2.71,2.21l-0.13,0.44l0.37,0.27l8.73,0.34l-12.32,6.64l-7.24,1.48l-2.94,0.08l-2.69,1.75l-3.43,4.41l-5.24,2.84l-1.73,0.18l-7.12,2.1l-2.15,2.52l-0.13,2.99l-1.19,2.45l-4.01,3.09l-0.14,0.44l0.97,2.9l-2.28,6.48l-3.1,0.2l-3.83,-3.07l-4.86,-0.02l-2.25,-1.93l-1.7,-3.79l-4.3,-4.84l-1.21,-2.49l-0.44,-3.8l-3.32,-3.63l0.84,-2.86l-1.56,-1.7l2.28,-4.6l3.83,-1.74l1.03,-1.96l0.52,-3.47l-0.59,-0.41l-4.17,2.21l-2.07,0.58l-2.72,-1.28l-0.15,-2.71l0.85,-2.09l2.01,-0.06l5.06,1.2l0.46,-0.23l-0.14,-0.49l-6.54,-4.47l-2.67,0.55l-1.58,-0.86l2.56,-4.01l-0.03,-0.48l-1.5,-1.74l-4.98,-8.5l-3.13,-1.96l0.03,-1.88l-0.24,-0.37l-6.85,-3.02l-5.36,-0.38l-12.7,0.58l-2.78,-1.57l-3.66,-2.77l5.73,-1.45l5.0,-0.28l0.38,-0.38l-0.35,-0.41l-10.67,-1.38l-5.3,-2.06l0.25,-1.54l18.41,-5.26l1.22,-2.27l-0.25,-0.55l-6.14,-1.86l1.68,-1.77l8.55,-4.03l3.59,-0.63l0.3,-0.54l-0.88,-2.27l5.47,-1.47l7.65,-0.95l7.55,-0.05l3.04,1.85l6.48,-3.27l5.81,2.22l3.56,0.5l5.16,1.94l0.5,-0.21l-0.17,-0.52l-5.71,-3.13l0.28,-2.13l8.12,-3.6l8.7,0.28l3.35,-2.34l8.71,-0.6l19.93,0.8Z",name:"格陵兰"},GH:{path:"M420.53,257.51l-0.01,0.72l0.96,1.2l0.24,3.73l0.59,0.95l-0.51,2.1l0.19,1.41l1.02,2.21l-6.97,2.84l-1.8,-0.57l0.04,-0.89l-1.02,-2.04l0.61,-2.65l1.07,-2.32l-0.96,-6.47l5.01,0.07l0.94,-0.39l0.61,0.11Z",name:"加纳"},OM:{path:"M568.09,230.93l-0.91,1.67l-1.22,0.04l-0.6,0.76l-0.41,1.51l0.27,1.58l-1.16,0.05l-1.56,0.97l-0.76,1.74l-1.62,0.05l-0.98,0.65l-0.17,1.15l-0.89,0.52l-1.49,-0.18l-2.4,0.94l-2.47,-5.4l7.35,-2.71l1.67,-5.23l-1.12,-2.09l0.05,-0.83l0.67,-1.0l0.07,-1.05l0.9,-0.42l-0.05,-2.07l0.7,-0.01l1.0,1.62l1.51,1.08l3.3,0.84l1.73,2.29l0.81,0.37l-1.23,2.35l-0.99,0.79Z",name:"阿曼"},TN:{path:"M448.1,188.24l-1.0,1.27l-0.02,1.32l0.84,0.88l-0.28,2.09l-1.53,1.32l-0.12,0.42l0.48,1.54l1.42,0.32l0.53,1.11l0.9,0.52l-0.11,1.67l-3.54,2.64l-0.1,2.38l-0.58,0.3l-0.96,-4.45l-1.54,-1.25l-0.16,-0.78l-1.92,-1.56l-0.18,-1.76l1.51,-1.62l0.59,-2.34l-0.38,-2.78l0.42,-1.21l2.45,-1.05l1.29,0.26l-0.06,1.11l0.58,0.38l1.47,-0.73Z",name:"突尼斯"},JO:{path:"M518.64,201.38l-5.14,1.56l-0.19,0.65l2.16,2.39l-0.89,1.14l-1.71,0.34l-1.71,1.8l-2.34,-0.37l1.21,-4.32l0.56,-4.07l2.8,0.94l4.46,-2.71l0.79,2.66Z",name:"约旦"},HR:{path:"M455.59,162.84l1.09,0.07l-0.82,0.94l-0.27,-1.01ZM456.96,162.92l0.62,-0.41l1.73,0.45l0.42,-0.4l-0.01,-0.59l0.86,-0.52l0.2,-1.05l1.63,-0.68l2.57,1.68l2.07,0.6l0.87,-0.31l1.05,1.57l-0.52,0.63l-1.05,-0.56l-1.68,0.04l-2.1,-0.5l-1.29,0.06l-0.57,0.49l-0.59,-0.47l-0.62,0.16l-0.46,1.7l1.79,2.42l2.79,2.75l-1.18,-0.87l-2.21,-0.87l-1.67,-1.78l0.13,-0.63l-1.05,-1.19l-0.32,-1.27l-1.42,-0.43Z",name:"克罗地亚"},HT:{path:"M237.05,238.38l-1.16,0.43l-0.91,-0.55l0.05,-0.2l2.02,0.31ZM237.53,238.43l1.06,0.12l-0.05,0.01l-1.01,-0.12ZM239.25,238.45l0.79,-0.51l0.06,-0.62l-1.02,-1.0l0.02,-0.82l-0.3,-0.4l-0.93,-0.32l3.16,0.45l0.02,1.84l-0.48,0.34l-0.08,0.58l0.54,0.72l-1.78,-0.26Z",name:"海地"},HU:{path:"M462.08,157.89l0.65,-1.59l-0.09,-0.44l0.64,-0.0l0.39,-0.34l0.1,-0.69l1.75,0.87l2.32,-0.37l0.43,-0.66l3.49,-0.78l0.69,-0.78l0.57,-0.14l2.57,0.93l0.67,-0.23l1.03,0.65l0.08,0.37l-1.42,0.71l-2.59,4.14l-1.8,0.53l-1.68,-0.1l-2.74,1.23l-1.85,-0.54l-2.54,-1.66l-0.66,-1.1Z",name:"匈牙利"},HN:{path:"M199.6,249.52l-1.7,-1.21l0.06,-0.94l3.04,-2.14l2.37,0.28l1.27,-0.09l1.1,-0.52l1.3,0.28l1.14,-0.25l1.38,0.37l2.23,1.37l-2.36,0.93l-1.23,-0.39l-0.88,1.3l-1.28,0.99l-0.98,-0.22l-0.42,0.52l-0.96,0.05l-0.36,0.41l0.04,0.88l-0.52,0.6l-0.3,0.04l-0.3,-0.55l-0.66,-0.31l0.11,-0.67l-0.48,-0.65l-0.87,-0.26l-0.73,0.2Z",name:"洪都拉斯"},PR:{path:"M256.17,238.73l-0.26,0.27l-2.83,0.05l-0.07,-0.55l1.95,-0.1l1.22,0.33Z",name:"波多黎各"},PS:{path:"M509.21,203.07l0.1,-0.06l-0.02,0.03l-0.09,0.03ZM509.36,202.91l-0.02,-0.63l-0.33,-0.16l0.31,-1.09l0.24,0.1l-0.2,1.78Z",name:"巴勒斯坦"},PT:{path:"M401.84,187.38l-0.64,0.47l-1.13,-0.35l-0.91,0.17l0.28,-1.78l-0.24,-1.78l-1.25,-0.56l-0.45,-0.84l0.17,-1.66l1.01,-1.18l0.69,-2.92l-0.04,-1.39l-0.59,-1.9l1.3,-0.85l0.84,1.35l3.1,-0.3l0.46,0.99l-1.05,0.94l-0.03,2.16l-0.41,0.57l-0.08,1.1l-0.79,0.18l-0.26,0.59l0.91,1.6l-0.63,1.75l0.76,1.09l-1.1,1.52l0.07,1.05Z",name:"葡萄牙"},PY:{path:"M274.9,336.12l0.74,1.52l-0.16,3.45l0.32,0.41l2.64,0.5l1.11,-0.47l1.4,0.59l0.36,0.6l0.53,3.42l1.27,0.4l0.98,-0.38l0.51,0.27l-0.0,1.18l-1.21,5.32l-2.09,1.9l-1.8,0.4l-4.71,-0.98l2.2,-3.63l-0.32,-1.5l-2.78,-1.28l-3.03,-1.94l-2.07,-0.44l-4.34,-4.06l0.91,-2.9l0.08,-1.42l1.07,-2.04l4.13,-0.72l2.18,0.03l2.05,1.17l0.03,0.59Z",name:"巴拉圭"},PA:{path:"M213.8,263.68l0.26,-1.52l-0.36,-0.26l-0.01,-0.49l0.44,-0.1l0.93,1.4l1.26,0.03l0.77,0.49l1.38,-0.23l2.51,-1.11l0.86,-0.72l3.45,0.85l1.4,1.18l0.41,1.74l-0.21,0.34l-0.53,-0.12l-0.47,0.29l-0.16,0.6l-0.68,-1.28l0.45,-0.49l-0.19,-0.66l-0.47,-0.13l-0.54,-0.84l-1.5,-0.75l-1.1,0.16l-0.75,0.99l-1.62,0.84l-0.18,0.96l0.85,0.97l-0.58,0.45l-0.69,0.08l-0.34,-1.18l-1.27,0.03l-0.71,-1.05l-2.59,-0.46Z",name:"巴拿马"},PG:{path:"M808.58,298.86l2.54,2.56l-0.13,0.26l-0.33,0.12l-0.87,-0.78l-1.22,-2.16ZM801.41,293.04l0.5,0.29l0.26,0.27l-0.49,-0.35l-0.27,-0.21ZM803.17,294.58l0.59,0.5l0.08,1.06l-0.29,-0.91l-0.38,-0.65ZM796.68,298.41l0.52,0.75l1.43,-0.19l2.27,-1.81l-0.01,-1.43l1.12,0.16l-0.04,1.1l-0.7,1.28l-1.12,0.18l-0.62,0.79l-2.46,1.11l-1.17,-0.0l-3.08,-1.25l3.41,0.0l0.45,-0.68ZM789.15,303.55l2.31,1.8l1.59,2.61l1.34,0.13l-0.06,0.66l0.31,0.43l1.06,0.24l0.06,0.65l2.25,1.05l-1.22,0.13l-0.72,-0.63l-4.56,-0.65l-3.22,-2.87l-1.49,-2.34l-3.27,-1.1l-2.38,0.72l-1.59,0.86l-0.2,0.42l0.27,1.55l-1.55,0.68l-1.36,-0.4l-2.21,-0.09l-0.08,-15.41l8.39,2.93l2.95,2.4l0.6,1.64l4.02,1.49l0.31,0.68l-1.76,0.21l-0.33,0.52l0.55,1.68Z",name:"巴布亚新几内亚"},PE:{path:"M244.96,295.21l-1.26,-0.07l-0.57,0.42l-1.93,0.45l-2.98,1.75l-0.36,1.36l-0.58,0.8l0.12,1.37l-1.24,0.59l-0.22,1.22l-0.62,0.84l1.04,2.27l1.28,1.44l-0.41,0.84l0.32,0.57l1.48,0.13l1.16,1.37l2.21,0.07l1.63,-1.08l-0.13,3.02l0.3,0.4l1.14,0.29l1.31,-0.34l1.9,3.59l-0.48,0.85l-0.17,3.85l-0.94,1.59l0.35,0.75l-0.47,1.07l0.98,1.97l-2.1,3.82l-0.98,0.5l-2.17,-1.28l-0.39,-1.16l-4.95,-2.58l-4.46,-2.79l-1.84,-1.51l-0.91,-1.84l0.3,-0.96l-2.11,-3.33l-4.82,-9.68l-1.04,-1.2l-0.87,-1.94l-3.4,-2.48l0.58,-1.18l-1.13,-2.23l0.66,-1.49l1.45,-1.15l-0.6,0.98l0.07,0.92l0.47,0.36l1.74,0.03l0.97,1.17l0.54,0.07l1.42,-1.03l0.6,-1.84l1.42,-2.02l3.04,-1.04l2.73,-2.62l0.86,-1.74l-0.1,-1.87l1.44,1.02l0.9,1.25l1.06,0.59l1.7,2.73l1.86,0.31l1.45,-0.61l0.96,0.39l1.36,-0.19l1.45,0.89l-1.4,2.21l0.31,0.61l0.59,0.05l0.47,0.5Z",name:"秘鲁"},PK:{path:"M615.09,192.34l-1.83,1.81l-2.6,0.39l-3.73,-0.68l-1.58,1.33l-0.09,0.42l1.77,4.39l1.7,1.23l-1.69,1.27l-0.12,2.14l-2.33,2.64l-1.6,2.8l-2.46,2.67l-3.03,-0.07l-2.76,2.83l0.05,0.6l1.5,1.11l0.26,1.9l1.44,1.5l0.37,1.68l-5.01,-0.01l-1.78,1.7l-1.42,-0.52l-0.76,-1.87l-2.27,-2.15l-11.61,0.86l0.71,-2.34l3.43,-1.32l0.25,-0.44l-0.21,-1.24l-1.2,-0.65l-0.28,-2.46l-2.29,-1.14l-1.28,-1.94l2.82,0.94l2.62,-0.38l1.42,0.33l0.76,-0.56l1.71,0.19l3.25,-1.14l0.27,-0.36l0.08,-2.19l1.18,-1.32l1.68,0.0l0.58,-0.82l1.6,-0.3l1.19,0.16l0.98,-0.78l0.02,-1.88l0.93,-1.47l1.48,-0.66l0.19,-0.55l-0.66,-1.25l2.04,-0.11l0.69,-1.01l-0.02,-1.16l1.11,-1.06l-0.17,-1.78l-0.49,-1.03l1.15,-0.98l5.42,-0.91l2.6,-0.82l1.6,1.16l0.97,2.34l3.45,0.97Z",name:"巴基斯坦"},PH:{path:"M737.01,263.84l0.39,2.97l-0.44,1.18l-0.55,-1.53l-0.67,-0.14l-1.17,1.28l0.65,2.09l-0.42,0.69l-2.48,-1.23l-0.57,-1.49l0.65,-1.03l-0.1,-0.54l-1.59,-1.19l-0.56,0.08l-0.65,0.87l-1.23,0.0l-1.58,0.97l0.83,-1.8l2.56,-1.42l0.65,0.84l0.45,0.13l1.9,-0.69l0.56,-1.11l1.5,-0.06l0.38,-0.43l-0.09,-1.19l1.21,0.71l0.36,2.02ZM733.59,256.58l0.05,0.75l0.08,0.26l-0.8,-0.42l-0.18,-0.71l0.85,0.12ZM734.08,256.1l-0.12,-1.12l-1.0,-1.27l1.36,0.03l0.53,0.73l0.51,2.04l-1.27,-0.4ZM733.76,257.68l0.38,0.98l-0.32,0.15l-0.07,-1.13ZM724.65,238.43l1.46,0.7l0.72,-0.31l-0.32,1.17l0.79,1.71l-0.57,1.84l-1.53,1.04l-0.39,2.25l0.56,2.04l1.63,0.57l1.16,-0.27l2.71,1.23l-0.19,1.08l0.76,0.84l-0.08,0.36l-1.4,-0.9l-0.88,-1.27l-0.66,0.0l-0.38,0.55l-1.6,-1.31l-2.15,0.36l-0.87,-0.39l0.07,-0.61l0.66,-0.55l-0.01,-0.62l-0.75,-0.59l-0.72,0.44l-0.74,-0.87l-0.39,-2.49l0.32,0.27l0.66,-0.28l0.26,-3.97l0.7,-2.02l1.14,0.0ZM731.03,258.87l-0.88,0.85l-1.19,1.94l-1.05,-1.19l0.93,-1.1l0.32,-1.47l0.52,-0.06l-0.27,1.15l0.22,0.45l0.49,-0.12l1.0,-1.32l-0.08,0.85ZM726.83,255.78l0.83,0.38l1.17,-0.0l-0.02,0.48l-2.0,1.4l0.03,-2.26ZM724.81,252.09l-0.38,1.27l-1.42,-1.95l1.2,0.05l0.6,0.63ZM716.55,261.82l1.1,-0.95l0.03,-0.03l-0.28,0.36l-0.85,0.61ZM719.22,259.06l0.04,-0.06l0.8,-1.53l0.16,0.75l-1.0,0.84Z",name:"菲律宾"},PL:{path:"M468.44,149.42l-1.11,-1.54l-1.86,-0.33l-0.48,-1.05l-1.72,-0.37l-0.65,0.69l-0.72,-0.36l0.11,-0.61l-0.33,-0.46l-1.75,-0.27l-1.04,-0.93l-0.94,-1.94l0.16,-1.22l-0.62,-1.8l-0.78,-1.07l0.57,-1.04l-0.48,-1.43l1.41,-0.83l6.91,-2.71l2.14,0.5l0.52,0.91l5.51,0.44l4.55,-0.05l1.07,0.31l0.48,0.84l0.15,1.58l0.65,1.2l-0.01,0.99l-1.27,0.58l-0.19,0.54l0.73,1.48l0.08,1.55l1.2,2.76l-0.17,0.58l-1.23,0.44l-2.27,2.72l0.18,0.95l-1.97,-1.03l-1.98,0.4l-1.36,-0.28l-1.24,0.58l-1.07,-0.97l-1.16,0.24Z",name:"波兰"},ZM:{path:"M481.47,313.3l0.39,0.31l2.52,0.14l0.99,1.17l2.01,0.35l1.4,-0.64l0.69,1.17l1.78,0.33l1.84,2.35l2.23,0.18l0.4,-0.43l-0.21,-2.74l-0.62,-0.3l-0.48,0.32l-1.98,-1.17l0.72,-5.29l-0.51,-1.18l0.57,-1.3l3.68,-0.62l0.26,0.63l1.21,0.63l0.9,-0.22l2.16,0.67l1.33,0.71l1.07,1.02l0.56,1.87l-0.88,2.7l0.43,2.09l-0.73,0.87l-0.76,2.37l0.59,0.68l-6.6,1.83l-0.29,0.44l0.19,1.45l-1.68,0.35l-1.43,1.02l-0.38,0.87l-0.87,0.26l-3.48,3.69l-4.16,-0.53l-1.52,-1.0l-1.77,-0.13l-1.83,0.52l-3.04,-3.4l0.11,-7.59l4.82,0.03l0.39,-0.49l-0.18,-0.76l0.33,-0.83l-0.4,-1.36l0.24,-1.05Z",name:"赞比亚"},EH:{path:"M384.42,230.28l0.25,-0.79l1.06,-1.29l0.8,-3.51l3.38,-2.78l0.7,-1.81l0.06,4.84l-1.98,0.2l-0.94,1.59l0.39,3.56l-3.7,-0.01ZM392.01,218.1l0.7,-1.8l1.77,-0.24l2.09,0.34l0.95,-0.62l1.28,-0.07l-0.0,2.51l-6.79,-0.12Z",name:"西撒哈拉"},EE:{path:"M485.71,115.04l2.64,0.6l2.56,0.11l-1.6,1.91l0.61,3.54l-0.81,0.87l-1.78,-0.01l-3.22,-1.76l-1.8,0.45l0.21,-1.53l-0.58,-0.41l-0.69,0.34l-1.26,-1.03l-0.17,-1.63l2.83,-0.92l3.05,-0.52Z",name:"爱沙尼亚"},EG:{path:"M492.06,205.03l1.46,0.42l2.95,-1.64l2.04,-0.21l1.53,0.3l0.59,1.19l0.69,0.04l0.41,-0.64l1.81,0.58l1.95,0.16l1.04,-0.51l1.42,4.08l-2.03,4.54l-1.66,-1.77l-1.76,-3.85l-0.64,-0.12l-0.36,0.67l1.04,2.88l3.44,6.95l1.78,3.04l2.03,2.65l-0.36,0.53l0.23,2.01l2.7,2.19l-28.41,0.0l0.0,-18.96l-0.73,-2.2l0.59,-1.56l-0.32,-1.26l0.68,-0.99l3.06,-0.04l4.82,1.52Z",name:"埃及"},ZA:{path:"M467.14,373.21l-0.13,-1.96l-0.68,-1.56l0.7,-0.68l-0.13,-2.33l-4.56,-8.19l0.77,-0.86l0.6,0.45l0.69,1.31l2.83,0.72l1.5,-0.26l2.24,-1.39l0.19,-9.55l1.35,2.3l-0.21,1.5l0.61,1.2l0.4,0.19l1.79,-0.27l2.6,-2.07l0.69,-1.32l0.96,-0.48l2.19,1.04l2.04,0.13l1.77,-0.65l0.85,-2.12l1.38,-0.33l1.59,-2.76l2.15,-1.89l3.41,-1.87l2.0,0.45l1.02,-0.28l0.99,0.2l1.75,5.29l-0.38,3.25l-0.81,-0.23l-1.0,0.46l-0.87,1.68l-0.05,1.16l1.97,1.84l1.47,-0.29l0.69,-1.18l1.09,0.01l-0.76,3.69l-0.58,1.09l-2.2,1.79l-3.17,4.76l-2.8,2.83l-3.57,2.88l-2.53,1.05l-1.22,0.14l-0.51,0.7l-1.18,-0.32l-1.39,0.5l-2.59,-0.52l-1.61,0.33l-1.18,-0.11l-2.55,1.1l-2.1,0.44l-1.6,1.07l-0.85,0.05l-0.93,-0.89l-0.93,-0.15l-0.97,-1.13l-0.25,0.05ZM491.45,364.19l0.62,-0.93l1.48,-0.59l1.18,-2.19l-0.07,-0.49l-1.99,-1.69l-1.66,0.56l-1.43,1.14l-1.34,1.73l0.02,0.51l1.88,2.11l1.31,-0.16Z",name:"南非"},EC:{path:"M231.86,285.53l0.29,1.59l-0.69,1.45l-2.61,2.51l-3.13,1.11l-1.53,2.18l-0.49,1.68l-1.0,0.73l-1.02,-1.11l-1.78,-0.16l0.67,-1.15l-0.24,-0.86l1.25,-2.13l-0.54,-1.09l-0.67,-0.08l-0.72,0.87l-0.87,-0.64l0.35,-0.69l-0.36,-1.96l0.81,-0.51l0.45,-1.51l0.92,-1.57l-0.07,-0.97l2.65,-1.33l2.75,1.35l0.77,1.05l2.12,0.35l0.76,-0.32l1.96,1.21Z",name:"厄瓜多尔"},IT:{path:"M451.59,158.63l3.48,0.94l-0.21,1.17l0.3,0.83l-1.49,-0.24l-2.04,1.1l-0.21,0.39l0.13,1.45l-0.25,1.12l0.82,1.57l2.39,1.63l1.31,2.54l2.79,2.43l2.05,0.08l0.21,0.23l-0.39,0.33l0.09,0.67l4.05,1.97l2.17,1.76l-0.16,0.36l-1.17,-1.08l-2.18,-0.49l-0.44,0.2l-1.05,1.91l0.14,0.54l1.57,0.95l-0.19,0.98l-1.06,0.33l-1.25,2.34l-0.37,0.08l0.0,-0.33l1.0,-2.45l-1.73,-3.17l-1.12,-0.51l-0.88,-1.33l-1.51,-0.51l-1.27,-1.25l-1.75,-0.18l-4.12,-3.21l-1.62,-1.65l-1.03,-3.19l-3.53,-1.36l-1.3,0.51l-1.69,1.41l0.16,-0.72l-0.28,-0.47l-1.14,-0.33l-0.53,-1.96l0.72,-0.78l0.04,-0.48l-0.65,-1.17l0.8,0.39l1.4,-0.23l1.11,-0.84l0.52,0.35l1.19,-0.1l0.75,-1.2l1.53,0.33l1.36,-0.56l0.35,-1.14l1.08,0.32l0.68,-0.64l1.98,-0.44l0.42,0.82ZM459.19,184.75l-0.65,1.65l0.32,1.05l-0.31,0.89l-1.5,-0.85l-4.5,-1.67l0.19,-0.82l2.67,0.23l3.78,-0.48ZM443.93,176.05l1.18,1.66l-0.3,3.32l-1.06,-0.01l-0.77,0.73l-0.53,-0.44l-0.1,-3.37l-0.39,-1.22l1.04,0.01l0.92,-0.68Z",name:"意大利"},VN:{path:"M690.56,230.25l-2.7,1.82l-2.09,2.46l-0.63,1.95l4.31,6.45l2.32,1.65l1.43,1.94l1.11,4.59l-0.32,4.24l-1.93,1.54l-2.84,1.61l-2.11,2.15l-2.73,2.06l-0.59,-1.05l0.63,-1.53l-0.13,-0.47l-1.34,-1.04l1.51,-0.71l2.55,-0.18l0.3,-0.63l-0.82,-1.14l4.0,-2.07l0.31,-3.05l-0.57,-1.77l0.42,-2.66l-0.73,-1.97l-1.86,-1.76l-3.63,-5.29l-2.72,-1.46l0.36,-0.47l1.5,-0.64l0.21,-0.52l-0.97,-2.27l-0.37,-0.24l-2.83,-0.02l-2.24,-3.9l0.83,-0.4l4.39,-0.29l2.06,-1.31l1.15,0.89l1.88,0.4l-0.17,1.51l1.35,1.16l1.67,0.45Z",name:"越南"},SB:{path:"M826.69,311.6l-0.61,0.09l-0.2,-0.33l0.37,0.15l0.44,0.09ZM824.18,307.38l-0.26,-0.3l-0.31,-0.91l0.03,0.0l0.54,1.21ZM823.04,309.33l-1.66,-0.22l-0.2,-0.52l1.16,0.28l0.69,0.46ZM819.28,304.68l1.14,0.65l0.02,0.03l-0.81,-0.44l-0.35,-0.23Z",name:"所罗门群岛"},ET:{path:"M516.04,247.79l1.1,0.84l1.63,-0.45l0.68,0.47l1.63,0.03l2.01,0.94l1.73,1.66l1.64,2.07l-1.52,2.04l0.16,1.72l0.39,0.38l2.05,0.0l-0.36,1.03l2.86,3.58l8.32,3.08l1.31,0.02l-6.32,6.75l-3.1,0.11l-2.36,1.77l-1.47,0.04l-0.86,0.79l-1.38,-0.0l-1.32,-0.81l-2.29,1.05l-0.76,0.98l-3.29,-0.41l-3.07,-2.07l-1.8,-0.07l-0.62,-0.6l0.0,-1.24l-0.28,-0.38l-1.15,-0.37l-1.4,-2.59l-1.19,-0.68l-0.47,-1.0l-1.27,-1.23l-1.16,-0.22l0.43,-0.72l1.45,-0.28l0.41,-0.95l-0.03,-2.21l0.68,-2.44l1.05,-0.63l1.43,-3.06l1.57,-1.37l1.02,-2.51l0.35,-1.88l2.52,0.46l0.44,-0.24l0.58,-1.43Z",name:"埃塞俄比亚"},SO:{path:"M525.13,288.48l-1.13,-1.57l-0.03,-8.86l2.66,-3.38l1.67,-0.13l2.13,-1.69l3.41,-0.23l7.08,-7.55l2.91,-3.69l0.08,-4.82l2.98,-0.67l1.24,-0.86l0.45,-0.0l-0.2,3.0l-1.21,3.62l-2.73,5.97l-2.13,3.65l-5.03,6.16l-8.56,6.4l-2.78,3.08l-0.8,1.56Z",name:"索马里"},ZW:{path:"M498.91,341.09l-1.11,-0.22l-0.92,0.28l-2.09,-0.44l-1.5,-1.11l-1.89,-0.43l-0.62,-1.4l-0.01,-0.84l-0.3,-0.38l-0.97,-0.25l-2.71,-2.74l-1.92,-3.32l3.83,0.45l3.73,-3.82l1.08,-0.44l0.26,-0.77l1.25,-0.9l1.41,-0.26l0.5,0.89l1.99,-0.05l1.72,1.17l1.11,0.17l1.05,0.66l0.01,2.99l-0.59,3.76l0.38,0.86l-0.23,1.23l-0.39,0.35l-0.63,1.81l-2.43,2.75Z",name:"津巴布韦"},ES:{path:"M416.0,169.21l1.07,1.17l4.61,1.38l1.06,-0.57l2.6,1.26l2.71,-0.3l0.09,1.12l-2.14,1.8l-3.11,0.61l-0.31,0.31l-0.2,0.89l-1.54,1.69l-0.97,2.4l0.84,1.74l-1.32,1.27l-0.48,1.68l-1.88,0.65l-1.66,2.07l-5.36,-0.01l-1.79,1.08l-0.89,0.98l-0.88,-0.17l-0.79,-0.82l-0.68,-1.59l-2.37,-0.63l-0.11,-0.5l1.21,-1.82l-0.77,-1.13l0.61,-1.68l-0.76,-1.62l0.87,-0.49l0.09,-1.25l0.42,-0.6l0.03,-2.11l0.99,-0.69l0.13,-0.5l-1.03,-1.73l-1.46,-0.11l-0.61,0.38l-1.06,0.0l-0.52,-1.23l-0.53,-0.21l-1.32,0.67l-0.01,-1.49l-0.75,-0.96l3.03,-1.88l2.99,0.53l3.32,-0.02l2.63,0.51l6.01,-0.06Z",name:"西班牙"},ER:{path:"M520.38,246.23l3.42,2.43l3.5,3.77l0.84,0.54l-0.95,-0.01l-3.51,-3.89l-2.33,-1.15l-1.73,-0.07l-0.91,-0.51l-1.26,0.51l-1.34,-1.02l-0.61,0.17l-0.66,1.61l-2.35,-0.43l-0.17,-0.67l1.29,-5.29l0.61,-0.61l1.95,-0.53l0.87,-1.01l1.17,2.41l0.68,2.33l1.49,1.43Z",name:"厄立特里亚"},ME:{path:"M468.91,172.53l-1.22,-1.02l0.47,-1.81l0.89,-0.72l2.26,1.51l-0.5,0.57l-0.75,-0.27l-1.14,1.73Z",name:"黑山共和国"},MD:{path:"M488.41,153.73l1.4,-0.27l1.72,0.93l1.07,0.15l0.85,0.65l-0.14,0.84l0.96,0.85l1.12,2.47l-1.15,-0.07l-0.66,-0.41l-0.52,0.25l-0.09,0.86l-1.08,1.89l-0.27,-0.86l0.25,-1.34l-0.16,-1.6l-3.29,-4.34Z",name:"摩尔多瓦"},MG:{path:"M545.91,319.14l0.4,3.03l0.62,1.21l-0.21,1.02l-0.57,-0.8l-0.69,-0.01l-0.47,0.76l0.41,2.12l-0.18,0.87l-0.73,0.78l-0.15,2.14l-4.71,15.2l-1.06,2.88l-3.92,1.64l-3.12,-1.49l-0.6,-1.21l-0.19,-2.4l-0.86,-2.05l-0.21,-1.77l0.38,-1.62l1.21,-0.75l0.01,-0.76l1.19,-2.04l0.23,-1.66l-1.06,-2.99l-0.19,-2.21l0.81,-1.33l0.32,-1.46l4.63,-1.22l3.44,-3.0l0.85,-1.4l-0.08,-0.7l0.78,-0.04l1.38,-1.77l0.13,-1.64l0.45,-0.61l1.16,1.69l0.59,1.6Z",name:"马达加斯加岛"},MA:{path:"M378.78,230.02l0.06,-0.59l0.92,-0.73l0.82,-1.37l-0.09,-1.04l0.79,-1.7l1.31,-1.58l0.96,-0.59l0.66,-1.55l0.09,-1.47l0.81,-1.48l1.72,-1.07l1.55,-2.69l1.16,-0.96l2.44,-0.39l1.94,-1.82l1.31,-0.78l2.09,-2.28l-0.51,-3.65l1.24,-3.7l1.5,-1.75l4.46,-2.57l2.37,-4.47l1.44,0.01l1.68,1.21l2.32,-0.19l3.47,0.65l0.8,1.54l0.16,1.71l0.86,2.96l0.56,0.59l-0.26,0.61l-3.05,0.44l-1.26,1.05l-1.33,0.22l-0.33,0.37l-0.09,1.78l-2.68,1.0l-1.07,1.42l-4.47,1.13l-4.04,2.01l-0.54,4.64l-1.15,0.06l-0.92,0.61l-1.96,-0.35l-2.42,0.54l-0.74,1.9l-0.86,0.4l-1.14,3.26l-3.53,3.01l-0.8,3.55l-0.96,1.1l-0.29,0.82l-4.95,0.18Z",name:"摩洛哥"},UZ:{path:"M598.64,172.75l-1.63,1.52l0.06,0.64l1.85,1.12l1.97,-0.64l2.21,1.17l-2.52,1.68l-2.59,-0.22l-0.18,-0.41l0.46,-1.23l-0.45,-0.53l-3.35,0.69l-2.1,3.51l-1.87,-0.12l-1.03,1.51l0.22,0.55l1.64,0.62l0.46,1.83l-1.19,2.49l-2.66,-0.53l0.05,-1.36l-0.26,-0.39l-3.3,-1.23l-2.56,-1.4l-4.4,-3.34l-1.34,-3.14l-1.08,-0.6l-2.58,0.13l-0.69,-0.44l-0.47,-2.52l-3.37,-1.6l-0.43,0.05l-2.07,1.72l-2.1,1.01l-0.21,0.47l0.28,1.01l-1.91,0.03l-0.09,-10.5l5.99,-1.7l6.19,3.54l2.71,2.84l7.05,-0.67l2.71,2.01l-0.17,2.81l0.39,0.42l0.9,0.02l0.44,2.14l0.38,0.32l2.94,0.09l0.95,1.42l1.28,-0.24l1.05,-2.04l4.43,-2.5Z",name:"乌兹别克斯坦"},MM:{path:"M673.9,230.21l-1.97,1.57l-0.57,0.96l-1.4,0.6l-1.36,1.05l-1.99,0.36l-1.08,2.66l-0.91,0.4l-0.19,0.55l1.21,2.27l2.52,3.43l-0.79,1.91l-0.74,0.41l-0.17,0.52l0.65,1.37l1.61,1.95l0.25,2.58l0.9,2.13l-1.92,3.57l0.68,-2.25l-0.81,-1.74l0.19,-2.65l-1.05,-1.53l-1.24,-6.17l-1.12,-2.26l-0.6,-0.13l-4.34,3.02l-2.39,-0.65l0.77,-2.84l-0.52,-2.61l-1.91,-2.96l0.25,-0.75l-0.29,-0.51l-1.33,-0.3l-1.61,-1.93l-0.1,-1.3l0.82,-0.24l0.04,-1.64l1.02,-0.52l0.21,-0.45l-0.23,-0.95l0.54,-0.96l0.08,-2.22l1.46,0.45l0.47,-0.2l1.12,-2.19l0.16,-1.35l1.33,-2.16l-0.0,-1.52l2.89,-1.66l1.63,0.44l0.5,-0.44l-0.17,-1.4l0.64,-0.36l0.08,-1.04l0.77,-0.11l0.71,1.35l1.06,0.69l-0.03,3.86l-2.38,2.37l-0.3,3.15l0.46,0.43l2.28,-0.38l0.51,2.08l1.47,0.67l-0.6,1.8l0.19,0.48l2.97,1.48l1.64,-0.55l0.02,0.32Z",name:"缅甸"},ML:{path:"M392.61,254.08l-0.19,-2.37l-0.99,-0.87l-0.44,-1.3l-0.09,-1.28l0.81,-0.58l0.35,-1.24l2.37,0.65l1.31,-0.47l0.86,0.15l0.66,-0.56l9.83,-0.04l0.38,-0.28l0.56,-1.8l-0.44,-0.65l-2.35,-21.95l3.27,-0.04l16.7,11.38l0.74,1.31l2.5,1.09l0.02,1.38l0.44,0.39l2.34,-0.21l0.01,5.38l-1.28,1.61l-0.26,1.49l-5.31,0.57l-1.07,0.92l-2.9,0.1l-0.86,-0.48l-1.38,0.36l-2.4,1.08l-0.6,0.87l-1.85,1.09l-0.43,0.7l-0.79,0.39l-1.44,-0.21l-0.81,0.84l-0.34,1.64l-1.91,2.02l-0.06,1.03l-0.67,1.22l0.13,1.16l-0.97,0.39l-0.23,-0.64l-0.52,-0.24l-1.35,0.4l-0.34,0.55l-2.69,-0.28l-0.37,-0.35l-0.02,-0.9l-0.65,-0.35l0.45,-0.64l-0.03,-0.53l-2.12,-2.44l-0.76,-0.01l-2.0,1.16l-0.78,-0.15l-0.8,-0.67l-1.21,0.23Z",name:"马里"},MN:{path:"M676.61,146.48l3.81,1.68l5.67,-1.0l2.37,0.41l2.34,1.5l1.79,1.75l2.29,-0.03l3.12,0.52l2.47,-0.81l3.41,-0.59l3.53,-2.21l1.25,0.29l1.53,1.13l2.27,-0.21l-2.66,5.01l0.64,1.68l0.47,0.21l1.32,-0.38l2.38,0.48l2.02,-1.11l1.76,0.89l2.06,2.02l-0.13,0.53l-1.72,-0.29l-3.77,0.46l-1.88,0.99l-1.76,1.99l-3.71,1.17l-2.45,1.6l-3.83,-0.87l-0.41,0.17l-1.31,1.99l1.04,2.24l-1.52,0.9l-1.74,1.57l-2.79,1.02l-3.78,0.13l-4.05,1.05l-2.77,1.52l-1.16,-0.85l-2.94,0.0l-3.62,-1.79l-2.58,-0.49l-3.4,0.41l-5.12,-0.67l-2.63,0.06l-1.31,-1.6l-1.4,-3.0l-1.48,-0.33l-3.13,-1.94l-6.16,-0.93l-0.71,-1.06l0.86,-3.82l-1.93,-2.71l-3.5,-1.18l-1.95,-1.58l-0.5,-1.72l2.34,-0.52l4.75,-2.8l3.62,-1.47l2.18,0.97l2.46,0.05l1.81,1.53l2.46,0.12l3.95,0.71l2.43,-2.28l0.08,-0.48l-0.9,-1.72l2.24,-2.98l2.62,1.27l4.94,1.17l0.43,2.24Z",name:"蒙古"},MK:{path:"M472.8,173.98l0.49,-0.71l3.57,-0.71l1.0,0.77l0.13,1.45l-0.65,0.53l-1.15,-0.05l-1.12,0.67l-1.39,0.22l-0.79,-0.55l-0.29,-1.03l0.19,-0.6Z",name:"马其顿"},MW:{path:"M505.5,309.31l0.85,1.95l0.15,2.86l-0.69,1.65l0.71,1.8l0.06,1.28l0.49,0.64l0.07,1.06l0.4,0.55l0.8,-0.23l0.55,0.61l0.69,-0.21l0.34,0.6l0.19,2.94l-1.04,0.62l-0.54,1.25l-1.11,-1.08l-0.16,-1.56l0.51,-1.31l-0.32,-1.3l-0.99,-0.65l-0.82,0.12l-2.36,-1.64l0.63,-1.96l0.82,-1.18l-0.46,-2.01l0.9,-2.86l-0.94,-2.51l0.96,0.18l0.29,0.4Z",name:"马拉维"},MR:{path:"M407.36,220.66l-2.58,0.03l-0.39,0.44l2.42,22.56l0.36,0.43l-0.39,1.24l-9.75,0.04l-0.56,0.53l-0.91,-0.11l-1.27,0.45l-1.61,-0.66l-0.97,0.03l-0.36,0.29l-0.38,1.35l-0.42,0.23l-2.93,-3.4l-2.96,-1.52l-1.62,-0.03l-1.27,0.54l-1.12,-0.2l-0.65,0.4l-0.08,-0.49l0.68,-1.29l0.31,-2.43l-0.57,-3.91l0.23,-1.21l-0.69,-1.5l-1.15,-1.02l0.25,-0.39l9.58,0.02l0.4,-0.45l-0.46,-3.68l0.47,-1.04l2.12,-0.21l0.36,-0.4l-0.08,-6.4l7.81,0.13l0.41,-0.4l0.01,-3.31l7.76,5.35Z",name:"毛里塔尼亚"},UG:{path:"M498.55,276.32l0.7,-0.46l1.65,0.5l1.96,-0.57l1.7,0.01l1.45,-0.98l0.91,1.33l1.33,3.95l-2.57,4.03l-1.46,-0.4l-2.54,0.91l-1.37,1.61l-0.01,0.81l-2.42,-0.01l-2.26,1.01l-0.17,-1.59l0.58,-1.04l0.14,-1.94l1.37,-2.28l1.78,-1.58l-0.17,-0.65l-0.72,-0.24l0.13,-2.43Z",name:"乌干达"},MY:{path:"M717.47,273.46l-1.39,0.65l-2.12,-0.41l-2.88,-0.0l-0.38,0.28l-0.84,2.75l-0.99,0.96l-1.21,3.29l-1.73,0.45l-2.45,-0.68l-1.39,0.31l-1.33,1.15l-1.59,-0.14l-1.41,0.44l-1.44,-1.19l-0.18,-0.73l1.34,0.53l1.93,-0.47l0.75,-2.22l4.02,-1.03l2.75,-3.21l0.82,0.94l0.64,-0.05l0.4,-0.65l0.96,0.06l0.42,-0.36l0.24,-2.68l1.81,-1.64l1.21,-1.86l0.63,-0.01l1.07,1.05l0.34,1.28l3.44,1.35l-0.06,0.35l-1.37,0.1l-0.35,0.54l0.32,0.88ZM673.68,269.59l0.17,1.09l0.47,0.33l1.65,-0.3l0.87,-0.94l1.61,1.52l0.98,1.56l-0.12,2.81l0.41,2.29l0.95,0.9l0.88,2.44l-1.27,0.12l-5.1,-3.67l-0.34,-1.29l-1.37,-1.59l-0.33,-1.97l-0.88,-1.4l0.25,-1.68l-0.46,-1.05l1.63,0.84Z",name:"马来西亚"},MX:{path:"M133.12,200.41l0.2,0.47l9.63,3.33l6.96,-0.02l0.4,-0.4l0.0,-0.74l3.77,0.0l3.55,2.93l1.39,2.83l1.52,1.04l2.08,0.82l0.47,-0.14l1.46,-2.0l1.73,-0.04l1.59,0.98l2.05,3.35l1.47,1.56l1.26,3.14l2.18,1.02l2.26,0.58l-1.18,3.72l-0.42,5.04l1.79,4.89l1.62,1.89l0.61,1.52l1.2,1.42l2.55,0.66l1.37,1.1l7.54,-1.89l1.86,-1.3l1.14,-4.3l4.1,-1.21l3.57,-0.11l0.32,0.3l-0.06,0.94l-1.26,1.45l-0.67,1.71l0.38,0.7l-0.72,2.27l-0.49,-0.3l-1.0,0.08l-1.0,1.39l-0.47,-0.11l-0.53,0.47l-4.26,-0.02l-0.4,0.4l-0.0,1.06l-1.1,0.26l0.1,0.44l1.82,1.44l0.56,0.91l-3.19,0.21l-1.21,2.09l0.24,0.72l-0.2,0.44l-2.24,-2.18l-1.45,-0.93l-2.22,-0.69l-1.52,0.22l-3.07,1.16l-10.55,-3.85l-2.86,-1.96l-3.78,-0.92l-1.08,-1.19l-2.62,-1.43l-1.18,-1.54l-0.38,-0.81l0.66,-0.63l-0.18,-0.53l0.52,-0.76l0.01,-0.91l-2.0,-3.82l-2.21,-2.63l-2.53,-2.09l-1.19,-1.62l-2.2,-1.17l-0.3,-0.43l0.34,-1.48l-0.21,-0.45l-1.23,-0.6l-1.36,-1.2l-0.59,-1.78l-1.54,-0.47l-2.44,-2.55l-0.16,-0.9l-1.33,-2.03l-0.84,-1.99l-0.16,-1.33l-1.81,-1.1l-0.97,0.05l-1.31,-0.7l-0.57,0.22l-0.4,1.12l0.72,3.77l3.51,3.89l0.28,0.78l0.53,0.26l0.41,1.43l1.33,1.73l1.58,1.41l0.8,2.39l1.43,2.41l0.13,1.32l0.37,0.36l1.04,0.08l1.67,2.28l-0.85,0.76l-0.66,-1.51l-1.68,-1.54l-2.91,-1.87l0.06,-1.82l-0.54,-1.68l-2.91,-2.03l-0.55,0.09l-1.95,-1.1l-0.88,-0.94l0.68,-0.08l0.93,-1.01l0.08,-1.78l-1.93,-1.94l-1.46,-0.77l-3.75,-7.56l4.88,-0.42Z",name:"墨西哥"},IL:{path:"M507.76,203.05l0.4,-0.78l0.18,0.4l-0.33,1.03l0.52,0.44l0.68,-0.22l-0.86,3.6l-1.16,-3.32l0.59,-0.74l-0.03,-0.41ZM508.73,200.34l0.37,-1.02l0.64,0.0l0.52,-0.51l-0.49,1.53l-0.56,-0.24l-0.48,0.23Z",name:"以色列"},FR:{path:"M444.48,172.62l-0.64,1.78l-0.58,-0.31l-0.49,-1.72l0.4,-0.89l1.0,-0.72l0.3,1.85ZM429.64,147.1l1.78,1.58l1.46,-0.13l2.1,1.42l1.35,0.27l1.23,0.83l3.04,0.5l-1.03,1.85l-0.3,2.12l-0.41,0.32l-0.95,-0.24l-0.5,0.43l0.06,0.61l-1.81,1.92l-0.04,1.42l0.55,0.38l0.88,-0.36l0.61,0.97l-0.03,1.0l0.57,0.91l-0.75,1.09l0.65,2.39l1.27,0.57l-0.18,0.82l-2.01,1.53l-4.77,-0.8l-3.82,1.0l-0.53,1.85l-2.49,0.34l-2.71,-1.31l-1.16,0.57l-4.31,-1.29l-0.72,-0.86l1.19,-1.78l0.39,-6.45l-2.58,-3.3l-1.9,-1.66l-3.72,-1.23l-0.19,-1.72l2.81,-0.61l4.12,0.81l0.47,-0.48l-0.6,-2.77l1.94,0.95l5.83,-2.54l0.92,-2.74l1.6,-0.49l0.24,0.78l1.36,0.33l1.05,1.19ZM289.01,278.39l-0.81,0.8l-0.78,0.12l-0.5,-0.66l-0.56,-0.1l-0.91,0.6l-0.46,-0.22l1.09,-2.96l-0.96,-1.77l-0.17,-1.49l1.07,-1.77l2.32,0.75l2.51,2.01l0.3,0.74l-2.14,3.96Z",name:"法国"},XS:{path:"M531.15,258.94l1.51,0.12l5.13,-0.95l5.3,-1.48l-0.01,4.4l-2.67,3.39l-1.85,0.01l-8.04,-2.94l-2.55,-3.17l1.12,-1.71l2.04,2.34Z",name:"索马里兰"},FI:{path:"M492.17,76.39l-0.23,3.5l3.52,2.63l-2.08,2.88l-0.02,0.44l2.8,4.56l-1.59,3.31l2.16,3.24l-0.94,2.39l0.14,0.47l3.44,2.51l-0.77,1.62l-7.52,6.95l-4.5,0.31l-4.38,1.37l-3.8,0.74l-1.44,-1.96l-2.17,-1.11l0.5,-3.66l-1.16,-3.33l1.09,-2.08l2.21,-2.42l5.67,-4.32l1.64,-0.83l0.21,-0.42l-0.46,-2.02l-3.38,-1.89l-0.75,-1.43l-0.22,-6.74l-6.79,-4.8l0.8,-0.62l2.54,2.12l3.46,-0.12l3.0,0.96l2.51,-2.11l1.17,-3.08l3.55,-1.38l2.76,1.53l-0.95,2.79Z",name:"芬兰"},FJ:{path:"M869.95,326.98l-1.21,0.41l-0.08,-0.23l2.97,-1.21l-0.14,0.42l-1.54,0.61ZM867.58,329.25l0.43,0.37l-0.27,0.88l-1.24,0.28l-1.04,-0.24l-0.14,-0.66l0.63,-0.58l0.92,0.26l0.7,-0.31Z",name:"斐济"},FK:{path:"M274.36,425.85l1.44,1.08l-0.47,0.73l-3.0,0.89l-0.96,-1.0l-0.52,-0.05l-1.83,1.29l-0.73,-0.88l2.46,-1.64l1.93,0.76l1.67,-1.19Z",name:"福克兰群岛"},NI:{path:"M202.33,252.67l0.81,-0.18l1.03,-1.02l-0.04,-0.88l0.68,-0.0l0.63,-0.54l0.97,0.22l1.53,-1.26l0.58,-0.99l1.17,0.34l2.41,-0.94l0.13,1.32l-0.81,1.94l0.1,2.74l-0.36,0.37l-0.11,1.75l-0.47,0.81l0.18,1.14l-1.73,-0.85l-0.71,0.27l-1.47,-0.6l-0.52,0.16l-4.01,-3.81Z",name:"尼加拉瓜"},NL:{path:"M430.31,143.39l0.6,-0.5l2.13,-4.8l3.2,-1.33l1.74,0.08l0.33,0.8l-0.59,2.92l-0.5,0.99l-1.26,0.0l-0.4,0.45l0.33,2.7l-2.2,-1.78l-2.62,0.58l-0.75,-0.11Z",name:"荷兰"},NO:{path:"M491.44,67.41l6.8,2.89l-2.29,0.86l-0.15,0.65l2.33,2.38l-4.98,1.79l0.84,-2.45l-0.18,-0.48l-3.55,-1.8l-3.89,1.52l-1.42,3.38l-2.12,1.72l-2.64,-1.0l-3.11,0.21l-2.66,-2.22l-0.5,-0.01l-1.41,1.1l-1.44,0.17l-0.35,0.35l-0.32,2.47l-4.32,-0.64l-0.44,0.29l-0.58,2.11l-2.45,0.2l-4.15,7.68l-3.88,5.76l0.78,1.62l-0.64,1.16l-2.24,-0.06l-0.38,0.24l-1.66,3.89l0.15,5.17l1.57,2.04l-0.78,4.16l-2.02,2.48l-0.85,1.63l-1.3,-1.75l-0.58,-0.07l-4.87,4.19l-3.1,0.79l-3.16,-1.7l-0.85,-3.77l-0.77,-8.55l2.14,-2.31l6.55,-3.27l5.02,-4.17l10.63,-13.84l10.98,-8.7l5.35,-1.91l4.34,0.12l3.69,-3.64l4.49,0.19l4.37,-0.89ZM484.55,20.04l4.26,1.75l-3.1,2.55l-7.1,0.65l-7.08,-0.9l-0.37,-1.31l-0.37,-0.29l-3.44,-0.1l-2.08,-2.0l6.87,-1.44l3.9,1.31l2.39,-1.64l6.13,1.4ZM481.69,33.93l-4.45,1.74l-3.54,-0.99l1.12,-0.9l0.05,-0.58l-1.06,-1.22l4.22,-0.89l1.09,1.97l2.57,0.87ZM466.44,24.04l7.43,3.77l-5.41,1.86l-1.58,4.08l-2.26,1.2l-1.12,4.11l-2.61,0.18l-4.79,-2.86l1.84,-1.54l-0.1,-0.68l-3.69,-1.53l-4.77,-4.51l-1.73,-3.89l6.11,-1.82l1.54,1.92l3.57,-0.08l1.2,-1.96l3.32,-0.18l3.05,1.92Z",name:"挪威"},NA:{path:"M474.26,330.66l-0.97,0.04l-0.38,0.4l-0.07,8.9l-2.09,0.08l-0.39,0.4l-0.0,17.42l-1.98,1.23l-1.17,0.17l-2.44,-0.66l-0.48,-1.13l-0.99,-0.74l-0.54,0.05l-0.9,1.01l-1.53,-1.68l-0.93,-1.88l-1.99,-8.56l-0.06,-3.12l-0.33,-1.52l-2.3,-3.34l-1.91,-4.83l-1.96,-2.43l-0.12,-1.57l2.33,-0.79l1.43,0.07l1.81,1.13l10.23,-0.25l1.84,1.23l5.87,0.35ZM474.66,330.64l6.51,-1.6l1.9,0.39l-1.69,0.4l-1.31,0.83l-1.12,-0.94l-4.29,0.92Z",name:"纳米比亚"},VU:{path:"M839.04,322.8l0.22,1.14l-0.44,0.03l-0.2,-1.45l0.42,0.27Z",name:"瓦努阿图"},NC:{path:"M838.78,341.24l-0.33,0.22l-2.9,-1.75l-3.26,-3.37l1.65,0.83l4.85,4.07Z",name:"新喀里多尼亚"},NE:{path:"M454.75,226.53l1.33,1.37l0.48,0.07l1.27,-0.7l0.53,3.52l0.94,0.83l0.17,0.92l0.81,0.69l-0.44,0.95l-0.96,5.26l-0.13,3.22l-3.04,2.31l-1.22,3.57l1.02,1.24l-0.0,1.46l0.39,0.4l1.13,0.04l-0.9,1.25l-1.47,-2.42l-0.86,-0.29l-2.09,1.37l-1.74,-0.67l-1.45,-0.17l-0.85,0.35l-1.36,-0.07l-1.64,1.09l-1.06,0.05l-2.94,-1.28l-1.44,0.59l-1.01,-0.03l-0.97,-0.94l-2.7,-0.98l-2.69,0.3l-0.87,0.64l-0.47,1.6l-0.75,1.16l-0.12,1.53l-1.57,-1.1l-1.31,0.24l0.03,-0.81l-0.32,-0.41l-2.59,-0.52l-0.15,-1.16l-1.35,-1.6l-0.29,-1.0l0.13,-0.84l1.29,-0.08l1.08,-0.92l3.31,-0.22l2.22,-0.41l0.32,-0.34l0.2,-1.47l1.39,-1.88l-0.01,-5.66l3.36,-1.12l7.24,-5.12l8.42,-4.92l3.69,1.06Z",name:"尼日尔"},NG:{path:"M456.32,253.89l0.64,0.65l-0.28,1.04l-2.11,2.01l-2.03,5.18l-1.37,1.16l-1.15,3.18l-1.33,0.66l-1.46,-0.97l-1.21,0.16l-1.38,1.36l-0.91,0.24l-1.79,4.06l-2.33,0.81l-1.11,-0.07l-0.86,0.5l-1.71,-0.05l-1.19,-1.39l-0.89,-1.89l-1.77,-1.66l-3.95,-0.08l0.07,-5.21l0.42,-1.43l1.95,-2.3l-0.14,-0.91l0.43,-1.18l-0.53,-1.41l0.25,-2.92l0.72,-1.07l0.32,-1.34l0.46,-0.39l2.47,-0.28l2.34,0.89l1.15,1.02l1.28,0.04l1.22,-0.58l3.03,1.27l1.49,-0.14l1.36,-1.0l1.33,0.07l0.82,-0.35l3.45,0.8l1.82,-1.32l1.84,2.67l0.66,0.16Z",name:"尼日利亚"},NZ:{path:"M857.8,379.65l1.86,3.12l0.44,0.18l0.3,-0.38l0.03,-1.23l0.38,0.27l0.57,2.31l2.02,0.94l1.81,0.27l1.57,-1.06l0.7,0.18l-1.15,3.59l-1.98,0.11l-0.74,1.2l0.2,1.11l-2.42,3.98l-1.49,0.92l-1.04,-0.85l1.21,-2.05l-0.81,-2.01l-2.63,-1.25l0.04,-0.57l1.82,-1.19l0.43,-2.34l-0.16,-2.03l-0.95,-1.82l-0.06,-0.72l-3.11,-3.64l-0.79,-1.52l1.56,1.45l1.76,0.66l0.65,2.34ZM853.83,393.59l0.57,1.24l0.59,0.16l1.42,-0.97l0.46,0.79l0.0,1.03l-2.47,3.48l-1.26,1.2l-0.06,0.5l0.55,0.87l-1.41,0.07l-2.33,1.38l-2.03,5.02l-3.02,2.16l-2.06,-0.06l-1.71,-1.04l-2.47,-0.2l-0.27,-0.73l1.22,-2.1l3.05,-2.94l1.62,-0.59l4.02,-2.82l1.57,-1.67l1.07,-2.16l0.88,-0.7l0.48,-1.75l1.24,-0.97l0.35,0.79Z",name:"新西兰"},NP:{path:"M641.14,213.62l0.01,3.19l-1.74,0.04l-4.8,-0.86l-1.58,-1.39l-3.37,-0.34l-7.65,-3.7l0.8,-2.09l2.33,-1.7l1.77,0.75l2.49,1.76l1.38,0.41l0.99,1.35l1.9,0.52l1.99,1.17l5.49,0.9Z",name:"尼泊尔"},XK:{path:"M472.77,172.64l-1.08,-1.29l0.96,-0.77l0.29,-0.83l1.98,1.64l-0.36,0.67l-1.79,0.58Z",name:"科索沃"},CI:{path:"M407.4,259.27l0.86,0.42l0.56,0.9l1.13,0.53l1.19,-0.61l0.97,-0.08l1.42,0.54l0.6,3.24l-1.03,2.08l-0.65,2.84l1.06,2.33l-0.06,0.53l-2.54,-0.47l-1.66,0.03l-3.06,0.46l-4.11,1.6l0.32,-3.06l-1.18,-1.31l-1.32,-0.66l0.42,-0.85l-0.2,-1.4l0.5,-0.67l0.01,-1.59l0.84,-0.32l0.26,-0.5l-1.15,-3.01l0.12,-0.5l0.51,-0.25l0.66,0.31l1.93,0.02l0.67,-0.71l0.71,-0.14l0.25,0.69l0.57,0.22l1.4,-0.61Z",name:"科特迪瓦"},CH:{path:"M444.62,156.35l-0.29,0.87l0.18,0.53l1.13,0.58l1.0,0.1l-0.1,0.65l-0.79,0.38l-1.72,-0.37l-0.45,0.23l-0.45,1.04l-0.75,0.06l-0.84,-0.4l-1.32,1.0l-0.96,0.12l-0.88,-0.55l-0.81,-1.3l-0.49,-0.16l-0.63,0.26l0.02,-0.65l1.71,-1.66l0.1,-0.56l0.93,0.08l0.58,-0.46l1.99,0.02l0.66,-0.61l2.19,0.79Z",name:"瑞士"},CO:{path:"M242.07,254.93l-1.7,0.59l-0.59,1.18l-1.7,1.69l-0.38,1.93l-0.67,1.43l0.31,0.57l1.03,0.13l0.25,0.9l0.57,0.64l-0.04,2.34l1.64,1.42l3.16,-0.24l1.26,0.28l1.67,2.06l0.41,0.13l4.09,-0.39l0.45,0.22l-0.92,1.95l-0.2,1.8l0.52,1.83l0.75,1.05l-1.12,1.1l0.07,0.63l0.84,0.51l0.74,1.29l-0.39,-0.45l-0.59,-0.01l-0.71,0.74l-4.71,-0.05l-0.4,0.41l0.03,1.57l0.33,0.39l1.11,0.2l-1.68,0.4l-0.29,0.38l-0.01,1.82l1.16,1.14l0.34,1.25l-1.05,7.05l-1.04,-0.87l1.26,-1.99l-0.13,-0.56l-2.18,-1.23l-1.38,0.2l-1.14,-0.38l-1.27,0.61l-1.55,-0.26l-1.38,-2.46l-1.23,-0.75l-0.85,-1.2l-1.67,-1.19l-0.86,0.13l-2.11,-1.32l-1.01,0.31l-1.8,-0.29l-0.52,-0.91l-3.09,-1.68l0.77,-0.52l-0.1,-1.12l0.41,-0.64l1.34,-0.32l2.0,-2.88l-0.11,-0.57l-0.66,-0.43l0.39,-1.38l-0.52,-2.1l0.49,-0.83l-0.4,-2.13l-0.97,-1.35l0.17,-0.66l0.86,-0.08l0.47,-0.75l-0.46,-1.63l1.41,-0.07l1.8,-1.69l0.93,-0.24l0.3,-0.38l0.45,-2.76l1.22,-1.0l1.44,-0.04l0.45,-0.5l1.91,0.12l2.93,-1.84l1.15,-1.14l0.91,0.46l-0.25,0.45Z",name:"哥伦比亚"},CN:{path:"M740.23,148.97l4.57,1.3l2.8,2.17l0.98,2.9l0.38,0.27l3.8,0.0l2.32,-1.28l3.29,-0.75l-0.96,2.09l-1.02,1.28l-0.85,3.4l-1.52,2.73l-2.76,-0.5l-2.4,1.13l-0.21,0.45l0.64,2.57l-0.32,3.2l-0.94,0.06l-0.37,0.89l-0.91,-1.01l-0.64,0.07l-0.92,1.57l-3.73,1.25l-0.26,0.48l0.26,1.06l-1.5,-0.08l-1.09,-0.86l-0.56,0.06l-1.67,2.06l-2.7,1.56l-2.03,1.88l-3.4,0.83l-1.93,1.4l-1.15,0.34l0.33,-0.7l-0.41,-0.89l1.79,-1.79l0.02,-0.54l-1.32,-1.56l-0.48,-0.1l-2.24,1.09l-2.83,2.06l-1.51,1.83l-2.28,0.13l-1.55,1.49l-0.04,0.5l1.32,1.97l2.0,0.58l0.31,1.35l1.98,0.84l3.0,-1.96l2.0,1.02l1.49,0.11l0.22,0.83l-3.37,0.86l-1.12,1.48l-2.5,1.52l-1.29,1.99l0.14,0.56l2.57,1.48l0.97,2.7l3.17,4.63l-0.03,1.66l-1.35,0.65l-0.2,0.51l0.6,1.47l1.4,0.91l-0.89,3.82l-1.43,0.38l-3.85,6.44l-2.27,3.11l-6.78,4.57l-2.73,0.29l-1.45,1.04l-0.62,-0.61l-0.55,-0.01l-1.36,1.25l-3.39,1.27l-2.61,0.4l-1.1,2.79l-0.81,0.09l-0.49,-1.42l0.5,-0.85l-0.25,-0.59l-3.36,-0.84l-1.3,0.4l-2.31,-0.62l-0.94,-0.84l0.33,-1.28l-0.3,-0.49l-2.19,-0.46l-1.13,-0.93l-0.47,-0.02l-2.06,1.36l-4.29,0.28l-2.76,1.05l-0.28,0.43l0.32,2.53l-0.59,-0.03l-0.19,-1.34l-0.55,-0.34l-1.68,0.7l-2.46,-1.23l0.62,-1.87l-0.26,-0.51l-1.37,-0.44l-0.54,-2.22l-0.45,-0.3l-2.13,0.35l0.24,-2.48l2.39,-2.4l0.03,-4.31l-1.19,-0.92l-0.78,-1.49l-0.41,-0.21l-1.41,0.19l-1.98,-0.3l0.46,-1.07l-1.17,-1.7l-0.55,-0.11l-1.63,1.05l-2.25,-0.57l-2.89,1.73l-2.25,1.98l-1.75,0.29l-1.17,-0.71l-3.31,-0.65l-1.48,0.79l-1.04,1.27l-0.12,-1.17l-0.54,-0.34l-1.44,0.54l-5.55,-0.86l-1.98,-1.16l-1.89,-0.54l-0.99,-1.35l-1.34,-0.37l-2.55,-1.79l-2.01,-0.84l-1.21,0.56l-5.57,-3.45l-0.53,-2.31l1.19,0.25l0.48,-0.37l0.08,-1.42l-0.98,-1.56l0.15,-2.44l-2.69,-3.32l-4.12,-1.23l-0.67,-2.0l-1.92,-1.48l-0.38,-0.7l-0.51,-3.01l-1.52,-0.66l-0.7,0.13l-0.48,-2.05l0.55,-0.51l-0.09,-0.82l2.03,-1.19l1.6,-0.54l2.56,0.38l0.42,-0.22l0.85,-1.7l3.0,-0.33l1.1,-1.26l4.05,-1.77l0.39,-0.91l-0.17,-1.44l1.45,-0.67l0.2,-0.52l-2.07,-4.9l4.51,-1.12l1.37,-0.73l1.89,-5.51l4.98,0.86l1.51,-1.7l0.11,-2.87l1.99,-0.38l1.83,-2.06l0.49,-0.13l0.68,2.08l2.23,1.77l3.44,1.16l1.55,2.29l-0.92,3.49l0.96,1.67l6.54,1.13l2.95,1.87l1.47,0.35l1.06,2.62l1.53,1.91l3.05,0.08l5.14,0.67l3.37,-0.41l2.36,0.43l3.65,1.8l3.06,0.04l1.45,0.88l2.87,-1.59l3.95,-1.02l3.83,-0.14l3.06,-1.14l1.77,-1.6l1.72,-1.01l0.17,-0.49l-1.1,-2.05l1.02,-1.54l4.02,0.8l2.45,-1.61l3.76,-1.19l1.96,-2.13l1.63,-0.83l3.51,-0.4l1.92,0.34l0.46,-0.3l0.17,-1.5l-2.27,-2.22l-2.11,-1.09l-2.18,1.11l-2.32,-0.47l-1.29,0.32l-0.4,-0.82l2.73,-5.16l3.02,1.06l3.53,-2.06l0.18,-1.68l2.16,-3.35l1.49,-1.35l-0.03,-1.85l-1.07,-0.85l1.54,-1.26l2.98,-0.59l3.23,-0.09l3.64,0.99l2.04,1.16l3.29,6.71l0.92,3.19ZM696.92,237.31l-1.87,1.08l-1.63,-0.64l-0.06,-1.79l1.03,-0.98l2.58,-0.69l1.16,0.05l0.3,0.54l-0.98,1.06l-0.53,1.37Z",name:"中国"},CM:{path:"M457.92,257.49l1.05,1.91l-1.4,0.16l-1.05,-0.23l-0.45,0.22l-0.54,1.19l0.08,0.45l1.48,1.47l1.05,0.45l1.01,2.46l-1.52,2.99l-0.68,0.68l-0.13,3.69l2.38,3.84l1.09,0.8l0.24,2.48l-3.67,-1.14l-11.27,-0.13l0.23,-1.79l-0.98,-1.66l-1.19,-0.54l-0.44,-0.97l-0.6,-0.42l1.71,-4.27l0.75,-0.13l1.38,-1.36l0.65,-0.03l1.71,0.99l1.93,-1.12l1.14,-3.18l1.38,-1.17l2.0,-5.14l2.17,-2.13l0.3,-1.64l-0.86,-0.88l0.03,-0.33l0.94,1.28l0.07,3.22Z",name:"喀麦隆"},CL:{path:"M246.5,429.18l-3.14,1.83l-0.57,3.16l-0.64,0.05l-2.68,-1.06l-2.82,-2.33l-3.04,-1.89l-0.69,-1.85l0.63,-2.14l-1.21,-2.11l-0.31,-5.37l1.01,-2.91l2.57,-2.38l-0.18,-0.68l-3.16,-0.77l2.05,-2.47l0.77,-4.65l2.32,0.9l0.54,-0.29l1.31,-6.31l-0.22,-0.44l-1.68,-0.8l-0.56,0.28l-0.7,3.36l-0.81,-0.22l1.56,-9.41l1.15,-2.24l-0.71,-2.82l-0.18,-2.84l1.01,-0.33l3.26,-9.14l1.07,-4.22l-0.56,-4.21l0.74,-2.34l-0.29,-3.27l1.46,-3.34l2.04,-16.59l-0.66,-7.76l1.03,-0.53l0.54,-0.9l0.79,1.14l0.32,1.78l1.25,1.16l-0.69,2.55l1.33,2.9l0.97,3.59l0.46,0.29l1.5,-0.3l0.11,0.23l-0.76,2.44l-2.57,1.23l-0.23,0.37l0.08,4.33l-0.46,0.77l0.56,1.21l-1.58,1.51l-1.68,2.62l-0.89,2.47l0.2,2.7l-1.48,2.73l1.12,5.09l0.64,0.61l-0.01,2.29l-1.38,2.68l0.01,2.4l-1.89,2.04l0.02,2.75l0.69,2.57l-1.43,1.13l-1.26,5.68l0.39,3.51l-0.97,0.89l0.58,3.5l1.02,1.14l-0.65,1.02l0.15,0.57l1.0,0.53l0.16,0.69l-1.03,0.85l0.26,1.75l-0.89,4.03l-1.31,2.66l0.24,1.75l-0.71,1.83l-1.99,1.7l0.3,3.67l0.88,1.19l1.58,0.01l0.01,2.21l1.04,1.95l5.98,0.63ZM248.69,430.79l0.0,7.33l0.4,0.4l3.52,0.05l-0.44,0.75l-1.94,0.98l-2.49,-0.37l-1.88,-1.06l-2.55,-0.49l-5.59,-3.71l-2.38,-2.63l4.1,2.48l3.32,1.23l0.45,-0.12l1.29,-1.57l0.83,-2.32l2.05,-1.24l1.31,0.29Z",name:"智利"},XC:{path:"M504.91,192.87l0.34,0.01l0.27,-0.07l-0.29,0.26l-0.31,-0.2Z",name:"北塞浦路斯"},CA:{path:"M280.06,145.6l-1.67,2.88l0.07,0.49l0.5,0.04l1.46,-0.98l1.0,0.42l-0.56,0.72l0.17,0.62l2.22,0.89l1.35,-0.71l1.95,0.78l-0.66,2.01l0.5,0.51l1.32,-0.42l0.98,3.17l-0.91,2.41l-0.8,0.08l-1.23,-0.45l0.47,-2.25l-0.89,-0.83l-0.48,0.06l-2.78,2.63l-0.34,-0.02l1.02,-0.85l-0.14,-0.69l-2.4,-0.77l-7.4,0.08l-0.17,-0.41l1.3,-0.94l0.02,-0.64l-0.73,-0.58l1.85,-1.74l2.57,-5.16l1.47,-1.79l1.99,-1.05l0.46,0.06l-1.53,2.45ZM68.32,74.16l4.13,0.95l4.02,2.14l2.61,0.4l2.47,-1.89l2.88,-1.31l3.85,0.48l3.71,-1.94l3.82,-1.04l1.56,1.68l0.49,0.08l1.87,-1.04l0.65,-1.98l1.24,0.35l4.16,3.94l0.54,0.01l2.75,-2.49l0.26,2.59l0.49,0.35l3.08,-0.73l1.04,-1.27l2.73,0.23l3.83,1.86l5.86,1.61l3.47,0.75l2.44,-0.26l2.73,1.78l-2.98,1.81l-0.19,0.41l0.31,0.32l4.53,0.92l6.87,-0.5l2.0,-0.69l2.49,2.39l0.53,0.02l2.72,-2.16l-0.02,-0.64l-2.16,-1.54l1.15,-1.06l4.83,-0.61l1.84,0.95l2.48,2.31l3.01,-0.23l4.55,1.92l3.85,-0.67l3.61,0.1l0.41,-0.44l-0.25,-2.36l1.79,-0.61l3.49,1.32l-0.01,3.77l0.31,0.39l0.45,-0.22l1.48,-3.16l1.74,0.1l0.41,-0.3l1.13,-4.37l-2.78,-3.11l-2.8,-1.74l0.19,-4.64l2.71,-3.07l2.98,0.67l2.41,1.95l3.19,4.8l-1.99,1.97l0.21,0.68l4.33,0.84l-0.01,4.15l0.25,0.37l0.44,-0.09l3.07,-3.15l2.54,2.39l-0.61,3.33l2.42,2.88l0.61,0.0l2.61,-3.08l1.88,-3.82l0.17,-4.58l6.72,0.94l3.13,2.04l0.13,1.82l-1.76,2.19l-0.01,0.49l1.66,2.16l-0.26,1.71l-4.68,2.8l-3.28,0.61l-2.47,-1.2l-0.55,0.23l-0.73,2.04l-2.38,3.43l-0.74,1.77l-2.74,2.57l-3.44,0.25l-2.21,1.78l-0.28,2.53l-2.82,0.55l-3.12,3.22l-2.72,4.31l-1.03,3.17l-0.14,4.31l0.33,0.41l3.44,0.57l2.24,5.95l0.45,0.23l3.4,-0.69l4.52,1.51l2.43,1.31l1.91,1.73l3.1,0.96l2.62,1.46l6.6,0.54l-0.35,2.74l0.81,3.53l1.81,3.78l3.83,3.3l0.45,0.04l2.1,-1.28l1.37,-3.69l-1.31,-5.38l-1.45,-1.58l3.57,-1.47l2.84,-2.46l1.52,-2.8l-0.25,-2.55l-1.7,-3.07l-2.85,-2.61l2.8,-3.95l-1.08,-3.37l-0.79,-5.67l1.36,-0.7l6.76,1.41l2.12,-0.96l5.12,3.36l1.05,1.61l4.08,0.26l-0.06,2.87l0.83,4.7l0.3,0.32l2.16,0.54l1.73,2.06l0.5,0.09l3.63,-2.03l2.52,-4.19l1.26,-1.32l7.6,11.72l-0.92,2.04l0.16,0.51l3.3,1.97l2.22,1.98l4.1,0.98l1.43,0.99l0.95,2.79l2.1,0.68l0.84,1.08l0.17,3.45l-3.37,2.26l-4.22,1.24l-3.06,2.63l-4.06,0.51l-5.35,-0.69l-6.39,0.2l-2.3,2.41l-3.26,1.51l-6.47,7.15l-0.06,0.48l0.44,0.19l2.13,-0.52l4.17,-4.24l5.12,-2.62l3.52,-0.3l1.69,1.21l-2.12,2.21l0.81,3.47l1.02,2.61l3.47,1.6l4.14,-0.45l2.15,-2.8l0.26,1.48l1.14,0.8l-2.56,1.69l-5.5,1.82l-2.54,1.27l-2.74,2.15l-1.4,-0.16l-0.07,-2.01l4.14,-2.44l0.18,-0.45l-0.39,-0.29l-6.63,0.45l-1.39,-1.49l-0.14,-4.43l-1.11,-0.91l-1.82,0.39l-0.66,-0.66l-0.6,0.03l-1.91,2.39l-0.82,2.52l-0.8,1.27l-1.67,0.56l-0.46,0.76l-8.31,0.07l-1.21,0.62l-2.35,1.97l-0.71,-0.14l-1.37,0.96l-1.12,-0.48l-4.74,1.26l-0.9,1.17l0.21,0.62l1.73,0.3l-1.81,0.31l-1.85,0.81l-2.11,-0.13l-2.95,1.78l-0.69,-0.09l1.39,-2.1l1.73,-1.21l0.1,-2.29l1.16,-1.99l0.49,0.53l2.03,0.42l1.2,-1.16l0.02,-0.47l-2.66,-3.51l-2.28,-0.61l-5.64,-0.71l-0.4,-0.57l-0.79,0.13l0.2,-0.41l-0.22,-0.55l-0.68,-0.26l0.19,-1.26l-0.78,-0.73l0.31,-0.64l-0.29,-0.57l-2.6,-0.44l-0.75,-1.63l-0.94,-0.66l-4.31,-0.65l-1.13,1.19l-1.48,0.59l-0.85,1.06l-2.83,-0.76l-2.09,0.39l-2.39,-0.97l-4.24,-0.7l-0.57,-0.4l-0.41,-1.63l-0.4,-0.3l-0.85,0.02l-0.39,0.4l-0.01,0.85l-69.13,-0.01l-6.51,-4.52l-4.5,-1.38l-1.26,-2.66l0.33,-1.93l-0.23,-0.43l-3.01,-1.35l-0.55,-2.77l-2.89,-2.38l-0.04,-1.45l1.39,-1.83l-0.28,-2.55l-4.16,-2.2l-4.07,-6.6l-4.02,-3.22l-1.3,-1.88l-0.5,-0.13l-2.51,1.21l-2.23,1.87l-3.85,-3.88l-2.44,-1.04l-2.22,-0.13l0.03,-37.49ZM260.37,148.65l3.04,0.76l2.26,1.2l-3.78,-0.95l-1.53,-1.01ZM249.4,3.81l6.68,0.49l5.32,0.79l4.26,1.57l-0.07,1.1l-5.85,2.53l-6.02,1.21l-2.39,1.39l-0.18,0.45l0.39,0.29l4.01,-0.02l-4.65,2.82l-4.2,1.74l-4.19,4.59l-5.03,0.92l-1.67,1.15l-7.47,0.59l-0.37,0.37l0.32,0.42l2.41,0.49l-0.81,0.47l-0.12,0.59l1.83,2.41l-2.02,1.59l-3.81,1.51l-1.32,2.16l-3.38,1.53l-0.22,0.48l0.35,1.19l0.4,0.29l3.88,-0.18l0.03,0.61l-6.33,2.95l-6.41,-1.4l-7.43,0.79l-3.72,-0.62l-4.4,-0.25l-0.23,-1.83l4.29,-1.11l0.28,-0.51l-1.1,-3.45l1.0,-0.25l6.58,2.28l0.47,-0.16l-0.05,-0.49l-3.41,-3.45l-3.58,-0.98l1.48,-1.55l4.34,-1.29l0.97,-2.19l-0.16,-0.48l-3.42,-2.13l-0.81,-2.26l6.2,0.22l2.24,0.58l3.91,-2.1l0.2,-0.43l-0.35,-0.32l-5.64,-0.67l-8.73,0.36l-4.26,-1.9l-2.12,-2.4l-2.78,-1.66l-0.41,-1.52l3.31,-1.03l2.93,-0.2l4.91,-0.99l3.7,-2.27l2.87,0.3l2.62,1.67l0.56,-0.14l1.82,-3.2l3.13,-0.94l4.44,-0.69l7.53,-0.26l1.48,0.67l7.19,-1.06l10.8,0.79ZM203.85,57.54l0.01,0.42l1.97,2.97l0.68,-0.02l2.24,-3.72l5.95,-1.86l4.01,4.64l-0.35,2.91l0.5,0.43l4.95,-1.36l2.32,-1.8l5.31,2.28l3.27,2.11l0.3,1.84l0.48,0.33l4.42,-0.99l2.64,2.87l5.97,1.77l2.06,1.72l2.11,3.71l-4.19,1.86l-0.01,0.73l5.9,2.83l3.94,0.94l3.78,3.95l3.46,0.25l-0.63,2.37l-4.11,4.47l-2.76,-1.56l-3.9,-3.94l-3.59,0.41l-0.33,0.34l-0.19,2.72l2.63,2.38l3.42,1.89l0.94,0.97l1.55,3.75l-0.7,2.29l-2.74,-0.92l-6.25,-3.15l-0.51,0.13l0.05,0.52l6.07,5.69l0.18,0.59l-6.09,-1.39l-5.31,-2.24l-2.63,-1.66l0.6,-0.77l-0.12,-0.6l-7.39,-4.01l-0.59,0.37l0.03,0.79l-6.73,0.6l-1.69,-1.1l1.36,-2.46l4.51,-0.07l5.15,-0.52l0.31,-0.6l-0.74,-1.3l0.78,-1.84l3.21,-4.05l-0.67,-2.35l-1.11,-1.6l-3.84,-2.1l-4.35,-1.28l0.91,-0.63l0.06,-0.61l-2.65,-2.75l-2.34,-0.36l-1.89,-1.46l-0.53,0.03l-1.24,1.23l-4.36,0.55l-9.04,-0.99l-9.26,-1.98l-1.6,-1.22l2.22,-1.77l0.13,-0.44l-0.38,-0.27l-3.22,-0.02l-0.72,-4.25l1.83,-4.04l2.42,-1.85l5.5,-1.1l-1.39,2.35ZM261.19,159.33l2.07,0.61l1.44,-0.04l-1.15,0.63l-2.94,-1.23l-0.4,-0.68l0.36,-0.37l0.61,1.07ZM230.83,84.39l-2.37,0.18l-0.49,-1.63l0.93,-2.09l1.94,-0.51l1.62,0.99l0.02,1.52l-1.66,1.54ZM229.43,58.25l0.11,0.65l-4.87,-0.21l-2.72,0.62l-3.1,-2.57l0.08,-1.26l0.86,-0.23l5.57,0.51l4.08,2.5ZM222.0,105.02l-0.72,1.49l-0.63,-0.19l-0.48,-0.84l0.81,-0.99l0.65,0.05l0.37,0.46ZM183.74,38.32l2.9,1.7l4.79,-0.01l1.84,1.46l-0.49,1.68l0.23,0.48l2.82,1.14l1.76,1.26l7.01,0.65l4.1,-1.1l5.03,-0.43l3.93,0.35l2.48,1.77l0.46,1.7l-1.3,1.1l-3.56,1.01l-3.23,-0.59l-7.17,0.76l-5.09,0.09l-3.99,-0.6l-6.42,-1.54l-0.79,-2.51l-0.3,-2.49l-2.64,-2.5l-5.32,-0.72l-2.52,-1.4l0.68,-1.57l4.78,0.31ZM207.38,91.35l0.4,1.56l0.56,0.26l1.06,-0.52l1.32,0.96l5.42,2.57l0.2,1.68l0.46,0.35l1.68,-0.28l1.15,0.85l-1.55,0.87l-3.61,-0.88l-1.32,-1.69l-0.57,-0.06l-2.45,2.1l-3.12,1.79l-0.7,-1.87l-0.42,-0.26l-2.16,0.24l1.39,-1.39l0.32,-3.14l0.76,-3.35l1.18,0.22ZM215.49,102.6l-2.67,1.95l-1.4,-0.07l-0.3,-0.58l1.53,-1.48l2.84,0.18ZM202.7,24.12l2.53,1.59l-2.87,1.4l-4.53,4.05l-4.25,0.38l-5.03,-0.68l-2.45,-2.04l0.03,-1.62l1.82,-1.37l0.14,-0.45l-0.38,-0.27l-4.45,0.04l-2.59,-1.76l-1.41,-2.29l1.57,-2.32l1.62,-1.66l2.44,-0.39l0.25,-0.65l-0.6,-0.74l4.86,-0.25l3.24,3.11l8.16,2.3l1.9,3.61ZM187.47,59.2l-2.76,3.49l-2.38,-0.15l-1.44,-3.84l0.04,-2.2l1.19,-1.88l2.3,-1.23l5.07,0.17l4.11,1.02l-3.24,3.72l-2.88,0.89ZM186.07,48.79l-1.08,1.53l-3.34,-0.34l-2.56,-1.1l1.03,-1.75l3.25,-1.23l1.95,1.58l0.75,1.3ZM185.71,35.32l-5.3,-0.2l-0.32,-0.71l4.31,0.07l1.3,0.84ZM180.68,32.48l-3.34,1.0l-1.79,-1.1l-0.98,-1.87l-0.15,-1.73l4.1,0.53l2.67,1.7l-0.51,1.47ZM180.9,76.31l-1.1,1.08l-3.13,-1.23l-2.12,0.43l-2.71,-1.57l1.72,-1.09l1.55,-1.72l3.81,1.9l1.98,2.2ZM169.74,54.87l2.96,0.97l4.17,-0.57l0.41,0.88l-2.14,2.11l0.09,0.64l3.55,1.92l-0.4,3.72l-3.79,1.65l-2.17,-0.35l-1.72,-1.74l-6.02,-3.5l0.03,-0.85l4.68,0.54l0.4,-0.21l-0.05,-0.45l-2.48,-2.81l2.46,-1.95ZM174.45,40.74l1.37,1.73l0.07,2.44l-1.05,3.45l-3.79,0.47l-2.32,-0.69l0.05,-2.64l-0.44,-0.41l-3.68,0.35l-0.12,-3.1l2.45,0.1l3.67,-1.73l3.41,0.29l0.37,-0.26ZM170.05,31.55l0.67,1.56l-3.33,-0.49l-4.22,-1.77l-4.35,-0.16l1.4,-0.94l-0.06,-0.7l-2.81,-1.23l-0.12,-1.39l4.39,0.68l6.62,1.98l1.81,2.47ZM134.5,58.13l-1.02,1.82l0.45,0.58l5.4,-1.39l3.33,2.29l0.49,-0.03l2.6,-2.23l1.94,1.32l2.0,4.5l0.7,0.06l1.3,-2.29l-1.63,-4.46l1.69,-0.54l2.31,0.71l2.65,1.81l2.49,7.92l8.48,4.27l-0.19,1.35l-3.79,0.33l-0.26,0.67l1.4,1.49l-0.58,1.1l-4.23,-0.64l-4.43,-1.19l-3.0,0.28l-4.66,1.47l-10.52,1.04l-1.43,-2.02l-3.42,-1.2l-2.21,0.43l-2.51,-2.86l4.84,-1.05l3.6,0.19l3.27,-0.78l0.31,-0.39l-0.31,-0.39l-4.84,-1.06l-8.79,0.27l-0.85,-1.07l5.26,-1.66l0.27,-0.45l-0.4,-0.34l-3.8,0.06l-3.81,-1.06l1.81,-3.01l1.66,-1.79l6.48,-2.81l1.97,0.71ZM158.7,56.61l-1.7,2.44l-3.2,-2.75l0.37,-0.3l3.11,-0.18l1.42,0.79ZM149.61,42.73l1.01,1.89l0.5,0.18l2.14,-0.82l2.23,0.19l0.36,2.04l-1.33,2.09l-8.28,0.76l-6.35,2.15l-3.41,0.1l-0.19,-0.96l4.9,-2.08l0.23,-0.46l-0.41,-0.31l-11.25,0.59l-2.89,-0.74l3.04,-4.44l2.14,-1.32l6.81,1.69l4.58,3.06l4.37,0.39l0.36,-0.63l-3.36,-4.6l1.85,-1.53l2.18,0.51l0.77,2.26ZM144.76,34.41l-4.36,1.44l-3.0,-1.4l1.46,-1.24l3.47,-0.52l2.96,0.71l-0.52,1.01ZM145.13,29.83l-1.9,0.66l-3.67,-0.0l2.27,-1.61l3.3,0.95ZM118.92,65.79l-6.03,2.02l-1.33,-1.9l-5.38,-2.28l2.59,-5.05l2.16,-3.14l-0.02,-0.48l-1.97,-2.41l7.64,-0.7l3.6,1.02l6.3,0.27l4.42,2.95l-2.53,0.98l-6.24,3.43l-3.1,3.28l-0.11,2.01ZM129.54,35.53l-0.28,3.37l-1.72,1.62l-2.33,0.28l-4.61,2.19l-3.86,0.76l-2.64,-0.87l3.72,-3.4l5.01,-3.34l3.72,0.07l3.0,-0.67ZM111.09,152.69l-0.67,0.24l-3.85,-1.37l-0.83,-1.17l-2.12,-1.07l-0.66,-1.02l-2.4,-0.55l-0.74,-1.71l6.02,1.45l2.0,2.55l2.52,1.39l0.73,1.27ZM87.8,134.64l0.89,0.29l1.86,-0.21l-0.65,3.34l1.69,2.33l-1.31,-1.33l-0.99,-1.62l-1.17,-0.98l-0.33,-1.82Z",name:"加拿大"},CG:{path:"M466.72,276.48l-0.1,1.03l-1.25,2.97l-0.19,3.62l-0.46,1.78l-0.23,0.63l-1.61,1.19l-1.21,1.39l-1.09,2.43l0.04,2.09l-3.25,3.24l-0.5,-0.24l-0.5,-0.83l-1.36,-0.02l-0.98,0.89l-1.68,-0.99l-1.54,1.24l-1.52,-1.96l1.57,-1.14l0.11,-0.52l-0.77,-1.35l2.1,-0.66l0.39,-0.73l1.05,0.82l2.21,0.11l1.12,-1.37l0.37,-1.81l-0.27,-2.09l-1.13,-1.5l1.0,-2.69l-0.13,-0.45l-0.92,-0.58l-1.6,0.17l-0.51,-0.94l0.1,-0.61l2.75,0.09l3.97,1.24l0.51,-0.33l0.17,-1.28l1.24,-2.21l1.28,-1.14l2.76,0.49Z",name:"刚果"},CF:{path:"M461.16,278.2l-0.26,-1.19l-1.09,-0.77l-0.84,-1.17l-0.29,-1.0l-1.04,-1.15l0.08,-3.43l0.58,-0.49l1.16,-2.35l1.85,-0.17l0.61,-0.62l0.97,0.58l3.15,-0.96l2.48,-1.92l0.02,-0.96l2.81,0.02l2.36,-1.17l1.93,-2.85l1.16,-0.93l1.11,-0.3l0.27,0.86l1.34,1.47l-0.39,2.01l0.3,1.01l4.01,2.75l0.17,0.93l2.63,2.31l0.6,1.44l2.08,1.4l-3.84,-0.21l-1.94,0.88l-1.23,-0.49l-2.67,1.2l-1.29,-0.18l-0.51,0.36l-0.6,1.22l-3.35,-0.65l-1.57,-0.91l-2.42,-0.83l-1.45,0.91l-0.97,1.27l-0.26,1.56l-3.22,-0.43l-1.49,1.33l-0.94,1.62Z",name:"中非"},CD:{path:"M487.01,272.38l2.34,-0.14l1.35,1.84l1.34,0.45l0.86,-0.39l1.21,0.12l1.07,-0.41l0.54,0.89l2.04,1.54l-0.14,2.72l0.7,0.54l-1.38,1.13l-1.53,2.54l-0.17,2.05l-0.59,1.08l-0.02,1.72l-0.72,0.84l-0.66,3.01l0.63,1.32l-0.44,4.26l0.64,1.47l-0.37,1.22l0.86,1.8l1.53,1.41l0.3,1.26l0.44,0.5l-4.08,0.75l-0.92,1.81l0.51,1.34l-0.74,5.43l0.17,0.38l2.45,1.46l0.54,-0.1l0.12,1.62l-1.28,-0.01l-1.85,-2.35l-1.94,-0.45l-0.48,-1.13l-0.55,-0.2l-1.41,0.74l-1.71,-0.3l-1.01,-1.18l-2.49,-0.19l-0.44,-0.77l-1.98,-0.21l-2.88,0.36l0.11,-2.41l-0.85,-1.13l-0.16,-1.36l0.32,-1.73l-0.46,-0.89l-0.04,-1.49l-0.4,-0.39l-2.53,0.02l0.1,-0.41l-0.39,-0.49l-1.28,0.01l-0.43,0.45l-1.62,0.32l-0.83,1.79l-1.09,-0.28l-2.4,0.52l-1.37,-1.91l-1.3,-3.3l-0.38,-0.27l-7.39,-0.03l-2.46,0.42l0.5,-0.45l0.37,-1.47l0.66,-0.38l0.92,0.08l0.73,-0.82l0.87,0.02l0.31,0.68l1.4,0.36l3.59,-3.63l0.01,-2.23l1.02,-2.29l2.69,-2.39l0.43,-0.99l0.49,-1.96l0.17,-3.51l1.25,-2.95l0.36,-3.14l0.86,-1.13l1.1,-0.66l3.57,1.73l3.65,0.73l0.46,-0.21l0.8,-1.46l1.24,0.19l2.61,-1.17l0.81,0.44l1.04,-0.03l0.59,-0.66l0.7,-0.16l1.81,0.25Z",name:"刚果民主共和国"},CZ:{path:"M458.46,144.88l1.22,1.01l1.47,0.23l0.13,0.93l1.36,0.68l0.54,-0.2l0.24,-0.55l1.15,0.25l0.53,1.09l1.68,0.18l0.6,0.84l-1.04,0.73l-0.96,1.28l-1.6,0.17l-0.55,0.56l-1.04,-0.46l-1.05,0.15l-2.12,-0.96l-1.05,0.34l-1.2,1.12l-1.56,-0.87l-2.57,-2.1l-0.53,-1.88l4.7,-2.52l0.71,0.26l0.9,-0.28Z",name:"捷克共和国"},CY:{path:"M504.36,193.47l0.43,0.28l-1.28,0.57l-0.92,-0.28l-0.24,-0.46l2.01,-0.13Z",name:"塞浦路斯"},CR:{path:"M211.34,258.05l0.48,0.99l1.6,1.6l-0.54,0.45l0.29,1.42l-0.25,1.19l-1.09,-0.59l-0.05,-1.25l-2.46,-1.42l-0.28,-0.77l-0.66,-0.45l-0.45,-0.0l-0.11,1.04l-1.32,-0.95l0.31,-1.3l-0.36,-0.6l0.31,-0.27l1.42,0.58l1.29,-0.14l0.56,0.56l0.74,0.17l0.55,-0.27Z",name:"哥斯达黎加"},CU:{path:"M221.21,227.25l1.27,1.02l2.19,-0.28l4.43,3.33l2.08,0.43l-0.1,0.38l0.36,0.5l1.75,0.1l1.48,0.84l-3.11,0.51l-4.15,-0.03l0.77,-0.67l-0.04,-0.64l-1.2,-0.74l-1.49,-0.16l-0.7,-0.61l-0.56,-1.4l-0.4,-0.25l-1.34,0.1l-2.2,-0.66l-0.88,-0.58l-3.18,-0.4l-0.27,-0.16l0.58,-0.74l-0.36,-0.29l-2.72,-0.05l-1.7,1.29l-0.91,0.03l-0.61,0.69l-1.01,0.22l1.11,-1.29l1.01,-0.52l3.69,-1.01l3.98,0.21l2.21,0.84Z",name:"古巴"},SZ:{path:"M500.35,351.36l0.5,2.04l-0.38,0.89l-1.05,0.21l-1.23,-1.2l-0.02,-0.64l0.83,-1.57l1.34,0.27Z",name:"斯威士兰"},SY:{path:"M511.0,199.79l0.05,-1.33l0.54,-1.36l1.28,-0.99l0.13,-0.45l-0.41,-1.11l-1.14,-0.36l-0.19,-1.74l0.52,-1.0l1.29,-1.21l0.2,-1.18l0.59,0.23l2.62,-0.76l1.36,0.52l2.06,-0.01l2.95,-1.08l3.25,-0.26l-0.67,0.94l-1.28,0.66l-0.21,0.4l0.23,2.01l-0.88,3.19l-10.15,5.73l-2.15,-0.85Z",name:"叙利亚"},KG:{path:"M621.35,172.32l-3.87,1.69l-0.96,1.18l-3.04,0.34l-1.13,1.86l-2.36,-0.35l-1.99,0.63l-2.39,1.4l0.06,0.95l-0.4,0.37l-4.52,0.43l-3.02,-0.93l-2.37,0.17l0.11,-0.79l2.32,0.42l1.13,-0.88l1.99,0.2l3.21,-2.14l-0.03,-0.69l-2.97,-1.57l-1.94,0.65l-1.22,-0.74l1.71,-1.58l-0.12,-0.67l-0.36,-0.15l0.32,-0.77l1.36,-0.35l4.02,1.02l0.49,-0.3l0.35,-1.59l1.09,-0.48l3.42,1.22l1.11,-0.31l7.64,0.39l1.16,1.0l1.23,0.39Z",name:"吉尔吉斯斯坦"},KE:{path:"M506.26,284.69l1.87,-2.56l0.93,-2.15l-1.38,-4.08l-1.06,-1.6l2.82,-2.75l0.79,0.26l0.12,1.41l0.86,0.83l1.9,0.11l3.28,2.13l3.57,0.44l1.05,-1.12l1.96,-0.9l0.82,0.68l1.16,0.09l-1.78,2.45l0.03,9.12l1.3,1.94l-1.37,0.78l-0.67,1.03l-1.08,0.46l-0.34,1.67l-0.81,1.07l-0.45,1.55l-0.68,0.56l-3.2,-2.23l-0.35,-1.58l-8.86,-4.98l0.14,-1.6l-0.57,-1.04Z",name:"肯尼亚"},SS:{path:"M481.71,263.34l1.07,-0.72l1.2,-3.18l1.36,-0.26l1.61,1.99l0.87,0.34l1.1,-0.41l1.5,0.07l0.57,0.53l2.49,0.0l0.44,-0.63l1.07,-0.4l0.45,-0.84l0.59,-0.33l1.9,1.33l1.6,-0.2l2.83,-3.33l-0.32,-2.21l1.59,-0.52l-0.24,1.6l0.3,1.83l1.35,1.18l0.2,1.87l0.35,0.41l0.02,1.53l-0.23,0.47l-1.42,0.25l-0.85,1.44l0.3,0.6l1.4,0.16l1.11,1.08l0.59,1.13l1.03,0.53l1.28,2.36l-4.41,3.98l-1.74,0.01l-1.89,0.55l-1.47,-0.52l-1.15,0.57l-2.96,-2.62l-1.3,0.49l-1.06,-0.15l-0.79,0.39l-0.82,-0.22l-1.8,-2.7l-1.91,-1.1l-0.66,-1.5l-2.62,-2.32l-0.18,-0.94l-2.37,-1.6Z",name:"苏丹"},SR:{path:"M283.12,270.19l2.1,0.53l-1.08,1.95l0.2,1.72l0.93,1.49l-0.59,2.03l-0.43,0.71l-1.12,-0.42l-1.32,0.22l-0.93,-0.2l-0.46,0.26l-0.25,0.73l0.33,0.7l-0.89,-0.13l-1.39,-1.97l-0.31,-1.34l-0.97,-0.31l-0.89,-1.47l0.35,-1.61l1.45,-0.82l0.33,-1.87l2.61,0.44l0.57,-0.47l1.75,-0.16Z",name:"苏里南"},KH:{path:"M689.52,249.39l0.49,1.45l-0.28,2.74l-4.0,1.86l-0.16,0.6l0.68,0.95l-2.06,0.17l-2.05,0.97l-1.82,-0.32l-2.12,-3.7l-0.55,-2.85l1.4,-1.85l3.02,-0.45l2.23,0.35l2.01,0.98l0.51,-0.14l0.95,-1.48l1.74,0.74Z",name:"柬埔寨"},SV:{path:"M195.8,250.13l1.4,-1.19l2.24,1.45l0.98,-0.27l0.44,0.2l-0.27,1.05l-1.14,-0.03l-3.64,-1.21Z",name:"萨尔瓦多"},SK:{path:"M476.82,151.17l-1.14,1.9l-2.73,-0.92l-0.82,0.2l-0.74,0.8l-3.46,0.73l-0.47,0.69l-1.76,0.33l-1.88,-1.0l-0.18,-0.81l0.38,-0.75l1.87,-0.32l1.74,-1.89l0.83,0.16l0.79,-0.34l1.51,1.04l1.34,-0.63l1.25,0.3l1.65,-0.42l1.81,0.95Z",name:"斯洛伐克"},KR:{path:"M737.51,185.84l0.98,-0.1l0.87,-1.17l2.69,-0.32l0.33,-0.29l1.76,2.79l0.58,1.76l0.02,3.12l-0.8,1.32l-2.21,0.55l-1.93,1.13l-1.8,0.19l-0.2,-1.1l0.43,-2.28l-0.95,-2.56l1.43,-0.37l0.23,-0.62l-1.43,-2.06Z",name:"韩国"},SI:{path:"M456.18,162.07l-0.51,-1.32l0.18,-1.05l1.69,0.2l1.42,-0.71l2.09,-0.07l0.62,-0.51l0.21,0.47l-1.61,0.67l-0.44,1.34l-0.66,0.24l-0.26,0.82l-1.22,-0.49l-0.84,0.46l-0.69,-0.04Z",name:"斯洛文尼亚"},KP:{path:"M736.77,185.16l-0.92,-0.42l-0.88,0.62l-1.21,-0.88l0.96,-1.15l0.59,-2.59l-0.46,-0.74l-2.09,-0.77l1.64,-1.52l2.72,-1.58l1.58,-1.91l1.11,0.78l2.17,0.11l0.41,-0.5l-0.3,-1.22l3.52,-1.18l0.94,-1.4l0.98,1.08l-2.19,2.18l0.01,2.14l-1.06,0.54l-1.41,1.4l-1.7,0.52l-1.25,1.09l-0.14,1.98l0.94,0.45l1.15,1.04l-0.13,0.26l-2.6,0.29l-1.13,1.29l-1.22,0.08Z",name:"朝鲜"},KW:{path:"M540.81,207.91l0.37,0.86l-0.17,0.76l0.6,1.53l-0.95,0.04l-0.82,-1.28l-1.57,-0.18l1.31,-1.88l1.22,0.17Z",name:"科威特"},SN:{path:"M390.09,248.21l0.12,1.55l0.49,1.46l0.96,0.82l0.05,1.28l-1.26,-0.19l-0.75,0.33l-1.84,-0.61l-5.84,-0.13l-2.54,0.51l-0.22,-1.03l1.77,0.04l2.01,-0.91l1.03,0.48l1.09,0.04l1.29,-0.62l0.14,-0.58l-0.51,-0.74l-1.81,0.25l-1.13,-0.63l-0.79,0.04l-0.72,0.61l-2.31,0.06l-0.92,-1.77l-0.81,-0.64l0.64,-0.35l2.46,-3.74l1.04,0.19l1.38,-0.56l1.19,-0.02l2.72,1.37l3.03,3.48Z",name:"塞内加尔"},SL:{path:"M394.46,264.11l-1.73,1.98l-0.58,1.33l-2.07,-1.06l-1.22,-1.26l-0.65,-2.39l1.16,-0.96l0.67,-1.17l1.21,-0.52l1.66,0.0l1.03,1.64l0.52,2.41Z",name:"塞拉利昂"},KZ:{path:"M552.8,172.89l0.46,-1.27l-0.48,-1.05l-2.96,-1.19l-1.06,-2.58l-1.37,-0.87l-0.03,-0.3l1.95,0.23l0.45,-0.38l0.08,-1.96l1.75,-0.41l2.1,0.45l0.48,-0.33l0.45,-3.04l-0.45,-2.09l-0.41,-0.31l-2.42,0.15l-2.36,-0.73l-2.87,1.37l-2.17,0.61l-0.85,-0.34l0.13,-1.61l-1.6,-2.12l-2.02,-0.08l-1.78,-1.82l1.29,-2.18l-0.57,-0.95l1.62,-2.91l2.21,1.63l0.63,-0.27l0.29,-2.22l4.92,-3.43l3.71,-0.08l8.4,3.6l2.92,-1.36l3.77,-0.06l3.11,1.66l0.51,-0.11l0.6,-0.81l3.31,0.13l0.39,-0.25l0.63,-1.57l-0.17,-0.5l-3.5,-1.98l1.87,-1.27l-0.13,-1.03l1.98,-0.72l0.18,-0.62l-1.59,-2.06l0.81,-0.82l9.23,-1.18l1.33,-0.88l6.18,-1.26l2.26,-1.42l4.08,0.68l0.73,3.33l0.51,0.3l2.48,-0.8l2.79,1.02l-0.17,1.56l0.43,0.44l2.55,-0.24l4.89,-2.53l0.03,0.32l3.15,2.61l5.56,8.47l0.65,0.02l1.12,-1.46l3.15,1.74l3.76,-0.78l1.15,0.49l1.14,1.8l1.84,0.76l0.99,1.29l3.35,-0.25l1.02,1.52l-1.6,1.81l-1.93,0.28l-0.34,0.38l-0.11,3.05l-1.13,1.16l-4.75,-1.0l-0.46,0.27l-1.76,5.47l-1.1,0.59l-4.91,1.23l-0.27,0.54l2.1,4.97l-1.37,0.63l-0.23,0.41l0.13,1.13l-0.88,-0.25l-1.42,-1.13l-7.89,-0.4l-0.92,0.31l-3.73,-1.22l-1.42,0.63l-0.53,1.66l-3.72,-0.94l-1.85,0.43l-0.76,1.4l-4.65,2.62l-1.13,2.08l-0.44,0.01l-0.92,-1.4l-2.87,-0.09l-0.45,-2.14l-0.38,-0.32l-0.8,-0.01l0.0,-2.96l-3.0,-2.22l-7.31,0.58l-2.35,-2.68l-6.71,-3.69l-6.45,1.83l-0.29,0.39l0.1,10.85l-0.7,0.08l-1.62,-2.17l-1.83,-0.96l-3.11,0.59l-0.64,0.51Z",name:"哈萨克斯坦"},SA:{path:"M537.53,210.34l2.0,0.24l0.9,1.32l1.49,-0.06l0.87,2.08l1.29,0.76l0.51,0.99l1.56,1.03l-0.1,1.9l0.32,0.9l1.58,2.47l0.76,0.53l0.7,-0.04l1.68,4.23l7.53,1.33l0.51,-0.29l0.77,1.25l-1.55,4.87l-7.29,2.52l-7.3,1.03l-2.34,1.17l-1.88,2.74l-0.76,0.28l-0.82,-0.78l-0.91,0.12l-2.88,-0.51l-3.51,0.25l-0.86,-0.56l-0.57,0.15l-0.66,1.27l0.16,1.11l-0.43,0.32l-0.93,-1.4l-0.33,-1.16l-1.23,-0.88l-1.27,-2.06l-0.78,-2.22l-1.73,-1.79l-1.14,-0.48l-1.54,-2.31l-0.21,-3.41l-1.44,-2.93l-1.27,-1.16l-1.33,-0.57l-1.31,-3.37l-0.77,-0.67l-0.97,-1.97l-2.8,-4.03l-1.06,-0.17l0.37,-1.96l0.2,-0.72l2.74,0.3l1.08,-0.84l0.6,-0.94l1.74,-0.35l0.65,-1.03l0.71,-0.4l0.1,-0.62l-2.06,-2.28l4.39,-1.22l0.48,-0.37l2.77,0.69l3.66,1.9l7.03,5.5l4.87,0.3Z",name:"沙特阿拉伯"},SE:{path:"M480.22,89.3l-4.03,1.17l-2.43,2.86l0.26,2.57l-8.77,6.64l-1.78,5.79l1.78,2.68l2.22,1.96l-2.07,3.77l-2.72,1.13l-0.95,6.04l-1.29,3.01l-2.74,-0.31l-0.4,0.22l-1.31,2.59l-2.34,0.13l-0.75,-3.09l-2.08,-4.03l-1.83,-4.96l1.0,-1.93l2.14,-2.7l0.83,-4.45l-1.6,-2.17l-0.15,-4.94l1.48,-3.39l2.58,-0.15l0.87,-1.59l-0.78,-1.57l3.76,-5.59l4.04,-7.48l2.17,0.01l0.39,-0.29l0.57,-2.07l4.37,0.64l0.46,-0.34l0.33,-2.56l1.1,-0.13l6.94,4.87l0.06,6.32l0.66,1.36Z",name:"瑞典"},SD:{path:"M505.98,259.4l-0.34,-0.77l-1.17,-0.9l-0.26,-1.61l0.29,-1.81l-0.34,-0.46l-1.16,-0.17l-0.54,0.59l-1.23,0.11l-0.28,0.65l0.53,0.65l0.17,1.22l-2.44,3.0l-0.96,0.19l-2.39,-1.4l-0.95,0.52l-0.38,0.78l-1.11,0.41l-0.29,0.5l-1.94,0.0l-0.54,-0.52l-1.81,-0.09l-0.95,0.4l-2.45,-2.35l-2.07,0.54l-0.73,1.26l-0.6,2.1l-1.25,0.58l-0.75,-0.62l0.27,-2.65l-1.48,-1.78l-0.22,-1.48l-0.92,-0.96l-0.02,-1.29l-0.57,-1.16l-0.68,-0.16l0.69,-1.29l-0.18,-1.14l0.65,-0.62l0.03,-0.55l-0.36,-0.41l1.55,-2.97l1.91,0.16l0.43,-0.4l-0.1,-10.94l2.49,-0.01l0.4,-0.4l-0.0,-4.82l29.02,0.0l0.64,2.04l-0.49,0.66l0.36,2.69l0.93,3.16l2.12,1.55l-0.89,1.04l-1.72,0.39l-0.98,0.9l-1.43,5.65l0.24,1.15l-0.38,2.06l-0.96,2.38l-1.53,1.31l-1.32,2.91l-1.22,0.86l-0.37,1.34Z",name:"苏丹"},DO:{path:"M241.8,239.2l0.05,-0.65l-0.46,-0.73l0.42,-0.44l0.19,-1.0l-0.09,-1.53l1.66,0.01l1.99,0.63l0.33,0.67l1.28,0.19l0.33,0.76l1.0,0.08l0.8,0.62l-0.45,0.51l-1.13,-0.47l-1.88,-0.01l-1.27,0.59l-0.75,-0.55l-1.01,0.54l-0.79,1.4l-0.23,-0.61Z",name:"多米尼加"},DJ:{path:"M528.43,256.18l-0.45,0.66l-0.58,-0.25l-1.51,0.13l-0.18,-1.01l1.45,-1.95l0.83,0.17l0.77,-0.44l0.2,1.0l-1.2,0.51l-0.06,0.7l0.73,0.47Z",name:"吉布提"},DK:{path:"M452.28,129.07l-1.19,2.24l-2.13,-1.6l-0.23,-0.95l2.98,-0.95l0.57,1.26ZM447.74,126.31l-0.26,0.57l-0.88,-0.07l-1.8,2.53l0.48,1.69l-1.09,0.36l-1.61,-0.39l-0.89,-1.69l-0.07,-3.43l0.96,-1.73l2.02,-0.2l1.09,-1.07l1.33,-0.67l-0.05,1.06l-0.73,1.41l0.3,1.0l1.2,0.64Z",name:"丹麦"},DE:{path:"M453.14,155.55l-0.55,-0.36l-1.2,-0.1l-1.87,0.57l-2.13,-0.13l-0.56,0.63l-0.86,-0.6l-0.96,0.09l-2.57,-0.93l-0.85,0.67l-1.47,-0.02l0.24,-1.75l1.23,-2.14l-0.28,-0.59l-3.52,-0.58l-0.92,-0.66l0.12,-1.2l-0.48,-0.88l0.27,-2.17l-0.37,-3.03l1.41,-0.22l0.63,-1.26l0.66,-3.19l-0.41,-1.18l0.26,-0.39l1.66,-0.15l0.33,0.54l0.62,0.07l1.7,-1.69l-0.54,-3.02l1.37,0.33l1.31,-0.37l0.31,1.18l2.25,0.71l-0.02,0.92l0.5,0.4l2.55,-0.65l1.34,-0.87l2.57,1.24l1.06,0.98l0.48,1.44l-0.57,0.74l-0.0,0.48l0.87,1.15l0.57,1.64l-0.14,1.29l0.82,1.7l-1.5,-0.07l-0.56,0.57l-4.47,2.15l-0.22,0.54l0.68,2.26l2.58,2.16l-0.66,1.11l-0.79,0.36l-0.23,0.43l0.32,1.87Z",name:"德国"},YE:{path:"M528.27,246.72l0.26,-0.42l-0.22,-1.01l0.19,-1.5l0.92,-0.69l-0.07,-1.35l0.39,-0.75l1.01,0.47l3.34,-0.27l3.76,0.41l0.95,0.81l1.36,-0.58l1.74,-2.62l2.18,-1.09l6.86,-0.94l2.48,5.41l-1.64,0.76l-0.56,1.9l-6.23,2.16l-2.29,1.8l-1.93,0.05l-1.41,1.02l-4.24,0.74l-1.72,1.49l-3.28,0.19l-0.52,-1.18l0.02,-1.51l-1.34,-3.29Z",name:"也门"},DZ:{path:"M441.46,188.44l-0.32,1.07l0.39,2.64l-0.54,2.16l-1.58,1.82l0.37,2.39l1.91,1.55l0.18,0.8l1.42,1.03l1.84,7.23l0.12,1.16l-0.57,5.0l0.2,1.51l-0.87,0.99l-0.02,0.51l1.41,1.86l0.14,1.2l0.89,1.48l0.5,0.16l0.98,-0.41l1.73,1.08l0.82,1.23l-8.22,4.81l-7.23,5.11l-3.43,1.13l-2.3,0.21l-0.28,-1.59l-2.56,-1.09l-0.67,-1.25l-26.12,-17.86l0.01,-3.47l3.77,-1.88l2.44,-0.41l2.12,-0.75l1.08,-1.42l2.81,-1.05l0.35,-2.08l1.33,-0.29l1.04,-0.94l3.47,-0.69l0.46,-1.08l-0.1,-0.45l-0.58,-0.52l-0.82,-2.81l-0.19,-1.83l-0.78,-1.49l2.03,-1.31l2.63,-0.48l1.7,-1.22l2.31,-0.84l8.24,-0.73l1.49,0.38l2.28,-1.1l2.46,-0.02l0.92,0.6l1.35,-0.05Z",name:"阿尔及利亚"},US:{path:"M892.72,99.2l1.31,0.53l1.41,-0.37l1.89,0.98l1.89,0.42l-1.32,0.58l-2.9,-1.53l-2.08,0.22l-0.26,-0.15l0.07,-0.67ZM183.22,150.47l0.37,1.47l1.12,0.85l4.23,0.7l2.39,0.98l2.17,-0.38l1.85,0.5l-1.55,0.65l-3.49,2.61l-0.16,0.77l0.5,0.39l2.33,-0.61l1.77,1.02l5.15,-2.4l-0.31,0.65l0.25,0.56l1.36,0.38l1.71,1.16l4.7,-0.88l0.67,0.85l1.31,0.21l0.58,0.58l-1.34,0.17l-2.18,-0.32l-3.6,0.89l-2.71,3.25l0.35,0.9l0.59,-0.0l0.55,-0.6l-1.36,4.65l0.29,3.09l0.67,1.58l0.61,0.45l1.77,-0.44l1.6,-1.96l0.14,-2.21l-0.82,-1.96l0.11,-1.13l1.19,-2.37l0.44,-0.33l0.48,0.75l0.4,-0.29l0.4,-1.37l0.6,-0.47l0.24,-0.8l1.69,0.49l1.65,1.08l-0.03,2.37l-1.27,1.13l-0.0,1.13l0.87,0.36l1.66,-1.29l0.5,0.17l0.5,2.6l-2.49,3.75l0.17,0.61l1.54,0.62l1.48,0.17l1.92,-0.44l4.72,-2.15l2.16,-1.8l-0.05,-1.24l0.75,-0.22l3.92,0.36l2.12,-1.05l0.21,-0.4l-0.28,-1.48l3.27,-2.4l8.32,-0.02l0.56,-0.82l1.9,-0.77l0.93,-1.51l0.74,-2.37l1.58,-1.98l0.92,0.62l1.47,-0.47l0.8,0.66l-0.0,4.09l1.96,2.6l-2.34,1.31l-5.37,2.09l-1.83,2.72l0.02,1.79l0.83,1.59l0.54,0.23l-6.19,0.94l-2.2,0.89l-0.23,0.48l0.45,0.29l2.99,-0.46l-2.19,0.56l-1.13,0.0l-0.15,-0.32l-0.48,0.08l-0.76,0.82l0.22,0.67l0.32,0.06l-0.41,1.62l-1.27,1.58l-1.48,-1.07l-0.49,-0.04l-0.16,0.46l0.52,1.58l0.61,0.59l0.03,0.79l-0.95,1.38l-1.21,-1.22l-0.27,-2.27l-0.35,-0.35l-0.42,0.25l-0.48,1.27l0.33,1.41l-0.97,-0.27l-0.48,0.24l0.18,0.5l1.52,0.83l0.1,2.52l0.79,0.51l0.52,3.42l-1.42,1.88l-2.47,0.8l-1.71,1.66l-1.31,0.25l-1.27,1.03l-0.43,0.99l-2.69,1.78l-2.64,3.03l-0.45,2.12l0.45,2.08l0.85,2.38l1.09,1.9l0.04,1.2l1.16,3.06l-0.18,2.69l-0.55,1.43l-0.47,0.21l-0.89,-0.23l-0.49,-1.18l-0.87,-0.56l-2.75,-5.16l0.48,-1.68l-0.72,-1.78l-2.01,-2.38l-1.12,-0.53l-2.72,1.18l-1.47,-1.35l-1.57,-0.68l-2.99,0.31l-2.17,-0.3l-2.0,0.19l-1.15,0.46l-0.19,0.58l0.39,0.63l0.14,1.34l-0.84,-0.2l-0.84,0.46l-1.58,-0.07l-2.08,-1.44l-2.09,0.33l-1.91,-0.62l-3.73,0.84l-2.39,2.07l-2.54,1.22l-1.45,1.41l-0.61,1.38l0.34,3.71l-0.29,0.02l-3.5,-1.33l-1.25,-3.11l-1.44,-1.5l-2.24,-3.56l-1.76,-1.09l-2.27,-0.01l-1.71,2.07l-1.76,-0.69l-1.16,-0.74l-1.52,-2.98l-3.93,-3.16l-4.34,-0.0l-0.4,0.4l-0.0,0.74l-6.5,0.02l-9.02,-3.14l-0.34,-0.71l-5.7,0.49l-0.43,-1.29l-1.62,-1.61l-1.14,-0.38l-0.55,-0.88l-1.28,-0.13l-1.01,-0.77l-2.22,-0.27l-0.43,-0.3l-0.36,-1.58l-2.4,-2.83l-2.01,-3.85l-0.06,-0.9l-2.92,-3.26l-0.33,-2.29l-1.3,-1.66l0.52,-2.37l-0.09,-2.57l-0.78,-2.3l0.95,-2.82l0.61,-5.68l-0.47,-4.27l-1.46,-4.08l3.19,0.79l1.26,2.83l0.69,0.08l0.69,-1.14l-1.1,-4.79l68.76,-0.0l0.4,-0.4l0.14,-0.86ZM32.44,67.52l1.73,1.97l0.55,0.05l0.99,-0.79l3.65,0.24l-0.09,0.62l0.32,0.45l3.83,0.77l2.61,-0.43l5.19,1.4l4.84,0.43l1.89,0.57l3.42,-0.7l6.14,1.87l-0.03,38.06l0.38,0.4l2.39,0.11l2.31,0.98l3.9,3.99l0.55,0.04l2.4,-2.03l2.16,-1.04l1.2,1.71l3.95,3.14l4.09,6.63l4.2,2.29l0.06,1.83l-1.02,1.23l-1.16,-1.08l-2.04,-1.03l-0.67,-2.89l-3.28,-3.03l-1.65,-3.57l-6.35,-0.32l-2.82,-1.01l-5.26,-3.85l-6.77,-2.04l-3.53,0.3l-4.81,-1.69l-3.25,-1.63l-2.78,0.8l-0.28,0.46l0.44,2.21l-3.91,0.96l-2.26,1.27l-2.3,0.65l-0.27,-1.65l1.05,-3.42l2.49,-1.09l0.16,-0.6l-0.69,-0.96l-0.55,-0.1l-3.19,2.12l-1.78,2.56l-3.55,2.61l-0.04,0.61l1.56,1.52l-2.07,2.29l-5.11,2.57l-0.77,1.66l-3.76,1.77l-0.92,1.73l-2.69,1.38l-1.81,-0.22l-6.95,3.32l-3.97,0.91l4.85,-2.5l2.59,-1.86l3.26,-0.52l1.19,-1.4l3.42,-2.1l2.59,-2.27l0.42,-2.68l1.23,-2.1l-0.04,-0.46l-0.45,-0.11l-2.68,1.03l-0.63,-0.49l-0.53,0.03l-1.05,1.04l-1.36,-1.54l-0.66,0.08l-0.32,0.62l-0.58,-1.14l-0.56,-0.16l-2.41,1.42l-1.07,-0.0l-0.17,-1.75l0.3,-1.71l-1.61,-1.33l-3.41,0.59l-1.96,-1.63l-1.57,-0.84l-0.15,-2.21l-1.7,-1.43l0.82,-1.88l1.99,-2.12l0.88,-1.92l1.71,-0.24l2.04,0.51l1.87,-1.77l1.91,0.25l1.91,-1.23l0.17,-0.43l-0.47,-1.82l-1.07,-0.7l1.39,-1.17l0.12,-0.45l-0.39,-0.26l-1.65,0.07l-2.66,0.88l-0.75,0.78l-1.92,-0.8l-3.46,0.44l-3.44,-0.91l-1.06,-1.61l-2.65,-1.99l2.91,-1.43l5.5,-2.0l1.52,0.0l-0.26,1.62l0.41,0.46l5.29,-0.16l0.3,-0.65l-2.03,-2.59l-3.14,-1.68l-1.79,-2.12l-2.4,-1.83l-3.09,-1.24l1.04,-1.69l4.23,-0.14l3.36,-2.07l0.73,-2.27l2.39,-1.99l2.42,-0.52l4.65,-1.97l2.46,0.23l3.71,-2.35l3.5,0.89ZM37.6,123.41l-2.25,1.23l-0.95,-0.69l-0.29,-1.24l3.21,-1.63l1.42,0.21l0.67,0.7l-1.8,1.42ZM31.06,234.03l0.98,0.47l0.74,0.87l-1.77,1.07l-0.44,-1.53l0.49,-0.89ZM29.34,232.07l0.18,0.05l0.08,0.05l-0.16,0.03l-0.11,-0.14ZM25.16,230.17l0.05,-0.03l0.18,0.22l-0.13,-0.01l-0.1,-0.18ZM5.89,113.26l-1.08,0.41l-2.21,-1.12l1.53,-0.4l1.62,0.28l0.14,0.83Z",name:"美国"},UY:{path:"M286.85,372.74l-0.92,1.5l-2.59,1.44l-1.69,-0.52l-1.42,0.26l-2.39,-1.19l-1.52,0.08l-1.27,-1.3l0.16,-1.5l0.56,-0.79l-0.02,-2.73l1.21,-4.74l1.19,-0.21l2.37,2.0l1.08,0.03l4.36,3.17l1.22,1.6l-0.96,1.5l0.61,1.4Z",name:"乌拉圭"},LB:{path:"M510.37,198.01l-0.88,0.51l1.82,-3.54l0.62,0.08l0.22,0.61l-1.13,0.88l-0.65,1.47Z",name:"黎巴嫩"},LA:{path:"M689.54,248.53l-1.76,-0.74l-0.49,0.15l-0.94,1.46l-1.32,-0.64l0.62,-0.98l0.11,-2.17l-2.04,-2.42l-0.25,-2.65l-1.9,-2.1l-2.15,-0.31l-0.78,0.91l-1.12,0.06l-1.05,-0.4l-2.06,1.2l-0.04,-1.59l0.61,-2.68l-0.36,-0.49l-1.35,-0.1l-0.11,-1.23l-0.96,-0.88l1.96,-1.89l0.39,0.36l1.33,0.07l0.42,-0.45l-0.34,-2.66l0.7,-0.21l1.28,1.81l1.11,2.35l0.36,0.23l2.82,0.02l0.71,1.67l-1.39,0.65l-0.72,0.93l0.13,0.6l2.91,1.51l3.6,5.25l1.88,1.78l0.56,1.62l-0.35,1.96Z",name:"老挝"},TW:{path:"M724.01,226.68l-0.74,1.48l-0.9,-1.52l-0.25,-1.74l1.38,-2.44l1.73,-1.74l0.64,0.44l-1.85,5.52Z",name:"(中国)台湾"},TT:{path:"M266.64,259.32l0.28,-1.16l1.13,-0.22l-0.06,1.2l-1.35,0.18Z",name:"特立尼达和多巴哥"},TR:{path:"M513.21,175.47l3.64,1.17l3.05,-0.44l2.1,0.26l3.11,-1.56l2.46,-0.13l2.19,1.33l0.33,0.82l-0.22,1.33l0.25,0.44l2.28,1.13l-1.17,0.57l-0.21,0.45l0.75,3.2l-0.41,1.16l1.13,1.92l-0.55,0.22l-0.9,-0.67l-2.91,-0.37l-1.24,0.46l-4.23,0.41l-2.81,1.05l-1.91,0.01l-1.52,-0.53l-2.58,0.75l-0.66,-0.45l-0.62,0.3l-0.12,1.45l-0.89,0.84l-0.47,-0.67l0.79,-1.3l-0.41,-0.2l-1.43,0.23l-2.0,-0.63l-2.02,1.65l-3.51,0.3l-2.13,-1.53l-2.7,-0.1l-0.86,1.24l-1.38,0.27l-2.29,-1.44l-2.71,-0.01l-1.37,-2.65l-1.68,-1.52l1.07,-1.99l-0.09,-0.49l-1.27,-1.12l2.37,-2.41l3.7,-0.11l1.28,-2.24l4.49,0.37l3.21,-1.97l2.81,-0.82l3.99,-0.06l4.29,2.07ZM488.79,176.72l-1.72,1.31l-0.5,-0.88l1.37,-2.57l-0.7,-0.85l1.7,-0.63l1.8,0.34l0.46,1.17l1.76,0.78l-2.87,0.32l-1.3,1.01Z",name:"土耳其"},LK:{path:"M624.16,268.99l-1.82,0.48l-0.99,-1.67l-0.42,-3.46l0.95,-3.43l1.21,0.98l2.26,4.19l-0.34,2.33l-0.85,0.58Z",name:"斯里兰卡"},LV:{path:"M489.16,122.85l0.96,0.66l0.22,1.65l0.68,1.76l-3.65,1.7l-2.23,-1.58l-1.29,-0.26l-0.68,-0.77l-2.42,0.34l-4.16,-0.23l-2.47,0.9l0.06,-1.98l1.13,-2.06l1.95,-1.02l2.12,2.58l2.01,-0.07l0.38,-0.33l0.44,-2.52l1.76,-0.53l3.06,1.7l2.15,0.07Z",name:"拉脱维亚"},LT:{path:"M486.93,129.3l0.17,1.12l-1.81,0.98l-0.72,2.02l-2.47,1.18l-2.1,-0.02l-0.73,-1.05l-1.06,-0.3l-0.09,-1.87l-3.56,-1.13l-0.43,-2.36l2.48,-0.94l4.12,0.22l2.25,-0.31l0.52,0.69l1.24,0.21l2.19,1.56Z",name:"立陶宛"},LU:{path:"M436.08,149.45l-0.48,-0.07l0.3,-1.28l0.27,0.4l-0.09,0.96Z",name:"卢森堡"},LR:{path:"M399.36,265.97l0.18,1.54l-0.48,0.99l0.08,0.47l2.47,1.8l-0.33,2.8l-2.65,-1.13l-5.78,-4.61l0.58,-1.32l2.1,-2.33l0.86,-0.22l0.77,1.14l-0.14,0.85l0.59,0.87l1.0,0.14l0.76,-0.99Z",name:"利比里亚"},LS:{path:"M491.06,363.48l-0.49,0.15l-1.49,-1.67l1.1,-1.43l2.19,-1.44l1.51,1.27l-0.98,1.82l-1.23,0.38l-0.62,0.93Z",name:"莱索托"},TH:{path:"M670.27,255.86l-1.41,3.87l0.15,2.0l0.38,0.36l1.38,0.07l0.9,2.04l0.55,2.34l1.4,1.44l1.61,0.38l0.96,0.97l-0.5,0.64l-1.1,0.2l-0.34,-1.18l-2.04,-1.1l-0.63,0.23l-0.63,-0.62l-0.48,-1.3l-2.56,-2.63l-0.73,0.41l0.95,-3.89l2.16,-4.22ZM670.67,254.77l-0.92,-2.18l-0.26,-2.61l-2.14,-3.06l0.71,-0.49l0.89,-2.59l-3.61,-5.45l0.87,-0.51l1.05,-2.58l1.74,-0.18l2.6,-1.59l0.76,0.56l0.13,1.39l0.37,0.36l1.23,0.09l-0.51,2.28l0.05,2.42l0.6,0.34l2.43,-1.42l0.77,0.39l1.47,-0.07l0.71,-0.88l1.48,0.14l1.71,1.88l0.25,2.65l1.92,2.11l-0.1,1.89l-0.61,0.86l-2.22,-0.33l-3.5,0.64l-1.6,2.12l0.36,2.58l-1.51,-0.79l-1.84,-0.01l0.28,-1.52l-0.4,-0.47l-2.21,0.01l-0.4,0.37l-0.19,2.74l-0.34,0.93Z",name:"泰国"},TF:{path:"M596.68,420.38l-3.2,0.18l-0.05,-1.26l0.39,-1.41l1.3,0.78l2.08,0.35l-0.52,1.36Z",name:"法属南部领地"},TG:{path:"M422.7,257.63l-0.09,1.23l1.53,1.52l0.08,1.09l0.5,0.65l-0.11,5.62l0.49,1.47l-1.31,0.35l-1.02,-2.13l-0.18,-1.12l0.53,-2.19l-0.63,-1.16l-0.22,-3.68l-1.01,-1.4l0.07,-0.28l1.37,0.03Z",name:"多哥"},TD:{path:"M480.25,235.49l0.12,9.57l-2.1,0.05l-1.14,1.89l-0.69,1.63l0.34,0.73l-0.66,0.91l0.24,0.89l-0.86,1.95l0.45,0.5l0.6,-0.1l0.34,0.64l0.03,1.38l0.9,1.04l-1.45,0.43l-1.27,1.03l-1.83,2.76l-2.16,1.07l-2.31,-0.15l-0.86,0.25l-0.26,0.49l0.17,0.61l-2.11,1.68l-2.85,0.87l-1.09,-0.57l-0.73,0.66l-1.12,0.1l-1.1,-3.12l-1.25,-0.64l-1.22,-1.22l0.29,-0.64l3.01,0.04l0.35,-0.6l-1.3,-2.2l-0.08,-3.31l-0.97,-1.66l0.22,-1.04l-0.38,-0.48l-1.22,-0.04l0.0,-1.25l-0.98,-1.07l0.96,-3.01l3.25,-2.65l0.13,-3.33l0.95,-5.18l0.52,-1.07l-0.1,-0.48l-0.91,-0.78l-0.2,-0.96l-0.8,-0.58l-0.55,-3.65l2.1,-1.2l19.57,9.83Z",name:"乍得"},LY:{path:"M483.48,203.15l-0.75,1.1l0.29,1.39l-0.6,1.83l0.73,2.14l0.0,24.12l-2.48,0.01l-0.41,0.85l-19.41,-9.76l-4.41,2.28l-1.37,-1.33l-3.82,-1.1l-1.14,-1.65l-1.98,-1.23l-1.22,0.32l-0.66,-1.11l-0.17,-1.26l-1.28,-1.69l0.87,-1.19l-0.07,-4.34l0.43,-2.27l-0.86,-3.45l1.13,-0.76l0.22,-1.16l-0.2,-1.03l3.48,-2.61l0.29,-1.94l2.45,0.8l1.18,-0.21l1.98,0.44l3.15,1.18l1.37,2.54l5.72,1.67l2.64,1.35l1.61,-0.72l1.29,-1.34l-0.44,-2.34l0.66,-1.13l1.67,-1.21l1.57,-0.35l3.14,0.53l1.08,1.28l3.99,0.78l0.36,0.54Z",name:"利比亚"},AE:{path:"M550.76,223.97l1.88,-0.4l3.84,0.02l4.78,-4.75l0.19,0.36l0.26,1.58l-0.81,0.01l-0.39,0.35l-0.08,2.04l-0.81,0.63l-0.01,0.96l-0.66,0.99l-0.39,1.41l-7.08,-1.25l-0.7,-1.96Z",name:"阿联酋"},VE:{path:"M240.68,256.69l0.53,0.75l-0.02,1.06l-1.07,1.78l0.95,2.0l0.42,0.22l1.4,-0.44l0.56,-1.83l-0.77,-1.17l-0.1,-1.47l2.82,-0.93l0.26,-0.49l-0.28,-0.96l0.3,-0.28l0.66,1.31l1.96,0.26l1.4,1.22l0.08,0.68l0.39,0.35l4.81,-0.22l1.49,1.11l1.92,0.31l1.67,-0.84l0.22,-0.6l3.44,-0.14l-0.17,0.55l0.86,1.19l2.19,0.35l1.67,1.1l0.37,1.86l0.41,0.32l1.55,0.17l-1.66,1.35l-0.22,0.92l0.65,0.97l-1.67,0.54l-0.3,0.4l0.04,0.99l-0.56,0.57l-0.01,0.55l1.85,2.27l-0.66,0.69l-4.47,1.29l-0.72,0.54l-3.69,-0.9l-0.71,0.27l-0.02,0.7l0.91,0.53l-0.08,1.54l0.35,1.58l0.35,0.31l1.66,0.17l-1.3,0.52l-0.48,1.13l-2.68,0.91l-0.6,0.77l-1.57,0.13l-1.17,-1.13l-0.8,-2.52l-1.25,-1.26l1.02,-1.23l-1.29,-2.95l0.18,-1.62l1.0,-2.21l-0.2,-0.49l-1.14,-0.46l-4.02,0.36l-1.82,-2.1l-1.57,-0.33l-2.99,0.22l-1.06,-0.97l0.25,-1.23l-0.2,-1.01l-0.59,-0.69l-0.29,-1.06l-1.08,-0.39l0.78,-2.79l1.9,-2.11Z",name:"委内瑞拉"},AF:{path:"M600.7,188.88l-1.57,1.3l-0.1,0.48l0.8,2.31l-1.09,1.04l-0.03,1.27l-0.48,0.71l-2.16,-0.08l-0.37,0.59l0.78,1.48l-1.38,0.69l-1.06,1.69l0.06,1.7l-0.65,0.52l-0.91,-0.21l-1.91,0.36l-0.48,0.77l-1.88,0.13l-1.4,1.56l-0.18,2.32l-2.91,1.02l-1.65,-0.23l-0.71,0.55l-1.41,-0.3l-2.41,0.39l-3.52,-1.17l1.96,-2.35l-0.21,-1.78l-0.3,-0.34l-1.63,-0.4l-0.19,-1.58l-0.75,-2.03l0.95,-1.36l-0.19,-0.6l-0.73,-0.28l1.47,-4.8l2.14,0.9l2.12,-0.36l0.74,-1.34l1.77,-0.39l1.54,-0.92l0.63,-2.31l1.87,-0.5l0.49,-0.81l0.94,0.56l2.13,0.11l2.55,0.92l1.95,-0.83l0.65,0.43l0.56,-0.13l0.69,-1.12l1.57,-0.08l0.72,-1.66l0.79,-0.74l0.8,0.39l-0.17,0.56l0.71,0.58l-0.08,2.39l1.11,0.95ZM601.37,188.71l1.73,-0.71l1.43,-1.18l4.03,0.35l-2.23,0.74l-4.95,0.8Z",name:"阿富汗"},IQ:{path:"M530.82,187.47l0.79,0.66l1.26,-0.28l1.46,3.08l1.63,0.94l0.14,1.23l-1.22,1.05l-0.53,2.52l1.73,2.67l3.12,1.62l1.15,1.88l-0.38,1.85l0.39,0.48l0.41,-0.0l0.02,1.07l0.76,0.94l-2.47,-0.1l-1.71,2.44l-4.31,-0.2l-7.02,-5.48l-3.73,-1.94l-2.88,-0.73l-0.85,-2.87l5.45,-3.02l0.95,-3.43l-0.19,-1.96l1.27,-0.7l1.22,-1.7l0.87,-0.36l2.69,0.34Z",name:"伊拉克"},IS:{path:"M384.14,88.06l-0.37,2.61l2.54,2.51l-2.9,2.75l-9.19,3.4l-9.25,-1.66l1.7,-1.22l-0.1,-0.7l-4.05,-1.47l2.96,-0.53l0.33,-0.43l-0.11,-1.2l-0.33,-0.36l-4.67,-0.85l1.28,-2.04l3.45,-0.56l3.77,2.72l0.44,0.02l3.64,-2.16l3.3,1.08l3.98,-2.16l3.58,0.26Z",name:"冰岛"},IR:{path:"M533.43,187.16l-1.27,-2.15l0.42,-0.98l-0.71,-3.04l1.03,-0.5l0.33,0.83l1.26,1.35l2.05,0.51l1.11,-0.16l2.89,-2.11l0.62,-0.14l0.39,0.46l-0.72,1.2l0.06,0.49l1.56,1.53l0.65,0.04l0.67,1.81l2.56,0.83l1.87,1.48l3.69,0.49l3.91,-0.76l0.47,-0.73l2.17,-0.6l1.66,-1.54l1.51,0.08l1.18,-0.53l1.59,0.24l2.83,1.48l1.88,0.3l2.77,2.47l1.77,0.18l0.18,1.99l-1.68,5.49l0.24,0.5l0.61,0.23l-0.82,1.48l0.8,2.18l0.19,1.71l0.3,0.34l1.63,0.4l0.15,1.32l-2.15,2.35l-0.01,0.53l2.21,3.03l2.34,1.24l0.06,2.14l1.24,0.72l0.11,0.69l-3.31,1.27l-1.08,3.03l-9.68,-1.68l-0.99,-3.05l-1.43,-0.73l-2.17,0.46l-2.47,1.26l-2.83,-0.82l-2.46,-2.02l-2.41,-0.8l-3.42,-6.06l-0.48,-0.2l-1.18,0.39l-1.44,-0.82l-0.5,0.08l-0.65,0.74l-0.97,-1.01l-0.02,-1.31l-0.71,-0.39l0.26,-1.81l-1.29,-2.11l-3.13,-1.63l-1.58,-2.43l0.5,-1.9l1.31,-1.26l-0.19,-1.66l-1.74,-1.1l-1.57,-3.3Z",name:"伊朗"},AM:{path:"M536.99,182.33l-0.28,0.03l-1.23,-2.13l-0.93,0.01l-0.62,-0.66l-0.69,-0.07l-0.96,-0.81l-1.56,-0.62l0.19,-1.12l-0.26,-0.79l2.72,-0.36l1.09,1.01l-0.17,0.92l1.02,0.78l-0.47,0.62l0.08,0.56l2.04,1.23l0.04,1.4Z",name:"亚美尼亚"},AL:{path:"M470.32,171.8l0.74,0.03l0.92,0.89l-0.17,1.95l0.36,1.28l1.01,0.82l-1.82,2.83l-0.19,-0.61l-1.25,-0.89l-0.18,-1.2l0.53,-2.82l-0.54,-1.47l0.6,-0.83Z",name:"阿尔巴尼亚"},AO:{path:"M461.55,300.03l1.26,3.15l1.94,2.36l2.47,-0.53l1.25,0.32l0.44,-0.18l0.93,-1.92l1.31,-0.08l0.41,-0.44l0.47,-0.0l-0.1,0.41l0.39,0.49l2.65,-0.02l0.03,1.19l0.48,1.01l-0.34,1.52l0.18,1.55l0.83,1.04l-0.13,2.85l0.54,0.39l3.96,-0.41l-0.1,1.79l0.39,1.05l-0.24,1.43l-4.7,-0.03l-0.4,0.39l-0.12,8.13l2.92,3.49l-3.83,0.88l-5.89,-0.36l-1.88,-1.24l-10.47,0.22l-1.3,-1.01l-1.85,-0.16l-2.4,0.77l-0.15,-1.06l0.33,-2.16l1.0,-3.45l1.35,-3.2l2.24,-2.8l0.33,-2.06l-0.13,-1.53l-0.8,-1.08l-1.21,-2.87l0.87,-1.62l-1.27,-4.12l-1.17,-1.53l2.47,-0.63l7.03,0.03ZM451.71,298.87l-0.47,-1.25l1.25,-1.11l0.32,0.3l-0.99,1.03l-0.12,1.03Z",name:"安哥拉"},AR:{path:"M249.29,428.93l-2.33,-0.52l-5.83,-0.43l-0.89,-1.66l0.05,-2.37l-0.45,-0.4l-1.43,0.18l-0.67,-0.91l-0.2,-3.13l1.88,-1.47l0.79,-2.04l-0.25,-1.7l1.3,-2.68l0.91,-4.15l-0.22,-1.69l0.85,-0.45l0.2,-0.44l-0.27,-1.16l-0.98,-0.68l0.59,-0.92l-0.05,-0.5l-1.04,-1.07l-0.52,-3.1l0.97,-0.86l-0.42,-3.58l1.2,-5.43l1.38,-0.98l0.16,-0.43l-0.75,-2.79l-0.01,-2.43l1.78,-1.75l0.06,-2.57l1.43,-2.85l0.01,-2.58l-0.69,-0.74l-1.09,-4.52l1.47,-2.7l-0.18,-2.79l0.85,-2.35l1.59,-2.46l1.73,-1.64l0.05,-0.52l-0.6,-0.84l0.44,-0.85l-0.07,-4.19l2.7,-1.44l0.86,-2.75l-0.21,-0.71l1.76,-2.01l2.9,0.57l1.38,1.78l0.68,-0.08l0.87,-1.87l2.39,0.09l4.95,4.77l2.17,0.49l3.0,1.92l2.47,1.0l0.25,0.82l-2.37,3.93l0.23,0.59l5.39,1.16l2.12,-0.44l2.45,-2.16l0.5,-2.38l0.76,-0.31l0.98,1.2l-0.04,1.8l-3.67,2.51l-2.85,2.66l-3.43,3.88l-1.3,5.07l0.01,2.72l-0.54,0.73l-0.36,3.28l3.14,2.64l-0.16,2.11l1.4,1.11l-0.1,1.09l-2.29,3.52l-3.55,1.49l-4.92,0.6l-2.71,-0.29l-0.43,0.51l0.5,1.65l-0.49,2.1l0.38,1.42l-1.19,0.83l-2.36,0.38l-2.3,-1.04l-1.38,0.83l0.41,3.64l1.69,0.91l1.4,-0.71l0.36,0.76l-2.04,0.86l-2.01,1.89l-0.97,4.63l-2.34,0.1l-2.09,1.78l-0.61,2.75l2.46,2.31l2.17,0.63l-0.7,2.32l-2.83,1.73l-1.73,3.86l-2.17,1.22l-1.16,1.67l0.75,3.76l1.04,1.28ZM256.71,438.88l-2.0,0.15l-1.4,-1.22l-3.82,-0.1l-0.0,-5.83l1.6,3.05l3.26,2.07l3.08,0.78l-0.71,1.1Z",name:"阿根廷"},AU:{path:"M705.8,353.26l0.26,0.04l0.17,-0.47l-0.48,-1.42l0.92,1.11l0.45,0.15l0.27,-0.39l-0.1,-1.56l-1.98,-3.63l1.09,-3.31l-0.24,-1.57l0.34,-0.62l0.38,1.06l0.43,-0.19l0.99,-1.7l1.91,-0.83l1.29,-1.15l1.81,-0.91l0.96,-0.17l0.92,0.26l1.92,-0.95l1.47,-0.28l1.03,-0.8l1.43,0.04l2.78,-0.84l1.36,-1.15l0.71,-1.45l1.41,-1.26l0.3,-2.58l1.27,-1.59l0.78,1.65l0.54,0.19l1.07,-0.51l0.15,-0.6l-0.73,-1.0l0.45,-0.71l0.78,0.39l0.58,-0.3l0.28,-1.82l1.87,-2.14l1.12,-0.39l0.28,-0.58l0.62,0.17l0.53,-0.73l1.87,-0.57l1.65,1.05l1.35,1.48l3.39,0.38l0.43,-0.54l-0.46,-1.23l1.05,-1.79l1.04,-0.61l0.14,-0.55l-0.25,-0.41l0.88,-1.17l1.31,-0.77l1.3,0.27l2.1,-0.48l0.31,-0.4l-0.05,-1.3l-0.92,-0.77l1.48,0.56l1.41,1.07l2.11,0.65l0.81,-0.2l1.4,0.7l1.69,-0.66l0.8,0.19l0.64,-0.33l0.71,0.77l-1.33,1.94l-0.71,0.07l-0.35,0.51l0.24,0.86l-1.52,2.35l0.12,1.05l2.15,1.65l1.97,0.85l3.04,2.36l1.97,0.65l0.55,0.88l2.72,0.85l1.84,-1.1l2.07,-5.97l-0.42,-3.59l0.3,-1.73l0.47,-0.87l-0.31,-0.68l1.09,-3.28l0.46,-0.47l0.4,0.71l0.16,1.51l0.65,0.52l0.16,1.04l0.85,1.21l0.12,2.38l0.9,2.0l0.57,0.18l1.3,-0.78l1.69,1.7l-0.2,1.08l0.53,2.2l0.39,1.3l0.68,0.48l0.6,1.95l-0.19,1.48l0.81,1.76l6.01,3.69l-0.11,0.76l1.38,1.58l0.95,2.77l0.58,0.22l0.72,-0.41l0.8,0.9l0.61,0.01l0.46,2.41l4.81,4.71l0.66,2.02l-0.07,3.31l1.14,2.2l-0.13,2.24l-1.1,3.68l0.03,1.64l-0.47,1.89l-1.05,2.4l-1.9,1.47l-1.72,3.51l-2.38,6.09l-0.24,2.82l-1.14,0.8l-2.85,0.15l-2.31,1.19l-2.51,2.25l-3.09,-1.57l0.3,-1.15l-0.54,-0.47l-1.5,0.63l-2.01,1.94l-7.12,-2.18l-1.48,-1.63l-1.14,-3.74l-1.45,-1.26l-1.81,-0.26l0.56,-1.18l-0.61,-2.1l-0.72,-0.1l-1.14,1.82l-0.9,0.21l0.63,-0.82l0.36,-1.55l0.92,-1.31l-0.13,-2.34l-0.7,-0.22l-2.0,2.34l-1.51,0.93l-0.94,2.01l-1.35,-0.81l-0.02,-1.52l-1.57,-2.04l-1.09,-0.88l0.24,-0.33l-0.14,-0.59l-3.21,-1.69l-1.83,-0.12l-2.54,-1.35l-4.58,0.28l-6.02,1.9l-2.53,-0.13l-2.62,1.41l-2.13,0.63l-1.49,2.6l-3.49,0.31l-2.29,-0.5l-3.48,0.43l-1.6,1.47l-0.81,-0.04l-2.37,1.63l-3.26,-0.1l-3.72,-2.21l0.04,-1.05l1.19,-0.46l0.49,-0.89l0.21,-2.97l-0.28,-1.64l-1.34,-2.86l-0.38,-1.47l0.05,-1.72l-0.95,-1.7l-0.18,-0.97l-1.01,-0.99l-0.29,-1.98l-1.13,-1.75ZM784.92,393.44l2.65,1.02l3.23,-0.96l1.09,0.14l0.15,3.06l-0.85,1.13l-0.17,1.63l-0.87,-0.24l-1.57,1.91l-1.68,-0.18l-1.4,-2.36l-0.37,-2.04l-1.39,-2.51l0.04,-0.8l1.15,0.18Z",name:"澳大利亚"},AT:{path:"M462.89,152.8l0.04,2.25l-1.07,0.0l-0.33,0.63l0.36,0.51l-1.04,2.13l-2.02,0.07l-1.33,0.7l-5.29,-0.99l-0.47,-0.93l-0.44,-0.21l-2.47,0.55l-0.42,0.51l-3.18,-0.81l0.43,-0.91l1.12,0.78l0.6,-0.17l0.25,-0.58l1.93,0.12l1.86,-0.56l1.0,0.08l0.68,0.57l0.62,-0.15l0.26,-0.77l-0.3,-1.78l0.8,-0.44l0.68,-1.15l1.52,0.85l0.47,-0.06l1.34,-1.25l0.64,-0.17l1.81,0.92l1.28,-0.11l0.7,0.37Z",name:"奥地利"},IN:{path:"M623.34,207.03l-1.24,1.04l-0.97,2.55l0.22,0.51l8.04,3.87l3.42,0.37l1.57,1.38l4.92,0.88l2.18,-0.04l0.38,-0.3l0.29,-1.24l-0.32,-1.64l0.14,-0.87l0.82,-0.31l0.45,2.48l2.28,1.02l1.77,-0.38l4.14,0.1l0.38,-0.36l0.18,-1.66l-0.5,-0.65l1.37,-0.29l2.25,-1.99l2.7,-1.62l1.93,0.62l1.8,-0.98l0.79,1.14l-0.68,0.91l0.26,0.63l2.42,0.36l0.09,0.47l-0.83,0.75l0.13,1.07l-1.52,-0.29l-3.24,1.86l-0.13,1.78l-1.32,2.14l-0.18,1.39l-0.93,1.82l-1.64,-0.5l-0.52,0.37l-0.09,2.63l-0.56,1.11l0.19,0.81l-0.53,0.27l-1.18,-3.73l-1.08,-0.27l-0.38,0.31l-0.24,1.0l-0.66,-0.66l0.54,-1.06l1.22,-0.34l1.15,-2.25l-0.24,-0.56l-1.57,-0.47l-4.34,-0.28l-0.18,-1.56l-0.35,-0.35l-1.11,-0.12l-1.91,-1.12l-0.56,0.17l-0.88,1.82l0.11,0.49l1.36,1.07l-1.09,0.69l-0.69,1.11l0.18,0.56l1.24,0.57l-0.32,1.54l0.85,1.94l0.36,2.01l-0.22,0.59l-4.58,0.52l-0.33,0.42l0.13,1.8l-1.17,1.36l-3.65,1.81l-2.79,3.03l-4.32,3.28l-0.18,1.27l-4.65,1.79l-0.77,2.16l0.64,5.3l-1.06,2.49l-0.01,3.94l-1.24,0.28l-1.14,1.93l0.39,0.84l-1.68,0.53l-1.04,1.83l-0.65,0.47l-2.06,-2.05l-2.1,-6.02l-2.2,-3.64l-1.05,-4.75l-2.29,-3.57l-1.76,-8.2l0.01,-3.11l-0.49,-2.53l-0.55,-0.29l-3.53,1.52l-1.53,-0.27l-2.86,-2.77l0.85,-0.67l0.08,-0.55l-0.74,-1.03l-2.67,-2.06l1.24,-1.32l5.34,0.01l0.39,-0.49l-0.5,-2.29l-1.42,-1.46l-0.27,-1.93l-1.43,-1.2l2.31,-2.37l3.05,0.06l2.62,-2.85l1.6,-2.81l2.4,-2.73l0.07,-2.04l1.97,-1.48l-0.02,-0.65l-1.93,-1.31l-0.82,-1.78l-0.8,-2.21l0.9,-0.89l3.59,0.65l2.92,-0.42l2.33,-2.19l2.31,2.85l-0.24,2.13l0.99,1.59l-0.05,0.82l-1.34,-0.28l-0.47,0.48l0.7,3.06l2.62,1.99l2.99,1.65Z",name:"印度"},TZ:{path:"M495.56,296.42l2.8,-3.12l-0.02,-0.81l-0.64,-1.3l0.68,-0.52l0.14,-1.47l-0.76,-1.25l0.31,-0.11l2.26,0.03l-0.51,2.76l0.76,1.3l0.5,0.12l1.05,-0.53l1.19,-0.12l0.61,0.24l1.43,-0.62l0.1,-0.67l-0.71,-0.62l1.57,-1.7l8.65,4.86l0.32,1.53l3.34,2.33l-1.05,2.8l0.13,1.61l1.63,1.12l-0.6,1.76l-0.01,2.33l1.89,4.03l0.57,0.43l-1.46,1.08l-2.61,0.94l-1.43,-0.04l-1.06,0.77l-2.29,0.36l-2.87,-0.68l-0.83,0.07l-0.63,-0.75l-0.31,-2.78l-1.32,-1.35l-3.25,-0.77l-3.96,-1.58l-1.18,-2.41l-0.32,-1.75l-1.76,-1.49l0.42,-1.05l-0.44,-0.89l0.08,-0.96l-0.46,-0.58l0.06,-0.56Z",name:"坦桑尼亚"},AZ:{path:"M539.29,175.73l1.33,0.32l1.94,-1.8l2.3,3.34l1.43,0.43l-1.26,0.15l-0.35,0.32l-0.8,3.14l-0.99,0.96l0.05,1.11l-1.26,-1.13l0.7,-1.18l-0.04,-0.47l-0.74,-0.86l-1.48,0.15l-2.34,1.71l-0.03,-1.27l-2.03,-1.35l0.47,-0.62l-0.08,-0.56l-1.03,-0.79l0.29,-0.43l-0.14,-0.58l-1.13,-0.86l1.89,0.68l1.69,0.06l0.37,-0.87l-0.81,-1.37l0.42,0.06l1.63,1.72ZM533.78,180.57l0.61,0.46l0.69,-0.0l0.59,1.15l-0.68,-0.15l-1.21,-1.45Z",name:"阿塞拜疆"},IE:{path:"M405.08,135.42l0.35,2.06l-1.75,2.78l-4.22,1.88l-2.84,-0.4l1.73,-3.0l-1.18,-3.53l4.6,-3.74l0.32,1.15l-0.49,1.74l0.4,0.51l1.47,-0.04l1.6,0.6Z",name:"爱尔兰"},ID:{path:"M756.47,287.89l0.69,4.01l2.79,1.78l0.51,-0.1l2.04,-2.59l2.71,-1.43l2.05,-0.0l3.9,1.73l2.46,0.45l0.08,15.12l-1.75,-1.54l-2.54,-0.51l-0.88,0.71l-2.32,0.06l0.69,-1.33l1.45,-0.64l0.23,-0.46l-0.65,-2.74l-1.24,-2.21l-5.04,-2.29l-2.09,-0.23l-3.68,-2.27l-0.55,0.13l-0.65,1.07l-0.52,0.12l-0.55,-1.89l-1.21,-0.78l1.84,-0.62l1.72,0.05l0.39,-0.52l-0.21,-0.66l-0.38,-0.28l-3.45,-0.0l-1.13,-1.48l-2.1,-0.43l-0.52,-0.6l2.69,-0.48l1.28,-0.78l3.66,0.94l0.3,0.71ZM757.91,300.34l-0.62,0.82l-0.1,-0.8l0.59,-1.12l0.13,1.1ZM747.38,292.98l0.34,0.72l-1.22,-0.57l-4.68,-0.1l0.27,-0.62l2.78,-0.09l2.52,0.67ZM741.05,285.25l-0.67,-2.88l0.64,-2.01l0.41,0.86l1.21,0.18l0.16,0.7l-0.1,1.68l-0.84,-0.16l-0.46,0.3l-0.34,1.34ZM739.05,293.5l-0.5,0.44l-1.34,-0.36l-0.17,-0.37l1.73,-0.08l0.27,0.36ZM721.45,284.51l-0.19,1.97l2.24,2.23l0.54,0.02l1.27,-1.07l2.75,-0.5l-0.9,1.21l-2.11,0.93l-0.16,0.6l2.22,3.01l-0.3,1.07l1.36,1.74l-2.26,0.85l-0.28,-0.31l0.12,-1.19l-1.64,-1.34l0.17,-2.23l-0.56,-0.39l-1.67,0.76l-0.23,0.39l0.3,6.17l-1.1,0.25l-0.69,-0.47l0.64,-2.21l-0.39,-2.42l-0.39,-0.34l-0.8,-0.01l-0.58,-1.29l0.98,-1.6l0.35,-1.96l1.32,-3.87ZM728.59,296.27l0.38,0.49l-0.02,1.28l-0.88,0.49l-0.53,-0.47l1.04,-1.79ZM729.04,286.98l0.27,-0.05l-0.02,0.13l-0.24,-0.08ZM721.68,284.05l0.16,-0.32l1.89,-1.65l1.83,0.68l3.16,0.35l2.94,-0.1l2.39,-1.66l-1.73,2.13l-1.66,0.43l-2.41,-0.48l-4.17,0.13l-2.39,0.51ZM730.55,310.47l1.11,-1.93l2.03,-0.82l0.08,0.62l-1.45,1.67l-1.77,0.46ZM728.12,305.88l-0.1,0.38l-3.46,0.66l-2.91,-0.27l-0.0,-0.25l1.54,-0.41l1.66,0.73l1.67,-0.19l1.61,-0.65ZM722.9,310.24l-0.64,0.03l-2.26,-1.2l1.11,-0.24l1.78,1.41ZM716.26,305.77l0.88,0.51l1.28,-0.17l0.2,0.35l-4.65,0.73l0.39,-0.67l1.15,-0.02l0.75,-0.73ZM711.66,293.84l-0.38,-0.16l-2.54,1.01l-1.12,-1.44l-1.69,-0.13l-1.16,-0.75l-3.04,0.77l-1.1,-1.15l-3.31,-0.11l-0.35,-3.05l-1.35,-0.95l-1.11,-1.98l-0.33,-2.06l0.27,-2.14l0.9,-1.01l0.37,1.15l2.09,1.49l1.53,-0.48l1.82,0.08l1.38,-1.19l1.0,-0.18l2.28,0.67l2.26,-0.53l1.52,-3.64l1.01,-0.99l0.78,-2.57l4.1,0.3l-1.11,1.77l0.02,0.46l1.7,2.2l-0.23,1.39l2.07,1.71l-2.33,0.42l-0.88,1.9l0.1,2.05l-2.4,1.9l-0.06,2.45l-0.7,2.79ZM692.58,302.03l0.35,0.26l4.8,0.25l0.78,-0.97l4.17,1.09l1.13,1.68l3.69,0.45l2.13,1.04l-1.8,0.6l-2.77,-0.99l-4.8,-0.12l-5.24,-1.41l-1.84,-0.25l-1.11,0.3l-4.26,-0.97l-0.7,-1.14l-1.59,-0.13l1.18,-1.65l2.74,0.13l2.87,1.13l0.26,0.68ZM685.53,299.17l-2.22,0.04l-2.06,-2.03l-3.15,-2.01l-2.93,-3.51l-3.11,-5.33l-2.2,-2.12l-1.64,-4.06l-2.32,-1.69l-1.27,-2.07l-1.96,-1.5l-2.51,-2.65l-0.11,-0.66l4.81,0.53l2.15,2.38l3.31,2.74l2.35,2.66l2.7,0.17l1.95,1.59l1.54,2.17l1.59,0.95l-0.84,1.71l0.15,0.52l1.44,0.87l0.79,0.1l0.4,1.58l0.87,1.4l1.96,0.39l1.0,1.31l-0.6,3.01l-0.09,3.5Z",name:"印尼"},UA:{path:"M492.5,162.44l1.28,-2.49l1.82,0.19l0.66,-0.23l0.09,-0.71l-0.25,-0.75l-0.79,-0.72l-0.33,-1.21l-0.86,-0.62l-0.02,-1.19l-1.13,-0.86l-1.15,-0.19l-2.04,-1.0l-1.66,0.32l-0.66,0.47l-0.92,-0.0l-0.84,0.78l-2.48,0.7l-1.18,-0.71l-3.07,-0.36l-0.89,0.43l-0.24,-0.55l-1.11,-0.7l0.35,-0.93l1.26,-1.02l-0.54,-1.23l2.04,-2.43l1.4,-0.62l0.25,-1.19l-1.04,-2.39l0.83,-0.13l1.28,-0.84l1.8,-0.07l2.47,0.26l2.86,0.81l1.88,0.06l0.86,0.44l1.04,-0.41l0.77,0.66l2.18,-0.15l0.92,0.3l0.52,-0.34l0.15,-1.53l0.56,-0.54l2.85,-0.05l0.84,-0.72l3.04,-0.18l1.23,1.46l-0.48,0.77l0.21,1.03l0.36,0.32l1.8,0.14l0.93,2.08l3.18,1.15l1.94,-0.45l1.67,1.49l1.4,-0.03l3.35,0.96l0.02,0.54l-0.96,1.59l0.47,1.97l-0.26,0.7l-2.36,0.28l-1.29,0.89l-0.23,1.38l-1.83,0.27l-1.58,0.97l-2.41,0.21l-2.16,1.17l-0.21,0.38l0.34,2.26l1.23,0.75l2.13,-0.08l-0.14,0.31l-2.65,0.53l-3.23,1.69l-0.87,-0.39l0.42,-1.1l-0.25,-0.52l-2.21,-0.73l2.35,-1.06l0.12,-0.65l-0.93,-0.82l-3.62,-0.74l-0.13,-0.89l-0.46,-0.34l-2.61,0.59l-0.91,1.69l-1.71,2.04l-0.86,-0.4l-1.62,0.27Z",name:"乌克兰"},QA:{path:"M549.33,221.64l-0.76,-0.23l-0.14,-1.64l0.84,-1.29l0.47,0.52l0.04,1.34l-0.45,1.3Z",name:"卡塔尔"},MZ:{path:"M508.58,318.75l-0.34,-2.57l0.51,-2.05l3.55,0.63l2.5,-0.38l1.02,-0.76l1.49,0.01l2.74,-0.98l1.66,-1.2l0.5,9.24l0.41,1.23l-0.68,1.67l-0.93,1.71l-1.5,1.5l-5.16,2.28l-2.78,2.73l-1.02,0.53l-1.71,1.8l-0.98,0.57l-0.35,2.41l1.16,1.94l0.49,2.17l0.43,0.31l-0.06,2.06l-0.39,1.17l0.5,0.72l-0.25,0.73l-0.92,0.83l-5.12,2.39l-1.22,1.36l0.21,1.13l0.58,0.39l-0.11,0.72l-1.22,-0.01l-0.73,-2.97l0.42,-3.09l-1.78,-5.37l2.49,-2.81l0.69,-1.89l0.44,-0.43l0.28,-1.53l-0.39,-0.93l0.59,-3.65l-0.01,-3.26l-1.49,-1.16l-1.2,-0.22l-1.74,-1.17l-1.92,0.01l-0.29,-2.08l7.06,-1.96l1.28,1.09l0.89,-0.1l0.67,0.44l0.1,0.73l-0.51,1.29l0.19,1.81l1.75,1.83l0.65,-0.13l0.71,-1.65l1.17,-0.86l-0.26,-3.47l-1.05,-1.85l-1.04,-0.94Z",name:"莫桑比克"}},height:440.7063107441331,projection:{type:"mill",centralMeridian:11.5},width:900}); \ No newline at end of file diff --git a/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-world-mill-en.js b/public/assets/custom/maps/jquery-jvectormap-world-mill-en.js similarity index 100% rename from public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-world-mill-en.js rename to public/assets/custom/maps/jquery-jvectormap-world-mill-en.js diff --git a/public/assets/global/vendor/jvectormap/jquery-jvectormap.css b/public/assets/global/vendor/jvectormap/jquery-jvectormap.css index 85c0ab06d..1cac4ac33 100644 --- a/public/assets/global/vendor/jvectormap/jquery-jvectormap.css +++ b/public/assets/global/vendor/jvectormap/jquery-jvectormap.css @@ -1,110 +1,135 @@ +svg { + touch-action: none; +} + .jvectormap-container { - position: relative; - width: 100%; - height: 100%; - overflow: hidden; } + width: 100%; + height: 100%; + position: relative; + overflow: hidden; + touch-action: none; +} .jvectormap-tip { - position: absolute; - display: none; - padding: 3px; - font-family: sans-serif, Verdana; - font-size: smaller; - color: white; - background: #292929; - border: solid 1px #cdcdcd; - border-radius: 3px; } + position: absolute; + display: none; + border: solid 1px #CDCDCD; + border-radius: 3px; + background: #292929; + color: white; + font-family: sans-serif, Verdana; + font-size: smaller; + padding: 3px; +} .jvectormap-zoomin, .jvectormap-zoomout, .jvectormap-goback { - position: absolute; - left: 20px; - box-sizing: content-box; - padding: 3px; - font-weight: bold; - line-height: 16px; - color: white; - text-align: center; - cursor: pointer; - background: #526069; - border-radius: 3px; } + position: absolute; + left: 10px; + border-radius: 3px; + background: #292929; + padding: 3px; + color: white; + cursor: pointer; + line-height: 10px; + text-align: center; + box-sizing: content-box; +} .jvectormap-zoomin, .jvectormap-zoomout { - width: 16px; - height: 16px; } + width: 10px; + height: 10px; +} .jvectormap-zoomin { - top: 20px; } + top: 10px; +} .jvectormap-zoomout { - top: 20px; - left: 50px; } + top: 30px; +} .jvectormap-goback { - bottom: 10px; - z-index: 1000; - padding: 6px; } + bottom: 10px; + z-index: 1000; + padding: 6px; +} .jvectormap-spinner { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - background: center no-repeat url(data:image/gif;base64,R0lGODlhIAAgAPMAAP///wAAAMbGxoSEhLa2tpqamjY2NlZWVtjY2OTk5Ly8vB4eHgQEBAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ/V/nmOM82XiHRLYKhKP1oZmADdEAAAh+QQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY/CZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB+A4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6+Ho7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq+B6QDtuetcaBPnW6+O7wDHpIiK9SaVK5GgV543tzjgGcghAgAh+QQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK++G+w48edZPK+M6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE+G+cD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm+FNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk+aV+oJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0/VNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc+XiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30/iI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE/jiuL04RGEBgwWhShRgQExHBAAh+QQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR+ipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY+Yip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd+MFCN6HAAIKgNggY0KtEBAAh+QQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1+vsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d+jYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg+ygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0+bm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h+Kr0SJ8MFihpNbx+4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX+BP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA==); } + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + background: center no-repeat url(data:image/gif;base64,R0lGODlhIAAgAPMAAP///wAAAMbGxoSEhLa2tpqamjY2NlZWVtjY2OTk5Ly8vB4eHgQEBAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ/V/nmOM82XiHRLYKhKP1oZmADdEAAAh+QQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY/CZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB+A4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6+Ho7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq+B6QDtuetcaBPnW6+O7wDHpIiK9SaVK5GgV543tzjgGcghAgAh+QQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK++G+w48edZPK+M6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE+G+cD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm+FNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk+aV+oJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0/VNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc+XiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30/iI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE/jiuL04RGEBgwWhShRgQExHBAAh+QQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR+ipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY+Yip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd+MFCN6HAAIKgNggY0KtEBAAh+QQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1+vsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d+jYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg+ygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0+bm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h+Kr0SJ8MFihpNbx+4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX+BP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA==); +} .jvectormap-legend-title { - font-size: 14px; - font-weight: bold; - text-align: center; } + font-weight: bold; + font-size: 14px; + text-align: center; +} .jvectormap-legend-cnt { - position: absolute; } + position: absolute; +} .jvectormap-legend-cnt-h { - right: 0; - bottom: 0; } + bottom: 0; + right: 0; +} .jvectormap-legend-cnt-v { - top: 0; - right: 0; } + top: 0; + right: 0; +} .jvectormap-legend { - color: white; - background: black; - border-radius: 3px; } + background: black; + color: white; + border-radius: 3px; +} .jvectormap-legend-cnt-h .jvectormap-legend { - float: left; - padding: 3px 3px 1px; - margin: 0 10px 10px 0; } + float: left; + margin: 0 10px 10px 0; + padding: 3px 3px 1px 3px; +} .jvectormap-legend-cnt-h .jvectormap-legend .jvectormap-legend-tick { - float: left; } + float: left; +} .jvectormap-legend-cnt-v .jvectormap-legend { - padding: 3px; - margin: 10px 10px 0 0; } + margin: 10px 10px 0 0; + padding: 3px; +} .jvectormap-legend-cnt-h .jvectormap-legend-tick { - width: 40px; } + width: 40px; +} .jvectormap-legend-cnt-h .jvectormap-legend-tick-sample { - height: 15px; } + height: 15px; +} .jvectormap-legend-cnt-v .jvectormap-legend-tick-sample { - display: inline-block; - width: 20px; - height: 20px; - vertical-align: middle; } + height: 20px; + width: 20px; + display: inline-block; + vertical-align: middle; +} .jvectormap-legend-tick-text { - font-size: 12px; } + font-size: 12px; +} .jvectormap-legend-cnt-h .jvectormap-legend-tick-text { - text-align: center; } + text-align: center; +} .jvectormap-legend-cnt-v .jvectormap-legend-tick-text { - display: inline-block; - padding-left: 3px; - line-height: 20px; - vertical-align: middle; } + display: inline-block; + vertical-align: middle; + line-height: 20px; + padding-left: 3px; +} \ No newline at end of file diff --git a/public/assets/global/vendor/jvectormap/jquery-jvectormap.js b/public/assets/global/vendor/jvectormap/jquery-jvectormap.js deleted file mode 100644 index 16e12f1be..000000000 --- a/public/assets/global/vendor/jvectormap/jquery-jvectormap.js +++ /dev/null @@ -1,44 +0,0 @@ -/** - * jVectorMap version 2.0.4 - * - * Copyright 2011-2014, Kirill Lebedev - * - */ - -(function( $ ){ - var apiParams = { - set: { - colors: 1, - values: 1, - backgroundColor: 1, - scaleColors: 1, - normalizeFunction: 1, - focus: 1 - }, - get: { - selectedRegions: 1, - selectedMarkers: 1, - mapObject: 1, - regionName: 1 - } - }; - - $.fn.vectorMap = function(options) { - var map, - methodName, - map = this.children('.jvectormap-container').data('mapObject'); - - if (options === 'addMap') { - jvm.Map.maps[arguments[1]] = arguments[2]; - } else if ((options === 'set' || options === 'get') && apiParams[options][arguments[1]]) { - methodName = arguments[1].charAt(0).toUpperCase()+arguments[1].substr(1); - return map[options+methodName].apply(map, Array.prototype.slice.call(arguments, 2)); - } else { - options = options || {}; - options.container = this; - map = new jvm.Map(options); - } - - return this; - }; -})( jQuery ); diff --git a/public/assets/global/vendor/jvectormap/jquery-jvectormap.min.css b/public/assets/global/vendor/jvectormap/jquery-jvectormap.min.css deleted file mode 100644 index 6e226ab68..000000000 --- a/public/assets/global/vendor/jvectormap/jquery-jvectormap.min.css +++ /dev/null @@ -1 +0,0 @@ -.jvectormap-container{position:relative;width:100%;height:100%;overflow:hidden}.jvectormap-tip{position:absolute;display:none;padding:3px;font-family:sans-serif,Verdana;font-size:smaller;color:#fff;background:#292929;border:solid 1px #cdcdcd;border-radius:3px}.jvectormap-goback,.jvectormap-zoomin,.jvectormap-zoomout{position:absolute;left:20px;box-sizing:content-box;padding:3px;font-weight:700;line-height:16px;color:#fff;text-align:center;cursor:pointer;background:#526069;border-radius:3px}.jvectormap-zoomin,.jvectormap-zoomout{width:16px;height:16px}.jvectormap-zoomin{top:20px}.jvectormap-zoomout{top:20px;left:50px}.jvectormap-goback{bottom:10px;z-index:1000;padding:6px}.jvectormap-spinner{position:absolute;top:0;right:0;bottom:0;left:0;background:center no-repeat url(data:image/gif;base64,R0lGODlhIAAgAPMAAP///wAAAMbGxoSEhLa2tpqamjY2NlZWVtjY2OTk5Ly8vB4eHgQEBAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ/V/nmOM82XiHRLYKhKP1oZmADdEAAAh+QQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY/CZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB+A4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6+Ho7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq+B6QDtuetcaBPnW6+O7wDHpIiK9SaVK5GgV543tzjgGcghAgAh+QQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK++G+w48edZPK+M6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE+G+cD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm+FNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk+aV+oJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0/VNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc+XiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30/iI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE/jiuL04RGEBgwWhShRgQExHBAAh+QQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR+ipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY+Yip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd+MFCN6HAAIKgNggY0KtEBAAh+QQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1+vsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d+jYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg+ygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0+bm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h+Kr0SJ8MFihpNbx+4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX+BP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA==)}.jvectormap-legend-title{font-size:14px;font-weight:700;text-align:center}.jvectormap-legend-cnt{position:absolute}.jvectormap-legend-cnt-h{right:0;bottom:0}.jvectormap-legend-cnt-v{top:0;right:0}.jvectormap-legend{color:#fff;background:#000;border-radius:3px}.jvectormap-legend-cnt-h .jvectormap-legend{float:left;padding:3px 3px 1px;margin:0 10px 10px 0}.jvectormap-legend-cnt-h .jvectormap-legend .jvectormap-legend-tick{float:left}.jvectormap-legend-cnt-v .jvectormap-legend{padding:3px;margin:10px 10px 0 0}.jvectormap-legend-cnt-h .jvectormap-legend-tick{width:40px}.jvectormap-legend-cnt-h .jvectormap-legend-tick-sample{height:15px}.jvectormap-legend-cnt-v .jvectormap-legend-tick-sample{display:inline-block;width:20px;height:20px;vertical-align:middle}.jvectormap-legend-tick-text{font-size:12px}.jvectormap-legend-cnt-h .jvectormap-legend-tick-text{text-align:center}.jvectormap-legend-cnt-v .jvectormap-legend-tick-text{display:inline-block;padding-left:3px;line-height:20px;vertical-align:middle} \ No newline at end of file diff --git a/public/assets/global/vendor/jvectormap/jquery-jvectormap.min.js b/public/assets/global/vendor/jvectormap/jquery-jvectormap.min.js index bc3a688fc..91d12a430 100644 --- a/public/assets/global/vendor/jvectormap/jquery-jvectormap.min.js +++ b/public/assets/global/vendor/jvectormap/jquery-jvectormap.min.js @@ -1,2 +1 @@ -!function($){var apiParams={set:{colors:1,values:1,backgroundColor:1,scaleColors:1,normalizeFunction:1,focus:1},get:{selectedRegions:1,selectedMarkers:1,mapObject:1,regionName:1}};$.fn.vectorMap=function(options){var map,methodName,map=this.children(".jvectormap-container").data("mapObject");if("addMap"===options)jvm.Map.maps[arguments[1]]=arguments[2];else{if(("set"===options||"get"===options)&&apiParams[options][arguments[1]])return methodName=arguments[1].charAt(0).toUpperCase()+arguments[1].substr(1),map[options+methodName].apply(map,Array.prototype.slice.call(arguments,2));options=options||{},options.container=this,map=new jvm.Map(options)}return this}}(jQuery),function(factory){"function"==typeof define&&define.amd?define(["jquery"],factory):"object"==typeof exports?module.exports=factory:factory(jQuery)}(function($){function handler(event){var orgEvent=event||window.event,args=slice.call(arguments,1),delta=0,deltaX=0,deltaY=0,absDelta=0;if(event=$.event.fix(orgEvent),event.type="mousewheel","detail"in orgEvent&&(deltaY=-1*orgEvent.detail),"wheelDelta"in orgEvent&&(deltaY=orgEvent.wheelDelta),"wheelDeltaY"in orgEvent&&(deltaY=orgEvent.wheelDeltaY),"wheelDeltaX"in orgEvent&&(deltaX=-1*orgEvent.wheelDeltaX),"axis"in orgEvent&&orgEvent.axis===orgEvent.HORIZONTAL_AXIS&&(deltaX=-1*deltaY,deltaY=0),delta=0===deltaY?deltaX:deltaY,"deltaY"in orgEvent&&(deltaY=-1*orgEvent.deltaY,delta=deltaY),"deltaX"in orgEvent&&(deltaX=orgEvent.deltaX,0===deltaY&&(delta=-1*deltaX)),0!==deltaY||0!==deltaX){if(1===orgEvent.deltaMode){var lineHeight=$.data(this,"mousewheel-line-height");delta*=lineHeight,deltaY*=lineHeight,deltaX*=lineHeight}else if(2===orgEvent.deltaMode){var pageHeight=$.data(this,"mousewheel-page-height");delta*=pageHeight,deltaY*=pageHeight,deltaX*=pageHeight}return absDelta=Math.max(Math.abs(deltaY),Math.abs(deltaX)),(!lowestDelta||lowestDelta>absDelta)&&(lowestDelta=absDelta,shouldAdjustOldDeltas(orgEvent,absDelta)&&(lowestDelta/=40)),shouldAdjustOldDeltas(orgEvent,absDelta)&&(delta/=40,deltaX/=40,deltaY/=40),delta=Math[delta>=1?"floor":"ceil"](delta/lowestDelta),deltaX=Math[deltaX>=1?"floor":"ceil"](deltaX/lowestDelta),deltaY=Math[deltaY>=1?"floor":"ceil"](deltaY/lowestDelta),event.deltaX=deltaX,event.deltaY=deltaY,event.deltaFactor=lowestDelta,event.deltaMode=0,args.unshift(event,delta,deltaX,deltaY),nullLowestDeltaTimeout&&clearTimeout(nullLowestDeltaTimeout),nullLowestDeltaTimeout=setTimeout(nullLowestDelta,200),($.event.dispatch||$.event.handle).apply(this,args)}}function nullLowestDelta(){lowestDelta=null}function shouldAdjustOldDeltas(orgEvent,absDelta){return special.settings.adjustOldDeltas&&"mousewheel"===orgEvent.type&&absDelta%120===0}var nullLowestDeltaTimeout,lowestDelta,toFix=["wheel","mousewheel","DOMMouseScroll","MozMousePixelScroll"],toBind="onwheel"in document||document.documentMode>=9?["wheel"]:["mousewheel","DomMouseScroll","MozMousePixelScroll"],slice=Array.prototype.slice;if($.event.fixHooks)for(var i=toFix.length;i;)$.event.fixHooks[toFix[--i]]=$.event.mouseHooks;var special=$.event.special.mousewheel={version:"3.1.9",setup:function(){if(this.addEventListener)for(var i=toBind.length;i;)this.addEventListener(toBind[--i],handler,!1);else this.onmousewheel=handler;$.data(this,"mousewheel-line-height",special.getLineHeight(this)),$.data(this,"mousewheel-page-height",special.getPageHeight(this))},teardown:function(){if(this.removeEventListener)for(var i=toBind.length;i;)this.removeEventListener(toBind[--i],handler,!1);else this.onmousewheel=null},getLineHeight:function(elem){return parseInt($(elem)["offsetParent"in $.fn?"offsetParent":"parent"]().css("fontSize"),10)},getPageHeight:function(elem){return $(elem).height()},settings:{adjustOldDeltas:!0}};$.fn.extend({mousewheel:function(fn){return fn?this.bind("mousewheel",fn):this.trigger("mousewheel")},unmousewheel:function(fn){return this.unbind("mousewheel",fn)}})});var jvm={inherits:function(child,parent){function temp(){}temp.prototype=parent.prototype,child.prototype=new temp,child.prototype.constructor=child,child.parentClass=parent},mixin:function(target,source){var prop;for(prop in source.prototype)source.prototype.hasOwnProperty(prop)&&(target.prototype[prop]=source.prototype[prop])},min:function(values){var i,min=Number.MAX_VALUE;if(values instanceof Array)for(i=0;imax&&(max=values[i]);else for(i in values)values[i]>max&&(max=values[i]);return max},keys:function(object){var key,keys=[];for(key in object)keys.push(key);return keys},values:function(object){var key,i,values=[];for(i=0;i");return img.error(function(){deferred.reject()}).load(function(){deferred.resolve(img)}),img.attr("src",url),deferred},isImageUrl:function(s){return/\.\w{3,4}$/.test(s)}};jvm.$=jQuery,Array.prototype.indexOf||(Array.prototype.indexOf=function(searchElement,fromIndex){var k;if(null==this)throw new TypeError('"this" is null or not defined');var O=Object(this),len=O.length>>>0;if(0===len)return-1;var n=+fromIndex||0;if(Math.abs(n)===1/0&&(n=0),n>=len)return-1;for(k=Math.max(n>=0?n:len-Math.abs(n),0);len>k;){if(k in O&&O[k]===searchElement)return k;k++}return-1}),jvm.AbstractElement=function(name,config){this.node=this.createElement(name),this.name=name,this.properties={},config&&this.set(config)},jvm.AbstractElement.prototype.set=function(property,value){var key;if("object"==typeof property)for(key in property)this.properties[key]=property[key],this.applyAttr(key,property[key]);else this.properties[property]=value,this.applyAttr(property,value)},jvm.AbstractElement.prototype.get=function(property){return this.properties[property]},jvm.AbstractElement.prototype.applyAttr=function(property,value){this.node.setAttribute(property,value)},jvm.AbstractElement.prototype.remove=function(){jvm.$(this.node).remove()},jvm.AbstractCanvasElement=function(container,width,height){this.container=container,this.setSize(width,height),this.rootElement=new jvm[this.classPrefix+"GroupElement"],this.node.appendChild(this.rootElement.node),this.container.appendChild(this.node)},jvm.AbstractCanvasElement.prototype.add=function(element,group){group=group||this.rootElement,group.add(element),element.canvas=this},jvm.AbstractCanvasElement.prototype.addPath=function(config,style,group){var el=new jvm[this.classPrefix+"PathElement"](config,style);return this.add(el,group),el},jvm.AbstractCanvasElement.prototype.addCircle=function(config,style,group){var el=new jvm[this.classPrefix+"CircleElement"](config,style);return this.add(el,group),el},jvm.AbstractCanvasElement.prototype.addImage=function(config,style,group){var el=new jvm[this.classPrefix+"ImageElement"](config,style);return this.add(el,group),el},jvm.AbstractCanvasElement.prototype.addText=function(config,style,group){var el=new jvm[this.classPrefix+"TextElement"](config,style);return this.add(el,group),el},jvm.AbstractCanvasElement.prototype.addGroup=function(parentGroup){var el=new jvm[this.classPrefix+"GroupElement"];return parentGroup?parentGroup.node.appendChild(el.node):this.node.appendChild(el.node),el.canvas=this,el},jvm.AbstractShapeElement=function(name,config,style){this.style=style||{},this.style.current=this.style.current||{},this.isHovered=!1,this.isSelected=!1,this.updateStyle()},jvm.AbstractShapeElement.prototype.setStyle=function(property,value){var styles={};"object"==typeof property?styles=property:styles[property]=value,jvm.$.extend(this.style.current,styles),this.updateStyle()},jvm.AbstractShapeElement.prototype.updateStyle=function(){var attrs={};jvm.AbstractShapeElement.mergeStyles(attrs,this.style.initial),jvm.AbstractShapeElement.mergeStyles(attrs,this.style.current),this.isHovered&&jvm.AbstractShapeElement.mergeStyles(attrs,this.style.hover),this.isSelected&&(jvm.AbstractShapeElement.mergeStyles(attrs,this.style.selected),this.isHovered&&jvm.AbstractShapeElement.mergeStyles(attrs,this.style.selectedHover)),this.set(attrs)},jvm.AbstractShapeElement.mergeStyles=function(styles,newStyles){var key;newStyles=newStyles||{};for(key in newStyles)null===newStyles[key]?delete styles[key]:styles[key]=newStyles[key]},jvm.SVGElement=function(){jvm.SVGElement.parentClass.apply(this,arguments)},jvm.inherits(jvm.SVGElement,jvm.AbstractElement),jvm.SVGElement.svgns="http://www.w3.org/2000/svg",jvm.SVGElement.prototype.createElement=function(tagName){return document.createElementNS(jvm.SVGElement.svgns,tagName)},jvm.SVGElement.prototype.addClass=function(className){this.node.setAttribute("class",className)},jvm.SVGElement.prototype.getElementCtr=function(ctr){return jvm["SVG"+ctr]},jvm.SVGElement.prototype.getBBox=function(){return this.node.getBBox()},jvm.SVGGroupElement=function(){jvm.SVGGroupElement.parentClass.call(this,"g")},jvm.inherits(jvm.SVGGroupElement,jvm.SVGElement),jvm.SVGGroupElement.prototype.add=function(element){this.node.appendChild(element.node)},jvm.SVGCanvasElement=function(){this.classPrefix="SVG",jvm.SVGCanvasElement.parentClass.call(this,"svg"),this.defsElement=new jvm.SVGElement("defs"),this.node.appendChild(this.defsElement.node),jvm.AbstractCanvasElement.apply(this,arguments)},jvm.inherits(jvm.SVGCanvasElement,jvm.SVGElement),jvm.mixin(jvm.SVGCanvasElement,jvm.AbstractCanvasElement),jvm.SVGCanvasElement.prototype.setSize=function(width,height){this.width=width,this.height=height,this.node.setAttribute("width",width),this.node.setAttribute("height",height)},jvm.SVGCanvasElement.prototype.applyTransformParams=function(scale,transX,transY){this.scale=scale,this.transX=transX,this.transY=transY,this.rootElement.node.setAttribute("transform","scale("+scale+") translate("+transX+", "+transY+")")},jvm.SVGShapeElement=function(name,config){jvm.SVGShapeElement.parentClass.call(this,name,config),jvm.AbstractShapeElement.apply(this,arguments)},jvm.inherits(jvm.SVGShapeElement,jvm.SVGElement),jvm.mixin(jvm.SVGShapeElement,jvm.AbstractShapeElement),jvm.SVGShapeElement.prototype.applyAttr=function(attr,value){var patternEl,imageEl,that=this;"fill"===attr&&jvm.isImageUrl(value)?jvm.SVGShapeElement.images[value]?this.applyAttr("fill","url(#image"+jvm.SVGShapeElement.images[value]+")"):jvm.whenImageLoaded(value).then(function(img){imageEl=new jvm.SVGElement("image"),imageEl.node.setAttributeNS("http://www.w3.org/1999/xlink","href",value),imageEl.applyAttr("x","0"),imageEl.applyAttr("y","0"),imageEl.applyAttr("width",img[0].width),imageEl.applyAttr("height",img[0].height),patternEl=new jvm.SVGElement("pattern"),patternEl.applyAttr("id","image"+jvm.SVGShapeElement.imageCounter),patternEl.applyAttr("x",0),patternEl.applyAttr("y",0),patternEl.applyAttr("width",img[0].width/2),patternEl.applyAttr("height",img[0].height/2),patternEl.applyAttr("viewBox","0 0 "+img[0].width+" "+img[0].height),patternEl.applyAttr("patternUnits","userSpaceOnUse"),patternEl.node.appendChild(imageEl.node),that.canvas.defsElement.node.appendChild(patternEl.node),jvm.SVGShapeElement.images[value]=jvm.SVGShapeElement.imageCounter++,that.applyAttr("fill","url(#image"+jvm.SVGShapeElement.images[value]+")")}):jvm.SVGShapeElement.parentClass.prototype.applyAttr.apply(this,arguments)},jvm.SVGShapeElement.imageCounter=1,jvm.SVGShapeElement.images={},jvm.SVGPathElement=function(config,style){jvm.SVGPathElement.parentClass.call(this,"path",config,style),this.node.setAttribute("fill-rule","evenodd")},jvm.inherits(jvm.SVGPathElement,jvm.SVGShapeElement),jvm.SVGCircleElement=function(config,style){jvm.SVGCircleElement.parentClass.call(this,"circle",config,style)},jvm.inherits(jvm.SVGCircleElement,jvm.SVGShapeElement),jvm.SVGImageElement=function(config,style){jvm.SVGImageElement.parentClass.call(this,"image",config,style)},jvm.inherits(jvm.SVGImageElement,jvm.SVGShapeElement),jvm.SVGImageElement.prototype.applyAttr=function(attr,value){var that=this;"image"==attr?jvm.whenImageLoaded(value).then(function(img){that.node.setAttributeNS("http://www.w3.org/1999/xlink","href",value),that.width=img[0].width,that.height=img[0].height,that.applyAttr("width",that.width),that.applyAttr("height",that.height),that.applyAttr("x",that.cx-that.width/2),that.applyAttr("y",that.cy-that.height/2),jvm.$(that.node).trigger("imageloaded",[img])}):"cx"==attr?(this.cx=value,this.width&&this.applyAttr("x",value-this.width/2)):"cy"==attr?(this.cy=value,this.height&&this.applyAttr("y",value-this.height/2)):jvm.SVGImageElement.parentClass.prototype.applyAttr.apply(this,arguments)},jvm.SVGTextElement=function(config,style){jvm.SVGTextElement.parentClass.call(this,"text",config,style)},jvm.inherits(jvm.SVGTextElement,jvm.SVGShapeElement),jvm.SVGTextElement.prototype.applyAttr=function(attr,value){"text"===attr?this.node.textContent=value:jvm.SVGTextElement.parentClass.prototype.applyAttr.apply(this,arguments)},jvm.VMLElement=function(){jvm.VMLElement.VMLInitialized||jvm.VMLElement.initializeVML(),jvm.VMLElement.parentClass.apply(this,arguments)},jvm.inherits(jvm.VMLElement,jvm.AbstractElement),jvm.VMLElement.VMLInitialized=!1,jvm.VMLElement.initializeVML=function(){try{document.namespaces.rvml||document.namespaces.add("rvml","urn:schemas-microsoft-com:vml"),jvm.VMLElement.prototype.createElement=function(tagName){return document.createElement("')}}catch(e){jvm.VMLElement.prototype.createElement=function(tagName){return document.createElement("<"+tagName+' xmlns="urn:schemas-microsoft.com:vml" class="rvml">')}}document.createStyleSheet().addRule(".rvml","behavior:url(#default#VML)"),jvm.VMLElement.VMLInitialized=!0},jvm.VMLElement.prototype.getElementCtr=function(ctr){return jvm["VML"+ctr]},jvm.VMLElement.prototype.addClass=function(className){jvm.$(this.node).addClass(className)},jvm.VMLElement.prototype.applyAttr=function(attr,value){this.node[attr]=value},jvm.VMLElement.prototype.getBBox=function(){var node=jvm.$(this.node);return{x:node.position().left/this.canvas.scale,y:node.position().top/this.canvas.scale,width:node.width()/this.canvas.scale,height:node.height()/this.canvas.scale}},jvm.VMLGroupElement=function(){jvm.VMLGroupElement.parentClass.call(this,"group"),this.node.style.left="0px",this.node.style.top="0px",this.node.coordorigin="0 0"},jvm.inherits(jvm.VMLGroupElement,jvm.VMLElement),jvm.VMLGroupElement.prototype.add=function(element){this.node.appendChild(element.node)},jvm.VMLCanvasElement=function(){this.classPrefix="VML",jvm.VMLCanvasElement.parentClass.call(this,"group"),jvm.AbstractCanvasElement.apply(this,arguments),this.node.style.position="absolute"},jvm.inherits(jvm.VMLCanvasElement,jvm.VMLElement),jvm.mixin(jvm.VMLCanvasElement,jvm.AbstractCanvasElement),jvm.VMLCanvasElement.prototype.setSize=function(width,height){var paths,groups,i,l;if(this.width=width,this.height=height,this.node.style.width=width+"px",this.node.style.height=height+"px",this.node.coordsize=width+" "+height,this.node.coordorigin="0 0",this.rootElement){for(paths=this.rootElement.node.getElementsByTagName("shape"),i=0,l=paths.length;l>i;i++)paths[i].coordsize=width+" "+height,paths[i].style.width=width+"px",paths[i].style.height=height+"px";for(groups=this.node.getElementsByTagName("group"),i=0,l=groups.length;l>i;i++)groups[i].coordsize=width+" "+height,groups[i].style.width=width+"px",groups[i].style.height=height+"px"}},jvm.VMLCanvasElement.prototype.applyTransformParams=function(scale,transX,transY){this.scale=scale,this.transX=transX,this.transY=transY,this.rootElement.node.coordorigin=this.width-transX-this.width/100+","+(this.height-transY-this.height/100),this.rootElement.node.coordsize=this.width/scale+","+this.height/scale},jvm.VMLShapeElement=function(name,config){jvm.VMLShapeElement.parentClass.call(this,name,config),this.fillElement=new jvm.VMLElement("fill"),this.strokeElement=new jvm.VMLElement("stroke"),this.node.appendChild(this.fillElement.node),this.node.appendChild(this.strokeElement.node),this.node.stroked=!1,jvm.AbstractShapeElement.apply(this,arguments)},jvm.inherits(jvm.VMLShapeElement,jvm.VMLElement),jvm.mixin(jvm.VMLShapeElement,jvm.AbstractShapeElement),jvm.VMLShapeElement.prototype.applyAttr=function(attr,value){switch(attr){case"fill":this.node.fillcolor=value;break;case"fill-opacity":this.fillElement.node.opacity=Math.round(100*value)+"%";break;case"stroke":this.node.stroked="none"===value?!1:!0,this.node.strokecolor=value;break;case"stroke-opacity":this.strokeElement.node.opacity=Math.round(100*value)+"%";break;case"stroke-width":this.node.stroked=0===parseInt(value,10)?!1:!0,this.node.strokeweight=value;break;case"d":this.node.path=jvm.VMLPathElement.pathSvgToVml(value);break;default:jvm.VMLShapeElement.parentClass.prototype.applyAttr.apply(this,arguments)}},jvm.VMLPathElement=function(config,style){var scale=new jvm.VMLElement("skew");jvm.VMLPathElement.parentClass.call(this,"shape",config,style),this.node.coordorigin="0 0",scale.node.on=!0,scale.node.matrix="0.01,0,0,0.01,0,0",scale.node.offset="0,0",this.node.appendChild(scale.node)},jvm.inherits(jvm.VMLPathElement,jvm.VMLShapeElement),jvm.VMLPathElement.prototype.applyAttr=function(attr,value){"d"===attr?this.node.path=jvm.VMLPathElement.pathSvgToVml(value):jvm.VMLShapeElement.prototype.applyAttr.call(this,attr,value)},jvm.VMLPathElement.pathSvgToVml=function(path){var ctrlx,ctrly,cx=0,cy=0;return path=path.replace(/(-?\d+)e(-?\d+)/g,"0"),path.replace(/([MmLlHhVvCcSs])\s*((?:-?\d*(?:\.\d+)?\s*,?\s*)+)/g,function(segment,letter,coords){coords=coords.replace(/(\d)-/g,"$1,-").replace(/^\s+/g,"").replace(/\s+$/g,"").replace(/\s+/g,",").split(","),coords[0]||coords.shift();for(var i=0,l=coords.length;l>i;i++)coords[i]=Math.round(100*coords[i]);switch(letter){case"m":return cx+=coords[0],cy+=coords[1],"t"+coords.join(",");case"M":return cx=coords[0],cy=coords[1],"m"+coords.join(",");case"l":return cx+=coords[0],cy+=coords[1],"r"+coords.join(",");case"L":return cx=coords[0],cy=coords[1],"l"+coords.join(",");case"h":return cx+=coords[0],"r"+coords[0]+",0";case"H":return cx=coords[0],"l"+cx+","+cy;case"v":return cy+=coords[0],"r0,"+coords[0];case"V":return cy=coords[0],"l"+cx+","+cy;case"c":return ctrlx=cx+coords[coords.length-4],ctrly=cy+coords[coords.length-3],cx+=coords[coords.length-2],cy+=coords[coords.length-1],"v"+coords.join(",");case"C":return ctrlx=coords[coords.length-4],ctrly=coords[coords.length-3],cx=coords[coords.length-2],cy=coords[coords.length-1],"c"+coords.join(",");case"s":return coords.unshift(cy-ctrly),coords.unshift(cx-ctrlx),ctrlx=cx+coords[coords.length-4],ctrly=cy+coords[coords.length-3],cx+=coords[coords.length-2],cy+=coords[coords.length-1],"v"+coords.join(",");case"S":return coords.unshift(cy+cy-ctrly),coords.unshift(cx+cx-ctrlx),ctrlx=coords[coords.length-4],ctrly=coords[coords.length-3],cx=coords[coords.length-2],cy=coords[coords.length-1],"c"+coords.join(",")}return""}).replace(/z/g,"e")},jvm.VMLCircleElement=function(config,style){jvm.VMLCircleElement.parentClass.call(this,"oval",config,style)},jvm.inherits(jvm.VMLCircleElement,jvm.VMLShapeElement),jvm.VMLCircleElement.prototype.applyAttr=function(attr,value){switch(attr){case"r":this.node.style.width=2*value+"px",this.node.style.height=2*value+"px",this.applyAttr("cx",this.get("cx")||0),this.applyAttr("cy",this.get("cy")||0);break;case"cx":if(!value)return;this.node.style.left=value-(this.get("r")||0)+"px";break;case"cy":if(!value)return;this.node.style.top=value-(this.get("r")||0)+"px";break;default:jvm.VMLCircleElement.parentClass.prototype.applyAttr.call(this,attr,value)}},jvm.VectorCanvas=function(container,width,height){return this.mode=window.SVGAngle?"svg":"vml",this.impl="svg"==this.mode?new jvm.SVGCanvasElement(container,width,height):new jvm.VMLCanvasElement(container,width,height),this.impl.mode=this.mode,this.impl},jvm.SimpleScale=function(scale){this.scale=scale},jvm.SimpleScale.prototype.getValue=function(value){return value},jvm.OrdinalScale=function(scale){this.scale=scale},jvm.OrdinalScale.prototype.getValue=function(value){return this.scale[value]},jvm.OrdinalScale.prototype.getTicks=function(){var key,ticks=[];for(key in this.scale)ticks.push({label:key,value:this.scale[key]});return ticks},jvm.NumericScale=function(scale,normalizeFunction,minValue,maxValue){this.scale=[],normalizeFunction=normalizeFunction||"linear",scale&&this.setScale(scale),normalizeFunction&&this.setNormalizeFunction(normalizeFunction),"undefined"!=typeof minValue&&this.setMin(minValue),"undefined"!=typeof maxValue&&this.setMax(maxValue)},jvm.NumericScale.prototype={setMin:function(min){this.clearMinValue=min,this.minValue="function"==typeof this.normalize?this.normalize(min):min},setMax:function(max){this.clearMaxValue=max,this.maxValue="function"==typeof this.normalize?this.normalize(max):max},setScale:function(scale){var i;for(this.scale=[],i=0;i=0;)value-=lengthes[i],i++;return value=this.vectorToNum(i==this.scale.length-1?this.scale[i]:this.vectorAdd(this.scale[i],this.vectorMult(this.vectorSubtract(this.scale[i+1],this.scale[i]),value/lengthes[i])))},vectorToNum:function(vector){var i,num=0;for(i=0;i=err?step*=10:.35>=err?step*=5:.75>=err&&(step*=2),extent[0]=Math.floor(extent[0]/step)*step,extent[1]=Math.ceil(extent[1]/step)*step,tick=extent[0];tick<=extent[1];)v=tick==extent[0]?this.clearMinValue:tick==extent[1]?this.clearMaxValue:tick,ticks.push({label:tick,value:this.getValue(v)}),tick+=step;return ticks}},jvm.ColorScale=function(){jvm.ColorScale.parentClass.apply(this,arguments)},jvm.inherits(jvm.ColorScale,jvm.NumericScale),jvm.ColorScale.prototype.setScale=function(scale){var i;for(i=0;i"),this.body.addClass("jvectormap-legend"),this.params.cssClass&&this.body.addClass(this.params.cssClass),params.vertical?this.map.legendCntVertical.append(this.body):this.map.legendCntHorizontal.append(this.body),this.render()},jvm.Legend.prototype.render=function(){var i,tick,sample,label,ticks=this.series.scale.getTicks(),inner=jvm.$("
").addClass("jvectormap-legend-inner");for(this.body.html(""),this.params.title&&this.body.append(jvm.$("
").addClass("jvectormap-legend-title").html(this.params.title)),this.body.append(inner),i=0;i").addClass("jvectormap-legend-tick"),sample=jvm.$("
").addClass("jvectormap-legend-tick-sample"),this.series.params.attribute){case"fill":jvm.isImageUrl(ticks[i].value)?sample.css("background","url("+ticks[i].value+")"):sample.css("background",ticks[i].value);break;case"stroke":sample.css("background",ticks[i].value);break;case"image":sample.css("background","url("+ticks[i].value+") no-repeat center center");break;case"r":jvm.$("
").css({"border-radius":ticks[i].value,border:this.map.params.markerStyle.initial["stroke-width"]+"px "+this.map.params.markerStyle.initial.stroke+" solid",width:2*ticks[i].value+"px",height:2*ticks[i].value+"px",background:this.map.params.markerStyle.initial.fill}).appendTo(sample)}tick.append(sample),label=ticks[i].label,this.params.labelRender&&(label=this.params.labelRender(label)),tick.append(jvm.$("
"+label+"
").addClass("jvectormap-legend-tick-text")),inner.append(tick)}inner.append(jvm.$("
").css("clear","both"))},jvm.DataSeries=function(params,elements,map){var scaleConstructor;params=params||{},params.attribute=params.attribute||"fill",this.elements=elements,this.params=params,this.map=map,params.attributes&&this.setAttributes(params.attributes),jvm.$.isArray(params.scale)?(scaleConstructor="fill"===params.attribute||"stroke"===params.attribute?jvm.ColorScale:jvm.NumericScale,this.scale=new scaleConstructor(params.scale,params.normalizeFunction,params.min,params.max)):this.scale=params.scale?new jvm.OrdinalScale(params.scale):new jvm.SimpleScale(params.scale),this.values=params.values||{},this.setValues(this.values),this.params.legend&&(this.legend=new jvm.Legend($.extend({map:this.map,series:this},this.params.legend)))},jvm.DataSeries.prototype={setAttributes:function(key,attr){var code,attrs=key;if("string"==typeof key)this.elements[key]&&this.elements[key].setStyle(this.params.attribute,attr);else for(code in attrs)this.elements[code]&&this.elements[code].element.setStyle(this.params.attribute,attrs[code])},setValues:function(values){var val,cc,max=-Number.MAX_VALUE,min=Number.MAX_VALUE,attrs={};if(this.scale instanceof jvm.OrdinalScale||this.scale instanceof jvm.SimpleScale)for(cc in values)attrs[cc]=values[cc]?this.scale.getValue(values[cc]):this.elements[cc].element.style.initial[this.params.attribute];else{if("undefined"==typeof this.params.min||"undefined"==typeof this.params.max)for(cc in values)val=parseFloat(values[cc]),val>max&&(max=val),min>val&&(min=val);"undefined"==typeof this.params.min?(this.scale.setMin(min),this.params.min=min):this.scale.setMin(this.params.min),"undefined"==typeof this.params.max?(this.scale.setMax(max),this.params.max=max):this.scale.setMax(this.params.max);for(cc in values)"indexOf"!=cc&&(val=parseFloat(values[cc]),attrs[cc]=isNaN(val)?this.elements[cc].element.style.initial[this.params.attribute]:this.scale.getValue(val))}this.setAttributes(attrs),jvm.$.extend(this.values,values)},clear:function(){var key,attrs={};for(key in this.values)this.elements[key]&&(attrs[key]=this.elements[key].element.shape.style.initial[this.params.attribute]);this.setAttributes(attrs),this.values={}},setScale:function(scale){this.scale.setScale(scale),this.values&&this.setValues(this.values)},setNormalizeFunction:function(f){this.scale.setNormalizeFunction(f),this.values&&this.setValues(this.values)}},jvm.Proj={degRad:180/Math.PI,radDeg:Math.PI/180,radius:6381372,sgn:function(n){return n>0?1:0>n?-1:n},mill:function(lat,lng,c){return{x:this.radius*(lng-c)*this.radDeg,y:-this.radius*Math.log(Math.tan((45+.4*lat)*this.radDeg))/.8}},mill_inv:function(x,y,c){return{lat:(2.5*Math.atan(Math.exp(.8*y/this.radius))-5*Math.PI/8)*this.degRad,lng:(c*this.radDeg+x/this.radius)*this.degRad}},merc:function(lat,lng,c){return{x:this.radius*(lng-c)*this.radDeg,y:-this.radius*Math.log(Math.tan(Math.PI/4+lat*Math.PI/360))}},merc_inv:function(x,y,c){return{lat:(2*Math.atan(Math.exp(y/this.radius))-Math.PI/2)*this.degRad,lng:(c*this.radDeg+x/this.radius)*this.degRad}},aea:function(lat,lng,c){var fi0=0,lambda0=c*this.radDeg,fi1=29.5*this.radDeg,fi2=45.5*this.radDeg,fi=lat*this.radDeg,lambda=lng*this.radDeg,n=(Math.sin(fi1)+Math.sin(fi2))/2,C=Math.cos(fi1)*Math.cos(fi1)+2*n*Math.sin(fi1),theta=n*(lambda-lambda0),ro=Math.sqrt(C-2*n*Math.sin(fi))/n,ro0=Math.sqrt(C-2*n*Math.sin(fi0))/n;return{x:ro*Math.sin(theta)*this.radius,y:-(ro0-ro*Math.cos(theta))*this.radius}},aea_inv:function(xCoord,yCoord,c){var x=xCoord/this.radius,y=yCoord/this.radius,fi0=0,lambda0=c*this.radDeg,fi1=29.5*this.radDeg,fi2=45.5*this.radDeg,n=(Math.sin(fi1)+Math.sin(fi2))/2,C=Math.cos(fi1)*Math.cos(fi1)+2*n*Math.sin(fi1),ro0=Math.sqrt(C-2*n*Math.sin(fi0))/n,ro=Math.sqrt(x*x+(ro0-y)*(ro0-y)),theta=Math.atan(x/(ro0-y));return{lat:Math.asin((C-ro*ro*n*n)/(2*n))*this.degRad,lng:(lambda0+theta/n)*this.degRad}},lcc:function(lat,lng,c){var fi0=0,lambda0=c*this.radDeg,lambda=lng*this.radDeg,fi1=33*this.radDeg,fi2=45*this.radDeg,fi=lat*this.radDeg,n=Math.log(Math.cos(fi1)*(1/Math.cos(fi2)))/Math.log(Math.tan(Math.PI/4+fi2/2)*(1/Math.tan(Math.PI/4+fi1/2))),F=Math.cos(fi1)*Math.pow(Math.tan(Math.PI/4+fi1/2),n)/n,ro=F*Math.pow(1/Math.tan(Math.PI/4+fi/2),n),ro0=F*Math.pow(1/Math.tan(Math.PI/4+fi0/2),n);return{x:ro*Math.sin(n*(lambda-lambda0))*this.radius,y:-(ro0-ro*Math.cos(n*(lambda-lambda0)))*this.radius}},lcc_inv:function(xCoord,yCoord,c){var x=xCoord/this.radius,y=yCoord/this.radius,fi0=0,lambda0=c*this.radDeg,fi1=33*this.radDeg,fi2=45*this.radDeg,n=Math.log(Math.cos(fi1)*(1/Math.cos(fi2)))/Math.log(Math.tan(Math.PI/4+fi2/2)*(1/Math.tan(Math.PI/4+fi1/2))),F=Math.cos(fi1)*Math.pow(Math.tan(Math.PI/4+fi1/2),n)/n,ro0=F*Math.pow(1/Math.tan(Math.PI/4+fi0/2),n),ro=this.sgn(n)*Math.sqrt(x*x+(ro0-y)*(ro0-y)),theta=Math.atan(x/(ro0-y));return{lat:(2*Math.atan(Math.pow(F/ro,1/n))-Math.PI/2)*this.degRad,lng:(lambda0+theta/n)*this.degRad}}},jvm.MapObject=function(){},jvm.MapObject.prototype.getLabelText=function(key){var text;return text=this.config.label?"function"==typeof this.config.label.render?this.config.label.render(key):key:null},jvm.MapObject.prototype.getLabelOffsets=function(key){var offsets;return this.config.label&&("function"==typeof this.config.label.offsets?offsets=this.config.label.offsets(key):"object"==typeof this.config.label.offsets&&(offsets=this.config.label.offsets[key])),offsets||[0,0]},jvm.MapObject.prototype.setHovered=function(isHovered){this.isHovered!==isHovered&&(this.isHovered=isHovered,this.shape.isHovered=isHovered,this.shape.updateStyle(),this.label&&(this.label.isHovered=isHovered,this.label.updateStyle()))},jvm.MapObject.prototype.setSelected=function(isSelected){this.isSelected!==isSelected&&(this.isSelected=isSelected,this.shape.isSelected=isSelected,this.shape.updateStyle(),this.label&&(this.label.isSelected=isSelected,this.label.updateStyle()),jvm.$(this.shape).trigger("selected",[isSelected]))},jvm.MapObject.prototype.setStyle=function(){this.shape.setStyle.apply(this.shape,arguments)},jvm.MapObject.prototype.remove=function(){this.shape.remove(),this.label&&this.label.remove()},jvm.Region=function(config){var bbox,text,offsets;this.config=config,this.map=this.config.map,this.shape=config.canvas.addPath({d:config.path,"data-code":config.code},config.style,config.canvas.rootElement),this.shape.addClass("jvectormap-region jvectormap-element"),bbox=this.shape.getBBox(),text=this.getLabelText(config.code), -this.config.label&&text&&(offsets=this.getLabelOffsets(config.code),this.labelX=bbox.x+bbox.width/2+offsets[0],this.labelY=bbox.y+bbox.height/2+offsets[1],this.label=config.canvas.addText({text:text,"text-anchor":"middle","alignment-baseline":"central",x:this.labelX,y:this.labelY,"data-code":config.code},config.labelStyle,config.labelsGroup),this.label.addClass("jvectormap-region jvectormap-element"))},jvm.inherits(jvm.Region,jvm.MapObject),jvm.Region.prototype.updateLabelPosition=function(){this.label&&this.label.set({x:this.labelX*this.map.scale+this.map.transX*this.map.scale,y:this.labelY*this.map.scale+this.map.transY*this.map.scale})},jvm.Marker=function(config){var text;this.config=config,this.map=this.config.map,this.isImage=!!this.config.style.initial.image,this.createShape(),text=this.getLabelText(config.index),this.config.label&&text&&(this.offsets=this.getLabelOffsets(config.index),this.labelX=config.cx/this.map.scale-this.map.transX,this.labelY=config.cy/this.map.scale-this.map.transY,this.label=config.canvas.addText({text:text,"data-index":config.index,dy:"0.6ex",x:this.labelX,y:this.labelY},config.labelStyle,config.labelsGroup),this.label.addClass("jvectormap-marker jvectormap-element"))},jvm.inherits(jvm.Marker,jvm.MapObject),jvm.Marker.prototype.createShape=function(){var that=this;this.shape&&this.shape.remove(),this.shape=this.config.canvas[this.isImage?"addImage":"addCircle"]({"data-index":this.config.index,cx:this.config.cx,cy:this.config.cy},this.config.style,this.config.group),this.shape.addClass("jvectormap-marker jvectormap-element"),this.isImage&&jvm.$(this.shape.node).on("imageloaded",function(){that.updateLabelPosition()})},jvm.Marker.prototype.updateLabelPosition=function(){this.label&&this.label.set({x:this.labelX*this.map.scale+this.offsets[0]+this.map.transX*this.map.scale+5+(this.isImage?(this.shape.width||0)/2:this.shape.properties.r),y:this.labelY*this.map.scale+this.map.transY*this.map.scale+this.offsets[1]})},jvm.Marker.prototype.setStyle=function(property){var isImage;jvm.Marker.parentClass.prototype.setStyle.apply(this,arguments),"r"===property&&this.updateLabelPosition(),isImage=!!this.shape.get("image"),isImage!=this.isImage&&(this.isImage=isImage,this.config.style=jvm.$.extend(!0,{},this.shape.style),this.createShape())},jvm.Map=function(params){var e,map=this;if(this.params=jvm.$.extend(!0,{},jvm.Map.defaultParams,params),!jvm.Map.maps[this.params.map])throw new Error("Attempt to use map which was not loaded: "+this.params.map);this.mapData=jvm.Map.maps[this.params.map],this.markers={},this.regions={},this.regionsColors={},this.regionsData={},this.container=jvm.$("
").addClass("jvectormap-container"),this.params.container&&this.params.container.append(this.container),this.container.data("mapObject",this),this.defaultWidth=this.mapData.width,this.defaultHeight=this.mapData.height,this.setBackgroundColor(this.params.backgroundColor),this.onResize=function(){map.updateSize()},jvm.$(window).resize(this.onResize);for(e in jvm.Map.apiEvents)this.params[e]&&this.container.bind(jvm.Map.apiEvents[e]+".jvectormap",this.params[e]);this.canvas=new jvm.VectorCanvas(this.container[0],this.width,this.height),this.params.bindTouchEvents&&("ontouchstart"in window||window.DocumentTouch&&document instanceof DocumentTouch?this.bindContainerTouchEvents():window.MSGesture&&this.bindContainerPointerEvents()),this.bindContainerEvents(),this.bindElementEvents(),this.createTip(),this.params.zoomButtons&&this.bindZoomButtons(),this.createRegions(),this.createMarkers(this.params.markers||{}),this.updateSize(),this.params.focusOn&&("string"==typeof this.params.focusOn?this.params.focusOn={region:this.params.focusOn}:jvm.$.isArray(this.params.focusOn)&&(this.params.focusOn={regions:this.params.focusOn}),this.setFocus(this.params.focusOn)),this.params.selectedRegions&&this.setSelectedRegions(this.params.selectedRegions),this.params.selectedMarkers&&this.setSelectedMarkers(this.params.selectedMarkers),this.legendCntHorizontal=jvm.$("
").addClass("jvectormap-legend-cnt jvectormap-legend-cnt-h"),this.legendCntVertical=jvm.$("
").addClass("jvectormap-legend-cnt jvectormap-legend-cnt-v"),this.container.append(this.legendCntHorizontal),this.container.append(this.legendCntVertical),this.params.series&&this.createSeries()},jvm.Map.prototype={transX:0,transY:0,scale:1,baseTransX:0,baseTransY:0,baseScale:1,width:0,height:0,setBackgroundColor:function(backgroundColor){this.container.css("background-color",backgroundColor)},resize:function(){var curBaseScale=this.baseScale;this.width/this.height>this.defaultWidth/this.defaultHeight?(this.baseScale=this.height/this.defaultHeight,this.baseTransX=Math.abs(this.width-this.defaultWidth*this.baseScale)/(2*this.baseScale)):(this.baseScale=this.width/this.defaultWidth,this.baseTransY=Math.abs(this.height-this.defaultHeight*this.baseScale)/(2*this.baseScale)),this.scale*=this.baseScale/curBaseScale,this.transX*=this.baseScale/curBaseScale,this.transY*=this.baseScale/curBaseScale},updateSize:function(){this.width=this.container.width(),this.height=this.container.height(),this.resize(),this.canvas.setSize(this.width,this.height),this.applyTransform()},reset:function(){var key,i;for(key in this.series)for(i=0;imaxTransY?this.transY=maxTransY:this.transYmaxTransX?this.transX=maxTransX:this.transXtouches[1].pageX?touches[1].pageX+(touches[0].pageX-touches[1].pageX)/2:touches[0].pageX+(touches[1].pageX-touches[0].pageX)/2,centerTouchY=touches[0].pageY>touches[1].pageY?touches[1].pageY+(touches[0].pageY-touches[1].pageY)/2:touches[0].pageY+(touches[1].pageY-touches[0].pageY)/2,centerTouchX-=offset.left,centerTouchY-=offset.top,touchStartScale=map.scale,touchStartDistance=Math.sqrt(Math.pow(touches[0].pageX-touches[1].pageX,2)+Math.pow(touches[0].pageY-touches[1].pageY,2)))),lastTouchesLength=touches.length};jvm.$(this.container).bind("touchstart",handleTouchEvent),jvm.$(this.container).bind("touchmove",handleTouchEvent)},bindContainerPointerEvents:function(){var map=this,gesture=new MSGesture,element=this.container[0],handlePointerDownEvent=function(e){gesture.addPointer(e.pointerId)},handleGestureEvent=function(e){var transXOld,transYOld;(0!=e.translationX||0!=e.translationY)&&(transXOld=map.transX,transYOld=map.transY,map.transX+=e.translationX/map.scale,map.transY+=e.translationY/map.scale,map.applyTransform(),map.tip.hide(),(transXOld!=map.transX||transYOld!=map.transY)&&e.preventDefault()),1!=e.scale&&(map.setScale(map.scale*e.scale,e.offsetX,e.offsetY),map.tip.hide(),e.preventDefault())};gesture.target=element,element.addEventListener("MSGestureChange",handleGestureEvent,!1),element.addEventListener("pointerdown",handlePointerDownEvent,!1)},bindElementEvents:function(){var pageX,pageY,mouseMoved,map=this;this.container.mousemove(function(e){Math.abs(pageX-e.pageX)+Math.abs(pageY-e.pageY)>2&&(mouseMoved=!0)}),this.container.delegate("[class~='jvectormap-element']","mouseover mouseout",function(e){var baseVal=jvm.$(this).attr("class").baseVal||jvm.$(this).attr("class"),type=-1===baseVal.indexOf("jvectormap-region")?"marker":"region",code=jvm.$(this).attr("region"==type?"data-code":"data-index"),element="region"==type?map.regions[code].element:map.markers[code].element,tipText="region"==type?map.mapData.paths[code].name:map.markers[code].config.name||"",tipShowEvent=jvm.$.Event(type+"TipShow.jvectormap"),overEvent=jvm.$.Event(type+"Over.jvectormap");"mouseover"==e.type?(map.container.trigger(overEvent,[code]),overEvent.isDefaultPrevented()||element.setHovered(!0),map.tip.text(tipText),map.container.trigger(tipShowEvent,[map.tip,code]),tipShowEvent.isDefaultPrevented()||(map.tip.show(),map.tipWidth=map.tip.width(),map.tipHeight=map.tip.height())):(element.setHovered(!1),map.tip.hide(),map.container.trigger(type+"Out.jvectormap",[code]))}),this.container.delegate("[class~='jvectormap-element']","mousedown",function(e){pageX=e.pageX,pageY=e.pageY,mouseMoved=!1}),this.container.delegate("[class~='jvectormap-element']","mouseup",function(){var baseVal=jvm.$(this).attr("class").baseVal?jvm.$(this).attr("class").baseVal:jvm.$(this).attr("class"),type=-1===baseVal.indexOf("jvectormap-region")?"marker":"region",code=jvm.$(this).attr("region"==type?"data-code":"data-index"),clickEvent=jvm.$.Event(type+"Click.jvectormap"),element="region"==type?map.regions[code].element:map.markers[code].element;mouseMoved||(map.container.trigger(clickEvent,[code]),("region"===type&&map.params.regionsSelectable||"marker"===type&&map.params.markersSelectable)&&(clickEvent.isDefaultPrevented()||(map.params[type+"sSelectableOne"]&&map.clearSelected(type+"s"),element.setSelected(!element.isSelected))))})},bindZoomButtons:function(){var map=this;jvm.$("
").addClass("jvectormap-zoomin").text("+").appendTo(this.container),jvm.$("
").addClass("jvectormap-zoomout").html("−").appendTo(this.container),this.container.find(".jvectormap-zoomin").click(function(){map.setScale(map.scale*map.params.zoomStep,map.width/2,map.height/2,!1,map.params.zoomAnimate)}),this.container.find(".jvectormap-zoomout").click(function(){map.setScale(map.scale/map.params.zoomStep,map.width/2,map.height/2,!1,map.params.zoomAnimate)})},createTip:function(){var map=this;this.tip=jvm.$("
").addClass("jvectormap-tip").appendTo(jvm.$("body")),this.container.mousemove(function(e){var left=e.pageX-15-map.tipWidth,top=e.pageY-15-map.tipHeight;5>left&&(left=e.pageX+15),5>top&&(top=e.pageY+15),map.tip.css({left:left,top:top})})},setScale:function(scale,anchorX,anchorY,isCentered,animate){var interval,scaleStart,scaleDiff,transXStart,transXDiff,transYStart,transYDiff,transX,transY,viewportChangeEvent=jvm.$.Event("zoom.jvectormap"),that=this,i=0,count=Math.abs(Math.round(60*(scale-this.scale)/Math.max(scale,this.scale))),deferred=new jvm.$.Deferred;return scale>this.params.zoomMax*this.baseScale?scale=this.params.zoomMax*this.baseScale:scale0?(scaleStart=this.scale,scaleDiff=(scale-scaleStart)/count,transXStart=this.transX*this.scale,transYStart=this.transY*this.scale,transXDiff=(transX*scale-transXStart)/count,transYDiff=(transY*scale-transYStart)/count,interval=setInterval(function(){i+=1,that.scale=scaleStart+scaleDiff*i,that.transX=(transXStart+transXDiff*i)/that.scale,that.transY=(transYStart+transYDiff*i)/that.scale,that.applyTransform(),i==count&&(clearInterval(interval),that.container.trigger(viewportChangeEvent,[scale/that.baseScale]),deferred.resolve())},10)):(this.transX=transX,this.transY=transY,this.scale=scale,this.applyTransform(),this.container.trigger(viewportChangeEvent,[scale/this.baseScale]),deferred.resolve()),deferred},setFocus:function(config){var bbox,itemBbox,newBbox,codes,i,point;if(config=config||{},config.region?codes=[config.region]:config.regions&&(codes=config.regions),codes){for(i=0;ilng&&(lng+=360),point=jvm.Proj[proj.type](lat,lng,centralMeridian),inset=this.getInsetForPoint(point.x,point.y),inset?(bbox=inset.bbox,point.x=(point.x-bbox[0].x)/(bbox[1].x-bbox[0].x)*inset.width*this.scale,point.y=(point.y-bbox[0].y)/(bbox[1].y-bbox[0].y)*inset.height*this.scale,{x:point.x+this.transX*this.scale+inset.left*this.scale,y:point.y+this.transY*this.scale+inset.top*this.scale}):!1},pointToLatLng:function(x,y){var i,inset,bbox,nx,ny,proj=jvm.Map.maps[this.params.map].projection,centralMeridian=proj.centralMeridian,insets=jvm.Map.maps[this.params.map].insets;for(i=0;ibbox[0].x&&nxbbox[0].y&&nybbox[0].x&&xbbox[0].y&&y").addClass("jvectormap-goback").text("Back").appendTo(this.params.container),this.backButton.hide(),this.backButton.click(function(){that.goBack()}),this.spinner=jvm.$("
").addClass("jvectormap-spinner").appendTo(this.params.container),this.spinner.hide()},jvm.MultiMap.prototype={addMap:function(name,config){var cnt=jvm.$("
").css({width:"100%",height:"100%"});return this.params.container.append(cnt),this.maps[name]=new jvm.Map(jvm.$.extend(config,{container:cnt})),this.params.maxLevel>config.multiMapLevel&&this.maps[name].container.on("regionClick.jvectormap",{scope:this},function(e,code){var multimap=e.data.scope,mapName=multimap.params.mapNameByCode(code,multimap);multimap.drillDownPromise&&"pending"===multimap.drillDownPromise.state()||multimap.drillDown(mapName,code)}),this.maps[name]},downloadMap:function(code){var that=this,deferred=jvm.$.Deferred();return this.mapsLoaded[code]?deferred.resolve():jvm.$.get(this.params.mapUrlByCode(code,this)).then(function(){that.mapsLoaded[code]=!0,deferred.resolve()},function(){deferred.reject()}),deferred},drillDown:function(name,code){var currentMap=this.history[this.history.length-1],that=this,focusPromise=currentMap.setFocus({region:code,animate:!0}),downloadPromise=this.downloadMap(code);focusPromise.then(function(){"pending"===downloadPromise.state()&&that.spinner.show()}),downloadPromise.always(function(){that.spinner.hide()}),this.drillDownPromise=jvm.$.when(downloadPromise,focusPromise),this.drillDownPromise.then(function(){currentMap.params.container.hide(),that.maps[name]?that.maps[name].params.container.show():that.addMap(name,{map:name,multiMapLevel:currentMap.params.multiMapLevel+1}),that.history.push(that.maps[name]),that.backButton.show()})},goBack:function(){var currentMap=this.history.pop(),prevMap=this.history[this.history.length-1],that=this;currentMap.setFocus({scale:1,x:.5,y:.5,animate:!0}).then(function(){currentMap.params.container.hide(),prevMap.params.container.show(),prevMap.updateSize(),1===that.history.length&&that.backButton.hide(),prevMap.setFocus({scale:1,x:.5,y:.5,animate:!0})})}},jvm.MultiMap.defaultParams={mapNameByCode:function(code,multiMap){return code.toLowerCase()+"_"+multiMap.defaultProjection+"_en"},mapUrlByCode:function(code,multiMap){return"jquery-jvectormap-data-"+code.toLowerCase()+"-"+multiMap.defaultProjection+"-en.js"}}; \ No newline at end of file +!function($){var apiParams={set:{colors:1,values:1,backgroundColor:1,scaleColors:1,normalizeFunction:1,focus:1},get:{selectedRegions:1,selectedMarkers:1,mapObject:1,regionName:1}};$.fn.vectorMap=function(options){var map=this.children(".jvectormap-container").data("mapObject");if("addMap"===options)jvm.Map.maps[arguments[1]]=arguments[2];else{if(("set"===options||"get"===options)&&apiParams[options][arguments[1]])return map[options+(arguments[1].charAt(0).toUpperCase()+arguments[1].substr(1))].apply(map,Array.prototype.slice.call(arguments,2));(options=options||{}).container=this,map=new jvm.Map(options)}return this}}(jQuery),function(factory){"function"==typeof define&&define.amd?define(["jquery"],factory):"object"==typeof exports?module.exports=factory:factory(jQuery)}(function($){var nullLowestDeltaTimeout,lowestDelta,toFix=["wheel","mousewheel","DOMMouseScroll","MozMousePixelScroll"],toBind="onwheel"in document||9<=document.documentMode?["wheel"]:["mousewheel","DomMouseScroll","MozMousePixelScroll"],slice=Array.prototype.slice;if($.event.fixHooks)for(var i=toFix.length;i;)$.event.fixHooks[toFix[--i]]=$.event.mouseHooks;var special=$.event.special.mousewheel={version:"3.1.9",setup:function(){if(this.addEventListener)for(var i=toBind.length;i;)this.addEventListener(toBind[--i],handler,!1);else this.onmousewheel=handler;$.data(this,"mousewheel-line-height",special.getLineHeight(this)),$.data(this,"mousewheel-page-height",special.getPageHeight(this))},teardown:function(){if(this.removeEventListener)for(var i=toBind.length;i;)this.removeEventListener(toBind[--i],handler,!1);else this.onmousewheel=null},getLineHeight:function(elem){return parseInt($(elem)["offsetParent"in $.fn?"offsetParent":"parent"]().css("fontSize"),10)},getPageHeight:function(elem){return $(elem).height()},settings:{adjustOldDeltas:!0}};function handler(event){var absDelta,orgEvent=event||window.event,args=slice.call(arguments,1),delta=0,deltaX=0,deltaY=0;if((event=$.event.fix(orgEvent)).type="mousewheel","detail"in orgEvent&&(deltaY=-1*orgEvent.detail),"wheelDelta"in orgEvent&&(deltaY=orgEvent.wheelDelta),"wheelDeltaY"in orgEvent&&(deltaY=orgEvent.wheelDeltaY),"wheelDeltaX"in orgEvent&&(deltaX=-1*orgEvent.wheelDeltaX),"axis"in orgEvent&&orgEvent.axis===orgEvent.HORIZONTAL_AXIS&&(deltaX=-1*deltaY,deltaY=0),delta=0===deltaY?deltaX:deltaY,"deltaY"in orgEvent&&(delta=deltaY=-1*orgEvent.deltaY),"deltaX"in orgEvent&&(deltaX=orgEvent.deltaX,0===deltaY&&(delta=-1*deltaX)),0!==deltaY||0!==deltaX){if(1===orgEvent.deltaMode){var lineHeight=$.data(this,"mousewheel-line-height");delta*=lineHeight,deltaY*=lineHeight,deltaX*=lineHeight}else if(2===orgEvent.deltaMode){var pageHeight=$.data(this,"mousewheel-page-height");delta*=pageHeight,deltaY*=pageHeight,deltaX*=pageHeight}return absDelta=Math.max(Math.abs(deltaY),Math.abs(deltaX)),(!lowestDelta||absDeltamax&&(max=values[i]);else for(i in values)values[i]>max&&(max=values[i]);return max},keys:function(object){var key,keys=[];for(key in object)keys.push(key);return keys},values:function(object){var key,i,values=[];for(i=0;i");return img.on("error",function(){deferred.reject()}).on("load",function(){deferred.resolve(img)}),img.attr("src",url),deferred},isImageUrl:function(s){return/\.\w{3,4}$/.test(s)}};jvm.$=jQuery,Array.prototype.indexOf||(Array.prototype.indexOf=function(searchElement,fromIndex){var k;if(null==this)throw new TypeError('"this" is null or not defined');var O=Object(this),len=O.length>>>0;if(0==len)return-1;var n=+fromIndex||0;if(Math.abs(n)===1/0&&(n=0),len<=n)return-1;for(k=Math.max(0<=n?n:len-Math.abs(n),0);k')}}catch(e){jvm.VMLElement.prototype.createElement=function(tagName){return document.createElement("<"+tagName+' xmlns="urn:schemas-microsoft.com:vml" class="rvml">')}}document.createStyleSheet().addRule(".rvml","behavior:url(#default#VML)"),jvm.VMLElement.VMLInitialized=!0},jvm.VMLElement.prototype.getElementCtr=function(ctr){return jvm["VML"+ctr]},jvm.VMLElement.prototype.addClass=function(className){jvm.$(this.node).addClass(className)},jvm.VMLElement.prototype.applyAttr=function(attr,value){this.node[attr]=value},jvm.VMLElement.prototype.getBBox=function(){var node=jvm.$(this.node);return{x:node.position().left/this.canvas.scale,y:node.position().top/this.canvas.scale,width:node.width()/this.canvas.scale,height:node.height()/this.canvas.scale}},jvm.VMLGroupElement=function(){jvm.VMLGroupElement.parentClass.call(this,"group"),this.node.style.left="0px",this.node.style.top="0px",this.node.coordorigin="0 0"},jvm.inherits(jvm.VMLGroupElement,jvm.VMLElement),jvm.VMLGroupElement.prototype.add=function(element){this.node.appendChild(element.node)},jvm.VMLCanvasElement=function(container,width,height){this.classPrefix="VML",jvm.VMLCanvasElement.parentClass.call(this,"group"),jvm.AbstractCanvasElement.apply(this,arguments),this.node.style.position="absolute"},jvm.inherits(jvm.VMLCanvasElement,jvm.VMLElement),jvm.mixin(jvm.VMLCanvasElement,jvm.AbstractCanvasElement),jvm.VMLCanvasElement.prototype.setSize=function(width,height){var paths,groups,i,l;if(this.width=width,this.height=height,this.node.style.width=width+"px",this.node.style.height=height+"px",this.node.coordsize=width+" "+height,this.node.coordorigin="0 0",this.rootElement){for(i=0,l=(paths=this.rootElement.node.getElementsByTagName("shape")).length;i"),this.body.addClass("jvectormap-legend"),this.params.cssClass&&this.body.addClass(this.params.cssClass),params.vertical?this.map.legendCntVertical.append(this.body):this.map.legendCntHorizontal.append(this.body),this.render()},jvm.Legend.prototype.render=function(){var i,tick,sample,label,ticks=this.series.scale.getTicks(),inner=jvm.$("
").addClass("jvectormap-legend-inner");for(this.body.html(""),this.params.title&&this.body.append(jvm.$("
").addClass("jvectormap-legend-title").html(this.params.title)),this.body.append(inner),i=0;i").addClass("jvectormap-legend-tick"),sample=jvm.$("
").addClass("jvectormap-legend-tick-sample"),this.series.params.attribute){case"fill":jvm.isImageUrl(ticks[i].value)?sample.css("background","url("+ticks[i].value+")"):sample.css("background",ticks[i].value);break;case"stroke":sample.css("background",ticks[i].value);break;case"image":sample.css("background","url("+("object"==typeof ticks[i].value?ticks[i].value.url:ticks[i].value)+") no-repeat center center");break;case"r":jvm.$("
").css({"border-radius":ticks[i].value,border:this.map.params.markerStyle.initial["stroke-width"]+"px "+this.map.params.markerStyle.initial.stroke+" solid",width:2*ticks[i].value+"px",height:2*ticks[i].value+"px",background:this.map.params.markerStyle.initial.fill}).appendTo(sample)}tick.append(sample),label=ticks[i].label,this.params.labelRender&&(label=this.params.labelRender(label)),tick.append(jvm.$("
"+label+"
").addClass("jvectormap-legend-tick-text")),inner.append(tick)}inner.append(jvm.$("
").css("clear","both"))},jvm.DataSeries=function(params,elements,map){var scaleConstructor;(params=params||{}).attribute=params.attribute||"fill",this.elements=elements,this.params=params,this.map=map,params.attributes&&this.setAttributes(params.attributes),jvm.$.isArray(params.scale)?(scaleConstructor="fill"===params.attribute||"stroke"===params.attribute?jvm.ColorScale:jvm.NumericScale,this.scale=new scaleConstructor(params.scale,params.normalizeFunction,params.min,params.max)):params.scale?this.scale=new jvm.OrdinalScale(params.scale):this.scale=new jvm.SimpleScale(params.scale),this.values=params.values||{},this.setValues(this.values),this.params.legend&&(this.legend=new jvm.Legend(jvm.$.extend({map:this.map,series:this},this.params.legend)))},jvm.DataSeries.prototype={setAttributes:function(key,attr){var code,attrs=key;if("string"==typeof key)this.elements[key]&&this.elements[key].setStyle(this.params.attribute,attr);else for(code in attrs)this.elements[code]&&this.elements[code].element.setStyle(this.params.attribute,attrs[code])},setValues:function(values){var val,cc,max=-Number.MAX_VALUE,min=Number.MAX_VALUE,attrs={};if(this.scale instanceof jvm.OrdinalScale||this.scale instanceof jvm.SimpleScale)for(cc in values)values[cc]?attrs[cc]=this.scale.getValue(values[cc]):attrs[cc]=this.elements[cc].element.style.initial[this.params.attribute];else{if(void 0===this.params.min||void 0===this.params.max)for(cc in values)max<(val=parseFloat(values[cc]))&&(max=val),val").addClass("jvectormap-container"),this.params.container&&this.params.container.append(this.container),this.container.data("mapObject",this),this.defaultWidth=this.mapData.width,this.defaultHeight=this.mapData.height,this.setBackgroundColor(this.params.backgroundColor),this.onResize=function(){map.updateSize()},jvm.$(window).resize(this.onResize),jvm.Map.apiEvents)this.params[e]&&this.container.bind(jvm.Map.apiEvents[e]+".jvectormap",this.params[e]);this.canvas=new jvm.VectorCanvas(this.container[0],this.width,this.height),this.params.bindTouchEvents&&("ontouchstart"in window||window.DocumentTouch&&document instanceof DocumentTouch?this.bindContainerTouchEvents():window.MSGesture&&this.bindContainerPointerEvents()),this.bindContainerEvents(),this.bindElementEvents(),this.createTip(),this.params.zoomButtons&&this.bindZoomButtons(),this.createRegions(),this.createMarkers(this.params.markers||{}),this.updateSize(),this.params.focusOn&&("string"==typeof this.params.focusOn?this.params.focusOn={region:this.params.focusOn}:jvm.$.isArray(this.params.focusOn)&&(this.params.focusOn={regions:this.params.focusOn}),this.setFocus(this.params.focusOn)),this.params.selectedRegions&&this.setSelectedRegions(this.params.selectedRegions),this.params.selectedMarkers&&this.setSelectedMarkers(this.params.selectedMarkers),this.legendCntHorizontal=jvm.$("
").addClass("jvectormap-legend-cnt jvectormap-legend-cnt-h"),this.legendCntVertical=jvm.$("
").addClass("jvectormap-legend-cnt jvectormap-legend-cnt-v"),this.container.append(this.legendCntHorizontal),this.container.append(this.legendCntVertical),this.params.series&&this.createSeries()},jvm.Map.prototype={transX:0,transY:0,scale:1,baseTransX:0,baseTransY:0,baseScale:1,width:0,height:0,setBackgroundColor:function(backgroundColor){this.container.css("background-color",backgroundColor)},resize:function(){var curBaseScale=this.baseScale;this.width/this.height>this.defaultWidth/this.defaultHeight?(this.baseScale=this.height/this.defaultHeight,this.baseTransX=Math.abs(this.width-this.defaultWidth*this.baseScale)/(2*this.baseScale)):(this.baseScale=this.width/this.defaultWidth,this.baseTransY=Math.abs(this.height-this.defaultHeight*this.baseScale)/(2*this.baseScale)),this.scale*=this.baseScale/curBaseScale,this.transX*=this.baseScale/curBaseScale,this.transY*=this.baseScale/curBaseScale},updateSize:function(){this.width=this.container.width(),this.height=this.container.height(),this.resize(),this.canvas.setSize(this.width,this.height),this.applyTransform()},reset:function(){var key,i;for(key in this.series)for(i=0;imaxTransY?this.transY=maxTransY:this.transYmaxTransX?this.transX=maxTransX:this.transXtouches[1].pageX?touches[1].pageX+(touches[0].pageX-touches[1].pageX)/2:touches[0].pageX+(touches[1].pageX-touches[0].pageX)/2,centerTouchY=touches[0].pageY>touches[1].pageY?touches[1].pageY+(touches[0].pageY-touches[1].pageY)/2:touches[0].pageY+(touches[1].pageY-touches[0].pageY)/2,centerTouchX-=offset.left,centerTouchY-=offset.top,touchStartScale=map.scale,touchStartDistance=Math.sqrt(Math.pow(touches[0].pageX-touches[1].pageX,2)+Math.pow(touches[0].pageY-touches[1].pageY,2)))),lastTouchesLength=touches.length}var touchStartScale,touchStartDistance,touchX,touchY,centerTouchX,centerTouchY,lastTouchesLength,map=this;jvm.$(this.container).bind("touchstart",handleTouchEvent),jvm.$(this.container).bind("touchmove",handleTouchEvent)},bindContainerPointerEvents:function(){var map=this,gesture=new MSGesture,element=this.container[0];(gesture.target=element).addEventListener("MSGestureChange",function(e){var transXOld,transYOld;0==e.translationX&&0==e.translationY||(transXOld=map.transX,transYOld=map.transY,map.transX+=e.translationX/map.scale,map.transY+=e.translationY/map.scale,map.applyTransform(),map.tip.hide(),transXOld==map.transX&&transYOld==map.transY||e.preventDefault()),1!=e.scale&&(map.setScale(map.scale*e.scale,e.offsetX,e.offsetY),map.tip.hide(),e.preventDefault())},!1),element.addEventListener("pointerdown",function(e){gesture.addPointer(e.pointerId)},!1)},bindElementEvents:function(){var pageX,pageY,mouseMoved,map=this;this.container.mousemove(function(e){2").addClass("jvectormap-zoomin").text("+").appendTo(this.container),jvm.$("
").addClass("jvectormap-zoomout").html("−").appendTo(this.container),this.container.find(".jvectormap-zoomin").click(function(){map.setScale(map.scale*map.params.zoomStep,map.width/2,map.height/2,!1,map.params.zoomAnimate)}),this.container.find(".jvectormap-zoomout").click(function(){map.setScale(map.scale/map.params.zoomStep,map.width/2,map.height/2,!1,map.params.zoomAnimate)})},createTip:function(){var map=this;this.tip=jvm.$("
").addClass("jvectormap-tip").appendTo(jvm.$("body")),this.container.mousemove(function(e){var left=e.pageX-15-map.tipWidth,top=e.pageY-15-map.tipHeight;left<5&&(left=e.pageX+15),top<5&&(top=e.pageY+15),map.tip.css({left:left,top:top})})},setScale:function(scale,anchorX,anchorY,isCentered,animate){var interval,scaleStart,scaleDiff,transXStart,transXDiff,transYStart,transYDiff,transX,transY,viewportChangeEvent=jvm.$.Event("zoom.jvectormap"),that=this,i=0,count=Math.abs(Math.round(60*(scale-this.scale)/Math.max(scale,this.scale))),deferred=new jvm.$.Deferred;return scale>this.params.zoomMax*this.baseScale?scale=this.params.zoomMax*this.baseScale:scalebbox[0].x&&nxbbox[0].y&&ny(bbox=insets[i].bbox)[0].x&&xbbox[0].y&&y").addClass("jvectormap-goback").text("Back").appendTo(this.params.container),this.backButton.hide(),this.backButton.click(function(){that.goBack()}),this.spinner=jvm.$("
").addClass("jvectormap-spinner").appendTo(this.params.container),this.spinner.hide()},jvm.MultiMap.prototype={addMap:function(name,config){var cnt=jvm.$("
").css({width:"100%",height:"100%"});return this.params.container.append(cnt),this.maps[name]=new jvm.Map(jvm.$.extend(config,{container:cnt})),this.params.maxLevel>config.multiMapLevel&&this.maps[name].container.on("regionClick.jvectormap",{scope:this},function(e,code){var multimap=e.data.scope,mapName=multimap.params.mapNameByCode(code,multimap);multimap.drillDownPromise&&"pending"===multimap.drillDownPromise.state()||multimap.drillDown(mapName,code)}),this.maps[name]},downloadMap:function(code){var that=this,deferred=jvm.$.Deferred();return this.mapsLoaded[code]?deferred.resolve():jvm.$.get(this.params.mapUrlByCode(code,this)).then(function(){that.mapsLoaded[code]=!0,deferred.resolve()},function(){deferred.reject()}),deferred},drillDown:function(name,code){var currentMap=this.history[this.history.length-1],that=this,focusPromise=currentMap.setFocus({region:code,animate:!0}),downloadPromise=this.downloadMap(code);focusPromise.then(function(){"pending"===downloadPromise.state()&&that.spinner.show()}),downloadPromise.always(function(){that.spinner.hide()}),this.drillDownPromise=jvm.$.when(downloadPromise,focusPromise),this.drillDownPromise.then(function(){currentMap.params.container.hide(),that.maps[name]?that.maps[name].params.container.show():that.addMap(name,{map:name,multiMapLevel:currentMap.params.multiMapLevel+1}),that.history.push(that.maps[name]),that.backButton.show()})},goBack:function(){var currentMap=this.history.pop(),prevMap=this.history[this.history.length-1],that=this;currentMap.setFocus({scale:1,x:.5,y:.5,animate:!0}).then(function(){currentMap.params.container.hide(),prevMap.params.container.show(),prevMap.updateSize(),1===that.history.length&&that.backButton.hide(),prevMap.setFocus({scale:1,x:.5,y:.5,animate:!0})})}},jvm.MultiMap.defaultParams={mapNameByCode:function(code,multiMap){return code.toLowerCase()+"_"+multiMap.defaultProjection+"_en"},mapUrlByCode:function(code,multiMap){return"jquery-jvectormap-data-"+code.toLowerCase()+"-"+multiMap.defaultProjection+"-en.js"}}; \ No newline at end of file diff --git a/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-au-mill-en.js b/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-au-mill-en.js deleted file mode 100644 index 424e69709..000000000 --- a/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-au-mill-en.js +++ /dev/null @@ -1 +0,0 @@ -jQuery.fn.vectorMap('addMap', 'au_mill',{"insets": [{"width": 900, "top": 0, "height": 1008.5727398708073, "bbox": [{"y": 1031999.3824222308, "x": 12576510.61983689}, {"y": 6796690.085079122, "x": 17720633.028951164}], "left": 0}], "paths": {"AU-ACT": {"path": "M700.02,546.47l-0.6,-0.57l-0.39,-1.2l0.19,-1.5l-0.24,-1.9l0.63,-3.32l5.86,-4.14l0.91,0.61l0.17,0.9l0.9,0.43l0.25,0.7l2.66,1.15l-0.45,0.23l-1.51,-0.22l-0.86,0.65l-0.74,-0.1l-1.3,1.53l-0.16,1.07l0.25,0.91l-0.38,1.18l-0.56,0.28l-0.3,0.67l0.36,5.01l-0.89,1.43l-1.91,-0.94l-0.81,-3.14l-0.66,-0.12l-0.42,0.39Z", "name": "Australian Capital Territory"}, "AU-WA": {"path": "M5.97,341.75l0.3,0.05l0.06,0.25l-0.32,-0.27l-0.03,-0.03ZM6.9,342.82l0.44,-0.3l0.15,-1.3l0.21,2.93l0.64,1.44l0.6,0.37l0.49,-0.49l-0.54,-1.55l0.13,-1.41l0.3,-0.9l0.63,-0.33l1.01,4.09l-0.33,2.39l0.61,0.2l0.41,-0.22l0.33,-1.89l0.21,3.52l0.4,0.42l0.61,-0.13l0.51,-1.27l0.0,2.08l0.47,0.1l0.04,0.63l0.69,0.46l0.5,-0.9l1.12,-0.36l0.9,0.11l0.39,-0.9l0.68,-0.4l0.7,-1.14l-0.05,-3.54l-2.11,-2.22l0.38,-0.21l1.48,-2.86l0.06,1.13l0.6,0.46l-0.15,0.83l0.67,2.93l2.4,2.67l0.87,-0.04l1.03,-1.11l0.83,-0.31l0.75,-1.41l-0.76,-2.75l0.7,-2.45l-0.49,-1.28l0.85,-0.15l0.39,-0.55l-0.63,-1.09l0.53,-1.27l-0.08,-0.64l-2.09,-1.32l-0.52,-1.5l-1.56,-1.45l-0.63,-1.55l-1.66,-2.43l-2.46,-5.78l-2.18,-1.44l-0.84,-2.21l0.4,-1.25l-0.27,-0.61l-0.81,-0.46l0.21,-1.69l-0.35,-1.51l-3.26,-4.13l-0.86,-2.27l-0.12,-3.33l0.89,-1.48l-0.33,-2.57l0.79,-1.22l0.07,-1.57l0.81,-1.18l0.48,-1.82l0.65,-0.51l0.81,-2.28l2.6,-2.04l0.69,-1.66l0.26,-2.76l-0.66,-3.32l0.13,-0.67l0.6,-0.46l0.49,-1.06l-0.07,-2.65l-1.03,-3.11l-0.99,-1.04l-0.73,-0.3l0.12,-0.84l-0.47,-1.87l1.61,-1.89l0.31,-1.57l1.1,-1.47l1.83,-5.73l0.94,-1.95l1.62,-2.21l2.04,-0.81l-0.88,2.11l-0.99,5.23l0.89,2.08l-0.27,1.13l0.25,0.4l0.58,0.03l-0.67,1.01l0.12,2.3l0.64,0.53l0.84,0.08l1.07,-1.16l0.99,-0.41l0.35,0.69l0.83,0.27l0.81,-0.58l0.48,-2.44l1.48,-3.62l0.59,-0.4l0.41,-2.28l0.58,-0.1l1.47,-2.56l0.32,-1.34l5.41,-3.03l1.54,-0.01l1.45,-0.74l0.49,0.15l2.29,-1.34l4.98,-2.0l2.93,-3.69l3.75,-1.96l1.24,-2.35l1.04,-1.03l4.27,-1.9l0.51,-0.67l0.31,-1.73l1.54,0.37l1.23,-0.71l2.12,-0.32l1.19,-0.78l0.31,-0.56l1.21,-0.31l2.19,-1.54l1.6,-2.02l-0.55,1.81l1.74,1.35l1.03,-0.12l3.09,-1.71l0.64,0.31l0.8,-0.41l0.89,1.29l3.21,0.96l3.25,-0.44l1.69,-0.97l1.47,0.27l3.39,-1.23l0.69,-0.98l0.88,-0.32l0.39,-1.22l3.92,-2.68l1.58,0.31l1.62,-0.69l0.41,0.47l0.55,0.05l4.67,-1.07l1.52,0.28l1.14,-0.64l1.4,-0.28l3.04,-3.64l0.38,-1.16l1.4,-0.67l0.66,-0.81l0.95,0.7l0.66,-0.31l0.19,-0.58l4.68,1.1l0.56,-0.17l1.06,0.94l1.52,0.29l1.6,-1.12l1.06,-0.21l0.22,-0.77l1.27,0.06l8.46,-1.19l2.64,-0.83l11.43,-4.73l3.45,-2.32l3.67,-3.46l4.07,-5.77l2.45,-5.36l0.14,-0.87l-0.43,-0.71l1.52,-0.31l1.21,-1.11l0.23,-1.09l-0.57,-0.68l1.12,-2.08l0.75,0.31l1.11,-0.21l2.24,-1.66l0.74,-1.24l1.54,-0.82l0.71,-0.89l0.49,-0.09l0.35,-0.68l1.94,-0.92l0.63,-0.78l0.47,-1.34l-0.27,-1.54l-1.7,-0.84l-1.4,0.08l0.23,-0.77l-0.28,-2.14l0.23,-1.82l-1.21,-3.07l0.12,-4.33l0.44,-1.6l1.98,-2.25l-0.05,-1.02l2.61,-2.29l1.04,0.19l0.45,-1.03l0.73,0.66l1.44,0.01l-1.28,-2.44l0.84,-1.22l1.03,0.43l1.39,-0.32l0.67,-0.48l1.27,0.36l0.49,-0.16l-0.08,-0.51l-1.33,-1.36l0.25,-1.79l0.41,-0.54l0.96,-0.06l1.09,-1.16l0.48,-1.67l1.01,-0.46l0.16,0.57l0.57,0.24l-0.66,0.01l-0.4,0.44l0.04,1.06l-0.49,0.83l0.39,1.26l0.86,0.17l0.39,1.24l1.07,0.45l-0.06,1.08l1.14,0.96l-0.26,1.7l0.98,0.67l1.36,1.6l0.2,1.37l1.88,2.87l0.38,1.73l0.99,0.72l1.21,1.58l0.28,0.94l0.76,0.86l0.31,1.52l0.59,0.15l0.51,-0.83l-0.03,-1.32l-0.5,-1.2l0.12,-1.56l0.52,-0.94l0.33,-1.9l0.64,-0.43l0.02,-0.38l-1.27,-1.98l-0.04,-1.1l0.16,-0.31l0.75,-0.06l0.31,1.03l1.18,0.34l0.69,1.16l1.01,0.64l0.71,1.03l1.45,0.25l0.33,-0.36l-0.06,-0.51l-1.22,-0.8l-0.92,-2.57l0.53,0.36l0.63,-0.19l0.06,-0.79l-0.53,-0.66l0.81,-0.97l1.07,-0.65l0.36,-0.91l-0.09,-0.56l-0.53,-0.44l-0.58,0.27l-0.39,0.91l-1.87,0.56l-1.44,-2.87l-1.95,-1.41l-1.08,-0.3l1.82,-2.55l0.07,-0.94l-1.51,-0.78l2.44,0.44l0.38,-0.25l-0.39,-0.73l0.51,-0.81l-0.39,-0.93l-1.02,-0.12l-0.72,-0.66l-0.97,-0.0l0.35,-0.76l-0.27,-0.85l0.59,-0.02l0.14,-0.39l1.35,-0.1l1.46,0.29l-0.34,0.5l0.25,0.51l-0.61,0.12l-0.15,0.72l1.44,1.02l1.04,0.33l-0.44,0.16l-0.18,0.49l0.59,1.32l1.24,-0.13l0.12,-1.43l1.14,0.78l0.62,-0.18l0.08,-0.51l-0.67,-1.17l0.59,-0.45l-0.17,-0.43l0.78,0.37l1.26,0.03l0.98,0.55l0.58,1.49l0.74,0.58l2.45,0.24l0.87,-1.11l1.58,0.82l2.36,0.16l3.27,-0.33l0.74,0.66l0.84,0.16l1.44,-0.54l-0.17,-0.71l-1.25,0.04l-2.78,-1.2l-2.47,-0.38l-1.84,0.38l-1.16,-0.14l-0.32,-2.11l0.18,-0.59l0.63,-0.45l0.11,-1.09l1.0,1.6l0.73,-0.03l0.45,-0.85l0.58,-0.14l0.46,-0.5l-0.2,-2.24l0.57,-0.55l-0.1,-1.29l0.41,-0.41l0.53,0.33l0.49,-0.25l0.4,-1.07l0.38,-0.23l-0.07,-0.72l-0.69,-0.25l-1.74,0.08l-1.46,1.75l-0.6,1.35l-0.81,-2.05l-0.7,-0.48l-0.2,0.32l-0.33,-1.16l-0.06,-1.48l0.69,-0.3l0.19,-0.56l-0.02,-0.72l-0.5,-0.51l0.05,-0.65l0.82,-0.35l0.34,-0.97l2.26,0.83l0.75,-0.13l0.25,-0.62l0.76,0.01l0.4,-0.53l-0.32,-0.67l0.16,-0.61l1.83,-1.7l0.54,1.14l1.45,-0.07l0.9,1.02l0.57,0.19l-0.3,0.91l0.42,0.42l0.53,-0.09l0.73,0.48l0.5,-0.26l0.1,-0.63l1.99,1.26l0.49,-0.11l-0.25,-0.81l-1.84,-1.59l0.27,-1.05l1.11,-0.76l-0.42,-0.52l-0.96,-0.55l-0.36,0.35l-0.82,-0.42l-2.17,1.13l-0.27,-0.71l0.72,-0.84l1.47,-0.09l1.01,-1.24l-0.16,-0.59l-0.83,-0.28l-0.6,0.51l-0.5,-0.15l-1.43,1.23l-0.27,-0.12l0.24,-0.68l-0.33,-0.48l0.65,-0.5l0.99,0.54l0.64,-0.04l0.5,-0.74l0.48,-0.02l0.17,-1.27l0.13,0.39l0.81,0.11l1.03,2.12l0.71,-0.11l0.2,-1.0l-0.26,-0.99l1.0,0.41l0.48,0.46l0.03,0.58l0.82,0.51l1.06,-0.24l1.15,0.24l0.6,-0.33l-0.05,-0.95l-0.95,-0.1l0.26,-0.26l-0.11,-0.58l0.94,-0.8l-0.22,-0.51l-1.09,0.02l-1.05,-0.54l-0.52,0.06l-0.29,-0.56l0.41,-0.24l0.31,-1.08l-0.4,-0.48l-1.8,-0.46l-0.19,-1.22l-0.69,-0.31l0.88,-0.58l0.26,-0.68l0.73,0.09l0.98,-0.82l-0.16,-0.69l-0.96,-0.05l0.38,-0.39l1.04,-0.18l0.08,0.82l1.19,-0.86l0.82,1.52l0.41,-0.2l0.1,-0.85l0.97,-1.23l0.52,0.58l1.13,-0.19l0.53,-1.21l0.26,-1.93l-0.52,-1.14l0.17,-1.99l1.49,1.34l-0.93,-0.01l-0.19,0.78l0.49,2.94l-0.87,1.72l-0.03,0.92l0.66,0.29l0.29,-0.25l1.24,-3.12l1.23,-0.14l0.45,2.42l1.9,1.27l0.49,-0.36l-0.02,-2.03l1.02,0.51l1.35,-0.9l-0.14,-1.24l-0.82,-1.23l1.37,-0.75l0.31,-1.16l-0.26,-1.07l1.41,-0.69l0.21,-1.29l0.27,0.6l0.64,0.39l0.07,0.68l1.56,0.4l0.5,-0.79l0.86,-0.5l-0.78,-1.19l0.56,-1.19l0.83,-0.33l0.67,-0.96l0.92,0.18l-0.82,1.13l0.08,0.52l0.74,0.2l0.59,1.19l0.81,-0.03l0.13,1.13l1.05,0.61l0.31,-1.18l0.76,-0.48l0.04,-0.89l0.8,0.35l0.76,-1.01l0.38,-1.45l-0.19,-0.22l0.63,-0.21l0.76,0.2l0.55,-0.37l0.35,-0.89l-1.05,-0.65l-0.84,-1.94l0.52,-0.15l0.21,0.59l0.44,0.14l1.16,-0.8l-0.53,-0.66l0.98,0.37l0.36,-0.13l0.13,-0.59l1.07,0.85l-0.0,0.72l0.89,0.6l-0.19,0.46l0.41,0.56l0.3,-0.04l0.3,1.1l0.58,0.47l0.49,-0.03l0.49,-0.65l0.76,0.33l0.67,-0.95l1.6,1.22l0.53,-0.6l0.9,0.67l0.4,-0.19l0.24,1.83l0.68,0.56l0.59,-0.13l2.95,2.04l0.67,1.16l1.11,0.98l0.6,1.52l0.68,0.38l0.04,0.98l0.57,0.41l0.02,0.47l0.77,0.15l0.9,0.76l0.27,1.16l0.6,0.16l0.71,-0.28l1.02,1.33l0.83,0.23l1.5,1.12l-0.34,0.75l0.28,1.11l-1.32,0.5l0.14,1.05l-1.25,4.2l0.3,1.49l-0.16,1.9l-0.63,0.53l0.55,2.03l-1.06,1.53l0.25,0.67l0.93,-0.14l1.2,-1.39l0.38,-1.92l-0.14,-2.46l1.66,1.41l0.9,2.4l0.52,0.34l0.4,-0.37l0.04,-2.32l-1.41,-1.76l0.12,-0.84l-0.57,-1.9l1.54,-1.63l0.27,-0.79l0.58,2.29l0.29,0.18l0.58,-0.52l1.07,0.57l0.55,-0.24l0.25,-1.07l-1.04,-2.31l0.62,-0.52l-0.03,-0.35l-0.57,-0.53l2.07,-0.79l1.07,0.48l2.25,0.36l0.62,0.52l3.53,0.37l1.22,0.5l0.0,346.2l-4.24,1.89l-2.27,1.47l-8.46,3.69l-3.88,1.42l-4.93,0.85l-3.93,1.34l-0.69,0.58l-4.63,1.31l-4.58,0.65l-5.23,-0.04l-2.01,0.31l-5.88,-0.72l-3.58,-1.07l-1.17,0.27l-1.09,0.74l-1.5,-0.12l-2.76,1.33l-6.43,4.63l-3.83,1.14l-4.74,2.41l-1.85,0.53l-2.04,2.16l-1.23,0.69l-2.38,0.77l-7.71,1.37l-3.06,2.3l-1.44,2.01l-0.51,2.17l-1.18,2.18l-1.05,4.54l-1.14,0.45l-0.67,1.01l-1.97,1.77l-0.53,1.15l-0.0,0.82l-1.48,0.78l-0.52,0.7l-1.1,0.22l-0.79,1.14l-1.03,-0.85l-1.68,-0.18l-0.93,0.37l-1.47,1.77l-1.72,0.41l-0.72,-2.16l-0.68,-0.66l-1.45,-0.42l-3.52,0.94l-1.28,-0.59l-0.81,0.3l-2.47,0.09l-0.77,0.4l-0.07,0.85l-0.6,-0.42l-0.66,0.26l-2.96,-0.62l-1.58,0.8l-0.36,1.32l-0.7,-0.4l-0.6,0.56l-1.36,-0.03l0.34,-0.75l-0.77,-2.13l-1.39,-1.43l-1.69,0.17l-1.2,0.94l-1.37,0.51l-1.89,-0.86l-1.22,0.42l-2.02,-1.25l-3.88,-0.09l-2.21,0.52l-1.09,0.58l-1.38,-0.5l-2.43,0.55l-1.97,-0.26l-2.45,0.76l-3.58,0.05l-0.79,0.99l-2.28,0.75l-2.36,-0.74l-2.05,-0.16l-1.41,0.45l-1.09,-0.56l-0.93,-0.0l-1.5,0.82l-2.49,0.54l-1.49,1.4l-1.74,0.8l-0.54,0.39l-0.02,0.45l-0.82,0.43l-2.01,3.38l-0.05,1.36l0.87,0.83l-1.0,-0.57l-0.95,-0.03l-0.78,1.13l0.25,1.06l-0.21,0.17l-0.58,-0.74l-1.03,0.16l-0.46,0.45l-0.33,1.22l-0.44,-0.63l-1.13,-0.16l-0.67,-0.48l-3.6,-0.58l-0.77,0.27l-1.09,-0.13l-0.29,0.68l0.54,0.55l-1.35,0.24l-1.36,0.94l-0.2,0.7l0.36,0.78l-0.21,0.24l-2.04,1.02l-2.6,0.69l-0.91,0.64l-1.12,1.97l0.2,1.57l-2.27,0.08l-2.16,0.79l-0.26,0.55l0.77,1.02l-0.91,-0.62l-0.68,-0.02l-1.44,0.55l-1.98,-0.15l-1.57,0.44l-0.49,0.41l-0.01,0.57l-1.28,-0.45l-1.67,-0.05l-0.77,0.44l-0.47,1.3l-1.09,-0.78l-1.47,-0.34l-2.51,-1.32l-0.53,0.29l-2.47,-0.5l-0.58,0.26l-0.45,0.72l-1.48,-0.65l-0.99,0.1l-1.06,-0.33l-1.44,0.9l-2.59,-1.01l-2.22,0.82l-0.83,-0.55l-2.27,-0.46l-0.68,-0.66l1.18,0.27l0.46,-0.31l0.0,-0.57l-2.41,-1.83l-0.69,0.16l-0.12,0.53l0.32,0.57l-5.24,-1.71l-2.01,-0.16l0.03,-0.44l-0.98,-1.82l-3.69,-4.04l-2.69,-2.15l-1.6,-0.65l-0.48,-0.67l-3.35,-1.59l-1.52,-0.38l-1.77,0.11l-0.97,1.06l-1.83,-2.03l-0.01,-1.75l-0.75,-1.76l-0.2,-4.84l0.49,-1.56l-0.58,-2.25l0.89,-1.36l-0.23,-1.73l1.82,1.87l1.62,0.7l1.85,0.15l1.81,-0.46l1.37,-0.83l1.72,-1.92l1.16,-1.91l0.94,-2.51l0.61,0.15l0.72,-0.27l0.37,-0.82l-0.09,-1.88l-0.67,-0.25l0.08,-3.39l-1.42,-7.71l0.99,2.42l0.63,0.39l0.53,-0.19l0.2,-0.63l-0.86,-2.29l1.22,-0.05l0.55,-0.99l-0.13,-0.69l-0.93,-0.88l0.61,-2.5l-0.55,-1.11l0.33,-0.89l-0.52,-0.8l0.54,-0.45l0.42,-1.82l-0.54,-2.49l0.28,-3.12l-0.44,-3.39l-0.83,-2.75l-4.41,-7.46l-2.75,-6.7l-1.47,-2.45l-1.1,-1.1l-0.35,-1.73l-1.97,-4.71l-0.11,-1.57l-0.84,-2.66l0.22,-1.23l-0.92,-1.05l0.25,-1.5l-0.88,-2.36l0.48,-2.78l-0.39,-1.57l-0.03,-3.56l0.64,-3.89l-2.68,-7.98l-3.73,-4.23l-0.92,-1.49l-0.4,-1.09l0.27,-0.66l-0.12,-2.04l-1.21,-2.98l-2.12,-2.59l-2.19,-3.59l-1.31,-0.85l-1.47,-1.74l-1.28,-4.97l0.07,-1.2l0.82,-2.5l-1.36,-5.1l-1.25,-2.87l-4.84,-8.33l-3.39,-5.08l-5.65,-5.75l-0.04,-1.32l-0.83,-1.61ZM16.26,342.17l-0.02,-0.0l-0.26,-0.07l0.17,-0.0l0.11,0.07ZM15.67,342.01l-0.42,-0.12l-0.09,-0.69l-1.37,-1.86l-0.62,-0.23l-0.34,-2.71l-0.71,-0.7l-0.19,-1.3l-1.79,-2.65l0.06,-1.25l1.15,-2.04l0.28,1.38l1.02,0.46l0.89,2.0l1.03,1.07l0.73,0.28l-0.04,1.24l0.71,0.58l-0.46,0.84l-0.59,4.23l0.75,1.46ZM206.78,144.29l-0.27,0.49l-0.48,-0.47l0.25,-0.29l0.51,0.27ZM229.82,120.35l0.05,-0.58l0.38,0.11l-0.24,0.53l-0.19,-0.06ZM240.55,112.7l-0.18,0.08l-0.54,-0.27l0.26,-0.14l0.45,0.32ZM96.98,532.54l0.38,-0.25l0.36,0.29l-0.05,0.01l-0.68,-0.05ZM258.13,96.33l-0.23,-0.54l0.47,0.26l-0.24,0.28ZM257.74,95.57l-0.76,-0.39l-1.87,-0.02l-0.12,-0.23l0.65,0.03l0.28,-0.32l0.85,0.27l0.19,-0.35l0.19,0.19l0.79,-0.39l-0.22,1.23ZM257.01,93.5l-0.57,-0.65l0.06,-0.09l0.68,0.24l-0.16,0.5ZM245.37,104.59l-0.08,-0.35l0.01,-0.16l0.36,0.19l-0.28,0.32ZM236.21,114.46l-0.17,-0.45l0.27,-0.04l-0.07,0.16l-0.03,0.33ZM224.7,135.78l0.01,-0.39l0.02,0.2l-0.02,0.19ZM23.93,261.98l0.03,-0.04l0.03,-0.06l-0.03,0.09l-0.02,0.01ZM18.82,337.55l-0.09,-0.37l-0.11,-0.23l0.25,0.28l-0.05,0.32ZM301.08,112.09l0.41,0.91l0.5,0.75l-0.79,-0.92l-0.12,-0.74ZM296.68,116.02l0.5,0.3l0.14,0.61l-0.55,-0.38l-0.1,-0.53ZM237.6,105.84l0.06,-0.56l0.6,0.2l0.22,-0.4l0.03,-0.9l-0.36,-0.38l0.45,-0.33l0.41,0.26l-0.5,0.87l0.34,0.98l-0.86,0.41l-0.39,-0.15ZM231.75,119.18l0.07,-0.13l0.27,0.06l-0.15,0.17l-0.2,-0.11ZM225.47,120.99l0.06,-0.3l0.49,0.03l0.21,-0.81l0.85,1.04l-0.94,-0.2l-0.67,0.24ZM227.58,121.43l0.18,0.3l-0.83,0.31l0.47,-0.32l0.18,-0.3ZM46.88,231.25l0.41,-0.98l1.76,-1.95l0.24,1.15l-0.58,1.23l-0.87,0.92l-0.95,-0.37ZM0.75,327.35l0.54,0.08l0.93,4.47l1.58,3.32l-0.39,1.32l-0.61,-0.45l-0.62,-1.86l-1.05,-1.31l-0.06,-1.7l-0.68,-1.41l0.01,-2.04l0.34,-0.43ZM3.96,337.26l0.46,0.03l0.78,1.09l0.29,1.64l-0.51,-1.44l-1.02,-1.32Z", "name": "Western Australia"}, "AU-TAS": {"path": "M683.97,652.34l0.14,-0.45l1.06,-0.55l1.09,-0.11l1.38,0.36l0.34,-0.54l1.14,-0.16l0.89,-0.59l2.25,2.21l-1.06,1.08l-0.58,0.09l-0.64,-1.17l-0.82,0.01l-0.93,0.47l-0.78,-0.34l-2.23,0.28l-1.24,-0.59ZM618.08,666.03l0.44,-0.96l-0.27,-0.56l1.19,-0.83l0.31,-0.65l-0.2,-4.58l0.94,1.58l0.68,-0.22l1.84,0.64l1.69,0.0l2.58,1.74l0.61,-0.05l0.42,-0.56l1.79,-0.05l1.63,1.2l2.09,0.57l1.23,-0.35l0.24,0.67l0.87,0.63l2.84,0.57l0.32,0.83l1.38,1.28l2.02,0.34l0.32,0.44l0.97,0.13l1.95,1.13l2.67,0.97l4.25,0.28l2.2,-0.67l0.39,0.79l0.7,0.18l0.28,-0.11l0.02,-0.77l1.16,-1.19l1.52,-0.55l0.63,0.41l0.23,0.55l-0.19,0.55l0.43,0.58l2.78,0.19l0.33,-0.79l-0.81,-0.7l-1.34,-0.35l-0.22,-0.57l0.24,-0.56l1.74,-0.46l1.47,-0.85l3.17,0.59l1.96,-1.29l1.03,-0.06l0.28,0.54l0.61,0.17l0.5,0.6l1.0,0.05l1.55,-1.37l1.43,-2.36l1.06,-0.4l0.77,0.83l0.94,-0.1l1.15,0.77l0.83,-0.07l1.59,-1.06l0.78,-2.26l0.8,-0.03l0.52,0.6l0.72,0.05l0.98,1.35l1.3,0.17l2.19,3.29l-1.05,0.91l0.57,0.72l-0.58,1.27l-0.05,1.93l0.93,1.48l-1.29,1.4l0.07,0.48l0.66,0.24l0.63,-0.55l-0.88,2.67l0.03,2.0l0.65,1.62l-0.56,1.89l0.35,1.39l-0.83,1.36l1.2,2.71l-0.47,3.02l1.14,1.43l-0.98,-0.29l-1.54,-1.08l0.83,-0.5l0.25,-0.93l-0.68,-0.62l-0.3,-0.79l-0.77,0.01l-0.24,0.42l0.17,0.58l-0.83,0.58l0.12,0.83l-0.45,0.55l0.15,0.39l-1.03,0.76l-0.15,1.88l-0.74,0.73l-1.4,2.6l-0.0,0.49l0.47,0.12l0.75,-0.46l-0.5,0.7l0.04,3.3l-0.62,0.57l-0.54,-0.64l-0.85,0.59l-0.21,0.65l0.88,1.01l0.36,1.38l-0.1,1.37l-1.2,0.93l-0.12,1.4l-0.61,0.68l-0.13,0.8l-2.61,-0.01l-1.06,-0.7l-0.42,-0.85l-0.59,-0.17l-1.88,0.89l0.08,1.61l-0.44,-0.41l-0.71,0.3l-0.24,-0.72l-1.05,-0.62l-1.08,-1.8l-0.57,-0.25l-0.69,0.35l-0.1,0.55l1.14,1.31l0.74,1.57l-0.54,1.22l-0.02,1.04l-0.49,-0.44l-0.56,0.03l-0.34,0.38l0.1,0.82l0.65,0.71l-0.98,1.09l0.19,2.93l-0.55,0.44l-0.62,-0.3l-0.26,-0.75l-0.83,-0.08l0.35,-0.72l-0.61,-1.25l-0.82,0.97l-0.41,-0.11l-0.13,-1.54l-0.31,-0.31l-0.59,0.01l-0.65,0.55l-0.31,1.26l0.19,0.9l2.46,2.01l-0.31,0.29l-0.45,-0.29l-0.92,0.1l-0.89,0.71l0.34,0.64l1.21,-0.04l-0.84,1.29l-1.58,0.32l0.69,0.88l-0.42,0.7l0.32,0.7l-1.0,0.2l-0.15,0.61l0.12,0.39l0.81,0.45l-0.14,0.21l-1.26,0.6l-0.87,-0.7l-1.75,0.37l-0.6,-0.88l-1.31,-0.71l-0.33,-1.31l-0.68,-0.77l-0.58,0.18l-0.12,1.0l-0.48,0.31l-2.36,-0.14l-0.59,-0.46l-0.57,0.01l-0.55,0.5l-0.44,-0.89l-0.72,-0.22l-0.75,0.23l-0.27,0.51l-0.8,-0.22l-0.89,0.32l-0.24,0.48l-0.75,0.15l-0.05,-1.92l-0.87,-1.2l0.45,-0.54l-0.11,-0.26l1.62,0.33l0.92,1.19l0.66,-0.17l0.18,-0.83l0.58,0.58l0.69,-0.42l-0.12,-1.83l-1.15,-1.1l-0.61,-0.16l-0.92,1.25l-0.24,-0.79l-0.47,-0.37l-0.66,0.24l-0.24,0.7l-0.7,-0.72l-0.28,-1.4l-0.94,-0.78l-0.68,0.21l-0.0,0.99l-0.71,0.29l-0.11,0.93l-0.63,-2.0l-1.38,-1.65l-0.01,-0.66l-0.58,-0.43l-0.56,0.09l0.32,-0.82l-0.22,-0.46l-0.91,-0.48l-0.8,-1.33l-1.65,-0.3l-0.67,-0.92l-1.41,-3.2l-0.52,-0.48l0.31,-0.77l-0.67,-1.67l-1.51,-1.32l0.38,-0.49l-0.05,-0.54l-0.88,-1.14l-0.21,-0.79l0.14,-0.95l-0.67,-2.11l-0.11,-1.48l1.36,0.63l0.39,0.8l2.03,1.34l0.74,3.15l0.51,0.12l0.36,-0.38l0.06,-1.59l0.72,-0.32l0.74,-1.97l-0.45,-0.51l-0.4,0.11l-0.34,-0.54l-0.81,0.15l-1.76,-2.0l-0.57,-2.24l-0.86,-0.07l-0.86,0.84l0.38,-1.04l-0.29,-1.92l-0.91,-1.87l-2.83,-2.74l-0.16,-0.69l-1.84,-2.51l-0.76,-0.27l-0.08,-1.11l-0.93,-2.49l-1.41,-2.31l-0.74,-0.62l0.54,-0.5l-0.04,-0.75l-1.87,-3.25l0.15,-1.17l-0.44,-1.23l0.09,-0.99l-1.07,-1.63ZM630.11,693.61l-0.0,0.16l-0.05,-0.04l0.05,-0.12ZM673.76,710.77l0.76,1.44l-0.85,0.82l0.23,-0.71l-0.33,-0.65l0.18,-0.9ZM680.86,710.55l0.89,0.06l1.13,-0.54l0.33,0.57l-0.19,0.57l0.37,0.66l-0.69,0.46l-0.42,2.39l0.46,0.65l-0.21,0.52l0.31,0.61l0.38,0.03l-0.46,0.85l-0.86,-0.81l-0.27,-0.93l-0.59,-0.09l-0.6,0.69l-0.06,0.91l-0.78,0.73l-1.49,-1.48l0.85,-0.88l-0.16,-0.65l-1.8,-0.69l-0.4,-0.9l1.01,-0.56l0.32,-1.06l-0.13,1.51l0.96,0.8l1.18,0.41l1.44,-0.35l0.81,-0.99l-1.27,-0.75l0.34,-0.73l-0.53,-0.45l0.13,-0.59ZM681.95,709.53l-0.11,-0.04l0.07,-0.03l0.05,0.07ZM689.93,693.74l0.34,0.28l-0.53,1.1l-0.46,-0.27l0.64,-1.12ZM679.51,640.1l1.54,-0.92l0.53,-1.53l1.08,-0.78l3.85,4.76l2.41,0.72l-0.14,2.16l-1.15,1.06l0.19,0.61l0.42,0.15l1.11,-0.42l0.2,0.56l-0.65,0.2l-0.01,0.8l-1.3,-0.24l-0.41,0.31l-0.2,0.78l-0.95,0.38l-1.15,-0.53l0.13,-0.92l-0.73,-0.72l-0.28,-1.46l-0.97,-0.52l-0.38,-0.97l-0.76,-0.32l0.32,-0.99l-0.56,-1.9l-0.77,-0.26l-0.74,0.39l-0.62,-0.39ZM686.08,655.25l0.22,-0.16l1.39,-0.38l-0.48,1.39l-1.13,-0.85ZM684.59,705.93l0.02,-0.05l0.15,-0.51l0.21,0.49l-0.38,0.07ZM684.73,704.88l-0.5,-0.44l0.15,-0.55l0.9,-0.58l0.63,0.1l0.39,1.06l-1.33,0.02l-0.24,0.38ZM670.41,716.54l0.65,-0.1l0.26,-0.64l-0.43,-0.36l0.07,-0.23l0.52,0.54l0.3,1.22l-1.37,-0.43ZM671.95,717.48l0.22,0.72l-0.87,0.06l0.4,-0.28l0.25,-0.5ZM670.61,630.86l-0.05,0.01l0.06,-0.05l-0.01,0.04ZM666.98,723.8l0.46,0.15l-0.07,0.15l-0.16,0.12l-0.23,-0.43ZM668.02,722.32l-0.05,-0.4l0.24,0.25l0.64,-0.12l0.34,-0.78l-0.2,-0.62l0.92,-1.04l0.9,2.33l-0.9,2.42l-0.9,-0.41l0.2,-0.19l-0.25,-1.15l-0.43,-0.34l-0.53,0.05ZM623.04,659.21l-0.02,-0.88l0.62,-0.64l1.28,0.88l-1.88,0.64ZM622.58,652.99l0.62,-0.96l0.72,0.21l-0.19,0.74l-0.7,0.3l-0.45,-0.29ZM620.03,654.24l0.33,-0.03l0.28,-0.14l-0.41,0.72l-0.2,-0.55ZM603.21,637.29l0.11,-1.01l1.63,-1.11l-0.17,-1.58l0.48,-0.13l1.68,1.1l0.47,0.94l-0.13,1.04l0.4,1.91l-0.4,1.97l0.73,0.7l-0.08,1.25l-0.45,0.96l-1.1,0.93l-2.35,1.13l-0.43,-1.07l0.34,-0.65l-0.14,-1.63l-0.93,-0.83l0.09,-1.37l0.47,-1.13l-0.22,-1.44Z", "name": "Tasmania"}, "AU-": {"path": "M735.23,533.88l0.59,-0.41l1.33,0.11l-0.1,0.39l-0.66,0.26l-0.54,-0.4l-0.63,0.05Z", "name": "Jervis Bay Territory"}, "AU-VIC": {"path": "M546.94,509.12l0.93,0.94l1.87,0.09l1.14,0.56l0.92,-0.29l1.54,1.38l1.43,-0.1l1.2,0.73l0.98,0.09l0.75,1.01l0.84,-0.2l1.2,-1.39l1.34,-0.78l0.7,-0.13l1.81,0.59l3.92,-0.34l1.1,1.22l0.94,-0.26l0.84,0.7l0.63,0.0l0.33,1.52l0.99,1.13l0.88,0.64l0.93,-0.09l-0.6,1.52l0.27,2.46l1.63,1.65l-0.01,0.64l1.05,1.85l0.03,0.75l0.65,0.62l1.44,0.48l0.79,-0.1l0.24,-0.52l-0.25,-0.62l0.93,-0.04l0.29,-0.32l0.53,-2.61l0.92,-0.35l0.98,0.69l0.43,1.16l0.55,0.23l0.74,-0.42l0.84,0.64l0.71,-0.33l0.81,0.43l1.76,0.15l2.23,1.13l0.62,0.93l0.69,-0.19l0.35,0.24l-0.0,1.15l-0.4,0.55l-0.13,1.65l0.67,3.31l1.2,1.95l3.06,1.24l0.14,0.96l-0.29,0.65l0.31,0.76l1.34,0.85l2.42,0.64l3.89,2.27l0.49,0.79l1.87,0.63l1.54,2.01l1.92,1.57l0.98,0.19l0.44,0.41l1.97,3.8l0.84,0.34l2.17,2.37l1.53,0.4l1.34,1.19l1.63,-0.15l1.34,-1.13l1.3,0.48l0.68,-0.24l0.23,-0.69l-0.96,-1.59l0.69,-2.28l0.46,-0.35l3.92,-0.35l2.24,0.55l0.91,-0.06l2.32,-0.97l1.27,0.27l3.31,2.66l0.93,0.39l2.99,-0.28l0.9,1.06l1.49,0.06l3.0,0.85l0.71,-0.43l2.56,0.36l0.49,-0.27l0.85,-1.32l0.61,0.17l0.54,-0.26l0.78,0.41l1.44,0.0l1.15,1.01l1.29,0.12l1.71,1.04l0.89,-0.05l1.01,0.59l0.83,-0.08l0.6,-0.48l0.39,0.19l0.2,1.9l1.55,1.25l1.74,-0.47l0.24,-0.6l-0.39,-0.42l-1.21,-0.21l-0.36,-0.46l-0.25,-1.2l0.74,-1.08l0.79,0.49l1.87,-0.32l1.0,0.49l0.64,-0.1l0.76,-2.07l1.71,-0.6l1.25,1.08l3.14,-1.24l3.6,1.38l0.64,0.84l0.99,0.33l-0.13,1.1l1.0,1.17l-0.24,1.37l0.9,2.45l-0.34,0.85l0.15,0.7l1.26,1.17l0.38,2.31l0.99,0.65l0.23,0.5l-0.15,0.97l-1.58,2.43l0.17,0.68l1.89,0.33l33.65,15.64l-2.51,0.45l0.06,-0.71l-0.45,-0.25l-0.52,0.29l-1.21,-0.01l0.84,1.69l-1.59,2.21l-1.02,0.31l-0.52,0.59l-1.58,0.46l-0.51,0.64l-2.64,0.02l-1.21,0.51l-0.5,-0.44l-2.43,-0.28l-0.77,0.29l-5.91,0.19l-1.24,0.57l-2.33,-0.27l-5.87,0.29l-3.46,0.77l-4.17,1.39l-3.15,1.52l-3.36,2.21l-3.78,3.16l-10.3,9.93l-0.54,-0.16l-2.7,0.56l-1.4,-0.02l-0.92,0.55l-1.34,-0.06l-1.74,0.74l-1.19,-0.88l-1.92,0.17l-0.81,0.41l-0.81,0.94l0.02,0.55l1.46,1.55l0.35,1.66l0.44,0.4l0.83,-0.09l0.84,-0.95l0.98,-0.24l0.67,-1.35l0.17,2.4l-0.55,0.62l-0.38,1.67l0.25,0.55l0.62,0.33l-0.75,0.45l-0.09,0.97l-0.37,0.19l-1.01,-0.63l0.37,-1.01l-1.15,-0.86l-0.75,-2.03l-1.44,-1.71l-2.04,-1.16l-1.45,0.27l-0.46,0.56l-0.13,1.02l-0.93,0.16l-0.4,-1.58l-1.34,-2.36l0.5,-0.57l-0.94,-1.24l-1.86,-0.36l-2.38,0.92l-1.5,-2.17l-1.92,-0.83l0.36,-0.37l-0.0,-1.8l1.17,0.17l1.33,-1.33l-0.12,-0.56l-0.65,-0.6l-0.01,-0.86l-1.25,-1.71l-0.8,-0.21l-3.64,0.39l-0.61,1.54l-0.63,0.7l0.43,1.52l-1.88,-0.06l-0.54,0.72l-0.68,0.29l-0.51,0.97l-1.72,0.24l-2.29,-2.05l1.62,-0.14l2.15,-0.98l0.14,-0.82l2.36,-3.17l0.28,-0.91l-0.44,-2.03l-0.59,-0.73l-1.02,-0.51l-0.91,-2.24l-1.26,-0.83l-0.46,0.04l-0.4,0.62l-1.38,0.05l-0.59,1.07l-1.27,0.53l-1.19,1.09l-2.27,0.74l-0.82,1.27l-0.54,-0.21l-1.57,0.18l-0.81,0.54l-0.2,0.64l0.53,0.71l2.89,0.51l0.94,-0.14l1.71,-1.0l0.73,0.36l0.06,0.91l-0.82,0.62l-0.4,0.98l-1.99,0.03l-0.77,0.29l-0.97,-0.29l-1.0,0.31l-2.88,2.21l-3.91,1.96l-1.11,1.15l-0.15,0.78l-1.02,0.44l-0.69,1.29l-1.07,0.99l-2.67,0.82l-0.87,1.37l-1.01,0.44l-1.21,1.1l-1.47,-1.3l-1.92,-0.93l-2.55,-0.02l-1.98,-2.0l-1.23,-0.75l-4.85,-1.32l-3.0,-2.35l-2.67,-1.55l-0.47,-0.76l-0.69,0.08l-0.33,0.46l-0.92,-0.68l-1.81,-0.03l-1.75,0.87l-0.81,-0.13l-4.4,-2.6l-3.84,-0.51l-1.83,0.53l-0.87,0.6l-0.43,1.12l0.53,0.86l-0.66,-0.11l-0.82,0.81l-0.51,-0.84l-0.72,-0.37l-1.09,-0.03l-0.53,0.64l0.29,-1.52l-0.59,-0.93l-3.17,-2.7l-4.61,-2.46l-0.02,-89.31ZM654.74,614.79l0.37,0.05l0.31,-0.06l-0.1,0.2l-0.58,-0.19ZM631.26,604.7l1.24,0.36l1.13,-0.19l0.48,0.49l-1.05,0.16l-1.1,1.05l-0.92,-0.42l-0.19,-0.67l0.42,-0.79ZM628.46,608.77l0.71,-0.62l1.61,-0.14l0.11,0.81l-0.69,-0.15l-1.09,0.36l-0.66,-0.27Z", "name": "Victoria"}, "AU-NT": {"path": "M313.75,111.76l1.19,0.46l0.59,0.98l1.02,0.48l-0.18,1.34l0.45,1.15l-0.88,2.04l0.41,0.54l0.69,-0.25l0.5,0.52l0.36,-0.31l0.52,-2.25l0.44,-0.42l-0.67,-4.22l0.39,0.23l0.59,-0.52l0.85,0.25l0.47,0.59l1.92,0.54l0.68,1.45l1.03,0.75l0.45,1.1l-0.23,1.0l0.63,0.38l0.96,-0.61l0.11,0.88l0.57,0.38l0.95,-0.11l0.41,-0.6l-0.24,-0.7l-1.23,-1.39l-0.51,-1.28l-0.27,-1.37l0.55,-1.72l2.7,0.42l1.51,-0.52l0.94,-0.89l0.86,0.29l0.59,-0.38l0.2,-1.48l-0.27,-0.62l-0.72,0.13l-0.33,0.64l-2.6,1.01l0.1,-0.43l-0.39,-0.44l-1.34,0.52l-0.8,-0.59l-0.07,-0.7l-1.15,-0.89l-0.25,-0.68l2.16,-0.22l1.59,-1.39l0.08,-0.44l-0.89,-0.2l-1.82,0.83l-2.4,-0.54l-3.23,-2.49l0.24,-1.31l0.68,-0.84l0.23,-1.05l1.27,-1.44l0.2,-1.79l0.45,0.48l1.25,0.02l0.43,-1.01l1.96,-0.38l0.54,-0.61l0.33,-1.52l-0.64,-1.09l1.86,-1.94l-0.54,-1.65l0.85,-2.07l0.15,-1.28l0.62,-0.43l0.37,0.57l1.11,0.4l1.68,-0.52l1.29,-0.99l0.64,0.03l2.24,-2.64l1.27,0.47l0.46,-0.5l-0.46,-0.93l-1.4,-0.61l-1.56,-2.08l-0.72,-0.23l0.22,-3.95l0.56,-0.25l0.98,0.52l2.06,-0.86l0.72,-1.41l0.17,-2.02l-0.26,-0.99l0.64,0.12l0.94,-1.05l1.55,0.38l0.4,0.62l1.4,0.7l1.66,-0.35l0.19,-0.39l-0.27,-0.49l-1.75,-0.31l-0.19,-0.29l0.69,-0.66l-0.24,-0.72l-0.44,-0.15l0.42,-1.18l-0.23,-0.87l0.5,-0.67l-0.36,-0.44l2.66,0.75l0.27,2.92l0.36,0.29l0.55,-0.77l1.33,1.74l0.46,0.08l0.19,-0.73l0.76,0.45l0.47,-0.03l0.12,-0.45l-0.34,-0.73l-1.32,-1.03l1.15,0.51l0.52,-0.51l-0.83,-1.17l-1.37,-0.9l-0.55,0.16l0.06,-0.36l1.18,-1.2l2.56,0.72l0.58,-0.35l-0.48,-1.42l-0.05,-1.45l-0.53,-0.77l0.29,-0.45l0.72,0.37l0.67,-0.25l0.37,0.46l0.66,0.02l1.18,1.09l0.81,0.07l0.28,-0.64l-0.31,-0.41l0.34,-0.45l0.33,-1.86l0.3,2.05l0.41,0.79l2.22,1.58l1.03,0.17l1.58,-0.27l0.8,0.23l3.31,-0.51l1.96,-1.05l0.66,0.85l2.67,0.92l1.36,-0.71l1.01,-1.0l0.82,-0.25l0.49,-0.88l0.21,0.98l0.42,0.3l1.62,-0.41l0.7,1.51l-0.62,0.78l0.27,1.11l0.44,-0.13l1.24,-1.63l-0.46,-1.62l0.24,-1.17l2.15,-1.12l2.17,0.88l1.64,-0.07l0.33,-0.34l-0.23,-0.41l-0.86,-0.16l-1.17,-0.79l-0.28,-0.52l0.48,-3.87l-0.27,-0.71l-0.8,-0.58l1.92,-2.35l-0.25,-0.51l-2.17,-0.78l-0.35,-0.35l0.02,-0.72l-1.2,-1.47l-1.79,-0.9l-1.52,-0.06l-0.75,0.45l-1.3,-0.12l-2.81,1.27l-0.75,-0.7l0.38,-0.31l-0.07,-0.57l-0.68,-0.41l-0.62,0.1l-0.31,-0.38l0.2,-0.44l-0.25,-0.56l-0.79,-0.09l-0.3,-0.56l-1.4,-0.35l-0.04,-0.92l0.72,-0.32l0.98,0.99l1.0,-0.57l0.25,-1.52l1.52,1.6l0.17,2.02l0.68,0.25l0.14,0.74l0.66,0.54l0.57,0.08l0.45,-0.41l-0.07,-0.56l0.44,-0.11l0.26,-0.5l-0.81,-1.17l-0.19,-1.86l0.8,1.37l0.56,0.39l0.59,-0.26l-0.09,-1.94l0.76,-0.03l0.44,0.91l-0.09,1.18l0.45,0.58l0.82,-0.33l0.32,-0.98l0.41,0.14l0.78,1.98l0.68,0.14l1.24,1.27l1.4,2.13l1.44,-0.02l2.09,-2.08l0.71,0.33l0.51,-0.27l0.17,-1.12l2.0,2.68l0.62,0.36l-0.01,1.0l1.84,2.88l2.08,0.62l0.77,-0.36l0.03,0.59l0.4,0.35l1.32,-0.12l1.64,0.72l0.98,-0.47l-0.32,1.28l0.23,0.57l0.63,-0.08l0.69,-1.08l0.53,0.59l1.12,-0.28l0.5,-0.82l1.2,-0.13l1.06,-1.07l1.61,0.48l-1.31,0.76l-0.25,0.81l0.33,0.65l1.98,1.18l1.57,-0.62l0.52,-0.75l0.49,0.59l0.04,0.85l0.65,0.15l0.62,-0.58l0.7,2.11l-0.11,1.09l0.45,0.45l0.42,-0.08l1.24,-1.24l0.21,-0.76l1.82,1.37l2.82,0.45l1.76,-0.17l2.05,-1.94l0.72,-0.18l0.08,0.75l0.67,1.03l0.58,0.07l0.62,1.65l1.96,0.36l0.65,1.11l1.46,1.17l1.49,-0.3l1.07,0.96l0.63,0.13l0.59,-0.71l-0.63,-0.7l0.51,-0.08l0.83,0.65l1.36,-0.52l0.14,-0.49l-1.76,-0.64l1.13,-0.72l-0.06,-0.56l0.78,-0.39l0.88,0.48l0.82,0.0l1.29,-0.68l1.14,0.38l2.68,-1.79l1.37,-0.38l-3.07,2.79l-0.08,1.08l0.37,0.82l1.23,1.48l0.72,-0.01l0.36,-0.75l0.73,-0.27l0.31,-0.75l1.27,-1.12l0.18,0.38l0.43,0.03l0.0,0.58l0.61,1.02l0.58,0.16l0.81,-0.31l-1.09,1.88l0.86,2.1l0.66,0.28l0.56,-0.48l1.38,-0.08l0.63,0.52l1.66,-0.43l0.72,-0.56l1.77,-3.7l-0.59,-1.03l-2.16,-0.05l-0.33,-0.35l1.54,-2.01l0.82,-0.12l1.91,-1.68l0.42,0.84l0.91,-0.23l0.45,1.47l0.44,0.3l0.16,1.59l2.09,2.34l0.99,-0.01l1.01,-0.85l-0.13,-0.72l-0.83,-0.45l0.54,-0.22l0.97,0.82l1.06,0.26l0.51,0.66l0.52,1.7l-1.81,1.75l-0.57,-0.44l-1.23,0.63l-0.27,0.97l0.19,1.02l-0.88,1.0l-0.36,1.5l-1.29,0.27l-0.28,0.81l-0.75,-0.32l-0.52,0.23l-0.23,0.53l-0.27,-0.22l-0.68,0.16l0.28,2.01l1.05,0.73l0.42,0.7l1.2,0.55l-0.5,0.26l-0.79,-0.63l-1.29,0.54l0.08,0.96l1.06,1.06l-0.38,1.06l-0.55,0.09l-0.45,0.52l-0.13,0.9l-0.99,0.32l-0.35,-0.56l0.01,-2.65l-1.1,-0.56l-0.93,1.13l0.12,1.22l-0.6,-0.71l-0.47,0.09l-0.45,0.56l0.16,0.82l-0.62,0.62l-0.5,0.14l-0.07,-0.26l0.33,-0.73l-0.21,-1.12l-0.7,-0.19l-0.9,0.89l-0.39,1.07l-0.52,0.23l-0.68,-0.4l-0.51,0.17l-0.45,0.71l-0.92,0.29l-0.75,1.12l-0.12,1.11l0.81,0.51l-0.09,0.46l-0.52,-0.09l-0.62,0.4l0.15,2.17l-0.34,0.4l-0.09,0.95l0.94,1.44l-0.11,0.83l0.51,0.68l1.55,0.08l0.84,-0.67l-0.6,1.19l-0.3,2.09l-1.35,1.28l-0.32,4.22l-2.8,1.66l-1.79,3.18l-0.84,0.13l-0.32,0.45l-1.53,2.61l-0.25,1.34l-1.11,0.54l-0.42,0.67l-0.82,-0.19l-0.51,0.33l0.62,2.24l1.38,2.81l1.66,1.47l1.33,0.57l0.63,-0.07l1.12,1.22l1.01,0.21l1.92,1.17l1.72,1.72l5.35,2.9l0.9,2.97l1.56,1.16l1.32,0.17l2.15,1.9l0.65,0.17l0.62,-0.23l0.26,0.65l2.06,2.07l-0.29,0.83l0.24,0.7l0.92,0.21l0.79,-0.71l1.51,0.15l0.67,0.51l0.6,0.02l0.39,-0.94l0.69,-0.38l1.04,1.02l2.97,1.25l3.24,2.77l0.88,0.14l1.64,0.96l1.21,-0.1l3.63,1.52l2.3,3.62l2.53,2.08l0.0,192.29l-174.58,0.0l0.0,-225.43ZM368.32,40.44l-0.06,0.03l-0.06,0.02l0.03,-0.07l0.09,0.02ZM461.21,69.3l0.26,0.35l-0.02,0.49l-0.04,-0.22l-0.2,-0.62ZM448.26,82.8l0.0,0.0l-0.0,0.0l-0.0,-0.0ZM444.0,54.19l-1.43,0.26l-0.81,0.57l-0.06,-0.17l0.46,-0.94l0.77,0.24l1.08,-0.7l0.65,0.13l-0.66,0.62ZM445.22,53.35l0.4,-0.26l0.59,-0.51l-0.43,0.56l-0.57,0.21ZM447.88,50.55l-0.05,-0.17l-0.18,-0.37l0.37,0.14l-0.15,0.4ZM397.23,48.81l0.03,-0.12l0.05,0.0l-0.08,0.12ZM375.37,37.82l-0.22,-0.18l-0.06,-0.1l0.14,0.05l0.14,0.22ZM468.43,127.67l0.1,-0.35l0.71,0.08l0.23,-0.8l0.98,0.58l-0.08,1.78l0.5,0.56l-0.35,0.77l-0.27,-0.69l-0.69,-0.31l-0.3,-1.34l-0.82,-0.27ZM458.1,97.49l0.55,-1.23l-0.52,-2.32l0.4,-2.33l-0.36,-0.84l0.35,0.33l1.21,0.0l0.57,-0.47l1.7,-0.47l0.35,-0.43l-0.5,-0.97l0.81,-0.4l-0.11,0.69l0.59,0.6l0.23,1.08l0.82,0.56l1.65,0.04l0.63,-0.72l-0.08,-1.06l0.73,-0.02l0.23,0.48l-0.87,0.96l-0.3,0.83l-1.16,0.18l-0.6,0.65l-0.19,1.36l0.53,0.52l-1.52,0.61l-0.15,1.32l0.65,1.61l1.4,0.02l0.27,-0.52l1.47,0.98l0.75,-0.57l0.25,0.54l-0.23,0.67l-0.5,0.2l-3.05,-0.68l-1.17,0.56l-0.62,-0.08l-4.2,-1.69ZM463.06,88.02l0.23,-0.44l0.18,-0.01l-0.1,0.31l-0.3,0.14ZM464.48,128.23l0.08,-0.28l0.03,-0.23l0.15,0.36l-0.27,0.16ZM459.77,42.86l-0.03,-0.08l0.93,-0.65l-0.68,0.76l-0.23,-0.03ZM461.45,40.94l0.65,-1.42l0.63,-0.85l0.23,-0.06l-1.51,2.34ZM462.63,128.85l-0.47,-0.7l0.51,-0.43l0.51,0.3l-0.56,0.83ZM460.11,126.16l-0.1,-0.48l0.39,-0.78l0.85,-0.31l-0.26,1.5l-0.88,0.07ZM459.73,88.55l0.04,0.12l-0.11,0.54l-0.4,-0.46l0.48,-0.21ZM454.83,46.91l0.2,-0.39l0.11,-0.17l0.13,0.14l-0.44,0.41ZM452.75,55.43l0.69,-0.27l0.14,0.1l-0.33,0.25l-0.5,-0.09ZM452.4,89.34l-0.0,-0.18l0.11,0.05l-0.11,0.13ZM453.35,89.0l0.59,-1.31l1.02,0.71l-0.74,0.37l-0.09,0.3l0.49,0.54l-0.45,0.97l-0.83,-1.59ZM452.64,83.33l0.02,-0.06l0.0,0.05l-0.02,0.02ZM452.93,83.07l-0.24,0.12l0.1,-0.35l0.14,0.22l0.0,0.01ZM449.25,48.29l0.33,-0.25l0.35,-0.17l-0.33,0.43l-0.36,-0.01ZM444.66,111.44l0.04,-0.26l-0.02,-0.11l0.12,0.25l-0.14,0.12ZM428.13,55.93l0.36,0.06l-0.02,0.23l-0.16,0.02l-0.18,-0.32ZM382.93,47.77l0.43,0.07l0.65,-0.04l-0.23,0.49l-0.96,0.15l-0.68,-0.8l0.79,0.13ZM381.87,37.87l0.42,-0.71l-0.39,-1.29l0.94,-0.35l0.49,1.2l-0.58,0.88l0.66,0.58l0.2,1.32l-0.42,1.1l-0.33,-1.29l-1.0,-1.43ZM379.02,56.27l0.45,0.03l-0.01,0.29l-0.44,-0.33ZM340.57,38.26l1.96,2.4l0.6,0.14l0.55,-0.43l0.29,0.18l0.12,0.27l-0.76,1.21l0.46,0.77l0.7,-0.07l0.74,-0.67l0.79,1.26l0.73,0.07l0.46,-0.83l2.16,-0.43l1.4,-1.0l1.38,0.68l0.26,1.1l0.36,0.27l0.5,-0.5l0.37,-1.6l1.45,-0.95l1.12,2.44l0.64,0.26l0.38,-0.53l-0.51,-2.69l0.91,-0.82l0.23,0.49l-0.27,0.63l0.42,0.55l0.59,-0.07l0.39,-0.53l0.61,0.23l0.77,-0.22l0.76,2.51l0.27,0.36l0.9,-0.19l0.09,1.09l-0.77,-0.03l-0.46,0.54l-0.31,1.54l0.18,0.53l-1.42,-0.51l-1.88,2.88l-0.6,0.08l-3.08,1.95l-2.52,2.01l-1.09,-1.04l-3.96,-1.76l-0.21,-0.5l-2.3,-1.84l-1.16,-0.35l-0.21,-1.87l-1.02,-1.23l-0.71,-2.88l0.15,-0.97l-0.62,-0.75l0.15,-1.2ZM333.61,50.06l0.98,-0.47l-0.08,-1.2l1.28,0.44l1.3,-1.06l-0.25,-2.22l0.26,-0.91l-0.68,-0.82l1.88,-2.14l1.0,-0.14l0.91,1.76l-0.29,0.83l0.12,1.0l1.41,1.34l-0.28,2.02l0.53,0.38l0.6,-0.23l1.19,0.29l1.31,0.98l-0.07,0.39l-0.79,0.35l-1.4,0.12l-3.34,-1.3l-4.07,1.12l-1.1,-0.08l-0.43,-0.44Z", "name": "Northern Territory"}, "AU-QLD": {"path": "M789.12,373.33l0.3,-1.54l-0.25,-0.61l0.26,-1.24l-0.25,-1.11l0.61,-1.03l0.05,-0.69l0.6,0.47l0.61,0.04l-1.48,5.64l-0.44,0.06ZM489.12,145.78l2.96,2.35l2.28,1.03l1.57,0.01l2.27,0.95l3.13,-0.31l0.56,0.58l3.12,1.27l3.19,0.47l0.98,1.59l1.58,0.98l-0.18,1.51l0.23,1.15l1.84,3.3l0.8,0.57l3.15,0.54l3.85,3.08l3.31,0.81l2.24,1.01l0.55,0.91l1.12,0.86l2.38,0.19l2.4,-0.27l5.3,-1.35l3.54,-2.27l1.0,-0.22l0.6,-0.92l1.65,-0.71l0.76,-1.95l0.41,-2.41l0.89,-1.82l0.21,-1.3l-0.23,-1.1l1.92,-2.45l0.64,-1.68l0.63,-0.17l1.69,-1.95l0.69,-2.62l0.5,-0.21l0.63,-1.34l0.24,-1.16l-0.28,-0.75l0.55,-0.82l0.65,-2.85l1.54,-3.12l-1.01,-2.69l0.51,-0.7l0.68,-4.89l0.91,-3.34l1.63,-3.84l0.2,-1.33l1.07,-1.45l0.01,-0.78l0.45,-0.51l0.06,-2.02l-1.13,-2.29l-1.59,-7.76l0.21,-1.51l1.33,-3.93l-0.04,-1.92l-0.35,-0.94l-1.88,-2.47l-0.31,-1.51l0.12,-1.68l1.01,-3.99l1.94,-4.08l0.72,-0.17l0.01,-0.8l0.6,-1.45l-0.24,-0.92l-1.12,-1.51l-0.17,-1.66l-0.58,-1.2l0.74,-1.18l2.11,-1.33l1.16,-2.79l0.65,-0.21l0.35,0.42l0.31,2.58l0.83,1.23l0.46,0.19l0.29,-0.4l-0.01,-1.21l-0.47,-1.53l1.31,-0.46l0.5,-0.76l-1.88,-0.34l-1.25,-0.86l1.49,-0.84l0.58,0.02l0.42,-0.32l-0.25,-0.46l-0.98,-0.41l-0.71,0.3l-1.72,0.01l-1.28,-1.29l0.48,-0.39l-0.1,-0.71l-1.87,-0.28l1.31,-3.48l1.16,0.25l0.78,-0.48l-0.99,-1.09l0.79,-2.38l1.13,-1.48l0.71,2.72l0.45,-0.2l0.58,-1.09l0.84,0.56l0.6,-0.2l0.21,-0.61l-0.04,-0.47l-0.8,-0.97l-0.77,-0.33l-0.03,-1.16l0.36,-1.56l0.86,-1.17l0.0,-1.0l2.35,-7.22l0.05,-2.05l0.51,-1.77l-0.19,-3.74l3.54,-1.07l1.34,-1.57l0.74,-1.86l0.87,0.04l0.59,-0.33l1.15,0.7l-1.9,1.84l-0.23,1.79l0.47,0.57l0.41,-0.12l0.96,-1.43l0.49,-0.03l0.21,0.93l0.63,0.37l0.01,1.11l0.73,0.07l0.82,-0.45l0.65,1.42l0.53,2.17l-0.26,0.9l0.16,1.27l0.81,0.71l0.55,1.26l-0.96,1.75l0.7,2.72l0.1,4.61l2.74,2.17l2.31,-0.57l1.51,1.19l-2.21,3.22l-0.18,3.59l0.44,0.55l1.86,0.08l1.26,0.87l0.8,2.86l2.51,1.37l-0.98,2.24l-0.39,2.85l0.21,0.47l0.67,-0.36l2.18,-0.07l-0.38,1.06l0.27,0.57l-0.16,2.37l0.47,2.4l-0.01,2.67l1.31,1.96l-0.25,1.32l0.23,0.66l-0.55,1.21l-0.67,3.2l1.31,2.66l0.31,1.34l1.45,1.31l0.4,3.83l1.52,3.95l1.36,1.4l2.35,0.79l2.3,-1.06l1.97,-1.67l0.47,-0.9l0.05,-1.2l0.43,0.06l0.45,0.65l1.24,0.26l2.76,-1.3l0.96,-1.49l1.13,1.51l0.01,2.1l0.86,0.25l-0.26,0.6l0.14,1.47l1.2,1.59l0.59,0.26l1.11,-0.17l0.84,0.94l1.92,0.24l0.79,2.31l1.64,1.4l0.82,-0.06l1.84,0.84l0.81,-0.0l0.23,0.73l1.11,1.32l0.96,0.12l-1.63,2.51l-0.16,1.88l0.5,1.33l0.73,0.46l-0.41,0.75l0.1,0.94l-0.56,0.39l-0.28,1.01l0.51,0.5l0.17,0.61l-0.25,0.77l0.97,1.04l-0.15,1.16l1.12,2.29l-0.13,1.25l0.26,0.51l-0.32,1.37l1.51,1.92l0.56,1.22l-0.54,2.67l0.66,1.17l-1.01,1.38l-0.3,2.47l0.54,0.85l0.75,0.06l0.32,0.94l1.95,2.87l1.8,1.28l0.31,0.85l0.67,0.44l0.92,1.41l-0.63,0.68l0.91,1.8l0.91,-0.22l-0.13,-1.14l0.71,-0.62l0.68,0.35l0.31,-0.1l0.67,-0.64l0.11,-0.01l-1.2,2.25l-0.19,1.34l1.38,2.07l0.3,1.58l1.25,2.39l0.8,0.76l-0.09,2.38l1.49,2.14l-0.78,1.0l-0.02,1.6l-0.38,0.51l0.45,1.56l-0.24,1.31l-1.78,4.24l0.12,2.14l1.9,2.43l1.46,0.46l0.48,2.43l0.51,0.46l2.0,0.19l-0.14,1.34l-0.77,2.02l-0.42,2.91l0.2,0.68l1.2,1.8l1.47,1.0l1.09,1.36l3.83,2.2l1.0,0.2l0.84,-0.33l0.94,1.17l2.01,1.39l1.43,-0.17l1.35,-1.38l0.04,1.59l1.52,2.01l0.9,-0.07l1.84,0.49l0.63,-0.27l2.54,0.04l0.65,-0.32l1.53,2.32l0.75,2.2l0.08,0.9l-0.61,0.34l2.42,2.83l2.24,0.28l0.38,-0.55l-0.6,-2.2l0.78,0.25l0.83,2.66l1.24,1.05l1.86,0.32l1.11,-0.6l0.88,1.01l2.64,0.65l0.35,0.82l-0.28,0.12l0.01,1.45l2.47,1.77l0.25,0.58l1.25,-0.1l0.46,-0.5l-0.16,-0.51l0.39,-0.73l-0.75,-0.93l0.73,0.43l1.01,-0.26l0.16,1.24l0.76,1.5l0.38,0.17l0.71,-0.27l0.25,1.14l0.56,0.33l1.54,-0.67l0.08,0.79l1.04,1.09l0.03,1.44l-0.8,-0.16l-0.57,0.78l-1.03,-0.66l-0.5,0.45l0.33,1.42l-0.8,0.48l-0.41,0.51l0.1,0.34l0.72,1.25l0.5,0.29l-0.2,0.3l0.54,1.19l1.07,1.15l0.96,0.06l0.15,0.87l-0.46,1.45l0.77,0.14l0.63,-0.65l0.79,0.43l0.75,-0.12l0.97,0.72l-0.05,0.89l0.3,0.53l1.16,-0.12l0.51,0.46l0.64,0.06l1.35,1.66l-0.68,1.72l0.05,0.98l0.8,1.34l0.74,-0.14l0.4,0.26l0.34,1.49l-0.49,0.73l0.56,0.4l-0.52,0.54l-0.01,1.19l0.44,0.32l0.93,-0.46l0.6,0.25l0.09,0.71l0.54,0.74l0.63,0.22l-0.31,0.81l0.68,1.64l-0.7,0.46l-0.12,0.99l0.8,1.35l-0.02,1.59l0.91,1.71l0.14,1.28l0.75,1.47l-0.29,0.63l1.01,1.29l-0.33,0.6l0.14,0.41l1.12,0.5l0.44,0.74l0.55,0.23l-0.06,1.42l-0.68,0.95l0.42,0.58l2.16,-1.07l0.77,-1.17l0.98,1.61l1.57,1.31l1.21,2.06l0.52,0.31l0.58,-0.45l-0.49,-1.94l-1.77,-3.88l0.37,-0.41l-0.46,-0.78l0.93,-2.3l1.04,-0.44l1.08,1.86l0.64,0.46l0.89,2.36l4.09,1.96l0.77,0.8l1.44,0.5l1.77,1.47l0.56,-0.04l0.11,-0.68l-0.54,-0.79l-0.17,-1.21l-0.58,-0.45l-0.17,-0.9l0.38,-1.52l0.78,0.15l0.02,1.05l2.37,1.25l-0.42,0.52l-0.7,-0.3l-0.55,0.67l0.13,0.81l0.46,0.56l0.3,-0.08l0.31,1.3l0.91,-0.16l0.9,1.42l-0.77,4.17l-0.74,0.16l-0.2,0.58l0.66,0.67l0.12,0.99l-0.28,2.83l0.62,0.57l0.2,1.06l0.6,0.29l-0.96,1.24l0.52,2.1l1.2,1.39l-0.81,-0.01l-0.42,0.54l1.01,0.56l0.44,0.91l0.46,0.2l1.05,-0.56l1.12,0.46l0.39,0.72l1.69,1.38l1.22,2.68l1.78,0.55l0.3,0.56l0.63,0.13l2.35,3.01l0.88,-0.3l0.88,0.58l-0.14,0.78l0.45,0.68l0.43,0.19l0.55,-0.31l0.13,-0.56l0.45,-0.05l1.24,0.9l0.58,-0.44l-0.11,-0.48l0.55,0.23l0.52,-0.41l0.71,1.95l0.86,0.66l0.79,-0.03l0.68,0.77l1.32,4.03l1.07,2.14l1.32,1.7l3.63,2.79l1.97,0.54l1.11,1.03l0.52,1.62l0.14,2.29l1.75,2.65l0.73,0.46l-1.13,0.07l0.04,0.77l1.03,0.28l1.51,1.25l2.29,0.66l0.55,-0.26l1.26,0.31l0.24,2.21l-0.77,0.49l-0.38,0.75l0.52,0.51l0.9,-0.45l0.26,0.65l-1.0,1.09l0.06,2.04l-0.42,0.65l0.75,0.73l0.15,0.73l1.11,0.56l0.62,1.07l0.23,1.39l-0.26,1.46l0.4,0.39l0.49,-0.22l0.7,-1.58l0.63,1.04l1.0,0.24l-0.86,1.96l-1.33,5.43l0.36,1.23l0.83,0.36l-0.42,1.32l-0.07,3.96l0.21,0.75l0.55,0.33l-0.05,4.13l1.23,3.7l-1.47,-0.01l-0.82,0.49l-0.8,1.01l-0.24,1.06l0.62,0.55l0.88,0.03l-1.01,1.36l0.12,0.77l1.99,1.12l0.49,1.81l1.3,0.68l0.85,1.83l0.17,1.65l1.81,2.64l0.03,0.82l0.55,0.19l-0.15,1.33l-0.4,0.31l-0.19,1.0l0.24,0.57l0.64,0.1l0.14,1.96l0.93,1.3l-2.48,1.79l-3.14,0.24l-1.74,1.99l-4.64,-0.66l-2.1,0.75l-2.69,-1.37l-0.42,0.11l-0.52,0.74l-0.55,-1.08l-0.64,-0.41l-0.58,0.05l-1.2,0.97l-0.76,1.19l-1.83,0.42l-1.16,1.03l-1.36,0.06l-4.07,2.34l-0.04,0.91l1.99,2.76l-0.91,3.84l-1.43,0.45l-1.43,-0.18l-0.68,1.01l-0.74,-0.19l-0.63,-1.2l-0.57,-0.25l-1.41,0.84l-1.79,0.56l-0.91,1.45l-0.13,1.05l-2.43,2.1l-0.79,-1.25l-0.53,-3.72l-2.67,-1.85l-1.78,-0.3l-0.11,-1.45l-0.41,-0.64l-1.27,-0.24l-0.8,-0.7l-2.86,-1.17l-3.5,0.48l-3.17,-0.24l-2.97,-2.36l-1.37,0.42l-1.57,-0.02l-2.75,0.97l-4.97,0.13l-0.98,0.33l-1.4,-0.23l-0.54,-0.88l-2.48,0.29l-0.6,0.45l-0.95,1.69l-2.73,1.18l-1.85,1.7l-1.62,0.62l-0.74,2.0l-1.61,1.17l-154.77,0.0l0.0,-62.66l-0.4,-0.4l-58.06,0.0l0.0,-191.41ZM559.65,63.8l0.05,1.09l-0.57,0.2l0.01,-0.18l0.51,-1.11ZM700.18,223.45l0.67,0.48l-0.0,0.57l-0.63,-0.41l-0.03,-0.64ZM755.57,296.91l-0.37,-0.5l-0.55,-0.35l0.56,0.16l0.36,0.69ZM788.46,359.89l1.27,-0.55l-0.98,4.19l-0.26,-1.61l-0.04,-2.03ZM781.77,321.14l2.99,-2.23l1.34,-2.08l-0.07,-2.0l-1.55,-2.18l1.67,-1.51l0.02,3.22l0.41,1.23l1.29,1.4l-4.11,9.29l-1.5,4.21l0.33,1.39l-0.38,1.01l-0.82,-1.08l-0.24,-2.1l-0.78,-0.86l0.02,-0.41l0.73,-0.63l0.29,-1.87l1.31,-2.17l-0.02,-2.0l-0.93,-0.62ZM742.33,285.72l0.86,-0.52l0.32,0.47l1.73,0.64l0.14,0.48l0.74,-0.0l0.17,1.9l1.12,1.46l-0.31,0.93l-0.72,0.06l-0.55,-0.61l-0.63,-1.37l-2.89,-3.44ZM732.17,261.03l0.29,-0.46l0.54,0.51l-0.55,0.6l-0.28,-0.65ZM720.62,258.85l-0.24,-0.5l0.17,-0.96l0.23,0.43l-0.16,1.03ZM702.51,219.82l0.32,-0.53l-0.23,-0.45l0.11,-0.53l0.12,0.92l0.73,0.76l-0.24,0.36l-0.42,-0.05l-0.39,-0.48ZM701.46,217.04l-0.24,0.01l0.4,-0.51l0.19,0.62l-0.34,-0.12ZM701.72,216.25l-0.01,-0.14l0.08,0.01l-0.07,0.13ZM660.38,196.89l0.54,-0.18l0.31,0.11l-0.67,0.35l-0.18,-0.28ZM656.34,188.52l0.06,0.08l0.17,0.31l-0.39,0.02l0.16,-0.4ZM646.85,179.28l1.88,0.64l0.49,-0.26l0.11,-0.68l0.57,0.03l-0.26,1.25l1.06,1.23l-0.21,0.4l0.41,0.37l-0.55,1.04l-1.08,-0.26l-0.42,-1.69l-0.56,-0.89l-1.45,-1.18ZM578.86,3.14l0.29,-0.11l1.87,0.0l-0.5,0.27l-1.67,-0.16ZM570.88,18.97l0.35,-0.79l0.42,-0.12l0.89,0.13l0.3,0.45l-0.7,0.91l-1.26,-0.58ZM572.37,27.04l-0.41,-0.02l0.05,-0.33l0.52,0.1l-0.16,0.25ZM569.35,27.94l1.25,-0.84l1.06,1.56l-1.13,0.35l-0.45,0.56l-0.68,-0.84l-0.05,-0.79ZM570.35,0.5l0.33,-0.08l0.61,0.18l-0.27,0.01l-0.66,-0.1ZM569.67,18.08l-0.7,-0.71l0.65,-0.99l0.5,0.5l-0.45,1.2ZM511.4,148.18l-0.13,-0.23l0.14,-0.2l0.02,0.32l-0.02,0.12ZM511.7,146.77l1.18,-2.21l1.45,-1.11l3.46,-0.55l1.78,-0.74l0.98,0.78l0.83,0.15l0.31,0.44l-0.1,0.3l-1.47,0.39l-0.98,-1.07l-1.61,0.69l-0.56,1.12l0.05,0.95l-0.35,0.84l-0.96,-0.37l-0.6,1.0l-1.11,0.57l-1.11,0.0l-1.19,-1.17ZM517.14,155.5l0.97,-1.28l0.57,0.47l0.28,0.9l-1.0,0.23l-0.82,-0.32Z", "name": "Queensland"}, "AU-SA": {"path": "M380.31,464.82l-1.25,-0.05l-1.84,0.49l-1.41,-0.38l-2.22,-2.33l-5.83,-3.94l-4.85,-2.65l-7.11,-2.79l-1.01,-0.03l-2.79,1.72l-3.81,1.12l-4.7,-0.48l-7.61,-0.25l-1.58,0.44l-2.64,-0.1l-3.69,0.56l-4.19,0.14l-1.68,0.45l-4.9,0.28l-1.26,0.46l-2.2,0.19l-0.0,-119.69l233.02,0.0l0.01,169.76l-0.64,0.31l0.02,90.09l-4.93,0.32l-1.71,-0.7l-2.7,-2.15l-1.05,-0.39l-0.71,-0.76l-0.44,-1.46l-1.89,-3.41l-2.29,-1.9l0.21,-0.85l-0.42,-0.64l-1.75,-0.94l-0.76,0.18l-3.68,-4.8l-0.89,-1.72l0.66,-0.59l0.1,-0.87l-0.91,-1.48l-0.22,-1.21l-0.98,-0.8l1.95,-1.03l1.23,-1.43l0.44,-1.84l-0.13,-3.1l-3.88,-8.72l0.28,-0.32l-0.12,-0.98l-1.49,-3.79l-2.35,-2.85l-1.17,-0.6l-3.5,-3.16l1.29,0.11l0.84,-0.65l0.33,-2.23l-2.15,-1.7l0.39,-0.29l1.4,0.25l0.61,-0.48l-0.29,-2.8l-0.96,0.04l-1.0,-1.09l-1.83,-0.37l-0.26,0.77l-1.38,0.88l-1.47,-0.09l-1.39,0.71l-0.32,0.86l0.46,1.12l-1.37,-0.78l-1.63,0.09l-0.44,0.29l-0.04,0.53l0.52,0.53l-2.96,0.51l-1.16,1.19l-1.31,0.72l-1.75,0.25l-3.25,-0.23l-1.31,0.53l-1.46,-0.93l0.49,-1.27l2.3,-1.1l1.94,-2.35l1.72,-1.14l0.14,-1.76l0.54,-0.91l-0.25,-0.97l0.13,-1.49l0.93,-1.75l-0.53,-3.6l0.14,-1.73l0.74,0.53l0.37,-0.88l-0.32,-1.03l-1.81,-1.3l-0.19,-1.0l-1.34,-1.13l-0.7,-1.45l-0.75,-0.45l-1.25,-3.94l-0.56,-0.85l-0.77,-0.47l-0.02,-1.1l-1.64,-1.9l-0.58,0.08l-1.39,2.64l0.04,0.75l0.45,0.71l-2.04,2.35l-0.76,2.46l-0.11,1.68l0.38,0.54l-0.52,1.34l-0.17,1.82l-1.06,1.85l-0.81,2.63l-0.08,1.21l-0.44,0.54l0.05,1.5l-1.13,0.94l-2.12,-1.09l-2.74,-0.28l-1.83,1.18l-1.89,0.03l-1.38,1.53l-2.39,-0.33l-2.51,1.53l-0.49,-0.03l-0.54,-0.69l0.26,-0.62l1.49,-1.26l0.62,-1.24l-0.32,-1.58l0.63,-0.67l0.0,-0.76l0.77,-1.05l2.04,0.51l2.44,-0.46l2.33,1.05l0.8,-0.18l0.71,-0.73l0.73,-4.71l0.65,-2.04l-0.65,-3.53l-0.89,-0.71l0.64,-0.51l0.52,-2.7l-0.18,-1.62l-0.53,-1.09l0.89,0.04l0.88,-1.48l0.14,-0.89l-0.35,-0.89l1.68,-1.67l0.14,-0.72l-0.28,-0.55l1.93,-1.84l1.01,-1.77l0.62,-0.12l1.31,-1.75l0.61,0.32l0.7,-0.54l0.1,-2.16l-1.42,-2.81l0.09,-0.89l-1.09,-1.88l0.67,-1.26l1.72,-0.92l1.85,-0.23l0.26,-0.47l-0.06,-1.14l-0.66,-1.45l-0.97,-0.34l-1.05,-4.61l0.5,-0.36l0.06,-0.66l-1.63,-1.22l-0.01,-0.89l-0.82,-1.07l0.22,-0.8l-0.65,-0.34l-0.25,-0.68l-0.68,-0.01l-0.43,1.33l0.01,2.73l0.76,0.61l0.27,1.27l0.04,1.57l-0.36,0.78l-0.54,0.16l-0.19,0.42l0.4,1.25l-1.44,-0.79l-1.08,0.16l-0.86,0.78l-0.11,0.93l-1.44,1.53l-1.17,0.68l-0.47,1.94l-0.92,1.63l-0.35,2.56l-1.22,1.83l-1.53,3.3l-1.27,1.06l-2.43,0.48l-0.8,-0.91l-0.88,-0.05l-1.37,1.67l0.32,0.8l-1.6,0.26l-1.94,1.29l-1.99,0.8l-0.64,1.09l-1.24,1.0l-1.48,0.58l-1.28,1.06l-0.41,1.27l-2.31,3.93l-1.85,1.05l-0.45,0.64l-0.15,1.0l0.17,1.69l-0.66,-0.7l-2.8,1.28l-0.44,1.27l0.23,0.78l-0.97,0.33l-0.25,0.76l-0.13,1.13l0.48,0.77l-0.86,0.08l-0.82,1.28l0.33,0.47l1.03,0.13l0.92,-0.24l1.0,-0.85l0.66,0.27l0.3,-0.18l-0.9,1.44l0.63,2.58l-0.43,0.19l-0.43,-0.98l-1.18,-0.6l-0.81,-1.14l-0.89,-0.46l-1.24,0.14l-0.73,0.66l-0.45,1.27l-0.49,0.0l-0.39,-1.39l-2.92,-3.36l-2.28,-1.14l0.13,-0.5l0.95,0.38l1.76,-0.44l0.42,-0.51l-0.25,-0.54l-0.97,-0.22l-0.03,-0.97l-0.51,-0.26l-0.55,0.38l0.25,-1.63l-0.67,-1.49l-0.65,-4.13l-0.57,-1.0l-1.1,-0.48l0.55,-0.52l-0.22,-2.89l-1.49,-2.51l-0.98,-0.51l-1.45,-1.63l-4.05,-3.38l0.35,-1.81l-0.15,-1.51l-0.99,-2.9l-2.15,-2.07l0.61,-0.52l-0.53,-1.29l-2.3,-0.83l-0.8,0.22l-0.22,0.89l-2.04,-0.89l-1.12,0.44l-0.38,-0.37l-0.57,0.1l-0.19,0.79l-0.71,-0.62l-0.72,-2.26l-0.86,-0.55l0.34,-0.86l-0.5,-1.05l-0.64,-0.33l-0.6,0.22l-1.14,-0.3l1.02,-0.94l0.29,-0.69l-0.19,-0.94l-0.93,-1.42l1.71,0.14l-0.09,1.39l0.84,0.44l1.84,-2.96l-0.44,-2.26l-0.96,-1.58l-1.59,-1.45l-0.88,-0.21l-0.68,0.35l-1.13,-0.01l-0.68,0.81l-1.1,-0.09l-1.12,1.02l0.24,-1.93l1.39,-0.38l0.16,-0.95l-2.37,-3.1l-0.71,-0.15l-0.46,0.32l-0.15,-0.81l-1.22,-0.52l-0.45,-0.85l0.11,-0.69l-0.8,-0.57l-1.56,0.04l-0.43,1.43l-0.88,-0.48l-0.33,-0.72l-0.55,-0.01l-1.28,0.68l-0.01,0.72l0.43,0.35l-0.23,0.31l-1.84,-0.4l-0.86,0.5l-1.42,-0.66l-0.75,0.21l-1.82,-1.82l-0.59,-0.29l-0.86,0.13l-0.32,-0.61l-3.77,-2.67l-3.78,-0.36l-1.46,0.15l-1.23,0.6l-0.25,1.04ZM504.86,541.95l1.3,0.02l0.24,0.12l-0.69,0.28l-0.84,-0.41ZM436.63,521.5l-0.05,-0.04l0.05,0.02l-0.0,0.02ZM435.87,520.88l-1.19,-0.51l-1.67,0.53l1.01,-1.76l0.49,0.66l1.36,0.34l0.01,0.73ZM512.21,545.41l-2.84,-1.94l0.71,-0.35l0.13,-0.7l0.7,-0.62l1.51,0.91l-0.21,1.4l0.39,0.58l-0.4,0.71ZM460.59,550.41l0.99,-2.94l1.8,-0.25l2.17,-0.82l5.26,-0.81l3.96,-1.2l1.01,-0.73l2.1,0.61l2.71,-0.59l-0.43,0.92l0.24,0.41l0.77,0.17l-0.92,0.99l0.02,0.57l0.41,0.38l1.93,0.41l1.63,-0.32l0.08,1.1l0.78,0.42l1.33,-0.48l0.72,-1.37l0.8,0.04l1.69,0.62l0.27,0.92l0.81,0.36l0.07,0.35l-1.31,1.14l-1.96,-0.95l-2.3,-0.27l-3.83,1.04l-0.73,1.03l0.28,1.15l-0.22,0.42l-2.45,1.15l-1.69,-1.5l-2.93,-0.71l-0.98,0.36l-0.41,0.91l-0.35,0.11l-2.46,-0.42l-1.76,0.58l-1.24,-0.45l-2.58,0.71l-1.03,-1.77l-1.37,-0.48l-0.9,-0.79ZM453.1,531.12l0.17,0.13l0.06,0.2l-0.15,-0.03l-0.07,-0.31ZM420.61,502.43l0.0,-0.12l0.42,-0.11l0.02,0.1l-0.44,0.13ZM402.28,471.35l0.22,-0.29l0.53,-0.38l-0.14,0.45l-0.62,0.22Z", "name": "South Australia"}, "AU-NSW": {"path": "M557.86,512.73l-0.52,-0.94l-1.11,-0.12l-1.24,-0.75l-1.2,0.19l-0.4,-0.61l-1.3,-0.83l-1.09,0.24l-1.12,-0.55l-1.7,-0.05l-0.6,-0.68l0.0,-107.6l154.95,-0.0l2.08,-1.48l0.6,-1.84l1.59,-0.61l1.73,-1.6l2.86,-1.28l1.3,-2.02l1.92,-0.3l0.44,0.8l1.96,0.38l0.9,-0.38l5.1,-0.15l2.75,-0.97l1.46,0.04l1.15,-0.41l2.87,2.32l3.41,0.27l3.31,-0.5l2.61,1.07l0.84,0.73l1.23,0.23l0.41,1.99l1.99,0.42l2.26,1.46l0.54,3.71l0.5,0.48l0.2,0.94l0.95,0.3l0.91,-0.34l2.07,-2.08l0.75,-2.27l1.73,-0.54l1.08,-0.71l0.72,1.22l1.49,0.52l0.7,-1.22l1.29,0.21l1.81,-0.63l1.17,-4.58l-1.29,-1.57l-0.78,-1.53l3.71,-2.04l1.32,-0.04l1.24,-1.06l1.86,-0.44l1.92,-2.14l0.6,1.12l0.68,0.39l0.64,-0.1l0.47,-0.61l2.52,1.24l1.11,-0.12l1.17,-0.63l4.72,0.65l0.72,-0.41l1.15,-1.59l3.1,-0.23l2.74,-1.92l0.89,0.41l0.41,2.56l-0.55,4.02l0.29,1.89l1.0,1.41l-0.54,2.05l0.1,2.12l-1.58,1.52l-1.34,1.99l-0.39,1.22l0.17,1.21l-0.4,0.23l-1.43,2.66l-0.2,1.06l0.54,1.42l-0.13,1.59l-0.72,2.19l-0.06,2.56l-0.65,1.64l0.11,1.18l-0.37,0.56l-0.25,1.79l-1.15,1.82l-0.23,3.15l-1.0,1.73l-0.12,1.44l-1.75,3.68l-1.09,5.18l0.37,2.45l0.65,1.1l0.94,0.3l-0.82,1.72l-0.12,0.99l0.38,0.68l-1.5,1.91l-0.43,1.64l0.28,1.74l-1.1,1.59l0.33,1.83l-1.7,1.84l-0.14,1.75l-0.96,1.15l0.17,0.68l-1.05,1.24l-0.17,1.17l-2.4,2.07l-1.31,2.22l0.07,0.69l-0.45,0.52l-0.38,1.47l0.16,0.56l0.9,0.71l-0.75,1.37l0.02,0.74l0.34,0.35l-0.38,2.25l-3.2,1.44l-1.15,0.97l-0.24,0.61l-0.94,0.44l-1.01,1.42l-0.49,-0.29l-1.74,0.74l-0.13,0.7l0.5,0.39l1.77,0.14l0.09,0.28l-0.54,-0.01l-0.65,0.56l-1.03,-0.17l-1.52,0.31l-2.16,0.96l-1.58,1.19l-0.07,0.7l-1.19,1.08l-0.11,0.87l-1.25,1.19l-0.86,2.77l-1.22,1.59l-0.74,-0.26l-1.29,0.99l-0.32,1.24l0.86,0.72l-0.77,0.99l-0.37,1.93l-2.57,0.64l-0.24,-0.61l-0.66,-0.15l-0.41,0.51l0.18,1.16l-0.29,0.53l0.45,0.4l0.97,-0.49l-0.05,1.07l0.53,0.15l-0.35,1.36l0.25,0.61l-0.22,1.3l-0.68,0.14l-0.48,0.89l0.26,0.65l0.58,0.16l-0.21,1.28l-0.22,0.51l-0.65,-0.68l-0.72,0.03l-0.48,0.84l-0.92,-0.03l-0.53,0.46l0.24,0.63l1.02,0.39l-0.54,0.72l0.58,0.46l-2.52,1.8l-1.22,1.42l-0.91,1.57l-0.47,2.78l0.23,0.7l-0.36,0.47l-0.99,-0.1l-0.77,0.84l0.16,0.79l1.35,0.65l-0.9,3.71l-1.1,0.65l-1.03,1.52l0.65,0.86l-0.23,0.48l0.69,0.49l-0.11,0.86l-1.59,0.59l-0.4,1.21l0.45,0.74l-1.07,0.53l-0.54,0.97l-1.19,0.68l-1.07,1.71l-0.33,0.88l0.1,1.12l-1.5,1.9l-0.08,1.78l-1.44,2.06l-0.73,1.74l-1.06,-0.26l-0.74,0.28l-0.16,0.66l0.45,0.46l0.37,1.51l-0.88,0.44l-0.81,0.92l0.21,1.5l-0.2,1.85l-0.76,-0.12l-0.53,0.82l-0.05,0.46l1.12,0.47l-0.4,1.3l0.46,1.87l-0.24,0.58l0.17,0.8l-1.36,1.82l0.04,1.35l-0.38,0.81l0.22,1.5l-1.33,2.56l-0.33,1.9l-0.87,1.21l0.0,1.02l-0.51,0.85l-0.06,0.82l0.52,0.46l-0.24,1.12l0.42,0.86l-0.91,0.55l-0.36,0.71l0.62,0.74l1.04,0.04l0.79,0.58l0.53,1.76l-1.09,0.25l-0.47,0.71l0.37,1.22l-0.25,1.81l0.43,1.48l-33.78,-15.7l-1.42,-0.16l1.4,-2.18l0.21,-1.49l-0.36,-0.81l-0.92,-0.49l-0.43,-2.4l-1.2,-1.07l0.27,-1.06l-0.91,-2.71l0.22,-1.45l-1.01,-1.21l0.07,-1.3l-1.41,-0.68l-0.52,-0.76l-3.84,-1.47l-3.19,1.22l-0.51,-0.77l-1.04,-0.3l-1.85,0.56l-0.76,1.01l-0.22,1.0l-1.15,-0.3l-1.68,0.33l-0.95,-0.54l-0.56,0.28l-0.96,1.48l-1.06,-0.63l-0.74,0.12l-0.41,0.47l-1.13,-0.61l-0.68,0.11l-0.59,-0.5l-0.77,-0.08l-0.46,-0.49l-1.24,-0.09l-1.22,-1.04l-1.64,-0.05l-0.75,-0.42l-1.73,0.25l-1.07,1.47l-1.96,-0.38l-1.2,0.34l-2.72,-0.73l-1.38,-0.04l-0.47,-0.81l-0.95,-0.34l-2.52,0.36l-4.11,-3.0l-1.7,-0.36l-2.41,0.98l-2.97,-0.49l-4.25,0.4l-0.9,0.76l-0.77,2.57l0.95,1.77l-1.58,-0.46l-1.53,1.21l-1.06,0.07l-1.18,-1.13l-1.41,-0.33l-2.11,-2.32l-0.86,-0.36l-1.88,-3.72l-0.73,-0.61l-0.86,-0.12l-1.81,-1.49l-1.61,-2.07l-1.88,-0.65l-0.44,-0.75l-4.01,-2.35l-2.47,-0.66l-1.1,-0.68l0.19,-1.21l-0.3,-1.09l-0.78,-0.61l-2.44,-0.79l-0.93,-1.61l-0.61,-3.03l0.56,-3.41l-0.79,-0.88l-0.82,0.01l-0.42,-0.73l-2.48,-1.22l-1.8,-0.16l-1.08,-0.51l-0.51,0.31l-0.8,-0.56l-0.88,0.34l-0.4,-1.07l-1.6,-0.93l-1.53,0.68l-0.66,1.97l0.09,0.68l-1.02,0.06l-0.3,0.31l0.03,0.67l-1.07,-0.19l-1.32,-2.66l-0.09,-0.89l-1.54,-1.45l-0.25,-2.2l0.63,-1.4l-0.2,-0.74l-0.56,-0.27l-0.73,0.13l-0.57,-0.44l-0.84,-0.93l-0.47,-1.75l-0.94,-0.17l-0.93,-0.72l-0.99,0.14l-0.99,-1.09l-4.12,0.31l-1.76,-0.59l-0.98,0.15l-1.62,0.92l-1.38,1.43ZM698.61,545.4l0.11,0.88l0.81,0.82l0.5,0.24l0.54,-0.21l0.32,1.9l0.61,1.06l2.14,0.98l0.62,-0.09l1.25,-1.96l0.01,-2.91l-0.35,-2.21l0.74,-0.52l0.48,-1.46l-0.1,-1.85l0.8,-1.1l0.81,0.15l0.53,-0.64l2.02,0.1l0.8,-0.66l0.06,-0.53l-3.06,-1.48l-0.23,-0.73l-0.8,-0.26l-0.24,-0.98l-1.22,-0.84l-0.93,0.15l-5.38,3.69l-0.56,0.73l-0.72,3.85l0.25,1.73l-0.18,1.6l0.36,0.56ZM738.23,530.9l0.5,0.13l-0.39,1.17l-0.18,-0.17l0.07,-1.13ZM665.31,555.27l0.38,1.39l0.8,0.71l-1.05,-0.75l-0.13,-1.35Z", "name": "New South Wales"}}, "height": 1008.5727398708073, "projection": {"type": "mill", "centralMeridian": 0.0}, "width": 900.0}); \ No newline at end of file diff --git a/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-ca-lcc-en.js b/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-ca-lcc-en.js deleted file mode 100644 index faa79076f..000000000 --- a/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-ca-lcc-en.js +++ /dev/null @@ -1 +0,0 @@ -jQuery.fn.vectorMap('addMap', 'ca_lcc',{"insets": [{"width": 900, "top": 0, "height": 867.2308867877658, "bbox": [{"y": -10408206.406521406, "x": -2874590.5560752787}, {"y": -4979679.615160914, "x": 2759058.0911967778}], "left": 0}], "paths": {"CA-NT": {"path": "M340.43,125.99l5.05,-2.26l0.92,-0.14l1.84,0.57l2.33,-0.98l0.54,-0.9l1.17,-1.01l2.46,-0.96l1.23,0.01l1.01,1.79l0.53,0.4l-1.93,8.61l-1.55,0.59l-2.09,-1.15l-0.06,-0.73l-1.16,-1.56l-1.32,0.13l-0.23,1.13l-0.75,0.07l-0.24,1.09l-1.34,-0.24l-0.23,-1.68l-1.46,-1.53l-3.25,0.54l-0.46,0.38l-1.74,0.41l-0.1,-1.27l0.65,-0.58l0.17,-0.74ZM104.46,307.55l0.14,-0.94l0.91,-1.34l0.08,-0.7l1.08,-0.38l1.14,-1.29l0.69,-1.67l-0.23,-0.84l1.2,-1.51l0.56,-2.12l-0.07,-0.85l-0.74,-0.92l0.49,-1.16l11.83,-21.1l1.9,1.44l0.78,1.18l0.44,2.04l1.02,1.11l0.02,1.76l1.01,0.5l0.65,0.95l0.67,-0.55l-0.52,-1.74l0.25,-1.06l-0.44,-1.05l1.06,0.36l0.07,-0.5l-1.28,-1.24l0.06,-1.24l-1.48,-0.63l-0.42,-0.86l0.56,-0.17l0.07,-1.17l0.48,1.3l0.75,0.48l1.01,0.1l1.05,-0.56l-0.29,-0.39l-0.98,-0.28l0.02,-0.91l-0.75,-1.17l0.91,-2.19l0.82,3.03l1.3,1.4l0.43,-0.74l-0.92,-1.52l-0.27,-2.64l0.29,-0.58l0.65,0.02l-0.28,2.19l0.81,0.07l0.59,-1.89l0.54,0.43l0.23,1.25l1.1,1.25l0.63,-0.49l-0.11,-0.99l0.85,-2.21l1.62,-0.07l0.43,0.47l0.75,0.05l1.3,0.93l0.72,1.27l0.44,0.09l0.73,-0.37l0.45,-0.82l-0.22,-0.8l1.83,-2.02l0.7,0.3l-0.05,0.59l-1.04,0.83l0.39,1.34l1.04,1.47l0.86,0.25l-2.7,1.23l-1.24,1.17l-1.1,0.22l-1.67,1.68l-0.26,0.8l0.9,0.19l1.58,-1.41l2.09,0.22l0.77,-0.72l1.23,0.52l0.71,-0.84l1.16,0.21l1.48,1.15l1.16,-0.3l0.26,0.24l1.67,-1.31l0.74,-1.04l0.08,-0.68l0.93,-0.64l0.18,0.58l0.47,0.3l0.66,-0.09l0.71,0.91l1.31,0.19l0.55,-0.26l0.39,-0.67l0.78,0.93l0.89,-0.58l2.37,-0.04l1.07,-0.91l1.14,-0.33l1.48,0.09l0.6,-0.85l0.47,0.33l0.04,0.46l-0.7,1.79l0.73,0.45l0.61,-0.9l0.73,-0.09l1.56,-1.89l0.67,-0.18l0.03,-0.74l1.1,-0.2l0.29,0.66l0.93,-0.19l0.39,-0.56l0.33,0.91l1.18,-0.31l-0.38,1.09l0.76,0.43l-0.12,0.41l0.54,0.43l0.58,-0.35l1.12,0.71l1.2,-0.6l1.31,-1.78l0.48,-0.01l-0.43,1.39l0.64,0.69l-0.36,0.67l0.25,0.54l-0.99,0.13l-0.14,0.6l-0.58,0.26l-4.41,0.77l-1.71,-0.24l-0.99,0.6l-1.08,0.04l-1.03,1.21l-1.62,-0.04l-1.6,1.4l-0.18,-0.34l0.28,-0.83l-0.34,-0.45l-1.04,-0.22l-0.59,0.3l-0.57,-0.27l-0.48,0.2l-2.83,-0.93l-1.21,0.17l-0.7,-0.27l-2.29,1.84l-0.29,1.06l-2.52,0.0l-0.5,0.34l-0.53,-0.63l-1.66,0.06l-1.27,0.73l-0.17,0.49l-1.1,0.9l-0.12,0.66l-0.76,0.22l-0.47,-0.62l-1.16,0.22l-1.4,1.59l-0.26,0.73l-0.29,0.05l-0.26,-0.55l-1.06,0.01l-0.96,1.13l-0.25,1.27l0.56,1.44l1.19,1.93l1.0,0.53l0.66,-0.08l0.11,-0.38l-0.23,-0.69l-1.04,-0.58l0.38,-0.94l0.7,0.04l0.57,0.64l0.56,-0.31l0.06,-0.47l0.4,1.43l0.52,0.32l0.5,-0.48l0.99,1.02l1.61,-0.85l0.13,-0.44l-0.58,-1.64l-0.52,-0.17l-1.0,0.36l-0.35,-0.72l0.45,0.44l0.68,-0.28l-0.6,-1.73l0.72,-1.38l1.23,0.44l1.05,-0.46l0.45,0.71l0.75,-0.18l0.71,-0.64l0.65,0.9l1.17,-1.23l1.44,0.08l1.83,-0.69l1.41,-1.24l0.1,-0.41l0.78,-0.23l0.04,-0.44l0.67,0.77l-1.27,1.34l-0.23,0.67l0.81,0.22l-0.39,0.95l0.99,-0.0l1.07,-0.65l0.41,0.07l0.21,0.13l-0.46,0.86l0.88,0.61l-1.32,1.5l-0.51,1.19l0.07,0.7l0.58,0.3l0.61,-0.28l1.03,-2.43l1.66,-0.94l0.16,-0.62l1.48,-0.47l0.48,-0.61l-0.1,-0.43l2.35,-1.13l0.49,-0.85l1.42,-0.99l1.05,0.28l3.79,-0.03l1.01,-0.38l2.58,0.65l-1.07,2.79l1.07,1.23l0.82,0.1l0.27,-1.09l1.23,0.05l2.37,-1.56l2.78,-0.96l1.22,-3.31l1.85,-0.43l0.55,0.37l1.09,-0.16l2.12,0.3l0.7,0.51l0.27,-0.41l-0.24,-0.91l-2.64,-2.29l0.11,-0.52l0.3,0.3l0.53,-0.08l0.77,-1.23l-0.54,-0.44l-1.31,-0.01l1.01,-1.83l1.46,-1.04l1.82,4.77l0.72,3.82l-0.37,5.36l0.33,0.97l-0.74,1.57l-0.33,3.92l1.05,5.2l1.21,3.11l0.72,1.01l0.88,0.26l1.06,2.07l0.85,0.12l0.6,-0.52l0.05,-0.65l1.59,0.69l1.22,-1.47l-0.31,-0.47l0.38,-0.46l-0.67,-1.16l0.72,-1.05l-0.85,-0.79l-0.04,-0.56l0.56,-0.7l0.61,0.38l1.75,-0.43l-0.33,1.7l0.42,0.47l0.37,-0.09l1.3,-1.37l-0.48,-1.18l-1.07,-0.69l0.82,-0.42l0.51,-0.93l1.18,-0.99l2.01,0.05l0.56,-0.74l0.29,0.27l-0.34,0.03l-0.23,0.62l0.44,0.52l-0.71,0.35l0.09,1.35l-0.94,1.01l-0.57,1.34l1.06,1.48l0.76,0.13l0.57,-0.34l0.54,0.45l-0.13,0.38l-1.56,0.75l-0.73,1.21l-1.89,0.99l-0.47,0.95l-0.59,0.04l-0.25,0.44l0.29,1.05l0.86,0.84l1.12,0.58l0.72,0.01l0.23,0.41l0.53,0.01l0.32,-0.52l1.93,1.27l2.46,-0.33l0.26,-1.48l0.87,-0.15l1.02,0.51l0.3,-0.25l0.81,-1.37l0.11,-0.97l0.88,-1.02l0.45,-1.87l1.23,-0.68l0.86,1.2l0.75,-0.28l1.55,0.99l3.12,0.8l3.72,2.51l3.19,4.28l0.37,1.46l-10.78,31.16l10.4,16.31l12.52,18.3l13.34,18.03l12.32,15.52l14.94,3.76l6.82,13.72l2.18,2.36l1.96,1.15l30.79,11.84l26.18,8.95l-10.8,81.07l-27.95,-4.19l-23.5,-4.25l-29.2,-6.22l-23.2,-5.69l-28.76,-8.01l-22.8,-7.12l-28.52,-9.89l-16.81,-6.36l-0.18,-0.73l-0.43,-0.33l-0.96,0.05l0.81,-1.02l-0.28,-4.88l0.73,-2.33l-0.28,-0.79l-1.31,-0.57l0.24,-1.49l-0.61,-2.47l1.97,-1.43l0.22,-3.72l-2.24,-1.11l-1.04,0.62l-0.48,1.05l-2.45,-0.87l-2.01,0.56l-1.21,-1.31l-1.29,-0.74l-0.59,-1.26l-0.72,-0.6l-0.78,0.07l-1.01,1.06l-0.29,-0.29l0.24,-0.75l-0.52,-0.5l-1.06,-0.17l-0.38,0.32l-0.1,0.76l-0.41,0.1l-0.86,-0.35l-0.75,-1.07l-0.52,-0.06l-1.36,0.61l-0.34,-0.8l-0.94,-0.1l1.63,-5.05l-0.31,-0.69l-0.98,-0.18l1.04,-0.41l0.63,-1.24l0.92,-3.44l-0.25,-0.84l0.26,-1.46l-1.07,-1.73l-2.01,-0.66l-0.66,-0.99l-0.05,-0.94l-0.68,-0.72l-0.34,-1.54l-0.44,-0.46l0.4,-1.41l-0.03,-1.72l-0.37,-0.58l-0.73,-0.1l0.25,-1.73l-0.53,-1.26l0.32,-0.68l-0.79,-2.47l-1.51,-0.56l-1.12,0.7l-0.11,-1.18l-0.94,-0.95l-1.25,-0.18l-0.47,-0.89l0.84,-0.58l0.0,-2.28l0.95,-0.43l0.28,-0.54l-0.39,-0.69l0.37,-0.3l0.75,0.06l0.49,-0.54l-0.03,-0.8l-1.6,-2.55l0.39,-1.47l-0.5,-1.07l0.27,-0.98l-0.25,-2.15l0.4,0.06l0.76,-1.19l1.64,-1.3l0.21,-0.71l-0.47,-0.62l-0.8,-0.15l-0.3,-0.58l0.26,-2.13l-0.48,-0.59l-0.05,-1.15l-0.63,-0.54l0.74,-0.4l1.57,-0.07l0.77,-1.24l1.11,-0.59l0.08,-3.19l-0.8,-0.68l0.35,-1.33l-0.42,-0.38l-1.1,0.18l-0.14,-0.44l1.9,-0.06l0.56,-1.03l-1.49,-1.53l-0.71,-2.56l-0.55,-0.3l-0.74,-1.16l0.5,-1.17l-0.6,-0.74l-0.13,-1.41l0.94,-0.65l-0.02,-2.0l-0.29,-0.55l0.6,-0.72l-0.24,-2.3l-1.89,-2.03l-0.92,0.77l-0.7,0.12l-0.75,-0.01l-0.36,-0.61l-0.72,-0.22l1.94,-1.43l0.12,-0.41l-0.28,-0.82l-0.72,-0.5l-0.29,-0.98l-0.01,-2.24l-0.78,-0.71l-0.72,-1.79l-1.02,-0.87l-0.65,-0.13l0.0,-0.66l1.38,-0.32l0.62,-1.63l1.7,-0.39l0.34,-0.37l0.1,-1.36l-1.06,-0.79l0.65,-0.87l-0.01,-0.71l-0.29,-0.49l-0.9,-0.02l0.19,-0.45l0.87,-0.55l0.71,0.18l1.01,-1.21l2.29,-0.75l1.42,-1.78l1.31,-0.69l0.15,-4.09l-0.81,-1.96l0.67,-0.54l1.76,-0.15l0.42,-0.65l0.01,-0.78l-0.56,-0.46l-0.6,0.02l0.1,-0.75l-0.44,-0.59l-1.0,-0.06l-2.28,1.16l-0.4,-0.16l1.28,-1.17l0.11,-0.45l-0.33,-0.59l-1.96,-0.69l-1.63,-0.05l-0.64,0.46l-1.07,-0.82l0.77,-1.25l-0.44,-0.84l1.7,-0.84l1.09,-2.06l0.16,-0.66l-0.32,-0.69l-1.15,-0.51l1.43,-1.81l0.18,0.29l0.73,0.08l0.45,-1.72l0.97,-0.32l0.28,-0.51l-0.44,-0.81l-0.09,-1.21l0.41,-0.5l-0.11,-1.08l0.63,-0.31l0.59,-0.96l-0.12,-2.62l-0.75,-1.25l1.56,0.55l0.46,-0.15l0.06,-0.73l-16.24,-8.77ZM212.99,287.11l-0.0,-0.01l-0.45,-0.39l0.6,0.28l-0.15,0.13ZM212.05,286.55l-0.11,0.01l-0.06,-0.14l0.18,0.13ZM180.17,279.08l0.22,-0.13l-0.03,0.22l-0.19,-0.09ZM142.41,285.87l-0.69,-0.85l0.05,-0.26l0.51,-0.01l0.13,1.12ZM142.96,264.87l0.0,-0.21l0.23,0.0l-0.16,0.1l-0.07,0.11ZM156.61,271.56l-0.26,-0.16l-0.02,-0.28l0.35,0.17l-0.07,0.26ZM155.74,270.75l-0.15,0.03l0.11,-0.14l0.03,0.11ZM160.01,281.13l0.4,-0.64l0.34,-0.13l0.07,0.65l-0.81,0.12ZM202.48,297.51l-0.11,-0.08l0.06,-0.02l0.05,0.1ZM201.89,297.32l-0.66,-0.04l0.07,-0.32l0.01,-0.01l0.59,0.37ZM211.17,288.3l-0.48,-0.11l-0.4,0.32l-0.21,-0.52l1.07,-0.1l0.02,0.4ZM208.14,287.7l-0.36,0.28l-0.26,0.01l0.62,-0.56l-0.0,0.27ZM335.17,145.92l1.0,-0.91l-0.43,-1.22l0.64,-1.86l-0.24,-1.59l1.26,-2.2l0.25,0.64l0.45,0.13l0.76,-0.79l3.51,-1.13l0.74,0.23l1.64,-0.35l0.71,0.43l1.24,-0.7l1.27,-0.2l1.05,0.14l0.29,0.54l0.59,0.26l1.22,-0.62l3.04,0.79l-0.79,3.54l-1.13,0.52l-3.24,-0.04l-0.82,0.7l-0.06,0.82l0.87,1.98l2.92,0.26l-0.45,1.5l-0.01,1.69l-0.82,0.85l0.14,1.08l-0.89,0.91l-1.88,0.72l-1.37,0.04l-0.52,0.59l-1.94,-0.92l-0.98,0.55l-3.89,0.96l-1.46,-1.4l-0.3,-2.44l-0.41,-0.24l-0.64,0.19l-0.54,-0.49l-0.03,-1.17l-0.89,-0.46l0.16,-1.34ZM343.19,180.35l0.39,-0.57l0.14,-1.89l1.48,-0.35l-0.86,3.83l-1.15,-1.03ZM297.77,196.61l-2.26,-1.86l-0.55,-1.22l0.38,-0.82l0.76,-0.32l0.24,-0.76l2.05,-1.76l0.55,-0.25l6.65,1.88l3.36,-1.6l1.84,0.21l0.67,-1.17l1.68,-0.67l0.17,-0.56l-0.66,-0.53l-2.08,0.6l-1.88,-0.19l-1.9,0.31l-1.11,0.5l-5.82,-1.7l0.31,-0.79l2.82,-2.79l6.28,0.76l0.48,-0.28l0.79,0.65l4.2,0.37l0.7,-0.36l0.28,-0.91l-0.5,-0.5l-4.76,-0.77l-0.49,-0.35l-2.68,-0.05l-2.24,-1.68l0.21,-0.61l1.35,0.12l0.37,-0.43l0.07,-1.43l-0.97,-0.43l0.79,-1.37l0.84,-0.74l2.07,-0.37l2.45,1.3l1.29,0.19l3.33,1.91l1.21,-0.14l0.02,-0.84l-1.49,-0.63l-0.23,-0.8l-1.14,-1.05l-2.82,-0.86l-0.3,-0.94l0.64,-0.8l-0.1,-0.61l2.58,-1.59l2.72,0.22l1.32,-0.67l0.16,0.75l1.65,0.26l1.13,1.18l-0.07,1.46l-0.72,0.79l0.44,2.55l-0.57,0.6l0.33,1.25l2.02,0.22l2.23,-0.84l1.08,0.55l0.85,-0.19l0.3,1.16l1.82,1.55l-0.7,1.1l0.22,1.97l0.35,0.65l1.2,0.8l1.56,2.3l-1.85,0.28l-0.97,0.54l-0.56,1.29l0.4,0.38l0.83,-0.16l0.79,0.5l0.52,-0.36l1.19,0.13l-0.09,0.43l0.56,0.69l-0.19,1.08l0.36,0.37l-0.82,2.31l0.43,2.83l1.72,0.27l1.16,-0.38l1.83,0.08l0.43,0.89l2.08,0.36l-3.46,15.46l-0.59,0.13l-1.01,-0.67l-0.79,0.44l-0.17,0.72l-1.49,-0.26l-0.41,0.8l0.12,1.27l-2.4,1.0l-0.25,0.41l-1.6,0.27l-0.55,0.48l-0.67,-0.2l-1.85,1.17l-3.69,0.32l-1.41,0.46l-3.52,-0.48l-1.07,-0.47l-2.46,-1.54l-2.23,-3.46l-0.83,-2.35l0.38,-0.84l2.93,-1.35l0.8,0.07l0.73,-0.33l1.31,0.27l1.04,-0.25l0.62,0.52l0.49,-0.13l0.19,-0.89l0.89,-0.99l1.85,-0.47l4.43,0.55l1.47,0.89l1.64,-0.19l0.99,-1.0l1.23,-0.45l0.51,-0.83l1.59,-0.92l0.09,-0.52l1.0,-0.88l-0.22,-0.82l-0.77,-0.71l-1.12,-0.14l-1.02,1.34l-1.06,0.63l-0.85,-0.15l-0.16,-0.58l-0.45,-0.2l-1.17,0.94l-0.87,-0.44l-1.62,0.22l-0.26,-0.33l1.23,-0.9l-0.09,-0.91l-0.35,-0.68l-0.46,-0.1l-0.62,0.58l-0.13,0.67l-0.26,-0.06l0.48,-1.27l-0.3,-0.89l-0.59,-0.2l-0.98,1.81l-0.08,1.28l-0.92,0.5l-0.8,0.07l-0.1,-1.12l-0.35,-0.31l-0.9,1.31l-3.84,-0.33l0.32,-1.39l1.77,-0.52l0.23,-0.6l-0.46,-0.42l-1.17,0.31l1.46,-2.76l3.51,-1.68l-0.97,-0.99l-2.7,0.74l-0.38,-2.37l-0.69,-0.02l-0.22,0.35l-0.36,2.28l-1.44,2.63l-0.13,-1.23l-1.14,-1.28l-1.05,0.74l-0.08,0.77l0.95,0.5l0.21,1.76l-1.36,2.08l-3.46,1.29l-0.36,-0.05l-0.39,-0.67l0.23,-1.39l0.63,-1.29l-0.11,-1.68l-0.42,-0.25l-1.34,1.5l-0.77,-1.27l-0.59,-0.09l-0.29,0.56l0.11,2.33l-0.93,1.06l-2.19,-2.46l0.89,-0.36l0.57,-0.73l-0.26,-0.63l-1.29,0.17l0.63,-0.76l0.26,-1.45l-2.29,-0.11l-1.24,1.13l-0.81,-1.06l-0.74,-0.14ZM328.08,134.65l1.49,-0.41l0.93,-1.05l1.49,-0.48l-0.42,0.64l0.17,1.23l0.84,0.29l0.26,1.88l1.08,1.0l-0.13,1.05l0.28,0.68l-0.86,0.82l-2.45,0.83l-0.42,-0.22l-0.69,-1.15l0.02,-0.72l-1.13,-2.38l-0.46,-2.01ZM321.15,163.02l0.27,-0.55l1.37,-0.86l1.02,-0.17l0.95,0.34l2.18,0.1l1.23,1.73l-0.05,1.16l-1.23,1.11l-0.66,-0.6l-3.08,-0.94l-2.0,-1.32ZM323.52,255.67l3.92,1.28l-0.95,4.27l-0.31,-0.07l-0.4,-1.5l-1.62,-0.83l-0.69,-2.28l0.06,-0.87ZM325.57,263.35l0.07,-0.72l0.09,0.01l0.37,0.29l-0.13,0.59l-0.39,-0.16ZM261.06,269.52l0.42,-3.04l1.57,-3.05l1.05,-0.92l1.78,-0.91l0.8,-1.49l0.97,-0.67l0.88,0.18l2.34,-0.29l0.56,-0.55l0.36,-1.5l-0.12,-0.87l-0.52,-0.56l-1.2,-0.42l-0.42,-0.6l0.04,-1.02l0.95,-1.39l2.28,-1.24l0.66,-0.77l2.37,-0.69l2.57,-1.65l2.03,-1.97l0.89,0.17l2.38,-0.35l2.61,-1.39l0.63,0.1l5.36,-1.34l1.37,0.01l1.28,-0.38l0.6,-0.51l0.67,0.14l0.85,-0.48l1.59,-0.19l1.66,-0.82l0.38,0.01l1.58,1.5l0.76,4.13l-2.16,5.66l0.16,1.56l-1.74,-0.03l-1.07,0.84l-0.27,1.63l-2.29,1.2l0.2,1.21l1.64,0.68l0.59,-0.7l2.44,-0.63l0.2,0.37l0.74,0.2l-0.08,0.49l0.37,0.37l0.67,-0.09l1.89,-1.23l0.41,-0.92l0.07,-0.89l-0.92,-0.59l2.08,-2.47l1.62,-1.35l0.96,-0.15l2.61,1.86l1.36,1.71l1.28,0.45l2.21,2.46l0.69,0.37l0.24,1.29l1.27,0.82l-0.93,2.75l-1.69,1.01l0.02,0.76l-3.52,1.88l-0.22,0.43l0.3,0.81l0.71,0.42l-0.88,1.61l0.18,0.88l0.68,-0.03l0.87,-1.47l2.69,-1.14l0.94,2.06l0.72,-0.16l0.21,-2.62l0.87,-0.72l0.04,-0.5l0.91,0.33l0.54,-0.43l-0.08,-0.87l0.72,-0.65l0.55,0.58l-0.56,0.44l0.05,0.88l1.35,1.71l0.75,-0.09l0.09,-0.57l-1.02,-1.51l0.87,-0.51l1.37,2.93l-11.47,51.41l-17.46,-4.16l-0.48,0.29l-0.35,1.39l-1.14,0.12l0.0,0.67l1.45,0.6l-1.3,-0.38l-0.5,0.41l-0.91,-0.23l0.76,-2.9l-0.37,-0.69l-29.82,-8.44l-0.5,0.24l-0.86,2.55l1.84,5.57l-0.46,-0.2l-0.66,-1.15l-0.8,-0.68l-0.68,-1.43l0.13,-4.89l0.67,-0.69l1.4,-0.58l1.73,-0.24l3.39,0.25l3.67,-0.18l11.18,1.07l2.11,0.57l0.9,1.01l2.68,1.14l1.35,-0.09l2.98,1.9l0.67,-0.2l2.43,1.71l0.51,-0.14l0.14,-0.67l0.71,0.47l0.77,-0.34l-0.01,-0.27l0.91,0.22l0.56,-0.27l1.17,0.76l3.05,0.53l0.77,-0.31l0.11,-0.56l-0.29,-0.32l0.27,-0.48l-0.57,-0.96l-1.79,-0.31l-0.91,-0.68l-0.84,-3.09l-0.67,-0.2l-1.08,-0.99l-0.79,0.15l-1.03,-1.36l-0.64,-0.28l-0.62,0.15l-0.92,-1.37l-0.63,-0.24l-0.19,-0.8l-1.01,-0.25l-0.69,-0.96l-0.46,-0.05l-0.39,0.5l-0.67,-1.05l-1.73,-1.01l-1.72,0.58l-1.18,-0.69l-1.38,0.56l-2.51,-0.34l-1.32,0.15l-3.15,-0.78l-0.6,0.23l-1.02,-0.84l-2.18,-0.06l-0.63,-0.48l0.18,-0.65l-0.56,-0.52l-2.45,-0.59l-0.91,0.29l-2.02,-0.49l-1.54,-0.86l-0.61,0.03l-0.43,-0.55l-1.39,0.06l-0.5,-1.05l0.38,-0.76l-0.22,-0.93l-2.44,-4.15l-0.27,-2.19l0.33,-0.6l4.75,-1.74l2.29,0.35l2.83,-0.41l1.41,0.46l0.88,-0.42l0.18,-0.46l3.98,-0.43l0.61,0.62l0.81,-0.17l1.81,0.45l0.73,-0.44l-0.03,-0.61l-1.86,-1.16l1.71,-0.55l0.31,0.35l0.7,-0.0l0.31,0.56l1.18,0.74l1.71,-0.3l1.18,-0.56l0.16,-0.64l-0.7,-0.44l-1.42,0.43l-0.78,-0.08l-0.21,-0.12l0.61,-0.47l-0.15,-0.44l-1.08,-0.72l-1.49,-0.27l-2.81,0.29l-2.53,-0.28l-2.19,0.43l-1.56,-0.54l-1.22,0.36l-0.84,-0.12l0.4,-1.13l-1.05,-1.55l-1.28,0.93l0.11,0.7l0.6,0.3l-0.39,0.69l-0.78,-0.88l-0.84,0.41l-0.55,-0.45l-1.68,-0.36l-0.42,-1.04l0.66,-1.04l0.9,-0.41l2.39,0.85l0.28,-0.38l0.75,-0.09l0.25,-0.72l-1.15,-1.3l1.24,-0.2l0.19,-0.81l-2.72,-0.71l-0.79,0.27l-0.68,0.84l-0.48,-0.03l-0.46,-1.51l-0.75,-0.64l-1.98,-0.51l-0.99,0.87l-0.25,-0.31ZM315.48,268.17l-0.79,0.04l-0.04,-0.21l1.17,-0.51l-0.34,0.67ZM272.81,162.81l0.83,-0.98l0.4,0.17l1.08,-0.8l0.89,-1.79l1.46,-0.77l2.3,0.16l0.97,0.64l1.33,0.17l0.56,-0.22l1.24,-1.44l0.32,-0.92l1.48,-1.14l0.49,-1.02l0.58,0.19l1.16,-0.28l0.78,-0.61l1.48,-0.1l1.56,-0.97l0.35,-1.57l1.23,-0.32l0.64,-1.04l0.68,-0.38l0.26,-0.76l0.98,-0.09l1.12,-1.54l1.02,-0.11l0.51,-0.71l1.48,-0.62l1.35,-2.17l0.75,-0.51l1.03,0.44l1.58,-0.55l2.55,0.93l1.07,-0.28l-0.04,0.4l0.84,0.27l0.14,0.7l1.17,0.65l1.07,1.51l1.58,0.18l0.36,-0.74l0.35,0.46l0.67,0.06l0.37,-0.75l1.09,-0.81l-0.22,-0.81l-1.45,-0.48l-0.12,-0.94l0.79,-0.07l1.21,-0.74l0.09,-0.67l1.38,0.07l1.15,1.83l-0.1,0.87l1.46,1.39l1.01,2.22l-0.02,0.53l-0.69,0.76l-1.45,0.12l-0.9,0.65l-1.94,-0.05l-0.62,0.98l-0.64,0.2l0.11,2.98l1.96,2.78l-0.93,0.62l-1.65,-1.71l-0.48,0.02l-0.45,0.49l-0.12,0.76l0.52,1.85l0.62,0.63l-0.08,2.78l-0.62,0.28l-0.74,1.04l-1.46,0.65l-1.07,0.01l-1.18,-0.48l-0.84,0.41l-0.52,-0.36l-0.55,0.11l-0.74,0.87l0.06,1.54l-0.44,2.45l-1.34,0.94l-1.23,0.3l-0.84,-0.49l-0.11,-1.27l-0.95,-0.47l-0.42,-2.07l0.76,-1.8l0.88,-0.73l0.15,-1.62l0.62,-0.74l0.28,-1.2l1.64,-1.76l0.07,-1.13l-0.45,-0.66l-0.59,0.04l-1.03,0.98l-1.49,-0.63l-0.55,0.27l-0.13,1.02l-0.51,-0.31l-0.61,0.32l-0.14,0.98l0.37,1.03l-0.31,1.73l-0.91,0.0l-0.48,0.74l-0.29,-0.17l-0.19,-1.11l-0.79,-0.43l-0.42,0.57l-0.7,0.24l-0.39,1.07l0.58,0.56l0.06,0.56l0.6,0.37l-0.17,2.29l-0.72,0.92l-0.84,-0.26l-0.74,0.3l-0.8,2.2l-0.6,0.78l-0.74,0.29l-0.37,-0.38l0.36,-1.66l-0.29,-1.71l0.52,-2.6l-0.49,-0.23l-0.55,0.61l-0.44,-0.35l-0.66,0.27l0.04,0.99l-0.56,0.72l0.12,2.13l-0.47,-0.14l-0.42,0.38l0.02,0.74l-0.41,-0.17l-0.55,0.41l1.08,2.04l-0.1,0.91l-0.51,-0.34l-0.35,0.13l-0.82,1.1l0.04,0.39l-1.36,1.08l-0.71,0.02l0.1,-0.78l-0.48,-0.68l-2.02,1.61l0.77,-2.24l0.75,-0.9l0.0,-1.44l-0.38,-0.3l-0.92,0.11l0.1,-0.99l0.73,-0.78l0.03,-0.56l-0.3,-0.17l0.66,-0.56l-0.72,-1.92l-0.52,-0.12l-1.12,0.76l-1.06,2.34l-0.03,1.09l-1.31,0.08l-0.93,0.92l-0.14,-1.26l-1.81,-2.34l-1.81,-0.41l-0.67,1.27l-1.44,0.51l-0.88,-0.46l-0.12,-0.41l0.71,-0.41l1.49,-2.04l0.36,-1.31l-0.84,-1.36l-1.28,0.23ZM299.65,310.08l0.53,0.27l0.45,0.46l-0.39,-0.06l-0.6,-0.66ZM287.73,182.36l0.69,-0.85l4.73,-3.33l1.13,-1.26l1.85,-0.54l1.07,0.16l0.92,-1.24l1.31,-0.42l0.79,-0.83l0.46,-0.05l0.46,0.38l0.14,0.3l-1.31,2.19l-2.18,2.12l-0.18,0.62l-1.06,1.07l-0.32,1.05l-2.69,2.15l-0.04,0.48l-2.56,1.32l-0.81,-0.98l0.09,-0.48l-0.29,-0.32l-1.56,-0.66l-0.65,-0.89ZM219.97,246.31l1.41,-1.91l0.11,-1.2l0.58,-0.36l1.1,-0.08l-0.32,-0.78l0.18,-0.7l0.48,0.19l0.98,-0.52l0.27,-1.09l0.89,-0.57l1.76,-2.13l1.99,-0.91l0.69,0.17l0.33,-0.36l0.17,-0.64l-0.47,-0.74l1.39,-1.18l-0.11,-0.61l0.47,-0.8l0.25,-1.52l-0.23,-0.7l0.67,0.55l1.19,-0.31l0.51,0.29l0.98,-0.1l1.04,-0.37l0.42,-1.4l-0.51,-0.63l-0.15,-0.96l-0.68,-0.17l-0.06,-1.13l0.71,-0.76l0.69,0.02l0.56,-0.39l0.08,-0.6l2.32,-2.69l0.8,-0.47l0.23,-1.17l1.24,-0.65l0.8,0.03l0.34,-0.54l0.77,-0.34l0.67,-1.15l0.29,-1.31l1.55,-0.35l1.1,-1.28l0.25,-1.97l-0.31,-0.53l-1.33,-0.8l-0.1,-0.5l0.42,-1.09l-0.23,-3.55l0.64,-1.27l0.5,-3.11l-0.51,-0.66l0.56,-0.75l-0.26,-0.41l2.51,0.32l0.51,0.35l0.43,0.02l0.38,-0.41l3.46,0.81l1.3,-0.08l4.09,1.2l3.23,0.37l3.44,-0.17l2.16,1.86l0.32,0.91l-0.08,1.29l3.74,4.85l1.04,0.62l0.62,1.06l0.81,0.25l-0.47,1.0l-1.5,1.46l-0.24,1.04l0.36,0.8l0.74,-0.05l0.38,-1.36l0.97,-0.5l1.31,-1.55l1.19,0.38l0.28,0.38l-0.47,1.34l0.08,1.01l-0.57,0.34l-0.89,1.63l0.34,0.56l1.91,-0.18l1.59,-1.69l0.28,-0.77l-0.19,-1.06l0.98,-0.4l4.16,-0.06l3.39,2.19l2.27,4.11l1.8,5.75l0.49,0.47l1.16,3.45l1.44,1.82l0.81,3.18l-0.08,1.01l-3.31,1.88l-4.92,0.78l-6.1,2.78l-1.26,-0.07l-5.26,2.35l-1.45,0.23l-1.65,0.71l-0.85,0.83l-1.62,-0.12l-1.32,0.83l-2.03,0.7l-0.96,2.07l-1.6,1.95l-0.47,1.5l-0.93,0.52l-2.88,1.16l-1.62,-0.74l0.17,-0.63l-0.24,-0.33l-0.93,-0.17l-0.55,0.71l0.19,1.09l-0.34,1.5l-3.38,3.51l0.05,1.25l-1.16,2.65l-0.16,1.27l-1.86,2.66l-1.02,0.7l-2.7,0.45l-3.04,-0.02l-0.44,-0.37l0.33,-0.56l-0.21,-1.0l-1.09,-0.53l-4.34,3.08l-3.99,0.69l-1.69,1.33l-1.8,-0.62l-0.51,-1.09l-0.25,-2.74l0.46,-4.89l-0.17,-1.56l-0.39,-0.61l0.01,-2.66l-0.5,-1.41l-2.97,-3.64l-2.15,-3.79l1.11,0.8l0.52,-0.4l-0.02,-0.67l-0.4,-0.56l-1.67,-0.72l-3.23,-0.72ZM278.89,175.73l-0.49,-0.42l1.55,-0.55l-0.56,0.63l-0.51,0.34ZM280.89,173.14l-0.05,-0.52l0.37,-0.4l-0.17,0.44l-0.15,0.48ZM265.98,295.52l0.41,0.33l-0.56,-0.18l0.16,-0.15ZM192.19,266.74l0.3,-0.36l0.16,0.54l-0.24,0.16l-0.22,-0.33ZM134.49,262.69l0.12,-0.19l0.63,-0.37l-0.53,0.46l-0.22,0.1ZM133.01,267.08l0.28,0.07l0.02,0.08l-0.15,0.11l-0.14,-0.25ZM125.45,269.42l0.35,-0.18l0.08,0.44l-0.34,-0.04l-0.09,-0.22Z", "name": "Northwest Territories"}, "CA-NU": {"path": "M694.57,496.77l1.45,-0.41l0.98,0.82l0.52,0.93l-1.78,-0.16l-1.15,-0.84l-0.03,-0.34ZM682.9,477.17l0.06,-0.73l3.09,-1.55l2.28,-0.08l0.16,0.84l0.97,-0.11l-0.26,0.99l0.67,0.87l0.04,0.63l-0.57,0.8l-0.1,1.41l-0.48,-0.03l0.2,-0.37l-0.27,-0.55l-1.47,0.05l0.01,-0.29l-0.54,-0.36l-0.45,0.12l-0.52,-0.72l-1.64,-0.3l-1.18,-0.63ZM458.86,294.89l0.69,-1.03l0.12,-1.87l1.28,-0.97l0.41,0.23l0.46,-0.24l0.63,-1.06l-0.01,-0.62l-0.42,-0.41l-1.24,0.36l-0.49,-0.37l-0.34,-2.89l1.12,-2.11l-0.36,-0.48l0.36,-0.77l0.19,-2.79l0.15,-0.21l0.4,0.29l0.51,-0.11l0.34,-0.95l0.36,-0.14l0.13,-0.53l-0.73,-1.03l0.18,-0.83l1.18,0.54l0.58,-0.22l0.23,-0.85l-0.26,-0.58l-0.78,-0.45l0.74,-1.97l-0.38,-1.61l0.2,-0.36l0.16,0.26l0.43,-0.14l0.13,-0.38l-0.61,-0.85l0.51,-1.54l0.66,-0.7l-0.26,-0.44l0.45,-0.65l1.17,-0.06l0.12,-0.59l-0.94,-0.51l0.61,-0.81l1.41,0.47l0.55,-0.15l-0.1,-0.83l-1.25,-0.66l0.98,-1.74l1.16,-0.95l0.58,-1.42l4.02,-4.37l3.91,-2.04l3.49,-1.3l3.4,-0.13l1.76,0.44l3.97,0.22l1.49,1.34l-0.09,0.41l-0.39,0.92l-3.07,3.29l-0.74,0.43l-2.77,4.99l-1.59,4.49l-0.2,1.53l-2.06,4.52l-0.33,3.11l0.51,1.79l2.87,3.81l0.14,1.36l-1.11,2.75l0.04,3.45l0.38,2.71l0.54,0.48l1.61,4.19l1.24,1.26l0.91,1.49l0.64,0.41l0.25,0.78l1.1,1.03l0.66,1.16l1.93,0.96l0.28,0.43l1.59,0.27l0.08,1.57l0.55,0.31l0.2,0.65l-2.26,-0.26l-0.56,0.35l0.02,0.82l-0.69,-0.12l-0.57,0.29l-0.32,1.27l-1.2,-0.52l-1.85,0.77l-2.42,2.82l-3.42,1.32l-0.38,0.55l0.31,0.43l1.16,0.27l2.86,-0.76l2.85,-2.34l0.68,-0.95l1.5,-0.2l0.49,-0.42l2.28,0.52l0.56,-0.55l1.03,-0.26l-0.01,0.92l-0.51,-0.15l-1.13,0.39l-0.26,0.55l0.37,0.38l0.72,0.05l-0.06,0.67l0.58,0.71l-0.13,1.79l0.47,0.27l1.12,-0.17l0.37,-0.35l0.27,-1.15l-0.68,-2.37l0.1,-2.05l0.82,-0.76l-0.04,-0.5l-0.91,-1.17l0.13,-2.54l1.28,-0.72l0.23,-0.74l-0.35,-1.93l-0.72,-1.15l0.29,-0.96l-0.4,-0.73l-0.68,-0.22l-1.26,0.21l-0.31,0.48l0.13,0.39l-2.62,-0.82l-1.39,-1.79l0.48,-0.3l0.08,-0.55l-1.02,-2.06l-1.5,-1.05l-1.25,-0.46l-0.18,-0.49l1.72,0.19l-0.23,-0.81l1.12,-0.21l0.48,-0.51l-0.02,-1.02l0.65,-0.24l0.14,-0.45l-0.74,-1.32l0.52,-0.49l-0.09,-0.29l0.52,-0.18l0.32,0.44l0.63,-0.18l0.36,0.3l0.76,-0.34l1.93,1.98l1.21,0.53l0.72,1.21l1.02,0.76l0.34,1.5l0.53,0.49l0.54,-0.31l0.08,-1.28l-0.27,-1.08l-1.09,-0.87l-0.64,-1.52l-1.33,-0.47l-0.71,-0.9l-0.0,-0.81l-1.53,-0.76l0.54,-1.17l1.87,-0.1l0.64,-0.59l-0.05,-0.63l-0.67,-0.07l-0.38,0.35l-1.49,-0.13l0.33,-1.4l-0.35,-0.45l-1.12,0.68l-0.92,1.29l-1.61,-0.64l-1.12,-1.0l-0.66,-1.5l0.66,-0.27l0.24,-0.59l-1.19,-0.53l-0.44,-0.77l-0.08,-5.9l0.49,-1.27l2.32,0.46l1.67,1.04l3.06,1.1l1.54,1.13l2.18,0.68l0.2,-0.85l-2.01,-0.88l-2.6,-2.11l-2.93,-1.53l-1.19,-2.97l0.69,0.09l1.09,0.74l2.84,0.74l3.94,0.35l1.4,0.94l0.52,0.05l-0.06,-0.89l-1.15,-1.13l-5.25,-1.25l-2.97,-1.77l-0.82,-0.05l0.2,-2.03l1.57,-1.49l0.77,1.62l0.99,0.68l0.83,1.15l0.84,-0.07l0.18,-0.55l-1.66,-2.02l-0.49,-1.37l2.49,-1.67l2.45,0.71l0.73,2.42l0.51,0.6l0.49,-0.02l0.26,-0.97l-0.7,-3.07l-2.15,-1.0l1.91,-1.63l2.87,-1.83l0.38,0.28l0.57,-0.11l1.13,-1.93l4.82,-0.43l3.3,0.19l0.59,1.49l1.44,2.07l0.89,6.25l0.6,0.57l3.37,1.48l0.54,1.24l-0.42,2.62l0.28,1.36l1.2,2.0l1.25,0.59l0.49,1.29l-0.61,0.42l-1.06,1.94l0.18,1.18l-1.25,1.2l-1.39,2.04l-0.34,1.34l-0.79,1.18l-0.04,1.01l-1.07,1.14l0.38,0.63l1.13,-0.55l2.05,-4.19l1.74,-1.68l0.11,2.17l-1.34,1.85l-0.46,2.25l-0.79,0.26l0.13,0.45l1.94,1.39l-1.92,0.38l-0.11,0.75l-0.36,0.26l-0.03,0.63l0.44,0.31l0.83,0.03l0.58,-0.33l-0.06,1.88l-0.86,1.26l0.58,0.45l1.15,-0.69l0.47,-0.93l-0.06,-0.85l2.28,-1.73l0.25,-0.81l-0.16,-0.79l-0.82,-1.04l0.64,-0.06l0.77,-0.91l-0.47,-1.72l0.91,1.53l1.09,1.07l2.0,0.71l0.49,-0.54l-0.57,-0.78l-1.4,-0.66l-1.82,-2.49l0.53,-1.32l1.11,-0.88l1.33,1.64l-0.92,2.02l0.13,0.74l0.38,0.31l0.78,-0.26l0.43,-1.15l0.58,1.55l0.67,0.07l0.1,-0.87l-0.64,-1.52l0.82,-2.03l1.77,2.05l0.46,0.15l-0.07,0.8l0.33,0.72l-0.27,2.67l-1.03,2.24l0.12,0.44l0.62,0.44l0.84,-0.43l2.21,0.77l1.42,1.23l0.72,-0.44l-0.01,-0.5l-0.63,-0.54l-0.3,-0.94l-1.23,-0.3l-0.95,-0.84l-0.11,-2.89l2.0,1.09l1.2,3.33l1.53,2.41l1.42,0.81l1.14,0.25l0.37,-0.6l-0.59,-0.47l0.48,0.2l0.58,1.0l0.46,0.13l0.31,-2.04l-1.44,-0.54l-1.99,-2.7l-0.61,-0.18l-0.64,0.23l-1.18,-2.89l-1.97,-0.89l-1.13,-0.9l0.56,-1.27l-0.33,-0.73l0.81,-0.64l0.44,2.37l1.08,1.41l0.7,-0.56l-0.73,-1.43l-0.1,-1.29l2.36,0.65l0.59,0.63l0.45,-0.3l0.77,0.27l0.81,0.75l0.4,1.14l-0.15,0.87l0.61,0.29l0.53,-0.9l-0.22,-0.98l1.64,-0.35l2.11,0.9l0.48,-0.21l-0.13,-0.5l-1.12,-0.76l-1.2,-0.4l-1.69,0.17l-2.01,-1.39l-2.94,-1.01l-2.16,-1.59l-0.28,-1.48l0.49,-1.71l1.39,-1.61l1.28,-1.14l1.2,-0.39l1.06,-1.18l4.48,-0.37l1.22,0.71l0.16,0.89l0.52,0.5l3.11,0.45l0.56,2.06l0.61,0.47l0.66,-0.47l-0.32,-1.5l0.42,-0.69l1.2,0.0l1.93,0.9l1.73,0.36l0.53,1.58l1.91,3.11l-0.46,1.49l-0.95,1.37l-1.27,-0.25l-1.24,0.22l-2.91,2.14l-0.33,2.1l-0.75,1.09l-0.57,1.79l0.33,0.81l0.78,-0.31l0.47,-1.7l0.92,-1.46l0.26,-1.54l1.99,-1.69l0.77,-0.14l1.76,0.58l-1.7,1.0l-0.48,0.63l-0.21,3.99l-0.7,2.19l-1.44,0.77l-0.11,0.52l0.48,0.33l1.63,-0.52l0.55,-0.64l0.71,-2.62l0.15,-3.33l0.29,-0.42l1.09,-0.08l0.82,-0.68l0.54,-2.42l0.9,0.32l3.87,-0.17l0.92,0.9l0.57,1.21l-0.42,1.07l0.42,1.07l-0.26,0.8l-0.87,0.45l-1.1,-0.35l-0.33,0.65l0.18,0.36l-0.7,1.29l-1.15,0.73l-0.96,-0.09l-1.97,0.84l-0.39,0.52l-0.05,0.38l0.57,0.42l1.94,-0.92l0.63,0.31l-2.65,3.27l0.23,0.7l0.55,-0.1l1.21,-0.98l0.84,-1.22l1.01,-0.72l0.43,-1.33l0.28,-0.26l0.18,0.33l-0.06,1.06l-0.66,1.24l-1.41,0.53l-0.65,1.37l-0.05,0.52l0.56,0.41l0.74,-1.25l0.85,-0.18l-0.53,1.24l1.43,0.31l0.32,0.72l-1.98,4.49l0.25,0.66l0.85,-0.17l2.17,-4.95l-0.15,-0.96l-1.06,-1.78l-0.01,-0.47l0.68,-0.48l0.26,-2.28l0.65,-0.31l0.66,-1.43l0.52,-0.2l-0.53,2.66l0.36,1.13l0.93,0.59l0.43,-0.58l-0.72,-1.5l0.55,-0.76l0.39,-2.23l0.37,-0.41l0.92,-0.21l0.43,0.98l-0.74,1.09l0.06,0.68l-0.45,0.44l-0.42,3.14l-1.76,1.59l0.33,0.71l1.37,-0.82l0.2,1.52l-0.65,0.95l0.69,0.42l-0.72,1.87l0.74,0.32l1.26,-3.14l-0.2,-1.04l0.42,-1.9l-0.07,-1.72l0.6,-1.12l0.55,0.31l-0.13,2.41l0.61,1.05l-0.18,0.66l0.58,0.46l0.39,-0.16l-0.77,1.79l0.2,3.3l-0.07,0.44l-0.93,0.89l0.27,0.63l0.51,-0.04l1.23,-1.01l-0.01,-3.42l0.96,-2.35l0.28,-0.01l1.43,0.77l-1.0,1.14l0.48,1.6l-0.11,1.13l-0.87,1.71l0.76,1.2l0.46,0.19l0.29,-0.41l-0.38,-1.22l0.66,-0.72l0.42,-2.32l-0.23,-1.02l0.78,-0.18l0.33,-0.81l-0.04,-1.56l-0.52,-1.67l0.81,-0.19l0.58,-0.61l-0.16,-0.92l-0.54,-0.67l1.11,-1.15l-0.11,-2.23l7.09,1.89l0.97,0.79l0.12,0.55l1.23,0.9l1.53,1.97l-1.07,2.38l-0.26,2.06l-2.63,-0.48l-1.51,1.0l-0.44,0.82l0.19,0.87l-0.24,1.05l-0.77,0.74l-0.04,1.35l-2.72,1.93l0.03,0.47l0.46,0.12l2.02,-0.83l1.04,-0.93l0.6,0.28l-0.84,1.94l0.09,1.23l-1.54,1.42l0.08,0.57l0.75,0.44l1.6,-1.56l0.59,-2.29l1.55,-0.85l2.23,-2.28l1.62,-0.61l0.77,0.51l0.62,-0.2l-0.0,-0.67l-0.92,-0.84l0.25,-2.25l1.7,-2.06l0.62,-0.05l0.53,0.36l1.43,3.01l-0.98,1.81l-0.07,2.43l-1.64,1.47l-0.4,2.01l-2.14,-0.37l-0.75,0.42l0.12,1.53l-0.72,1.26l0.05,0.94l-1.08,0.39l-0.32,0.54l0.45,0.64l1.24,-0.56l0.08,1.68l-0.36,0.59l0.22,0.65l0.57,-0.05l0.49,-0.64l0.37,-1.45l-0.25,-2.22l0.65,-1.71l0.81,-0.31l0.9,0.23l-0.19,4.5l0.55,1.12l-0.83,5.47l0.79,0.17l0.98,-2.69l0.33,-2.96l-0.27,-0.77l0.11,-3.1l0.14,-1.62l0.4,-0.4l-0.53,-0.75l0.08,-1.34l0.93,-0.58l2.43,-3.47l1.07,-0.64l1.83,-2.13l0.44,0.09l-0.04,0.76l-0.62,1.81l-1.33,1.96l-1.69,1.01l-0.07,0.82l0.88,1.5l-0.46,1.01l0.42,0.5l0.61,-0.15l0.97,-1.17l-1.02,-1.74l1.0,-0.35l1.13,0.25l0.37,-0.3l0.18,-1.3l0.55,-0.62l1.35,-0.47l0.09,-1.77l0.66,-0.58l0.5,0.19l1.08,-0.36l1.09,1.02l6.27,2.05l0.21,0.76l-0.55,2.69l-0.45,-1.59l-0.83,-0.0l-0.46,1.29l0.45,1.34l-0.14,0.57l-1.12,0.77l-0.93,0.17l-0.42,0.53l-0.79,0.14l-1.61,1.16l-0.33,0.68l-0.72,0.38l-1.14,1.37l-0.3,1.67l-1.25,0.89l-0.46,1.36l0.34,0.34l0.58,-0.1l0.52,-1.07l0.8,0.15l0.37,0.45l-1.04,0.07l-0.98,0.85l-0.5,0.68l0.03,0.85l-1.2,1.16l-0.21,0.6l0.46,0.49l0.96,-0.26l1.65,-2.93l0.65,-0.22l0.65,0.21l0.88,-0.75l0.06,-0.98l-0.74,-1.23l0.4,-1.35l2.94,-1.79l1.3,0.24l0.4,-0.8l1.63,-0.58l0.37,0.72l-0.53,0.89l0.08,1.44l-1.99,1.87l-1.36,3.53l-2.35,0.15l-0.71,1.11l-0.46,3.71l0.27,0.82l0.83,-0.16l0.05,-1.1l0.57,-1.29l0.07,-1.59l0.78,-0.3l0.92,0.36l1.01,-0.3l0.83,-2.49l0.58,-0.83l0.91,-0.9l1.8,0.0l0.48,-0.43l-0.19,-0.89l0.56,-1.42l1.19,-0.79l0.79,-1.54l-0.18,-0.51l-0.74,-0.16l-0.35,-0.46l0.18,-0.37l-0.26,-0.41l0.75,-2.17l0.49,0.45l1.52,0.28l3.74,3.23l0.67,1.14l1.26,1.04l1.76,3.93l-1.12,0.47l-3.27,-0.62l-1.87,0.61l-1.42,1.94l-0.35,1.64l-2.6,0.34l-3.44,3.23l-3.28,-0.02l-0.74,0.27l-1.66,1.03l-0.02,0.7l1.31,0.42l1.62,-1.27l2.97,0.23l1.92,-1.07l0.42,-0.83l1.07,-0.73l1.13,-0.24l4.87,1.63l0.88,-0.06l0.8,-0.75l3.89,-0.64l3.67,1.66l1.14,1.21l0.41,1.1l-0.24,1.15l-1.47,-0.47l-1.54,0.17l-0.56,0.6l-1.08,-0.35l-0.87,0.88l-1.11,-0.02l-4.61,-1.81l-1.08,0.52l-5.37,0.06l-1.45,2.21l0.35,0.67l0.58,-0.07l1.48,-1.85l4.11,0.37l1.46,-0.52l0.8,0.68l-3.61,0.22l-1.14,0.71l-1.28,0.14l-0.3,0.6l0.9,0.45l2.07,-0.62l-0.61,0.96l-2.12,0.83l-0.53,0.55l-0.09,0.5l0.49,0.46l0.8,-0.48l0.07,2.84l0.71,-0.2l0.37,-0.69l0.01,-2.02l2.87,-2.49l1.64,0.27l3.38,1.33l-1.21,0.42l-0.35,0.82l-1.72,-0.31l-1.14,0.25l-1.16,0.76l-0.11,0.8l0.63,0.33l1.37,-0.73l1.95,0.49l0.07,0.67l-2.9,0.05l-0.35,0.3l0.51,0.66l0.61,0.03l-1.58,0.41l-0.14,0.41l0.52,0.48l-0.14,0.2l-0.81,-0.28l-1.59,0.31l-0.85,-0.53l-2.17,-0.21l-0.71,0.41l-0.15,0.52l0.74,1.32l2.91,-0.38l-0.17,0.83l0.48,0.36l0.89,-0.69l1.43,0.15l0.92,-0.36l3.0,0.22l-1.22,1.14l-2.02,-0.24l-1.06,0.51l-0.38,0.94l-0.57,0.4l0.31,0.64l0.92,0.07l0.4,0.37l2.29,-0.4l0.45,-0.89l1.59,0.19l0.47,0.56l1.29,-0.08l0.56,2.64l0.45,-0.14l0.34,-0.74l-0.22,-2.22l1.09,-0.75l0.63,0.18l-0.53,0.96l0.8,2.28l-1.1,0.65l-0.51,0.76l-0.03,0.89l0.34,0.61l0.69,-0.03l0.43,-1.26l0.67,-0.18l0.14,0.43l-0.73,0.86l0.47,0.42l0.32,-0.1l0.96,-0.69l-0.06,-1.12l0.61,-0.89l0.58,0.43l0.56,-0.92l0.88,0.18l-0.89,0.38l-0.58,1.2l0.12,1.99l-1.14,-0.14l-0.59,0.34l0.1,0.64l0.48,0.23l1.36,0.22l0.58,-0.3l0.47,-1.62l-0.32,-0.9l1.34,-1.3l1.77,0.49l-0.19,1.15l0.27,0.98l-0.64,1.3l0.17,1.06l0.41,0.45l0.55,-0.08l0.1,-1.17l0.73,-1.16l0.3,0.93l-0.13,1.2l0.15,0.43l0.45,0.01l0.62,-0.83l-0.17,-2.76l1.41,-0.1l-0.74,0.51l-0.22,0.63l1.11,0.26l0.72,-0.6l0.55,0.95l-0.69,0.91l-0.07,2.22l-1.92,-0.02l-0.56,0.43l0.09,0.64l2.05,0.54l0.72,-0.18l0.32,0.77l0.47,0.14l0.42,-0.47l-0.33,-1.25l0.0,-2.22l1.35,-1.57l-0.2,1.04l1.08,1.38l0.16,3.19l0.5,1.59l0.65,0.46l0.41,-0.68l-0.7,-3.48l0.87,-1.12l0.11,-0.9l-0.49,-1.05l0.62,-0.77l1.07,-0.25l0.15,2.93l-0.33,1.24l0.53,0.72l1.28,0.62l1.09,1.89l0.65,0.25l0.41,-0.64l-0.92,-2.03l-1.79,-1.22l0.3,-2.6l1.38,-1.36l0.02,-1.16l0.51,-0.86l2.04,0.52l-0.69,0.76l-0.86,0.09l-0.59,0.55l0.16,0.62l0.72,0.08l-0.19,0.72l-0.71,0.32l0.09,1.47l0.5,0.36l0.55,-0.57l-0.9,2.0l0.42,1.53l0.37,0.23l0.54,-0.3l-0.09,-1.47l0.59,-0.57l0.05,-0.77l0.46,-0.59l0.38,0.45l-0.09,1.22l0.5,0.27l0.58,-0.27l0.26,-0.7l-0.35,-1.86l0.48,-0.44l1.86,0.93l-1.5,1.87l0.5,0.54l1.95,-1.32l0.24,-0.55l0.64,0.87l-0.19,1.03l0.5,0.16l1.03,-0.39l0.25,1.77l-0.68,0.8l-1.33,0.11l-0.36,0.33l0.23,0.43l1.32,0.31l1.94,-0.85l1.02,1.54l-0.3,0.73l-5.62,0.57l-0.51,0.47l0.32,0.64l3.99,-0.1l-0.41,0.42l-1.21,0.14l-1.79,1.38l-0.28,0.52l0.3,0.55l0.68,0.01l1.27,-1.17l2.68,-1.09l-2.83,2.39l-0.4,0.71l-0.09,1.02l0.38,1.42l0.39,0.36l0.78,-0.41l-0.06,-1.81l0.36,-0.86l1.17,-0.53l1.27,-1.21l1.42,-0.48l0.36,-1.11l0.95,0.13l0.52,-0.56l1.08,-0.44l0.37,0.8l-0.23,1.29l-1.16,1.76l-0.17,1.27l0.52,0.87l0.49,0.08l0.04,-1.63l1.16,-1.2l0.61,-1.4l-0.25,-2.7l0.37,0.19l0.65,-0.46l0.26,-0.66l-0.17,-0.83l0.79,0.36l0.48,1.0l-0.21,1.05l-1.18,1.04l-0.24,0.75l1.15,2.57l-0.16,0.48l-1.81,1.45l0.05,1.54l-1.36,0.35l-0.27,0.35l0.46,0.73l1.96,-0.42l0.72,-0.73l0.3,2.11l0.53,0.34l0.37,-0.19l0.23,-2.4l-0.53,-1.52l2.68,-2.39l1.05,2.86l0.25,3.22l0.61,0.48l0.64,-1.37l-0.29,-0.87l0.22,-1.52l-0.93,-2.78l0.9,-0.23l1.02,1.69l0.75,0.3l1.17,1.39l0.85,-0.11l-0.18,-1.16l-1.5,-1.3l-0.35,-0.7l0.01,-0.4l0.88,-0.85l-0.59,-1.65l0.99,-0.64l0.34,0.06l-0.0,2.25l0.25,0.44l0.75,0.09l0.21,0.46l0.45,0.11l0.51,-0.57l1.97,-0.44l-0.69,0.81l0.27,0.36l0.85,0.23l1.05,-0.23l2.61,2.39l0.07,0.53l-0.74,0.62l-0.1,0.59l-0.67,0.16l-0.62,-0.81l-1.02,-0.6l-1.28,0.03l-1.19,-0.43l-0.45,0.2l-0.05,1.01l-0.88,0.62l-0.15,0.45l0.34,0.4l0.77,0.13l0.56,-0.29l0.29,-0.8l1.16,-0.0l2.51,1.93l-0.79,0.38l-0.26,0.53l-0.94,0.21l-0.77,1.17l0.32,0.4l0.56,0.05l0.67,-0.53l2.09,-0.67l0.46,0.39l-0.13,0.23l-0.45,0.05l-0.34,0.53l-0.95,0.19l-0.36,1.09l-0.33,0.13l-1.31,-0.42l-0.75,0.49l-0.37,-1.07l-0.57,-0.48l-3.33,0.22l-0.77,0.93l0.09,0.59l1.19,0.3l0.67,-0.67l0.31,0.6l1.23,0.69l-0.19,0.37l-1.47,1.5l-0.57,-0.21l-1.12,-1.43l-0.84,0.01l-0.31,0.51l1.33,1.68l1.21,0.78l0.64,-0.08l0.73,-0.72l1.88,0.66l1.22,-0.23l0.27,0.77l0.7,0.14l0.04,0.78l0.47,0.13l-0.85,0.26l-0.63,0.76l-0.72,-0.45l-1.16,-0.01l-0.87,0.35l-0.62,-0.19l-0.59,0.4l-0.99,-1.4l-0.91,-0.43l-1.15,1.0l0.32,0.7l0.94,-0.35l1.44,1.67l2.47,-0.39l0.45,0.44l0.57,-0.05l-0.09,0.93l0.73,0.34l0.7,0.91l-0.79,0.63l-0.35,-0.32l-0.85,0.4l-1.78,-1.23l-0.7,-0.08l-0.18,0.94l0.63,0.72l2.55,1.16l-1.81,-0.21l-0.36,0.52l-0.82,0.15l1.03,2.77l-0.49,-0.42l-1.44,0.23l-2.78,-3.16l-0.84,-1.54l-0.5,-0.23l-0.52,0.4l0.32,1.56l1.97,2.25l0.15,0.61l-2.48,0.81l-0.08,0.55l0.87,0.62l0.76,-0.35l0.71,0.3l0.93,-0.36l0.34,0.34l0.03,0.84l-0.51,0.28l-0.81,-0.86l-0.68,-0.1l-0.31,0.51l0.26,1.11l0.97,0.67l-0.85,0.57l0.22,0.54l1.41,0.54l-0.12,0.47l0.51,0.46l1.03,0.41l-0.42,0.7l0.62,1.36l-0.54,0.45l0.71,1.05l0.88,-0.01l-0.39,0.45l0.28,2.2l-0.28,0.51l-0.72,-0.48l-0.97,0.83l0.81,-0.76l-0.09,-0.71l-0.28,-0.1l-0.91,0.15l-0.35,0.55l-0.37,-0.89l0.29,-1.65l-0.41,-0.45l-0.88,0.34l-0.39,1.72l-0.85,-0.15l-0.04,1.3l-0.79,-0.78l0.87,-1.93l-0.86,-0.2l-1.53,1.14l-0.49,-2.36l0.44,-1.52l-0.09,-0.98l-0.54,-0.34l-0.57,0.35l-0.21,1.79l-0.5,0.64l0.46,3.9l-0.35,-0.23l-0.25,-0.91l-0.71,-0.18l0.32,-0.69l-1.21,-0.53l-0.46,0.34l-0.08,0.5l-0.2,-0.12l-0.13,-0.62l0.76,-0.15l0.51,-0.78l-0.4,-0.58l-0.62,0.07l1.07,-1.21l1.3,-0.26l0.14,-1.53l-0.67,-0.44l-0.45,0.73l-1.47,0.31l-0.2,0.66l-1.39,0.65l-0.79,1.14l-0.68,-0.57l-0.39,-0.92l1.43,-0.95l0.34,-1.28l0.29,-0.01l0.24,-0.63l-0.5,-0.51l0.75,-0.49l0.05,-0.53l-0.45,-0.29l-1.35,0.38l-0.53,2.51l-1.2,0.35l-0.18,-0.92l0.55,-0.48l-0.03,-0.73l0.68,-0.76l1.26,-0.6l-0.05,-0.89l-0.6,-0.08l-1.44,0.68l-0.69,0.69l-0.34,0.97l-1.71,0.12l0.07,-1.83l-0.26,-0.33l-0.64,0.13l0.37,-2.25l2.59,-2.46l1.07,0.37l0.82,-0.31l-0.14,-0.66l-0.98,-0.6l-0.07,-3.39l0.88,-1.88l1.13,-1.23l0.17,-0.62l-0.43,-0.52l-1.04,0.55l-1.7,1.85l-0.54,2.08l0.28,1.6l-0.49,0.74l-0.53,0.21l-1.05,1.26l-0.61,-0.13l-0.68,1.47l-3.63,1.59l-0.61,-1.34l0.16,-0.77l1.74,-2.36l0.51,-2.99l-0.49,-1.87l-0.63,-0.04l-0.19,0.3l-0.42,4.19l-1.06,1.41l-0.79,0.5l-0.92,-0.13l-1.04,-1.14l0.36,-1.37l-0.28,-0.43l-0.47,0.19l-0.44,0.81l-1.47,-0.11l-0.31,-0.53l0.09,-0.6l-0.8,-0.16l0.76,-0.76l-0.28,-0.66l-0.57,-0.04l-1.29,1.36l-0.01,-1.4l-0.56,-0.34l-0.51,0.52l-0.5,-1.59l0.51,-0.99l-0.3,-0.45l-1.13,0.24l-1.9,-0.65l-0.33,0.65l1.6,1.05l-0.31,0.34l-1.32,0.44l-0.96,-0.27l-0.44,-0.62l-1.0,0.37l-0.97,-0.57l-0.35,0.72l-0.41,0.04l-0.88,0.98l0.65,0.65l2.65,-0.4l0.67,0.17l0.43,0.79l0.92,0.48l0.1,0.44l-1.41,-0.44l-0.43,0.14l-0.2,0.59l0.75,0.81l1.79,0.67l-0.75,0.54l-0.54,-0.39l-0.26,0.21l-0.91,-1.3l-1.66,-0.97l-0.49,0.25l-0.72,-0.19l-0.62,-1.05l-1.11,0.17l-0.48,0.54l0.16,0.52l1.09,0.64l0.41,0.86l0.93,0.76l0.75,1.19l-0.05,1.05l3.15,1.69l1.16,0.19l1.0,1.25l-0.47,0.3l-0.05,0.71l0.77,0.63l-0.39,0.18l-0.74,-0.28l-0.37,0.99l-0.95,0.19l-1.16,-0.82l-0.63,0.35l0.43,1.06l-0.27,0.32l-0.63,-0.16l-1.24,-1.61l-0.02,-1.8l-2.32,-0.81l-0.78,-1.44l-0.63,-0.01l-0.45,0.44l-0.58,-1.04l-0.78,-0.51l-0.46,0.21l-0.07,0.49l0.68,1.2l-2.72,1.06l0.31,0.64l1.36,0.11l1.7,-0.77l1.93,1.66l0.6,0.1l0.38,-0.45l-0.28,-0.56l0.87,0.64l0.01,0.33l-0.54,0.04l-0.39,0.57l-0.64,-0.57l-0.57,0.19l-0.0,0.66l0.71,0.87l-0.18,1.0l0.76,0.68l0.89,-0.25l0.01,0.91l0.43,0.29l-0.42,0.73l0.54,0.41l1.6,-0.08l0.54,-0.43l-0.36,0.54l0.05,1.05l0.82,0.33l0.16,0.5l-0.66,0.16l0.09,0.71l-0.45,0.82l0.21,0.56l0.59,0.06l-0.25,1.07l0.52,0.44l0.48,-0.36l0.63,-1.97l0.54,-0.28l0.22,-1.04l1.25,-0.75l0.34,0.18l0.51,-0.36l-0.01,-0.43l1.0,0.28l0.17,0.33l-0.46,0.83l0.21,0.36l-0.75,1.49l1.43,0.98l1.73,-0.66l0.42,0.5l-0.07,0.64l-1.38,0.37l-0.81,0.55l-0.19,0.59l0.48,0.5l0.61,0.1l0.61,-0.72l0.74,0.38l0.35,1.8l0.85,0.37l0.46,-0.4l0.55,0.1l0.19,1.06l-0.71,0.4l-0.23,1.29l0.55,0.26l0.7,-0.62l0.72,0.5l0.95,-0.02l0.51,0.75l-0.6,0.81l1.04,0.41l-0.1,0.9l1.14,2.04l0.78,-0.07l0.29,-0.88l-0.6,-0.62l-0.38,-2.84l-0.48,-0.75l0.52,0.19l0.2,0.82l0.71,0.45l1.39,0.04l0.33,0.84l0.58,-0.07l0.19,-0.62l0.31,0.19l0.21,1.48l-0.91,0.24l-0.16,0.68l1.08,0.23l0.57,1.18l0.44,0.07l0.46,-0.4l-0.13,-1.23l0.04,-0.29l0.53,1.04l0.72,-0.24l1.34,1.16l0.43,0.03l0.32,-0.41l-0.12,-0.55l-1.12,-1.21l0.19,-0.62l-0.72,-0.54l0.08,-0.66l-0.29,-0.39l0.28,-0.12l0.38,1.13l0.64,-0.23l-0.13,1.01l0.57,1.12l0.5,0.15l0.28,-0.49l-0.19,-1.12l0.42,0.49l0.19,1.22l-0.28,0.81l-0.75,0.64l0.96,2.23l0.44,0.16l1.17,-0.56l0.27,0.32l0.64,-0.18l0.3,0.54l0.57,-0.17l0.21,-0.59l0.53,-0.02l0.26,-0.45l0.94,-0.02l0.08,0.44l-1.15,0.7l-0.12,0.55l0.92,0.72l-0.06,0.57l-2.62,0.09l-0.89,0.66l-0.13,0.65l0.51,0.23l1.18,-0.44l-0.61,0.48l0.09,0.63l0.62,0.14l1.03,-0.41l0.67,0.31l-0.54,1.3l0.48,0.28l0.61,-0.22l0.29,-0.59l0.32,0.21l0.6,0.66l-0.19,0.32l0.26,0.52l-0.3,0.64l0.37,0.4l2.23,-0.34l0.04,0.74l0.46,0.02l0.61,-0.53l0.29,-0.81l0.34,0.24l0.56,-0.38l0.18,0.22l-1.53,1.95l0.09,0.7l-0.52,0.44l-0.03,0.88l0.95,0.96l1.69,0.18l0.45,-0.24l1.74,1.04l0.2,0.48l-0.47,0.7l0.53,0.51l1.11,2.71l-0.7,-0.07l-0.27,0.71l0.43,0.55l0.85,0.13l0.2,0.39l-0.88,0.25l0.13,0.61l0.9,0.27l-0.51,0.23l-1.11,-0.91l-1.52,-3.1l-1.23,-1.15l-0.37,-1.05l-1.5,-0.75l-1.36,-1.84l-1.5,-0.2l-0.37,0.51l2.03,1.66l0.73,1.05l1.02,0.59l-0.64,0.99l0.77,1.77l-0.59,0.67l0.78,0.94l0.8,-0.19l0.98,1.22l-0.73,-0.32l-0.46,0.27l0.06,0.47l-0.32,0.02l-0.27,0.66l0.9,0.88l0.37,0.84l0.53,0.26l0.95,-0.38l0.41,0.63l0.73,-0.1l-0.41,0.25l0.02,0.64l0.6,0.27l0.38,0.75l-0.06,1.3l1.26,0.59l-0.07,0.52l-0.77,0.16l-1.95,-0.91l-0.65,-0.89l-0.62,0.28l-0.04,0.62l-0.58,-0.65l-0.66,0.31l0.13,0.75l1.08,0.83l0.25,0.9l2.55,2.45l0.58,1.08l-1.04,1.6l-0.51,-0.36l-1.04,-1.83l-0.26,0.05l0.42,-1.04l-0.23,-0.6l-0.58,-0.02l0.44,-0.38l-0.29,-0.64l-0.56,0.01l-0.36,-1.34l-0.79,0.23l0.01,1.36l-1.22,0.77l-0.71,-1.25l-0.78,-0.08l0.19,-1.27l-0.76,-1.4l-0.61,0.13l-0.18,0.73l-0.45,-0.23l-0.42,0.2l-0.71,1.16l-0.47,-1.12l-0.77,0.16l-0.45,-0.76l-1.37,-0.58l-0.46,0.33l0.1,0.53l0.81,0.59l0.39,0.91l1.11,0.62l-0.01,0.38l-1.22,-0.65l-1.0,0.15l-1.14,-0.99l0.1,-0.36l-0.96,-1.06l-0.25,-1.14l-1.39,-0.99l0.13,-1.28l-0.27,-0.63l-0.71,0.03l-0.26,2.36l-0.41,-0.2l-0.42,0.46l0.11,0.93l0.59,0.94l-1.38,-1.03l0.36,-0.84l-0.65,-0.78l-0.28,-1.63l-0.55,-0.11l-0.39,0.37l0.37,2.04l-0.91,-0.42l-0.28,0.26l-1.34,-1.03l-0.81,-1.45l-0.68,0.04l-0.09,0.29l-0.63,-1.12l-0.82,-0.47l-0.87,-1.14l0.03,-0.36l-0.6,-0.38l-0.47,0.39l-0.36,-0.77l-1.44,-1.18l-0.47,0.04l0.07,0.87l1.36,1.69l0.37,1.43l1.98,3.03l-0.7,-0.34l-1.51,-1.66l-1.45,-0.62l-0.54,-0.85l-0.79,0.11l-1.1,-1.62l-0.52,0.0l-0.2,0.94l-0.57,-0.9l-0.72,-0.44l-0.63,-0.06l-0.22,0.29l-1.62,-0.51l-0.41,0.53l0.22,0.44l-1.37,-0.23l-0.86,0.53l0.28,0.7l1.76,1.39l-0.23,0.39l0.17,0.49l0.68,0.2l0.91,1.08l2.22,1.24l2.37,2.05l0.24,0.75l0.79,0.39l0.03,0.8l1.12,0.68l1.56,-0.11l-0.1,0.91l0.36,0.54l0.7,-0.17l0.29,-0.85l1.0,0.23l-0.45,0.99l0.92,1.52l0.5,-0.1l0.68,0.63l0.75,-1.18l0.81,-0.52l0.2,0.78l0.61,-0.08l0.53,0.41l-0.52,0.84l0.87,0.23l0.76,-0.65l-0.25,1.11l1.32,-0.23l-0.1,0.7l1.05,0.37l-0.12,0.95l0.64,0.13l0.45,0.65l1.61,-0.83l0.0,0.32l0.98,0.54l0.57,-0.07l0.86,0.74l0.78,0.84l0.17,1.5l0.47,0.27l0.64,-0.59l0.44,0.48l-0.91,0.86l0.36,0.76l1.38,0.89l0.73,-0.19l0.97,0.4l1.26,-0.01l0.43,-0.41l0.32,0.26l-0.68,1.24l0.31,0.86l-0.75,-0.65l-0.59,0.21l-0.04,0.81l1.15,0.98l0.1,0.93l0.59,0.08l1.36,1.14l-2.31,1.17l-1.19,-0.02l-1.96,-0.5l-0.18,-0.64l-0.76,0.1l-0.74,-0.72l-0.98,0.11l-0.95,-0.31l-1.0,0.15l-0.36,0.42l-1.57,-0.92l-0.43,0.51l-0.19,-0.76l-0.37,-0.24l-1.45,0.23l-1.14,-0.4l-0.65,0.6l-0.58,0.05l-0.88,-0.71l-0.48,0.37l-1.37,0.08l-0.3,-0.27l-4.39,0.62l-1.38,-0.54l-0.35,-0.62l-0.83,-0.02l-0.59,-0.69l-1.57,0.4l-1.67,-0.82l-0.9,-0.67l-0.37,-0.78l0.01,-1.34l-0.41,-0.53l-0.69,0.38l0.03,0.7l-0.84,-0.79l-0.43,0.1l-0.06,0.34l-0.5,-0.52l0.54,-0.05l0.56,-0.86l-0.33,-0.54l0.56,-0.63l-0.41,-0.62l-1.57,0.32l-0.59,-0.3l-0.84,0.31l-0.99,-0.56l-0.6,0.13l-0.08,0.55l0.4,0.55l-0.43,-0.42l-0.69,0.11l-0.75,1.07l-1.42,0.12l-2.52,-1.63l-2.54,0.01l0.2,-0.45l-0.42,-0.29l-1.26,-0.11l-0.19,-1.13l-0.44,-0.35l0.09,-0.64l0.92,-1.25l-1.32,-0.83l-0.81,0.48l-0.15,1.58l-1.2,-0.09l-0.26,1.25l-1.15,-0.07l-0.18,-1.19l-1.64,0.01l-0.98,-0.46l0.16,-0.38l-0.55,-0.5l0.38,-0.78l-0.43,-0.4l-0.72,0.02l-0.4,-2.19l1.07,-0.27l0.43,-1.0l1.14,-0.67l0.04,-0.69l0.85,-1.06l0.17,-1.27l-1.84,-0.43l-0.49,0.48l-0.77,-0.38l0.15,-1.01l-1.4,-0.33l-0.26,-0.37l-0.69,0.23l-1.64,-1.22l-0.78,0.57l-0.18,1.32l-0.58,0.16l-0.56,-0.73l-0.58,-0.07l0.18,-1.23l0.67,-0.43l0.15,-1.02l-1.09,0.32l-0.3,-0.9l-0.73,0.09l-0.09,1.16l-0.29,0.12l-0.5,1.5l-1.46,-0.6l-0.29,-0.72l0.3,-0.52l-0.12,-1.52l-0.29,-0.44l-0.46,0.04l-0.14,-0.85l-0.61,-0.22l-0.3,0.38l0.07,1.25l-0.64,-0.07l-0.3,-0.49l-0.38,-0.02l0.36,-0.74l-0.74,-1.53l-1.28,-0.25l-0.15,-0.78l-0.54,-0.29l-0.09,-0.5l-0.94,-0.22l-0.64,-0.63l-0.1,-0.62l-1.13,-0.55l0.59,-0.94l-0.47,-0.58l1.2,-2.13l-0.2,-0.61l-0.64,-0.11l-0.19,0.29l-0.44,-0.98l-0.45,-0.19l-0.61,0.96l0.68,1.51l-0.77,-1.17l-0.6,-0.01l-0.38,0.42l-0.59,-0.93l-0.67,-0.23l-0.44,0.46l0.28,1.74l-0.36,0.2l-1.32,-0.94l-0.59,0.55l-0.62,-0.56l-0.09,-1.88l-0.72,-0.6l-0.54,0.23l0.09,1.16l-0.44,0.47l-0.63,-0.22l-0.48,0.18l-0.14,0.48l-0.66,-0.0l0.04,0.68l-0.35,0.24l-0.37,-0.75l-1.23,-1.03l0.67,-1.75l0.44,0.01l0.34,-0.68l-1.19,-1.24l-0.75,0.01l-0.43,0.26l-0.01,0.6l-0.54,0.34l0.21,1.06l-0.35,-0.12l-0.46,0.42l-1.02,-0.08l-0.31,0.63l0.52,0.68l0.87,0.22l0.66,0.94l0.67,0.18l2.29,1.83l-0.87,0.05l-0.38,0.54l0.62,1.27l0.61,0.28l-1.02,1.15l-0.58,-0.18l-0.27,0.34l-0.81,-0.66l-0.63,0.17l-1.87,-1.07l-0.56,0.74l-1.02,-0.83l-1.61,-0.36l-0.69,-0.54l-0.47,0.19l-1.45,-0.83l-0.42,0.13l-0.24,0.53l0.31,1.11l0.3,0.69l0.95,0.49l-1.44,-0.25l-0.25,0.79l0.76,0.38l0.57,0.88l-1.41,-0.29l-0.61,0.68l-0.48,-0.21l-1.39,0.98l-0.7,-0.03l-0.16,0.85l-1.87,0.48l-0.17,0.38l-0.81,-0.01l-0.13,0.84l0.38,1.0l-1.71,-1.01l-0.65,0.23l-1.0,-0.62l-1.67,1.18l-0.35,-1.07l-0.42,-0.32l-0.55,0.21l-0.31,-0.61l-1.4,-0.53l-0.54,0.33l-0.11,0.67l-1.01,-0.4l0.3,-0.51l-0.13,-0.45l-1.38,0.16l0.23,-0.61l-1.02,-0.96l-0.17,-0.72l-0.74,-0.26l0.25,-0.48l-0.71,-1.26l0.18,-0.51l-0.36,-1.21l0.78,-1.48l-0.02,-0.51l-0.63,-0.89l-0.31,-1.18l1.12,-1.37l0.09,-0.51l1.93,-1.4l0.53,-0.81l1.09,-0.13l1.43,-1.19l0.04,-0.68l-1.92,-2.13l0.17,-0.67l0.89,0.2l0.6,-0.67l-0.27,-0.66l-0.98,-0.8l1.41,0.15l1.07,0.66l1.04,-0.06l0.45,-0.49l0.53,-0.05l0.56,0.41l0.84,-0.19l7.68,2.38l0.82,1.41l1.83,0.64l0.68,0.6l0.41,1.5l-0.5,0.55l-1.05,-0.06l-0.33,0.78l0.52,0.45l0.49,1.17l0.99,0.07l-0.49,0.9l0.31,0.61l0.65,0.05l0.66,0.87l0.44,0.03l0.79,-0.44l0.11,-0.67l-0.95,-1.79l-0.05,-1.5l-0.68,-0.39l0.15,-0.29l0.71,0.28l0.39,-0.55l-0.32,-0.58l0.51,-1.52l-0.13,-0.91l-0.6,-0.33l-0.65,0.41l-0.15,1.57l-1.94,-2.57l-1.32,-0.45l-0.48,-0.65l-1.23,-0.36l-0.25,-0.41l1.27,-0.02l0.51,-0.38l0.8,0.76l3.17,0.01l1.07,-0.93l0.1,-1.11l-0.32,-0.89l0.62,0.17l0.8,-0.53l0.54,0.15l0.59,-0.33l0.55,0.78l1.37,0.15l1.54,-1.96l0.16,-1.33l1.1,-0.55l0.05,-0.78l1.06,0.43l0.77,-0.72l0.75,0.05l0.97,1.1l0.83,-0.3l0.89,0.2l0.39,-0.27l-0.26,-1.16l-1.44,-2.04l-0.09,-0.93l-0.73,-0.35l0.12,-0.99l-0.68,-0.93l-1.2,-0.81l-1.56,-0.46l-2.13,-2.36l-1.97,-1.59l-0.53,-0.93l0.68,-1.51l1.82,-1.83l4.2,-6.04l0.47,-2.31l1.53,-1.58l1.19,-0.4l0.14,-0.56l-0.7,-1.39l0.54,-2.21l0.16,-2.48l0.69,-0.74l2.1,-0.9l0.84,-1.86l-0.22,-1.08l0.38,-0.95l-0.16,-0.63l-1.36,-0.67l-1.07,-2.69l-0.58,-0.53l0.34,-0.96l-0.93,-1.74l-0.87,-0.24l-0.62,-0.6l-0.11,-0.45l0.44,-0.66l-0.32,-1.05l-1.63,-1.76l-0.77,0.29l-0.32,-0.47l-0.38,-2.29l-1.67,-4.46l-0.46,-0.24l-0.81,0.54l-0.62,-0.91l-0.94,-0.19l0.26,-0.39l-0.17,-0.72l0.62,-0.33l-0.15,-0.42l-0.7,-0.39l-0.47,0.04l-0.49,0.94l0.06,0.55l-0.73,0.33l-0.21,0.76l-2.05,-0.67l-0.84,-1.08l0.22,-1.54l0.88,-0.77l-0.12,-0.73l-0.36,-0.28l0.16,-1.79l-0.79,-1.05l-3.03,-0.48l-0.5,0.19l-0.27,0.58l2.86,3.0l-0.06,0.55l-0.47,-0.39l-1.3,0.49l-1.25,-0.17l-0.57,-0.73l-0.57,-0.2l-0.41,-1.24l-1.53,-1.09l-0.07,-0.41l0.81,-0.62l0.17,-1.14l-0.42,-0.46l-0.73,-0.12l-0.42,-1.6l-0.71,-0.12l-0.51,0.29l-0.0,-0.54l-0.73,-0.08l0.55,-0.29l0.4,0.27l1.02,-0.53l0.24,-0.48l-0.4,-0.87l-1.32,-0.65l-0.99,0.48l-1.02,1.51l-0.14,2.43l-2.3,-2.24l-0.78,0.0l-0.62,0.99l0.62,1.23l-0.47,0.78l-1.31,1.23l-0.97,0.45l-0.55,1.14l-1.93,1.88l-1.75,0.63l-0.45,-1.23l0.57,-1.24l0.12,-1.44l-0.97,-0.74l-0.22,-1.81l1.19,-0.86l1.8,0.01l0.84,0.62l0.73,-0.12l1.19,-1.21l0.2,-0.69l1.15,-0.16l0.37,-0.54l0.02,-1.27l-0.53,-1.86l-0.96,-1.14l-2.45,-1.54l-1.7,-0.62l-1.39,0.45l-0.59,-1.14l-1.49,-1.35l-0.04,-0.67l0.74,-1.28l1.85,0.5l0.34,-1.26l-0.4,-0.58l-1.22,0.13l-0.53,-0.6l-1.73,0.58l-0.26,0.56l0.46,0.5l0.4,-0.08l-0.69,0.58l-0.11,1.06l-0.82,-0.16l0.33,-0.57l-0.16,-0.5l-0.93,0.3l-0.45,0.57l-0.34,-0.58l-0.92,-0.04l1.0,-0.68l0.53,0.26l0.58,-0.25l0.62,-1.2l-0.21,-0.88l-0.74,-0.19l0.81,-0.68l-0.14,-0.82l-0.48,-0.18l-1.25,0.55l0.09,-0.34l-0.49,-0.48l-0.69,0.29l-0.36,0.55l-0.66,-0.06l1.88,-1.51l0.2,-0.52l-0.5,-0.52l-3.53,2.22l-0.73,0.8l-1.32,-7.62l-0.89,-1.06l-0.81,-0.25l-0.68,0.2l-0.56,0.69l-1.16,-0.49l-0.31,0.65l-0.65,0.39l-1.01,-1.45l0.72,-0.54l-0.2,-0.6l-0.89,-0.28l-0.77,0.25l-1.43,-2.18l-0.46,0.15l-0.16,-0.38l-0.63,-0.11l-0.21,0.51l-0.39,0.0l0.02,-0.94l0.69,-0.19l0.23,-0.7l0.65,0.38l0.67,-0.32l-1.17,-2.05l-0.24,-0.18l-0.69,0.3l-0.48,-1.0l-0.73,0.09l-0.82,1.32l0.23,0.67l0.74,0.04l-0.47,1.38l-0.55,-0.77l-0.72,0.44l0.03,1.14l-0.75,0.13l0.01,0.65l-0.55,0.17l-0.47,0.63l-0.06,0.83l1.16,1.13l0.61,0.2l0.43,-0.39l1.24,1.09l0.8,-0.07l0.41,-0.55l0.33,0.25l1.65,2.55l0.39,2.11l0.69,1.33l-0.08,1.72l-0.52,0.66l-4.35,0.59l-1.6,0.86l-1.74,-2.45l-0.55,-0.05l-0.35,0.45l-0.46,-0.8l-1.34,-0.07l-0.86,0.48l-1.6,-1.01l-1.92,0.03l-0.77,-0.32l-0.65,0.27l-0.31,-0.61l-0.8,0.21l-2.96,-0.16l-1.17,-0.45l-0.6,0.18l-0.19,0.63l0.72,1.13l0.95,0.16l1.16,1.27l0.47,-0.07l0.5,-0.6l0.69,0.48l0.61,1.42l2.84,2.71l-0.04,0.5l-0.53,0.47l-1.01,-0.79l-0.79,-1.21l-0.86,-0.35l-1.72,-1.57l-0.61,-0.06l-0.07,-0.83l-0.56,-0.19l-0.79,0.22l-2.88,-2.78l-3.45,-1.36l-3.58,-2.36l-0.7,0.21l0.08,0.45l2.03,2.2l0.69,-0.04l3.53,1.7l1.43,1.03l1.4,1.69l1.11,0.35l-0.83,1.43l-0.97,-0.26l-0.92,1.2l-1.07,-0.71l-0.99,0.26l-1.64,-1.29l-0.67,0.01l-0.98,-0.6l-1.1,-1.1l-1.17,-0.16l-1.0,0.22l-0.47,0.65l-2.09,0.89l-3.02,-0.68l-2.06,0.14l-1.18,-0.39l-1.18,0.11l-0.91,-0.58l-0.1,-0.31l0.49,-0.65l-0.36,-0.74l-0.5,0.06l-0.78,1.02l-2.79,-0.72l-3.39,0.36l-0.74,0.52l0.03,1.0l-2.42,-1.57l-2.06,-2.53l-0.29,-2.53l0.45,-1.09l0.92,-0.54l0.59,-0.83l-0.18,-0.85l-0.58,-0.55l-0.52,0.04l-0.17,0.59l0.3,0.44l-1.61,1.29l-0.54,1.08l-0.07,-0.35l-0.83,-0.11l-0.42,-0.63l0.14,-0.5l-0.63,-0.54l-0.68,0.08l-0.91,0.67l-0.12,0.72l-0.56,0.29l-0.16,0.74l0.33,0.31l1.43,-0.04l0.14,1.23l-3.28,-0.82l-2.11,-0.01l-0.46,0.4l-3.84,-2.75l-2.22,-0.36l-1.4,-1.55l-0.77,-2.5l-2.1,-2.54l-0.99,-2.59l1.3,-0.38l0.48,-1.01l-2.06,-2.13l1.08,0.15l0.09,0.48l0.89,0.54l1.49,-0.44l0.64,0.29l1.33,-0.38l1.43,0.48l0.66,1.5l3.26,0.51l1.56,-0.59l2.27,0.19l0.39,-0.25l0.31,-1.1l1.65,0.38l0.43,-0.25l-0.01,-0.62l-2.26,-0.87l-3.09,-2.1l-0.64,-0.98l0.1,-1.55l-0.33,-0.37l-0.98,0.11l-0.93,1.12l-2.87,-0.63l-0.8,0.19l-8.42,-2.04l-0.92,-2.4l0.28,-1.64l-0.49,-1.28l1.6,-3.77l-0.7,-0.74l0.04,-0.56l-0.44,-0.27l-0.06,-0.61l-1.0,-1.53ZM474.89,330.28l0.28,0.24l0.75,0.17l-1.05,0.62l-0.53,-0.59l0.54,-0.44ZM473.1,330.1l-0.24,-0.03l-0.02,-0.02l0.2,-0.03l0.05,0.07ZM482.98,328.72l0.11,0.5l-0.87,0.03l-0.03,-0.17l0.79,-0.36ZM489.76,335.68l1.57,-0.65l1.38,0.68l-1.06,-0.2l-1.35,0.52l-0.55,-0.35ZM516.89,338.24l0.08,0.2l-0.05,0.1l-0.02,-0.01l0.0,-0.29ZM550.53,335.08l0.41,-0.09l-0.17,0.82l-0.12,-0.36l-0.11,-0.37ZM574.57,352.21l0.32,0.6l-0.22,0.09l-0.34,-0.24l0.25,-0.45ZM587.4,361.26l-0.15,0.27l-0.05,0.15l0.03,-0.41l0.16,-0.01ZM582.66,432.03l-0.03,0.04l0.02,-0.03l0.02,-0.01ZM595.94,436.99l0.4,0.28l0.14,0.44l-0.7,-0.42l0.16,-0.3ZM596.67,437.96l0.17,0.24l-0.2,0.4l-0.6,0.52l-0.32,-0.49l0.66,0.03l0.28,-0.7ZM596.17,440.05l0.05,1.42l-0.31,0.11l-0.08,-0.87l0.34,-0.66ZM595.8,441.61l-0.03,-0.02l0.04,-0.0l-0.01,0.02ZM601.28,436.5l-0.0,0.18l-0.07,0.04l0.01,-0.01l0.06,-0.21ZM601.6,439.23l-0.21,0.44l-0.21,-0.16l0.05,-0.3l0.37,0.02ZM602.6,440.59l-0.02,0.19l-0.36,0.35l-0.06,-0.15l0.44,-0.39ZM602.33,441.58l0.22,0.2l0.05,0.16l-0.23,-0.16l-0.03,-0.2ZM611.97,449.62l0.04,0.02l-0.04,0.01l0.01,-0.03ZM613.64,450.53l0.12,0.98l-0.1,0.01l-0.22,-0.97l0.21,-0.02ZM615.77,450.38l0.09,-0.01l-0.03,0.11l-0.01,-0.03l-0.04,-0.08ZM616.5,450.11l0.17,-0.03l-0.0,0.12l-0.01,0.01l-0.15,-0.11ZM620.7,451.92l0.0,0.12l-0.28,0.07l-0.0,-0.12l0.28,-0.07ZM662.94,449.05l1.26,0.8l0.05,0.79l0.54,0.66l0.04,0.32l-0.31,-0.09l-0.41,0.59l-0.41,-1.74l-0.76,-1.32ZM672.48,451.57l0.27,0.56l-0.74,0.85l0.19,-0.89l0.28,-0.52ZM677.96,454.27l-0.21,0.16l-0.02,-0.11l0.23,-0.04ZM650.02,390.37l0.52,0.43l0.09,0.2l-0.45,-0.05l-0.16,-0.58ZM680.59,409.03l0.0,0.01l-0.0,0.01l-0.0,-0.02ZM680.54,409.32l0.0,0.21l0.09,0.25l-0.18,-0.29l0.09,-0.18ZM678.47,399.02l0.0,-0.0l0.01,0.0l-0.01,-0.0ZM682.18,392.84l0.95,-0.04l0.73,0.46l-0.59,0.39l-0.21,0.76l-0.88,-1.57ZM630.85,349.97l0.11,-0.9l-0.31,-0.9l0.96,0.08l0.27,-0.33l0.26,0.38l-0.18,0.75l-1.1,0.92ZM634.0,348.94l0.23,-1.09l0.75,0.21l-0.06,0.86l-0.92,0.02ZM635.37,347.66l0.31,-0.27l0.31,-0.07l-0.19,0.29l-0.43,0.04ZM624.08,340.79l0.03,0.01l-0.01,-0.0l-0.02,-0.01ZM522.91,287.92l0.09,0.04l0.15,0.16l-0.08,-0.03l-0.17,-0.18ZM490.83,269.21l-0.1,0.22l-1.54,-0.13l0.29,-1.42l1.36,1.32ZM527.94,279.44l-0.04,-0.23l0.12,0.06l-0.09,0.17ZM541.95,291.93l-1.03,-0.78l-1.11,-1.72l0.33,-0.2l1.8,2.69ZM574.55,296.29l-0.01,-0.14l0.08,0.1l-0.07,0.04ZM622.27,341.79l0.57,-0.05l0.37,0.23l-0.06,0.02l-0.88,-0.2ZM621.25,347.63l0.29,-0.42l0.66,0.04l-0.11,0.11l-0.85,0.26ZM662.77,365.97l0.84,-0.66l-0.06,0.71l-0.78,-0.04ZM681.57,367.03l0.1,-0.68l0.41,0.51l0.69,-0.27l-0.11,0.28l-1.08,0.17ZM663.48,400.23l-0.06,0.03l-0.14,0.26l-0.08,-0.23l0.27,-0.06ZM653.19,413.28l0.02,-0.07l0.01,0.04l-0.03,0.03ZM663.75,417.21l0.03,-0.16l0.0,-0.05l0.04,0.06l-0.07,0.15ZM656.01,454.5l0.2,-0.08l0.01,0.01l-0.0,0.01l-0.21,0.05ZM656.44,456.3l0.17,-0.67l0.69,-0.27l0.05,0.1l-0.91,0.84ZM672.11,466.42l-0.48,-0.52l-0.04,-0.18l0.99,0.26l0.03,0.26l-0.5,0.19ZM626.92,462.69l-0.05,0.04l-0.35,0.13l0.03,-0.16l0.37,-0.02ZM618.61,456.15l-0.06,0.22l-0.83,-0.15l0.45,-0.09l0.44,0.02ZM539.29,319.83l-0.1,-0.03l0.05,-0.09l0.05,0.11l0.0,0.0ZM537.02,321.59l0.12,0.78l-0.07,0.39l-0.29,-0.51l0.24,-0.67ZM685.15,391.57l0.47,0.18l0.41,-0.3l0.22,0.37l1.2,0.21l-1.42,0.29l-0.89,-0.74ZM683.06,459.74l0.95,-0.38l0.19,-0.69l-0.69,-0.33l0.15,-0.41l0.86,0.39l1.28,-0.46l0.26,-0.4l0.66,0.36l-0.47,0.62l0.38,1.23l-0.58,0.69l-2.73,-0.08l-0.27,-0.54ZM683.43,471.03l0.28,-0.59l0.59,0.1l0.69,1.09l0.6,0.06l0.22,0.47l0.7,-0.01l0.58,0.61l-0.16,0.39l-2.13,-0.41l-0.78,-0.57l-0.58,-1.14ZM680.85,436.57l0.47,-0.31l1.46,3.68l-1.98,-3.03l0.04,-0.33ZM683.04,440.33l1.1,0.65l0.41,0.66l-0.53,-0.25l-0.98,-1.06ZM683.89,436.94l0.21,0.16l-0.01,0.29l-0.01,-0.01l-0.19,-0.44ZM681.52,458.42l0.32,-0.72l0.69,-0.02l-0.6,0.62l-0.41,0.12ZM681.24,433.57l-0.29,-1.01l0.41,-0.1l0.22,0.23l-0.35,0.88ZM677.29,433.02l0.03,-0.85l0.54,0.28l-0.04,0.5l0.66,0.32l-0.37,0.59l0.38,0.45l-0.62,-0.42l-0.88,0.54l-0.63,-0.2l-0.22,-0.27l0.18,-0.53l0.98,0.49l-0.01,-0.9ZM678.64,434.4l0.26,0.02l0.11,0.08l-0.11,-0.06l-0.26,-0.04ZM679.82,434.77l0.32,-0.34l0.23,0.91l-0.36,-0.42l-0.19,-0.15ZM677.96,474.7l0.38,-0.71l0.73,0.08l0.13,0.28l-0.56,0.47l-0.68,-0.12ZM674.37,366.72l0.0,-0.0l0.0,0.01l-0.01,-0.0ZM674.51,366.15l-0.12,-0.36l0.97,-1.19l-0.06,-0.72l0.92,-0.55l-1.2,2.63l-0.51,0.19ZM672.23,425.21l0.0,0.0l-0.0,0.01l-0.0,-0.01ZM672.34,425.47l0.06,0.1l-0.03,-0.05l-0.02,-0.05ZM672.48,425.69l0.47,0.19l0.17,0.69l-0.4,-0.49l-0.25,-0.39ZM665.91,422.18l0.01,-0.79l0.82,-1.94l0.42,0.21l0.54,-0.31l0.04,-0.39l0.41,0.37l-1.19,1.04l0.24,0.64l-0.74,0.27l-0.09,0.62l-0.45,0.28ZM665.53,363.97l0.62,-1.05l0.09,0.46l0.55,0.27l-1.26,0.31ZM666.87,363.64l0.66,-0.69l0.48,0.21l-0.28,0.26l-0.87,0.22ZM664.04,502.78l0.64,-0.0l0.65,0.75l1.14,0.57l0.12,0.96l-0.61,1.68l0.07,0.58l-0.8,0.31l-0.8,0.86l-0.19,0.67l-1.13,0.8l-0.48,-0.7l0.33,-6.17l1.05,-0.31ZM662.27,358.38l1.11,0.82l0.23,0.27l-1.19,0.41l-0.15,-1.5ZM639.48,351.75l0.24,-0.63l1.19,-0.11l0.22,0.76l-1.65,-0.02ZM626.89,465.68l0.24,0.01l-0.19,0.0l-0.05,-0.01ZM627.92,465.72l2.0,0.07l2.76,0.84l0.68,0.41l0.97,1.31l0.69,-0.06l0.94,1.07l-1.05,0.85l-1.68,0.11l-0.77,-0.35l-0.48,0.24l-1.03,-0.81l-0.22,-0.97l-0.56,-0.72l0.68,-0.55l-0.2,-0.75l-0.51,-0.21l-0.81,0.28l-1.42,-0.76ZM625.88,343.48l0.72,0.13l-0.17,0.02l-0.55,-0.16ZM624.15,326.73l0.98,-1.23l0.48,-0.09l0.38,0.33l-1.04,0.31l-0.41,0.62l-0.4,0.06ZM619.93,326.41l0.75,-1.58l0.99,0.23l0.78,-0.44l-0.08,-0.26l0.21,0.17l-0.66,1.38l-0.09,0.97l-1.9,-0.45ZM610.78,452.57l0.01,-0.01l0.0,0.02l-0.02,-0.01ZM597.11,474.23l0.51,-0.32l0.72,0.34l0.21,0.46l-0.8,-0.03l-0.64,-0.45ZM598.89,474.9l2.06,-0.45l1.01,0.13l0.33,0.51l-0.8,0.22l-2.61,-0.41ZM599.04,437.65l0.38,-0.55l0.19,-0.09l-0.03,0.69l-0.54,-0.05ZM599.87,438.39l0.12,0.08l0.02,0.12l-0.07,-0.09l-0.06,-0.1ZM599.82,439.43l0.16,1.13l-0.14,0.22l-0.37,-1.33l0.35,-0.02ZM585.61,305.0l0.49,-0.07l0.4,-0.5l-0.14,-2.55l0.52,-0.43l2.67,0.65l0.91,-0.13l-0.02,1.53l-1.36,0.55l-1.7,1.42l-0.5,0.98l-0.28,0.03l-0.2,-0.69l-0.77,-0.8ZM580.19,367.11l0.33,-1.37l0.49,0.37l-0.3,0.82l0.31,0.74l1.17,-0.11l2.88,1.01l0.66,-0.53l1.83,0.03l0.71,2.5l0.42,0.4l-0.04,0.79l-7.4,1.27l-1.1,-0.39l-2.06,-2.68l-0.25,-1.55l0.43,-0.5l1.6,-0.02l0.32,-0.8ZM579.32,359.58l1.96,2.07l-0.27,1.41l-0.22,-0.53l0.31,-0.6l-1.14,-0.8l-0.64,-1.55ZM575.3,680.75l0.71,-0.09l0.76,-0.89l1.39,-0.92l0.34,0.08l-0.66,2.13l-2.24,0.45l-0.3,-0.76ZM578.38,289.95l0.39,0.85l-0.26,1.18l-1.22,-0.22l-0.25,-0.33l0.39,-1.2l0.96,-0.29ZM575.01,293.4l0.88,-0.93l0.29,0.29l-0.34,1.92l-0.83,-1.28ZM575.89,294.88l0.04,0.13l-0.04,-0.01l-0.01,-0.11ZM576.25,295.51l0.29,0.14l0.49,-0.38l-0.04,-0.63l0.52,-1.05l0.6,0.68l-1.02,0.9l0.3,1.54l-1.02,-0.28l-0.11,-0.92ZM577.71,297.2l0.02,0.04l-0.01,0.07l-0.02,-0.0l0.0,-0.1ZM570.15,460.77l0.38,-0.61l-0.43,-0.34l-0.62,0.04l0.31,-0.59l1.82,0.42l0.62,-0.18l3.09,1.4l0.74,0.76l-0.23,0.36l0.17,0.58l0.75,0.13l-0.55,0.43l0.0,0.91l-0.96,-0.13l-0.54,-0.41l-0.77,0.13l-2.65,-2.31l-1.12,-0.6ZM576.82,357.19l-1.38,0.21l-0.52,-0.78l0.33,-0.71l0.51,0.07l0.41,0.98l0.65,0.23ZM560.26,382.27l0.11,-0.65l-1.23,-3.19l0.23,-2.62l1.91,-6.94l1.01,-2.27l2.5,-1.76l0.52,0.49l1.28,-0.04l1.21,-1.15l2.26,0.23l0.93,0.51l2.75,0.49l1.19,1.62l-0.56,4.02l0.68,1.8l0.66,0.84l0.13,1.72l0.65,2.21l-0.39,2.68l-0.44,1.07l-0.71,0.56l-0.35,1.08l-0.91,0.18l-0.45,1.05l-0.76,0.24l-1.47,1.26l-2.69,0.15l-0.82,0.68l-1.27,0.08l-0.77,0.51l-2.57,0.08l-0.66,-0.58l-1.19,-2.69l-0.61,-0.51l-0.18,-1.16ZM571.3,358.81l-0.19,-1.46l0.43,-1.64l0.63,0.35l1.03,-0.0l0.86,2.03l1.45,1.5l-0.81,0.96l0.08,0.44l0.56,0.32l-0.21,0.34l0.32,0.47l-0.51,0.17l-0.44,-0.99l-2.98,-1.7l-0.23,-0.79ZM574.04,604.16l0.73,-2.32l-0.16,-1.61l0.69,-1.52l0.45,2.41l-0.07,1.86l-0.87,0.26l-0.77,0.92ZM570.75,628.39l0.13,-0.06l0.12,-0.02l-0.25,0.08ZM564.25,610.37l-0.85,-0.98l2.24,-4.31l1.24,-1.58l-0.61,1.2l0.3,0.88l-2.31,4.8ZM567.46,604.71l1.4,-1.13l0.64,-4.24l-0.08,-1.98l0.95,0.11l0.62,1.43l1.16,0.56l-0.62,0.83l-0.22,2.21l-0.47,0.0l-0.39,0.59l-1.2,4.58l-1.11,2.0l-1.02,-0.49l1.41,-3.88l-0.43,-0.5l-0.62,-0.09ZM572.72,599.43l-0.23,-0.07l0.17,-0.06l0.06,0.13ZM451.74,52.32l0.69,-2.07l0.87,-1.1l0.71,0.31l1.18,-0.2l0.09,-0.56l-0.42,-0.79l0.2,-0.57l1.49,-0.25l0.44,-0.98l1.27,-0.56l1.13,0.37l0.59,-0.57l1.03,1.9l1.14,0.89l0.97,-2.42l-0.13,-0.8l0.36,0.02l0.47,-0.74l-0.15,-2.05l1.2,-1.41l1.7,-0.66l0.72,-0.65l0.67,0.63l1.12,-0.29l0.59,0.26l0.73,1.43l-0.5,1.08l0.12,0.63l2.5,2.18l0.46,0.04l0.18,-0.43l-0.18,-0.75l-0.41,-0.63l-1.05,-0.65l1.06,-0.68l-0.66,-1.47l1.06,-0.2l1.69,0.29l0.71,0.7l2.7,4.64l0.59,-0.18l0.12,-0.51l-1.58,-3.63l1.35,0.04l0.83,2.15l0.69,0.92l0.49,0.25l0.47,-0.07l0.05,-0.34l0.69,0.11l0.13,-0.43l-1.0,-3.09l-8.1,-3.86l-0.59,-1.77l0.89,-0.61l0.85,0.23l2.74,-0.54l0.65,-1.04l0.68,-0.19l0.14,-0.81l-0.52,-0.77l0.23,-0.71l-0.46,-0.49l0.04,-1.2l-0.21,-0.46l-1.37,-0.5l0.33,-0.48l3.71,-0.62l0.13,0.41l-1.0,0.36l0.04,0.88l1.63,0.69l0.67,1.21l0.65,0.08l0.39,-0.44l1.77,0.48l0.96,1.15l0.51,2.15l1.36,1.64l0.38,1.19l-0.14,0.89l-0.47,0.55l0.41,0.55l4.05,0.0l1.0,0.66l0.49,-0.54l-0.35,-1.06l-0.84,-0.9l-2.02,0.14l-1.84,-3.62l-0.12,-1.14l1.22,0.99l0.75,0.05l1.17,1.49l2.41,1.91l4.1,2.57l0.35,0.62l0.86,-0.19l1.45,0.79l2.48,3.92l1.54,0.16l0.34,-0.63l-2.22,-3.17l-0.22,-0.8l-0.88,-0.55l0.23,-0.64l-0.18,-0.59l-4.63,-1.93l-0.16,-0.54l0.33,-0.73l-0.41,-0.5l-1.54,0.07l-6.03,-5.79l0.48,-3.29l3.63,0.0l0.43,-0.38l-0.14,-0.58l-1.68,-0.41l-1.62,-1.6l-0.39,-1.53l0.72,-0.58l2.38,0.96l2.28,2.63l1.59,-0.26l0.26,-0.49l-0.18,-0.58l-2.24,-3.2l-0.35,-1.25l-1.46,-1.54l-0.34,-1.23l4.14,0.81l0.76,1.61l0.19,1.42l1.43,1.1l0.51,-0.09l0.22,-0.48l-0.81,-1.5l2.82,1.01l2.43,-0.47l0.41,-0.66l-0.27,-0.5l-5.43,-1.64l-0.3,-1.04l0.71,-0.14l0.3,-0.65l-0.29,-0.34l-2.51,-0.68l-0.23,-0.59l0.79,-1.16l2.42,-1.2l1.35,2.63l0.78,-0.03l0.59,-2.17l0.39,0.43l0.27,2.33l0.8,-0.12l1.24,0.61l0.34,-0.45l-0.34,-0.48l0.53,-0.41l-0.43,-1.1l0.49,-0.48l2.57,1.25l0.9,1.59l0.13,0.98l0.81,0.54l1.15,2.21l2.82,2.06l-0.64,1.76l-0.16,2.01l0.28,0.62l0.64,0.14l1.54,-4.56l0.82,-0.53l0.09,-0.91l-3.57,-2.25l-0.47,-1.1l0.86,-0.46l0.21,-0.66l-0.44,-0.52l-1.29,0.2l-1.4,-2.41l-3.04,-2.83l0.09,-0.45l0.51,0.21l3.22,-1.24l0.4,-0.6l2.24,0.0l0.84,0.42l0.87,-0.67l2.99,0.6l2.12,3.85l5.6,4.08l0.5,-0.02l0.35,-1.06l-0.25,-0.5l-2.6,-1.39l-1.16,-1.46l-0.66,-1.55l-0.82,-0.55l0.93,-2.75l0.94,-0.86l0.21,-0.66l-0.31,-0.32l0.66,-0.73l0.33,0.42l0.58,-0.12l0.55,-0.94l1.89,-0.25l-0.21,2.37l1.45,2.23l3.17,1.29l0.44,-0.09l0.08,-0.44l-0.32,-0.67l-2.17,-2.21l-0.72,-0.33l1.07,-2.17l0.76,-0.32l-0.02,-0.64l3.36,-0.89l0.25,0.77l-0.16,0.79l1.08,0.42l-0.26,1.14l0.82,0.44l1.53,-1.47l0.36,1.0l0.44,0.19l1.01,-0.24l0.54,-0.91l0.9,-0.0l0.12,1.19l0.42,0.61l0.63,-0.02l0.36,-0.73l1.05,-0.69l1.62,0.66l0.58,-0.43l0.83,0.39l0.41,-0.76l0.99,-0.16l0.25,0.88l-1.1,2.19l-0.01,0.58l-0.88,0.78l-0.27,0.81l-3.71,3.57l-0.63,1.19l0.04,0.97l0.69,0.28l4.24,-1.92l1.08,-2.01l0.53,-0.42l0.63,0.14l0.48,-0.34l-0.23,-1.32l2.08,-3.05l0.9,-0.26l0.01,0.92l0.38,0.63l0.51,0.26l1.13,-0.08l0.28,-0.66l-0.86,-0.58l0.4,-1.87l-0.55,-0.45l0.07,-0.42l0.32,-0.16l-0.04,0.76l0.89,0.38l0.38,1.03l1.55,1.42l0.62,-0.25l-0.07,-0.8l0.49,-1.52l2.18,-0.33l0.41,1.66l-1.15,1.1l-0.11,0.47l1.02,0.15l0.62,0.95l1.31,0.44l-0.36,0.73l0.51,0.63l1.45,0.06l0.29,3.25l-0.55,0.42l-0.1,0.83l0.64,0.3l1.14,-0.84l0.21,-1.24l0.48,0.03l0.3,-0.55l-0.29,-0.57l0.83,-0.34l0.18,0.89l0.7,0.19l0.38,-0.7l2.02,-0.25l1.13,0.69l1.62,2.11l0.87,2.8l-0.16,1.77l-2.15,2.42l0.02,0.55l0.73,0.42l-0.64,2.61l-0.85,0.33l0.11,1.15l-3.8,6.68l-1.76,-0.44l-0.22,0.57l1.28,1.46l-0.55,1.01l-1.28,0.23l-0.76,-0.54l-0.72,0.36l-1.27,-0.01l-0.3,0.67l0.18,0.31l-2.31,1.76l0.2,0.86l1.88,-0.26l-0.64,0.83l-0.79,-0.44l-0.64,1.01l-5.84,2.51l-1.85,1.28l-5.33,-3.26l-0.5,0.06l-0.04,0.5l0.48,0.66l4.34,2.87l-1.55,0.25l-0.34,0.49l0.3,0.49l1.32,0.48l5.23,-2.85l2.62,0.55l-4.8,5.09l-1.88,2.75l-1.32,1.21l-1.66,-0.02l-0.39,0.31l-0.02,0.82l0.35,0.28l-0.42,0.58l-1.26,0.96l-1.26,0.35l0.08,0.9l0.72,0.36l1.09,-0.38l-0.72,1.2l0.2,0.69l0.44,-0.06l1.45,-1.28l0.41,-1.48l6.21,-5.33l2.03,-2.24l4.49,-3.81l0.72,-1.07l4.02,-2.71l0.76,1.57l-0.35,2.33l-1.26,2.03l-0.71,2.08l-2.19,1.91l-1.19,3.4l-0.3,2.47l-1.61,3.14l-1.55,0.46l0.34,2.05l-0.77,0.57l-0.36,1.83l-0.98,1.24l-1.43,3.84l-0.67,0.72l0.32,1.06l-0.68,1.93l-0.1,3.45l-0.92,1.26l-2.31,0.46l0.03,-1.44l-0.89,-1.49l-2.64,-2.17l-0.38,-0.08l-0.38,0.36l0.14,0.81l1.88,1.85l0.82,1.29l-0.16,0.8l0.3,1.23l2.67,1.65l-0.45,1.72l-2.6,0.08l-1.58,0.99l-1.44,2.04l-0.7,0.21l-1.47,-1.63l-0.86,-0.0l-0.83,-0.69l-0.85,0.3l0.07,0.86l2.62,1.9l-0.48,0.51l-1.19,0.12l-0.35,0.47l0.77,1.03l0.96,-0.01l3.07,-1.02l2.02,-1.9l1.19,-0.7l0.66,0.72l0.23,0.78l-0.54,0.66l-0.02,1.17l-2.68,1.86l-0.36,1.03l0.33,1.04l0.6,0.04l0.84,-0.84l0.83,0.22l-0.4,2.42l-1.3,1.67l-2.93,2.44l-0.9,-0.33l-0.94,0.36l-1.35,-0.56l-0.77,-1.75l0.47,-0.44l-0.2,-0.64l-2.66,-0.1l-1.42,0.59l0.2,-0.41l-0.47,-0.57l-2.3,-0.44l-0.42,0.2l-0.3,0.53l-2.21,1.01l0.32,1.26l0.78,0.8l1.63,-0.58l3.73,0.62l0.69,-0.13l0.33,0.96l1.12,1.3l0.21,1.43l0.41,0.69l-0.5,1.48l-1.61,0.49l-0.93,-1.22l-0.33,-0.19l-0.59,0.3l0.45,2.43l-0.12,0.34l-0.89,0.37l-0.66,-0.18l-1.24,0.25l-1.1,-0.74l-0.31,-0.62l-0.62,0.0l-0.44,1.08l1.15,1.79l-0.21,0.79l-2.15,-0.19l-0.9,-0.82l-0.44,0.2l-0.53,-0.65l-0.64,0.63l-1.33,-1.41l-4.05,-0.14l-0.46,-0.58l-0.51,0.03l-0.28,1.22l0.64,0.86l-0.3,0.42l-0.86,-0.02l-0.22,0.67l1.3,2.66l-3.18,-0.69l-0.6,0.26l-0.39,0.65l0.22,0.47l1.21,0.71l1.1,-0.14l1.12,0.66l-0.49,0.59l0.08,0.44l0.44,0.09l3.25,-1.28l1.45,0.26l1.49,-0.62l1.32,0.83l4.41,-0.55l1.2,-0.53l1.11,0.11l-1.26,0.66l-0.1,0.75l0.31,0.47l0.67,0.07l0.02,0.42l0.59,0.44l0.77,1.4l-1.46,0.01l-1.23,0.59l-2.09,-0.73l-1.12,-0.06l-0.58,-0.48l-0.38,-1.44l-1.52,-0.97l-4.31,1.01l-1.15,-0.07l-4.77,0.77l-0.62,0.97l0.35,0.65l0.46,0.1l0.7,-0.57l6.41,-0.13l2.72,0.21l0.19,0.48l-2.7,0.07l-2.24,0.88l-1.48,1.32l-0.61,-0.12l-0.72,-0.81l-1.56,-0.2l-4.06,0.92l-0.19,0.66l0.5,0.31l4.62,-0.44l0.75,0.49l-0.94,1.6l-1.1,4.15l-0.03,0.51l0.54,0.79l0.8,-0.47l0.39,-2.12l1.23,-2.94l4.43,-2.33l4.73,0.72l-0.13,0.73l-2.01,0.85l-0.9,1.13l-0.08,0.88l0.29,0.32l0.63,-0.12l0.61,-0.84l1.87,-0.31l0.54,-0.49l2.04,-0.04l1.87,0.43l0.48,0.77l-0.26,0.33l0.16,0.57l0.54,0.13l-0.16,0.7l0.43,0.62l-0.38,0.68l0.23,1.43l1.14,0.67l-0.57,0.26l-0.76,1.35l-0.89,0.07l-0.87,0.75l-5.59,0.06l-1.11,0.86l0.08,0.94l2.26,-0.43l0.52,0.16l0.48,0.94l5.31,1.54l0.39,0.75l-0.13,0.36l-1.23,0.14l-0.8,2.86l-2.93,-0.69l-0.95,0.47l-1.44,-0.34l-1.6,1.33l0.25,1.1l1.78,0.65l1.58,0.05l0.82,0.41l2.64,-0.49l0.16,0.51l-0.99,2.88l-1.15,-0.73l-0.79,-0.01l-1.1,0.94l-0.29,1.21l-0.88,0.38l-0.63,0.78l-0.6,-0.06l-0.88,-0.8l-3.65,0.65l-1.84,-1.19l-0.57,0.14l-0.24,0.43l-0.02,0.42l0.34,0.23l-0.73,0.72l-0.18,1.02l0.75,1.01l0.95,0.24l1.04,0.92l0.27,1.05l-0.42,0.63l0.39,0.9l-0.39,0.57l0.16,0.44l1.02,0.12l0.38,0.87l0.56,0.18l-1.13,1.17l0.25,1.39l-0.2,0.81l-1.26,1.22l0.24,1.16l-1.23,0.63l-0.77,1.11l0.11,-1.32l-0.64,-0.26l-0.6,0.36l-1.19,2.16l-2.82,-0.37l-1.05,0.38l-0.61,0.81l-2.98,-0.37l-1.27,-0.5l-1.63,-1.58l-1.3,-0.54l-0.68,-1.26l-1.01,-0.6l-0.31,-1.56l-1.32,-1.07l-0.43,-1.42l-0.29,-0.22l-0.64,0.24l0.24,2.06l0.71,0.66l0.76,1.53l-0.06,2.42l1.63,1.42l1.5,-0.02l0.09,0.52l-3.2,1.07l-1.6,-0.46l-0.46,0.18l-0.12,0.9l1.53,0.94l0.27,1.65l0.43,0.54l1.08,-0.09l3.07,-3.13l5.01,1.29l-1.18,2.84l0.37,0.61l0.48,0.01l1.7,-3.12l1.38,-1.38l1.27,-0.05l1.22,0.52l0.91,0.89l0.32,1.24l-1.49,3.21l-0.19,0.79l0.27,0.89l1.89,-0.04l0.82,-0.37l-0.27,1.92l0.35,0.4l1.41,0.19l0.44,-0.3l-0.08,-1.12l0.68,-0.6l0.01,-1.33l0.73,-0.62l-0.09,-0.72l1.05,-0.56l1.16,1.38l0.04,0.8l0.39,0.52l-0.13,0.77l0.99,0.85l-0.07,2.9l0.31,0.97l-0.24,0.38l-1.04,0.33l-0.69,1.97l0.33,0.71l-0.92,0.7l-0.21,0.86l-0.61,-0.43l0.05,-1.71l-0.45,-0.35l-1.51,0.15l-0.69,3.59l-1.14,0.94l-0.29,2.39l-0.75,-0.32l-0.7,0.12l-2.66,2.3l-0.96,-0.18l-1.13,1.23l-0.98,0.15l-0.3,0.82l-1.1,-0.08l-0.18,-0.54l-0.48,-0.19l1.24,-4.05l-0.16,-1.17l-1.33,-1.41l-1.21,-0.5l-0.2,-1.19l-0.72,-0.08l-0.51,1.42l-0.87,0.76l-2.11,-0.3l-0.59,-0.37l0.35,-1.3l-0.28,-0.78l0.99,-1.03l0.15,-1.15l-0.47,-0.25l-2.08,1.67l-0.32,-0.04l-1.84,-3.27l-0.95,-0.99l-0.75,0.15l0.03,0.65l1.23,1.88l0.4,1.57l0.88,1.07l1.52,0.9l-0.52,1.16l0.66,1.67l-0.1,0.44l-0.44,0.49l-2.56,0.43l-1.64,-1.42l0.12,-0.88l-0.45,-2.08l-1.7,-2.06l-0.03,-2.0l-0.59,-0.34l-0.9,1.19l-0.1,0.63l1.8,3.15l0.5,1.84l-0.26,0.84l0.29,0.94l-2.22,-0.38l-0.42,-0.91l-0.57,-0.29l-1.04,-1.39l-0.45,-2.01l-1.12,-0.83l-0.73,0.15l-0.19,0.33l0.17,0.66l0.59,0.48l-0.19,1.8l0.47,1.2l-0.07,0.66l-1.88,0.31l-0.76,-0.7l-0.82,-2.14l-0.74,-0.65l-0.59,0.24l-0.18,1.75l0.76,2.51l3.36,2.1l-4.05,0.78l-0.17,-0.53l-0.43,-0.17l-0.86,0.21l-1.64,-0.98l-3.61,-0.7l-0.25,-1.66l0.81,-0.57l0.3,-0.93l-0.3,-0.71l-1.67,-1.83l-0.79,-0.43l-0.46,0.74l1.83,2.29l-1.82,1.26l-0.29,2.61l-1.72,-0.52l0.05,-1.03l-0.5,-0.56l-1.19,-0.11l0.11,-1.0l-0.59,-0.78l0.12,-1.27l-0.75,-0.92l-0.57,0.19l-0.14,0.44l-0.02,1.75l0.58,0.84l-0.25,1.32l0.65,0.8l-0.75,1.5l-1.01,-1.89l-0.62,0.25l-0.18,0.98l-2.32,-0.55l0.33,-0.54l-0.25,-0.93l0.28,-1.21l-0.99,-2.63l0.2,-0.93l-0.41,-1.49l0.36,-1.33l-0.23,-1.36l-0.79,0.13l-0.92,2.26l-0.1,0.53l0.67,2.07l-0.79,0.78l-0.49,2.29l0.22,1.08l-0.57,0.84l-0.11,-0.66l-0.58,-0.23l-0.42,0.57l-1.18,-1.48l0.11,-1.05l-0.38,-0.97l-0.57,-0.07l-0.37,0.33l0.17,-1.09l1.01,-1.13l-0.1,-1.25l0.32,-0.56l-0.45,-0.66l-0.35,-2.19l2.79,-2.17l0.25,-0.78l1.25,-0.68l1.04,-1.49l0.61,-0.15l0.32,-0.85l-0.2,-0.17l0.75,-0.3l0.28,0.5l0.43,0.05l1.28,-0.65l0.92,0.02l0.48,0.85l1.2,-0.21l0.63,-0.4l-0.14,-0.62l-0.41,-0.19l0.25,-0.54l1.25,-0.33l0.81,1.11l0.73,0.3l0.53,-0.34l-0.18,-0.78l0.93,-0.14l0.2,-0.7l-0.84,-0.43l-0.64,0.28l-1.51,-0.68l1.15,-0.62l0.08,-0.67l-0.57,-0.43l-1.12,-0.06l0.7,-0.83l0.75,0.04l0.55,-0.36l0.01,-0.73l-1.82,-0.26l-1.32,0.87l-1.48,-0.35l-0.47,-1.74l0.7,-1.17l-0.37,-1.65l-0.66,-0.37l-0.04,-0.64l-2.09,-1.62l0.29,-1.71l-0.14,-1.8l0.3,-0.38l4.54,-2.14l1.61,0.28l0.92,0.79l1.21,0.46l1.2,0.95l1.33,1.91l1.61,5.77l-0.33,1.08l0.42,0.53l1.03,-0.76l0.8,1.14l2.38,0.43l1.44,1.48l1.65,0.4l0.48,-0.5l-0.84,-2.1l1.03,0.34l1.46,-0.41l3.23,1.12l0.52,-0.45l-0.4,-1.35l-1.63,-0.75l-0.14,-0.42l0.98,-0.16l1.27,-1.23l1.88,-4.33l1.83,-6.33l0.09,-1.34l-0.47,-1.28l0.71,-0.25l0.53,-1.09l-0.41,-0.77l-0.98,0.14l-0.92,0.61l-0.61,1.05l-0.12,1.19l0.37,1.62l-0.9,1.02l-0.23,1.38l-0.6,1.09l-0.27,1.99l-0.61,1.04l-0.37,1.56l-1.97,2.55l-2.33,-0.54l-2.31,0.4l-0.26,-0.33l-0.08,-0.66l1.0,-1.0l0.92,-1.92l0.14,-1.11l-0.61,-0.9l-0.49,0.09l-0.15,1.91l-1.62,1.74l-1.72,-1.12l0.15,-0.94l-0.35,-0.58l0.6,-0.59l0.05,-0.81l0.62,-0.08l0.44,-0.46l1.34,-2.16l1.84,0.19l0.09,-0.86l-1.56,-0.74l-3.62,0.66l-0.97,0.87l-0.23,-0.84l-0.7,-0.2l2.79,-2.91l0.61,0.43l1.16,0.11l1.01,-1.06l0.9,0.03l0.58,-0.48l-0.36,-0.64l-1.58,0.15l-1.19,0.65l-1.0,-0.8l0.37,-1.3l0.65,-0.03l0.95,-0.82l2.33,0.9l1.11,-0.92l-0.44,-0.55l-0.9,0.06l-1.19,-0.63l-1.72,-0.03l-0.72,0.5l0.57,-2.56l0.98,-0.44l0.28,-0.54l-0.23,-0.79l-0.52,-0.12l-0.5,0.68l-0.25,-0.33l0.2,-3.37l0.68,-2.02l-0.18,-0.67l-0.66,0.0l-0.89,2.18l-0.59,2.68l0.15,1.9l-0.32,1.44l-1.81,4.32l-3.63,1.45l0.11,-1.87l0.67,-0.4l0.83,-1.75l0.41,-2.83l-0.04,-1.03l-0.37,-0.4l-0.67,0.41l-0.04,0.9l-0.73,1.09l-0.08,1.26l-0.67,1.11l-1.08,-0.3l-0.42,0.23l-1.1,2.26l-3.45,-0.05l0.31,-0.81l1.65,-0.52l0.28,-0.39l-1.13,-0.98l-1.15,0.28l-0.09,-5.02l1.57,-2.69l1.32,-0.03l0.39,-0.42l-0.33,-1.08l-1.04,0.08l0.62,-1.47l0.17,-1.64l1.42,-2.27l0.48,0.12l2.35,-0.99l1.53,-0.01l2.37,-2.21l0.85,-0.16l1.72,1.18l4.75,0.51l0.97,1.03l1.21,0.5l0.89,1.13l1.99,0.73l1.18,2.03l1.53,1.04l0.79,-0.62l0.15,-0.65l-1.92,-2.43l0.37,-0.4l1.19,-0.01l0.16,-0.57l-0.27,-0.62l-0.92,-0.38l-1.93,0.76l-1.58,-1.52l-0.61,-0.09l-0.1,-0.39l0.91,-0.22l2.98,0.45l1.97,-1.17l0.79,-0.05l0.09,0.45l0.67,0.02l0.5,-1.52l-0.55,-0.91l0.17,-1.61l0.84,-1.58l-0.1,-0.59l-0.67,-0.51l-1.85,1.66l-0.92,2.69l-1.66,0.83l-2.17,-1.17l-3.6,0.4l-1.43,-0.61l-1.58,0.21l-1.1,-1.32l-1.26,-0.6l-0.08,-0.74l1.05,-1.47l1.34,0.33l1.16,2.03l2.71,0.4l0.56,-0.33l0.25,-0.68l-0.33,-0.64l-0.61,0.03l-0.26,0.34l-0.56,-0.39l-0.26,-0.71l-1.22,-0.78l-0.23,-0.41l0.4,-1.06l-0.47,-1.01l-0.67,0.16l-0.43,0.84l-0.35,-0.07l-1.21,-5.65l-2.04,-1.92l-0.91,-2.61l-0.03,-0.89l-1.66,-1.68l-1.51,-0.72l-1.23,0.27l-2.7,-1.32l-0.09,-1.12l0.47,-0.6l-0.48,-1.66l0.37,-1.78l1.97,0.75l1.45,0.08l1.1,0.9l0.6,-0.29l0.24,-0.72l-1.65,-1.5l-4.23,-0.93l-0.35,-0.46l-0.61,-2.66l0.47,-4.47l2.35,-0.75l2.91,1.75l3.14,-0.45l2.65,0.1l1.03,0.35l3.45,4.54l4.84,5.13l1.18,2.97l0.03,0.75l0.56,0.75l0.96,0.24l0.19,1.07l-0.32,0.05l-0.22,0.65l0.89,0.78l0.73,-0.24l0.62,-1.11l3.9,1.55l0.52,-0.5l-0.27,-0.54l2.17,-1.37l0.92,-0.09l0.79,-1.85l-0.48,-0.53l-3.05,0.8l-0.37,0.49l-1.68,0.64l-2.12,-1.46l-0.81,0.08l0.02,-0.58l-0.53,-0.6l0.04,-1.36l-0.62,-2.0l0.96,-0.54l0.09,-0.76l-0.49,-0.5l-2.52,-0.73l-0.85,-0.65l-4.01,-5.71l-0.43,-1.05l-0.86,-0.81l5.09,-2.31l1.74,-0.36l5.59,-2.27l0.43,-0.66l-0.13,-0.55l0.89,-0.45l2.37,-0.55l0.44,-0.45l1.58,-0.11l1.62,-0.76l2.99,-0.42l0.23,-1.01l-0.41,-0.5l-3.52,-0.08l-4.6,0.68l1.16,-0.88l0.71,-1.03l1.4,-0.6l0.84,-0.99l1.04,-0.52l0.29,-0.62l0.83,-0.21l0.63,-0.71l2.75,-1.12l4.08,-0.95l0.42,-0.47l-0.0,-1.14l-0.91,-0.71l-1.88,0.69l-1.65,-0.24l-2.68,0.32l-0.66,0.63l-2.82,1.14l-0.11,-0.19l0.15,-1.32l-0.46,-1.97l1.55,-3.08l0.19,-1.3l-0.32,-0.5l1.14,-0.81l0.99,-2.7l0.8,-1.14l0.91,-0.61l0.61,-1.09l0.66,-0.3l1.11,-1.9l-0.06,-0.53l-0.48,-0.43l-0.63,0.05l-5.09,5.04l-1.84,3.71l0.04,2.02l-0.39,0.13l-2.57,-2.19l-0.49,-0.02l-0.14,0.47l0.33,0.8l1.88,2.04l-0.64,0.51l-0.25,1.54l0.06,0.71l0.78,0.53l-0.04,0.27l-0.2,0.65l-0.64,0.52l-0.02,1.11l-0.5,1.46l-1.21,0.92l-0.55,1.08l-1.23,0.78l-2.11,2.37l-1.33,1.04l-1.55,0.35l-3.58,2.05l-2.23,0.67l-0.65,-0.11l0.06,-2.17l0.77,-0.31l0.27,-0.76l2.99,-1.51l0.87,-1.09l0.66,-1.95l-0.54,-0.45l-1.04,-0.18l-2.27,2.07l-0.25,0.82l-2.99,1.38l-0.58,-0.01l-0.11,-0.89l0.76,-0.46l0.95,-1.9l-0.9,-0.83l-0.52,0.12l-1.54,2.61l-0.89,-0.11l0.15,1.78l0.62,2.07l-0.34,2.24l-2.15,0.9l-1.2,-0.45l-1.25,0.08l-0.92,0.72l-2.09,-0.77l-0.76,0.11l1.15,-1.99l-0.12,-0.47l-0.48,-0.02l-0.98,0.69l-1.13,1.77l-2.57,-1.54l0.71,-2.8l3.06,-6.53l0.63,-0.86l1.13,-0.52l0.72,-0.77l4.09,-1.21l0.43,-0.47l5.84,-2.19l1.42,-0.97l0.37,-0.58l-0.12,-0.6l-0.48,-0.14l-7.58,3.06l-4.34,1.05l-0.43,0.42l-0.62,-0.07l-1.71,0.85l-1.49,1.33l-1.05,1.9l-1.09,2.68l-1.81,2.83l-0.77,2.67l-1.52,-0.28l-0.8,-0.73l-1.03,-0.23l-2.28,-2.31l-1.42,-0.85l-1.98,-2.17l-0.26,-0.87l0.64,-0.61l0.91,-0.11l0.88,-0.71l1.83,-0.49l2.43,-0.05l1.09,0.46l2.12,-0.29l0.58,-0.47l1.5,-0.1l1.16,-0.81l0.66,-1.08l1.94,-0.42l-0.13,-1.51l2.72,-2.98l1.56,-0.98l0.47,-0.95l-0.22,-0.57l-1.33,-0.38l-1.3,0.38l-2.72,1.87l-1.35,1.52l-0.41,1.09l-0.82,0.68l-1.81,0.49l-1.83,1.16l-2.07,-0.21l-8.45,1.96l-1.29,-1.35l-0.66,-2.33l0.14,-0.8l1.09,-1.27l0.58,-0.03l0.69,0.86l0.67,0.17l2.71,-1.17l0.19,-0.56l-0.72,-0.69l-1.46,0.36l-2.15,-1.84l1.2,-0.55l0.75,-1.22l0.98,-0.29l0.81,-1.29l0.85,0.04l-0.24,-1.23l3.25,-0.87l0.58,0.55l1.55,-0.19l0.94,0.76l0.75,-0.39l-0.28,-0.99l-3.36,-1.64l-0.6,0.23l-0.4,-0.66l-0.6,-0.13l-1.12,1.08l-1.62,0.45l-2.23,1.52l-3.74,3.32l0.07,-0.73l-1.39,-1.38l2.95,-2.81l0.64,-0.09l0.27,-0.74l1.23,-0.42l0.23,-0.89l-0.39,-0.5l-1.5,0.07l-0.97,-1.81l-0.7,-0.3l-0.36,0.31l-0.09,0.95l-0.78,-0.45l-0.56,0.06l-0.44,1.08l-0.91,0.69l0.02,1.51l-1.09,0.35l-0.29,-1.24l-1.85,-0.94l0.27,-0.49ZM467.33,187.3l-0.02,0.69l0.08,0.54l-0.23,-0.5l0.17,-0.74ZM511.49,194.25l-0.08,0.23l-0.06,0.04l0.07,-0.21l0.07,-0.07ZM521.85,108.29l4.22,-0.05l-0.03,0.87l0.41,0.88l1.07,0.74l-3.95,0.26l-0.99,-1.01l-0.38,-1.53l-0.36,-0.16ZM462.51,44.67l-0.48,-0.1l0.11,-0.42l0.37,0.52ZM480.09,42.55l-0.16,-0.42l0.09,0.02l0.07,0.4ZM553.84,2.1l0.09,-0.04l0.0,0.03l-0.09,0.01ZM486.09,154.14l-1.65,1.09l-0.22,-0.13l0.52,-1.19l1.39,0.02l-0.04,0.21ZM569.87,660.89l-0.05,-0.21l0.07,-0.55l0.68,0.7l-0.69,0.06ZM569.08,481.26l0.24,0.11l-0.12,0.21l-0.05,-0.02l-0.08,-0.31ZM566.15,517.71l0.13,-0.53l1.96,-0.83l-0.06,0.3l-2.04,1.06ZM560.64,465.59l0.03,-1.29l0.44,0.78l0.6,0.12l1.39,-0.87l0.93,0.26l0.4,-0.27l1.43,-0.03l0.32,0.76l1.55,0.15l0.21,0.92l1.3,1.46l-0.31,1.54l-1.35,1.44l-1.17,0.57l-5.6,-4.82l-0.17,-0.72ZM567.82,657.04l0.59,-0.24l0.46,0.97l-0.38,0.0l-0.67,-0.73ZM567.16,481.62l0.8,-0.2l0.12,0.15l-0.37,0.09l-0.54,-0.03ZM563.99,454.06l0.28,-0.52l2.0,-0.55l-0.62,1.38l-1.66,-0.31ZM561.83,604.34l0.36,-1.75l1.39,-0.34l0.4,-0.87l1.27,-0.11l-2.77,2.78l-0.66,0.28ZM562.7,590.99l0.29,-0.1l0.15,0.19l-0.33,-0.12l-0.11,0.03ZM561.98,579.11l0.03,-0.21l0.16,-0.38l0.23,0.82l-0.42,-0.23ZM562.3,593.73l-0.14,-1.09l0.27,-0.29l0.22,0.48l-0.34,0.91ZM546.88,664.64l1.55,-2.5l0.88,0.0l1.25,-0.62l2.53,-0.61l3.06,0.13l4.08,4.11l1.48,3.29l-0.27,0.47l-0.49,-0.29l-2.64,-0.26l-2.99,-1.37l-2.11,-0.14l-5.37,-1.55l-0.96,-0.65ZM555.56,342.89l0.84,0.24l1.8,-0.44l0.34,1.06l-1.68,2.76l0.27,1.37l-1.29,0.66l-0.59,-0.32l-0.89,-1.38l-0.39,-3.32l0.49,-0.73l0.64,-0.27l0.47,0.38ZM551.05,487.28l1.41,0.39l0.98,-0.93l0.84,0.47l0.29,0.72l1.57,1.7l0.16,1.7l-0.27,2.48l-0.46,0.4l-1.52,6.75l-1.08,1.59l-1.24,-1.95l-1.17,-1.08l-1.25,-0.58l-0.94,-2.41l0.21,-4.01l1.63,-3.39l0.33,-1.37l0.54,-0.47ZM554.2,536.67l0.54,-0.67l0.8,0.1l-0.82,1.01l-0.52,-0.44ZM553.29,539.35l0.02,-0.17l0.05,0.01l0.01,0.12l-0.07,0.05ZM518.48,254.45l0.35,-1.71l-0.33,-1.57l1.93,-0.65l2.02,1.4l0.68,-0.02l0.3,-0.5l2.2,0.64l1.61,0.91l3.05,-0.36l0.81,-0.81l0.5,0.18l3.87,-0.8l1.86,1.09l2.86,0.73l0.78,0.87l0.71,0.07l0.33,0.39l0.94,1.57l0.34,1.25l0.99,0.64l1.02,-0.04l0.14,0.78l1.1,1.16l-0.17,0.91l0.28,0.48l1.0,0.89l1.32,0.27l-0.19,0.55l0.09,0.86l0.4,0.53l-0.16,0.98l0.84,0.64l0.74,-0.07l0.16,1.42l-1.02,0.76l-6.43,0.08l-0.92,-0.51l-5.12,0.35l-2.97,1.43l-3.27,2.62l-1.23,0.4l-1.03,-0.23l-2.95,-1.96l-1.55,-3.7l0.17,-1.66l-0.46,-0.82l0.3,-1.05l-0.47,-0.9l-0.74,-0.47l-0.91,0.24l-2.6,-0.56l-0.48,-0.67l-0.23,-3.22l0.77,-0.0l0.12,-0.63l-1.13,-1.22l-0.26,-0.96ZM542.49,343.15l1.11,-1.78l0.59,-1.7l1.13,-0.13l0.28,-0.54l0.91,-0.09l0.19,-0.59l-0.34,-0.9l0.25,-0.24l0.81,0.38l0.67,1.17l-0.8,1.23l-1.28,0.61l-1.46,1.61l-1.05,-0.25l-1.03,1.24ZM539.92,355.26l1.02,-3.29l1.77,-0.72l0.71,-1.13l-0.07,-1.13l0.47,-1.08l0.9,-0.14l0.14,-0.57l-0.89,-1.04l1.48,-1.21l0.9,-0.01l0.67,1.28l-0.6,1.55l-0.94,0.07l0.01,1.35l-0.55,0.73l0.12,0.8l-0.94,1.77l0.0,1.01l-0.47,0.5l-0.2,0.85l-2.02,0.99l-0.53,0.83l-0.81,-0.38l-0.16,-1.02ZM544.47,363.7l0.59,-0.78l0.44,-0.07l0.03,0.55l0.56,0.11l-0.77,0.79l-0.86,-0.6ZM546.32,361.77l-0.26,-0.61l-1.1,-0.61l2.08,0.52l-0.0,0.9l-0.72,-0.19ZM543.1,367.65l1.19,-0.44l0.95,0.97l-0.24,0.84l-0.95,1.27l-0.69,-0.65l-0.26,-1.98ZM491.6,444.1l0.6,-0.54l-0.26,-1.28l0.32,-1.1l-0.63,-1.23l0.66,-2.2l-0.44,-3.51l0.51,-1.23l-0.42,-0.97l0.42,-3.32l0.43,-0.97l-0.05,-1.17l0.6,-1.86l2.47,-2.98l0.48,-0.2l-0.15,1.45l0.49,1.08l0.82,-0.21l0.33,-0.69l1.19,0.7l-0.03,1.27l1.17,1.97l-0.29,0.44l-1.52,0.56l-0.23,0.9l0.81,0.97l1.34,0.7l0.53,0.65l-0.03,1.26l1.03,2.84l0.96,0.12l0.61,-0.39l0.52,-1.62l-0.04,-1.12l1.02,-2.43l0.72,0.33l-0.01,0.75l0.77,0.69l1.56,0.67l-0.42,1.38l1.36,1.37l1.5,0.21l0.63,0.62l0.85,-0.28l2.96,0.46l0.59,1.9l1.5,1.86l2.76,1.13l0.93,1.41l0.67,0.45l0.85,-0.02l0.66,0.61l1.7,-0.47l1.37,1.36l0.75,-0.07l2.34,2.78l0.66,0.36l0.28,3.89l1.81,2.28l-0.08,0.86l-2.81,1.51l-0.34,1.27l0.33,0.67l2.02,-0.2l1.22,-0.66l1.25,-0.19l0.59,-0.32l0.19,-0.61l0.65,-0.12l3.48,1.37l0.51,-0.57l-0.64,-1.28l0.26,-0.65l1.47,1.65l1.47,0.59l0.11,1.01l-1.42,-0.11l0.39,1.02l2.73,0.65l0.87,0.66l0.71,-0.04l0.09,0.37l-2.32,0.89l-0.92,1.85l-1.96,2.17l-0.72,0.34l-0.37,1.42l-0.79,-0.13l-3.55,-1.9l-1.25,0.09l-1.1,-1.13l-1.27,0.12l-1.57,-0.9l-1.68,0.2l-0.83,0.61l-0.91,-0.33l-0.6,-1.02l0.16,-0.59l1.17,-0.74l0.21,-0.8l-0.27,-1.3l-1.9,-1.28l-2.92,-0.04l-1.67,0.69l-0.24,-0.42l1.14,-2.21l0.1,-0.8l-0.5,-0.96l-0.43,-0.25l-0.73,0.12l-0.66,0.48l-0.31,0.78l-0.84,-0.15l-0.73,0.53l-0.52,-0.15l-0.94,0.53l-1.17,2.31l0.77,1.5l-0.29,1.2l0.41,0.83l-0.05,0.66l-0.67,-0.06l-0.56,0.37l-1.21,1.67l-0.65,0.42l-0.51,1.12l-0.85,-0.31l-0.98,0.2l-1.1,1.81l-0.45,3.06l-0.81,1.47l-0.8,0.38l-3.37,2.9l-1.45,0.7l-1.78,0.02l-0.58,-0.67l-0.59,-1.83l-0.22,-3.12l0.33,-1.21l-0.24,-1.47l0.26,-1.16l-0.27,-1.02l-0.84,-0.56l-0.08,-1.26l-0.32,-0.37l-0.44,0.22l-0.66,1.2l-1.18,0.2l-2.19,1.03l-2.41,-0.32l-1.34,0.23l-1.91,2.06l-1.94,0.07l-0.64,-0.91l0.24,-1.85l2.24,-3.9l3.46,-1.99l1.07,-0.94l1.19,-0.37l0.38,-0.61l-0.1,-1.44l-0.99,-1.14l0.06,-0.61l-0.61,-0.96l-0.15,-1.17l0.24,-0.73l-0.5,-0.71l0.07,-2.05l-0.31,-0.97l1.24,-4.08ZM537.12,125.64l0.14,-0.6l1.15,0.28l0.61,0.75l-0.27,0.43l-1.64,-0.85ZM528.13,339.23l0.71,0.43l0.53,-0.06l0.11,0.47l-1.79,0.18l0.44,-1.02ZM530.47,340.7l0.27,-1.09l-0.86,-1.08l0.03,-0.55l0.81,0.3l0.63,-0.45l0.4,0.44l-0.08,0.88l0.61,0.2l0.41,-0.54l0.84,0.27l1.61,-0.81l0.44,-1.19l1.15,0.08l0.29,0.86l0.7,0.66l-1.6,1.72l-1.98,0.49l-0.78,-0.68l-0.76,0.12l-0.17,0.63l1.17,2.24l-1.35,-0.46l-0.17,-1.79l-0.78,0.0l-0.15,0.27l-0.66,-0.53ZM532.8,452.93l0.06,-0.06l0.37,-0.01l-0.25,0.1l-0.18,-0.03ZM516.63,485.78l0.87,-1.45l0.09,-2.41l0.75,-1.27l0.74,-0.59l0.54,0.17l0.88,1.11l0.77,0.19l3.24,-2.28l2.59,0.08l1.19,-1.35l3.08,0.71l-0.52,1.61l0.24,2.58l-1.45,1.72l-1.8,1.19l-0.63,1.91l-1.56,1.53l-1.03,1.81l-2.6,2.52l-0.26,0.11l-0.58,-0.84l-1.09,-0.43l-1.39,0.44l-1.96,1.8l-0.27,-2.41l-1.84,-2.06l-0.26,-0.92l1.85,-2.17l0.41,-1.27ZM224.65,339.19l10.41,-29.67l1.43,2.96l1.64,2.0l1.52,0.57l0.36,0.5l3.12,1.81l3.61,2.71l0.69,2.27l2.5,3.21l4.41,3.07l1.14,1.59l2.02,0.19l0.43,0.79l2.55,1.27l0.89,-0.13l0.67,1.23l1.73,1.08l0.62,-0.07l0.17,-0.63l-0.85,-1.03l0.21,-0.64l-1.13,-1.74l0.59,0.14l1.77,1.79l0.95,0.0l0.47,-0.5l1.0,0.18l2.14,2.28l0.61,1.1l0.35,0.19l0.53,-0.22l0.79,1.3l0.41,1.51l1.35,1.18l0.3,2.21l1.24,1.35l-0.05,0.74l0.46,0.89l-0.07,0.62l-0.6,0.52l0.03,0.54l0.26,0.49l0.71,0.24l-1.13,1.23l-0.01,1.08l-1.03,-0.63l-0.84,0.22l-0.68,-0.89l-1.55,-0.09l-2.39,-1.42l-0.42,0.7l0.81,1.53l-0.59,0.64l-2.27,-1.38l-0.61,0.37l0.19,0.98l-1.03,1.69l0.38,0.97l-2.87,0.38l-0.52,0.95l0.32,0.62l1.43,0.7l1.04,1.98l1.06,0.54l1.96,0.14l0.6,0.93l0.85,0.09l1.0,1.43l1.4,0.13l2.17,1.57l4.2,0.81l1.85,1.27l1.7,0.16l3.18,0.9l0.95,-0.24l0.25,-0.72l0.94,0.49l1.06,-0.09l0.07,1.09l0.81,0.42l0.54,-0.25l0.08,-1.19l2.05,1.3l0.62,-0.31l0.42,0.25l1.94,-1.54l-0.35,0.83l0.24,0.61l0.99,-0.18l0.59,0.43l1.74,-0.54l1.01,-0.94l1.23,-0.17l1.5,-0.92l0.57,0.14l0.31,-0.29l0.65,1.06l0.47,0.09l0.44,-0.66l-0.3,-0.8l0.49,-0.26l0.42,0.71l-0.66,2.38l0.7,0.76l0.69,-0.72l0.52,1.18l-0.55,1.52l0.22,0.56l1.6,1.08l0.63,-0.33l0.33,-0.67l0.76,0.69l0.6,-0.12l1.0,0.42l0.28,0.85l0.0,2.79l-0.84,0.67l-0.12,0.8l0.98,1.49l0.07,1.06l0.49,0.24l0.68,-0.59l1.36,-4.64l0.36,0.04l-0.29,5.31l0.36,0.56l0.58,-0.02l0.67,-1.63l0.27,1.18l1.69,2.4l0.33,2.6l-0.33,0.29l0.04,1.02l-0.6,-0.47l-1.1,-0.12l-0.9,0.77l-1.36,-1.6l-0.54,-1.27l-0.48,-0.27l-0.55,0.44l0.28,2.54l0.33,0.43l0.59,-0.14l0.48,1.31l1.17,0.7l0.19,0.49l-0.23,1.01l-0.74,0.08l-0.16,0.66l1.74,0.69l0.16,3.35l0.73,0.24l0.29,-0.67l0.32,0.86l-0.15,0.65l0.75,2.08l0.66,0.37l0.18,1.47l0.96,2.27l0.74,0.41l0.48,-0.37l0.09,-0.75l-1.28,-2.85l-0.03,-0.89l-0.66,-0.99l-0.31,-2.38l-0.49,-0.66l0.48,-0.61l0.21,-2.19l0.49,0.43l-0.24,0.61l0.34,0.52l1.24,0.59l0.36,-0.6l-0.23,-0.74l0.57,-0.39l0.1,-0.95l0.64,0.96l0.49,1.67l0.49,0.32l0.53,-0.3l-0.3,-1.18l0.18,-0.47l-1.35,-3.35l0.9,-0.19l0.69,-0.85l0.05,-0.56l-1.44,-0.84l-0.69,-1.3l-0.43,-3.54l1.13,-2.31l-0.93,-2.27l-1.45,-2.39l0.26,-1.42l0.68,-1.28l2.24,-0.89l0.39,-1.05l-0.68,-0.64l0.69,-0.93l0.63,-0.21l0.86,0.6l0.74,0.1l1.65,-1.03l0.38,0.48l1.37,0.09l0.35,-0.46l0.93,0.57l0.62,-0.25l0.21,-1.44l0.26,0.42l0.57,-0.05l0.32,-0.89l0.43,1.38l0.69,0.24l0.69,-0.43l0.2,-0.67l-0.81,-1.03l0.71,-1.1l-0.12,-0.76l0.66,0.1l0.79,-0.65l0.8,0.72l1.59,-0.83l1.84,0.07l0.67,-1.61l-0.38,-1.27l1.23,-1.54l-0.22,-0.61l-0.74,-0.11l-0.53,0.38l-0.5,-0.59l-0.62,-0.1l-1.0,0.3l-0.34,0.5l-3.61,0.81l-0.52,0.97l-0.46,0.02l-0.28,0.38l0.2,1.07l0.66,0.53l-0.65,0.65l-0.46,-0.26l-0.34,-1.25l-0.49,-0.21l-0.5,0.58l-1.46,0.06l-1.41,1.66l-0.4,0.01l-0.33,-0.98l-1.25,-0.36l-0.53,-0.78l-1.51,0.09l-0.61,-0.36l-0.61,0.42l-0.6,1.52l0.93,1.49l-0.84,-0.05l-0.45,0.47l-0.33,-0.56l-1.33,-0.27l-1.07,0.49l0.27,-1.24l-0.47,-0.78l0.26,-0.86l-0.41,-0.83l-0.72,0.05l-1.0,0.75l-1.04,-0.05l0.58,-0.56l0.09,-0.69l1.44,-0.98l2.1,-3.01l0.98,-0.9l4.1,0.27l2.59,-0.6l1.16,0.09l3.15,-1.45l1.86,0.02l0.96,-0.62l2.17,-0.6l0.67,-0.76l1.17,1.06l1.42,0.59l1.74,3.52l-0.61,0.66l-0.14,0.69l0.7,3.02l-1.32,0.92l-0.26,0.97l0.52,0.49l1.0,-0.0l0.03,1.25l1.53,2.14l0.88,0.27l0.31,0.77l0.57,0.13l0.53,-0.37l1.16,0.24l-0.79,1.66l1.16,2.86l1.21,0.24l0.46,-0.19l1.07,0.69l1.32,-0.25l1.27,0.71l0.79,-0.27l0.41,-0.52l1.12,0.26l0.39,-0.42l0.19,-1.07l0.57,-0.48l-0.19,3.16l0.81,0.99l0.63,0.16l0.49,0.92l0.95,0.25l1.11,2.33l2.42,1.12l1.52,2.07l0.7,-0.17l-0.01,-0.87l0.36,-0.2l0.59,0.33l0.8,-0.29l0.82,1.22l0.68,0.04l0.28,0.41l1.29,0.55l1.18,-0.11l0.52,-0.62l0.64,0.15l0.55,-0.67l2.28,0.29l0.53,-0.76l1.37,-0.67l0.83,0.87l1.38,-0.92l1.71,0.31l0.54,0.61l1.44,0.15l0.6,0.42l0.77,-0.34l0.56,0.6l0.81,-0.12l1.67,1.07l0.52,0.98l1.97,0.13l0.21,0.38l0.58,0.14l0.45,-1.05l1.12,0.08l0.53,-0.78l0.56,0.3l1.55,0.02l0.61,-0.35l0.04,-0.64l-0.7,-1.42l-0.64,-0.13l-1.2,-1.65l0.07,-1.92l0.73,-0.05l2.04,3.21l1.0,3.57l0.85,0.32l0.5,1.26l0.89,0.26l1.78,2.05l1.65,-0.25l0.72,-0.84l0.28,0.6l0.67,-0.0l0.26,-0.78l0.73,-0.1l0.33,-0.55l-0.93,-1.05l0.67,-1.15l-0.81,-2.97l-0.64,-0.18l-0.52,0.86l-2.33,-3.23l-0.49,0.13l-0.27,0.64l-0.92,0.16l-0.57,0.49l-0.73,-0.22l-0.74,1.82l-0.41,-1.4l-1.23,-1.62l-0.18,-1.05l0.64,-0.33l0.37,-0.68l0.14,-1.19l-1.3,-1.23l0.07,-0.69l-0.36,-0.38l-0.66,-1.26l0.41,0.48l1.06,-0.68l1.19,1.44l0.43,0.11l0.47,-0.36l0.5,0.06l0.4,-0.68l0.79,0.34l0.56,-0.34l0.03,-0.46l0.72,0.42l0.51,-0.4l-0.15,-0.84l-0.96,-0.64l-0.64,-1.74l1.71,0.28l0.32,1.42l0.89,0.92l0.47,-0.05l0.35,-0.56l-0.24,-0.7l-0.5,-0.1l0.11,-0.26l0.79,0.01l0.99,0.7l0.68,1.19l0.03,0.84l1.08,0.66l-0.74,0.93l0.24,0.88l1.23,0.6l1.74,-0.66l-0.22,1.11l0.61,0.85l-0.35,0.88l-1.14,0.69l-0.38,0.64l0.03,0.7l0.42,0.48l1.07,0.06l0.37,-0.73l0.61,0.48l0.73,-0.14l0.31,-0.74l-0.45,-1.02l0.19,-0.25l1.55,-1.15l1.76,-0.78l-0.79,1.52l0.35,0.84l-1.82,5.69l0.01,2.01l-0.25,0.57l-0.9,0.08l-0.14,1.8l-0.91,0.95l-0.32,1.8l0.09,0.3l0.62,0.07l0.44,0.78l0.98,0.47l0.57,-0.12l-1.02,1.79l-0.33,1.54l0.46,0.47l0.47,-0.08l0.23,0.52l0.87,0.02l2.55,-2.56l0.6,0.59l0.53,-0.36l-2.48,3.23l0.46,0.54l1.33,-0.73l0.96,-0.12l-0.02,1.16l0.74,0.27l-0.27,1.34l0.61,1.06l-0.69,0.79l-0.87,0.03l0.12,-0.28l-0.45,-0.53l-2.25,0.7l-0.31,-1.15l0.38,-0.72l-0.29,-0.74l-0.73,0.33l-0.69,1.35l-0.98,-0.04l0.01,-1.45l-0.95,-0.71l-0.57,-0.04l-0.69,0.9l0.38,1.53l0.81,0.62l0.4,1.02l0.7,0.58l0.31,1.37l1.83,1.52l0.46,1.9l-0.39,1.29l0.13,0.48l0.5,-0.01l0.78,-1.17l0.96,-0.63l-0.09,-1.39l-0.49,-0.51l-0.53,0.65l-2.24,-4.1l0.51,-0.24l0.77,0.55l0.55,-0.22l0.47,0.8l1.82,0.12l0.73,-0.39l0.97,0.56l0.65,-0.4l0.57,-1.26l-0.84,-2.43l0.07,-1.43l0.7,-1.15l0.14,-0.87l0.71,-0.58l-0.14,-0.51l-1.05,-1.02l-0.44,-2.43l0.7,-0.87l-0.06,-0.95l-1.04,-2.12l-0.56,-0.29l-1.07,-1.42l1.36,-1.41l0.21,-0.93l-0.27,-1.18l1.24,-2.11l0.03,-0.92l0.63,-0.02l-0.22,0.42l0.57,0.39l1.08,-0.91l0.6,0.73l0.62,-0.1l0.82,0.61l0.65,-0.2l1.99,-2.51l2.93,-2.25l0.13,-2.08l0.63,-0.95l4.43,-2.67l0.26,-0.93l1.2,-0.67l0.06,-0.55l-1.85,0.31l-0.69,-0.28l0.28,-2.13l1.01,-2.08l-0.54,-1.2l0.06,-1.53l-1.1,-0.49l-0.47,0.16l0.2,-0.46l-0.32,-0.34l0.51,-0.56l-0.3,-0.73l-0.68,0.15l-0.7,0.78l-0.1,1.2l-1.12,1.89l-0.02,1.06l0.74,0.43l-0.87,0.88l-1.18,-0.03l-0.94,0.55l-1.22,-0.72l0.65,-2.28l-0.3,-1.43l0.72,0.73l0.33,-0.14l0.85,-1.72l1.24,-0.38l0.29,-0.39l-0.14,-0.89l1.26,-1.02l0.09,-0.46l-0.41,-0.23l-1.1,0.54l-0.6,0.05l-0.26,-0.32l0.56,-2.25l-0.16,-0.9l1.73,-0.7l1.06,0.47l0.5,-0.21l-1.04,1.68l0.19,2.01l0.66,0.2l2.1,-2.7l1.62,-1.46l-0.12,-0.8l-1.22,0.19l0.93,-1.77l0.02,-0.59l-1.2,-1.18l-0.99,0.12l-1.53,0.77l-0.3,1.01l-1.59,-0.04l-1.05,-0.37l-1.24,-2.45l-0.29,-1.53l-0.95,-1.18l-1.12,0.56l0.07,1.25l-0.59,0.55l-0.93,-1.15l-0.89,-0.01l-1.88,-1.41l-1.82,-2.33l-0.83,-0.12l-0.36,-0.39l-1.17,0.24l-0.59,-1.11l0.09,-2.18l-0.52,-0.53l-0.65,-0.09l-1.65,-3.41l-0.15,-2.09l0.34,-2.13l0.71,-1.18l0.85,-0.31l0.59,-2.41l0.75,0.08l0.47,-1.04l1.74,1.3l0.65,-0.46l-0.1,-0.52l-1.67,-1.17l0.04,-0.59l1.59,-1.2l0.19,-0.58l-1.22,-0.06l-2.0,1.53l-0.98,-1.14l-0.42,-1.41l-0.87,-0.86l1.19,-5.03l0.89,-1.31l-0.23,-0.76l-0.55,-0.21l-0.27,0.29l-0.14,-0.24l0.31,-0.26l0.85,0.13l0.12,-0.27l-0.49,-1.01l0.28,-1.34l-0.37,-0.46l1.13,-0.1l1.07,-2.14l0.99,-0.1l1.95,2.72l1.27,0.08l0.33,-1.37l0.76,-0.66l-0.68,-1.12l1.26,-2.02l-0.42,-0.25l-1.02,0.41l-1.72,-0.58l-0.59,-0.77l0.38,-0.56l-0.25,-0.28l1.28,-0.41l1.53,-1.72l1.55,0.02l0.34,-0.47l-0.12,-0.73l0.38,-1.08l0.84,-0.27l1.45,0.12l1.05,0.27l0.34,1.88l0.61,-0.01l0.76,-1.04l-0.31,2.51l0.32,0.45l0.51,-0.17l1.16,-2.14l0.4,0.3l0.63,-0.34l0.72,0.63l1.19,-0.48l0.0,0.99l-0.76,1.43l1.3,1.82l2.72,2.41l0.45,1.94l1.1,0.69l0.25,2.85l0.47,1.29l-0.08,2.48l-0.38,3.5l-0.66,-0.38l-0.44,0.47l0.1,0.49l0.69,1.08l1.05,0.33l0.69,0.64l-0.25,0.89l0.35,0.34l0.1,0.92l1.7,0.3l0.78,0.68l-0.29,0.6l0.79,1.63l-0.37,0.43l0.2,0.64l0.86,0.41l-0.09,0.39l1.05,1.48l-0.12,0.79l-0.65,0.57l0.7,0.38l0.22,0.75l0.7,0.16l0.82,-1.44l-0.19,-0.33l0.6,0.07l-0.26,0.55l0.2,2.13l0.6,0.35l0.28,-0.25l0.44,0.78l-3.08,0.37l-0.52,-0.86l-0.83,-0.4l-0.57,-1.55l-1.17,0.57l0.43,0.71l-1.34,0.59l0.57,0.61l-0.46,0.85l-0.77,0.42l-0.0,0.65l0.72,0.68l0.59,0.01l0.24,-0.49l0.78,-0.38l1.26,0.14l0.86,0.98l-0.74,0.34l-1.66,2.15l0.12,0.41l-2.03,1.16l-0.22,0.56l-0.65,0.01l-0.24,0.73l-1.93,1.83l0.19,0.52l2.03,0.54l0.79,-0.66l1.1,0.04l2.12,2.77l2.21,1.48l2.11,-2.04l0.1,-0.83l0.81,-0.86l1.28,0.51l-0.97,1.2l-1.68,0.68l0.02,0.7l0.44,0.23l1.49,-0.21l1.04,-0.74l0.63,0.96l1.39,-0.16l0.36,0.69l1.02,0.01l0.53,-1.03l1.52,0.89l0.09,0.25l-0.69,0.38l-0.48,-0.53l-0.61,-0.01l-0.41,0.4l0.45,0.62l-1.08,0.99l-0.25,1.61l-0.61,-0.4l0.37,-0.81l-0.42,-0.4l-0.47,0.11l-1.25,1.31l-1.69,-1.37l-0.67,0.29l0.54,1.02l1.59,1.16l3.04,3.5l0.72,0.43l-0.39,1.34l0.27,0.55l0.49,0.15l0.16,0.54l-0.27,0.74l1.3,0.85l-1.1,1.36l0.2,0.58l0.42,0.08l-0.15,0.92l0.34,0.75l-0.48,1.34l0.34,0.89l-0.25,0.79l0.36,0.47l-0.94,1.83l0.26,0.55l1.56,0.97l-0.66,0.52l-0.1,0.51l0.49,0.18l0.7,-0.25l0.29,1.8l0.46,0.61l0.83,-0.07l0.65,-0.63l-0.22,-1.21l1.21,-1.33l0.04,-1.2l0.65,-0.41l0.63,-1.78l-0.72,-0.82l-0.16,-0.8l0.66,-1.17l-0.11,0.74l0.35,0.5l0.54,-0.2l0.31,-0.62l0.2,-3.6l-0.48,-2.78l0.31,-1.38l1.95,-2.78l0.76,-1.95l0.81,-0.47l0.93,0.17l0.54,0.53l0.76,1.96l0.94,1.23l3.7,3.18l1.73,2.49l0.75,2.41l-0.07,2.09l1.18,3.88l0.07,1.43l-0.33,1.43l-0.41,0.53l-1.47,-0.53l0.0,-2.23l-0.28,-0.54l-0.57,0.02l-0.75,1.43l-0.66,0.47l-0.22,0.77l0.64,1.37l0.36,1.85l-0.72,1.8l0.07,1.19l0.8,3.46l0.92,1.49l0.26,1.46l0.61,0.85l1.03,0.56l2.33,3.5l1.5,1.53l0.14,1.62l0.55,0.42l-0.88,0.97l-0.09,1.63l0.52,0.42l0.28,-0.12l0.67,-1.15l0.35,1.43l0.77,-0.01l0.44,-2.43l0.17,0.71l0.65,0.14l0.43,-1.33l0.76,-0.29l-0.28,-1.39l0.74,-1.69l0.46,-0.2l0.65,0.81l1.18,0.53l0.87,-0.85l-0.27,-1.29l0.42,-0.51l0.1,-3.05l-0.63,-1.65l1.23,-3.16l1.2,-1.55l0.47,-1.25l1.64,-1.83l-0.14,-1.24l0.37,-0.46l-0.24,-1.07l0.4,-0.09l0.33,-0.65l-0.43,-0.61l0.05,-1.52l1.03,-2.63l-0.5,-0.76l-0.17,-3.02l0.49,-2.13l0.77,0.12l0.63,-0.55l0.3,0.42l1.19,0.27l0.47,-0.33l0.01,-0.4l1.54,-0.23l1.32,0.5l0.47,-0.39l0.12,-1.02l-0.57,-0.98l-0.96,-0.26l-0.63,0.3l-1.06,-0.4l0.51,0.1l0.69,-0.59l-0.1,-1.13l1.13,0.19l0.47,-0.25l-0.18,-1.05l-0.94,-0.34l0.68,-0.31l1.87,0.46l0.54,-0.81l-0.44,-0.59l-1.29,-0.2l-0.34,-0.92l-1.18,0.19l-0.77,-2.03l-1.4,0.16l-0.45,-0.44l-0.8,-0.13l-0.82,-1.5l0.81,-0.1l0.0,-0.83l-0.73,-0.45l0.12,-0.35l-0.34,-0.42l0.55,-0.16l0.45,-1.01l-0.72,-0.74l-0.72,0.27l0.02,-1.04l0.33,-0.57l0.63,-0.15l-1.18,-2.09l0.63,-0.72l-0.04,-1.08l0.77,-0.79l-0.07,-0.77l1.71,0.98l0.43,-0.68l0.88,-0.22l0.49,-0.61l3.23,-0.54l0.37,0.46l0.88,0.11l1.22,1.29l2.32,1.02l2.79,0.38l0.9,-0.59l1.61,0.41l1.0,-0.32l1.52,0.13l0.48,-0.34l0.15,0.26l-0.65,0.87l0.25,0.5l-0.91,0.6l0.36,0.36l0.88,0.07l0.55,0.68l-5.0,-0.84l-0.65,0.42l0.17,0.76l6.94,1.74l-0.26,0.19l0.21,0.47l1.55,1.36l-0.4,0.23l-0.32,1.25l0.49,0.56l1.98,-0.41l0.2,-0.61l1.62,0.05l2.08,1.18l0.9,-0.0l0.36,1.29l-1.11,0.95l-0.49,1.44l-0.68,0.07l-0.43,1.13l-2.03,1.16l-0.43,1.03l0.48,0.12l1.55,-0.74l0.91,-0.06l0.65,0.54l0.22,0.76l0.47,0.18l0.96,-0.97l1.12,1.62l0.07,2.62l-2.43,2.77l-1.12,-0.34l-0.42,0.56l0.02,0.92l-0.79,0.69l-0.64,-1.43l-1.22,-0.48l-0.47,-0.09l-0.46,0.43l0.73,1.2l-1.29,-0.23l-1.57,-1.04l-0.43,0.26l-0.18,0.63l0.8,0.9l-0.48,-0.02l-0.29,0.73l0.35,0.74l1.0,-0.01l1.03,0.92l-0.87,0.27l-0.13,0.58l0.6,0.71l0.78,0.37l0.54,-0.28l-0.48,2.01l0.5,0.77l1.45,0.33l0.14,0.4l-0.5,1.79l0.93,2.29l2.14,1.89l1.82,2.29l1.57,1.09l1.69,2.53l0.22,0.52l-0.41,1.74l-0.28,5.75l-0.53,0.8l0.05,0.96l-1.02,0.03l-0.28,0.58l-1.06,-0.37l-1.34,0.86l-0.5,1.2l0.16,0.41l-0.46,0.91l0.08,0.5l-0.63,1.14l0.07,0.98l-1.52,0.1l-0.06,0.63l-0.59,0.4l-0.65,1.2l-0.23,1.08l-1.73,0.03l-1.48,0.55l-0.36,1.57l-2.25,2.59l-0.38,0.05l-0.41,-0.12l-0.13,-0.75l-0.94,-1.23l-0.35,-1.01l-1.56,-0.52l-1.22,-1.46l0.84,-0.02l0.3,-0.94l-0.88,-1.37l0.48,-1.38l-0.41,-1.56l-0.42,-0.2l-0.33,0.34l-0.11,1.16l-0.7,0.65l-0.47,1.48l-0.76,-0.18l0.05,-1.01l-0.3,-0.35l0.54,-0.56l-1.46,-1.06l-0.06,-2.04l-3.54,-0.91l-0.73,-0.56l-0.69,0.1l-0.05,1.03l0.57,0.63l-0.96,0.18l-1.62,1.09l-0.24,1.14l0.19,0.5l0.92,0.71l1.52,-0.57l0.86,-1.83l0.42,-0.12l0.25,0.31l-0.33,0.39l0.98,0.58l-0.37,0.78l0.37,0.41l2.33,0.87l-0.55,0.56l-0.01,0.63l1.17,0.78l1.2,-0.25l-0.39,1.76l2.5,2.69l0.45,0.81l0.25,1.95l0.7,0.44l0.56,1.17l-1.31,0.22l-1.3,-0.9l-0.32,-0.92l-0.59,-0.46l-1.33,0.72l-0.35,-1.24l-1.17,-0.96l-0.48,0.19l-0.76,1.63l2.26,2.97l-1.28,-0.84l-1.45,-0.18l-0.77,-0.79l-1.0,0.26l-1.07,-1.4l-0.6,0.07l-0.34,1.21l-0.78,-4.09l-0.84,-1.71l-0.66,-0.37l-0.86,0.23l-1.97,1.36l-0.9,-0.22l-1.74,0.35l-1.03,-0.32l-0.59,-0.68l-0.45,0.07l-0.33,0.62l-1.44,-0.65l-0.35,0.93l-0.6,-0.32l-0.75,0.2l-0.14,0.54l0.61,0.87l-0.56,0.05l-0.22,0.59l1.71,2.75l2.48,0.54l3.71,1.93l-0.76,1.22l-0.06,1.4l-0.48,0.53l-1.03,0.33l-0.22,1.04l-1.73,0.86l-0.59,2.04l0.31,1.26l-0.58,1.19l-1.1,0.64l-1.09,1.77l-1.33,0.59l-0.29,0.88l-0.53,0.25l-0.28,0.57l0.29,1.02l-2.17,1.42l-4.42,0.04l-1.02,-0.44l-1.24,-0.93l-0.92,-1.6l-1.21,-1.3l-1.96,-1.11l1.98,0.37l0.47,-0.37l-0.12,-0.47l-3.93,-1.49l-0.91,0.15l-1.03,-0.58l-0.37,-0.92l-1.22,-0.74l-0.92,-1.12l-0.79,-0.14l-1.45,-1.41l-2.52,-0.27l-0.57,0.23l0.01,0.69l1.88,1.05l0.14,0.7l-2.03,-1.36l-1.24,0.26l0.05,-0.62l-0.46,-0.37l-1.47,0.42l-6.35,-0.91l-1.26,-0.56l-1.67,0.63l0.02,0.64l3.84,2.87l0.66,-0.16l0.12,-0.54l-0.83,-1.67l4.33,0.96l4.62,1.73l1.79,1.3l1.04,1.58l1.15,0.81l0.64,2.1l1.78,1.27l1.28,2.27l1.01,-0.19l0.6,0.41l6.81,0.99l1.16,-0.43l1.53,0.37l0.72,-0.68l1.26,0.62l1.23,-0.17l2.44,0.59l-0.02,0.57l0.92,0.98l-0.42,0.83l0.18,0.8l-1.03,1.03l0.2,0.74l-0.68,0.55l-0.63,1.25l-0.46,2.22l-0.67,0.57l-0.74,-0.22l-0.3,0.43l0.01,2.02l-0.48,1.22l-1.97,1.13l-0.52,3.2l-1.35,1.99l-0.11,0.53l0.4,0.72l-0.74,0.93l-0.94,-0.04l-2.19,1.87l-1.48,0.78l-0.44,0.77l-1.35,-0.65l-0.63,0.19l-1.4,-1.05l-1.02,-2.09l-0.48,0.02l-0.39,0.58l1.13,2.58l-0.8,-0.25l-0.43,-0.5l-0.74,0.08l-0.86,-0.94l-0.48,0.08l-0.22,0.53l-0.47,-0.49l-0.61,-0.01l-0.37,-0.42l0.39,-0.09l0.34,-0.6l-0.14,-1.56l-0.38,-0.69l-0.64,0.01l-0.79,1.51l-0.87,0.09l-1.12,0.66l-0.05,0.72l0.93,0.65l0.44,-0.18l0.48,1.07l-0.19,0.66l-0.41,-0.19l-0.73,0.47l-0.86,-0.9l-0.72,0.05l-0.46,0.46l1.37,1.56l0.33,1.12l1.01,1.2l-0.95,0.21l-0.29,0.68l0.41,0.36l-0.92,1.77l-0.74,-0.24l-0.59,0.62l-0.56,0.01l-0.23,-0.94l-1.65,-0.78l-0.76,0.87l-0.04,0.64l0.69,0.29l0.5,-0.22l0.07,0.37l-1.46,0.62l-1.33,0.1l-1.96,-1.32l-0.77,0.03l-1.06,-1.28l-1.28,-0.65l-1.21,0.15l0.04,-0.54l-0.47,-0.6l-0.51,0.06l-0.35,0.5l-1.27,-0.1l0.67,-0.57l-0.27,-0.54l-1.23,-0.2l-0.67,1.26l-2.38,-0.59l-0.99,-0.97l-1.95,-0.67l-0.56,-0.85l-1.09,-0.11l-0.4,-0.69l-0.98,0.04l-0.68,-0.73l-2.44,-1.09l-1.31,-1.52l-0.1,-1.25l-0.75,-0.16l-0.38,-0.56l-0.65,0.04l-0.08,0.58l0.7,0.89l0.13,1.06l0.71,1.09l-0.06,0.3l-1.2,-0.06l-0.41,0.49l-0.05,0.4l0.61,0.58l0.54,1.53l2.55,1.43l1.53,-0.47l0.27,-0.5l-1.31,-0.78l-0.63,-1.04l0.13,-0.26l2.22,1.83l1.8,0.9l1.13,0.19l1.16,0.98l0.55,0.05l0.82,-0.64l0.64,1.4l1.31,0.07l0.51,0.42l-0.34,1.0l-0.74,-0.38l-0.82,1.21l-1.45,0.8l0.07,0.56l0.82,0.62l1.5,-0.61l0.41,0.38l0.63,-0.18l0.29,-1.37l1.35,-0.48l0.53,-0.63l1.38,-0.66l1.17,1.1l0.19,1.32l1.74,1.14l-0.1,0.55l0.37,0.42l1.93,-0.08l0.94,0.83l0.59,-0.3l0.22,0.25l-0.31,0.34l0.34,0.65l2.0,0.84l-0.34,0.61l0.51,1.75l-0.36,0.9l0.41,0.47l-0.04,1.6l0.25,0.32l-0.84,0.97l-0.23,0.91l-2.1,-0.17l-1.55,1.08l-0.28,0.73l-0.67,0.49l-1.01,0.17l-0.08,0.61l-6.01,-1.84l-0.48,0.42l0.11,0.84l-1.42,-0.68l-1.4,0.44l-0.18,1.01l1.52,1.96l-0.01,0.45l1.0,0.46l2.05,0.27l0.42,0.21l-0.02,0.44l-0.74,0.94l-0.91,-0.27l-0.08,-0.97l-0.79,-0.23l-0.79,0.25l-0.1,0.46l-0.81,0.57l-0.29,-0.1l-0.11,-0.96l-0.66,0.08l-0.71,-0.69l-0.56,0.33l0.62,1.7l-0.15,1.0l-1.28,0.07l-0.16,1.92l-0.88,0.18l-0.01,0.68l1.78,0.63l-0.08,0.63l-0.47,-0.64l-0.62,-0.04l-0.47,-0.48l-3.58,-1.19l-0.51,0.14l0.08,0.53l0.58,0.48l3.52,2.17l-0.17,0.39l-0.49,-0.41l-0.97,-0.02l-0.42,0.2l0.01,0.34l-0.95,0.34l-0.3,0.85l0.81,0.74l-0.33,0.5l-0.6,0.02l-0.24,0.51l-1.17,-0.68l-0.29,0.48l-0.38,-0.11l-0.51,0.37l0.15,0.47l0.91,0.72l-0.58,0.06l-0.12,0.57l-1.72,-0.71l-0.48,0.61l0.55,0.71l-0.52,0.41l0.0,0.75l1.48,0.65l0.15,0.47l-0.35,0.17l-0.06,0.59l0.5,0.75l-0.94,0.27l-2.33,2.14l-0.8,0.09l-1.42,2.04l0.19,1.66l0.96,0.33l0.02,0.67l-0.63,0.23l-1.46,-0.58l-0.43,0.57l0.86,1.7l-0.83,1.09l0.32,1.46l-0.9,0.8l-1.03,2.78l-1.06,0.83l-0.64,1.83l0.06,0.76l-0.95,1.43l-0.28,1.75l-1.44,-0.29l-0.49,0.23l-0.08,0.62l-0.78,0.49l1.17,0.74l0.47,1.38l-1.03,2.38l0.22,1.29l-0.39,0.88l0.08,1.0l-0.53,0.41l-0.4,1.05l-33.99,-2.48l-33.79,-3.8l10.54,-78.34l0.16,-3.27l-1.13,-0.63l-11.88,-3.86l-18.57,-6.61l-25.7,-9.97l-1.81,-1.05l-2.03,-2.19l-7.01,-13.93l-14.83,-3.67l-12.27,-15.45l-13.32,-18.01l-12.5,-18.28l-10.27,-16.15ZM431.55,497.53l0.31,-0.12l0.17,0.01l-0.2,0.26l-0.28,-0.15ZM459.97,461.11l0.41,0.12l0.06,0.53l-0.42,-0.04l-0.04,-0.61ZM466.33,460.55l0.16,0.24l-0.01,0.0l-0.15,-0.24ZM457.44,422.81l-0.21,0.13l-0.28,-0.01l0.49,-0.12ZM510.55,414.28l0.09,0.15l-0.04,0.09l-0.06,-0.23ZM452.71,352.12l0.03,0.15l-0.01,0.1l-0.08,-0.08l0.07,-0.17ZM410.05,384.51l0.12,0.01l-0.05,0.33l-0.07,-0.28l-0.01,-0.06ZM408.32,373.23l-0.03,-0.49l0.36,-0.47l-0.09,0.57l-0.23,0.4ZM318.64,387.32l0.17,-0.15l0.1,-0.2l-0.02,0.64l-0.25,-0.3ZM318.94,386.46l-0.03,-0.21l0.0,-0.15l0.04,0.09l-0.01,0.27ZM321.06,364.45l0.05,-0.18l0.03,-0.08l0.11,0.08l-0.19,0.18ZM329.96,363.12l-0.02,-0.07l0.05,-0.02l-0.02,0.09ZM343.89,363.99l-0.01,-0.29l0.6,-0.07l-0.05,0.13l-0.54,0.22ZM393.29,373.56l-0.08,-0.14l0.13,-0.03l-0.03,0.08l-0.02,0.08ZM393.36,373.34l0.07,-0.35l0.01,-0.02l-0.02,0.16l-0.07,0.2ZM431.18,350.11l0.25,-0.55l0.38,-0.32l-0.44,0.76l-0.19,0.11ZM427.74,295.54l-0.28,-0.5l-1.09,0.54l-2.24,-0.49l-0.57,0.24l-0.05,-0.78l0.27,-0.75l4.16,-0.81l0.19,0.78l0.47,0.35l-0.54,0.32l0.1,1.06l-0.41,0.05ZM524.18,151.95l-0.31,-0.7l1.09,-0.68l0.05,0.73l-0.83,0.65ZM520.3,200.25l0.21,-1.47l1.52,-2.11l0.89,-2.29l0.45,0.01l0.45,0.38l-0.01,0.52l-1.54,2.07l-0.21,0.77l0.31,1.0l0.68,0.66l-1.45,0.22l-0.62,0.7l0.01,0.56l-0.7,-1.0ZM420.43,181.62l0.62,-0.87l-0.12,-0.26l0.61,1.02l0.74,-0.23l0.77,0.53l0.67,-0.11l0.25,-0.84l-0.59,-0.28l0.66,-0.4l-0.11,-0.59l-1.42,-0.84l-0.59,-0.77l-0.57,-0.08l-0.08,-0.91l0.74,-0.14l0.39,-0.81l0.69,0.51l0.79,-0.67l0.42,0.07l0.53,-0.75l-0.33,-0.56l1.43,-0.16l1.18,-0.54l0.61,0.36l1.21,0.1l1.1,1.39l1.08,0.31l0.38,0.43l2.24,0.35l0.31,1.19l0.93,0.15l0.49,0.77l1.0,-0.0l0.77,-1.07l1.13,0.45l0.38,1.24l1.53,1.97l0.6,1.46l-0.84,3.95l-2.07,2.49l0.7,1.8l0.78,-0.03l0.3,-0.47l-0.59,-0.65l1.22,-0.88l1.63,-2.96l-0.03,-0.57l1.81,0.83l1.15,-0.54l0.96,0.52l1.39,-0.57l0.88,-1.01l2.88,-0.6l2.66,1.15l0.56,1.25l1.55,0.93l0.21,1.53l-0.52,0.16l-1.29,-0.61l-0.43,-0.79l-0.69,0.17l-0.29,0.65l-1.37,-0.9l-1.24,0.23l-0.33,0.39l1.0,1.43l2.43,0.35l1.98,0.83l0.76,0.64l0.58,-0.43l6.3,2.56l0.54,1.01l-0.8,1.13l-6.11,0.17l-0.27,0.43l-3.55,-0.91l-0.51,-0.68l-2.16,-1.05l-0.47,0.09l0.11,0.74l1.8,1.17l-0.87,1.04l0.22,0.54l0.63,0.1l0.57,-0.36l2.53,0.82l-0.13,0.53l-0.68,0.38l0.4,0.61l-1.39,-0.03l-0.63,0.45l0.06,0.61l0.45,0.23l-0.04,0.35l0.66,0.74l-1.13,0.97l0.03,1.86l0.32,0.37l0.54,-0.31l0.36,-1.43l1.24,-1.45l0.61,0.3l0.94,-0.69l-0.48,1.34l0.07,0.44l0.69,0.2l1.1,-1.51l0.31,0.54l0.62,0.17l0.44,-0.38l0.16,-0.85l0.75,0.45l0.75,1.32l-0.52,1.8l0.14,0.99l0.86,0.09l1.06,-1.42l0.76,0.96l0.76,0.34l0.09,0.43l-0.48,2.76l-0.64,0.38l-1.29,-0.1l-0.85,1.01l-0.08,0.71l0.79,0.81l0.97,-0.17l0.63,-0.76l0.88,0.04l0.58,2.19l1.33,1.51l1.1,-0.18l0.32,-0.42l0.04,-1.11l-0.83,-2.81l0.71,-0.81l0.06,-0.55l1.86,2.58l0.66,0.4l-0.56,0.98l0.98,0.87l1.65,-1.92l1.04,-0.67l1.11,1.8l-0.58,0.81l0.39,0.39l1.01,-0.17l0.45,-1.42l-0.54,-1.26l0.93,-1.27l0.7,0.48l0.36,1.04l1.75,1.74l1.38,0.04l0.9,0.88l-1.19,1.0l-0.12,0.48l0.43,0.23l1.29,-0.23l1.3,-1.0l1.02,-0.18l2.85,0.31l0.41,-0.42l-0.27,-0.56l-1.61,-0.38l-0.79,-0.85l-1.13,-0.39l0.55,-0.49l1.65,-0.56l0.47,-0.54l0.83,0.38l0.6,-0.27l0.78,0.21l0.5,-0.41l-0.36,-0.56l1.46,-1.38l0.81,-0.05l1.7,0.61l0.43,-0.3l0.0,-0.65l-0.7,-0.24l-0.07,-0.44l1.79,-0.55l0.71,-1.27l1.02,-0.43l0.51,-0.91l0.4,-0.06l0.8,0.56l0.66,-0.16l0.98,1.09l1.24,-0.18l0.48,0.26l2.88,-2.17l1.62,-0.66l6.9,0.84l-0.86,2.39l0.34,0.6l1.83,0.38l2.8,-0.86l0.35,0.42l0.67,0.03l1.39,0.89l-0.02,0.68l0.38,0.41l-1.7,1.15l-0.16,0.44l0.43,0.53l3.83,-0.52l0.4,1.14l0.81,0.46l-0.08,0.99l-0.45,0.8l0.23,0.56l0.68,0.19l-0.62,1.94l-1.15,0.29l-0.61,0.94l-0.12,0.99l-2.38,1.5l-0.22,0.7l1.13,1.01l0.06,0.7l-0.74,0.86l0.17,0.93l1.8,1.16l0.1,0.54l-0.72,0.82l0.74,1.02l-0.36,0.53l0.43,1.62l-0.33,0.76l-1.04,-0.02l-0.56,0.57l-3.59,0.03l-1.4,0.66l-2.42,2.46l-1.63,-0.24l-1.11,-0.67l-0.68,-0.05l-0.22,-1.01l-0.56,-0.28l-0.45,0.28l-0.09,0.71l-0.43,0.48l-0.82,-0.18l-1.04,-0.65l-1.16,-2.26l-0.11,-1.45l0.42,-1.04l-0.51,-1.31l-0.9,-0.15l-0.82,-0.5l-0.89,-1.16l-0.53,-0.06l-0.57,0.68l0.32,1.3l1.36,1.75l-0.71,4.18l-0.5,0.52l-2.57,0.31l-1.28,0.93l-2.03,0.15l-0.77,-0.44l-0.91,0.47l-0.44,-1.19l0.03,-2.55l-0.49,-0.71l-0.63,0.38l-0.32,1.27l0.34,2.55l-0.53,0.71l-0.65,-0.02l-0.94,-3.83l-0.66,-0.63l-0.53,0.61l0.54,3.14l-0.46,0.77l-2.58,0.37l0.09,-1.23l-0.56,-0.82l-0.08,-0.83l-0.51,-0.24l-0.56,0.5l0.04,1.45l-0.61,1.23l-1.4,-0.97l-0.61,-1.79l-0.72,-0.27l-0.32,0.41l0.07,1.69l0.93,1.46l-1.06,0.13l-0.41,-0.89l-0.68,-0.07l-0.22,0.84l-0.85,0.11l-0.38,-0.69l0.36,-0.58l-0.42,-0.53l-0.88,0.34l-0.4,1.26l-0.87,0.51l-0.26,-1.09l-0.49,-0.31l-0.81,0.91l-0.89,0.1l-0.26,-0.49l-0.7,-0.14l-0.33,0.53l-1.38,-0.34l-0.03,-2.5l0.74,-3.07l0.68,-0.64l-0.28,-0.42l-0.88,-0.1l0.12,-1.14l-0.49,-1.32l-0.43,-0.3l-0.59,0.36l0.09,0.81l-0.57,0.3l-0.69,3.45l-0.18,-1.92l-1.09,-1.3l-0.58,-0.11l-0.18,0.41l0.52,1.38l-0.13,0.8l-0.77,-0.66l-0.59,0.1l0.33,1.26l0.65,0.72l-0.25,1.63l-0.31,0.33l-1.04,0.01l-0.32,0.75l-0.91,-0.11l-0.58,0.47l-1.14,0.13l-0.42,-1.29l-0.5,-0.03l-0.45,0.65l-1.0,-0.68l0.06,-0.86l-1.62,0.41l-0.83,-1.03l0.07,-1.6l-0.41,-0.39l-0.98,0.32l-0.43,0.66l1.62,-2.82l-0.06,-1.44l-0.53,-0.32l-0.68,0.4l-1.44,2.73l-0.63,0.11l-0.39,0.88l-0.56,-0.03l-0.27,0.39l0.02,1.25l-0.45,-0.04l-0.69,-0.52l0.31,-0.55l-0.34,-0.72l-0.89,-0.22l-1.44,-1.47l0.36,-2.51l-0.31,-1.34l-0.84,-1.55l0.0,-0.83l0.9,-0.12l0.26,-0.31l-0.42,-0.95l0.21,-0.77l-0.59,-0.3l-0.96,0.39l-0.97,-1.66l0.42,-2.58l0.6,-0.73l-0.15,-0.58l-0.45,-0.11l0.38,-1.33l1.06,-2.19l0.66,-0.34l0.58,-0.83l-0.38,-0.83l0.34,-1.07l-0.84,-1.92l0.44,-1.44l-0.1,-1.55l-0.43,-0.71l-1.28,-0.76l-0.21,-0.78l-0.45,-0.32l-0.48,-1.12l-0.14,-2.73l-0.53,-0.76l-0.27,-1.33l-0.7,-0.59l-0.62,-1.36l-0.06,-1.36l-0.58,-0.68l-0.69,-0.15l-1.98,1.44l-0.45,-0.4l-0.45,0.11l-0.65,1.31l-1.32,0.09l-0.78,-0.57l-2.24,0.12l-0.43,-1.01l-0.43,-0.02l-0.41,-0.61l-2.91,-1.03l-0.33,-0.64l-0.99,0.32l-1.26,-0.4l-0.71,-0.86l-0.49,-1.5l1.28,0.15l0.56,-0.27l1.17,-2.1l-0.46,-0.51l-1.06,1.03l-0.91,0.17l-0.01,-0.56l-0.86,-0.18l-0.62,-1.38l-0.77,-0.19l-0.41,-1.23l-1.13,-0.56l-1.03,0.14l-0.19,-0.33ZM451.64,232.47l0.2,0.49l-0.18,-0.03l-0.02,-0.46ZM519.52,222.67l0.67,0.01l0.3,-0.74l1.12,-1.04l0.93,0.21l0.91,1.92l0.6,0.41l-2.49,1.36l-0.4,0.49l-1.28,-0.76l0.02,-1.18l-0.38,-0.68ZM455.43,199.69l0.61,-0.68l1.56,0.5l-0.2,0.22l-1.97,-0.04ZM431.2,193.09l-1.37,1.01l-1.29,-0.29l0.02,-0.49l1.44,-0.32l0.43,-0.6l0.46,0.03l0.32,0.66ZM521.01,346.84l0.26,0.12l-0.6,-0.0l-0.32,0.78l-0.2,-0.77l0.85,-0.13ZM521.4,347.02l0.93,0.01l0.12,0.67l-0.68,-0.07l-0.37,-0.61ZM519.42,369.27l0.08,-0.17l0.17,0.21l-0.24,-0.04ZM514.49,412.03l0.0,-0.0l0.0,0.0l-0.0,-0.0ZM514.67,412.23l0.25,0.63l0.65,0.04l0.46,0.43l0.54,-0.1l-0.22,0.67l-1.73,-1.07l0.07,-0.61ZM505.16,417.47l-0.03,-0.82l2.73,1.32l0.45,-0.06l0.16,0.55l2.41,1.63l0.11,1.35l-0.63,0.61l-0.0,0.58l-1.02,0.94l-1.01,-0.16l0.22,-0.72l-0.29,-1.85l-0.69,-1.45l-1.07,-0.84l-0.77,-0.06l-0.57,-1.01ZM512.09,423.78l0.53,0.2l-0.02,0.3l-0.57,0.11l-0.35,0.62l-0.41,-0.06l-0.04,-0.46l0.86,-0.71ZM512.96,424.68l0.64,-0.22l1.49,-0.08l-0.08,0.85l-0.44,0.51l-0.87,-0.66l-0.86,0.02l0.12,-0.43ZM512.86,421.59l0.72,-0.05l-0.36,0.47l-0.37,-0.42ZM512.54,339.29l0.85,-0.28l0.88,0.7l-0.13,0.13l-1.6,-0.55ZM509.23,194.49l0.2,-0.25l0.21,-0.1l-0.34,0.37l-0.08,-0.02ZM505.41,340.75l-0.75,-0.57l0.04,-0.62l1.46,0.3l-0.75,0.43l-0.0,0.46ZM499.85,419.2l0.52,0.39l0.5,-0.13l0.35,0.5l-0.05,0.68l1.48,2.0l1.39,3.84l-0.75,1.32l-0.63,-0.38l-0.43,-1.69l-1.54,-0.95l-0.49,-0.74l-0.75,-3.59l0.0,-0.77l0.39,-0.49ZM493.31,188.08l0.28,0.32l-0.08,0.36l-0.23,-0.13l0.04,-0.54ZM483.52,380.65l0.67,-0.83l0.13,-0.81l-0.21,-0.83l-0.81,-0.49l-0.21,-0.47l0.58,-0.94l0.02,-1.25l1.29,-2.23l1.7,1.75l-0.11,2.22l0.6,2.9l-0.21,2.26l-1.11,2.16l-1.73,-1.43l-0.61,-2.01ZM484.26,162.01l0.42,-0.54l1.29,0.04l0.41,1.15l0.59,0.47l-1.04,0.74l-0.12,-1.24l-0.73,-0.56l-0.81,-0.06ZM479.18,334.69l0.76,0.01l0.72,-0.57l1.82,0.89l1.27,-0.58l0.97,2.02l-1.78,0.37l-1.64,-0.88l-0.73,0.52l-0.98,-0.67l-0.41,-1.12ZM427.77,94.98l0.27,-1.04l1.22,0.23l1.58,2.02l1.66,0.75l2.27,0.53l1.49,-0.22l1.8,1.72l0.71,-0.12l-0.07,-1.04l-1.53,-2.32l1.04,-1.26l2.04,-0.47l0.28,-0.54l-0.32,-0.43l-1.53,-0.55l-0.51,-0.62l-0.49,0.02l-0.67,1.12l-1.16,1.05l-1.73,0.26l-0.95,-1.25l1.76,-0.53l0.36,-0.72l-0.13,-0.61l-0.59,-0.16l-0.52,0.52l-0.38,-0.02l-0.17,-0.43l-0.59,-0.06l-1.26,1.09l-1.42,-1.64l-0.89,-0.42l0.39,-1.21l0.99,0.11l0.05,-1.01l0.58,-0.25l1.6,0.63l1.03,0.79l0.57,-0.4l-0.16,-1.39l-0.97,-0.57l-0.46,-1.38l-1.04,-0.82l0.5,-0.41l0.24,-0.89l-0.35,-0.92l2.83,0.12l1.34,-0.35l1.75,1.38l1.46,-0.18l1.09,0.47l0.43,0.81l0.49,0.02l0.68,-0.57l-0.98,-1.99l-1.81,-0.95l-0.65,0.14l-0.37,-0.98l0.08,-0.59l2.29,-0.25l0.33,-0.54l-0.22,-0.59l-0.79,-0.19l-0.09,-0.47l-0.43,-0.24l-0.89,0.57l-0.53,-0.18l-1.14,-0.9l0.69,-0.71l-0.44,-0.87l-1.26,0.54l-1.23,-0.4l0.12,-0.39l1.22,-0.53l0.4,-0.53l-0.3,-0.6l-1.05,-0.2l0.81,-1.06l0.41,-1.84l1.29,-1.0l1.27,1.08l-0.15,1.11l0.69,0.56l0.53,-0.28l0.4,-0.76l1.71,-0.79l-0.15,-1.22l-1.04,-0.57l1.28,-0.11l1.29,0.95l1.89,-0.69l0.35,-0.73l0.17,-1.89l-0.74,-1.46l-1.56,-0.33l-1.47,0.36l-0.94,-0.39l-0.74,-0.85l0.69,-1.58l0.01,-0.89l1.83,0.73l0.57,1.15l0.83,-0.76l-0.19,-1.48l0.65,0.25l4.27,3.47l1.67,2.64l0.03,1.58l-0.54,0.38l0.08,0.45l1.58,2.67l0.05,1.18l1.5,3.26l0.33,2.1l1.72,1.38l0.43,1.3l-0.69,1.44l0.13,1.03l3.34,0.83l1.0,2.0l0.82,-0.11l-0.26,-1.63l1.61,-0.09l1.03,1.58l-0.84,1.74l0.33,0.58l0.36,-0.03l-0.07,1.31l-0.63,0.9l0.51,2.05l0.66,1.22l2.62,2.67l0.66,-0.16l0.3,-0.53l0.72,0.66l0.52,-0.32l0.36,0.98l0.48,0.39l1.0,-0.56l1.79,0.15l0.33,1.45l0.75,1.34l-0.86,0.65l-0.4,1.26l-0.74,0.59l-0.15,0.63l0.41,0.46l0.79,-0.18l1.22,-1.54l-0.58,6.24l-1.43,2.18l-0.05,0.94l0.36,0.77l0.79,0.39l0.5,-0.31l0.55,-1.76l0.49,-0.46l0.36,0.13l0.08,1.12l0.63,0.08l0.72,-0.98l-0.53,-1.25l0.22,-0.34l1.53,-0.13l1.13,1.76l-0.41,1.03l0.43,1.1l-0.44,0.91l0.63,0.75l0.63,-0.04l0.77,-2.0l0.25,-2.81l1.45,4.01l2.55,4.05l-0.0,0.59l-1.1,0.7l-0.56,1.1l-0.88,0.74l-4.99,2.97l-0.41,2.41l-0.29,0.19l-0.82,-2.36l-0.31,-0.23l-0.51,0.23l-0.12,2.12l0.35,1.83l-0.38,1.01l-1.35,1.8l-1.23,3.93l-0.88,-1.19l-0.62,-3.1l-0.01,-3.36l0.86,-1.09l0.2,-2.51l-0.74,-0.07l-0.73,1.99l-1.25,0.49l-0.29,1.37l0.01,3.91l0.52,2.92l-0.6,0.11l-0.47,0.64l0.43,0.7l0.56,-0.32l0.79,0.09l0.54,1.32l0.01,0.98l-0.55,1.68l-0.53,0.24l-1.61,-3.56l-1.26,-0.29l-0.63,0.4l0.24,1.93l1.14,3.26l-1.23,6.18l-0.61,-0.32l-1.0,-1.97l-0.59,-2.02l-2.34,-4.18l-0.79,-2.67l-0.53,-0.43l-0.56,0.18l-0.33,0.62l0.12,2.33l0.44,1.87l1.02,1.16l1.11,3.98l-1.18,-0.05l-0.09,-0.94l-1.2,-1.69l-1.01,-0.29l-1.17,0.31l-1.2,-0.15l-0.27,0.75l0.37,0.58l1.69,0.52l-0.14,0.89l0.49,1.36l-0.15,0.61l-1.23,-0.2l-1.35,0.21l-1.56,-0.79l-2.05,-0.4l-1.24,-1.3l-0.48,-0.07l-0.78,0.58l-0.64,-1.58l0.37,-0.7l-0.22,-0.44l-0.47,-0.21l-0.89,0.54l-0.63,-0.45l-0.1,-0.8l-1.3,-1.2l-0.38,-1.65l0.28,-0.21l1.46,0.33l0.74,-0.73l2.95,-0.62l0.86,0.49l0.55,-0.29l0.05,-1.03l-0.43,-0.4l-0.49,0.13l-4.38,-1.38l-0.81,-0.7l-0.67,0.1l-0.6,0.73l-1.14,0.23l-0.67,-1.1l0.51,-0.55l-0.11,-0.64l-0.97,-0.04l-1.04,-1.94l0.67,-0.03l2.14,1.28l0.87,-0.29l0.09,-1.05l-2.64,-2.05l-1.57,0.05l-0.31,-1.14l-1.48,-2.49l1.63,-1.14l1.69,-0.35l1.33,-2.87l2.16,0.72l0.8,-0.47l2.17,0.38l2.04,-0.23l2.53,-0.78l4.18,-0.63l1.03,-0.73l0.06,-0.6l-0.62,-0.54l-3.01,0.21l-1.66,0.56l-3.52,0.53l-2.43,-1.02l0.26,-0.96l3.07,0.27l1.37,-0.86l2.42,-0.48l0.39,-0.39l-0.05,-1.33l-0.59,-0.13l-2.79,0.77l-0.44,0.49l-3.09,-0.65l1.69,-1.4l-0.35,-0.85l-1.91,-0.0l-1.26,0.94l-0.56,-1.7l-0.52,-0.28l-0.54,0.36l-0.09,0.64l-0.81,0.08l-0.89,2.24l-0.39,-0.2l-0.46,0.22l0.02,1.27l-1.24,1.27l-0.63,-0.47l0.05,-0.83l1.68,-1.95l-0.44,-0.41l-1.11,0.12l-1.74,-0.96l-0.65,0.26l-0.05,1.36l0.28,0.17l-0.39,0.47l-2.34,1.55l-0.47,-0.19l0.35,-1.57l-0.51,-0.45l-0.28,-1.3l-0.7,0.05l-0.3,0.43l-1.03,-0.62l0.5,-0.81l-0.32,-0.72l0.18,-1.43l4.91,-1.61l2.03,-2.07l0.3,-2.61l-0.32,-0.52l-0.56,0.01l-0.34,0.87l-0.87,0.4l-0.19,0.68l-0.74,0.75l-1.95,0.74l-2.78,-0.29l-1.1,-2.17l-0.49,-0.32l-0.01,-1.33l-0.75,-1.13l0.17,-0.75l0.45,-0.45l0.71,-0.08l0.23,-0.63l-0.53,-0.83l-1.52,-0.59l-0.23,-1.34l1.14,-0.5l0.25,-0.41l-0.33,-0.35l-1.22,-0.01l-0.27,-0.93ZM443.8,113.87l0.28,0.85l-0.7,0.52l0.38,-0.96l0.04,-0.42ZM461.48,146.36l0.13,0.3l0.04,0.32l-0.12,-0.23l-0.04,-0.39ZM467.94,95.1l-0.47,-0.95l0.29,-0.52l-0.28,-0.92l-1.08,-0.44l-0.75,-1.59l0.06,-2.29l0.7,-1.35l3.12,0.6l0.09,0.38l0.55,5.34l-0.36,0.49l-1.5,0.62l-0.38,0.64ZM428.65,100.85l-0.38,0.08l-0.0,-0.39l0.24,-0.06l0.14,0.37ZM467.95,144.5l0.1,-1.31l0.38,-0.62l-0.14,0.96l-0.34,0.97ZM468.78,140.89l0.02,-0.58l0.13,-0.05l0.0,0.05l-0.16,0.58ZM453.23,161.28l0.5,-0.07l0.77,-0.83l2.87,0.68l2.74,3.45l0.26,0.55l0.03,2.25l0.38,0.77l-0.72,1.38l-1.41,1.41l-1.23,0.17l-0.11,-0.75l-2.86,-1.81l-0.9,-1.33l-0.47,-0.99l0.15,-4.88ZM459.14,188.77l-0.7,-0.78l-2.16,-5.38l0.28,-0.78l1.01,-0.69l1.58,-0.38l1.42,1.91l0.07,0.95l-0.73,0.85l-0.28,1.43l0.25,1.75l0.62,0.81l-0.54,-0.39l-0.59,0.06l-0.23,0.64ZM457.58,356.16l0.14,0.07l-0.06,0.19l-0.08,-0.25l-0.0,-0.01ZM455.83,351.11l0.05,-0.55l0.96,-0.9l0.46,0.74l0.43,-0.01l-1.07,2.13l-0.1,-0.72l-0.73,-0.7ZM421.83,269.74l0.48,-0.7l-0.15,-1.2l0.22,-0.51l0.89,-0.23l-0.3,-1.11l0.12,-2.99l-0.26,-0.6l0.3,-1.27l-0.42,-1.81l0.32,-0.7l-0.08,-1.33l0.69,-0.26l0.16,-0.47l-0.96,-1.52l0.29,-1.54l1.24,-0.77l0.17,0.34l0.72,-0.1l1.47,2.21l1.38,0.57l1.36,-0.07l0.32,-0.59l-0.37,-0.69l-1.14,-0.38l-1.36,-2.16l0.98,-0.76l-0.17,-0.53l-0.59,-0.51l-0.85,0.35l-0.54,-0.66l-0.12,-0.73l0.47,-1.74l2.55,-0.98l0.77,-0.82l1.73,0.05l0.55,-0.74l2.57,-0.04l0.41,1.09l0.68,0.41l0.56,-0.37l0.06,-1.69l2.47,-0.16l1.5,0.85l1.37,0.29l0.39,1.11l0.71,-0.28l1.18,0.83l0.76,1.32l-0.39,0.98l0.42,0.52l1.3,-0.14l0.39,-0.31l0.08,-0.66l1.43,-0.69l0.46,0.18l1.18,-0.33l3.56,0.65l4.04,2.08l0.38,-0.17l0.33,0.23l-0.07,0.27l-0.72,0.01l-0.29,0.45l-0.0,1.59l-2.62,5.22l-1.34,0.04l0.33,1.6l-1.65,3.1l-0.55,1.82l-1.86,0.4l-0.55,0.4l0.19,0.66l1.32,0.34l-3.2,7.7l-1.06,1.11l-0.52,1.08l-1.63,0.64l-5.37,-1.84l-0.78,-0.76l-0.72,0.49l-1.32,0.19l-3.56,0.14l-0.95,-0.24l-0.56,0.5l-0.05,1.51l0.48,0.21l0.64,-0.4l1.16,0.6l1.13,-0.0l-0.14,1.38l1.23,1.05l0.93,2.98l-0.58,0.61l-0.52,1.41l-1.34,0.93l-1.65,3.59l-0.43,1.79l-0.69,0.16l-0.4,0.84l-0.42,-0.29l-2.74,0.09l-2.11,0.69l-0.62,-0.41l0.13,-0.97l0.67,-0.66l0.02,-0.57l1.89,-0.52l0.29,-0.35l-0.84,-0.59l-1.68,0.45l-0.24,-0.64l0.46,-3.7l-0.36,-1.51l0.5,-0.08l0.15,-1.05l-0.45,-1.57l-0.64,-0.36l0.07,-1.37l-0.3,-0.76l-0.77,-1.19l-0.61,-0.21l0.04,-0.31l0.43,-0.08l0.02,-0.5l-0.22,-1.02l-0.66,-0.35l0.45,-2.58l-0.49,-1.85ZM431.01,292.59l0.04,-0.02l0.01,0.07l-0.05,-0.05ZM454.76,352.74l-0.33,-0.41l0.26,-1.19l0.62,1.43l-0.04,0.91l-0.26,0.07l-0.25,-0.82ZM453.11,471.02l0.19,0.06l0.17,0.16l-0.28,-0.02l-0.08,-0.2ZM447.02,341.38l0.79,-0.49l0.19,0.79l-0.27,0.56l-0.72,-0.86ZM446.66,468.82l0.04,0.02l-0.03,0.04l-0.0,-0.0l-0.01,-0.06ZM446.04,340.0l0.11,-0.11l0.26,-0.0l-0.36,0.11ZM425.5,160.21l0.49,-2.25l1.81,-1.24l1.48,-0.31l0.54,-0.62l0.02,1.13l0.51,0.52l1.76,-0.4l0.66,-0.74l2.7,0.52l0.3,0.41l1.57,-0.09l0.37,0.57l1.03,0.19l0.47,-0.77l0.65,-0.21l1.66,1.12l0.5,1.38l-1.11,0.32l-0.29,0.39l-0.09,1.16l-0.63,1.11l-0.21,2.13l-1.31,-0.35l-0.34,0.35l-0.52,-0.45l-0.63,0.21l-1.22,-0.71l-8.83,-0.54l-1.35,-2.81ZM419.43,222.82l0.2,-1.65l0.75,-1.77l0.4,0.08l0.22,-0.29l-0.03,-0.66l2.31,-0.56l0.07,-0.68l0.55,-0.3l0.08,-0.54l-0.75,-0.37l0.27,-0.52l0.23,0.14l0.84,-0.46l0.24,-0.64l0.7,-0.46l-0.08,-0.71l-0.69,-0.49l0.23,-0.91l1.79,-1.27l0.28,0.25l0.54,-0.2l0.25,-0.76l0.83,0.15l1.57,-1.09l2.61,0.99l2.17,3.93l1.14,1.59l0.64,0.37l0.05,0.47l-0.45,-0.01l-0.44,0.54l1.78,1.21l-0.53,1.41l0.6,1.82l-0.25,0.98l-0.86,0.8l0.17,0.58l0.6,0.02l0.4,1.35l-0.24,4.58l-0.78,0.52l0.6,0.57l-0.13,0.64l-0.56,0.6l-3.39,0.25l-0.81,-0.49l-1.09,0.57l-1.25,-0.11l-0.52,-1.16l-1.47,-0.02l0.15,-1.12l-1.59,-1.93l-2.06,-0.33l-0.25,-0.62l-0.56,-0.15l-0.37,0.45l0.06,-0.28l-1.44,-1.78l0.6,-0.63l-0.38,-0.86l0.3,-0.92l-0.31,-0.32l-0.73,0.08l-0.28,0.41l-0.55,2.09l-0.32,-0.23l0.55,-1.11l-0.12,-0.78l-1.46,-0.23ZM423.67,213.82l-0.12,-0.05l0.05,-0.1l0.03,0.01l0.04,0.14ZM433.58,79.03l2.22,0.14l0.49,1.16l-0.62,0.41l-1.02,-0.43l-0.89,-0.87l-1.79,-0.23l1.6,-0.17ZM416.34,136.36l0.3,-0.35l1.26,0.04l0.49,-0.68l-0.1,-0.97l-0.82,-0.91l-0.38,-1.02l0.11,-2.87l0.9,-0.83l3.13,0.78l0.51,0.65l1.75,1.11l0.41,0.91l0.93,0.51l0.7,-0.02l0.95,1.65l0.71,0.19l-0.63,1.81l0.15,0.41l1.8,1.36l0.6,-0.03l0.79,-0.78l0.94,0.36l2.76,3.08l-0.08,1.03l-2.91,2.52l0.37,0.9l1.07,0.6l0.11,0.78l0.87,1.3l-0.07,0.95l-0.9,2.19l-1.57,-0.19l-0.44,0.55l-1.95,1.05l-2.63,0.71l-0.06,-0.7l-0.92,-0.34l-0.69,0.61l-0.65,0.08l-0.05,1.0l-0.78,0.91l-0.66,-0.34l-0.0,-1.2l0.75,-1.23l-0.18,-0.48l-1.67,-0.96l-0.47,-0.94l-1.21,-0.97l0.27,-0.99l3.77,0.54l0.55,-0.78l-0.01,-1.08l-2.74,-2.31l-0.91,0.02l-0.92,-0.39l-0.2,-1.24l-1.04,-0.99l0.29,-0.59l-0.28,-0.89l0.23,-0.89l-0.93,-0.57l-0.56,-0.87l-0.07,-1.19ZM432.67,201.01l0.19,2.46l0.62,2.14l-1.67,0.27l-0.48,-0.62l-0.05,-2.39l-0.41,-1.08l1.79,-0.78ZM430.12,501.31l0.96,-0.01l0.44,0.57l-0.36,0.42l-0.49,-0.85l-0.56,-0.13ZM423.39,233.69l0.63,-0.4l0.07,-0.68l0.56,-0.1l0.61,0.53l0.83,1.95l-0.18,0.21l-2.0,-0.89l-0.51,-0.62ZM417.6,212.21l-0.01,-0.76l1.61,-1.09l0.76,-0.04l-0.24,0.78l0.18,1.15l-1.18,0.75l0.15,0.81l-0.6,0.23l-0.36,-0.28l-0.31,-1.56ZM421.46,209.34l0.11,-1.05l1.96,1.73l-0.02,0.39l-0.55,0.26l-0.77,1.3l-0.81,-1.09l0.37,-1.08l-0.28,-0.46ZM421.74,297.82l0.27,-0.12l0.0,0.05l-0.27,0.08ZM422.35,296.54l-0.3,-0.28l0.46,-0.16l-0.15,0.44ZM389.32,351.88l0.51,0.4l1.44,0.15l1.01,-0.75l1.02,0.07l0.81,-0.73l0.32,-1.55l0.58,0.4l0.61,-0.56l0.91,-0.16l0.14,-1.27l-1.28,-2.05l0.07,-0.19l0.61,0.31l0.66,-0.29l-0.03,-0.64l-1.01,-0.85l0.13,-0.8l0.88,0.34l0.57,1.52l1.06,0.88l0.08,0.65l0.59,0.28l0.66,-0.31l0.18,-0.77l-2.25,-3.41l0.79,-2.88l0.5,-0.74l0.8,-0.26l0.81,-1.47l0.31,-0.08l1.31,0.89l0.27,1.08l1.42,0.84l0.46,1.11l-0.54,0.13l-0.38,0.69l0.66,1.71l0.24,0.2l0.6,-0.23l0.58,-1.54l0.87,2.19l1.32,1.95l0.85,0.26l0.47,0.8l1.2,0.59l2.15,2.52l0.23,0.86l-0.68,1.93l-0.02,2.57l0.77,0.85l0.75,-0.36l-0.16,-1.17l0.38,-2.07l0.53,2.02l-0.4,1.12l0.81,1.59l0.1,2.03l0.36,0.29l0.71,-0.21l0.18,0.86l0.49,0.36l0.8,-0.15l1.41,-1.22l0.64,0.63l-0.43,0.92l-1.47,1.44l-0.42,-0.7l-0.44,-0.09l-1.61,0.33l-0.77,2.34l-0.47,-0.21l-0.57,0.2l-2.45,2.86l-1.47,0.43l-2.91,-1.81l-1.27,-1.48l-0.32,-0.06l-0.46,0.51l0.24,0.89l-0.23,0.15l-1.46,-0.8l-0.66,0.12l-2.02,-2.6l-2.0,-1.12l-0.64,0.25l-0.51,-0.54l-0.37,-0.76l0.39,-1.34l-1.03,-1.12l-0.32,-0.11l-0.64,0.41l0.01,1.38l-0.33,0.51l-0.47,-0.99l-0.44,-0.24l-0.6,0.16l-0.84,-0.83l0.57,-1.76l-1.34,-1.01l-0.45,0.01l-0.37,0.63l-0.84,0.05l0.3,1.29l-0.62,0.2l-1.39,-1.1l-0.1,-1.13l-0.77,-1.73l1.01,-1.65l0.72,0.14l0.43,-0.42ZM414.79,346.68l0.44,-0.57l0.05,-0.57l0.3,-1.06l1.01,-0.52l0.15,0.42l0.6,0.06l1.43,1.8l-0.36,2.41l-0.8,1.03l-0.84,0.08l0.04,-0.75l0.51,-0.5l0.04,-2.23l-0.18,-0.91l-0.59,-0.67l-0.75,-0.06l-0.43,0.52l0.26,1.87l-0.55,1.17l-0.32,-1.5ZM415.07,348.28l-0.2,0.62l0.01,0.28l-0.08,-0.53l0.28,-0.37ZM411.44,98.32l0.33,-1.33l-0.06,-1.8l0.73,-1.46l1.24,-1.13l0.58,0.21l0.71,0.96l1.52,-0.38l0.76,1.21l0.4,2.99l-0.44,1.72l0.3,3.01l-0.67,1.82l-1.8,-1.46l0.27,-2.18l-1.22,-1.67l-2.43,0.15l-0.23,-0.65ZM374.78,271.19l0.15,-1.85l1.27,-1.98l0.55,-1.94l0.48,-0.66l2.36,-0.71l1.55,1.82l-0.34,0.83l0.39,1.03l0.68,0.99l0.56,0.12l0.22,1.9l0.49,0.66l-0.18,0.65l0.47,0.74l1.29,0.49l0.49,0.52l1.58,0.06l0.68,-0.72l0.01,-0.4l1.14,-0.03l1.2,0.51l1.05,-1.22l0.12,-1.68l1.82,-0.35l0.03,-0.82l0.38,-0.53l-0.5,-1.09l0.18,-0.82l-0.41,-0.96l0.14,-0.49l-0.57,-0.66l0.24,-0.76l-0.97,-0.3l-0.87,0.71l-0.41,-0.77l0.78,-0.72l0.06,-0.81l0.52,-0.73l0.47,0.0l0.27,0.73l1.42,1.47l1.64,-0.08l0.32,-0.32l-0.07,-0.62l-1.04,-0.25l-0.62,-0.65l-1.19,-2.97l-0.71,-0.9l-0.08,-0.74l-0.83,-1.12l0.58,-2.35l-1.21,-1.14l-0.87,0.1l0.29,-0.74l-0.33,-0.49l-0.85,-0.27l0.61,-2.28l0.62,-0.18l0.9,0.24l0.62,-0.74l1.09,0.32l1.89,1.7l0.23,0.85l0.69,0.01l0.58,-1.72l0.83,-0.9l0.31,0.43l1.15,0.47l1.58,2.23l-0.29,0.59l0.71,0.75l0.58,-0.42l0.18,-0.95l1.36,-0.09l0.52,0.63l0.91,-0.84l3.77,-0.59l1.14,-0.84l0.26,-0.54l0.62,0.59l1.21,-0.69l0.81,0.75l1.16,0.18l1.5,2.73l-0.26,1.97l-1.21,0.85l-0.35,0.67l-1.17,-0.78l-0.51,0.4l0.01,0.85l-0.96,-0.32l-0.62,1.66l0.6,1.01l1.15,-0.71l0.5,0.55l0.9,-0.05l-0.5,0.73l0.51,0.57l-0.16,0.49l-0.57,-0.08l-3.06,1.19l-3.76,4.71l-2.05,1.75l0.35,0.67l-0.23,2.58l0.36,0.6l0.59,-0.24l0.22,-0.91l0.95,-1.48l1.76,-1.18l1.87,0.33l2.34,1.76l-0.22,1.33l-0.72,0.08l-0.36,0.52l0.31,0.42l1.02,0.38l0.34,1.35l0.49,0.18l0.18,0.67l-1.14,1.5l-0.13,1.04l0.33,0.62l1.04,-0.04l1.12,-1.36l1.35,-0.67l0.38,-0.02l0.74,1.45l0.17,1.66l-0.21,0.46l0.63,1.16l0.09,1.39l-0.44,0.09l-0.52,0.87l-1.34,0.98l-1.3,-0.26l-0.36,0.62l1.76,1.4l0.5,2.45l-0.19,1.19l-2.27,0.61l-0.18,0.67l1.48,0.8l0.92,-0.26l-0.21,0.9l-0.63,-0.1l-1.17,1.13l0.45,0.76l1.41,-0.51l-0.71,1.85l-0.1,-0.74l-0.63,-0.17l-0.83,0.85l-1.07,0.25l-1.03,2.19l-0.76,0.59l-1.69,0.9l-1.31,-0.13l-0.61,-0.66l-1.31,-0.44l-1.27,0.17l-0.48,-0.37l-0.54,-1.24l1.3,-3.44l-0.79,-0.72l-0.29,0.11l-0.16,0.76l-1.24,1.51l-0.62,1.81l0.09,0.41l0.55,0.21l0.08,1.18l1.9,2.92l-1.02,1.91l-2.48,2.43l-0.91,-0.15l-0.38,0.34l-1.19,-2.37l-0.67,-0.1l-1.09,0.67l-0.7,-3.87l0.18,-1.2l-1.18,-0.97l-0.52,-3.21l-0.82,-1.07l-0.16,-1.16l-1.32,-0.51l-0.32,-0.47l-1.7,-3.7l0.07,-1.02l-0.42,-0.23l-0.03,-0.65l-0.85,-1.42l-1.04,-0.68l-0.87,-0.1l-0.5,0.37l0.07,-1.82l-1.28,-1.57l-0.91,0.21l-0.89,0.94l-0.86,-0.95l-1.09,-0.07l-0.38,-0.95l0.82,-0.69l-0.35,-0.7l-0.46,-0.11l0.0,-1.42l-1.24,-1.46l-1.58,-1.23l-1.76,-3.24ZM390.55,268.8l-0.03,-0.05l0.05,-0.05l0.03,0.02l-0.05,0.08ZM391.26,258.16l-0.13,1.15l-2.76,1.04l-0.5,-0.37l-0.53,-1.17l-1.27,-0.83l-0.04,-0.89l-0.77,-0.56l-0.6,-1.14l0.9,-1.31l1.09,-0.01l0.35,-0.89l1.65,0.33l1.12,3.12l0.65,0.37l0.36,0.93l0.47,0.23ZM395.86,246.94l-1.15,1.05l-0.61,-0.19l-0.16,-0.44l0.27,-0.56l0.84,-0.53l1.19,0.17l-0.38,0.51ZM383.77,205.23l0.5,0.09l0.47,-0.44l-0.1,-1.22l0.74,-0.18l0.18,-0.7l1.21,0.25l1.04,0.8l0.89,-0.46l-1.01,-1.33l0.62,-0.42l0.02,-0.79l-0.44,-0.25l-0.96,0.16l0.59,-1.18l2.2,-0.44l0.19,0.67l1.47,1.59l0.06,1.16l1.11,0.73l0.42,-0.02l0.74,-0.76l1.12,-0.16l0.51,-0.52l0.08,-0.45l-0.4,-0.23l-2.14,0.59l-0.0,-1.51l-0.29,-0.43l-0.65,-0.12l-0.09,-1.13l1.71,-1.64l0.21,-0.41l-0.29,-0.55l-2.37,0.42l-0.43,-0.71l-0.17,-1.33l0.32,-0.87l0.79,-1.06l1.24,-0.51l1.04,-0.92l0.09,-0.48l-0.44,-0.21l-2.22,0.5l-0.43,-0.28l-1.14,0.02l0.38,-0.39l0.29,-1.99l0.64,-0.46l-0.4,-0.93l1.17,-0.93l1.9,0.7l0.46,0.6l1.07,1.88l-0.53,2.31l1.53,1.03l0.93,1.78l-0.66,0.57l-0.02,0.46l2.18,1.08l1.1,2.81l-0.34,0.81l0.87,0.32l0.08,0.68l0.35,0.29l0.91,-0.75l2.34,-1.06l0.37,-0.86l-0.68,-0.41l-1.87,0.53l0.14,-0.38l-1.03,-1.91l-0.27,-1.66l0.3,-0.33l2.01,1.03l1.72,-0.63l0.33,-0.78l-0.43,-0.19l-1.45,0.33l-1.45,-1.62l-1.17,0.14l-1.42,-1.07l0.11,-0.5l3.22,0.42l0.33,-0.21l-0.05,-0.7l-0.36,-0.16l0.13,-0.62l-0.82,-0.32l-0.61,-1.44l-0.45,0.17l-0.51,-0.44l-1.8,-0.04l-1.23,-2.57l1.37,-0.44l0.53,-1.09l2.08,-1.34l2.12,1.16l0.39,0.02l0.59,-0.55l0.16,0.01l-0.2,0.83l0.76,0.32l1.32,2.38l-0.15,1.12l0.46,0.94l0.63,0.43l0.54,-0.33l-0.22,-0.93l0.86,0.61l0.69,-0.38l-0.07,-1.17l-0.76,-1.67l0.23,-1.16l0.36,-0.21l0.41,0.93l0.62,0.04l0.27,-0.55l0.75,-0.03l0.34,-0.33l0.26,1.46l1.67,1.11l1.4,0.51l0.5,0.54l-0.07,1.37l-0.88,2.32l0.33,1.55l0.98,1.91l-0.05,1.08l-1.22,3.87l0.26,2.81l-0.65,1.32l-1.67,1.18l0.25,0.77l2.72,1.22l0.11,0.51l-0.58,3.27l-1.37,-1.71l-2.28,2.1l-0.15,1.14l1.02,0.43l-1.01,0.13l-0.97,2.26l0.38,1.16l1.4,0.73l0.43,0.59l-0.34,0.65l0.12,0.42l0.54,0.28l0.41,0.74l-0.73,0.28l-0.94,-1.01l0.01,-1.37l-0.71,-0.43l-0.87,1.75l0.3,0.88l0.67,0.69l-0.02,1.48l-4.23,0.38l0.0,-0.4l-0.46,-0.22l-0.03,-0.96l-0.5,-0.29l-0.71,0.3l-0.14,1.04l-1.93,0.15l0.86,-2.32l-0.15,-0.74l-0.84,0.16l-1.17,1.92l-0.24,1.09l-4.37,-1.23l-0.14,-0.34l0.29,-2.82l-0.76,-1.01l0.47,-0.31l2.3,0.38l0.55,-0.3l0.08,-0.47l-1.72,-0.92l0.36,-0.69l-0.45,-0.55l-1.4,0.3l-0.45,-0.63l1.35,-0.74l0.01,-0.51l-0.56,-0.86l3.07,-0.16l0.54,-0.85l-0.09,-0.7l-0.56,-0.21l1.3,-0.09l0.3,-0.63l-0.2,-0.21l0.89,-0.23l0.48,-0.64l-0.75,-0.88l4.91,-0.17l0.58,-0.46l-0.25,-0.89l-3.61,0.21l-0.41,-0.32l-5.51,0.71l-0.52,-0.2l-3.1,0.47l-1.04,0.48l-1.31,-0.58l-3.7,0.92l-0.9,-0.24l-1.18,0.17l-1.18,0.6l-0.43,-0.81l0.21,-0.63l-0.24,-0.45ZM414.36,266.83l0.45,0.33l0.47,-0.16l0.16,1.43l-0.9,1.89l-1.18,0.2l-0.67,-1.27l-0.07,-2.15l0.62,-1.15l1.01,-0.67l0.38,0.38l-0.27,1.17ZM414.02,274.95l-0.9,-0.23l-0.15,-0.37l0.49,-0.5l0.1,-0.82l0.81,-0.84l-0.26,0.71l0.39,1.28l-0.49,0.75ZM411.43,235.03l-0.36,-0.31l0.19,-0.46l0.86,-0.66l0.9,-1.59l0.33,0.01l0.4,0.46l-0.71,1.5l-0.64,0.12l-0.97,0.93ZM410.06,345.07l1.51,0.05l0.61,0.71l0.95,-0.39l0.17,1.41l-0.45,1.89l-0.93,-1.78l-1.28,-0.8l-0.58,-1.09ZM382.97,135.74l-0.59,-2.3l0.01,-1.42l0.39,-0.64l0.86,-0.74l0.61,0.01l2.71,2.01l1.67,0.22l0.66,0.66l0.55,0.07l0.67,-0.79l0.05,-1.1l0.58,-0.39l0.01,-1.18l-0.45,-0.41l-2.55,-0.27l0.4,-0.4l2.02,0.24l0.44,-0.45l-0.09,-0.73l0.84,-0.11l0.34,-0.94l-0.42,-1.23l-0.52,-0.32l-0.83,0.28l-0.01,-0.67l-0.5,-0.27l-0.61,-0.22l-0.47,0.23l-0.37,0.97l-0.54,-0.55l2.05,-1.88l0.29,-0.74l-0.83,-1.4l-0.08,-1.1l-0.98,-0.62l-1.67,0.95l-1.01,2.32l-1.24,1.23l-0.45,0.0l0.1,-0.62l0.88,-1.09l1.46,-2.92l-0.0,-0.8l-1.31,-1.09l-2.53,0.6l-0.45,-0.29l0.45,-3.63l0.53,-1.4l0.88,-1.2l-0.07,-0.85l1.1,0.94l6.94,-0.52l1.44,1.75l0.65,0.01l0.49,0.41l0.69,1.58l-0.09,1.48l1.06,2.6l-0.57,2.15l-0.72,1.05l0.33,0.63l0.61,-0.07l-0.36,0.76l0.38,1.11l0.7,-0.12l0.87,-1.41l0.25,-1.95l1.49,-0.62l0.89,-0.97l0.93,0.3l1.44,2.91l1.25,0.73l-1.32,2.83l0.06,0.88l0.78,0.34l0.19,0.56l0.46,0.26l1.07,-0.57l0.72,0.1l1.01,-0.62l0.22,1.34l1.35,1.15l0.29,0.76l-0.77,0.86l-0.14,0.89l0.78,0.56l0.5,-0.14l0.4,0.76l0.72,0.04l-0.64,1.05l0.21,0.33l-0.5,1.14l-1.11,1.04l0.43,1.71l-0.46,1.99l0.47,0.65l0.88,0.07l0.33,1.97l0.66,0.82l1.4,3.18l-0.19,1.25l-0.82,1.09l0.24,1.78l-0.76,0.83l-3.18,0.26l-0.72,0.75l-3.03,-2.19l0.06,-0.78l-0.78,-2.96l0.56,-1.61l-1.09,-1.69l-0.14,-1.87l-0.46,-0.22l-0.92,0.33l-0.96,-1.37l-3.26,-1.74l-2.35,0.82l-0.76,-0.98l0.11,-0.74l0.74,-0.74l-0.29,-1.0l-3.53,0.22l-0.99,0.46l-0.9,0.01l-1.38,0.96l-0.37,0.67l-2.15,-1.04l-1.32,-2.23ZM402.3,245.78l0.83,-0.17l0.64,-0.53l1.52,0.08l2.32,-1.24l2.75,-0.09l-0.31,1.26l-0.78,1.12l-1.31,0.76l-0.9,1.24l-2.94,0.62l-0.22,-0.46l-0.67,-0.08l-0.2,0.26l-0.48,-0.32l-2.29,-0.19l-0.71,-0.52l0.06,-0.4l1.73,-0.52l0.87,0.11l0.12,-0.96ZM404.64,335.96l0.28,0.24l-0.19,0.49l-0.18,-0.17l0.08,-0.57ZM400.12,384.21l0.18,-0.59l0.82,-0.41l-0.03,0.27l-0.97,0.73ZM393.8,182.29l0.81,-0.68l1.53,-0.23l1.01,-0.86l0.46,-0.91l1.76,-0.32l1.38,0.5l-5.02,2.71l-0.88,0.31l-1.05,-0.51ZM393.1,153.37l0.12,-0.43l-0.41,-0.98l0.08,-1.05l0.43,-0.8l3.57,0.04l2.26,1.78l1.09,2.26l-2.23,-0.06l-0.62,-0.32l-1.53,1.08l-1.75,-0.58l-1.01,-0.95ZM390.55,142.8l-0.47,-0.22l0.1,-0.79l1.29,-1.78l0.47,-0.09l0.13,1.23l-1.53,1.65ZM381.06,200.78l0.49,-0.39l0.1,-0.71l1.3,-0.07l-0.34,-0.8l0.48,-0.76l4.85,-1.31l0.73,0.88l-2.31,0.72l-0.98,2.08l-0.55,0.45l-0.5,-0.27l-0.34,0.28l-0.66,-0.1l-0.22,0.31l-2.06,-0.3ZM378.25,196.4l1.13,-0.61l1.41,0.02l2.27,-1.2l3.84,-0.41l0.31,0.33l-0.14,0.8l-7.87,1.78l-0.94,-0.39l-0.01,-0.32ZM376.08,190.42l0.51,-0.09l0.37,-0.74l0.96,0.03l1.65,-0.6l1.35,0.13l5.02,-0.61l0.58,1.84l-0.32,1.29l-0.74,0.97l-0.9,0.66l-2.34,0.44l-3.2,-0.16l-0.2,-0.51l-2.69,-0.94l-0.05,-1.71ZM383.08,318.64l0.75,-0.08l0.69,0.85l-0.37,0.89l0.52,0.79l0.07,0.8l-0.72,-0.23l-1.1,-1.19l0.16,-1.82ZM376.48,180.64l0.14,-0.82l1.71,-1.08l1.59,0.1l0.19,0.43l-0.93,1.4l0.03,0.52l0.66,0.24l0.6,-0.21l0.59,-0.72l0.65,1.08l0.05,1.03l0.98,0.89l0.62,0.1l0.21,0.64l0.85,0.33l0.05,0.64l-1.9,1.61l-2.86,-0.1l-2.5,-0.58l0.38,-0.74l-0.37,-0.87l0.38,-1.61l-0.3,-0.9l-0.57,-0.15l0.14,-0.53l-0.41,-0.71ZM382.87,351.88l0.5,1.7l-0.24,1.27l-0.56,-0.41l-0.39,-0.96l0.19,-1.09l0.5,-0.51ZM378.76,357.87l0.32,-2.26l0.42,-0.71l-0.17,-1.01l0.44,-0.58l0.86,0.43l0.19,1.04l0.98,1.16l-0.5,1.2l0.11,0.66l-0.35,0.55l-0.68,0.19l-0.41,0.77l-0.05,-1.51l-0.61,-0.22l-0.56,0.3ZM380.85,368.37l0.1,-0.05l-0.02,0.19l-0.08,-0.14ZM374.14,155.27l0.21,-2.42l-0.8,-2.01l0.8,-0.65l0.99,0.44l0.58,0.86l1.89,4.93l0.03,1.06l-0.4,0.64l-0.16,1.45l1.37,0.18l1.17,2.66l-0.18,0.71l0.34,0.43l-0.01,0.7l-0.85,1.86l-0.9,0.06l-0.5,0.4l-0.78,-1.62l-1.22,-0.12l0.13,-0.76l-0.71,-1.63l0.21,-0.27l-0.64,-0.77l0.21,-1.55l-0.35,-0.63l0.01,-1.53l-0.33,-0.43l0.58,-1.2l-0.67,-0.8ZM262.47,316.27l0.34,-0.22l1.12,0.46l0.61,-0.39l-1.96,-6.32l0.67,-1.78l29.24,8.27l-0.78,3.03l0.33,0.57l1.6,0.39l0.47,-0.27l1.21,0.25l0.57,-0.32l0.28,-0.67l-0.55,-0.7l0.35,-1.4l17.48,4.16l0.48,-0.3l11.63,-52.12l1.02,0.72l0.45,-0.55l-0.42,-0.8l0.69,-0.71l-0.54,-1.4l-0.24,-1.55l0.18,-0.81l0.81,0.54l0.91,-1.42l-0.36,-0.62l-0.9,-0.56l0.84,-3.76l0.49,0.81l0.68,-0.14l0.16,0.09l-0.66,0.45l-0.02,0.46l1.77,2.72l0.22,0.8l1.31,0.03l-0.22,0.72l0.89,1.23l-0.65,1.01l-0.12,1.31l1.49,0.42l0.49,-0.38l0.61,0.57l-0.0,1.22l-1.19,3.5l0.19,3.2l-0.22,1.41l0.7,0.67l-0.61,2.61l0.7,0.59l-0.36,0.57l0.2,0.65l0.53,-0.06l-0.76,0.93l0.12,1.0l-0.43,0.87l0.57,1.07l-0.58,0.75l0.71,0.62l0.63,-0.14l0.24,1.97l0.89,0.76l0.73,-0.02l0.66,-0.57l-0.5,-1.35l0.11,-0.47l0.57,0.49l0.46,-0.1l0.95,-1.25l2.02,-0.19l0.34,-0.55l-0.93,-1.07l0.96,-0.16l0.34,-0.89l-0.87,-0.81l-0.05,-1.22l-1.01,-0.89l-0.03,-1.0l0.38,-0.81l-0.2,-0.86l-0.61,-0.33l0.22,-2.55l0.4,-0.02l0.4,-0.69l-0.45,-1.3l0.23,-0.62l-0.26,-0.84l0.67,-0.65l-0.92,-1.26l0.65,-0.41l0.21,-1.11l-0.5,-1.17l0.21,-1.86l-0.25,-1.13l0.28,-1.02l-0.12,-1.87l0.37,-0.58l-0.2,-1.1l0.32,-0.72l-0.25,-0.96l0.41,-0.63l-0.51,-1.77l0.88,-1.09l1.54,0.68l0.58,-0.44l-1.25,-2.02l0.07,-0.53l0.29,0.08l0.47,-0.7l0.88,0.63l0.88,0.17l1.07,1.06l1.44,2.45l0.78,0.6l0.86,-0.52l-0.4,-1.36l0.32,-0.64l1.15,-0.22l0.52,1.8l1.16,0.69l1.15,3.08l1.46,1.27l0.95,-0.04l-0.08,0.98l1.0,1.42l0.39,1.62l-0.25,0.32l0.71,0.92l0.14,0.68l-0.45,-0.14l-0.38,0.59l0.3,0.98l-0.17,0.88l0.84,1.07l-0.49,0.76l-0.05,1.17l0.44,1.05l-0.06,0.9l-0.51,0.11l-0.15,0.45l1.27,6.09l-0.75,1.49l-0.03,0.87l0.63,1.99l-0.0,3.18l0.86,1.04l1.18,5.51l-0.52,1.49l0.4,1.04l-0.28,0.91l0.13,0.89l-0.7,-0.16l-0.58,0.46l-0.33,3.04l-1.42,1.39l-0.22,0.73l0.27,1.13l2.57,3.54l0.53,3.8l1.04,0.58l1.58,3.35l1.99,0.55l0.86,1.98l1.46,0.57l0.59,-0.41l1.2,0.86l1.63,1.49l1.31,2.18l0.55,0.1l1.0,1.5l1.19,0.26l0.48,-0.79l0.39,0.02l0.35,0.54l-0.46,0.82l-0.08,1.02l0.58,1.75l1.49,-0.09l0.39,-0.62l0.4,0.54l0.48,0.08l1.21,-0.95l-0.15,1.9l0.29,1.38l-0.44,2.07l0.43,0.9l-0.09,1.65l-0.72,1.31l-0.15,1.26l-1.32,-0.65l-0.67,0.31l-0.66,-3.2l0.48,-1.61l-0.57,-0.42l-0.55,0.52l-1.63,3.9l-0.92,-1.31l-0.6,-0.05l-0.31,-2.12l-0.58,-0.38l-0.43,0.24l-0.04,-1.44l-0.73,-0.32l-0.41,0.42l-0.06,0.89l-0.59,0.26l-0.22,0.59l-1.04,0.38l-0.53,0.69l-0.48,-0.51l-0.55,0.22l0.26,1.51l0.78,0.74l-0.26,1.54l-0.39,0.73l-0.94,-0.2l-0.6,0.2l-2.17,-1.88l-0.77,-1.75l-0.7,-0.11l-0.5,-0.54l-0.75,0.27l-0.57,1.77l0.21,0.51l1.76,1.56l0.29,2.37l0.48,0.31l0.4,-0.29l0.06,0.36l-0.47,1.0l-0.33,2.26l-1.53,1.25l-0.23,1.27l0.19,0.67l0.83,0.07l3.22,-5.13l2.26,-0.4l0.69,-1.2l1.16,-0.27l1.41,0.46l0.57,1.19l-0.6,0.74l-0.6,-0.16l-0.61,0.35l-0.19,0.91l0.88,0.86l-0.73,-0.42l-0.47,0.19l-0.23,1.51l0.79,1.13l0.6,0.1l1.0,-1.4l0.8,1.26l-0.15,1.22l-0.9,1.48l0.22,1.0l-0.75,0.25l-0.33,-0.59l-0.49,-0.14l-0.9,0.89l-0.99,0.11l-0.83,-0.36l-0.29,0.99l-0.81,0.73l-0.57,-0.08l-0.73,-0.79l-0.54,0.06l-0.25,0.47l0.21,0.79l-1.58,0.48l-1.41,-1.13l-1.54,0.16l-0.46,0.75l-0.83,-1.04l-0.68,0.11l-2.23,-1.32l-1.04,-0.01l-0.64,-0.67l-0.13,-1.19l-0.49,-0.23l-0.48,0.33l-1.02,-0.36l-1.12,1.34l-3.67,-1.26l-0.44,-0.87l0.42,-0.51l0.84,0.21l0.39,-0.59l0.89,-0.46l0.07,-1.33l-1.14,-0.77l-0.63,0.07l-0.18,0.42l-1.9,-0.84l-0.64,-1.26l-2.42,-0.91l-0.98,0.41l-0.62,-0.34l-0.85,0.03l-1.13,-0.9l0.18,-0.56l1.13,-0.89l0.18,-2.67l-1.17,-2.34l-0.63,-0.51l-0.57,0.07l-1.24,1.02l-0.36,1.29l-1.64,0.17l-0.44,0.87l0.03,2.26l-1.95,1.24l-1.64,2.04l-1.04,0.42l-3.64,0.38l-1.98,-0.24l-0.74,-0.56l-1.6,-0.22l-0.57,0.31l-0.2,1.17l-3.95,2.3l-2.46,0.08l-2.36,0.7l-4.52,-0.72l-1.13,0.66l-0.42,-0.66l-1.03,-0.4l-0.99,0.46l-0.8,-0.06l-0.15,-0.53l-0.49,-0.28l-1.77,0.25l-2.42,-0.49l-0.27,0.61l0.33,0.46l-0.96,-0.57l-5.64,-0.97l-0.98,0.22l-1.61,-0.49l-1.27,0.6l-1.79,-0.57l0.13,-0.55l-0.32,-0.87l-1.54,-1.6l-0.33,-1.07l0.21,-1.24l-0.95,-2.35l0.51,-0.81l-0.15,-1.07l1.06,-1.01l0.32,-1.61l0.35,-0.3l-0.49,-1.01l0.3,-1.25l-0.2,-0.28l1.27,0.35l-0.11,-0.95l-2.26,-1.51l-0.3,-0.67l-1.49,-0.29l-0.78,-0.94l-1.12,-0.4l-3.35,-0.19l-0.29,-0.58l-0.83,-0.38l-1.01,0.57l-0.4,-0.07l-5.16,-2.72l-0.36,-0.87l-2.9,-2.59l-0.34,-0.9l0.7,-0.64l-0.02,-1.81l-1.35,-0.46l-0.43,-0.47ZM296.56,348.77l0.63,0.22l-0.45,-0.1l-0.19,-0.12ZM366.43,318.73l-0.64,-0.33l-0.41,-0.68l0.04,-1.63l1.15,1.7l-0.13,0.94ZM282.87,346.74l-0.62,-0.06l-0.07,-0.11l0.28,-0.07l0.41,0.24ZM375.09,341.57l0.15,-0.39l0.23,0.67l0.99,0.31l0.56,1.07l-0.52,0.08l-0.53,1.04l-0.26,-0.31l0.57,-0.88l-0.05,-0.43l-1.15,-1.16ZM370.58,212.41l0.63,-0.81l-0.25,-0.62l0.65,-1.25l1.74,-1.62l1.28,0.15l1.48,1.77l-0.02,2.98l0.67,1.48l-1.81,1.97l-2.25,0.64l-1.81,-0.94l-1.43,-1.88l1.13,-1.86ZM372.31,349.42l-0.69,-0.62l0.14,-0.26l0.41,-0.04l0.14,0.92ZM365.73,358.82l1.94,-1.29l0.43,-1.11l1.72,1.01l-0.26,2.28l-0.91,-0.23l-0.19,1.24l-2.73,-1.91ZM369.18,337.84l-0.03,-0.16l0.09,-0.51l-0.05,0.67ZM337.82,214.18l3.33,-14.86l4.92,2.08l0.83,0.69l0.52,-0.53l-0.01,-1.39l0.62,-0.25l-0.09,-0.68l0.49,-0.66l-0.15,-1.21l0.44,-0.26l-0.04,-0.72l-0.58,-0.34l-0.72,-1.28l-1.49,-0.97l0.19,-0.28l-0.28,-0.37l-1.02,-0.32l0.17,-1.39l-0.27,-0.41l-0.58,-0.18l-0.95,0.31l-0.1,-0.24l0.12,-0.51l1.89,-0.36l3.0,-2.09l-0.44,-0.87l0.4,-0.22l0.13,-0.66l-0.81,-1.27l-0.09,-0.89l-0.7,-0.39l0.04,-0.55l-0.83,-0.78l-0.79,0.02l1.18,-5.28l1.03,-0.03l0.84,-0.79l0.07,-0.44l-0.35,-0.41l0.3,-0.53l0.72,-0.25l0.05,-0.45l0.7,-0.4l0.77,-1.99l0.91,-0.57l0.33,-0.78l0.74,-0.49l0.74,0.03l0.54,0.4l0.98,-0.45l-0.22,1.63l1.01,0.5l-0.04,1.06l-0.74,0.83l-0.6,-0.1l-0.57,0.55l0.04,0.99l0.62,1.21l-0.62,0.59l0.16,1.74l-0.64,0.93l0.44,0.66l1.12,0.41l0.69,2.61l-0.87,0.53l-0.03,0.6l0.38,0.45l-1.58,0.69l-0.77,1.54l0.06,0.6l-0.65,0.89l0.43,0.58l3.42,0.05l0.8,1.47l-0.08,0.42l-0.97,0.79l-0.07,0.52l-0.72,0.11l-0.88,1.26l-0.45,0.83l0.12,0.99l0.67,0.27l0.49,-0.25l1.48,-1.92l1.96,-0.34l0.7,0.21l0.47,0.48l-0.35,1.03l0.36,1.12l-0.23,0.63l0.31,0.56l-0.13,2.25l0.32,0.54l0.6,-0.22l0.57,-2.72l1.25,-0.28l0.36,-0.61l-1.34,-0.99l0.58,-2.78l1.65,-1.78l1.33,0.24l2.88,2.18l0.61,1.29l0.46,1.92l-0.43,4.97l-0.94,1.77l-1.11,0.48l-0.57,0.8l-0.04,0.53l0.65,0.45l-0.78,0.99l0.13,1.24l-1.86,2.23l-0.44,0.99l0.28,0.91l-0.23,0.57l-0.69,0.17l-0.65,0.83l0.24,0.93l-4.44,0.4l-1.89,1.54l-1.09,-0.14l-1.52,-0.82l-0.69,-0.88l0.37,-2.12l-0.6,-1.0l-0.56,0.23l-0.2,1.4l-0.41,0.27l-0.57,-0.29l-0.45,0.3l-0.02,1.12l-0.37,0.42l-2.11,0.0l-0.5,-0.85l0.43,-0.31l-0.27,-1.67l-0.39,-0.58l-1.31,-0.64l-0.96,0.5l-0.65,1.08l-2.33,0.72l-1.36,1.53l-2.16,-0.53ZM353.07,252.53l-0.18,-0.64l-1.02,-0.65l-0.84,-1.21l-1.37,-0.46l3.4,-4.11l5.53,0.43l1.12,-0.43l1.11,0.01l1.15,0.48l1.47,2.13l0.1,0.62l1.03,0.62l0.77,1.33l-0.89,2.33l-0.41,2.7l-1.52,2.31l-0.12,0.8l-1.88,1.94l-0.41,1.43l-1.39,1.24l-0.29,-0.36l-0.77,0.15l-0.06,1.2l-0.11,-1.26l-2.04,-4.53l0.12,-0.68l-0.91,-0.66l0.22,-0.81l-0.61,-1.05l0.34,-0.68l-1.54,-2.22ZM356.38,131.25l0.61,-2.73l1.07,-4.77l0.81,1.78l0.66,0.28l0.31,0.67l0.28,1.9l-1.49,3.66l-1.82,0.06l-0.43,-0.84ZM354.22,140.9l0.72,-3.2l0.99,0.25l0.23,0.79l-0.87,1.71l-1.07,0.45ZM344.51,358.33l0.94,-0.21l1.34,0.38l0.66,0.56l0.64,1.22l-0.21,1.16l-1.07,0.09l-0.69,-0.57l-0.82,-0.81l-0.78,-1.83ZM343.45,246.05l0.34,-0.35l0.86,-0.03l1.16,0.72l-2.21,0.24l-0.15,-0.58ZM319.66,383.43l0.58,1.04l0.11,0.1l-0.52,-0.1l-0.16,-1.05ZM317.77,367.13l0.19,-0.56l0.63,-0.35l-0.4,1.1l-0.43,-0.19ZM317.48,374.25l-0.13,-0.78l0.25,-1.06l0.35,1.97l-0.46,-0.13ZM317.12,377.88l0.04,-0.85l0.65,-0.18l-0.58,1.35l-0.12,-0.32ZM314.41,374.19l0.57,0.24l-0.14,0.63l-0.37,0.19l-0.06,-1.06ZM311.1,365.02l0.9,-0.17l0.05,1.27l-0.95,-1.11ZM308.9,362.27l0.31,0.24l0.02,0.64l-0.44,-0.71l0.11,-0.16ZM305.06,360.24l0.09,-0.06l-0.03,0.05l-0.06,0.02ZM299.0,350.45l1.55,-0.48l0.33,0.64l-1.15,0.07l-0.73,-0.23ZM292.58,354.28l-0.15,-0.28l0.45,-0.29l-0.16,0.44l-0.15,0.13Z", "name": "Nunavut"}, "CA-NS": {"path": "M806.14,740.09l0.6,-1.1l-0.19,-1.16l1.53,-2.49l0.42,-2.61l0.6,-1.53l-0.03,-2.56l0.54,-3.5l1.51,-3.01l0.15,-1.97l0.16,-0.35l1.13,0.17l0.58,-0.23l-0.36,1.59l1.07,0.72l1.38,-0.48l0.25,0.69l0.19,1.88l-0.37,0.37l0.03,0.59l0.78,0.69l-0.34,1.48l0.1,1.93l-0.48,4.15l0.66,0.61l-0.35,0.83l-0.42,0.47l-0.53,0.06l-0.41,0.74l-0.44,0.35l-0.86,0.06l-0.71,1.87l-1.26,1.0l-0.2,0.83l0.56,0.34l0.4,-0.18l-0.21,0.92l0.5,0.44l0.95,-0.7l0.24,0.03l-1.43,1.75l0.15,1.53l1.35,0.03l1.28,-1.57l0.61,-0.21l0.72,0.25l-0.26,0.86l-0.98,0.93l-0.57,0.09l-0.98,1.27l-1.15,-0.45l-1.0,1.26l-1.85,-1.48l-1.42,-2.29l-0.27,-1.03l-1.36,-1.87ZM816.61,744.13l1.05,-1.41l-0.51,-1.54l2.33,-3.96l0.31,-1.02l-0.19,-0.41l-0.45,0.02l-2.83,2.93l-0.59,-0.45l2.36,-3.35l0.82,-2.08l0.74,-0.69l-0.04,-0.59l-0.69,-0.2l-1.08,0.73l-0.44,1.08l0.12,-0.58l0.95,-1.72l0.31,-0.23l1.11,0.83l0.0,0.01l-0.5,1.38l0.14,0.46l0.77,-0.36l0.46,0.32l0.48,-0.32l-0.25,-1.23l0.25,-0.6l0.28,-0.06l-0.09,0.39l0.46,0.2l1.39,-0.32l0.44,0.58l0.8,-0.47l0.17,1.41l-0.68,0.84l0.12,0.42l0.59,0.46l1.08,-0.34l0.3,0.34l-1.47,1.09l-0.16,0.62l-1.5,0.75l-0.17,0.84l0.9,0.39l-0.87,0.89l-0.13,0.94l-1.5,1.69l-1.05,0.32l-1.77,1.89l-1.76,0.09ZM816.46,732.7l0.05,-0.34l0.15,-0.22l-0.19,0.56ZM816.79,731.83l0.24,-0.63l0.0,-0.0l-0.04,0.32l-0.2,0.32ZM812.99,739.44l0.88,-1.79l0.6,-0.25l0.0,1.22l-0.51,0.54l-0.97,0.27ZM759.65,789.33l0.16,-4.68l1.0,-2.32l1.2,-1.76l-0.25,-0.79l-0.76,-0.03l0.79,-1.21l0.55,1.16l1.15,-0.48l2.56,-4.02l-0.39,-0.25l-0.53,0.16l-2.38,2.22l8.34,-9.82l1.48,-1.36l2.68,-1.68l0.64,-0.83l0.18,-0.86l0.15,2.95l0.79,0.75l0.56,-0.3l0.09,-0.56l0.83,0.28l1.02,0.66l0.21,0.95l0.41,0.32l0.85,-0.63l-0.2,-1.37l-1.52,-0.96l0.48,-1.27l2.17,-1.72l0.87,-0.31l0.38,-0.71l0.77,-0.16l0.09,-0.31l2.0,-0.77l0.57,0.44l0.62,-0.38l0.08,-0.73l0.87,-0.87l-0.76,-0.39l-2.62,0.32l-2.84,0.85l-0.61,0.66l-0.49,-0.31l-1.16,0.39l-1.2,-0.1l-2.3,0.94l-1.0,0.8l-0.82,-0.25l-1.64,0.19l-1.2,0.97l-0.22,1.24l-1.05,-0.26l-0.99,0.29l0.05,-0.87l0.87,-0.88l-0.09,-0.5l1.3,-1.3l0.28,-0.94l1.72,-2.26l0.02,-1.13l0.39,-0.53l0.26,0.4l0.97,-0.59l0.19,-0.62l-0.26,-0.25l-0.04,-1.31l0.51,-1.57l1.15,-0.65l0.29,-0.58l1.43,0.15l1.08,0.9l0.83,0.12l0.3,0.65l0.75,-0.22l0.73,0.19l0.2,-0.77l1.23,-0.68l-0.11,1.13l1.96,-0.28l-0.19,0.41l0.35,0.35l1.32,0.28l0.39,-0.54l0.8,-0.03l1.26,-0.83l0.38,-0.58l-0.15,-0.29l4.41,-0.24l-0.95,0.78l-0.21,0.93l0.34,0.38l0.28,-0.17l0.75,0.36l0.21,-0.58l0.48,0.15l0.41,-0.34l-0.28,-0.68l0.28,-0.19l1.02,0.2l0.3,0.67l0.82,-0.21l1.04,-1.74l0.93,-0.59l1.93,-2.56l0.71,-1.41l1.1,2.31l0.51,0.48l2.23,0.56l1.34,-0.18l0.72,-1.54l0.48,-0.23l1.15,0.56l1.2,1.12l1.39,0.45l-0.06,0.51l-0.81,0.8l-0.41,0.03l-0.92,1.13l0.04,0.62l0.47,0.31l5.15,-1.32l0.05,1.13l-0.76,-0.45l-0.75,0.77l-1.09,0.18l-0.75,1.02l-0.03,0.9l-1.95,0.93l-1.75,0.09l0.05,0.82l0.49,0.37l-1.67,0.55l-0.41,1.09l-1.6,0.89l-0.18,1.04l-2.05,0.97l-0.63,0.9l-1.1,0.64l-0.16,0.64l-0.47,-0.39l-0.48,0.9l-0.61,0.33l-0.02,0.42l-2.39,1.6l-0.16,1.04l-0.99,0.14l-0.47,0.43l-0.41,-0.68l-1.07,0.28l-0.59,-0.19l-0.35,0.33l0.23,0.92l-0.47,0.47l-0.85,-0.13l0.17,1.15l-0.23,0.62l-0.81,0.12l0.04,-0.31l-0.57,-0.29l-0.81,0.54l0.56,0.97l-2.57,-1.19l-0.58,0.05l-0.2,0.6l0.63,0.75l1.0,0.32l1.01,2.07l-0.36,-0.1l-1.55,0.84l-0.83,-0.89l-1.51,0.95l-0.47,-1.54l0.14,-1.54l-0.33,-0.32l-2.22,1.84l0.21,1.14l0.74,0.7l-0.28,0.68l-0.39,-0.94l-0.88,-0.46l-0.75,0.3l-0.14,0.61l-0.71,-0.17l-0.42,0.24l0.33,1.73l-0.39,0.59l0.87,0.89l-0.35,0.59l0.25,0.46l-1.07,-0.03l0.05,0.5l1.06,0.58l-1.02,2.27l-1.11,0.2l-0.41,0.8l0.37,0.35l0.69,-0.04l-0.01,0.26l-1.54,0.73l-0.15,0.68l0.77,0.39l-0.57,0.78l-1.04,0.65l-0.13,0.86l0.52,0.57l-0.9,-0.21l-0.93,0.87l0.68,1.28l-0.79,-0.83l-0.46,0.02l-0.13,0.45l0.65,1.21l-0.27,-0.23l-1.28,0.61l-0.79,-0.88l-0.66,0.32l0.49,1.99l-0.34,-0.13l-0.39,-1.23l-0.48,0.02l-0.52,0.61l0.82,2.23l-0.19,0.69l-0.61,-0.3l-0.5,0.49l0.27,0.42l-0.09,0.81l-0.81,-0.86l-0.55,0.12l-0.8,1.34l-0.39,0.07l-0.33,-0.88l-0.54,-0.21l-0.38,-1.47l-0.63,-0.19l-0.98,-1.55l-0.47,-0.22l-0.91,-0.14l-0.32,0.25l-0.3,-0.4l-0.66,0.27l0.1,0.85l0.62,0.96l-0.76,-0.45l-0.53,0.1l-0.02,-0.99l-0.93,-0.59l-0.33,-2.18l-1.14,-1.44ZM815.34,751.71l-0.03,0.02l0.02,-0.1l0.01,0.08ZM814.13,746.52l0.43,-0.47l0.76,-0.29l-0.16,0.85l-1.03,-0.09Z", "name": "Nova Scotia"}, "CA-BC": {"path": "M13.63,416.0l18.57,10.78l19.97,10.92l20.25,10.4l20.52,9.86l20.77,9.32l21.0,8.77l21.26,8.24l21.12,7.55l-37.33,108.91l0.0,0.84l0.61,0.53l-0.38,0.97l1.06,0.85l0.3,1.12l-1.39,-0.67l-0.62,0.14l0.03,1.15l-0.43,0.73l0.21,0.59l0.57,0.21l0.19,2.02l0.84,1.3l0.35,0.17l0.53,-0.25l0.98,0.72l0.76,0.05l-0.13,1.32l0.58,2.06l2.09,1.93l0.8,-0.25l0.46,-1.15l0.77,1.04l0.58,1.33l-0.59,0.93l0.97,0.98l-0.37,0.82l0.11,1.89l0.47,0.41l0.99,-0.09l0.34,1.0l-0.39,0.83l0.57,1.04l0.1,1.29l-0.75,0.67l0.47,2.99l-0.56,0.69l0.13,1.58l2.27,0.12l0.46,-0.24l0.44,-0.87l0.64,1.11l1.28,0.79l-0.19,0.8l-1.23,0.79l0.3,1.88l0.88,0.69l0.54,1.17l1.29,0.11l1.2,0.66l0.54,-0.1l-0.09,1.84l1.68,3.03l0.03,3.14l0.31,0.86l1.36,0.39l1.23,-1.23l0.58,0.0l0.08,2.89l0.77,0.86l0.09,0.87l0.49,0.56l-0.05,1.03l0.7,0.9l-0.38,1.12l0.14,1.48l0.93,0.66l0.11,0.73l0.87,0.66l-0.2,1.52l0.36,0.88l0.76,0.81l1.17,0.52l0.03,0.67l1.16,1.63l0.03,0.84l-0.77,0.41l-0.02,0.81l0.62,0.43l0.21,0.75l1.08,1.17l0.17,0.76l0.69,0.1l0.14,0.68l-0.43,0.58l0.68,2.09l0.58,0.31l0.91,-0.51l0.95,0.57l0.82,3.1l0.57,0.99l-0.49,4.19l0.35,1.34l-0.15,1.29l-0.5,0.22l-0.33,1.01l0.11,2.26l-1.05,1.89l-0.99,0.67l-0.26,0.71l0.45,0.95l1.24,0.51l-0.71,1.24l-0.02,1.23l0.9,1.34l0.56,2.72l1.65,0.84l0.45,0.63l-0.19,0.8l0.44,1.02l0.56,0.37l-0.22,0.27l-27.35,-7.82l-27.2,-8.56l-22.07,-7.54l-20.36,-7.43l-0.15,-0.39l-0.8,-0.35l0.21,-1.16l-0.6,-0.44l-1.81,0.1l-0.47,0.32l-0.12,-0.4l1.21,-0.59l0.34,-0.89l-1.81,-0.14l0.27,-0.72l0.53,0.32l0.3,-0.37l-0.62,-1.25l1.53,0.24l0.97,0.62l0.85,-0.09l0.77,-0.61l1.17,-2.04l-0.35,-0.56l-0.52,0.1l-0.39,0.88l-0.95,0.93l-0.73,-0.02l-2.26,-1.49l0.81,-0.83l0.52,-1.68l1.28,-1.89l0.77,-0.45l0.02,-0.73l-0.57,-0.2l-0.96,0.34l-0.64,1.13l-3.29,0.49l-0.35,1.52l-0.4,0.28l-2.22,-2.35l0.35,0.09l0.6,-0.57l0.23,-1.06l2.11,-0.04l1.12,-0.75l0.05,-0.46l-0.41,-0.2l-1.67,0.26l-1.17,-0.27l-0.59,-2.27l0.96,-0.94l0.39,-1.03l-0.25,-1.64l1.82,-0.18l1.09,-0.9l-0.39,-1.65l-1.48,-1.88l-0.67,0.31l0.24,1.15l0.69,0.8l0.18,0.72l-2.3,0.5l-0.61,1.32l-0.59,0.03l-0.7,0.73l-0.05,0.48l-0.99,0.51l-1.16,-0.38l-0.47,0.15l-1.25,-0.65l-0.63,-0.72l0.13,-0.64l-0.32,-1.0l-1.12,-1.86l0.42,0.2l0.32,-0.36l0.74,-1.86l1.0,-0.73l0.78,-1.13l0.03,-1.27l-0.42,-0.72l0.66,-0.64l1.06,0.45l1.62,-0.21l1.19,-0.55l0.37,-0.56l-0.53,-0.58l-1.92,0.55l-2.01,-0.55l-1.36,0.98l-0.8,0.21l-0.86,-0.52l0.32,-0.78l-0.13,-0.94l-0.31,-0.35l-0.54,0.21l0.31,-0.57l1.04,0.0l0.5,-0.55l0.71,-0.01l0.52,-0.47l0.7,-1.52l0.9,-1.07l-0.54,-1.17l1.94,-1.18l-0.12,-1.14l-0.81,-0.31l-1.32,1.2l-0.98,0.31l-0.12,1.24l0.33,0.57l-0.79,1.69l-2.82,1.23l-0.55,0.81l-0.42,0.11l0.16,-1.29l-0.25,-0.42l-0.88,0.25l0.2,-0.94l-0.42,-0.46l-1.2,0.93l-1.01,-0.17l1.36,-2.4l1.52,-0.77l0.06,-0.63l-0.27,-0.25l-2.03,0.51l-1.03,1.83l-0.73,0.39l-0.15,0.67l-0.43,0.25l-0.44,-0.76l0.35,-0.16l0.05,-0.62l-0.51,-0.46l-0.72,-0.2l-1.57,0.34l-1.87,-1.12l0.32,-0.73l2.46,0.25l0.57,-0.43l1.19,0.03l1.37,0.45l0.9,-0.85l0.82,-0.19l0.38,-0.6l-0.05,-1.03l0.94,0.18l1.31,-1.41l0.17,-2.17l-0.49,-1.27l-0.73,0.05l-0.14,0.4l-0.08,2.77l-1.67,0.34l-0.51,0.84l0.1,0.68l-1.26,0.7l-1.22,-0.44l-0.69,0.2l-0.41,-0.77l-2.04,-0.08l2.1,-0.61l0.26,-0.46l-0.72,-0.59l-0.93,-0.03l0.58,-1.2l-0.82,-0.57l0.97,-0.06l0.51,-0.79l-0.42,-0.46l-0.72,0.14l-1.89,-1.2l0.34,-1.92l-0.21,-0.53l-0.53,0.08l-0.59,0.69l-0.43,1.42l-0.53,0.35l-1.09,0.02l-1.26,-1.83l-1.03,0.28l-1.03,-0.44l-1.12,-1.04l-0.63,-0.09l-0.27,0.62l0.24,0.44l-0.35,-0.26l-0.23,-0.92l-0.6,-0.16l-0.73,-0.75l0.18,-0.81l-0.87,-0.64l1.18,-1.24l0.02,-0.47l-0.42,-0.45l-1.61,-0.27l-0.56,-1.45l0.22,-0.72l2.39,-0.07l1.79,1.27l1.94,0.48l1.27,-0.28l0.88,-1.35l-0.14,-0.43l-0.45,-0.02l-0.93,0.7l-1.16,0.1l-1.52,-0.85l-0.02,-0.89l-1.42,-0.1l-1.64,-0.71l1.26,0.01l1.14,-0.71l0.59,0.01l1.02,-0.91l0.43,-1.1l0.48,-0.22l1.69,0.22l2.83,0.98l3.66,2.02l1.21,-0.42l0.57,-0.77l-0.02,-1.8l-0.37,-0.36l-0.42,0.3l-0.36,1.43l-0.61,0.31l-3.57,-2.25l-1.84,-0.45l-0.7,-0.84l-0.79,0.4l0.26,-0.75l0.87,-0.15l0.93,-1.27l0.03,-0.56l-0.63,-0.27l-1.08,1.17l-0.74,0.01l-0.65,0.85l-1.13,-0.6l-0.81,0.22l0.07,0.61l0.78,0.73l-1.19,0.97l-0.01,0.66l-0.42,0.34l-0.3,-0.87l-0.76,-0.34l0.24,-0.89l-0.18,-1.6l1.21,-2.97l0.59,-0.66l0.81,-0.17l1.32,0.33l0.75,-1.05l1.21,-0.43l1.23,0.4l0.58,-0.17l0.26,-1.47l0.99,-0.36l1.17,0.12l1.46,-0.73l1.19,0.83l0.04,2.29l1.36,4.54l0.45,-0.23l0.46,-1.2l-0.26,-1.8l-0.88,-1.68l0.26,-1.89l0.72,-0.2l1.29,0.29l0.56,-0.4l-0.51,-0.96l-2.81,-0.06l-1.1,-0.71l-0.09,-0.5l0.44,-2.15l2.24,-0.84l0.99,-0.04l1.43,-1.41l0.28,-2.14l-0.81,-1.58l-0.65,0.29l-0.22,3.03l-0.98,0.61l-2.77,0.76l-0.68,0.64l-0.16,0.77l-2.05,0.08l-0.99,0.71l-2.28,0.14l0.49,-0.43l-0.46,-0.73l-1.92,1.47l-0.07,-1.06l0.98,-0.32l0.34,-0.46l-0.16,-1.5l0.77,-0.56l0.01,-0.74l0.57,-0.66l-0.35,-0.64l-1.85,-0.06l-1.04,0.34l-1.92,1.56l0.91,-1.04l0.47,-1.59l2.56,-2.56l0.76,-1.92l1.15,-0.09l0.32,-0.53l-0.19,-0.4l-0.77,-0.17l-0.3,-0.38l-2.19,1.52l-1.33,-1.01l-0.09,-1.12l0.94,-3.09l1.01,-1.4l-0.84,-0.43l-0.19,-1.93l-0.43,-0.19l-0.45,0.32l-0.66,-1.45l-0.01,-0.71l0.54,-0.39l0.2,-1.31l0.91,-0.63l-0.08,-0.66l-0.94,-0.13l0.11,-0.47l0.5,0.37l0.78,-0.2l-0.12,1.24l0.4,0.92l0.61,0.23l0.57,1.55l-0.23,0.75l0.41,0.43l0.51,-0.33l0.44,-1.04l1.38,-0.01l1.82,1.11l0.06,0.69l-0.69,0.76l-0.01,0.52l0.94,-0.15l0.34,0.67l-0.3,1.58l0.52,0.74l0.71,-0.13l-0.15,-1.33l0.33,-1.0l-0.62,-1.12l-0.37,-2.46l-1.72,-0.67l-0.55,-0.65l-0.51,-0.03l-0.67,0.57l-0.82,-0.23l-1.33,-3.84l0.95,-1.11l0.29,-1.09l0.41,-0.39l0.68,0.09l0.51,-0.48l1.48,1.12l0.49,-0.05l0.05,-1.0l-0.79,-0.39l-0.62,-0.84l1.48,-1.45l0.1,-0.72l-0.99,-0.1l-3.25,1.95l-0.57,-1.39l-0.8,0.05l-0.29,1.7l-0.47,-0.69l-0.45,0.22l-0.2,0.96l-2.69,1.13l-1.28,1.81l-0.16,1.0l-0.72,0.81l-1.64,-5.17l0.13,-1.57l-1.14,-2.66l-0.13,-0.95l0.31,-0.84l-0.66,-0.17l-0.12,-0.39l-0.02,-0.68l1.08,-2.11l0.75,-0.75l0.41,0.1l0.16,2.49l0.53,1.74l0.59,0.45l0.43,-1.42l-0.45,-1.17l-0.05,-2.35l0.91,0.01l1.75,1.57l1.64,-0.27l0.58,-0.39l-0.37,-0.7l-1.5,0.3l-1.83,-1.67l-3.38,-0.01l-0.21,-0.73l-0.68,-0.52l0.67,0.0l0.5,-0.5l-0.21,-0.46l0.8,-1.92l-0.16,-0.48l-0.5,0.07l-0.51,0.6l-0.69,0.02l-0.64,-0.71l0.52,-0.88l0.82,0.14l0.35,-0.52l-0.08,-1.1l0.72,-0.27l0.81,5.21l0.46,0.67l0.85,0.22l0.24,-0.48l-0.5,-0.59l-0.17,-0.94l0.7,-1.06l0.93,-0.09l0.32,-0.67l-0.55,-0.45l-0.75,0.04l-0.83,0.73l-0.5,-4.19l1.16,-0.05l0.95,1.09l0.34,1.33l1.09,0.78l0.67,-0.06l0.26,-0.34l-0.14,-0.42l-1.06,-0.71l-0.18,-1.2l-0.69,-1.14l0.83,-0.81l1.4,-0.59l0.1,-0.88l0.54,-0.4l0.23,-0.01l-0.41,0.33l0.27,0.72l2.0,-0.48l0.45,0.51l1.69,0.25l0.42,-0.72l-3.37,-1.69l3.35,-2.84l0.88,-0.25l2.11,-1.94l0.79,0.46l1.18,-0.33l0.19,-0.51l-0.4,-0.44l-0.76,0.18l-0.72,-0.46l-0.55,0.02l0.42,-3.12l-0.63,-0.43l-0.38,0.34l-0.63,2.46l-1.19,1.08l-0.25,0.6l0.17,0.34l-0.61,0.89l-4.38,3.54l0.19,-1.23l3.65,-2.46l0.01,-1.21l0.72,-2.25l0.03,-1.69l1.16,-2.12l-0.07,-1.07l3.08,-2.49l-0.27,-0.65l0.46,-1.28l0.06,-1.38l-0.37,-0.78l-1.14,-0.25l-1.35,-1.24l0.24,-1.83l-1.34,-1.53l-0.43,-1.97l-0.62,-0.93l-2.03,-1.66l-2.71,-5.17l-2.36,-1.11l0.5,-1.02l0.09,-1.44l0.61,-0.94l-1.5,-2.18l1.9,-2.25l-0.03,-0.55l-2.03,-1.95l1.76,-1.48l-0.68,-17.44l0.4,-2.73l-0.61,-4.17l0.83,-1.22l-0.82,-3.51l-0.3,-3.87l-2.29,-3.88l-0.25,-1.33l0.41,-1.01l-0.35,-0.6l0.5,-0.87l-0.0,-1.39l-0.96,-1.57l0.08,-2.0l-1.83,-1.91l0.0,-0.97l0.57,-0.96l-0.39,-0.8l0.97,-0.53l0.86,-1.58l-1.69,-5.99l-0.52,-0.45l-4.82,0.06l-3.19,-0.8l-1.16,0.04l-0.33,0.59l0.29,1.15l-0.97,0.61l-0.87,-0.59l-0.65,0.07l-1.58,2.84l-1.77,1.29l-2.42,-0.92l-5.25,0.52l-2.15,0.6l0.9,-1.15l1.29,-4.82l-3.3,-13.32l0.53,-2.9l-1.35,-2.31ZM73.47,652.52l0.29,0.56l-0.5,0.41l0.15,-0.35l0.07,-0.62ZM65.69,639.61l-0.05,0.24l-0.09,0.16l-0.03,0.01l0.17,-0.41ZM47.11,622.29l0.58,0.56l0.35,0.24l-0.42,0.17l-0.51,-0.97ZM45.72,609.76l-0.16,0.0l-0.36,-0.19l0.3,0.13l0.23,0.05ZM50.07,591.83l-0.48,0.83l0.04,0.6l-0.78,0.64l0.16,-1.83l0.64,-0.61l0.4,0.37ZM46.52,592.11l-0.73,0.75l-0.66,0.39l0.64,-1.17l0.75,0.03ZM51.62,599.75l0.12,-0.02l0.32,0.0l-0.13,0.19l-0.3,-0.17ZM56.1,626.07l-1.59,-0.43l-1.14,0.16l-0.32,-0.43l0.61,-0.51l2.44,1.22ZM55.38,630.91l-0.22,-0.02l-0.62,-0.24l0.1,0.01l0.73,0.25ZM72.83,659.99l-0.63,-0.33l-0.52,-1.02l-0.28,-2.05l0.99,-1.2l0.28,0.06l0.38,2.07l-0.22,2.46ZM77.14,661.77l0.07,-0.32l0.41,-0.02l0.04,0.63l-0.52,-0.29ZM76.5,664.01l0.11,-0.16l0.39,-0.19l-0.22,0.27l-0.28,0.08ZM71.52,674.1l-0.21,-0.6l0.4,-0.58l-0.16,-0.8l0.09,-0.03l0.54,1.27l-0.43,-0.06l-0.24,0.8ZM70.39,655.37l-0.06,-0.38l0.7,-0.3l-0.51,0.61l-0.13,0.07ZM32.85,620.93l0.68,-0.17l0.02,-0.64l-0.76,-0.43l0.22,-1.3l2.37,-0.03l0.56,0.28l0.8,-0.21l1.61,0.7l3.39,3.27l-0.22,0.7l0.2,0.9l0.6,-0.15l1.66,2.64l1.83,1.44l0.03,0.48l1.01,0.5l0.02,0.63l1.12,0.19l1.45,1.91l0.75,0.06l0.74,0.68l1.02,0.21l1.66,1.03l1.93,2.25l1.25,0.68l0.78,0.91l1.79,0.49l0.86,0.93l-0.31,3.68l0.62,1.55l-0.05,2.74l1.84,4.7l-0.04,0.28l-0.93,-0.48l-0.43,0.57l0.38,1.07l0.32,3.28l0.82,0.58l1.32,2.19l3.72,2.74l-0.4,0.16l-0.02,0.74l2.04,1.19l-0.28,0.35l0.02,1.26l1.09,0.83l0.1,1.41l-0.7,-0.1l-0.38,0.64l1.57,3.71l-0.33,0.62l-0.81,0.32l0.85,1.83l-0.4,0.62l0.04,0.77l-0.62,0.94l0.44,0.45l1.05,-0.34l0.71,-1.07l-0.07,3.71l-0.4,0.04l-0.51,-0.91l-0.52,-0.17l-2.12,1.49l-0.76,-0.26l-1.02,-1.27l-1.22,-0.57l-4.51,-4.68l0.34,-0.65l-0.2,-0.23l-0.58,-0.29l-0.68,0.18l-1.54,-1.14l-1.15,-1.88l-2.45,-2.57l-0.31,-1.19l1.25,-0.56l0.85,0.03l0.53,-0.84l1.63,-0.27l1.28,-0.98l1.13,-1.58l0.3,-1.62l-0.53,-0.48l-0.6,0.5l-0.62,1.63l-1.35,1.41l-1.99,-0.34l-0.65,-0.59l-1.1,0.36l-0.45,-0.34l0.86,-0.46l-0.95,-1.1l-2.45,1.38l-0.88,-1.16l-0.73,-2.0l-0.55,-0.46l2.18,-0.5l0.91,-0.99l-0.46,-0.57l-1.28,0.35l0.61,-1.06l-0.55,-0.56l0.9,-1.32l-0.21,-0.54l-0.44,-0.0l-1.12,1.18l-0.61,-0.19l-0.84,0.41l-0.13,-0.38l1.04,-0.37l1.26,-1.45l0.06,-0.62l-0.7,-0.23l-1.4,1.27l-0.07,-0.69l0.65,-0.95l-0.29,-0.52l-1.77,0.02l-0.03,-0.74l-0.47,-0.28l-0.8,1.05l-0.81,-2.22l-1.16,0.39l-0.16,0.81l-0.28,-0.45l1.23,-2.55l1.21,-0.2l1.13,0.59l2.92,0.63l0.42,-0.31l-0.06,-0.7l-1.2,-0.58l-1.67,-0.08l-0.98,-0.86l1.24,-1.08l-0.63,-1.0l-0.61,0.12l-0.58,0.93l-0.49,-0.08l0.63,-3.12l-0.28,-0.49l-0.71,0.06l-0.6,-2.02l-0.77,0.21l-0.23,-0.72l-0.45,0.1l-0.81,1.52l-1.65,-0.66l-0.32,-1.71l0.85,-0.49l0.55,-0.81l1.06,-0.3l0.4,-1.05l-0.59,-0.35l-1.01,0.48l-0.47,-1.23l-0.55,-0.1l-0.66,1.5l-0.63,0.06l-0.46,-0.99l0.8,-0.46l-0.23,-0.43l0.38,-0.76l-0.33,-0.31l-2.03,0.4l0.58,-0.85l-0.33,-0.3l-1.14,0.05l-1.37,0.68l-0.68,-0.62l2.5,-1.18l0.04,-0.56l-0.65,-0.37l0.41,-0.24l0.12,-0.65l-0.63,-0.79l-0.87,-0.23l1.07,-1.19l1.81,0.27l1.47,0.66l0.35,2.01l0.36,0.42l0.68,-0.27l-0.22,-2.73l1.49,-0.17l0.6,-0.54l-0.27,-0.6l-1.46,-0.13l-0.39,-0.67l-2.99,-1.74l-0.22,0.68l0.38,0.79l1.9,1.18l-2.18,-0.17l-0.43,-0.36l-1.45,-0.06l-0.38,-0.57l-0.68,0.11l-0.69,-1.33l0.08,-1.33l-0.53,-0.59ZM42.94,638.71l0.18,0.66l-0.39,0.25l0.21,-0.91ZM48.37,658.01l-0.18,-0.13l-0.04,-0.06l0.11,0.01l0.12,0.19ZM65.71,652.19l0.14,-0.21l0.29,0.73l1.84,1.59l0.58,2.49l-1.31,-1.65l-0.19,-1.3l-1.35,-1.65ZM68.25,643.72l-0.05,0.24l-0.39,0.41l0.11,-0.31l0.33,-0.33ZM67.21,657.84l0.25,0.09l0.46,0.37l-0.41,-0.15l-0.3,-0.32ZM65.77,642.5l0.43,-0.25l0.47,0.39l-0.27,0.67l-0.55,-0.11l-0.08,-0.69ZM66.61,644.25l0.09,0.18l-0.5,0.24l-0.01,-0.2l0.41,-0.22ZM64.09,645.3l-0.21,-0.95l0.93,-0.53l-0.29,1.49l-0.43,-0.01ZM63.71,655.75l-0.0,-0.0l0.0,0.0l-0.0,0.0ZM61.57,639.47l0.04,-0.17l0.14,0.12l-0.07,0.05l-0.11,0.0ZM62.7,639.33l0.42,-0.95l0.59,0.96l0.17,3.08l-0.26,-2.27l-0.92,-0.82ZM61.44,643.0l-0.21,-0.5l0.24,-1.24l0.33,-0.58l0.41,-0.02l0.33,1.46l-1.11,0.88ZM60.76,637.89l0.47,-0.38l1.13,-0.03l-0.83,0.65l-0.77,-0.24ZM59.74,636.88l0.18,-0.02l0.48,0.11l-0.61,-0.06l-0.05,-0.04ZM56.9,635.18l0.86,0.09l0.09,0.38l-0.33,-0.07l-0.61,-0.4ZM47.25,600.57l1.72,-2.5l0.8,-0.67l0.72,-0.33l0.86,0.23l1.96,-0.24l1.42,-0.89l1.65,0.05l-0.51,1.31l-4.2,0.56l-1.27,0.61l-1.38,1.32l-0.25,0.68l-1.53,-0.13ZM51.46,628.21l0.59,-0.54l2.0,-0.54l1.2,0.15l0.11,0.27l0.04,0.85l-0.66,0.22l-0.62,0.73l-1.4,-0.87l-0.51,0.21l-0.75,-0.48ZM51.4,630.8l1.84,0.02l0.23,0.32l-0.39,0.14l-1.68,-0.47ZM49.37,624.62l0.01,0.01l0.0,0.06l-0.02,-0.07ZM50.29,625.12l0.07,-0.07l0.64,0.3l-0.56,-0.01l-0.15,-0.22ZM49.87,623.87l0.03,0.01l0.01,0.0l-0.01,0.0l-0.03,-0.01ZM48.61,586.85l0.14,-1.17l0.6,0.19l-0.53,0.81l-0.2,0.17ZM45.49,570.28l0.29,-0.57l0.16,-0.22l-0.2,0.65l-0.25,0.13ZM46.01,569.39l1.12,-1.94l1.14,-0.24l1.27,0.43l-0.72,1.13l-0.97,-0.27l-1.84,0.9ZM48.58,656.68l-0.36,-0.84l0.5,-0.17l0.3,0.29l-0.44,0.72ZM46.18,597.25l0.63,-0.09l0.89,0.46l-0.56,0.43l-0.94,-0.3l-0.02,-0.5ZM46.94,596.03l1.01,-0.32l-0.03,-0.58l-0.46,-0.3l0.72,0.24l-0.14,1.53l-1.1,-0.57ZM44.61,591.15l1.02,-0.72l0.85,-3.1l1.13,-2.06l-0.16,1.5l-1.04,3.3l-0.66,0.74l-1.14,0.33ZM41.34,582.69l0.24,-0.26l-0.19,-1.84l0.67,0.54l0.48,-0.46l-0.11,-0.42l1.76,-1.19l1.07,-0.04l0.41,-0.42l-0.98,-2.79l-0.6,0.02l1.1,-2.33l1.04,0.82l1.06,2.78l0.64,0.6l-0.19,2.48l-0.45,1.43l-2.7,3.9l-0.21,0.8l-0.83,-0.37l0.76,-1.87l2.26,-2.34l0.42,-0.85l-0.14,-0.58l-0.73,-0.14l-0.33,0.74l-0.59,-0.23l-2.15,3.48l-0.91,0.15l-0.83,-1.63ZM44.7,586.19l0.0,0.03l-0.02,-0.02l0.02,-0.01ZM43.79,576.47l0.01,0.55l0.41,0.22l0.25,0.72l-2.45,1.26l-0.46,-0.61l0.42,-1.1l0.58,-0.58l0.33,0.23l0.91,-0.68ZM43.19,586.9l1.52,0.5l-0.57,2.32l-0.91,-1.6l-0.04,-1.22ZM43.67,542.2l-0.02,-0.54l3.49,-1.73l-0.29,0.57l-1.88,1.35l-1.29,0.35ZM47.09,655.52l-0.0,-0.0l0.0,0.0l-0.0,0.0ZM45.06,572.22l0.01,-0.26l1.32,-0.96l0.54,-0.79l-0.02,2.09l-0.45,0.54l-0.48,-0.44l-0.92,-0.18ZM45.54,652.69l0.48,-1.03l0.67,0.05l-0.21,1.74l-0.94,-0.76ZM42.91,600.73l0.86,-0.48l0.0,-0.68l1.03,-0.85l1.62,0.26l-0.41,0.91l-1.8,1.9l-0.26,1.2l-0.45,-0.18l0.48,-1.52l-0.25,-0.39l-0.83,-0.19ZM44.17,597.56l0.09,-1.02l1.12,-0.67l-0.62,1.32l-0.6,0.37ZM42.93,594.98l-0.27,-0.29l0.66,-0.51l1.36,0.6l-0.74,0.66l-1.01,-0.46ZM40.85,642.26l1.08,-0.1l0.35,-0.5l-0.76,-0.86l1.66,-0.07l0.6,0.8l-0.16,1.46l-0.84,2.36l-1.12,-1.08l-0.81,-1.99ZM41.8,608.09l0.21,-2.76l1.49,-0.67l-0.54,4.43l-0.27,0.14l-0.31,-0.88l-0.58,-0.25ZM41.66,575.26l-0.17,-0.45l0.43,-0.95l1.15,-0.67l0.48,-0.66l-0.96,3.17l-0.92,-0.42ZM41.46,591.43l0.36,-2.24l0.32,-0.39l0.56,0.41l-1.24,2.22ZM41.74,542.16l0.92,-0.2l0.04,0.0l-0.38,0.77l-0.43,-0.06l-0.15,-0.52ZM37.53,560.61l0.55,-1.25l-0.44,-0.75l0.81,-0.37l1.97,4.36l0.42,3.01l0.52,1.5l-0.36,-0.15l-0.56,0.32l0.21,0.68l1.21,0.77l0.49,2.16l-1.85,-0.28l-0.47,1.41l-0.33,-0.08l0.08,-2.41l-0.67,-0.3l-0.01,-0.77l-0.39,-0.29l0.51,-1.15l-0.55,-0.61l0.65,-1.04l-0.07,-1.15l0.49,0.07l0.29,-0.54l-0.67,-0.96l-1.34,-0.25l0.25,-1.11l-0.75,-0.82ZM38.34,563.69l-0.21,0.15l-0.18,-0.06l0.16,-0.11l0.23,0.02ZM40.27,619.3l0.43,0.03l0.07,0.55l-0.36,-0.48l-0.14,-0.1ZM40.3,551.24l0.12,-0.25l0.34,-0.21l-0.2,0.34l-0.26,0.12ZM39.08,583.26l0.32,-0.4l-0.37,-1.6l0.38,-0.35l1.34,4.3l-0.73,1.53l0.04,-0.56l-0.52,-0.33l-0.24,-0.74l0.25,-0.48l-0.48,-1.36ZM40.19,553.88l0.01,-0.26l0.12,-0.15l0.17,0.38l-0.3,0.03ZM39.62,574.23l-0.2,-0.65l0.25,-0.22l0.56,2.86l-0.15,0.8l-0.46,-2.8ZM39.02,635.94l0.02,-0.04l0.01,0.01l0.01,0.02l-0.04,0.01ZM36.21,544.7l1.15,-1.7l0.93,0.78l-0.43,0.41l-1.65,0.51ZM33.6,556.26l0.03,-0.04l0.04,0.11l-0.07,-0.07ZM35.18,554.73l1.69,-0.53l1.0,0.03l0.49,1.68l-0.08,0.84l-1.9,1.13l-0.24,-0.64l0.9,-0.73l1.05,-0.05l0.12,-0.89l-1.57,-0.46l-0.97,1.11l-0.49,-1.49ZM37.4,573.38l0.12,0.1l0.17,0.59l-0.22,-0.3l-0.08,-0.39ZM36.87,545.99l0.21,-0.1l0.08,0.57l-0.17,-0.08l-0.13,-0.39ZM33.01,562.11l0.45,-0.71l0.44,0.35l2.97,4.84l0.38,1.23l0.13,3.3l-0.25,0.6l-0.43,-0.49l-0.68,0.22l-0.32,-0.23l-0.16,-1.77l-0.4,-0.51l0.19,-1.05l-0.74,-1.58l-0.88,-0.66l-0.14,-1.69l0.83,0.06l0.05,-0.47l-0.38,-0.48l-0.81,-0.17l-0.26,-0.79ZM35.28,560.82l1.21,-0.39l-0.0,0.61l0.71,0.77l-0.5,1.33l-1.33,-1.39l-0.08,-0.93ZM35.19,550.83l0.11,-0.11l0.25,0.66l0.06,0.42l-0.02,0.03l-0.4,-0.99ZM34.15,557.75l0.07,-0.0l0.18,0.16l-0.1,-0.01l-0.15,-0.16ZM9.84,550.6l0.56,-0.73l-0.34,-1.08l0.55,-0.31l-0.19,-0.75l0.35,-0.76l-0.16,-0.44l-0.84,-0.46l0.61,-0.4l-0.14,-1.49l1.11,-1.19l1.07,-0.61l0.26,-1.37l0.58,-0.41l0.48,0.21l0.85,1.24l1.68,0.51l0.52,0.74l-0.59,1.0l-1.51,0.56l-0.15,0.93l0.45,0.24l1.2,-0.21l0.91,-0.87l1.59,-0.25l0.82,0.23l-0.08,1.47l0.46,0.65l-0.55,1.2l-0.03,0.89l-1.04,0.24l-0.77,0.6l-1.16,-0.38l-1.19,0.26l-1.88,-0.55l-0.69,0.16l-0.22,0.72l0.48,0.25l-0.34,0.68l0.37,0.25l0.64,-0.2l0.41,0.47l-0.58,0.53l0.12,0.66l1.16,-0.18l1.19,0.41l0.59,-0.22l-0.01,-0.33l0.42,0.39l1.12,-0.49l0.42,-0.55l0.03,-0.95l2.06,-1.36l0.52,-2.22l1.91,0.69l2.51,-0.26l-1.47,1.94l-2.71,1.83l-1.05,1.61l-1.12,1.05l-0.97,1.7l-0.98,2.73l-1.3,1.07l-2.45,-0.68l-1.45,0.19l-0.26,0.35l-0.76,-0.09l0.12,-0.64l-0.62,-0.26l-0.03,-1.19l-0.55,-0.7l0.58,-0.16l0.29,0.34l0.67,-0.29l0.49,1.19l0.47,-0.1l0.52,-0.81l-0.54,-1.31l0.03,-0.74l-1.03,-0.96l0.24,-0.95l-0.5,-0.14l-0.15,-0.89l-0.81,0.17l-0.01,-0.71l-0.41,-0.21l0.23,-0.49ZM9.85,555.26l-0.19,-0.06l0.1,-0.07l0.09,0.13ZM9.44,560.12l0.24,-0.21l1.31,0.75l0.85,-0.12l2.31,1.14l2.04,-0.47l1.05,0.28l-0.5,0.93l0.59,1.0l0.25,1.28l-1.54,-1.24l-1.76,-0.62l-0.57,0.44l0.37,0.62l-0.2,0.95l0.68,0.28l0.86,-0.5l1.49,1.66l-0.45,0.79l-0.76,0.28l-0.9,-0.41l-0.18,-1.12l-0.63,-0.6l-0.48,-0.02l-0.27,0.61l-0.8,0.34l0.23,0.56l0.9,0.22l-0.5,0.59l0.23,0.86l-0.5,0.27l0.18,0.46l-0.4,0.34l0.15,0.65l0.73,0.48l-0.01,0.77l-0.39,0.59l0.2,0.99l-0.33,0.71l0.48,0.81l0.85,0.61l0.26,0.91l-0.47,0.44l-0.27,-0.82l-0.63,-0.34l-0.04,-0.94l-1.42,-2.66l0.04,-1.57l-0.69,-1.7l0.25,0.6l0.93,0.52l0.5,-1.36l-0.8,-2.18l-0.42,-0.18l-0.44,1.1l-0.51,0.25l-0.27,-1.27l0.33,-0.73l-0.53,-1.08l0.47,0.02l0.37,0.75l0.75,0.24l1.15,-1.14l0.01,-0.46l-0.77,-0.42l-0.27,-0.67l-1.12,-0.88l-1.25,-0.42l0.01,-0.97ZM13.9,576.84l0.45,1.27l-0.16,1.27l0.48,0.48l-0.35,0.26l-0.21,-0.49l-0.51,0.1l0.0,-1.11l-0.43,-1.2l0.19,-0.51l0.54,-0.07ZM15.24,580.53l0.03,0.01l-0.01,0.03l-0.01,-0.04ZM15.34,580.96l0.09,0.21l-0.08,0.07l0.01,-0.07l-0.02,-0.2ZM16.25,581.78l0.28,0.15l0.16,-0.01l-0.23,0.19l-0.21,-0.33ZM15.76,580.3l0.02,-0.36l0.45,-0.11l0.18,0.59l-0.65,-0.13ZM13.22,576.78l-0.13,-0.08l0.01,-0.05l0.07,0.08l0.04,0.06ZM14.76,571.47l0.03,0.04l0.11,0.01l-0.16,0.04l0.02,-0.08ZM15.47,571.73l0.28,0.02l0.58,-0.26l-0.53,0.92l-0.33,-0.67ZM15.38,583.56l0.03,-0.12l0.17,-0.25l0.1,0.28l-0.3,0.09Z", "name": "British Columbia"}, "CA-SK": {"path": "M225.69,715.55l44.18,-197.52l18.32,3.88l18.79,3.56l18.86,3.14l18.53,2.67l-10.31,77.69l-4.77,62.93l-4.14,60.98l-24.87,-3.43l-25.58,-4.15l-25.48,-4.77l-23.53,-4.98Z", "name": "Saskatchewan"}, "CA-QC": {"path": "M567.62,485.44l0.69,-0.35l1.22,-1.38l0.77,-0.25l0.36,-0.96l0.97,-0.76l0.27,-0.74l0.58,0.53l2.0,-0.0l0.62,0.3l1.01,-0.12l0.29,-0.35l0.52,0.33l1.36,0.02l1.33,0.78l4.43,0.81l0.54,0.69l1.41,-0.28l1.21,0.56l1.62,0.15l-2.04,2.18l-0.04,0.45l0.41,0.2l0.89,-0.29l1.91,-1.82l0.65,-1.14l1.15,-0.5l1.34,0.24l0.05,0.73l0.58,0.36l0.59,-0.85l0.34,-0.05l1.02,0.44l1.5,1.4l2.15,0.56l0.33,-0.61l-1.98,-1.25l0.01,-0.69l2.64,-0.51l0.86,-0.91l0.26,-0.75l0.94,-0.12l1.32,-1.11l0.87,-2.05l1.31,-0.53l1.15,1.47l1.19,0.35l0.52,-0.22l0.64,0.65l0.96,0.14l0.29,0.88l1.68,1.33l1.17,0.26l-0.17,0.57l0.4,0.22l1.41,-0.03l0.47,-0.47l-0.15,-0.37l0.81,0.4l-0.2,0.61l0.51,0.53l0.3,1.1l-0.56,0.47l0.08,1.04l-0.66,1.38l0.44,0.57l0.83,-0.56l0.79,0.64l0.53,-0.47l-0.63,-1.88l3.32,0.52l0.44,0.74l-0.33,0.83l0.18,0.7l0.58,0.3l0.9,-0.37l0.72,0.84l-0.4,1.12l-1.28,-0.01l-0.5,0.49l-0.18,0.9l0.26,0.43l0.87,-0.75l1.25,-0.02l1.04,-0.53l0.24,-1.94l1.99,0.45l0.69,0.44l0.2,0.37l-0.4,0.55l-1.78,0.57l-0.14,0.57l0.97,0.88l-0.76,0.45l-0.18,0.55l0.32,0.31l1.45,0.09l-0.94,0.39l0.28,0.79l1.22,0.1l-0.28,0.74l1.22,0.54l-0.03,0.8l0.66,0.28l0.18,0.79l0.8,-0.09l0.33,-0.64l1.12,0.98l0.99,-0.79l0.6,0.52l1.4,-0.43l0.74,0.15l0.5,0.74l0.71,-0.18l0.81,0.24l0.43,-0.47l0.47,0.74l1.44,0.04l0.35,-0.56l0.58,0.08l0.35,-0.57l-0.15,-0.4l0.41,0.03l0.32,-0.57l0.55,0.26l0.57,-0.38l0.07,1.05l0.81,0.83l0.16,0.92l-0.39,0.69l2.73,1.17l0.45,-0.16l0.4,-0.75l0.08,-0.41l-0.34,-0.21l0.4,-0.68l0.66,0.54l0.86,-0.68l-0.68,-2.21l0.06,-0.99l0.33,-0.34l1.51,2.44l0.52,0.3l0.4,1.74l-1.41,1.11l-1.13,1.65l0.92,2.18l-1.1,0.78l-0.09,0.74l0.87,0.87l0.02,0.89l0.62,0.66l-0.12,1.26l1.77,1.39l-0.18,0.58l0.53,0.46l0.08,1.44l-0.54,0.35l-0.99,-0.08l-0.3,0.57l0.18,0.81l-4.27,0.38l-0.4,0.62l-1.76,0.56l-0.74,-0.34l-3.44,-0.33l-0.61,0.35l-0.13,0.45l5.04,1.01l3.25,-0.87l1.86,0.27l2.59,-0.97l-0.3,0.59l0.22,0.42l1.77,0.38l0.01,1.39l0.52,0.47l-0.55,0.91l0.16,0.57l1.33,0.37l-1.61,2.91l0.06,0.7l1.1,0.62l0.39,1.15l-0.82,0.74l0.18,0.82l0.46,0.28l1.17,-0.26l1.62,-1.44l0.55,0.66l0.56,-0.01l0.34,-0.36l-0.03,0.58l0.45,0.63l-0.8,-0.28l-0.46,0.51l-0.53,0.06l-0.81,1.55l0.26,1.09l0.79,0.46l-0.25,0.37l1.14,2.89l-0.58,0.4l0.05,1.35l-0.49,0.33l-0.49,-0.84l0.22,-0.95l-0.66,-1.13l-0.57,-0.43l-0.48,0.12l-0.91,-1.17l-0.58,0.12l0.06,2.25l0.87,0.28l0.21,0.84l-0.57,-0.02l-0.26,0.58l0.23,0.42l-0.29,0.25l-2.52,1.17l-0.21,0.87l0.94,-0.12l1.69,0.39l0.53,-0.37l0.36,0.88l0.63,0.06l0.18,0.98l1.09,0.56l0.4,-0.44l0.42,-1.7l0.54,-0.43l0.13,-1.06l1.01,-0.85l0.68,-1.61l0.85,-0.69l2.19,-0.57l0.33,0.32l0.95,-0.15l0.89,-0.97l1.52,0.08l1.32,0.78l0.88,0.01l0.51,0.48l0.04,1.21l0.72,0.68l0.12,1.31l0.33,0.36l0.51,-0.0l0.16,0.94l0.7,0.12l0.37,1.11l-0.21,3.72l0.23,2.19l-1.06,1.95l-1.79,0.76l-2.23,1.57l-0.7,1.09l-0.84,0.55l-1.72,2.92l0.14,0.52l0.53,-0.1l2.0,-2.81l1.3,-1.2l4.27,-2.54l0.58,-0.65l0.7,-1.85l-0.28,-1.57l0.36,-0.98l-0.29,-4.95l1.07,-0.41l0.69,0.21l0.1,1.64l1.01,1.56l-0.09,0.85l-1.33,2.38l-0.05,1.72l0.8,0.14l0.86,-1.54l0.16,-1.47l0.76,-0.94l0.25,-1.37l0.18,0.62l0.59,-0.02l0.28,0.44l-0.08,1.85l0.62,1.26l-0.06,2.52l0.55,0.49l0.46,-0.09l0.17,-0.53l-0.29,-0.92l0.35,-1.3l-0.49,-1.15l0.31,-1.98l0.61,-1.14l0.91,-0.3l0.35,-0.94l0.9,-0.54l0.29,-0.59l0.5,0.12l0.47,-0.31l0.04,-1.07l0.39,-0.47l0.2,-1.13l0.04,0.46l1.0,0.7l0.33,-0.34l0.21,-1.22l1.61,-0.49l-0.07,-0.59l-0.37,-0.26l-0.06,-2.48l0.18,-0.83l0.73,-0.52l-0.43,-1.82l0.35,-0.31l2.75,1.46l0.75,1.14l1.4,0.34l-0.27,1.87l0.65,1.73l-0.65,1.08l0.58,0.91l0.6,-0.1l0.1,-1.07l0.51,-0.52l0.2,-1.18l-0.72,-0.62l0.36,-1.47l0.51,-0.25l-0.14,-0.64l-1.71,-1.57l-0.68,-0.02l-0.34,-0.94l-0.56,-0.26l0.14,-0.8l1.69,-0.26l0.57,-0.67l-0.23,-0.75l-1.62,-0.02l0.72,-0.57l0.04,-0.9l1.36,0.75l0.56,-0.32l-0.22,-0.92l-0.88,-0.47l0.13,-0.44l0.74,0.42l1.38,0.14l0.2,-0.65l-1.0,-0.55l1.84,-0.07l0.57,-0.69l-0.61,-0.52l-0.82,0.16l-1.08,-0.38l-0.63,0.1l-0.23,0.69l-0.95,-1.14l-0.01,-0.81l0.84,0.46l0.2,-0.45l-0.24,-0.65l0.85,-0.88l-1.22,-1.3l1.63,1.03l0.55,-0.07l0.1,-0.59l-1.2,-1.2l-0.05,-0.28l0.48,-0.3l-0.16,-0.44l-0.91,-0.42l0.54,-0.42l1.03,-0.08l2.03,1.08l1.18,-0.2l-0.25,-0.68l-0.92,-0.24l-1.33,-0.96l-2.27,-0.15l-2.07,-3.34l1.18,-2.17l2.75,0.77l0.74,-0.15l0.3,-0.5l-0.46,-0.43l-0.62,0.05l-1.47,-0.61l0.56,-0.4l-0.37,-1.02l0.63,-0.24l0.02,-0.27l-0.36,-0.54l0.15,-0.35l-0.71,-0.61l0.57,-0.58l0.06,-0.53l-0.34,-0.44l0.35,-0.19l0.07,-1.44l0.58,-0.41l0.89,0.4l0.89,-0.34l0.39,0.53l-1.02,0.44l0.27,0.84l-0.4,0.38l-0.84,-0.14l-0.37,0.57l1.18,1.74l1.8,0.19l-0.78,0.63l0.2,0.82l-0.36,0.51l0.87,2.23l-0.75,0.93l0.47,2.03l2.65,1.87l0.66,-0.24l1.57,-1.91l0.5,0.0l-1.08,1.6l0.23,0.51l-0.15,0.85l0.38,0.4l-0.08,0.78l0.52,0.83l0.04,1.04l1.29,1.97l1.23,0.09l0.68,0.63l-0.81,0.42l-2.04,-0.22l-0.84,-0.51l-0.77,0.2l-0.59,0.81l-0.17,0.88l0.35,0.78l-0.07,0.91l1.07,0.25l0.82,-0.83l1.66,0.6l2.33,-0.62l0.77,1.65l1.34,0.35l0.65,-0.29l0.91,-1.59l1.27,-0.51l0.48,-1.09l1.59,0.27l1.03,0.92l-0.89,0.81l-2.37,0.8l-1.68,1.44l0.04,1.65l0.55,0.89l0.98,0.39l1.01,-0.96l0.71,0.98l-0.14,0.45l-1.12,0.52l-0.29,1.21l-0.96,0.91l0.08,2.13l-1.14,0.87l-0.33,0.66l0.25,2.27l0.5,0.37l1.8,-0.09l0.3,1.0l2.7,3.39l0.56,-0.0l0.58,-0.81l0.57,0.97l1.02,0.63l0.76,-0.34l0.6,0.55l0.41,-0.14l-0.62,0.77l-0.13,0.97l0.59,1.97l0.91,1.19l-0.87,1.11l0.05,1.7l0.3,1.0l0.42,0.3l0.5,-0.32l0.29,0.98l-0.57,1.26l0.37,1.37l-0.09,1.2l0.45,0.67l-0.83,0.91l0.33,1.16l-0.69,0.61l-0.13,1.26l0.51,0.91l2.2,1.68l0.45,1.27l0.6,0.23l-2.46,0.56l-0.19,0.75l0.85,0.7l0.19,1.47l0.64,0.58l0.6,0.17l0.75,-0.34l0.9,0.25l-0.99,1.19l0.5,1.88l0.58,0.09l0.63,-0.75l1.2,0.69l1.14,-0.35l1.0,0.23l-2.1,2.25l1.47,2.03l0.77,0.2l0.02,2.05l0.99,0.42l0.36,1.7l-0.62,1.08l0.27,0.57l0.66,0.38l1.05,-0.03l2.92,-0.53l-2.12,1.18l0.07,0.69l-0.64,0.99l0.65,0.88l1.04,0.04l-0.05,2.55l0.73,1.52l0.13,1.13l-1.66,-0.28l-0.67,0.59l0.03,1.27l0.42,0.78l-0.49,1.16l2.22,1.59l-0.85,0.47l-0.3,0.56l-1.32,0.31l-0.54,-0.17l-1.23,-1.25l-2.72,-0.77l-1.01,0.33l-0.68,1.32l-1.58,0.36l-0.16,-1.07l-0.49,-0.52l-0.72,-0.12l-1.42,-1.13l-2.0,-0.07l-0.79,0.82l-0.24,1.58l-1.25,0.77l-0.89,-0.08l-0.42,0.43l0.62,1.64l-1.32,0.02l-0.53,0.59l-1.52,-1.14l-0.99,-1.61l-1.43,-0.05l-0.64,0.43l-0.99,-0.62l-1.36,-0.25l-4.27,-3.5l-0.61,-0.23l-0.64,0.17l-0.47,-0.73l-1.18,-0.43l-0.73,0.29l-0.13,0.78l1.96,1.57l-0.33,0.61l0.16,1.5l1.48,1.67l-0.4,0.37l0.0,0.74l1.8,2.02l-0.78,0.36l-0.09,0.75l-2.18,-0.7l-1.04,-1.33l-3.24,-1.24l0.21,-0.69l-0.37,-0.47l-1.37,-0.14l-0.77,0.94l0.53,1.47l2.45,2.55l2.18,1.29l0.17,0.64l-0.33,1.07l-0.93,1.21l0.43,1.21l-2.53,-1.23l-0.58,0.72l0.43,1.34l-1.2,0.47l-0.92,1.29l0.35,1.81l0.81,0.68l0.94,1.62l-1.07,1.38l0.14,2.16l0.93,0.8l1.58,0.7l0.42,0.94l0.89,0.37l-0.55,0.67l0.11,0.46l2.28,1.12l0.45,0.99l1.09,1.0l3.48,0.25l1.45,1.05l-0.51,0.43l-0.26,0.85l0.81,1.19l0.55,3.0l-0.44,-0.3l-0.56,0.14l-0.51,-0.32l-1.25,-0.05l-0.57,0.34l-0.85,1.35l1.34,3.66l0.69,0.73l1.96,0.6l0.65,-1.08l0.53,1.3l1.29,0.57l1.21,1.09l0.65,-0.53l0.66,0.04l0.3,-0.4l-0.32,-1.38l0.47,-0.18l0.52,-0.84l-0.32,-2.27l1.05,-0.72l0.36,-1.36l0.41,0.21l1.24,1.77l-0.61,-0.09l-0.45,0.41l0.02,0.51l1.73,2.71l-0.57,0.1l-0.27,0.72l1.77,4.37l-0.82,0.29l-0.25,1.19l2.25,3.25l1.07,-0.02l0.54,-0.72l-0.7,-1.91l0.45,0.59l1.47,0.59l0.23,1.26l1.38,0.53l1.88,-1.27l1.03,0.07l0.4,-0.31l-0.01,0.83l0.47,0.85l0.72,-0.11l0.22,-0.71l0.47,-0.13l0.38,-0.63l0.96,0.97l0.54,0.12l0.06,1.28l0.97,1.21l0.43,0.14l0.35,-0.88l0.95,0.41l0.4,0.8l1.35,0.12l0.48,-0.26l0.86,0.35l0.68,-0.28l0.41,-0.93l0.77,-0.07l0.95,0.4l1.82,1.61l1.03,0.12l1.75,-2.13l0.33,-1.42l-0.4,-1.03l-0.64,-0.53l-0.98,-2.33l0.8,0.1l0.37,-0.37l-0.72,-2.43l0.81,-0.28l0.1,-0.35l-1.38,-2.34l0.39,-1.72l-0.28,-1.5l1.51,1.38l1.13,0.13l0.97,-0.31l0.05,0.48l1.12,0.98l1.44,2.53l-1.28,-0.17l-0.48,0.73l0.86,0.91l0.81,0.19l35.0,-11.1l35.06,-12.54l3.42,9.02l-0.66,0.13l-0.44,-0.94l-0.67,-0.15l-1.97,1.23l-0.78,1.05l-0.46,-0.27l-0.62,0.77l-0.72,-0.49l-2.68,4.19l-1.64,1.25l-0.33,-0.76l-0.67,0.01l-0.29,0.38l0.18,0.75l-1.43,-0.17l-1.06,1.39l-0.66,-0.03l-0.6,1.15l1.14,1.19l-3.26,3.83l0.13,0.45l0.55,0.21l0.66,1.48l0.15,1.62l-0.21,0.42l-0.41,-1.85l-0.81,-0.1l-0.06,1.92l-0.36,0.95l-0.77,0.21l0.1,0.68l-0.54,1.09l-0.77,0.56l-0.1,1.51l0.82,0.48l-0.9,0.18l-0.48,1.41l-2.17,1.52l-0.5,1.77l0.65,0.77l-1.2,1.54l-0.92,0.48l-0.19,-0.56l-0.52,-0.21l-0.83,0.61l-0.45,-0.29l-0.34,0.3l0.03,0.63l-2.0,0.63l-0.71,0.9l-0.41,-0.49l-0.86,0.79l-1.54,-0.22l-0.9,1.3l-1.2,0.11l-1.38,1.11l-1.59,0.4l-2.2,1.67l-0.63,-0.58l-1.77,1.59l-0.17,-0.43l-1.33,-0.85l-3.94,1.02l-1.36,-0.41l-0.92,0.13l-0.55,0.57l-2.59,0.63l-0.63,-0.4l-2.2,1.18l-1.14,-0.17l-0.36,0.63l-1.34,0.39l-0.01,0.84l-1.47,0.35l-0.61,0.76l-0.93,-0.54l-1.25,0.49l-1.4,-0.41l-1.32,0.12l-2.04,0.78l-1.49,1.15l-2.1,0.27l-1.44,-0.27l-1.88,1.28l-2.61,0.93l-0.5,-0.13l-3.04,0.83l-1.08,-0.29l-4.94,2.56l-1.0,0.22l-1.65,-0.17l-0.78,1.42l-0.61,-0.13l-0.27,0.96l-1.18,-0.13l-1.06,0.6l-0.93,-0.98l-0.82,0.24l-0.65,1.05l0.01,1.01l-0.52,-0.18l-0.47,0.48l0.13,0.41l-0.84,2.13l-1.39,0.87l-0.47,0.69l-0.22,2.67l-0.62,0.01l-0.53,0.64l-0.24,1.65l0.46,1.24l-0.35,2.17l0.49,1.83l-0.9,2.3l-3.83,1.33l-0.72,0.8l-2.58,0.41l-0.47,0.63l-0.65,0.25l-0.13,1.04l-1.18,0.45l-0.43,0.49l0.89,0.68l0.68,-0.07l-0.1,0.23l-1.15,0.54l-0.93,-1.34l-0.63,-0.14l-0.38,0.24l0.64,1.28l-1.75,1.61l-0.34,0.95l0.1,0.8l-0.4,0.33l-0.04,0.54l-0.9,0.37l-1.58,2.08l-0.07,0.56l-0.93,0.62l-0.27,3.11l-1.0,0.53l-0.2,2.46l-1.09,3.18l-1.31,1.32l-0.7,1.78l-1.29,0.07l-2.38,-1.59l-1.96,0.45l-3.06,-1.17l-0.79,0.36l-2.96,0.12l-0.98,-0.53l-2.8,0.0l-1.08,0.61l-0.17,0.52l0.51,0.2l0.91,-0.32l1.95,0.32l-0.74,0.24l-0.2,0.65l0.77,0.75l1.42,-0.87l2.94,-0.67l1.57,0.19l2.55,0.95l0.86,-0.0l0.74,-0.43l0.87,0.13l1.43,1.22l1.11,0.06l-0.84,6.13l-0.83,1.47l-1.18,1.08l-0.46,1.37l-0.01,1.67l-2.8,1.65l-0.56,3.67l-0.87,2.54l-2.49,2.27l-2.19,3.43l-0.38,1.32l-0.97,1.01l-1.31,0.36l-2.8,1.73l-2.2,0.19l-1.25,1.7l-2.41,1.49l-0.16,1.61l-2.13,1.58l-1.37,2.11l-2.7,1.13l-1.71,1.34l-0.11,1.93l-1.55,0.98l-0.71,3.28l-0.88,1.17l-0.56,1.5l-0.69,0.71l-2.07,0.72l-0.98,0.8l-1.49,2.83l-1.29,1.09l-1.0,0.07l-0.96,-0.57l-1.35,0.32l-1.09,-0.65l-3.72,-0.87l-1.32,0.65l-2.06,0.27l-1.33,0.98l-2.82,0.84l-3.47,2.28l-1.13,0.4l-0.89,1.45l-0.7,0.24l-2.82,-1.86l-1.12,-0.09l-1.21,0.37l-0.91,1.01l-1.48,-0.68l-2.37,-0.38l-1.36,-2.43l-0.7,-0.56l-0.56,-1.82l-0.58,-0.48l-0.97,-0.11l-0.77,0.39l-0.17,0.53l0.27,0.96l-0.43,0.18l-2.91,-1.28l-0.7,-0.73l-0.29,-1.03l-1.0,-0.93l-4.14,-1.81l-3.41,-0.5l-1.54,0.14l-0.92,-0.32l-2.43,0.26l-0.44,-0.35l-4.48,-0.36l-0.53,-0.87l-1.89,-1.07l-0.93,-0.91l-0.79,-1.71l-1.17,-1.1l-1.06,-2.0l-1.81,-1.73l-1.98,-2.57l-0.54,-3.25l-1.96,-2.87l0.5,-2.68l-6.88,-58.56l1.67,2.7l0.76,-0.3l-0.21,-1.21l-2.42,-2.91l-1.05,-9.24l-0.4,-0.97l1.8,-2.07l0.51,0.3l-0.23,0.86l0.18,0.89l0.51,0.29l1.45,-0.36l1.17,0.94l1.18,3.03l-0.22,0.62l0.21,0.67l0.85,0.87l1.17,0.02l-0.03,-0.46l-0.89,-0.97l-0.02,-0.97l0.72,-1.43l-0.66,-0.48l0.75,-1.26l0.88,-0.26l0.24,-0.67l-0.67,-0.43l-0.75,0.08l0.06,-1.28l-0.27,-0.56l-1.49,-0.66l-0.25,-0.73l-0.98,-0.95l0.9,-0.11l1.02,-1.09l0.05,-0.63l-0.75,-1.16l1.4,-0.7l0.51,-1.39l0.54,-0.46l-0.09,-0.35l0.52,-0.43l0.47,-1.86l-0.26,-0.68l1.06,0.09l0.47,-0.44l-0.67,-0.78l-0.95,-0.09l0.35,-0.97l-0.4,-0.71l-0.02,-1.5l-0.67,-1.13l-0.57,-0.36l-1.4,-0.03l0.3,-0.73l-0.41,-0.8l-0.52,-0.15l-0.21,-1.16l-0.4,-0.45l0.77,-0.58l-0.29,-0.88l0.45,-0.68l-0.35,-0.62l-1.54,0.32l-0.13,-0.75l0.56,-0.12l0.27,-0.63l-1.0,-0.9l-0.91,0.22l0.28,-0.57l-0.53,-0.64l0.46,-2.68l-0.15,-0.59l-0.61,-0.4l-0.31,-2.06l-0.59,-0.93l-0.48,-0.2l0.67,-0.5l-0.08,-0.59l0.39,-0.84l-1.06,-1.01l-0.2,-1.12l-0.42,-0.26l-0.19,-0.72l0.14,-1.17l1.02,0.28l0.35,-0.65l-0.54,-0.57l-1.21,-0.13l0.54,-0.95l-0.65,-1.0l0.45,0.02l0.34,-0.63l-1.92,-1.3l0.6,-1.33l-0.13,-0.66l-0.87,-0.07l-1.12,0.54l-0.95,-0.41l0.44,-0.49l-0.07,-0.54l-1.53,-0.25l0.1,-0.3l-0.97,-1.33l0.4,-0.7l-0.53,-0.38l-0.9,-1.95l0.19,-0.91l-1.37,-0.81l-0.23,-0.46l1.54,-1.19l5.33,-2.46l0.81,-1.11l4.85,-2.88l2.24,-2.4l3.59,-2.98l0.9,-1.87l4.86,-6.16l0.42,-1.3l-0.39,-0.24l2.32,-4.01l0.23,-1.05l1.12,-1.18l0.75,-4.99l-0.05,-2.28l-0.87,-6.87l-1.23,-4.49l0.01,-1.63l-2.06,-5.25l-2.04,-3.63l-0.28,-1.28l-4.3,-5.9l-1.39,-1.17l-0.78,-0.16l-1.14,-0.88l-0.4,-0.99l-1.54,-1.0l-1.03,-0.16l-3.19,-1.36l-0.2,-0.78l-2.67,-1.45l-1.67,-1.88l-1.36,0.49l-0.0,-0.63l0.73,-0.62l0.04,-0.39l-0.65,-0.92l0.23,-0.9l-0.81,-1.89l0.57,0.26l0.39,-0.48l0.6,0.38l0.49,-0.32l0.62,-1.55l-0.37,-0.94l0.62,-0.27l0.02,-0.5l0.62,-0.7l-0.09,-0.62l0.36,-0.61l-0.21,-0.71l2.29,-1.62l0.54,-1.13l-0.19,-0.69l0.75,-0.42l-0.01,-0.71l-1.56,-0.39l-0.32,-0.57l1.18,-1.28l-0.12,-1.72l-0.72,-0.58l0.21,-0.23l0.57,0.33l0.79,-0.25l0.67,0.46l0.31,0.97l0.49,0.39l1.39,0.04l0.36,-0.45l-0.36,-0.46l-0.94,-0.2l-0.33,-1.13l-0.7,-0.94l0.5,-0.95l1.08,-0.14l0.32,-0.38l-1.09,-2.19l0.03,-0.71l1.09,-1.12l-0.29,-0.33l0.53,-0.69l-0.47,-0.56l-0.98,0.55l-0.62,-0.45l-0.68,0.43l-1.06,-0.02l-0.01,-0.6l1.22,-0.14l0.38,-0.57l-1.31,-0.85l0.4,-0.29l-0.01,-0.58l-0.77,-0.7l-0.01,-0.46l-0.57,-0.12l-0.65,-1.3l-0.95,-0.49l0.22,-0.81l0.9,-0.89l0.26,-0.75l0.98,-0.13l0.22,-0.69l-1.49,-0.49l-1.22,0.52l-1.2,-1.06l1.53,-2.14l0.06,-0.6l-0.31,-0.29l0.94,-0.68l0.15,-0.5l-0.49,-0.33l-0.46,0.11l-2.27,1.59l-0.48,-0.97l-0.38,-0.1l-2.14,0.94l0.57,-1.71l1.68,-2.74l0.64,-0.51l-0.06,-1.78l0.69,-0.82l-1.13,-4.31l0.44,-0.09l0.26,-0.6l1.05,-0.69l-0.19,-0.58l-0.8,-0.32l-0.14,-0.28l1.27,0.24l0.34,-0.62l-1.23,-1.2l-1.15,-0.05l-0.92,-1.42l-0.4,-0.2l-1.2,0.32l-0.39,-0.41l-1.11,-2.83l-0.33,-1.76l-0.47,-0.63l-0.63,-2.88l-0.22,-2.36l0.82,-1.83ZM578.66,653.17l-0.12,0.05l-0.03,-0.04l0.16,-0.0ZM653.23,787.08l0.57,0.5l3.84,0.59l0.65,0.96l-1.84,0.63l-0.63,1.13l-1.28,0.94l-1.51,-1.14l0.21,-3.62ZM655.71,541.57l0.05,-0.09l0.04,0.01l-0.05,0.06l-0.03,0.02ZM627.44,494.8l0.16,-0.06l-0.08,0.05l-0.09,0.01ZM639.87,499.16l-0.07,-0.04l0.04,-0.08l0.0,0.0l0.03,0.12ZM657.55,533.31l0.42,-0.03l0.38,-0.21l-0.29,0.53l-0.52,-0.29ZM677.38,543.7l-0.22,-0.37l-0.25,-1.11l0.12,-0.83l0.33,0.21l0.01,2.1ZM692.95,521.88l-0.28,-0.07l-0.05,-0.23l0.17,0.12l0.17,0.18ZM695.38,499.78l-0.07,-0.73l1.02,0.21l-0.33,0.12l-0.61,0.4ZM696.49,499.23l0.14,-0.3l0.34,0.14l-0.21,0.11l-0.26,0.05ZM721.26,553.36l-0.0,-0.22l-0.06,-0.42l0.12,0.17l-0.05,0.47ZM742.73,637.67l-0.85,-1.13l0.13,-0.56l-0.38,-1.24l0.31,-0.77l3.61,-2.12l0.56,-0.95l0.65,0.74l1.75,0.43l0.64,0.45l-4.79,2.12l-1.11,1.37l-0.52,1.66ZM572.37,551.69l-0.04,-0.14l0.05,-0.08l-0.01,0.22ZM809.57,639.69l0.11,-0.18l0.38,-0.14l-0.2,0.29l-0.28,0.03ZM794.09,718.58l-0.04,-0.31l0.4,-0.4l-0.02,0.55l-0.34,0.16ZM794.11,720.88l0.12,0.06l0.23,0.03l-0.4,0.14l0.05,-0.23ZM752.09,684.41l2.22,-1.3l0.33,-0.48l0.8,-0.2l2.39,0.31l9.66,-0.79l1.99,0.19l0.97,0.49l4.51,0.38l2.02,1.34l1.7,0.1l1.03,0.67l2.25,-0.21l0.97,0.38l0.65,-0.24l3.15,2.43l-0.18,0.63l-0.76,0.74l-0.8,0.01l-3.99,1.56l-3.11,-0.31l-2.11,0.44l-4.99,-0.03l-2.56,-0.78l-3.42,-0.22l-1.45,-1.91l-1.85,-1.13l-2.25,-0.76l-4.73,-0.57l-1.03,-0.61l-0.56,0.46l-0.85,-0.6ZM652.77,796.2l1.34,-1.08l0.39,-1.15l0.65,-0.66l1.25,-0.55l0.72,-0.75l1.87,-0.62l1.13,-1.84l1.23,-1.03l0.36,-0.7l0.42,-0.27l1.68,-0.02l0.58,-0.4l0.23,-0.76l-0.52,-1.46l0.53,-1.33l-0.16,-1.71l2.17,-3.82l0.22,-2.72l1.14,-0.54l1.06,-1.39l1.11,-0.26l1.41,-0.99l0.62,-0.82l-0.01,-0.71l1.62,-2.24l2.48,-1.6l0.65,-2.03l1.89,-1.12l1.43,-2.03l1.02,0.35l0.9,-0.13l4.53,-3.0l1.05,-1.01l0.42,-1.1l1.5,-0.46l1.15,-1.15l0.63,-0.03l0.89,-0.57l0.51,-0.89l2.15,-1.52l1.37,-2.26l1.5,-3.92l1.24,-1.36l0.34,-2.36l1.01,-1.11l2.88,-5.88l-0.06,-1.18l0.74,-1.92l1.24,-0.99l2.35,-4.3l2.12,-2.93l1.07,-0.44l1.94,-2.19l0.49,-1.23l1.02,-0.65l1.4,-1.96l0.8,-0.4l0.61,-0.88l1.14,-0.46l4.04,-3.95l1.4,-0.62l7.96,-6.62l4.17,-2.69l3.7,-1.3l3.37,-1.7l6.91,-1.06l1.71,0.07l1.4,0.5l2.0,0.2l3.47,1.52l1.16,0.82l0.25,0.86l-3.4,-0.34l-0.76,0.51l0.72,0.48l-0.21,0.46l0.39,0.43l1.21,-0.43l0.13,0.75l1.3,0.11l1.86,1.14l-0.66,0.55l-0.03,1.06l1.11,0.79l-0.8,0.71l-0.09,0.96l-2.1,1.13l-1.87,1.54l0.22,0.72l-0.3,1.78l-1.19,0.78l-0.79,0.12l-0.01,1.14l-2.76,2.81l-1.46,0.58l-1.02,-0.61l-3.52,-0.21l-1.24,-0.56l-0.26,-0.76l-0.44,-0.22l-0.88,1.05l-0.73,1.72l-2.23,0.29l-0.47,0.51l-2.04,0.13l-0.59,0.63l-0.03,0.61l-3.97,2.56l-0.27,0.53l0.12,0.86l-1.26,-0.06l-1.13,1.05l-1.76,0.33l-0.23,0.65l-2.65,-0.67l-0.29,-0.8l-0.46,-0.22l-5.82,1.45l-0.29,0.48l0.2,0.82l-2.69,0.66l-0.29,0.48l1.44,6.32l-1.36,2.4l-2.11,1.81l-2.77,1.73l-0.24,-1.66l-0.38,-0.42l-2.14,-0.15l-0.61,0.32l-6.09,15.23l0.29,5.14l-1.15,1.5l-0.55,2.85l0.72,1.19l-0.55,0.98l0.29,1.98l0.87,0.77l-1.38,2.38l0.31,1.46l-1.62,1.31l-1.12,2.01l-0.21,1.82l1.32,1.03l-1.1,-0.43l-0.86,0.3l-0.28,0.85l0.29,1.45l-0.3,0.49l-0.57,-0.85l-0.81,-0.24l-1.42,1.3l-0.39,0.92l-1.68,-0.48l-0.78,0.32l-1.19,1.38l0.52,0.71l-0.6,3.08l-37.01,7.26ZM688.69,755.58l1.98,-2.71l0.28,-0.13l-0.38,1.07l-1.88,1.77ZM678.73,541.82l0.47,0.85l0.01,0.82l-0.46,-0.42l-0.01,-1.24ZM659.52,786.99l0.49,-0.72l1.79,-0.99l0.73,-1.75l0.81,-0.99l-0.31,2.22l0.19,1.04l-0.4,0.6l-2.32,-0.04l-0.98,0.62ZM662.23,534.23l0.01,-0.03l0.04,-0.02l-0.01,0.02l-0.04,0.03ZM659.87,785.06l1.03,-1.6l0.72,-0.51l-0.63,1.6l-1.12,0.51ZM659.17,532.29l1.64,-0.18l0.38,0.44l-1.32,2.15l0.08,-1.38l-0.78,-1.02ZM657.0,790.9l0.16,-0.25l0.88,-0.1l-0.46,0.23l-0.58,0.13Z", "name": "Qu\u00e9bec"}, "CA-PE": {"path": "M771.47,732.39l0.78,1.7l-0.78,1.88l0.13,0.82l0.7,0.47l0.77,-0.11l1.39,1.0l0.16,0.9l0.72,0.15l-0.07,0.8l-0.55,0.52l0.16,0.77l0.73,-0.04l0.43,-0.45l0.61,0.64l1.57,-0.16l0.33,-0.53l-0.67,-1.6l0.46,-0.19l1.51,0.13l0.16,0.47l1.06,0.44l0.4,-0.34l0.06,-0.62l0.61,-0.01l0.57,0.69l1.37,0.46l0.37,-0.51l3.75,-1.24l0.36,0.19l0.78,-0.8l2.11,-0.31l0.32,-0.51l-0.27,-0.27l0.62,-0.28l3.82,-1.4l1.87,-0.25l-1.8,2.01l-0.64,-0.34l-0.48,0.1l-0.02,0.49l-0.53,0.01l-0.31,0.51l0.32,0.48l-0.52,0.2l0.22,0.56l-1.05,0.36l0.24,0.7l0.64,0.06l-1.37,0.0l-0.4,0.32l-0.04,0.89l0.32,0.64l0.6,-0.02l0.16,0.53l0.44,0.19l0.71,-0.13l0.01,0.35l-0.58,0.3l-0.49,0.84l1.06,0.39l-2.58,1.13l-0.78,0.02l-0.99,-0.6l0.09,-0.49l-0.46,-0.25l0.36,-1.16l-0.25,-0.3l-0.71,-0.03l-0.92,-0.59l-0.52,0.49l-0.71,-0.1l1.06,-1.86l-0.51,-0.53l-0.94,0.65l-0.69,1.16l-1.06,0.01l0.29,0.75l-0.86,1.0l0.76,0.51l-2.98,-0.56l-1.4,0.5l-0.82,-0.15l-0.7,-0.68l-0.92,-0.25l0.82,-0.41l-0.92,-1.1l-1.18,0.33l-1.26,-0.1l-0.64,0.6l-1.36,0.25l0.2,-0.26l-0.39,-1.49l0.35,-0.94l-0.78,-1.42l-0.79,0.92l-1.22,-0.25l-1.58,0.61l-0.34,-0.51l0.16,-1.21l0.8,-1.45l0.1,-1.5l1.48,-2.6Z", "name": "Prince Edward Island"}, "CA-MB": {"path": "M325.95,732.99l4.14,-61.02l4.77,-62.91l10.31,-77.66l33.82,3.81l33.89,2.47l0.12,3.64l-0.6,2.66l0.36,1.51l-0.19,0.95l0.53,1.44l-0.02,2.2l-0.6,0.92l-0.31,3.26l-1.34,-0.06l-0.7,0.81l0.06,0.47l1.76,-0.06l0.29,0.93l0.76,0.46l0.02,0.76l-0.66,1.78l0.17,0.48l1.42,-0.82l0.96,1.03l0.53,2.0l0.68,0.28l1.11,-0.56l0.27,0.59l-0.57,0.66l-0.54,1.46l0.08,2.65l-0.51,0.99l-0.4,3.24l0.38,0.24l0.36,-0.27l1.44,-3.28l0.06,-3.8l0.85,-1.47l0.24,-1.36l2.39,0.3l1.61,-0.55l1.33,0.57l0.49,-0.15l0.27,1.01l0.73,0.31l1.0,-1.02l0.84,-0.08l0.28,0.31l0.16,4.18l1.69,5.63l0.69,1.0l0.49,1.81l0.25,4.64l0.43,0.18l1.03,2.86l0.47,2.27l0.56,0.64l0.43,1.27l0.27,1.71l-0.38,2.25l-1.47,3.14l-1.12,1.66l-1.62,0.59l-0.12,0.73l0.53,0.19l1.46,-0.36l2.43,-1.98l1.57,-0.33l-1.98,1.87l0.57,0.37l1.28,-0.39l1.33,-1.17l2.64,-0.65l9.39,-3.63l4.27,0.65l1.73,0.78l0.4,0.66l3.05,1.73l1.07,1.04l5.02,1.58l0.98,-0.09l3.56,1.54l-49.25,55.9l-17.57,16.1l-4.09,69.07l-36.0,-2.67l-36.08,-3.9Z", "name": "Manitoba"}, "CA-YT": {"path": "M2.99,403.6l-2.51,-3.38l99.63,-158.54l0.21,0.56l0.59,0.12l2.17,2.22l1.13,0.76l0.8,-0.0l1.33,0.76l0.84,1.67l1.71,1.75l0.18,0.8l0.9,0.66l-0.07,2.09l0.76,2.03l-0.1,2.95l1.12,0.86l0.58,-0.27l-0.01,1.69l0.41,1.39l3.81,6.94l1.36,0.79l1.09,2.36l0.71,0.44l0.6,-0.15l0.59,0.28l-11.85,21.13l-0.58,1.5l0.84,1.37l-0.55,2.17l-1.23,1.62l0.21,0.92l-0.57,1.44l-0.9,1.03l-1.33,0.65l-0.13,0.76l-0.92,1.4l-0.22,1.31l0.22,0.46l14.41,7.82l-0.45,0.78l0.79,1.4l0.09,2.32l-1.18,1.06l0.08,1.17l-0.46,0.61l0.47,1.99l-0.93,0.4l-0.31,1.21l-0.91,0.0l-1.74,2.16l0.11,0.88l1.21,0.53l-0.01,0.56l-0.91,1.75l-0.98,0.23l-0.87,0.83l-0.04,0.65l0.36,0.38l-0.74,1.47l0.3,0.57l1.49,1.0l0.94,-0.39l1.38,-0.03l1.52,0.54l-1.27,1.1l-0.08,0.74l0.43,0.46l1.31,0.21l0.7,-0.73l1.51,-0.49l0.27,1.26l1.01,0.21l-0.11,0.35l-2.02,0.3l-0.77,0.87l0.78,2.27l-0.08,3.66l-1.05,0.38l-1.32,1.63l-2.41,0.94l-0.74,0.99l-0.74,-0.1l-0.75,0.49l-0.62,-0.17l-0.32,0.4l0.05,0.31l-0.45,0.35l0.12,0.71l0.48,0.56l1.11,-0.05l-0.7,1.31l0.47,0.8l0.7,0.35l-0.12,0.55l-1.75,0.48l-0.7,1.7l-1.2,0.2l-0.48,0.64l0.08,1.28l0.92,0.26l0.9,0.76l0.63,1.68l0.7,0.59l-0.01,2.15l0.36,1.15l0.86,0.91l-1.67,1.12l-0.58,0.81l0.17,0.6l1.11,0.22l0.54,0.79l1.97,-0.15l0.59,-0.58l1.23,1.28l0.19,2.0l-0.66,0.42l-0.05,0.59l0.42,0.43l-0.02,1.43l-0.84,0.83l0.15,1.37l-0.3,0.52l0.24,0.53l0.45,0.07l-0.34,1.28l0.97,1.72l0.43,0.17l0.51,2.07l0.96,1.36l0.59,0.27l-1.75,0.01l-0.68,0.79l0.29,1.13l1.16,0.11l-0.17,1.18l0.85,0.52l-0.24,0.43l0.35,0.78l-0.17,1.41l-0.92,0.4l-0.57,1.09l-2.07,0.18l-0.81,0.97l0.09,0.6l0.72,0.23l0.01,1.12l0.49,0.51l-0.28,2.33l0.67,0.92l0.88,0.18l-2.93,2.76l0.2,2.37l-0.35,1.22l0.54,0.92l-0.16,0.9l-0.8,0.25l-0.14,0.66l0.35,0.36l0.86,-0.02l1.19,2.39l-0.76,-0.12l-0.79,0.74l0.13,0.99l-1.0,0.81l-0.09,2.31l-0.77,0.19l-0.34,0.6l1.1,1.56l1.26,0.18l0.72,0.74l-0.12,0.81l0.63,0.7l0.68,-0.03l0.86,-0.64l0.77,0.31l0.61,1.96l-0.31,0.78l0.52,1.18l-0.24,1.87l0.43,0.56l0.66,0.07l0.03,1.48l-0.41,1.6l0.51,0.73l0.33,1.51l0.7,0.77l0.06,0.96l0.76,1.13l1.44,0.78l0.74,0.03l0.74,1.3l-0.3,1.16l0.27,0.71l-0.88,3.32l-0.53,1.02l-0.84,0.25l-0.34,0.51l0.21,1.0l1.01,0.01l-0.47,1.93l-0.85,1.61l0.11,0.5l-0.38,0.94l0.32,0.94l0.58,0.12l0.32,-0.28l0.2,0.69l0.55,0.36l1.68,-0.65l0.57,0.95l1.3,0.52l1.0,-0.29l0.28,-0.9l0.4,0.12l-0.02,1.03l1.01,0.6l1.48,-1.19l0.97,1.64l1.38,0.82l1.51,1.46l2.18,-0.54l2.61,0.89l0.53,-0.31l0.8,-1.34l1.56,0.69l-0.24,3.01l-1.54,0.79l-0.48,0.84l0.61,2.61l-0.27,1.75l1.61,0.99l-0.73,2.35l0.23,4.91l-0.86,1.08l-31.4,-13.07l-24.81,-11.37l-28.47,-14.24l-20.01,-10.81l-23.54,-13.6l-0.23,-1.48l3.03,-3.02l0.42,-0.84l-0.17,-0.52l-5.13,-2.69l-3.74,0.81l-2.48,-3.89l-0.63,-0.21l-1.12,0.73ZM110.73,248.92l1.12,-0.26l0.66,1.18l-0.77,-0.34l-0.9,0.49l-0.12,-1.07Z", "name": "Yukon"}, "CA-NB": {"path": "M711.48,743.21l4.88,-3.44l1.67,-2.57l0.18,-1.28l-1.33,-5.56l2.7,-0.66l0.29,-0.48l-0.2,-0.82l5.1,-1.27l0.53,0.94l2.39,0.41l0.8,0.58l0.47,-0.21l0.15,-0.93l1.52,-0.21l1.16,-1.07l1.52,0.15l0.31,-0.53l-0.28,-0.79l0.29,-0.55l1.78,-0.33l3.5,-2.52l0.93,0.83l6.82,0.46l2.26,2.96l-0.07,0.63l0.62,0.47l0.61,-0.23l0.36,-0.92l1.13,-0.52l0.93,-1.68l1.46,-1.45l1.26,-0.71l-0.15,0.55l0.56,0.45l2.56,-1.38l0.18,0.13l-0.47,0.17l-0.22,0.6l0.36,0.29l0.68,-0.06l0.18,0.35l-0.05,1.32l-0.62,1.42l0.01,0.67l0.32,0.28l-0.22,1.07l0.35,0.36l0.21,-0.13l-0.4,1.59l0.21,0.82l-0.7,0.42l-0.69,1.63l-2.18,2.49l-0.16,0.57l0.45,0.29l1.52,-0.31l0.68,0.45l1.67,-1.33l0.89,0.36l0.53,-0.7l0.76,-0.22l0.54,1.22l-0.66,1.4l0.02,0.78l0.73,1.41l0.99,0.87l-0.1,1.13l0.5,0.3l0.38,-0.48l1.0,0.13l0.34,1.71l0.66,0.61l-0.24,0.5l0.52,0.57l0.52,-0.05l0.45,0.39l0.13,0.89l-0.66,0.54l-0.06,0.5l0.85,0.13l1.11,-0.59l0.23,1.66l0.68,0.13l3.34,-1.09l0.8,0.2l0.6,0.61l2.16,-0.91l2.12,0.21l-0.9,0.93l-2.04,0.58l-0.16,1.18l0.45,0.3l-0.94,0.55l-0.72,2.11l-0.62,-0.3l-0.6,0.17l-0.53,2.15l-1.32,-1.94l-0.41,0.29l-1.5,-1.18l-0.75,-1.2l-0.75,-0.36l-0.5,0.13l0.0,0.7l0.78,0.43l0.31,0.82l2.11,1.76l-1.03,4.22l-0.55,-0.06l-1.15,0.56l-0.78,1.52l-3.32,2.75l-2.08,2.39l-0.16,0.67l-1.49,1.15l-0.37,0.73l-0.76,-0.01l-1.1,1.21l-0.67,-0.03l-0.51,-0.64l-1.07,-0.28l0.9,-1.59l-0.53,-1.41l-0.67,0.26l-0.52,1.78l-1.1,0.95l0.5,0.88l1.02,0.38l-0.32,0.86l-0.25,0.32l-0.66,-0.3l-0.87,0.23l-0.34,0.51l0.4,0.56l-0.93,1.21l-0.64,-0.76l-0.61,0.02l-1.86,1.85l-0.3,-0.18l-0.47,0.38l-0.44,-0.36l-0.7,0.47l0.01,-0.72l-1.71,-0.72l-1.11,0.89l-0.08,0.97l-0.82,-1.35l-0.99,-0.5l-0.4,0.72l-0.82,0.25l-0.21,0.76l-1.91,-1.39l0.1,-1.92l-1.18,-1.54l0.51,-0.73l-0.05,-0.9l-1.13,-2.02l-0.43,-0.24l-0.52,0.42l0.0,0.8l-0.82,0.1l-0.88,-0.24l-0.84,-0.76l-0.33,0.08l-0.57,-0.77l0.12,-0.88l-0.46,-0.63l0.25,-0.98l-0.49,-0.6l-5.26,-19.48l-1.95,-1.12l-0.85,-0.87l-3.83,-1.73l-1.37,0.38l-0.46,1.23l-1.34,0.2l-1.27,1.39l-1.3,0.46l-1.31,1.15l-1.79,-0.77ZM746.76,774.42l-0.04,0.04l-0.08,0.14l-0.05,-0.07l0.17,-0.12ZM759.75,722.25l-0.02,-0.05l-0.0,-0.01l0.06,0.02l-0.04,0.04ZM768.61,745.97l0.01,-0.09l0.03,0.05l-0.05,0.04ZM759.95,720.22l0.52,-0.55l0.13,0.24l0.67,-0.23l-0.55,1.43l-0.78,-0.88ZM760.94,717.95l0.09,-0.3l0.01,-0.4l0.08,0.22l-0.18,0.48ZM748.75,781.92l0.08,-1.46l0.26,-0.59l0.82,1.56l-1.16,0.48Z", "name": "New Brunswick"}, "CA-NL": {"path": "M818.51,688.98l0.02,-0.65l1.55,-2.42l0.25,0.55l0.81,0.32l0.32,0.49l-1.34,0.44l-1.61,1.27ZM822.14,686.92l0.09,-0.28l0.2,0.08l-0.17,0.14l-0.11,0.06ZM824.06,685.7l-0.48,-2.57l0.46,-2.92l-0.33,-2.45l0.29,-1.53l0.64,0.39l1.83,-0.8l1.87,1.03l1.74,-0.31l0.54,-0.42l-0.17,-0.68l-0.33,-0.09l-1.27,0.39l-0.99,-0.34l-0.8,-1.03l2.21,-0.76l0.51,-1.4l-0.15,-0.42l-1.2,0.28l-0.06,-1.04l-0.46,0.04l-0.9,0.85l-1.88,0.14l-0.72,-2.27l0.34,-1.43l0.85,-1.64l0.57,0.11l0.56,1.16l0.85,0.46l0.4,-0.21l-0.55,-1.14l1.54,0.3l0.73,-0.53l-0.21,-0.41l-1.37,-0.41l-0.81,-0.81l-0.39,0.46l-0.48,-0.37l-0.65,-0.73l-0.22,-0.95l0.7,-9.03l-0.38,-4.88l0.34,-3.49l1.45,-0.26l0.59,-0.82l-0.37,-0.63l-0.77,0.32l-1.17,-0.57l1.93,-2.2l0.89,-2.81l-0.04,-0.49l-0.83,-0.7l0.51,-0.65l-0.28,-0.74l0.12,-1.13l0.56,-0.76l-0.31,-0.81l0.31,-0.71l-0.58,-0.44l0.1,-1.04l1.77,-2.59l0.98,-0.65l0.55,-1.03l1.96,-2.1l1.26,-2.08l0.7,1.99l1.55,-0.57l1.29,0.01l0.54,-0.36l-0.19,-0.69l-0.68,0.01l-0.53,-0.64l1.05,-0.21l0.4,-0.84l0.83,0.67l-0.69,0.24l-0.09,0.7l0.95,0.36l0.12,1.05l-0.54,0.02l-0.23,0.43l0.17,0.57l-0.32,0.4l-1.78,0.19l-0.8,0.48l-0.87,-0.17l-0.09,0.38l-0.71,-0.26l-0.76,0.5l-0.18,0.5l0.23,0.79l1.02,0.19l-0.16,0.91l0.29,0.62l1.83,0.78l0.39,-0.72l-0.17,-0.2l0.64,-0.8l0.68,-0.1l0.33,0.14l0.57,1.72l-0.65,0.48l0.44,0.67l-0.13,2.25l-0.35,0.55l-0.42,2.53l-0.34,0.07l-0.49,-2.17l-0.61,-0.28l-0.62,0.97l1.07,2.9l0.9,0.67l-0.65,1.64l0.04,0.86l-0.52,0.2l-0.23,0.52l0.66,0.38l-0.55,1.91l-0.98,0.27l0.0,0.67l0.86,0.21l0.12,0.69l-0.14,2.05l-0.45,1.24l-0.66,0.34l0.38,0.68l-0.47,1.24l0.06,1.84l0.16,0.63l0.56,0.14l0.13,1.13l-0.97,1.75l0.39,0.54l1.22,-0.07l0.47,3.3l0.69,-0.49l1.16,-6.05l0.4,-0.71l0.41,0.36l0.66,-0.23l-0.28,-0.85l0.56,-0.14l-0.01,-0.46l-0.46,-0.58l0.05,-1.26l0.95,-2.77l0.79,0.59l-0.18,3.42l0.93,-0.5l0.35,-1.41l0.27,0.39l0.79,-0.35l-0.0,-1.09l2.77,0.99l0.52,-0.3l0.2,-0.82l1.5,-0.94l0.12,0.59l-0.79,0.7l-0.99,1.9l-1.97,2.24l-0.69,0.29l0.06,0.6l-0.91,2.21l0.11,0.9l0.23,0.31l0.67,-0.13l0.71,-2.13l0.29,-0.41l0.38,0.14l0.48,-0.37l-0.26,1.38l0.59,0.25l-1.46,2.03l-0.14,0.97l0.53,0.67l1.61,-2.04l1.09,-0.82l0.49,0.19l0.28,0.84l0.7,-0.29l0.98,0.89l0.59,-0.38l0.01,-0.84l0.32,0.99l0.71,-0.1l0.19,-1.95l0.14,0.34l0.64,0.15l-0.35,0.84l0.22,0.44l0.59,-0.23l0.39,0.34l0.4,-0.34l0.79,0.24l0.11,-0.88l0.52,1.06l-0.54,0.71l-0.39,1.61l1.03,0.85l-0.38,1.05l0.16,0.44l0.47,-0.01l1.02,-0.97l0.76,-1.31l-0.03,-0.45l-0.62,-0.17l-0.51,0.55l-0.18,-1.15l1.57,-2.16l-0.03,-0.34l0.08,0.26l-0.25,0.67l0.57,0.54l0.48,-0.42l0.22,-1.1l1.67,-0.42l0.54,-1.2l0.62,-3.99l0.28,1.33l0.59,-0.52l0.13,0.21l-0.03,0.91l0.61,0.59l0.21,1.34l0.63,0.12l0.57,-1.64l-0.32,-0.61l0.02,-0.96l0.85,-0.12l0.79,0.7l0.31,-0.71l0.44,-0.22l-0.06,-1.2l0.32,-0.27l0.74,0.28l0.93,-0.73l5.77,0.89l0.22,0.12l-0.4,0.97l0.1,0.98l-0.49,0.24l-0.08,0.56l0.81,0.8l-2.57,1.49l0.26,0.54l-0.46,0.33l0.09,0.67l0.91,0.29l-0.86,0.34l-0.29,0.46l0.16,1.13l-1.86,1.47l0.0,1.05l0.58,0.19l1.41,-1.37l0.14,0.84l1.0,0.06l0.81,1.47l0.56,0.03l-0.39,1.08l0.37,0.5l0.57,-0.21l0.18,-0.47l0.9,-0.32l0.19,0.33l-0.99,0.74l-0.86,1.43l-1.08,0.56l-0.4,0.85l0.24,0.61l0.68,0.47l0.61,-1.3l0.97,-0.42l0.54,-1.1l0.13,0.97l0.7,0.34l0.5,-0.39l-0.16,-0.43l0.31,-1.17l0.25,0.35l0.59,-0.13l0.5,-0.63l0.27,0.58l0.47,-0.2l0.67,-1.31l0.2,-1.29l-0.28,-1.66l0.91,0.0l0.34,0.73l1.22,0.06l0.94,-3.37l0.86,0.75l0.3,2.82l-0.8,1.71l-0.96,-0.15l-1.06,0.49l0.22,1.79l-1.26,1.56l-0.53,1.5l-1.45,0.06l-0.71,0.35l-1.06,-0.39l-0.47,0.35l0.06,0.97l1.35,1.88l2.18,-0.61l-1.93,0.8l-0.05,0.78l0.26,0.14l1.9,-0.22l1.17,-1.04l-0.06,1.61l-0.81,0.3l-0.23,0.53l0.85,0.23l0.02,1.22l-1.26,-0.75l-0.46,0.03l-0.38,0.51l1.88,1.64l0.16,0.78l1.51,0.96l1.58,0.42l0.29,0.84l1.71,-1.1l-0.32,-1.21l0.06,-1.67l-0.57,-0.88l0.05,-2.14l0.64,-0.69l-0.26,-0.35l0.09,-2.07l0.87,-1.15l1.04,-0.21l0.44,-0.84l0.28,-1.77l0.43,0.3l-0.37,0.49l0.02,1.96l-0.43,1.39l0.36,1.31l-0.62,2.4l0.77,1.14l-0.53,1.03l0.11,0.6l0.39,0.29l0.12,0.67l0.88,-0.04l0.12,0.97l0.54,0.75l0.8,-0.16l0.23,0.23l0.42,-0.3l0.19,-1.05l1.35,-2.65l0.07,-1.31l-0.52,-2.42l0.56,0.06l0.51,1.46l0.77,0.05l0.18,1.36l0.28,0.41l0.86,0.2l-0.46,0.7l0.54,0.67l-0.09,1.98l-0.49,0.38l0.6,3.82l-0.59,0.45l0.34,0.65l0.58,-0.04l0.26,0.34l-0.14,0.63l0.45,0.87l0.46,2.59l-0.57,1.29l0.07,1.4l-0.47,0.74l-0.67,-0.01l-0.83,-1.05l-0.69,-0.11l-0.33,0.68l-0.63,-0.3l-0.68,1.86l-0.83,1.01l-0.73,-0.66l-0.37,-1.76l0.15,-1.33l0.5,-0.85l-0.23,-0.4l-0.58,0.22l-0.01,-0.84l-0.4,-0.27l-0.25,0.21l-0.84,-0.22l0.05,-1.36l0.49,-1.07l-1.62,-1.32l-0.34,0.41l0.02,0.96l-0.33,-0.14l-0.27,0.39l-0.02,1.71l-0.56,0.67l-0.05,1.51l-0.38,0.42l-0.36,1.88l-0.68,1.14l-1.16,0.24l-0.47,-0.99l-0.17,-1.61l0.02,-4.34l0.67,-0.26l-0.1,-0.72l-0.82,-0.24l0.6,-0.51l0.23,-1.22l-0.41,-0.34l0.61,-0.71l0.06,-0.57l-0.72,-0.23l-0.68,0.24l-0.13,-1.19l-0.59,-1.2l-0.83,-0.46l-1.16,-1.94l-0.54,-0.14l-0.55,-0.83l-0.47,0.24l-0.91,-0.8l-0.33,0.87l-0.53,-0.45l-1.3,-0.03l-0.4,0.25l0.12,0.46l0.99,0.27l0.23,1.41l-0.06,1.15l-0.64,0.45l0.37,0.72l0.0,0.98l-0.69,0.17l-0.99,4.53l-0.43,-0.07l-0.29,0.77l-0.95,-0.73l-0.76,0.59l-0.92,4.35l-0.55,0.39l-0.21,0.76l0.74,0.35l0.45,0.78l-0.11,0.53l-0.72,-0.18l-0.34,0.36l0.47,1.39l-0.02,1.18l-0.43,0.51l-0.74,0.19l-0.02,0.81l-0.52,-0.04l-0.1,-0.43l-1.25,-0.24l-1.26,2.06l-1.9,0.6l-1.19,-0.1l-0.43,-0.32l0.46,-2.27l0.88,-0.9l0.97,-0.15l2.04,-1.75l0.09,-0.86l1.22,-2.28l-0.44,-2.39l0.42,-1.17l2.27,-1.82l0.82,-1.47l-0.27,-0.9l1.23,-1.84l-0.4,-0.26l-1.19,0.33l-0.89,1.52l-1.26,0.84l0.4,-2.8l-0.47,-0.74l-0.65,1.09l-0.31,2.16l-0.31,-0.33l-0.67,0.71l-1.79,0.09l-0.18,-0.55l-0.78,-0.22l-0.73,0.71l0.13,1.82l1.21,0.81l0.24,1.37l-1.1,0.92l-0.3,-0.1l0.04,-0.89l-1.08,-0.43l-0.8,1.48l-0.02,-0.52l-0.43,-0.31l0.06,-0.78l-0.47,-0.05l1.23,-1.4l0.05,-0.44l-0.83,-0.14l-1.53,1.71l-0.77,-0.1l0.47,-1.23l-0.08,-1.5l-0.38,-0.39l0.25,-1.59l-0.4,-0.79l-0.66,-0.19l-0.47,1.48l0.31,1.95l-1.11,1.09l-0.38,1.01l0.17,-0.88l-0.28,-0.45l-0.54,0.35l-0.79,-0.88l-0.46,-0.04l-0.13,0.71l0.63,0.81l-0.1,0.83l0.37,0.4l-0.54,1.27l-0.84,-1.65l-0.47,-0.24l-0.3,0.44l0.03,1.02l0.55,0.59l0.02,0.54l-3.57,1.08l-0.41,0.46l-0.25,-0.2l-0.62,0.22l0.13,0.75l0.6,0.46l-0.21,0.36l-1.15,0.21l-1.33,-0.26l-1.5,0.92l-0.14,-0.52l-0.61,-0.41l-0.53,0.36l-0.02,0.51l-0.92,0.57l-0.17,-0.69l-0.46,-0.16l-1.88,0.89l-0.5,-0.13l-0.77,1.11l-1.38,-0.43l-0.81,0.72l-0.79,-0.15l-0.02,-0.49l-0.44,-0.12l-0.56,0.26l-0.17,0.46l-0.9,-0.11l-0.81,0.33l-1.22,1.15l-0.87,0.03l0.41,-1.32l-0.5,-0.16l-1.15,0.85l-0.09,1.71l-1.35,0.05l-0.62,1.11l-0.56,0.12l-0.42,0.57l-2.33,0.82l-1.98,1.48l-1.19,0.13l-0.86,-0.32l-0.49,-2.11l-2.24,-2.02l0.77,-0.74l0.91,-2.53l1.76,-2.24l0.33,-1.2l1.47,-2.58l0.19,-1.52l1.72,-1.6l0.36,-1.23l1.28,-0.84l0.14,-0.68l-0.91,-0.21l-2.2,1.29l-0.93,-0.35l-1.05,0.22ZM875.13,662.15l0.01,-0.05l0.03,0.05l-0.03,0.0ZM877.64,662.72l0.01,0.0l-0.0,0.01l-0.0,-0.01ZM877.66,662.95l0.18,0.25l-0.68,1.05l-0.32,0.16l0.81,-1.47ZM877.92,687.46l0.03,0.05l-0.04,0.02l0.01,-0.07ZM861.06,691.62l-0.07,0.12l-0.12,0.06l0.18,-0.18ZM860.09,692.51l-0.48,0.59l-0.29,-0.1l0.05,-0.05l0.72,-0.44ZM879.41,666.37l0.09,-0.58l0.24,-0.6l0.19,0.13l-0.51,1.05ZM875.09,662.02l-0.1,-0.13l0.04,0.02l0.06,0.11ZM856.72,657.08l-0.75,-1.19l0.46,-0.02l0.19,-0.64l0.34,0.61l-0.23,1.24ZM855.6,655.59l-0.04,-0.03l0.02,-0.02l0.02,0.05ZM854.13,657.17l0.0,-0.25l0.09,-0.07l-0.09,0.32ZM880.24,671.96l0.93,-0.43l1.21,0.01l1.03,-1.19l0.17,0.15l0.06,0.96l-1.69,0.33l-1.01,0.54l-0.41,0.04l-0.3,-0.41ZM880.32,686.11l0.4,-1.02l-0.02,0.88l-0.39,0.14ZM880.62,683.25l-0.08,-0.03l0.05,-0.13l0.03,0.15ZM865.39,648.04l0.38,0.42l0.68,-0.29l0.06,-1.23l0.98,0.8l-1.68,1.99l-0.42,-0.78l0.29,-0.24l-0.3,-0.67ZM859.7,652.85l0.19,-0.17l0.32,0.44l-0.25,-0.18l-0.25,-0.09ZM860.59,653.19l0.24,-0.05l0.02,0.23l-0.08,0.03l-0.18,-0.21ZM861.93,651.82l-0.05,-0.37l0.49,-0.4l0.03,0.24l-0.48,0.53ZM862.01,654.42l0.02,0.04l-0.01,0.11l-0.04,-0.08l0.03,-0.06ZM859.28,690.2l0.8,-0.57l0.4,0.51l-0.91,0.12l-0.29,-0.06ZM850.54,655.73l0.16,0.11l-0.16,0.24l-0.04,-0.3l0.04,-0.05ZM850.65,657.07l0.03,-0.01l-0.01,0.06l-0.01,-0.05ZM843.73,636.57l0.01,-0.34l0.77,-0.76l-0.19,0.87l-0.6,0.23ZM838.16,616.02l0.06,-0.8l0.21,-0.21l-0.04,0.83l-0.22,0.19ZM696.03,500.29l-0.19,0.36l0.37,0.59l0.59,-0.17l0.69,-0.86l0.89,0.17l-0.49,0.97l0.49,0.51l0.6,-0.2l0.44,-0.59l0.13,0.27l-0.65,0.85l0.07,0.57l-0.32,0.09l-0.24,-0.83l-0.68,-0.71l-1.19,0.27l-0.74,-0.45l-0.13,-0.43l0.35,-0.4ZM697.84,503.41l-0.02,0.02l-0.01,-0.01l0.03,-0.01ZM697.69,505.53l1.21,-1.47l1.28,-0.58l0.14,0.33l-1.01,0.24l-0.3,0.44l0.4,0.35l1.15,0.15l0.07,0.3l-0.82,0.92l0.28,0.56l0.53,-0.01l1.02,-0.87l0.17,-0.72l0.96,0.23l-0.44,0.91l0.49,0.27l0.45,-0.14l0.19,0.94l-0.7,0.47l0.16,0.63l1.68,1.31l1.17,-0.26l-0.32,2.55l0.34,0.66l0.43,-0.19l0.54,-1.08l-0.12,-1.02l0.48,0.08l-0.4,1.24l0.15,0.56l0.69,0.11l0.53,-1.32l1.06,0.31l-0.12,1.5l-2.03,0.86l-0.29,0.46l0.21,0.67l3.15,-0.37l0.01,1.37l-0.41,0.6l0.59,0.39l0.97,-0.82l0.15,-1.71l0.59,-0.14l0.26,1.19l-0.58,1.28l1.1,0.04l0.62,-0.88l-0.04,0.62l0.48,0.37l0.27,-0.15l-0.12,0.81l-0.67,0.47l-0.28,0.63l-1.18,0.73l-2.49,0.28l-0.46,1.71l0.57,0.27l0.62,-0.56l0.67,1.05l0.66,0.02l0.23,-0.46l-0.46,-0.94l1.05,0.08l0.71,-0.62l1.2,-0.33l0.42,-0.72l0.62,-0.27l0.13,-0.68l0.27,-0.01l0.57,0.35l-0.5,0.14l-0.28,0.5l0.44,0.41l0.58,-0.02l-0.22,0.99l0.25,0.41l0.66,-0.37l0.35,0.16l-0.84,1.07l0.06,0.67l0.65,0.1l0.66,-0.36l0.73,0.45l0.4,-0.35l0.12,-0.76l1.44,0.52l0.21,0.76l-0.92,1.11l0.53,0.58l1.41,-0.58l0.12,0.47l-0.41,0.55l0.04,0.61l-1.06,1.02l-0.67,1.25l-1.48,0.58l-0.62,-0.22l-0.6,0.4l-0.46,1.24l0.53,0.15l1.22,-0.6l-1.46,3.18l-0.05,0.31l0.52,0.44l0.57,-0.34l0.91,-1.39l0.93,-2.23l1.0,-0.4l-0.29,1.33l0.62,0.69l0.61,-1.64l0.69,-0.01l0.43,-0.88l0.55,-0.31l0.96,-0.01l0.21,-0.69l1.05,-0.57l-0.44,1.25l0.84,1.88l-0.67,0.73l-1.34,0.68l-0.14,1.17l0.37,0.5l-1.45,0.73l0.01,0.72l0.31,0.11l-1.25,1.46l0.46,0.55l-1.25,1.18l0.44,0.58l2.18,-1.11l0.09,-1.23l0.86,-0.89l0.16,-0.72l0.77,-0.03l1.16,-0.66l0.72,0.04l0.34,-0.45l0.3,0.01l0.37,1.03l0.55,0.25l0.4,-0.75l0.95,0.44l-0.18,0.32l-1.47,0.33l-0.95,1.54l-0.01,0.73l0.73,-0.07l0.49,-0.71l0.78,-0.42l0.74,1.54l0.56,0.1l1.0,-1.67l0.35,0.37l0.62,-0.39l0.02,-0.85l0.6,0.72l-0.34,1.3l0.43,0.73l0.35,0.27l1.01,-0.06l0.69,0.78l0.0,0.5l1.04,0.58l-1.38,1.23l-0.03,0.93l-1.56,0.45l-0.27,1.54l-2.01,-0.32l-0.25,0.64l0.19,0.24l2.15,0.88l0.91,-0.28l1.09,-1.06l1.22,-0.19l1.37,0.3l0.32,0.13l-0.52,0.68l0.65,0.3l0.26,0.8l-0.99,0.53l-0.19,0.63l0.33,0.32l1.36,0.18l0.3,0.5l0.46,0.19l0.41,-0.24l0.29,0.29l0.55,-0.51l0.62,0.17l1.44,-0.59l1.45,0.33l0.47,1.67l-0.97,0.45l-0.38,0.54l-0.62,1.94l0.28,1.04l-1.07,0.77l-0.71,-0.04l-0.49,0.33l0.61,2.02l-0.36,0.42l-4.73,-0.44l1.24,-0.79l2.21,-0.68l0.25,-0.4l-0.81,-0.5l-2.68,0.68l-0.55,0.44l-1.09,-0.08l-0.49,0.41l-0.22,0.99l0.36,0.64l5.05,0.99l-0.89,0.22l-0.25,0.62l0.41,0.27l2.62,-0.18l1.27,-0.49l0.93,0.2l0.56,-0.25l0.51,0.28l-0.61,0.54l-2.81,0.49l-0.54,0.59l-0.28,1.41l0.28,0.15l3.06,-0.22l-0.02,0.33l0.96,0.46l-1.37,0.94l-1.09,-0.04l-0.34,0.31l0.16,0.76l1.04,0.73l1.03,0.18l0.56,-0.43l1.61,-0.1l0.97,-0.6l0.76,0.2l1.48,-0.96l-0.21,1.32l0.55,0.37l-0.55,0.77l0.19,0.56l-0.32,1.03l1.47,0.69l1.52,-0.61l0.48,0.14l0.6,-0.57l0.58,0.38l-0.9,0.49l-0.01,0.65l1.33,0.47l1.7,-0.86l1.74,-0.31l0.19,0.44l-0.41,0.75l-1.47,0.65l0.21,0.67l0.56,0.25l1.92,-0.77l0.6,-1.24l0.51,0.98l-0.38,0.75l0.46,0.66l-0.14,1.23l0.53,0.45l0.76,-1.77l-0.15,-3.1l0.55,0.28l0.58,-0.15l0.03,1.06l-0.91,0.91l0.04,1.48l0.37,0.32l0.88,-0.92l0.01,1.78l0.23,0.41l0.67,-0.3l-0.55,1.03l0.37,0.82l-0.09,0.75l0.19,0.41l0.45,-0.03l0.38,-0.45l-0.04,0.62l-0.71,1.04l0.03,1.21l-0.46,0.73l0.1,0.53l0.54,-0.05l0.6,-0.86l-0.04,1.0l-1.17,1.98l0.49,1.28l0.46,-0.28l0.75,-1.92l0.56,-0.54l0.07,-1.09l0.71,-0.41l0.51,-1.51l0.42,-0.38l0.23,0.96l0.46,-0.14l0.34,-0.75l-1.12,3.19l0.36,1.06l0.43,-0.19l1.32,-2.78l0.27,-1.92l0.88,-0.36l0.44,-1.72l0.57,0.65l0.15,0.72l-0.78,1.12l-1.06,0.4l0.32,1.13l0.6,0.06l0.26,-0.54l0.49,0.27l0.7,-0.11l0.51,-0.9l1.02,-0.03l0.78,-1.05l0.58,0.28l-0.89,2.37l-0.9,1.04l0.17,0.63l-0.8,1.49l0.45,1.26l-0.65,1.0l0.16,0.62l0.34,0.14l0.59,-0.18l0.88,-1.1l0.11,-0.44l-0.51,-1.33l1.2,-1.77l0.91,-2.17l0.7,0.94l0.65,-0.15l0.89,-1.39l0.02,-0.96l1.26,-0.4l0.1,-0.99l0.4,0.04l-0.18,2.03l0.4,0.39l0.53,-0.33l0.65,0.29l-0.61,1.49l0.48,0.25l0.67,-0.26l0.5,0.69l1.28,-0.46l0.4,0.59l0.5,-0.01l0.19,-0.47l1.24,-0.04l0.63,0.43l0.66,-0.44l0.75,0.44l0.57,-0.32l-0.19,-0.82l1.25,-0.48l0.78,0.67l1.47,-0.42l0.48,0.28l1.19,-0.94l1.0,0.75l0.52,-0.08l0.79,0.49l1.29,-0.43l0.73,-0.65l0.99,0.79l-0.17,0.61l0.69,0.2l-0.04,0.32l-2.3,0.88l-0.54,0.51l0.43,0.75l1.45,-0.47l-0.65,1.12l-2.36,0.59l-2.86,1.73l-0.63,1.34l0.44,0.77l-1.94,1.14l-2.0,2.4l-1.59,0.57l-4.59,3.5l-1.34,0.21l-0.64,0.52l0.02,0.77l1.19,0.5l2.35,-1.12l2.03,-1.52l-0.03,0.33l0.48,0.25l0.63,-0.16l-0.41,0.6l-1.83,1.13l-2.0,2.67l-3.76,0.96l-0.45,0.5l0.12,0.58l-1.41,1.11l-0.58,-0.13l-0.44,0.59l1.0,0.75l0.06,1.7l0.69,1.02l-2.41,-0.59l-0.94,-0.59l-4.79,-0.39l-0.75,-0.8l-0.69,0.12l0.27,1.24l-0.38,0.97l0.35,0.59l3.26,-0.69l2.18,0.3l2.27,0.89l2.17,0.4l-2.62,2.84l-0.04,0.56l0.42,0.43l1.55,-0.45l-1.4,0.94l-0.16,0.6l0.52,0.24l1.28,-0.51l1.07,-0.9l0.83,0.15l0.31,-0.75l-0.36,-0.5l0.63,-0.65l1.03,-2.52l0.66,-0.33l0.1,-0.42l-0.29,-0.31l2.55,-1.52l1.37,-2.76l2.28,-1.07l0.51,-1.11l-0.06,-0.62l-0.83,-0.68l1.21,-2.08l0.03,-0.87l1.65,-1.1l3.13,-2.92l0.65,-0.2l0.71,-0.92l3.25,-0.59l0.5,-0.7l-0.75,-0.57l-1.61,0.39l-0.9,-0.18l-1.58,0.38l-0.92,1.24l-0.95,-0.28l0.12,-0.9l0.83,-0.25l0.42,-0.75l1.74,-0.64l1.03,0.17l3.07,-0.76l0.56,0.29l1.2,-0.93l0.61,0.24l2.07,2.23l1.09,0.59l0.42,1.18l1.26,0.49l0.19,1.3l-2.9,3.24l-0.18,0.91l0.21,0.41l0.46,-0.06l0.59,-0.61l0.22,0.2l0.93,-0.29l-0.02,0.42l0.6,0.43l-0.23,1.53l0.2,0.42l1.35,-0.49l-0.04,-1.08l0.95,-1.53l-0.33,-1.29l0.42,-0.53l0.28,-1.75l1.09,-0.23l1.33,-0.99l0.54,0.16l-0.82,0.48l0.48,0.52l3.41,-0.05l0.69,-0.42l0.14,0.42l0.98,-0.09l0.42,0.67l2.36,0.28l0.81,0.69l-0.23,0.59l0.4,0.5l0.62,-0.17l0.39,-0.76l0.32,0.03l0.39,1.44l0.81,-0.21l-0.26,0.48l0.62,0.6l-0.11,0.35l1.23,0.68l-0.27,0.64l-1.18,0.06l-0.27,0.53l0.93,0.4l-0.08,0.69l-1.31,0.15l-1.04,0.54l-0.19,0.5l0.8,0.26l-0.06,0.62l0.53,0.27l0.46,-0.21l0.28,-0.66l1.23,-0.2l0.16,0.52l0.76,0.12l0.73,0.83l-1.35,1.01l-0.27,0.56l-1.53,0.04l-0.22,0.59l0.6,0.55l1.24,0.16l1.33,0.9l-1.49,0.4l-0.08,0.83l1.44,-0.22l-0.31,0.65l-1.3,1.06l-0.9,-0.23l-1.9,0.25l-0.72,0.58l1.1,0.55l1.07,-0.29l1.16,0.14l1.45,-0.77l1.42,0.1l1.44,-0.55l0.41,0.23l0.54,-0.28l0.55,0.73l0.79,-0.3l0.34,0.7l-0.59,-0.18l-0.89,0.32l-0.04,0.72l-3.99,-0.27l-0.33,0.07l-0.2,0.68l0.76,0.49l1.66,-0.13l3.09,0.67l-0.07,0.54l0.86,0.9l0.62,0.06l0.47,0.89l-0.87,0.56l0.07,0.61l0.36,0.2l-0.14,0.29l-0.46,0.42l-0.96,0.1l-0.08,0.73l0.85,0.4l0.06,0.39l-1.6,1.97l-0.54,1.51l-1.26,0.78l-0.15,0.74l-0.6,0.22l-0.16,0.9l-0.71,1.15l-0.99,0.55l0.07,1.34l-0.68,1.28l0.03,0.76l-1.14,0.3l0.15,1.24l-0.9,0.27l-3.54,-9.36l-0.52,-0.23l-35.41,12.67l-33.8,10.74l0.05,-0.71l-1.71,-2.85l-0.93,-0.79l0.17,-0.44l-0.26,-0.43l-0.57,-0.17l-2.03,0.31l-1.48,-1.45l0.43,-1.47l0.91,-1.14l5.09,-2.36l-0.1,-0.81l-0.51,-0.48l-2.37,-0.8l-0.52,-1.28l-0.71,-0.03l-0.65,1.67l-3.72,2.2l-0.52,1.08l0.25,2.29l0.94,1.3l0.63,1.63l-0.34,2.5l1.11,1.86l-0.71,0.77l0.46,1.83l-0.26,-0.16l-0.61,0.33l-0.03,0.86l1.07,2.64l0.95,1.12l-0.28,1.2l-1.36,1.67l-2.01,-1.64l-1.2,-0.53l-1.37,0.13l-0.6,0.43l-0.11,0.65l-0.7,-0.33l-1.5,0.25l-0.26,-0.68l-1.34,-0.66l-0.91,0.41l-0.65,-2.06l-0.56,-0.04l-1.76,-1.75l-0.47,1.36l-0.62,0.28l-0.14,-1.04l-0.55,-0.3l-0.78,0.57l-1.11,-0.03l-1.48,1.15l-0.74,-0.14l-0.37,-1.35l-1.5,-0.62l-1.48,-1.26l-0.59,0.71l0.97,2.25l-0.39,0.26l-1.9,-2.81l0.14,-0.41l0.65,0.06l0.45,-0.5l-1.85,-4.51l0.79,0.47l0.52,-0.62l-2.23,-3.68l0.93,0.01l0.19,-0.47l-0.3,-0.96l-1.31,-1.69l-0.94,-0.54l-0.71,0.24l-0.33,1.54l-1.2,0.9l0.32,2.45l-0.99,0.76l0.12,0.82l-0.46,-0.14l-0.4,0.68l-1.6,-0.89l-0.58,-1.5l-0.53,-0.23l-0.83,0.6l-0.18,0.61l-1.19,-0.46l-0.46,-0.49l-1.24,-3.1l0.86,-1.04l1.84,0.33l0.27,0.57l0.51,0.13l0.73,-0.59l-0.62,-3.99l-0.75,-0.9l0.86,-1.08l-0.07,-0.6l-1.94,-1.38l-3.37,-0.19l-0.94,-0.86l-0.61,-1.14l-1.84,-0.88l0.38,-0.32l-0.13,-0.89l-0.91,-0.33l-0.67,-1.14l-2.25,-1.26l-0.04,-1.47l1.12,-1.64l-0.29,-0.92l-1.56,-1.71l-0.31,-1.14l0.71,-0.9l1.24,-0.55l0.24,-0.41l-0.29,-1.34l2.27,1.18l0.51,-0.25l0.16,-1.0l-0.42,-0.67l0.84,-0.98l0.41,-1.56l-0.43,-1.17l-2.25,-1.33l-2.3,-2.41l-0.36,-0.8l0.26,-0.35l0.6,0.08l-0.17,0.56l0.35,0.57l3.3,1.27l0.58,0.94l0.85,0.58l2.47,0.67l0.61,-0.26l0.01,-0.8l0.55,-0.25l0.23,-0.92l-1.85,-2.05l0.48,-0.97l-1.58,-1.83l-0.09,-1.14l0.41,-0.65l-0.39,-0.66l0.69,-0.18l4.57,3.66l1.4,0.26l1.2,0.7l0.87,-0.48l0.92,0.0l0.76,1.43l2.24,1.56l0.63,-0.76l0.84,0.15l0.8,-0.4l0.36,-0.71l-0.49,-1.05l1.58,-0.47l0.57,-0.59l0.63,-2.12l1.49,0.03l1.4,1.15l0.66,0.07l0.18,0.96l0.59,0.71l2.31,-0.49l0.85,-1.46l0.41,-0.06l2.36,0.71l1.03,1.13l0.93,0.34l1.77,-0.35l0.82,-0.97l0.55,0.1l0.47,-0.4l-0.12,-0.72l-0.96,-0.96l-1.38,-0.65l0.52,-0.98l-0.48,-0.98l0.04,-0.82l1.45,0.33l0.84,-0.52l-0.13,-1.6l-0.86,-2.36l0.09,-1.19l0.78,-0.5l0.29,-0.69l-0.05,-0.51l-0.56,-0.32l-1.26,0.84l-0.77,-0.14l0.82,-0.63l0.01,-0.71l1.65,-0.79l0.19,-0.89l-0.24,-0.56l-0.47,-0.2l-3.07,0.68l-1.07,-0.12l0.58,-1.08l-0.44,-2.05l-0.27,-0.45l-0.62,-0.18l-0.16,-1.95l-0.87,-0.34l-1.22,-1.39l1.23,-0.85l0.84,-1.18l1.0,-0.54l0.24,-0.48l-0.23,-0.57l-0.51,-0.1l-1.3,0.63l-1.02,-0.23l-1.02,0.35l-0.43,-0.32l0.01,-0.64l-0.54,-0.29l-1.12,1.1l-0.15,-0.79l0.91,-0.83l-0.03,-1.01l-1.08,-0.55l-1.33,0.31l-0.42,-0.42l-0.02,-0.84l-0.5,-0.95l1.38,-0.28l0.91,-1.01l-0.23,-0.5l-0.76,-0.29l-0.48,-1.3l-2.4,-2.03l0.07,-0.83l0.74,-0.66l-0.33,-1.27l0.95,-0.56l0.16,-0.48l-0.74,-0.94l0.17,-1.17l-0.42,-1.05l0.57,-0.95l-0.31,-1.24l0.09,-1.36l-1.39,-1.2l0.94,-1.54l-0.99,-1.39l-0.53,-1.77l0.91,-1.89l0.01,-1.33l-0.65,-0.67l-0.76,0.39l-0.1,0.77l-0.5,-0.48l-1.2,0.29l-0.4,-0.8l-0.56,-0.35l-0.9,-0.04l-0.36,0.57l-2.06,-2.73l-0.44,-1.22l-2.15,-0.07l-0.15,-1.73l1.09,-0.79l0.36,-0.66l-0.1,-2.05l0.86,-0.71l0.29,-1.2l1.13,-0.54l0.26,-0.9l-1.33,-1.84l-0.49,0.02l-0.81,0.98l-0.34,-0.16l-0.39,-0.85l0.05,-0.9l1.24,-0.91l0.82,-0.13l2.45,-1.25l0.42,-0.66l-0.07,-0.7l-1.4,-1.26l-1.94,-0.37l-0.78,0.53l-0.25,0.8l-1.29,0.52l-1.01,1.64l-0.81,-0.16l-0.3,-1.21l-0.89,-0.63l-2.56,0.63l-1.66,-0.61l-0.97,0.85l0.1,-0.63l-0.36,-0.43l0.45,-1.16l0.96,0.46l2.31,0.23l1.22,-0.56l0.29,-0.88l-1.03,-1.09l-1.22,-0.08l-0.99,-1.57l-0.88,-4.18l1.03,-1.31l-0.19,-0.83l-0.59,-0.35l-0.9,0.2l-1.77,2.04l-0.73,-0.95l-1.3,-0.55l-0.36,-1.4l0.81,-1.28l-0.85,-1.96l0.39,-0.6l-0.17,-0.45l0.67,-0.48l-0.02,-0.65l-0.49,-0.78l-1.06,-0.15ZM749.43,644.67l-0.21,0.06l-0.38,-0.16l0.32,0.07l0.27,0.03ZM827.52,605.46l1.17,-0.58l0.2,0.18l-0.04,0.35l-0.71,0.3l-0.62,-0.26ZM813.86,589.78l0.16,-0.56l0.66,-0.26l0.12,0.19l-0.94,0.63ZM742.78,556.73l0.27,-0.15l0.42,0.38l0.74,0.05l-1.11,0.28l-0.32,-0.55ZM743.07,555.94l0.11,-0.16l0.77,-0.06l-0.64,0.05l-0.24,0.16ZM725.03,532.72l0.15,-0.75l1.74,-0.61l-0.23,0.87l-1.66,0.49ZM716.21,518.51l0.26,-0.13l0.06,0.04l-0.32,0.09ZM701.98,503.42l-0.06,0.03l-0.14,-0.01l0.18,-0.05l0.02,0.03ZM746.33,561.6l1.29,-0.12l1.03,-0.44l-0.04,0.65l-2.28,-0.08ZM765.04,574.52l-0.09,-0.09l0.07,-0.12l0.12,0.1l-0.09,0.11ZM766.11,573.29l-0.2,-0.4l-0.0,-0.06l0.04,0.0l0.17,0.45ZM777.44,577.1l0.21,-2.19l0.71,0.01l-0.44,0.65l-0.49,1.53ZM788.01,592.75l1.22,-1.14l0.8,-0.31l1.1,-1.65l0.44,-0.22l-1.08,2.63l-2.49,0.7ZM779.46,607.1l0.03,-0.02l0.01,0.02l-0.04,0.0ZM820.61,590.82l0.0,0.0l-0.0,0.0l-0.0,-0.01ZM701.88,596.17l-0.57,-0.35l-0.42,-0.33l0.73,0.21l0.27,0.47ZM825.79,598.33l0.24,-0.16l0.14,-0.18l-0.36,0.57l-0.02,-0.23ZM821.86,591.85l1.18,-0.3l0.11,0.43l-1.18,0.08l-0.11,-0.21ZM809.43,590.34l0.28,0.04l-0.13,0.1l-0.15,-0.14ZM808.53,593.04l-0.01,-0.07l0.06,-0.23l0.07,0.28l-0.11,0.02ZM801.05,579.04l0.02,-0.15l-0.02,-0.2l0.27,0.24l-0.27,0.12ZM790.5,576.74l1.36,-1.34l0.14,0.95l0.53,0.49l-0.39,0.57l-0.93,0.16l-0.71,-0.82ZM757.4,566.9l0.54,-0.08l0.35,0.26l-0.22,0.16l-0.67,-0.34ZM753.32,565.66l0.39,-0.32l0.08,-0.97l1.15,0.24l-0.22,1.06l-1.41,-0.01ZM748.73,558.73l-0.2,-0.17l0.27,-0.02l-0.08,0.19ZM747.96,558.45l-0.96,0.19l-0.02,-0.12l0.72,-0.16l0.26,0.09ZM750.06,555.65l0.07,-0.3l0.2,-0.06l0.02,0.17l-0.29,0.18ZM744.69,552.98l0.63,-1.08l0.02,-0.72l0.75,0.24l-0.13,0.41l0.44,0.61l-0.83,0.06l-0.16,0.95l-0.37,0.33l-0.35,-0.8ZM745.53,555.04l0.78,-0.94l0.61,-0.02l0.44,1.15l-0.05,0.83l-1.79,-1.02ZM739.57,542.24l0.1,-0.7l0.05,-0.02l0.14,0.64l-0.29,0.08ZM737.12,536.75l0.17,-0.49l0.37,0.18l0.66,1.05l-0.18,0.15l-1.02,-0.9ZM737.02,541.9l0.57,-0.02l0.36,-0.73l0.61,0.38l-0.67,1.26l-0.88,-0.88ZM734.6,536.57l0.49,-1.0l0.84,0.73l-0.23,0.65l-1.11,-0.37ZM704.55,508.2l0.25,-0.58l0.82,0.14l-0.81,0.77l-0.26,-0.33ZM704.52,507.29l-0.04,-0.66l0.08,0.11l-0.04,0.55Z", "name": "Newfoundland and Labrador"}, "CA-ON": {"path": "M399.18,732.97l3.61,-62.03l17.48,-16.01l50.17,-56.68l2.38,2.85l1.41,0.72l2.09,2.16l3.34,1.59l0.32,0.93l2.49,3.6l0.21,0.78l1.14,1.35l-0.34,0.82l0.41,0.83l0.93,-0.9l0.33,0.57l1.19,0.13l-0.12,0.67l0.59,0.42l0.37,-0.21l4.38,0.75l6.3,3.23l3.98,0.98l2.15,0.97l2.94,3.12l3.19,1.18l0.02,0.41l-0.73,0.42l-1.87,3.35l-0.2,2.26l0.59,0.29l0.53,-0.6l0.5,-1.93l1.17,-2.2l0.8,-0.71l1.45,-0.24l3.65,0.71l3.97,-1.2l1.6,0.26l1.47,-0.99l1.54,0.65l0.54,1.07l1.21,-0.17l0.13,1.07l0.43,0.57l0.68,-0.28l-0.38,-1.86l3.24,0.33l0.69,0.35l1.97,-0.84l0.55,0.68l-0.33,1.5l0.67,-0.0l0.48,-0.78l1.18,0.14l1.11,-0.61l0.85,0.4l0.9,-0.04l0.79,0.99l1.11,0.18l0.24,2.22l0.89,1.67l-1.85,8.93l0.53,3.1l0.67,1.51l0.69,0.04l0.76,0.78l1.61,4.42l-0.68,3.75l1.63,5.71l-1.28,1.28l-0.38,3.56l0.34,1.55l2.94,1.95l1.54,2.72l1.27,0.85l1.71,2.1l1.35,0.88l-0.11,0.68l0.43,1.19l-2.0,1.21l-0.77,0.15l-0.57,0.56l-0.12,0.8l0.39,0.6l0.27,-0.03l1.21,-0.98l2.42,-0.18l1.79,2.17l4.33,1.42l0.88,1.65l1.7,0.86l2.17,2.18l1.19,3.1l1.0,0.99l0.31,1.74l-2.02,1.29l-1.13,2.06l-1.21,0.9l-0.45,0.98l-0.86,0.68l-0.29,0.63l0.81,0.81l0.63,0.0l0.95,-2.17l1.62,-0.81l1.32,-2.12l1.59,-1.41l3.03,0.45l0.5,0.44l0.92,0.13l2.89,1.98l0.59,1.04l2.24,1.83l7.01,59.67l-0.5,2.75l0.48,1.12l1.53,1.9l0.61,3.39l2.03,2.63l1.76,1.66l1.07,2.0l1.14,1.05l1.33,2.35l2.44,1.53l0.44,0.79l0.64,0.34l4.21,0.28l0.6,0.39l2.46,-0.27l0.96,0.32l1.48,-0.15l3.27,0.47l2.39,0.86l2.13,1.35l0.58,1.44l0.77,0.72l2.97,1.37l1.25,-0.14l0.4,-0.74l-0.27,-1.02l0.78,-0.05l0.75,1.94l0.75,0.63l1.26,2.41l0.84,0.43l2.11,0.29l1.11,0.66l1.08,-0.1l0.74,-0.95l0.94,-0.29l1.1,0.16l2.36,1.74l1.37,-0.21l1.06,-1.56l1.04,-0.35l3.5,-2.3l2.72,-0.79l1.29,-0.96l2.06,-0.26l1.36,-0.65l1.31,0.6l1.64,0.2l-0.25,4.37l1.74,1.53l-1.12,0.9l-0.49,1.45l-1.92,1.85l-2.34,0.31l-4.21,3.29l-4.61,5.87l-0.78,1.45l-0.74,0.45l-1.02,1.74l-0.62,0.48l-2.83,1.26l-3.3,2.3l-1.55,0.2l-2.37,1.7l-0.49,-0.59l-0.62,-0.03l-0.35,0.38l-0.54,-0.59l-2.13,1.15l-0.76,-0.34l-0.64,0.55l-0.69,-0.07l-2.68,1.44l-0.39,1.13l0.45,0.24l-1.75,0.25l-0.41,0.48l-1.86,0.83l-4.68,1.11l-2.57,1.33l-1.36,-0.07l-3.16,1.34l-1.55,0.25l-1.68,1.0l-0.33,0.71l-2.62,2.68l-1.39,0.28l-0.34,0.81l-1.15,0.96l-0.11,1.25l-1.66,3.08l0.19,1.1l0.59,0.56l2.05,0.62l2.58,-0.18l0.9,0.25l2.09,-1.5l0.99,-0.29l0.21,3.11l0.44,0.35l0.11,0.95l1.64,0.99l-0.31,0.36l-1.64,0.78l-1.28,-0.28l-3.23,0.38l-0.52,0.46l-1.81,0.41l-1.14,-0.22l-1.42,0.76l-4.47,1.21l-1.73,1.55l-0.19,0.66l-0.35,-0.07l-0.52,0.45l-0.51,0.79l0.06,0.86l-6.1,-1.03l-3.85,0.33l-1.74,0.54l-2.51,1.81l-2.89,3.12l-0.52,1.54l-1.15,1.04l-1.8,0.33l-3.66,2.49l-1.43,1.98l-0.09,0.9l-1.16,-0.92l-0.76,-0.11l-2.24,1.16l-0.93,0.09l-2.5,-1.04l0.23,-3.72l1.37,-0.67l2.31,0.39l1.92,-0.15l2.07,-0.47l0.67,-0.49l0.34,-1.28l-0.4,-2.01l-2.62,-0.26l0.8,-0.66l0.5,-1.21l0.33,-2.5l-0.23,-0.88l0.63,-3.06l3.6,-1.93l1.28,-2.02l1.53,-0.91l1.19,-1.36l0.79,-2.06l-0.83,-9.21l-0.61,-2.59l0.88,-1.1l0.46,-1.2l0.15,-2.05l1.0,-1.44l1.1,-0.63l0.26,-1.3l1.06,-1.69l0.17,-0.89l-0.41,-0.98l-0.04,-1.96l-1.18,-1.48l0.03,-1.32l-0.37,-0.69l-0.93,-0.06l-1.97,-2.46l0.08,-0.46l-1.7,-0.54l0.08,-0.2l0.76,0.18l3.63,-0.35l-0.43,1.17l0.89,1.12l0.3,1.84l1.72,0.67l-0.25,0.6l0.56,0.33l0.39,-0.17l0.33,0.24l0.54,-0.36l0.13,0.47l-0.32,0.56l-1.12,1.02l0.07,0.86l0.59,0.2l1.53,-1.22l0.73,0.18l-0.2,3.37l0.73,0.14l1.19,-1.81l1.46,-0.74l1.29,1.87l0.94,0.06l0.86,0.64l4.81,1.08l1.27,-1.37l-0.05,-2.95l-0.3,-0.56l-1.36,-0.75l-0.09,-0.5l0.51,-0.04l0.4,-0.74l0.59,-0.17l-0.15,0.59l0.83,0.32l0.43,0.71l2.82,-0.09l0.24,-0.64l-0.74,-0.45l0.41,-0.84l-0.27,-0.96l-0.6,-0.04l-0.53,0.62l-0.98,-1.51l-0.99,-0.12l-0.32,-0.95l-0.65,-0.11l-0.26,-0.61l-0.79,-0.33l0.6,-0.32l0.2,-0.76l-0.48,-0.81l-1.23,-0.51l0.92,-1.39l-0.63,-1.56l-0.47,-0.33l-0.88,0.01l-0.69,0.43l-0.15,0.59l-0.7,-0.07l-0.23,-1.09l-0.96,-0.31l-0.07,-1.59l-0.5,-1.17l-0.72,-0.28l-0.21,0.75l-0.38,0.04l-0.16,-0.7l-0.64,-0.22l-0.89,-1.17l-0.14,-0.96l-0.88,-1.39l-0.43,-0.07l-0.38,-1.02l-1.01,-0.62l-0.57,0.46l-0.54,-0.33l-2.99,0.52l0.06,-0.75l-0.56,-0.51l-0.86,0.29l-0.36,0.68l-2.42,-0.2l-0.32,-0.34l0.11,-0.32l-0.55,-0.23l-0.27,-0.88l-1.22,-0.45l-0.72,0.76l-0.35,-0.3l-5.57,0.15l-1.54,-0.49l-0.07,-0.38l-0.48,-0.19l-1.21,0.19l-0.29,-0.21l-1.97,0.69l0.13,-0.33l-0.57,-0.46l-0.86,0.46l-3.28,0.67l-6.33,-0.98l-0.68,0.14l-0.73,-0.55l-1.19,0.24l-1.58,-0.28l-0.96,-0.63l-1.61,0.25l-0.66,-0.22l-0.44,-0.69l0.33,-2.01l-0.21,-0.47l-0.62,-0.28l-0.88,0.03l-1.05,0.73l-1.2,-0.16l-1.02,0.74l-0.89,-0.94l1.63,-2.22l0.19,-0.7l-0.71,-1.01l-0.82,0.15l-0.03,-0.84l0.56,-0.31l1.05,0.17l0.62,-1.12l-0.19,-0.53l-1.22,-0.9l-1.71,0.01l-0.56,0.46l-0.37,-0.55l-1.24,-0.32l0.1,-0.97l0.63,-0.88l-0.18,-0.72l0.27,-0.75l1.18,-1.73l0.06,-0.58l-0.65,-1.21l-0.75,-0.24l-0.57,-1.16l-2.32,-1.17l-0.59,-0.99l-0.68,-0.41l0.48,-1.35l-0.17,-0.52l0.99,-1.39l-0.56,-0.9l0.99,-1.16l-0.1,-1.08l-1.36,-0.44l-4.18,0.47l-1.75,0.64l-1.21,0.08l-3.76,-0.81l-2.61,-2.94l-1.38,-3.12l-0.08,-1.08l-0.46,-0.45l-0.69,-2.88l-1.15,-1.48l-0.4,-1.33l-0.8,-0.6l-1.4,0.31l-0.27,0.35l-0.25,-0.04l-0.15,-0.74l-1.25,-0.46l-1.76,1.04l-1.53,-0.93l-1.41,0.65l-1.97,0.21l-0.21,-0.45l-1.66,-0.77l-1.13,0.12l-0.46,-0.75l-0.83,0.19l-0.75,-0.69l-2.8,-0.59l-1.39,-1.42l-1.64,1.0l-1.12,-0.34l-0.29,0.52l0.37,1.13l-0.18,0.81l1.8,1.59l0.03,1.28l-0.74,1.13l-0.76,0.21l-0.6,-0.51l0.42,-1.45l-0.66,-1.82l-1.23,-0.38l-0.78,0.2l-0.8,1.37l-0.0,2.41l-0.88,0.55l-0.15,1.63l-0.55,0.23l-0.51,2.34l-1.08,0.6l0.52,-2.06l0.92,-1.46l-0.04,-0.53l-0.43,-0.37l-5.21,2.26l-0.74,1.43l0.37,1.11l-1.51,3.72l-1.04,0.36l-0.33,0.8l-1.45,0.94l-2.12,-0.31l-1.54,0.55l-0.74,-0.45l-0.91,-1.45l-0.86,-0.4l-5.03,0.53l-0.6,-0.37l-1.81,0.36l-0.87,-1.51l0.09,-0.61l-0.87,-0.58l-2.52,1.18l-2.39,1.81l-1.71,0.43l-1.39,-0.23l-0.36,-0.67l-1.14,-0.19l0.07,-0.57l-0.7,-0.89l-2.68,-1.04l-0.66,-1.62l-0.66,-0.48l-2.73,0.25l-0.49,0.74l0.11,0.94l-0.39,0.19l-0.83,-1.63l-0.03,-1.17l-0.45,-0.95l-0.59,-0.29l-1.87,-0.0l0.82,-0.28l0.26,-0.4l-0.3,-0.8l-2.92,-1.0l-1.16,-0.73l-3.39,-0.36l-1.63,0.22l-0.83,0.29l-0.54,0.96l-3.01,0.33l-0.49,-1.51l-0.59,-0.6l-4.31,-0.55l-0.17,-0.66l-0.57,-0.45l-2.28,0.08l-1.11,-0.46l-1.15,-1.26l0.09,-1.93l-0.93,-4.52l-0.23,-2.72l-1.22,-0.94l-2.44,-0.45ZM472.71,752.99l-0.12,0.04l-0.06,-0.0l0.02,-0.03l0.17,-0.01ZM478.59,747.88l0.15,0.64l-0.47,0.42l-0.49,-0.12l0.81,-0.94ZM477.23,749.43l-0.4,0.46l-0.17,0.72l0.06,-0.73l0.51,-0.46ZM617.39,818.97l1.96,-1.47l0.57,-0.1l0.18,0.8l0.76,0.04l0.5,-0.3l-0.01,-0.69l1.66,-0.66l-0.41,1.69l0.39,0.57l1.51,-0.3l-0.57,1.2l0.09,0.52l0.4,0.19l-1.15,0.86l-0.53,-0.19l0.4,-0.95l-0.17,-0.45l-0.93,0.43l-0.54,-0.54l-0.8,0.06l-1.84,0.67l-0.64,-0.34l-0.07,-0.75l-0.75,-0.29ZM624.98,820.15l0.01,-0.01l0.01,0.0l-0.02,0.01ZM625.55,816.29l-0.88,0.97l-0.46,0.08l0.55,-0.73l0.8,-0.31ZM540.65,627.23l-0.07,-0.12l0.08,-0.1l0.01,0.05l-0.02,0.17ZM631.49,815.38l-0.36,-0.28l0.23,-0.45l0.55,-0.02l-0.42,0.76ZM627.3,816.03l0.76,-0.4l0.07,-0.04l-0.19,0.32l-0.64,0.12ZM581.92,801.51l0.01,-0.5l0.57,0.08l-0.37,0.17l-0.22,0.24ZM582.54,809.21l0.08,-0.02l-0.04,0.08l-0.05,-0.06ZM575.98,691.9l1.12,-1.08l0.85,7.33l-1.08,-0.7l-0.91,-1.5l0.4,-2.7l-0.38,-1.35ZM544.08,793.09l0.64,0.68l0.69,-0.74l0.82,0.42l0.64,-0.7l0.82,-0.2l0.0,1.02l0.75,0.43l0.23,0.62l0.6,0.21l0.7,-0.36l0.45,0.45l0.58,-0.27l0.5,0.81l-1.53,-0.59l-2.46,0.08l-0.84,-0.54l-3.09,-0.53l0.04,-0.61l0.44,-0.17ZM551.8,795.48l0.54,-0.33l0.22,-1.0l-0.92,-0.74l0.51,-0.53l0.2,0.27l0.44,-0.15l0.37,-0.71l1.04,-0.37l0.21,0.71l0.84,0.06l1.09,1.55l0.72,-0.51l0.42,-1.47l1.23,-0.76l0.44,0.27l-0.0,1.0l1.05,0.28l-0.19,1.49l1.03,1.15l-0.71,0.35l-2.15,2.25l-0.45,-0.55l-1.03,-0.07l-0.86,-0.45l-0.34,-0.52l-2.37,-0.45l-1.33,-0.75ZM561.38,795.5l0.14,-1.12l0.31,-0.89l0.37,-0.6l-0.5,1.08l0.43,0.57l1.05,-0.18l-0.09,0.36l-2.12,3.83l-0.58,0.22l-0.22,-0.27l1.92,-2.1l-0.14,-0.72l-0.57,-0.18ZM561.46,799.85l0.39,-0.41l0.14,-0.08l-0.3,0.47l-0.22,0.02ZM559.12,790.23l0.46,-0.13l0.58,0.12l-0.77,0.13l-0.27,-0.12ZM549.83,792.88l0.11,-0.31l0.76,-0.11l-0.14,0.31l-0.72,0.11ZM540.38,793.88l0.61,-1.05l0.4,-0.17l0.82,0.55l-0.62,1.12l-1.21,-0.46ZM532.26,787.83l1.6,-0.01l1.59,1.01l-0.18,0.7l-0.88,0.31l-0.15,0.99l-1.53,-1.95l-0.45,-1.06ZM508.42,762.98l0.75,-0.68l1.29,-0.13l1.11,0.39l-0.97,0.41l-2.18,0.01ZM486.18,744.42l0.13,-0.01l0.53,0.92l-0.33,0.05l-0.33,-0.95ZM482.14,744.75l1.2,-0.66l1.87,0.08l-0.46,1.02l-1.2,-0.05l-1.18,0.8l-0.23,-1.19ZM469.8,755.19l0.19,-0.21l0.18,-0.01l-0.36,0.23Z", "name": "Ontario"}, "CA-AB": {"path": "M139.75,606.41l0.38,-0.39l-0.02,-0.65l1.18,0.57l0.81,-0.56l-0.36,-1.98l-0.93,-0.51l0.38,-1.01l-0.68,-0.55l0.01,-0.33l37.32,-108.88l22.35,7.31l22.92,6.81l23.1,6.18l22.87,5.45l-44.18,197.52l-23.74,-5.6l-21.73,-5.63l0.08,-0.8l-0.96,-1.24l0.17,-0.95l-0.81,-1.03l-1.42,-0.63l0.23,-0.86l-0.52,-0.39l-0.17,-1.26l-0.89,-1.31l0.8,-2.77l-1.36,-0.54l-0.36,-0.46l0.84,-0.39l1.4,-2.48l-0.07,-2.44l0.13,-0.54l0.67,-0.45l0.24,-1.71l-0.41,-1.28l0.52,-4.26l-0.64,-1.2l-0.83,-3.13l-1.24,-1.02l-1.26,0.24l-0.48,-1.21l0.36,-0.7l-0.28,-1.21l-0.72,-0.4l-1.19,-1.57l-0.23,-0.8l-0.55,-0.38l0.84,-0.16l-0.02,-1.71l-1.21,-1.73l-0.1,-0.81l-1.92,-1.32l-0.23,-0.43l0.28,-1.29l-0.17,-0.62l-0.92,-0.74l-0.13,-0.8l-0.83,-0.44l-0.08,-1.12l0.37,-1.35l-0.74,-1.03l0.08,-0.91l-0.53,-0.7l-0.09,-0.87l-0.74,-0.79l0.15,-1.06l-0.35,-2.08l-1.26,-0.33l-1.17,0.69l-0.24,0.56l-0.62,-0.25l-0.14,-3.71l-1.62,-3.01l0.14,-2.56l-0.41,-0.29l-0.84,0.64l-1.09,-0.63l-1.03,-0.0l-0.4,-1.01l-0.81,-0.6l-0.28,-1.09l1.11,-0.63l0.48,-1.28l-0.31,-0.63l-1.56,-1.12l-0.59,-1.12l-0.67,0.05l-0.69,1.15l-1.39,-0.1l-0.07,-0.72l0.77,-0.54l-0.52,-1.06l0.22,-0.72l-0.41,-1.19l0.77,-0.81l-0.14,-1.64l-0.53,-0.78l0.37,-1.01l-0.53,-1.4l-1.3,-0.18l-0.07,-1.34l0.38,-1.17l-0.69,-1.05l0.31,-0.71l-0.69,-1.67l-1.29,-1.58l-0.74,0.2l-0.57,1.02l-1.63,-1.38l-0.38,-1.59l0.04,-1.64l-2.21,-1.16l-0.68,0.12l-0.5,-0.76l-0.25,-2.18l-0.69,-0.43Z", "name": "Alberta"}}, "height": 867.2308867877658, "projection": {"type": "lcc", "centralMeridian": -90.0}, "width": 900.0}); \ No newline at end of file diff --git a/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-de-mill-en.js b/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-de-mill-en.js deleted file mode 100644 index daafdbddb..000000000 --- a/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-de-mill-en.js +++ /dev/null @@ -1 +0,0 @@ -jQuery.fn.vectorMap('addMap', 'de_mill',{"insets": [{"width": 900, "top": 0, "height": 1013.8952766123396, "bbox": [{"y": -6845388.062206638, "x": 651826.6317576179}, {"y": -5694876.55460837, "x": 1673096.1659230748}], "left": 0}], "paths": {"DE-BE": {"path": "M710.94,355.66l1.16,-1.31l0.31,-1.0l0.98,-0.97l-0.74,-2.05l0.47,-2.19l1.42,-0.94l2.79,-2.88l-0.08,-0.98l-1.47,-2.18l0.73,-6.66l-0.34,-1.33l0.64,-1.38l4.96,1.6l1.09,-0.07l0.35,-0.78l-0.73,-1.75l1.04,-2.7l2.87,-0.39l1.06,-0.5l1.18,-0.91l1.37,-2.19l0.63,0.01l0.3,2.64l0.85,0.92l1.79,0.65l3.7,0.21l1.86,-0.49l0.87,-1.38l2.02,-1.38l1.68,0.91l0.97,-0.04l0.86,-1.18l2.39,-1.71l0.8,1.09l1.68,1.32l-0.23,3.06l0.52,1.47l6.52,6.23l4.25,2.44l3.3,0.77l0.05,0.57l-2.28,4.44l-0.17,0.98l0.34,0.75l0.38,0.19l3.64,-0.35l1.11,0.49l1.94,1.99l3.86,1.43l1.24,1.07l-1.08,1.15l-0.45,2.45l-2.59,2.1l-0.44,1.05l0.23,1.98l-0.26,1.22l-0.52,0.43l-2.57,0.78l-1.68,2.53l-0.48,-0.04l-0.58,-4.22l-1.2,-1.24l-1.76,0.03l-2.4,-0.66l-5.7,-2.14l-1.45,0.18l-1.06,0.71l-1.67,-0.06l-1.51,-1.94l-1.09,-0.45l-2.61,0.59l-0.84,0.51l-0.39,0.91l0.23,2.67l-2.7,-0.01l-1.66,-0.65l-2.96,-2.75l-3.67,0.8l-1.15,-1.62l-0.5,-0.23l-4.07,1.35l-2.3,-1.43l-1.43,-0.19l-4.21,1.59l-1.43,1.07l-3.65,-0.65l-2.32,-1.38Z", "name": "Berlin"}, "DE-ST": {"path": "M511.75,377.7l-0.19,-1.91l-0.72,-0.39l-1.04,0.12l-2.74,-3.18l1.67,-1.48l0.22,-0.86l-1.19,-2.29l-1.94,-0.96l-0.25,-1.3l1.62,-0.63l4.58,-0.76l0.66,-0.85l0.34,-2.05l-0.72,-1.15l-2.88,-1.99l-1.7,-0.49l-0.89,-0.61l-6.9,-7.59l0.2,-1.63l0.97,-2.19l1.6,-0.58l2.71,0.33l0.63,-0.68l-0.8,-1.54l-3.95,-4.79l-0.65,-2.15l0.15,-3.19l2.52,-2.52l0.37,-0.71l-0.07,-0.65l-0.59,-0.69l-1.69,-0.45l-1.06,0.31l-1.12,0.88l-0.5,-0.05l-4.12,-4.8l-4.69,-7.76l-1.68,-0.93l-1.1,-0.03l-0.74,-0.64l-0.72,-3.4l-1.93,-1.84l-1.63,-3.11l0.32,-1.91l-0.33,-2.2l0.36,-1.11l-0.14,-1.09l3.24,-1.17l4.55,-0.28l4.29,0.17l5.6,-1.61l1.86,-0.81l1.06,-1.12l1.88,-1.23l0.47,-0.71l0.51,-2.5l1.3,-0.62l3.41,-0.05l5.48,1.55l5.8,-0.35l4.62,0.71l1.08,0.85l1.26,0.44l0.9,1.23l0.82,0.36l1.17,-0.2l1.85,-1.0l0.81,0.26l2.14,-0.1l5.95,-2.08l3.49,-0.77l6.06,-4.61l2.59,-0.21l0.65,-0.44l-0.46,-3.58l0.53,-2.9l0.67,-1.42l1.25,-0.47l1.34,0.35l1.48,-0.07l1.14,-0.76l1.83,-4.18l4.01,-0.91l0.66,0.36l0.03,0.89l-0.49,1.1l-0.74,0.63l0.1,0.67l1.49,0.6l3.15,0.11l0.93,0.56l0.82,2.89l0.78,0.98l1.88,0.24l3.52,-1.46l1.24,-0.22l2.83,3.53l1.47,0.99l3.2,0.18l0.8,0.39l-0.39,1.13l-1.2,1.54l0.04,1.04l6.37,3.52l2.86,0.5l3.91,1.7l1.79,0.32l1.6,-0.49l2.44,0.06l7.12,-0.65l1.23,1.43l-0.1,1.4l0.36,0.43l2.52,0.11l3.74,-0.88l2.6,0.83l0.88,1.31l1.94,5.74l-0.37,1.25l-3.08,2.11l-0.33,0.54l0.12,1.74l1.16,1.92l-1.63,1.6l-0.18,0.67l0.35,1.19l1.01,1.4l0.66,2.01l1.7,1.56l-0.22,2.11l-0.95,2.48l-0.99,1.47l-1.64,0.62l-1.93,-0.09l-0.74,0.32l-0.52,2.14l-0.57,5.23l-2.55,3.23l-0.17,0.61l0.33,0.55l0.59,0.18l2.86,-0.07l-1.32,1.38l-0.23,0.64l0.35,1.76l0.9,0.76l1.4,0.29l2.26,-0.57l1.13,-1.04l0.55,-1.93l0.31,-0.22l1.44,0.6l1.93,2.54l0.8,0.55l3.31,-0.37l-0.45,1.01l-0.12,2.75l-2.0,3.63l-1.86,1.68l-0.03,0.56l0.98,1.84l-0.76,2.32l-1.74,3.01l0.16,1.04l-0.4,1.46l0.55,2.31l-1.32,2.13l-1.56,4.21l0.39,3.28l1.16,1.2l1.26,0.31l1.26,1.89l-2.46,2.36l-2.25,5.35l1.74,3.68l2.91,2.5l1.02,2.21l2.48,1.24l1.76,1.58l6.03,6.74l0.45,2.41l1.41,1.2l4.18,2.62l1.15,0.31l1.94,-0.2l1.12,-1.25l0.72,0.02l2.52,2.54l6.33,3.8l4.95,0.78l1.34,-1.09l2.5,-1.17l0.81,-1.47l0.8,0.01l12.49,6.29l4.9,0.63l1.31,0.76l1.17,2.76l0.67,0.48l5.45,0.26l2.91,0.68l2.89,2.9l5.51,3.2l1.89,0.62l6.6,-0.62l2.67,1.69l0.47,-0.13l1.62,-2.09l3.58,0.12l1.37,0.49l-0.61,1.17l-3.36,3.14l-3.61,5.02l0.11,5.5l2.2,4.24l-0.27,1.33l-2.63,2.98l-6.68,4.5l-1.95,2.91l-1.38,-0.29l-2.04,-1.77l-1.47,-0.69l-3.02,1.13l-1.33,-1.29l-2.19,-0.93l-2.66,-0.63l-1.11,-0.64l-1.4,-2.03l-2.85,0.23l-1.12,1.22l-5.05,3.48l-1.7,0.67l-2.83,-1.01l-3.84,-0.38l-1.6,0.82l-1.73,2.63l-1.87,1.34l-0.75,0.06l-0.41,-0.49l-0.79,-0.24l-9.31,1.35l-1.31,-0.74l-7.91,-0.26l-1.23,0.64l-0.39,2.49l-0.58,0.97l-7.21,0.61l-5.74,2.15l-2.88,-0.27l-3.12,-1.14l-0.61,0.23l-0.85,2.22l-2.97,2.3l0.0,6.04l-0.39,1.31l-1.64,1.66l-1.61,1.1l-0.2,0.6l0.24,2.8l0.87,1.54l0.25,5.08l1.44,3.13l-0.02,2.43l-0.59,1.0l-1.79,0.18l-1.27,0.88l-1.0,1.56l-0.47,1.62l0.78,2.41l0.13,2.63l1.93,2.3l0.33,1.19l0.33,3.69l-0.41,1.19l-0.97,1.12l-0.06,1.28l0.27,0.36l2.72,0.71l-0.36,3.43l1.04,1.66l2.05,1.61l0.34,2.07l0.4,0.6l0.69,0.46l3.84,0.63l0.12,0.58l-1.66,2.49l-0.51,2.75l0.48,0.84l2.2,1.1l0.4,1.34l-2.24,3.48l-3.39,3.59l-0.3,1.27l0.3,1.03l-1.41,0.98l-0.47,-0.03l-0.73,-1.06l-2.49,-1.93l-0.83,-0.28l-2.78,1.17l-5.63,-1.52l-6.69,0.89l-0.46,-1.34l-3.15,-1.42l-0.72,-0.72l-0.68,-1.61l-1.48,-1.16l-4.85,-1.85l-2.26,-1.41l-1.28,-0.19l-8.75,0.64l-1.28,0.77l-0.49,-0.17l-1.14,-0.87l-0.49,-1.71l-2.27,-3.62l-0.38,-3.14l-0.61,-0.65l-2.18,-1.18l-4.08,0.63l-4.52,-0.07l-4.62,-0.52l-2.95,1.42l-5.76,-0.36l-1.48,-0.74l-0.67,-1.44l-0.29,-1.31l0.88,-0.48l0.21,-1.0l-0.82,-3.64l-2.1,-3.0l-1.06,-0.99l-2.23,-0.75l-2.12,-1.15l-0.92,-1.2l1.06,-1.26l4.82,-0.76l2.6,-1.21l1.3,-1.0l1.78,-2.78l-0.04,-0.44l-5.62,-6.96l-2.67,-4.19l-5.25,-3.49l-2.66,-0.77l-9.16,-1.13l-4.19,0.07l-15.09,-1.54l-2.43,-1.15l-0.67,-1.06l0.66,-5.07l-2.54,-4.24l0.09,-3.13l-2.01,-2.26l-1.36,-3.22l-0.05,-0.57l0.43,-0.34l2.32,0.5l1.1,-0.74l-0.05,-1.59l-0.9,-1.75l-0.74,-0.44l-1.25,-0.03l-3.13,-1.09l-1.44,-1.06l-2.81,-0.05l-4.44,-1.92l-8.84,0.18l-1.37,-0.72l-2.68,-4.06l-0.08,-3.65l-0.75,-1.81l-1.67,-1.39l-1.38,-2.21l-1.09,-2.65l-1.67,-1.02l-1.66,-1.53l-0.2,-0.68l-0.45,-2.63l0.23,-5.1l0.49,-0.55l1.7,-0.71l1.03,-1.32l1.38,-0.67l1.26,-1.81l0.13,-1.21l-0.61,-2.73l-2.14,-1.55l0.46,-2.26l2.22,-1.17l0.47,-0.99l-0.41,-0.45l-1.4,0.06l-1.36,-1.31l-2.26,-0.93l-0.26,-1.14l-1.7,-2.38l0.64,-0.28l2.89,0.27l1.38,-0.38l2.94,-2.56l0.12,-1.6l0.65,-0.27l5.49,-0.71l13.01,-0.0l2.63,-0.85l1.89,-0.24l5.82,0.07l0.95,-0.32l0.84,-1.41l0.02,-1.82l-0.42,-0.7l-1.69,-1.11l-0.01,-0.35l0.69,-0.48l3.37,-0.88l2.18,-1.02l2.45,-1.72l1.9,-2.44l0.15,-1.3l-0.45,-1.63l-0.96,-0.73l-1.5,-0.32l-0.88,-1.48l0.88,-1.92l0.69,-0.6l3.37,-0.95l1.23,-0.98l0.29,-2.18l-0.33,-1.2l-0.96,-0.68l-0.59,0.22l-0.37,0.6Z", "name": "Sachsen-Anhalt"}, "DE-RP": {"path": "M24.7,661.09l1.01,-4.92l0.64,-1.76l0.83,-0.82l0.38,-1.02l-0.36,-1.07l-0.88,-0.68l0.56,-2.05l0.64,-0.33l1.87,-0.13l0.89,-0.45l0.8,-1.55l0.04,-1.6l-0.55,-1.46l-1.12,-1.1l0.71,-0.78l2.17,-1.29l1.01,-1.26l1.91,-0.76l4.19,-0.99l1.96,-1.44l0.13,-0.46l-0.4,-1.06l0.18,-1.13l1.48,-2.03l1.17,-0.57l3.39,0.63l2.73,-0.4l1.43,-1.19l0.07,-0.88l2.15,-0.04l2.75,-1.22l0.26,-0.53l-0.14,-0.58l-3.3,-4.51l0.21,-0.78l0.67,0.02l0.63,0.43l0.83,1.31l2.25,1.19l0.81,1.92l0.82,0.49l2.38,-0.73l4.61,-2.84l4.25,-0.62l1.26,-0.47l3.26,1.3l-0.47,1.61l0.43,0.48l0.55,0.08l1.22,-0.02l2.7,-1.49l0.56,-0.02l1.58,0.98l1.21,1.29l1.85,0.39l7.79,-1.85l0.63,-0.64l0.18,-0.79l-0.35,-1.34l-1.6,-2.52l-0.39,-4.03l-0.58,-0.71l-1.84,-0.88l0.81,-2.09l-0.08,-1.91l5.26,-1.85l1.3,2.03l1.31,0.92l1.52,0.34l1.44,-0.2l0.96,-0.9l0.76,-1.32l0.23,-2.63l-0.46,-3.09l2.61,-0.83l1.55,-1.58l0.97,-1.64l5.73,-1.48l6.08,-3.37l3.16,0.86l1.4,-0.54l1.08,-1.76l2.26,0.63l1.29,-0.27l2.46,-2.13l0.85,-0.38l1.1,-2.19l1.41,0.53l0.57,1.23l0.52,0.34l5.6,0.33l5.78,-1.33l3.39,-2.17l0.2,-1.77l0.88,-1.5l0.09,-3.33l-0.32,-0.56l0.36,-0.33l2.21,-0.55l3.74,0.25l8.22,-1.92l3.88,-1.81l2.82,0.16l1.83,-2.44l4.31,-1.56l1.43,-1.83l1.04,0.55l1.03,-0.5l0.37,-1.1l-0.11,-1.22l-1.9,-2.05l3.19,-1.64l2.37,-2.16l2.49,0.71l0.86,-0.57l0.06,-2.37l-1.22,-2.58l-0.36,-3.12l0.28,-1.24l2.88,-2.32l1.1,-0.27l5.23,1.22l-1.35,4.44l0.11,1.04l1.47,1.02l2.59,0.75l3.7,3.3l1.88,1.21l2.66,-0.65l1.19,4.08l-0.21,3.99l1.05,1.68l4.13,4.5l1.6,2.36l0.67,2.23l1.11,0.27l2.96,-0.98l3.41,1.51l-0.33,1.81l-1.02,2.5l2.01,4.18l0.37,1.99l0.67,1.17l1.16,0.89l-2.47,5.41l-2.08,1.52l-1.78,0.13l-2.49,-2.33l-1.61,-0.07l-1.86,0.64l-1.53,1.74l-1.72,1.16l-0.43,1.63l-0.09,5.6l0.44,0.71l1.39,0.79l-1.7,1.6l-1.22,3.55l-1.13,0.8l-0.32,0.85l0.96,1.07l4.36,0.93l0.5,1.36l1.78,0.8l2.91,5.16l2.07,1.46l0.59,0.97l1.41,3.87l-0.08,1.13l-2.1,0.73l-5.08,-0.12l-0.86,0.67l-0.57,1.56l0.12,0.66l0.84,0.9l-1.7,2.25l-0.83,-0.2l-1.56,-1.3l-0.62,-0.04l-1.31,1.16l-5.75,2.53l-1.27,1.54l-1.17,2.26l-0.26,1.37l0.16,1.15l0.76,0.85l2.47,1.42l-0.8,3.06l-2.12,-1.58l-3.93,0.35l-1.32,1.69l-0.7,2.73l-6.56,3.92l-0.04,0.64l1.41,0.69l6.26,4.76l0.64,0.92l0.36,1.7l2.08,2.34l4.06,-0.13l4.26,-1.18l4.75,-2.1l3.81,-2.44l12.19,-3.48l3.65,0.15l1.38,0.75l10.44,9.97l1.84,4.14l-1.41,4.58l0.79,1.68l2.23,2.78l0.94,1.72l0.91,3.46l1.88,2.97l0.7,1.92l1.15,1.53l3.75,-0.47l0.94,0.31l-0.18,0.85l-1.21,1.66l-2.02,2.09l-3.21,0.55l-2.81,1.66l-1.73,2.69l-0.17,3.38l1.52,3.21l2.4,3.89l1.58,3.79l-0.74,3.29l1.87,2.64l2.18,5.43l1.29,2.32l0.0,0.5l-1.82,0.77l-0.24,1.24l0.27,0.38l1.67,0.56l3.25,0.62l0.75,1.05l-1.25,2.64l0.73,4.29l-3.48,6.65l-0.23,1.19l0.28,0.45l1.96,0.59l-0.25,1.12l-6.64,6.64l-1.28,0.59l-1.18,1.11l-0.67,2.23l-1.87,12.05l-0.41,1.21l-7.19,12.57l-2.03,2.67l-3.08,2.82l-2.62,0.81l-1.18,-0.88l-9.6,-1.69l-15.64,-7.06l-1.85,-0.17l-5.52,0.49l-8.1,-1.99l-4.7,1.56l-4.03,-0.89l-3.62,0.88l-1.19,-0.23l-0.77,-0.56l-1.82,-2.5l-2.28,-0.99l-4.22,-0.63l-2.02,-1.09l-3.43,-4.36l-1.23,-1.1l1.05,-1.13l-0.91,-2.08l-1.87,-0.57l-3.96,-0.23l-0.7,-1.43l-1.91,-0.14l-1.76,0.43l-0.43,-0.31l-1.83,0.04l-5.12,-4.44l-0.72,-3.11l0.1,-0.97l0.63,-1.08l2.04,-0.24l1.38,-1.65l0.75,-2.82l1.47,-1.42l0.58,-2.29l1.93,-1.43l0.92,-1.29l0.11,-0.76l-0.41,-0.97l0.64,-1.69l-0.53,-1.14l-1.2,-0.68l-2.44,-0.77l-5.36,-0.97l0.23,-0.69l-0.31,-0.68l-3.97,-4.06l-0.52,-1.64l0.26,-0.34l0.94,-0.54l1.88,-2.04l2.63,-1.5l0.44,-1.24l-0.36,-1.78l-1.18,-0.55l-0.24,-3.37l-1.16,-1.98l-0.56,-1.53l-0.01,-1.85l-0.47,-0.49l-0.69,-0.08l-2.81,1.53l-2.73,0.22l-4.63,-2.83l-2.24,-1.82l-7.08,-0.5l-6.52,-3.12l-2.78,1.32l-0.84,-0.58l-2.17,-0.57l-8.19,4.3l-14.41,5.61l-1.73,0.29l-2.48,-0.16l-6.27,2.41l-11.26,-0.46l-13.35,1.03l0.12,-4.73l0.51,-1.28l3.97,-4.55l2.07,-3.33l-0.2,-1.32l-1.19,-0.9l1.32,-1.56l7.15,-3.91l0.14,-0.58l-0.7,-0.78l0.12,-0.23l1.36,-0.0l-1.32,-3.0l0.06,-0.9l0.96,-0.88l-0.21,-1.96l0.73,-4.43l-0.78,-0.59l-3.33,-0.76l-4.76,-0.01l-1.62,-0.37l-1.58,-0.85l-2.85,-2.28l-1.84,-0.93l-1.05,0.02l-1.76,0.67l-1.68,-3.31l-4.74,-2.03l-1.42,-1.21l-3.23,-6.53l-1.68,-2.3l-0.67,0.03l-0.74,1.23l-1.88,-4.14l-1.71,-2.22l-0.36,-0.88l0.25,-1.47l-0.61,-2.68l-0.69,-1.17l-0.84,-0.48l1.01,-1.48l-0.25,-0.66l-0.57,-0.01Z", "name": "Rheinland-Pfalz"}, "DE-BB": {"path": "M532.83,262.93l6.91,0.27l2.22,0.8l1.92,0.23l0.44,-0.36l0.41,-3.06l1.26,-0.51l3.04,0.0l5.26,2.45l2.98,-0.23l1.98,-1.24l0.85,-2.35l-0.99,-4.37l-1.3,-1.51l-0.19,-0.75l0.51,-1.09l4.24,-3.19l1.87,-1.0l5.26,-1.62l3.25,-0.16l1.03,0.3l2.97,2.0l1.17,2.19l0.54,0.17l1.95,-1.02l2.04,-0.6l5.11,0.21l0.42,-0.46l-0.31,-1.87l-1.57,-1.18l0.96,-0.35l2.95,0.42l2.23,-2.22l5.22,-1.82l2.14,0.54l3.55,-2.62l1.44,-0.2l1.23,-2.31l0.17,-1.79l2.41,-1.35l1.44,-2.09l3.01,-1.03l2.53,-0.42l1.88,1.46l0.8,0.19l3.07,-1.7l1.07,-0.25l0.91,0.3l2.34,3.19l6.9,1.55l4.13,1.99l2.89,1.84l1.73,1.54l2.81,1.31l1.58,1.72l1.67,0.3l3.5,-0.21l2.97,-0.63l10.88,2.19l1.22,0.48l2.77,2.25l7.11,1.35l0.38,3.34l1.27,0.92l1.33,0.11l4.27,-0.77l1.3,0.08l1.24,0.36l1.45,0.99l1.62,0.34l3.88,-0.72l2.7,-0.03l1.77,-0.58l0.24,0.59l-1.32,1.13l0.25,1.02l3.0,1.28l2.7,-0.34l4.68,-4.1l2.85,-1.48l2.25,-1.6l0.85,-0.96l0.63,-1.75l2.1,-1.21l0.96,-0.92l0.67,-0.19l1.12,0.29l2.25,2.71l1.35,0.48l2.75,-0.0l0.39,-0.3l0.58,-2.63l1.22,-2.32l1.51,-1.43l1.48,-0.61l2.46,-0.19l1.97,0.33l3.98,1.73l1.99,0.37l1.84,-0.55l5.11,-3.36l1.11,-0.34l2.54,-2.43l3.16,-6.27l0.57,-2.58l0.68,-1.37l1.26,-0.97l1.71,-0.74l3.64,-0.2l2.31,-1.78l1.79,-2.64l5.81,-4.06l3.38,-0.4l3.32,0.21l3.06,-1.06l0.25,-0.48l-0.46,-1.66l-2.44,-3.76l0.14,-1.93l1.1,0.14l2.53,3.13l4.32,1.37l0.21,2.84l2.8,4.16l0.58,1.9l1.86,2.02l6.85,-0.41l5.77,0.34l4.55,1.1l2.26,-2.31l2.19,-0.37l3.58,1.44l4.08,-0.21l1.93,0.35l0.14,3.17l-0.44,2.39l-1.48,2.82l-3.44,4.48l-8.18,4.5l-0.3,2.96l0.35,0.39l7.84,1.28l6.71,0.45l1.55,-1.05l0.55,-1.69l2.56,-1.06l2.7,-2.85l6.15,-3.1l0.53,2.01l0.52,4.87l0.66,0.99l2.96,2.61l-2.35,3.78l-0.64,0.78l-1.1,0.53l-0.97,1.19l-0.76,1.72l-0.3,2.0l1.13,5.86l-3.18,8.56l-1.26,2.29l-2.94,2.52l-5.73,3.73l-5.94,2.54l-4.8,2.91l-0.19,1.17l0.61,1.47l1.4,6.23l-0.38,2.37l-0.93,1.47l-2.54,1.81l-0.11,0.53l1.13,1.86l1.83,1.23l2.18,0.58l2.2,0.14l1.83,0.66l3.26,3.12l2.65,1.16l10.37,6.27l1.45,1.4l3.42,5.49l1.13,0.87l1.78,0.68l2.93,3.21l5.79,1.88l6.19,5.72l2.79,1.89l-2.56,4.42l-0.8,3.17l0.15,0.42l1.72,1.3l0.37,1.13l-1.53,2.92l-2.32,3.03l-5.2,4.02l0.57,5.35l2.33,5.75l2.0,3.74l-0.44,2.64l2.32,2.11l3.33,1.41l2.84,0.55l2.59,0.93l1.38,2.1l-0.03,2.42l-1.92,2.25l0.08,1.06l1.31,1.69l-0.33,1.66l-1.07,2.44l-0.56,3.66l1.13,2.04l5.96,3.68l-2.25,2.67l-0.94,3.67l-2.09,3.13l-0.56,1.34l-0.37,8.09l-0.8,2.46l-1.47,2.29l-1.77,1.96l-5.61,4.73l-1.43,2.62l0.38,2.98l1.61,2.04l1.83,1.09l1.23,1.37l0.39,3.4l1.12,3.5l2.26,2.19l4.69,3.23l1.2,2.14l0.94,3.23l0.16,3.3l-1.1,2.49l-1.94,2.59l-0.8,2.54l0.09,0.64l-3.68,-0.14l-4.14,-1.43l-2.43,-1.19l-2.34,-0.38l-2.13,0.08l-4.25,1.0l-12.98,5.4l-3.61,0.69l-3.27,-1.81l-3.59,-1.09l-4.83,-0.51l-6.2,1.26l-3.95,1.81l-1.29,0.97l-3.89,4.23l-0.68,1.23l-0.17,1.94l-1.45,2.85l-7.14,8.87l-0.65,0.19l-2.27,-0.54l-16.84,1.74l-14.86,-0.95l-5.83,-1.43l-2.12,0.31l-0.98,-0.34l-1.65,-2.02l-2.5,-1.41l-2.15,-1.77l-4.82,-1.95l-2.41,0.23l-1.05,0.89l-1.37,0.6l-10.59,2.94l-1.25,-1.65l-2.07,-0.6l-0.75,0.79l-1.16,0.02l-1.41,1.38l-0.62,-1.08l-0.19,-1.14l1.62,-1.55l0.77,-1.93l0.17,-3.34l-0.18,-1.13l-0.84,-1.12l1.62,-1.1l0.44,-0.88l-0.76,-3.69l-0.72,-1.45l-2.14,-1.14l-0.81,-0.96l0.6,-2.51l-0.62,-1.27l-2.96,-1.84l-1.61,0.4l-0.6,-0.2l-1.27,-0.72l-2.7,-2.76l-0.78,-0.3l1.7,-2.55l6.61,-4.44l2.82,-3.17l0.38,-2.0l-1.67,-2.84l-0.69,-2.27l0.05,-4.22l3.44,-4.71l3.42,-3.22l0.85,-1.63l-0.22,-0.56l-1.97,-0.69l-3.9,-0.1l-0.87,0.57l-0.99,1.56l-1.68,-1.39l-0.92,-0.24l-6.51,0.63l-1.69,-0.55l-5.44,-3.16l-1.64,-1.95l-1.34,-1.0l-3.16,-0.75l-5.2,-0.19l-1.54,-3.01l-1.62,-1.0l-4.91,-0.63l-12.52,-6.31l-1.37,-0.04l-1.02,1.63l-2.4,1.11l-1.29,1.05l-4.29,-0.78l-1.62,-0.78l-4.54,-2.93l-1.94,-2.14l-1.2,-0.68l-1.05,0.26l-0.91,1.14l-1.57,0.16l-0.91,-0.24l-5.29,-3.58l-0.45,-2.39l-6.14,-6.86l-1.83,-1.64l-2.35,-1.12l-1.04,-2.24l-2.57,-2.1l-1.1,-1.78l-0.78,-1.94l0.18,-0.53l0.75,-1.03l1.24,-3.22l2.18,-1.89l0.42,-0.85l-1.58,-2.49l-1.43,-0.44l-0.82,-0.87l-0.22,-3.42l1.41,-3.34l1.39,-2.35l-0.54,-2.49l0.4,-1.41l-0.17,-0.9l1.67,-2.79l0.84,-2.57l-0.06,-0.8l-0.92,-1.47l1.04,-0.59l0.71,-0.89l2.03,-3.68l0.29,-1.11l-0.07,-1.93l0.62,-1.6l-0.69,-0.46l-1.22,0.42l-2.11,0.12l-2.5,-2.97l-0.82,-0.54l-1.17,-0.23l-0.88,0.53l-0.57,1.95l-0.64,0.66l-2.14,0.61l-1.09,-0.25l-0.6,-0.7l-0.12,-0.96l1.52,-1.8l-0.03,-0.65l-1.0,-0.56l-2.71,0.1l2.65,-3.43l1.0,-7.16l2.12,0.06l2.08,-0.84l1.13,-1.67l1.02,-2.67l0.18,-2.6l-1.77,-1.68l-0.61,-1.91l-1.27,-1.95l0.04,-0.55l1.77,-1.93l-0.24,-0.97l-0.97,-1.29l-0.14,-1.2l3.23,-2.38l0.6,-1.83l-0.1,-0.97l-2.51,-6.15l-0.71,-0.68l-2.9,-0.88l-3.81,0.88l-1.98,-0.07l0.04,-1.32l-0.51,-0.97l-0.8,-0.75l-0.87,-0.31l-6.99,0.71l-2.43,-0.07l-1.52,0.49l-1.52,-0.26l-4.0,-1.73l-2.72,-0.45l-6.05,-3.35l1.24,-1.7l0.53,-1.54l-0.2,-0.49l-1.36,-0.62l-2.96,-0.11l-1.23,-0.81l-2.94,-3.67l-1.9,0.13l-3.46,1.45l-1.45,-0.21l-1.37,-3.72l-1.32,-0.74l-3.18,-0.11l-0.68,-0.29l0.99,-1.68l-0.01,-1.39l-1.2,-0.88l-4.52,0.93l-4.71,-1.53l-4.01,-0.79l-2.86,-2.43l-2.42,-0.67l-2.37,0.43l-3.15,1.8l-1.69,0.39l-1.97,-0.29l-1.51,-0.76l-3.52,-3.4l-1.27,-1.94ZM712.51,352.17l-2.13,2.83l-0.24,0.84l0.49,0.59l2.72,1.47l3.86,0.55l1.44,-1.1l3.96,-1.53l1.03,0.13l2.59,1.49l4.07,-1.29l0.78,1.4l0.65,0.35l0.6,0.08l3.06,-0.87l2.86,2.7l1.94,0.73l3.1,0.02l0.39,-0.32l0.19,-1.0l-0.28,-2.36l0.63,-0.46l2.24,-0.55l0.71,0.29l1.11,1.71l0.74,0.37l1.99,0.05l1.22,-0.76l1.06,-0.11l5.52,2.1l2.54,0.69l1.57,-0.07l0.77,0.85l0.5,3.96l0.6,0.76l1.26,-0.25l1.55,-2.46l2.57,-0.77l0.7,-0.63l0.4,-1.04l-0.21,-2.54l0.65,-1.13l2.22,-1.63l0.44,-0.98l0.1,-1.6l0.96,-0.76l0.18,-0.9l-1.61,-1.58l-3.92,-1.47l-1.78,-1.88l-1.41,-0.65l-3.7,0.31l0.05,-0.91l2.27,-4.37l-0.05,-1.23l-0.35,-0.36l-2.02,-0.24l-1.35,-0.5l-4.13,-2.37l-6.4,-6.13l-0.3,-0.98l0.18,-3.28l-3.1,-2.94l-0.74,0.12l-2.3,1.8l-0.69,1.04l-2.54,-0.92l-2.28,1.57l-0.89,1.39l-1.32,0.29l-3.59,-0.21l-1.51,-0.55l-0.47,-0.46l-0.28,-3.06l-1.65,-0.12l-0.75,0.48l-1.01,1.99l-0.99,0.74l-0.78,0.37l-2.79,0.34l-0.59,0.41l-1.16,3.09l0.7,1.81l-5.25,-1.72l-0.67,0.17l-1.1,2.14l0.34,1.33l-0.73,6.75l1.54,2.43l0.01,0.51l-4.11,3.6l-0.55,2.59l0.67,1.81Z", "name": "Brandenburg"}, "DE-NI": {"path": "M115.46,378.55l-1.27,-3.35l0.06,-2.28l2.67,-5.76l0.81,-5.02l-1.43,-3.48l-5.97,-7.99l-1.08,0.11l-1.56,1.6l-2.34,0.56l-2.5,0.14l-2.7,-0.36l-5.11,-1.6l-7.72,-0.9l-2.47,-0.99l-1.81,-1.73l-0.55,-1.82l-0.49,-4.67l-0.94,-1.66l1.11,-0.1l5.45,-2.26l0.07,-0.7l-3.17,-2.2l-0.57,-0.7l0.61,-3.17l-0.67,-1.31l3.07,-1.83l3.18,-0.81l9.21,-0.12l5.15,1.28l4.89,-0.57l4.92,1.39l0.44,-0.17l1.79,-2.83l0.78,-4.85l0.91,-14.28l0.84,-4.36l1.72,-3.95l8.07,-10.41l2.13,-4.45l0.93,-4.33l0.16,-4.89l-0.91,-9.52l-1.22,-2.76l-0.07,-1.46l2.3,-6.28l0.31,-2.15l-0.36,-5.66l1.96,-1.4l1.78,-2.46l0.39,-1.72l-0.65,-1.5l2.25,-2.78l1.17,-0.49l2.15,-0.03l2.03,0.44l3.4,1.75l1.85,0.61l0.46,-0.16l-0.02,-0.48l-2.36,-2.83l-4.08,-1.29l-22.38,-0.66l-3.4,-1.37l-1.35,-3.49l-0.03,-9.79l0.41,-2.17l1.88,-4.01l0.44,-2.0l0.65,-0.98l5.6,0.72l0.43,-0.22l0.46,-0.95l0.99,-0.52l0.71,-1.31l-0.23,-2.15l-1.01,-1.06l-2.81,-1.15l-1.11,-0.93l-0.17,-1.42l1.22,-1.3l3.18,-1.82l3.53,-3.21l1.94,-1.1l3.58,-3.03l7.63,-2.42l14.93,-1.37l2.11,1.74l2.47,0.45l14.46,-2.45l29.37,-3.34l7.48,1.77l-0.59,4.64l2.75,4.86l4.1,4.31l3.18,1.83l-0.79,2.11l0.21,0.55l3.61,1.09l0.91,1.16l-0.27,2.14l-0.82,1.08l-2.03,1.25l-1.68,0.71l-3.8,0.28l-1.88,0.92l-0.19,0.51l1.79,4.46l0.92,1.72l1.42,1.28l2.69,-0.78l1.49,0.05l1.02,0.45l3.3,2.65l1.97,2.6l1.57,0.6l1.65,-0.04l2.49,-0.83l1.28,-1.04l2.07,-2.81l2.26,-4.79l0.53,-4.59l-2.97,-3.03l-4.15,0.72l-1.61,-0.22l0.15,-1.52l0.84,-2.23l0.69,-4.5l0.77,-1.77l1.18,-1.02l1.53,-0.5l3.96,-0.16l1.71,0.64l3.93,4.81l4.05,1.68l8.34,1.33l3.5,1.38l0.0,0.51l-2.23,1.57l-2.16,2.13l-1.7,3.11l-0.6,3.95l0.12,7.57l0.62,3.43l1.33,2.46l0.43,0.2l0.32,-0.36l0.29,-3.39l-1.03,-8.32l0.08,-3.82l1.4,-2.72l4.03,-2.71l1.35,2.04l0.82,0.41l0.67,-0.14l0.87,1.2l0.75,0.15l2.39,-1.76l1.52,-1.93l0.36,-1.37l0.0,-1.94l-0.66,-2.81l-1.46,-3.59l1.02,-1.68l0.0,-0.68l-0.94,-0.41l-3.99,0.14l-2.08,-0.3l-4.64,-1.39l-1.09,-3.47l-1.37,-3.0l-0.3,-2.13l0.21,-2.17l0.58,-1.91l3.68,-7.48l2.6,-8.07l1.65,-3.52l1.35,-1.64l1.85,-1.44l2.09,-1.01l2.12,-0.4l1.94,0.11l1.04,0.37l2.4,2.2l3.55,2.43l3.79,1.59l7.76,1.55l4.28,-0.11l7.08,-1.43l3.88,0.25l2.06,-1.78l7.65,-1.52l7.72,0.06l1.68,-0.91l1.28,0.74l1.61,0.24l3.29,-0.12l2.8,2.62l9.59,13.75l3.95,3.77l2.77,1.85l1.26,1.32l1.39,4.1l6.74,8.07l1.67,1.23l5.35,1.36l5.81,3.25l6.45,1.19l0.53,5.24l0.83,0.75l0.54,1.1l1.04,0.79l1.06,2.44l1.22,1.71l4.04,3.28l1.17,-0.02l1.34,-1.59l1.38,-0.43l0.72,0.77l0.36,2.98l0.47,0.57l1.03,0.08l2.4,-0.92l2.11,1.06l0.92,0.1l3.61,-1.01l1.68,-0.82l0.46,-0.52l0.05,-1.32l4.58,-1.24l2.69,2.2l2.0,0.47l2.17,2.24l1.6,0.94l1.86,0.35l5.4,-0.3l2.63,-2.81l1.7,-0.67l6.27,0.08l3.44,1.07l13.9,6.86l4.11,1.16l3.3,-1.05l7.18,-0.24l3.19,0.68l1.97,2.0l0.29,3.96l0.69,2.03l1.7,0.76l1.8,0.34l3.11,3.24l3.13,2.07l8.94,4.23l10.75,8.24l4.89,2.99l1.4,-0.58l0.98,-0.99l3.25,-2.19l1.04,-0.13l0.63,0.31l3.15,4.06l0.99,-0.04l1.99,-1.5l1.34,1.35l1.51,0.74l3.41,4.98l3.6,3.47l1.72,0.88l2.23,0.35l1.97,-0.42l3.25,-1.84l1.92,-0.36l2.08,0.54l2.99,2.5l4.12,0.82l4.35,1.42l-1.68,3.84l-0.77,0.46l-2.47,-0.34l-1.12,0.2l-1.04,0.89l-0.56,1.38l-0.56,3.09l0.53,3.24l-2.91,0.34l-5.93,4.56l-3.45,0.76l-5.91,2.07l-3.37,-0.06l-1.5,0.92l-0.84,0.15l-1.33,-1.47l-1.3,-0.46l-1.27,-0.93l-4.82,-0.73l-5.72,0.35l-2.46,-0.91l-2.96,-0.63l-3.66,0.05l-1.29,0.44l-0.55,0.51l-0.87,3.09l-1.82,1.17l-0.98,1.06l-1.75,0.76l-5.41,1.56l-4.22,-0.17l-4.63,0.28l-3.37,1.07l-0.53,0.57l0.1,1.29l-0.37,1.23l0.33,2.15l-0.3,2.12l1.73,3.36l1.89,1.78l0.78,3.5l1.13,0.95l1.14,0.05l1.28,0.66l4.69,7.75l4.3,4.98l0.94,0.24l2.18,-1.25l1.53,0.6l-0.19,0.62l-2.61,2.68l-0.2,3.61l0.79,2.52l1.27,1.25l3.25,4.51l-2.52,-0.34l-2.02,0.75l-1.23,2.54l-0.26,2.01l7.18,8.09l1.1,0.74l1.63,0.46l2.76,1.91l0.46,0.76l-0.67,1.99l-5.37,0.98l-1.02,0.57l-0.16,0.6l0.42,1.71l1.99,1.01l0.29,0.99l0.68,0.86l-1.72,1.63l-0.06,1.01l2.97,3.43l1.55,0.07l0.12,1.84l0.44,0.57l0.57,-0.08l0.71,-0.9l0.41,0.68l0.05,1.57l-0.5,0.99l-4.02,1.27l-0.93,0.84l-0.85,1.67l-0.1,1.23l0.83,1.31l2.6,1.13l0.31,1.8l-0.86,1.53l-3.27,2.63l-1.99,0.93l-3.46,0.91l-1.05,0.78l0.03,1.25l1.94,1.35l0.02,1.63l-0.49,0.91l-6.4,0.12l-2.04,0.26l-2.48,0.82l-12.98,0.0l-5.61,0.73l-1.14,0.51l-0.11,1.63l-2.74,2.39l-1.03,0.26l-2.99,-0.26l-1.25,0.79l0.09,0.97l1.68,2.07l0.45,1.4l2.39,0.99l1.4,1.33l0.88,0.11l-1.44,0.6l-0.63,0.61l-0.61,2.7l0.4,0.91l1.85,1.1l0.42,3.24l-1.01,1.48l-1.41,0.7l-0.96,1.26l-2.27,1.25l-0.47,5.79l0.76,3.7l1.88,1.76l1.54,0.91l0.81,2.15l1.56,2.58l1.95,1.85l0.47,1.72l0.05,3.22l2.55,3.87l-4.37,2.1l-1.93,1.89l-0.17,1.13l2.41,2.9l-0.28,1.58l-0.66,-0.13l-1.34,-1.22l-0.91,-0.14l-5.99,2.2l-4.05,0.05l-3.45,-2.38l-4.79,-2.12l-1.12,-0.13l-4.61,0.8l-0.33,0.78l0.52,1.1l-0.13,0.92l-1.26,3.01l-2.25,1.73l-0.56,0.95l-3.3,1.84l-0.96,2.03l-5.65,2.71l-1.08,-0.06l-1.01,-1.16l-2.25,0.27l-0.95,0.96l-0.19,0.79l0.23,0.63l-0.88,1.42l-2.15,0.83l-0.44,0.51l0.07,0.79l-4.27,-0.14l-1.56,0.26l-1.43,1.41l-2.09,-1.47l-0.61,-0.1l-1.18,1.11l-2.01,0.97l-1.17,1.15l-4.75,3.28l-3.87,-2.56l-0.25,-1.82l-1.11,-0.36l-1.26,1.02l-1.8,0.12l-0.56,0.44l0.01,1.23l1.21,2.13l-1.09,1.14l-0.79,-0.44l-1.69,-2.82l-2.48,-1.28l-1.37,-0.18l-0.39,0.67l0.45,1.17l-0.62,0.54l-2.41,0.65l-5.53,3.1l-0.02,0.88l0.65,1.14l3.25,2.63l0.78,0.04l1.49,-1.24l0.85,0.04l-1.09,1.29l-0.31,1.41l-4.09,3.01l-1.1,-0.09l-2.86,-3.04l-1.29,-0.6l-1.4,-0.02l-8.42,-2.95l-2.76,-2.13l1.84,0.52l1.0,-0.1l0.41,-0.79l-0.87,-2.39l1.42,-1.62l1.48,0.17l3.54,-0.51l0.61,-0.48l0.32,-0.8l-0.35,-3.43l0.22,-1.72l-0.67,-1.45l0.79,-1.08l-0.0,-0.55l-2.2,-1.92l-2.03,-4.2l1.15,-0.18l0.53,-0.45l0.52,-3.49l1.48,0.51l1.18,-0.55l-0.94,-1.81l0.05,-0.77l3.23,1.7l0.81,-0.37l0.85,-1.46l-0.08,-0.5l-1.86,-1.65l-1.21,-3.05l-0.5,-0.51l-1.86,-0.75l-0.72,-1.56l-0.56,-0.31l-3.39,0.67l-1.85,-0.52l-0.82,-1.0l-0.88,-0.35l-2.24,1.51l-2.53,-0.16l-0.61,-0.59l-0.1,-1.76l-1.06,-0.89l-1.84,0.04l-1.55,1.24l-0.93,-0.53l-4.49,1.16l-1.27,-0.04l-0.33,-0.6l0.14,-2.05l1.1,-0.82l0.42,-0.92l-0.26,-1.61l0.62,-1.44l-0.35,-2.27l0.09,-1.97l0.97,-1.1l0.45,-1.29l1.54,-0.82l1.19,-1.09l1.83,-4.09l0.1,-3.07l0.87,-1.01l-0.0,-0.49l-2.09,-1.12l1.52,-1.85l0.52,-1.31l-0.12,-0.43l-0.96,-0.45l-2.14,0.73l-2.17,0.28l-4.42,-0.14l-3.68,0.78l1.21,-2.96l0.24,-1.56l-0.82,-2.63l-0.65,-0.77l-2.46,-0.96l-3.71,0.26l1.38,-1.61l1.11,-3.64l-0.01,-1.25l-4.14,-1.68l-1.96,0.4l-0.87,1.33l-4.09,-1.65l0.35,-1.29l1.55,-1.13l0.61,-1.57l-2.17,-5.31l1.26,-2.23l-0.13,-1.54l-1.36,-1.61l-2.66,-0.94l-0.67,-0.58l0.56,-2.1l-0.42,-0.74l-0.99,-0.53l-7.02,-0.81l-3.33,0.12l-2.84,0.49l0.93,-1.56l0.05,-1.05l-1.75,-3.98l2.55,-0.61l2.71,-0.03l0.42,-0.72l-0.88,-2.83l0.24,-0.48l3.03,-2.05l-0.37,-0.75l-2.65,-0.59l-5.42,-1.94l-0.31,-0.92l1.2,-6.89l1.09,-1.98l3.88,-0.02l2.7,-1.32l2.14,-3.59l3.22,-4.3l-1.8,-5.79l1.98,-1.61l0.46,-1.66l-0.36,-0.48l-1.9,-0.68l-1.64,-1.87l-1.76,-0.31l-5.64,2.47l-3.2,2.9l-2.43,5.57l-0.6,0.76l-6.47,1.19l-3.46,1.17l-3.1,0.29l-11.05,-1.16l-0.34,-1.5l0.39,-2.62l-0.58,-1.49l0.25,-2.87l-0.36,-2.11l-2.87,-4.32l-1.71,-1.2l-1.77,-0.58l-1.21,0.05l-4.82,1.94l-1.5,0.25l-4.82,-0.13l-2.27,0.32l-3.29,2.31l-1.15,4.18l-0.92,0.77l-1.62,0.63l-5.46,0.59l-1.93,-0.59l-2.26,-0.0l-2.14,-0.66l-0.49,0.52l1.95,5.39l1.3,1.69l6.51,2.58l2.76,1.65l1.18,1.57l0.83,2.02l1.01,4.38l0.09,11.88l0.43,1.49l3.2,1.97l-0.55,1.26l-1.48,1.81l-4.92,2.75l-0.82,1.03l-1.0,2.34l-0.51,0.29l-0.57,0.12l-12.68,-2.85l-3.2,2.34l-2.29,2.56l-2.84,1.69l-6.78,2.13l-3.58,-1.05l-3.66,0.55l-1.61,0.66l-4.65,3.55l-2.3,-1.12l-3.31,-1.03l-1.95,-4.25l0.09,-0.44l1.01,-0.92l1.66,-1.09l2.38,-0.91l4.44,-0.76l1.34,-3.69l1.36,-2.54l-0.13,-1.03l-2.75,-1.05l-4.25,0.24l-0.58,-0.37l-0.63,-1.57l-2.6,-0.46l-0.47,-0.59l1.57,-1.68l0.83,-1.43l0.02,-0.69l-0.9,-1.99l2.07,-1.89l0.88,-1.35l-0.05,-0.6l-1.31,-1.82l-0.28,-1.23l3.7,-0.71l0.46,-0.33l0.02,-0.85l-3.03,-4.39l-3.79,-4.04l-1.29,-0.17l-6.88,2.01l-1.96,-1.62l-6.64,-3.45l-2.38,-0.72l-0.49,-0.57l-1.06,-5.25l-0.47,-0.81l-0.94,-0.61l-7.02,-1.79l-1.14,0.23l-0.82,1.0l-1.19,4.42l0.45,1.23l1.48,1.15l-1.05,0.79l-1.37,3.44l-1.33,1.45l-2.55,-0.26l-2.1,0.49l-4.64,3.18l-4.97,4.25l-1.66,0.81l-3.05,0.66l-6.57,4.03l-3.97,0.72l-13.48,0.46l-2.82,1.87l-3.94,1.38l-2.32,-0.08ZM267.32,254.66l3.32,0.02l0.42,0.3l1.31,2.15l0.22,2.67l0.49,1.35l1.59,1.98l4.61,4.16l0.05,4.06l0.58,0.68l1.55,0.22l5.01,-0.89l5.07,2.57l2.07,0.29l2.05,-0.57l0.52,-1.0l4.53,2.68l4.27,-2.41l1.66,-1.57l0.62,-3.85l1.06,-1.85l-0.49,-1.03l-2.34,-2.04l-0.27,-0.6l1.56,-1.38l0.07,-0.82l-3.71,-3.45l-0.75,-0.19l-0.77,0.38l-1.49,2.82l-1.38,0.03l-3.32,-1.36l-3.71,-2.54l-4.35,-0.27l-2.53,-1.4l-0.19,-0.99l-0.64,-0.48l-3.51,-0.02l-1.93,0.44l-6.98,-2.15l-2.86,-1.43l-2.49,0.47l-3.4,-1.71l-1.19,-0.2l-2.22,0.28l-0.3,0.59l1.66,3.23l4.26,1.53l2.28,1.29ZM227.51,180.96l-1.99,1.47l-1.87,-0.53l-0.68,0.29l1.08,-1.64l1.72,-0.61l2.03,0.27l0.75,0.44l-1.04,0.33ZM203.67,172.73l0.94,0.46l-4.32,-0.76l-1.77,0.08l-0.38,0.36l-0.09,0.99l-1.02,-0.6l0.18,-0.36l1.55,-0.47l1.98,-0.18l2.93,0.48ZM191.01,174.13l-5.02,2.07l-2.65,0.13l-2.31,-1.24l-0.49,0.09l-1.57,1.43l-0.87,-0.22l2.08,-2.12l3.95,-0.72l7.87,0.44l-1.0,0.13ZM173.77,177.67l-7.37,-0.07l-3.4,0.67l-0.32,0.35l-0.23,2.01l-2.39,0.1l-0.64,-0.46l-0.29,-1.55l0.41,-1.29l0.99,-0.5l11.55,-0.15l1.69,0.9ZM150.2,180.57l2.02,-0.32l1.74,0.31l0.88,0.58l-0.86,0.38l-3.78,-0.95ZM146.19,181.41l-4.62,1.49l-11.88,1.28l-2.78,-0.63l3.4,-1.62l5.2,-0.71l10.68,0.19ZM118.67,186.33l-15.74,1.45l1.05,-0.42l13.24,-1.39l1.45,0.37ZM104.4,192.52l-2.3,2.1l-1.24,-0.42l-1.0,-0.75l0.02,-1.31l0.81,-0.46l1.59,0.01l2.12,0.83ZM86.49,201.05l-1.79,-0.07l-1.97,0.75l-1.55,-0.63l-1.22,-1.42l-0.29,-1.2l0.84,-0.53l7.38,-1.84l3.39,-0.21l0.85,1.36l-1.66,0.21l-5.17,1.55l-0.32,0.39l0.0,0.82l0.28,0.38l1.22,0.43ZM87.0,201.35l0.07,0.04l0.19,0.21l-0.26,-0.25Z", "name": "Niedersachsen"}, "DE-MV": {"path": "M481.88,178.09l1.27,-5.8l-0.83,-3.75l-1.13,-2.45l0.29,-1.56l0.83,-1.66l4.68,-2.26l4.85,-3.67l2.24,-1.2l1.72,0.43l-0.12,1.14l0.99,0.72l3.24,-0.41l1.7,-0.93l0.16,-0.56l-0.33,-0.33l-3.9,-1.01l-0.81,-0.48l-0.52,-0.73l0.03,-3.3l1.59,-0.26l4.11,-3.22l3.45,-0.82l5.17,-2.25l11.79,-1.27l0.68,0.21l0.55,0.62l0.61,1.82l0.75,1.05l3.59,0.9l0.34,0.43l-0.43,2.9l0.44,1.82l1.39,0.62l3.84,-0.01l3.92,-2.68l0.43,0.23l0.95,1.8l0.72,0.58l3.97,0.08l3.88,4.15l1.03,0.52l1.12,0.0l0.4,-0.36l0.12,-1.35l1.74,-4.84l-0.39,-2.18l0.58,-0.78l1.57,-0.67l0.3,-0.51l-0.53,-2.5l3.15,-2.59l0.06,-1.4l2.37,0.48l2.19,-1.25l1.85,-3.64l2.07,-0.97l1.22,-1.54l0.55,-1.83l-0.73,-0.73l0.25,-0.95l3.14,-4.29l2.97,-1.67l3.7,-0.43l8.27,1.17l23.4,-4.06l3.29,-1.69l0.42,3.25l-0.36,3.7l0.21,3.25l2.42,2.44l0.52,0.02l0.1,-0.51l-0.91,-1.57l-0.48,-3.42l-0.47,-1.21l0.85,-1.3l2.72,-1.25l1.04,-2.02l-0.33,-0.57l-1.1,-0.09l-1.94,0.39l3.27,-3.47l2.05,-1.51l2.28,-3.09l9.96,-4.23l3.84,-2.6l1.52,-1.45l3.52,-5.52l1.05,-1.22l-0.59,1.13l0.6,1.49l-0.41,1.37l-1.07,1.02l-1.5,0.28l-0.3,0.53l1.67,4.2l-0.96,0.92l0.08,0.64l4.28,2.4l2.76,0.51l2.1,-1.06l0.21,-0.46l-0.4,-0.3l-1.44,0.05l-1.04,-0.41l-1.72,-1.22l0.5,-1.24l0.86,-1.09l2.41,-1.89l2.2,-1.01l0.58,-2.84l1.52,-1.04l6.33,-2.46l0.06,-0.72l-1.75,-0.91l0.0,-0.3l1.47,-0.44l1.21,0.48l0.61,-0.48l1.52,0.93l3.01,-0.65l5.35,-2.46l0.19,-0.54l-0.53,-1.6l1.75,-0.75l1.13,-0.12l0.84,0.07l0.0,0.31l-1.37,0.36l-1.07,1.21l-0.6,1.63l-0.24,1.69l0.25,0.43l0.47,-0.14l1.82,-3.02l1.44,1.83l1.27,0.53l1.27,-0.9l0.88,0.63l1.3,0.04l1.61,-1.19l1.23,2.28l2.15,2.08l3.54,-0.17l1.13,-0.3l1.19,-0.87l2.71,-4.6l2.43,-1.94l3.83,-2.0l3.76,-1.13l1.58,0.38l-0.75,0.77l-0.02,1.78l0.74,1.72l1.22,1.43l4.35,1.86l0.83,0.64l-1.7,2.66l0.47,2.25l2.74,3.57l0.27,2.86l0.51,1.42l1.24,0.49l3.99,0.0l-2.46,1.08l-0.2,0.46l0.41,0.29l3.11,-0.24l5.03,2.31l3.47,0.68l2.36,1.04l3.17,5.26l2.26,1.65l-2.2,1.58l-0.12,0.44l0.38,0.26l2.45,-0.02l3.67,-1.49l1.35,0.42l-0.96,1.68l-0.73,0.52l0.06,0.68l1.5,0.58l1.28,-0.7l0.58,0.13l3.09,5.62l1.6,1.75l2.0,1.01l2.31,0.03l0.41,-0.4l-0.16,-1.24l-2.58,-2.64l0.0,-0.38l11.86,-1.89l2.96,-1.11l4.97,-2.74l2.47,-0.67l0.11,0.58l-1.67,0.89l0.25,1.2l2.96,1.24l7.58,5.14l0.0,0.58l-1.4,1.99l-0.8,2.57l-1.13,2.22l-2.54,1.27l-0.03,0.7l1.14,0.71l3.92,4.35l3.93,1.64l0.96,2.37l0.13,1.83l0.62,0.29l1.32,-0.1l3.52,1.43l0.11,0.95l-0.54,1.35l-1.02,1.17l-7.11,4.79l-1.03,2.12l1.08,1.82l4.32,1.47l0.64,1.45l1.44,1.69l1.65,1.21l1.2,-0.08l7.09,4.81l3.28,0.64l2.2,1.94l2.93,-0.02l3.77,1.62l7.89,0.48l2.88,-0.69l1.36,-1.95l0.53,-0.3l1.33,0.21l1.2,0.95l0.24,1.85l-0.62,0.81l-4.53,2.63l0.03,0.71l2.74,1.01l2.06,0.16l0.11,3.31l-0.35,2.31l1.47,2.6l2.03,5.14l-0.01,9.18l0.78,2.91l2.34,2.95l1.05,2.83l2.0,2.75l1.02,6.87l1.97,7.47l-6.36,3.2l-2.8,2.92l-2.51,1.0l-0.8,1.97l-1.14,0.69l-6.32,-0.5l-7.49,-1.23l0.07,-1.99l8.07,-4.44l3.64,-4.68l1.56,-2.97l0.5,-2.61l-0.15,-3.62l-0.33,-0.38l-2.38,-0.42l-4.03,0.2l-3.65,-1.45l-2.68,0.55l-1.84,2.12l-4.36,-1.07l-5.89,-0.35l-6.67,0.4l-1.35,-1.65l-0.55,-1.85l-2.78,-4.12l-0.15,-2.8l-0.28,-0.36l-4.46,-1.42l-2.37,-3.03l-1.95,-0.36l-0.45,0.37l-0.11,2.73l2.43,3.71l0.34,1.25l-2.47,0.89l-3.35,-0.2l-3.69,0.49l-5.95,4.16l-1.9,2.75l-2.07,1.57l-3.36,0.12l-2.06,0.87l-1.49,1.2l-0.78,1.6l-0.52,2.46l-3.14,6.23l-2.25,2.12l-1.08,0.32l-5.11,3.37l-1.58,0.46l-1.65,-0.34l-4.03,-1.74l-2.16,-0.35l-2.69,0.23l-1.67,0.7l-1.73,1.64l-1.31,2.48l-0.54,2.42l-2.37,0.0l-1.05,-0.39l-2.24,-2.7l-1.49,-0.38l-0.95,0.24l-3.38,2.33l-0.75,1.93l-0.63,0.7l-5.62,3.47l-3.89,3.57l-2.31,0.33l-2.6,-1.06l1.35,-1.58l-0.23,-0.9l-0.71,-0.49l-2.07,0.58l-2.65,0.02l-3.83,0.71l-1.26,-0.27l-1.45,-0.99l-1.48,-0.42l-1.47,-0.08l-4.28,0.77l-1.03,-0.09l-0.84,-0.76l-0.44,-3.33l-1.02,-0.5l-2.4,-0.1l-3.98,-0.9l-2.57,-2.14l-1.45,-0.6l-11.0,-2.21l-3.17,0.63l-3.42,0.2l-1.36,-0.24l-1.39,-1.6l-2.87,-1.35l-1.69,-1.51l-3.01,-1.91l-4.27,-2.04l-6.72,-1.48l-2.18,-3.07l-1.48,-0.52l-1.36,0.31l-2.9,1.65l-1.67,-1.38l-0.83,-0.27l-2.73,0.44l-3.4,1.19l-1.37,2.07l-2.51,1.41l-0.35,2.12l-0.8,1.81l-1.46,0.23l-3.54,2.59l-1.86,-0.59l-5.53,1.92l-2.27,2.22l-2.68,-0.5l-1.8,0.75l-0.04,0.69l1.83,1.19l0.2,1.19l-4.83,-0.16l-3.84,1.51l-1.16,-2.07l-3.11,-2.09l-1.4,-0.41l-3.47,0.18l-5.42,1.68l-1.98,1.07l-4.34,3.27l-0.73,1.46l0.23,1.27l1.3,1.5l0.92,3.96l-0.59,1.85l-1.78,1.11l-2.39,0.19l-5.25,-2.44l-3.37,-0.04l-1.92,0.94l-0.43,2.95l-1.38,-0.16l-2.38,-0.84l-3.17,0.0l-2.36,-0.41l-1.94,0.19l-1.7,-2.33l-1.63,-0.83l-1.49,-1.47l-0.43,-0.03l-2.56,1.58l-2.84,-3.85l-0.96,-0.51l-1.64,0.19l-5.08,3.67l-4.62,-2.83l-10.76,-8.25l-8.97,-4.25l-3.06,-2.02l-3.18,-3.29l-3.42,-1.07l-0.41,-1.54l-0.3,-4.04l-2.26,-2.41l-3.66,-0.83l-6.36,0.22l1.87,-2.81l0.96,-6.46l0.4,-0.57l2.56,-1.02l2.21,0.2l0.63,-0.57l0.84,-2.19l5.35,-1.32l6.28,-3.89l0.24,-2.17l0.93,-2.22l-0.43,-2.79l0.74,-0.1l1.67,0.49l5.12,-0.46l0.7,0.9l0.38,1.6l0.94,0.58l1.03,-0.62l1.68,-1.92l-0.45,-0.76l0.36,-0.4l-0.03,-1.53l-1.19,-3.64l-0.06,-1.97l1.42,-1.15l0.2,-2.07l-1.01,-2.08l-0.06,-1.48l-0.36,-0.71l-1.78,-1.65l-1.19,-0.66l-2.83,-0.7l-2.05,0.25l-0.63,-0.29l-5.03,-5.16l-4.54,-0.84ZM642.03,96.75l2.68,-3.13l-0.63,2.04l0.39,1.75l-1.9,-0.76l-0.53,0.09ZM646.29,91.77l5.12,-7.49l1.57,-3.56l1.02,-1.06l0.94,-0.38l-0.15,0.3l2.09,2.72l4.42,1.54l22.39,0.02l3.61,1.41l2.46,-1.0l2.55,0.51l0.89,1.08l-2.02,1.51l-2.37,0.42l-10.42,-0.72l-4.15,-1.26l-2.84,-0.27l-0.94,0.39l-1.41,1.42l-4.37,-0.38l-1.18,0.46l-0.54,1.22l-0.68,-0.41l-1.93,0.97l-0.31,0.45l0.18,1.16l0.46,0.67l-0.88,-0.33l-2.27,0.21l-1.77,0.96l-0.78,1.25l-1.36,-1.34l-2.06,-0.82l-3.55,-0.27l-1.75,0.64ZM798.18,135.23l2.91,1.47l17.21,15.3l1.48,0.9l-1.46,3.17l-1.53,0.57l-0.19,0.67l1.65,1.65l0.58,1.53l-10.57,0.99l-2.07,-0.25l-1.58,-0.9l-0.47,0.05l-2.24,2.05l-2.77,1.31l-5.55,1.2l-6.12,0.08l-3.28,-0.8l-1.29,-1.44l2.73,-1.47l3.19,-0.58l3.4,-1.59l1.13,-1.09l0.66,-4.18l-3.57,-5.48l0.22,-2.93l4.5,0.22l1.2,0.4l-0.38,0.56l0.15,0.98l-0.76,2.6l-0.13,2.14l0.27,0.4l0.46,-0.15l1.47,-2.12l1.08,-0.47l2.68,0.0l-0.52,1.44l0.29,0.47l3.34,0.84l0.46,-0.55l-0.72,-1.6l1.22,-3.31l-0.18,-3.59l-1.42,-2.43l-0.47,-0.17l-1.9,0.64l-1.77,-3.7l-1.46,-1.56l-1.7,-1.06l-1.94,-0.38l-2.1,0.34l-1.22,1.15l0.76,2.71l-1.6,1.17l-1.07,2.06l-0.41,0.19l-2.81,0.86l0.13,-1.11l1.42,-1.77l0.37,-1.03l-0.51,-1.88l-1.02,-0.45l-4.22,1.64l-2.77,2.59l-1.39,-0.44l0.66,-2.18l2.64,-4.4l0.59,-3.89l-0.97,-2.23l-3.98,-3.38l-1.02,-1.27l0.73,-1.23l1.4,-1.19l1.62,-0.51l1.59,0.54l2.75,5.55l1.2,1.8l2.68,2.23l6.55,3.11l3.73,1.16ZM717.1,70.94l0.86,-0.33l7.41,-0.88l1.4,0.26l0.65,0.83l2.08,0.95l0.91,2.64l0.59,0.17l0.92,-0.75l0.37,-1.54l-0.73,-2.11l2.98,-2.84l2.59,-1.34l-0.78,1.96l-1.6,2.28l1.38,0.3l0.56,0.55l-1.27,2.45l0.34,0.57l1.55,0.06l1.3,-0.43l0.97,-0.99l0.59,-1.5l-0.15,-0.28l2.04,2.68l-0.5,2.26l1.94,2.26l2.76,0.85l5.06,-0.1l0.32,-0.63l-0.58,-0.81l0.81,-1.53l1.19,-1.21l0.0,-1.0l-0.82,-2.08l-1.25,-1.71l0.0,-0.53l2.07,-1.24l0.0,-0.83l-0.42,-0.4l-1.44,0.13l-2.04,1.73l-4.14,-0.01l-1.71,-2.32l-2.38,-0.69l-2.79,-4.19l-0.59,-0.19l-2.12,1.56l-1.57,1.74l-2.23,1.09l-3.33,2.46l-1.56,-0.4l-0.27,-1.27l0.66,-2.36l1.21,-2.17l1.43,-1.1l0.74,-1.91l0.19,-1.57l-0.73,-0.79l-4.39,0.92l-1.58,0.74l0.04,-1.14l0.47,-0.77l2.06,-1.48l13.37,-3.12l2.61,-0.03l2.27,0.99l0.0,0.36l-5.15,3.06l-0.91,2.1l0.3,2.72l0.9,2.03l1.37,1.57l1.77,1.18l4.26,1.13l12.66,-1.96l4.19,0.74l2.78,2.47l0.59,3.18l-2.4,3.07l-4.28,2.3l-2.21,1.72l-1.07,2.36l0.38,2.35l0.86,2.37l2.2,3.34l2.24,0.98l4.58,0.9l1.91,1.1l2.56,3.78l1.72,1.82l1.71,0.59l-1.88,1.65l-1.04,1.84l-0.61,4.97l-1.03,-0.15l0.56,-0.37l0.42,-1.18l-0.4,-1.44l-0.39,-0.29l-0.93,0.1l-0.94,0.82l-1.37,0.42l-1.45,0.02l-0.87,-0.32l0.0,-0.35l3.37,-1.17l1.59,-1.01l0.95,-1.69l-0.38,-0.59l-4.86,0.27l2.95,-1.26l0.27,-0.38l0.0,-0.92l-0.37,-0.4l-2.64,-0.2l-1.61,0.16l-2.18,1.69l-1.33,-1.1l-1.32,-0.55l-9.78,0.92l-1.95,0.97l-5.19,3.7l-2.26,3.44l-2.3,0.4l-2.4,1.24l-0.38,3.61l0.62,0.37l1.34,-0.92l0.17,-1.07l4.01,-0.37l0.65,2.8l-0.16,1.11l-1.24,0.49l-2.67,-0.34l-3.04,-0.87l-2.94,-1.56l0.47,-0.5l1.52,-3.61l-0.08,-0.46l-0.46,-0.08l-1.52,0.75l-1.29,1.29l0.11,0.63l-2.2,0.09l-1.51,0.81l-2.31,-1.61l-3.15,-0.9l-0.85,-0.92l0.48,-1.51l-0.29,-0.51l-1.67,-0.33l-3.63,1.23l-0.4,-0.62l0.38,-0.57l1.05,-0.32l1.37,0.46l0.53,-0.38l0.0,-0.85l-5.97,-3.92l1.18,-2.54l1.83,-2.27l2.22,-0.81l2.84,1.5l0.51,-0.12l0.43,-0.59l1.12,0.72l1.49,-0.24l2.92,-1.61l0.2,-0.43l-0.36,-0.32l-1.42,-0.13l-0.98,-0.77l-0.39,-1.08l0.43,-2.25l-0.37,-0.4l-1.21,-0.09l-1.21,-1.26l-1.17,-0.47l-3.67,0.72l1.81,-2.6l2.61,-0.53l2.92,-1.24l1.96,-0.29l0.34,-0.4l0.0,-0.64l1.22,-0.93l-0.17,-0.66l-3.75,-1.4l-0.54,-0.84l0.67,-0.9l-0.06,-1.13l-0.52,-0.34l-2.85,0.91l-1.55,0.14l-1.67,-1.29l-0.34,-2.16l-0.75,-0.98ZM739.74,70.67l-2.16,-0.9l0.0,-0.41l0.82,-0.62l1.34,1.93ZM708.19,76.74l0.04,-0.44l3.06,-8.86l0.66,-3.4l0.57,-0.76l1.43,-0.3l2.19,0.07l0.42,1.09l-0.55,0.2l0.0,-0.75l-0.62,-0.33l-2.57,1.82l-0.58,2.3l-0.09,2.57l-0.9,2.68l-2.11,1.75l-0.95,2.35ZM557.96,136.39l-0.46,-2.08l0.42,-0.96l5.48,-2.14l-4.16,3.09l-1.28,2.09ZM553.57,141.62l-2.73,6.57l-0.88,1.07l-0.66,0.02l0.62,-2.98l-0.43,-1.56l-0.38,-0.29l-1.19,0.21l-0.56,1.41l0.38,1.58l-1.1,0.75l-1.36,-0.06l-2.68,-1.57l1.26,-2.66l3.41,-2.37l3.87,-1.03l2.42,0.91Z", "name": "Mecklenburg-Vorpommern"}, "DE-TH": {"path": "M402.19,500.97l-0.34,-2.77l-0.3,-0.79l-0.99,-0.96l-0.56,-2.07l0.55,-1.65l6.77,-4.71l1.13,-1.12l2.04,-0.99l0.85,-0.94l2.62,1.57l0.6,-0.21l1.05,-1.24l1.28,-0.22l4.86,0.16l0.38,-0.56l-0.28,-0.79l1.43,-0.39l1.04,-0.73l0.98,-1.6l-0.07,-1.35l0.65,-0.63l1.64,-0.18l0.79,1.07l1.57,0.18l6.05,-2.87l1.05,-2.11l3.21,-1.76l0.66,-1.04l1.54,-0.93l0.78,-0.87l1.55,-4.04l-0.52,-1.57l4.31,-0.69l0.76,0.13l4.61,2.05l3.63,2.45l4.38,-0.05l5.91,-2.19l0.4,0.03l1.34,1.21l1.03,0.34l0.96,-0.74l0.27,-1.47l-0.34,-0.93l-2.2,-2.53l0.14,-0.48l1.6,-1.55l4.54,-2.19l1.57,0.77l8.78,-0.19l4.35,1.9l2.91,0.08l1.24,1.0l3.26,1.13l1.32,0.05l0.57,0.58l0.58,1.96l-0.87,0.4l-1.43,-0.5l-1.0,0.14l-0.62,0.69l0.01,0.96l1.46,3.53l1.96,2.16l-0.13,3.01l1.55,2.97l1.0,1.28l-0.69,4.97l1.02,1.61l2.73,1.27l15.19,1.55l4.18,-0.07l9.05,1.11l2.46,0.7l5.01,3.28l2.66,4.18l5.47,6.78l-1.54,2.38l-1.08,0.84l-2.39,1.13l-4.99,0.81l-1.09,1.07l-0.46,1.08l1.3,1.73l2.21,1.21l2.1,0.68l2.95,3.75l0.58,1.98l0.11,1.7l-0.76,0.33l-0.32,0.76l0.72,2.5l1.11,1.21l1.82,0.66l5.38,0.23l3.04,-1.43l4.46,0.52l4.62,0.07l3.81,-0.66l2.3,1.43l0.38,3.14l2.26,3.58l0.55,1.81l1.51,1.17l1.05,0.21l1.16,-0.75l8.67,-0.64l1.0,0.16l2.15,1.36l4.75,1.79l1.31,1.02l1.12,2.12l3.5,1.74l0.3,1.17l0.5,0.32l4.04,-0.32l2.76,-0.57l5.71,1.52l2.69,-1.18l2.88,2.04l0.67,1.03l1.11,0.24l2.04,-1.3l-0.04,-2.32l3.36,-3.56l2.39,-3.77l0.0,-1.02l-0.57,-1.06l-2.48,-1.48l0.46,-2.42l1.68,-2.53l-0.08,-0.8l5.81,-0.49l14.88,3.75l0.76,3.76l3.0,4.34l1.01,1.97l1.5,1.27l5.45,2.39l2.27,2.99l2.01,3.61l-0.01,0.58l-1.47,0.71l-1.8,2.03l-1.16,-0.94l-1.6,0.27l-3.12,-0.36l-2.17,0.21l-1.81,-0.61l-0.53,0.3l-0.51,1.26l-3.79,1.75l-3.72,4.11l-1.56,-0.62l-3.6,0.37l-3.95,2.55l-7.1,1.78l-0.3,0.35l0.0,1.64l1.2,1.13l1.63,0.6l0.19,0.36l-1.43,1.5l-1.21,0.18l-1.11,0.78l-1.02,2.57l0.45,0.77l1.65,-0.12l0.77,0.47l-0.39,2.08l0.66,1.89l0.83,1.11l1.25,0.51l2.56,0.08l-1.69,2.45l-1.06,0.98l-3.48,2.13l-2.33,0.11l-1.91,-0.31l-2.41,0.29l-2.8,2.95l0.04,2.82l-0.63,1.84l-0.58,0.56l-2.5,0.69l-1.98,-0.8l-1.73,0.25l-2.42,3.17l-0.87,0.66l-1.37,-0.15l-1.26,-1.39l-0.83,-0.39l-1.1,-0.22l-1.39,0.41l-2.02,2.36l-2.37,1.54l-1.75,2.54l-0.15,1.46l1.69,1.39l0.34,0.72l0.04,0.98l-1.0,1.15l-0.21,1.27l-2.17,0.76l-1.15,0.83l-0.38,1.07l0.56,0.9l-2.8,1.41l-4.3,1.44l0.13,-0.82l-0.29,-0.38l-1.85,-0.74l-0.87,-0.92l-1.28,-0.1l-2.37,0.36l-0.59,0.74l-1.51,0.38l-11.5,2.04l-2.9,-0.97l-2.23,-0.02l-0.59,0.29l-0.89,1.32l-2.68,0.4l-3.61,-2.17l-0.41,-3.07l-0.58,-0.88l-0.89,-0.36l-1.59,0.22l-2.97,-1.89l-0.23,-0.91l0.23,-4.07l1.39,-0.87l0.39,-0.74l-1.2,-2.34l-1.95,-0.62l-6.26,-0.29l-1.14,0.98l-1.37,0.65l-0.75,1.83l-1.9,1.04l-1.91,0.37l-2.72,1.1l-0.23,0.5l0.76,2.05l-0.2,0.97l0.79,2.65l-0.32,3.29l0.49,0.89l0.15,1.3l1.12,1.57l0.29,1.85l-1.11,0.62l0.16,1.51l-1.11,2.58l0.66,2.07l-1.03,2.08l0.1,1.55l-0.77,0.14l-2.12,-0.55l-1.66,-0.95l-0.7,0.37l-0.74,1.15l-4.43,-3.51l-0.53,-0.72l1.74,-1.68l0.17,-1.07l-1.9,-2.81l-0.85,-0.47l-0.79,-0.03l-0.44,-1.11l-0.51,-0.41l-1.68,0.2l-1.36,1.17l-3.38,0.82l-2.23,-1.68l-2.91,-0.35l-0.56,0.27l-0.37,1.38l-4.23,-4.7l-1.66,-0.09l-3.02,0.73l-1.15,-1.23l-1.0,-0.32l-1.56,0.61l-2.29,-0.2l-2.55,1.14l-1.97,-0.51l-1.29,0.82l-2.04,2.91l-2.43,-0.51l-1.13,0.6l-0.51,0.98l-0.29,3.91l0.92,1.07l2.66,1.32l1.94,1.68l2.96,0.17l1.26,1.79l2.78,0.9l0.48,1.34l-0.13,1.2l-0.37,0.4l-0.87,0.11l-2.93,-0.93l-4.01,0.63l-1.94,-0.58l-1.1,1.02l-0.69,4.16l-3.21,-1.63l-2.42,-0.56l-4.35,0.01l-1.01,-1.19l0.26,-1.78l-1.24,-2.29l0.56,-3.11l-0.96,-4.55l-2.51,-1.79l-1.27,-2.36l-0.4,-0.21l-1.63,0.19l-1.03,0.67l-2.44,-0.21l-0.35,-1.35l-2.71,-1.97l-1.63,-2.41l-2.71,0.46l-1.78,-0.14l-0.59,-0.35l-0.4,-0.87l0.92,-1.29l-0.27,-0.77l-2.71,-1.88l-1.71,-1.89l-1.39,-0.95l-0.29,-2.27l-0.56,-1.23l-0.59,-0.48l-9.35,-2.99l-1.01,-2.63l-1.92,-1.77l-1.6,-0.4l-5.19,0.34l-0.36,-0.42l-0.04,-1.3l-0.69,-0.32l-1.69,1.01l-5.23,4.9l-0.39,-0.03l1.12,-4.39l-0.84,-2.13l0.09,-3.09l-0.34,-1.33l1.08,-1.22l1.45,-0.22l0.44,-0.82l-0.26,-3.13l-1.09,-2.35l-0.69,-0.73l-4.95,-1.16l-1.23,0.01l-4.98,2.12l-0.22,1.34l1.26,1.57l-0.67,1.18l-1.42,0.01l-2.79,-1.22l-1.93,0.53l-0.34,-0.26l-0.11,-2.38l0.27,-1.16l1.07,-1.52l2.01,-1.69l0.03,-1.7l2.03,-3.64l0.22,-2.52l-1.38,-1.69l0.34,-0.79l0.93,-0.33l0.62,0.24l0.49,-0.5l-0.35,-2.72l0.73,-2.34l1.94,-0.9l2.0,-0.22l3.05,-0.99l0.51,-0.82l-0.05,-2.64l2.87,-3.0l-0.0,-0.57l-1.08,-1.18l-0.85,-1.76l-1.5,-1.31l-1.4,-0.75l-0.98,-0.04l-0.98,0.49l-1.32,1.37l-0.26,-2.69l-0.89,-0.28l-0.75,0.57l0.01,-1.24l0.99,-0.34l0.99,0.48l3.6,0.32l3.02,-0.64l0.54,-1.23l-0.29,-1.78l-1.9,-2.62l0.22,-1.48l2.22,-1.33l3.94,-0.18l1.16,0.34l1.46,-0.39l0.02,1.12l1.77,0.81l4.9,-0.22l0.64,-0.26l1.77,-3.22l0.11,-0.78l-1.85,-2.88l-2.06,-0.27l-1.26,-0.8l-1.49,-0.22l0.54,-2.9l1.76,-2.79l0.4,-1.79l-0.68,-0.65l-2.26,-0.47l-1.06,-1.66l2.43,-0.68l1.45,0.0l0.97,1.08l0.0,1.01l0.79,0.65l0.29,0.84l0.68,0.13l0.69,-0.82l0.56,-3.98l0.5,-1.2l1.43,-1.46l0.47,-1.12l-0.53,-1.03l-3.17,-1.31l-2.4,-1.49l-2.48,-0.15l-1.5,-0.78l-2.08,-0.34l-3.25,-1.14l-0.67,-2.29l-2.01,-1.77l0.5,-1.75l-0.55,-0.88l-4.8,-1.34l-1.77,0.02l-1.79,-1.79l-1.64,-0.49Z", "name": "Th\u00fcringen"}, "DE-BW": {"path": "M174.35,977.77l0.94,-0.09l1.04,-0.87l1.4,-3.28l-0.41,-0.55l-2.22,0.2l-4.37,1.12l0.43,-1.22l-0.29,-1.37l-1.72,-1.74l-2.19,-3.76l-1.37,-1.65l-1.49,-0.71l-0.28,-0.42l-0.55,-3.8l2.54,-3.12l0.04,-2.16l-1.19,-4.29l0.25,-1.61l1.36,-3.94l1.92,-1.37l0.21,-1.54l-0.52,-3.81l1.96,-2.97l0.08,-2.67l0.47,-1.5l2.54,-2.3l1.06,-1.83l-0.28,-4.11l-4.18,-6.31l-0.29,-5.0l0.6,-2.37l0.64,-1.85l1.87,-2.86l0.23,-1.89l0.6,-1.42l6.17,-7.39l1.08,-1.88l1.5,-7.27l3.36,-1.95l1.43,-2.06l0.11,-1.9l-1.14,-3.28l-0.3,-1.43l0.11,-1.57l1.19,-4.65l1.82,-3.25l0.23,-2.45l0.44,-1.0l3.7,-2.92l-0.03,-1.02l-1.12,-2.6l0.01,-4.26l0.81,-3.99l4.04,-5.37l2.73,-1.12l1.5,-1.11l2.7,-2.74l2.48,-1.74l1.1,-1.24l0.5,-1.1l0.15,-2.47l0.41,-0.89l4.58,-0.59l0.7,-0.62l0.42,-1.85l0.96,-1.12l0.81,-0.06l4.36,-2.22l1.26,-1.82l4.44,-10.4l3.02,-4.86l1.91,-1.87l3.04,-0.98l3.22,-2.96l2.09,-2.77l7.22,-12.62l0.48,-1.41l1.87,-12.06l0.61,-2.04l2.24,-1.43l6.88,-6.97l0.35,-1.6l-0.28,-0.47l-1.97,-0.59l3.62,-7.35l0.04,-1.46l-0.71,-3.04l1.32,-2.87l-1.26,-1.62l-4.76,-1.12l0.0,-0.31l1.82,-0.77l0.24,-1.24l-1.36,-2.54l-2.19,-5.45l-1.84,-2.6l0.73,-2.7l2.97,-1.04l2.18,0.3l2.26,1.53l7.02,5.94l4.3,-1.55l0.92,-0.98l0.02,-1.21l-1.85,-6.88l7.12,-1.49l0.11,0.81l1.31,2.01l-0.6,1.53l0.48,1.6l1.45,2.99l1.28,1.26l4.79,2.38l1.73,0.23l2.4,-0.19l1.16,1.97l0.98,0.67l5.86,-0.39l-0.1,1.47l-1.21,1.67l-0.7,-0.17l-0.89,-0.93l-0.58,-0.14l-2.19,1.89l-0.55,1.38l0.33,3.57l-1.88,1.43l-0.23,1.76l0.53,1.07l3.21,0.91l0.87,-0.12l1.04,-0.64l2.98,-3.01l0.87,-2.61l0.41,0.93l0.75,0.22l2.83,-1.41l0.56,-1.31l-0.67,-1.77l-1.09,-1.36l2.51,-2.51l5.29,-0.11l2.5,0.35l1.07,-0.38l2.19,-1.78l0.64,-0.05l2.42,0.05l1.28,1.23l1.37,0.08l0.34,-0.7l-0.27,-0.91l-2.56,-3.92l-2.42,-2.72l1.27,0.87l0.87,0.15l0.51,-0.21l0.65,-0.94l1.08,0.39l5.51,-1.02l1.46,0.22l6.52,-0.22l1.17,-1.17l0.67,-1.78l1.37,-1.24l-0.23,-2.22l0.53,-0.57l2.02,-0.87l3.16,-0.22l2.78,-1.04l1.67,1.25l1.06,0.06l2.01,-1.51l0.12,-0.46l-0.71,-1.51l1.15,-5.53l-0.13,-0.44l-0.7,-0.62l-2.58,-0.69l-0.78,0.55l-0.77,1.84l-0.89,0.17l0.35,-1.91l-0.59,-0.97l-4.04,-0.75l-1.03,-0.49l-0.04,-0.61l0.69,-1.6l-0.71,-1.85l1.35,-1.35l2.12,-0.87l4.72,0.28l3.66,-1.1l5.15,-0.4l5.34,2.11l1.32,0.08l1.6,-0.49l2.78,1.41l2.75,-0.74l1.57,-0.88l0.24,0.13l0.13,0.5l-0.7,1.2l0.32,1.94l-0.55,1.29l0.2,1.35l-0.81,0.71l0.07,1.15l-0.88,2.04l0.69,1.02l1.74,0.8l1.59,0.16l1.24,-0.5l0.55,-2.17l1.24,-0.56l0.76,-1.11l0.29,1.95l0.94,1.81l0.7,0.53l0.88,-0.26l3.12,-2.95l2.71,-1.0l3.42,3.79l-0.03,3.37l0.31,1.69l3.91,3.76l0.64,1.01l-0.31,0.88l-1.67,1.84l-0.28,0.94l0.08,1.66l-1.98,2.03l0.01,0.88l1.23,0.86l0.82,0.05l0.85,-0.38l0.55,-0.64l0.51,-1.5l1.26,-0.44l1.21,-1.44l0.91,-0.32l0.4,0.54l-0.6,1.42l1.68,1.44l0.42,2.72l-0.21,2.83l0.43,3.16l0.42,0.43l1.1,0.21l7.07,-0.13l0.97,-0.4l3.91,-3.5l0.15,-1.23l-0.84,-1.28l0.17,-0.27l2.11,-1.41l1.27,0.67l-0.61,1.34l0.09,0.66l1.04,0.84l1.49,0.2l0.57,0.44l-0.81,2.13l1.08,2.45l-0.68,1.9l-1.08,1.37l-0.03,0.82l2.74,1.19l2.9,5.97l-1.57,-0.51l-1.19,0.15l-2.06,2.16l-0.26,3.55l0.28,0.98l1.14,1.35l2.01,0.94l-0.71,2.21l1.08,2.44l0.14,1.21l-0.42,0.11l-1.89,-0.85l-0.61,0.29l-0.25,0.8l0.37,1.08l1.37,1.29l0.09,2.58l0.53,1.04l0.99,0.99l-1.22,0.55l-0.06,0.68l1.22,1.14l2.14,1.28l2.35,2.75l1.39,1.16l0.78,0.12l1.66,-0.72l1.83,1.44l0.04,2.34l-0.95,1.98l-0.46,0.34l-1.51,0.1l-0.4,0.9l0.69,0.69l2.45,0.87l-0.21,1.54l1.79,1.53l-0.39,1.61l0.15,0.54l2.69,1.1l1.9,0.12l1.91,0.96l1.45,0.05l1.11,2.72l4.69,3.56l0.78,1.3l1.62,1.6l0.61,1.39l1.23,1.13l0.83,2.66l-1.94,0.8l-0.27,0.67l1.04,0.98l-0.28,4.6l-0.48,1.5l1.08,2.33l-0.47,1.99l-1.17,1.07l-0.28,0.72l0.02,3.22l-0.71,1.13l-0.08,1.39l0.26,1.1l0.77,0.88l2.06,0.96l0.86,0.03l0.58,1.51l1.57,2.49l-5.03,3.67l-0.19,-0.91l0.5,-0.96l-0.02,-0.89l0.57,-0.43l0.07,-0.58l-0.7,-0.76l-1.15,-0.1l-5.56,5.04l-1.96,-3.02l-3.03,-0.16l-2.05,-1.63l-0.93,0.08l-2.24,2.61l-0.28,1.89l1.85,3.16l4.41,2.87l-0.26,0.73l-1.5,0.64l-0.4,0.64l0.12,1.11l0.98,1.84l0.19,1.19l-0.14,1.29l-1.13,2.82l0.19,0.81l-4.23,0.38l-1.51,1.42l-0.39,1.58l-9.25,4.8l-0.75,-0.36l-0.51,-1.82l-0.62,-0.49l-0.81,-0.12l-2.79,1.54l-3.46,0.66l-1.4,1.2l-1.01,1.61l0.17,1.69l-6.03,6.88l-0.03,0.47l0.88,1.4l1.4,0.27l1.82,3.45l3.09,4.45l1.54,4.46l3.86,15.17l2.64,5.14l0.29,1.53l-0.17,4.59l-0.71,2.69l-2.83,6.77l-1.22,0.8l-0.36,0.66l0.2,1.44l2.23,3.13l-0.36,4.33l-0.43,0.61l-0.46,2.19l-0.97,0.93l-0.14,0.54l0.45,0.71l1.34,0.14l2.31,5.03l-0.66,0.29l-0.88,1.27l-2.25,0.27l-0.98,1.58l0.2,0.77l1.27,1.05l0.59,1.08l1.44,0.35l0.21,0.37l0.54,6.42l0.83,2.5l-0.49,1.58l-3.29,-0.55l-0.57,1.1l-0.13,1.76l-0.51,0.56l-1.24,-2.81l-1.02,-0.68l-1.91,-0.04l-2.51,0.59l-2.18,1.03l-3.26,0.94l-2.28,0.02l-2.3,-0.48l-4.2,-1.44l-3.11,1.28l-7.24,5.55l-4.24,1.86l-3.56,-0.78l-1.54,0.64l-0.96,1.29l-3.38,0.68l-1.16,0.76l-1.15,-0.49l-4.02,-0.65l-1.38,-0.64l-1.47,-1.59l-1.45,-3.71l-0.9,-0.99l-1.1,-0.57l-3.16,-0.36l-5.3,-2.32l-6.08,-0.37l-1.75,-0.45l-9.28,-5.3l-1.64,-4.39l-0.84,-0.41l-2.61,-0.39l-10.32,-6.38l-3.9,-0.52l-0.39,0.61l0.85,1.29l3.3,2.99l7.36,3.46l1.19,1.48l2.06,5.28l2.2,2.82l0.05,0.63l-7.24,0.21l-10.93,-1.06l-2.02,0.65l-1.63,1.48l-3.44,0.94l-3.75,0.3l-2.28,-0.51l-4.07,-2.89l-0.0,-0.35l1.48,-0.3l0.17,-0.7l-2.61,-2.11l-3.21,-1.6l-2.8,-0.15l-0.39,0.26l-0.88,2.45l0.2,0.52l-3.89,0.05l-0.36,-1.46l-1.15,-1.75l1.81,-2.78l-0.64,-1.64l-1.25,-0.37l-1.94,0.03l-2.36,-3.55l-1.48,-0.5l-1.27,0.89l-0.6,2.77l-0.84,0.47l-0.62,-0.4l-0.8,-4.17l-1.94,-0.73l-2.44,-0.12l-1.76,0.81l-0.19,0.53l0.74,1.6l-1.06,0.46l-6.26,0.86l-1.09,0.55l-1.37,1.75l-1.19,3.35l-3.35,1.88l-1.07,1.02l-0.23,1.16l0.64,1.98l-0.57,1.23l0.24,0.55l2.01,0.55l4.7,2.66l1.89,-0.1l4.23,-2.09l4.66,-0.68l3.36,0.79l-0.35,1.88l-0.15,-0.7l-0.38,-0.23l-1.05,0.2l-0.61,0.52l-0.23,0.92l0.39,1.05l-0.04,2.04l-0.6,1.57l-0.94,0.27l-2.12,-2.69l-1.8,-1.31l-3.1,0.31l-3.0,1.71l-1.41,2.72l-2.72,0.39l-6.21,-0.03l-3.62,-0.83l-0.82,-0.46l-1.14,-2.27l-0.86,-0.78l-3.62,-0.76l-1.88,-0.01l-5.49,0.82l-1.66,1.49l-1.77,0.46l-2.99,1.55l-1.71,2.02l-0.83,0.49l-4.31,0.83l-12.49,0.0l-0.63,-2.57l-0.72,-0.73l-6.5,-0.43l-1.31,-0.58l-0.48,0.13l-3.26,3.92l-1.73,0.85l-8.06,1.44l-2.04,-0.23l-3.3,-1.5Z", "name": "Baden-W\u00fcrttemberg"}, "DE-HH": {"path": "M382.17,201.49l1.03,-4.25l1.01,-1.1l0.43,-1.53l1.53,0.25l1.9,1.12l-0.31,2.69l0.56,0.58l0.89,0.21l1.29,-0.59l9.63,-6.45l2.35,-0.59l3.23,0.43l1.08,-0.69l1.02,-2.14l0.79,-0.68l1.76,-0.41l1.82,0.19l1.03,-0.46l0.68,-0.62l1.26,-4.23l0.66,-0.65l5.87,0.76l2.92,-1.83l1.14,0.05l-0.19,0.95l-2.1,2.91l-0.53,1.56l0.61,0.99l3.39,2.06l0.35,2.25l1.08,0.81l0.23,0.58l-0.72,2.55l-0.38,3.79l-3.08,0.95l-0.69,0.69l0.75,3.35l0.24,2.74l0.57,0.79l2.65,0.87l3.34,4.02l2.89,1.46l3.39,3.0l0.77,-0.01l0.52,2.29l-3.7,0.0l-1.1,0.29l-1.09,0.58l-2.35,2.62l-5.14,0.28l-1.52,-0.28l-1.48,-0.87l-2.17,-2.25l-2.1,-0.52l-2.94,-2.3l-5.11,1.36l-0.52,0.74l0.02,1.1l-4.04,1.6l-1.45,0.08l-2.33,-1.12l-3.08,0.96l-0.5,-3.1l-0.71,-0.98l-1.08,-0.39l-0.95,0.26l-1.87,1.9l-0.36,0.03l-3.85,-3.12l-1.12,-1.56l-1.12,-2.55l-1.1,-0.86l-0.5,-1.05l-0.81,-0.75l-0.35,-4.61l4.86,0.88l1.48,-0.45l0.2,-0.61l-1.22,-1.74l-3.84,-1.89l-3.7,-0.37Z", "name": "Hamburg"}, "DE-SH": {"path": "M521.78,88.19l-2.9,0.15l-2.4,-0.32l-0.89,-0.89l0.18,-2.57l-0.74,-1.47l-1.51,-0.44l-2.57,-0.07l-1.16,0.28l-1.07,0.79l-0.94,-1.55l-1.39,0.36l-0.17,-1.2l2.65,-5.28l3.69,-2.91l4.54,-0.62l8.23,2.86l3.15,2.45l6.78,10.31l-11.47,-1.56l-2.02,0.86l0.01,0.81ZM297.93,104.64l0.36,-1.02l-0.4,-0.57l-2.98,0.29l-5.15,1.27l-2.94,0.28l-3.64,-0.47l-1.64,0.55l-3.2,2.49l-0.96,0.26l-2.44,-0.71l-2.68,-1.98l-1.93,-2.83l-0.26,-3.23l1.2,-1.2l2.57,-0.94l2.93,-0.48l2.27,0.09l0.42,-0.4l0.0,-0.92l-0.33,-0.39l-1.67,-0.32l-1.27,-0.98l-1.44,-0.4l-1.58,1.41l-0.5,-0.88l0.25,-1.31l1.64,-2.22l2.06,0.68l7.91,-1.75l10.74,0.0l2.58,-0.55l2.22,-1.11l4.11,-2.93l3.74,-1.49l1.7,-1.04l0.85,-2.54l-0.08,-3.53l-2.55,-3.16l-7.98,-6.94l-1.08,-1.36l-0.61,-1.58l-1.14,-0.7l-2.02,0.05l-3.03,0.96l-0.23,-0.34l2.98,-1.65l0.17,-0.52l-3.43,-7.38l-1.3,-1.95l-2.95,-1.54l-5.28,-3.73l-3.16,-1.27l0.51,-3.29l-1.28,-2.77l-3.21,-5.04l-0.54,-3.45l0.43,-3.06l1.2,-3.56l3.17,0.78l3.62,0.13l6.78,-2.02l2.21,-0.27l7.75,1.07l7.73,2.54l20.73,3.93l1.46,1.04l0.71,3.18l0.72,1.62l2.1,0.8l8.69,-0.2l1.08,-0.82l1.3,-0.29l1.15,-0.79l1.51,-0.28l2.04,1.47l1.66,0.15l3.06,-0.45l5.85,-2.38l1.92,-1.88l2.51,-0.89l1.19,-1.71l0.64,-0.42l0.28,4.22l0.29,0.36l4.85,1.43l5.97,0.25l3.99,1.42l6.45,3.17l1.04,2.34l1.49,1.4l2.63,-0.37l4.47,-1.38l0.28,-0.44l-0.33,-2.4l1.78,-0.1l3.03,1.51l2.13,2.18l1.31,4.55l0.66,1.17l2.4,2.37l-0.68,0.42l-3.25,-0.76l-2.58,1.84l-1.55,0.47l-0.33,0.53l-0.05,1.25l0.38,0.41l1.44,0.08l2.64,-0.63l2.34,-0.11l1.35,1.46l0.52,0.06l0.96,-0.67l0.78,-0.05l0.31,0.47l-0.63,1.72l0.47,2.08l0.06,2.62l-1.04,7.93l-1.55,3.35l-1.19,1.39l-3.09,2.32l-3.88,1.74l-4.19,1.1l-4.08,0.37l-0.36,0.4l0.0,0.93l0.24,0.37l4.47,1.81l23.6,-4.54l1.68,0.48l5.45,3.83l-1.69,1.55l0.03,1.65l1.24,3.65l-0.51,1.63l-1.3,1.58l-1.67,1.14l-1.62,0.4l-0.21,0.65l0.53,0.59l-0.55,0.77l0.06,0.53l0.96,0.84l0.24,0.91l-0.33,1.1l-0.92,1.24l-0.01,0.47l0.44,0.15l2.32,-0.74l1.7,-1.71l2.31,-4.21l1.32,-4.52l0.63,-1.0l0.82,-0.44l3.76,-0.35l1.47,-0.73l1.95,-2.12l0.98,-0.26l4.04,0.29l2.06,0.82l5.99,3.86l15.42,5.52l8.7,6.62l4.2,0.89l4.76,-0.7l3.37,-1.69l5.58,-4.2l3.18,-1.66l3.31,-1.13l3.58,-0.38l0.18,0.51l1.7,0.62l1.78,-0.4l2.53,1.22l6.75,-3.35l2.25,0.69l-3.98,3.91l-1.86,-0.76l-0.43,0.11l-0.06,0.44l1.04,2.16l0.89,5.33l0.74,2.47l-0.7,1.74l0.07,2.35l0.65,3.82l-0.39,2.14l-1.78,1.95l-0.49,1.18l-11.26,5.92l-3.99,4.11l-1.62,0.85l-4.58,1.06l-0.87,0.53l-1.3,-0.92l-0.88,-0.07l-0.99,0.45l-5.4,6.39l0.04,1.02l1.34,2.69l1.43,1.94l1.98,1.36l2.8,0.75l3.85,-0.3l0.74,0.24l0.58,1.17l0.48,2.85l1.69,0.61l0.03,3.92l0.76,0.99l0.95,0.56l3.23,0.85l-0.73,0.48l-2.99,0.39l-0.34,-0.34l0.07,-1.26l-1.81,-0.67l-0.89,0.03l-2.4,1.29l-4.79,3.63l-4.49,2.09l-1.24,1.91l-0.47,1.93l1.17,2.93l0.79,3.5l-1.22,5.47l0.1,0.82l0.48,0.35l4.31,0.71l3.87,4.28l1.12,0.84l0.86,0.41l2.17,-0.23l2.65,0.66l2.18,1.53l0.62,0.86l0.1,1.61l0.97,1.86l-0.24,1.9l-1.39,1.01l0.1,2.43l1.27,4.35l-0.04,0.34l-0.84,0.4l-0.14,0.63l0.84,0.33l-1.79,1.8l-0.86,-2.34l-1.15,-0.78l-5.04,0.52l-1.59,-0.49l-1.38,0.31l-0.31,0.71l0.5,2.57l-0.9,2.1l-0.2,2.0l-5.86,3.54l-5.51,1.41l-1.3,2.66l-1.42,-0.26l-1.38,0.17l-2.21,1.08l-0.64,0.97l-0.81,4.25l-0.01,1.64l-0.43,1.23l-1.94,2.42l-2.9,0.99l-3.88,-1.09l-13.96,-6.88l-3.53,-1.09l-2.0,-0.09l-0.67,-2.82l-1.09,-0.23l-3.27,-2.89l-2.93,-1.5l-3.3,-3.99l-2.68,-0.89l-1.2,-5.99l2.97,-0.89l0.67,-0.51l0.5,-4.11l0.73,-2.63l-0.2,-0.87l-1.19,-0.93l-0.42,-2.39l-3.56,-2.2l-0.3,-0.51l1.39,-2.57l1.34,-1.74l0.2,-0.88l-0.56,-0.81l-1.75,-0.07l-2.78,1.79l-5.89,-0.78l-1.24,1.16l-1.24,4.18l-0.36,0.28l-0.63,0.34l-1.89,-0.17l-2.03,0.49l-1.08,0.92l-0.97,2.08l-0.72,0.45l-3.1,-0.46l-2.63,0.69l-10.73,6.95l-0.54,-0.41l0.41,-2.01l-0.17,-0.77l-2.24,-1.36l-1.88,-0.31l-0.6,0.29l-0.47,1.62l-0.96,0.96l-1.21,4.74l-4.38,-0.41l-3.52,-1.14l-7.0,-3.69l-3.1,-2.85l-1.11,-4.13l-0.67,-5.99l-1.21,-1.03l-6.07,-2.52l-2.27,-1.69l-2.23,-3.93l-1.52,-4.25l-0.14,-2.63l-0.28,-0.36l-3.52,-1.13l-6.15,-4.31l-3.86,-1.9l-3.73,-0.71l-12.4,-0.23l-3.67,-1.38l-2.55,-0.58l-1.41,0.63l-1.0,1.28l-1.96,-0.53l-3.36,-2.08l-3.22,-3.23l-7.84,-12.88l3.27,-1.22l1.73,-0.11l2.24,0.5l3.81,2.07l2.2,0.6l2.4,-0.84l0.96,-1.67l0.83,-2.74l0.55,-2.93l-0.02,-2.16l-1.23,-1.63l-3.04,-2.57l0.25,-2.25l-0.3,-0.39l-2.55,-0.6l-3.43,0.51l-3.28,1.27l-2.08,1.57l-4.26,-6.58l-0.21,-0.51l0.74,-2.51l2.52,-4.46l-0.66,-2.92l0.96,-0.59l5.72,-1.08l1.23,-0.75l3.16,-3.93l1.02,-2.09l-0.42,-0.57l-2.24,0.35l-3.82,2.63l-1.25,0.45ZM505.27,92.96l1.41,-0.15l0.0,0.09l-1.41,0.06ZM297.84,80.79l-4.13,0.26l-1.82,-0.53l-0.72,-1.01l0.85,-0.54l0.14,-1.05l-0.95,-1.26l2.66,-2.06l3.33,-1.23l3.77,-0.18l3.41,0.73l-0.11,1.55l-1.7,1.34l-2.58,3.1l-2.15,0.89ZM276.26,76.33l-2.63,1.21l-1.99,-0.03l-1.07,-0.76l-0.89,-1.73l0.52,-1.88l3.0,-1.63l5.83,-2.0l0.12,0.91l-0.75,3.16l-2.15,2.75ZM278.04,137.9l-0.16,0.39l-0.79,-0.21l-1.19,-1.75l0.24,-1.51l0.94,-0.79l0.28,-0.0l0.13,1.76l0.87,0.87l-0.32,1.25ZM248.66,23.66l4.99,1.03l5.58,-0.23l-3.34,1.97l-1.38,0.32l-6.64,0.0l-1.42,-1.42l-1.93,-0.32l-4.34,2.32l-0.85,4.57l0.33,7.4l-0.75,4.1l-0.46,-1.36l-0.08,-3.51l1.13,-14.71l0.91,-2.83l7.39,-16.61l1.52,-1.52l0.16,0.48l2.49,0.21l0.62,1.29l-0.73,1.57l-4.0,1.85l-1.92,2.34l-1.02,2.74l0.83,2.71l-0.56,4.74l3.48,2.89ZM250.3,1.86l1.38,-1.39l2.81,1.2l-4.19,0.18ZM264.77,24.24l8.78,-0.35l-1.1,0.7l-7.68,-0.34ZM266.78,50.31l-0.69,0.79l-1.15,0.3l-1.55,-0.15l-2.54,-1.02l-2.45,0.75l-3.03,-0.75l-5.27,-2.63l1.64,-2.42l2.11,-1.64l2.57,-0.82l3.21,-0.22l5.36,0.26l2.06,1.01l1.62,2.25l0.0,0.67l-0.78,1.07l-1.09,2.55ZM245.09,48.48l-1.98,1.85l-0.04,0.5l4.9,7.42l1.39,0.69l-0.71,0.49l-3.09,0.9l-2.09,-1.53l-1.81,-2.65l-1.77,-1.95l2.64,-4.0l1.65,-1.46l0.9,-0.27ZM203.59,118.61l-0.73,0.18l-0.01,-0.01l0.73,-0.17ZM200.05,118.64l0.62,0.33l0.13,0.51l-0.19,-0.05l-0.56,-0.79Z", "name": "Schleswig-Holstein"}, "DE-NW": {"path": "M55.93,626.7l-2.43,1.05l-2.02,0.01l-0.12,-0.64l-3.35,-4.89l-0.11,-1.32l1.36,-4.73l0.08,-2.23l-0.47,-0.71l-0.78,-0.22l-0.72,-0.99l-0.76,-2.27l0.19,-0.81l1.12,-1.25l-0.36,-0.27l-5.94,-0.89l-1.95,-0.84l-3.93,1.09l-0.8,-0.03l-2.0,-2.3l0.56,-0.8l-0.3,-0.63l-1.62,-0.26l0.61,-1.03l-0.03,-0.52l-1.4,-1.48l1.56,-2.05l3.02,-2.1l2.17,-1.08l1.97,-2.9l-0.18,-1.09l-0.38,-0.29l-6.7,-0.14l-1.83,-0.8l-0.86,-1.39l0.93,-0.5l0.13,-0.6l-5.97,-7.63l-1.95,-1.64l-1.98,-0.21l-3.82,0.88l-0.98,-0.1l-0.26,-0.73l0.3,-2.6l-1.78,-1.06l0.34,-2.53l-1.65,-1.41l-0.9,-1.92l1.19,0.11l1.54,-1.29l0.53,-1.74l-0.29,-2.13l0.72,-1.09l1.15,-0.55l2.11,0.15l1.49,-1.33l0.63,-1.48l0.01,-1.16l-0.8,-2.56l0.85,-1.92l-0.26,-0.52l-3.17,-0.92l-2.85,-1.74l-0.35,-2.63l0.95,-2.34l-0.63,-0.96l-3.45,0.35l-4.06,-0.85l-4.74,1.51l-0.12,-2.95l-1.5,-3.69l-0.49,-2.68l2.29,-1.01l1.12,0.53l2.47,2.25l2.32,-0.18l1.28,-1.2l1.86,-3.25l1.25,-1.2l9.02,-5.89l5.56,-2.51l1.59,-1.71l-0.05,-0.58l-1.63,-1.26l2.52,-1.57l0.22,-0.39l-0.29,-0.35l-2.56,-0.61l-4.71,2.69l-1.95,-0.9l-0.63,-2.15l0.27,-2.78l0.81,-2.49l3.05,-3.5l5.0,-7.67l3.42,-2.21l1.08,-1.23l0.62,-1.84l0.3,-2.78l0.54,-1.08l-0.08,-0.46l-1.35,-1.34l0.12,-2.18l1.1,-5.36l-1.18,-6.76l-4.06,-4.01l-6.46,-7.37l-0.37,-1.41l1.63,-4.65l-0.24,-0.52l-6.56,-2.39l-2.02,-2.13l1.24,-3.47l-1.09,-1.27l-3.43,-1.89l-3.55,-0.18l0.05,-0.93l2.19,-1.97l0.17,-2.64l-1.35,-2.74l-2.12,-1.41l0.21,-0.73l1.43,-0.84l3.93,-0.58l1.97,-0.69l3.43,-1.87l3.87,-0.86l7.0,1.5l0.42,-0.18l-0.02,-0.46l-1.37,-1.78l-4.3,-3.59l2.5,-1.12l2.97,1.16l3.21,2.14l3.32,1.13l3.85,-0.47l2.11,2.52l3.93,0.58l1.34,0.65l0.26,1.83l0.49,0.33l3.97,-1.12l0.41,-1.53l-0.62,-2.3l5.63,1.38l2.23,-0.01l1.7,-0.65l4.78,-3.04l9.66,-2.73l8.64,-0.23l2.81,-1.22l2.45,-2.4l2.21,-3.32l1.99,-1.19l0.24,-1.89l-0.26,-1.01l-3.26,-3.11l-9.91,-4.28l-0.17,-1.68l0.56,-1.13l3.09,-0.94l0.86,-0.93l1.26,-2.32l1.58,-1.36l1.46,-0.67l6.5,-0.66l1.34,-1.05l2.14,-3.6l1.8,-1.56l4.24,-1.55l2.04,-1.52l3.27,-4.01l4.31,-2.16l0.46,-0.99l2.13,0.05l4.05,-1.42l2.66,-1.82l13.4,-0.46l4.12,-0.75l6.73,-4.09l2.95,-0.61l1.84,-0.9l5.03,-4.3l4.49,-3.08l1.76,-0.41l2.87,0.2l1.62,-1.66l1.44,-3.57l1.19,-0.82l-0.18,-0.83l-1.47,-1.15l-0.31,-0.85l1.14,-4.04l0.83,-0.74l7.55,2.02l0.72,1.36l0.83,4.52l0.4,0.68l2.91,1.13l6.57,3.41l1.49,1.44l1.55,0.32l6.37,-2.07l0.76,0.12l3.51,3.8l2.76,3.96l0.09,0.4l-3.29,0.46l-0.78,0.57l-0.12,0.76l0.36,1.19l1.3,1.98l-2.86,2.97l-0.04,0.87l0.86,1.97l-0.7,1.17l-1.65,1.64l-0.05,0.79l0.94,1.08l2.43,0.39l0.46,1.39l0.97,0.63l4.31,-0.22l2.16,0.72l0.15,0.34l-1.33,2.47l-1.17,3.41l-4.06,0.57l-2.52,0.96l-2.97,2.23l-0.27,0.92l2.18,4.83l6.27,2.39l0.81,-0.34l4.22,-3.35l1.41,-0.56l3.43,-0.5l3.67,1.05l6.98,-2.19l3.06,-1.83l2.3,-2.57l2.98,-2.17l12.26,2.9l0.96,-0.18l0.88,-0.59l1.67,-3.2l4.88,-2.72l1.7,-2.05l0.55,-1.04l0.05,-0.96l-3.34,-2.18l-0.25,-1.08l-0.08,-11.85l-1.04,-4.5l-0.89,-2.15l-1.37,-1.81l-2.9,-1.75l-6.35,-2.47l-1.11,-1.42l-1.66,-4.59l1.55,0.46l2.19,-0.01l2.08,0.6l5.68,-0.63l2.55,-1.25l0.65,-1.03l0.93,-3.65l3.06,-2.06l6.74,-0.07l1.67,-0.29l4.8,-1.93l0.89,-0.01l1.52,0.51l1.54,1.11l2.61,3.94l0.32,1.87l-0.24,2.96l0.57,1.39l-0.38,3.23l0.55,1.42l1.51,0.5l10.16,0.9l3.26,-0.31l3.47,-1.18l6.68,-1.27l0.88,-1.06l1.47,-3.79l1.4,-2.26l2.54,-2.16l5.36,-2.34l1.15,0.22l1.6,1.84l1.89,0.68l-0.64,1.47l-1.45,0.96l-0.33,0.56l0.21,1.35l1.64,4.23l-3.1,4.14l-1.73,3.09l-2.63,1.5l-2.96,-0.18l-1.1,0.27l-0.85,1.0l-0.65,1.5l-1.24,7.23l0.46,1.22l0.86,0.67l7.25,2.04l-2.58,1.61l-0.45,0.82l0.82,3.08l-2.42,-0.06l-3.08,0.73l-0.27,0.55l1.88,4.18l-0.01,0.68l-1.06,2.04l0.64,0.61l6.37,-0.63l6.9,0.79l0.59,0.31l0.09,0.59l-0.49,1.24l0.2,0.95l0.95,0.8l2.63,0.93l0.95,1.12l0.1,0.66l-1.26,2.95l2.16,5.18l-0.45,1.13l-1.6,1.2l-0.52,2.01l1.43,0.94l3.48,1.21l0.64,-0.15l0.73,-1.32l1.1,-0.28l3.87,1.35l-1.17,4.15l-1.82,1.87l0.06,0.61l0.98,0.23l3.76,-0.28l2.16,0.87l0.73,1.16l0.34,1.49l-0.2,1.35l-1.37,3.36l0.29,0.54l1.15,0.2l3.23,-0.87l4.42,0.14l4.48,-0.92l-2.0,3.15l0.49,0.92l1.58,0.46l-0.82,1.1l-0.09,3.0l-1.71,3.84l-2.65,1.82l-0.57,1.45l-0.99,1.14l-0.21,1.53l0.39,3.02l-0.62,1.5l0.26,1.49l-1.42,1.45l-0.29,1.32l0.22,1.73l0.79,0.79l1.58,0.03l3.52,-0.91l-1.46,1.85l-6.96,1.91l-1.4,0.8l0.05,0.8l1.94,1.48l-1.81,4.72l-2.41,2.34l-1.13,2.03l-3.45,2.21l-2.98,1.29l-0.92,0.77l-1.12,3.88l-1.78,0.03l-3.78,2.34l-4.23,-0.58l-1.75,-1.22l-0.39,-0.49l0.21,-1.95l-0.2,-1.25l-0.68,-0.91l-0.54,-0.45l-1.13,-0.09l-1.28,-0.55l-2.82,-1.58l-0.89,-0.15l-1.53,0.67l-4.08,0.89l-5.1,2.13l-0.71,0.78l-0.32,0.99l0.13,0.92l1.31,1.81l0.43,3.76l0.57,0.43l2.07,0.26l0.53,0.46l-0.92,2.1l-4.29,0.32l-3.68,1.96l-4.52,-0.9l-3.64,0.83l-4.4,0.3l-4.62,1.48l-0.91,1.32l-1.85,1.04l-0.61,1.29l-3.19,2.69l-2.19,2.38l-1.57,2.64l-0.29,1.01l0.37,0.76l1.55,1.08l0.72,1.81l1.85,0.58l1.2,-0.27l1.16,-1.42l4.44,-0.76l2.24,-1.35l0.97,-0.06l-0.32,1.61l1.16,0.77l1.92,7.63l0.05,1.51l-0.13,0.47l-3.13,2.91l-2.22,2.6l-0.02,0.84l0.96,1.42l0.08,0.89l-4.12,2.16l-3.3,-0.7l-10.05,0.04l-0.37,0.26l-0.38,1.43l1.62,2.74l-0.25,1.65l0.95,3.65l-1.63,1.87l-1.69,3.16l-1.23,0.36l-0.72,0.72l-2.1,3.88l-0.3,3.39l-1.85,-0.11l-1.89,1.03l-3.03,2.64l-0.16,1.73l-2.81,1.64l-2.63,0.22l-1.48,-0.23l-1.64,-2.29l-2.24,0.01l-5.82,4.69l-0.86,1.01l-1.94,1.17l-1.02,2.04l-5.33,4.17l0.01,0.86l0.82,0.66l0.15,0.95l2.49,1.68l0.6,0.89l-0.77,4.27l-1.87,0.89l-1.11,1.82l-2.37,-1.24l-1.31,-0.31l-3.45,0.99l-0.58,-2.08l-1.67,-2.47l-4.17,-4.54l-0.94,-1.51l0.28,-3.74l-0.72,-3.13l-0.67,-1.41l-0.97,-0.23l-2.0,0.68l-1.67,-1.08l-3.78,-3.35l-2.68,-0.79l-1.08,-0.66l0.12,-1.17l0.94,-2.34l0.32,-1.85l-0.3,-0.46l-5.7,-1.33l-1.46,0.32l-3.2,2.53l-0.33,0.85l-0.16,0.97l0.37,3.2l1.24,2.68l-0.11,1.93l-2.86,-0.64l-2.5,2.24l-3.62,1.85l-0.08,0.66l2.14,2.17l-0.19,1.53l-0.5,0.14l-0.47,-0.49l-0.78,0.01l-1.51,1.89l-4.36,1.59l-1.46,2.23l-2.87,-0.08l-3.94,1.83l-8.12,1.89l-3.63,-0.26l-2.5,0.6l-0.95,1.15l0.41,0.64l-0.09,3.01l-0.85,1.41l-0.16,1.67l-2.95,1.78l-5.57,1.28l-5.38,-0.32l-0.92,-1.54l-1.91,-0.55l-0.55,0.4l-1.0,2.06l-0.69,0.25l-2.29,2.03l-0.86,0.22l-2.56,-0.62l-0.61,0.43l-0.88,1.56l-0.88,0.29l-1.85,-0.75l-1.42,-0.09l-6.19,3.41l-5.82,1.52l-1.24,1.89l-1.38,1.39l-2.22,0.55l-0.62,0.52l0.38,3.52l-0.22,2.44l-1.21,1.62l-1.13,0.16l-1.73,-0.55l-2.11,-2.71l-0.75,-0.03l-3.73,1.23l-1.67,0.82l-0.25,0.48l0.11,1.88l-0.83,2.32l0.33,0.6l2.15,1.22l0.36,3.93l1.67,2.69l0.26,1.05l-0.22,0.56l-7.54,1.84l-1.41,-0.24l-1.2,-1.27l-2.0,-1.16l-0.97,0.09l-2.6,1.46l-0.91,0.0l-0.24,-0.03l0.54,-1.3l-0.35,-0.63l-2.4,-1.2l-1.42,-0.31l-1.39,0.49l-4.43,0.67l-4.67,2.88l-2.0,0.62l-1.1,-2.2l-2.26,-1.19l-0.74,-1.22l-0.82,-0.6l-1.29,-0.14l-0.81,0.92l0.05,0.93l3.4,4.77Z", "name": "Nordrhein-Westfalen"}, "DE-SN": {"path": "M613.55,628.95l-0.88,-1.11l-2.79,-0.68l-2.12,0.03l-5.21,-2.72l-0.56,-2.5l0.23,-1.42l-0.35,-0.59l-2.13,-1.24l-2.07,-2.7l-1.04,-0.33l-2.37,0.21l-0.57,-0.77l1.09,-1.06l2.37,-0.89l0.4,-1.53l1.03,-1.22l-0.26,-2.05l-1.83,-1.59l0.74,-1.97l0.98,-1.16l2.32,-1.5l2.34,-2.48l1.81,0.24l1.6,1.61l1.88,0.2l1.29,-0.93l2.1,-2.93l1.3,-0.22l2.18,0.8l2.82,-0.78l0.93,-0.93l0.69,-2.02l-0.13,-2.55l2.56,-2.72l6.43,0.02l3.7,-2.24l1.2,-1.11l2.03,-2.95l-0.19,-0.6l-1.1,-0.37l-2.13,0.07l-0.86,-0.36l-1.17,-2.45l0.48,-1.71l-0.19,-0.66l-0.87,-0.75l-1.92,-0.08l0.8,-1.92l0.8,-0.57l1.42,-0.29l1.72,-1.87l-0.37,-1.2l-1.73,-0.68l-1.0,-0.94l0.08,-0.84l6.95,-1.75l3.87,-2.52l3.34,-0.33l1.12,0.65l0.76,-0.09l3.91,-4.23l3.73,-1.71l0.52,-0.45l0.24,-0.86l1.56,0.49l2.21,-0.21l3.23,0.36l1.42,-0.28l0.89,0.87l0.5,0.1l1.04,-0.77l1.12,-1.44l1.51,-0.7l0.31,-0.91l-0.06,-0.64l-2.07,-3.72l-2.37,-3.13l-5.65,-2.53l-1.2,-1.0l-3.96,-6.22l-0.75,-3.81l-0.29,-0.31l-15.19,-3.83l-6.4,0.51l-3.97,-0.65l-0.55,-0.56l-0.44,-2.26l-2.18,-1.75l-0.81,-1.35l0.44,-3.4l-0.31,-0.44l-2.72,-0.67l-0.03,-0.55l0.97,-1.14l0.45,-1.13l-0.27,-4.27l-0.46,-1.54l-1.79,-2.02l-0.13,-2.54l-0.78,-2.33l0.4,-1.27l1.39,-1.81l2.24,-0.4l0.73,-0.59l0.54,-2.67l-0.19,-1.2l-1.41,-3.02l-0.25,-5.06l-0.88,-1.57l-0.22,-2.52l3.36,-3.03l0.47,-1.66l0.0,-5.89l2.77,-1.98l0.82,-2.16l2.95,1.1l3.18,0.29l5.79,-2.16l7.22,-0.61l0.73,-0.41l0.85,-3.47l0.61,-0.21l7.64,0.27l1.43,0.76l9.37,-1.36l0.83,0.68l1.29,-0.04l2.24,-1.57l1.73,-2.62l1.25,-0.6l3.46,0.4l3.12,1.02l1.97,-0.78l5.13,-3.55l0.86,-1.06l2.42,-0.19l0.95,1.69l1.4,0.87l2.76,0.67l2.07,0.88l1.63,1.4l1.25,-0.19l1.72,-0.96l0.48,0.16l2.71,2.18l2.92,0.78l2.67,2.73l1.44,0.84l1.07,0.29l1.24,-0.44l2.87,1.9l-0.34,3.35l1.09,1.24l1.96,0.98l1.28,3.93l-0.21,1.01l-1.82,1.38l1.0,2.59l-0.17,3.23l-0.63,1.53l-1.33,1.1l-0.42,0.82l0.24,1.5l0.99,1.5l0.84,0.06l1.39,-1.45l0.88,0.11l0.74,-0.78l1.46,0.43l1.22,1.68l0.42,0.15l10.91,-3.01l1.5,-0.66l0.96,-0.85l2.02,-0.19l4.49,1.83l2.18,1.79l2.41,1.35l1.59,1.98l1.37,0.54l2.21,-0.3l5.81,1.42l14.92,0.95l16.88,-1.74l2.3,0.55l1.01,-0.3l7.43,-9.17l1.51,-2.95l0.22,-2.1l0.51,-0.86l3.79,-4.12l1.15,-0.88l3.86,-1.78l6.0,-1.21l4.61,0.5l3.44,1.06l3.56,1.87l3.87,-0.75l12.93,-5.38l4.18,-0.98l4.02,0.25l2.45,1.2l4.22,1.46l4.07,0.17l0.38,1.3l2.33,1.96l6.36,1.78l4.3,2.3l4.65,1.15l2.16,0.86l3.22,2.48l0.87,1.55l-0.78,1.66l1.39,11.49l0.33,1.01l1.82,2.65l2.23,2.2l1.34,2.38l-0.49,3.64l0.64,0.9l-1.54,2.53l-1.35,3.52l-0.8,3.65l-0.31,4.88l-1.95,2.47l-0.47,5.19l-9.27,18.97l-3.44,3.19l-1.44,1.97l-0.09,2.56l-1.51,3.37l-1.73,2.24l-1.42,0.32l-2.05,-0.06l-3.54,-0.66l-5.13,-3.01l-3.3,-0.79l-0.34,-0.69l0.32,-2.13l2.23,-4.98l-0.53,-1.73l-0.37,-0.26l-1.32,0.0l-5.24,1.82l-0.7,-0.46l2.4,-4.8l0.18,-1.95l-0.31,-1.4l-2.04,-2.41l-1.27,-0.84l-2.72,-0.6l-1.1,-0.64l-0.84,-0.97l-1.1,-2.63l-0.72,0.01l-0.79,1.66l-0.89,0.39l-3.47,-0.16l-2.84,1.01l-1.84,-0.43l-2.03,-2.05l-3.65,-1.0l-3.28,0.4l-2.68,2.26l-1.36,3.67l-1.05,1.27l0.12,0.61l1.3,0.68l3.27,0.36l1.27,0.43l-0.61,0.56l0.05,1.69l2.51,2.07l3.74,0.96l2.31,1.11l-0.5,2.77l-2.63,1.86l-7.56,-0.5l-3.63,0.62l-4.19,4.12l-15.18,5.82l-5.35,-0.28l-2.16,0.4l-3.49,2.82l-3.17,0.05l-1.0,1.08l-0.42,1.26l0.29,2.65l-0.51,0.61l-1.12,0.18l-2.78,1.45l-1.65,0.28l-4.52,-0.42l-2.2,0.2l-5.54,1.45l-8.78,-0.04l-4.64,0.74l-4.02,2.03l-0.17,0.56l1.06,1.85l-0.33,1.49l-1.2,1.3l-1.59,1.01l-0.14,0.53l0.51,0.92l-0.06,0.52l-4.72,3.92l-1.62,0.34l-2.0,-0.82l-2.51,-3.07l-1.67,-0.42l-0.96,1.18l-3.78,2.29l-1.57,3.35l-1.76,0.75l-3.18,-1.51l-1.91,-0.15l-0.4,0.24l-3.25,7.28l-1.34,2.04l-2.23,1.4l-5.05,-0.25l-4.63,1.08l-3.43,-0.9l-1.76,0.69l-1.43,7.74l-4.1,3.6l-3.12,-0.15l-9.01,-4.6l-1.07,-0.24l-2.84,1.1l-3.31,-0.12l-1.7,0.5l-1.46,1.18l-2.14,2.78l-0.96,0.78l-1.11,0.1l-5.28,-0.79l-7.34,0.46l-4.03,0.99l-3.7,2.69l-0.82,1.89l0.06,1.54l-1.51,0.27l-1.2,0.89l-2.84,1.34l-1.14,0.93l-3.09,4.69l-2.22,1.64l-0.8,1.0l-0.33,2.11l-1.85,1.99l-0.63,1.43l-0.3,2.41l0.86,3.81l-1.06,0.65l-1.37,-0.15l-0.85,-1.11l-1.85,-5.77l-2.4,-2.27l1.22,-1.33l0.11,-0.76l-0.4,-0.73l-1.02,-0.5l-2.77,-0.06l-1.31,-0.34l-0.94,-0.69l-0.32,-0.82l0.03,-2.13l-0.62,-1.37l-2.04,-1.29l-4.69,-0.34Z", "name": "Sachsen"}, "DE-HB": {"path": "M265.62,250.29l0.77,0.14l2.23,-0.47l2.69,1.38l7.16,2.2l2.11,-0.44l3.26,0.01l0.47,1.29l2.72,1.52l4.48,0.32l3.54,2.47l4.4,1.6l1.36,-0.49l1.23,-2.55l0.76,-0.22l3.33,3.07l-1.4,1.14l-0.28,0.91l0.47,0.95l2.35,2.05l0.26,0.56l-1.01,1.53l-0.59,3.76l-1.36,1.22l-3.97,2.26l-4.58,-2.93l-0.59,0.2l-0.14,1.16l-1.67,0.47l-1.73,-0.22l-5.32,-2.63l-5.13,0.89l-1.22,-0.18l-0.19,-4.35l-4.75,-4.35l-1.5,-1.88l-0.64,-3.9l-1.4,-2.3l-0.98,-0.62l-3.09,0.05l-2.31,-1.3l-3.92,-1.3l-1.3,-2.58l2.51,-0.02l2.99,1.58ZM261.84,196.51l4.03,1.21l2.2,0.32l4.13,-0.11l-0.95,1.95l0.35,1.49l1.13,2.28l0.64,2.7l-0.11,2.44l-1.57,2.18l-1.95,1.5l-1.06,-1.31l-1.38,-0.15l-1.41,-2.21l0.74,-3.74l-2.97,-5.84l-1.83,-2.72Z", "name": "Bremen"}, "DE-SL": {"path": "M65.93,746.0l-0.23,-1.93l-0.65,-1.16l-1.78,-1.49l-9.11,-3.87l-1.37,-0.17l-2.68,1.35l-1.34,0.11l-0.3,-4.41l0.59,-3.76l13.51,-1.05l11.44,0.43l6.27,-2.41l2.29,0.18l1.97,-0.33l14.47,-5.63l7.96,-4.23l2.89,1.17l0.89,-0.17l1.79,-1.14l7.05,3.24l6.38,0.31l2.11,1.74l4.12,2.71l0.79,0.23l1.21,0.11l1.89,-0.35l2.95,-1.49l0.05,1.82l1.71,3.48l0.25,3.41l0.57,0.68l0.74,0.13l0.16,1.73l-2.72,1.68l-1.93,2.1l-0.92,0.5l-0.54,0.98l0.61,1.93l4.08,4.23l-0.04,1.37l1.09,0.55l4.87,0.7l2.32,0.74l0.81,0.39l0.38,0.81l-0.64,1.56l0.39,1.37l-0.74,1.05l-2.08,1.61l-0.56,2.26l-1.52,1.52l-0.72,2.75l-1.14,1.4l-2.18,0.34l-0.95,1.98l0.91,4.25l5.38,4.66l1.21,0.05l-1.12,0.59l-1.6,3.08l-3.65,0.82l-2.07,2.79l-3.13,-1.11l-8.41,-0.07l-2.96,-1.08l-3.73,-2.3l-0.7,-0.12l-1.33,1.19l0.29,1.69l-2.64,1.41l-1.85,-1.23l-1.07,-3.29l0.05,-4.41l-0.38,-0.4l-2.04,-0.09l-6.05,-2.9l-1.21,-0.17l-2.89,0.23l-4.04,-0.78l-1.14,0.2l-0.86,2.29l1.06,3.9l-1.48,1.66l-1.02,0.2l-3.73,-1.17l-4.42,-0.05l-0.97,-0.35l-1.09,-1.54l0.73,-2.95l-0.62,-2.25l-0.78,-0.28l-1.53,0.75l-1.61,-4.5l-2.21,-1.07l0.12,-1.66l-0.28,-0.74l-6.51,-5.32l-1.57,-1.62l-0.52,-1.25l0.36,-0.78l1.85,-0.31l0.42,-1.34l-0.43,-0.9l-5.19,-4.82Z", "name": "Saarland"}, "DE-BY": {"path": "M307.24,662.75l0.86,-0.85l0.92,0.01l0.77,-0.48l0.41,-3.68l0.81,-1.04l3.72,-0.82l5.12,-2.0l2.55,1.34l1.32,0.36l-0.83,1.47l0.4,0.46l0.46,-0.03l2.16,-1.19l1.78,-1.75l0.49,-2.09l3.29,-0.87l9.69,0.58l4.61,1.99l0.68,0.67l0.77,1.74l1.59,1.62l2.33,0.32l1.62,-0.2l6.17,-2.23l0.81,-0.71l0.31,-0.73l-0.49,-3.2l1.7,-3.26l-0.64,-0.92l-2.32,-0.46l0.95,-3.62l-0.18,-3.43l1.88,0.4l1.07,-0.46l1.62,1.38l2.27,-0.43l1.71,0.66l1.51,-0.04l4.99,-1.4l0.46,-0.63l-0.67,-1.37l0.04,-0.77l0.65,-1.65l0.73,-0.82l0.6,-0.5l4.05,-1.4l1.68,-0.95l1.08,-1.11l0.12,-1.5l-0.59,-4.05l2.29,-6.91l1.08,-1.41l1.88,-0.6l2.59,2.37l1.15,0.36l2.03,-0.12l5.96,-1.94l6.14,-3.03l2.02,-1.47l1.25,-1.69l3.15,-4.7l1.02,-2.47l5.27,-4.94l1.17,-0.69l0.08,1.25l0.81,0.65l5.41,-0.31l1.16,0.29l1.63,1.47l0.74,2.27l0.54,0.65l9.39,3.01l0.77,1.25l0.03,1.8l0.44,0.78l1.44,1.0l1.71,1.89l2.58,1.75l-0.8,1.6l0.11,0.62l0.93,1.11l2.6,0.42l2.27,-0.53l0.56,1.24l0.9,1.03l2.62,1.88l0.23,1.17l0.56,0.48l2.81,0.21l1.06,-0.67l1.25,-0.14l1.25,2.28l2.44,1.7l0.83,4.11l-0.62,2.8l1.31,2.75l-0.33,1.46l0.63,1.21l1.07,0.93l4.39,-0.02l2.31,0.54l3.38,1.67l0.63,-0.1l0.41,-0.53l0.49,-4.06l0.51,-0.49l1.78,0.58l3.89,-0.64l3.02,0.94l1.19,-0.17l0.81,-0.86l0.12,-1.97l-0.74,-1.51l-2.78,-0.9l-0.75,-1.34l-0.65,-0.53l-2.94,-0.17l-1.83,-1.61l-2.67,-1.32l-0.59,-0.61l0.29,-3.55l0.33,-0.63l0.53,-0.32l1.93,0.55l0.91,-0.15l2.26,-3.1l0.7,-0.52l2.07,0.49l2.62,-1.16l2.08,0.23l1.63,-0.61l1.98,1.54l3.25,-0.73l1.24,0.05l3.26,4.0l1.12,0.8l0.76,-0.31l0.41,-1.39l2.52,0.3l1.03,0.66l0.58,0.81l0.94,0.27l3.67,-0.89l1.28,-1.14l1.14,-0.21l0.8,1.45l1.46,0.33l1.75,2.56l-1.95,2.16l-0.04,0.53l0.85,1.12l4.81,3.81l0.59,-0.1l1.09,-1.49l1.27,0.86l2.3,0.6l1.35,-0.24l0.41,-0.8l-0.17,-1.28l1.04,-2.16l-0.67,-2.01l1.11,-2.55l-0.17,-1.39l0.9,-0.32l0.25,-0.59l-0.33,-2.13l-1.14,-1.63l-0.11,-1.2l-0.5,-0.91l0.35,-3.12l-0.78,-2.67l0.16,-1.09l-0.65,-1.75l2.34,-0.94l1.98,-0.4l2.01,-1.11l0.52,-0.59l0.42,-1.4l1.23,-0.51l0.79,-0.82l6.04,0.28l1.44,0.39l0.99,1.7l-1.77,1.46l-0.24,4.31l0.32,1.33l3.45,2.23l1.36,-0.2l0.85,0.2l0.31,0.45l0.24,2.83l0.33,0.58l3.94,2.39l0.86,0.11l2.4,-0.52l1.34,-1.56l1.94,0.02l3.06,0.99l11.65,-2.06l1.71,-0.43l0.59,-0.74l2.05,-0.29l0.95,0.07l0.72,0.83l1.73,0.68l0.04,1.1l0.84,0.31l4.45,-1.52l3.2,-1.58l2.44,-0.21l0.65,0.23l2.01,2.64l1.96,1.08l0.37,4.11l0.46,0.54l5.42,2.83l2.27,0.01l2.57,0.63l0.21,0.31l-1.66,-0.1l-0.39,0.25l0.11,0.45l2.22,1.95l0.72,1.03l0.34,1.69l-0.16,1.44l-1.61,1.1l-1.23,1.55l-0.02,0.47l1.16,1.66l4.8,2.52l3.4,3.53l0.71,1.43l0.26,1.79l-0.67,2.84l0.08,2.18l0.97,2.1l4.34,2.83l0.78,1.13l0.55,3.29l15.17,6.93l1.41,1.16l3.71,0.4l1.43,1.15l0.22,1.61l-0.67,1.74l0.11,1.78l5.34,2.42l0.45,0.69l-0.28,2.29l-0.76,1.87l-2.24,3.49l-0.64,1.71l-1.62,-0.42l-0.48,0.26l-0.62,1.92l-0.34,4.58l-1.39,1.19l-3.99,1.43l-1.4,2.43l1.54,3.06l2.13,2.57l2.95,1.97l4.55,1.89l0.69,1.16l0.06,1.48l-0.78,1.47l0.13,0.52l0.72,0.37l-0.28,1.38l1.12,1.11l2.29,1.06l0.94,0.87l0.63,1.26l0.87,4.35l1.27,2.71l0.81,1.02l1.28,1.08l2.14,0.19l0.44,0.3l0.41,6.2l0.53,2.18l1.12,1.84l2.11,1.51l4.46,1.78l1.87,1.64l3.18,6.03l1.79,1.56l2.02,0.61l5.88,0.72l1.84,-0.21l0.34,-0.5l-0.33,-1.25l0.87,-0.23l3.62,0.84l1.6,0.72l4.11,3.4l1.69,0.63l1.12,3.4l3.2,3.22l1.21,0.59l9.1,10.48l1.3,2.51l1.71,2.25l2.78,1.38l6.04,0.27l1.85,0.61l1.11,0.81l2.99,3.39l4.11,3.55l1.02,2.05l0.06,3.46l1.49,2.17l2.89,2.32l3.15,1.92l2.35,0.96l0.51,-0.2l1.85,-3.44l1.14,-0.44l2.08,0.37l5.02,2.79l1.6,-0.1l0.24,2.12l1.04,2.3l1.58,2.05l1.73,1.48l1.97,0.81l3.69,0.51l1.23,0.58l2.21,2.93l4.73,8.01l1.76,1.57l-2.77,4.98l-0.27,1.32l0.72,0.39l0.98,1.59l1.19,0.69l-0.93,0.88l-0.25,1.51l0.51,4.16l-0.36,3.82l-0.59,1.59l-2.07,3.59l-1.4,0.86l-2.62,0.4l-0.87,1.54l-0.73,2.83l-3.74,-1.44l-1.54,-1.97l-3.43,-1.85l-10.31,-2.43l-3.36,0.39l-3.33,1.09l-0.98,0.8l-0.59,1.14l0.75,3.31l0.93,1.31l0.18,0.93l-0.24,1.09l-1.8,3.62l-0.19,5.97l-0.88,1.53l-0.74,3.27l-1.29,1.84l-9.51,7.1l-3.21,1.53l-13.46,2.01l-10.24,3.47l-1.71,1.03l-3.61,2.97l-3.18,1.52l-1.61,1.35l-5.06,0.84l-1.58,0.71l-4.05,4.56l-3.86,2.32l-1.84,2.3l-1.73,0.34l-0.82,1.06l-0.24,2.03l0.53,1.74l0.9,1.55l0.97,1.3l6.85,6.14l1.41,2.68l0.83,2.85l0.85,1.09l2.44,1.29l4.33,3.43l3.29,6.55l2.39,2.99l-6.14,8.46l-0.58,1.08l-0.38,2.35l-2.42,3.25l0.06,0.54l1.8,1.49l5.47,0.87l1.68,-0.24l2.39,-0.9l1.33,0.18l2.26,1.91l1.88,2.76l0.75,1.73l0.26,1.51l-0.25,2.82l-1.47,3.08l-1.87,1.89l0.16,2.88l-1.16,2.39l0.08,2.98l0.81,2.91l-3.21,3.13l-0.82,0.03l-2.2,-1.25l-1.18,0.06l-1.46,0.57l-5.65,-3.39l-5.34,-4.83l-2.51,-0.56l-2.21,-1.53l-0.47,-2.8l1.09,-2.63l2.53,-1.08l0.1,-0.68l-2.01,-1.66l-2.49,-1.41l-1.31,-1.38l0.9,-1.93l-0.41,-0.57l-1.62,0.18l-5.53,-1.21l-3.58,0.01l-3.5,0.72l-1.94,0.83l-4.41,3.37l-1.44,0.55l-3.9,0.29l-1.27,-0.54l-3.58,-2.72l-1.52,-3.59l-0.76,-0.97l-1.8,-0.26l-3.82,1.26l-1.56,0.22l-5.73,-1.03l-2.14,0.26l-3.1,1.1l-0.75,-0.58l-0.44,-1.13l0.9,-1.48l0.88,-2.83l-0.42,-0.58l-2.65,1.08l-2.36,1.68l-1.5,0.52l-0.26,0.45l0.6,1.9l2.2,2.3l0.16,3.24l-0.39,1.75l-2.66,2.94l-23.2,-0.73l-8.35,1.48l-1.11,0.57l-1.09,2.14l-0.75,0.21l-5.44,-0.96l-8.03,-0.03l-6.12,-0.79l-3.44,2.62l-1.92,5.31l-1.66,1.59l-2.01,0.69l-4.49,0.64l-4.61,-0.88l-2.36,0.46l-4.83,4.69l0.19,0.67l2.05,0.77l0.24,0.6l-0.65,0.95l-1.41,0.52l-4.19,0.09l-1.92,0.52l-2.04,1.59l-2.66,2.76l-1.98,0.78l-1.87,-0.18l0.19,-3.0l-0.27,-0.4l-2.32,-0.75l-2.59,0.63l-6.36,3.79l-1.81,0.48l-10.09,-0.13l-1.18,-0.59l-0.71,-1.19l0.59,-1.65l-0.45,-1.68l-4.9,-4.54l-5.06,-2.05l-0.36,-0.53l2.8,-1.64l0.91,-0.92l-0.07,-0.61l-3.34,-1.99l-1.63,-0.11l-5.35,1.9l-2.77,0.29l-0.65,-0.17l-1.31,-1.65l-12.95,-4.21l-2.49,-0.05l-1.67,0.96l-1.95,2.34l-1.13,0.78l-1.01,0.15l-4.07,-0.53l-1.45,-0.57l-1.12,-0.88l-0.13,-0.83l0.94,-1.84l-0.6,-1.59l-0.7,-0.28l-2.39,0.51l-1.47,0.5l-0.27,0.43l0.2,1.23l1.43,2.63l-1.1,5.97l0.22,0.44l2.06,1.33l0.48,1.0l0.38,1.46l0.02,2.56l-0.86,2.7l-1.39,2.45l-1.56,1.79l-3.99,1.77l-2.78,4.56l-1.72,1.99l-1.86,1.46l-4.33,2.29l-2.07,0.69l-7.6,0.8l1.04,-1.69l1.51,-0.48l0.76,-0.68l0.26,-0.97l-0.25,-1.51l1.75,-4.61l0.07,-2.24l-0.23,-0.38l-2.04,-0.87l-4.31,0.67l-1.64,1.38l-1.84,-0.58l-2.6,1.03l-0.76,-0.64l-0.46,-1.04l-0.36,-2.61l-0.84,-0.94l1.83,-1.22l0.61,-1.51l-0.9,-1.8l-4.86,-6.13l-0.46,-0.12l-2.68,1.35l-0.75,-0.39l-0.18,-1.4l-0.89,-1.68l-2.22,-2.21l-0.26,-1.94l-0.62,-0.28l-1.11,0.77l-1.35,0.23l-2.83,-0.19l-3.12,-0.93l-2.33,0.82l-1.74,-0.77l-0.3,-1.06l0.18,-1.57l-0.44,-1.68l-1.15,-1.08l-1.54,-0.52l-1.76,0.16l-1.54,0.73l-2.14,2.14l-1.14,2.09l-3.79,-0.83l-4.02,-2.5l-2.2,-0.96l4.11,-1.04l1.04,-1.33l1.35,-0.56l3.53,0.8l4.42,-1.94l7.33,-5.6l2.8,-1.14l3.86,1.42l2.37,0.49l2.45,-0.02l3.49,-0.99l2.12,-1.01l2.36,-0.56l1.69,0.03l0.49,0.32l1.53,3.25l0.63,0.05l1.06,-1.28l0.32,-2.33l2.77,0.72l0.95,-0.65l0.45,-1.9l-0.84,-2.57l-0.57,-6.54l-0.51,-0.77l-1.25,-0.17l-0.63,-1.11l-1.28,-1.18l0.73,-1.09l2.32,-0.31l0.78,-1.2l0.87,-0.35l0.19,-0.55l-2.55,-5.48l-0.46,-0.42l-1.19,-0.07l0.99,-0.98l0.52,-2.31l0.43,-0.62l0.41,-4.61l-0.21,-0.8l-1.3,-1.23l-0.94,-2.04l0.15,-0.59l1.32,-0.92l2.91,-6.98l0.74,-2.83l0.16,-4.81l-0.34,-1.72l-2.62,-5.07l-3.85,-15.14l-1.57,-4.54l-3.15,-4.58l-1.91,-3.58l-0.58,-0.34l-0.85,0.02l-0.61,-0.97l5.26,-6.27l0.65,-0.36l0.18,-0.49l-0.29,-1.44l0.86,-1.38l1.22,-1.05l3.32,-0.59l2.26,-1.41l0.64,-0.05l0.52,0.41l0.5,1.82l0.68,0.43l0.85,0.06l9.54,-4.95l0.53,-1.77l1.16,-1.12l5.1,-0.59l-0.07,-0.71l-0.53,-0.48l1.09,-2.68l0.18,-1.6l-0.23,-1.4l-0.9,-1.6l-0.18,-0.94l1.66,-0.87l0.43,-0.45l0.1,-0.83l-0.62,-0.92l-4.02,-2.53l-1.63,-2.66l0.12,-1.36l2.05,-2.42l2.29,1.65l2.94,0.13l1.54,2.66l0.82,0.44l0.86,-0.45l4.95,-4.66l0.73,0.33l-0.54,0.39l-0.02,1.02l-0.58,1.71l0.38,0.92l0.51,0.34l1.7,-0.72l4.25,-3.37l0.09,-0.53l-1.73,-2.74l-0.67,-1.65l-2.99,-1.08l-0.6,-0.67l-0.17,-0.81l0.06,-1.09l0.73,-1.24l-0.03,-3.13l1.39,-1.63l0.55,-2.26l-1.07,-2.44l0.47,-1.36l0.33,-4.38l-0.19,-0.8l-0.75,-0.6l1.86,-0.82l0.18,-1.17l-0.92,-2.48l-1.26,-1.18l-0.71,-1.52l-1.57,-1.53l-0.85,-1.38l-4.06,-2.83l-0.5,-0.58l-1.1,-2.75l-0.54,-0.32l-1.35,-0.01l-2.3,-1.07l-1.55,-0.02l-2.24,-0.82l0.39,-1.87l-1.89,-1.74l0.2,-1.55l-3.01,-1.34l1.83,-0.24l1.04,-1.59l0.6,-2.59l-0.35,-1.51l-2.28,-1.74l-0.95,0.09l-1.23,0.62l-3.67,-3.85l-3.02,-1.98l0.92,-0.35l0.31,-0.87l-1.55,-2.1l-0.17,-2.79l-1.4,-1.31l-0.23,-0.65l0.06,-0.21l2.18,0.83l0.87,-0.6l0.1,-1.15l-1.24,-2.85l0.7,-2.29l-0.29,-0.62l-2.05,-0.88l-0.86,-1.0l-0.22,-0.72l0.25,-3.33l1.56,-1.58l0.84,-0.1l1.86,0.55l0.62,-0.68l-3.12,-6.63l-2.65,-1.08l1.1,-1.43l0.77,-2.15l-1.08,-2.6l0.77,-1.6l-0.13,-1.06l-0.64,-0.52l-1.45,-0.17l-0.84,-0.48l0.52,-1.56l-0.13,-0.62l-1.08,-0.74l-1.14,-0.28l-2.36,1.58l-0.49,0.71l0.01,0.44l0.8,0.92l0.02,0.91l-3.59,3.2l-0.7,0.32l-7.69,0.0l-0.45,-3.4l0.24,-2.35l-0.43,-2.82l-0.44,-0.74l-1.19,-0.83l0.57,-1.19l-0.7,-1.14l-1.22,-0.12l-1.73,1.79l-1.44,0.57l-0.95,2.06l-0.66,0.3l-1.11,-0.51l1.98,-2.18l0.04,-2.29l1.77,-2.05l0.43,-1.48l-0.83,-1.39l-3.8,-3.59l-0.24,-4.98l-3.88,-4.3l-0.65,-0.13l-2.79,1.25l-3.39,3.08l-1.09,-1.87l-0.26,-1.92l-0.37,-0.42l-0.69,-0.04l-0.95,1.22l-1.44,0.77l-0.45,2.03l-0.73,0.27l-1.28,-0.13l-1.86,-1.01l0.85,-1.87l-0.08,-1.09l0.84,-0.79l-0.2,-1.41l0.56,-1.34l-0.32,-1.95l0.7,-1.47l-0.22,-0.68l-0.62,-0.5l-0.52,-0.04l-1.67,0.91l-2.47,0.68l-2.58,-1.4l-1.93,0.5l-1.07,-0.08l-5.23,-2.09l-1.95,-0.07l-3.63,0.46l-3.49,1.08l-4.71,-0.28l-1.32,0.34l-1.28,0.7l-1.63,1.68l0.67,2.26l-0.68,1.36l0.15,1.16l1.52,0.85l3.77,0.63l0.26,0.43l-0.4,1.79l0.49,0.74l0.92,0.08l0.9,-0.42l1.16,-2.18l2.28,0.8l-1.01,5.79l0.66,1.44l-1.49,1.17l-0.6,-0.04l-1.11,-1.02l-0.8,-0.27l-2.96,1.06l-3.2,0.23l-2.21,0.94l-0.91,1.03l0.29,2.08l-1.32,1.17l-0.69,1.82l-0.76,0.83l-6.21,0.17l-1.56,-0.21l-5.51,1.02l-0.81,-0.43l-1.36,-1.97l-1.97,-1.61l-0.28,-0.55l3.13,-2.68l0.61,-0.96l-1.14,-5.85l2.13,-0.38l1.38,-1.37l-0.23,-2.35l1.6,-3.44l-0.49,-0.75l-2.19,-0.91l-0.2,-0.63l1.53,-1.91l0.54,-1.57l-1.04,-1.29l-2.07,0.2l-1.03,-0.66l-0.76,-1.74l0.22,-3.05l-0.25,-0.72l-1.03,-0.1l-1.19,1.58l-0.64,-0.99l-3.46,-8.98l0.19,-8.9l1.56,0.51l0.63,-0.19l0.26,-0.5l-1.22,-2.34l0.03,-1.65l-0.89,-1.16l-0.52,-2.77l-0.62,-0.81l-1.3,-0.26l-1.47,0.54l-1.3,-0.69Z", "name": "Bayern"}, "DE-HE": {"path": "M189.06,662.8l6.22,-3.72l0.46,-0.72l0.37,-2.21l1.03,-1.35l1.72,0.1l1.59,-0.34l1.56,1.35l0.71,0.28l0.56,-0.14l1.0,-3.2l0.01,-0.9l-0.54,-0.58l-2.12,-1.09l-0.61,-0.67l-0.06,-0.76l0.19,-1.05l1.13,-2.19l1.06,-1.29l5.64,-2.46l1.19,-1.1l1.97,1.5l1.1,0.01l2.15,-2.8l-0.16,-0.7l-0.79,-0.83l0.65,-1.58l5.18,0.04l1.71,-0.39l1.12,-1.08l0.01,-1.4l-1.48,-4.04l-0.77,-1.2l-1.95,-1.33l-2.99,-5.25l-1.77,-0.79l-0.33,-1.2l-0.43,-0.34l-4.82,-1.27l1.32,-1.24l1.23,-3.58l1.88,-1.97l-0.26,-0.58l-1.68,-1.09l0.1,-5.36l0.34,-1.28l1.56,-1.0l1.46,-1.69l1.46,-0.49l1.42,0.13l2.34,2.22l1.53,0.16l0.9,-0.33l2.37,-1.77l2.65,-5.78l-0.4,-0.95l-0.99,-0.56l-0.54,-0.95l-0.35,-1.95l-1.97,-4.04l0.97,-2.07l0.42,-2.19l0.87,-1.67l0.55,-0.5l1.34,-0.37l0.43,-0.57l0.8,-4.78l-0.87,-1.26l-2.35,-1.53l-0.08,-0.85l-0.76,-0.58l0.0,-0.35l5.11,-3.82l0.98,-2.01l1.94,-1.17l0.84,-1.0l5.61,-4.56l1.55,-0.06l0.97,1.8l0.86,0.57l1.74,0.25l2.76,-0.24l3.21,-1.88l0.37,-0.79l-0.07,-1.12l2.78,-2.36l1.56,-0.88l2.12,0.06l0.52,-1.07l0.13,-2.84l2.01,-3.69l0.51,-0.49l1.34,-0.46l1.66,-3.08l1.9,-2.43l-0.97,-3.82l0.23,-1.74l-1.61,-2.78l0.25,-0.65l9.73,-0.04l3.41,0.7l4.7,-2.49l0.13,-1.34l-1.08,-1.92l2.08,-2.41l3.15,-2.93l0.33,-0.95l-0.07,-1.74l-1.95,-7.73l-1.12,-0.81l0.39,-1.08l-0.17,-0.64l-0.62,-0.46l-0.83,0.01l-2.71,1.53l-4.44,0.76l-1.35,1.51l-0.75,0.14l-1.38,-0.44l-0.54,-1.6l-1.74,-1.31l0.16,-0.72l1.5,-2.53l2.08,-2.26l3.23,-2.73l0.6,-1.27l1.72,-0.95l1.16,-1.45l4.72,-1.37l3.75,-0.17l3.54,-0.82l4.62,0.89l3.74,-1.97l4.02,-0.17l0.55,-0.29l1.0,-1.67l0.25,-1.18l-1.05,-1.11l-2.21,-0.32l-0.38,-3.62l-1.42,-2.11l0.62,-1.45l5.0,-2.08l4.02,-0.87l1.52,-0.65l3.17,1.66l2.7,0.9l0.5,0.61l0.17,1.06l-0.15,2.25l2.49,2.08l3.82,0.67l1.33,-0.08l3.58,-2.32l1.97,-0.15l0.56,-1.04l0.64,-2.92l7.03,-3.95l1.49,-2.4l2.0,-1.81l0.9,-1.62l1.49,-4.22l-0.27,-0.71l-1.68,-1.12l7.81,-2.32l0.86,-0.74l1.31,-1.93l0.99,0.39l1.68,-1.34l1.57,0.14l0.46,2.42l1.75,0.9l2.24,-0.07l1.99,-1.46l1.18,1.16l1.43,0.54l1.66,0.17l2.57,-0.67l0.82,1.66l2.26,1.14l1.16,2.98l1.77,1.61l-0.91,1.14l-2.57,-1.6l-0.99,0.03l-0.47,0.52l-0.05,0.71l0.99,1.75l-1.64,-0.47l-0.7,0.14l-0.31,0.51l-0.39,3.23l-1.24,0.25l-0.51,0.49l0.18,1.27l1.92,3.63l1.22,1.37l0.91,0.41l-0.82,1.44l0.67,1.4l-0.22,1.74l0.37,3.21l-0.37,0.67l-5.26,0.47l-1.71,1.99l0.1,1.18l0.7,1.56l-3.19,-0.74l-0.45,0.48l0.72,1.25l2.98,2.22l8.44,2.96l1.4,0.03l1.12,0.52l2.78,2.99l1.71,0.24l0.99,-0.41l3.57,-2.85l0.4,-0.61l0.05,-1.02l0.91,-0.92l0.25,-0.83l-0.71,-0.75l-0.63,-0.06l-2.27,1.39l-2.96,-2.41l-0.52,-1.13l5.21,-2.78l2.45,-0.67l0.99,-0.94l-0.43,-1.37l2.91,1.36l1.54,2.67l0.81,0.67l1.3,-0.11l0.91,-0.89l0.29,-0.97l-1.31,-2.87l1.9,-0.18l1.4,-1.02l0.32,1.9l3.81,2.58l-1.46,1.07l-0.75,1.73l0.64,2.78l1.28,1.69l0.21,2.45l0.43,0.75l1.62,0.46l0.82,1.1l1.15,0.78l1.9,0.02l4.46,1.18l0.25,0.35l-0.49,1.09l0.04,0.85l0.56,0.87l1.52,1.05l0.38,1.85l0.52,0.68l3.5,1.25l2.03,0.33l1.52,0.78l2.41,0.13l2.32,1.45l3.23,1.4l-0.24,0.85l-1.43,1.46l-0.63,1.44l-0.64,4.09l-0.9,-1.05l-0.05,-1.06l-1.42,-1.4l-1.74,-0.02l-2.24,0.52l-1.07,0.82l1.54,2.44l2.61,0.65l-0.33,1.29l-1.77,2.83l-0.63,3.16l0.4,0.72l1.69,0.29l1.23,0.8l1.93,0.22l1.12,1.6l0.27,1.05l-1.58,2.94l-5.34,0.22l-0.77,-0.42l0.07,-1.0l-0.63,-0.47l-1.56,0.41l-1.13,-0.34l-4.22,0.2l-2.58,1.51l-0.45,2.05l0.29,0.98l1.64,1.88l0.26,1.48l-0.27,0.7l-2.54,0.46l-3.39,-0.3l-1.58,-0.48l-0.99,0.34l-0.44,0.87l0.21,1.67l0.93,0.27l0.72,-0.49l-0.07,1.56l0.45,1.2l0.86,0.09l1.69,-1.65l1.02,-0.15l2.22,1.43l1.99,3.1l-2.73,2.91l-0.27,0.57l0.31,1.21l-0.24,1.38l-2.81,0.88l-2.01,0.22l-1.52,0.55l-0.92,0.75l-0.79,2.63l0.37,2.31l-1.66,0.35l-0.79,1.45l1.44,1.95l-0.21,2.08l-2.03,3.63l0.06,1.51l-1.9,1.56l-1.21,1.72l-0.4,3.33l0.25,0.99l0.53,0.55l0.64,0.09l1.67,-0.53l2.71,1.2l1.5,0.1l0.86,-0.45l0.74,-1.59l-1.3,-1.8l0.22,-0.79l4.97,-1.71l4.58,0.88l0.84,0.67l1.02,2.21l0.21,2.8l-1.57,0.46l-1.0,0.94l-0.37,0.8l0.33,1.49l-0.08,3.19l0.81,1.99l-1.2,4.17l0.37,0.84l0.48,0.17l-0.79,1.94l-4.23,6.19l-1.88,1.37l-6.08,3.01l-5.77,1.88l-1.85,0.11l-0.86,-0.29l-2.75,-2.43l-2.62,0.79l-1.26,1.68l-2.34,7.08l0.55,5.34l-2.41,1.72l-4.04,1.39l-0.82,0.67l-0.87,1.02l-0.73,1.9l-0.03,1.05l0.51,1.18l-4.68,1.27l-1.31,0.02l-1.71,-0.66l-2.15,0.43l-1.62,-1.37l-1.32,0.45l-1.62,-0.4l-0.79,0.27l-0.3,1.28l0.31,2.57l-0.98,3.73l0.55,0.82l2.43,0.55l-1.67,3.05l-0.14,0.8l0.59,2.64l-0.76,0.76l-5.86,2.1l-1.42,0.19l-2.14,-0.3l-1.19,-1.32l-0.89,-1.92l-0.71,-0.64l-4.87,-2.13l-10.04,-0.61l-3.71,1.06l-0.56,2.17l-1.63,1.62l-1.41,0.86l0.51,-0.78l-0.2,-0.69l-4.5,-1.94l-5.38,2.04l-3.79,0.85l-0.88,0.74l-0.36,0.83l-0.26,3.37l-1.59,0.36l-1.25,1.35l0.13,0.59l1.66,0.94l0.5,0.1l1.48,-0.57l0.77,0.12l0.34,0.4l0.51,2.75l0.93,1.28l-0.09,1.47l1.05,1.97l-1.77,-0.58l-0.52,0.37l-0.2,9.52l3.53,9.26l0.81,1.24l0.73,0.23l1.47,-1.73l-0.18,3.35l0.87,2.03l1.2,0.94l2.28,-0.17l0.56,0.73l-2.08,3.19l0.05,0.77l0.48,0.63l2.33,1.07l-1.56,3.17l-0.13,1.17l0.33,1.26l-0.96,0.79l-1.87,0.26l-0.66,0.5l0.08,1.81l1.07,4.11l-0.39,0.63l-2.41,1.88l-0.97,1.27l0.48,1.19l1.95,1.59l1.21,1.76l-0.66,0.9l-2.0,-1.11l-0.72,0.41l-0.06,0.94l2.49,2.72l2.67,4.35l-0.53,-0.08l-1.27,-1.24l-2.83,-0.14l-1.03,0.15l-2.22,1.81l-0.82,0.27l-2.29,-0.37l-5.77,0.21l-2.88,3.09l1.56,2.62l0.21,0.73l-0.38,0.71l-2.29,1.12l-0.74,-1.11l-0.8,0.1l-1.03,2.77l-3.65,3.39l-3.34,-0.68l-0.21,-0.48l0.2,-1.48l1.57,-0.92l0.38,-0.8l-0.38,-3.0l0.18,-1.13l1.84,-1.85l1.51,1.25l1.11,-0.21l1.61,-2.44l0.13,-1.04l-0.34,-0.85l-0.4,-0.23l-5.94,0.42l-1.96,-2.58l-4.29,-0.09l-4.48,-2.24l-1.09,-1.05l-1.37,-2.83l-0.42,-1.33l0.56,-1.04l-0.1,-1.22l-1.11,-1.39l-0.19,-0.98l-0.45,-0.46l-0.7,-0.06l-7.39,1.79l-0.14,0.84l1.89,7.33l-0.58,0.7l-3.94,1.43l-6.51,-5.73l-2.49,-1.66l-2.58,-0.34l-2.96,1.03l-1.5,-3.6l-3.84,-6.83l0.16,-3.16l1.55,-2.32l2.53,-1.45l3.36,-0.63l3.44,-3.99l0.34,-1.44l-0.27,-0.46l-1.38,-0.46l-3.7,0.45l-1.35,-3.01l-1.84,-2.89l-0.93,-3.51l-1.02,-1.85l-2.22,-2.77l-0.65,-1.41l1.41,-4.57l-1.93,-4.35l-10.62,-10.19l-1.57,-0.86l-1.32,-0.28l-2.83,0.07l-12.29,3.51l-3.89,2.47l-4.64,2.05l-4.18,1.16l-3.72,0.11l-1.57,-1.95l-0.28,-1.51l-0.88,-1.29l-6.36,-4.84l-0.86,-0.31Z", "name": "Hessen"}}, "height": 1013.8952766123396, "projection": {"type": "mill", "centralMeridian": 0.0}, "width": 900.0}); \ No newline at end of file diff --git a/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-europe-mill-en.js b/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-europe-mill-en.js deleted file mode 100644 index 5e613bb9f..000000000 --- a/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-europe-mill-en.js +++ /dev/null @@ -1 +0,0 @@ -jQuery.fn.vectorMap('addMap', 'europe_mill',{"insets": [{"width": 900, "top": 0, "height": 790.3360148034734, "bbox": [{"y": -9690291.808548316, "x": -4159652.5301950974}, {"y": -3201145.6268246872, "x": 3229902.613642692}], "left": 0}], "paths": {"BE": {"path": "M400.73,433.08l-0.52,-2.25l-0.56,-0.57l-4.28,-0.9l-0.52,-2.3l-0.72,-1.23l-1.11,-0.96l-1.47,0.14l-2.34,0.95l-0.92,-0.59l-2.1,-2.13l0.06,-1.42l-0.94,-2.11l5.63,-2.88l4.83,-1.89l0.35,1.28l1.0,1.0l0.79,0.0l1.32,-0.72l1.22,0.17l1.92,1.09l1.13,0.14l2.05,-0.73l1.86,-1.11l0.78,-1.23l1.7,0.4l0.63,-0.24l0.21,-0.45l-0.2,-0.84l1.02,-0.55l1.09,0.83l0.82,0.06l1.67,-1.16l0.71,1.31l0.55,0.19l1.3,-0.08l1.17,-1.0l0.54,1.83l1.68,1.4l1.62,0.43l2.18,-0.42l1.56,1.44l2.54,0.82l0.16,0.74l-0.9,1.69l-0.1,0.88l-1.21,1.21l-0.17,0.9l0.73,1.23l0.43,0.19l1.64,-0.55l0.67,0.81l1.43,0.18l1.66,1.17l1.24,1.25l-0.57,0.57l0.11,0.94l0.57,0.56l1.13,0.22l0.42,0.41l0.27,2.03l-2.32,1.34l-0.73,1.47l-2.05,-0.25l-1.48,1.5l-1.78,3.11l-0.26,2.02l2.04,2.91l-0.89,1.46l-3.56,0.48l-3.15,-2.93l-1.99,-0.73l-1.61,-1.01l-1.76,-0.23l-0.27,-1.86l-0.65,-0.86l0.89,-2.91l-0.19,-0.47l-0.91,-0.33l-0.73,0.31l-1.0,0.88l-0.65,1.57l-1.29,0.64l-2.28,0.26l-2.49,-0.26l-0.25,-0.23l0.75,-1.69l-0.73,-1.1l0.42,-1.16l-0.09,-0.82l-1.77,-1.33l-1.44,-0.33l-2.31,-0.2l-1.24,0.59Z", "name": "Belgium"}, "FR": {"path": "M467.41,568.7l0.77,-0.77l0.94,-1.92l1.23,-0.85l3.09,-0.88l1.24,-1.13l1.71,0.56l0.82,-0.34l0.45,-1.04l-0.08,-2.97l0.33,-0.92l0.66,0.38l0.24,2.71l-0.35,2.37l0.98,1.89l0.4,6.29l-2.07,3.66l-0.12,3.28l-1.87,4.27l-0.66,0.89l-3.62,-1.94l-0.93,-0.91l0.99,-1.66l-0.25,-0.45l-2.03,-0.85l0.51,-1.36l-0.22,-1.18l-0.41,-0.29l-1.25,-0.03l1.06,-1.23l0.08,-1.13l-1.58,-1.27l-0.2,-0.63l1.2,-0.8l0.16,-0.59l-0.67,-0.97l-0.55,-0.18ZM313.21,482.01l0.65,-0.84l-0.12,-0.59l-0.73,-0.41l-2.58,0.36l-1.17,-0.3l-1.49,-1.3l-1.38,0.14l-0.87,-0.45l-1.52,-0.0l-0.86,-0.67l-5.41,-1.47l-2.3,-0.18l-2.17,0.65l-0.93,-0.18l-1.64,-2.53l-2.86,-1.03l3.52,-0.98l0.83,-0.83l-0.09,-0.62l-1.43,-0.83l-1.1,-0.24l-0.48,-0.52l4.03,0.01l0.24,-0.69l-0.82,-0.75l-1.49,-0.46l-4.19,0.09l-0.42,-1.11l0.47,-1.3l2.39,-1.3l6.29,-1.5l2.69,0.22l2.0,-0.28l2.39,-0.99l1.02,-0.81l3.06,-0.46l2.9,0.82l2.77,3.22l1.41,1.17l0.45,0.04l3.24,-1.89l4.69,0.05l0.91,0.97l0.66,-0.11l1.04,-1.64l1.04,1.03l6.16,-0.4l0.3,-0.33l-0.2,-0.4l-1.32,-0.73l-1.04,-1.7l-0.24,-6.84l-3.16,-5.21l-0.74,-1.78l0.1,-1.05l3.43,0.27l2.91,-0.67l1.05,0.35l-0.06,1.26l0.44,1.82l1.68,2.19l2.38,-0.09l2.65,0.59l3.28,0.09l5.0,1.0l2.17,-0.63l1.94,-1.22l3.74,-0.81l0.55,-0.6l-0.36,-0.63l-2.1,0.17l-1.75,-0.69l-0.18,-0.57l0.93,-2.27l5.65,-2.74l4.18,-0.84l4.36,-1.56l2.29,-1.65l1.52,-2.13l0.98,-0.76l0.11,-0.58l-0.47,-0.63l0.37,-7.74l0.38,-1.32l0.77,-1.06l3.1,-1.8l7.88,-1.69l0.89,1.98l-0.23,0.88l0.24,0.64l2.37,2.44l1.4,0.75l3.42,-1.17l1.46,1.79l0.67,2.53l0.79,0.51l3.63,0.5l1.16,2.95l0.53,0.06l1.11,-0.65l2.15,0.19l1.16,0.24l1.51,1.13l-0.49,1.57l0.74,1.06l-0.73,1.84l0.74,0.77l2.77,0.32l2.61,-0.31l1.51,-0.75l0.83,-1.78l1.17,-0.81l-0.75,2.87l0.69,1.08l0.35,2.16l0.4,0.31l1.75,0.15l1.55,0.99l2.02,0.76l3.1,2.91l3.88,-0.4l0.56,0.58l2.56,1.05l1.01,-0.16l1.41,-0.77l0.66,0.06l1.34,0.7l1.53,0.18l0.9,0.74l0.57,1.33l2.4,2.92l0.83,0.07l1.34,-0.87l1.18,0.37l0.34,0.99l0.66,0.25l0.87,-0.21l1.22,0.23l3.14,-0.67l0.9,1.02l1.32,0.54l5.32,0.9l1.54,0.57l0.05,1.07l-4.07,4.38l-1.79,6.17l-1.23,2.2l-0.44,1.6l0.31,1.21l-0.19,1.55l-0.73,2.24l-0.14,1.82l0.62,1.44l-1.04,0.58l-0.92,1.45l-0.88,0.32l-1.65,0.02l-0.4,-0.65l-0.67,-0.35l-1.31,0.06l-1.26,0.7l-0.98,1.46l0.57,0.78l0.73,0.14l-4.42,4.94l-2.89,1.4l-0.65,3.28l-3.37,2.5l-1.41,3.23l0.82,1.07l-0.3,1.32l-1.75,1.33l0.3,1.45l1.86,0.05l1.53,-0.78l1.1,-1.08l0.06,-0.49l-0.55,-0.89l1.09,-0.96l1.33,-0.57l1.91,-0.11l2.26,0.34l0.17,1.45l0.39,0.63l-0.48,2.05l2.49,2.54l0.73,1.16l-2.84,1.86l-0.18,1.53l0.36,0.71l0.96,0.63l1.82,2.88l1.7,1.48l-0.9,2.31l-1.21,0.37l-1.75,1.24l-1.95,-0.12l-1.05,0.48l-0.22,0.4l0.1,0.84l0.84,0.96l0.72,1.77l0.97,0.7l2.2,0.58l0.6,1.76l-0.88,0.55l-1.6,2.79l0.62,1.54l-0.2,0.75l0.43,1.08l1.01,1.0l4.78,2.37l0.96,0.2l3.03,-0.67l0.61,0.99l-2.55,3.41l0.06,1.58l-1.05,-0.07l-0.48,0.65l-2.48,1.14l-4.33,3.66l-1.97,1.05l-0.96,1.97l-1.06,0.92l-3.53,0.96l-2.42,1.03l-1.16,-0.44l-2.87,0.05l-1.9,-1.3l-3.43,-0.8l-1.08,-1.78l-3.35,-0.43l-0.12,-1.01l-0.5,-0.38l-2.08,0.32l-0.81,0.45l-0.79,-0.06l-0.3,0.4l-0.61,0.05l-6.52,-1.74l-2.24,-1.83l-2.23,0.45l-1.85,1.74l-7.11,4.41l-2.95,4.72l-0.16,1.53l0.65,4.05l1.42,2.15l-2.56,-0.58l-1.25,0.17l-2.71,0.83l-0.83,1.03l-5.69,-1.28l-2.78,1.04l-0.81,-1.08l-2.69,-1.15l0.34,-0.96l-0.7,-0.84l-2.87,-0.64l-0.99,0.54l-0.97,-1.3l-1.99,-0.4l-6.05,-2.05l-1.12,-0.09l-0.58,0.37l-0.39,2.16l-4.75,-0.06l-0.9,-0.43l-3.17,0.48l-3.51,-2.22l-3.8,0.42l-2.47,-2.29l-2.3,-0.16l-4.56,-1.73l-0.58,-0.75l-1.12,1.09l-0.39,-0.03l-0.36,-0.23l0.9,-1.92l-0.24,-1.16l-0.96,-0.5l-3.17,-0.62l-0.85,-0.97l2.08,-0.55l2.09,-2.26l1.89,-7.6l1.35,-8.91l0.9,-1.51l1.14,-0.42l0.17,-0.63l-1.03,-1.24l-0.59,-0.03l-0.43,0.42l0.62,-6.75l1.3,-5.66l2.93,2.19l0.74,1.02l1.11,3.82l1.99,1.61l0.49,-0.04l0.08,-0.49l-1.25,-1.54l-1.22,-4.82l-0.82,-1.5l-1.35,-1.33l-4.12,-2.8l-0.07,-0.37l1.77,0.46l0.54,-0.47l-0.98,-3.09l-0.57,-6.56l-0.32,-0.32l-3.25,-0.63l-5.23,-2.74l-4.03,-5.76l0.93,-3.09l-0.86,-1.27l-1.37,-0.73l0.46,-0.73l0.44,-0.53l0.88,-0.15l3.8,0.98l0.44,-0.27l-0.2,-0.48l-3.38,-1.67l-5.06,0.54l-1.01,-0.19l-0.72,-0.28l-0.23,-0.74l1.26,-1.47l-0.06,-0.51l-0.75,-0.7l-1.25,-0.37l-2.76,0.2ZM332.31,508.2l1.88,1.81l-0.15,0.48l-1.62,-1.85l-0.11,-0.43Z", "name": "France"}, "BG": {"path": "M662.06,585.15l0.29,-3.94l0.71,-1.75l-0.05,-0.72l-0.86,-0.68l-1.48,-3.54l-0.69,-0.61l-2.8,-1.24l-2.73,-2.84l0.66,-0.27l1.35,-1.8l0.2,-0.83l-1.28,-2.51l0.35,-1.29l-0.28,-1.38l0.24,-0.54l0.99,-0.47l2.26,-0.25l3.25,-3.58l0.5,-1.6l-1.7,-1.41l-1.32,-1.73l-2.83,-1.63l-0.65,-0.92l-1.73,-4.25l-0.05,-1.22l0.63,-2.11l2.3,-1.11l0.53,-2.08l0.71,-0.5l3.99,2.37l-2.14,1.89l-0.0,1.56l1.15,0.79l4.1,-0.65l4.13,0.33l5.62,1.1l3.78,0.39l2.81,-0.5l9.82,1.78l4.63,0.26l2.69,-0.69l1.88,-0.94l1.63,-1.76l3.74,-2.22l3.65,-1.25l7.88,-1.36l4.53,2.38l3.3,0.38l0.99,0.7l1.96,-0.44l2.27,2.66l4.46,1.3l2.5,0.06l-0.28,3.44l-1.08,1.52l-1.9,-0.54l-2.52,0.52l-1.56,2.22l-1.43,1.35l-0.55,2.99l-0.1,4.22l-1.73,0.67l-3.65,3.91l0.11,0.63l2.91,1.84l3.87,5.45l-1.3,-0.19l-1.15,0.47l-1.76,-0.06l-1.68,0.63l-3.01,-2.44l-0.84,-0.32l-3.33,0.55l-1.81,1.11l-3.72,0.47l-0.64,0.45l-0.8,1.79l-2.11,0.49l-0.68,1.13l-1.29,-0.3l-1.48,0.43l-0.64,1.22l1.04,2.44l-0.05,1.85l-2.58,1.05l-1.96,-0.27l-7.03,1.36l-1.54,-1.11l-1.96,-0.82l-1.99,-0.47l-1.13,0.51l-2.12,-1.23l-0.94,-1.63l-0.73,-0.26l-1.48,0.51l-4.43,-0.06l-0.74,1.11l-1.79,0.08l-3.22,1.09l-2.63,-0.19l-2.7,0.22l-1.27,1.01l-2.52,-0.16Z", "name": "Bulgaria"}, "DK": {"path": "M554.98,347.03l-0.27,0.17l-2.03,-0.48l-2.42,-1.16l0.34,-2.19l0.45,-0.72l4.46,2.58l0.04,0.75l-0.57,1.04ZM521.14,336.77l-0.22,-0.59l0.73,-0.83l0.32,0.89l-0.83,0.53ZM520.72,332.89l0.03,1.74l-0.25,0.39l-3.02,1.28l-1.05,0.95l-0.5,1.54l0.9,1.36l1.45,0.59l0.29,1.42l-0.97,0.73l-3.08,0.91l-0.28,0.33l-0.5,6.78l-2.01,0.63l-1.43,-2.33l-0.04,-1.11l-1.16,-4.03l-2.77,-0.74l-2.34,0.21l-1.42,-2.13l0.24,-2.46l-0.86,-1.5l-0.07,-1.09l-0.84,-0.87l-0.75,-0.28l-0.25,-0.91l2.9,-0.04l1.44,-0.44l2.06,-2.53l0.15,-1.11l1.62,-0.2l0.65,0.66l-0.05,3.29l0.25,0.34l1.84,0.62l0.44,-0.26l0.83,-1.98l0.58,-0.6l0.15,-1.49l-0.66,-1.19l4.25,-2.53l1.27,-0.06l3.23,1.02l0.2,0.29l-1.04,2.06l0.58,2.72ZM517.34,347.25l1.62,0.28l1.26,0.71l-1.94,-0.19l-2.4,1.26l-0.36,-0.17l1.82,-1.88ZM504.49,350.08l2.48,1.22l1.72,-0.02l0.86,0.38l0.26,1.85l-0.8,0.33l-1.36,-0.13l-1.59,0.57l-5.33,-2.52l0.22,-2.53l2.27,-0.18l1.27,1.03ZM500.25,304.31l-0.34,0.28l-1.08,-0.37l0.33,-0.36l1.93,-0.37l-0.83,0.82ZM495.95,352.06l-0.81,-1.41l2.94,-3.53l-1.8,4.22l-0.33,0.72ZM468.61,349.15l-0.42,-2.39l-0.69,-1.33l0.85,-0.26l0.28,-0.41l-0.25,-3.27l-0.49,-1.78l-6.52,-3.55l0.92,-7.01l-1.09,-3.15l0.55,-8.59l1.14,-0.12l3.56,1.07l0.64,0.76l1.02,0.47l0.49,-0.15l0.69,-1.1l0.23,-1.47l1.93,-1.94l2.11,-1.0l1.52,1.58l0.43,0.13l0.28,-0.35l0.79,-5.97l-0.27,-0.44l-1.96,-0.62l-1.84,0.54l-1.79,2.66l-1.35,2.98l-2.07,0.26l-1.77,0.83l-2.33,-1.48l0.18,-1.51l1.88,-2.48l2.46,-2.33l2.46,0.02l2.01,-0.79l1.05,-0.09l3.53,0.17l2.07,-0.61l1.73,-1.22l3.52,-4.77l1.89,-1.89l4.04,-0.74l3.41,-2.12l-0.98,1.01l-0.52,1.77l1.23,2.37l-0.16,3.79l-1.14,1.36l-1.29,2.84l-0.65,0.68l-0.18,7.31l1.5,1.58l1.55,0.73l4.81,0.01l0.84,1.17l-0.84,2.52l-2.95,1.65l-0.87,0.03l-1.4,-1.34l-0.5,-0.05l-0.79,0.52l-0.85,0.91l-1.81,6.51l-1.88,-0.35l-1.7,0.66l-0.08,0.69l1.36,1.25l-1.46,0.7l-1.73,1.9l-1.54,1.01l-0.95,1.22l0.98,4.54l-0.31,0.95l-1.8,1.6l-0.79,1.57l0.37,0.57l1.54,-0.02l1.37,0.66l0.38,0.38l-0.27,0.76l0.33,1.37l-1.23,-0.49l-3.7,0.92l-0.99,-0.03l-0.97,-0.68l-3.84,-0.98l-2.88,-0.13ZM494.78,336.56l2.16,5.08l-0.38,0.82l0.26,1.43l-0.26,1.07l-1.97,1.37l-2.27,0.06l-5.9,-2.06l-1.67,-3.44l0.02,-2.6l5.4,-1.72l1.83,0.94l1.1,0.04l1.67,-1.0ZM494.14,332.71l-0.34,-0.12l0.24,-1.95l-0.31,-1.07l1.07,1.5l-0.65,1.64ZM490.96,349.9l0.79,0.15l0.49,0.27l-0.27,0.06l-1.01,-0.48ZM483.63,346.94l2.33,1.33l0.69,1.28l-0.87,0.16l-1.78,-0.57l-0.36,-2.2Z", "name": "Denmark"}, "HR": {"path": "M540.52,517.06l1.22,0.46l4.0,-0.1l0.92,-0.53l1.59,-2.35l0.82,1.3l2.12,1.67l1.03,0.14l1.21,-0.48l2.01,0.79l1.9,0.18l1.48,-0.45l0.26,-0.49l-0.74,-1.79l0.98,-1.18l-0.98,-1.19l4.32,-1.54l0.65,-0.75l0.33,-2.14l-0.13,-1.17l-0.95,-1.16l0.13,-0.69l0.25,-0.33l4.9,-1.78l0.95,-1.14l2.19,-0.05l0.5,-0.65l-0.2,-1.45l0.85,-0.55l3.1,0.8l2.36,1.14l1.59,1.24l0.96,1.48l1.26,1.13l2.81,1.85l1.03,1.44l1.3,0.76l2.64,0.6l1.39,1.47l1.44,0.67l7.73,0.66l2.52,-0.79l1.72,-1.78l2.6,-0.25l-0.75,1.25l1.37,2.81l-0.3,1.16l0.68,0.87l0.9,0.34l-0.43,0.82l0.1,1.43l1.31,1.12l3.14,1.15l0.78,0.85l-2.14,0.07l-0.85,-0.44l-0.57,0.26l-0.1,0.53l-0.62,0.17l-0.29,0.46l0.49,2.66l-0.15,0.57l-0.99,0.12l-0.22,0.72l-0.35,0.03l-1.74,-0.65l-0.59,-1.84l-1.46,-1.06l-2.32,-0.14l-2.74,-0.81l-2.1,0.23l-1.83,-0.36l-1.83,1.07l-0.59,-0.01l-1.56,-1.26l-0.68,-0.17l-2.04,0.71l-2.45,-0.72l-2.59,-0.11l-2.75,-1.72l-0.46,0.02l-1.61,1.24l-3.67,-0.22l-3.04,3.34l-1.49,-0.9l-1.72,-1.94l-1.03,-0.46l-1.26,-0.1l-1.52,0.7l-0.82,5.66l0.14,1.89l1.92,1.38l2.27,2.38l0.73,0.32l1.41,4.88l1.26,1.68l3.93,3.5l1.7,2.26l5.03,4.33l2.43,1.02l0.02,1.54l0.34,0.88l1.53,1.81l2.97,2.53l0.33,0.71l-0.53,0.3l-3.22,-2.75l-2.74,-1.61l-3.2,-3.05l-4.08,-1.17l-2.77,-1.3l-3.78,0.58l-1.68,-0.17l-0.41,-0.57l-0.18,-1.66l-5.98,-4.16l-4.2,-4.32l-0.57,-0.94l1.66,-0.36l2.37,0.27l0.45,-0.22l-0.12,-0.48l-2.73,-1.86l-3.85,-3.6l-1.08,-1.61l0.16,-4.25l-0.73,-2.03l-4.37,-3.88l-2.23,-0.75l-1.46,0.24l-0.65,1.06l-0.42,1.98l-3.52,5.22l-0.94,-0.0l-3.02,-4.37l-1.43,-5.94l0.28,-0.2l0.5,0.51l3.57,0.82l1.03,-0.39l0.69,-0.9ZM587.09,559.57l2.86,1.2l-0.65,-0.13l-2.2,-1.07ZM591.3,561.05l-0.27,-0.82l0.24,-0.07l0.56,0.15l0.73,1.02l-1.27,-0.27ZM599.03,565.39l1.29,0.47l0.05,0.42l-0.83,-0.52l-0.5,-0.37ZM574.06,555.07l2.29,0.14l0.72,0.66l0.72,0.07l-0.88,-0.02l-1.68,-0.33l-1.18,-0.53ZM577.19,558.94l1.74,0.32l1.9,-0.2l1.59,0.28l-1.61,-0.19l-1.63,0.5l-1.35,-0.25l-0.64,-0.46ZM578.24,553.5l-2.04,0.04l-2.36,-0.62l0.18,-0.53l1.76,0.07l3.32,0.71l-0.86,0.32ZM552.42,532.01l1.48,1.22l2.64,2.63l-0.28,0.25l-3.01,-2.61l-0.83,-1.49ZM551.01,528.89l-1.01,-0.23l0.11,-0.55l0.35,0.02l0.55,0.76ZM547.01,523.61l0.87,-0.6l0.52,-0.96l2.47,3.21l-0.92,0.2l-1.06,-1.14l-1.25,-0.15l-0.64,-0.56ZM545.04,522.83l0.07,0.67l-0.21,-0.6l0.14,-0.08ZM545.55,524.84l0.91,0.95l-0.18,1.58l0.44,3.22l-1.56,-3.9l0.39,-1.86Z", "name": "Croatia"}, "DE": {"path": "M430.54,420.84l0.92,-0.06l2.69,-2.09l-0.09,-0.78l-0.62,-0.26l-0.01,-0.35l1.2,-2.32l0.46,-1.8l-0.14,-0.96l-1.33,-1.91l-0.18,-0.88l-1.75,-2.06l0.0,-0.39l2.55,-1.2l2.73,0.97l0.9,-0.57l1.27,0.05l3.04,-1.03l1.09,-1.59l-1.19,-1.26l0.08,-0.38l3.33,-2.18l0.69,-1.23l0.26,-2.25l-0.57,-1.0l-0.78,-0.57l-1.72,0.03l-0.99,-0.34l-0.56,-0.77l0.32,-0.81l-0.14,-0.63l0.26,-0.15l3.48,0.01l0.58,-0.47l1.2,-4.4l0.87,-1.53l0.25,-5.88l-0.69,-1.09l-1.23,-0.85l0.66,-2.97l1.24,-1.67l0.91,-0.42l4.57,-0.29l4.95,0.12l1.86,2.37l-0.66,1.17l0.16,0.55l1.25,0.65l0.93,-0.22l1.1,-2.84l1.71,1.34l0.03,2.08l0.36,0.39l0.43,-0.32l0.59,-3.01l-0.42,-2.2l0.28,-1.9l0.99,-1.44l3.67,0.69l4.06,-0.37l1.41,0.7l3.63,3.98l1.33,0.69l1.5,0.2l0.44,-0.29l-0.24,-0.47l-1.99,-0.81l-4.4,-4.83l-1.43,-0.63l-1.94,-0.18l-1.77,-1.03l-0.25,-5.57l-0.75,-0.72l-1.14,-0.35l-1.62,0.32l-0.16,-0.68l0.18,-0.5l2.27,-0.51l1.72,-0.78l0.31,-1.67l-3.74,-4.94l-0.12,-1.54l2.65,0.11l3.74,0.96l1.1,0.72l1.31,0.02l3.51,-0.89l1.75,0.87l1.88,0.47l1.57,1.79l0.07,1.44l-2.01,1.88l-0.12,0.46l0.4,0.25l3.46,-0.28l0.85,1.3l0.43,0.15l1.87,-0.51l4.9,2.22l3.72,-1.12l0.53,1.41l-0.65,1.61l-2.59,1.91l-0.12,0.5l0.59,1.22l1.1,0.48l2.61,-0.23l4.21,1.16l0.93,-0.43l3.21,-2.73l1.19,-0.54l4.49,-0.58l0.73,-1.01l1.74,-1.1l3.62,-3.29l5.8,1.01l1.62,2.36l4.08,2.65l3.73,-0.15l1.18,2.22l0.71,3.25l2.21,1.63l3.05,0.68l0.48,2.97l1.56,5.02l-0.04,1.42l-0.54,1.61l-0.94,1.33l-1.28,0.77l-0.85,1.0l-0.23,1.2l1.81,2.09l3.53,2.51l1.27,1.91l-0.81,3.15l0.34,0.97l1.43,1.19l0.26,2.35l0.57,0.56l-0.95,2.89l-1.01,1.59l0.34,1.21l1.36,1.97l-0.22,1.81l0.22,0.65l2.57,1.24l1.33,3.49l-1.29,4.18l-1.87,3.2l-1.46,-0.48l0.11,-0.81l-1.26,-1.82l-3.37,-0.82l-0.7,0.29l-0.4,0.92l1.31,1.41l-5.96,2.33l-2.6,0.78l-2.07,0.25l-1.5,1.77l-0.94,-0.31l-2.04,0.96l-0.67,1.03l-2.06,0.33l-0.98,1.46l-2.31,-0.41l-3.18,0.72l-1.4,0.85l-2.01,2.57l-1.77,-1.93l-0.72,-0.08l-0.44,0.32l-0.04,1.02l1.14,1.65l0.52,1.47l1.03,1.06l2.35,1.46l0.63,0.91l-1.61,2.81l1.52,1.82l2.46,3.98l1.87,1.57l1.49,0.06l2.95,2.95l2.61,1.64l0.92,1.52l0.79,0.46l1.3,-0.06l3.29,3.0l-0.16,2.44l-0.83,1.09l-0.5,0.23l-2.76,-0.87l-0.49,0.51l-0.66,2.87l-0.38,0.46l-6.37,2.67l-1.17,0.77l-0.83,1.02l-0.01,1.03l2.54,3.11l0.01,1.18l-0.74,1.46l0.24,0.51l1.68,0.35l0.18,0.48l-0.4,2.61l-2.26,-1.03l-0.43,-1.57l-1.34,-0.68l-2.77,0.52l-1.62,-0.86l-2.11,-0.53l-0.57,0.25l-0.13,1.46l-6.22,0.61l-4.4,1.66l-1.31,1.07l-1.45,0.0l-1.91,0.52l-0.6,-0.06l-1.66,-2.12l-5.79,-0.52l-0.56,0.34l-0.83,3.01l-0.69,0.81l-1.08,0.46l0.2,-0.9l-0.26,-0.48l-1.5,-0.34l-0.22,-1.01l-1.29,-1.05l-3.11,-1.25l-0.84,0.49l-7.44,-4.01l-0.69,0.18l-0.13,0.52l0.63,1.16l-3.25,0.23l-0.69,-0.77l-0.81,-0.23l-0.59,0.27l-1.41,-1.07l-0.93,-0.24l-2.0,0.82l-0.58,0.89l0.1,0.75l0.97,0.47l-0.22,0.19l-3.28,-0.22l-1.51,0.54l-2.18,0.2l-3.02,-0.1l-1.57,-0.55l-0.38,-0.91l0.11,-1.58l0.74,-2.31l0.21,-1.68l-0.31,-1.12l0.4,-1.44l1.21,-2.16l1.76,-6.1l4.05,-4.32l0.04,-1.82l-0.29,-0.36l-1.85,-0.66l-5.27,-0.89l-1.02,-0.38l-1.24,-1.21l-3.4,0.67l-2.1,-0.1l-0.44,-1.02l-1.73,-0.51l-1.82,0.86l-2.04,-2.62l-0.66,-1.44l-1.19,-0.93l-1.22,-0.27l0.41,-1.96l1.46,-1.99l0.04,-1.7l-3.27,-1.56l-1.51,-1.71l-0.36,-1.88l0.82,-2.22l2.46,-1.42l0.19,-0.42l-0.31,-2.35l-0.75,-0.87l-1.5,-0.57l0.7,-0.84l-0.06,-0.62l-3.08,-2.45l0.64,-2.95l-0.69,-0.92l-1.76,-0.94ZM538.5,364.74l4.43,2.81l-0.02,0.85l-1.71,0.2l-1.36,-0.24l-0.07,-2.1l-1.21,-1.13l-0.06,-0.38ZM536.24,359.59l0.19,1.05l-1.4,-0.89l-1.53,0.01l-1.16,1.66l-0.34,0.03l-2.16,-1.36l-0.36,-1.05l0.29,-2.61l0.72,-0.83l0.1,-0.88l1.09,-0.91l0.75,-0.03l0.89,1.43l2.04,0.8l0.23,0.34l-1.13,1.59l0.47,0.93l1.31,0.71ZM503.18,358.26l-1.43,0.03l-1.18,-0.81l0.48,-0.55l1.69,0.5l0.45,0.83ZM463.5,350.42l0.29,-1.31l0.49,0.91l0.99,0.04l-1.77,0.36ZM466.66,353.0l-0.22,0.19l-1.35,-0.23l0.93,-0.31l0.63,0.36Z", "name": "Germany"}, "BA": {"path": "M608.48,527.74l3.07,-0.74l1.2,0.42l-0.79,2.63l-1.93,2.88l-0.46,3.03l0.51,1.08l2.62,1.37l3.17,2.88l-0.23,0.39l-1.2,0.13l-2.07,-0.23l-0.97,0.56l0.15,0.91l3.04,3.85l0.08,0.83l-0.38,0.94l-1.06,-0.49l-0.81,0.03l-0.9,0.24l-0.68,0.71l-1.4,0.25l-1.35,-0.37l-0.66,0.34l-0.25,0.99l1.25,2.21l-0.08,0.64l-0.78,-0.82l-1.48,-0.05l-2.53,2.08l-0.73,1.8l0.01,1.34l-1.64,0.26l-0.76,0.89l0.27,3.36l1.07,2.1l-1.07,0.99l-1.63,-0.59l-2.39,-1.46l-3.77,-2.5l-0.73,-1.04l-2.18,-0.15l0.47,-0.54l-0.1,-0.84l-4.84,-4.93l-0.31,-2.37l-0.52,-0.52l-2.14,-0.74l-4.93,-4.25l-1.71,-2.26l-3.91,-3.48l-1.1,-1.42l-1.51,-5.08l-0.87,-0.45l-2.23,-2.34l-1.83,-1.33l0.67,-6.52l0.28,-0.24l0.73,-0.18l1.63,0.37l1.74,1.95l1.96,1.12l1.37,-0.9l2.12,-2.55l3.36,0.32l1.8,-1.25l2.69,1.66l1.16,0.26l1.55,-0.13l2.52,0.74l2.08,-0.71l2.1,1.42l1.04,-0.04l1.55,-1.0l1.73,0.34l2.04,-0.24l2.68,0.79l2.34,0.15l0.97,0.73l0.49,1.68l0.79,0.76l2.6,0.32Z", "name": "Bosnia and Herz."}, "HU": {"path": "M574.1,479.74l1.55,-0.97l2.58,1.22l3.97,-0.49l0.32,-0.51l-0.38,-2.54l0.54,-0.63l0.13,-0.94l0.82,-0.63l1.72,0.33l4.27,3.09l1.92,0.75l5.23,0.12l7.85,-0.41l1.05,-1.32l-0.32,-1.6l0.46,-0.86l1.48,-0.78l4.68,-0.38l2.8,-0.66l1.42,-1.79l0.61,-0.13l3.87,1.55l5.93,-2.86l2.25,-4.04l1.81,-0.35l2.94,0.07l2.8,0.69l5.06,-0.81l1.4,0.91l2.13,2.58l0.79,0.23l6.37,-1.27l1.33,2.56l2.34,0.93l0.97,1.3l1.37,0.54l1.12,-0.08l0.79,0.7l0.31,1.75l-3.23,2.7l-1.51,-0.12l-2.92,0.86l-2.41,2.67l-1.56,1.19l-0.16,1.98l-1.62,1.48l-1.18,2.9l-1.73,1.75l-0.13,1.34l-2.12,2.95l-0.24,0.62l0.18,0.84l-2.28,1.58l-0.95,2.12l0.13,1.13l-0.95,0.47l-0.52,1.42l-1.26,0.86l-2.62,-0.28l-1.17,0.24l-0.9,1.34l-0.99,0.54l-1.52,-0.54l-3.55,0.89l-1.03,-0.47l-3.08,-0.33l-1.29,0.26l-3.03,-0.39l-1.28,0.24l-1.63,1.6l-1.88,1.0l-1.5,0.24l-1.07,-0.47l-1.04,0.98l-1.05,0.42l-2.71,0.54l-0.7,-0.13l-2.05,1.92l-2.19,0.68l-7.36,-0.61l-2.08,-1.2l-0.59,-0.87l-1.18,-0.5l-1.58,-0.16l-1.15,-0.67l-0.95,-1.37l-4.05,-2.96l-0.99,-1.51l-1.75,-1.36l-3.01,-1.38l-1.73,-2.2l-0.02,-0.77l-0.66,-0.74l-0.73,-2.3l-1.88,-0.24l2.28,-1.61l1.33,0.05l0.62,-0.39l0.55,-2.05l-0.16,-0.54l-0.64,-0.29l-0.2,-0.91l0.58,-1.02l-0.33,-1.71l2.32,-0.86l0.87,-1.68l-0.74,-1.83l-2.35,-0.68Z", "name": "Hungary"}, "JE": {"path": "M322.87,452.86l-0.06,0.38l-0.56,-0.27l-1.49,0.09l0.08,-0.64l2.02,0.44Z", "name": "Jersey"}, "FI": {"path": "M642.77,218.25l1.12,-0.27l0.17,-0.8l-3.01,-6.76l-1.66,-1.51l1.26,-4.66l-0.13,-1.29l-0.44,-1.65l-2.0,-1.41l-0.81,-4.2l0.5,-2.29l0.65,-0.99l3.52,-3.35l0.3,-1.68l2.07,-0.11l0.31,-0.63l-1.08,-1.53l-0.27,-1.43l3.0,-0.62l1.43,0.56l3.05,-0.72l2.8,-1.45l0.17,-1.13l-0.91,-1.85l1.24,0.03l-0.36,-1.06l1.03,0.05l1.76,-1.91l0.16,-1.42l2.91,-0.77l3.47,-2.96l3.21,-1.64l3.23,-2.9l1.63,-0.39l0.7,-1.93l2.7,-2.58l0.99,-0.5l1.28,-2.37l3.5,-2.87l2.18,-3.57l1.19,-1.25l0.4,-1.27l1.07,-0.09l1.37,-1.04l2.49,-0.66l2.47,0.18l1.24,0.48l1.0,-0.15l0.34,-0.43l-0.1,-1.23l-0.59,-0.75l1.83,-1.31l-0.47,-2.07l-1.07,-0.98l1.19,-7.23l-1.66,-1.93l-5.46,-2.54l-2.15,-0.22l-1.08,-1.64l0.59,-2.18l-0.41,-0.44l-0.76,0.14l-0.76,0.77l-1.54,0.82l-2.1,-0.66l-0.96,0.1l-1.35,-3.86l-1.94,-3.6l-2.51,-1.5l-0.6,-3.55l0.1,-1.33l0.2,-0.66l0.88,-0.57l1.4,-1.77l0.39,-2.96l1.27,-2.55l-0.7,-1.67l-3.55,-4.29l-0.46,-1.32l-0.2,-2.19l1.99,-2.12l-0.54,-2.44l-1.32,-0.69l-2.46,-0.23l0.14,-1.03l1.05,-2.32l-0.56,-2.01l0.01,-3.87l1.64,-1.24l0.06,-1.15l-2.2,-1.44l-1.54,-1.59l-0.47,-0.92l-1.92,-0.34l-1.17,-2.76l-3.36,-2.61l-1.06,-0.59l-5.7,-1.72l-2.28,-0.33l-2.6,-0.97l-7.13,-3.97l-0.62,-0.81l-3.28,-2.49l-3.42,-1.76l-0.17,-1.37l-0.37,-0.48l-3.13,-1.15l2.86,-0.25l2.65,0.65l0.68,-0.47l0.33,-0.96l-0.97,-2.39l0.11,-0.4l2.45,-1.26l4.54,0.04l9.08,9.74l1.07,1.8l0.37,1.29l0.39,0.29l8.8,1.06l1.17,0.77l2.44,-0.15l5.27,-1.54l2.05,-2.15l1.69,0.15l4.54,2.05l4.94,1.36l1.47,1.13l2.14,0.27l2.15,-1.3l1.14,-2.92l0.96,-1.23l1.35,-0.9l3.04,-0.64l2.41,-2.51l0.36,-2.25l-0.26,-3.73l0.23,-1.11l1.13,-2.04l1.5,-5.3l0.64,-1.46l0.73,-0.83l3.2,-2.19l2.92,-3.19l2.69,-0.38l5.31,0.64l3.11,-1.34l3.28,-1.98l2.0,-0.52l1.71,0.07l2.06,2.1l4.99,3.64l5.33,2.23l4.51,1.41l2.41,4.42l-1.13,1.66l-2.89,2.52l-2.42,2.65l-0.24,1.85l1.38,1.94l-6.81,2.58l-0.22,0.62l0.84,0.92l3.36,0.16l0.61,0.39l0.04,0.39l-0.3,0.87l-3.67,5.48l-0.16,1.52l2.92,7.03l9.06,3.17l2.4,3.03l4.03,4.07l2.13,1.71l-0.59,2.59l-4.94,5.07l-4.47,5.24l-2.13,2.89l-0.36,2.03l0.45,1.23l2.7,3.48l2.31,3.68l2.8,5.79l3.13,4.14l2.47,6.75l0.12,1.92l-2.63,0.33l-2.15,0.65l-0.35,0.42l0.09,0.48l1.16,1.03l-1.13,2.01l-0.17,2.9l-1.24,1.49l-0.21,0.7l0.62,0.87l2.25,0.39l0.09,0.91l-0.16,0.59l-2.59,1.65l-0.27,1.72l1.38,2.88l1.19,1.01l3.95,0.91l0.37,0.52l0.12,1.59l-1.73,1.8l-0.07,1.16l1.84,3.66l3.8,1.8l1.2,0.91l0.47,1.84l-0.02,1.31l-0.27,1.1l-3.85,4.54l-2.72,1.17l-0.31,0.89l5.84,5.02l7.58,4.38l2.72,1.92l2.09,2.95l2.32,2.38l0.27,1.15l-3.32,6.63l-1.3,1.77l-3.37,3.29l-5.05,4.15l-11.85,12.11l-2.68,2.11l-3.26,3.24l-6.92,4.7l-1.08,1.18l-3.43,2.16l-8.21,7.34l-1.68,0.75l-1.87,0.16l-0.84,0.47l-3.55,-1.54l-1.89,0.43l-1.61,1.04l-3.07,0.33l-2.14,0.65l0.29,-1.94l0.65,-0.96l0.13,-0.85l-0.45,-0.43l-0.5,0.07l-1.28,1.66l-0.55,1.73l-0.89,0.73l-2.1,0.32l-2.16,-1.32l-1.3,-0.04l-0.33,0.63l1.05,2.05l-1.03,-0.03l-2.52,1.57l-0.89,-1.14l-0.5,-0.16l-2.71,1.45l-2.64,0.33l-1.46,1.06l-7.46,1.6l-1.27,1.45l-0.76,0.39l-1.42,-0.39l-8.4,1.55l-3.69,-0.35l-3.8,2.83l-1.98,0.53l2.58,-2.49l0.22,-1.21l-0.2,-0.4l-1.63,-0.55l-1.02,-0.91l-1.36,-2.4l-1.04,0.08l-0.67,2.35l-0.77,0.71l-1.25,0.53l-2.16,-0.02l-0.21,-0.77l0.41,-1.08l-0.13,-0.82l1.1,-0.12l0.67,-0.88l-0.37,-0.93l-0.65,-0.1l0.93,-1.94l-0.28,-0.49l-4.43,-0.42l-4.34,-2.0l-0.96,-0.12l-0.58,-1.58l-0.46,-0.25l-1.2,0.29l-1.32,0.91l-2.1,-1.16l-0.93,-7.31l0.22,-1.74l1.36,-2.29l0.49,-2.36l0.11,-2.75l-0.24,-1.14l0.43,0.0l0.38,-0.53l-0.76,-1.2ZM687.44,144.29l-1.79,0.65l-1.22,-0.34l-0.02,-0.9l0.76,-0.51l1.66,-0.25l1.7,0.47l-1.08,0.89ZM651.46,242.91l1.58,0.43l0.67,-0.11l0.37,0.48l-1.17,0.78l-0.1,0.84l0.63,0.93l-0.71,-0.0l-0.85,-1.35l-1.17,-0.85l0.4,-0.98l0.37,-0.17ZM646.99,242.06l0.23,-0.82l0.48,0.41l-0.15,0.7l0.64,0.51l-1.2,-0.79ZM646.46,246.89l-1.07,0.55l-0.05,-0.02l0.08,-0.67l0.56,-0.37l0.66,-0.03l-0.18,0.54ZM643.72,247.48l-0.79,0.13l-0.32,-0.25l1.18,-0.39l-0.07,0.51ZM641.16,239.43l-0.07,0.33l-1.37,0.07l-0.55,-0.69l-0.31,-1.48l2.3,1.77ZM638.04,182.53l0.17,0.59l0.43,0.26l0.96,-0.17l0.89,-0.6l0.27,0.45l-0.56,-0.04l-1.2,1.04l-1.18,-0.84l-0.53,-1.0l0.8,-0.0l-0.05,0.32Z", "name": "Finland"}, "BY": {"path": "M670.47,410.28l-0.13,-0.27l0.06,-1.46l1.09,-1.97l-0.23,-1.17l0.56,-1.59l0.0,-1.53l-0.91,-1.32l-1.93,-1.22l-3.4,-1.52l-0.13,-0.47l3.0,-3.66l5.77,-2.64l0.89,-0.8l0.33,-2.39l-0.79,-5.49l-3.54,-9.02l-1.36,-5.56l2.79,0.28l1.97,-0.44l4.12,-0.26l1.99,1.03l4.06,-1.59l1.9,0.09l0.64,-0.62l0.52,-2.25l0.36,-0.3l2.44,0.18l1.03,-0.51l0.87,-1.04l1.25,-0.61l1.3,-0.06l0.98,-0.62l0.5,0.91l-0.32,0.99l0.36,0.45l1.01,0.4l2.51,-0.34l0.49,-0.81l-0.35,-1.77l-0.8,-0.73l-1.79,-0.35l0.92,-2.21l1.46,-2.06l-0.02,-2.89l0.75,-2.06l0.97,-1.47l2.97,-0.75l1.28,-0.84l1.11,-2.33l0.33,-0.17l4.09,0.17l1.26,-1.87l1.39,-0.94l0.08,-0.49l-0.47,-0.58l-3.74,-0.67l1.4,-3.61l0.38,-2.21l2.87,-0.65l1.83,-1.99l1.15,-0.29l3.4,0.5l3.99,-0.04l0.92,-2.18l3.35,-3.06l1.75,-1.04l1.25,-0.18l1.76,1.58l0.64,0.16l1.24,-0.67l2.07,-0.07l0.81,0.47l1.37,1.98l0.92,0.38l3.4,-1.49l3.19,1.0l1.29,0.81l-0.51,2.56l1.82,1.98l0.47,0.03l2.62,-1.56l1.96,-0.52l1.42,-0.92l3.92,-0.0l2.83,1.04l2.24,2.21l1.47,0.96l2.03,0.41l0.22,0.33l-0.08,3.01l-1.07,1.29l-0.11,1.14l1.99,2.8l0.22,1.35l-1.98,2.56l-0.54,2.11l0.11,0.59l4.8,3.05l-1.06,2.24l0.22,0.44l1.4,0.68l1.5,2.95l1.42,1.79l5.69,3.04l-0.04,1.47l-0.94,2.24l0.22,0.54l1.06,0.37l5.02,0.19l3.1,1.5l-0.32,1.27l0.64,1.39l3.16,2.26l0.01,1.08l-3.01,1.21l-0.7,1.17l-3.65,2.08l-3.72,-0.26l-1.43,-1.43l-1.18,-0.32l-3.43,0.09l-0.75,0.46l-1.71,3.0l0.04,0.52l4.03,4.54l-0.61,1.04l0.17,1.42l0.95,1.23l-0.33,4.38l1.6,1.88l0.82,1.53l-5.16,-0.05l-1.77,0.96l-1.99,-0.42l-1.46,0.63l-3.05,2.73l-1.29,1.6l-1.83,3.95l1.26,4.37l-0.98,1.32l-0.92,-0.12l-1.36,-0.8l-0.44,-1.39l-2.23,-1.49l-8.28,0.78l-2.69,0.89l-2.12,-3.38l-0.52,-0.66l-0.8,-0.34l-0.77,0.12l-1.1,0.93l-1.76,0.6l-0.87,0.66l-0.7,1.15l-0.62,-0.26l-0.83,-1.64l-5.66,-1.19l-2.43,0.84l-2.32,-0.52l-1.82,1.98l0.15,-1.24l-0.24,-0.41l-1.34,-0.56l-4.0,0.09l-2.18,-2.8l-5.0,-0.34l-4.26,-0.76l-0.91,-0.58l-8.26,-1.44l-9.81,-0.12l-2.74,0.57l-6.86,0.57l-0.74,0.64l-0.63,1.19l-2.0,1.92l-1.94,1.27l-1.28,-0.61l-2.2,-0.32l-1.06,0.29l-0.7,0.7Z", "name": "Belarus"}, "GR": {"path": "M728.08,670.66l-0.79,0.26l-0.27,-0.39l0.51,-1.56l-0.52,-1.53l2.47,-2.52l3.7,-1.26l-1.12,2.79l-1.0,1.2l0.08,0.93l-1.45,0.33l-1.59,1.75ZM727.96,660.69l0.31,-0.19l-0.05,0.46l-0.26,-0.27ZM717.45,657.54l2.45,-1.2l0.79,0.06l-1.92,1.05l-1.31,0.09ZM718.65,675.52l0.9,2.17l-0.84,0.63l0.1,-1.01l-0.53,-1.15l0.37,-0.64ZM711.88,642.87l1.58,-0.77l0.98,-0.02l2.64,0.58l0.06,0.28l-2.41,0.93l-1.62,-0.93l-1.23,-0.07ZM716.41,654.11l0.54,0.48l-0.03,0.04l-0.63,0.1l0.12,-0.63ZM708.43,617.81l-0.05,1.13l1.83,1.52l0.65,1.19l-0.81,-0.3l-0.49,0.49l0.43,0.99l-0.37,0.12l-3.89,-0.79l-0.36,-0.44l1.99,-1.7l-0.34,-0.63l-1.6,0.18l-1.24,1.38l-1.92,-0.59l-0.59,-0.58l0.65,-1.02l1.36,0.04l0.99,-0.34l1.05,-0.45l0.25,-0.65l1.92,-0.12l0.56,0.56ZM623.87,612.82l0.81,0.1l0.84,-0.47l0.47,-0.56l0.3,-1.23l0.8,-0.02l0.42,-0.51l-0.08,-0.84l-0.89,-1.74l1.18,-1.04l2.5,-0.46l0.86,-0.63l2.04,-5.25l1.85,-0.75l0.87,-1.26l0.46,-1.74l-1.01,-1.95l0.07,-0.75l4.52,-0.26l1.17,-0.64l2.45,0.55l2.71,-1.28l2.13,-2.58l0.71,-0.31l2.57,-0.43l4.21,0.63l3.19,-0.98l0.81,-2.47l4.88,0.17l1.31,-1.02l5.3,-0.03l3.31,-1.11l1.87,-0.11l0.72,-1.05l4.19,0.07l1.53,-0.5l1.02,1.67l2.5,1.47l1.25,-0.53l1.82,0.43l3.69,1.98l7.19,-1.39l1.97,0.27l2.96,-1.23l0.46,-1.18l-0.61,-2.89l-0.57,-0.89l0.35,-0.54l1.04,-0.24l2.68,0.72l2.17,1.52l0.5,2.84l-0.19,0.48l-0.81,0.19l-2.79,1.69l-0.26,1.91l0.38,2.25l-3.16,3.73l-0.56,0.18l-0.34,-0.5l-2.25,-1.26l-4.82,-0.7l-2.28,-0.88l-1.1,0.12l-2.16,-0.96l-1.44,0.48l-2.75,1.7l-1.32,-0.16l-1.58,-1.02l-1.46,-0.22l-1.39,0.65l-1.98,1.99l-1.88,0.91l-1.8,-0.37l-2.49,0.01l-0.39,0.31l-0.22,1.44l1.67,1.98l-0.49,1.12l0.47,1.01l0.99,0.39l-1.39,-0.11l-1.3,0.61l-0.33,1.0l1.52,1.65l1.88,1.38l0.37,1.18l-0.35,0.48l-1.18,-0.71l-2.27,-3.16l-3.48,-0.8l-0.39,0.14l-0.6,1.06l0.63,1.71l0.62,0.86l2.45,1.61l-2.93,-0.93l-0.8,-1.4l-0.43,-2.26l-5.5,-2.86l-0.45,-1.08l0.86,-1.57l-0.43,-0.54l-1.68,0.27l-2.63,1.64l0.16,2.07l-0.97,3.91l0.31,1.49l3.35,3.9l1.1,2.68l0.87,1.13l1.73,1.2l1.71,2.07l0.7,1.04l0.44,1.49l-1.17,0.88l-0.56,0.03l0.43,-1.37l-0.31,-1.06l-2.29,-1.17l-1.38,0.42l-1.12,0.76l-0.14,0.5l1.36,2.35l0.34,1.2l0.45,0.29l-2.36,1.26l-2.76,0.18l-0.61,0.48l0.16,0.67l1.6,0.3l1.19,0.76l3.27,0.91l1.74,1.2l1.38,0.09l1.7,2.15l2.57,0.54l1.7,2.19l2.02,0.42l1.63,0.73l0.65,1.86l0.5,5.06l-0.07,1.48l-0.27,0.28l-0.29,0.01l-1.21,-1.49l-4.01,-3.64l-1.32,-0.49l-1.28,0.69l-3.11,0.54l-1.92,0.86l-0.41,0.62l0.17,0.49l1.31,1.11l0.04,1.25l0.68,1.51l1.09,0.59l1.64,0.17l1.16,1.61l-3.98,1.51l-0.47,-0.26l-0.24,-1.31l-2.13,-1.2l-1.23,-0.26l-0.96,-0.77l-0.53,0.03l-0.67,0.67l0.43,2.7l1.21,1.72l2.8,6.72l0.16,1.11l-0.37,2.26l1.29,2.3l-1.48,-1.02l-1.97,-2.38l-0.69,-1.5l-1.16,-0.35l-1.89,0.44l-1.62,3.29l-0.04,1.39l-0.21,-0.11l-0.53,-0.44l-0.06,-2.98l-1.96,-2.81l-0.93,-0.41l-1.11,-1.88l-0.41,-0.16l-1.04,0.23l-0.97,0.71l-0.56,3.35l-1.68,-1.57l-2.02,-3.26l-0.05,-1.6l1.53,-1.91l-0.24,-1.37l-1.56,-2.52l-2.1,-1.55l-1.1,-0.44l-0.63,-1.66l-2.03,-1.46l2.41,-2.02l1.21,-2.49l1.74,0.55l1.49,-0.17l2.34,-2.4l1.5,0.09l3.86,2.05l4.28,1.21l2.03,1.0l1.29,1.08l1.71,0.38l0.46,-0.42l-0.23,-1.23l2.57,-0.15l0.74,-0.53l0.42,-1.05l-0.47,-0.67l-1.03,-0.49l-1.47,-0.29l-0.73,0.18l-1.18,-0.46l-5.55,-3.19l-0.57,0.13l-0.44,0.74l-0.71,0.36l-1.11,0.06l-3.71,-0.92l-2.15,0.71l-4.25,0.68l-1.88,-2.53l-0.6,0.34l-0.26,1.46l-1.28,0.35l-0.68,-0.45l-1.66,-4.25l-1.61,-1.93l-1.24,-0.53l-0.08,-0.77l0.07,-0.5l1.17,-0.16l2.36,0.85l0.88,-0.23l0.71,-0.78l-0.49,-1.83l-2.98,-0.34l-1.94,0.42l-0.66,-0.31l-3.3,-3.44l-2.27,-1.18l-1.43,-3.35l-1.02,-1.26ZM675.16,600.88l1.34,-0.04l2.3,1.22l1.04,1.37l-1.41,-1.3l-3.27,-1.24ZM707.89,661.28l-0.16,0.18l-0.36,-0.27l0.41,0.1l0.11,-0.02ZM708.79,660.68l0.03,-0.08l0.05,0.06l-0.08,0.03ZM703.69,645.69l0.95,-0.85l2.01,-0.19l-0.72,0.46l-2.24,0.58ZM672.76,675.97l0.47,1.17l1.83,0.46l1.71,-0.13l0.86,-0.89l0.55,-0.01l0.13,0.28l-0.96,0.59l0.02,0.55l1.05,0.63l0.84,-0.04l0.27,0.97l0.84,0.59l1.91,-0.04l3.7,-0.9l3.66,0.22l1.49,0.98l2.58,0.12l2.39,0.5l3.4,-0.62l-0.05,2.83l0.84,0.58l0.89,-0.12l0.88,-0.75l1.68,-0.51l1.84,0.0l1.35,-1.09l-0.21,1.46l-0.45,1.56l-0.8,0.3l-4.51,-0.1l-13.88,1.39l-0.4,-0.13l-0.14,-1.43l-0.43,-0.64l-3.49,-1.22l-7.93,-1.34l-2.54,0.18l-1.23,-0.27l-0.31,-0.42l-0.17,-1.7l0.27,-1.65l0.87,0.49l0.43,-0.08l0.58,-0.56l0.16,-1.18ZM702.17,634.63l0.83,-0.47l0.56,-1.18l-0.51,-1.11l-1.37,-1.35l-0.04,-0.53l1.75,-0.34l1.57,0.89l0.07,3.17l-0.61,0.53l-0.14,0.76l-0.95,0.65l-1.15,-1.03ZM698.48,599.9l-0.88,0.24l-0.94,-0.74l0.76,-0.25l1.05,0.74ZM696.85,654.58l-0.82,0.4l-0.91,-1.59l1.84,-1.64l0.35,0.34l-0.04,1.56l-0.43,0.92ZM695.75,663.45l0.09,0.3l-0.33,0.43l0.19,-0.35l0.05,-0.37ZM695.08,647.43l-0.75,0.06l0.03,-0.54l1.08,0.27l-0.36,0.21ZM690.86,607.38l1.89,-0.07l0.57,0.64l0.49,0.09l1.51,-1.04l-0.9,1.57l-0.18,1.09l-0.59,-0.12l-0.12,-0.89l-0.43,-0.38l-0.69,0.27l-0.36,0.77l-1.05,-0.22l-0.14,-1.72ZM694.65,659.11l-0.68,-0.65l-0.17,-0.27l0.96,0.71l-0.11,0.21ZM693.06,653.23l-0.77,0.86l-0.66,-0.29l0.4,-0.81l0.94,-0.5l0.09,0.74ZM690.94,644.63l1.66,0.25l0.15,0.17l-0.25,0.51l-0.46,-0.08l-1.1,-0.84ZM689.21,642.46l-0.12,0.31l-1.78,-1.57l-1.08,-1.15l-0.1,-0.51l0.59,-0.25l0.74,1.01l1.24,0.26l0.52,1.9ZM686.25,596.85l-1.26,0.42l-1.41,-0.87l0.01,-0.29l1.17,-1.42l0.98,0.08l0.69,0.96l-0.17,1.13ZM685.69,654.47l0.32,0.59l-0.13,0.1l-0.14,-0.27l-0.05,-0.42ZM682.97,623.8l0.52,0.29l0.25,0.92l-0.86,-0.54l0.1,-0.68ZM684.19,625.48l0.31,0.27l-0.27,0.07l-0.04,-0.34ZM661.67,625.04l3.09,-1.8l1.96,-0.47l1.2,1.04l0.73,1.64l0.92,0.78l4.78,2.0l3.0,0.27l1.17,1.85l-0.19,1.13l1.22,3.9l1.43,1.15l2.67,0.25l-0.01,1.43l-0.63,0.53l-1.01,-0.67l-0.75,-0.06l-1.88,-1.44l-0.34,-1.37l-2.27,-3.04l-3.76,-0.18l-1.21,-0.55l-0.6,-1.8l-4.92,-3.91l-3.14,-1.2l-1.46,0.5ZM681.22,658.91l0.47,0.25l-0.55,0.09l0.08,-0.34ZM682.34,659.06l0.37,-0.41l0.36,-0.09l0.0,0.38l-0.73,0.12ZM682.94,652.14l-0.52,-0.06l0.36,-0.53l0.24,0.11l-0.07,0.48ZM681.96,648.45l-0.28,-0.62l0.24,-0.28l0.32,0.46l-0.27,0.44ZM680.69,645.1l-0.29,0.25l0.39,-1.2l0.31,-0.03l-0.41,0.98ZM672.52,621.17l-0.6,-0.11l-0.2,-0.37l0.8,0.47ZM668.93,639.82l0.26,-0.51l0.33,0.09l-0.09,0.46l-0.5,-0.04ZM661.94,664.62l1.47,1.53l-0.51,0.98l-0.83,-0.28l-0.27,-0.48l0.14,-1.75ZM633.7,642.06l0.48,0.52l-1.17,0.88l-1.26,-1.0l-0.97,-1.4l0.5,-0.6l0.61,0.8l1.24,0.33l0.56,0.47ZM627.1,635.32l0.7,-1.67l0.81,0.42l0.52,-0.22l0.62,-1.26l0.25,1.95l1.11,0.64l1.1,1.42l-0.07,0.54l-1.85,-0.68l-0.97,0.24l-0.29,-1.09l-0.71,-0.88l-0.52,0.0l-0.69,0.6ZM630.95,631.66l0.08,0.09l-0.0,0.18l-0.08,-0.27ZM629.87,628.81l0.45,-1.93l0.83,-0.95l0.06,2.57l-0.21,0.26l-1.14,0.06ZM620.81,615.4l-0.15,-0.1l-1.04,-1.97l-2.08,-2.4l2.14,-0.65l0.9,0.56l-1.09,1.26l0.72,1.12l0.59,2.18Z", "name": "Greece"}, "RU": {"path": "M726.11,290.03l1.44,0.47l1.4,1.79l1.34,0.66l1.83,0.02l1.0,-1.42l-1.01,-2.65l-1.75,-1.83l-1.79,-0.93l-3.39,0.01l-0.29,-1.23l0.24,-0.8l2.94,-2.83l0.33,-0.93l-0.98,-8.52l-0.89,-1.42l0.98,-1.16l1.86,-4.42l1.6,-0.5l0.55,-0.74l1.26,-0.69l-0.24,-1.11l-1.43,-1.46l0.6,-1.35l-0.65,-3.35l0.42,-0.82l0.57,-0.06l1.12,1.2l2.03,0.6l1.21,-0.84l0.54,-1.72l0.56,-0.46l1.07,0.55l1.95,0.23l2.87,-0.46l2.72,-3.42l6.88,0.87l6.12,1.65l0.89,-0.77l0.29,-1.23l-0.19,-0.42l-2.61,-1.39l-1.44,-1.91l-2.05,-1.51l-2.27,-0.21l-2.75,0.52l-3.91,-0.3l-3.38,-2.77l-2.3,-0.91l-1.57,-2.17l0.85,0.47l0.58,-0.26l0.39,-2.49l-2.07,-1.74l-4.84,2.14l-3.82,0.53l7.28,-6.51l3.44,-2.16l1.07,-1.18l6.97,-4.75l3.26,-3.23l2.7,-2.13l11.86,-12.12l5.03,-4.13l3.4,-3.32l1.38,-1.87l3.45,-6.95l-0.01,-0.97l-0.42,-0.8l-2.34,-2.4l-2.18,-3.05l-2.83,-1.99l-7.52,-4.34l-5.48,-4.63l2.72,-1.22l4.0,-4.72l0.38,-1.46l-0.17,-2.73l-0.38,-0.9l-1.51,-1.2l-3.71,-1.77l-1.54,-3.23l-0.01,-0.49l1.82,-2.02l-0.21,-2.19l-0.75,-0.87l-3.83,-0.84l-0.98,-0.81l-1.23,-2.52l0.19,-1.23l2.4,-1.41l0.44,-1.18l-0.26,-1.49l-2.69,-0.77l1.34,-1.73l0.27,-3.17l1.19,-2.04l-0.08,-0.5l-1.02,-0.91l4.61,-0.92l0.39,-1.34l-0.21,-1.45l-2.56,-6.99l-3.15,-4.16l-2.8,-5.79l-2.34,-3.73l-2.68,-3.45l-0.31,-0.84l0.25,-1.57l2.07,-2.8l4.43,-5.2l5.01,-5.15l0.73,-3.16l-0.28,-0.7l-2.11,-1.5l-3.99,-4.03l-2.62,-3.21l-8.77,-2.94l-2.79,-6.73l0.1,-0.97l3.69,-5.53l0.3,-1.8l-1.15,-0.93l-3.46,-0.31l9.02,-3.32l0.82,-0.57l0.66,-0.76l2.29,-4.62l8.22,-2.29l1.33,-1.04l1.09,-1.73l0.48,-2.01l-0.34,-0.97l5.48,2.43l2.48,0.12l1.09,-0.25l0.77,-0.81l0.37,-1.19l-0.59,-3.81l1.82,0.26l5.43,1.91l1.55,-0.18l1.81,-0.72l1.58,-2.18l0.98,-0.31l1.48,0.49l0.45,-0.15l0.48,-1.01l-0.7,-2.17l5.05,1.88l2.44,1.53l5.02,1.3l0.69,0.55l-0.14,1.85l-0.82,0.45l-2.04,-0.09l-8.15,-1.55l-1.16,1.0l-0.01,0.6l1.05,0.94l2.14,0.95l0.58,1.64l0.41,0.27l3.46,-0.24l3.3,0.68l1.42,-0.18l-0.88,1.41l0.08,0.55l0.89,0.44l3.73,-1.44l1.6,-0.36l0.6,0.25l0.09,0.86l-0.58,1.41l-0.09,1.2l-1.07,2.55l-1.81,0.91l-0.74,1.6l0.43,0.15l2.61,-0.7l1.48,-0.8l2.69,-3.85l0.61,-0.4l7.25,-0.07l8.54,2.02l2.04,0.17l2.33,-0.23l1.51,-1.05l7.57,1.96l10.28,4.47l15.04,7.36l8.43,6.46l1.18,1.5l3.07,0.79l0.85,-0.48l1.46,0.4l10.12,5.95l3.45,0.31l0.41,-0.54l-0.6,-1.55l0.93,0.68l1.87,2.27l2.36,1.76l2.33,2.53l1.51,0.78l0.0,30.64l-5.15,3.01l-10.98,3.76l-8.56,1.41l-3.42,0.1l-6.69,-0.7l-3.63,-0.75l-4.48,-2.13l-4.29,-1.1l-2.98,-0.49l-5.35,-0.2l-11.6,-2.1l-1.97,-0.72l-7.29,-4.12l-3.2,1.13l-1.46,0.18l-0.78,-0.94l0.53,-0.72l-0.24,-0.58l-4.14,-1.18l-3.43,-0.09l-4.02,-1.75l-1.59,0.44l-4.38,-1.76l-1.93,-1.41l-1.89,-2.33l0.92,-1.16l-0.19,-0.68l-7.27,-1.52l-6.84,-0.2l-0.4,0.29l0.18,0.46l1.19,0.72l3.05,0.43l3.73,2.29l-0.44,1.73l0.17,0.43l5.18,3.73l0.29,0.74l4.18,0.93l0.44,1.29l-0.47,0.94l0.67,1.15l5.49,1.86l-0.52,0.8l-1.44,0.78l-1.53,0.38l-0.3,0.36l0.24,0.4l0.93,0.34l1.98,-0.12l7.3,2.13l3.81,2.13l3.89,3.9l1.2,1.84l-0.12,1.89l-2.15,5.68l-0.9,1.09l-1.83,1.32l-0.1,0.55l3.58,5.02l1.76,3.94l0.38,3.98l1.24,0.96l-0.89,1.1l0.25,3.45l2.37,2.71l3.37,1.69l2.28,0.38l2.79,-0.66l1.95,0.87l4.57,3.12l2.06,3.28l1.09,0.86l8.27,2.02l5.37,1.99l1.05,0.1l2.82,-1.76l4.45,-1.19l1.69,-2.08l-0.15,-1.55l-1.13,-2.46l-0.48,-2.68l-2.94,-1.7l-4.41,0.47l-1.79,-0.09l-1.31,-0.61l-1.88,-1.7l-3.66,-4.27l-1.98,-1.45l-0.57,-0.81l-0.62,-1.12l0.06,-1.49l1.44,-0.01l1.8,-1.14l1.41,-4.09l3.11,-0.43l5.13,1.86l6.59,5.08l1.56,0.56l3.82,-0.04l0.42,0.59l1.34,0.79l7.02,1.73l7.13,3.16l2.91,-0.34l1.23,-2.43l2.64,-1.63l1.82,-0.27l2.7,0.62l0.94,-0.91l0.0,400.07l-4.46,-0.79l-1.09,0.42l-1.26,1.88l-5.84,-4.82l-2.57,-2.84l-8.3,-6.49l-7.29,-2.21l-4.42,-4.6l-2.32,0.5l-2.63,-0.52l-1.78,-1.42l-0.9,-1.9l-1.27,-1.31l-3.61,-1.66l-3.84,-0.92l-0.2,-0.37l3.1,-1.0l1.03,-0.69l-0.05,-0.69l-2.45,-1.01l1.22,-0.52l3.01,1.98l1.61,0.58l1.01,-0.66l5.08,-1.09l0.64,-1.13l0.01,-1.14l-0.83,-0.39l0.02,-0.79l0.7,-1.38l2.37,-2.55l1.21,-3.3l0.78,-0.55l0.38,0.25l0.1,1.27l0.32,0.31l0.41,-0.18l1.33,-2.52l3.98,0.07l0.24,-0.67l-2.44,-2.61l-3.22,-2.59l-1.55,0.09l-0.65,-0.3l-1.32,-2.0l-0.39,-1.18l2.35,0.25l3.37,-1.37l3.64,0.63l0.44,-0.46l-0.69,-2.28l4.53,-1.44l4.37,-1.99l2.18,-0.55l0.33,-1.4l-0.68,-1.65l-1.0,-1.4l-2.33,-0.06l-1.52,1.69l-3.33,0.51l-0.55,-0.04l1.8,-0.89l0.38,-0.89l-0.41,-0.19l-2.5,0.39l-1.4,1.14l-3.14,1.23l-0.09,-0.82l0.81,-0.93l0.26,-0.87l-1.06,-0.72l0.72,-1.44l0.38,-2.47l0.91,-0.72l1.93,-0.23l1.85,-0.8l1.15,-0.93l1.32,-2.0l0.85,-0.25l6.6,0.37l4.71,-0.19l0.87,-0.89l0.05,-1.5l1.42,-3.4l0.99,-1.16l0.05,-0.83l-1.49,-0.71l0.56,-0.88l-0.75,-3.25l-1.15,-0.75l-1.32,-0.29l0.66,-2.07l0.97,-0.98l1.32,0.21l1.24,-0.24l0.55,-0.79l-0.46,-0.76l-3.06,-1.05l-0.67,-1.1l2.56,-0.9l2.44,-2.39l0.59,-0.98l0.29,-2.27l-0.93,-1.24l0.0,-0.89l0.48,-1.04l-0.19,-0.6l-1.1,-0.63l-2.1,0.51l-1.12,-0.07l-4.23,-2.7l-2.19,-0.27l-1.68,-1.96l-2.3,0.57l-1.31,-0.1l-3.56,-2.2l-2.76,-0.26l-2.75,-1.58l-0.96,0.15l-0.52,0.67l-0.27,1.26l-1.02,0.25l-4.44,-3.21l-1.26,-1.76l-0.43,-1.51l-2.37,-2.21l-1.25,-0.09l-2.83,1.16l-5.07,1.07l-1.8,1.39l-1.55,-1.19l-1.78,-0.29l-0.86,0.24l-2.57,-2.23l-3.28,-0.48l-2.83,1.54l-0.78,-0.28l-0.55,-1.12l-0.87,-0.5l-0.93,-1.27l-0.22,-1.05l0.59,-1.13l0.05,-1.01l-1.71,-4.09l0.2,-1.4l-0.59,-0.56l-1.82,-0.2l-1.28,-2.54l-1.35,-0.09l-3.1,0.57l-3.49,-1.19l-3.32,-0.13l0.6,-0.53l0.05,-0.87l-0.67,-0.61l-0.34,-3.22l-1.12,-1.88l3.23,-0.64l0.56,-0.61l0.0,-0.97l-3.92,-3.8l-1.29,-3.12l-1.31,-1.82l-1.47,-1.24l-1.22,-0.59l-3.98,0.16l-2.32,-0.36l-1.88,0.24l-3.42,1.53l-1.14,0.06l-3.97,-1.0l-1.1,0.01l-1.27,0.77l-1.12,2.88l-1.96,1.03l-1.84,0.07l-2.57,-0.95l-1.02,-2.05l-1.46,-1.55l0.1,-3.66l0.34,-0.73l-1.14,-1.49l-0.07,-0.9l0.58,-0.74l-0.03,-0.72l-3.97,-4.57l1.74,-2.87l3.23,-0.09l0.87,0.25l1.61,1.49l4.18,0.24l3.9,-2.22l0.67,-1.14l2.96,-1.12l0.33,-0.34l-0.01,-1.77l-0.42,-0.68l-2.85,-1.78l-0.46,-0.98l0.32,-0.71l-0.24,-1.09l-3.52,-1.68l-5.55,-0.36l0.81,-2.04l0.17,-1.22l-0.27,-0.89l-0.58,-0.55l-5.18,-2.56l-1.33,-1.67l-0.71,-1.81l-0.87,-1.24l-1.36,-0.72l0.98,-1.81l-0.1,-0.74l-4.73,-2.94l0.42,-2.01l2.06,-2.77l-0.33,-1.87l-1.9,-2.6l0.05,-0.61l1.13,-1.47l0.09,-3.31l-0.53,-0.83l-2.18,-0.5l-1.26,-0.82l-2.4,-2.34l-3.18,-1.14l-4.12,0.02l-2.58,1.41l-1.63,0.4l-1.8,1.14l-1.34,-1.49l0.57,-1.78l-0.08,-0.77l-0.47,-0.67l-4.06,-1.61l-2.03,0.38l-1.99,1.08l-0.45,-0.15l-1.32,-1.91l-1.12,-0.71l-2.42,0.01l-1.23,0.67l-1.72,-1.43l0.66,-2.19l-1.34,-5.49l-1.34,-1.21l-0.23,-0.86l-1.31,-1.81l-0.13,-1.47l-0.53,-0.78l-0.98,-0.41l-1.57,0.36l0.75,-1.97l0.11,-1.54l0.56,-1.41l0.95,-1.24l0.0,-2.13l-0.62,-0.75l-3.35,-2.1l-0.53,-1.63l-1.92,-0.42l0.57,-2.1l1.17,-1.07l0.68,-1.42l2.7,-0.77l0.62,-0.66l-0.15,-0.75l-1.29,-1.03l-0.25,-1.0ZM899.6,149.08l-0.91,-2.5l-1.31,-2.3l-1.94,-1.53l-3.3,-4.18l-1.3,-2.04l-0.62,-2.02l0.83,-3.04l6.79,-3.36l1.76,-1.43l0.0,22.4ZM836.18,140.74l0.44,1.89l-0.38,0.82l0.1,0.76l-0.3,0.19l-1.12,-1.49l-0.96,-0.18l-0.66,-0.6l-0.26,-0.83l0.79,0.0l1.49,-0.81l0.85,0.25ZM617.41,357.73l1.54,-1.2l1.41,-1.73l1.16,-2.18l0.41,-3.11l1.52,-0.56l4.03,0.06l1.68,-0.82l1.35,-1.25l-0.8,0.85l0.13,0.64l1.12,0.5l1.36,0.19l1.62,0.72l1.47,0.13l2.74,-0.62l0.3,-0.33l0.62,-5.87l1.57,-0.18l2.24,1.46l4.31,1.78l2.75,0.72l6.56,0.09l0.88,1.63l2.49,1.72l-1.93,5.57l-0.04,1.47l0.9,2.13l-41.39,-1.79Z", "name": "Russia"}, "NL": {"path": "M408.11,413.92l-2.98,-1.02l-2.63,0.56l-1.62,-0.68l-1.47,-0.1l-1.43,-1.16l0.86,-0.49l2.54,-0.12l1.81,0.37l3.4,2.1l2.12,-0.24l0.2,-0.64l-0.47,-0.58l-2.47,-1.11l1.44,-0.16l0.27,-0.65l-0.68,-1.17l-2.31,-2.26l1.63,-2.96l1.7,-1.22l3.79,-4.66l1.1,-2.5l1.57,-6.68l1.04,-2.07l1.58,0.51l2.03,-0.83l0.61,2.01l1.68,1.87l-0.05,0.7l-2.4,1.06l0.04,3.13l-0.72,1.49l0.08,0.43l0.54,0.48l6.52,1.61l4.07,-3.2l1.17,-1.38l-0.04,-1.42l-0.47,-1.01l-2.62,-0.56l-0.29,-0.33l0.01,-1.58l0.57,-0.88l-0.05,-0.97l-0.42,-0.31l-1.44,0.1l-1.38,-0.36l-0.26,-2.87l-0.67,-0.7l1.23,-2.18l1.06,-0.92l4.54,-1.93l2.49,-0.57l10.02,-0.62l2.06,2.07l2.84,0.79l-0.08,4.83l-1.86,4.59l-0.24,1.67l-3.48,0.08l-0.9,0.62l0.09,0.93l-0.34,0.86l0.88,1.38l1.41,0.52l1.7,-0.01l0.65,0.86l-0.19,1.84l-0.5,0.96l-3.49,2.4l-0.14,0.98l1.13,1.12l-0.6,0.77l-2.87,0.97l-1.44,-0.0l-0.68,0.49l-2.7,-0.95l-2.28,0.91l-0.97,0.89l0.08,0.97l1.84,2.22l0.1,0.74l1.31,1.87l0.06,0.56l-0.41,1.55l-1.26,2.5l0.11,0.92l0.53,0.33l-2.24,1.64l-0.78,-0.07l-0.53,0.48l0.1,0.74l0.47,0.55l1.53,0.64l0.41,0.58l-0.61,2.28l-2.95,-0.15l-0.55,-0.2l-0.58,-0.97l1.24,-1.33l0.21,-1.07l0.9,-1.71l0.16,-0.82l-0.5,-0.82l-2.67,-0.92l-1.82,-1.56l-2.38,0.42l-1.15,-0.3l-1.39,-1.09l-0.5,-1.77l-0.54,-0.52l-0.49,0.01l-1.11,1.02l-1.05,0.07l-0.27,-0.74l-0.84,-0.78l-0.46,0.02l-1.54,1.17l-1.76,-0.94l-1.73,0.91l0.02,1.2l-1.77,-0.51ZM421.28,396.41l4.65,-3.0l1.5,-0.51l0.91,0.09l0.98,0.62l-0.3,0.84l-3.92,2.87l-0.85,0.06l-2.96,-0.97ZM416.5,383.47l-1.03,1.0l-0.51,-0.26l0.29,-0.71l1.25,-1.07l-0.0,1.03ZM407.31,414.89l-2.06,1.54l-1.75,0.66l-0.79,-0.07l-2.0,-1.12l-1.46,-0.21l-1.9,0.74l-0.5,-0.59l-0.29,-1.12l2.71,-0.27l3.99,0.8l1.77,-0.71l1.2,0.56l1.08,-0.22ZM401.26,408.39l0.8,-0.2l1.99,0.12l1.27,0.97l-1.02,0.24l-1.64,-1.11l-1.39,-0.02Z", "name": "Netherlands"}, "PT": {"path": "M226.07,631.38l0.09,-1.3l-0.52,-1.53l1.89,-0.52l1.05,-0.88l0.66,-1.19l-0.29,-1.44l0.72,-1.29l1.9,-1.22l0.16,-0.48l-0.45,-0.25l-1.03,0.19l-1.33,0.85l-2.54,4.33l-2.69,0.63l-1.22,-0.39l0.0,-1.58l0.59,-1.75l0.23,-2.35l0.81,-2.11l-0.23,-1.47l1.55,-1.26l1.45,-1.94l4.21,-9.14l-0.16,-0.87l-0.43,-0.47l0.16,-1.05l1.34,-5.47l1.22,-2.52l0.34,-5.43l-1.08,-3.3l-0.9,-4.39l-0.06,-1.28l0.63,-0.63l-0.25,-0.68l-1.03,-0.09l-0.39,-0.67l0.1,-0.85l2.5,-2.7l1.86,-0.94l3.64,-1.08l0.35,0.03l0.97,1.44l-1.22,1.94l0.7,1.49l0.68,0.39l0.93,-0.07l2.18,-1.03l3.06,-0.14l2.4,0.83l1.69,0.04l2.74,-1.05l0.62,-1.31l1.58,0.47l2.24,0.09l0.56,-0.29l1.51,0.44l1.18,-0.08l0.55,0.78l-0.02,2.66l0.26,0.7l3.35,0.69l0.74,0.55l0.28,0.69l-2.34,2.39l-2.17,1.14l-1.76,1.49l-1.17,1.72l-1.44,0.74l-0.73,1.02l1.23,3.94l0.23,1.9l-0.45,3.46l0.52,1.45l-2.57,1.96l-0.37,0.82l0.17,0.84l1.64,1.7l-1.02,3.33l-0.78,1.27l-0.86,0.37l-4.59,0.03l-1.11,0.3l-0.24,0.59l1.23,2.01l1.47,1.18l0.41,1.96l1.81,3.22l1.87,0.6l0.43,0.57l-0.58,2.04l-3.14,2.99l-0.94,4.28l3.28,4.65l1.82,-0.01l-0.66,1.6l-2.21,0.66l-3.59,4.5l-0.83,2.42l1.24,5.98l-0.9,0.16l-4.53,2.49l-1.25,0.0l-2.72,-1.12l-6.2,-0.68l-2.07,0.72l-1.41,-0.02l-1.47,0.83l2.33,-5.99l-0.06,-2.49l0.35,-2.3l-0.42,-2.18l-0.73,-1.34l1.01,-3.52l-0.12,-1.83l-0.72,-1.81l2.21,0.27l0.41,-0.22l-0.07,-0.46l-0.89,-0.92l-1.23,-0.68l-1.65,0.12l-3.48,1.12ZM117.56,718.32l1.56,0.67l1.81,-0.33l2.3,1.05l-1.15,1.04l-2.21,-0.2l-2.57,-1.4l0.26,-0.82ZM10.64,654.82l-1.1,0.02l-0.19,-0.31l0.92,-0.12l0.37,0.41ZM2.49,641.55l1.09,0.17l5.02,-0.12l-0.06,0.57l-0.57,0.32l-2.41,0.29l-3.86,-0.72l-1.16,-0.85l-0.14,-0.53l0.41,-0.13l1.67,1.01Z", "name": "Portugal"}, "NO": {"path": "M728.73,12.12l0.23,0.63l1.37,0.34l2.91,-0.91l0.43,0.5l-0.87,2.15l-0.5,5.32l0.03,1.92l0.75,1.21l0.37,-0.28l1.54,-4.63l1.79,-1.59l0.63,-2.84l1.64,-3.37l1.81,-1.92l0.96,-0.48l3.49,0.08l1.42,0.68l1.34,1.62l1.13,0.76l3.32,0.75l1.46,1.46l1.05,0.06l2.14,-1.24l1.18,-0.17l2.0,1.7l-0.39,1.45l0.53,0.75l2.78,-0.09l2.24,0.55l4.31,2.89l0.39,1.18l-0.18,1.34l-6.19,1.79l-2.83,1.78l-4.44,0.67l-15.48,-1.19l-0.42,0.49l0.6,1.58l10.68,2.78l0.42,0.55l-0.32,1.59l0.21,2.36l1.07,1.15l1.47,0.42l2.61,-0.21l1.62,0.37l1.06,-0.95l0.31,-2.12l0.45,-0.29l1.14,0.5l0.61,2.27l0.6,0.49l0.57,-0.18l0.65,-1.49l4.65,0.21l0.66,2.86l-0.33,1.93l-1.15,0.59l-2.23,-0.09l-3.11,-1.22l-2.04,-1.17l-1.03,-0.06l-0.46,0.65l0.46,1.08l-0.11,0.77l-1.24,2.44l-1.18,0.9l-2.11,0.74l-6.01,1.49l-0.74,0.88l-1.92,4.09l-1.08,0.98l-1.79,0.57l-1.49,-1.94l0.15,-1.12l2.32,-2.54l2.91,-2.55l1.33,-1.95l0.02,-0.42l-2.6,-4.77l-10.07,-3.82l-4.86,-3.54l-2.12,-2.17l-2.31,-0.18l-2.22,0.59l-3.29,1.99l-2.88,1.26l-2.52,-0.53l-2.63,-0.12l-3.06,0.46l-3.09,3.3l-3.22,2.21l-0.89,1.04l-0.68,1.54l-1.52,5.34l-1.15,2.08l-0.26,1.33l0.26,3.66l-0.25,1.89l-2.12,2.23l-2.9,0.58l-1.59,1.03l-1.19,1.51l-1.11,2.84l-1.73,0.96l-1.64,-0.27l-1.4,-1.1l-5.01,-1.38l-4.52,-2.05l-2.06,-0.21l-2.25,2.22l-5.05,1.49l-2.23,0.14l-1.05,-0.74l-8.72,-1.08l-1.51,-3.09l-9.21,-9.88l-5.12,-0.19l-1.9,0.71l-1.2,1.0l-0.17,0.91l0.95,2.35l-0.45,0.52l-2.35,-0.67l-2.89,0.05l-0.9,0.78l-6.7,0.37l-0.25,0.69l2.88,2.76l0.13,1.02l-0.37,2.12l-1.03,1.82l-1.19,1.48l-2.37,1.5l0.06,0.71l3.06,1.26l-3.0,2.32l-12.25,-3.18l-3.88,-0.18l-5.25,-1.45l-1.26,0.17l-2.17,0.96l-0.21,1.5l0.39,6.19l-0.64,1.44l-2.61,3.64l-7.75,-3.12l-7.69,4.89l-2.94,6.47l-1.5,1.49l-3.45,1.03l-1.17,2.04l0.05,0.43l3.13,3.96l0.93,2.08l-0.36,2.0l-2.18,1.74l-9.23,9.65l-1.79,1.39l-0.15,0.39l0.78,3.92l-1.25,1.03l-4.43,1.86l-6.68,0.85l-0.35,0.48l1.23,7.36l-1.15,3.32l-0.93,7.54l-4.89,7.78l-6.29,7.98l0.14,0.61l5.66,2.51l0.87,4.15l-0.09,1.74l-1.0,1.6l-1.2,1.56l-10.12,-1.3l-3.0,0.54l-2.79,1.15l-1.83,1.34l-4.9,5.82l-1.7,1.6l0.35,2.44l-2.78,4.15l1.85,4.71l0.95,1.67l-1.39,1.81l0.42,4.16l-0.34,2.72l2.56,6.56l-0.15,2.34l-1.85,9.33l2.03,1.82l4.12,2.33l3.65,3.7l-0.65,2.4l-1.65,3.3l-4.52,0.59l-1.11,0.86l0.31,2.38l3.23,7.09l0.44,1.8l-0.98,2.96l-0.38,3.87l-2.51,2.69l-1.57,1.04l-2.34,0.41l-0.95,0.63l-1.44,3.47l-2.02,2.05l-0.04,1.14l1.51,5.23l-1.14,5.29l-0.86,1.68l-1.08,0.53l-0.66,-0.22l-1.62,-3.96l-7.05,-1.56l-2.46,-3.92l-0.13,-4.22l-0.52,-3.2l-0.31,-0.36l-0.44,0.18l-0.83,1.39l0.39,2.25l-2.28,1.54l0.12,1.28l0.55,0.47l-0.21,2.89l-3.22,5.07l-1.36,-0.24l-1.59,1.15l-1.18,0.14l-0.57,-1.25l-2.24,-1.81l-1.35,0.01l-0.24,0.69l1.66,1.79l-0.34,0.49l-4.57,2.18l-0.1,0.66l0.87,0.76l-0.63,0.74l-1.2,0.24l-0.9,1.31l-3.32,2.06l-5.48,5.29l-2.79,1.48l-1.93,1.51l-1.6,-0.04l-2.35,1.35l-5.42,1.13l-3.62,-0.52l-2.54,0.44l-1.12,-0.74l0.13,-0.99l-0.23,-0.57l-0.48,-0.15l-1.42,0.03l-0.43,0.44l-0.3,1.11l-1.65,-0.49l-0.19,-0.21l0.48,-0.73l1.13,-0.9l0.02,-0.61l-0.66,-0.86l-3.61,-0.1l-4.41,-2.06l-1.12,-1.16l-3.59,-1.77l-1.55,-1.81l-0.87,-1.97l0.49,-4.68l0.5,-0.49l3.02,0.98l3.54,1.8l0.77,-0.24l0.99,-1.33l1.95,-1.08l-0.0,-0.7l-0.92,-0.33l-2.81,1.2l-2.49,-1.9l0.0,-0.39l0.79,-0.82l0.27,-1.01l-0.4,-1.12l0.16,-1.06l4.66,-4.01l1.45,-0.81l0.15,-0.54l-0.62,-0.47l-1.78,0.56l-5.83,3.61l-3.78,1.24l-1.46,1.82l-1.27,0.66l-2.2,0.07l-0.41,-0.93l0.7,-4.41l0.75,-2.16l0.75,-1.38l1.39,-0.37l0.82,-1.01l3.8,1.04l1.57,-1.49l1.65,-0.23l3.06,-1.49l0.15,-0.72l-0.45,-0.3l-5.05,0.73l-0.67,-0.19l-0.29,-0.73l4.44,-4.25l0.62,-1.06l0.39,-2.03l2.7,-2.33l1.96,-0.95l0.44,0.56l-0.61,2.9l0.01,1.23l0.32,0.39l0.45,-0.24l1.8,-4.31l0.74,-0.96l0.8,-0.65l2.32,-0.59l0.69,-1.14l-0.39,-0.22l-2.64,0.24l-6.23,1.67l-2.72,1.52l-3.5,4.09l-0.42,1.66l-0.85,0.74l-1.49,0.42l-1.92,2.07l-0.87,1.66l-3.08,2.3l-1.17,1.31l-0.32,-1.44l0.18,-1.94l0.87,-1.41l0.48,-1.55l-0.55,-1.47l0.23,-0.46l2.09,0.41l1.6,-0.06l2.77,-1.1l0.18,-0.59l-0.72,-0.8l-3.19,-0.01l-1.6,-0.94l-1.3,-1.95l-0.58,-2.58l0.3,-0.56l5.03,-2.8l1.46,-1.36l-0.21,-0.69l-1.12,-0.04l-1.87,1.53l-2.49,0.88l-1.51,-1.18l-0.83,-1.34l-0.5,-2.97l-0.01,-3.47l0.81,-0.47l2.52,0.47l3.01,-0.18l6.47,-1.26l4.11,0.74l1.79,-0.06l2.68,-1.09l2.11,-0.1l1.55,0.76l0.78,0.8l0.21,1.37l0.79,0.85l0.48,0.08l0.53,-0.28l0.19,-0.51l-0.46,-2.11l6.53,-1.69l0.97,-0.77l-0.22,-0.7l-2.49,-0.22l-0.59,-1.22l1.35,-2.63l-0.14,-0.32l-0.63,-0.15l-1.62,1.45l-0.74,1.82l0.08,1.93l-1.16,0.26l-3.03,0.11l-3.76,-0.93l-0.35,-0.26l0.16,-0.79l-0.54,-0.64l-0.52,0.09l-0.77,0.93l-0.68,1.78l-1.2,0.35l-4.09,-0.68l-5.91,0.41l-2.68,0.93l-1.55,-0.11l-2.82,-1.56l-1.03,-1.16l-0.28,-3.28l3.31,-0.44l1.09,-0.62l-0.04,-0.72l-2.18,-1.12l-0.87,-1.51l-1.48,-0.65l-0.81,-1.18l-0.22,-1.9l0.22,-1.2l0.47,-0.29l1.73,0.29l4.65,-0.24l7.55,2.28l6.23,-0.44l3.58,-1.3l0.06,-0.73l-0.93,-0.4l-3.85,0.74l-3.51,-0.03l-8.9,-1.94l-2.82,0.2l-1.23,-0.38l-0.7,-1.19l0.55,-2.45l0.89,-0.41l0.79,0.65l1.21,-0.11l1.76,-1.91l0.61,-1.39l2.32,-1.33l2.5,-0.75l0.72,0.14l1.38,1.17l2.02,-0.0l5.03,-1.15l1.71,-1.38l0.08,-0.46l-0.41,-0.22l-7.2,1.24l-0.09,-0.31l1.55,-1.5l0.43,-1.2l0.86,-0.45l5.24,-0.57l2.87,0.23l4.31,0.51l2.77,1.23l1.27,-0.08l1.2,-0.35l0.66,-0.54l-0.17,-0.69l-1.96,-0.46l0.08,-0.64l3.4,-0.97l3.9,-0.23l0.29,-0.65l-1.05,-0.98l-8.54,1.25l-2.16,-0.82l-1.92,-0.02l-1.28,0.51l-3.32,0.42l0.48,-1.11l2.15,-2.94l0.74,-0.46l5.1,-1.38l2.53,-1.63l3.76,-0.26l3.04,0.43l1.55,2.02l5.55,3.15l0.45,-0.02l-0.16,-1.34l-3.67,-3.44l-1.39,-0.85l-0.91,-1.47l0.3,-1.32l0.99,-0.9l4.06,-0.56l0.95,-0.71l0.22,-1.35l-0.74,-1.02l-2.79,-0.46l-0.24,-0.78l0.35,-0.54l2.3,-1.35l3.43,-0.91l3.72,1.05l-0.85,1.42l0.03,1.1l0.36,0.34l0.97,0.09l2.5,-2.4l2.53,-0.31l2.2,-0.78l1.72,2.01l1.34,0.96l0.53,1.63l0.88,0.37l1.1,-0.94l3.3,-0.73l3.35,0.47l2.32,-0.3l0.39,-0.56l-1.06,-1.99l0.54,-1.1l2.88,-1.45l2.34,-0.5l3.37,-1.82l0.2,-0.52l-0.89,-1.59l-1.46,-0.24l3.35,-1.94l0.12,-0.61l-0.57,-0.59l-1.9,-0.53l-3.2,1.34l-2.23,1.48l0.02,0.68l1.46,1.29l-1.23,1.3l-7.99,4.24l-3.74,1.22l-1.44,-0.16l-2.06,-3.63l-0.37,-0.22l-2.26,0.2l0.56,-1.66l1.17,-1.4l2.19,-1.22l1.06,-1.46l0.91,-2.09l3.05,-2.1l4.41,-5.13l3.56,-1.63l1.42,-1.85l2.14,-0.82l1.74,-1.35l1.46,-0.17l2.61,-1.28l1.59,-1.61l-0.25,-0.68l-0.97,-0.1l-3.2,1.24l0.63,-2.53l1.77,-1.44l8.82,-4.35l2.09,1.98l2.74,-0.3l3.33,-2.63l2.45,-2.81l0.03,-0.49l-0.47,-0.15l-1.3,0.48l-4.18,2.7l-1.12,0.22l-0.44,-0.12l-0.57,-1.09l-0.96,-0.34l-0.9,0.17l-0.6,-0.51l-0.14,-1.58l1.98,-4.43l4.76,-5.24l0.87,-2.16l1.51,-0.99l2.11,0.24l0.9,-0.37l0.18,-0.55l-0.77,-1.41l-2.49,-1.33l7.75,-1.75l3.85,0.06l1.35,-0.96l2.16,-0.63l1.61,-1.13l-0.02,-0.67l-1.14,-0.54l-6.37,1.52l-4.78,0.46l-0.62,-4.09l0.41,-2.05l0.84,0.04l0.41,-0.35l0.25,-2.21l1.17,-1.2l1.9,-0.35l2.23,-1.72l2.18,0.26l2.33,-0.27l0.24,-0.68l-0.58,-0.57l-2.9,-0.8l-0.45,-0.8l1.71,-0.96l1.18,-0.24l2.91,-3.35l1.39,0.1l1.69,-1.01l1.64,0.34l4.23,-1.18l8.65,-0.18l0.38,-0.3l0.26,-1.02l-0.34,-0.5l-8.31,-0.5l-4.78,0.14l4.07,-4.74l2.62,-1.62l1.91,0.39l2.4,1.68l1.53,0.19l0.6,0.42l1.45,2.41l0.56,0.07l0.45,-0.44l-0.23,-2.02l1.45,-1.66l0.01,-0.52l-0.82,-0.63l-2.24,0.61l-1.61,-0.6l-1.3,-1.22l-0.31,-0.94l1.52,-1.58l0.08,-0.57l-0.57,-0.72l-0.5,-0.1l-3.51,1.89l-2.88,0.28l0.42,-1.34l-0.25,-1.37l3.16,-3.18l0.98,-0.33l1.73,0.25l1.89,0.97l3.07,-0.68l0.26,-0.47l-0.56,-1.23l-3.25,-0.35l-0.56,-0.49l0.13,-0.32l2.23,-0.78l2.23,-1.39l2.56,-0.4l2.05,-1.03l0.41,0.39l0.79,4.05l1.9,3.28l0.98,0.31l0.45,-0.5l-0.68,-2.59l1.33,-1.19l0.41,-0.88l-0.28,-0.53l-0.85,-0.21l-0.68,-0.84l-1.07,-2.98l0.28,-0.58l2.33,-1.59l2.94,-0.37l3.25,1.17l1.3,0.04l8.52,-1.9l0.25,-0.5l-0.23,-0.56l-2.0,-0.82l-3.16,0.52l-8.21,-0.17l-0.57,-0.4l-0.1,-0.67l0.77,-1.23l0.88,-0.71l3.04,-1.36l3.48,-0.26l3.52,-2.5l1.5,-2.11l0.74,-2.81l2.0,-2.19l5.55,-1.56l0.2,-0.9l-0.53,-1.14l0.04,-2.02l1.39,-2.44l0.86,-0.79l1.14,0.66l1.52,1.87l2.21,1.03l3.04,0.21l1.02,-0.57l-0.05,-0.7l-2.21,-1.01l-1.53,-1.21l-0.1,-0.98l0.53,-0.47l2.73,-0.08l1.64,-0.97l0.77,-2.5l2.01,-1.97l6.3,-1.3l0.22,0.25l-0.34,3.86l-0.77,2.7l0.02,1.91l0.29,0.38l0.45,-0.16l1.34,-2.01l1.72,-5.22l1.26,-2.39l1.36,-1.31l3.1,-1.38l0.59,1.45l-0.72,4.51l0.06,1.44l-0.77,1.82l-3.14,4.28l0.08,0.89l0.5,0.28l2.12,-1.02l3.78,-3.96l3.22,0.49l0.46,-0.35l-0.06,-0.66l-2.39,-2.32l-0.35,-1.26l0.17,-3.66l0.84,-1.24l4.41,-0.04l0.96,0.67l1.78,-0.05l0.35,-0.24l1.13,-2.54l2.03,-0.2l2.09,1.77l2.52,1.2l2.02,1.73l0.51,0.0l0.58,-0.48l0.13,-0.41l-1.11,-4.11l-1.29,-1.65l-2.78,-0.9l-2.72,-1.79l-0.53,-0.8l2.15,-0.51l3.46,0.62l2.73,-1.45l0.94,0.35l2.03,-0.73l1.6,1.01l1.09,-0.57l0.42,-1.26l3.24,-0.82l2.1,0.78l1.07,0.76l1.38,4.8l1.87,1.95l1.31,0.98l1.7,0.08l0.63,-0.88l-0.06,-0.53l-1.14,-0.99l-0.26,-0.79l0.54,-2.31l0.62,-0.89l3.76,-3.66l3.08,-1.86l2.11,-0.31l3.32,-4.31l0.84,-0.7l0.78,-0.16l0.31,-0.47l-0.22,-1.07l-1.84,-0.88l-0.04,-0.83l2.28,-1.52l2.84,-2.62l1.15,-0.15l0.87,0.7l2.81,1.2l3.03,2.11l1.09,-0.1l1.51,-1.52l1.59,0.24l2.48,1.05l0.09,0.44l-1.4,0.88l-5.34,5.55l-0.92,1.62l-0.88,4.07l-2.09,2.72l-0.04,2.12l1.23,0.95l2.43,-0.75l2.81,-2.41l0.8,-2.66l6.95,-6.9l3.3,-3.87l3.66,-3.14l1.68,-0.53l0.78,1.68l-0.73,2.55l-1.53,1.7l0.07,0.6l0.98,0.67l-0.8,4.29l0.01,1.07l0.5,0.38l5.56,-2.51l2.31,-4.33l0.49,-1.52l1.51,-1.3l3.07,-0.01l0.39,-0.32l-0.08,-1.02l-3.77,-1.98l-0.27,-0.54l4.51,-3.24l1.64,0.23l1.19,0.54l4.36,0.4l3.1,1.53l-0.11,2.24l-0.67,0.96l-0.67,0.6l-4.3,1.96l-0.87,1.1ZM756.8,33.48l-2.19,0.6l-0.05,-0.09l1.06,-2.35l0.65,0.05l1.44,1.11l-0.91,0.68ZM694.5,3.24l3.24,-1.93l3.48,0.91l1.18,-0.0l1.68,1.66l0.73,0.04l-0.05,0.28l-1.54,0.43l-3.26,0.51l-2.15,-0.15l-1.48,-1.46l-1.85,-0.29ZM676.11,14.77l-2.24,0.85l-1.26,-0.71l-0.51,-0.7l-0.08,-1.73l0.28,-0.94l0.87,-0.43l3.59,2.07l-0.64,1.59ZM670.58,15.65l0.31,1.83l-1.11,1.19l-2.87,1.76l-0.12,0.61l-0.64,0.29l-1.35,0.3l-0.41,-0.17l0.09,-1.24l-0.29,-0.67l-0.54,-0.17l-0.94,0.5l-0.82,-0.53l0.24,-1.01l0.99,-0.93l1.66,-0.64l1.41,0.18l3.74,-2.54l0.64,1.25ZM668.13,9.06l-0.57,1.15l-4.23,3.85l-1.79,0.48l-1.29,0.76l-2.24,-0.41l-1.54,1.06l-2.45,0.03l-2.48,-1.12l-1.76,-1.58l2.44,-0.24l1.51,0.21l1.19,-1.09l1.94,0.11l3.8,-0.75l1.7,0.33l3.15,-2.48l1.07,0.02l1.3,-0.61l0.25,0.27ZM632.13,26.52l-1.42,0.6l-1.43,-0.54l-0.88,0.07l-0.57,-0.73l0.06,-0.58l0.93,-1.0l2.01,-0.61l1.59,0.25l-0.3,2.55ZM618.46,23.91l0.85,0.4l1.16,0.04l1.08,1.22l1.16,0.66l-0.83,0.46l-2.68,-0.01l-0.82,-1.9l-1.32,-1.37l-0.11,-0.62l0.52,-0.08l0.99,1.21ZM611.42,27.32l1.31,1.58l1.41,0.0l0.98,-0.71l1.05,0.5l-0.13,0.73l-2.0,1.5l-1.38,2.01l-1.62,0.43l-1.14,-0.16l-1.71,1.26l-2.75,2.91l-0.3,1.36l-6.62,1.0l-1.74,-0.48l-0.67,-0.77l1.82,-0.35l0.35,-0.37l0.05,-0.86l1.11,-0.95l0.41,-1.1l0.5,-0.21l1.67,0.18l1.11,-0.91l0.51,0.57l0.68,-0.15l0.32,-1.04l-0.18,-1.5l1.77,-1.6l0.83,-1.23l0.97,-0.66l0.97,0.11l0.43,-0.29l0.32,-1.16l-0.2,-1.95l0.85,-1.63l0.54,-0.04l0.39,1.32l0.08,2.68ZM588.18,39.31l1.24,1.04l2.37,-0.47l1.73,1.23l1.09,0.15l0.79,2.15l-0.6,0.87l-1.19,0.73l-0.29,1.48l0.32,1.44l-4.59,0.78l-0.96,-0.77l-0.48,-0.01l-2.23,1.59l-2.19,2.45l-0.49,0.13l-0.3,-0.65l-1.59,-0.54l-1.71,-0.05l2.13,-1.1l0.35,-1.26l-0.3,-2.33l0.35,-1.67l0.84,-0.67l3.6,0.4l0.4,-0.21l0.46,-0.84l-0.29,-0.91l-1.77,-0.93l1.26,-0.6l1.26,-0.07l0.78,-1.35ZM564.03,63.2l0.26,0.57l0.6,-0.03l1.78,-2.18l1.94,-0.67l1.19,-1.96l-0.08,-1.16l0.3,-0.74l1.54,-0.58l0.51,-0.13l1.1,0.7l1.51,2.7l-0.32,1.68l-2.27,1.42l-2.05,0.76l-1.97,1.76l-0.98,1.4l-0.62,0.23l-0.99,-0.45l-1.0,-0.0l-1.33,1.3l-3.11,0.95l-0.9,-0.2l-0.04,-0.94l-0.45,-0.38l-0.78,0.1l-1.44,1.55l-1.76,0.57l-1.75,-0.49l-3.97,2.48l-3.63,0.45l-0.87,-0.2l-0.0,-1.04l4.21,-3.17l6.82,-0.95l4.52,-4.21l1.14,-4.61l0.98,-1.56l-0.46,-1.31l-1.13,-0.33l-0.05,-0.99l0.54,-1.38l3.49,-3.01l2.0,-2.51l0.83,-0.49l0.9,0.0l0.78,0.48l-0.15,1.02l-1.58,2.35l-2.55,2.45l0.3,1.51l0.99,1.32l0.28,3.88l-1.79,2.64l-0.46,1.42ZM556.54,54.46l2.5,3.67l-0.58,2.34l-1.51,1.17l-4.24,0.12l-0.93,-0.51l-0.38,-0.83l-0.68,-0.21l-2.02,0.91l-1.06,0.11l-1.33,-0.6l-0.27,-0.72l2.17,-2.25l1.51,0.08l1.57,0.56l0.44,-0.22l0.64,-1.34l0.13,-1.3l1.99,0.41l0.48,-0.39l0.0,-2.2l0.64,-0.04l0.9,1.25ZM538.67,70.65l0.96,0.42l1.95,-0.11l-0.84,0.76l-1.83,0.42l-1.5,1.47l-2.63,0.27l-1.11,0.86l-0.71,-0.54l-0.6,0.13l-0.45,1.35l-1.52,0.4l-0.29,-1.54l1.17,-1.47l1.83,-0.2l1.4,-1.9l1.86,-0.52l2.31,0.17ZM526.33,79.08l-1.04,0.64l1.42,-3.36l1.2,-1.04l0.24,0.17l-0.26,1.89l-1.56,1.71ZM520.21,124.0l-0.58,0.03l0.0,-0.36l1.34,-1.14l2.38,-0.19l-3.14,1.65ZM519.02,120.83l-0.67,0.08l1.06,-1.26l0.6,-1.36l0.56,-0.36l0.86,0.5l0.02,0.92l-0.5,0.9l-1.93,0.59ZM512.64,130.29l-0.68,0.52l-1.32,-0.35l0.37,-0.91l0.78,-0.38l1.19,0.26l-0.35,0.85ZM502.61,147.16l-0.44,0.38l-1.54,-0.44l-3.0,0.37l-0.68,-0.32l0.6,-0.7l2.65,-1.15l1.27,0.05l1.27,1.24l-0.12,0.58ZM465.49,173.05l-1.51,-0.0l4.89,-1.52l0.48,-0.61l0.39,0.44l-0.14,0.94l-4.11,0.75ZM460.35,180.13l-2.56,-0.29l-0.84,-0.71l3.06,-1.01l0.58,0.58l0.05,1.08l-0.3,0.36ZM418.13,241.28l1.08,2.55l0.03,1.89l-0.6,-0.09l-0.57,-1.19l-0.17,-2.75l0.22,-0.42ZM417.53,227.52l-1.35,0.07l0.25,-1.42l0.69,-0.25l0.54,0.73l-0.13,0.88ZM229.04,8.0l-1.2,-0.01l1.39,-1.16l5.98,-2.82l2.44,-2.71l4.12,-0.83l0.21,1.05l-0.27,1.57l-3.83,1.4l-4.49,1.0l-4.36,2.51Z", "name": "Norway"}, "LI": {"path": "M479.66,489.8l0.02,-1.42l0.15,-0.43l0.74,1.46l-0.19,0.45l-0.72,-0.06Z", "name": "Liechtenstein"}, "LV": {"path": "M693.81,289.47l3.55,1.99l1.99,0.57l1.08,0.9l2.53,0.56l0.49,0.96l3.62,3.6l2.41,1.22l1.17,0.26l5.65,-1.51l2.97,1.36l4.19,0.48l0.5,1.6l3.78,2.51l0.01,1.64l-0.9,1.1l-0.62,1.56l-0.11,1.55l-0.95,2.51l0.51,0.58l2.08,-0.43l0.37,0.17l0.31,0.4l0.24,1.72l1.27,1.73l0.34,1.03l1.18,0.95l1.31,5.24l-0.59,1.84l-1.52,0.28l-1.91,1.15l-3.42,3.12l-0.81,2.06l-7.03,-0.58l-1.55,0.46l-1.71,1.91l-2.96,0.71l-2.36,-0.64l-1.52,-0.83l-2.67,-2.8l-5.8,-4.02l-1.15,-0.52l-6.83,-1.31l-1.59,-2.24l-0.54,-1.35l-1.1,-0.49l-2.14,0.57l-3.02,1.85l-4.67,0.37l-4.2,-1.24l-8.35,-0.73l-1.97,0.8l-1.07,-1.05l-1.26,-0.31l-1.54,0.36l-2.45,0.04l-6.91,-0.6l-5.95,1.81l-7.73,4.37l-0.35,-2.96l0.22,-7.21l0.51,-3.44l2.41,-2.01l1.33,-1.71l0.8,-2.32l0.72,-3.67l3.52,-4.67l2.8,-0.51l7.98,-2.39l1.23,2.38l6.53,5.21l2.21,4.68l4.89,2.3l4.09,-0.69l4.9,-3.24l1.55,-1.77l0.29,-1.57l-0.55,-6.25l-0.82,-2.71l0.2,-1.21l10.32,-3.79l1.64,1.26l0.73,-0.15l0.24,-0.81Z", "name": "Latvia"}, "LT": {"path": "M639.02,342.33l-0.39,-1.13l0.47,-2.2l-2.37,-6.79l-0.19,-4.61l7.95,-4.51l5.74,-1.75l6.79,0.61l2.53,-0.04l1.39,-0.36l1.04,0.26l1.27,1.12l1.22,-0.19l0.91,-0.62l8.2,0.71l4.28,1.25l4.86,-0.4l3.12,-1.88l1.75,-0.52l0.54,0.16l0.53,1.3l1.95,2.56l6.96,1.34l0.97,0.45l5.67,3.93l2.72,2.84l1.7,0.92l2.31,0.66l-0.34,1.84l-1.48,3.87l0.12,0.41l0.75,0.57l3.29,0.4l-1.48,1.08l-0.6,1.26l-4.13,-0.12l-0.74,0.49l-0.95,2.16l-0.97,0.67l-1.73,0.29l-1.62,0.68l-1.11,1.7l-0.79,2.17l0.04,2.82l-1.39,1.93l-1.03,2.49l0.51,0.92l1.76,0.29l0.48,0.48l0.08,1.37l-2.03,0.25l-0.64,-0.28l0.32,-0.85l-0.29,-0.93l-0.72,-0.7l-0.47,-0.03l-1.13,0.71l-1.24,0.04l-1.41,0.69l-1.0,1.14l-0.71,0.33l-2.58,-0.13l-0.73,0.71l-0.6,2.36l-1.96,-0.05l-3.92,1.55l-1.77,-1.04l-4.31,0.27l-1.89,0.43l-3.01,-0.41l0.02,-2.29l-0.39,-1.31l-1.24,-1.24l-2.8,-1.58l-1.61,-0.43l-0.45,-0.8l-1.72,-0.82l-1.06,-0.13l-0.74,0.5l-0.85,-1.99l0.06,-1.19l1.96,-5.08l-0.06,-0.83l-1.32,-1.32l-1.45,-0.78l-1.11,-1.78l-6.66,-0.08l-2.63,-0.68l-4.3,-1.77l-2.12,-1.44l-2.03,0.1Z", "name": "Lithuania"}, "LU": {"path": "M433.15,437.03l-0.02,1.54l0.46,1.19l0.9,1.05l1.71,1.44l2.06,0.7l-0.04,1.05l-1.43,1.94l-0.47,2.14l-1.81,-0.59l-2.33,0.93l-2.45,-1.16l1.0,-2.17l-2.04,-2.82l0.23,-1.64l1.61,-2.82l1.29,-1.3l1.16,0.19l0.17,0.33Z", "name": "Luxembourg"}, "FO": {"path": "M263.24,203.53l-0.39,0.92l-0.69,-0.21l-0.02,-1.73l1.1,1.03ZM260.24,213.24l-2.12,-1.39l-0.34,-0.59l2.22,0.79l0.37,0.54l-0.11,0.65ZM259.07,209.25l-3.26,-2.64l-1.87,-3.49l2.24,-0.5l4.06,1.71l-0.25,2.13l-1.84,-0.94l-0.67,0.61l-0.01,0.73l1.6,2.38ZM257.22,217.52l1.57,0.48l0.55,2.18l-1.8,-1.85l-0.31,-0.8ZM252.95,206.27l1.28,0.96l-1.0,0.36l-0.92,-0.12l-1.48,-0.53l-0.27,-0.64l1.89,-0.23l0.51,0.19Z", "name": "Faeroe Is."}, "PL": {"path": "M543.65,368.02l2.24,0.2l4.48,-1.73l7.75,-2.26l8.26,-2.12l3.9,-0.68l5.16,-4.95l4.31,-0.78l5.16,-2.51l7.82,-1.63l3.25,-0.36l3.12,-0.04l2.21,1.0l-0.57,-0.04l-0.39,0.57l2.05,4.35l1.16,1.6l2.4,1.27l2.0,0.42l5.97,-0.69l2.69,-1.31l8.11,0.66l26.59,1.14l7.65,0.18l1.4,-0.84l1.75,0.49l1.01,1.2l3.12,1.15l2.17,1.68l0.33,1.05l-0.04,2.27l1.64,6.67l2.6,6.11l1.31,4.41l0.39,3.77l-0.18,1.9l-0.61,0.58l-4.89,2.03l-1.01,0.69l-2.89,3.33l-0.47,1.1l0.51,0.99l3.51,1.58l1.85,1.18l0.6,0.91l-0.02,1.06l-0.57,1.63l0.2,1.32l-1.03,1.7l-0.08,2.01l1.61,3.05l0.13,2.59l2.67,3.26l1.68,3.35l1.47,1.21l-1.11,0.52l-0.48,0.6l1.52,3.27l-0.05,1.28l-1.46,1.98l-3.57,0.67l-4.09,3.59l-5.08,4.9l-5.28,6.4l1.06,4.51l-0.36,2.22l1.95,1.75l-0.24,0.41l-2.87,-0.93l-1.5,-0.09l-5.93,-2.17l-0.67,-1.45l-1.17,-0.92l-3.61,-1.28l-3.95,-0.3l-3.67,0.18l-1.34,1.47l-1.49,0.35l-1.84,-0.96l-1.53,-0.38l-3.52,0.1l-3.01,1.33l-0.84,0.92l-0.53,1.22l-1.56,-0.57l-1.82,0.42l0.34,-0.9l-0.2,-1.86l-0.8,-0.59l-1.18,-0.23l-2.68,-3.4l-0.49,0.01l-2.67,1.6l-1.25,1.8l-1.91,0.05l-0.36,-1.5l-1.45,-0.45l-0.45,-1.77l-2.8,-2.47l-0.57,-2.25l-0.76,-0.46l-2.28,-0.49l-0.66,0.22l-3.69,-2.09l-0.89,0.68l-1.68,0.28l-1.96,-2.02l-0.78,-0.32l-0.18,-0.17l1.22,-0.48l0.56,-0.84l-0.17,-1.46l-0.42,-0.42l-2.29,0.71l-1.7,0.16l-3.57,-2.18l-3.74,-0.88l-0.39,0.17l-0.17,0.62l1.62,2.71l-1.84,0.82l-1.61,1.27l-0.79,0.19l-3.93,-4.52l-1.56,-0.77l0.71,-0.74l1.08,-0.38l0.91,-1.37l-0.16,-0.72l-1.84,-1.31l-3.84,0.66l-0.82,-0.97l-2.85,-1.21l-5.03,-1.25l-0.92,-1.11l-0.5,-1.57l-3.64,-1.01l-0.61,0.61l0.01,1.78l-1.35,0.36l1.83,-3.66l0.72,-3.12l-1.56,-3.9l-2.48,-1.15l0.28,-1.67l-1.8,-3.51l0.94,-1.3l1.05,-3.2l-0.68,-0.86l0.02,-1.7l-0.35,-0.77l-0.98,-0.65l-0.68,-1.21l0.8,-3.27l-1.53,-2.24l-3.5,-2.48l-1.54,-1.59l0.1,-0.7l0.63,-0.77l1.41,-0.89l1.02,-1.45l0.65,-1.93l0.03,-1.7l-1.56,-5.02l-0.4,-2.5l3.71,1.43l0.56,-0.46l-0.4,-1.21l0.07,-2.13l-0.31,-0.36l-4.44,-0.86l-0.11,-0.47ZM603.71,353.39l0.66,0.35l-0.21,-0.08l-0.46,-0.27Z", "name": "Poland"}, "XK": {"path": "M623.28,565.63l0.23,-1.37l-0.65,-1.57l1.63,0.09l0.64,-0.79l3.48,-1.07l0.27,-0.76l-0.2,-0.76l1.93,-1.27l0.5,-0.84l0.09,-0.77l-0.53,-1.12l1.95,-0.93l0.57,1.38l2.88,1.35l2.09,2.07l0.37,0.86l2.01,1.19l-0.14,1.07l0.28,0.43l4.62,1.2l-1.88,4.12l-1.1,0.72l-0.15,0.66l0.36,0.88l-1.97,0.42l-0.92,0.69l-0.55,1.2l-1.4,-1.12l-1.41,-0.04l-3.96,1.67l-0.59,1.07l-0.11,1.91l-0.39,0.51l-1.14,-0.15l0.02,-2.13l-1.26,-3.53l-1.98,-1.52l-1.41,-0.49l-2.18,-3.23Z", "name": "Kosovo"}, "CH": {"path": "M474.98,480.14l0.93,1.21l2.74,1.45l1.43,0.09l0.68,0.53l-1.86,4.76l-0.08,1.49l0.52,0.93l1.74,0.08l2.81,0.78l0.54,1.22l3.54,1.51l1.02,-0.27l2.12,-1.93l0.51,0.2l0.41,1.32l-0.75,3.44l0.56,0.97l-0.02,0.65l-1.65,-0.23l-1.29,-0.99l-1.55,0.38l-0.6,1.17l-0.22,1.86l0.55,0.63l0.74,2.52l-0.69,0.02l-1.59,-2.16l-0.91,-0.09l-3.3,1.21l-1.21,-0.13l-0.52,-0.58l-0.68,-2.14l-0.42,-0.32l-1.84,-0.17l-0.8,0.69l-0.12,3.09l-3.34,4.57l-0.07,0.81l0.58,1.67l-0.72,0.36l-0.75,-1.36l-1.21,-1.09l0.49,-0.82l-0.08,-0.63l-2.59,-0.79l-2.33,-2.15l-0.24,-3.0l-0.6,-0.57l-0.93,0.09l-1.91,1.79l-1.9,1.26l-0.23,0.68l0.55,1.27l-1.71,2.33l-2.51,1.44l-3.3,-0.92l-3.01,1.12l-2.56,0.51l-0.83,-0.33l-1.26,-1.8l-2.35,-2.36l0.54,-1.67l-0.64,-1.73l0.1,-0.55l-0.58,-0.62l-2.44,-0.37l-2.11,0.11l-1.59,0.66l-1.5,1.42l0.49,1.3l-0.73,0.74l-1.4,0.72l-1.06,0.03l-0.01,-0.52l1.69,-1.25l0.38,-1.74l-0.82,-1.03l1.23,-2.71l3.31,-2.41l0.66,-3.3l2.81,-1.32l3.99,-4.25l0.72,-1.16l-0.34,-0.8l-0.94,-0.37l0.69,-0.76l1.01,-0.54l0.9,-0.01l0.97,0.98l2.09,-0.03l1.04,-0.38l1.17,-1.66l1.37,-0.65l1.08,0.36l3.11,0.1l2.31,-0.21l1.45,-0.53l3.48,0.18l1.83,-0.89l0.01,-0.53l-0.38,-0.39l-1.8,-0.11l0.3,-0.51l1.54,-0.64l2.09,1.29l1.19,-0.13l0.95,0.88l3.86,-0.25Z", "name": "Switzerland"}, "AD": {"path": "M373.44,566.17l-1.46,0.73l-1.49,0.29l-0.26,-1.45l0.13,-0.56l0.71,-0.55l2.52,0.57l0.23,0.31l-0.38,0.67Z", "name": "Andorra"}, "EE": {"path": "M681.02,292.17l1.82,-4.13l0.34,-3.01l0.83,-0.92l-0.26,-1.25l-2.11,-0.9l-0.93,0.07l-1.54,1.86l-1.37,0.39l-1.34,-0.75l-3.16,-1.02l-0.72,-1.23l-0.33,-1.62l-1.67,-1.33l-0.63,-1.43l0.21,-0.83l1.41,-0.67l0.61,-0.79l-0.35,-0.63l-2.02,0.06l-0.86,-2.23l1.02,-1.49l-0.57,-0.94l0.62,-1.45l-0.25,-1.46l3.54,-1.43l4.03,-0.33l0.36,-0.5l-0.29,-1.14l1.37,-0.12l2.65,-1.86l2.78,0.31l3.93,-1.31l7.61,0.02l1.28,-0.85l-0.01,-1.46l3.45,0.02l9.0,1.62l2.2,0.01l2.99,1.6l1.75,0.46l4.98,0.02l7.53,0.73l1.76,-1.2l1.2,1.24l0.06,0.35l-0.81,0.25l-0.7,0.83l-0.89,0.08l-0.75,0.46l-2.01,4.63l-1.0,1.16l-1.86,-0.45l-3.15,0.26l-2.71,0.88l-1.96,1.68l-0.01,1.85l2.53,3.07l1.06,3.8l1.27,1.16l1.32,1.87l0.64,1.7l2.36,4.15l0.34,1.32l1.41,1.24l-3.15,1.13l-0.66,1.42l-1.29,1.24l-0.65,2.49l-1.76,-0.23l-3.1,-1.39l-1.03,0.03l-4.85,1.48l-0.81,-0.22l-2.13,-1.06l-3.53,-3.51l-0.79,-1.2l-2.57,-0.57l-0.91,-0.82l-2.12,-0.63l-3.1,-1.88l-0.9,-0.23l-0.43,0.19l-0.22,0.83l-1.92,-1.29l-2.69,1.15l-6.13,1.9l-1.25,0.77ZM666.97,278.74l-0.76,0.14l-2.16,-1.14l0.85,-0.76l1.89,0.49l0.18,1.27ZM647.68,284.33l1.21,-1.0l0.33,-0.88l-1.4,-2.14l1.14,-0.04l1.0,0.59l1.87,-0.79l0.73,0.23l0.47,-0.18l0.75,-1.3l2.77,-0.86l1.92,0.59l1.76,-0.47l1.78,0.29l4.32,2.36l-2.29,0.37l-1.11,1.14l-0.83,0.23l-3.35,2.53l-2.91,-0.1l-1.98,0.46l-1.39,1.11l-0.69,2.3l-0.93,1.54l-0.87,0.51l-0.69,0.06l-0.04,-0.64l2.71,-3.11l-0.23,-0.59l-1.05,-0.32l-2.99,-1.89ZM661.53,273.2l-1.11,0.89l-0.64,-0.61l-0.66,0.02l-1.35,2.09l-1.33,0.31l-0.56,-0.26l0.03,-0.74l-1.12,-2.39l-1.41,-0.64l-2.39,-0.33l4.37,-0.49l1.83,-2.15l0.62,-0.09l0.4,0.14l0.6,1.28l2.34,0.45l0.84,1.22l0.26,1.21l-0.72,0.09Z", "name": "Estonia"}, "IS": {"path": "M31.07,119.93l0.78,-1.15l1.61,-0.28l4.07,2.06l0.46,0.86l-0.12,0.97l0.59,0.58l1.15,-0.26l1.6,0.23l1.28,-1.18l0.53,0.18l0.52,0.85l-0.08,2.47l0.67,0.18l0.77,-0.74l1.34,-0.06l0.57,-0.82l-0.3,-3.42l-5.08,-2.02l-1.59,-1.09l2.14,-0.53l3.31,0.02l0.54,-0.25l0.04,-0.67l-0.81,-0.56l-1.45,-0.29l-0.78,-0.84l-1.8,0.29l-3.49,-0.24l2.65,-1.57l2.25,0.17l2.17,-0.28l1.66,0.32l3.37,2.7l2.76,1.16l4.63,3.74l2.86,1.41l-1.29,0.67l-0.13,0.64l1.85,0.74l0.89,0.81l-0.88,3.03l-0.82,0.75l-2.59,-0.54l-0.41,0.17l0.0,0.45l0.8,1.08l1.88,0.98l0.21,1.15l1.01,-0.03l-0.8,1.9l0.1,0.7l1.67,0.26l0.95,0.72l1.35,3.36l0.72,-0.03l0.75,-2.67l0.28,-0.71l0.75,-0.57l0.78,-2.62l1.71,-1.48l1.4,-0.51l1.72,1.83l1.05,0.29l0.7,-0.3l1.38,-3.46l0.17,-2.52l-0.4,-2.63l0.22,-1.76l0.73,-0.96l0.91,-0.28l1.25,0.39l0.94,0.63l2.01,2.62l3.17,2.99l0.89,0.55l1.58,0.24l0.92,-0.75l-0.16,-4.45l0.82,-1.73l2.45,-0.49l2.78,-1.42l1.76,-0.48l1.69,0.98l3.36,3.79l2.41,1.8l1.51,3.25l0.57,0.25l0.7,-0.5l0.28,-0.64l0.06,-1.56l-2.91,-5.85l0.12,-0.95l4.9,0.32l1.06,0.59l2.5,2.56l1.27,0.86l2.2,-1.44l3.52,-3.91l0.88,0.12l1.88,1.21l1.36,0.43l1.36,-0.19l3.5,-1.42l1.05,-2.16l-1.46,-3.81l0.41,-0.5l3.14,-0.9l2.77,-0.07l4.05,3.55l0.28,1.79l2.4,1.38l1.69,0.07l2.54,-0.77l3.73,-2.29l1.42,-0.45l1.92,0.1l-1.26,0.29l-1.68,1.06l-2.97,3.92l0.2,0.85l1.53,0.97l1.58,0.53l1.58,-0.44l0.86,0.67l0.33,1.12l-0.24,1.28l-1.95,2.46l0.08,0.82l1.38,0.42l4.66,-0.73l0.73,2.3l-1.88,1.76l-0.05,0.52l0.51,0.13l2.27,-1.14l1.71,-0.31l3.01,0.56l1.14,0.59l0.7,1.09l0.47,0.16l1.26,-0.35l0.48,0.46l0.02,0.45l-0.66,1.81l-1.5,0.63l-0.34,0.8l1.16,1.48l1.0,0.19l-0.24,0.7l-1.16,0.7l0.08,0.68l2.27,1.05l0.19,0.64l-0.48,1.12l-0.53,0.32l-1.6,0.06l-1.19,0.49l-0.2,0.53l0.29,1.51l-0.28,1.02l-1.26,1.62l-1.18,0.86l-1.1,0.53l-2.03,-0.19l-1.14,-0.44l-0.54,0.41l0.11,1.26l-1.04,0.78l-0.14,0.44l0.6,1.18l-0.67,1.57l-0.9,0.98l-3.26,1.43l-1.83,1.28l-1.16,0.47l-3.2,-0.01l-3.29,0.86l-4.61,1.78l-3.14,1.45l-5.52,4.21l-2.25,1.06l-3.96,0.53l-11.96,2.76l-1.63,1.96l-0.06,0.36l0.49,0.61l-0.73,0.94l-1.63,0.77l-2.27,-0.71l-0.55,0.49l0.36,0.92l-5.26,1.22l-8.0,-0.75l-7.17,-2.03l-5.63,-0.41l-3.77,-2.65l0.22,-0.77l1.52,-0.44l-0.0,-0.49l-0.69,-0.87l-0.47,-0.12l-2.39,1.47l-0.55,-0.03l-0.77,-0.45l-0.38,-0.76l-1.96,-0.22l-3.31,-1.72l0.52,-0.39l0.0,-0.65l-0.33,-0.19l-2.03,0.09l-2.76,1.66l-16.08,0.58l-1.0,-3.65l0.36,-0.95l1.51,1.48l0.97,0.46l6.2,-1.75l2.75,-2.48l1.93,-3.05l1.4,-0.87l1.88,-0.27l0.34,-0.36l-0.28,-0.41l-1.27,-0.41l-1.34,-0.02l-4.72,1.83l1.48,-0.95l0.18,-0.44l-1.34,-0.54l-0.03,-0.6l0.62,-1.17l3.21,-1.73l1.31,-0.36l0.35,-0.36l-0.06,-0.61l-1.56,-0.48l-3.34,1.84l-2.33,0.61l-1.77,-0.77l-0.77,-0.91l1.13,-1.61l-0.17,-0.76l-3.1,-1.61l-3.64,0.07l-8.59,-0.77l-6.31,1.85l-1.28,-0.73l-1.11,-1.62l0.13,-0.38l1.65,-0.52l2.39,0.23l5.12,-0.99l1.5,-0.94l1.31,0.76l2.88,-0.83l1.42,-0.89l2.48,0.42l1.48,-0.31l8.37,-0.29l1.38,-1.45l0.5,-1.5l-0.27,-0.67l-0.47,-0.14l-3.45,1.35l-4.68,-0.73l-1.02,-0.57l2.26,-1.62l5.53,-2.4l0.77,-0.48l0.26,-0.86l-0.23,-0.42l-2.19,-1.02l-4.15,0.23l-1.15,-1.19l-3.44,-0.72l-2.3,0.42l-1.42,-0.69l-2.96,1.01l-6.52,1.47l-3.87,1.32l-4.32,-1.72l-3.0,-0.29l1.48,-1.5l1.08,-0.26l1.12,0.14l2.43,1.18l1.66,0.37l0.45,-0.21l-0.1,-0.48l-1.92,-1.6l-0.12,-1.55l-1.18,-1.48l2.13,0.26l4.18,1.93l1.95,-0.34l2.6,-1.25l0.09,-0.71l-0.41,-0.27l-3.61,-0.1l-1.73,-0.37l-1.39,-1.18l0.81,-0.36l2.86,0.1l0.39,-0.25l-0.11,-0.45l-3.27,-2.81l0.21,-0.7l3.27,0.93l1.13,-0.2l-0.78,-1.08l-1.26,-0.79Z", "name": "Iceland"}, "AL": {"path": "M613.48,601.01l0.69,0.32l0.52,-0.18l0.25,-0.48l-0.24,-1.33l-1.36,-2.98l1.67,-4.38l-0.07,-2.75l0.32,-2.07l-0.52,-3.06l0.7,-2.05l1.07,-1.3l0.08,-2.58l-1.64,-1.44l-1.53,-0.24l0.23,-2.82l0.99,0.15l0.61,-0.73l-1.54,-3.11l4.15,-5.4l0.14,1.73l0.81,0.95l1.33,-0.11l2.5,-1.0l2.2,3.21l2.39,1.18l1.42,1.53l0.69,2.49l0.08,1.45l-1.02,3.38l0.14,2.01l-0.9,1.2l0.57,2.04l-0.01,2.05l1.13,2.44l1.16,1.07l0.79,2.19l0.74,0.47l2.32,-0.02l0.26,0.54l-0.07,1.35l0.98,2.21l-0.97,1.82l-2.03,0.9l-1.22,2.51l-0.81,2.73l-0.5,0.4l-2.66,0.53l-1.35,1.13l-0.18,0.98l0.92,1.95l-0.95,0.1l-0.49,1.55l-0.64,0.55l-2.31,-0.88l-0.5,-2.34l-1.56,-2.8l-5.09,-2.79l-1.09,-1.11l-0.61,-1.18Z", "name": "Albania"}, "IT": {"path": "M460.72,503.99l1.78,-1.15l1.8,-1.71l0.38,-0.01l0.0,2.36l0.39,0.92l2.52,2.32l2.27,0.58l-0.51,0.85l0.07,0.5l1.37,1.23l0.36,1.05l1.03,0.61l0.95,-0.27l0.54,-0.68l-0.54,-2.47l3.32,-4.52l0.17,-3.17l0.27,-0.16l1.28,0.23l0.67,1.99l0.92,0.97l1.6,0.19l2.15,-0.87l1.7,-0.27l1.26,1.94l0.98,0.35l0.84,-0.3l0.31,-0.66l-0.49,-1.87l-0.93,-1.88l0.56,-1.7l1.03,-0.25l1.08,0.92l1.23,0.3l1.4,-0.33l0.12,-1.32l-0.53,-0.86l0.59,-2.76l2.77,0.16l0.85,0.81l1.18,0.42l2.32,-0.03l0.73,-0.56l1.38,-2.24l1.33,-0.6l3.78,-0.37l3.34,0.19l5.15,-1.58l-0.68,0.99l0.28,1.2l3.4,4.2l1.31,0.54l9.36,1.7l4.38,0.3l2.39,0.51l-0.11,0.38l-3.72,2.46l-0.42,1.14l0.72,1.28l1.07,-0.01l1.62,0.59l-1.85,1.75l-0.19,0.73l0.54,0.98l1.22,0.01l-0.54,1.93l0.36,0.78l-1.48,0.98l-3.63,-0.93l-2.36,2.24l-1.64,0.43l-2.0,1.15l-3.31,1.29l0.8,-1.08l-1.15,-0.24l-1.93,0.95l-1.23,1.0l-0.67,3.49l0.91,0.9l1.39,2.73l1.66,1.19l-0.66,1.62l-0.77,0.57l-0.89,-0.5l-0.92,0.33l-0.41,1.84l0.76,5.04l1.33,3.62l1.28,1.54l2.77,2.32l2.99,1.26l5.23,3.87l2.91,1.25l0.66,0.58l1.71,2.92l1.49,3.41l1.62,5.38l1.23,2.79l2.39,3.05l4.89,4.31l4.41,3.13l4.29,2.0l3.27,0.34l7.54,-0.42l2.4,0.6l0.24,0.98l-0.38,0.67l-3.18,2.21l-0.18,2.39l1.61,1.3l7.31,3.29l7.47,2.74l2.27,1.37l2.76,2.21l6.43,2.94l1.11,1.44l3.92,3.08l1.71,2.29l0.3,1.65l-1.72,4.11l-1.31,-0.39l-1.79,-1.26l-3.15,-5.62l-5.22,-0.55l-1.02,-0.38l-1.68,-0.84l-0.59,-1.34l-0.79,-0.46l-2.02,-0.17l-1.65,0.95l-3.66,5.33l-1.89,4.44l-0.14,1.92l1.31,2.14l3.02,0.95l2.29,1.49l1.42,1.46l0.11,3.72l0.65,2.1l-0.75,0.9l-1.95,-0.28l-2.66,0.79l-2.01,1.48l-0.94,1.69l0.2,3.43l-0.33,1.13l-3.55,2.53l-1.88,2.57l-1.09,2.11l-4.07,0.04l-0.87,-1.22l-0.03,-1.99l0.65,-1.15l1.75,-0.82l1.12,-2.85l-0.3,-2.11l0.54,-0.76l0.52,-0.55l2.91,-0.7l0.32,-0.37l0.18,-2.88l-1.43,-1.55l-1.14,-5.21l-2.28,-4.31l-1.22,-3.85l-0.99,-1.98l-1.82,-1.22l-3.79,-0.25l-4.54,-2.64l-0.17,-0.69l0.76,-1.36l-1.08,-2.88l-1.08,-1.38l-1.28,-0.67l-4.64,0.8l0.89,-1.13l-0.46,-1.01l-1.89,-0.99l-2.76,-0.23l-0.43,0.22l-0.03,-0.73l-2.55,-4.19l-1.92,-1.88l-1.09,-0.32l-1.46,0.34l-4.14,-0.9l-2.16,0.68l-0.35,-0.2l-0.31,-0.6l-2.37,-1.75l-2.99,-1.02l-5.69,-5.49l-1.76,-2.07l-3.66,-2.33l-2.37,-3.39l-1.97,-1.27l-2.74,-0.99l-2.14,0.48l0.88,-0.72l-0.33,-1.49l-3.12,-3.34l-1.85,-1.11l-1.41,-2.23l-2.37,-0.46l0.05,-3.7l-0.99,-2.76l-1.72,-2.37l-1.03,-5.63l-0.93,-1.74l-1.9,-1.2l-4.34,-1.38l-5.95,-3.6l-1.39,-0.12l-3.65,-1.41l-2.23,-0.24l-3.23,1.38l-3.52,3.49l-2.85,3.6l-0.94,0.63l-3.61,1.2l-2.78,0.5l-0.11,-1.05l2.2,-2.66l0.4,-0.9l-0.55,-1.68l-0.96,-0.28l-3.01,0.66l-0.58,-0.14l-4.66,-2.31l-0.81,-0.82l-0.26,-0.71l0.21,-0.75l-0.61,-1.26l1.42,-2.43l1.01,-0.77l-0.46,-2.18l-0.92,-0.77l-1.88,-0.41l-0.68,-0.51l-0.19,-0.83l-1.24,-2.01l0.54,-0.27l2.17,0.07l1.81,-1.29l1.33,-0.43l1.23,-2.96l-0.1,-0.39l-1.86,-1.65l-1.79,-2.85l-1.02,-0.7l-0.03,-1.21l2.63,-1.65l1.53,0.64l2.74,-0.55l2.8,-1.08l3.49,0.9l2.81,-1.61l1.89,-2.55l0.07,-0.89l-0.5,-0.93ZM518.47,542.68l-0.02,0.45l0.8,0.86l1.1,-0.35l0.42,-1.12l-0.15,-0.61l-0.45,-0.3l-1.11,0.28l-0.6,0.79ZM536.34,512.54l1.58,1.41l0.32,0.86l-0.4,0.08l0.05,-0.55l-1.56,-1.8ZM561.64,634.95l-1.42,2.54l-3.32,4.46l-1.83,5.11l0.22,2.17l1.35,1.24l-0.42,0.3l-0.08,0.57l1.5,1.71l0.07,0.48l-0.01,0.44l-2.03,1.93l-0.54,1.75l0.13,1.17l-2.54,-0.51l-1.61,0.18l-3.5,-1.28l-1.85,-2.71l-3.09,-2.07l-3.36,-0.01l-7.24,-3.82l-2.59,-2.04l-1.81,-0.46l-1.69,-1.03l-2.3,0.05l-1.38,-0.37l-1.44,-1.1l-1.12,-2.08l1.41,-3.4l1.55,-0.85l0.7,-0.8l1.23,1.47l1.07,0.59l2.12,-0.82l0.29,-0.86l1.15,-0.77l1.62,-0.02l0.59,0.12l0.56,0.87l1.47,0.38l2.51,1.57l1.64,0.37l3.58,-0.93l3.17,0.37l3.02,-0.45l1.89,-0.64l2.03,-1.27l4.49,0.21l0.95,-0.35l0.59,-0.62l1.54,-0.09l2.07,-1.12l1.04,0.08l-0.37,0.35ZM539.0,595.31l0.02,-0.06l0.31,0.09l-0.19,0.04l-0.15,-0.08ZM512.96,657.33l0.48,0.16l0.18,0.38l-0.64,-0.31l-0.02,-0.24ZM491.6,561.34l-0.16,0.88l-0.71,-0.33l-2.41,0.32l-0.12,-0.3l2.9,-0.24l0.5,-0.33ZM462.39,592.89l0.87,0.72l2.19,0.38l3.34,-1.01l1.8,-0.98l2.33,-2.52l1.52,-0.57l1.25,-1.67l0.83,0.82l0.84,0.09l1.28,0.67l1.77,2.0l-0.54,1.02l0.07,0.46l1.67,1.74l1.62,4.91l-2.19,3.79l0.86,3.95l-1.21,10.52l-0.69,2.78l-0.7,0.28l-2.83,-1.16l-1.72,0.25l-1.03,-0.57l-0.63,0.27l-0.45,3.03l-0.67,1.12l-0.99,0.69l-0.92,0.04l-1.96,-0.27l-0.55,-0.46l-2.33,-3.7l-0.25,-4.19l0.64,-1.31l0.09,-2.38l0.53,0.16l0.66,-0.55l0.1,-1.66l-0.78,-1.22l-1.15,-0.39l0.02,-1.42l0.64,-0.73l0.21,-0.85l0.02,-2.69l-0.87,-1.15l-0.82,-2.45l-2.13,-2.32l-0.11,-1.75l0.39,-1.75ZM464.42,621.63l0.71,0.35l-0.34,0.68l-0.36,-0.48l-0.02,-0.54ZM462.96,589.81l0.1,-0.19l0.15,-0.08l-0.06,0.11l-0.19,0.16Z", "name": "Italy"}, "GG": {"path": "M315.47,448.51l0.52,-0.25l-0.15,0.36l-0.37,-0.12Z", "name": "Guernsey"}, "CZ": {"path": "M515.02,433.92l1.19,1.02l0.6,1.08l0.65,0.07l2.33,-2.94l1.17,-0.7l2.89,-0.65l2.52,0.38l1.09,-1.49l2.02,-0.32l0.92,-1.17l1.6,-0.76l0.75,0.3l0.81,-0.32l1.06,-1.52l1.96,-0.22l2.67,-0.8l6.38,-2.46l0.37,-0.51l-0.15,-0.48l-1.0,-0.66l-0.25,-0.73l2.98,0.56l0.95,1.48l0.08,1.06l1.76,0.8l0.83,-0.18l0.54,-0.62l2.25,-0.51l0.25,-0.32l0.04,-1.87l2.95,0.83l0.28,1.28l1.19,1.4l5.17,1.32l2.81,1.22l0.78,0.97l3.93,-0.66l0.9,0.52l0.57,0.52l-0.42,0.79l-1.8,1.04l-0.5,1.04l0.46,0.7l1.33,0.49l2.02,2.0l1.45,2.2l0.85,0.53l0.79,0.04l4.42,-2.78l-0.02,-0.68l-1.44,-2.28l3.1,0.77l3.73,2.23l1.99,-0.18l1.8,-0.62l-0.09,1.16l-1.49,0.59l-0.24,0.49l0.61,0.9l0.8,0.34l2.0,2.05l0.71,0.26l1.73,-0.47l0.64,-0.55l0.67,0.66l2.73,1.37l0.83,-0.21l2.07,0.44l0.44,0.29l0.4,2.02l2.9,2.63l0.27,1.24l-2.96,0.35l-2.55,1.84l-0.7,0.94l-2.65,1.33l-0.88,1.57l-0.32,1.96l-2.18,1.02l-2.09,1.93l-1.71,0.77l-1.83,0.23l-3.9,-0.57l-0.98,0.38l-1.15,1.21l-1.28,2.46l-0.71,-1.3l-2.27,-0.52l-2.33,-1.09l-1.21,-0.03l-1.45,1.01l-3.92,-0.26l-3.07,-1.87l-1.85,0.01l-5.24,-1.97l-1.92,0.46l-1.3,-0.85l-1.15,-0.1l-0.71,0.65l-0.56,3.35l-1.36,0.07l-1.6,1.82l-0.23,1.07l-2.5,-0.4l-0.95,0.24l-0.75,0.61l-2.23,-0.04l-1.69,-0.37l-0.86,-1.54l-2.34,-1.31l-3.63,-3.34l-1.58,-0.02l-1.91,-2.37l-2.02,-1.08l-3.04,-3.02l-1.53,-0.08l-1.63,-1.37l-2.41,-3.91l-1.35,-1.5l1.34,-1.87l0.16,-1.15l-0.82,-1.15l-2.46,-1.54l-0.83,-0.87l-1.55,-3.17Z", "name": "Czech Rep."}, "IM": {"path": "M286.48,364.63l0.75,-2.12l1.13,-0.81l1.38,-1.97l1.16,-0.38l0.45,1.97l-0.91,1.44l-2.48,2.14l-1.47,-0.27Z", "name": "Isle of Man"}, "GB": {"path": "M268.15,314.94l0.76,-0.51l2.22,-0.36l1.99,-1.42l-0.04,-0.68l-1.33,-0.72l1.39,-0.78l1.97,-2.75l0.47,-2.7l-1.51,-2.4l-1.71,-0.79l-0.08,-1.24l3.04,-1.75l-0.26,-0.39l-1.22,-0.45l-0.73,-1.5l0.65,-2.06l1.01,-1.76l3.3,0.06l0.77,-0.52l1.74,0.44l0.45,-0.58l-3.37,-3.5l0.78,-1.43l0.07,-1.57l4.32,-0.43l0.23,-0.54l-1.07,-2.23l0.29,-2.53l0.57,-0.77l0.99,-0.34l1.4,0.28l1.48,1.26l2.81,-1.1l1.07,1.04l3.29,-0.87l9.93,-1.18l2.64,-0.65l2.45,0.26l-0.8,1.82l-0.05,2.13l-1.24,1.58l-10.66,7.29l-0.65,2.2l0.34,0.47l1.91,0.38l-2.81,2.5l-0.76,1.94l0.39,0.55l3.69,-0.45l6.29,-2.1l1.36,-0.03l3.54,0.74l2.46,-0.39l8.29,0.22l2.29,-0.41l1.34,0.44l1.17,1.15l1.11,2.32l-3.2,4.12l-0.97,3.1l-2.28,4.57l-2.22,2.52l-2.23,3.23l-2.32,1.42l-3.73,0.67l-3.51,1.63l-0.28,0.45l0.41,0.33l1.52,-0.05l1.56,-0.45l2.59,-0.15l2.77,1.34l-0.19,0.79l-1.06,0.82l-2.98,0.24l-2.66,2.16l-2.31,0.93l-4.35,-0.66l-1.23,-0.59l-0.51,0.14l0.07,0.52l1.15,1.0l1.42,0.59l7.67,1.25l3.04,-1.42l3.05,-0.02l5.98,2.32l4.24,4.35l2.33,1.89l3.11,10.2l1.78,4.76l0.84,1.39l1.25,1.09l6.45,2.77l4.06,4.18l3.44,2.72l-0.61,0.48l-0.71,1.43l0.53,1.56l3.18,5.0l-1.41,-0.06l-2.86,-1.74l-2.54,0.37l-2.7,-0.14l-0.39,0.36l0.31,0.43l2.37,0.55l2.55,0.05l5.58,4.04l1.86,2.36l1.07,3.01l-0.66,1.22l-3.41,3.22l0.1,0.61l3.4,1.83l1.62,-0.4l2.3,-2.51l1.81,-0.17l4.73,0.34l4.27,1.16l3.61,2.48l0.73,1.26l0.39,3.6l-2.05,6.22l-2.29,2.13l-1.08,0.57l-1.18,-0.21l-0.37,0.34l0.56,2.13l-0.93,0.61l-1.03,0.28l-2.15,-0.35l-2.75,1.41l0.05,0.73l1.83,0.67l0.25,0.48l-0.38,1.04l-1.05,0.51l-3.94,0.66l-1.21,0.68l-0.17,0.49l0.47,0.24l1.3,-0.31l0.71,0.22l0.54,0.99l0.71,0.48l2.88,0.54l6.8,-0.18l-0.22,2.81l-0.29,0.32l-4.28,1.91l-1.27,2.12l-2.49,-0.05l-1.14,0.82l-6.33,2.15l-5.55,-0.91l-3.41,0.08l-4.48,0.79l-4.59,-1.4l-2.08,-0.24l-1.73,-0.69l-0.47,0.14l0.01,0.49l0.8,0.98l-1.99,1.06l-4.61,0.55l-2.19,-0.18l-0.41,0.53l0.75,1.52l-0.44,0.12l-4.2,-0.6l-0.74,0.12l-0.59,0.52l-1.26,-0.25l-3.19,-1.61l-1.68,-0.3l-1.51,0.11l-5.71,1.65l-1.16,1.64l-1.3,3.91l-1.15,1.29l-1.24,0.15l-5.49,-2.9l-1.51,0.61l-2.85,0.32l-3.11,0.94l-3.9,2.36l-1.47,2.12l-1.08,0.22l-1.33,-1.05l-1.51,-0.38l-2.58,0.83l-0.13,-0.77l0.97,-0.96l3.15,-0.92l2.75,-2.3l1.87,-2.16l1.57,-0.78l0.41,-0.8l3.82,-3.57l0.78,-3.42l3.09,-1.03l1.41,-2.79l4.41,-0.65l3.12,0.04l3.18,0.57l3.47,-0.2l1.38,-0.88l2.17,-2.81l3.94,-3.66l2.13,-2.39l0.01,-0.52l-0.51,-0.1l-1.44,0.82l-2.73,2.04l-3.23,0.78l-4.11,2.62l-3.45,-0.4l-2.63,-2.2l-1.94,-1.02l-3.92,0.43l1.54,-1.33l-0.33,-0.33l-2.46,-0.4l-1.59,-1.07l-3.01,0.07l-4.0,1.97l-3.22,-1.79l-0.02,-1.23l-0.45,-0.97l-0.54,-0.33l0.67,-0.79l1.19,-0.77l2.84,-0.84l6.68,-2.81l2.33,-1.5l1.06,-1.03l1.34,-2.7l0.92,-1.18l-0.2,-0.63l-0.75,-0.24l-0.29,-0.65l0.5,-1.83l-1.03,-2.09l0.21,-1.57l-0.4,-0.48l-3.51,0.34l-3.15,1.52l-0.81,0.1l0.49,-0.83l3.19,-2.29l1.77,-2.32l2.07,-1.33l4.53,-1.59l1.66,0.17l4.2,-0.9l3.0,1.55l0.45,-0.06l0.11,-0.44l-0.79,-2.12l0.75,-0.33l1.97,2.14l0.94,0.25l1.56,-0.33l0.31,-0.32l-0.78,-0.79l-1.62,-0.37l-0.67,-0.62l-1.2,-2.13l0.06,-1.14l1.75,-2.6l-0.2,-0.62l-1.2,-0.59l0.05,-1.98l1.75,-1.15l0.72,-3.51l-0.69,-1.04l-1.82,0.15l-2.04,0.77l-1.98,-1.77l-3.27,-4.34l-0.27,-1.6l1.65,-3.73l2.54,-2.39l3.05,-0.85l0.29,-0.39l-0.29,-0.39l-5.5,-0.22l-1.66,0.32l-1.58,1.06l-1.72,0.45l-2.24,1.6l-2.19,0.01l-1.01,-1.05l-0.84,-0.18l-3.47,1.62l-3.9,-1.59l-0.98,0.57l-0.72,2.0l-1.09,-0.89l-1.34,-1.73l-0.45,-2.0l0.37,-0.24l0.61,0.34l0.56,-0.2l1.22,-3.01l3.27,-5.08l0.68,-1.8l-0.1,-1.0l-0.6,-1.02l-2.21,-1.89l0.26,-3.02l0.63,-1.0l2.88,0.03l0.39,-0.31l-0.22,-0.45l-3.28,-1.99l0.55,-1.71l-0.12,-0.45l-0.46,-0.04l-1.82,2.56l-2.04,0.67l-0.55,0.96l-1.04,0.34l0.28,-2.25l0.57,-0.88l2.4,-2.19l0.05,-0.53l-0.52,-0.11l-1.23,0.72l-2.72,2.09l-1.84,1.98l-0.11,1.04l0.59,2.29l-0.16,0.98l-2.29,7.16l-0.67,0.9l-1.14,-0.06l-0.3,-0.73l1.15,-4.26l2.4,-3.66l-0.54,-0.36l-1.04,0.13l0.17,-4.38l0.74,-1.58l0.27,-2.18l1.9,-4.94l0.89,-0.94l0.21,-1.12l1.66,-2.66l-0.05,-0.45l-0.94,0.08l-5.74,4.13l-2.6,-0.52l-0.82,-0.71l-0.4,-1.51l-0.37,-0.3l-1.52,-0.14ZM339.59,233.48l-0.57,2.19l-0.53,-0.03l-0.06,-1.74l0.74,-0.02l0.42,-0.4ZM336.19,239.14l-0.93,-1.46l0.79,-1.92l0.63,0.04l0.08,0.26l-0.75,0.66l0.18,2.42ZM329.81,239.86l0.8,-0.37l1.06,-1.32l0.87,-0.15l0.23,2.57l0.58,0.28l0.4,-0.21l1.17,1.27l0.92,-0.16l-1.6,5.89l-0.26,2.06l-0.62,0.77l-0.43,1.4l-0.23,-0.2l1.02,-3.91l-0.25,-1.08l-0.77,-0.9l-1.96,0.22l-0.43,-1.0l-1.48,-0.05l-0.32,-0.39l2.04,-0.14l1.63,-0.82l0.19,-0.49l-1.02,-2.77l-1.52,-0.49ZM330.39,426.85l1.55,-0.47l0.95,-0.66l2.54,0.99l-0.75,0.49l-0.48,0.83l-0.59,0.15l-0.6,0.0l-2.6,-1.33ZM315.95,265.12l-0.68,0.01l0.29,-0.44l0.71,-0.23l0.87,0.07l-1.2,0.59ZM309.8,263.74l0.37,-0.11l1.34,1.02l-1.51,-0.67l-0.2,-0.25ZM312.26,265.65l1.03,0.29l-0.03,0.18l-0.75,0.32l-0.25,-0.79ZM308.85,269.28l-0.26,0.62l0.38,0.54l3.29,0.45l0.39,0.27l-0.24,0.56l-0.56,0.19l-1.93,-0.96l-2.24,0.39l-0.45,-0.22l-0.26,-1.19l-0.58,-0.1l-0.8,0.43l0.01,-1.32l0.41,-1.08l0.57,-0.18l1.09,0.13l1.3,0.68l0.27,0.34l-0.41,0.45ZM310.59,274.73l-0.03,-0.02l-0.47,-0.75l0.7,-0.11l-0.21,0.88ZM306.77,274.1l-0.45,-0.01l-1.04,-1.0l-0.33,-0.85l1.05,0.15l0.78,1.72ZM293.4,379.3l0.66,0.42l0.9,0.03l-3.55,2.22l-0.41,-0.54l-0.84,-0.13l-0.91,-1.28l-0.16,-1.93l1.09,-0.46l1.73,0.03l1.49,1.64ZM281.03,338.84l-1.32,0.01l-1.07,-0.49l-0.75,-2.35l0.78,-1.35l0.65,-0.11l0.96,0.74l0.71,1.66l0.05,1.88ZM243.78,353.56l2.07,-0.03l2.55,-1.09l1.48,-2.17l0.71,-2.43l2.02,-1.34l0.58,0.54l1.33,0.1l1.08,-0.74l1.04,-1.76l3.18,-0.18l3.04,-0.9l1.25,-0.01l3.21,0.46l1.09,1.18l0.71,2.2l1.58,2.14l2.0,1.81l0.06,0.77l-2.05,1.18l-0.22,1.17l0.55,0.37l1.78,-0.56l1.9,0.16l0.59,0.65l0.71,2.04l-0.07,0.41l-0.62,-0.99l-1.5,-0.75l-0.51,0.48l0.32,1.28l-0.13,1.73l0.21,0.38l0.95,0.23l-0.41,1.14l-3.01,0.79l-1.46,2.65l-0.91,0.58l-3.72,-0.8l-1.47,0.62l-2.99,0.05l0.16,-1.49l-0.39,-0.71l-1.84,-0.6l-0.68,-0.91l-0.33,-1.22l-2.04,-1.58l-0.85,0.07l-2.1,2.02l0.45,1.34l-2.25,1.86l-3.2,-0.35l-1.07,-0.82l-2.16,-0.48l-0.53,-1.29l-3.24,-2.77l1.07,-0.79l3.35,-1.09l0.67,-0.52l0.24,-0.59l-0.22,-0.47l-1.93,-1.02ZM261.43,298.81l2.77,-0.68l0.52,-1.27l0.92,0.27l0.98,1.15l0.26,1.42l-0.24,1.96l0.61,2.1l1.02,0.63l2.54,0.4l2.31,-0.1l0.21,0.31l-3.17,2.99l-0.73,0.23l-0.24,-2.65l-0.48,-0.35l-2.97,0.32l-0.61,-0.28l-1.79,-2.5l-3.04,-0.66l-0.76,-0.83l-0.17,-0.38l0.46,-0.56l0.82,0.18l0.99,-0.58l-0.19,-1.09ZM269.34,332.0l-0.57,-0.07l-0.12,-1.03l1.96,-1.32l-0.03,-0.72l-0.51,-0.21l0.28,-0.48l1.95,-1.22l-2.97,5.06ZM271.87,321.8l-5.06,1.0l-1.54,-0.08l1.84,-0.73l0.62,-2.57l-0.21,-0.45l-2.19,-1.11l0.09,-0.39l2.26,-0.75l1.96,2.01l2.42,0.81l-0.19,2.27ZM263.06,333.89l0.29,-1.39l0.53,-0.68l0.58,-0.27l0.79,0.24l1.95,-1.18l0.87,3.48l-0.29,0.85l-2.16,0.88l0.34,-0.95l-0.39,-0.99l0.18,-0.72l-0.36,-0.57l-0.93,0.13l-1.39,1.16ZM255.41,289.78l0.69,-0.49l-0.15,-0.72l-1.04,-0.51l-0.13,-0.82l0.1,-0.64l0.69,-0.72l1.74,0.87l2.02,-0.12l0.46,-0.5l-0.77,-1.87l6.87,-3.75l0.25,2.18l-1.59,3.18l-0.74,0.23l-0.54,0.78l-1.75,0.9l-0.21,0.45l0.38,0.31l1.48,0.02l-0.0,0.7l-1.99,1.51l-1.52,0.67l-1.42,1.52l-0.92,0.18l-1.21,1.34l-0.95,-0.76l2.62,-1.89l0.17,-0.55l-2.55,-1.49ZM265.16,309.88l-0.49,0.1l-0.68,-0.67l0.84,-0.36l0.47,0.45l-0.13,0.47ZM261.42,316.68l0.29,-0.28l0.09,-0.02l-0.03,0.04l-0.35,0.27ZM249.11,297.53l0.35,-0.38l1.04,0.14l2.36,-0.64l1.01,0.73l-0.88,1.33l-1.56,-0.01l-2.31,-1.17ZM251.9,306.91l-1.08,-0.23l-0.4,-1.03l0.09,-3.19l1.15,0.03l0.25,4.42ZM248.75,309.97l0.68,-0.43l0.37,0.2l-0.96,0.26l-0.09,-0.03Z", "name": "United Kingdom"}, "AX": {"path": "M628.45,248.96l0.16,-0.05l0.84,0.08l0.31,0.32l-0.63,0.06l-0.68,-0.41ZM621.7,243.28l1.25,-0.06l2.02,1.49l-0.63,0.99l-0.8,-0.15l-1.25,0.46l-0.31,1.74l-2.69,0.2l-0.49,-0.23l-0.9,-2.45l0.11,-0.4l0.54,-0.21l0.06,1.05l0.47,0.37l0.85,-0.15l0.32,-0.29l0.34,-1.72l-1.05,-1.12l0.26,-0.39l0.48,-0.17l0.58,0.75l0.84,0.28ZM616.9,246.18l-0.55,0.17l-0.39,0.42l0.16,-1.31l0.49,-0.02l0.28,0.74Z", "name": "Aland"}, "IE": {"path": "M245.03,355.16l-3.75,1.4l-1.46,1.19l0.42,1.3l3.09,2.41l0.65,1.39l2.3,0.51l1.07,0.82l3.69,0.38l2.79,-2.26l0.09,-0.46l-0.49,-0.95l1.71,-1.63l0.31,0.02l1.52,1.24l0.25,1.06l0.91,1.22l1.92,0.73l-0.18,1.51l0.56,0.74l3.32,-0.04l1.44,-0.63l0.91,0.09l0.42,0.48l-0.42,0.31l-1.28,-0.03l-0.65,0.73l-0.03,0.85l0.37,1.24l0.72,0.86l0.99,3.59l0.72,1.21l0.15,3.22l-0.29,0.63l1.44,5.06l0.23,2.86l-1.89,3.4l-0.67,3.58l-1.65,2.45l-1.46,0.94l-0.11,0.65l1.47,1.41l-0.98,0.51l-1.53,0.23l-1.77,-0.43l-1.27,0.04l-1.49,0.84l-1.01,-1.55l-0.81,1.63l-0.82,0.37l-1.8,-0.09l-4.31,0.86l-1.41,1.96l-3.3,1.03l-1.16,1.3l-1.31,0.67l-0.96,0.18l-1.89,-1.34l-1.79,-0.0l-0.38,0.32l0.85,0.97l-0.0,1.57l-1.61,0.5l-1.42,0.95l-1.89,0.26l-1.2,0.96l-6.42,1.53l-2.25,-0.55l-4.26,0.91l1.21,-1.55l2.33,-1.17l0.24,-0.3l-0.24,-0.64l-0.89,-0.15l-4.33,0.76l-2.09,0.72l3.76,-2.46l0.67,-0.74l1.97,-0.87l0.21,-0.5l-0.49,-0.25l-6.5,1.85l-1.48,-0.2l-0.69,-0.54l-1.03,0.19l-0.29,-0.71l1.78,-1.71l1.09,-0.77l2.7,-1.09l0.66,-0.93l-0.19,-0.58l-0.79,-0.28l-5.41,0.07l0.29,-0.66l1.82,-1.08l0.94,-0.17l2.67,0.8l2.24,-0.23l0.34,-0.28l-0.13,-0.43l-0.81,-0.65l-0.15,-1.37l-0.45,-0.48l1.55,-0.82l1.69,-1.42l7.69,-1.32l3.73,-1.08l0.29,-0.38l-0.28,-0.39l-1.82,-0.57l-0.85,-0.73l-0.56,0.03l-1.42,1.55l-0.93,0.54l-2.82,0.31l-2.45,-0.63l-2.94,1.35l4.74,-3.85l0.97,-1.34l0.03,-0.41l-0.67,-0.88l1.87,-2.34l0.63,-0.41l3.34,-0.71l1.03,-0.9l-0.13,-0.67l-2.92,-0.82l-5.04,0.23l-0.67,-0.44l-0.24,-0.84l-0.5,-0.44l-2.93,0.12l0.68,-0.6l-0.2,-0.69l-3.7,-0.25l0.42,-0.63l-0.05,-0.58l-0.65,-0.76l4.97,-0.87l0.35,-0.37l-0.29,-0.42l-2.29,-0.83l0.06,-0.78l1.91,-0.9l2.21,-0.43l0.31,-0.49l-0.01,-1.2l-0.35,-0.48l-2.29,-0.21l-1.8,0.38l0.68,-2.04l-0.0,-1.8l-0.53,-0.33l-0.58,0.2l-0.57,-1.73l-0.49,-0.19l-1.01,0.38l0.02,-0.42l0.33,-0.58l0.59,-0.24l2.28,0.12l1.54,-0.59l2.01,-0.15l3.2,0.18l2.21,1.59l1.01,-0.26l1.2,-1.12l5.49,1.04l0.81,-0.19l0.26,-0.48l-0.31,-1.17l-0.59,-0.71l1.72,-1.42l3.26,-1.22l1.45,-2.62l-0.38,-0.63l-4.29,0.58l-3.57,-1.16l1.07,-0.91l1.46,-0.4l0.38,-0.61l1.96,-1.47l-0.31,-1.75l0.19,-0.79l0.94,-0.8l0.56,-1.44l3.44,-0.89l2.64,-0.09l0.63,0.24l0.54,-0.43l-0.11,-0.78l0.78,-0.09l1.02,1.41l0.13,0.66l-0.89,1.03l-0.02,0.6l0.31,0.29l-0.67,0.73l-0.03,0.5l0.48,0.14l2.52,-1.47l0.1,-1.18l-0.63,-1.97l0.14,-0.76l0.61,-0.48l2.02,-0.31l0.26,-0.64l-0.46,-0.62l4.01,2.13l-5.21,3.62l-1.07,2.92l-1.25,1.91l-2.31,0.96l-1.79,-0.12l-0.73,0.44l-0.03,0.88l1.98,1.2ZM212.65,366.62l-0.13,-0.02l0.03,-0.02l0.09,0.04ZM213.87,366.77l1.05,0.02l0.27,0.15l0.07,0.94l-0.8,-0.9l-0.59,-0.21Z", "name": "Ireland"}, "ES": {"path": "M408.55,609.24l-3.95,-1.75l-1.35,-0.22l-0.04,-0.91l2.43,-0.17l2.05,0.62l1.1,1.67l-0.24,0.75ZM392.9,610.25l0.24,0.47l1.3,0.53l1.55,-0.44l0.59,0.12l0.47,0.17l0.11,0.64l-2.84,4.76l-2.01,1.18l-3.51,-1.26l-0.53,-1.7l-0.91,-0.82l-1.18,-0.19l-1.55,1.01l-0.31,-0.47l-1.13,-0.56l0.01,-0.33l5.42,-3.73l1.57,-0.82l3.07,-0.89l-0.06,0.57l0.37,0.41l-0.66,1.32ZM246.2,546.17l1.24,0.54l1.33,-0.16l1.25,0.65l2.0,1.73l2.73,0.67l2.32,-0.51l11.05,-0.15l3.17,-0.81l2.44,1.01l4.71,0.48l2.86,0.85l7.97,1.43l2.93,0.01l5.69,-1.37l1.66,0.32l2.22,-0.66l0.92,0.12l1.48,0.98l5.05,1.32l1.62,-1.15l0.81,-0.2l3.51,0.67l3.75,1.41l1.98,0.1l2.79,-0.38l2.24,-0.92l0.61,1.08l0.69,0.42l3.9,1.0l-0.15,1.08l-0.77,1.27l0.05,0.44l0.81,0.66l1.09,0.03l0.6,-0.74l0.3,0.36l4.79,1.82l2.22,0.15l2.37,2.24l1.74,0.09l2.29,-0.44l3.47,2.21l3.37,-0.44l0.82,0.42l5.11,0.05l0.53,-0.55l0.4,-1.99l8.53,2.45l0.9,1.31l0.03,2.1l0.64,0.81l1.32,-0.09l2.19,-0.97l2.73,1.14l1.03,1.21l0.88,0.03l2.11,-1.03l6.05,1.3l0.84,-1.12l2.56,-0.78l0.93,-0.16l3.02,0.58l1.09,1.68l-1.81,0.71l-0.22,1.53l1.19,1.45l0.12,2.0l-3.11,2.7l-9.38,4.87l-3.07,2.88l-6.93,1.47l-7.25,2.16l-4.47,3.93l0.14,0.7l1.0,0.28l0.97,0.99l-1.94,1.07l-1.87,0.41l-3.14,4.73l-5.95,7.1l-3.44,5.71l-0.07,1.96l1.73,5.74l1.03,1.55l1.35,1.24l2.56,1.08l0.41,0.67l-3.16,2.45l-4.44,2.36l-1.99,1.94l-0.48,1.83l-1.34,0.98l-0.48,2.47l-1.8,3.57l-0.11,0.91l1.16,1.29l-0.27,0.21l-2.08,0.35l-5.27,0.16l-4.46,2.79l-2.28,2.59l-1.9,4.42l-2.24,2.53l-0.75,0.35l-1.61,-1.09l-2.0,-0.18l-2.05,0.39l-1.14,0.96l-1.39,0.45l-1.52,-0.42l-3.39,-0.24l-1.6,0.06l-2.23,0.71l-1.96,-0.48l-3.38,-0.25l-7.46,0.61l-1.12,0.41l-3.08,2.87l-3.54,0.09l-3.2,1.22l-1.0,0.94l-1.35,2.14l-0.35,1.21l-0.96,-0.07l-0.5,1.3l-1.83,0.61l-2.33,-0.91l-2.03,-1.42l-1.11,-0.16l-2.36,-3.47l-0.56,-2.6l-1.61,-0.81l-0.29,-1.07l1.02,-1.66l1.6,-1.37l-0.41,-0.31l-1.41,0.08l-0.96,0.94l-1.11,-1.59l-5.06,-3.56l0.19,-1.23l-0.7,-0.22l-1.27,1.12l-2.71,-0.15l-2.77,0.4l-1.23,-5.85l0.75,-2.07l2.03,-2.77l1.34,-1.45l2.36,-0.79l0.91,-2.31l-0.45,-0.59l-1.76,0.15l-2.97,-4.04l0.81,-3.79l3.11,-2.96l0.63,-1.46l0.03,-1.41l-0.83,-0.95l-1.59,-0.4l-1.69,-3.02l-0.39,-1.96l-1.57,-1.32l-0.92,-1.49l5.21,-0.2l1.22,-0.59l0.9,-1.43l0.9,-2.28l0.23,-1.44l-0.4,-0.92l-1.43,-1.44l0.17,-0.44l2.07,-1.45l0.76,-1.07l-0.54,-1.45l0.45,-3.48l-0.24,-1.99l-0.33,-1.74l-0.89,-1.96l1.97,-1.35l1.13,-1.68l1.61,-1.38l2.17,-1.14l1.61,-1.34l1.17,-1.66l-0.43,-1.19l-1.01,-0.82l-1.25,-0.44l-1.89,-0.09l-0.11,-3.06l-0.36,-0.8l-0.88,-0.56l-1.06,0.12l-1.76,-0.47l-0.61,0.3l-2.06,-0.08l-1.78,-0.47l-0.82,0.53l-0.24,0.98l-2.34,0.86l-1.37,-0.03l-2.55,-0.85l-3.24,0.12l-2.87,1.11l-0.62,-1.02l1.23,-2.07l-1.13,-1.88l-1.06,-0.33l-4.57,1.41l-2.58,1.82l-0.72,0.16l-0.18,-2.32l2.53,-2.61l-0.12,-0.66l-1.4,-0.22l1.06,-1.45l-0.13,-0.55l-0.92,-0.75l-0.01,-2.74l-0.53,-0.28l-2.47,0.81l-0.02,-0.67l1.45,-2.27l-0.32,-0.5l-1.46,-0.24l-1.05,-0.76l-1.33,-1.66l0.71,-2.85l2.0,-1.02l1.92,-1.48l2.78,0.27l1.74,-0.34l2.56,-1.02l1.67,-1.08l-0.05,-0.95l-0.41,-0.69l0.23,-0.35l3.27,-1.81l2.1,-0.23l1.93,-0.88ZM370.1,623.83l-0.59,0.91l-1.82,-0.41l0.26,-0.64l0.7,-0.46l0.03,-0.65l0.46,-0.58l2.6,-0.57l0.4,0.32l0.08,0.41l-1.53,1.47l-0.58,0.19ZM370.18,627.26l0.43,0.46l-0.55,0.0l0.12,-0.46ZM164.44,776.55l-0.91,0.89l-0.44,-0.15l0.76,-2.18l3.27,-1.23l0.83,-1.23l-0.52,2.64l-2.99,1.26ZM155.44,788.95l2.37,-1.46l2.87,-6.04l0.34,-1.27l0.46,-0.35l0.91,0.01l0.27,0.45l-0.01,1.42l-0.47,2.52l-0.8,2.08l-3.47,1.18l-1.83,1.61l-0.64,-0.14ZM141.28,788.62l0.11,1.32l-4.04,0.0l0.8,-1.44l3.13,0.12ZM128.81,784.44l-1.25,3.48l-1.5,1.58l-1.26,0.29l-1.66,-1.86l-1.25,-2.48l4.27,-0.62l3.26,-2.31l2.13,-0.21l-2.74,2.13ZM117.34,789.64l-0.75,-0.17l-0.52,-0.88l0.58,-0.83l1.31,0.57l0.26,0.48l-0.88,0.82ZM108.62,782.59l-1.69,-3.37l0.7,-0.91l1.39,-0.03l0.72,1.33l-0.36,2.16l-0.76,0.82Z", "name": "Spain"}, "ME": {"path": "M601.12,565.85l1.19,-0.97l0.28,-0.68l-0.09,-0.72l-1.0,-1.62l-0.28,-2.93l0.34,-0.41l1.75,-0.24l0.34,-0.4l0.06,-1.92l0.56,-1.18l2.2,-1.75l0.74,0.07l0.92,0.94l0.98,-0.46l0.08,-1.33l-1.22,-2.13l0.14,-0.28l1.2,0.35l1.26,-0.26l0.56,1.35l2.58,1.71l2.74,2.82l2.42,1.12l2.14,0.45l5.15,2.95l0.06,0.52l-1.49,0.41l-0.45,0.68l-1.62,-0.06l-0.66,0.62l0.72,1.91l-0.2,0.93l-3.37,1.17l-0.38,-0.47l-0.16,-1.85l-0.88,-0.44l-0.81,0.44l-3.97,5.49l-0.67,0.29l-2.58,-0.2l-0.31,0.65l1.59,1.94l1.69,0.85l-0.04,2.92l-1.44,-0.88l-0.9,-1.83l-3.09,-3.08l-3.53,-2.11l0.23,-0.58l-0.34,-0.59l-1.53,0.19l-0.92,-1.43Z", "name": "Montenegro"}, "MD": {"path": "M712.53,469.1l2.31,-1.33l5.14,0.23l1.53,-1.02l1.05,0.19l1.72,-0.95l3.49,0.95l0.98,0.89l2.03,0.79l0.72,1.12l1.09,0.35l1.68,-0.01l0.39,0.23l-0.18,0.59l0.23,0.62l1.14,0.03l0.57,0.96l0.6,-0.0l0.78,-0.88l2.88,0.47l1.16,1.99l0.96,0.93l0.99,0.32l1.65,-0.6l0.82,1.24l0.21,1.74l-0.32,1.87l-0.84,2.17l0.18,1.06l0.34,0.59l2.44,1.48l0.73,0.86l1.98,0.87l-0.38,2.89l0.67,0.88l0.19,1.52l2.11,1.48l2.08,0.9l0.74,1.53l-0.07,3.43l2.44,1.72l-0.33,0.32l-2.9,0.39l-1.0,-1.27l-0.81,-0.32l-1.41,0.82l-2.03,-0.92l-1.01,0.26l-0.87,-0.4l-0.6,0.12l-0.62,1.15l-0.1,-1.82l-0.5,-0.51l-0.54,-0.05l-2.77,1.21l-0.63,0.95l0.04,1.05l0.21,1.4l0.77,1.72l-0.71,1.95l-1.2,1.09l-1.45,0.68l-0.35,1.64l-3.15,3.06l0.03,2.49l-2.33,0.22l-1.08,0.59l-1.37,-1.89l0.96,-0.86l-0.81,-5.49l0.26,-2.73l1.68,-5.26l-0.27,-1.14l0.22,-2.18l-2.29,-5.93l-3.05,-2.49l-1.16,-1.93l-2.06,-1.92l-2.23,-3.64l-1.53,-1.5l-2.47,-5.46l-2.41,-3.5l-1.17,-1.03l-1.54,-0.78l-1.64,-0.15Z", "name": "Moldova"}, "RO": {"path": "M631.66,512.33l-1.62,-2.15l-2.98,-1.78l-1.3,-1.89l3.0,-0.64l1.59,0.53l1.44,-0.77l0.67,-1.16l0.81,-0.18l2.69,0.29l1.42,-0.78l0.52,-0.55l0.45,-1.28l1.09,-0.68l-0.15,-1.22l0.78,-1.78l2.38,-1.66l0.06,-1.57l2.13,-2.96l0.14,-1.37l1.69,-1.68l1.11,-2.8l1.64,-1.49l0.18,-2.0l1.41,-1.04l2.32,-2.6l2.53,-0.74l1.81,0.04l3.7,-3.16l2.29,-0.96l1.16,-1.36l0.58,0.03l2.92,1.64l3.46,-0.04l4.49,0.97l0.86,-0.12l1.63,0.64l4.11,-0.7l1.11,0.24l4.5,3.72l2.52,-0.5l1.41,-1.38l3.87,-1.47l9.43,-1.41l1.84,-2.27l0.38,-1.46l5.19,-0.97l2.33,0.84l0.99,0.89l2.29,3.34l2.51,5.52l1.57,1.55l2.19,3.59l2.1,1.97l1.18,1.95l2.93,2.32l2.21,5.6l-0.22,2.16l0.27,1.0l-1.66,5.2l-0.28,2.9l0.8,5.36l-1.04,0.73l0.01,0.55l1.84,2.47l1.43,1.74l1.94,1.03l4.29,1.01l0.85,-0.41l-0.23,-0.86l1.39,0.33l1.88,-0.54l2.59,-1.35l2.28,-0.26l2.07,0.77l1.65,1.62l-0.91,4.49l-0.93,2.04l-5.84,1.21l-0.37,-2.16l0.52,-0.66l-0.24,-0.64l-1.85,-0.24l-1.32,1.35l0.37,1.96l-0.97,1.47l-0.08,1.37l-0.53,1.29l0.45,0.45l0.39,-0.06l-2.26,2.65l-0.78,1.52l0.18,5.12l-0.96,3.66l-2.42,-0.04l-4.24,-1.23l-2.16,-2.64l-0.42,-0.14l-1.86,0.48l-0.84,-0.66l-3.33,-0.39l-4.73,-2.44l-8.15,1.39l-3.76,1.29l-3.9,2.3l-1.6,1.74l-1.7,0.86l-2.46,0.65l-4.49,-0.25l-9.87,-1.78l-2.85,0.5l-3.67,-0.38l-5.67,-1.11l-4.2,-0.34l-4.08,0.63l-0.45,-0.32l0.03,-0.96l2.02,-1.54l0.02,-1.12l-4.47,-2.72l-0.15,-0.7l-1.44,-0.93l-0.99,-1.35l0.08,-0.66l0.56,-0.68l2.39,-0.47l0.2,-0.47l-0.33,-0.8l-3.36,-1.74l-1.99,0.5l-2.13,1.95l-1.09,0.23l-0.9,-1.21l-1.6,-0.77l-3.63,-0.72l-0.58,-0.76l-1.0,-0.58l-2.03,-0.57l1.83,-0.2l0.48,-0.55l-0.18,-0.85l-2.12,-0.97l0.62,-0.23l0.99,-1.51l0.07,-1.02l-0.99,-0.87l-2.71,-0.8l-1.0,-0.8l-1.74,-0.54l-3.06,-2.42l-0.11,-4.46l-0.37,-0.46l-0.8,0.27Z", "name": "Romania"}, "RS": {"path": "M607.42,509.85l1.42,-0.57l0.68,-0.8l0.8,0.44l1.93,-0.29l2.06,-1.11l1.45,-1.49l0.91,-0.19l3.1,0.39l1.26,-0.26l3.53,0.55l2.01,2.55l2.91,1.72l1.76,2.28l0.78,-0.01l-0.05,3.73l0.4,0.78l3.18,2.52l1.76,0.56l1.1,0.84l2.71,0.8l0.59,0.54l-0.89,1.5l-0.59,0.16l-0.38,0.59l0.52,0.87l1.89,0.81l-2.09,0.34l-0.26,0.39l0.32,0.95l2.16,0.6l1.56,1.34l1.5,0.52l2.22,0.24l1.44,0.7l1.25,1.38l1.66,-0.41l1.95,-1.86l1.75,-0.44l2.73,1.51l-2.07,0.47l-0.95,1.17l-0.06,1.13l0.49,0.96l1.72,1.18l0.39,0.86l-0.82,0.68l-0.41,1.88l-2.37,1.2l-0.78,2.48l0.04,1.46l1.83,4.56l0.75,1.06l2.95,1.73l1.3,1.71l1.38,0.92l-0.36,1.07l-3.08,3.35l-1.91,0.1l-1.5,0.81l-0.37,0.83l0.32,0.93l-0.37,2.03l0.49,1.4l0.79,0.91l-1.33,2.11l-0.79,0.18l-1.6,-0.67l-2.39,0.83l-2.13,-0.25l-2.26,0.89l-1.99,0.33l-0.42,-0.94l1.19,-0.89l1.63,-3.37l0.31,-1.03l-0.21,-0.67l-4.66,-1.26l-0.05,-1.37l-2.13,-1.28l-0.24,-0.7l-2.28,-2.26l-2.83,-1.32l-0.6,-1.42l-1.02,-0.04l-2.04,1.13l-0.19,0.7l0.51,1.45l-0.26,0.47l-2.08,1.44l-0.22,0.83l0.25,0.57l-1.01,0.3l-0.25,-0.85l-0.97,-0.7l-4.43,-2.42l-2.27,-0.5l-2.24,-1.04l-2.64,-2.74l-2.6,-1.74l-0.26,-0.89l0.64,-0.67l1.1,-0.11l1.32,0.51l0.77,-0.71l0.28,-1.06l-0.17,-1.2l-3.14,-4.01l3.69,-0.06l0.68,-0.49l0.14,-0.84l-3.45,-3.32l-2.76,-1.62l0.3,-2.93l1.92,-2.86l0.89,-2.97l-0.3,-0.61l-1.61,-0.6l-1.79,0.3l0.22,-0.99l-0.44,-2.38l0.55,-0.15l0.3,-0.53l0.63,0.27l2.51,-0.09l0.48,-0.45l0.05,-0.62l-1.26,-1.31l-3.09,-1.11l-1.01,-0.88l0.03,-0.83l0.71,-1.15l-1.87,-1.28l0.32,-1.03l-1.29,-2.79l0.59,-0.56l0.11,-0.78Z", "name": "Serbia"}, "MK": {"path": "M629.75,577.29l1.84,0.12l0.78,-0.95l0.41,-2.59l3.61,-1.54l0.89,-0.05l1.45,1.15l0.65,0.06l0.91,-1.54l0.63,-0.43l3.04,-0.35l3.84,-1.29l2.05,0.27l2.48,-0.84l1.15,0.64l3.21,3.37l3.37,1.74l1.43,3.5l0.79,0.71l-0.73,1.84l-0.29,3.95l-1.62,0.11l-0.61,0.4l-0.51,2.19l-2.82,0.86l-4.13,-0.64l-2.65,0.45l-1.15,0.53l-1.97,2.46l-2.56,1.2l-2.25,-0.57l-1.24,0.65l-4.44,0.26l-0.63,-0.83l-2.8,-0.25l-0.69,-2.05l-1.24,-1.16l-1.01,-2.21l0.03,-1.94l-0.54,-1.92l0.88,-0.94l-0.14,-2.11l0.57,-2.22Z", "name": "Macedonia"}, "SK": {"path": "M655.85,455.69l-1.87,2.97l-1.26,3.23l-2.02,2.0l-0.31,2.96l-4.93,0.82l-2.05,-2.5l-1.8,-1.11l-5.19,0.8l-2.74,-0.69l-3.03,-0.07l-2.16,0.4l-2.33,4.11l-5.08,2.53l-0.54,0.2l-3.78,-1.56l-1.02,0.28l-1.32,1.71l-2.52,0.6l-4.73,0.38l-1.81,0.92l-0.78,1.39l0.31,1.5l-0.48,0.75l-7.63,0.4l-5.12,-0.11l-1.62,-0.65l-4.25,-3.08l-2.48,-0.39l-0.57,-0.4l-2.93,-5.87l-0.03,-0.76l1.03,-1.78l0.6,-2.25l1.91,-2.7l0.53,-0.25l3.99,0.56l2.05,-0.28l1.81,-0.81l2.23,-2.01l1.68,-0.56l0.66,-0.61l0.43,-2.19l0.57,-1.15l2.67,-1.34l0.77,-1.01l2.29,-1.67l3.09,-0.34l1.14,0.17l0.33,1.5l0.41,0.33l2.46,-0.07l1.61,-2.02l2.36,-1.35l2.4,3.23l1.74,0.5l0.15,1.45l-0.41,1.13l0.26,0.48l0.62,0.21l1.69,-0.45l1.76,0.65l0.5,-0.22l0.65,-1.5l0.65,-0.68l2.55,-1.15l3.34,-0.11l1.37,0.34l1.03,0.74l2.12,0.22l1.03,-0.56l0.94,-1.22l3.47,-0.19l3.82,0.29l3.33,1.18l0.92,0.68l0.88,1.68l6.68,2.35Z", "name": "Slovakia"}, "MT": {"path": "M547.69,672.17l-1.11,0.1l-0.87,-0.6l-0.01,-0.92l0.72,0.18l1.27,1.23ZM543.86,669.2l0.21,-0.04l0.18,0.07l-0.23,0.07l-0.16,-0.09Z", "name": "Malta"}, "SI": {"path": "M558.4,514.15l-0.58,0.36l-0.27,0.83l0.66,1.7l-0.87,0.29l-1.65,-0.15l-2.27,-0.83l-1.46,0.52l-0.51,-0.13l-1.82,-1.48l-0.69,-1.19l-0.57,-0.36l-0.96,0.41l-1.36,2.21l-0.59,0.31l-3.71,0.06l-1.44,-0.5l-1.47,1.32l-3.3,-0.75l1.3,-1.09l1.85,-0.21l0.49,-0.85l-0.67,-1.21l-1.48,-1.37l-1.87,-0.9l0.48,-2.4l-0.56,-0.5l-1.19,-0.12l1.78,-1.87l0.27,-0.99l-2.23,-1.02l-1.0,-0.0l-0.2,-0.4l0.21,-0.69l3.61,-2.34l0.41,-0.89l11.45,1.94l2.8,-1.69l1.79,-1.78l4.25,-0.61l3.12,0.21l2.65,-1.17l1.66,-0.2l2.52,0.56l0.72,-0.63l0.04,-1.7l0.63,-0.57l0.61,-0.26l2.29,0.09l0.53,2.01l0.65,0.71l0.07,0.9l1.15,1.33l-1.93,-0.14l-1.22,0.94l0.08,1.71l-2.19,0.06l-1.02,1.18l-0.8,0.41l-4.21,1.44l-0.67,1.31l0.16,0.75l0.85,0.93l-0.17,2.79l-4.89,2.01l-0.16,0.91l0.87,0.78Z", "name": "Slovenia"}, "SM": {"path": "M519.71,543.1l-0.45,-0.16l0.66,-0.49l0.03,0.12l-0.25,0.53Z", "name": "San Marino"}, "UA": {"path": "M653.07,467.62l-0.48,-1.02l-1.33,-0.03l0.12,-2.22l2.03,-2.04l1.29,-3.29l1.97,-3.29l3.27,0.94l0.74,-0.39l0.29,-0.58l-0.19,-0.78l-1.79,-1.47l0.38,-2.03l-1.1,-4.13l0.67,-1.03l4.45,-5.14l5.01,-4.84l4.05,-3.55l3.41,-0.56l1.93,-2.52l0.04,-1.69l-0.66,-1.89l-0.81,-1.03l1.48,-0.7l0.01,-0.92l-1.58,-1.38l-1.65,-3.31l-2.63,-3.21l0.21,-1.48l-0.93,-2.11l-0.01,-1.46l0.96,-0.36l1.05,0.07l2.34,0.93l2.54,-1.53l2.08,-1.99l1.03,-1.59l6.71,-0.55l2.72,-0.57l11.52,0.31l11.49,2.58l4.85,0.31l2.07,2.74l4.3,0.01l0.86,0.38l-0.14,1.19l0.77,0.66l0.82,-0.23l1.34,-1.79l2.04,0.55l0.94,-0.1l1.34,-0.76l5.35,1.07l0.77,1.59l1.26,0.46l1.86,-1.96l1.65,-0.54l1.52,-0.99l0.71,0.66l1.69,3.01l0.73,0.64l3.15,-0.84l8.03,-0.78l1.78,1.25l0.48,1.45l1.58,0.92l1.44,0.22l1.63,-2.14l-0.44,-2.15l-0.87,-2.05l0.63,-1.52l1.11,-2.22l1.14,-1.4l2.99,-2.68l1.16,-0.48l2.04,0.41l1.65,-0.95l2.97,-0.05l2.74,0.15l2.68,0.97l2.06,-0.07l2.35,-1.21l1.22,-3.0l0.71,-0.46l4.98,0.99l1.41,-0.1l3.32,-1.51l1.76,-0.22l2.24,0.36l3.78,-0.19l2.3,1.56l1.21,1.66l1.4,3.3l3.75,3.5l-0.11,0.61l-3.32,0.63l-0.34,0.35l-0.02,0.88l1.11,1.58l0.4,3.4l0.62,0.53l-0.82,1.11l0.12,0.5l0.5,0.29l3.42,0.12l3.05,1.17l4.64,-0.55l1.25,2.5l0.76,0.36l1.36,0.04l-0.19,1.29l0.94,2.76l0.76,1.25l-0.65,2.08l0.27,1.27l1.11,1.57l0.8,0.42l0.78,1.34l1.47,0.37l2.77,-1.54l2.87,0.47l2.51,2.23l1.11,-0.21l1.55,0.25l0.81,0.78l1.22,0.44l1.88,-1.45l4.96,-1.04l2.8,-1.15l0.83,0.08l2.01,1.97l0.34,1.37l1.43,1.96l4.69,3.37l1.87,-0.44l0.48,-1.59l0.62,-0.26l2.67,1.56l2.59,0.2l3.77,2.27l1.65,0.09l1.78,-0.6l1.55,1.86l2.32,0.35l4.21,2.69l1.5,0.14l2.03,-0.5l0.42,0.22l-0.38,2.28l0.93,1.25l0.02,0.88l-0.71,1.68l-2.33,2.28l-1.74,0.48l-0.99,0.5l-0.2,0.47l0.33,0.98l0.8,0.9l3.08,1.14l-2.66,0.06l-1.31,1.36l-0.82,2.61l0.3,0.5l2.33,0.73l0.65,2.74l-0.56,1.14l0.38,0.56l1.14,0.33l-0.98,1.32l-1.48,3.53l0.0,1.35l-0.38,0.48l-4.48,0.18l-6.63,-0.37l-1.19,0.33l-1.59,2.23l-0.97,0.76l-1.66,0.71l-2.07,0.29l-1.24,1.08l-0.43,2.63l-0.72,1.43l0.07,0.65l0.94,0.53l-1.01,1.32l0.1,1.34l-4.77,-0.22l-3.93,0.37l-2.89,2.7l-1.6,0.01l-2.4,0.74l-1.66,0.94l-1.64,1.67l-1.38,-0.75l-1.76,0.02l-1.92,0.57l-2.01,1.22l-1.01,0.2l-2.4,-0.34l-2.68,0.72l-5.92,4.2l-0.85,1.26l-0.06,-0.98l-0.84,-1.19l-0.64,-0.01l-2.18,2.85l-2.86,1.3l-0.28,2.37l0.9,3.43l1.61,3.06l3.22,4.28l1.58,1.61l1.23,0.7l1.53,0.14l2.77,-1.34l0.99,-0.18l2.36,0.49l1.18,-0.93l1.12,-0.43l1.51,-0.06l3.32,0.89l-1.49,2.39l-0.71,2.57l-1.95,0.58l-2.39,-0.07l-2.35,0.4l-2.62,-1.59l-1.47,-0.29l-1.5,0.36l-1.71,2.08l-2.67,1.33l-0.94,1.5l-2.45,-0.32l-2.42,0.27l-3.46,1.46l-2.67,3.13l-2.71,1.84l-2.1,0.57l-1.96,-0.18l-1.25,-0.53l-2.53,-1.83l1.01,-1.84l1.11,-3.8l-0.15,-1.47l-0.78,-2.16l-2.21,-1.51l-1.96,0.2l-0.87,-0.34l-3.79,-2.62l-2.11,-0.17l-2.05,0.49l-0.9,-0.76l8.2,-5.54l1.9,-0.29l2.58,-1.26l2.69,-1.85l0.16,-0.43l-0.38,-1.45l-0.61,-1.16l-0.44,-0.2l-2.12,0.61l-3.21,-1.95l-3.47,0.87l-2.0,-0.12l-4.23,0.79l-5.91,-2.98l-1.5,-0.45l-1.23,0.07l-0.17,-0.18l0.26,-0.11l2.25,-0.47l0.37,-0.66l-0.06,-0.73l-0.3,-0.35l-2.07,-0.55l-1.91,-0.16l-1.14,-0.62l9.74,1.35l2.9,-2.06l0.45,-0.95l-0.45,-0.17l-2.95,0.84l-2.9,-0.52l-1.01,-0.69l-0.86,-1.03l-0.34,-1.11l0.24,-1.25l-0.37,-2.3l-1.35,-2.95l-1.18,-1.12l-0.51,-0.02l-0.12,0.49l2.04,4.82l-0.14,3.34l-0.31,0.96l-0.98,0.24l-2.85,-0.46l0.34,-1.53l-0.17,-0.42l-0.46,0.01l-1.0,0.76l-1.19,1.74l-0.91,0.23l-2.56,-0.19l-4.62,1.24l-2.15,5.06l-1.92,2.66l-3.91,3.98l-4.21,1.88l-0.96,0.3l-1.74,-0.36l-1.2,0.75l-0.41,0.86l-0.01,1.39l0.97,1.2l0.63,3.62l-1.51,-1.33l-2.41,-0.85l-2.58,0.32l-2.62,1.37l-1.64,0.47l-1.56,-0.31l-0.55,0.61l0.02,0.59l-3.8,-0.88l-1.69,-0.86l-1.12,-1.36l0.85,-0.48l2.64,-0.36l0.43,-1.31l-0.26,-1.46l3.09,-2.98l0.2,-1.44l1.39,-0.67l1.45,-1.41l0.77,-2.41l-0.83,-1.85l-0.2,-2.07l0.28,-0.4l2.58,-1.04l0.09,2.09l0.34,0.39l0.96,-0.28l0.59,-0.99l0.99,0.29l0.82,-0.29l2.2,0.94l1.43,-0.79l1.79,1.6l3.15,-0.45l1.01,-0.9l-0.07,-0.59l-2.61,-1.84l0.21,-3.09l-0.93,-1.9l-4.09,-2.24l-0.11,-1.31l-0.67,-0.88l0.48,-2.47l-0.27,-0.75l-2.11,-0.98l-0.72,-0.85l-2.54,-1.77l-0.12,-0.51l0.82,-2.15l0.35,-2.11l-0.29,-2.08l-1.12,-1.57l-0.78,-0.17l-1.42,0.65l-1.15,-0.9l-1.49,-2.29l-3.33,-0.54l-0.94,0.81l-0.37,-0.7l-0.98,-0.21l-0.04,-0.93l-0.76,-0.44l-2.59,-0.27l-0.22,-0.69l-0.56,-0.44l-1.12,-0.28l-1.94,-1.43l-4.0,-1.06l-1.85,1.0l-1.09,-0.18l-1.37,0.99l-5.24,-0.22l-2.8,1.62l-0.38,0.61l-4.06,0.92l-0.67,1.8l-1.39,1.88l-9.41,1.42l-4.0,1.52l-1.37,1.36l-2.09,0.42l-4.14,-3.56l-1.48,-0.38l-4.17,0.7l-1.51,-0.63l-0.93,0.12l-4.48,-0.97l-3.48,0.03l-2.69,-1.58l-1.04,-0.1l-1.43,1.47l-2.08,0.85l0.02,-1.1l-1.22,-1.43l-1.5,-0.07l-1.1,-0.44l-0.93,-1.27l-2.27,-0.88l-0.94,-1.63Z", "name": "Ukraine"}, "SE": {"path": "M520.76,323.75l2.31,0.87l1.42,-0.61l0.14,-0.52l-1.76,-2.91l2.49,-0.3l0.9,-1.54l-0.49,-1.97l-2.39,-1.12l-1.88,-2.97l-2.08,-1.66l-3.6,-6.12l-1.32,-4.24l-0.51,-0.26l-0.86,0.28l-0.98,-4.47l-1.97,-1.01l-0.41,-4.77l-0.3,-0.35l-1.93,-0.51l-1.22,-2.08l-0.43,-4.6l-1.38,-0.8l-0.89,0.07l0.29,-1.68l-0.86,-7.72l-0.81,-2.41l0.49,-1.42l0.99,-0.13l1.05,0.84l1.08,2.44l1.23,0.55l1.65,-0.68l1.12,-2.03l1.2,-5.71l-1.57,-5.83l2.04,-2.13l1.28,-3.25l0.59,-0.43l2.52,-0.49l1.73,-1.15l2.66,-2.86l0.5,-4.2l0.98,-2.97l-0.5,-2.21l-3.21,-7.03l-0.24,-1.94l1.98,-0.63l2.88,-0.11l0.56,-0.37l1.78,-3.52l0.73,-2.76l-1.76,-2.27l-2.22,-2.02l-1.56,-0.72l-4.24,-2.89l1.8,-9.09l0.16,-2.55l-2.56,-6.53l0.33,-2.72l-0.41,-4.04l1.37,-1.57l0.05,-0.47l-2.85,-5.97l2.76,-4.11l-0.39,-2.32l6.46,-7.29l1.66,-1.21l2.57,-1.06l2.85,-0.52l10.18,1.32l0.91,-0.69l0.88,-1.26l1.06,-1.69l0.15,-2.08l-0.38,-2.85l-0.59,-1.74l-5.55,-2.58l6.02,-7.64l5.01,-8.02l0.94,-7.63l1.16,-3.36l-1.16,-7.19l6.39,-0.83l4.58,-1.92l1.56,-1.27l-0.64,-4.3l1.68,-1.31l4.43,-4.91l7.14,-6.7l0.4,-2.56l-1.05,-2.31l-3.01,-3.81l0.7,-1.43l3.43,-1.05l1.77,-1.7l2.84,-6.35l5.14,-3.08l1.96,-1.6l7.81,3.15l0.47,-0.13l2.84,-3.95l0.73,-1.63l-0.2,-7.55l1.64,-0.55l0.91,-0.15l5.22,1.45l3.88,0.18l11.04,3.05l1.69,0.08l3.69,-2.87l-0.1,-0.68l-2.97,-1.22l1.87,-1.21l2.42,-3.65l0.39,-2.24l-0.15,-1.32l-2.42,-2.49l5.83,-0.32l3.49,1.28l0.41,1.76l3.54,1.83l3.19,2.43l0.7,0.87l7.17,3.99l2.75,1.04l2.32,0.34l5.63,1.69l0.91,0.52l3.19,2.48l1.11,2.74l1.96,0.38l2.08,2.53l2.08,1.38l-1.82,1.61l-0.02,4.22l0.55,1.9l-1.01,2.11l-0.15,1.45l0.57,0.6l3.27,0.52l0.47,1.84l-1.41,1.11l-0.54,0.92l0.17,2.66l0.56,1.56l3.57,4.32l0.53,1.22l-1.21,2.31l-0.38,2.92l-1.22,1.48l-0.86,0.53l-0.43,1.07l-0.12,1.6l0.36,2.86l0.77,1.59l2.15,1.04l1.83,3.4l1.28,3.66l-3.01,0.43l-2.89,-1.0l-1.28,0.49l-5.02,0.43l-1.55,1.09l-2.27,-1.04l-2.3,-1.86l-0.51,0.01l-1.64,1.38l-0.76,0.19l-1.06,-1.24l-1.24,-0.12l-1.65,2.67l-0.35,3.09l-1.94,-0.25l-0.44,0.48l0.14,0.6l0.53,0.47l-2.9,0.43l-0.18,0.93l0.46,0.62l-0.61,0.63l-4.41,0.46l-0.55,0.67l-0.09,0.87l0.3,0.61l0.77,0.46l0.08,0.6l-1.88,-1.4l-0.5,0.08l-0.3,0.57l1.85,2.46l0.35,1.44l-1.93,2.38l-3.11,2.99l-0.85,1.59l0.1,0.49l1.82,1.74l1.54,3.9l1.61,1.71l-0.59,1.44l-2.79,1.72l-3.32,2.76l-3.43,6.64l-1.04,0.81l-2.98,1.11l-1.22,1.15l-2.17,1.25l-4.05,1.19l-1.79,1.56l-0.81,1.54l-0.53,0.07l-2.04,-1.05l-0.54,0.31l-0.16,1.14l-1.25,-0.75l-0.51,0.08l-0.97,1.16l-0.67,1.65l-2.53,2.16l-2.77,-0.4l-0.7,0.56l0.41,0.72l-2.6,0.41l-0.39,0.27l-0.94,2.25l-2.29,0.6l-0.72,0.96l0.32,0.59l2.05,0.13l-0.3,1.29l-2.74,0.93l-1.07,1.24l-0.71,-0.02l0.17,-0.42l-0.38,-0.55l-1.69,0.04l-0.49,-0.91l-0.6,-0.13l-0.37,0.29l0.08,1.31l1.02,2.21l-0.79,1.02l-0.03,0.58l1.47,0.79l-0.87,0.37l-1.41,1.48l-1.42,0.04l-1.13,1.05l-0.71,-0.0l-2.16,-1.18l-0.52,0.21l-0.53,1.86l0.78,2.11l2.2,1.98l-1.12,1.3l-1.84,6.3l0.91,3.42l-2.8,-0.75l-0.53,0.45l0.23,1.26l-1.12,1.82l0.44,2.39l-0.34,1.5l0.79,1.46l-0.42,0.9l0.53,6.73l0.99,2.76l-0.36,2.22l1.62,1.58l3.13,0.25l0.85,1.75l0.4,0.25l1.24,-0.12l2.49,-0.95l0.7,1.43l2.09,2.15l1.35,1.02l1.94,0.48l1.89,1.5l-0.11,2.2l1.01,0.75l2.41,0.77l1.86,2.64l0.72,2.14l-0.21,1.13l-3.27,1.95l-1.93,1.86l-3.29,1.82l-0.78,0.74l-0.61,0.26l-0.88,-0.13l-2.7,1.43l-0.19,0.48l0.54,0.87l2.07,0.26l1.22,-0.32l0.88,-0.73l1.45,-0.01l1.59,-0.76l0.43,0.17l0.48,0.84l-2.58,0.83l-0.54,2.14l-1.03,1.23l-2.47,0.91l-3.56,2.1l-1.06,-0.11l-1.26,0.94l-2.84,1.13l-1.56,1.59l-3.24,1.35l-1.66,1.1l-8.84,-0.19l-1.55,0.56l-0.25,0.42l2.6,0.99l1.39,-0.17l4.0,0.51l1.35,1.35l-3.09,0.88l-0.3,0.52l1.51,4.14l-0.88,1.13l-0.06,4.42l-1.32,0.36l-0.56,1.98l0.4,1.19l0.25,3.77l0.62,1.3l-0.25,1.17l-2.12,3.38l0.05,1.51l0.64,2.28l-2.37,6.77l-1.76,2.26l-0.93,1.78l-2.08,5.31l-1.98,1.63l-2.71,-1.1l-1.67,0.06l-2.41,0.6l-3.73,-0.4l-3.83,0.25l-0.92,0.53l-0.18,0.46l0.43,1.51l-0.8,0.15l-1.56,-0.48l-2.19,1.42l-1.9,1.7l-0.71,1.14l-0.17,2.38l1.76,3.55l-2.0,2.18l-1.06,0.07l-3.83,-0.68l-6.49,1.54l-5.29,-1.1l0.53,-1.06l0.42,-5.2l-0.52,-1.24l-1.43,-1.42l-3.24,-4.83l-1.03,-2.15ZM610.35,291.1l-0.44,1.16l-0.16,-0.02l-0.35,-0.5l0.95,-1.01l0.99,0.04l-0.99,0.33ZM608.6,293.08l-0.69,0.4l-0.58,1.21l-1.9,1.01l-0.31,4.36l1.23,1.47l-1.23,0.69l-1.15,2.25l-2.03,0.82l-0.99,0.77l-1.3,1.61l-0.6,1.99l-1.6,0.85l1.52,-2.4l-0.04,-0.53l-0.96,-0.91l-1.29,-2.5l0.57,-1.33l-0.21,-4.03l3.53,-3.79l1.7,-1.37l2.27,-0.59l0.99,0.53l0.56,-0.21l0.42,-1.14l0.49,-0.18l1.6,1.03ZM602.8,260.19l0.1,-0.33l0.6,-0.21l-0.46,0.3l-0.23,0.24ZM600.15,269.23l0.11,-0.28l0.27,-0.3l-0.36,0.57l-0.02,0.01ZM574.47,322.99l-0.65,0.71l-0.32,-0.99l0.14,-4.77l2.86,-5.75l1.39,-0.63l3.64,-8.06l0.2,-0.26l0.38,0.11l-0.59,0.73l0.06,1.24l-2.27,4.27l-0.62,2.77l-0.83,0.77l-3.37,9.86Z", "name": "Sweden"}, "AT": {"path": "M481.24,489.9l0.13,-0.58l-1.06,-2.68l1.05,-2.02l0.09,-1.67l1.32,-0.27l0.2,-0.84l3.5,1.6l0.51,1.42l1.54,0.43l-0.16,1.17l0.45,0.42l1.9,-0.64l0.89,-1.0l0.56,-1.07l0.32,-1.9l2.68,-0.0l2.56,0.45l1.56,1.96l1.23,0.23l3.45,-0.54l1.5,-1.13l4.2,-1.6l6.32,-0.62l0.56,-0.68l-0.02,-0.91l1.71,0.39l1.72,0.89l2.72,-0.54l0.93,0.41l0.03,1.0l0.54,0.69l2.21,1.18l0.81,-0.01l0.6,-0.84l0.29,-2.75l-0.54,-1.0l-1.45,-0.25l0.66,-1.25l-0.01,-1.43l-2.62,-3.34l0.61,-1.04l3.51,-1.91l3.25,-0.97l0.81,-0.58l0.62,-0.8l0.73,-2.89l2.33,0.93l1.08,-0.42l0.94,-0.96l0.25,-2.75l1.82,1.08l1.04,1.69l1.99,0.43l2.41,0.04l1.64,-0.85l2.7,0.45l0.45,-0.33l0.19,-1.16l1.34,-1.55l1.2,0.04l0.39,-0.27l0.74,-3.74l0.73,0.04l1.42,0.91l2.0,-0.47l5.16,1.96l1.7,-0.05l3.21,1.91l4.25,0.28l1.59,-1.06l5.12,1.61l0.79,1.59l-1.13,2.46l0.03,1.3l1.48,3.33l1.49,2.65l0.58,0.5l-0.55,0.63l-0.13,0.95l-0.66,1.21l0.38,2.0l-3.35,0.39l-2.64,-1.21l-0.78,0.17l-1.67,1.19l-0.17,0.52l0.4,0.53l2.63,0.76l0.36,0.9l-0.61,1.28l-2.51,1.02l0.22,2.14l-0.57,1.05l0.29,1.33l0.71,0.37l-0.38,1.52l-1.55,0.13l-1.08,0.52l-3.02,2.24l-0.95,1.05l-0.06,1.65l-2.43,-0.52l-1.83,0.22l-2.62,1.17l-3.01,-0.22l-4.42,0.64l-0.86,0.49l-1.18,1.41l-2.58,1.56l-9.66,-1.84l-4.61,-0.75l-4.38,-0.3l-9.29,-1.69l-1.1,-0.46l-3.08,-3.86l-0.22,-0.59l0.9,-1.44l-0.7,-0.65l-5.54,1.63l-3.29,-0.2l-4.01,0.41l-1.66,0.81l-1.47,2.36l-1.02,0.33l-2.05,-0.36l-1.13,-0.95l-2.83,-0.17l-0.56,-1.63l-1.1,-0.55l-3.07,2.23l-3.13,-1.32l-0.64,-1.3l-3.07,-0.87Z", "name": "Austria"}}, "height": 790.3360148034734, "projection": {"type": "mill", "centralMeridian": 11.5}, "width": 900.0}); \ No newline at end of file diff --git a/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-fr-mill-en.js b/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-fr-mill-en.js deleted file mode 100644 index 8a9b7a7ce..000000000 --- a/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-fr-mill-en.js +++ /dev/null @@ -1 +0,0 @@ -jQuery.fn.vectorMap('addMap', 'fr_mill',{"insets": [{"width": 100, "top": 600, "height": 122.71220181016422, "bbox": [{"y": -640515.9263248637, "x": -6082830.163693012}, {"y": -235112.28629661424, "x": -5752460.702426716}], "left": 0}, {"width": 50, "top": 440, "height": 42.928059423707, "bbox": [{"y": -1855676.1027106678, "x": -6882793.3793751765}, {"y": -1778355.8860469644, "x": -6792735.480530344}], "left": 0}, {"width": 50, "top": 510, "height": 57.21127928831266, "bbox": [{"y": -1668974.3969949444, "x": -6819419.302373176}, {"y": -1615651.747314515, "x": -6772817.783980524}], "left": 0}, {"width": 50, "top": 700, "height": 42.31095479952366, "bbox": [{"y": 2357030.8412201093, "x": 6150785.273719754}, {"y": 2416319.6251247157, "x": 6220848.433704593}], "left": 740}, {"width": 40, "top": 690, "height": 55.96611426730096, "bbox": [{"y": 1415975.8044653006, "x": 5016650.333473452}, {"y": 1454680.1669724442, "x": 5044313.045465417}], "left": 640}, {"width": 900, "top": 0, "height": 749.2159980728637, "bbox": [{"y": -6244653.662562441, "x": -571670.6975907331}, {"y": -4882430.695155527, "x": 1064707.428102987}], "left": 0}], "paths": {"FR-28": {"path": "M407.07,246.39l-2.7,-0.64l-6.08,2.98l-1.29,0.33l-1.3,-0.03l-4.61,-1.88l-2.65,0.56l-2.46,-3.3l-2.56,-2.35l-1.46,-1.98l-0.99,-0.54l-2.75,-0.62l-0.56,-2.81l-0.76,-0.98l-0.97,-0.09l-2.55,1.38l-1.99,0.58l-3.85,0.17l-1.75,0.55l4.24,-2.29l0.59,-0.56l0.14,-0.72l-1.12,-1.06l-3.14,-0.41l-2.36,-1.54l1.12,-0.96l0.25,-1.0l-1.86,-3.44l0.03,-2.94l-1.33,-1.67l0.61,-1.35l2.29,-0.4l5.6,-2.3l2.13,-1.95l0.67,-1.64l1.22,-1.8l-0.16,-0.83l-1.74,-2.11l0.08,-3.7l-3.65,-3.73l-2.55,-1.62l-1.61,-2.81l-0.36,-3.23l1.82,-1.67l1.34,-0.77l5.76,-1.41l2.04,-0.07l0.74,-0.36l1.7,-2.02l3.48,-0.35l0.63,-0.53l0.22,-1.53l3.0,1.67l3.49,-0.02l1.93,0.63l4.71,-2.07l1.42,-1.16l0.69,-1.87l0.95,-1.4l1.34,-1.03l2.49,-1.16l1.05,-1.01l0.26,-1.64l-0.52,-1.68l0.12,-0.44l2.22,-1.39l3.12,5.29l1.41,1.78l0.26,1.59l-0.56,2.83l0.31,1.68l0.56,0.67l1.6,0.81l-0.36,1.11l-1.35,1.63l-0.2,0.71l0.26,0.98l1.48,0.99l0.55,1.38l1.5,1.71l3.83,2.4l0.73,2.38l2.38,1.58l0.52,0.67l0.38,1.69l-0.03,2.29l1.38,2.04l1.1,0.79l4.59,1.88l2.43,-0.21l0.24,2.38l2.15,2.42l0.66,2.91l0.56,0.84l1.29,0.92l-1.7,2.02l0.05,0.99l0.8,0.61l-1.24,2.16l0.67,3.68l-0.27,0.93l-0.37,0.49l-2.85,1.06l-1.77,4.01l-0.98,1.3l-1.0,0.81l-1.08,0.27l-1.41,-0.35l-1.39,0.17l-3.64,1.38l-3.25,-0.59l-1.79,0.16l-1.29,0.78l-1.79,2.16l-0.7,0.16l-1.79,-0.73l-1.17,0.14l-1.18,0.96l-0.45,1.05l0.17,2.31Z", "name": "Eure-et-Loir"}, "FR-29": {"path": "M25.63,242.25l0.98,-1.98l0.98,0.49l19.62,-3.77l3.65,0.88l0.91,-0.32l0.5,-0.76l0.62,-2.51l-0.36,-1.04l-0.81,-0.89l-0.58,-2.39l-1.01,-0.81l-2.92,-0.69l-0.66,-1.14l-0.5,-0.27l-1.37,0.44l-3.11,-1.71l-2.01,0.46l-2.96,4.7l-0.73,0.21l0.57,-1.39l-1.14,-2.33l0.91,-1.36l-0.39,-1.22l-1.09,-0.38l-3.21,-0.11l-0.03,-1.0l1.84,0.17l0.95,-0.24l0.41,-0.81l-0.22,-0.93l0.98,-2.21l0.53,-0.43l0.46,0.19l-0.71,2.55l0.23,0.48l1.87,0.72l5.36,-0.32l1.36,0.83l1.04,0.18l3.66,-0.78l2.04,-0.12l0.21,0.35l1.46,0.44l5.01,-0.91l0.33,-0.98l-0.42,-0.4l-1.83,0.11l-0.45,-0.19l-0.2,-0.74l-0.68,-0.16l-1.09,0.67l-1.22,-1.03l-2.07,0.18l0.59,-0.25l0.44,-0.73l1.79,-1.5l0.1,-0.44l-0.38,-0.25l-1.24,0.08l-1.29,0.8l0.0,-0.47l-0.85,-0.4l-0.96,1.04l-0.96,-0.2l-1.87,1.11l-0.5,0.08l-0.43,-0.77l-0.56,-0.05l-1.09,0.68l-1.02,0.2l3.24,-3.36l6.46,-3.39l0.19,-0.5l-0.47,-0.25l-4.22,1.6l-4.19,0.6l-5.77,2.77l-2.94,0.62l-1.85,0.8l-1.08,0.12l-4.35,-1.11l-0.58,0.4l-0.15,1.12l-0.27,0.13l-3.57,-0.23l-0.68,-1.74l0.68,-0.06l0.36,-0.44l-0.1,-1.01l-1.05,-2.18l-0.09,-1.34l0.28,-1.34l0.6,-0.89l1.01,-0.27l0.3,-0.88l-1.49,-1.16l0.52,-1.93l2.34,-3.42l1.07,0.45l0.46,-0.14l-0.19,-0.71l0.54,-0.32l2.86,-0.47l3.08,1.22l1.04,-0.16l0.21,-0.65l-1.67,-2.31l0.37,-0.22l2.65,0.59l1.24,-0.03l0.38,-0.34l-0.26,-0.44l-1.23,-0.43l0.07,-0.55l-0.35,-0.44l4.17,-0.0l3.43,-1.04l1.35,-0.03l0.38,-0.31l-0.2,-0.45l-0.86,-0.45l1.38,-0.23l3.24,-1.36l1.36,0.05l0.84,0.86l-0.39,1.52l0.42,0.5l1.58,-0.18l2.35,-1.07l2.95,0.58l0.4,-0.4l0.0,-0.59l-1.04,-0.57l0.11,-0.28l1.91,-1.43l2.45,-0.6l1.27,0.07l1.03,0.52l0.71,-0.39l0.36,0.69l0.75,0.24l1.01,-1.05l-0.02,-1.18l4.45,-1.51l-0.24,1.62l0.55,0.4l-0.25,0.84l1.04,1.07l-0.07,1.9l0.48,-0.03l1.68,-1.43l0.9,-0.29l-0.28,0.38l0.1,0.75l3.35,2.74l0.61,-0.01l0.45,-0.54l-0.24,-0.79l0.28,-0.74l-0.54,-1.41l0.79,0.35l0.21,-0.4l0.01,-2.72l0.24,-0.43l0.93,0.16l0.45,-0.85l1.48,0.59l2.89,-0.11l2.82,1.61l2.57,-0.38l0.01,5.63l0.41,1.35l3.32,3.92l0.57,1.55l-0.36,1.83l-1.33,2.12l-0.1,1.26l0.52,0.77l1.4,0.36l0.66,0.75l0.01,0.67l-0.6,1.06l-1.9,0.16l-0.76,0.41l-0.39,1.02l0.05,1.22l2.94,1.69l0.6,2.77l2.0,4.19l-0.39,1.62l-1.49,2.95l0.56,2.13l-9.89,3.86l-1.13,1.08l-0.47,1.46l0.1,1.1l3.11,3.22l2.08,5.24l1.33,1.07l3.63,-0.54l1.28,0.09l3.08,1.88l1.56,0.51l3.03,-0.58l0.9,0.18l0.66,0.71l0.41,1.48l-0.28,3.56l-0.88,1.31l-1.5,-0.11l-0.95,0.28l-0.67,0.77l-0.51,1.32l-0.62,0.5l-0.54,0.09l-1.97,-0.83l-1.48,0.68l-0.82,2.17l0.47,2.09l-2.3,-0.46l-2.06,0.0l-1.6,-1.08l-2.25,0.1l-0.95,-0.29l-0.44,-0.91l-0.74,-0.41l-3.29,1.44l-0.96,-0.68l-3.48,0.2l-1.22,-1.97l-0.89,-0.77l0.11,-1.0l-0.37,-0.51l-1.34,-0.44l-0.26,-0.87l-1.15,-1.13l-1.72,-1.0l-1.75,-0.32l-0.44,0.53l0.51,1.46l-0.36,0.96l-0.24,0.22l-0.49,-0.49l-1.37,0.27l-0.79,0.62l-1.44,-1.0l-2.43,-0.67l-0.69,-0.82l-1.04,-2.67l-0.42,0.16l-0.7,1.27l0.43,1.31l1.4,1.55l-1.0,0.23l-0.97,0.66l-0.91,-1.34l-1.28,0.04l-0.48,1.28l0.73,0.75l-0.22,0.89l0.4,0.4l1.27,0.0l-1.81,1.5l-2.27,0.79l-8.52,-0.35l-0.07,-1.48l1.2,-0.18l0.52,-0.76l-0.21,-1.72l-1.54,-4.18l-0.96,-1.47l-2.99,-3.31l-6.1,-3.99l-1.18,0.45l-1.3,1.04l-1.84,-1.46l-3.15,-0.06l-3.8,-0.92ZM1.37,208.95l2.5,-0.92l1.47,0.95l-2.48,1.11l-0.61,-1.01l-0.88,-0.14Z", "name": "Finist\u00e8re"}, "FR-22": {"path": "M104.04,181.46l-0.28,0.54l0.32,0.6l2.41,-0.01l1.55,-1.18l5.84,-2.09l1.17,0.0l1.67,-1.78l0.55,0.11l0.3,0.85l-0.03,1.41l-0.4,1.28l-0.83,1.08l0.5,1.21l0.41,0.18l0.97,-1.9l1.78,-1.89l1.89,-1.51l0.81,0.06l1.06,-1.09l0.51,-0.13l0.85,0.83l-0.4,1.97l0.68,0.68l-1.05,2.42l-1.65,2.02l-0.1,0.85l0.4,0.4l0.8,-0.2l3.03,-4.81l0.76,0.15l1.33,-0.56l0.67,0.24l-0.02,0.75l-1.71,1.0l-0.01,1.15l2.48,1.16l4.01,0.41l0.01,1.2l-0.8,0.72l0.21,0.84l1.94,1.27l1.37,1.73l3.87,2.85l0.88,3.1l-0.26,0.69l0.22,0.77l2.78,1.74l3.18,1.32l-1.16,1.99l1.46,0.52l1.88,1.65l0.62,-0.24l0.25,-2.13l2.16,0.1l1.16,-0.4l3.22,-3.61l5.89,-2.95l0.99,-1.12l0.0,-0.53l-0.84,-0.45l1.49,-0.39l1.05,0.13l0.44,0.89l0.49,0.2l3.51,-1.61l2.1,-2.09l0.67,0.82l1.02,0.23l-1.01,1.46l-1.68,1.58l0.05,0.62l1.51,0.76l3.43,-2.2l0.62,2.37l0.78,0.42l0.63,2.14l0.57,0.3l1.25,-1.02l0.75,0.88l1.35,-0.4l0.22,-0.89l-0.64,-0.57l0.93,-0.86l1.16,0.66l0.55,-0.01l0.02,-0.55l-1.01,-1.64l2.26,-0.68l2.61,-0.22l1.31,2.11l0.42,1.64l1.16,0.92l-0.26,1.06l1.54,2.0l0.32,0.9l-0.23,1.64l0.21,0.41l2.88,-1.61l-0.12,-0.77l0.31,-0.32l1.0,3.2l0.07,0.98l-0.5,1.15l-1.56,2.03l-0.55,1.44l1.21,5.85l-0.19,0.43l-1.6,0.61l-0.26,0.89l0.25,2.37l-1.06,1.3l-1.44,-0.16l-1.87,-0.79l-1.86,-0.12l-1.43,0.93l-1.63,1.7l-2.5,0.01l-0.83,0.43l-0.6,0.93l-0.51,1.8l-1.36,0.88l-0.58,0.89l-0.84,2.78l-3.24,2.24l-1.18,0.08l-1.98,1.13l-1.07,-0.2l-1.02,-1.98l-0.71,-0.74l-2.2,-0.9l-5.18,0.18l-1.12,0.38l-0.78,1.34l-0.32,3.61l-0.63,1.03l-3.24,2.8l-1.93,1.02l-0.89,-0.31l0.03,-6.22l-1.02,-0.8l-3.85,1.09l-2.18,1.62l-1.52,-2.73l-1.06,-0.54l-2.3,-0.42l-4.05,-2.12l-1.96,-0.25l-3.07,0.85l-0.87,-2.72l-1.63,-0.71l-3.91,-0.25l-1.45,0.38l-0.67,0.79l-0.52,1.85l-0.51,0.69l-0.75,0.34l-7.76,0.9l-1.49,-0.44l-1.57,-1.45l-4.69,1.36l-0.71,-0.6l-0.17,-1.41l-0.94,-0.58l-6.12,0.21l0.62,-0.67l-0.63,-2.09l1.45,-2.84l0.43,-1.94l-0.2,-0.94l-1.84,-3.43l-0.68,-2.96l-1.07,-0.87l-1.75,-0.64l0.16,-1.46l2.41,-0.37l0.67,-0.68l0.36,-1.88l-0.59,-1.08l-1.99,-0.83l0.03,-0.79l1.74,-3.13l0.01,-1.29l-0.67,-1.83l-3.26,-3.8l-0.36,-1.12l-0.02,-4.22l2.89,0.27l1.04,-0.44l0.21,-0.49l-0.71,-3.08l2.98,-0.46l0.33,-0.33l-3.03,-3.0l-0.19,-0.98l2.29,-1.26l1.58,-2.51l0.68,0.39l1.86,0.1l2.17,1.06Z", "name": "C\u00f4tes-d'Armor"}, "FR-23": {"path": "M407.84,404.16l2.43,-1.5l1.15,-1.7l-0.27,-0.62l-1.4,-0.23l-1.46,-5.31l-2.08,-1.27l-0.26,-0.59l0.44,-2.8l-0.54,-1.42l-1.49,-1.67l-3.65,-1.46l-0.95,-1.46l-0.08,-1.94l3.24,-5.87l0.11,-1.78l-1.22,-1.12l1.46,-0.82l3.93,-3.54l0.68,-0.15l2.17,0.53l2.02,-0.06l0.36,1.35l0.7,0.52l1.01,0.19l1.02,-0.2l1.87,-1.33l3.01,0.41l0.9,-0.2l1.03,-0.98l0.25,-2.59l0.71,-0.54l0.76,0.32l1.92,1.93l0.96,0.16l2.07,-1.12l1.08,-0.24l5.41,0.14l2.45,0.84l3.5,0.01l2.22,0.72l3.19,-0.59l5.83,0.29l2.01,2.5l1.67,1.44l0.91,2.78l0.59,0.64l0.74,0.43l2.88,0.63l0.67,0.63l1.08,2.07l0.77,0.02l0.86,-0.61l0.63,0.2l3.01,4.0l1.01,3.07l2.11,3.67l-0.39,3.35l0.22,1.7l2.06,4.03l-0.15,3.39l-1.62,1.78l-1.56,3.24l-2.36,2.46l-2.3,0.1l-4.07,3.26l0.03,1.36l1.66,2.11l0.73,2.07l0.5,0.47l1.47,0.35l0.87,0.8l-1.59,1.22l-1.28,0.53l-4.46,-0.26l-0.54,0.33l-1.09,1.7l-2.01,0.86l-0.63,-0.08l-6.99,-3.85l-4.38,-0.7l-1.8,-1.52l-1.17,-0.47l-1.17,0.08l-1.19,0.61l-1.14,1.13l-1.47,2.58l-3.43,0.58l-1.46,-0.05l-1.05,-0.8l0.64,-1.91l0.16,-2.73l-1.27,-1.93l-4.16,-1.9l-1.02,-0.88l-1.0,-1.64l-0.86,-0.45l-1.58,-0.05l-4.36,1.16l-1.89,-0.21l-0.58,-1.04l0.41,-3.19l-0.67,-1.02l-1.19,-0.57l-3.98,-0.11l-0.45,-0.43l0.14,-1.22Z", "name": "Creuse"}, "FR-21": {"path": "M575.96,257.27l0.42,-2.75l1.05,-2.73l2.12,-1.57l13.22,-1.52l1.29,-0.82l0.21,-1.86l1.09,-0.89l1.41,-0.3l3.05,0.51l2.38,-0.98l2.0,1.2l4.19,1.0l-0.48,1.26l0.41,0.79l2.84,0.99l0.59,0.52l-1.02,1.96l0.47,1.65l1.15,0.43l0.67,-0.37l0.54,-0.83l0.47,-0.03l4.35,5.21l1.1,2.15l0.05,1.03l-2.6,0.55l-0.58,0.46l-0.24,0.88l1.41,1.97l0.59,3.57l0.48,0.95l0.76,0.58l1.41,0.03l1.38,-1.3l0.41,0.07l2.15,2.8l2.67,1.55l2.02,-0.25l1.44,-1.65l0.75,-0.28l0.64,1.53l0.67,0.7l3.65,2.12l0.68,2.08l0.72,0.4l0.98,-0.16l2.08,-1.37l1.56,1.15l0.73,-0.29l0.57,-0.7l2.12,0.66l1.85,-1.62l1.32,0.46l0.47,0.78l-0.15,1.58l0.96,1.46l0.24,1.5l-2.04,2.72l-2.41,0.69l-0.46,0.6l-0.51,2.35l0.56,0.82l2.03,0.82l0.58,3.42l0.55,0.75l1.63,1.12l0.52,4.8l1.07,1.44l-1.39,4.41l-0.25,2.08l-0.45,0.8l-5.64,7.93l-5.33,2.53l-0.45,1.23l0.54,1.75l-0.09,0.77l-3.17,1.8l-1.27,-0.38l-1.39,0.38l-2.65,1.37l-5.08,0.22l-1.89,-1.56l-3.71,0.97l-5.06,0.51l-7.43,2.91l-3.36,0.22l-1.48,1.18l-1.07,0.3l-0.64,-0.34l-1.05,-2.42l-3.56,-1.1l-0.91,-0.86l-1.77,-3.81l-0.5,-0.46l-2.63,0.05l-3.91,-1.17l-2.82,-2.95l-2.6,0.5l-1.77,-2.91l-3.29,-1.19l-2.43,-2.51l-1.01,-0.28l0.09,-1.16l0.73,-1.82l-0.33,-1.87l-0.83,-1.33l-1.12,-0.8l-3.77,-0.35l-0.09,-5.37l-1.07,-1.4l-0.27,-2.24l-0.42,-0.68l-0.93,-0.37l-0.88,-2.41l0.48,-0.93l1.77,-0.82l0.87,-1.18l0.15,-3.95l0.39,-0.79l1.06,-0.69l3.61,-5.79l1.07,-2.54l1.57,-1.87l0.79,-2.55l0.09,-3.43l4.19,-1.97l0.84,-1.26l-0.19,-1.71l-1.61,-4.02l-1.03,-0.48l-1.89,0.05Z", "name": "C\u00f4te-d'Or"}, "FR-26": {"path": "M609.51,454.85l0.02,-0.57l3.87,-0.36l5.44,-2.98l1.85,-0.05l0.97,1.55l1.89,0.16l1.14,1.78l0.99,0.77l2.55,0.12l-0.44,2.43l0.54,0.44l2.01,-0.78l0.58,1.1l0.15,2.45l0.87,4.09l-1.17,3.72l0.41,1.63l0.58,0.24l0.72,-0.4l2.23,0.09l0.9,1.68l3.94,0.49l1.79,-0.37l0.3,0.76l0.53,0.35l2.46,0.05l4.23,-2.52l0.98,-0.04l-0.68,1.52l0.16,1.34l1.19,3.22l-0.69,2.72l0.01,2.73l-1.34,7.85l0.13,1.72l1.13,1.08l4.47,1.24l0.51,-0.39l-0.02,-1.07l0.46,0.2l5.46,4.76l7.39,1.17l2.2,-0.2l0.89,0.97l-0.25,1.02l-1.71,1.52l-4.17,1.0l-3.09,-0.29l-1.24,0.51l-0.43,1.87l-2.53,3.81l-0.14,0.94l0.84,1.52l2.0,1.4l0.28,0.97l-0.33,0.33l-3.19,1.81l-4.23,-1.27l-3.35,-0.13l-0.63,0.63l0.07,1.69l0.63,1.09l1.24,0.83l0.0,0.57l-0.98,0.17l-2.3,-0.43l-1.08,0.62l-0.06,0.66l1.42,1.81l0.6,1.94l2.39,1.76l4.27,1.43l3.69,-0.02l-0.41,1.18l0.12,0.71l1.56,1.75l2.09,1.43l-0.14,4.66l-0.66,1.16l0.12,1.87l-0.76,-0.17l-0.63,-1.31l-0.81,-0.55l-1.74,-0.29l-0.98,0.29l-3.26,3.17l-1.73,0.96l-1.95,-0.21l-4.26,-2.77l-0.76,-2.13l-1.01,-1.15l-2.12,-0.25l-4.34,-1.4l-2.82,0.21l-2.6,-0.66l-0.67,-0.77l-0.1,-1.5l0.78,-2.2l-0.29,-0.88l-0.62,-0.28l-2.47,1.42l-4.48,-0.52l-4.27,1.08l-3.5,1.47l-2.77,0.41l-2.98,1.5l-1.01,-0.71l-1.74,-4.11l-1.5,-1.39l-1.0,-0.49l-1.77,-0.25l-3.2,0.13l0.91,-6.09l-0.09,-0.98l1.91,-3.48l1.11,-7.45l1.1,-2.37l3.09,-4.1l0.42,-3.02l-1.45,-3.45l-0.09,-2.65l0.96,-1.96l2.09,-1.76l0.57,-1.55l1.89,-1.85l1.93,-5.75l-0.42,-1.5l-1.76,-2.74l-0.36,-1.32l0.45,-3.31l-1.04,-1.77l0.19,-0.82l-0.19,-0.44l-1.15,-0.66l0.27,-3.41l-0.8,-2.96l-0.1,-4.66l0.26,-1.41l-0.36,-0.43ZM619.51,528.65l1.54,-0.89l1.27,-2.18l1.36,-1.26l0.07,-0.97l-0.77,-1.43l-2.49,-2.28l-2.0,-0.54l-1.01,0.36l-0.89,0.76l-3.05,4.55l-0.55,2.1l0.5,1.33l0.7,0.43l5.31,0.04Z", "name": "Dr\u00f4me"}, "FR-27": {"path": "M332.92,132.9l6.85,-1.33l2.9,-1.27l2.43,-2.0l2.13,1.51l2.15,2.4l1.37,0.48l2.33,-0.41l1.96,2.85l2.96,0.4l5.7,-1.35l0.69,0.25l2.91,2.44l2.44,1.07l0.61,0.63l0.04,1.17l-3.24,-0.47l-0.43,0.53l1.04,2.61l1.94,1.1l2.11,0.61l3.9,2.82l1.33,0.19l1.52,-0.46l0.26,-0.51l-0.39,-1.15l0.41,-0.82l0.89,-0.65l4.02,-0.98l0.71,-0.53l0.82,-1.31l1.09,-0.77l1.27,-0.37l4.38,0.27l1.04,-0.64l2.79,-5.08l1.55,-1.8l2.41,-0.87l8.83,1.1l8.42,3.24l2.29,-0.78l0.17,1.85l1.76,5.64l1.98,4.52l-0.91,-0.06l-0.81,-0.99l-1.21,-0.74l-0.85,0.03l-0.88,0.48l-0.92,1.37l0.38,1.6l-1.77,3.08l-2.9,8.4l-2.17,1.01l-7.75,1.57l-0.75,0.55l-0.17,1.05l0.69,1.52l-0.24,2.26l0.57,0.74l1.67,0.42l0.21,2.28l-2.16,1.15l-0.44,0.6l-0.21,0.94l0.52,1.61l-0.14,1.15l-0.79,0.76l-2.47,1.15l-1.51,1.17l-1.09,1.61l-0.67,1.82l-0.53,0.5l-4.94,2.31l-1.82,-0.62l-3.38,0.04l-2.24,-1.49l-1.25,-0.15l-0.48,0.48l-0.06,1.17l-0.31,0.42l-3.47,0.34l-2.42,2.37l-1.92,0.04l-5.91,1.45l-1.53,0.88l-1.84,1.69l-2.56,-0.94l-1.25,-1.56l-1.01,-0.49l1.29,-1.62l0.54,-1.51l-1.16,-2.36l-1.26,-0.82l-2.33,-0.57l-1.49,-0.86l-2.76,-3.3l-0.98,-2.3l-0.73,-0.39l-0.92,0.06l-2.15,0.77l-4.68,-1.11l-2.05,0.04l-1.51,-1.08l-0.27,-0.99l1.87,-3.64l0.25,-4.05l-0.86,-1.45l-2.12,-1.54l-0.49,-1.34l0.35,-0.36l1.57,0.06l0.59,-0.55l-0.39,-2.41l0.87,-2.03l-1.68,-3.19l-0.73,-2.11l-2.48,-2.25l-0.45,-0.94l0.06,-0.6l2.03,-0.96l0.42,-0.91l-0.82,-1.2l-2.45,-0.56l-1.1,-1.77l-0.07,-6.22l-0.51,-3.02Z", "name": "Eure"}, "FR-24": {"path": "M314.48,486.38l2.21,-3.24l-0.09,-0.97l-1.46,-1.8l0.11,-0.89l1.91,-2.6l-0.01,-1.78l1.7,-3.57l-0.17,-1.51l-1.03,-2.19l-1.3,-0.94l-3.17,0.0l1.56,-1.93l0.02,-0.71l-0.65,-1.26l0.58,-0.84l4.32,-2.1l0.99,-0.15l2.1,0.65l1.19,-0.32l1.22,-1.11l0.8,-1.83l2.77,-1.19l1.9,-1.66l0.55,-1.77l-0.03,-3.99l0.77,-2.85l0.66,-1.26l6.52,-4.29l1.11,-0.35l0.88,0.11l0.87,-0.54l4.41,-6.14l0.49,-1.81l0.23,-3.15l0.79,-0.39l1.26,-0.03l0.77,-0.51l2.26,-3.05l1.88,-1.54l1.09,0.73l4.71,0.47l2.19,2.61l-0.7,2.48l0.06,0.82l1.7,1.06l2.04,0.48l1.19,-0.1l0.81,-0.34l1.25,-1.36l1.25,0.8l3.25,-0.49l4.3,0.25l3.95,4.87l1.43,0.54l2.5,0.33l0.6,0.42l-0.17,0.68l-1.67,1.44l-0.1,0.87l0.38,0.6l4.23,2.02l1.93,-0.26l1.79,1.23l1.56,0.22l-0.04,0.74l-1.01,1.7l0.11,1.19l0.83,0.73l2.37,-0.06l-0.41,1.14l-1.53,0.87l-2.43,2.37l-0.63,3.22l0.4,0.65l1.93,1.39l-0.41,0.68l-1.65,1.24l-0.56,1.57l0.46,0.73l2.59,0.41l0.07,0.86l-0.73,1.62l0.87,1.3l2.81,1.17l3.51,-0.14l0.38,0.23l-0.49,2.38l0.26,0.87l1.61,2.88l1.96,2.11l-1.43,0.93l-0.47,1.47l1.31,4.0l-0.03,0.72l-0.72,1.24l0.17,1.64l-2.71,2.63l-1.66,2.62l-2.23,0.65l-0.87,1.1l-0.29,0.94l0.72,1.44l-0.03,0.57l-1.25,1.78l-4.31,2.66l-2.26,0.48l-1.02,0.79l-3.42,5.27l-2.22,1.89l-1.15,-1.69l-2.43,-1.73l-2.96,-1.21l-2.23,0.1l-3.98,2.49l-1.65,0.12l-1.09,-1.41l1.15,-1.09l0.19,-1.6l-0.74,-1.47l-1.44,-1.06l-1.33,-0.13l-3.49,1.12l-2.89,0.24l-1.12,-0.4l-0.76,-1.1l-0.75,-0.43l-2.73,-0.11l-0.98,0.27l-1.66,2.01l-0.66,0.39l-1.74,-0.76l-0.88,-0.04l-4.01,2.01l-1.21,0.29l-2.31,-0.83l-1.43,-2.24l-1.35,-2.99l-2.8,-3.51l-0.48,-1.07l-0.54,-2.25l1.77,-0.61l1.64,-1.81l-0.08,-0.54l-0.82,-0.74l-4.83,-1.21l-0.43,0.55l0.31,0.75l-2.6,2.49l-0.96,0.33l-8.53,-1.0l-2.05,-1.71Z", "name": "Dordogne"}, "FR-25": {"path": "M688.99,356.49l-3.01,-2.44l-0.3,-1.03l2.61,-2.75l-0.18,-0.94l-0.68,-1.03l-0.01,-0.89l6.56,-4.56l0.94,-1.19l-0.07,-0.55l-7.63,-6.19l-3.48,-0.87l-1.8,-2.69l-0.2,-3.0l-0.41,-1.24l-1.38,-2.14l-0.82,-0.72l-2.31,-1.03l-4.64,-0.91l-2.02,-1.7l-1.1,0.17l-1.14,1.02l-0.84,-0.15l-0.19,-0.71l0.21,-0.42l1.01,-0.87l0.65,-1.18l-0.05,-2.0l1.71,-1.85l0.57,-1.45l0.03,-0.97l-2.12,-3.71l-3.5,-2.24l-1.18,-2.95l1.46,-0.01l11.91,-6.07l4.21,0.52l4.83,-1.49l2.98,-2.96l1.96,0.09l1.28,-0.46l1.15,-1.98l0.7,-0.56l2.48,0.3l1.02,-0.19l1.05,-0.99l1.87,-4.02l1.59,-0.97l6.12,-0.77l2.06,1.6l0.7,-0.11l1.02,-0.95l3.1,1.45l1.21,-0.84l1.11,-2.3l0.58,-0.55l2.31,0.4l2.04,-1.31l2.08,-0.58l4.57,1.14l1.75,-1.38l1.11,1.02l2.86,-0.39l1.23,0.06l0.74,0.46l0.78,1.52l-0.56,1.79l0.03,0.89l1.44,4.33l-0.72,0.44l-0.08,1.24l-1.37,0.7l-1.06,1.16l-1.11,2.3l0.42,0.52l7.29,-0.62l1.04,-0.41l2.04,1.73l-0.29,0.52l-1.73,0.73l-0.94,1.05l-0.92,0.22l-1.15,1.02l-0.52,1.79l0.21,1.82l-4.0,2.53l-1.78,1.58l-1.19,1.68l-3.91,3.12l-1.76,0.53l-0.28,0.41l0.06,1.05l-0.9,0.44l-0.31,0.51l-1.37,0.42l-0.72,0.57l-0.9,1.31l0.59,1.61l-1.2,1.49l-3.98,2.62l-6.53,1.77l-3.04,1.51l-1.11,2.94l1.07,2.32l0.08,1.66l-1.81,4.3l0.94,1.51l-0.16,1.55l-1.18,1.03l-2.12,1.0l-2.15,1.96l-4.43,2.12l-8.29,6.58l-0.82,0.93l0.08,1.25Z", "name": "Doubs"}, "FR-MQ": {"path": "M29.58,521.59l2.04,4.09l0.61,0.13l1.69,-1.37l2.35,-1.15l2.71,-0.7l1.66,-0.01l-1.1,1.0l0.15,0.92l-1.99,2.03l-1.17,-1.91l-0.57,-0.12l-1.08,0.91l-0.34,2.42l0.25,2.72l0.56,0.33l1.58,-0.37l0.87,0.65l-2.81,1.51l-0.09,0.63l0.51,0.51l-0.97,0.5l-0.21,0.44l0.48,1.35l1.03,0.35l0.45,-0.14l0.84,-1.13l2.53,1.1l-1.26,0.61l-0.22,0.52l0.83,1.98l1.01,1.02l2.32,1.31l0.92,2.1l2.03,0.78l0.32,0.71l-0.03,1.98l0.6,0.39l0.71,-0.41l-0.25,2.4l0.41,1.46l0.77,1.07l-1.35,1.57l0.15,0.59l1.42,0.69l1.69,5.35l-1.43,0.75l-1.43,3.51l-1.14,1.51l-1.19,0.51l-1.52,0.14l-1.15,-0.51l-0.42,-1.43l0.56,-0.96l1.27,-0.41l1.36,-0.96l0.05,-2.11l-1.15,-1.71l-0.48,-0.15l-3.49,1.8l-1.39,-0.1l0.06,-0.84l-0.32,-0.42l-0.79,-0.15l-3.38,0.55l-6.91,-0.91l-2.07,0.3l-2.92,1.18l-1.59,0.24l-0.81,-0.46l-2.5,-3.48l-0.12,-1.4l-1.35,-0.99l2.86,-2.99l3.07,-1.49l0.78,-0.71l1.21,1.62l2.11,0.55l1.94,-0.83l0.87,-2.13l-2.15,-3.7l-0.25,-2.0l-0.53,-0.33l-3.16,0.87l-5.49,-0.02l-1.6,-2.4l-4.32,-2.94l-2.07,-1.98l-1.24,-3.51l-1.31,-1.93l0.78,-2.27l-0.31,-1.75l-1.64,-2.67l-3.41,-3.56l-0.79,-1.4l-0.29,-1.59l0.29,-1.51l0.74,-1.23l0.98,-0.9l4.61,-2.61l4.02,-0.06l3.94,1.27l5.23,3.33l4.71,2.09l1.84,1.19l1.36,2.81l1.45,0.5Z", "name": "Martinique"}, "FR-94": {"path": "M466.21,178.65l2.11,0.61l2.35,1.33l2.16,1.85l0.38,4.44l-0.29,1.33l-1.36,1.9l-0.03,0.91l-1.22,-0.15l-1.91,-2.76l-1.06,-0.43l-6.59,0.94l-0.95,-0.2l-1.79,-1.39l-1.1,-0.45l-0.05,-2.34l0.67,-2.35l6.74,0.05l1.04,-0.63l0.91,-2.65Z", "name": "Val-de-Marne"}, "FR-93": {"path": "M472.66,181.23l-1.56,-1.32l-2.43,-1.37l-5.3,-1.53l-2.33,-2.22l-1.05,-0.36l-5.61,0.01l2.25,-0.99l0.64,-0.68l0.25,-1.61l-0.47,-0.74l1.16,-0.77l5.85,1.29l2.14,-0.65l3.11,-2.8l1.54,-0.8l0.44,0.13l0.66,0.88l-0.46,1.83l1.31,2.84l0.0,1.04l-1.18,3.47l-0.12,1.34l1.15,3.02Z", "name": "Seine-Saint-Denis"}, "FR-92": {"path": "M453.01,174.53l-2.13,2.61l-0.44,1.64l0.52,1.5l0.5,0.25l1.06,-0.33l4.2,1.5l-0.66,2.43l-0.15,1.7l0.24,1.0l-0.8,1.08l-0.44,-0.05l-1.28,-1.75l-1.79,-0.89l-4.42,-4.05l-0.76,-1.72l-0.05,-3.0l1.83,-2.23l1.79,-0.6l2.49,-1.89l2.33,-0.89l1.22,-0.09l0.43,0.49l-0.12,1.09l-3.59,2.2Z", "name": "Hauts-de-Seine"}, "FR-91": {"path": "M456.79,187.38l2.59,1.71l1.27,0.31l6.54,-0.94l0.61,0.19l1.97,2.81l0.97,0.45l0.87,-0.1l0.16,0.88l-2.22,2.01l-0.87,1.32l-0.24,4.09l-1.52,5.03l0.4,6.02l0.31,0.86l0.95,0.72l-2.17,1.51l-5.68,5.42l-0.27,1.05l-1.4,0.19l-2.83,-1.36l-0.86,0.16l-1.36,1.23l-1.4,0.35l-0.76,-0.38l-0.47,-1.03l-0.68,-0.61l-0.85,-0.52l-0.84,-0.03l-0.66,0.4l-1.38,1.92l-1.99,0.8l-8.7,1.71l-0.72,-0.42l-0.0,-0.42l1.65,-1.87l0.02,-0.74l-1.91,-1.77l-0.62,-2.84l-0.52,-0.9l-1.62,-1.5l-0.13,-3.53l2.05,-7.23l2.71,-0.1l1.11,-0.59l0.78,-1.27l0.5,-2.83l-0.54,-3.08l0.18,-1.2l1.3,-1.52l2.25,-0.6l0.6,-0.93l0.51,-2.22l0.82,-1.31l5.93,-1.53l0.8,0.81l1.61,0.75l1.6,1.97l1.04,0.01l0.7,-0.5l0.4,-0.78Z", "name": "Essonne"}, "FR-90": {"path": "M734.8,260.13l0.14,1.19l0.91,0.99l8.6,4.3l1.49,1.43l0.42,3.57l-0.51,1.44l-1.54,2.09l0.01,1.47l0.98,0.9l2.57,0.38l3.26,3.13l0.91,1.7l-0.38,2.33l-2.02,-0.53l-3.13,0.45l-2.79,-0.68l-2.25,0.79l-0.29,0.46l0.15,0.87l0.88,1.86l-1.14,1.05l-1.28,0.52l-1.43,-4.29l0.53,-2.44l-0.33,-1.39l-0.77,-0.9l-1.08,-0.61l-4.07,0.32l-0.83,-0.9l0.15,-1.25l-1.27,-1.96l-0.19,-3.89l-1.58,-4.63l0.26,-2.81l1.14,-2.01l2.88,-3.16l1.57,0.24Z", "name": "Territoire de Belfort"}, "FR-17": {"path": "M244.25,389.03l0.07,-0.62l-0.38,-0.5l-2.85,-0.2l-0.42,-0.73l1.36,-1.47l0.19,-0.43l-0.29,-1.3l0.52,-0.79l4.3,-2.4l0.54,-1.19l-0.81,-3.17l1.05,-1.33l0.86,-0.51l6.91,-1.45l0.17,0.65l-1.0,1.63l0.99,0.9l1.99,-0.09l4.86,-0.96l1.46,0.21l4.02,2.22l0.83,2.01l-0.02,0.89l-0.54,0.92l0.13,0.54l1.67,1.05l5.25,5.83l1.44,0.93l1.64,0.37l2.47,-0.03l1.07,0.48l2.44,2.27l4.27,-0.1l3.24,2.1l4.08,0.11l2.6,0.81l4.93,3.14l3.23,3.61l1.35,0.53l0.76,1.2l-0.59,0.7l-2.91,0.66l-0.35,0.33l-0.05,0.62l1.66,4.54l0.07,0.94l-0.24,1.04l-0.93,1.34l-1.71,1.68l-1.68,0.97l-1.08,-0.4l-1.42,-1.39l-1.56,-0.29l-5.31,1.39l-3.52,0.2l-1.54,0.5l-1.01,1.01l-0.55,2.06l0.41,0.49l2.22,-0.09l0.28,5.29l-0.58,2.52l0.05,1.06l0.3,0.36l2.01,0.51l5.09,3.43l-1.26,1.89l0.12,0.61l4.33,2.22l-1.19,2.13l1.11,2.92l-0.43,1.28l-0.85,1.14l-2.34,1.67l-0.02,0.63l1.71,1.72l-0.36,1.26l0.14,1.33l0.44,0.68l0.99,0.35l3.23,-0.63l4.16,1.92l1.86,0.07l-0.34,2.71l0.36,0.45l4.73,0.43l1.66,1.08l0.31,2.23l-0.73,1.33l0.67,1.71l-1.85,2.2l-1.43,0.56l-1.58,-0.52l-1.1,0.11l-2.6,1.0l-1.58,0.23l-3.9,-1.19l-2.34,-1.94l-1.85,-0.63l-1.88,-1.13l-2.58,0.24l-0.76,-0.22l-1.52,-2.46l-0.05,-3.59l-1.3,-1.65l-2.79,-1.63l-2.48,-0.15l-1.8,-0.57l-0.72,-2.44l-1.16,-1.24l-1.2,0.22l-0.92,1.41l-0.63,0.41l-4.5,-0.2l-0.74,-2.71l-2.06,-4.83l-2.62,-4.07l-2.88,-2.9l-8.68,-5.52l-0.48,-1.77l-2.47,-1.03l-3.22,-2.81l-4.04,-1.44l-2.76,-2.39l-2.34,0.33l-0.67,-0.24l0.99,-5.73l3.71,-0.99l0.98,0.04l3.79,3.91l1.46,1.04l4.4,1.81l0.48,-0.15l-0.05,-0.5l-1.38,-1.36l-5.52,-3.9l-1.78,-2.15l-0.36,-2.01l-0.73,-1.64l2.03,-1.93l0.85,-0.46l1.49,-0.18l0.47,-1.14l-0.1,-1.07l-0.95,-1.64l0.89,-0.77l-0.02,-0.68l-0.92,-0.54l-1.09,-2.34l1.82,0.24l0.92,-0.76l0.72,-1.95l-0.78,-1.03l-1.49,-0.65l-0.71,-3.23l-1.9,-1.16l0.55,-0.47l-0.04,-0.64l-1.96,-1.09ZM235.41,400.43l1.09,0.41l1.35,-0.28l0.64,0.57l0.15,2.37l0.68,0.73l-0.16,1.32l2.38,1.46l0.35,0.53l-0.41,3.62l-0.61,1.91l-0.67,0.91l-0.62,-0.25l-0.84,-2.53l-1.25,-2.19l-3.59,-3.54l-1.32,-0.83l-2.14,-2.59l0.33,-1.57l-1.72,-3.8l1.1,0.13l1.99,0.91l3.27,2.7ZM219.58,381.29l3.07,-0.67l0.94,0.18l0.51,0.48l-0.09,0.29l-1.95,-0.5l-0.35,0.62l1.41,1.8l1.75,-0.06l1.83,-0.69l0.25,0.77l1.02,0.43l6.19,0.88l1.32,0.74l1.5,1.94l-0.96,0.35l-3.3,-0.75l-5.87,-3.31l-3.6,0.51l-0.76,-0.27l-2.9,-2.73Z", "name": "Charente-Maritime"}, "FR-16": {"path": "M362.89,390.47l0.58,2.28l-0.05,2.42l0.47,1.18l2.26,2.74l0.64,0.29l1.45,-0.41l0.5,0.27l1.86,3.56l-1.18,1.27l-1.48,0.92l-1.24,0.43l-2.32,0.15l-0.58,0.36l-0.39,1.01l0.03,1.69l-1.25,6.55l-0.51,0.55l-1.1,0.02l-1.68,-0.77l-1.19,0.49l-0.97,1.76l-2.34,1.96l-1.37,2.98l-2.13,1.76l-2.19,2.98l-0.47,0.34l-1.88,0.21l-0.55,0.47l-0.33,0.71l-0.08,2.84l-0.44,1.62l-4.25,5.89l-2.66,0.63l-6.76,4.5l-0.78,1.47l-0.8,2.98l-0.04,4.61l-0.94,1.41l-1.05,0.85l-2.57,1.0l-0.63,0.64l-0.63,1.62l-0.92,0.86l-0.88,0.24l-2.68,-0.62l-4.63,2.09l-0.46,-2.32l-1.9,-1.24l-4.6,-0.47l0.35,-2.74l-0.39,-0.45l-2.07,-0.04l-4.41,-1.97l-3.64,0.52l-0.36,-1.43l0.32,-1.55l-0.46,-0.82l-1.1,-0.91l1.97,-1.41l1.07,-1.44l0.49,-1.76l-1.1,-2.64l1.3,-2.17l-0.15,-0.57l-4.28,-2.2l1.22,-1.86l-0.09,-0.59l-5.52,-3.72l-1.92,-0.51l0.55,-3.24l-0.25,-5.68l-0.42,-0.42l-2.13,0.09l0.3,-1.25l0.86,-0.86l1.22,-0.36l3.51,-0.2l5.08,-1.38l1.34,0.25l1.18,1.25l1.5,0.6l2.31,-1.18l1.82,-1.8l0.99,-1.44l0.34,-1.31l-0.1,-1.28l-1.64,-4.51l3.05,-0.82l0.85,-1.01l0.03,-0.47l-0.7,-1.1l2.14,-1.0l3.16,-5.24l2.77,-2.14l3.15,-1.37l2.74,-0.38l2.49,1.27l1.37,-0.59l1.27,0.36l2.69,1.78l1.37,0.37l7.15,-0.07l2.62,0.71l1.14,-0.58l0.82,-1.73l-0.13,-0.5l-1.38,-0.98l1.45,-2.09l1.35,-0.14l3.32,3.2l3.03,0.6l3.05,-0.72l3.64,-3.43l4.95,0.29Z", "name": "Charente"}, "FR-15": {"path": "M458.84,445.76l1.95,-0.35l3.03,1.58l1.95,0.27l0.86,-0.25l0.6,-0.61l0.62,-1.58l1.16,-4.44l0.73,-0.04l3.18,1.89l3.22,0.73l1.42,0.74l2.43,3.63l2.81,0.16l5.14,-0.78l3.9,1.73l0.89,0.93l1.96,3.79l3.01,1.68l2.83,-0.95l3.8,-3.67l0.38,1.88l-0.06,2.68l0.45,0.41l3.22,-0.38l1.54,0.27l1.42,0.66l0.39,0.49l0.46,2.74l1.75,2.34l0.32,0.9l0.47,4.09l1.0,1.32l2.22,0.5l0.12,0.72l-2.16,2.18l-0.27,1.3l0.38,1.24l3.69,3.59l0.61,1.24l0.11,1.01l-1.67,0.38l-3.17,1.81l-1.69,-0.0l-0.85,0.32l-4.65,3.8l-0.58,0.1l-1.2,-1.57l-0.6,-0.32l-1.46,0.59l-0.57,0.8l-0.62,3.19l-1.64,1.03l-0.58,0.99l-1.42,4.71l-0.35,2.6l-1.83,2.78l-0.72,2.01l-1.6,-1.21l-1.15,-1.79l-0.53,-3.47l-0.56,-1.36l1.14,-0.77l-0.12,-1.16l-2.88,-1.38l-0.69,-1.95l-2.44,-3.26l-0.78,-0.22l-2.44,0.35l0.05,-1.49l-0.34,-1.19l-1.91,-2.42l-1.03,-0.42l-8.44,7.7l-0.74,2.6l-2.44,3.55l-0.58,2.41l-3.68,3.99l-0.93,0.45l-1.89,0.2l-3.45,-0.1l-1.45,0.62l-1.19,-1.14l-1.48,-0.11l-5.33,1.64l-0.67,1.8l-0.21,-0.03l-0.95,-1.01l-0.89,-3.39l-1.7,-1.05l1.55,-5.49l-0.1,-0.85l-1.32,-2.73l-3.07,-4.61l-0.85,-5.71l-0.6,-1.16l0.94,-0.4l2.23,-0.24l1.11,-0.74l0.08,-1.24l-1.43,-2.43l-0.11,-0.76l3.2,-2.58l2.85,-5.59l0.22,-1.14l-1.07,-2.31l0.11,-1.37l2.59,-1.98l0.51,-1.87l3.08,-1.33l2.04,-2.9l1.09,-0.69l1.42,-3.08l-0.14,-1.07l-0.95,-0.99Z", "name": "Cantal"}, "FR-14": {"path": "M332.14,133.05l0.5,2.91l0.12,6.48l1.43,2.16l2.42,0.54l0.46,0.57l-0.57,0.58l-1.68,0.72l-0.23,1.35l0.62,1.25l2.42,2.18l0.67,1.99l1.53,2.55l-0.8,2.37l0.44,2.09l-1.99,0.1l-0.58,1.01l0.65,1.85l2.18,1.62l0.66,1.06l-0.48,4.27l-1.02,-1.0l-1.2,-0.16l-2.3,1.38l-0.84,0.1l-1.86,-0.85l-0.91,-1.19l-1.02,0.1l-1.91,2.15l-2.8,0.09l-2.06,1.2l-1.53,-1.99l-1.73,0.25l-3.13,3.65l-11.86,5.98l-10.27,-2.39l-1.31,0.46l-0.43,1.35l-0.43,0.43l-1.16,-0.68l-2.68,-2.58l-2.04,-0.34l-3.2,1.7l-7.41,1.57l-4.44,-0.95l-1.37,1.01l-0.13,0.93l0.58,0.88l-0.66,0.7l-4.12,0.97l-1.09,0.66l-1.67,1.7l-1.01,0.33l-3.39,-1.55l-3.63,-0.84l-2.55,0.72l-2.87,-0.11l-2.72,-0.89l-0.41,-1.55l-0.54,-0.63l-2.19,-0.52l0.8,-1.64l1.8,-1.44l2.54,-0.96l1.41,-1.45l0.05,-1.06l-1.6,-1.58l-0.02,-0.85l0.4,-0.78l0.65,-0.34l2.53,0.58l1.24,-0.22l2.04,-1.45l3.38,-3.42l1.9,-0.87l0.2,-0.52l-0.48,-1.11l-0.84,-5.35l-2.31,-4.25l0.77,-3.01l-0.34,-0.92l-0.94,-0.21l-3.67,1.17l-1.36,-0.09l-6.82,-6.1l-0.76,-1.51l1.05,-2.02l0.04,-1.46l0.93,-0.54l-0.09,-0.79l-0.48,-0.6l0.33,-0.79l0.91,-0.85l0.91,-0.36l7.94,0.35l7.3,2.35l10.46,0.54l4.16,0.79l2.31,-1.02l4.08,1.27l4.12,0.0l2.91,1.4l3.03,0.6l5.69,2.93l1.91,-1.18l9.72,-1.95l2.93,-1.18l1.7,-1.25l1.45,-0.37l2.06,-2.35l3.94,-2.42l7.63,-1.46Z", "name": "Calvados"}, "FR-13": {"path": "M574.87,589.37l0.92,-0.18l1.37,-1.04l2.17,-0.54l3.45,-2.45l1.63,-0.49l0.58,-1.36l1.97,-0.33l0.5,-0.38l0.72,-1.53l-0.09,-0.84l-1.94,-0.6l1.3,-2.75l1.5,-1.9l1.28,-0.92l2.03,-0.52l3.72,1.32l1.03,-0.3l0.65,-1.54l-0.04,-1.78l1.98,-4.92l-0.49,-4.74l5.08,-3.33l2.62,-1.09l7.98,2.74l3.77,2.11l7.34,6.02l6.46,2.82l3.93,0.02l4.9,0.69l2.46,2.09l2.3,1.25l7.19,1.94l3.24,0.25l2.63,-1.13l1.36,-1.05l4.1,-0.86l2.52,-1.83l0.87,0.32l1.2,2.08l0.89,0.51l-1.04,1.57l-5.2,1.45l-1.69,2.68l0.17,2.27l2.54,2.31l0.04,0.87l-0.92,2.93l0.18,1.74l3.7,4.62l-0.86,0.23l-2.91,-0.16l-1.58,0.6l-0.22,0.53l1.07,2.83l-0.63,1.29l-0.12,1.51l0.56,1.02l1.68,-0.02l1.52,0.96l0.62,1.17l-0.73,0.94l-1.96,0.9l-1.32,1.08l-0.82,1.73l-0.43,2.15l-2.32,-0.23l-1.22,1.76l-2.05,-0.53l-1.98,-2.66l-0.96,-0.55l-1.48,0.47l-6.6,-0.49l-1.53,0.31l-1.02,-0.43l0.34,-1.68l0.94,-1.98l-0.08,-0.43l-0.62,-0.64l-1.13,-3.95l-2.92,-1.81l-3.73,1.99l-4.48,-0.09l-2.35,0.26l-3.62,-0.16l-1.71,-0.5l-1.11,-1.51l-0.44,-1.53l1.11,-1.82l1.71,-0.86l5.36,0.0l1.8,-0.48l2.62,-2.32l0.89,-2.0l-0.21,-1.77l-0.6,-0.3l-3.34,1.54l-1.34,-0.21l-1.17,-1.2l-0.81,-2.2l-1.53,-0.53l-1.81,-0.01l-1.47,-1.47l-0.5,0.08l-0.49,0.59l-0.81,2.82l0.42,1.59l2.15,1.63l0.63,1.61l-0.57,1.4l-1.25,0.8l-1.63,0.16l-4.46,-1.86l-2.21,1.1l-1.58,0.35l-0.71,0.61l-0.46,1.44l0.98,2.54l0.42,0.33l0.81,-0.05l-1.29,0.81l-1.31,-2.62l-2.66,-1.4l-1.98,-1.65l-0.86,-1.8l-0.02,-5.7l-1.08,-2.53l-0.85,-1.1l-1.19,-0.67l-0.59,0.35l0.0,0.46l2.09,3.43l0.0,5.28l0.86,2.64l4.89,4.15l-0.11,1.02l-9.05,-0.1l-4.41,-0.9l-1.34,-0.7l-0.03,-0.85l1.11,-1.09l0.22,-1.41l-0.65,-1.13l-1.58,-1.03l-2.76,-0.96l-6.31,0.6l-10.72,-0.78l1.08,-2.45Z", "name": "Bouches-du-Rh\u00f4ne"}, "FR-12": {"path": "M496.69,503.56l5.22,5.97l1.03,1.89l-0.19,2.29l0.3,1.4l3.32,4.5l-0.18,2.17l-0.64,1.51l-0.08,1.13l0.32,2.23l1.01,1.78l-1.38,2.78l0.09,1.06l1.58,0.39l3.9,2.06l0.78,0.87l0.34,1.61l0.66,0.45l6.25,-0.23l1.47,0.82l0.29,0.68l-1.87,1.21l-1.04,1.36l-0.22,2.18l-2.12,1.24l-0.14,0.98l1.39,1.0l1.66,-0.16l1.15,1.08l2.11,0.24l2.74,1.92l0.74,1.08l-5.4,4.95l-1.0,2.67l-1.08,0.84l-2.91,0.28l-1.88,1.2l-0.58,0.8l-0.32,1.84l-1.22,1.35l-1.52,0.35l-5.75,-0.72l-2.03,0.54l-0.42,0.6l-0.29,1.6l0.73,1.98l-0.44,1.8l0.13,1.84l-0.64,1.29l-1.29,0.19l-2.18,-0.74l-2.67,0.48l-0.59,-1.83l-1.29,-1.26l-5.47,-1.39l-3.0,1.45l-1.79,0.45l-1.91,-0.45l-2.02,-1.27l-3.54,-3.31l-1.66,-2.27l-1.18,-2.69l-0.93,-3.79l-2.18,-2.52l0.34,-2.35l-2.77,-4.03l-1.28,-1.09l-2.75,-0.57l-0.93,-2.29l-1.02,-1.08l-2.26,-1.19l-2.6,-0.58l-1.68,-1.39l-2.52,-0.18l-1.78,-1.74l-3.12,-1.79l-1.43,-0.3l-1.58,0.16l-5.48,2.79l-1.48,0.37l-1.08,-1.93l-3.23,-0.97l-0.49,-1.35l0.62,-1.43l2.44,-1.04l0.72,-2.26l-0.35,-0.49l-4.72,-0.46l-1.09,-0.58l0.05,-2.42l1.74,-1.34l0.2,-1.22l-2.54,-3.9l-1.55,-5.39l5.46,-2.32l3.69,-2.65l4.47,-2.28l4.69,0.38l2.58,-0.64l1.69,-1.09l0.08,-1.68l0.48,-1.65l0.74,-0.34l4.28,-1.18l1.0,0.08l1.12,1.11l0.62,0.08l1.36,-0.63l3.34,0.11l1.98,-0.21l1.17,-0.54l3.99,-4.3l0.61,-2.45l2.43,-3.52l0.63,-2.44l7.94,-7.42l2.16,2.45l0.35,2.78l0.85,0.31l2.55,-0.29l2.18,2.96l0.8,2.12l1.02,0.73l1.85,0.66l-1.03,0.82l-0.2,0.72l0.58,1.36l0.56,3.56l1.34,2.1l2.09,1.6Z", "name": "Aveyron"}, "FR-11": {"path": "M447.59,651.06l0.02,-0.92l-0.7,-1.19l-3.09,-1.57l-1.3,-1.89l-0.78,-0.52l-1.45,-0.09l-4.97,0.99l-3.19,-1.51l-0.09,-2.0l-0.33,-0.79l-1.13,-1.02l-1.47,-0.6l1.45,-2.0l2.2,-0.09l2.98,-1.12l0.66,-0.91l-0.7,-3.27l-1.98,-1.59l0.22,-0.47l2.52,-0.94l0.35,-0.87l-1.18,-4.24l-1.84,-1.68l1.01,-1.4l-0.13,-1.62l-0.81,-1.39l-1.37,-1.06l-2.78,-0.31l-2.44,-1.23l-5.03,-1.67l-2.51,-2.02l-0.25,-1.95l-0.77,-1.95l0.54,-2.7l1.15,-1.61l0.25,-1.25l2.04,-0.61l1.77,-0.12l1.18,-0.91l0.17,-0.74l-0.43,-1.26l0.08,-0.79l1.5,-1.66l0.46,-1.21l1.39,0.39l0.18,1.21l0.84,0.58l4.13,-1.6l4.75,-0.59l1.8,1.66l1.22,0.49l1.49,0.09l3.87,-0.65l2.63,1.32l1.45,-0.69l0.36,-1.12l-0.32,-1.36l0.34,-0.67l0.77,-0.52l7.02,1.26l5.86,-0.38l6.37,0.52l1.03,0.55l-1.22,1.31l-0.84,1.82l0.3,1.84l1.51,1.68l1.85,1.41l1.87,0.88l1.81,-0.36l1.11,-1.37l1.13,3.01l2.95,1.49l0.41,-0.07l5.14,-4.34l0.88,-2.31l-0.02,-2.2l0.19,-0.52l0.5,-0.11l0.44,0.27l2.43,4.27l0.78,0.62l1.28,0.31l2.93,-0.3l-0.01,1.4l0.71,1.15l3.08,0.45l3.07,1.73l2.64,0.07l2.13,0.47l2.89,1.67l-1.14,1.47l-2.59,2.25l-1.5,2.23l-2.52,2.24l-2.67,5.89l-1.95,6.31l0.17,0.94l0.79,0.58l-0.47,5.83l-8.86,-4.09l-1.6,-1.19l-0.82,-0.21l-4.72,1.87l-2.6,3.06l-0.65,0.56l-1.43,0.42l-20.24,-0.95l-2.07,0.73l-0.85,1.3l1.16,5.96l0.02,0.97l-0.39,0.66l-1.93,0.88l-2.6,-0.26l-3.16,3.14l-1.43,0.99l-0.93,-0.56Z", "name": "Aude"}, "FR-10": {"path": "M542.23,201.62l1.67,2.04l2.4,0.7l3.77,0.44l0.48,-0.31l0.39,-1.88l0.75,-1.38l1.18,-0.59l7.36,-6.27l2.86,-0.72l1.4,-2.14l2.16,0.14l4.84,-1.39l7.15,0.57l0.36,0.37l0.36,1.45l-0.67,4.15l0.66,1.26l12.12,6.47l1.16,-0.11l2.23,-1.24l1.26,-0.24l3.99,1.31l-0.44,2.54l-1.43,2.0l-0.13,0.94l0.39,0.68l2.31,1.4l2.28,2.89l2.18,1.21l1.32,1.98l2.99,1.23l-0.35,2.17l1.65,1.75l0.92,7.61l-1.03,1.78l-0.12,1.84l-0.85,2.37l-0.61,0.38l-3.32,-0.77l-2.22,0.32l-1.04,0.8l-0.98,1.93l1.31,2.94l-1.01,1.36l-2.19,0.96l-2.98,-0.51l-1.76,0.38l-1.47,1.25l-0.22,1.84l-0.81,0.45l-13.17,1.5l-2.39,1.7l-0.5,0.01l-1.12,-0.71l-1.95,-2.64l-0.78,-0.38l-0.55,0.41l-0.26,2.11l-1.42,-0.99l-1.02,-0.13l-0.91,0.39l-1.31,1.25l-1.75,0.05l-1.93,-0.43l-1.85,1.2l-2.25,-0.63l-2.87,0.17l-1.97,-0.36l-0.57,-0.86l0.08,-2.22l-0.52,-0.94l-0.98,-0.2l-1.67,0.35l-1.41,-0.73l1.56,-0.67l0.12,-0.94l-4.65,-7.0l-1.91,-1.9l-1.19,-2.29l-1.36,-0.51l-0.78,0.28l-0.57,1.04l-1.58,0.12l-2.82,-1.93l-2.05,-0.84l1.35,-1.41l0.55,-1.05l-0.39,-3.31l-0.49,-0.96l-5.62,-6.39l-3.0,-1.66l-2.3,-0.01l-0.47,-2.37l-1.12,-0.92l-0.15,-0.51l0.56,-2.27l-0.63,-1.75l1.81,-1.89l-0.93,-1.96l2.55,-0.54l0.75,-0.59l1.02,-2.47l0.98,-1.32l2.57,-1.91l1.37,-0.09l1.99,2.7l1.48,0.1l0.62,2.61l0.57,0.31l1.15,-0.57l2.83,-0.55l0.95,-0.81Z", "name": "Aube"}, "FR-2B": {"path": "M840.29,672.01l0.19,-0.25l0.97,0.12l1.07,-2.21l1.86,-0.26l0.74,-0.59l0.25,-1.79l0.9,-1.48l-0.38,-0.73l-0.69,-0.15l0.49,-1.84l0.66,-0.7l2.07,-0.66l0.26,-0.57l-0.29,-0.57l0.29,-1.57l1.09,-0.31l1.75,0.99l1.22,-0.28l0.96,-0.92l0.83,-2.39l1.69,-0.12l3.84,-1.79l6.8,-1.3l2.03,-0.92l0.4,-1.61l3.75,-3.54l2.7,-0.22l4.3,0.91l1.55,0.91l1.19,2.4l0.37,0.25l0.75,-0.18l2.19,-3.35l0.93,-2.22l-0.53,-1.78l0.44,-1.29l-0.33,-1.53l-1.69,-2.25l1.55,-2.06l-0.41,-1.45l0.2,-1.05l1.75,-1.77l0.11,-1.69l-1.01,-1.98l0.14,-1.93l0.77,-0.45l2.42,-0.01l0.97,-0.35l0.69,0.85l1.59,0.95l-0.62,1.65l0.32,1.04l0.64,0.74l-0.24,1.34l1.15,6.71l-0.1,2.14l-1.97,6.87l-0.02,4.12l-0.45,1.01l0.91,0.83l0.24,0.8l-0.14,1.25l1.14,1.91l2.33,1.17l0.51,-0.65l0.25,0.54l0.31,7.85l0.73,1.54l-0.6,1.91l-0.19,2.68l1.67,5.79l-0.45,9.13l0.43,1.76l-0.38,2.31l-0.37,0.56l-1.68,1.43l-1.61,2.76l-5.49,7.01l-0.44,6.49l-0.8,-0.12l-1.39,0.44l-2.65,1.71l-4.61,-1.41l0.81,-2.11l0.12,-1.38l-1.48,-3.98l0.03,-4.84l-0.41,-0.48l-3.1,0.15l-0.62,-0.31l-0.74,-1.15l-0.82,-3.61l-4.08,-4.46l-1.23,-3.5l-0.78,-0.4l-2.41,-0.33l-6.35,-3.95l-1.27,-4.03l-1.02,-0.49l-2.14,0.51l-6.63,-1.58l-5.01,-2.35l-2.75,-0.26Z", "name": "Haute-Corse"}, "FR-2A": {"path": "M838.53,672.37l1.83,0.51l2.41,0.15l5.06,2.36l6.76,1.61l2.26,-0.49l0.44,0.27l0.67,2.74l0.64,1.31l6.51,4.05l2.96,0.55l1.14,3.37l4.05,4.41l0.77,3.47l0.9,1.47l1.16,0.59l2.69,-0.13l0.06,4.61l1.47,3.89l-0.09,1.14l-0.94,2.44l0.24,0.52l5.33,1.6l2.87,-1.77l1.24,-0.39l0.58,0.13l0.47,5.63l-0.08,5.26l-1.16,0.85l-0.93,1.45l0.36,0.56l0.38,0.0l-0.34,1.47l-1.74,0.45l-0.13,1.0l-2.1,-0.31l-0.71,0.1l-0.34,0.46l0.08,0.47l-0.87,1.33l0.15,0.53l1.18,0.53l2.94,-0.89l0.29,0.34l-0.16,0.77l-1.25,1.25l-1.71,0.61l-1.08,1.44l-0.92,0.16l-0.29,0.57l0.28,0.85l-0.28,0.85l0.82,0.98l-0.71,0.84l0.01,0.67l-2.14,1.17l-0.98,0.12l-0.35,0.4l0.0,0.54l0.75,0.99l-0.59,0.7l-0.15,0.77l0.54,0.37l1.71,-1.1l-1.36,2.96l-0.77,0.37l-0.56,-0.17l-1.56,-1.26l-4.09,-1.13l0.5,-1.41l0.63,-0.25l0.15,-0.7l-3.04,-1.76l0.64,-0.96l0.0,-0.46l-0.51,-0.38l-2.15,1.21l-0.36,-0.76l-1.07,0.38l-0.9,-0.82l-1.69,-0.51l-2.48,-0.05l-1.61,-1.23l-1.4,-0.31l-0.77,-0.93l-1.36,-0.18l0.42,-0.48l-0.28,-0.83l-3.45,-1.04l0.22,-1.42l-0.44,-0.73l-0.5,-0.17l1.06,-2.73l1.05,0.33l3.28,-1.35l0.76,-0.71l0.25,-0.88l2.21,-1.71l-0.28,-0.67l-8.03,-1.29l-0.49,-0.46l0.45,-1.23l-0.37,-0.54l-1.66,0.01l-3.15,0.9l0.15,-0.36l-0.39,-0.56l-1.58,-0.18l1.37,-0.22l1.43,-1.12l0.36,-1.08l-0.11,-0.68l-0.53,-0.48l2.22,-0.4l2.07,-1.1l0.18,-0.51l-0.3,-0.7l-0.72,-0.7l1.32,-0.68l0.04,-0.58l-0.51,-0.92l1.44,-2.22l-1.63,-2.04l-1.3,-0.47l-1.37,0.15l-3.3,1.36l-2.54,0.15l-1.78,0.63l-0.16,-0.36l0.64,-1.35l-0.36,-1.17l-1.16,-1.23l2.2,-0.2l1.3,-0.47l1.04,-1.45l-0.12,-0.56l-0.44,-0.27l0.27,-0.44l1.08,-0.73l3.47,-1.33l0.38,-0.36l0.09,-0.92l-0.43,-0.78l-0.97,-0.68l-1.71,-2.86l-0.82,-0.13l-1.52,0.37l-0.72,-1.14l-1.11,-0.59l-2.23,-0.31l0.1,-0.87l-0.66,-0.46l0.63,-0.4l0.19,-0.89l-0.4,-0.4l-0.84,0.0l0.49,-1.2l-0.24,-0.73l-0.53,-0.37l0.18,-0.95l-1.46,-1.0l2.12,-0.06l1.46,-0.81l2.49,-0.44l2.27,-0.94l0.28,-0.91l-1.26,-1.16l-2.16,-0.95l-0.59,-1.02l-0.54,-0.04l-0.76,0.57l-0.02,-0.4l1.8,-0.96l0.05,-0.67l-1.61,-1.07l-1.41,0.12l-1.48,0.55l-0.55,-1.32l-0.01,-0.82Z", "name": "Corse-du-Sud"}, "FR-19": {"path": "M391.83,442.28l1.35,-1.87l1.52,-1.17l3.83,-0.97l2.33,-1.62l0.94,-1.27l1.29,-2.82l3.51,1.97l4.0,-0.33l8.09,-5.41l3.21,-1.16l2.32,-2.4l0.78,-0.11l1.2,0.95l3.0,-0.08l2.35,-1.05l0.13,-0.63l-0.36,-0.41l4.47,-0.61l1.76,-2.84l1.97,-1.47l1.24,0.07l2.42,1.87l4.27,0.65l7.14,3.9l1.73,-0.03l0.97,-0.41l2.02,-2.4l4.42,0.27l1.5,-0.64l1.68,-1.29l1.28,1.41l0.51,1.09l-0.24,3.82l-0.55,0.67l-1.79,0.8l-1.06,3.12l0.17,0.96l1.69,2.26l0.25,4.1l1.11,1.0l-1.72,5.84l-0.79,0.43l-1.66,-0.23l-3.58,-1.66l-1.74,0.31l-0.64,0.49l-0.08,0.65l0.95,0.93l0.15,0.84l-1.24,2.6l-1.06,0.64l-1.96,2.84l-3.1,1.35l-0.66,2.04l-2.65,2.08l-0.16,1.81l0.96,1.75l-0.04,1.26l-2.76,5.43l-2.8,2.03l-0.55,0.87l0.17,1.26l1.47,2.59l-0.74,0.72l-2.13,0.22l-1.44,0.59l-4.52,0.2l-1.94,0.88l-1.38,-0.66l-0.83,-0.05l-4.06,1.88l-3.12,0.95l-1.23,-0.04l-3.73,-1.98l-1.24,-1.82l-2.13,-1.68l-3.13,-1.75l-1.92,-0.51l-2.06,0.56l-0.77,-1.17l-0.7,-0.11l-3.75,2.17l-0.61,-0.97l-1.41,-1.24l-1.53,-2.72l-0.16,-1.05l0.45,-2.03l-0.39,-0.62l-0.76,-0.29l-3.42,0.15l-1.37,-0.4l-1.11,-0.64l-0.51,-0.73l0.71,-1.38l-0.24,-1.53l-0.65,-0.48l-1.73,0.03l-0.5,-0.28l0.37,-0.93l2.04,-1.69l0.24,-0.77l-0.56,-0.85l-1.85,-1.47l0.6,-2.56l1.28,-0.93l0.89,-1.14l1.62,-0.95l0.73,-1.34l-0.14,-0.73l-0.54,-0.5l-1.94,0.2l-0.72,-0.38l-0.05,-0.67l0.94,-1.5l0.23,-1.06l-0.86,-0.96l-1.17,-0.07Z", "name": "Corr\u00e8ze"}, "FR-18": {"path": "M490.39,283.47l1.8,3.36l1.35,1.6l0.08,0.79l-0.52,2.31l-0.86,1.93l-2.02,2.99l-0.08,0.93l0.92,1.57l1.73,0.94l3.6,3.47l0.78,3.4l1.43,3.27l1.23,3.95l-0.07,3.7l2.22,2.27l0.43,5.38l-1.31,4.71l1.16,3.29l-2.28,4.15l-0.31,1.64l-3.08,-0.17l-2.72,0.77l-4.06,2.3l-1.68,2.09l-2.02,-0.32l-1.56,1.24l-2.13,-0.62l-0.64,-0.74l-0.84,-0.12l-4.12,3.34l-1.44,0.06l-0.57,0.31l-0.14,1.87l-1.92,-0.0l-0.79,0.54l-0.1,0.83l1.0,1.52l-0.51,1.0l0.05,1.2l1.67,2.1l0.24,1.43l-5.01,1.3l-7.99,0.81l-3.73,1.66l-1.58,1.88l-1.55,0.74l-2.19,3.55l-6.26,-0.22l0.78,-1.45l2.17,-2.14l0.28,-1.08l-0.07,-1.22l-0.65,-1.92l-1.5,-1.65l-0.02,-0.65l1.42,-2.43l0.37,-2.53l-0.24,-1.1l-0.78,-1.0l-1.58,-0.98l0.11,-2.26l-0.63,-0.94l-1.04,-0.53l-2.48,-0.4l-0.73,-0.83l0.44,-1.13l1.97,-1.4l0.44,-0.97l-0.37,-1.39l-1.89,-1.35l-0.19,-0.92l0.24,-1.28l1.08,-2.18l1.97,-1.79l0.3,-0.97l-0.68,-1.15l-2.11,-1.19l-0.46,-0.89l0.85,-3.02l0.0,-1.33l-0.55,-1.28l-2.59,-2.57l0.65,-2.75l-0.34,-1.74l-0.76,-0.77l-1.4,-0.58l-3.25,-0.31l-4.86,1.54l-6.14,-1.76l2.79,-2.55l0.88,-1.85l0.0,-1.77l1.71,0.31l1.27,-0.24l0.99,-0.69l0.35,-0.65l0.21,-2.35l1.53,-1.56l3.38,1.02l3.17,0.36l3.19,-0.39l2.5,-1.37l0.55,-0.86l0.1,-1.08l-1.75,-4.11l-0.26,-2.32l0.2,-0.97l1.0,-1.16l0.66,-0.24l3.91,1.21l1.76,0.01l0.37,-0.26l0.85,-2.33l-0.32,-2.41l-0.49,-1.05l-1.46,-1.65l-1.55,-3.15l-1.22,-0.7l-2.39,0.04l-0.52,-0.53l0.22,-1.85l1.64,-1.09l6.44,-1.59l1.33,0.16l3.11,1.74l1.71,0.36l3.28,-1.04l0.88,0.11l2.95,2.37l1.53,0.4l3.18,-0.09l0.94,0.6l2.58,3.54l2.15,2.02l1.37,0.65l1.81,-0.28l1.67,-2.81l0.94,0.08l2.84,2.04l1.46,-0.15l3.11,-1.59Z", "name": "Cher"}, "FR-88": {"path": "M751.57,206.43l-0.94,1.25l-0.59,7.58l-0.82,2.89l0.48,1.0l1.16,0.64l3.71,0.29l1.04,0.99l-0.01,0.68l-7.65,10.83l-0.6,1.6l0.78,1.75l-0.29,1.31l-1.35,1.61l-3.07,5.74l-3.51,4.22l-0.66,3.17l-1.65,3.3l0.55,2.46l-0.81,0.78l-2.2,0.86l-1.5,-0.16l-6.14,-4.25l-3.36,-1.49l-2.89,-3.05l-1.0,-0.52l-0.66,-0.08l-0.72,0.37l-1.82,2.29l-2.17,0.57l-2.22,-0.33l-5.28,-2.92l-2.42,-0.87l-3.37,0.19l-1.11,0.31l-1.36,0.92l-2.15,0.18l-3.33,-1.51l-0.16,-1.78l-1.1,-1.33l-1.36,-0.79l-3.03,-0.56l-1.94,0.42l-2.72,2.89l-3.08,1.95l0.04,-2.28l-0.66,-0.67l-1.05,0.29l-1.69,2.58l-1.46,0.73l-2.76,-2.68l-1.27,0.12l-1.23,0.64l-0.33,-0.86l0.11,-2.75l-0.67,-1.26l-3.49,-1.97l-4.37,-3.63l0.64,-1.84l1.18,-2.01l0.51,-2.47l1.45,-1.47l-0.5,-1.38l-3.56,-2.51l-0.06,-1.62l-0.6,-1.04l-1.48,-0.72l-2.31,0.06l-3.01,-3.86l-1.61,-1.35l-2.24,-0.13l-0.71,0.34l-0.86,1.14l-0.51,0.13l-0.78,-3.46l1.77,-2.56l1.42,0.46l1.57,-0.51l3.0,-1.66l3.71,-0.07l3.32,-2.0l2.83,0.26l1.3,-0.32l1.14,-0.94l0.65,-1.14l0.82,0.57l0.72,-0.1l1.72,-0.97l1.33,-0.16l1.35,0.19l1.94,1.21l-0.3,2.25l-1.49,2.14l0.21,1.01l4.75,2.05l-0.31,1.39l0.26,0.46l1.87,0.64l8.74,-0.33l1.96,-0.8l0.25,-0.39l-0.09,-2.23l1.21,0.45l5.1,-0.33l1.64,-2.43l1.06,1.35l1.64,0.83l1.97,0.22l1.36,-0.21l-0.09,0.7l0.45,0.44l0.93,-0.13l1.95,-1.32l4.3,-0.37l6.3,-4.24l1.45,-0.08l0.65,2.62l1.05,1.0l4.61,0.62l4.63,1.54l3.31,-2.91l1.13,1.02l0.47,0.05l1.7,-1.01l3.3,-3.19l5.2,-3.55l1.87,-0.35l2.98,1.42Z", "name": "Vosges"}, "FR-89": {"path": "M572.78,248.31l2.01,2.7l1.73,0.94l-1.28,3.9l-0.11,1.94l0.52,0.4l2.09,-0.18l0.54,0.22l1.64,4.91l-0.53,0.88l-4.51,2.33l-0.11,3.62l-0.69,2.29l-1.52,1.8l-1.11,2.61l-3.54,5.68l-1.1,0.73l-0.52,1.14l-0.07,3.69l-0.72,0.98l-1.66,0.74l-0.61,0.72l-0.05,1.75l0.85,1.97l1.28,0.9l0.18,1.68l-3.19,0.02l-1.92,2.05l-0.77,0.04l-1.21,-0.94l-0.67,-3.65l-0.98,-1.49l-0.51,-0.13l-3.89,1.9l-0.56,-0.31l-0.04,-0.63l0.52,-1.46l0.01,-1.16l-0.78,-1.25l-0.73,-0.22l-1.49,0.75l-0.85,2.16l-0.57,0.68l-5.63,-1.91l-4.42,-3.53l-1.2,-0.44l-2.2,-0.2l-1.5,-2.6l-1.93,-1.61l-2.41,-3.11l-0.66,0.33l0.14,2.56l-0.3,2.07l-4.03,-1.06l-1.63,0.16l-2.81,2.01l-0.62,-0.05l-2.71,-1.56l-2.22,0.8l-0.72,-0.1l-1.75,-1.81l-1.34,-0.46l-2.7,-0.28l-0.9,-0.76l-0.52,-2.7l-0.85,-0.59l-0.8,-0.12l-6.31,1.19l-1.26,-0.27l-0.52,-1.14l-2.08,-2.61l0.57,-2.21l-1.26,-2.45l-2.54,-2.22l-1.81,-0.58l-0.63,-0.61l0.13,-1.83l0.76,-0.58l4.07,-0.42l4.77,-2.29l0.53,-0.86l-0.08,-2.09l0.82,-1.64l-0.97,-2.16l-0.15,-2.18l1.55,-0.25l1.46,-1.47l2.5,-1.52l2.08,-4.18l-0.63,-2.78l-2.95,-2.35l-0.89,-1.09l-1.46,-4.45l-1.91,-1.27l-3.81,-0.73l0.73,-2.78l3.72,-2.26l1.64,-2.66l0.15,-0.86l-0.86,-1.48l-0.18,-1.43l1.15,-3.5l0.41,-0.36l3.03,0.06l2.27,-0.89l4.61,0.48l6.23,-0.91l2.51,0.47l0.72,-0.38l0.87,-1.43l1.29,-1.21l0.68,0.48l0.65,2.62l0.7,0.31l1.89,-0.13l2.82,1.56l5.42,6.18l0.37,0.67l0.39,2.99l-1.82,2.13l0.14,1.13l2.19,0.89l3.06,2.04l1.02,0.12l1.09,-0.29l0.78,-1.18l1.07,0.24l1.04,2.12l1.93,1.93l4.55,6.82l-1.58,0.69l-0.06,1.02l2.02,1.14l2.25,-0.31l0.24,0.47l-0.05,2.31l0.83,1.24l2.41,0.53l2.82,-0.18l1.96,0.66l0.71,-0.08l1.68,-1.15l1.71,0.44l2.04,-0.07l2.04,-1.61l0.63,0.05l1.22,0.92l0.82,0.12l0.66,-0.82l0.03,-1.6Z", "name": "Yonne"}, "FR-80": {"path": "M411.99,58.04l2.13,1.96l1.56,0.75l1.81,0.01l3.71,-1.21l3.67,-0.22l0.86,0.15l1.05,0.68l1.93,2.02l1.13,0.56l1.08,-0.04l1.34,-1.04l0.83,-0.09l0.45,0.32l-0.93,1.21l0.23,1.04l6.67,3.17l0.5,0.49l0.08,1.01l0.75,1.43l1.91,1.29l8.93,-0.46l3.92,-0.85l1.24,-1.53l1.52,1.73l0.76,0.31l0.74,-0.23l0.76,-0.74l1.3,0.11l2.71,1.26l0.54,0.67l-4.33,2.61l-1.17,1.54l-0.21,1.73l0.37,1.17l1.07,1.26l0.76,0.26l0.97,-0.29l1.56,-2.2l2.16,-0.19l2.38,0.33l1.34,-0.69l1.45,-0.17l0.19,0.32l-0.33,1.26l0.52,0.66l3.45,0.68l2.92,1.4l1.0,0.18l0.86,-0.76l-0.13,-1.95l0.49,-1.31l1.67,1.4l1.14,1.83l0.06,0.74l-1.28,1.91l0.29,0.94l0.77,0.38l0.95,-0.07l3.86,-2.53l0.65,0.79l0.19,2.96l0.68,0.44l0.7,-0.01l2.37,-1.26l3.76,-0.4l0.75,-1.0l-0.04,-1.56l0.65,-0.42l2.34,0.28l3.76,1.96l3.79,2.28l2.03,3.11l-2.34,2.6l-2.16,4.61l-2.01,1.7l-0.28,1.39l0.23,2.55l-1.71,2.13l0.19,1.14l1.13,0.63l1.39,0.25l0.81,4.05l-3.34,-0.53l-0.46,0.4l0.03,1.37l-0.41,0.46l-0.68,-0.0l-1.91,-1.21l-1.0,-0.13l-2.69,0.76l-1.97,-1.18l-1.26,-0.06l-0.99,0.81l-1.79,2.72l-2.52,0.78l-0.48,1.04l-0.11,2.07l-0.51,0.11l-2.55,-0.88l-2.55,0.31l-1.95,1.8l-1.21,1.85l-0.34,-0.2l-0.36,-1.68l-0.68,-0.87l-1.0,-0.11l-1.83,0.88l-0.78,-0.29l-2.35,-1.97l-0.9,-0.16l-1.94,0.33l-2.45,-2.09l-4.82,-0.91l-3.22,-1.99l-4.27,-0.69l-10.45,1.06l-5.9,-2.44l-6.94,1.08l-0.3,-0.21l-0.8,-2.81l-4.85,-1.97l-0.28,-1.33l-2.44,-4.06l-0.9,-3.09l-1.01,-1.33l-10.08,-8.97l-8.3,-4.93l5.17,-5.05l1.41,-4.28l1.94,-2.2l1.85,-0.21l5.97,2.46l0.78,-0.01l0.75,-0.53l0.14,-0.85l-1.42,-0.64l0.57,0.0l0.4,-0.4l0.0,-0.59l-0.39,-0.4l-2.26,-0.33l-0.8,-0.54l-1.15,-2.03l-2.54,-1.04l-0.42,-0.47l0.59,-5.43l1.08,-1.83l1.07,0.18Z", "name": "Somme"}, "FR-81": {"path": "M493.7,574.5l-2.7,2.83l-6.65,2.58l-1.23,-0.04l-2.62,-1.24l-1.35,-0.31l-2.38,0.11l-0.75,0.39l-1.36,2.84l-0.07,2.58l0.55,1.19l1.7,1.63l0.13,0.42l-0.6,2.34l0.7,1.51l-1.8,1.74l-1.39,0.83l-2.18,0.54l-6.45,-0.53l-5.8,0.38l-7.23,-1.26l-0.84,0.38l-0.74,0.89l-0.21,0.68l0.29,1.74l-0.63,0.62l-0.74,-0.06l-2.2,-1.21l-3.19,0.57l-2.01,0.01l-0.91,-0.34l-1.82,-1.67l-0.33,-1.07l0.47,-1.88l1.17,-1.37l-0.68,-1.43l-1.18,-0.81l-1.23,-0.17l-0.75,0.44l-1.07,1.47l-0.88,0.41l-0.68,-0.17l-4.07,-3.0l-2.62,-3.3l-1.16,-0.87l-1.98,-0.58l-5.89,-3.16l0.72,-0.96l1.33,-0.48l0.31,-0.44l-0.16,-1.17l-0.64,-1.01l-2.15,-1.92l-2.26,-5.99l-3.89,-1.82l-0.09,-1.78l-1.81,-3.27l0.4,-2.51l-0.43,-2.33l0.58,-0.65l2.56,0.13l0.84,-0.38l1.54,-1.99l2.42,-1.71l1.08,-1.24l0.1,-2.05l-2.77,-3.24l0.3,-1.07l1.35,-0.48l5.87,1.98l1.56,-1.93l2.93,-1.72l2.7,0.07l1.8,-1.38l2.38,0.13l0.5,-0.33l0.53,1.08l0.46,0.21l1.93,-0.49l5.45,-2.78l2.49,0.16l2.9,1.68l1.85,1.79l2.62,0.22l1.67,1.4l2.66,0.59l2.05,1.09l0.74,0.78l1.13,2.56l1.19,0.49l1.85,0.21l0.87,0.8l2.63,3.82l-0.4,1.19l0.1,1.19l2.17,2.49l0.92,3.73l1.23,2.83l1.81,2.47l3.59,3.36l2.17,1.37l2.19,0.54l2.21,-0.52l2.63,-1.37l5.04,1.24l1.03,0.95l0.59,1.82Z", "name": "Tarn"}, "FR-82": {"path": "M361.5,548.73l-0.38,-1.14l-0.84,-1.04l0.59,-2.03l0.66,-0.78l1.81,-0.88l0.77,-1.7l1.0,-0.23l2.75,0.7l1.35,-0.49l0.37,-0.64l-0.02,-0.8l-0.33,-0.62l-1.03,-0.71l2.05,-1.55l2.5,-4.95l-0.22,-1.41l-2.82,-1.29l-0.59,-1.01l0.8,-1.93l0.07,-1.99l0.39,-0.51l3.33,1.13l5.11,-0.37l1.05,-0.9l2.02,-0.88l0.87,-0.07l0.35,0.4l-0.07,0.83l-0.73,1.97l0.16,1.27l0.79,1.18l1.19,0.98l4.38,2.12l2.05,0.47l1.39,-0.81l0.66,-0.06l0.59,0.63l-1.05,1.88l0.06,0.43l0.6,0.6l3.28,0.95l1.71,0.05l4.46,-2.18l1.37,-1.13l0.86,-1.34l1.47,0.78l1.42,1.93l1.06,0.86l1.56,0.05l1.31,-1.11l-0.08,-1.21l-0.67,-1.6l0.2,-0.67l0.8,-0.28l1.34,0.12l0.85,1.57l1.15,0.47l0.75,-0.41l1.84,-1.99l4.93,-1.93l4.75,-0.19l1.1,-0.33l0.1,3.15l1.58,0.8l4.34,0.42l-0.33,1.34l-2.62,1.23l-0.75,2.01l0.87,1.94l3.26,0.98l-0.27,0.29l-2.35,-0.12l-1.84,1.39l-2.82,-0.03l-3.2,1.9l-1.32,1.74l-5.42,-2.01l-1.96,0.6l-0.61,2.05l2.82,3.32l-0.08,1.27l-0.89,1.04l-2.43,1.71l-1.48,1.95l-0.46,0.24l-2.56,-0.13l-0.9,0.4l-0.41,1.15l0.42,2.0l-1.8,1.09l-0.55,0.17l-1.8,-0.54l-2.59,2.11l-2.28,-0.39l-1.91,0.05l-4.54,2.48l-0.05,0.67l1.26,0.97l1.89,0.83l-6.27,3.21l-1.28,0.04l-3.61,-3.13l-1.84,0.04l-1.95,0.78l-3.2,-0.07l-5.96,1.36l-2.81,-0.07l0.43,-1.79l-0.76,-2.68l-0.26,-2.94l-1.14,-2.26l-4.63,-0.38l-1.59,-0.6l-0.43,-0.55l1.28,-0.83l3.25,-3.79l0.65,-1.48l-0.11,-1.38l-0.86,-0.96l-1.17,-0.19l-3.14,1.38Z", "name": "Tarn-et-Garonne"}, "FR-83": {"path": "M662.32,612.72l0.43,-2.22l0.66,-1.46l1.12,-0.93l2.01,-0.92l1.1,-1.34l0.04,-0.43l-0.93,-1.64l-1.71,-1.08l-1.69,-0.05l-0.08,-0.36l0.1,-1.12l0.67,-1.59l-0.97,-2.72l0.94,-0.38l3.01,0.14l1.51,-0.41l0.21,-0.64l-3.97,-4.91l-0.12,-1.32l0.91,-2.86l-0.03,-1.21l-0.75,-1.05l-1.89,-1.51l-0.06,-1.74l1.46,-2.21l4.97,-1.29l1.61,-2.25l-0.16,-0.58l-1.02,-0.49l-1.21,-2.1l-0.87,-0.42l0.93,-1.28l4.57,2.34l1.88,-0.03l0.85,-0.52l0.84,-1.19l0.9,-0.05l1.69,1.78l1.74,1.27l1.27,2.25l1.33,0.49l0.98,-0.5l0.89,-1.66l1.23,-1.17l4.05,-1.61l4.51,-4.06l1.63,-0.62l1.12,0.55l3.72,3.26l2.04,0.99l2.19,-0.51l1.52,-2.88l0.88,-0.93l2.86,0.06l2.77,-0.66l1.75,0.84l3.87,-1.13l1.01,1.11l0.79,1.82l1.06,0.97l3.03,1.01l2.2,0.16l0.33,0.36l0.78,2.08l-0.15,2.6l0.56,1.08l3.76,3.14l1.08,0.56l2.88,-0.18l0.52,0.59l0.07,0.9l-1.59,2.99l-0.52,1.83l0.87,1.71l2.23,1.3l-0.53,1.99l-1.2,0.73l-0.35,0.74l-0.79,0.06l-0.5,-0.8l-0.56,-0.07l-0.45,0.47l0.04,1.32l-0.33,0.1l-1.7,-0.24l-2.06,0.51l-0.64,-0.66l-0.97,-0.32l-0.96,0.39l-1.15,1.12l0.09,1.77l-0.82,1.01l-0.09,1.11l-2.6,0.48l-0.8,1.76l-2.13,1.86l-1.83,1.09l-0.39,1.12l0.27,0.52l1.27,0.34l3.83,-0.86l1.11,0.38l-0.61,1.02l-1.15,0.87l-0.18,1.36l0.76,1.4l-2.03,1.21l-1.78,0.59l-1.1,-1.03l-3.19,0.39l-1.04,1.7l-1.07,0.59l-1.62,-0.35l-3.45,0.27l-1.36,0.42l-1.49,0.84l-0.91,1.44l0.37,1.87l-1.34,0.0l-1.03,-0.98l-2.86,-1.09l-1.75,-0.16l-2.14,0.34l-2.56,1.04l-1.16,0.98l-0.63,1.67l-0.02,1.77l0.91,0.63l-3.08,0.19l0.74,-0.26l0.95,-0.93l-0.33,-1.65l-1.19,-0.96l-5.05,0.37l-0.84,-1.54l-3.51,-0.25l-1.12,-0.63l0.3,-1.17l-0.36,-0.56l-2.16,0.24l-1.78,0.81l-0.23,0.38l1.15,0.68l1.01,1.7l1.82,0.87l-3.07,-0.08l-0.89,0.28l-1.2,1.7l-1.96,-0.54l-1.85,-1.41l1.88,-1.3l0.07,-0.54l-0.41,-0.57l-1.72,-0.7l-0.74,-1.26l-2.11,-0.09l-2.49,-1.0l-0.47,-1.46l-0.88,-0.93ZM708.84,625.18l0.07,-0.56l1.07,-0.35l0.67,-0.95l0.94,-0.47l-1.31,1.7l-1.44,0.64ZM692.6,626.12l1.76,-0.0l0.97,-0.54l0.94,-0.02l0.43,-0.62l0.24,0.26l0.04,0.66l-2.62,1.0l-1.76,-0.73Z", "name": "Var"}, "FR-84": {"path": "M604.27,544.85l-0.38,-2.49l0.33,-2.07l-0.19,-2.88l-0.5,-0.93l-1.47,-1.11l-0.09,-1.56l-1.29,-1.64l-0.54,-1.66l-0.02,-2.97l3.17,-0.14l2.43,0.62l1.57,1.66l1.7,4.01l1.31,0.65l1.08,-0.2l2.24,-1.34l2.77,-0.41l3.47,-1.46l4.07,-1.05l3.48,0.59l1.1,-0.08l2.31,-1.4l0.14,0.38l-0.71,1.56l-0.03,1.7l0.31,1.17l0.77,0.67l2.96,0.79l2.82,-0.21l4.22,1.37l1.95,0.19l0.66,0.8l0.94,2.37l3.97,2.67l2.43,0.48l-0.2,4.0l0.24,0.39l1.05,-0.21l0.97,0.36l0.28,0.59l-0.31,1.92l-1.83,3.84l0.0,1.28l0.75,0.97l0.93,0.32l1.85,0.01l0.72,0.39l0.66,2.08l-0.21,0.96l-2.3,3.79l-0.22,1.71l0.52,0.42l3.8,-1.25l3.06,1.6l5.26,5.65l-2.2,1.58l-4.01,0.82l-1.48,1.11l-2.3,1.04l-3.02,-0.23l-7.12,-1.92l-2.07,-1.14l-2.7,-2.21l-5.03,-0.71l-3.78,0.01l-6.35,-2.77l-7.2,-5.93l-3.9,-2.2l-7.57,-2.61l2.0,-1.55l0.6,-1.17l-0.07,-1.83l1.4,-0.03l0.4,-1.37l-0.44,-0.88l-4.39,-4.94l-1.65,-0.36l-1.13,0.37ZM619.44,527.85l-4.96,0.01l-0.37,-0.2l-0.33,-0.9l0.44,-1.6l2.99,-4.46l1.31,-0.8l1.47,0.37l2.37,2.16l0.58,1.0l-0.0,0.54l-1.24,1.1l-1.26,2.17l-1.01,0.62Z", "name": "Vaucluse"}, "FR-85": {"path": "M204.85,362.1l-0.62,-0.64l-1.32,-5.47l0.25,-1.25l-0.25,-0.45l-0.84,-0.31l-1.14,-2.75l-2.53,-2.31l-0.74,-2.09l-0.93,-0.62l-1.98,-0.4l-2.24,-3.59l-3.41,-3.09l-4.13,-2.11l-0.62,-2.47l0.07,-2.83l0.33,-0.63l1.48,-0.93l0.17,-0.46l-0.28,-0.85l3.12,-1.98l2.48,-5.26l0.78,-0.51l1.11,0.64l3.64,3.66l2.0,1.43l6.44,2.71l3.21,3.11l1.09,0.43l3.21,0.02l6.4,1.46l2.1,-0.76l1.05,-1.03l0.11,-0.59l-1.05,-1.36l-1.3,-3.38l-0.81,-3.57l0.33,-1.77l2.67,-1.06l0.57,0.06l0.82,1.52l0.0,4.18l0.55,1.33l1.18,0.72l1.41,-0.13l2.92,-1.69l0.67,-0.76l0.52,-1.76l-0.33,-2.96l0.24,-0.7l0.9,-0.55l2.21,0.43l0.42,-0.18l1.98,-2.63l2.07,0.63l5.08,2.9l4.49,1.72l2.8,0.29l2.35,-1.23l1.75,1.21l1.01,0.26l2.14,1.33l2.18,3.03l1.67,0.89l0.69,0.84l0.74,3.47l1.17,1.57l4.88,2.98l0.6,0.88l-0.77,1.55l0.04,1.22l3.83,6.52l0.57,3.11l1.58,2.68l0.65,4.43l-1.22,1.54l-0.25,0.91l0.97,4.27l-0.6,2.86l0.25,1.23l0.83,0.72l1.04,-0.23l1.97,1.38l0.71,1.02l-0.74,0.77l-1.26,-0.1l-1.22,0.34l-2.25,2.0l-2.76,0.16l-3.62,1.68l-4.06,-2.24l-1.7,-0.27l-6.67,1.09l-0.44,-0.27l0.9,-1.15l0.08,-0.99l-0.69,-0.77l-0.69,-0.05l-7.38,1.76l-1.66,1.88l-0.75,-0.72l-2.95,-0.11l-2.27,1.19l-0.16,2.27l-1.02,-0.24l-2.4,-2.73l-1.56,-0.33l-4.08,-2.32l-3.43,0.87l-1.24,-0.06l-0.97,-3.42l-1.1,-1.51l-1.55,-0.91l-6.9,-0.76l0.18,-1.01l-1.0,-0.83l-3.36,-0.58l-1.97,-1.51l-2.47,-0.81l-1.08,-2.24l-0.58,-0.83l-0.45,-0.15l-0.26,1.35l0.41,1.74ZM179.99,325.41l2.68,1.47l0.24,2.88l-0.47,-0.24l-2.28,-3.55l-1.56,-0.93l-1.75,0.59l-0.73,-0.9l-0.93,-2.89l-0.56,-0.68l2.62,-0.12l2.02,0.71l-0.04,2.78l0.75,0.89ZM174.33,345.92l-4.93,-0.12l-0.49,-0.98l0.24,-0.36l1.99,0.02l3.18,1.44Z", "name": "Vend\u00e9e"}, "FR-86": {"path": "M318.26,311.84l1.47,2.34l0.64,0.37l0.98,-0.07l1.14,-0.55l0.13,1.56l0.57,0.55l2.68,-0.26l0.19,0.85l-0.35,1.75l0.25,0.7l0.48,0.33l1.15,0.07l2.51,-0.61l1.03,1.31l1.83,0.26l-0.34,5.65l0.36,1.29l1.37,1.15l1.25,0.23l2.61,-0.25l2.91,0.46l1.93,-1.14l1.04,-0.24l5.49,-0.33l0.79,-0.44l0.19,-0.71l-0.77,-1.6l-0.1,-0.95l5.63,2.78l1.17,1.63l1.3,3.39l7.23,9.31l2.64,1.85l1.67,1.93l0.84,2.19l-0.61,2.63l0.01,1.65l0.57,2.3l0.59,0.87l2.29,1.98l3.29,1.27l0.85,2.04l0.88,0.33l4.33,0.13l1.69,1.4l0.35,0.75l-0.49,1.9l0.16,1.06l0.74,0.86l1.78,1.01l0.54,0.76l-0.93,2.7l-3.26,1.63l-2.54,0.08l-1.43,0.44l-1.28,1.12l-2.44,3.01l-0.64,1.72l-1.05,0.36l-4.1,0.06l-4.24,3.26l-2.35,0.69l-0.42,1.05l0.42,1.23l1.24,1.86l0.56,2.78l-0.2,0.35l-6.81,-0.46l-3.83,3.52l-2.69,0.59l-2.66,-0.56l-2.57,-2.68l-0.81,-0.54l-0.92,-0.09l-1.71,0.84l-1.25,2.22l0.13,0.5l1.39,0.98l-0.61,1.28l-0.66,0.27l-2.39,-0.72l-7.06,0.08l-1.13,-0.29l-2.69,-1.78l-1.37,-0.41l-0.11,-0.51l0.62,-2.25l-0.52,-1.52l-4.27,-1.83l-1.11,-0.91l-0.06,-0.84l0.74,-1.99l2.18,-2.58l0.93,-1.69l0.38,-1.84l-0.32,-1.84l-1.41,-1.28l-1.65,-0.08l-1.22,0.62l-1.77,2.02l-0.69,0.21l-1.1,-0.71l-1.04,-1.26l-0.38,-1.12l-0.02,-2.18l-1.51,-1.42l-0.57,-1.02l0.19,-2.74l-0.21,-1.47l-1.19,-1.45l-0.0,-1.77l1.57,-2.08l1.72,-4.63l-0.41,-1.38l-1.63,-0.57l-0.81,-0.98l0.11,-2.33l1.63,-2.79l0.76,-2.63l-0.45,-1.48l-1.38,-1.45l-0.19,-2.93l0.13,-0.94l1.44,0.09l1.03,-0.72l0.28,-1.38l-0.35,-0.86l-1.32,-1.09l-0.88,-1.27l-1.68,-4.96l0.02,-1.98l-0.89,-1.06l-1.34,-0.4l-0.63,-2.7l-1.27,-2.64l0.8,-0.94l2.51,-0.92l1.0,-2.45l1.89,-2.08l0.9,-0.26l2.97,0.49Z", "name": "Vienne"}, "FR-87": {"path": "M400.84,373.71l1.37,1.0l-0.09,1.47l-3.2,5.72l0.1,2.58l1.3,1.83l2.84,0.95l2.04,1.94l0.38,0.95l-0.44,2.84l0.39,0.99l2.07,1.25l1.49,5.38l1.33,0.42l-0.69,1.04l-1.03,0.82l-1.49,0.68l-0.2,2.25l0.97,0.78l4.05,0.11l0.71,0.32l0.46,0.63l0.05,0.85l-0.46,2.3l0.28,0.99l0.81,0.68l2.21,0.26l4.48,-1.17l1.31,0.05l1.7,2.18l0.88,0.66l4.16,1.91l0.9,1.33l-0.15,2.54l-0.7,2.03l0.14,0.45l1.94,1.69l-1.68,0.77l-2.33,0.13l-1.47,-0.98l-1.27,0.11l-2.55,2.52l-3.15,1.12l-8.04,5.38l-3.36,0.29l-3.78,-2.12l-0.56,0.18l-2.2,4.2l-2.13,1.5l-3.94,1.03l-1.68,1.31l-1.46,2.02l-1.5,-0.89l-1.67,0.31l-3.97,-1.86l0.03,-0.66l1.79,-1.66l-0.12,-1.13l-0.97,-0.71l-3.78,-0.79l-0.97,-0.93l-2.29,-3.4l-0.77,-0.58l-0.71,-0.28l-2.28,0.21l-1.67,-0.27l-3.12,0.5l-1.36,-0.83l-0.67,0.19l-1.04,1.31l-0.53,0.24l-0.92,0.1l-1.95,-0.46l-1.21,-0.71l0.7,-2.38l-0.14,-1.2l-2.33,-2.53l-0.86,-0.39l-4.12,-0.22l-0.84,-0.59l1.24,-2.69l2.24,-1.82l1.25,-1.95l1.82,0.71l1.43,-0.0l1.03,-0.91l0.59,-1.88l0.92,-7.22l3.93,-0.81l2.62,-1.86l0.48,-0.93l-0.03,-0.82l-2.06,-3.42l-0.65,-0.47l-1.46,0.4l-0.62,-0.18l-2.23,-2.92l-0.09,-2.84l-0.51,-2.08l1.19,-0.01l0.56,-1.09l-0.6,-2.96l-1.3,-2.02l-0.18,-1.29l2.22,-0.61l4.13,-3.21l3.91,-0.02l1.37,-0.47l0.49,-0.56l0.37,-1.36l2.95,-3.54l1.62,-0.7l2.72,-0.12l2.77,-1.57l3.18,1.35l1.69,0.1l3.59,-0.55l1.16,-1.42l1.05,-0.24l1.47,1.8l2.71,1.62Z", "name": "Haute-Vienne"}, "FR-01": {"path": "M617.23,362.0l1.76,-0.36l4.28,1.38l1.47,-0.15l3.7,-1.24l1.74,-0.16l1.25,0.39l2.16,1.97l1.64,0.85l4.11,0.99l0.02,2.41l0.61,1.09l1.69,0.58l0.98,0.74l0.72,2.39l1.08,1.11l2.12,0.65l0.91,1.09l1.74,0.37l-0.08,3.17l0.9,0.94l1.79,0.47l2.93,-1.5l1.13,-1.19l1.49,-0.38l0.56,-1.17l2.38,-2.03l2.83,2.21l0.53,0.68l0.4,1.81l0.7,0.56l7.33,0.5l1.48,-0.19l1.31,-0.52l4.16,-3.47l1.29,-1.9l5.29,-5.36l2.71,1.45l0.82,0.77l0.73,1.68l-2.15,4.4l-0.57,4.01l-1.43,0.34l-1.27,-0.13l-5.25,2.42l-0.38,1.48l1.62,2.13l-1.34,2.71l-2.71,0.14l-1.68,2.2l-0.62,0.32l-1.36,-1.23l-0.5,0.04l-1.27,1.21l-0.19,3.73l0.91,6.14l0.09,2.81l-0.51,2.57l-2.91,7.65l-0.73,4.3l-0.93,1.66l-2.6,1.32l-4.3,4.06l-1.02,0.12l-1.0,-0.76l-3.27,-4.86l-4.27,-3.42l-1.62,-2.12l-0.91,-2.52l0.21,-0.6l-0.57,-0.85l-2.84,-2.33l-1.05,-0.51l-0.66,0.02l-2.0,1.0l-3.71,5.19l-0.84,0.68l-0.94,0.26l-1.02,-0.21l-1.71,-1.04l-4.67,-1.87l-4.14,0.52l-3.63,-0.52l-4.19,1.09l-0.75,-3.12l0.3,-1.1l-0.2,-0.46l-3.83,-2.69l-1.54,0.13l-0.34,-0.93l-1.17,-0.79l-0.65,-1.05l-2.11,-0.86l0.45,-2.94l-0.39,-4.61l1.2,-3.66l1.56,-3.33l0.22,-1.64l-0.23,-1.26l1.28,-4.71l3.52,-6.66l0.17,-1.98l1.46,-2.52l0.86,-4.24l1.47,-3.8Z", "name": "Ain"}, "FR-02": {"path": "M567.45,89.94l3.32,1.51l1.54,0.17l0.08,2.76l1.79,2.83l0.07,1.8l-1.86,3.26l-0.49,2.91l0.31,0.92l0.9,0.74l0.32,1.65l-0.7,1.08l-3.14,2.62l-1.8,1.1l-1.44,2.0l-1.21,0.65l-2.01,0.15l-1.16,1.07l0.06,0.89l1.48,3.98l-0.45,1.42l0.37,2.06l-1.37,1.28l-0.45,0.95l0.11,0.84l1.61,2.67l-1.45,0.55l-0.75,1.27l0.2,0.5l0.68,0.33l0.4,0.93l-0.07,1.86l-0.4,1.06l-0.57,0.36l-2.25,-0.85l-1.92,0.68l-2.88,-1.37l-2.38,-0.13l-1.45,0.91l-0.06,1.82l-4.11,0.52l-5.16,1.25l-3.39,1.78l-0.06,0.98l0.85,1.81l0.67,5.15l0.51,0.49l1.41,0.26l2.36,2.15l-0.2,0.54l-0.95,0.74l-1.13,0.21l-3.3,-0.33l-1.41,0.67l-0.54,1.6l0.35,1.68l-0.15,1.05l-0.98,1.37l-1.47,1.05l-0.17,1.35l0.25,0.78l0.6,0.45l3.9,0.07l0.6,0.44l-0.02,0.44l-2.28,1.99l-0.73,1.1l-1.76,1.18l-1.05,2.05l-3.83,3.24l-2.02,3.25l-1.48,0.21l-1.71,-0.42l-2.07,-1.34l-0.43,-0.63l-0.43,-2.64l-0.39,-0.68l-0.73,-0.42l-1.48,0.55l-0.51,-0.14l-9.06,-6.98l-0.18,-0.8l0.61,-1.88l-0.14,-0.89l-0.92,-1.78l-1.36,-1.39l-2.91,-0.8l1.22,-1.17l1.33,-2.47l-0.1,-1.34l-0.76,-1.04l-1.11,-0.7l-2.26,-0.71l-1.32,-0.01l-3.62,0.78l-0.68,-0.81l-0.22,-1.54l2.46,-1.51l0.85,-1.77l-0.61,-1.84l-2.74,-2.56l1.36,-0.9l3.13,-0.24l1.77,-1.04l0.96,-1.77l1.02,-3.74l0.86,-0.6l1.32,0.6l1.02,-0.06l0.79,-0.7l0.27,-0.81l-0.52,-2.08l-1.67,-1.09l-0.65,-1.37l-0.08,-1.74l0.68,-3.72l-0.01,-1.49l-1.53,-3.7l0.85,-5.59l-0.68,-2.03l-0.32,-2.65l-0.76,-1.41l-1.35,-0.18l-0.84,-0.47l0.01,-0.4l1.31,-1.18l0.38,-0.9l-0.06,-3.69l2.03,-1.74l2.17,-4.63l2.43,-2.74l-0.36,-1.23l-1.5,-2.16l3.58,-0.7l1.83,0.05l3.72,0.8l0.96,-0.15l1.87,-0.98l5.14,1.35l1.1,-0.07l3.93,-1.62l1.69,-1.03l0.9,0.04l2.79,0.99l0.93,-0.14l3.23,-1.67l0.73,-0.05l3.32,0.71l6.2,0.65l1.83,1.69l0.78,0.18l3.05,-1.51l1.71,-0.23l0.41,0.51l-0.04,2.45l0.56,0.74l5.66,1.94l1.22,0.15l1.87,-0.46Z", "name": "Aisne"}, "FR-03": {"path": "M499.59,339.93l0.27,1.52l1.25,1.52l3.22,1.84l2.72,0.19l2.74,2.56l0.75,0.33l1.03,0.0l2.4,-1.05l1.66,-0.1l1.61,0.25l2.97,1.11l0.77,-0.19l1.41,-1.51l0.75,-0.34l1.37,0.37l1.29,2.19l0.04,1.49l0.5,0.54l0.6,0.12l1.71,-0.33l4.06,-2.15l0.58,-1.97l1.34,-0.87l0.39,-1.8l1.21,0.2l1.4,2.25l0.6,1.79l2.46,2.19l1.56,2.63l0.94,0.54l0.28,1.5l-0.41,3.04l0.32,0.67l4.03,2.05l1.74,0.08l2.67,2.22l3.67,0.71l2.12,1.04l0.8,2.92l-0.64,3.08l0.52,1.3l-0.02,1.46l0.82,1.68l-1.19,1.0l-5.54,2.72l-4.06,1.13l-3.09,2.23l-0.46,0.67l0.1,0.81l1.06,1.16l0.45,3.18l-0.15,4.03l0.68,2.18l0.34,3.41l0.64,2.1l-0.42,0.97l-1.55,0.78l-3.88,0.68l-2.22,1.06l-1.3,-0.52l-2.73,-2.25l-1.7,-0.84l-4.04,-0.77l-1.99,0.11l-1.42,0.57l0.01,-0.79l-1.21,-3.96l-0.51,-0.26l-6.28,2.04l-1.17,-0.97l-4.88,-1.19l-5.39,0.45l-0.97,-0.29l-2.45,-3.12l-4.46,0.7l-1.86,-0.94l-2.01,-1.92l-1.55,-2.4l-0.54,-2.4l0.09,-2.71l-0.61,-1.08l-1.32,-0.68l-2.45,0.07l-1.33,0.64l-1.02,1.09l-0.17,2.84l-0.65,0.18l-3.18,-1.75l-1.24,-0.04l-0.54,0.83l-0.21,2.58l-2.52,2.99l-1.55,0.94l-1.67,0.26l-1.7,-0.42l-1.35,-0.55l-2.11,-3.65l-1.03,-3.11l-3.21,-4.25l-1.27,-0.36l-1.13,0.66l-1.17,-2.27l-0.72,-0.46l-2.83,-0.61l-0.88,-0.67l-0.94,-2.84l-1.76,-1.56l-1.91,-2.38l2.1,-3.42l1.46,-0.64l1.48,-1.8l3.52,-1.57l7.94,-0.8l5.29,-1.4l0.38,-0.42l-0.0,-1.27l-1.97,-2.78l-0.03,-0.72l0.53,-1.33l-1.01,-1.81l2.56,-0.35l0.41,-0.79l-0.21,-1.13l1.75,-0.2l4.07,-3.3l0.82,0.8l2.07,0.75l0.7,-0.08l1.5,-1.22l2.21,0.26l1.77,-2.17l3.83,-2.18l2.59,-0.73l2.86,0.18Z", "name": "Allier"}, "FR-04": {"path": "M651.92,546.28l0.17,-3.46l1.76,-0.99l3.2,-3.13l1.92,0.05l0.53,0.33l0.75,1.42l1.06,0.44l0.64,-0.19l0.44,-0.58l-0.18,-1.95l0.27,-0.4l1.58,0.11l5.96,-1.63l3.73,1.33l1.73,-0.0l0.66,-0.63l0.07,-0.48l-0.57,-1.04l-2.45,-2.72l-1.44,-1.05l-0.22,-0.74l0.57,-1.37l1.35,0.23l3.02,2.06l0.62,-0.3l0.32,-2.78l-0.85,-1.11l0.13,-1.09l1.7,-1.84l1.73,-3.22l3.99,-2.13l2.54,-2.48l1.12,-0.39l2.15,0.09l1.6,2.63l1.39,0.64l1.99,2.81l1.38,0.49l1.86,-1.26l0.69,-1.82l-0.1,-1.94l-0.44,-1.35l2.08,-0.62l1.7,-1.27l2.27,-2.81l3.81,3.91l2.32,1.58l2.87,0.74l6.29,0.16l1.29,-0.64l0.95,-2.17l1.43,-1.71l0.76,-2.54l1.87,-0.29l4.74,-4.19l4.97,-2.21l1.9,-1.9l0.77,-0.44l0.6,0.11l-0.11,0.7l0.56,1.29l-0.69,0.5l-2.06,3.14l-3.05,2.06l-0.83,1.38l0.25,2.53l1.44,2.18l2.96,2.54l-1.46,0.71l-0.65,0.92l-0.69,3.25l0.55,1.28l-4.5,2.46l-1.8,2.73l-1.72,1.55l-2.54,5.66l-0.47,2.74l1.43,2.4l1.69,1.86l0.53,1.82l0.33,2.99l1.73,1.32l1.97,0.96l2.36,3.75l3.58,2.65l1.13,1.23l-2.14,0.22l-3.05,-1.51l-2.25,0.02l-3.1,2.61l-2.55,0.17l-0.83,0.45l-1.01,2.11l0.66,2.69l-1.81,0.32l-1.82,0.77l-1.31,-1.19l-1.32,0.16l-2.71,0.98l-1.61,-0.83l-2.91,0.66l-3.08,-0.02l-1.25,1.2l-1.45,2.78l-1.63,0.29l-1.54,-0.81l-3.72,-3.26l-1.74,-0.72l-1.99,0.79l-4.39,3.99l-4.18,1.7l-1.33,1.27l-1.22,1.88l-0.77,-0.22l-1.3,-2.26l-3.72,-3.26l-1.68,0.15l-0.86,1.22l-0.65,0.4l-1.45,-0.03l-4.62,-2.41l-0.51,0.12l-1.18,1.63l-5.3,-5.7l-3.38,-1.79l-3.68,1.08l0.09,-0.84l2.29,-3.78l0.29,-1.36l-0.24,-1.42l-0.74,-1.26l-1.1,-0.55l-1.88,-0.01l-0.61,-0.22l-0.41,-0.61l0.02,-0.67l1.83,-3.86l0.35,-2.24l-0.65,-1.22l-1.85,-0.49Z", "name": "Alpes-de-Haute-Provence"}, "FR-05": {"path": "M662.86,537.06l0.07,-5.03l-0.46,-0.67l-1.82,-1.02l-1.39,-1.55l0.47,-1.33l-0.29,-0.71l-1.33,-0.38l-2.81,0.16l-3.98,-1.31l-2.2,-1.6l-0.54,-1.85l-1.31,-1.69l0.85,-0.19l2.33,0.46l0.67,-0.16l0.58,-0.67l-0.17,-1.21l-1.58,-1.26l-0.32,-1.32l0.2,-0.43l2.95,0.15l4.34,1.28l0.95,-0.24l2.8,-1.78l0.61,-0.81l-0.12,-1.02l-0.85,-1.05l-1.56,-0.99l-0.6,-0.98l0.34,-1.04l1.84,-2.49l0.74,-2.54l1.28,-0.26l2.49,0.32l4.9,-1.34l1.9,-1.99l0.0,-1.34l-0.94,-1.02l1.78,-2.52l4.33,-0.43l2.59,-0.77l1.06,-1.17l-0.23,-1.81l1.51,-1.3l1.93,-0.81l1.61,0.45l1.3,-0.18l3.71,-2.08l2.21,0.4l1.91,-0.35l1.7,0.15l3.74,-0.98l2.72,0.76l1.33,-0.13l0.6,-0.99l0.28,-3.45l-0.47,-1.39l-1.68,-1.88l-0.61,-3.45l-1.52,-0.82l-3.62,0.45l-0.92,-0.3l-0.21,-0.57l1.03,-6.05l1.31,-1.51l1.5,0.78l3.9,0.36l1.08,0.74l1.0,1.99l4.33,1.4l1.59,-0.46l0.96,-1.07l0.85,-2.13l2.87,-0.24l2.8,-1.28l-0.62,0.73l-0.02,0.5l2.03,2.18l0.17,1.69l0.79,1.24l0.95,0.66l2.05,0.17l1.38,0.88l0.35,1.96l-0.12,4.19l1.23,1.91l2.07,1.56l4.22,2.16l1.41,0.3l3.93,-0.45l2.94,1.06l1.2,1.26l-0.4,2.57l1.25,4.13l2.03,3.55l-3.87,-0.56l-1.58,0.72l-1.43,1.8l-1.1,-0.11l-1.03,0.61l-1.77,1.8l-5.05,2.27l-4.7,4.15l-1.97,0.35l-0.95,2.83l-1.41,1.68l-0.9,2.07l-0.84,0.33l-6.01,-0.18l-2.67,-0.7l-2.04,-1.41l-4.1,-4.21l-0.6,0.03l-2.45,3.06l-1.6,1.2l-2.28,0.65l-0.27,0.51l0.53,1.6l0.11,1.65l-0.5,1.44l-1.25,0.99l-0.83,-0.24l-1.98,-2.8l-1.32,-0.57l-1.61,-2.68l-0.35,-0.24l-2.63,-0.09l-1.43,0.54l-2.52,2.47l-3.05,1.5l-1.67,1.48l-1.17,2.53l-1.72,1.87l-0.37,1.01l0.16,0.89l0.77,0.79l-0.25,2.0l-2.67,-1.78l-1.75,-0.3l-0.44,0.24l-0.75,1.8l0.29,1.27l1.6,1.25l2.33,2.58l0.4,0.73l-0.31,0.3l-1.05,-0.06l-3.91,-1.37l-6.17,1.64l-1.06,-0.09Z", "name": "Hautes-Alpes"}, "FR-06": {"path": "M739.85,588.82l0.14,0.15l-0.95,1.09l-2.27,-1.32l-0.56,-1.01l0.46,-1.62l1.62,-3.07l-0.17,-1.52l-1.01,-0.96l-2.81,0.22l-0.88,-0.44l-3.9,-3.31l0.04,-2.99l-0.85,-2.3l-0.56,-0.67l-2.49,-0.28l-2.75,-0.88l-0.93,-0.85l-0.56,-1.35l3.81,-1.23l0.21,-1.17l-0.69,-1.94l0.78,-1.63l3.17,-0.47l2.96,-2.56l1.83,-0.02l3.14,1.53l3.1,-0.36l0.22,-0.66l-1.7,-1.85l-3.45,-2.52l-2.38,-3.78l-3.69,-2.28l-0.17,-2.56l-0.58,-2.04l-3.05,-3.97l0.41,-2.46l1.72,-4.25l0.72,-1.21l1.71,-1.53l1.69,-2.6l4.53,-2.48l1.25,1.52l1.14,2.19l2.27,1.81l0.83,2.02l0.81,0.8l1.01,0.31l2.19,-0.38l0.67,0.17l6.04,2.48l6.53,3.55l3.45,0.91l1.49,1.72l3.23,0.17l10.62,-2.7l1.73,-0.12l2.57,-1.44l1.28,0.21l-0.66,2.31l0.83,1.51l1.3,1.15l0.87,1.66l-0.1,1.05l-2.22,2.08l-1.33,3.37l-4.45,3.63l-1.3,1.81l-2.63,2.56l-1.02,1.63l0.26,2.23l1.1,3.29l-1.5,0.69l0.05,1.26l-0.73,0.15l-1.26,1.13l-0.56,-0.67l-1.18,-0.6l-1.65,0.49l-1.0,1.05l-0.43,1.64l-1.32,1.04l-0.71,1.53l-2.86,-0.54l-1.56,0.17l-1.86,1.37l0.04,0.96l-1.09,1.0l-0.54,-0.78l-1.17,-0.24l-1.72,0.39l-1.25,1.27l-0.66,2.71l0.71,3.75l-0.22,0.12l-0.57,-0.92l-0.68,-0.42l-1.15,-0.07l-1.27,0.64l-1.75,1.52l-0.56,-0.6l-3.4,0.07l-2.2,1.77l-0.26,1.1l0.65,0.74Z", "name": "Alpes-Maritimes"}, "FR-07": {"path": "M577.55,476.22l1.11,-1.41l2.95,-0.55l0.74,-0.72l-0.0,-0.72l-1.19,-1.6l2.16,-2.5l-0.86,-2.16l1.27,0.23l1.38,1.13l0.92,-0.02l0.45,-0.42l0.63,-2.87l1.86,-3.84l0.13,-1.54l-0.32,-0.45l7.61,-0.57l0.23,-1.28l-0.35,-2.29l0.79,-1.72l1.18,-0.9l5.42,-2.49l2.64,-0.46l0.25,1.75l0.5,1.07l1.67,1.89l-0.05,1.4l0.31,0.32l-0.26,3.51l0.16,2.41l0.8,2.99l-0.27,3.52l1.29,0.96l-0.12,0.95l1.02,1.63l-0.44,3.35l0.44,1.57l1.71,2.65l0.36,1.15l-1.81,5.39l-1.82,1.73l-0.54,1.53l-2.15,1.83l-1.09,2.24l-0.14,2.08l1.66,4.33l-0.4,2.69l-2.95,3.83l-1.23,2.68l-1.1,7.4l-2.03,4.07l0.16,0.54l-0.95,6.57l0.01,2.92l-3.85,-1.27l-2.16,-2.01l-1.95,-0.76l-3.44,0.06l-0.76,0.36l-0.51,0.78l-0.28,1.65l-1.3,0.63l-1.06,-0.63l0.11,-1.94l-0.77,-0.99l-1.14,-0.12l-1.89,0.45l-5.53,3.89l-1.17,-0.23l-4.88,-2.4l-1.24,-1.11l-4.78,0.52l-0.65,-3.42l0.81,-1.28l-0.09,-1.09l-1.77,-2.77l-1.61,-1.3l-2.22,-6.93l-0.89,-1.48l-1.35,-0.86l-0.56,-0.98l-0.68,-1.98l-0.52,-3.12l-1.27,-3.49l0.05,-2.72l1.27,-0.58l3.25,-4.5l3.93,-1.27l1.08,-2.19l2.26,0.12l4.33,-0.67l1.51,-0.63l2.02,-2.74l1.34,-3.3l0.62,-0.22l1.42,0.25l2.97,-1.28l0.14,-1.25l-0.57,-1.03Z", "name": "Ard\u00e8che"}, "FR-08": {"path": "M573.11,91.52l3.32,-0.4l9.73,2.22l1.91,-0.29l8.49,-3.54l2.64,-0.38l0.81,-0.51l1.03,-2.26l0.49,-2.73l-0.42,-1.4l0.42,-1.14l6.43,-5.47l1.16,-0.45l0.17,0.74l0.95,0.53l1.9,-0.28l0.3,0.34l-0.46,3.48l-0.42,-0.16l-0.65,0.28l-1.15,2.13l-0.07,2.33l-2.32,4.87l-0.3,1.37l0.89,1.44l2.96,1.1l0.83,1.27l-0.04,1.46l-1.51,3.13l0.87,1.86l0.09,3.19l0.8,0.73l1.6,0.19l4.15,-0.98l1.14,-0.05l0.97,0.46l2.32,1.92l3.4,1.12l3.27,3.72l2.07,1.47l1.72,0.4l3.86,-0.67l2.26,2.11l0.31,0.88l-0.71,0.59l-0.19,1.13l0.55,1.39l1.85,0.16l0.97,-1.0l2.53,0.92l0.24,0.19l-0.05,0.81l-6.21,3.82l-0.34,-0.04l-0.49,-0.99l-0.68,-0.39l-3.82,0.0l-2.25,-1.55l-1.05,-0.35l-1.15,0.2l-1.35,1.12l-0.38,0.72l-0.36,3.28l-1.46,1.89l0.74,2.38l1.02,0.78l0.75,2.44l-0.1,1.25l-1.08,2.51l-3.38,4.46l0.01,1.28l0.73,2.15l-3.98,3.18l-2.32,-1.4l-2.13,0.05l-4.27,1.39l-6.83,-1.28l-5.3,1.34l-0.89,-0.62l-1.22,-2.2l-1.55,-1.05l-1.7,-0.2l-6.2,0.85l-1.94,-0.43l-2.29,-2.8l-2.67,-0.15l-0.88,-0.49l-1.45,-1.44l-6.0,-4.02l-2.07,-0.61l-6.54,-0.45l-0.4,-0.92l-0.68,-0.44l0.36,-0.58l1.56,-0.48l0.31,-0.52l-1.78,-3.16l0.25,-1.03l1.13,-0.91l0.39,-0.79l-0.38,-2.04l0.46,-1.54l-1.6,-4.48l0.75,-0.67l1.86,-0.09l1.55,-0.83l1.47,-2.03l1.72,-1.03l3.2,-2.67l0.94,-1.48l0.01,-1.35l-1.51,-2.11l0.44,-2.67l1.83,-3.2l0.19,-1.43l-0.27,-1.06l-1.76,-2.77l-0.03,-2.56Z", "name": "Ardennes"}, "FR-09": {"path": "M418.24,606.75l-0.29,1.54l0.8,2.04l0.24,1.92l0.48,0.75l3.51,2.37l4.07,1.14l2.5,1.26l2.66,0.27l1.08,0.84l0.66,1.11l0.15,1.08l-1.08,1.79l1.93,1.96l1.1,3.87l-0.38,0.48l-2.23,0.75l-0.49,1.18l2.08,1.84l0.62,2.74l-0.3,0.38l-2.78,1.03l-1.69,-0.0l-1.08,0.43l-1.46,2.27l0.23,0.77l1.63,0.67l0.9,0.82l0.09,2.3l0.54,0.69l2.38,1.32l1.14,0.3l6.15,-0.98l1.95,2.33l2.97,1.46l0.54,0.91l-0.2,0.8l-0.35,0.18l-3.39,-0.53l-6.47,0.84l-2.14,2.49l-0.42,2.59l-1.41,1.09l-3.35,-0.73l-6.66,0.81l-0.58,-0.62l-2.03,-0.75l0.42,-1.19l-0.34,-0.53l-6.9,-0.61l-4.12,-2.32l-2.77,0.67l-1.86,-0.09l-0.4,0.28l-0.88,2.73l-0.91,0.33l-0.66,-0.77l-1.07,-2.58l-2.23,-3.15l-1.29,-0.49l0.21,-0.83l-0.29,-0.49l-1.53,-0.36l-7.55,-0.02l-2.58,0.53l-0.9,-0.58l-1.64,-3.14l-1.32,-1.06l-1.36,-0.37l-5.14,-0.31l-1.98,-1.15l-1.93,0.82l-1.92,-1.37l-1.71,-0.61l-1.37,-5.0l0.27,-1.51l1.85,-1.22l0.45,-1.83l0.46,-0.57l1.64,0.0l2.6,-0.62l1.31,-0.73l1.08,-1.1l0.45,-1.8l-0.66,-3.57l0.04,-1.54l0.44,-0.83l2.59,-1.15l1.0,-2.04l0.48,-0.39l1.42,0.0l1.96,-0.78l0.71,0.04l3.3,1.87l1.98,2.72l1.28,0.28l3.23,-2.67l0.04,-0.55l-1.04,-1.27l-2.95,-1.28l-0.15,-0.52l0.76,-0.88l4.09,-0.47l2.73,-0.96l1.52,-0.93l0.72,-1.27l-0.05,-0.44l-0.95,-1.03l-3.22,-1.18l-0.68,-0.75l0.21,-1.57l0.95,-0.54l1.39,0.16l1.24,0.65l2.71,2.5l-0.22,2.41l1.88,1.37l1.81,-0.13l1.54,-1.1l0.92,-2.0l-0.93,-2.11l0.32,-0.65l0.79,-0.2l3.53,2.42l2.17,-0.13l1.54,1.52l1.28,-0.4l1.47,-1.74l1.11,0.38Z", "name": "Ari\u00e8ge"}, "FR-RE": {"path": "M761.79,701.36l1.08,0.18l1.12,-0.39l1.21,0.39l2.77,-0.03l2.17,1.11l3.51,0.8l0.97,0.55l2.4,2.39l0.54,1.06l0.32,2.77l0.52,1.06l1.9,1.97l0.91,3.81l1.85,0.93l1.43,2.47l3.94,1.89l0.84,0.82l0.32,1.39l-1.08,2.72l-1.31,6.18l-0.27,4.98l-0.6,1.25l-1.42,0.53l-4.24,0.16l-2.56,1.32l-1.76,0.26l-1.74,-0.1l-1.22,-0.48l-1.58,0.46l-1.92,0.08l-3.62,-0.55l-3.79,-2.43l-5.72,-1.87l-1.23,-0.75l-1.75,-2.11l-3.42,-0.26l-3.52,-4.42l-0.9,-1.55l-0.63,-4.75l-3.33,-4.36l-1.6,-3.39l0.0,-1.42l0.43,-1.55l0.75,-1.19l2.55,-1.05l1.15,-1.41l0.43,-1.65l-0.32,-1.19l0.55,-0.82l-0.29,-0.86l0.61,-0.27l2.76,-0.09l5.6,-3.4l4.93,-0.0l2.25,0.81Z", "name": "La R\u00e9union"}, "FR-75": {"path": "M465.44,178.43l-0.81,2.42l-0.63,0.32l-6.66,-0.1l-4.66,-1.66l-1.08,0.25l-0.35,-1.01l0.33,-1.1l1.86,-2.31l6.5,-0.01l0.75,0.27l1.32,1.54l1.0,0.67l2.45,0.72Z", "name": "Paris"}, "FR-74": {"path": "M679.63,390.63l1.41,-0.73l2.69,-0.56l2.68,-0.09l2.31,0.77l2.11,-0.97l3.09,-3.14l3.94,-2.28l1.58,-1.45l-0.19,-2.13l-0.68,-0.47l-1.16,0.35l-0.4,-0.18l-0.89,-2.03l4.08,-5.7l3.32,0.16l1.15,1.46l0.93,0.33l0.77,-0.37l0.82,-1.0l4.35,-1.83l1.15,-1.48l11.95,-1.05l5.16,0.78l0.08,0.91l-0.38,1.12l-1.55,1.58l-0.38,1.39l1.23,1.83l2.14,1.97l1.23,1.83l-2.07,3.51l-1.08,2.81l-0.54,2.86l0.83,1.53l4.77,0.91l0.69,0.58l-1.17,1.69l0.25,3.27l1.29,0.49l1.46,-0.85l1.18,0.45l4.32,4.17l1.84,4.74l-1.27,1.06l-1.66,3.08l-1.14,0.85l-2.54,0.9l-1.94,0.05l-0.44,1.16l-1.45,-0.68l-2.69,0.96l-0.98,1.38l-0.34,1.34l0.04,2.12l-4.13,2.65l-0.73,-0.03l0.35,-2.15l-1.24,-1.81l-2.0,-0.99l-2.81,-0.28l-1.03,-0.51l-1.81,-1.57l-0.56,-1.14l1.0,-1.78l0.02,-1.93l-1.76,-1.43l-1.59,-0.03l-3.28,3.19l-0.87,1.3l-1.24,3.11l-0.67,0.83l-2.92,2.02l-1.3,3.76l-1.06,1.36l-1.32,0.92l-1.47,0.48l-1.52,0.03l-0.54,-0.18l-2.86,-3.29l-1.72,-1.36l-1.97,-0.89l-2.29,-0.03l-1.84,1.2l-1.36,0.1l-2.67,-0.73l-1.01,-0.85l-0.99,-3.12l-1.13,-0.8l-3.31,-0.61l-0.71,-0.81l-0.96,-6.52l-0.65,-1.13l-1.01,-0.37l-0.98,-8.24l0.06,-3.25l0.91,-0.87l0.83,0.89l0.88,0.31l1.03,-0.56l1.55,-2.09l1.78,0.11l1.01,-0.3Z", "name": "Haute-Savoie"}, "FR-77": {"path": "M527.01,179.34l-0.11,1.1l-0.51,0.67l-2.55,0.08l-0.94,0.42l-0.16,0.75l1.09,1.07l-1.54,1.52l-0.27,1.55l0.54,0.66l1.24,-0.02l1.67,1.83l0.7,2.85l-0.5,1.9l0.28,1.65l0.9,0.56l2.22,-0.3l1.49,1.83l-2.45,1.85l-1.06,1.42l-0.92,2.34l-0.48,0.4l-2.35,0.42l-0.63,0.51l-0.08,0.73l0.94,1.41l-1.79,1.84l-0.05,0.79l0.65,1.23l-0.56,2.16l0.16,0.69l-1.39,1.3l-0.9,1.45l-0.77,0.1l-1.91,-0.46l-6.17,0.91l-4.68,-0.48l-2.32,0.9l-3.26,0.0l-0.8,0.78l-1.15,3.24l0.03,1.71l0.9,2.26l-1.5,2.46l-3.77,2.32l-0.95,3.37l-6.65,1.88l-0.6,-0.12l0.46,-1.24l-0.4,-0.63l-0.91,-0.28l-1.66,0.13l-1.16,0.39l-1.65,1.59l-1.87,0.81l-8.32,-0.58l-4.04,0.66l-1.59,-0.77l0.02,-0.63l0.53,-0.53l2.04,0.27l0.77,-0.41l0.21,-0.87l-0.51,-1.19l0.65,-0.98l0.18,-1.12l-1.38,-1.72l-3.43,-1.97l-0.96,-3.2l-1.72,-2.25l5.65,-5.46l1.78,-1.03l0.76,-0.92l-0.07,-0.57l-1.16,-0.88l-0.12,-0.46l-0.39,-5.8l1.51,-4.97l0.18,-3.88l0.77,-1.17l2.31,-2.12l-0.19,-2.68l1.31,-1.81l0.38,-1.59l-0.6,-6.14l-1.09,-2.66l0.08,-1.07l1.2,-3.57l0.0,-1.26l-1.33,-2.97l0.48,-1.75l-0.39,-0.89l-0.98,-0.66l0.63,-1.27l0.34,-2.93l0.59,-1.15l2.39,-0.95l1.28,0.25l1.79,1.42l0.99,0.02l1.16,-0.44l1.27,0.83l1.39,0.28l2.4,-1.49l4.01,0.91l5.72,-1.07l1.57,0.83l2.35,-1.11l1.82,-0.03l2.03,-1.04l3.48,0.96l0.98,1.05l0.87,1.67l-0.52,2.79l0.73,1.41l8.88,6.73l0.87,0.26l1.23,-0.5l0.48,0.14l0.61,2.97l0.7,1.03l3.28,1.81l2.3,-0.04Z", "name": "Seien-et-Marne"}, "FR-76": {"path": "M421.48,106.09l-2.06,1.53l-2.09,2.85l-0.45,1.3l0.44,0.98l2.53,-0.43l0.4,0.34l-0.82,1.37l-1.94,1.09l-0.47,0.89l0.74,1.37l0.19,3.89l0.54,1.79l0.44,3.63l0.8,0.82l2.01,-0.46l0.65,0.53l-0.4,1.31l-1.05,0.52l-0.47,0.65l-1.01,2.31l-0.24,1.82l-2.08,0.81l-8.41,-3.23l-9.16,-1.1l-2.76,1.06l-1.7,1.98l-2.65,4.9l-0.59,0.43l-4.31,-0.27l-1.66,0.48l-1.22,0.86l-1.39,1.74l-3.89,0.92l-1.17,0.83l-0.65,1.2l0.29,1.23l-0.88,0.29l-0.99,-0.12l-3.87,-2.8l-2.21,-0.65l-1.68,-0.96l-0.59,-1.63l3.05,0.44l0.46,-0.41l-0.17,-2.06l-0.9,-0.89l-2.36,-1.02l-2.91,-2.45l-0.98,-0.39l-5.97,1.34l-2.55,-0.37l-1.75,-2.77l-0.47,-0.17l-2.35,0.47l-1.02,-0.38l-1.98,-2.28l-2.48,-1.7l-0.84,0.03l-4.29,2.28l-4.93,0.6l-4.99,-0.57l-4.35,-1.26l-3.7,-0.45l-1.09,-0.56l-1.65,-2.15l0.22,-1.23l3.15,-4.92l2.42,-6.93l3.76,-2.82l9.31,-3.67l0.73,-0.8l7.56,-3.82l2.18,-0.58l2.37,-1.37l4.68,-1.45l5.32,0.04l25.22,-6.87l1.56,-1.02l1.59,-0.51l2.41,-2.26l6.63,-4.5l8.53,5.05l10.02,8.92l0.82,1.05l0.92,3.13l1.89,2.97l0.77,2.22Z", "name": "Seine-Maritime"}, "FR-71": {"path": "M562.27,336.18l0.34,-0.39l2.2,-0.79l0.73,-1.26l-0.24,-1.31l-2.75,-2.1l0.02,-3.93l-0.92,-0.98l-1.84,-0.56l-0.18,-0.63l0.21,-0.67l2.84,-0.75l0.95,-1.27l0.11,-1.78l-1.0,-2.98l0.55,-2.03l4.19,-0.67l3.55,-1.98l1.28,-0.32l0.94,0.2l2.52,2.56l3.25,1.17l1.71,2.88l0.9,0.16l1.88,-0.56l1.71,2.13l1.13,0.82l4.1,1.22l2.31,-0.15l2.09,4.11l1.21,1.07l3.27,0.91l0.98,2.32l1.15,0.68l1.06,-0.1l1.91,-1.42l3.31,-0.2l7.33,-2.89l5.05,-0.51l3.5,-0.95l1.75,1.53l5.44,-0.2l4.0,-1.74l0.92,0.33l1.55,2.84l3.44,3.22l2.4,1.27l1.61,0.29l1.67,1.37l1.99,0.63l-1.05,1.51l-4.39,0.61l-1.2,1.17l-0.05,0.66l0.39,0.73l1.85,1.61l-0.8,1.32l-0.1,0.94l1.47,1.38l1.77,6.19l-1.03,3.43l-1.83,1.08l-0.81,1.06l-0.2,2.01l0.61,1.51l2.83,1.66l0.43,0.91l-1.02,0.93l-4.32,0.87l-1.26,0.59l-4.14,-0.98l-1.53,-0.8l-2.16,-1.97l-1.58,-0.52l-2.05,0.18l-3.7,1.25l-1.28,0.13l-4.17,-1.37l-0.92,-0.05l-1.3,0.44l-1.85,4.3l-0.85,4.21l-1.47,2.56l-0.15,1.93l-3.53,6.7l-1.32,4.86l0.08,0.87l-2.89,-0.32l-0.98,-0.75l-0.98,-2.54l0.04,-1.79l-1.73,-1.29l-0.18,-1.86l-0.76,-0.6l-1.87,-0.55l-1.12,0.62l-0.53,1.93l-1.03,0.26l-2.35,-2.01l-0.72,0.04l-1.62,0.92l-1.03,0.08l-2.29,-0.51l-2.25,-0.92l-0.92,0.11l-0.68,0.9l-1.27,4.46l-1.74,2.06l-1.51,1.09l-1.62,0.57l-1.65,0.02l-4.83,-1.24l-3.08,0.65l-4.17,-0.93l-4.25,1.28l-1.42,-0.08l-2.06,-1.47l-2.77,-1.06l0.11,-2.73l-0.6,-1.7l5.26,-2.58l1.52,-1.33l0.08,-0.97l-0.86,-1.29l0.04,-1.38l-0.52,-1.25l0.64,-3.0l-0.8,-3.17l-2.08,-1.35l-4.18,-0.89l-2.7,-2.24l-1.72,-0.07l-3.83,-1.94l0.37,-3.1l-0.38,-1.88l-1.07,-0.72l-1.57,-2.64l-2.41,-2.14l-0.47,-1.58l-1.23,-1.99l6.23,-0.88l1.46,0.86l2.65,2.87l0.44,0.1l1.46,-0.58l1.52,-1.21l3.71,-1.21l4.85,-2.87l3.05,-0.59l0.49,-0.7l0.09,-2.12l-0.8,-1.29Z", "name": "Sa\u00f4ne-et-Loire"}, "FR-70": {"path": "M732.55,259.44l-2.88,3.17l-1.2,2.11l-0.42,2.48l1.68,5.43l0.2,3.95l1.28,2.06l-0.19,0.86l-1.42,1.33l-4.67,-1.11l-2.25,0.63l-1.97,1.28l-2.26,-0.42l-1.03,0.82l-1.64,2.83l-3.01,-1.42l-0.7,0.17l-0.94,0.9l-1.98,-1.56l-1.16,-0.14l-5.54,0.9l-1.91,1.17l-1.98,4.16l-0.8,0.72l-3.35,-0.18l-1.04,0.81l-1.02,1.85l-0.9,0.3l-2.2,-0.03l-2.92,2.94l-4.6,1.44l-4.42,-0.47l-11.89,6.05l-3.92,-0.48l-4.0,0.76l-3.44,-1.66l-0.69,-0.66l-0.63,0.02l-0.84,-1.07l-0.56,-4.91l-2.21,-1.91l-0.59,-3.43l-0.81,-0.72l-1.67,-0.59l0.44,-1.97l0.7,-0.55l1.95,-0.44l2.03,-2.43l0.31,-1.4l-0.34,-1.34l-0.93,-1.42l0.2,-1.34l-0.22,-0.65l-1.0,-1.07l-0.91,-0.31l-0.83,0.13l-1.8,1.57l-1.46,-0.6l2.09,-4.03l1.01,-0.53l3.99,-0.6l3.21,1.65l1.53,0.3l6.58,-1.86l0.7,-0.44l0.69,-0.83l0.2,-0.97l-0.19,-2.21l0.55,-2.48l-0.58,-2.14l0.19,-0.51l0.63,-0.82l6.42,-3.94l2.41,-2.91l2.03,-0.75l0.4,-0.92l-0.24,-0.87l1.66,-0.91l1.8,-2.61l0.31,0.88l-0.17,1.53l0.84,0.59l3.53,-2.14l2.66,-2.84l1.54,-0.3l2.78,0.53l1.12,0.68l0.83,1.02l-0.06,1.28l0.31,0.67l3.72,1.77l2.64,-0.19l2.39,-1.21l3.0,-0.19l2.26,0.8l5.28,2.92l1.38,0.35l2.17,-0.03l1.59,-0.57l1.93,-2.36l0.72,-0.14l3.61,3.45l3.4,1.51l5.45,3.8Z", "name": "Haute-Sa\u00f4ne"}, "FR-73": {"path": "M658.46,427.8l1.73,-0.16l4.42,-4.15l2.23,-1.04l0.99,-1.05l0.84,-2.26l0.46,-3.28l2.91,-7.66l0.55,-2.73l0.4,0.1l0.46,0.75l0.65,5.41l0.44,1.39l1.0,1.06l3.47,0.68l0.76,0.58l0.53,2.21l0.99,1.46l2.07,0.99l1.65,0.28l1.63,-0.15l1.83,-1.19l1.78,0.03l1.77,0.79l1.66,1.31l2.85,3.29l1.02,0.37l1.77,-0.06l1.58,-0.52l1.6,-1.13l1.2,-1.57l1.17,-3.53l2.91,-2.03l0.8,-1.02l1.25,-3.12l0.78,-1.16l2.92,-2.92l0.45,-0.1l1.07,0.4l0.92,1.0l-0.17,1.13l-1.03,1.87l0.69,1.7l2.0,1.78l1.23,0.62l2.94,0.32l1.7,0.87l0.94,1.44l-0.47,2.15l0.38,0.48l1.56,-0.02l3.93,-2.52l0.65,2.99l1.41,1.87l1.65,1.08l2.44,0.57l2.19,1.73l2.63,0.83l0.29,0.87l-0.98,2.48l1.03,2.1l0.33,3.09l0.49,1.22l5.55,3.27l1.58,2.67l3.47,1.57l0.2,0.81l-1.73,3.0l-2.31,2.53l0.24,2.49l0.65,1.55l0.0,0.91l-1.6,1.21l-1.33,1.99l-0.85,-0.84l-0.72,-0.2l-4.4,1.41l-2.78,3.01l-2.44,0.32l-0.53,0.84l0.54,1.12l-1.68,0.71l-4.26,-1.68l-2.26,-0.35l-2.28,1.23l-2.07,0.11l-2.41,1.23l-1.98,0.23l-2.21,1.2l-2.53,0.08l-0.73,0.39l-0.94,2.26l-0.81,0.88l-1.02,0.26l-3.86,-1.22l-0.85,-1.84l-1.43,-1.0l-4.54,-0.57l-0.87,-0.62l-0.8,-1.5l-1.95,-0.61l-3.81,-0.24l-0.27,-2.67l-1.39,-5.1l0.11,-1.29l0.63,-1.24l2.75,-2.38l0.41,-2.05l-0.5,-2.06l-1.14,-1.71l-2.71,-2.72l-0.85,-0.35l-4.2,-0.4l-3.65,-2.95l-2.4,-0.56l-1.35,0.34l-1.1,0.96l-0.35,5.75l-8.79,-3.19l-0.82,-0.79l-7.95,-14.1Z", "name": "Savoie"}, "FR-72": {"path": "M351.4,270.06l0.02,0.93l-2.17,0.43l-3.23,1.43l-2.52,0.52l-1.04,0.58l-0.9,0.99l-1.95,-0.85l-1.07,0.0l-0.78,0.53l-0.36,0.7l0.4,2.57l-5.8,-1.04l-6.07,-1.69l-0.5,0.27l-0.57,1.88l-1.08,0.05l-3.11,-1.35l-2.23,-0.37l-6.66,-3.2l-3.43,-0.45l-0.68,0.27l-0.86,1.05l-1.16,0.43l-1.42,-0.29l-1.32,-0.88l-0.81,-1.26l-0.1,-1.37l1.2,-0.92l0.27,-0.59l-0.87,-1.29l-0.99,-0.13l-2.11,1.18l-9.84,-4.01l1.52,-1.18l0.27,-1.75l-0.32,-0.43l-2.15,-0.41l-0.74,-0.43l-0.62,-0.89l0.02,-0.71l2.8,-1.29l0.77,-0.83l0.19,-1.25l-0.86,-1.98l0.51,-1.45l1.22,-0.73l2.99,-0.23l1.11,-0.49l0.65,-0.82l0.05,-1.28l-0.48,-1.18l-2.27,-2.6l-0.42,-0.77l0.21,-0.82l4.77,-1.14l1.85,-1.48l0.52,-2.07l-0.91,-2.91l0.27,-2.05l4.53,-2.75l1.2,-2.44l-0.88,-8.62l0.85,-1.78l0.67,-0.45l7.89,-1.16l3.37,0.46l0.6,-0.45l0.44,-1.41l2.46,-0.81l2.23,-2.53l2.43,-1.15l5.27,-1.07l1.66,0.18l3.55,1.66l0.35,1.07l-0.32,2.68l0.3,3.32l0.87,2.03l1.63,1.4l1.84,0.94l2.82,-0.07l0.41,2.48l1.13,0.63l5.3,1.27l2.3,0.07l0.97,-0.32l1.62,1.39l1.93,2.55l2.19,1.39l1.53,0.31l1.53,-0.36l2.97,1.92l3.09,0.38l0.63,0.45l-0.41,0.52l-4.24,2.22l-0.26,1.28l1.21,1.18l-2.67,0.5l-0.68,0.75l0.01,0.82l1.12,2.05l1.71,0.46l-0.65,3.22l0.42,1.92l-0.62,1.15l-3.06,2.39l-0.56,1.67l-0.05,3.43l-1.51,4.18l-1.33,1.2l-1.74,0.98l-3.44,1.47l-1.46,1.3l-0.79,1.81l0.48,1.28Z", "name": "Sarthe"}, "FR-79": {"path": "M307.7,318.83l1.01,2.11l0.31,2.12l0.43,0.78l1.59,0.62l0.51,0.63l-0.04,1.91l1.71,5.06l2.48,2.93l-0.11,0.87l-0.46,0.4l-1.76,-0.04l-0.36,0.34l-0.18,1.29l0.21,3.21l1.5,1.72l0.3,0.95l-0.7,2.37l-1.66,2.9l-0.27,1.28l0.15,1.41l0.77,1.23l1.89,0.75l0.18,0.78l-1.63,4.28l-1.29,1.43l-0.35,0.87l0.03,2.17l1.17,1.4l0.04,4.29l0.67,1.2l1.43,1.29l-0.04,2.02l0.5,1.39l1.12,1.37l1.4,0.93l1.33,-0.26l1.92,-2.12l0.98,-0.48l0.98,0.03l1.05,0.86l0.28,1.47l-0.35,1.7l-0.79,1.42l-2.24,2.67l-0.55,1.15l-0.3,1.85l0.85,1.39l4.2,1.72l0.65,0.44l0.28,0.88l-0.61,2.2l0.12,0.72l-0.77,0.42l-2.59,-1.26l-3.0,0.43l-3.33,1.46l-2.96,2.31l-3.1,5.17l-2.17,0.89l-1.1,-0.39l-3.28,-3.64l-5.12,-3.24l-2.81,-0.86l-4.02,-0.1l-3.17,-2.08l-1.48,-0.19l-2.64,0.33l-2.25,-2.14l-1.36,-0.65l-3.99,-0.28l-1.25,-0.8l-5.25,-5.83l-1.47,-0.94l0.45,-0.86l0.02,-1.06l-0.75,-1.98l3.3,-1.6l2.86,-0.19l2.34,-2.04l2.9,-0.42l0.56,-0.59l0.18,-0.79l-0.96,-1.5l-2.15,-1.52l-1.48,-0.05l-0.2,-0.92l0.59,-2.98l-0.97,-4.09l1.47,-2.55l-0.66,-4.53l-1.62,-2.86l-0.6,-3.2l-3.78,-6.41l-0.05,-0.67l0.83,-1.82l-0.25,-0.71l-1.96,-1.84l-3.53,-1.93l-0.97,-1.29l-0.82,-3.62l-0.91,-1.07l-1.53,-0.78l-2.22,-3.06l-2.05,-1.29l0.28,-0.66l0.72,0.13l4.34,1.93l4.31,-0.56l5.13,0.68l3.99,-0.34l1.28,-0.41l1.37,-1.03l2.73,-1.24l0.34,-1.13l-0.81,-1.37l1.0,-0.85l1.73,-0.42l2.13,0.74l5.97,-1.69l6.45,-0.7l3.52,0.09l1.83,-0.35l1.08,0.56l1.0,2.22l1.71,0.55l0.63,-0.49Z", "name": "Deux-S\u00e8vres"}, "FR-78": {"path": "M418.01,161.81l0.47,1.62l1.53,0.32l3.71,-1.8l2.31,-0.25l0.99,0.35l0.64,0.72l0.72,2.92l0.93,1.67l0.47,0.18l3.61,-1.19l1.99,0.28l1.59,2.11l-0.41,1.35l0.52,1.33l1.23,0.51l1.54,-0.92l1.78,-3.26l1.06,-0.33l3.04,0.23l1.68,0.75l-0.28,1.59l-2.23,1.75l-0.89,2.2l0.17,2.13l0.34,0.36l1.31,0.21l0.05,2.93l0.86,2.02l3.06,2.77l-5.57,1.66l-0.64,0.67l-1.39,3.89l-1.84,0.37l-0.95,0.59l-0.89,1.34l-0.26,1.51l0.54,3.15l-0.45,2.53l-0.65,1.03l-0.75,0.35l-2.82,0.14l-0.66,0.79l-1.85,7.72l-2.31,0.34l-4.37,-1.8l-0.92,-0.66l-1.17,-1.71l0.01,-2.65l-0.44,-1.51l-0.7,-0.87l-2.25,-1.46l-0.79,-2.45l-3.87,-2.43l-1.32,-1.5l-0.63,-1.5l-1.41,-0.91l0.0,-0.93l1.6,-2.06l0.18,-1.09l-0.28,-0.53l-1.69,-0.85l-0.41,-0.65l-0.06,-1.41l0.53,-2.41l-0.31,-1.9l-1.49,-1.94l-3.28,-5.55l-0.4,-2.82l-2.11,-0.85l0.25,-2.13l-0.72,-1.71l0.41,-0.57l7.7,-1.56l2.34,-1.08l4.31,0.9Z", "name": "Yvelines"}, "FR-YT": {"path": "M678.38,715.39l-0.52,0.0l-2.02,-6.29l2.65,-2.73l0.87,2.15l0.24,2.21l-0.38,2.26l-0.84,2.4ZM647.49,692.27l-1.04,0.75l-0.14,0.46l1.6,0.36l0.6,0.88l2.18,1.87l2.93,3.52l1.63,1.28l2.49,0.62l4.96,-0.04l2.61,0.78l2.6,1.74l1.05,1.73l0.02,2.1l-0.68,2.82l-3.71,5.46l-1.53,1.19l0.14,2.09l1.04,1.92l2.81,1.86l-0.3,1.89l-3.07,6.4l-2.6,3.07l-1.21,3.45l2.82,4.18l-1.15,1.69l-1.53,1.06l-0.76,-1.37l-0.41,-0.2l-1.1,0.17l-1.53,1.03l-1.83,0.51l-1.63,-0.43l-2.25,-1.33l-1.24,0.41l0.12,-1.88l-0.84,-1.8l-1.74,-0.77l-1.92,0.17l0.0,-0.31l2.91,-1.61l0.29,-2.68l-1.49,-2.81l-2.83,-1.57l0.22,-0.43l1.06,-0.67l1.55,-0.14l0.82,0.5l2.83,3.33l2.81,1.68l1.89,-0.73l0.6,-2.42l-0.76,-2.88l-1.37,-2.17l-1.74,-1.96l-4.21,-3.56l2.58,-0.75l0.36,-0.4l-0.07,-1.34l-0.91,-1.33l-0.68,-2.3l-0.55,-4.71l-0.6,-2.37l-1.57,-1.23l-1.87,-0.61l-1.59,-1.03l-1.74,-2.81l-0.41,-4.1l7.31,-7.87l0.59,1.27l-0.82,0.34Z", "name": "Mayotte"}, "FR-66": {"path": "M419.41,662.94l0.18,-1.54l0.62,-1.4l0.95,-0.83l6.33,-1.23l1.62,-0.04l2.87,0.76l1.42,-0.31l1.24,-1.33l0.24,-2.08l0.4,-0.91l1.5,-1.63l6.16,-0.76l3.36,0.54l0.91,-0.41l1.55,0.66l1.74,-1.21l2.82,-2.93l2.32,0.28l1.26,-0.26l1.25,-0.79l0.69,-1.19l-1.22,-6.76l0.48,-0.85l1.85,-0.65l20.21,0.96l1.72,-0.54l3.27,-3.63l4.2,-1.71l2.09,1.3l9.15,4.22l-0.42,6.18l0.26,1.92l-0.34,3.08l0.88,9.52l1.12,1.26l4.27,1.24l0.37,0.52l-0.12,1.76l1.98,2.59l0.3,1.34l-2.29,0.36l-3.05,-0.09l-1.83,-0.7l-1.61,-2.13l-2.87,-0.28l-1.16,0.57l-2.17,-0.57l-1.94,1.35l-3.1,0.24l-3.76,2.65l-4.83,-0.08l-1.22,0.53l-2.65,1.86l-0.57,0.72l0.5,1.8l0.52,0.57l-2.26,-0.17l-2.79,-0.85l-1.31,0.01l-0.83,0.63l-0.48,1.11l-0.67,0.22l-2.94,-1.07l-1.08,-0.76l-1.67,-2.44l-2.78,-0.4l-6.16,-2.91l-1.99,0.2l-3.71,1.04l-3.02,-0.29l-1.14,0.54l-1.01,1.86l-2.45,1.95l-0.62,0.36l-2.45,0.36l-0.71,-0.1l-1.77,-1.24l-1.32,-3.75l-1.07,-1.5l-3.53,-0.74l-3.45,-2.1l-1.38,-0.5l-3.76,-0.46l-0.8,-0.3l-0.31,-0.6ZM436.08,668.09l0.96,-0.22l0.2,-0.59l-1.32,-2.33l-0.63,-0.79l-0.47,-0.12l-0.9,0.48l-0.67,1.33l0.07,1.16l0.97,0.84l1.79,0.25Z", "name": "Pyr\u00e9n\u00e9es-Orientales"}, "FR-67": {"path": "M749.43,204.53l5.77,-0.36l0.71,-0.43l0.65,-1.16l2.35,-1.16l0.73,-0.71l0.93,-1.77l1.44,-4.66l-0.53,-0.88l-1.5,-0.78l-0.14,-0.62l2.91,-4.3l0.33,-1.37l-0.57,-1.43l-3.83,-3.82l-1.83,-0.81l-0.15,-1.32l-0.77,-0.76l-0.74,0.09l-0.54,0.56l-0.45,1.75l-2.17,0.87l-1.14,1.58l-1.05,0.07l-0.85,-1.8l-0.77,-0.61l0.26,-0.79l0.96,-0.95l-0.06,-1.04l-5.03,-1.96l-1.91,-1.6l-0.2,-0.81l0.44,-1.33l0.89,-1.07l2.61,-2.08l0.31,-1.9l2.13,-2.7l-0.21,-1.76l0.28,-0.4l1.23,0.18l0.29,0.32l0.81,2.78l0.94,1.02l8.51,2.56l1.02,1.76l1.21,0.68l1.4,0.29l2.12,-0.08l7.03,-1.14l3.26,1.63l1.38,-0.12l0.76,-0.45l1.05,-1.41l1.35,-2.8l1.9,-2.92l2.27,-0.55l2.64,0.55l2.77,-0.96l5.0,1.23l4.59,-0.2l9.65,4.37l6.29,1.29l-1.02,1.01l-1.91,3.08l-2.79,6.52l-0.7,1.0l-3.2,1.38l-0.7,0.85l-0.46,1.3l-2.12,0.14l-0.95,0.41l-0.65,2.78l-3.8,3.45l-2.72,1.47l-2.58,3.44l-0.59,2.73l-0.01,2.81l0.72,2.0l-2.23,1.72l-0.47,2.28l-1.12,1.98l-0.77,3.01l-0.07,1.2l0.89,2.96l-0.06,0.91l-0.71,0.98l-2.24,1.43l-0.92,4.51l-4.46,5.68l-0.61,2.23l-1.29,2.14l-2.85,-0.38l-0.93,-1.96l-2.43,-0.53l0.39,-2.66l-0.86,-1.15l-9.78,-4.05l-0.93,-2.72l-1.79,-0.58l-3.01,-0.19l-0.06,-0.79l-1.49,-1.39l-3.3,-0.17l-1.31,-0.59l-0.23,-0.56l0.82,-2.61l0.59,-7.58l1.09,-1.01l0.02,-0.68l-3.11,-1.58Z", "name": "Bas-Rhin"}, "FR-64": {"path": "M204.81,598.27l0.63,0.4l0.52,-0.08l1.38,-0.84l5.64,-0.92l1.36,-1.72l2.57,-1.46l2.17,-3.85l2.64,-3.02l2.34,1.93l1.96,0.84l3.62,-0.6l4.13,-0.08l2.15,-0.46l2.54,-1.24l2.39,-2.3l1.4,0.72l0.29,0.8l-0.18,2.62l1.09,1.13l0.44,0.09l4.3,-2.38l2.57,1.36l1.05,0.16l1.13,-0.26l1.13,-0.65l0.53,-1.09l-0.02,-1.16l3.11,0.76l1.49,-0.99l2.78,0.18l3.59,-1.69l2.16,0.06l2.94,1.44l2.65,-0.72l6.78,1.04l1.02,-0.26l5.11,-3.37l0.44,0.14l-0.23,1.88l1.48,0.88l6.8,-0.81l3.48,-1.38l3.8,-0.5l5.59,1.04l1.06,0.66l0.67,1.47l1.56,1.16l2.16,4.89l-0.31,0.26l-1.15,-0.07l-0.56,0.49l0.03,2.28l0.52,0.69l0.76,0.17l1.43,-1.29l0.75,0.02l-0.11,3.16l1.06,3.23l-0.48,0.48l-1.62,0.52l-0.96,1.06l-0.61,2.64l0.6,2.08l-0.4,0.75l-1.97,1.89l-1.1,3.23l-1.55,0.13l-1.74,2.98l-2.28,1.29l-0.98,1.23l0.15,3.83l-0.4,0.28l-2.98,0.33l-2.69,2.77l-0.17,0.81l0.39,1.61l-0.03,1.69l-1.67,2.29l-0.35,1.23l0.55,3.77l-0.88,-0.07l-0.78,1.18l-0.86,-0.35l-4.31,2.79l-1.69,0.12l-3.22,-1.34l-1.7,-0.07l-0.41,0.38l-0.09,1.49l-1.58,0.74l-0.62,-1.55l-1.55,-0.25l-0.08,-0.92l-2.44,-2.91l-3.24,-2.0l-1.85,-0.11l-0.47,-0.41l-0.25,-0.49l0.25,-1.36l-1.4,-2.86l-1.82,-0.51l-4.68,0.75l-4.79,-0.35l-2.24,-0.65l-2.95,-2.22l-3.08,-0.49l-2.02,-1.09l-2.32,0.15l-4.04,-2.44l-3.6,-0.59l-1.04,-0.56l-0.92,-0.94l-0.21,-0.75l0.38,-0.75l1.21,-0.93l-0.15,-0.71l-1.6,-0.32l-1.53,0.56l-1.05,1.06l-0.53,1.66l-0.16,1.94l-0.41,0.78l-2.38,0.12l-2.68,-0.98l-1.02,-1.03l-0.63,-1.32l3.7,-3.88l0.95,-2.41l0.66,-2.96l-0.35,-3.1l-2.03,-1.72l-2.04,0.3l-2.51,-1.16l-3.21,-0.56l-1.3,0.75l-0.75,1.77l-1.7,0.25l-0.8,-0.46l-0.49,-1.68l0.17,-0.84l-0.85,-0.76l-1.84,-0.58l-3.76,1.0l-0.43,-1.87l-0.91,-1.03l-1.52,-0.66l0.07,-2.41ZM309.11,602.32l1.15,-0.9l0.67,-2.47l-0.61,-1.33l-1.64,-0.44l-1.19,0.8l-0.49,2.49l0.63,1.45l1.49,0.4ZM307.84,608.3l0.94,-0.4l1.08,-1.94l-0.6,-1.74l-1.63,-0.95l-0.46,0.07l-1.45,1.45l-0.2,1.38l0.25,1.08l0.52,0.68l1.55,0.37Z", "name": "Pyr\u00e9n\u00e9es-Atlantiques"}, "FR-65": {"path": "M296.09,638.61l-0.69,-4.39l0.23,-0.9l1.78,-2.58l-0.28,-3.88l2.39,-2.45l2.79,-0.25l0.84,-0.59l0.32,-0.83l-0.41,-1.39l0.02,-1.75l0.72,-0.92l2.37,-1.37l1.67,-2.92l1.05,0.11l0.6,-0.32l1.2,-3.37l1.88,-1.77l0.55,-1.02l0.07,-0.67l-0.62,-1.7l0.51,-2.21l0.68,-0.76l2.02,-0.75l0.42,-0.66l-0.06,-1.09l-0.97,-2.51l0.21,-2.73l-0.21,-0.77l-0.56,-0.5l-0.61,-0.06l-0.78,0.37l-1.02,1.09l-0.38,-0.27l-0.07,-1.71l1.65,-0.19l0.4,-0.55l-0.04,-0.91l-1.88,-4.23l-1.97,-1.72l-0.58,-1.36l-0.95,-0.68l0.87,-0.85l1.51,-0.95l1.62,-0.48l1.39,0.18l0.57,2.55l1.26,2.72l1.24,0.37l3.06,1.7l1.79,0.31l0.52,1.92l1.02,1.53l-0.53,1.94l0.23,1.42l1.31,0.87l1.13,1.6l0.97,0.79l2.03,0.3l4.05,-0.88l0.82,0.14l1.23,1.44l1.4,0.78l0.95,-0.14l1.36,-0.84l1.27,1.95l0.96,0.24l2.74,-0.2l8.19,1.7l0.38,1.06l-2.92,2.88l0.13,2.25l-0.32,0.39l-2.29,0.86l-1.23,1.77l-3.84,3.53l0.07,0.64l7.15,4.1l-1.97,3.94l0.1,1.15l0.5,0.33l0.87,-0.24l1.82,-1.22l1.58,-0.52l2.13,5.0l-3.75,5.0l-1.72,1.29l-3.06,-0.36l-1.37,0.25l-1.04,1.57l-0.46,1.98l-0.12,4.52l0.7,5.23l-2.01,0.47l-2.19,-0.13l-0.39,-1.05l-2.06,-1.35l-1.26,0.44l-2.75,3.06l-0.55,0.07l-2.26,-3.03l-4.46,-1.22l-1.15,0.19l-1.08,0.65l-3.75,0.5l-4.68,1.54l-1.99,0.16l-2.26,-0.8l-1.02,-1.0l-1.36,-0.45l-0.27,-0.97l-1.39,-1.16l-0.66,-0.99l-0.32,-1.14l0.13,-1.21l-0.54,-0.42l-2.76,0.82l-1.36,-0.14l-0.79,-1.35l-3.39,-1.83ZM309.0,601.52l-0.8,-0.16l-0.41,-0.99l0.4,-2.01l0.84,-0.4l0.79,0.28l0.31,0.77l-0.59,2.03l-0.54,0.47ZM307.75,607.5l-0.9,-0.16l-0.53,-1.24l0.07,-0.86l1.14,-1.14l1.03,0.52l0.48,1.4l-0.86,1.31l-0.43,0.15Z", "name": "Hautes-Pyr\u00e9n\u00e9es"}, "FR-62": {"path": "M413.26,57.99l0.02,-1.01l-3.2,-2.12l1.12,-3.04l0.33,-6.83l1.74,-1.1l0.1,-0.58l-1.61,-2.08l-0.3,-1.01l-0.26,-3.74l-0.64,-3.46l0.26,-2.94l2.0,-4.41l0.34,-1.54l-1.52,-6.24l1.26,-0.84l3.05,-0.71l2.82,-2.96l1.8,-1.42l11.58,-4.22l1.24,0.13l2.03,-1.0l5.25,-0.55l2.42,2.31l4.96,8.43l2.25,6.01l1.42,1.12l1.84,0.6l5.52,-0.1l1.0,0.31l0.46,0.59l-2.34,2.65l-0.02,1.1l0.98,1.29l-0.35,2.13l0.77,0.98l3.22,0.58l2.96,2.38l1.15,0.37l15.06,0.55l1.38,-0.82l1.83,-2.04l1.02,-0.52l0.9,0.15l1.0,0.69l1.3,1.43l-2.22,0.94l-0.91,0.89l-0.4,1.05l0.06,1.66l-1.07,1.87l0.19,1.3l1.07,1.24l1.24,0.31l2.29,-0.59l0.86,0.1l2.28,2.2l3.62,-0.22l1.06,0.77l0.59,2.11l0.72,1.19l2.6,0.82l-0.15,0.97l-2.82,1.98l-0.48,1.75l1.16,1.72l1.53,1.4l0.91,1.31l0.1,0.8l-2.5,2.87l-0.01,1.38l0.7,0.76l0.97,0.21l2.38,-1.03l2.06,0.16l1.0,0.46l1.66,1.62l0.28,0.93l-1.83,1.86l-0.79,1.44l-2.26,8.75l-0.05,1.35l-3.49,-1.73l-2.18,-0.15l-1.29,0.85l-0.01,1.73l-0.42,0.53l-3.52,0.3l-2.63,1.27l-0.35,-0.48l-0.01,-2.43l-0.6,-1.0l-0.66,-0.3l-0.96,0.27l-3.34,2.32l-0.75,-0.07l-0.01,-0.57l1.09,-1.47l-0.03,-1.29l-1.31,-2.12l-0.95,-1.02l-1.19,-0.66l-0.76,0.22l-0.47,0.72l-0.22,3.08l-3.59,-1.54l-3.28,-0.62l0.23,-1.55l-0.84,-0.78l-1.17,-0.0l-1.89,0.86l-2.21,-0.34l-2.47,0.23l-0.82,0.62l-1.01,1.74l-0.72,-0.02l-0.81,-0.93l-0.31,-0.93l0.37,-1.76l1.95,-1.64l2.76,-1.45l0.65,-0.83l-0.19,-0.81l-0.67,-0.61l-2.96,-1.39l-1.81,-0.11l-1.13,0.92l-1.61,-1.74l-0.92,-0.29l-0.8,0.45l-0.34,0.97l-1.02,0.36l-6.98,0.99l-4.57,0.1l-1.52,-1.03l-0.6,-1.14l-0.08,-1.04l-0.83,-0.91l-6.58,-3.15l0.97,-1.81l-1.0,-0.9l-1.27,0.07l-1.48,1.08l-0.5,0.02l-0.91,-0.44l-1.88,-1.99l-1.36,-0.85l-2.32,-0.22l-2.56,0.27l-4.46,1.3l-2.04,-0.71l-1.31,-1.35ZM502.82,75.26l-0.41,-1.74l-0.71,-0.15l-1.47,1.47l-1.82,0.28l-0.4,0.37l-0.14,2.13l0.33,0.42l1.15,0.19l3.31,-0.77l0.35,-0.44l-0.19,-1.76Z", "name": "Pas-de-Calais"}, "FR-63": {"path": "M539.28,403.78l-0.1,0.97l0.42,0.81l2.12,1.59l0.81,1.4l-1.18,2.85l-0.09,2.56l-0.9,1.89l0.2,0.76l1.8,2.84l1.04,0.63l0.51,0.79l3.2,6.42l7.55,6.03l2.43,5.41l0.06,0.97l-0.44,1.28l-0.44,0.82l-2.82,2.97l-0.8,1.5l-0.51,2.35l-4.5,-1.88l-1.24,0.65l-0.7,1.6l-1.04,0.46l-1.35,-0.11l-2.73,-1.3l-0.8,-0.09l-3.34,1.65l-0.8,-0.4l-2.4,-2.99l-3.95,-1.79l-1.72,-0.06l-5.17,1.19l-2.96,-1.53l-1.3,-0.04l-1.64,1.33l-4.08,1.3l-2.15,2.12l-1.79,0.43l-4.22,0.04l-4.2,4.06l-2.11,0.79l-2.63,-1.43l-1.86,-3.64l-1.2,-1.24l-4.3,-1.84l-5.21,0.79l-2.48,-0.15l-2.22,-3.5l-1.67,-0.85l-3.09,-0.68l-3.23,-1.92l-1.25,-0.0l-0.9,-0.64l-0.26,-4.14l-1.44,-1.87l-0.36,-0.94l0.86,-2.7l1.65,-0.68l0.84,-1.03l0.29,-4.28l-0.66,-1.43l-1.92,-2.11l-0.96,-0.86l-1.78,-0.64l-0.67,-1.98l-1.61,-2.01l-0.03,-0.75l3.69,-2.85l2.41,-0.16l2.54,-2.66l1.57,-3.25l1.7,-1.93l0.18,-3.82l-2.07,-4.09l-0.15,-0.82l0.28,-3.52l3.05,0.89l1.97,-0.34l1.66,-1.01l2.79,-3.32l0.51,-3.05l3.68,1.89l1.34,-0.26l0.47,-1.3l0.01,-1.99l1.77,-1.21l2.08,-0.06l1.0,0.54l0.34,0.69l-0.12,2.57l0.62,2.65l1.67,2.57l2.09,2.0l2.1,1.08l4.49,-0.67l1.39,2.21l0.96,0.86l1.28,0.36l5.27,-0.46l4.72,1.15l1.48,1.05l6.11,-1.99l1.07,3.51l-0.05,1.21l0.55,0.39l1.81,-0.75l1.87,-0.1l3.84,0.75l1.44,0.71l2.74,2.26l1.24,0.52Z", "name": "Puy-de-D\u00f4me"}, "FR-60": {"path": "M505.12,111.37l0.08,1.16l-0.83,4.81l1.53,3.74l-0.67,5.09l0.09,1.94l0.84,1.77l1.58,0.97l0.42,1.49l-0.66,0.97l-1.93,-0.64l-1.46,0.84l-1.21,4.06l-0.7,1.39l-1.58,0.93l-3.16,0.25l-1.68,1.1l-0.17,0.42l0.21,0.63l2.72,2.49l0.45,1.35l-0.69,1.31l-2.48,1.5l0.11,2.24l0.53,0.91l0.61,0.44l0.8,0.05l3.28,-0.78l1.11,0.02l2.04,0.66l1.38,1.21l0.1,0.94l-1.19,2.18l-3.14,2.31l-2.42,0.25l-2.07,1.06l-1.51,-0.82l-5.87,1.07l-4.04,-0.91l-0.77,0.16l-1.31,1.18l-0.79,0.15l-2.03,-1.11l-1.93,0.48l-1.66,-1.34l-1.69,-0.39l-2.67,0.99l-2.8,-2.54l-1.69,0.38l-11.67,-5.3l-1.4,0.29l-2.01,1.11l-1.55,-0.09l-3.94,-1.5l-2.4,-0.25l-1.47,-0.68l-1.66,-1.28l-0.74,-0.17l-1.89,0.7l-3.44,2.04l-4.01,0.26l-2.09,0.47l-5.65,-1.4l-3.29,-0.27l-0.95,-0.91l-0.49,-1.57l-0.8,-0.65l-0.36,-1.25l1.17,-1.22l0.93,0.15l1.28,1.38l0.8,0.35l1.12,-0.28l0.34,-0.65l-2.06,-4.76l-1.74,-5.57l-0.28,-3.2l1.24,-3.11l1.48,-1.09l0.51,-1.75l-0.83,-1.22l-2.26,0.41l-0.42,-0.32l-0.42,-3.51l-0.53,-1.76l-0.18,-3.85l-0.71,-1.37l2.11,-1.28l1.1,-1.85l-0.66,-1.22l-2.68,0.42l0.29,-1.1l2.51,-3.29l1.48,-0.9l4.6,1.83l0.57,2.49l0.73,0.66l7.29,-1.02l5.86,2.44l10.5,-1.06l4.03,0.67l3.21,1.99l4.78,0.9l2.38,2.06l2.76,-0.21l2.31,1.93l1.09,0.42l2.66,-0.82l0.63,2.13l1.2,0.68l0.73,-0.37l0.96,-1.74l1.68,-1.61l2.18,-0.25l2.67,0.88l1.01,-0.32l0.43,-0.71l-0.08,-1.86l0.32,-0.63l2.36,-0.62l2.47,-3.38l0.78,-0.0l2.24,1.25l2.85,-0.78l0.67,0.11l2.0,1.24l1.28,-0.13l0.73,-0.98l-0.02,-1.04l3.31,0.53Z", "name": "Oise"}, "FR-61": {"path": "M339.45,171.33l-1.19,2.6l0.44,1.49l1.28,1.11l0.76,0.28l2.03,-0.04l4.74,1.12l3.05,-0.82l0.53,0.56l0.61,1.79l2.9,3.45l1.71,1.0l2.29,0.55l0.97,0.6l0.98,1.74l-0.43,1.2l-1.34,1.44l0.1,1.13l1.12,0.58l1.33,1.63l2.71,1.01l0.4,3.39l1.71,2.99l2.69,1.76l3.44,3.47l-0.31,2.12l0.17,1.43l1.87,2.7l-1.12,1.47l-0.63,1.57l-1.95,1.77l-1.26,0.69l-4.1,1.48l-2.34,0.41l-0.89,1.14l-0.23,0.89l0.24,0.83l1.14,1.2l-0.05,2.88l1.83,3.34l-0.46,0.79l-1.04,0.63l-1.56,0.37l-2.49,-1.01l-2.47,-2.98l-1.91,-1.6l-3.5,0.2l-5.14,-1.24l-0.71,-0.36l-0.06,-1.74l-0.56,-0.94l-3.09,-0.02l-2.45,-1.44l-1.01,-1.58l-0.49,-1.75l0.27,-4.85l-0.45,-1.45l-1.38,-1.0l-2.69,-1.04l-1.94,-0.2l-5.54,1.15l-3.07,1.61l-1.67,2.12l-2.54,0.86l-0.55,1.53l-0.8,0.2l-1.9,-0.51l-3.9,0.33l-0.22,-3.58l-0.39,-0.79l-0.77,-0.81l-1.89,-0.44l-3.02,-2.76l-0.65,-1.6l0.49,-1.46l-0.32,-0.81l-0.74,-0.61l-3.82,-1.27l-0.99,0.47l-0.03,1.62l-0.34,0.71l-1.15,0.57l-1.4,-0.02l-1.63,0.51l-1.2,1.45l-0.68,0.11l-4.11,-0.95l-3.98,-0.16l-1.2,0.44l-2.14,1.99l-1.05,0.56l-5.18,1.05l-1.18,-1.31l-0.96,-0.14l-3.52,0.92l-0.5,1.08l-0.81,0.48l-1.68,-1.15l-1.86,0.23l-1.74,-2.89l-0.78,-0.61l1.1,-1.52l3.31,-2.63l1.9,-3.49l0.3,-1.03l-0.88,-3.57l1.71,-1.91l-0.07,-0.62l-5.1,-3.21l-1.17,-0.16l0.06,-1.22l1.15,-0.43l2.61,-2.27l4.22,-1.02l0.97,-0.99l-0.03,-0.75l-0.53,-0.71l0.58,-0.88l4.69,0.87l7.52,-1.59l2.99,-1.66l1.62,0.23l2.59,2.51l1.48,0.83l0.96,-0.29l0.67,-1.71l0.64,-0.21l10.57,2.36l12.06,-6.08l3.02,-3.58l1.06,-0.25l1.1,1.64l0.8,0.44l2.26,-1.25l3.01,-0.19l1.72,-2.05l0.59,-0.06l0.57,0.97l1.0,0.69l1.27,0.35l1.32,-0.17l2.03,-1.3l0.66,0.04l1.0,0.98Z", "name": "Orne"}, "FR-68": {"path": "M752.43,285.23l0.39,-1.2l0.0,-1.45l-1.07,-2.08l-3.5,-3.34l-0.86,-0.37l-1.8,-0.05l-0.57,-0.53l0.01,-0.77l1.5,-2.01l0.6,-1.7l-0.15,-2.99l-0.41,-1.19l-1.75,-1.66l-8.58,-4.29l-0.62,-0.69l-0.05,-0.84l2.13,-0.87l1.13,-1.09l0.16,-1.12l-0.61,-1.66l1.6,-3.12l0.61,-3.06l3.45,-4.12l3.12,-5.81l1.69,-2.31l0.01,-1.28l-0.73,-1.48l0.49,-1.19l7.55,-10.68l3.11,0.2l1.43,0.48l0.9,2.69l9.88,4.09l0.43,0.5l-0.47,1.92l0.32,1.28l1.01,0.53l1.61,0.15l0.88,1.92l3.01,0.47l-0.42,1.72l0.19,3.23l2.65,4.1l0.12,2.21l-2.19,2.41l-0.36,2.63l-1.24,1.91l0.21,3.21l-1.19,0.9l-1.06,3.68l0.75,2.84l-0.03,1.09l-1.25,1.28l-0.34,0.8l0.43,2.7l1.98,1.77l2.51,3.91l-0.3,0.82l-3.51,1.37l-2.73,1.91l0.1,0.7l1.12,0.69l0.01,0.32l-1.72,0.61l-0.07,0.53l0.6,1.0l-0.84,0.74l-2.31,-0.79l-0.93,0.18l-0.3,0.87l0.84,1.21l-0.09,0.79l-1.08,1.21l-1.53,0.53l-4.27,-0.15l-4.24,1.21l-0.96,-0.82l-3.02,-1.12l-0.26,-0.95l1.04,-2.07l-0.39,-0.58l-1.82,0.11Z", "name": "Haute-Rhin"}, "FR-69": {"path": "M607.86,387.47l-0.14,1.11l-1.54,3.29l-1.25,3.86l0.39,4.66l-0.52,2.34l0.25,1.14l2.23,0.97l0.62,1.03l1.0,0.58l0.4,1.1l0.43,0.26l1.44,-0.22l3.49,2.5l-0.24,1.13l0.79,3.5l0.47,0.36l4.54,-1.15l3.58,0.52l2.61,-0.37l-1.69,2.95l0.03,1.65l0.82,1.02l3.8,1.9l0.51,0.57l-0.08,0.59l-1.28,0.04l-1.68,0.77l-2.91,2.33l-1.43,2.94l-1.05,0.63l-11.83,0.9l-1.41,0.84l0.15,0.46l3.9,3.08l-0.81,2.28l-4.09,3.12l-1.38,1.83l-1.36,-1.77l-1.0,-0.6l-2.55,0.09l-0.75,-0.19l-0.42,-0.56l-0.08,-1.27l0.8,-3.52l-0.38,-1.29l-1.35,-0.96l-2.33,-0.3l-3.66,0.5l-2.87,-0.52l-3.66,-2.12l-3.05,-3.02l-1.06,-3.12l1.95,-2.75l-0.06,-1.23l-1.2,-0.62l-2.02,-0.41l-0.0,-0.93l2.32,-2.98l0.65,-2.37l-1.32,-1.76l-1.91,-1.02l-0.38,-0.51l-0.14,-0.62l0.55,-2.07l-0.83,-1.56l-4.23,-2.25l-0.21,-0.67l2.75,-1.04l0.49,-1.41l-0.62,-0.98l-2.67,-1.83l0.26,-0.95l5.82,-5.57l3.12,-0.19l1.74,-0.79l0.43,-1.75l-0.46,-1.69l-0.9,-1.34l-1.87,-1.23l1.47,-4.64l5.06,1.43l1.25,-0.12l1.94,-0.93l1.54,1.64l0.93,0.37l1.05,-0.11l0.65,-0.45l0.73,-2.14l1.87,0.38l0.31,0.19l0.27,1.99l1.62,1.08l0.05,2.15l1.07,2.48l1.36,0.98l3.19,0.35Z", "name": "Rh\u00f4ne"}, "FR-53": {"path": "M310.77,215.54l-4.2,0.74l-1.58,1.61l-0.37,1.34l0.91,8.38l-0.94,2.05l-4.74,3.0l-0.35,2.5l0.91,2.88l-0.43,1.64l-1.48,1.12l-4.22,0.81l-0.96,0.75l-0.24,1.37l2.76,3.47l0.44,1.72l-0.49,0.61l-0.78,0.3l-3.0,0.23l-1.53,0.91l-0.58,0.88l-0.18,1.13l0.88,2.13l-0.14,0.78l-0.47,0.48l-2.09,0.77l-1.07,0.98l0.04,1.28l0.87,1.18l1.01,0.56l1.86,0.35l-0.09,0.98l-0.78,0.72l-2.11,0.84l-4.17,-1.53l-1.62,1.77l-1.25,0.22l-1.78,-0.37l-0.76,0.32l-1.18,1.37l-0.82,0.05l-20.13,-4.54l-0.91,0.5l-0.94,1.8l-2.53,-0.86l-6.81,-0.22l-3.08,-0.79l-2.72,-1.42l0.85,-1.47l2.89,-9.08l0.53,-0.9l1.85,-1.62l4.09,-0.58l1.25,-0.49l0.67,-0.66l-0.07,-4.84l-1.76,-2.27l-0.71,-4.7l0.64,-0.86l0.08,-0.99l-0.82,-4.82l-1.09,-2.36l1.95,-4.01l-0.03,-2.5l-0.74,-5.78l0.2,-5.45l4.76,0.37l3.56,-1.09l2.14,0.78l2.29,-0.33l0.82,0.61l1.89,3.04l0.78,0.28l1.22,-0.43l1.2,1.0l0.96,0.2l0.9,-0.36l0.74,-1.34l3.16,-0.79l0.67,0.27l0.43,0.85l0.82,0.32l5.49,-1.07l1.32,-0.69l2.1,-1.96l0.92,-0.33l3.75,0.17l4.09,0.95l1.06,-0.14l1.34,-1.53l1.33,-0.41l1.5,0.0l1.45,-0.72l0.62,-1.2l-0.17,-1.13l0.3,-0.28l3.98,1.51l0.19,0.36l-0.49,1.44l0.18,1.02l0.67,1.13l3.2,2.92l2.03,0.53l0.36,0.46l0.28,0.51l0.22,3.61Z", "name": "Mayenne"}, "FR-52": {"path": "M620.05,191.66l0.83,3.39l1.78,2.43l2.21,1.63l2.79,1.3l4.32,3.1l5.08,2.47l3.16,0.28l1.23,0.4l0.83,1.56l5.79,4.67l-1.67,2.08l-0.22,0.82l0.6,3.51l0.45,0.64l0.99,0.2l1.86,-1.66l1.62,0.08l1.4,1.19l3.12,3.97l0.92,0.25l1.78,-0.17l1.05,0.53l0.59,2.6l2.43,1.57l1.39,1.38l-1.32,1.49l-0.55,2.56l-1.17,1.96l-0.63,2.55l4.62,3.89l3.34,1.83l0.57,1.4l-0.05,2.95l0.46,0.64l1.01,0.19l0.95,-0.67l0.94,-0.09l2.41,2.53l0.3,0.85l-0.2,0.45l-1.94,0.67l-2.38,2.89l-6.41,3.93l-0.82,1.02l-0.32,0.82l0.58,2.29l-0.54,2.43l0.2,2.14l-0.17,0.81l-0.92,0.79l-6.35,1.81l-1.15,-0.23l-3.43,-1.72l-4.29,0.62l-1.46,0.81l-2.83,5.28l-0.39,0.11l-0.67,-0.88l-0.77,-0.22l-2.89,1.56l-0.53,-0.69l-0.42,-1.51l-3.74,-2.21l-0.5,-0.48l-0.45,-1.41l-0.55,-0.47l-1.19,0.09l-1.76,1.89l-1.49,0.14l-2.23,-1.34l-2.42,-2.98l-1.06,-0.04l-1.33,1.3l-0.7,0.01l-0.9,-1.16l-0.61,-3.64l-1.3,-1.58l0.33,-0.6l2.33,-0.37l0.83,-0.93l-0.18,-1.31l-1.18,-2.31l-4.52,-5.41l-1.18,-0.18l-1.09,1.24l-0.51,-0.21l-0.23,-0.95l0.85,-1.35l0.11,-1.07l-1.02,-0.91l-2.65,-0.91l0.44,-1.3l-0.31,-0.7l-0.84,-0.49l-3.68,-0.69l-1.62,-1.0l0.99,-1.7l-1.33,-2.62l0.84,-1.66l1.62,-0.79l4.26,0.81l1.15,-0.58l0.78,-1.43l0.45,-3.19l1.01,-1.73l0.08,-0.84l-1.0,-7.31l-1.65,-1.75l0.44,-1.44l-0.18,-0.9l-3.13,-1.39l-1.38,-2.02l-2.2,-1.22l-2.15,-2.78l-2.26,-1.34l-0.15,-0.85l1.4,-1.94l0.4,-1.04l0.13,-1.76l5.87,-0.24l0.87,-0.28l0.33,-1.09l-1.07,-2.3l0.32,-1.17l4.51,-1.27l0.38,-0.55l-1.04,-2.5l-0.35,-0.25l-3.14,-0.04l1.22,-1.88l3.77,-1.11l7.44,0.03Z", "name": "Haute-Marne"}, "FR-51": {"path": "M522.82,186.37l0.16,-1.02l1.68,-1.84l-0.22,-0.68l-0.89,-0.72l3.35,-0.37l0.76,-1.01l0.2,-1.75l1.48,-2.59l4.29,-3.81l1.07,-2.07l1.68,-1.1l0.81,-1.18l2.06,-1.61l0.39,-0.63l-0.02,-1.16l-0.99,-0.78l-3.39,0.04l-0.83,-0.47l0.06,-1.11l1.31,-0.86l1.17,-1.67l0.21,-0.79l-0.25,-2.97l1.17,-0.73l3.12,0.34l1.45,-0.25l1.33,-1.0l0.36,-0.86l-0.5,-1.26l-1.41,-0.81l-0.87,-0.98l-1.6,-0.47l-0.56,-4.86l-0.91,-2.12l2.95,-1.52l5.1,-1.23l4.31,-0.57l0.52,-0.78l-0.12,-1.35l0.85,-0.54l2.04,0.1l3.04,1.4l2.06,-0.68l2.32,0.84l1.14,-0.78l0.47,-1.24l0.08,-1.7l6.33,0.44l1.77,0.51l8.42,5.99l2.47,0.04l2.51,2.92l2.29,0.48l6.22,-0.85l1.44,0.18l1.21,0.87l1.1,2.07l1.24,0.92l5.55,-1.3l7.04,1.27l4.31,-1.4l1.84,-0.03l2.07,1.32l0.06,1.73l-1.31,2.24l-0.19,1.39l1.8,5.02l0.13,4.29l0.32,0.97l0.62,0.73l1.6,0.68l0.35,0.84l-0.84,1.15l-0.07,2.87l-0.56,1.42l-1.01,0.68l-2.7,0.71l-1.22,1.6l-0.51,2.57l0.58,2.62l-1.01,1.24l-0.44,1.14l0.49,1.38l4.23,3.15l0.58,1.99l-0.08,1.85l-7.28,-0.03l-4.31,1.35l-1.76,2.71l0.38,0.62l3.61,-0.06l0.71,1.71l-3.66,0.98l-0.9,0.62l-0.42,0.75l-0.05,0.99l1.03,2.63l-6.61,0.41l-4.47,-1.41l-1.54,0.31l-2.8,1.32l-11.93,-6.37l-0.31,-0.68l0.66,-4.11l-0.44,-1.76l-0.57,-0.63l-0.88,-0.35l-6.81,-0.4l-4.94,1.4l-1.13,-0.22l-1.49,0.3l-1.23,2.03l-2.91,0.76l-7.38,6.28l-1.28,0.67l-0.6,0.81l-0.67,2.46l-3.36,-0.35l-2.25,-0.66l-0.93,-1.47l-1.09,-0.78l-1.26,1.02l-3.5,0.89l-0.66,-2.48l-0.41,-0.29l-1.24,0.06l-1.99,-2.71l-1.85,-0.07l-1.65,-2.04l-0.63,-0.31l-2.37,0.21l-0.2,-1.26l0.51,-1.93l-0.76,-3.12l-2.03,-2.25l-1.36,-0.04Z", "name": "Marne"}, "FR-50": {"path": "M199.1,110.63l3.02,0.17l0.93,1.73l6.68,0.92l5.27,1.29l0.19,0.68l0.67,0.4l0.84,-0.17l1.4,-0.93l2.68,0.54l1.2,-0.43l3.43,-3.16l2.74,-0.72l1.03,-0.08l7.56,1.27l2.02,5.19l-1.5,1.01l-0.48,1.56l-1.27,0.04l-1.1,0.67l-0.37,2.34l1.83,2.99l0.97,2.27l4.63,4.95l0.53,1.09l0.2,1.62l-0.75,1.97l0.17,1.08l0.44,0.3l1.7,-0.5l1.73,1.31l0.02,1.02l-1.12,2.23l0.89,2.06l7.07,6.37l1.82,0.2l3.77,-1.18l0.35,0.33l-0.73,2.09l-0.02,1.11l2.33,4.3l1.19,6.19l-1.73,0.82l-3.41,3.44l-1.89,1.33l-0.75,0.13l-2.59,-0.59l-1.17,0.51l-0.67,1.15l-0.02,1.28l1.46,1.49l0.17,0.61l-1.14,1.16l-2.44,0.91l-2.01,1.58l-0.85,1.16l-0.26,1.31l0.31,0.46l2.27,0.49l0.45,1.59l0.59,0.65l2.89,0.95l3.11,0.13l2.44,-0.72l3.49,0.8l3.18,1.45l-0.08,1.6l0.36,0.42l1.28,0.13l4.59,2.89l-1.59,2.0l0.04,1.15l0.84,2.61l-0.18,0.54l-1.78,3.33l-3.29,2.61l-1.34,1.83l-1.98,0.34l-2.37,-0.8l-3.57,1.1l-2.0,0.01l-3.01,-0.43l-2.56,-1.35l-6.25,-1.53l-1.67,-0.15l-1.33,0.23l-2.22,2.41l-1.99,0.71l-2.78,1.91l-1.65,0.53l-1.32,0.02l-0.77,-0.19l-2.96,-2.18l-1.8,-2.76l-0.99,-2.96l-2.54,-5.28l4.98,0.51l6.48,-1.24l2.14,0.69l0.44,-0.14l0.0,-0.47l-1.13,-1.5l-1.5,-0.64l-2.34,-0.18l-0.46,0.44l-0.7,-1.34l-2.87,-0.97l-0.88,-2.35l-2.17,-1.65l-0.47,-1.69l-0.34,-4.2l-0.74,-1.24l-1.4,-0.44l1.45,-1.15l0.44,-1.03l0.49,-3.71l0.92,-0.11l0.34,-0.9l0.0,-1.07l-1.2,-0.91l0.97,-5.38l0.51,-0.24l1.33,0.54l0.55,-0.37l-0.25,-0.86l-1.33,-0.51l-1.38,0.0l-1.32,0.6l-0.59,1.22l-0.56,-1.29l0.43,-3.35l-0.31,-0.52l-0.67,-0.12l-0.18,-0.32l0.72,-2.62l1.48,-1.06l0.02,-0.68l-0.75,-0.5l-0.56,0.09l-0.66,-2.09l-0.35,-2.8l0.3,-0.47l0.85,-0.05l2.15,0.54l0.5,-0.39l0.0,-0.49l-0.3,-0.39l-2.96,-0.99l-1.32,-0.03l-0.67,1.15l-0.44,-0.44l-0.98,-2.84l-0.71,-0.78l0.42,-0.24l0.06,-0.7l-2.38,-1.94l-0.24,-0.63l0.68,0.0l0.4,-0.4l-0.83,-2.29l-0.82,-0.22l-0.71,1.2l-3.02,-2.14l0.32,-0.66l-0.42,-0.61l-2.16,0.52l-0.37,-0.34l-0.17,-5.35l-1.15,-1.92l-0.39,-1.49l-2.39,-2.79l0.28,-0.81l1.64,-1.27l0.51,-0.95l0.27,-4.14l-1.3,-2.8l-0.63,-0.67l-4.47,-1.27l0.43,-3.05l1.34,-0.15l1.62,0.85Z", "name": "Manche"}, "FR-57": {"path": "M697.12,128.57l4.59,2.63l1.98,0.19l2.29,-0.93l0.53,0.08l5.52,2.34l0.95,0.78l0.43,1.78l3.49,3.43l-1.28,0.51l-0.34,1.05l0.39,0.92l5.12,4.46l-0.0,1.31l1.48,0.85l1.03,2.86l0.65,0.17l0.76,-0.38l0.24,0.78l-0.46,1.9l1.04,1.55l0.86,0.29l2.67,0.02l2.33,0.73l0.97,-0.14l1.37,-1.65l-0.67,-2.53l0.24,-0.75l2.79,0.42l1.85,-0.14l4.34,1.88l1.09,0.08l-0.03,2.41l0.73,2.3l1.51,1.11l2.29,-0.99l0.3,-0.66l-0.21,-0.77l0.26,-0.22l2.39,1.43l1.98,0.72l5.31,0.06l2.06,0.7l0.67,-0.41l0.98,-1.46l2.37,-0.6l0.98,-1.9l2.23,-0.77l0.85,0.06l0.55,0.9l3.47,0.42l0.22,0.64l-0.49,0.46l-0.0,0.71l3.02,3.51l1.57,0.84l2.62,0.39l1.24,0.55l1.04,1.49l0.76,0.49l-3.08,5.46l-1.37,1.52l-0.94,0.11l-3.4,-1.65l-9.1,1.22l-2.18,-0.77l-0.57,-1.35l-0.66,-0.54l-8.43,-2.52l-0.63,-0.69l-0.58,-2.32l-0.9,-1.14l-1.12,-0.32l-1.33,0.51l-0.22,0.75l0.3,1.4l-2.13,2.71l-0.26,1.81l-2.5,1.95l-1.01,1.21l-0.49,1.21l0.0,1.18l0.54,1.07l0.95,0.87l5.74,2.33l-0.95,1.04l-0.38,1.39l0.94,0.93l0.85,1.8l0.62,0.41l1.5,-0.31l1.16,-1.59l2.22,-0.91l0.43,-0.63l0.2,-1.32l0.37,-0.29l0.49,1.78l1.97,0.95l3.72,3.7l0.4,0.92l-0.22,0.99l-3.01,4.58l0.29,1.21l1.86,1.19l-1.76,5.33l-0.93,1.1l-2.37,1.17l-1.19,1.51l-5.74,0.33l-0.53,0.33l-7.11,-6.72l-2.93,-1.24l-3.41,0.49l-9.75,-3.72l-2.42,-2.06l-2.68,-0.83l-1.47,-0.83l-1.93,-2.75l-0.67,-0.39l-2.37,0.0l-5.29,-2.7l-3.73,0.68l-4.05,-5.03l-0.21,-0.84l0.25,-1.56l1.24,-1.79l-0.32,-1.43l-0.67,-0.65l-1.55,-0.63l-8.73,-0.26l-0.71,-0.47l-1.27,-1.94l-3.43,-1.16l-0.36,-1.98l-0.72,-1.09l-4.16,-1.75l-0.7,-0.77l-1.12,-2.35l-0.02,-0.87l0.69,-0.55l2.54,-0.84l1.33,-1.27l0.36,-1.9l-1.71,-3.68l1.93,-2.33l0.06,-1.16l-0.97,-3.93l-0.53,-1.05l-1.64,-1.12l-1.0,-2.7l-1.73,-1.76l1.1,-4.12l-0.52,-3.06l0.89,2.24l0.48,0.25l7.2,-0.85l1.6,-1.26l0.33,-1.21l1.94,-0.22l0.21,-0.79l2.88,-0.27l1.66,0.15l1.65,0.58Z", "name": "Moselle"}, "FR-56": {"path": "M109.52,267.85l0.38,-0.4l0.08,-1.06l0.95,0.1l0.65,-0.32l1.28,-2.54l0.88,-0.82l-0.25,-0.95l-0.44,0.09l-2.95,2.66l-1.78,0.9l-1.23,0.25l-0.32,0.34l0.22,0.41l0.92,0.77l-4.61,0.99l-0.63,-0.17l-2.02,-2.33l-2.01,-3.11l-0.6,-0.18l-0.35,0.25l-0.45,-1.04l-0.01,-1.54l0.9,-1.31l0.97,0.03l1.25,0.66l1.03,-0.09l1.08,-0.85l0.86,-1.79l2.18,-0.09l1.0,-0.67l0.57,-1.29l0.33,-2.58l-0.6,-3.09l-0.82,-0.87l-1.32,-0.34l-2.96,0.59l-1.33,-0.42l-3.3,-1.97l-1.52,-0.09l-3.2,0.59l-0.96,-0.72l-2.13,-5.31l-2.99,-2.98l-0.09,-0.73l0.41,-1.27l0.88,-0.78l8.58,-3.25l1.34,0.41l5.97,-0.26l0.36,1.66l1.26,0.9l1.53,-0.21l3.13,-1.15l1.22,1.3l1.94,0.58l8.02,-0.95l1.06,-0.53l0.62,-0.83l0.85,-2.33l1.12,-0.31l3.78,0.24l1.1,0.41l0.64,2.34l0.64,0.68l0.92,0.0l2.55,-0.85l1.49,0.2l4.05,2.12l3.19,0.86l0.96,2.18l1.0,0.73l0.89,-0.2l1.68,-1.5l3.3,-1.04l0.45,0.25l-0.04,6.27l0.27,0.38l1.32,0.46l2.52,-1.2l3.4,-2.96l0.76,-1.28l0.3,-3.56l0.45,-0.92l0.78,-0.28l4.92,-0.19l1.9,0.76l2.15,3.06l1.28,0.01l2.14,-1.17l0.89,-0.02l1.02,0.9l1.37,2.64l0.68,0.66l2.99,0.0l0.39,0.31l0.01,0.41l-0.64,0.66l-4.17,1.19l-0.87,1.19l-0.04,1.67l1.29,1.01l5.3,0.98l2.55,1.59l1.01,1.3l0.35,1.81l-0.59,5.45l0.39,0.48l2.72,0.15l0.42,0.57l-0.04,0.91l-0.87,1.82l-0.68,0.52l-2.12,0.6l-0.62,0.86l0.22,1.11l0.9,0.49l2.15,0.11l0.36,0.63l-0.49,0.45l-2.42,0.13l-0.84,0.83l0.08,2.27l1.03,2.25l0.0,1.69l0.23,0.68l1.13,1.14l-1.56,6.13l-0.54,0.87l-2.04,1.23l-1.46,2.33l-0.6,-0.23l-0.05,-1.13l-0.56,-0.55l-0.75,-0.02l-2.38,0.9l-1.56,-0.86l-0.9,0.05l-0.9,0.52l-1.89,2.82l-1.08,0.35l-2.85,0.22l-1.9,-0.8l-1.35,0.35l-0.47,0.66l-1.07,-0.28l0.4,-1.16l-0.67,-1.08l0.25,-0.19l3.7,-0.17l2.26,-0.53l1.21,0.07l0.42,-0.34l-0.3,-0.45l-0.99,-0.24l-2.8,0.23l-5.66,-1.72l-2.91,0.66l-1.93,0.0l1.05,-1.04l0.47,-1.05l-0.12,-0.48l-0.5,0.01l-0.86,0.73l-2.73,0.25l-0.32,0.4l1.11,0.66l-1.57,-0.11l-0.6,-0.37l-0.61,0.32l-0.09,1.63l-0.48,0.24l-1.89,-0.59l-1.16,0.04l-4.35,1.05l-1.51,-0.37l-2.24,-2.86l-1.34,-0.5l-0.54,-0.67l1.53,-0.13l1.13,1.56l1.15,-0.56l0.69,0.46l0.65,-0.25l0.21,-0.93l0.66,0.6l1.69,0.45l1.67,-0.14l1.46,-0.78l-0.13,-0.88l2.17,-2.6l0.37,-1.63l-1.48,-1.88l-0.44,-0.11l-0.26,0.86l0.64,0.9l-1.1,0.64l0.6,0.74l-0.39,0.02l-1.13,-0.82l0.39,-0.14l-0.02,-0.47l-0.84,-1.0l-0.86,-0.45l-1.89,-0.29l-0.44,0.26l0.31,0.55l-3.56,0.47l-0.85,0.64l-0.55,0.91l-2.13,0.65l0.0,-0.48l-0.46,-0.4l-1.32,0.49l-0.19,-1.21l0.7,-1.13l-1.61,-0.61l-0.47,-1.47l-0.85,-0.33l-0.4,0.46l0.45,2.1l0.01,1.94l0.27,0.88l1.3,1.72l-0.77,0.06l-1.84,-1.77l-0.48,-0.01l0.02,1.33l-0.45,-1.98l-0.51,-0.31l-0.67,0.4l-0.04,1.56l-1.22,-0.46l-1.86,0.87l-0.79,0.06l0.11,-0.88l-1.36,-0.9l-0.9,-0.02l-0.6,0.64l-1.75,-2.35l-1.96,-1.13l0.78,-2.82l4.43,-1.77l0.2,-0.57l-0.36,-1.98l-0.6,-0.34l-0.71,0.3l0.01,-1.53l-0.4,-0.43l-0.73,0.2l-0.33,0.57l-1.35,-0.45l-0.97,0.16l-0.33,0.36l1.51,1.12l0.5,1.38l-0.92,0.03l-0.89,0.76l-0.75,0.18l-0.19,0.67l0.52,0.61l-0.59,0.38l-0.66,1.45l-2.06,-1.94l-1.14,-0.34l-0.21,-0.79l-2.13,-0.87l-1.87,-0.17ZM122.84,278.42l0.11,0.08l-0.08,0.32l-0.03,-0.4ZM122.52,282.02l0.23,1.3l1.65,2.47l-0.96,-0.23l-0.59,0.29l-0.71,-2.5l0.37,-1.33ZM133.84,278.57l0.45,0.38l-0.04,0.12l-0.41,-0.51ZM123.36,297.99l1.01,0.42l1.66,-0.07l0.33,0.33l-0.17,0.99l-1.32,0.33l-4.68,-0.38l-3.08,-0.8l-0.79,-0.48l0.14,-1.16l-1.41,-3.37l0.57,-0.67l4.02,1.8l3.72,3.05Z", "name": "Morbihan"}, "FR-55": {"path": "M625.46,127.51l1.43,-1.72l0.37,-3.32l1.33,-1.31l1.39,0.12l2.52,1.66l3.7,-0.04l0.91,1.24l0.89,0.23l1.45,-0.59l3.12,-2.32l2.22,-1.14l0.23,-0.81l2.9,4.42l0.21,0.61l-0.22,2.41l0.64,0.91l0.95,0.21l-0.76,2.22l1.67,3.94l1.55,0.77l4.36,-0.27l3.79,-1.81l1.09,0.5l2.04,1.97l1.1,1.55l0.63,1.81l-0.13,2.9l0.75,0.94l1.21,0.71l-2.13,3.84l-0.11,3.18l0.87,1.09l1.45,0.54l0.1,0.71l-0.75,2.39l0.04,1.87l0.65,1.66l1.29,0.41l1.97,-0.41l0.46,0.43l1.27,4.3l-1.39,3.28l-0.07,1.12l0.54,1.24l1.09,0.73l0.27,0.53l-0.2,0.91l-1.94,-0.32l-0.92,0.23l-1.77,1.51l-0.73,1.37l1.09,3.21l-0.04,3.79l-0.93,3.38l-2.08,2.91l-0.17,1.07l1.73,2.41l0.27,6.76l-0.43,0.81l-1.63,1.18l-0.42,1.58l0.55,1.31l2.0,1.04l0.35,0.6l0.09,2.67l-0.7,1.3l-0.86,0.74l-1.0,0.27l-2.89,-0.26l-3.49,2.04l-3.64,0.05l-4.52,2.15l-1.28,-0.5l-5.97,-4.81l-0.81,-1.57l-1.66,-0.59l-3.06,-0.26l-4.93,-2.41l-4.26,-3.07l-2.86,-1.34l-2.09,-1.55l-1.19,-1.4l-0.58,-1.33l-0.28,-2.43l-0.47,-0.59l0.07,-2.24l-0.69,-2.27l-4.55,-3.64l0.3,-1.22l0.98,-1.18l0.19,-0.77l-0.65,-2.29l0.44,-2.23l0.86,-1.22l2.6,-0.67l1.38,-0.95l0.61,-1.14l0.15,-3.39l0.86,-1.2l-0.06,-0.86l-0.53,-0.77l-2.02,-1.13l-0.4,-5.12l-1.78,-5.41l1.45,-2.76l-0.02,-2.07l4.21,-3.39l0.13,-1.1l-0.75,-1.69l-0.03,-0.85l3.33,-4.34l1.37,-3.47l-0.92,-3.48l-1.1,-0.9l-0.58,-1.83Z", "name": "Meuse"}, "FR-54": {"path": "M650.32,128.04l3.92,-2.09l2.36,0.84l1.04,-0.1l1.27,-1.8l1.33,-0.57l3.92,0.99l0.96,-0.3l1.37,-1.14l2.44,0.88l3.06,3.02l1.61,0.63l3.65,0.74l0.78,3.77l-1.03,3.1l-0.04,1.34l0.3,0.64l1.52,1.31l1.02,2.74l1.64,1.13l1.35,4.58l-0.0,0.78l-1.41,1.42l-0.59,1.33l1.73,3.75l-0.32,1.43l-0.91,0.84l-2.65,0.9l-1.05,1.04l0.06,1.32l1.18,2.48l0.86,0.98l4.16,1.75l0.5,0.76l0.18,1.53l0.43,0.8l3.48,1.18l1.06,1.73l1.04,0.76l8.98,0.32l1.16,0.47l0.45,0.39l0.23,0.93l-1.15,1.54l-0.3,0.94l0.21,2.07l0.72,1.27l3.6,4.17l1.51,0.17l2.53,-0.72l5.26,2.69l2.31,-0.02l2.42,3.04l1.64,0.91l2.5,0.74l2.53,2.12l9.89,3.78l3.56,-0.46l2.61,1.15l6.62,6.3l-1.46,0.31l-5.3,3.62l-3.26,3.16l-1.41,0.83l-1.19,-1.07l-0.54,0.01l-3.27,2.95l-4.16,-1.53l-4.42,-0.54l-0.72,-0.61l-0.34,-2.13l-0.86,-1.0l-1.99,0.17l-6.31,4.24l-4.11,0.31l-1.99,1.33l-0.32,0.05l0.09,-0.71l-0.46,-0.44l-1.73,0.29l-1.7,-0.17l-1.49,-0.75l-1.17,-1.57l-0.63,-0.01l-1.77,2.56l-4.63,0.3l-1.52,-0.62l-0.55,0.39l0.1,2.57l-1.64,0.67l-8.45,0.29l-1.32,-0.47l0.31,-1.38l-0.25,-0.46l-4.74,-1.96l1.73,-3.24l0.09,-1.26l-0.31,-1.09l-2.18,-1.23l-1.59,-0.25l-1.57,0.18l-2.18,1.04l-0.64,-0.6l0.01,-2.15l-0.37,-1.18l-2.28,-1.39l-0.33,-0.8l0.34,-1.17l1.42,-0.93l0.7,-1.27l-0.27,-7.02l-0.47,-1.04l-1.24,-1.32l0.08,-0.66l2.08,-2.93l1.0,-3.6l0.04,-4.03l-1.08,-2.99l0.55,-0.95l1.58,-1.33l2.72,0.18l0.71,-1.21l-0.21,-1.21l-1.37,-1.07l-0.32,-0.75l0.04,-0.86l1.42,-3.48l-1.35,-4.65l-1.15,-0.91l-2.08,0.43l-0.61,-0.16l-0.48,-1.26l-0.03,-1.69l0.73,-2.24l-0.12,-1.24l-1.83,-0.91l-0.47,-0.58l0.1,-2.78l1.9,-3.0l0.23,-1.3l-0.44,-0.62l-1.51,-0.98l0.13,-2.84l-0.71,-2.05l-1.23,-1.73l-2.12,-2.04l-1.71,-0.68l-3.78,1.82l-4.78,0.08l-0.65,-0.64l-1.24,-3.19l0.78,-2.16Z", "name": "Meurhe-et-Moselle"}, "FR-59": {"path": "M468.73,0.56l0.71,1.42l0.6,3.51l0.63,1.64l3.14,3.26l0.16,1.34l-1.61,1.47l-0.46,0.87l1.16,3.76l-0.52,1.99l1.22,0.87l1.03,1.61l4.25,0.56l0.92,1.61l2.23,1.78l1.46,2.61l1.24,0.91l5.27,2.03l1.32,0.13l0.92,-0.63l1.82,-2.63l2.37,-1.63l7.93,-2.08l1.41,0.36l0.92,0.73l2.64,4.35l0.72,0.59l1.48,0.27l0.38,0.58l0.61,1.69l-0.8,1.48l0.51,2.38l1.6,4.47l0.09,2.5l0.42,1.17l1.9,1.66l3.82,1.44l1.7,-0.16l2.68,-0.82l2.06,-1.38l0.72,-0.05l0.89,0.38l-0.6,1.19l0.12,0.56l0.76,0.47l4.13,0.08l2.56,0.75l1.12,0.9l0.91,1.39l1.05,10.05l2.3,1.94l1.29,-0.74l1.51,-2.44l1.09,-0.6l2.59,-0.16l2.45,0.25l3.52,1.61l1.52,-0.04l3.85,-1.36l1.15,-0.1l1.03,0.41l1.98,1.84l2.53,1.56l1.84,3.13l1.53,0.38l0.59,-0.74l-0.06,-0.72l0.39,-0.14l1.83,1.02l0.14,0.88l-2.69,2.35l-1.79,5.34l-0.17,1.55l1.11,0.78l1.48,-0.45l0.84,0.08l1.74,4.81l-2.7,1.39l-1.71,1.5l-0.59,1.62l0.66,2.17l-2.04,0.47l-1.03,-0.14l-5.08,-1.67l-0.55,-0.62l-0.05,-2.72l-0.69,-0.57l-0.96,-0.16l-2.19,0.7l-1.93,1.12l-2.51,-1.85l-6.24,-0.65l-3.45,-0.71l-0.98,0.1l-3.23,1.68l-0.69,0.09l-2.57,-0.97l-1.25,-0.05l-4.85,2.46l-1.59,0.26l-5.33,-1.36l-2.8,1.13l-3.55,-0.79l-1.98,-0.06l-4.16,0.8l-3.88,-2.32l0.05,-1.61l2.24,-8.66l0.61,-1.13l1.71,-1.56l0.28,-1.47l-0.42,-0.84l-1.75,-1.71l-1.31,-0.62l-2.38,-0.17l-2.28,1.01l-0.95,-0.58l0.47,-1.35l1.77,-1.49l0.37,-1.0l-0.19,-1.17l-0.99,-1.43l-2.5,-2.65l0.23,-1.14l2.9,-2.08l0.2,-1.9l-0.78,-0.64l-1.93,-0.31l-1.19,-3.12l-1.47,-1.14l-1.12,-0.16l-2.71,0.31l-2.16,-2.16l-1.21,-0.11l-2.08,0.58l-0.88,-0.19l-0.79,-0.94l-0.1,-0.8l1.06,-1.81l-0.04,-1.78l0.31,-0.72l1.51,-1.11l1.79,-0.4l0.25,-0.67l-1.93,-2.11l-1.11,-0.77l-1.27,-0.25l-1.45,0.65l-1.96,2.14l-1.32,0.64l-0.95,-0.25l-13.54,-0.34l-0.79,-0.25l-3.08,-2.44l-3.17,-0.57l-0.37,-0.8l0.39,-1.69l-1.03,-1.49l0.06,-0.6l1.78,-1.77l0.6,-0.85l-0.01,-0.48l-0.91,-1.06l-1.18,-0.37l-5.52,0.1l-1.57,-0.49l-1.27,-1.01l-2.13,-5.83l-5.01,-8.51l-2.04,-1.97l3.54,-0.38l11.16,-3.16l4.16,0.3l5.0,-1.09l3.16,-1.35ZM502.03,75.37l0.14,1.34l-2.79,0.71l-0.69,-0.11l0.09,-1.4l1.76,-0.34l1.28,-1.06l0.2,0.85Z", "name": "Nord"}, "FR-58": {"path": "M528.78,280.97l1.59,2.28l2.55,2.41l0.9,1.86l3.66,0.81l4.42,3.53l5.43,1.99l0.7,-0.02l0.78,-0.5l1.06,-2.57l1.16,-0.44l0.49,0.82l-0.57,2.37l0.27,1.26l1.3,0.52l3.77,-1.84l0.67,0.98l0.68,3.72l1.6,1.37l1.61,-0.09l1.72,-1.96l3.18,0.03l0.85,1.0l0.1,5.56l0.32,0.39l1.92,0.37l1.13,-0.2l0.92,0.22l0.85,0.63l0.65,1.09l0.26,1.33l-0.71,1.77l-0.13,1.41l-1.24,0.33l-3.52,1.97l-3.93,0.47l-0.56,0.45l-0.72,2.59l1.01,3.06l-0.05,1.31l-1.08,1.16l-1.74,0.2l-0.94,0.58l-0.29,0.95l0.25,1.13l0.79,0.6l1.47,0.34l0.52,0.64l-0.04,3.9l0.72,0.83l1.99,1.19l0.18,1.0l-0.49,0.71l-1.97,0.63l-0.72,0.74l0.01,0.76l0.72,0.99l-0.2,2.06l-2.99,0.57l-4.86,2.88l-3.65,1.19l-1.65,1.29l-1.04,0.4l-2.51,-2.71l-1.72,-1.04l-7.17,0.93l-1.66,-0.27l-0.44,0.26l-0.43,1.96l-1.36,0.87l-0.44,1.79l-3.8,2.0l-1.31,0.28l-0.45,-0.19l-0.06,-1.53l-1.67,-2.57l-1.59,-0.43l-0.82,0.13l-1.33,1.43l-0.97,0.48l-2.64,-1.07l-1.82,-0.29l-1.87,0.11l-3.04,1.06l-3.34,-2.82l-1.29,-0.36l-1.77,0.04l-2.77,-1.63l-1.05,-1.28l-0.19,-0.83l0.34,-2.43l2.35,-4.46l-1.16,-3.32l1.31,-4.66l-0.44,-5.56l-2.26,-2.43l0.11,-3.58l-1.26,-4.05l-1.41,-3.21l-0.84,-3.54l-3.63,-3.57l-1.85,-1.04l-0.71,-1.21l2.92,-5.34l0.56,-3.19l-0.17,-0.62l-1.7,-2.2l-1.25,-2.57l-1.44,-1.56l0.08,-0.29l2.79,-1.26l2.32,-0.04l1.28,-0.37l1.6,0.31l6.32,-1.19l0.9,0.34l0.47,2.6l1.22,1.11l4.09,0.77l1.89,1.87l1.16,0.11l1.96,-0.77l2.43,1.48l1.01,0.12l1.16,-0.52l1.82,-1.52l1.28,-0.15l4.38,1.15l0.5,-0.33l0.29,-4.18Z", "name": "Ni\u00e8vre"}, "FR-48": {"path": "M521.61,538.83l-0.52,-1.13l-1.33,-0.92l-6.93,0.03l-0.32,-1.55l-1.01,-1.16l-4.04,-2.16l-1.29,-0.2l1.45,-3.24l-0.19,-0.85l-0.85,-1.25l-0.29,-2.01l0.71,-2.49l0.15,-2.55l-3.33,-4.54l-0.25,-1.16l0.15,-2.52l-1.11,-2.03l-5.17,-5.93l0.78,-2.2l1.89,-2.92l0.36,-2.65l1.38,-4.58l0.47,-0.79l1.76,-1.22l0.98,-3.72l0.74,-0.4l1.59,1.82l1.21,-0.05l1.38,-0.79l3.42,-3.06l2.41,-0.28l3.68,-2.03l1.93,-0.24l0.36,0.35l0.79,2.6l3.5,5.9l1.31,1.29l1.23,0.42l1.33,-0.63l3.37,-0.36l1.07,-0.91l0.56,-2.31l0.89,-0.32l1.69,0.16l0.84,0.67l-0.48,1.5l0.3,0.89l4.51,0.95l4.08,3.38l2.89,1.45l1.57,0.41l-0.03,2.85l1.28,3.55l0.51,3.07l0.72,2.11l0.66,1.17l1.36,0.88l0.8,1.32l2.15,6.73l-1.98,3.13l-0.84,0.57l-2.06,0.37l-1.0,0.81l-0.08,0.53l1.91,2.93l0.62,3.31l1.55,3.3l0.16,0.98l-0.44,1.55l-2.23,4.29l-2.6,2.5l-4.89,-0.36l-6.09,-3.28l-1.5,-0.33l-1.99,0.8l-0.31,0.97l-0.05,2.63l-1.0,0.63l-5.86,0.25l-2.2,-0.6l-6.15,-3.38Z", "name": "Loz\u00e8re"}, "FR-49": {"path": "M233.03,298.51l1.68,-1.19l4.85,-0.76l3.64,-1.93l2.11,-0.43l7.86,-0.14l4.72,-0.85l0.24,-0.64l-1.06,-1.36l-0.84,-1.98l-0.51,-2.15l-0.06,-1.85l-0.36,-0.38l-9.92,-1.02l-1.33,-0.83l-1.22,-1.81l-0.2,-1.33l0.7,-0.39l6.35,0.53l1.77,-0.53l1.47,-1.4l-0.04,-0.61l-1.54,-1.13l-7.67,-2.31l-0.6,-0.61l-0.59,-4.56l-1.04,-1.15l-1.13,-0.59l-1.63,-0.18l-0.33,-0.63l-0.18,-3.53l0.36,-1.67l2.85,1.47l3.17,0.81l6.88,0.23l2.53,0.88l1.05,-0.55l0.86,-1.75l20.14,4.52l1.2,-0.13l1.7,-1.61l2.6,0.36l0.88,-0.45l1.24,-1.52l2.86,1.33l1.03,0.2l1.11,-0.23l10.64,4.33l1.01,-0.16l1.58,-1.05l0.32,0.09l0.32,0.56l-0.94,0.75l-0.47,0.91l0.2,1.48l1.05,1.63l1.59,1.02l1.83,0.32l1.37,-0.51l1.29,-1.24l3.12,0.44l6.53,3.17l2.26,0.37l3.15,1.37l1.63,-0.03l0.36,-0.28l0.54,-1.77l2.61,0.81l-1.52,3.88l0.46,3.58l-1.91,3.72l-1.03,3.13l0.2,2.82l-4.39,6.08l-1.47,5.38l-0.85,5.56l-2.84,-0.47l-1.46,0.44l-2.01,2.22l-0.96,2.4l-2.38,0.81l-1.53,2.05l-1.11,-0.31l-0.83,-2.02l-0.97,-0.76l-0.79,-0.2l-1.88,0.35l-3.55,-0.08l-6.53,0.7l-5.83,1.67l-2.05,-0.73l-2.08,0.46l-1.21,0.8l-0.31,0.62l0.12,0.77l0.69,0.97l-0.13,0.38l-4.92,2.46l-3.85,0.33l-5.2,-0.68l-4.23,0.56l-3.49,-1.69l-1.61,-0.38l-0.68,0.31l-0.33,0.87l-0.46,-0.1l-1.99,-1.33l-2.8,1.27l-2.3,-0.29l-3.58,-1.38l1.02,-0.49l0.2,-0.51l-0.78,-1.82l-2.01,-1.72l-3.92,-1.8l0.51,-1.32l3.47,-4.13l-1.27,-3.9l-0.81,-1.39l-0.43,-0.19l-1.65,0.37l-1.37,-0.22l-3.02,-3.81l-2.17,-0.39l0.19,-1.21Z", "name": "Maine-et-Loire"}, "FR-44": {"path": "M159.66,300.12l3.14,1.13l1.62,-0.32l1.05,-1.07l0.07,-0.47l-0.56,-1.04l-2.21,-2.2l-0.46,-0.11l-0.82,0.44l-0.77,-1.59l-2.05,-1.2l4.12,-2.13l1.57,0.33l-0.09,0.55l0.45,0.48l0.58,0.01l2.59,-1.53l0.4,-0.74l-0.31,-0.53l-2.95,-0.38l0.35,-0.69l-0.16,-0.53l-0.77,-0.68l0.87,-0.21l2.37,0.81l3.21,-0.37l0.81,-0.45l0.88,-1.05l1.08,-1.85l0.93,-0.29l1.83,0.9l2.88,-0.91l0.01,0.96l0.41,0.72l0.57,0.29l0.85,-0.14l0.92,-1.04l0.66,-1.38l2.05,-1.24l0.71,-1.09l0.79,-3.53l0.74,-1.69l0.12,-1.43l-0.24,-0.62l0.35,-1.02l2.91,-1.59l2.21,-0.38l2.07,0.05l5.67,-2.08l1.82,0.61l1.85,0.19l7.5,-2.05l2.87,-1.7l1.19,-1.55l1.73,-1.21l6.3,-2.55l1.6,-1.15l3.02,-0.01l1.01,0.42l0.73,1.19l0.96,0.56l6.76,1.15l0.16,3.45l0.67,1.05l1.76,0.23l1.0,0.53l0.75,0.86l0.19,3.41l0.37,1.1l0.83,0.9l7.87,2.42l0.98,0.74l-1.05,1.0l-1.44,0.39l-6.49,-0.5l-1.25,1.0l0.26,1.69l1.38,2.12l1.77,1.1l9.66,0.99l0.59,3.84l0.89,2.13l0.74,0.97l-4.04,0.73l-7.8,0.13l-2.28,0.45l-3.64,1.92l-3.75,0.4l-1.21,0.4l-1.97,1.38l-0.44,2.05l0.34,0.46l2.15,0.27l3.27,3.95l1.6,0.25l1.59,-0.33l0.58,0.98l0.46,1.89l0.78,1.46l-3.34,3.98l-0.73,1.85l0.21,0.51l4.21,1.93l1.79,1.56l0.5,1.23l-1.33,0.64l-4.88,-2.79l-2.44,-0.76l-0.42,0.12l-2.08,2.69l-2.09,-0.41l-1.44,0.76l-0.51,1.31l0.34,2.89l-0.42,1.43l-3.09,2.07l-0.96,0.14l-0.76,-0.4l-0.43,-0.97l-0.0,-4.16l-0.54,-1.5l-0.62,-0.62l-1.05,-0.2l-3.16,1.21l-0.63,2.53l0.85,3.73l1.33,3.46l0.87,1.16l-0.79,0.87l-1.72,0.58l-6.12,-1.46l-3.27,-0.03l-0.79,-0.34l-3.21,-3.11l-6.39,-2.68l-1.88,-1.34l-3.66,-3.68l-1.27,-0.75l-0.14,-1.25l-0.69,-1.37l-1.79,-1.89l-3.8,-1.82l-7.01,-1.07l-1.45,-0.69l1.47,-1.03l1.91,-0.24l0.8,-0.55l0.42,-2.94l-0.66,-1.35l-0.09,-1.84l1.02,-2.31l1.32,-0.5l5.58,-0.5l1.1,-0.5l1.01,0.86l3.14,0.71l1.04,-0.02l0.24,-0.51l0.65,0.2l-0.47,0.4l0.19,0.91l2.51,1.59l2.62,0.48l1.97,1.62l1.54,0.57l3.31,0.09l0.4,-0.29l-0.19,-0.46l-1.24,-0.71l-2.55,-0.47l-5.05,-4.17l-2.19,-1.13l-2.7,-0.49l-1.38,-0.93l-2.33,-0.59l-8.57,0.49l-2.09,1.06l-1.63,2.06l-1.9,0.52l-1.37,1.18l-2.09,0.34l-0.98,-0.34l-2.32,-2.13l-1.22,-0.61l-2.17,0.0l-0.78,0.6l-0.33,0.97l-1.39,-0.03l-4.87,-2.21ZM161.53,297.57l0.02,0.14l-0.01,0.02l-0.01,-0.17Z", "name": "Loire-Atlantique"}, "FR-45": {"path": "M460.91,221.47l0.33,-0.04l0.75,0.86l1.36,3.99l3.56,2.09l1.09,1.21l-0.82,1.86l0.48,1.68l-2.36,-0.11l-1.14,1.09l0.09,1.33l1.07,0.83l2.02,0.26l3.17,-0.65l8.35,0.59l2.29,-0.94l1.66,-1.6l0.83,-0.26l2.03,0.05l-0.41,1.53l0.32,0.38l1.06,0.2l7.05,-1.97l1.76,0.12l2.27,0.58l1.52,1.02l1.38,4.33l1.05,1.28l1.91,1.34l1.11,1.26l0.31,1.76l-1.88,3.81l-2.42,1.45l-1.42,1.43l-1.36,0.14l-0.46,0.42l0.1,2.67l0.95,2.06l-0.78,1.4l0.13,1.67l-0.42,0.96l-4.41,2.06l-4.1,0.43l-1.2,0.99l-0.29,1.64l0.41,1.33l2.48,1.05l2.32,2.0l1.13,2.08l-0.6,1.62l0.07,0.78l2.52,3.57l-3.22,0.29l-3.17,1.42l-0.3,1.25l0.72,0.77l-2.84,1.5l-1.07,0.08l-2.48,-1.92l-1.53,-0.21l-0.83,0.83l-1.2,2.16l-1.24,0.11l-0.91,-0.47l-2.08,-1.96l-2.56,-3.52l-1.22,-0.81l-3.47,0.03l-1.28,-0.35l-3.03,-2.4l-1.26,-0.12l-3.06,1.02l-1.43,-0.29l-3.28,-1.8l-3.15,0.05l-1.1,-3.21l-3.19,-1.1l-12.45,0.99l-1.67,-0.21l-3.13,-1.95l-2.01,-0.61l-0.99,0.36l-0.62,2.28l-1.06,1.75l-1.56,0.16l-1.79,-0.95l-1.35,-1.56l-0.91,-3.7l-0.83,-0.87l-2.54,-0.96l-2.25,-1.44l-0.58,0.18l-0.68,1.58l-0.69,0.36l-2.68,-2.27l1.14,-1.83l-0.03,-0.53l-2.02,-2.07l2.53,-2.72l0.15,-3.26l-0.91,-1.06l-1.61,-0.86l1.52,-1.97l0.29,-1.12l-0.39,-1.13l-0.72,-0.68l-1.86,-0.04l-0.18,-2.02l0.27,-0.71l0.82,-0.73l0.73,-0.12l1.8,0.74l1.17,-0.19l2.1,-2.38l0.86,-0.52l1.54,-0.15l3.3,0.6l3.84,-1.4l1.12,-0.16l1.62,0.35l1.42,-0.39l2.22,-2.35l1.73,-3.94l2.64,-0.88l0.63,-0.75l0.39,-1.43l-0.68,-3.44l1.26,-2.08l8.8,-1.74l2.18,-0.89l1.74,-2.19l1.08,0.42l1.34,1.84l0.89,0.32l1.9,-0.44l1.41,-1.25l0.41,-0.04l2.61,1.32l2.09,-0.21Z", "name": "Loiret"}, "FR-46": {"path": "M440.29,478.66l0.61,1.12l0.9,5.86l3.12,4.71l1.22,2.47l-0.85,4.57l-0.66,1.67l0.43,0.65l1.41,0.75l0.84,3.28l0.5,0.83l1.27,0.7l-0.05,1.13l-3.48,1.2l-4.94,-0.35l-4.66,2.37l-3.63,2.62l-5.71,2.41l-0.24,0.48l1.66,5.79l2.5,3.77l-0.0,0.52l-3.11,1.27l-4.89,0.22l-5.08,1.99l-2.39,2.3l-1.58,-2.03l-1.59,-0.15l-1.24,0.4l-0.55,1.27l0.76,2.73l-0.66,0.49l-1.02,0.03l-2.32,-2.65l-2.03,-1.07l-0.49,0.16l-0.92,1.48l-1.2,1.0l-4.32,2.11l-1.36,-0.08l-3.04,-0.89l-0.16,-0.19l1.05,-1.93l-0.97,-1.37l-1.29,-0.04l-1.21,0.77l-1.83,-0.42l-4.22,-2.04l-1.03,-0.86l-0.62,-0.96l-0.08,-0.89l0.72,-1.87l-0.01,-1.35l-0.93,-0.81l-1.27,0.13l-1.62,0.71l0.11,-2.87l-1.84,-1.84l-0.96,-2.38l-0.09,-1.96l-1.25,-1.9l0.7,-0.81l2.99,-1.33l3.6,-2.94l3.41,-5.27l0.78,-0.63l2.29,-0.5l1.89,-1.35l1.85,-0.79l1.77,-1.9l0.54,-1.79l-0.67,-1.05l0.11,-0.81l0.64,-0.86l2.37,-0.76l1.69,-2.66l2.13,-1.79l0.74,-1.12l-0.14,-1.73l0.68,-1.13l0.08,-1.03l-1.31,-3.89l0.24,-0.96l3.33,-2.09l1.05,-0.26l1.04,-0.9l1.16,1.27l2.28,-0.55l1.67,0.46l2.94,1.66l2.03,1.61l1.3,1.87l1.92,0.91l1.31,1.01l0.92,0.2l1.46,0.02l3.21,-0.98l3.94,-1.84l2.17,0.72l1.98,-0.89l4.23,-0.19Z", "name": "Lot"}, "FR-47": {"path": "M319.78,553.37l-1.2,-3.4l1.04,-0.97l1.37,-3.11l2.04,-2.74l-0.11,-0.58l-1.17,-0.7l-12.14,-2.12l-2.72,0.1l-0.02,-2.51l-0.58,-2.42l4.21,-1.88l2.04,-1.73l0.12,-0.43l-0.81,-2.36l-2.17,-2.67l0.43,-0.38l4.03,-1.09l1.11,0.2l0.47,-0.37l0.04,-1.27l-1.02,-2.11l0.74,-2.96l-0.36,-0.86l-1.26,-1.08l-0.12,-0.67l0.63,-1.59l2.34,-2.93l2.17,-0.04l0.8,-0.56l5.55,-6.3l0.27,-1.37l-0.64,-0.97l-2.55,-0.77l-0.6,-0.65l-0.14,-1.7l0.97,-1.37l0.8,-0.39l1.36,-0.1l1.73,1.8l1.12,0.02l0.79,-0.68l0.54,-2.67l2.3,0.19l1.33,-0.33l1.71,2.3l1.3,2.9l1.55,2.44l2.75,1.08l1.68,-0.35l3.94,-1.97l1.83,0.78l0.82,0.01l0.96,-0.61l1.52,-1.88l0.64,-0.14l2.33,0.07l1.41,1.49l1.49,0.49l3.11,-0.26l3.45,-1.11l0.96,0.12l1.08,0.85l0.53,1.13l-0.18,1.09l-1.19,1.0l-0.06,0.55l1.45,1.89l2.31,0.01l4.15,-2.55l1.83,-0.04l2.6,1.09l2.33,1.66l1.03,1.57l-3.67,1.83l-0.75,0.74l-0.26,0.78l1.31,2.09l0.06,1.85l1.05,2.61l1.8,1.78l-0.18,3.0l-0.59,0.58l-4.81,0.36l-1.13,-0.2l-1.77,-0.98l-0.77,0.08l-0.72,0.57l-0.27,2.47l-0.74,1.55l-0.06,0.88l0.85,1.37l2.45,0.96l0.36,0.51l-2.45,5.11l-2.16,1.72l0.1,0.72l1.14,0.8l-0.03,0.97l-1.25,0.21l-2.22,-0.7l-1.4,0.32l-0.49,0.48l-0.46,1.35l-2.26,1.33l-1.04,2.84l-3.57,1.87l-1.05,0.18l-2.71,-2.15l-1.51,-0.47l-5.15,1.53l-2.7,-0.26l-1.21,0.8l-4.35,1.91l-1.3,0.2l-3.0,1.53l-4.83,-1.62l-0.8,0.09l-1.07,0.84l-1.29,1.99l-1.07,0.78l-0.59,0.02l-0.58,-0.74l-0.76,-0.21l-2.2,0.65Z", "name": "Lot-et-Garonne"}, "FR-40": {"path": "M257.68,586.1l-3.47,-0.76l-0.46,0.4l0.02,1.53l-0.37,0.7l-0.71,0.37l-1.74,0.1l-2.93,-1.39l-4.19,2.35l-0.77,-0.8l0.28,-2.2l-0.4,-1.23l-2.1,-1.2l-0.55,0.19l-0.33,0.71l-1.9,1.61l-2.45,1.2l-1.9,0.4l-4.17,0.09l-3.36,0.61l-1.68,-0.7l-2.34,-1.93l2.16,-2.92l0.41,-2.32l1.48,-4.27l2.51,-12.23l1.46,-4.3l2.15,-9.72l3.95,-21.25l1.83,-12.26l6.25,-1.83l4.03,-2.64l4.42,1.75l0.54,1.31l-1.08,3.38l0.25,0.5l1.12,0.37l1.26,0.04l3.0,-0.66l5.04,1.27l9.78,-2.13l2.02,0.19l0.84,0.91l0.31,1.52l0.82,1.09l4.86,2.61l0.9,2.07l0.99,0.56l3.91,0.98l2.79,2.16l0.27,0.44l-0.71,3.25l0.4,1.51l0.71,0.82l8.88,0.94l1.27,-1.19l0.32,-3.47l0.59,-0.27l3.55,2.64l0.62,2.47l0.02,2.84l0.42,0.4l3.0,-0.12l12.02,2.1l0.6,0.37l-1.85,2.5l-1.36,3.07l-1.19,1.39l1.46,4.12l-0.51,0.98l0.35,1.83l-0.42,1.05l-0.84,0.31l-3.14,-0.52l-0.37,-0.73l0.78,-1.23l-0.06,-1.08l-0.91,-0.88l-1.22,-0.35l-1.33,0.44l-1.59,1.05l-1.8,1.72l-1.77,0.13l-2.38,-0.3l-2.89,1.82l-0.59,0.71l-0.12,1.04l1.56,1.74l0.82,2.14l-1.14,2.17l-0.36,1.38l-0.05,2.41l0.76,1.67l-1.41,2.79l-1.21,0.16l-0.79,0.5l-0.11,0.65l0.54,1.41l-1.35,2.19l0.02,0.65l0.98,0.76l0.55,1.63l-4.66,1.61l-6.63,0.79l-0.71,-0.35l0.26,-1.88l-0.28,-0.39l-1.04,-0.28l-0.87,0.23l-4.57,3.24l-0.72,0.17l-6.65,-1.04l-2.64,0.72l-2.68,-1.37l-1.42,-0.25l-1.34,0.18l-3.55,1.67l-2.71,-0.2l-1.3,0.91Z", "name": "Landes"}, "FR-41": {"path": "M366.23,238.4l1.39,-0.45l3.94,-0.19l2.09,-0.61l1.72,-1.09l1.22,-0.18l0.94,3.47l1.02,0.64l2.8,0.62l6.81,7.85l2.85,-0.52l4.43,1.84l1.58,0.07l1.59,-0.4l5.9,-2.92l2.85,0.84l1.93,-0.34l0.73,1.25l-0.22,0.64l-1.27,1.31l-0.37,1.04l0.15,0.45l2.42,1.6l-0.02,2.63l-2.71,2.99l0.04,0.51l2.01,2.06l-1.16,1.86l0.06,0.55l3.14,2.66l1.32,-0.28l0.95,-1.67l1.97,1.25l2.36,0.86l0.57,0.54l0.99,3.84l1.46,1.69l2.08,1.13l2.41,-0.33l1.21,-1.99l0.29,-1.73l0.66,-0.46l1.55,0.51l3.16,1.97l1.96,0.29l12.33,-1.01l2.92,1.01l0.77,2.69l-4.29,1.25l-1.96,1.28l-0.44,2.51l1.18,1.24l2.44,-0.04l0.8,0.51l1.38,2.93l1.89,2.53l0.29,2.13l-0.7,1.84l-1.42,-0.0l-3.86,-1.21l-1.11,0.31l-0.9,0.73l-0.53,0.94l-0.2,2.46l0.28,1.35l1.7,3.88l-0.46,1.37l-2.19,1.15l-2.93,0.33l-2.99,-0.35l-3.07,-1.09l-0.73,0.1l-1.95,1.93l-0.49,2.89l-1.71,0.63l-1.85,-0.46l-6.98,-5.39l-3.46,1.18l-4.12,-0.91l-0.44,0.3l-0.58,1.73l-1.13,-0.19l-1.56,0.32l-1.05,0.86l-0.43,1.45l-3.05,-0.69l-2.94,0.73l-5.7,2.97l-3.12,-5.16l-2.14,-1.75l-2.74,-0.57l-2.1,0.29l-2.59,-1.62l-0.99,-1.5l1.2,-3.48l0.32,-2.78l-0.28,-2.83l-0.95,-2.44l-1.95,-2.96l-1.21,-0.99l0.13,-0.95l0.82,-1.43l-0.03,-0.86l-1.89,-2.92l-0.86,-0.32l-1.67,0.72l-0.61,-2.06l-0.84,-0.53l-1.01,-0.13l-2.04,0.25l-1.06,0.53l-1.16,1.28l-1.06,0.22l-0.75,-0.8l0.44,-2.41l-0.21,-1.3l-0.61,-0.88l-0.9,-0.49l-6.06,-1.44l-2.11,0.75l-2.89,-1.54l-0.89,-0.16l-1.08,0.26l-1.07,0.76l-0.13,-0.27l0.59,-1.42l1.29,-1.16l5.17,-2.45l1.63,-1.53l1.57,-4.34l0.07,-3.55l0.45,-1.34l2.91,-2.22l0.88,-1.62l-0.43,-1.98l0.6,-3.59l-0.6,-0.63l-1.31,-0.12l-0.89,-1.68l0.21,-0.59l2.27,-0.25l0.71,-0.46l0.07,-1.0l-0.69,-0.59Z", "name": "Loir-et-Cher"}, "FR-42": {"path": "M583.09,383.52l1.72,1.09l0.77,1.17l0.35,1.21l-0.35,1.44l-1.12,0.39l-3.17,0.2l-1.25,0.79l-5.05,5.08l-0.45,1.47l0.12,0.4l2.9,2.04l0.31,0.55l-0.33,0.68l-1.86,0.46l-0.95,0.6l-0.16,0.46l0.36,1.11l4.31,2.35l0.65,1.11l-0.54,1.84l0.24,1.21l0.63,0.77l1.77,0.9l1.13,1.52l-0.55,1.62l-2.44,3.28l0.24,1.69l3.02,0.77l0.08,0.5l-2.0,2.9l1.13,3.68l3.25,3.28l3.98,2.29l3.0,0.54l3.8,-0.5l1.89,0.21l1.14,0.81l0.17,0.81l-0.79,3.31l0.17,1.78l0.8,0.92l0.95,0.24l2.4,-0.12l0.7,0.4l1.54,2.0l-0.27,3.07l0.76,2.48l-2.68,0.48l-5.51,2.54l-1.35,1.01l-0.94,1.46l0.19,3.77l-7.86,0.47l-1.9,-1.64l-1.54,-0.81l-2.83,-0.33l-1.06,-2.26l0.79,-1.98l-0.44,-1.83l-1.29,-2.03l-1.55,-0.99l-2.48,1.54l-4.06,-1.11l-2.36,0.02l-0.64,0.32l-0.28,1.19l-0.59,0.59l-5.7,0.96l-2.47,0.09l-1.61,-1.66l-0.73,-0.21l-2.27,0.68l-1.66,1.06l-0.4,-0.55l0.57,-2.63l0.71,-1.31l2.82,-2.97l0.97,-2.32l-0.07,-1.42l-2.55,-5.63l-7.56,-6.05l-3.13,-6.33l-0.58,-0.9l-1.05,-0.64l-1.81,-3.03l0.87,-1.71l0.1,-2.6l0.88,-1.58l0.32,-1.57l-0.57,-1.38l-2.48,-1.95l-0.33,-0.83l0.19,-0.43l2.19,-1.04l4.84,-1.05l0.92,-0.65l0.52,-0.86l-0.92,-6.28l-0.68,-2.16l0.16,-3.93l-0.45,-3.2l-1.15,-1.48l0.18,-0.5l2.9,-2.1l3.64,-1.01l0.56,1.52l-0.19,2.42l0.26,0.72l1.01,0.63l2.01,0.62l2.09,1.49l0.94,0.18l5.09,-1.32l3.56,0.89l3.56,-0.61l4.78,1.24l1.92,-0.02l1.84,-0.64l1.67,-1.19l1.71,-2.0Z", "name": "Loire"}, "FR-43": {"path": "M552.14,449.48l0.67,0.85l0.84,0.2l1.6,-1.2l1.9,-0.6l2.13,1.82l2.81,-0.06l5.93,-1.02l0.73,-0.54l0.63,-1.51l2.08,-0.01l4.17,1.12l0.77,-0.18l1.64,-1.34l1.05,0.73l1.46,2.67l-0.74,2.73l1.01,2.4l0.55,0.5l2.83,0.32l1.35,0.69l2.79,2.4l0.01,0.38l-0.57,2.1l-1.56,2.88l-0.39,2.24l-0.49,0.1l-1.12,-1.01l-1.15,-0.45l-0.79,0.06l-0.57,0.5l-0.04,0.8l0.87,1.5l-1.86,1.79l-0.32,0.95l1.23,1.99l-1.15,0.49l-2.02,0.27l-0.8,0.49l-0.88,1.68l0.6,1.25l-0.04,0.58l-2.45,0.94l-1.75,-0.24l-0.7,0.42l-1.47,3.48l-2.26,2.8l-5.01,0.84l-2.52,-0.04l-0.63,0.49l-0.58,1.76l-3.92,1.29l-3.33,4.57l-1.1,0.45l-1.34,-0.28l-3.14,-1.55l-4.13,-3.41l-4.32,-0.85l0.51,-1.34l-0.08,-0.66l-1.42,-1.21l-1.93,-0.18l-1.33,0.48l-0.47,0.69l-0.31,1.9l-0.69,0.54l-3.23,0.32l-1.34,0.6l-0.62,-0.3l-1.06,-1.05l-3.45,-5.83l-1.02,-2.98l-1.04,-0.38l-0.16,-1.22l-0.68,-1.37l-3.66,-3.52l-0.3,-0.83l0.23,-1.07l2.14,-2.1l-0.09,-1.37l-0.66,-0.63l-1.9,-0.28l-0.72,-1.02l-0.39,-3.9l-0.44,-1.16l-1.67,-2.2l-0.5,-2.83l-0.66,-0.76l-1.65,-0.75l-1.77,-0.29l-2.82,0.33l0.05,-2.32l-0.44,-2.12l3.43,0.06l2.05,-0.48l2.28,-2.19l0.84,-0.45l2.27,-0.41l1.03,-0.48l1.31,-1.17l0.83,-0.02l3.17,1.58l5.41,-1.2l1.34,0.03l3.7,1.65l2.36,2.96l1.35,0.62l0.97,-0.2l2.41,-1.46l3.22,1.35l1.86,0.13l1.28,-0.57l0.79,-1.69l0.57,-0.41l4.6,1.93Z", "name": "Haute-Loire"}, "FR-95": {"path": "M472.15,160.47l-0.57,1.17l-0.34,2.93l-0.72,1.39l-1.7,0.89l-3.08,2.77l-1.79,0.51l-6.03,-1.25l-1.59,1.06l-1.49,0.13l-2.45,0.94l-2.51,1.9l-1.87,0.64l-1.91,2.31l-1.15,-0.18l-0.15,-1.53l0.8,-1.99l1.85,-1.25l0.69,-1.15l0.06,-1.58l-0.55,-0.62l-1.79,-0.69l-3.19,-0.24l-1.41,0.41l-0.96,1.17l-1.13,2.37l-0.81,0.54l-0.64,-0.2l-0.35,-0.74l0.37,-1.7l-1.09,-1.77l-0.96,-0.82l-2.38,-0.34l-3.48,1.12l-0.7,-1.24l-0.75,-3.02l-1.03,-1.11l-1.25,-0.42l-1.35,0.0l-1.35,0.31l-3.47,1.74l-0.79,-0.03l-0.51,-1.72l-1.59,-0.6l-2.87,-0.41l2.79,-8.08l1.58,-2.72l0.43,0.35l0.8,2.03l0.97,0.67l3.39,0.3l5.65,1.41l6.54,-0.78l5.01,-2.69l3.66,2.09l2.47,0.26l3.97,1.5l1.83,0.1l3.18,-1.39l11.5,5.26l0.91,0.03l0.87,-0.37l2.41,2.32Z", "name": "Val-d'Oise"}, "FR-GF": {"path": "M0.97,715.11l0.03,-0.01l1.04,0.32l0.16,0.02l0.86,-0.15l0.51,-0.46l0.86,-2.17l2.19,-0.54l1.75,-1.7l3.1,-6.63l2.47,-3.35l0.8,-2.07l0.47,-0.34l0.06,-0.66l-0.55,-0.79l0.94,-2.39l-0.02,-0.46l-0.64,-0.76l0.44,-0.66l-0.5,-1.65l0.23,-1.91l-0.45,-0.69l-0.46,-0.14l0.86,-1.73l2.07,-2.81l1.19,-0.89l0.84,-2.29l1.16,-1.21l0.63,-1.48l-0.08,-2.67l0.59,-2.69l-0.24,-0.63l-0.99,-0.8l-0.94,0.14l-0.73,-1.11l-0.67,-2.34l-1.1,-1.52l-2.15,-0.96l-0.85,-1.38l-0.94,-0.69l-0.78,-1.45l-0.91,-0.91l-0.6,-1.53l-1.41,-1.5l0.64,-2.85l-0.13,-0.85l-2.32,-1.44l0.46,-1.46l-0.01,-1.08l-0.33,-1.55l-1.0,-2.09l-0.57,-3.53l0.9,-2.56l0.01,-1.55l-0.48,-1.52l0.02,-2.19l-1.39,-1.38l0.0,-4.12l-0.26,-0.77l1.19,-1.14l-0.22,-1.91l0.25,-0.92l2.73,-3.76l0.74,-0.61l1.11,-2.37l4.66,-4.06l2.22,-1.17l1.58,-1.93l1.87,-4.21l0.52,-3.48l1.46,-2.55l2.53,0.36l1.76,0.65l0.25,-0.36l3.4,2.05l6.81,3.12l3.05,0.38l3.49,0.88l0.86,-0.07l1.81,1.42l0.75,-0.24l0.28,-0.38l-0.11,-0.54l0.6,0.16l3.21,1.77l2.63,0.74l0.44,-0.2l3.1,1.65l2.24,2.12l1.54,0.85l1.06,1.69l7.47,6.54l0.33,0.77l1.43,0.41l2.53,2.16l0.64,1.06l-0.27,1.23l0.6,0.43l2.01,-1.77l1.2,0.54l0.54,0.96l-2.76,4.28l0.03,1.47l0.4,0.37l0.6,-0.32l0.54,-0.93l0.57,-1.94l2.11,-1.78l0.87,0.63l1.21,1.89l2.18,1.25l2.26,2.1l0.89,1.31l1.5,6.51l-0.33,1.34l-1.91,1.37l-0.89,1.13l-0.01,0.47l0.45,0.15l2.11,-0.67l1.15,-0.61l0.64,-0.84l0.53,-2.04l-0.28,-4.87l0.65,-1.95l1.05,-0.2l1.97,1.65l0.0,0.74l1.13,1.9l0.28,1.83l0.66,0.89l-0.25,0.37l0.26,0.94l0.51,0.66l1.03,0.2l-0.69,0.86l-0.09,1.41l1.97,3.43l0.18,0.84l-0.06,2.16l-0.64,2.0l-0.3,0.58l-2.4,1.19l-1.04,0.92l-1.71,3.75l-2.1,2.32l-1.35,0.82l-0.13,1.42l-0.89,0.24l-0.67,0.68l-0.88,2.96l-1.99,3.34l-0.78,0.63l0.04,0.74l-4.48,7.35l-0.56,0.42l-1.13,0.12l-0.77,0.72l-0.64,1.51l-1.27,1.01l-0.24,0.8l0.31,2.33l-2.32,4.42l0.33,0.96l-1.39,1.05l-2.96,7.18l-1.09,0.6l0.67,2.17l-2.13,3.57l-1.21,1.07l-1.71,2.4l-5.24,2.87l-0.69,0.6l-0.84,1.79l-2.17,0.93l-2.57,-0.42l-1.92,-1.13l-5.09,0.79l1.41,-1.11l-0.13,-0.65l-2.09,-1.75l-0.88,-1.21l-0.87,-0.45l-0.43,0.08l-1.13,1.43l-2.74,1.58l-2.14,0.34l-1.52,-0.76l-2.22,-0.27l-2.22,-0.96l-0.87,-0.06l0.23,-1.21l-0.6,-0.69l-0.75,-0.14l-1.33,0.55l-1.05,1.47l-1.27,0.26l-0.98,1.22l-1.24,-0.04l-0.49,1.63l-0.46,0.33l-1.97,0.97l-0.71,-0.32l-1.16,0.23l-0.87,2.01l-0.86,0.39l-1.72,-1.68l-2.66,0.42l-1.6,-0.21l-2.03,-1.41l-3.41,-0.59l-1.86,-1.51l0.34,-0.7l-0.6,-0.59l-1.7,-0.92Z", "name": "Guyane fran\u00e7aise"}, "FR-GP": {"path": "M44.87,452.95l2.26,-1.9l1.31,-0.53l0.63,0.19l-2.39,1.57l-1.81,0.66ZM16.07,454.56l0.99,-3.24l0.45,-0.54l1.25,-0.4l0.33,-0.98l-0.15,-1.3l-1.63,-0.93l-0.61,-3.02l1.65,-2.23l2.47,-1.44l2.87,2.33l0.67,1.2l0.24,4.01l1.84,2.68l1.77,1.09l0.71,-0.33l2.34,0.36l6.21,4.32l1.16,0.34l-0.55,0.18l-3.31,-0.89l-10.9,2.46l-3.09,1.07l-2.38,-0.65l-1.77,-1.2l-0.78,-1.34l0.24,-1.57ZM29.3,476.81l1.29,-2.59l1.05,-1.18l1.16,-0.64l1.27,0.28l1.08,0.91l0.68,1.72l0.94,0.93l0.13,1.34l-1.12,1.36l-1.47,0.73l-1.99,0.48l-1.58,-0.25l-1.44,-3.1ZM6.63,475.24l-0.25,-0.65l0.35,-0.72l-0.44,-0.85l-1.95,-1.6l-0.87,-1.97l-0.57,-0.45l-0.69,-2.06l-0.05,-4.94l-0.89,-2.29l0.25,-1.07l-1.09,-2.09l0.05,-3.66l1.5,-2.21l0.77,-0.65l0.89,-0.23l1.5,1.13l3.84,1.09l2.02,1.06l0.67,0.81l-0.4,0.18l0.01,0.74l0.87,0.07l0.72,0.74l0.65,-0.12l0.7,-0.95l0.47,-0.08l0.26,0.32l-0.35,1.27l0.32,1.1l-1.34,0.42l-0.48,0.89l0.13,2.94l0.8,2.29l0.41,3.37l-0.49,3.19l-1.83,2.19l-2.76,1.62l-2.74,1.16ZM13.68,480.6l0.09,-0.17l0.15,-0.01l-0.11,0.1l-0.13,0.09ZM10.63,481.22l0.17,0.27l-0.27,0.31l-0.19,-0.11l0.3,-0.46Z", "name": "Guadeloupe"}, "FR-39": {"path": "M636.54,324.96l3.3,-1.96l0.29,-0.73l-0.62,-2.26l0.27,-0.68l5.24,-2.45l5.77,-8.09l0.56,-1.07l0.24,-2.05l1.4,-4.44l3.31,2.04l1.05,0.28l1.17,0.03l3.94,-0.81l0.76,0.37l0.46,0.74l1.09,2.82l3.51,2.25l1.95,3.33l-0.51,1.91l-1.77,1.97l-0.1,2.5l-1.72,1.99l0.3,1.45l1.37,0.56l2.08,-1.29l2.03,1.7l4.71,0.92l2.03,0.9l1.96,2.56l0.58,4.16l1.96,2.96l0.83,0.55l2.78,0.44l7.29,5.91l-0.57,0.75l-6.3,4.25l-0.52,0.66l0.0,1.44l0.82,1.57l-1.76,1.41l-0.84,1.22l0.33,1.61l1.72,1.74l3.37,1.86l-1.94,2.13l-3.09,4.33l0.33,2.88l-3.79,4.35l-2.1,1.94l-1.03,1.64l-4.26,3.58l-2.33,0.56l-7.03,-0.44l-0.45,-0.65l-0.22,-1.3l-0.66,-0.88l-3.08,-2.47l-0.52,-0.06l-2.8,2.33l-0.57,1.15l-1.28,0.24l-1.18,1.22l-1.45,0.59l-0.82,0.73l-1.63,-0.33l-0.55,-0.58l0.29,-2.41l-0.42,-1.04l-1.87,-0.45l-0.9,-1.08l-2.11,-0.64l-0.82,-0.85l-0.79,-2.49l-1.25,-0.94l-1.43,-0.41l-0.41,-0.65l-0.02,-2.36l1.02,-0.49l4.42,-0.91l1.13,-0.73l0.39,-0.89l-0.11,-0.84l-0.52,-0.67l-2.59,-1.42l-0.66,-1.39l0.39,-1.98l1.89,-1.03l0.5,-0.65l1.1,-3.74l-1.49,-5.71l-0.52,-1.09l-1.27,-1.09l0.92,-2.13l-0.29,-0.66l-1.72,-1.29l-0.18,-0.73l1.26,-0.72l3.88,-0.5l1.03,-0.96l0.46,-1.58l-0.25,-0.34l-2.12,-0.68l-1.69,-1.38l-1.75,-0.35l-2.19,-1.16l-3.31,-3.1l-1.32,-2.47Z", "name": "Jura"}, "FR-38": {"path": "M609.43,431.43l0.37,-0.26l11.99,-0.96l1.42,-0.94l1.29,-2.78l2.74,-2.21l1.55,-0.72l1.38,0.0l0.4,-0.35l0.15,-1.12l-0.77,-1.09l-3.91,-1.99l-0.55,-0.73l-0.01,-0.96l1.81,-3.4l1.46,0.25l5.22,2.56l1.5,0.29l1.26,-0.39l0.95,-0.77l3.72,-5.2l1.66,-0.79l1.02,0.37l2.95,2.53l-0.16,0.54l1.05,2.91l1.74,2.31l4.28,3.44l1.11,1.33l2.09,3.44l1.43,3.24l7.19,12.36l0.99,0.97l9.61,3.52l0.53,-0.42l0.24,-5.99l0.77,-0.59l1.92,-0.13l0.96,0.33l3.69,2.98l4.95,0.68l2.57,2.57l1.08,1.62l0.41,1.78l-0.28,1.51l-2.76,2.4l-0.7,1.38l-0.16,1.59l1.41,5.27l0.16,2.5l0.48,0.71l0.6,0.2l3.54,0.13l1.61,0.52l0.42,0.96l-1.56,1.89l-1.05,4.98l0.01,1.51l0.51,1.03l1.24,0.41l3.69,-0.43l0.93,0.46l0.56,3.36l1.97,2.53l-0.32,4.01l-0.85,0.16l-2.83,-0.77l-3.8,0.98l-1.71,-0.15l-1.86,0.35l-2.28,-0.4l-3.91,2.12l-3.38,-0.2l-3.2,2.03l-0.33,0.77l0.25,1.63l-0.69,0.66l-2.32,0.66l-4.54,0.49l-2.12,2.84l-2.13,0.21l-7.15,-1.11l-5.25,-4.64l-1.23,-0.57l-0.56,0.37l0.02,1.16l-3.85,-1.07l-0.77,-0.79l-0.02,-1.18l1.34,-7.85l0.0,-2.77l0.7,-2.77l-1.35,-4.55l0.89,-1.79l-0.37,-0.58l-1.95,0.13l-4.0,2.45l-2.19,-0.04l-0.76,-1.11l-1.94,0.36l-1.68,-0.41l-1.95,-0.01l-1.01,-1.74l-2.6,-0.1l-0.59,0.26l-0.24,-0.8l1.17,-3.91l-0.89,-4.16l-0.15,-2.44l-0.84,-1.66l-0.5,-0.19l-1.67,0.65l0.4,-2.19l-0.39,-0.47l-2.66,-0.05l-0.71,-0.53l-1.36,-2.01l-1.81,-0.09l-1.11,-1.65l-1.05,-0.26l-1.5,0.3l-5.43,2.97l-3.6,0.31l-2.13,-2.79l-0.16,-1.49l-1.08,-3.38l0.27,-3.03l1.51,-2.04l4.14,-3.16l1.07,-2.82l-0.1,-0.43l-1.88,-1.77l-1.7,-1.15Z", "name": "Is\u00e8re"}, "FR-31": {"path": "M438.35,594.54l-4.57,0.58l-3.86,1.57l-0.35,-1.32l-0.56,-0.57l-1.18,-0.36l-0.78,0.18l-0.7,1.44l-1.61,1.87l-0.18,0.68l0.42,1.98l-0.7,0.55l-1.69,0.11l-2.37,0.73l-1.83,3.99l-1.62,-0.34l-1.69,1.92l-0.67,0.15l-0.53,-0.93l-0.7,-0.5l-2.26,0.09l-3.43,-2.4l-1.51,0.22l-0.75,1.47l0.93,2.1l-0.77,1.46l-1.23,0.84l-1.35,0.05l-1.19,-0.81l0.4,-1.59l-0.23,-0.93l-3.02,-2.84l-1.49,-0.75l-1.59,-0.19l-1.48,0.75l-0.37,2.57l1.03,1.07l3.21,1.18l0.54,0.63l-0.4,0.78l-1.31,0.81l-2.63,0.93l-4.2,0.5l-1.19,1.26l0.41,1.54l2.88,1.2l0.73,0.9l-2.48,2.2l-0.7,-0.1l-2.02,-2.74l-3.53,-1.98l-1.05,-0.07l-2.07,0.8l-1.63,0.09l-0.77,0.7l-0.87,1.86l-2.5,1.07l-0.7,1.18l-0.08,1.93l0.65,3.53l-0.3,1.26l-1.98,1.54l-2.5,0.59l-1.87,0.07l-0.84,0.99l-0.34,1.64l-1.88,1.25l-0.41,2.1l1.2,4.4l-1.96,-1.01l-2.28,-0.07l-3.17,-0.95l-2.82,0.01l-1.52,0.52l-0.54,1.34l0.11,1.63l-0.82,1.99l0.47,0.91l-0.83,1.28l0.24,0.56l0.76,0.24l0.61,0.69l0.36,0.97l-0.05,1.0l-0.39,0.58l-10.29,0.14l-0.66,-0.25l-0.7,-5.3l0.12,-4.44l0.39,-1.7l0.65,-1.16l1.0,-0.2l3.45,0.3l1.97,-1.5l3.97,-5.65l-2.4,-5.55l-0.48,-0.2l-1.96,0.65l-2.16,1.31l0.36,-1.37l1.29,-2.08l0.35,-1.15l-0.18,-0.46l-6.96,-3.98l3.47,-3.2l1.19,-1.73l2.09,-0.72l0.7,-0.75l-0.1,-2.33l2.19,-1.81l0.75,-1.08l-0.3,-1.32l1.57,-0.13l1.53,-0.85l3.15,-3.7l2.01,-0.99l2.09,-1.87l7.67,0.4l1.23,0.7l2.77,2.43l1.75,0.36l1.71,-1.59l0.5,-2.5l0.11,-4.81l1.16,-3.23l0.85,-1.05l3.79,-0.02l2.88,-2.08l0.92,-2.77l-0.11,-0.42l-2.97,-2.72l-4.72,-2.63l-1.01,-2.3l-2.09,-1.29l-2.6,-2.61l-0.98,-1.95l5.54,-1.27l3.13,0.08l2.12,-0.81l1.48,-0.01l3.38,3.05l1.92,-0.01l6.87,-3.51l0.09,-0.65l-0.7,-0.63l-2.44,-1.22l3.91,-2.14l4.12,0.36l0.93,-0.42l1.66,-1.68l1.72,0.56l2.12,-1.15l-0.25,2.12l1.83,3.3l0.04,1.74l2.14,1.35l1.79,0.59l2.29,5.99l2.73,2.76l0.1,0.71l-1.25,0.52l-0.73,0.77l-0.45,0.83l0.16,0.54l6.28,3.37l1.9,0.54l0.98,0.72l2.66,3.34l4.34,3.17l1.17,0.2l1.26,-0.64l1.07,-1.48l1.14,-0.06l1.3,1.29l-1.5,2.12l-0.12,1.34l0.26,0.94Z", "name": "Haute-Garonne"}, "FR-30": {"path": "M566.02,584.87l-0.06,-1.85l3.33,-1.3l1.57,-2.94l-0.27,-4.12l-2.13,-3.56l-0.92,-0.7l-2.81,-1.24l-3.53,-2.48l-3.2,-0.45l-0.09,-3.29l-0.36,-1.11l-0.69,-0.87l-1.07,-0.59l-2.18,-0.12l-4.39,0.66l-1.56,-1.15l1.35,-3.1l-0.1,-0.46l-2.7,-2.28l-3.77,-0.42l-2.69,1.99l-0.9,2.3l-2.1,-0.17l-1.35,0.34l-1.85,2.64l-0.86,0.74l-0.97,-0.02l-1.81,-1.45l-1.55,-0.47l-1.27,0.54l-0.57,1.76l-0.36,0.59l-0.4,0.09l-1.06,-0.9l-1.22,-2.44l-1.2,-0.57l-2.57,0.04l0.68,-1.95l5.28,-4.67l0.31,-0.63l-0.08,-0.85l-0.93,-1.06l-2.91,-2.03l-1.78,-0.14l-1.54,-1.21l-1.67,0.17l-0.93,-0.62l2.15,-1.34l0.28,-2.27l0.84,-1.14l1.88,-1.21l6.14,3.38l2.51,0.67l6.22,-0.32l1.43,-1.05l0.3,-3.47l1.43,-0.44l1.03,0.26l6.27,3.34l4.61,0.45l0.9,-0.21l2.81,-2.74l2.28,-4.39l0.51,-1.75l-0.2,-1.4l-1.55,-3.3l-0.62,-3.31l-1.79,-2.77l0.63,-0.51l2.02,-0.35l0.99,-0.67l1.96,-3.09l1.34,1.08l1.64,2.61l-0.83,2.07l0.49,3.26l0.66,0.8l4.86,-0.5l1.08,1.04l4.93,2.42l1.51,0.3l0.78,-0.21l1.6,-1.52l3.36,-2.18l2.44,-0.38l0.36,0.44l-0.26,1.47l0.24,0.69l0.83,0.79l0.97,0.26l0.84,-0.14l1.05,-0.78l0.64,-2.28l2.19,-0.38l1.44,0.09l1.68,0.67l2.19,2.02l1.73,0.78l2.57,0.61l0.57,1.69l1.23,1.54l0.1,1.58l1.9,1.83l0.18,2.73l-0.33,2.14l0.45,2.79l0.62,0.47l1.22,-0.4l1.2,0.21l4.51,5.33l-0.09,0.53l-1.09,-0.09l-0.55,0.26l-0.07,2.45l-1.05,1.25l-1.67,1.19l-2.8,1.16l-5.36,3.57l-0.17,0.92l0.54,4.15l-1.95,4.79l-0.24,2.71l-0.49,0.37l-1.49,-0.73l-2.67,-0.6l-2.03,0.57l-1.49,1.04l-1.68,2.12l-1.37,2.92l0.45,1.06l1.58,0.26l-0.69,1.49l-2.15,0.42l-0.61,1.38l-1.54,0.44l-3.46,2.46l-2.02,0.48l-1.44,1.06l-1.17,0.31l-1.37,3.01l-2.27,-0.34l-2.81,-1.63l-0.8,-1.47l0.87,-1.81l-1.93,-1.64Z", "name": "Gard"}, "FR-33": {"path": "M238.0,500.65l3.34,-33.36l2.55,-12.04l1.09,-15.98l2.41,-4.69l0.79,-1.06l0.72,-0.24l0.41,0.27l-0.33,2.59l1.44,2.01l4.22,2.89l3.51,1.53l7.32,7.13l1.65,2.15l1.65,6.53l1.42,7.99l2.13,4.49l2.13,2.43l2.35,2.0l2.44,1.49l0.52,1.41l-0.17,1.23l0.35,3.2l0.54,1.31l0.97,0.73l0.45,-0.0l0.16,-0.42l-0.81,-4.06l0.53,-2.18l-0.8,-1.78l-1.38,-1.23l1.66,0.3l2.68,1.57l0.51,-0.03l0.06,-0.51l-1.72,-2.53l-5.08,-1.82l-2.05,-1.4l-1.05,-1.86l-0.76,-2.33l-2.25,-14.04l4.57,0.18l1.0,-0.64l1.05,-1.41l0.92,0.83l0.37,1.95l0.61,0.79l2.13,0.71l2.33,0.11l3.23,2.19l0.41,0.91l-0.17,2.14l0.36,1.62l1.1,1.8l0.99,0.81l3.02,-0.17l1.87,1.12l1.79,0.6l2.4,1.97l4.08,1.26l1.94,-0.24l3.34,-1.09l1.62,0.54l1.87,-0.63l3.77,-0.0l0.86,0.7l0.85,1.9l0.12,1.21l-1.66,3.4l0.03,1.68l-1.47,1.64l-0.45,1.0l-0.12,1.41l1.53,1.97l-0.01,0.4l-2.58,3.64l0.39,0.63l0.61,-0.09l1.97,1.69l8.78,1.03l1.48,-0.51l2.82,-2.66l-0.03,-0.86l3.63,0.92l0.66,0.53l-1.25,1.32l-1.81,0.49l-0.36,0.49l0.68,2.82l1.1,1.81l-2.83,-0.11l-0.79,0.27l-0.38,0.53l-0.22,2.0l-0.4,0.64l-0.52,0.05l-1.67,-1.76l-0.96,-0.21l-2.05,0.69l-0.81,0.75l-0.67,2.2l0.31,1.13l1.02,1.08l2.35,0.65l0.34,0.39l-0.21,1.07l-5.31,5.95l-0.48,0.38l-1.65,-0.17l-0.88,0.43l-2.92,3.93l-0.27,1.03l0.15,1.03l1.6,1.84l-0.76,2.83l1.04,2.29l-0.04,0.56l-0.94,-0.13l-4.21,1.14l-0.89,0.74l-0.09,0.48l0.63,1.22l1.67,1.71l0.69,2.02l-1.69,1.46l-4.28,1.92l-4.05,-2.75l-1.25,0.81l-0.23,3.33l-0.71,0.8l-8.28,-0.78l-0.44,-0.46l-0.35,-1.31l0.73,-3.12l-0.54,-1.05l-3.06,-2.33l-3.93,-0.99l-0.75,-0.44l-0.94,-2.1l-4.74,-2.51l-0.63,-0.78l-0.41,-1.73l-1.27,-1.23l-2.36,-0.21l-9.74,2.12l-4.86,-1.26l-4.17,0.64l-0.69,-0.23l1.0,-3.14l-0.68,-1.87l-5.07,-2.13l-4.33,2.73l-5.9,1.73l0.19,-2.24l-0.62,-3.67l1.83,-2.53l1.26,-4.35l1.04,-1.14l1.32,-0.04l3.7,0.81l2.29,-0.28l1.4,-0.83l0.21,-1.48l-1.01,-1.12l0.28,-0.48l-0.7,-1.19l-4.63,-3.83l-1.79,-0.89l-0.92,0.36l-3.56,5.22l-0.53,2.34Z", "name": "Gironde"}, "FR-32": {"path": "M359.79,547.18l0.65,0.81l0.4,1.58l0.66,0.23l3.14,-1.63l0.89,0.14l0.43,0.57l0.03,0.93l-0.49,1.07l-3.18,3.71l-1.5,0.87l-0.15,0.61l0.99,1.17l1.74,0.65l4.32,0.23l0.53,0.72l1.39,6.68l-0.62,1.87l0.36,0.56l3.17,0.08l1.18,2.38l2.68,2.69l2.04,1.25l0.51,1.61l0.55,0.73l4.81,2.7l2.66,2.45l-0.8,2.4l-2.51,1.73l-3.62,-0.05l-1.33,1.4l-1.3,3.59l-0.11,4.84l-0.46,2.27l-1.31,1.13l-0.93,-0.27l-2.74,-2.4l-1.42,-0.82l-7.83,-0.52l-1.11,0.52l-1.55,1.52l-2.15,1.1l-3.04,3.62l-1.39,0.77l-1.79,0.11l-8.42,-1.75l-3.48,0.02l-1.29,-2.02l-0.57,-0.05l-0.64,0.61l-1.27,0.43l-0.98,-0.57l-0.81,-1.16l-0.76,-0.46l-1.13,-0.17l-4.88,0.9l-0.78,-0.25l-1.87,-2.23l-1.19,-0.73l-0.11,-0.88l0.54,-2.12l-1.07,-1.75l-0.7,-2.22l-0.78,-0.41l-1.24,-0.05l-3.06,-1.7l-0.93,-0.16l-1.15,-2.48l-0.59,-2.7l-0.34,-0.31l-1.92,-0.22l-1.76,0.52l-2.87,2.2l-5.51,-1.02l-1.94,0.13l-0.8,-1.93l-0.88,-0.6l1.33,-2.32l-0.5,-1.87l1.85,-0.49l1.64,-3.16l0.08,-0.71l-0.81,-1.29l0.05,-2.22l1.48,-3.42l-0.0,-0.64l-0.91,-2.1l-1.51,-1.7l0.46,-0.78l2.03,-1.39l0.59,-0.28l2.14,0.33l2.0,-0.16l2.08,-1.86l2.5,-1.32l1.3,0.7l0.06,0.52l-0.83,1.47l0.38,1.15l1.26,0.69l2.78,0.25l1.22,-0.46l0.56,-0.85l0.17,-0.92l-0.33,-1.74l0.68,-1.02l1.79,-0.56l0.96,0.87l1.31,-0.01l1.3,-0.95l2.0,-2.61l5.5,1.55l3.19,-1.57l1.3,-0.2l4.46,-1.96l1.1,-0.75l2.5,0.3l5.09,-1.52l1.7,0.75l2.48,1.88l1.39,-0.26l3.55,-1.86Z", "name": "Gers"}, "FR-35": {"path": "M193.66,200.25l0.91,0.63l0.48,-0.04l0.09,-0.48l-0.55,-1.04l-0.7,-0.57l-1.7,-0.54l-1.61,-3.1l0.51,-1.02l1.66,-0.82l0.37,-1.34l0.28,-0.13l2.22,0.0l0.28,-0.7l4.99,-0.86l0.54,1.16l-1.35,1.87l-0.06,2.08l1.7,1.73l2.67,0.63l4.54,0.04l4.83,-0.64l3.02,-1.39l2.6,5.45l1.04,3.06l1.91,2.9l3.27,2.38l2.44,0.21l1.93,-0.61l2.78,-1.91l2.08,-0.77l2.22,-2.4l2.39,0.03l6.14,1.5l2.32,1.25l-0.2,5.67l0.77,8.15l-1.95,4.1l0.21,1.05l0.9,1.52l0.8,4.72l-0.73,1.74l0.74,4.88l0.57,1.17l1.18,1.08l0.09,4.44l-1.36,0.63l-4.18,0.61l-2.21,1.9l-0.63,1.08l-2.9,9.1l-1.14,1.77l-0.41,1.91l-6.47,-1.09l-0.75,-0.44l-0.77,-1.22l-1.29,-0.55l-3.34,-0.0l-1.83,1.23l-6.34,2.57l-1.86,1.31l-1.2,1.55l-2.58,1.54l-7.31,2.01l-3.72,-0.8l-4.42,1.41l-1.22,0.67l-4.0,0.25l-3.59,1.82l-0.51,1.1l-0.32,-0.19l-0.17,-2.18l-1.02,-2.2l-0.09,-1.86l0.33,-0.32l2.98,-0.32l0.46,-1.25l-0.89,-1.18l-2.27,-0.12l-0.44,-0.27l-0.01,-0.41l0.68,-0.49l1.58,-0.35l0.94,-0.71l1.05,-2.15l0.07,-1.24l-0.88,-1.2l-2.57,-0.21l0.4,-6.26l-0.33,-1.06l-1.18,-1.53l-2.87,-1.77l-5.29,-0.98l-0.72,-0.47l-0.03,-1.08l0.71,-0.97l4.1,-1.14l0.83,-0.85l0.1,-1.05l-1.0,-0.9l-2.74,0.1l-1.37,-2.46l-1.39,-1.47l3.16,-2.19l0.88,-2.86l0.34,-0.59l1.51,-1.03l0.97,-2.6l0.45,-0.27l2.77,-0.1l1.73,-1.78l1.25,-0.81l4.97,1.15l1.64,-1.71l0.01,-3.24l1.33,-0.34l0.57,-1.09l-1.23,-5.68l2.64,-4.77l-1.01,-4.44l-0.63,-0.64l-0.55,0.02l-0.71,0.73l-0.55,-0.33l0.13,-0.69l-0.92,-1.66Z", "name": "Ille-et-Vilaine"}, "FR-34": {"path": "M472.95,595.08l2.8,-1.36l1.66,-1.38l0.42,-0.75l-0.67,-1.83l0.6,-2.13l-0.19,-0.87l-1.8,-1.81l-0.4,-0.78l0.06,-2.31l1.08,-2.4l2.53,-0.35l4.36,1.68l1.08,-0.09l6.9,-2.67l1.13,-0.84l0.89,-1.44l0.94,-0.73l2.76,-0.52l2.05,0.72l1.31,-0.01l1.13,-0.87l0.42,-1.21l-0.12,-1.91l0.44,-1.97l-0.73,-1.88l0.22,-1.3l0.63,-0.54l1.14,-0.13l5.68,0.72l1.26,-0.14l1.39,-0.84l0.82,-1.13l0.22,-1.48l0.5,-0.93l1.64,-1.06l2.89,-0.27l1.28,-0.95l2.91,-0.05l0.8,0.42l1.07,2.27l1.44,1.2l1.25,-0.29l0.99,-2.42l0.74,-0.23l0.99,0.34l1.86,1.49l1.5,0.12l1.36,-1.05l1.56,-2.39l3.67,-0.32l0.92,-2.34l2.17,-1.72l3.48,0.38l2.17,1.9l-1.36,3.12l0.13,0.48l1.96,1.44l4.72,-0.6l2.04,0.12l0.73,0.44l0.75,1.51l-0.04,2.62l0.4,1.15l3.35,0.52l3.47,2.44l2.8,1.24l0.71,0.51l2.04,3.41l0.25,3.51l-1.45,2.7l-3.23,1.15l-0.27,0.38l0.03,2.02l-2.89,-0.25l-3.46,0.39l-2.5,0.88l-13.02,9.46l-7.26,2.86l-2.05,1.55l-4.61,5.42l-1.04,0.41l-2.52,-1.04l-4.18,0.38l-4.24,1.6l-4.26,3.08l-3.27,-1.88l-2.29,-0.5l-2.5,-0.06l-3.01,-1.69l-2.94,-0.4l-0.36,-0.71l0.07,-1.71l-0.55,-0.39l-3.21,0.47l-0.86,-0.2l-0.54,-0.39l-2.44,-4.28l-1.1,-0.6l-1.16,0.45l-0.31,0.94l0.04,2.06l-0.7,1.96l-4.87,4.11l-2.35,-1.1l-1.39,-3.47l-0.66,-0.06l-1.39,1.71l-1.27,0.17l-3.16,-2.04l-1.4,-1.56l-0.17,-1.38l0.72,-1.43l1.48,-1.55l-0.1,-0.63l-0.49,-0.26Z", "name": "H\u00e9rault"}, "FR-37": {"path": "M352.22,269.97l1.75,-1.0l3.68,1.68l0.83,-0.03l1.3,-0.71l5.87,1.39l1.05,0.87l0.18,0.97l-0.4,2.78l0.41,0.75l0.8,0.52l0.91,0.07l0.85,-0.34l1.29,-1.38l0.8,-0.37l1.8,-0.2l1.2,0.39l0.34,1.65l0.49,0.6l0.66,0.12l1.09,-0.66l0.59,-0.01l1.67,2.46l-0.09,0.96l-0.83,1.38l0.08,1.15l1.3,1.12l1.88,2.86l0.85,2.17l0.27,2.64l-0.31,2.69l-1.21,3.49l0.39,1.26l3.11,2.54l0.91,0.24l1.99,-0.29l2.4,0.46l1.91,1.54l5.1,8.02l0.3,1.55l-0.35,1.42l-2.1,0.31l-0.75,2.28l-0.93,0.25l-1.44,2.34l-1.86,1.74l-3.39,-1.22l-1.61,-0.11l-3.27,0.8l-1.71,0.81l-1.23,1.46l-0.2,1.11l0.21,2.5l-1.27,0.79l-0.13,2.05l-1.79,8.58l-1.51,3.53l-1.97,0.76l-1.3,-1.56l-0.5,-0.09l-1.92,1.07l-2.81,-2.03l-7.16,-9.22l-1.26,-3.31l-1.44,-1.93l-6.17,-2.97l-0.71,0.68l0.16,1.39l0.73,1.37l-0.4,0.35l-5.41,0.31l-1.21,0.29l-1.78,1.09l-2.67,-0.46l-2.71,0.24l-1.01,-0.19l-0.92,-0.81l-0.25,-0.98l0.04,-2.48l0.47,-2.57l-0.35,-1.03l-2.01,-0.4l-0.72,-1.12l-0.61,-0.29l-3.43,0.61l-0.29,-0.38l0.35,-1.68l-0.32,-1.32l-0.99,-0.39l-1.98,0.41l-0.5,-1.99l-0.74,-0.2l-1.7,0.66l-1.69,-2.39l0.88,-5.76l1.43,-5.26l4.43,-6.2l-0.2,-2.84l0.98,-2.98l1.96,-3.88l-0.45,-3.6l1.51,-3.81l7.61,1.68l0.98,-0.08l0.62,-0.83l-0.48,-2.31l0.7,-0.71l2.9,0.89l2.04,-1.63l2.39,-0.48l3.32,-1.45l2.28,-0.47l0.53,-0.73l-0.11,-1.0Z", "name": "Indre-et-Loire"}, "FR-36": {"path": "M393.95,318.07l0.9,-0.09l0.61,-2.25l1.58,-0.11l0.8,-0.54l0.42,-1.84l-0.33,-1.69l-1.6,-2.47l5.44,-2.85l2.8,-0.69l3.15,0.76l0.48,-0.3l0.36,-1.49l0.86,-0.71l1.2,-0.21l1.29,0.24l0.46,-0.3l0.59,-1.74l3.84,0.88l3.17,-1.22l6.69,5.17l0.04,1.92l-0.81,1.69l-3.06,2.75l0.08,0.65l1.25,0.67l5.66,1.45l5.07,-1.54l3.01,0.3l1.15,0.49l0.43,0.43l0.26,1.29l-0.65,2.27l0.08,0.95l2.03,1.92l1.02,1.64l0.02,1.03l-0.75,2.0l-0.09,1.49l0.73,1.27l2.01,1.1l0.45,0.6l-0.11,0.46l-1.99,1.83l-1.21,2.47l-0.26,1.4l0.24,1.28l2.04,1.59l0.18,0.69l-0.21,0.55l-2.03,1.48l-0.56,0.91l-0.03,0.97l0.45,0.84l0.67,0.46l3.34,0.78l0.4,0.52l-0.05,2.41l0.47,0.67l1.3,0.58l0.57,0.68l0.21,0.95l-0.34,2.17l-1.41,2.37l-0.02,1.11l1.58,1.86l0.63,2.64l-0.65,1.45l-2.3,2.34l-0.36,1.17l-1.91,0.36l-2.11,-0.72l-3.44,0.0l-2.44,-0.84l-5.56,-0.15l-1.36,0.29l-1.79,1.06l-1.02,-0.37l-1.84,-1.89l-0.73,-0.15l-0.91,0.28l-0.52,0.62l-0.16,2.28l-0.72,0.98l-3.85,-0.24l-2.6,1.5l-1.18,-0.45l-0.12,-1.0l-0.46,-0.52l-0.8,-0.24l-1.55,0.21l-2.31,-0.53l-1.04,0.29l-3.98,3.58l-1.69,0.94l-2.46,-1.47l-0.93,-1.4l-0.84,-0.54l-0.84,-0.04l-0.83,0.37l-1.03,1.35l-3.36,0.5l-1.43,-0.08l-2.37,-1.16l0.93,-3.22l-0.72,-1.01l-1.32,-0.68l-1.11,-1.06l0.45,-2.58l-0.89,-1.68l-1.75,-1.2l-5.0,-0.37l-0.32,-1.41l-0.46,-0.57l-3.41,-1.35l-2.52,-2.46l-0.51,-2.09l-0.01,-1.46l0.61,-2.86l-0.92,-2.42l-1.03,-1.33l1.45,-0.81l1.27,1.52l0.45,0.12l2.62,-1.14l1.61,-3.8l1.81,-8.66l0.09,-1.84l1.3,-0.85l-0.12,-3.47l0.97,-1.2l1.52,-0.73l3.17,-0.77l1.22,0.08l2.76,1.19l1.01,0.08l2.31,-2.0l1.48,-2.38Z", "name": "Indre"}}, "height": 749.2159980728637, "projection": {"type": "mill", "centralMeridian": 0.0}, "width": 900.0}); \ No newline at end of file diff --git a/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-uk_regions-mill-en.js b/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-uk_regions-mill-en.js deleted file mode 100644 index 02ec5f40b..000000000 --- a/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-uk_regions-mill-en.js +++ /dev/null @@ -1 +0,0 @@ -jQuery.fn.vectorMap('addMap', 'uk_regions_mill',{"insets": [{"width": 900, "top": 0, "height": 1330.388845040797, "bbox": [{"y": -7779509.3092841245, "x": -960172.2795569702}, {"y": -6068573.133672094, "x": 197265.68588508634}], "left": 0}], "paths": {"UKF": {"path": "M649.5,1087.36l-1.67,1.84l-2.08,0.24l-1.75,1.06l-4.25,-0.22l-1.87,0.43l-0.49,-0.25l-1.95,-5.7l-0.72,-0.99l0.23,-3.62l-0.65,-0.66l2.11,-0.9l2.54,-0.29l0.81,-0.78l-0.01,-0.54l-7.11,-7.43l0.22,-0.75l1.11,-1.06l4.63,-1.62l0.44,-1.88l-1.63,-1.64l-0.02,-0.39l4.77,-2.46l0.22,-0.37l-0.07,-2.61l-1.16,-1.19l1.62,-1.9l0.0,-0.51l-0.71,-0.72l-2.75,-0.52l-0.35,-0.52l1.0,-0.65l4.46,-1.24l1.66,-1.57l-0.23,-1.42l-3.83,-6.6l-2.64,-1.33l-4.63,-6.26l-8.74,-3.79l-0.74,-1.53l-1.27,-1.19l-6.65,-2.43l-1.91,-2.03l-2.28,-0.76l0.21,-2.25l-1.23,-2.06l1.76,-1.07l0.14,-1.71l-3.92,-4.05l-0.61,-1.14l-1.25,-0.05l-0.59,-0.82l-0.61,-0.05l-1.09,1.07l-1.08,-0.11l-0.72,-2.54l-3.0,-0.92l-1.3,-1.07l2.15,-3.35l3.64,-1.58l1.4,-3.13l2.0,-1.43l0.1,-0.55l-1.52,-2.31l-2.23,-1.42l-7.74,-0.48l-1.14,-0.56l-1.92,-1.89l-2.71,-0.06l-1.16,-0.81l-1.76,-0.2l-0.29,-1.63l-1.12,-1.55l0.04,-1.8l1.31,-0.16l0.71,-0.77l0.5,-1.89l-0.07,-1.66l4.66,-2.53l1.1,-2.26l-0.17,-2.61l-1.49,-1.36l-0.4,-1.0l-0.58,-3.31l0.3,-2.52l-2.33,-3.22l0.05,-2.57l-0.54,-1.11l-1.86,-1.76l-2.81,-1.57l-6.5,-2.18l-1.68,-2.12l-0.45,-0.13l-1.45,0.52l0.39,-2.0l-1.73,-1.64l-0.4,-2.46l-0.22,-8.48l-0.35,-1.52l-1.4,-1.76l0.09,-0.45l1.04,-0.49l2.0,-2.85l-0.02,-0.49l-0.95,-1.07l-1.61,-0.63l-0.08,-0.55l0.27,-0.69l2.37,-2.12l0.4,-2.9l1.11,-2.77l2.44,-0.12l1.34,-0.63l0.95,-2.5l0.94,-1.26l2.01,0.09l4.57,1.84l1.64,2.09l0.21,2.15l0.54,1.21l4.77,3.26l-0.45,2.19l0.52,1.58l2.65,0.8l1.23,1.97l1.19,0.03l2.26,1.1l-0.62,1.93l0.54,1.1l4.92,1.64l0.7,0.67l-2.36,1.48l-0.41,0.82l0.14,0.52l2.49,0.74l1.49,-0.29l3.57,1.76l6.28,-2.03l2.37,-1.95l3.09,-0.18l0.64,0.29l0.39,1.83l2.0,0.81l2.5,0.13l1.06,-0.54l0.84,-1.23l1.84,-0.31l0.42,0.22l-0.33,1.33l0.37,0.5l1.69,0.09l1.55,0.87l5.97,-0.2l1.16,-1.72l2.64,-2.24l0.08,-0.51l-0.61,-1.02l1.64,-0.73l0.81,-1.43l-0.29,-2.69l2.48,-2.68l1.7,-1.12l3.01,-0.09l1.31,0.62l1.11,-0.48l2.44,-2.69l0.73,-3.4l3.99,-2.63l2.08,1.6l-1.42,0.72l-0.07,0.68l0.43,0.33l9.56,0.72l4.62,-4.15l0.7,-3.08l10.21,0.97l0.35,0.39l0.0,1.18l-0.97,3.01l0.67,1.05l1.06,0.55l3.24,0.22l5.33,-1.29l3.78,-1.5l0.15,-0.83l-0.46,-0.93l0.89,-1.7l4.97,-0.69l1.38,-1.22l-0.25,-1.23l-1.28,-0.87l-6.03,-0.33l4.69,-2.95l5.4,1.18l2.52,-0.36l3.18,-2.95l0.23,-2.73l3.87,1.97l2.45,2.73l3.19,0.28l0.02,0.32l-2.36,2.85l1.15,3.94l-0.53,2.72l0.16,0.41l2.14,1.49l0.7,1.07l1.27,0.56l0.51,1.16l2.02,1.67l1.52,-0.05l2.5,-1.77l0.04,-0.62l-1.45,-1.35l-0.12,-0.59l2.86,-5.47l0.97,-0.53l1.77,0.3l2.17,-0.45l1.71,-0.85l6.21,4.15l4.85,1.49l1.25,1.2l0.77,3.24l3.45,1.96l-0.36,0.44l0.1,0.59l1.45,0.9l1.28,1.55l0.93,1.79l0.39,1.62l7.06,15.88l1.2,4.36l0.03,4.92l-2.18,6.68l-2.49,0.56l-1.54,0.79l-7.76,6.43l-2.81,1.32l-6.89,8.3l-1.73,1.53l-1.96,0.66l-1.54,0.92l-1.18,1.63l0.07,1.7l0.37,0.36l2.63,0.16l4.49,-0.86l6.55,3.46l4.41,5.61l2.14,2.14l0.49,0.06l1.93,-0.94l-1.15,2.78l1.34,1.81l-0.11,0.35l-6.39,3.9l-4.24,-0.4l-4.62,2.02l-3.39,0.39l-0.78,0.93l0.37,3.39l-0.7,1.43l-1.19,0.87l-2.6,0.06l-4.64,-1.24l-2.63,0.94l-1.75,-0.18l-2.98,1.48l-1.81,-0.63l-1.94,0.24l-1.66,-1.64l-5.3,1.0l-4.79,-1.84l-7.46,3.08l-2.77,0.03l-2.64,-0.76l-2.33,0.8l-0.14,0.66l1.32,1.29l0.67,1.67l-0.66,4.69l0.18,0.39l1.39,0.77l3.6,-0.42l0.03,1.67l1.3,1.33l-0.71,2.76l0.21,0.46l4.95,2.46l1.0,3.71l-0.29,0.75l-3.64,4.02l-2.87,1.88l-0.88,1.57l-4.94,1.92l-0.25,0.35l-0.02,2.22l2.04,2.82l0.16,1.24l-3.69,0.74l-1.92,2.29l-0.09,2.82l-0.49,1.06l-0.56,0.32l-1.24,-0.21l-1.54,-1.7l-1.33,-0.41l-4.57,0.8l-0.54,1.13l0.65,1.78l0.16,2.39l-1.61,2.54l-6.26,3.48l-2.75,-0.09l-1.42,1.75l-2.78,-0.41l-0.6,0.74l-0.05,1.04l-0.92,0.99l-4.44,1.29l-0.29,0.4l0.05,1.16l1.12,0.72l1.3,1.93l1.91,1.46l0.01,0.46l-2.12,0.53l-0.32,0.38l-0.05,1.91l-2.69,2.19l-0.59,0.1l-3.26,-5.93l-1.3,-0.41l-3.46,1.23l-2.73,-0.19l-1.39,1.32l-5.07,1.1l-2.03,1.06l-2.07,2.07l0.16,0.66l1.9,0.65Z", "name": "East Midlands"}, "WLS": {"path": "M288.04,1103.73l0.2,-1.18l-0.4,-0.85l1.0,-0.81l-0.04,-0.88l-0.55,-1.21l0.48,-0.41l2.99,-0.19l1.71,-0.53l2.7,-2.27l1.02,-0.45l2.67,-0.34l3.65,-1.16l2.89,-2.27l0.23,-2.63l0.87,0.0l0.4,-0.4l-0.17,-1.04l-0.83,-0.6l0.06,-0.36l0.73,-0.46l3.57,-0.11l5.67,2.31l1.79,-0.02l2.5,-0.85l0.25,-0.52l-0.35,-0.95l4.3,1.24l2.15,0.2l0.98,-0.87l-0.5,-3.22l3.21,-0.68l1.83,-1.03l3.47,-4.24l1.45,-1.32l0.92,-0.01l2.76,1.8l0.62,-0.36l-0.18,-3.14l2.96,-1.2l10.63,0.32l1.13,-0.33l1.66,-2.11l2.44,-0.63l1.82,-1.0l4.31,-3.87l1.14,-0.63l4.89,-0.86l10.35,-7.38l5.03,-5.92l2.59,-4.13l1.21,-2.78l1.48,-7.52l1.91,-3.98l-0.59,-2.7l0.51,-1.99l3.35,0.89l1.6,-0.51l4.45,-2.72l0.19,-1.21l-0.4,-0.4l-2.46,0.04l-4.42,1.3l-2.18,0.32l-1.16,-0.78l-3.89,-4.42l-0.9,-1.64l0.26,-2.7l1.36,-2.79l1.75,-2.15l1.87,-1.25l0.63,-2.04l1.16,-0.41l3.54,-2.27l1.19,-1.25l0.07,-0.45l-0.4,-0.22l-2.29,0.23l-1.61,1.0l-1.17,0.22l-6.42,-6.44l-1.97,-3.73l0.15,-0.6l1.43,-0.42l1.14,-1.19l-0.24,-1.91l-1.05,-2.53l0.16,-2.14l5.54,-3.38l-0.07,-0.72l-0.96,-0.7l-0.62,-0.09l-1.77,1.34l-0.54,-0.11l-0.6,-1.12l-0.56,-0.15l-2.15,1.34l-2.22,0.14l-5.04,-0.65l-6.25,1.59l-3.16,1.57l-6.07,-0.02l-1.86,0.81l-1.64,1.18l-3.12,2.97l0.3,0.89l-1.2,0.67l-0.89,1.54l-0.03,1.51l0.9,1.22l-1.86,1.24l-0.82,-0.09l-1.28,-1.2l-1.8,-0.52l-1.73,-1.12l-1.17,-0.26l-1.2,0.28l-1.63,1.34l-1.8,0.39l-4.78,-0.41l-1.5,0.7l-1.24,1.18l-0.98,0.38l-0.74,-0.39l0.67,-0.89l-0.17,-1.23l1.61,-2.29l11.94,-11.39l1.18,-0.54l3.24,-0.53l1.81,-0.79l6.98,-4.45l1.77,-2.43l5.59,-2.99l0.89,-1.71l0.4,-2.21l0.39,-6.11l0.46,-0.15l0.57,1.42l0.68,0.08l0.78,-1.01l0.76,-1.84l3.35,-3.31l2.57,-1.17l1.19,-1.36l1.77,-3.01l1.88,-1.87l2.19,-1.18l2.46,-0.61l2.63,-0.19l2.3,0.66l2.92,-1.33l2.14,-0.49l2.93,-2.01l9.35,-3.18l2.88,0.0l0.37,-0.55l-0.88,-2.16l-2.59,-2.24l-0.33,-0.7l2.48,0.48l1.42,0.69l1.07,1.07l0.44,0.08l1.57,-0.69l1.66,0.45l1.69,1.26l1.38,1.72l1.48,0.8l10.07,-0.19l3.59,-0.68l16.41,-6.62l3.46,-0.1l3.17,1.28l1.72,1.11l1.87,2.18l11.09,5.89l2.96,3.22l0.6,-0.1l0.28,-0.46l0.06,-1.96l5.03,1.16l5.49,3.62l3.16,2.99l0.43,1.87l-3.34,1.89l-0.53,0.85l0.11,0.74l5.13,4.88l2.25,4.16l1.39,5.13l2.56,2.73l0.73,1.31l1.24,0.6l3.18,0.39l3.35,1.66l0.91,2.64l-0.1,2.16l-4.99,2.22l-1.12,-0.33l-5.15,-4.16l-2.23,-0.28l-4.15,0.92l-0.81,-0.21l-2.25,-1.91l-2.76,-0.15l-7.78,4.2l-1.78,2.44l-2.36,1.52l-0.2,0.86l0.58,2.7l-1.88,1.76l-0.77,1.32l0.02,1.43l1.15,2.83l1.01,0.86l1.48,0.57l3.01,0.3l0.79,1.13l0.96,0.69l4.53,0.86l1.85,2.0l1.84,0.92l-0.97,1.35l-2.63,0.44l-0.93,0.63l-1.32,2.63l-0.13,2.73l-0.49,1.48l-2.38,1.45l-0.81,3.26l-0.64,0.88l-3.0,1.66l-0.72,0.75l-0.16,1.98l1.35,2.54l-0.59,1.8l0.77,0.61l2.24,-0.27l1.46,-1.73l2.68,-1.3l1.99,-1.51l0.57,0.06l2.04,1.94l0.33,0.7l-1.01,1.31l-2.23,1.67l-1.26,1.83l-6.67,0.36l-3.19,1.63l-4.03,1.33l-1.03,0.84l-1.06,1.46l-0.24,1.66l0.57,2.08l0.91,1.15l8.33,5.21l2.87,2.5l9.74,0.68l-0.04,0.93l-2.85,2.05l-0.86,1.9l0.3,1.59l0.75,0.98l2.31,0.62l0.36,0.34l-0.72,0.49l-3.8,0.36l-1.63,1.56l-1.87,1.05l-1.47,2.84l-3.6,4.38l0.02,1.2l0.79,0.92l1.91,0.3l-0.73,1.0l-2.27,0.65l-1.15,0.88l0.12,0.93l1.71,1.27l-0.87,1.04l-0.87,3.5l0.37,0.58l2.78,2.09l0.35,0.8l0.25,3.1l2.6,4.07l2.02,2.35l2.62,2.01l0.43,1.52l0.88,1.11l1.91,1.4l0.95,0.36l1.68,-0.09l3.51,-1.93l1.53,-0.34l8.33,6.15l3.17,3.84l1.04,0.48l2.28,-0.01l2.09,1.5l1.62,0.87l0.49,-0.05l-2.08,3.04l-0.53,1.92l0.07,0.99l0.86,1.72l-1.21,3.16l1.96,5.51l-1.46,0.66l-0.48,0.7l0.95,1.77l0.62,3.23l-2.27,2.24l-1.58,1.04l-4.15,0.82l-4.8,2.77l-3.57,1.06l-7.21,0.41l-0.94,-0.31l-1.13,-1.6l-0.91,-0.38l-0.89,0.57l-2.73,3.07l-7.72,3.93l-2.39,2.06l-1.12,2.26l-2.32,0.76l-0.14,0.5l1.04,2.32l-0.55,2.21l-1.28,1.24l-2.97,-0.53l-6.03,2.11l-21.47,-1.63l-1.44,-0.69l-4.11,-4.67l-5.06,-3.51l-1.39,-0.16l-1.62,0.6l-1.74,-0.73l-1.63,-1.35l-0.82,-1.05l0.55,-0.79l-1.49,-4.46l-1.01,-1.98l-1.11,-1.61l-2.96,-2.23l-1.34,-2.16l-1.02,-0.87l-1.28,-0.28l-9.31,0.95l-1.38,0.48l-2.0,1.4l-0.22,1.34l1.87,2.85l-2.88,0.0l-0.67,0.9l-0.48,-0.86l-1.98,-0.76l-1.6,1.54l-1.35,-0.69l-3.03,-0.48l-1.18,0.43l-2.78,2.25l-2.54,-0.76l-0.42,0.29l-0.25,0.91l-5.79,-1.81l-1.43,-0.1l-0.41,-1.0l1.41,-0.88l0.18,-0.41l-0.26,-1.34l-0.72,-1.38l-0.01,-1.38l2.66,-0.71l1.32,-1.7l0.19,0.8l1.5,0.9l2.64,-0.73l4.38,-0.23l4.19,-0.88l2.07,-2.75l0.04,-1.84l-0.64,-0.54l-0.46,0.08l-1.58,1.36l-0.86,0.09l-3.31,-0.31l-4.63,-2.14l-1.54,0.69l-6.65,0.83l-1.73,-0.56l-2.27,-1.49l-2.01,-1.96l-0.73,-1.4l2.82,0.32l1.65,-0.17l1.09,-1.17l-0.33,-0.65l-3.01,-0.22l-1.19,-0.73l-0.59,-1.02l1.06,-2.04l0.01,-1.19l-0.67,-1.03l-0.54,-0.1l-0.55,0.36l-0.77,1.31l-1.46,1.42l-0.67,-0.14l-1.71,-1.42l-1.67,0.23l-0.59,1.41l1.57,1.88l-2.32,1.04l-3.19,0.1l-6.57,-0.73l-2.58,0.23l-3.75,0.87l-2.84,1.7l-0.35,2.85l-0.89,0.39l-0.29,1.47l-1.42,2.92l-1.95,-0.92l-2.04,1.59l-7.57,-0.15l-1.4,0.26l-1.56,0.9l-2.16,2.64l-1.55,0.57l-0.84,1.15l-0.53,0.2l-1.22,-0.69l-5.59,-1.51l-1.69,-1.01l0.58,-1.28l-1.26,-2.25l-4.43,-1.07l-1.34,-1.27l0.22,-0.31l6.41,0.76l0.41,-0.57l-0.36,-1.09l4.27,0.79l1.27,-0.27l2.86,-1.38l4.13,-0.71l2.19,-1.22l0.69,-0.14l1.03,0.47l0.57,-0.36l0.0,-0.72l-2.5,-2.26l-0.44,-2.51l1.26,-2.07l3.14,-0.65l0.32,-0.39l0.0,-0.86l-0.6,-0.35l-3.4,1.39l-4.83,0.37l-1.22,0.59l-0.21,0.45l0.39,0.31l1.33,-0.0l0.81,0.37l0.3,0.77l-0.46,1.58l1.16,1.19l-0.22,0.92l-1.11,0.99l-6.58,1.28l-1.82,0.05l-12.2,-1.33l-1.53,0.49l-0.24,0.55l0.74,1.62l-0.69,0.68l-0.61,-0.02l-0.06,-1.92l-3.93,-2.51l2.0,-0.79l2.22,-2.14l4.37,-1.02l1.48,-1.23l0.41,-1.47l-0.94,-6.55l-0.73,-1.43l-1.3,-1.06l-0.56,0.08l-0.36,0.48l-1.42,-0.95l-3.33,-0.39l-1.47,-0.83l-1.57,0.73l-4.98,0.8ZM357.65,950.36l0.07,-1.63l-0.41,-1.81l-1.83,-1.51l-2.84,-4.54l-1.49,-1.54l0.5,-1.87l0.57,-8.28l-0.19,-1.79l-0.76,-1.56l1.16,-0.7l10.99,-3.05l8.56,0.85l3.91,2.02l0.98,3.88l2.65,1.32l0.04,2.04l1.69,1.83l0.64,2.33l0.63,0.83l1.22,0.23l4.17,-0.73l0.8,-0.44l0.99,-1.21l1.88,0.83l2.63,-0.06l1.63,0.54l-1.45,1.32l-2.94,4.51l-1.92,0.89l-2.18,0.35l-2.19,0.9l-2.1,1.34l-2.12,2.06l-0.32,2.42l-0.47,-0.01l-3.05,1.79l-1.39,1.42l-5.42,2.64l-1.73,0.06l-2.19,-0.8l-1.56,0.8l0.24,-2.65l1.65,-1.59l0.53,-1.22l-0.18,-0.5l-0.92,-0.5l-1.65,0.51l-1.99,2.29l-0.77,0.25l-2.99,-2.22l-1.06,-0.04ZM343.24,934.63l2.61,-0.08l2.89,2.57l0.77,1.33l0.35,1.64l1.54,2.1l-0.33,0.94l-1.08,-0.06l-1.67,-1.22l-2.63,-3.52l-1.07,-0.28l-2.77,-0.01l-1.36,-1.89l0.0,-0.47l1.95,-1.42l0.79,0.38ZM339.3,1130.11l1.01,0.16l0.66,0.37l-0.47,0.17l-1.2,-0.69ZM331.29,1000.49l0.4,-1.05l0.49,0.09l-0.31,0.81l-0.58,0.14ZM287.81,1119.5l-0.97,-0.64l1.3,-0.35l1.05,0.57l-1.38,0.42ZM284.09,1104.91l-0.44,-0.28l0.14,-1.53l0.34,-0.24l0.31,0.07l-0.35,1.98Z", "name": "Wales"}, "NIR": {"path": "M39.51,798.88l1.4,-0.62l4.56,-1.09l2.28,-1.08l1.05,-0.8l3.25,-4.34l1.66,-1.49l6.37,1.21l3.6,0.1l3.44,-1.11l8.56,-6.56l3.51,-0.94l0.29,-0.42l-0.23,-2.41l-0.32,-0.35l-1.21,-0.15l-2.61,1.28l-1.15,-0.36l-3.98,-2.57l-2.73,0.93l-1.52,-2.07l-3.56,-1.41l-0.56,-0.98l0.6,-1.63l-0.21,-0.5l-1.27,-0.74l3.59,-1.44l2.95,-2.36l0.92,0.04l2.45,1.71l3.04,1.25l3.08,-0.21l2.97,-1.37l3.06,-2.41l1.38,-0.65l2.84,0.63l2.65,-0.61l1.65,0.7l2.19,-0.38l0.27,-0.62l-0.75,-1.37l0.16,-2.86l0.5,-1.48l6.22,-6.2l1.42,-2.2l0.96,-2.79l-0.36,-4.29l0.28,-1.25l0.57,-0.59l1.63,-0.54l0.93,-1.11l0.18,-1.31l-0.47,-2.96l0.23,-0.57l0.66,-0.37l-0.18,-1.27l3.11,-3.61l0.93,-0.58l5.44,-0.67l2.3,-2.28l0.81,-0.24l-0.56,1.49l0.36,0.54l1.47,0.04l3.88,-0.92l1.43,0.12l3.82,1.58l2.98,0.35l3.07,-0.35l1.22,-0.71l3.27,-2.99l-0.05,-1.48l0.65,-2.1l0.98,-1.88l2.07,-2.24l0.54,-5.41l0.43,-1.39l0.99,-0.06l3.63,1.96l1.92,0.59l11.2,-0.44l9.95,-3.69l6.12,-0.41l1.45,-0.88l2.99,-2.66l1.78,-0.74l1.75,-0.17l3.01,1.48l2.17,0.53l3.43,-1.7l2.0,0.4l8.36,3.81l1.47,0.34l2.06,-0.24l4.94,-1.38l3.29,0.48l1.58,0.6l4.59,4.02l0.77,1.13l-0.3,6.56l-1.8,4.85l0.97,1.27l4.36,0.23l2.2,1.11l0.54,0.92l-0.16,1.99l-1.55,4.42l0.16,1.05l0.34,0.31l2.47,0.33l2.23,0.93l1.98,1.5l1.69,1.99l1.47,3.64l2.66,2.17l1.51,2.06l1.94,6.7l4.7,1.93l1.98,2.41l0.84,0.15l0.34,-0.61l-1.57,-2.58l-5.34,-4.59l1.03,-1.54l2.26,0.5l2.58,1.83l1.53,1.85l1.01,3.64l-0.23,3.21l-1.17,2.52l-1.83,1.64l-2.47,0.99l-5.13,1.23l-2.4,1.03l-2.34,1.71l-1.72,1.85l-3.2,4.76l0.14,0.58l0.91,0.49l0.63,2.57l0.34,0.26l1.39,-0.01l4.78,-5.33l2.98,-1.16l3.0,-1.81l1.71,-0.63l2.67,1.24l1.9,0.14l10.31,-1.35l1.5,2.02l1.61,0.61l0.48,2.73l1.4,4.28l1.03,1.72l1.52,0.8l0.48,0.81l0.89,6.33l3.14,3.78l-0.46,1.04l0.33,1.58l-2.02,2.69l-0.6,1.57l0.56,2.14l-0.29,1.77l-1.83,1.58l-0.58,1.12l0.93,1.35l-0.94,0.5l-0.98,1.52l-0.83,0.13l-0.82,-0.69l-1.63,-3.92l-1.16,-0.62l-1.38,-2.18l-0.14,-1.15l0.52,-1.24l1.94,-2.0l0.53,-1.98l-0.31,-3.86l-1.0,-2.93l-1.58,-2.12l-6.03,-4.64l-2.41,-1.13l-2.76,-0.14l-0.42,0.4l0.0,0.83l0.61,1.22l-0.19,0.95l-1.58,2.04l1.49,0.31l2.46,1.52l3.32,0.34l-2.48,0.47l-0.77,0.65l0.11,0.65l2.31,1.04l-0.32,2.61l0.57,1.2l1.01,0.41l-0.54,1.15l0.54,1.02l-2.94,6.98l-3.08,2.02l-1.05,1.35l-0.01,0.47l0.44,0.15l3.51,-1.06l4.02,-1.91l3.43,-0.79l2.27,1.96l0.81,4.31l-1.02,3.26l-2.22,2.63l-2.77,2.32l-1.7,-0.02l-0.83,2.57l-1.05,0.48l-0.31,-0.07l-0.34,-0.92l-1.28,-0.96l-5.03,-0.35l-3.83,0.32l-7.16,1.91l-0.8,1.83l0.19,4.5l-0.23,2.23l-1.25,4.74l-0.87,1.83l-1.47,1.49l-3.55,1.47l-2.76,2.35l-3.62,2.23l-1.06,0.41l-3.28,0.22l-1.25,-0.19l-1.25,-0.74l0.0,-0.24l2.09,-0.69l0.33,-0.37l-0.28,-0.41l-7.59,-2.06l-1.15,-2.19l-6.73,-1.43l-0.77,0.63l-1.21,-0.71l-3.56,0.85l-1.45,-1.26l-0.97,-0.24l-1.6,1.93l0.09,2.64l-0.67,1.08l-4.62,0.93l-1.59,-1.56l-2.39,0.09l-7.43,2.22l-1.84,-0.49l-0.88,0.09l-1.8,1.75l-0.99,-0.44l-3.35,-2.97l1.23,-2.62l0.11,-1.35l-0.81,-1.35l1.72,-1.8l0.9,-2.31l-0.6,-2.56l-2.01,-1.92l-2.8,-1.72l-1.37,-0.11l-1.06,0.55l-1.18,1.23l-0.79,-0.06l-3.59,-2.16l-3.03,-3.39l-1.27,-3.45l-0.89,-0.78l-2.21,-0.92l0.84,-0.45l0.75,-1.44l-0.19,-1.86l-1.94,-4.22l-0.78,-0.58l-1.44,-0.3l-0.73,-1.87l-0.75,-0.99l-5.37,-3.63l-3.18,-1.27l-2.94,0.28l-2.6,2.07l-4.16,5.31l-2.69,1.65l-2.05,-0.21l-1.04,0.57l-0.12,0.77l0.69,1.54l-0.88,1.07l-1.02,-0.03l-0.31,0.46l0.21,1.28l2.81,1.33l-0.41,1.3l0.16,0.45l2.71,1.85l-0.99,1.4l0.47,1.65l-1.52,0.8l-4.69,1.0l-1.94,1.37l-1.09,2.05l0.07,0.42l1.18,1.14l-1.4,0.57l-0.23,0.49l0.36,1.09l-0.2,1.04l-1.27,1.57l-0.87,0.27l0.43,-4.16l-0.4,-0.69l-0.45,-0.08l-2.64,1.26l-0.85,0.98l0.06,1.0l1.65,2.79l-0.74,0.07l-4.13,-1.14l-1.46,0.21l-0.77,-1.43l-1.41,-0.31l0.44,-0.47l-0.27,-0.67l-2.41,-0.08l-3.49,2.25l-1.71,0.28l-9.1,-1.73l-0.82,-0.49l-0.37,-1.84l-0.79,-1.04l-6.24,-3.79l-1.77,-0.29l-5.12,0.28l-4.65,-0.51l-1.52,-0.76l-1.03,-1.66l-0.34,-5.17l-0.76,-2.22l-1.43,-0.84l-4.68,-0.83l-1.39,-1.26l-1.09,-1.65l-1.82,-3.72l-2.8,-0.24l-2.05,-0.88l-1.96,-1.65l-3.66,-4.16l-2.08,-1.87l-0.75,-0.89l-0.43,-1.82l-0.7,-0.63ZM210.68,701.07l0.37,-0.9l-0.12,-0.53l-2.0,-1.37l-5.47,-0.16l1.05,-0.62l2.01,-0.43l5.02,0.79l0.16,0.97l-1.01,2.25Z", "name": "Northern Ireland"}, "UKK": {"path": "M253.14,1305.23l-0.55,-2.93l1.99,-3.06l0.57,-0.33l2.56,-0.81l5.49,-2.68l3.01,-0.89l3.24,-1.76l1.65,-0.03l2.57,2.07l2.18,0.77l1.92,-1.04l1.28,-1.73l1.14,-2.39l3.1,-0.04l3.21,-1.51l9.99,-8.79l3.1,-1.82l1.13,-0.32l0.54,-0.79l0.11,-1.48l-0.63,-3.53l0.63,-0.37l2.01,-0.06l6.24,-2.97l1.01,-2.22l1.16,-8.62l0.76,-1.42l1.55,-1.03l1.86,-0.06l2.05,-1.52l0.64,1.59l0.3,2.79l0.58,0.33l1.04,-0.7l1.46,0.71l3.52,0.15l1.33,0.56l0.46,-0.11l0.03,-0.47l-1.11,-1.66l-4.32,-1.65l-1.15,-1.25l0.53,-2.02l-0.43,-1.28l1.78,0.3l6.45,-0.37l2.77,-0.83l1.37,-1.67l1.04,-2.11l1.35,-1.84l-0.44,-1.95l0.24,-0.95l0.59,-0.37l1.36,0.19l6.14,-4.42l1.16,-1.61l0.64,-1.92l1.53,-1.46l3.71,-2.39l2.41,-4.19l-0.41,-10.03l0.94,-4.62l1.82,-3.83l-0.64,-2.72l-0.07,-1.45l0.25,-0.42l7.43,0.0l3.54,1.62l5.24,0.46l1.77,-0.46l1.47,-0.88l5.85,-5.47l1.38,-1.93l0.84,-0.41l0.18,-0.54l-2.06,-5.74l-1.7,-2.24l2.14,0.15l0.8,-0.22l0.8,-1.45l-0.16,-1.59l-1.55,-1.74l6.28,-2.09l15.79,-1.23l4.87,-1.26l6.3,-0.01l2.0,-0.34l2.69,-1.2l1.43,-0.1l11.15,2.43l7.02,-0.19l10.7,2.07l2.51,1.97l1.94,0.75l9.9,-0.36l6.28,-1.63l3.07,-0.36l5.68,0.25l3.46,-0.42l2.3,-1.29l0.23,0.28l-1.01,1.39l0.1,0.57l1.19,0.78l0.56,-0.12l1.51,-2.45l0.47,-2.4l-0.74,-2.54l0.04,-4.3l-0.26,-2.18l-0.41,-0.65l0.86,0.15l1.11,-0.54l0.41,-2.88l1.85,-2.04l0.55,-1.07l-0.09,-0.48l-0.96,-0.84l1.39,-1.22l2.9,0.35l3.23,-2.63l5.84,-6.48l1.48,-0.99l1.47,-0.71l3.74,-0.58l1.97,-0.71l1.82,-1.58l7.61,-10.85l2.31,-1.26l1.13,-3.18l1.03,-1.56l4.92,-4.3l2.94,-3.34l5.07,-1.7l1.66,-1.27l0.67,-1.32l-0.19,-1.56l-1.42,-1.27l-0.64,0.24l-0.35,1.99l-1.37,1.06l-5.45,1.27l-3.43,4.17l-5.17,2.86l-6.76,6.96l-0.53,-2.89l-0.88,-1.39l1.29,-0.48l0.63,-0.81l-1.96,-5.74l1.19,-2.51l-0.02,-0.86l-0.85,-1.68l0.38,-2.23l1.89,-2.49l1.4,-5.03l0.82,1.59l0.56,0.19l1.77,-0.96l0.95,0.2l0.44,-0.2l0.52,-0.98l2.19,-0.76l2.58,0.31l0.41,-0.22l1.11,-2.24l3.0,-0.34l3.29,-1.82l0.33,-1.02l-0.26,-1.38l-1.84,-1.81l-0.63,-2.19l-1.62,-1.05l0.18,-1.61l0.92,-1.26l-0.31,-1.45l0.79,-2.08l1.16,0.51l1.18,2.25l1.42,0.58l2.14,-0.69l2.02,-1.94l2.0,-0.27l1.78,2.38l1.23,2.37l5.0,1.27l1.8,-0.32l2.12,-2.9l2.65,0.32l1.55,-0.89l0.07,-0.62l-1.28,-1.29l0.45,-2.79l0.35,-0.53l3.37,-0.15l-2.08,3.52l0.05,0.47l1.15,1.28l0.53,0.06l1.99,-1.38l2.78,0.0l3.79,0.85l5.13,-2.99l2.34,-0.45l1.97,0.37l1.37,-0.49l1.98,0.35l2.97,2.29l1.27,0.05l0.93,-1.56l-0.18,-1.95l-1.89,-2.39l-1.21,-0.61l1.47,-1.0l2.74,0.32l3.02,-3.41l1.44,-0.65l1.61,1.69l1.81,0.57l0.78,2.18l2.99,4.11l1.67,0.5l3.28,-0.23l-1.65,2.56l-1.63,1.61l-0.43,3.45l0.22,0.41l3.22,1.6l0.4,0.47l-0.01,0.57l-2.76,2.39l-0.11,0.45l0.63,1.57l-1.63,1.22l-1.6,3.37l-0.28,6.56l-2.49,2.46l-0.0,0.57l1.37,1.37l1.04,3.46l0.33,3.04l2.56,2.3l0.17,0.48l-0.19,0.3l-2.68,-0.51l-0.46,0.29l-0.29,1.1l0.37,2.55l2.37,1.99l-0.39,2.03l-1.6,1.56l0.22,3.11l1.01,0.91l1.66,-0.05l3.68,5.38l1.58,0.44l0.71,3.18l2.24,3.16l1.92,1.19l0.51,2.35l-2.63,0.68l-0.87,0.93l-0.04,0.49l2.6,3.99l3.01,1.36l0.17,1.32l0.86,1.09l-0.06,0.82l-3.1,0.29l-0.36,0.47l0.55,2.99l-1.59,2.97l0.87,2.73l-0.53,0.5l-3.63,-1.38l-1.76,0.6l-1.4,1.64l-0.96,0.42l-4.43,-0.66l-1.54,0.4l-0.28,0.49l1.02,3.72l2.58,3.83l0.59,2.3l-0.42,2.62l0.21,0.42l1.97,1.0l0.45,0.77l-0.77,2.6l0.95,3.6l-0.14,2.22l1.76,1.21l0.32,0.63l-1.39,1.19l-0.61,1.36l0.07,0.43l1.69,1.83l-0.74,1.56l-3.55,1.0l-1.17,-0.43l-2.54,-2.37l-3.62,-0.34l-2.29,-0.99l-3.72,-0.68l-2.59,-1.89l-1.08,0.39l-0.77,1.21l-0.22,-1.0l-0.6,-0.23l-4.98,0.72l-2.2,1.34l-0.11,0.57l3.71,5.08l2.43,2.24l1.96,0.28l2.09,-1.17l2.22,0.38l-0.44,2.17l-2.27,1.53l-0.17,0.41l0.55,2.92l0.43,0.32l1.99,-0.18l0.73,3.61l-0.89,1.46l-0.21,2.12l0.84,2.25l1.2,1.66l0.42,0.15l4.26,-1.01l-0.22,2.21l0.4,0.44l4.65,0.0l0.17,0.84l-3.26,0.5l-3.36,1.48l-1.46,0.29l-5.42,-0.85l-2.1,0.09l-3.48,1.26l-3.4,2.67l-0.33,-1.54l-0.55,-0.84l-3.33,-0.77l-2.82,0.03l-1.03,-1.9l-0.92,-0.32l-0.87,0.67l-3.0,4.09l0.37,0.63l1.13,-0.13l2.79,-1.34l1.63,2.45l1.08,0.94l4.33,0.6l0.4,0.58l-0.55,1.75l0.19,0.47l1.24,0.67l-2.58,2.66l0.04,1.71l-1.25,0.5l-6.94,0.12l-1.39,-0.25l-6.58,-2.59l-15.97,-1.5l-2.91,-1.53l-2.08,0.18l-3.5,1.04l-1.09,1.21l-1.08,2.43l-0.44,2.83l1.01,1.25l1.93,0.53l0.16,1.06l-1.86,3.0l-0.06,-3.84l-2.19,-3.16l-18.14,-11.67l-14.98,-4.72l-2.14,-0.08l-6.53,1.26l-3.12,1.72l-1.9,0.18l-3.41,-0.76l-1.13,0.32l-4.51,2.85l-3.55,-0.85l-8.11,2.09l-1.22,1.27l-2.03,3.0l-6.11,2.26l-3.16,-0.44l-1.05,-0.84l-2.18,-4.4l-1.11,-1.11l-0.68,-0.2l-0.77,0.56l-0.01,1.22l1.13,1.18l1.75,5.1l-2.74,2.65l-1.29,1.99l-1.18,2.42l-0.96,3.11l0.08,2.47l1.36,4.26l-3.54,0.56l-1.5,0.94l-0.76,1.84l0.83,2.38l1.67,0.64l3.44,-0.14l0.0,0.27l-0.88,2.12l-1.28,0.42l-0.59,0.7l-0.63,2.83l-0.74,0.43l-1.12,-0.3l-1.33,-0.95l-0.62,0.23l-0.58,2.36l-1.64,0.83l-1.9,0.43l-1.12,1.22l-1.43,4.47l-0.5,2.67l0.59,2.68l-0.96,0.42l-4.82,0.95l-4.85,-1.19l-1.34,1.07l-2.94,-2.25l-5.04,-5.26l-5.69,-4.37l-1.06,-0.43l-1.11,0.18l-3.08,1.31l-2.22,1.57l-1.61,-0.55l-1.08,-0.79l0.41,-1.23l-0.29,-0.51l-1.84,-0.44l-1.78,-1.09l-0.75,-1.44l1.09,-1.95l-0.37,-0.59l-3.97,0.02l-0.97,-0.57l-1.5,-2.67l-0.6,-1.7l0.58,-1.41l2.11,-3.15l-0.05,-0.46l-0.45,-0.1l-1.63,0.68l-0.67,-0.05l-0.86,-0.59l-0.61,0.22l-0.89,1.83l-1.67,0.29l-0.41,0.4l0.2,1.05l1.12,0.63l0.27,0.89l-0.26,1.01l-0.62,0.71l-0.94,0.26l-4.13,-0.3l-0.34,0.65l1.82,1.9l4.78,-0.65l1.02,0.65l-2.08,0.49l-0.31,1.17l0.49,0.39l1.58,-0.06l-0.21,0.27l0.32,0.64l2.02,0.0l-0.87,0.33l-0.69,0.83l-0.1,0.78l0.46,1.12l-1.22,-0.07l-1.61,-2.79l-1.67,-0.95l-7.61,-1.66l-4.13,0.41l-6.25,3.31l-3.31,1.08l-14.19,0.7l-0.88,0.78l-1.09,-2.85l-0.94,-0.34l-1.61,0.86l-3.55,0.64l-1.14,1.03l0.56,2.39l-2.08,2.03l-0.33,0.95l0.59,1.77l-1.14,2.63l-0.64,0.58l-4.29,-0.52l-1.65,0.58l-1.71,1.69l-1.42,0.7l-3.8,1.1l-1.23,1.08l-3.3,4.79l-0.65,-0.88l-0.65,-4.17l-1.44,-0.91l-1.71,0.41l-0.31,0.37l0.08,2.19l-1.08,1.37l0.19,1.04l1.07,0.89l-2.44,1.34l-0.52,2.65l-3.37,1.43l-0.25,0.45l0.41,0.32l1.57,0.12l1.32,0.65l1.58,-0.06l0.41,1.75l0.68,1.16l-1.02,1.89l-2.36,3.0l-3.42,-0.03l-0.83,0.55l-2.57,2.56l-1.23,3.05l-1.21,-0.68l-2.93,-2.88l-0.62,-2.03l-0.02,-1.88l-3.12,-4.56l-1.42,-1.47l-1.84,-1.14l-5.22,-2.09l-3.53,-0.55l-4.33,-2.0l-2.05,0.09l-2.27,0.67l-1.94,1.55l0.04,1.65l0.47,1.8l-0.81,1.3l-2.68,1.51l-3.49,0.95l-4.03,0.37l-2.98,-0.97l-0.73,-2.78l1.08,-0.28l0.64,-0.84l-0.03,-0.87l-0.68,-1.0ZM341.93,1181.84l0.37,1.41l-0.13,1.34l-0.34,-0.39l0.11,-2.36ZM200.95,1320.93l0.19,-0.15l0.81,0.75l0.93,0.11l-0.81,0.05l-1.12,-0.76ZM201.75,1326.67l-0.53,0.31l-0.58,-0.26l0.11,-1.15l0.44,-0.53l0.75,0.97l-0.19,0.66ZM198.29,1322.87l-0.26,0.42l-0.3,-0.14l-0.53,-1.45l1.0,0.64l0.08,0.53ZM197.0,1329.93l-0.37,-0.33l0.01,-0.16l0.24,0.08l0.12,0.41ZM195.87,1322.99l-0.14,-0.32l0.14,-0.57l0.13,0.69l-0.13,0.2Z", "name": "South West"}, "UKJ": {"path": "M584.61,1203.26l-0.2,0.55l0.31,0.53l1.34,-0.02l0.83,-1.3l0.49,-0.13l2.34,1.83l3.78,0.69l2.34,1.0l3.54,0.34l2.26,2.22l1.51,0.6l4.1,-1.07l1.19,-2.18l-0.07,-0.44l-1.7,-1.84l0.37,-0.88l1.56,-1.34l0.09,-0.49l-0.69,-1.19l-1.44,-0.77l0.12,-2.16l-0.93,-3.55l0.75,-2.76l-0.76,-1.18l-1.81,-0.92l0.38,-2.58l-0.63,-2.45l-2.64,-3.96l-0.84,-3.15l0.91,-0.26l4.68,0.63l1.31,-0.63l1.2,-1.5l1.51,-0.52l3.44,1.41l0.43,-0.08l1.01,-1.29l-0.92,-2.48l1.57,-2.93l-0.46,-2.96l3.0,-0.28l0.36,-0.37l0.1,-1.31l-0.97,-1.39l-0.33,-1.56l-2.94,-1.26l-2.36,-3.63l0.57,-0.61l2.6,-0.61l0.31,-0.36l0.05,-1.11l-0.63,-1.98l-2.03,-1.33l-2.14,-3.03l-0.69,-3.2l-1.73,-0.6l-3.71,-5.43l-2.06,-0.12l-0.36,-0.33l-0.19,-2.74l1.54,-1.41l0.46,-2.4l-2.56,-2.42l-0.21,-1.91l0.18,-0.66l2.58,0.49l0.41,-0.18l0.48,-1.03l-0.38,-0.94l-2.38,-2.01l-0.34,-2.99l-1.08,-3.59l-1.26,-1.32l2.43,-2.55l0.29,-6.63l1.48,-3.04l1.67,-1.2l0.14,-0.47l-0.64,-1.6l2.81,-2.61l0.02,-0.9l-0.65,-0.92l-3.16,-1.61l0.25,-1.89l3.95,3.0l1.24,-0.33l0.52,-1.1l2.92,-0.21l0.36,-0.32l0.31,-1.54l2.11,-0.37l0.99,-1.34l1.25,-5.01l0.06,-2.28l1.65,-1.73l0.43,-1.29l2.5,-0.3l0.53,-0.61l-0.08,-1.32l0.58,-0.09l1.45,0.11l2.34,1.77l2.2,-0.31l0.85,-1.26l-0.1,-0.5l-1.54,-1.27l2.34,-1.57l0.8,-2.18l0.72,-0.73l6.74,7.04l-0.21,0.25l-2.55,0.31l-2.86,1.22l-0.06,0.7l0.91,0.58l-0.22,3.53l0.79,1.21l1.98,5.79l1.24,0.65l1.85,-0.44l4.32,0.22l2.0,-1.13l1.98,-0.19l2.98,-2.66l-0.27,-0.37l-2.3,-0.78l1.49,-1.5l1.82,-0.97l5.15,-1.12l1.24,-1.27l2.78,0.16l3.42,-1.22l0.53,0.15l3.31,6.03l1.4,0.03l3.1,-2.45l0.19,-2.07l1.6,-0.33l0.86,-0.69l-0.18,-1.21l-2.01,-1.53l-1.24,-1.88l-0.93,-0.47l-0.02,-0.59l4.43,-1.34l1.11,-1.2l0.06,-1.07l0.35,-0.43l2.4,0.56l0.42,-0.16l1.1,-1.62l2.85,0.04l6.22,-3.46l2.45,1.74l-0.83,3.03l0.12,0.41l3.71,3.25l1.06,2.1l-3.63,2.45l-0.39,0.79l0.36,0.62l-1.89,0.76l-1.59,1.96l0.26,0.65l1.58,0.2l0.51,0.72l-0.35,2.49l-1.7,2.21l1.0,2.81l-2.39,2.92l-1.54,3.86l0.25,0.53l2.26,0.72l3.03,2.27l2.09,-0.31l3.41,2.75l0.85,1.75l1.43,1.6l-1.44,-0.07l-2.21,2.17l-2.85,-0.91l-3.31,-0.19l-1.65,-1.74l0.31,-0.91l-0.24,-0.74l-2.77,-1.04l-1.29,0.34l-1.47,2.38l0.03,0.46l1.76,2.15l1.27,0.26l1.42,1.27l0.37,0.96l0.06,2.1l1.16,1.37l2.8,1.15l3.53,-0.03l1.97,1.85l2.3,-0.67l0.96,0.36l0.1,0.3l-1.88,1.21l-0.35,1.43l0.95,1.66l0.18,2.06l0.47,0.36l2.52,-0.46l0.47,0.23l-0.06,0.52l-2.17,2.99l-0.21,2.21l0.72,2.17l2.11,1.87l1.83,4.53l-1.1,6.22l-1.07,1.85l0.05,0.47l2.04,2.18l2.7,0.63l0.08,1.52l0.83,1.13l2.83,0.71l1.3,1.22l1.04,0.2l2.29,1.65l1.21,0.01l1.75,0.6l1.02,2.18l-1.42,2.73l0.24,2.65l0.53,0.34l1.86,-0.73l2.12,-3.68l1.82,-1.14l1.83,2.0l-0.11,2.67l0.58,0.38l2.57,-1.26l0.57,0.04l2.25,3.96l2.09,1.71l2.59,-0.33l1.67,-2.16l1.47,-0.53l1.86,-0.03l1.6,-1.63l1.99,0.13l1.2,1.07l0.51,3.18l0.5,0.32l2.0,-0.54l2.03,1.37l2.16,-0.67l0.28,-0.34l0.23,-2.43l1.88,-1.4l1.04,-2.01l2.16,-1.71l1.2,-3.89l-0.67,-3.32l1.62,-2.18l2.59,-2.18l0.92,-1.56l4.18,1.29l2.92,-0.79l1.08,-0.0l1.25,1.95l2.05,0.41l2.44,-0.77l5.61,-0.82l0.9,-0.54l0.94,-1.8l5.48,-1.26l13.7,1.67l1.12,0.66l0.97,1.48l0.07,0.77l-0.6,0.43l-1.63,0.18l-3.05,-0.56l-1.43,0.04l-2.9,2.22l-3.08,0.62l-1.69,0.89l-0.09,0.64l1.89,2.12l1.11,0.42l7.4,-0.0l3.51,0.78l0.44,-0.57l-1.02,-2.73l0.28,-0.73l1.2,0.04l0.16,1.24l0.97,2.16l1.23,1.88l1.25,1.0l18.43,1.75l10.82,-2.77l27.82,-2.15l1.74,0.87l-0.72,3.43l-1.09,1.78l-0.42,0.28l-2.96,-0.01l-0.86,0.85l0.28,2.55l2.05,4.98l0.74,4.43l-0.7,4.26l-1.71,3.54l-2.24,2.25l-5.69,1.63l-2.4,1.51l-2.69,-0.06l-1.17,0.33l-2.34,2.14l-1.59,0.55l-5.69,0.13l-1.8,0.43l-1.8,1.01l-3.47,2.67l-5.32,6.78l0.16,3.21l0.86,4.13l-2.55,0.85l-12.26,-3.38l-3.66,0.95l-8.59,6.96l-3.39,1.29l-18.73,3.35l-3.89,1.31l-2.0,2.7l-2.95,1.65l-3.1,3.69l-3.0,0.04l-1.65,-0.21l-4.0,-1.25l-3.97,-0.12l-2.28,-1.61l-1.69,-0.46l-3.64,-0.22l-17.94,-5.47l-2.94,-0.25l-2.39,1.01l-3.26,-1.02l-11.02,3.32l-14.78,0.0l-14.18,3.95l-2.33,-1.08l-1.04,0.48l-0.48,0.99l0.53,2.31l-0.31,0.89l-1.36,0.64l-1.79,-0.49l-7.81,-4.18l-0.42,-0.44l0.34,-0.81l1.01,-0.66l2.45,-0.83l0.27,-1.08l-2.7,-2.26l-1.09,-0.51l-1.63,0.8l0.58,-1.02l-0.18,-0.56l-1.75,-0.81l-2.9,-0.46l-2.69,-0.01l-1.73,0.41l-1.37,2.22l-0.81,2.78l-1.05,1.93l-1.91,0.2l-1.42,-1.34l0.69,-1.68l1.62,-2.03l0.53,-1.56l-0.22,-0.49l-1.76,-0.74l-5.41,0.36l-1.37,0.36l-0.13,0.71l3.39,2.66l0.2,2.04l-0.27,1.02l-0.92,0.71l-0.93,-0.04l-2.81,-1.18l-1.27,-1.82l-2.75,-1.24l-2.02,-1.46l-4.01,-1.35l-3.31,-3.35l-11.04,-5.19l-0.57,0.36l0.25,1.08l2.43,1.2l1.07,0.17l8.74,8.35l0.67,1.37l-0.19,0.99l-1.68,0.5l-5.51,0.41l-1.36,0.38l-0.1,0.72l1.0,0.88l-3.66,0.57l-2.23,0.68l-1.01,0.65l-3.02,-0.39l-0.4,0.18l-2.93,4.58l-1.43,-0.35l-1.94,-1.06l-5.86,-0.93l-0.27,-1.33l-0.39,-0.32l-4.53,0.0l0.22,-1.97l-0.48,-0.63l-4.55,0.92l-0.96,-1.31l-0.79,-2.11l0.21,-1.75l0.92,-1.65l-0.83,-4.12l-0.43,-0.32l-1.99,0.18l-0.44,-2.3l2.36,-1.73l0.55,-2.73l-0.32,-0.47l-2.77,-0.47l-2.35,1.21l-1.24,-0.19l-2.26,-2.08l-3.43,-4.7l1.61,-1.01l4.69,-0.68ZM827.39,1160.63l-1.9,0.67l-9.98,-0.7l-1.58,-0.51l-1.42,-1.2l-1.9,-2.73l1.03,-2.91l0.48,-0.54l0.9,-0.21l10.6,3.06l1.69,0.96l1.74,1.59l0.73,1.47l-0.38,1.04ZM664.9,1227.88l0.0,0.18l-6.29,-0.89l1.84,-0.73l2.14,-3.1l0.75,0.03l0.76,0.89l-0.83,0.79l-0.18,1.04l1.82,1.78ZM623.05,1234.6l-0.25,0.7l0.41,0.55l2.31,-0.28l2.08,-1.44l2.91,-3.02l2.03,-1.19l1.8,-0.11l13.05,4.47l3.03,0.11l0.83,0.53l-0.03,1.38l0.51,0.39l0.87,-0.12l1.61,2.46l-0.92,0.8l-4.57,1.37l-2.54,1.88l-0.8,1.25l-0.22,4.06l-9.33,2.32l-2.99,-0.72l-11.18,-6.65l-0.65,-0.73l-2.95,-1.75l-1.16,-0.36l-3.27,0.33l-1.76,0.64l1.22,-1.86l3.31,-2.39l6.66,-2.62Z", "name": "South East"}, "UKI": {"path": "M716.62,1157.4l-2.16,-1.57l-0.96,-0.16l-1.47,-1.31l-2.59,-0.57l-0.57,-0.69l-0.09,-1.69l-0.32,-0.37l-2.67,-0.55l-1.75,-1.87l1.0,-1.78l1.13,-6.4l-1.84,-4.72l0.57,-0.78l0.35,-1.84l0.53,-0.09l1.16,0.74l2.29,-0.5l4.98,0.1l4.73,-2.32l5.72,-1.12l1.36,-3.15l0.47,0.24l0.93,1.57l0.56,0.13l1.41,-0.89l2.46,-0.55l1.3,-1.09l0.85,-1.42l11.33,1.31l0.27,0.92l-0.48,1.75l0.23,0.47l2.81,1.42l0.95,1.9l4.85,2.34l1.22,-0.31l1.34,-1.36l6.13,-0.44l4.04,-1.11l1.09,0.15l0.25,1.07l1.68,2.69l1.43,1.29l1.87,0.52l0.65,1.81l1.43,2.11l-4.35,1.35l-0.72,1.12l-1.88,-0.34l-0.46,0.32l-0.45,2.28l-2.05,1.65l-0.19,0.92l0.45,0.79l-0.82,1.43l-2.57,2.16l-1.82,2.43l0.63,3.51l-1.13,3.67l-1.99,1.49l-1.03,2.0l-1.95,1.44l-0.38,2.63l-1.72,0.53l-1.95,-1.38l-1.81,0.49l-0.59,-3.11l-1.65,-1.36l-2.31,-0.15l-1.92,1.75l-1.61,-0.06l-1.66,0.61l-1.59,2.11l-1.93,0.35l-1.79,-1.43l-2.64,-4.28l-1.09,-0.02l-2.07,1.01l-0.01,-2.45l-2.17,-2.36l-0.51,-0.07l-2.19,1.37l-2.22,3.77l-1.01,0.34l-0.18,-2.02l1.42,-2.94l-1.41,-2.73l-1.97,-0.68l-1.16,-0.03Z", "name": "London"}, "UKH": {"path": "M771.03,995.06l3.66,0.23l1.27,0.6l2.38,2.79l1.42,0.65l0.56,-0.37l-0.42,-2.53l5.03,-5.7l0.53,-2.98l1.08,-3.1l2.45,-4.75l2.89,-2.46l4.17,-1.61l4.58,-0.73l4.16,0.14l0.33,-0.64l-0.31,-0.42l1.12,-0.34l5.6,1.38l7.41,0.01l3.37,0.72l3.98,1.59l4.1,0.84l4.16,-1.5l-0.09,-0.81l22.41,4.45l10.44,4.39l21.44,13.49l2.47,2.3l1.99,2.79l1.61,5.46l1.6,3.44l1.09,3.31l-0.54,2.38l0.52,1.95l0.16,2.24l-0.1,4.18l2.02,5.48l-0.28,0.82l-1.13,1.2l-2.18,6.03l-0.13,2.26l-3.8,8.27l-4.64,6.46l-0.2,3.02l0.22,5.18l-4.06,13.42l-6.69,2.34l-1.37,1.26l-1.02,-0.66l-0.58,0.16l-0.72,2.43l-3.3,3.77l-6.04,5.51l-0.95,1.25l-0.61,0.2l-5.7,-6.1l-2.68,-0.78l-4.24,-2.83l-2.52,-0.46l-0.47,0.39l0.15,1.11l3.13,2.45l1.93,1.13l4.7,1.08l0.23,0.32l-0.16,1.8l-1.6,-0.31l-3.83,0.71l-3.55,-1.57l-2.01,0.13l-4.18,1.16l-2.17,0.29l-0.34,0.35l0.25,0.42l2.41,0.92l14.43,0.76l1.25,-0.56l-0.18,1.26l-6.72,5.71l0.05,0.64l1.18,0.73l1.44,0.52l3.16,0.39l1.2,-0.82l0.43,-0.72l0.08,1.44l-0.93,1.65l-4.86,3.74l-4.4,2.46l-2.73,0.96l-5.97,0.73l-1.48,-0.18l-0.66,-0.48l-1.38,-2.35l-3.97,-4.87l-0.33,0.35l-0.22,2.05l-1.14,1.1l-3.13,1.27l-3.32,2.37l-1.22,4.03l-1.02,0.24l-2.11,1.29l-3.65,-0.85l-2.34,0.21l-5.99,2.26l0.02,0.73l4.26,1.28l0.93,1.7l0.61,0.12l2.37,-1.95l5.5,-1.01l2.74,-0.97l2.42,-1.64l1.26,-0.2l1.09,0.93l-0.1,1.77l-0.57,1.25l1.07,3.02l-0.75,0.63l-0.32,0.99l-0.22,3.17l-1.9,1.3l-0.17,0.46l0.4,0.28l2.24,-0.13l0.76,0.5l-2.18,3.04l-4.36,3.27l-4.87,2.53l-3.78,0.99l-6.78,-0.92l-3.71,0.06l-0.84,0.27l-1.64,1.35l-3.46,0.61l-1.08,0.82l-1.42,-0.99l-2.43,0.13l-6.0,1.31l-0.72,1.04l-0.78,2.41l-1.04,1.04l-6.03,2.31l-1.4,-0.23l-1.53,-2.13l-1.5,0.02l-2.63,0.77l-4.26,-1.31l-0.34,-0.43l0.12,-0.59l2.05,-1.66l0.4,-2.05l1.78,0.32l0.42,-0.21l0.55,-1.04l4.7,-1.46l0.21,-0.61l-1.71,-2.52l-0.65,-1.87l-2.25,-0.8l-1.09,-1.02l-2.2,-4.05l-1.61,-0.18l-4.0,1.11l-6.24,0.44l-1.62,1.5l-0.75,0.15l-4.35,-2.18l-0.93,-1.89l-2.68,-1.38l0.41,-1.74l-0.71,-1.57l-11.85,-1.37l-1.25,1.67l-1.17,0.98l-2.26,0.46l-1.25,0.76l-0.94,-1.47l-1.27,-0.36l-0.72,0.73l-0.7,2.45l-5.53,1.08l-4.61,2.3l-4.93,-0.1l-2.24,0.48l-0.81,-0.65l-1.3,0.08l-1.03,2.71l-1.78,-1.58l-0.55,-1.81l0.13,-1.67l2.17,-2.98l0.17,-1.09l-0.22,-0.4l-1.09,-0.45l-2.22,0.4l-0.2,-1.87l-0.91,-1.6l0.14,-0.58l2.01,-1.29l0.16,-0.47l-0.27,-0.77l-1.51,-0.73l-2.08,0.71l-2.18,-1.89l-3.6,0.03l-2.48,-1.05l-0.86,-1.06l0.02,-1.78l-0.57,-1.43l-1.59,-1.41l-1.19,-0.21l-1.47,-1.8l1.22,-1.98l0.73,-0.11l2.05,0.68l-0.14,1.56l1.95,2.05l3.68,0.32l2.93,0.95l2.64,-2.29l1.39,0.22l0.46,-0.42l-0.17,-1.14l-1.39,-1.33l-0.96,-1.91l-3.63,-2.92l-2.11,0.3l-2.94,-2.2l-2.04,-0.67l1.35,-3.4l2.43,-2.94l-0.93,-3.19l1.65,-1.93l0.38,-2.77l-0.77,-1.28l-1.32,-0.3l1.07,-1.32l2.06,-0.76l0.21,-0.58l-0.44,-0.75l3.9,-2.64l0.13,-0.51l-1.34,-2.6l-3.58,-3.14l0.83,-3.05l-0.15,-0.43l-2.57,-1.83l1.59,-2.66l-0.17,-2.58l-0.63,-1.58l0.12,-0.46l4.06,-0.75l0.93,0.24l1.78,1.84l1.51,0.26l1.06,-0.5l0.78,-1.6l0.0,-2.5l1.74,-2.07l3.69,-0.64l0.33,-0.45l-0.3,-1.9l-2.01,-2.79l0.08,-1.57l4.83,-1.88l0.98,-1.65l2.9,-1.92l3.73,-4.11l0.44,-1.06l-1.28,-4.51l-4.83,-2.4l0.68,-2.67l-1.43,-1.75l0.11,-1.67l-0.45,-0.42l-3.93,0.46l-0.79,-0.5l0.61,-4.74l-0.74,-1.85l-1.03,-1.05l1.37,-0.52l2.68,0.75l2.91,-0.03l7.53,-3.08l4.67,1.84l5.18,-0.98l1.63,1.63l1.88,-0.28l1.88,0.65l3.33,-1.52l1.68,0.19l2.6,-0.93l4.33,1.23l2.91,-0.05l1.6,-1.08l0.92,-1.77l-0.32,-3.52l0.4,-0.36l3.21,-0.31l4.41,-1.97l4.49,0.35l6.64,-4.06l0.3,-1.33l-1.25,-1.37l1.23,-2.96Z", "name": "East"}, "UKG": {"path": "M474.98,995.49l-0.98,-2.52l0.01,-1.1l2.62,-2.95l-0.45,-3.37l2.25,-1.38l1.66,-2.34l2.19,-1.01l4.37,-2.73l0.87,-0.33l2.39,0.11l2.08,1.82l1.19,0.35l4.25,-0.92l1.97,0.25l4.9,4.04l1.52,0.48l0.98,-0.24l1.73,-1.07l2.55,-0.77l0.48,-0.52l0.21,-2.69l-0.89,-2.55l8.56,-2.12l2.6,0.94l0.95,2.56l0.45,0.25l1.59,-0.3l2.57,1.03l0.47,-0.13l1.08,-1.47l2.67,0.8l2.72,-0.31l1.76,-1.0l0.73,-1.62l3.7,-1.23l1.25,-1.37l-0.54,-4.55l0.57,-1.45l2.62,-0.53l2.47,-2.57l2.85,0.16l2.39,-0.85l7.58,-7.38l2.18,-0.56l0.31,-1.22l-0.68,-1.33l0.76,-0.09l2.1,1.07l2.89,0.0l3.41,-2.23l2.31,-0.27l2.42,-2.43l1.75,-0.64l1.76,2.12l6.51,2.18l2.74,1.52l1.69,1.62l0.34,0.66l0.03,2.85l2.31,3.19l-0.36,2.25l0.6,3.42l0.6,1.38l1.28,1.03l0.15,2.32l-0.95,1.84l-4.6,2.42l-0.58,3.82l-0.41,0.4l-1.27,0.06l-0.38,0.39l-0.05,2.31l1.22,1.83l0.25,1.66l0.35,0.34l1.96,0.22l1.21,0.83l2.67,0.06l1.57,1.69l1.4,0.71l7.86,0.52l1.76,1.13l1.26,1.92l-1.92,1.45l-1.17,2.86l-3.78,1.71l-2.41,3.76l0.08,0.53l1.78,1.41l2.85,0.87l0.46,2.3l0.35,0.32l1.56,0.16l1.21,-0.99l0.74,0.77l1.15,0.05l0.28,0.83l3.85,3.97l-0.17,0.96l-1.75,0.89l-0.16,0.56l1.37,2.31l-0.29,2.2l0.28,0.44l2.32,0.72l2.06,2.13l6.66,2.44l1.01,0.99l0.9,1.69l8.78,3.81l4.46,6.12l2.58,1.27l3.75,6.46l0.13,0.95l-1.14,0.93l-4.44,1.24l-1.51,0.96l-0.11,0.56l0.93,1.17l2.94,0.73l-1.66,1.94l0.04,0.56l1.19,1.05l0.06,2.19l-4.78,2.47l-0.17,1.18l1.69,1.85l-0.19,0.79l-4.65,1.66l-1.25,1.19l-0.4,1.15l-1.01,1.01l-0.72,2.09l-2.68,1.79l-0.03,0.64l1.7,1.4l-0.33,0.61l-1.52,0.31l-2.29,-1.73l-1.92,-0.2l-0.98,0.16l-0.34,0.42l-0.01,1.53l-2.47,0.25l-0.73,1.58l-1.8,2.04l-0.05,2.3l-1.17,4.79l-0.59,0.95l-2.2,0.39l-0.32,0.32l-0.3,1.51l-2.85,0.2l-0.86,1.34l-0.53,0.06l-3.91,-3.12l1.51,-1.59l1.9,-2.96l-0.13,-0.56l-1.03,-0.5l-3.04,0.4l-1.28,-0.41l-2.68,-3.81l-0.78,-2.23l-1.99,-0.74l-1.73,-1.82l-0.45,-0.09l-1.91,0.9l-2.93,3.31l-2.6,-0.38l-1.93,1.47l0.17,0.94l1.25,0.54l1.67,2.02l0.19,1.52l-0.43,0.98l-0.62,0.02l-3.11,-2.34l-2.19,-0.39l-1.37,0.49l-2.08,-0.36l-2.6,0.53l-5.05,2.95l-3.38,-0.86l-3.06,-0.01l-2.03,1.32l-0.72,-0.8l2.31,-3.9l-0.36,-0.6l-4.32,0.19l-0.88,1.11l-0.5,3.07l1.18,1.43l-0.75,0.49l-3.11,-0.17l-2.16,2.94l-1.27,0.14l-4.6,-1.19l-0.95,-2.08l-2.32,-2.77l-2.36,0.32l-2.27,2.08l-1.49,0.53l-1.13,-0.46l-1.17,-2.24l-1.69,-0.74l-0.54,0.22l-0.98,2.61l0.34,1.3l-0.94,1.37l-0.22,1.97l1.87,1.48l0.56,2.11l1.71,1.58l0.22,1.14l-0.22,0.55l-2.91,1.5l-3.0,0.31l-1.4,2.41l-2.57,-0.26l-2.43,0.84l-0.68,1.05l-1.07,-0.13l-1.52,0.82l-0.64,-1.43l-0.94,-0.24l-0.9,1.07l-0.46,2.74l-0.6,0.29l-3.63,-2.33l-2.38,-0.02l-0.72,-0.33l-3.16,-3.83l-8.48,-6.27l-2.18,0.33l-2.62,1.61l-1.36,0.37l-1.43,-0.25l-1.78,-1.3l-0.72,-0.9l-0.53,-1.66l-2.73,-2.12l-1.91,-2.23l-2.47,-3.84l-0.21,-2.92l-0.48,-1.16l-3.04,-2.42l0.83,-2.98l1.0,-1.05l0.09,-0.49l-2.02,-1.74l3.09,-1.14l0.83,-0.82l0.28,-0.76l-0.43,-0.86l-1.78,-0.17l-0.55,-0.59l-0.01,-0.64l3.49,-4.19l1.32,-2.67l1.86,-1.04l1.42,-1.45l3.76,-0.35l1.17,-0.81l0.11,-0.66l-0.44,-0.67l-2.83,-1.0l-0.45,-1.63l0.64,-1.36l2.91,-2.12l0.3,-0.74l-0.15,-1.11l-0.37,-0.35l-9.75,-0.62l-2.8,-2.45l-8.24,-5.15l-0.92,-1.4l-0.26,-2.12l1.58,-2.17l4.25,-1.47l2.31,-1.33l7.58,-0.66l0.74,-0.49l0.76,-1.5l2.22,-1.67l1.12,-1.24l0.14,-0.8l-0.54,-1.11l-2.15,-2.04l-1.15,-0.21l-2.27,1.6l-2.45,1.13l-1.65,1.88l-1.77,0.2l0.46,-1.82l-1.35,-2.51l-0.04,-1.01l0.55,-0.85l3.18,-1.8l0.82,-1.2l0.72,-3.06l2.4,-1.47l0.59,-1.77l0.1,-2.63l1.2,-2.4l0.49,-0.33l2.8,-0.5l0.72,-0.57l0.68,-1.4l-0.37,-0.79l-1.79,-0.85l-1.52,-1.86l-2.63,-0.83l-2.4,-0.27l-1.72,-1.81l-3.12,-0.35l-1.35,-0.52l-0.76,-0.67Z", "name": "West Midlands"}, "SCT": {"path": "M671.69,36.17l-1.39,-0.25l-1.78,-2.0l-2.82,-4.38l0.0,-0.45l9.63,0.0l0.64,0.26l0.01,1.63l0.54,0.78l0.98,-0.01l1.24,-0.86l1.09,0.21l0.75,0.59l0.24,0.88l-0.43,1.21l-1.87,1.33l-2.21,-0.5l-2.48,-1.01l-2.61,0.03l-0.39,0.4l0.0,0.97l0.87,1.16ZM663.72,17.04l0.53,0.32l0.57,-0.18l0.5,-1.26l-0.68,-3.15l1.3,-0.56l0.87,-1.95l-0.0,-1.97l-1.1,-1.22l0.0,-0.53l1.21,-0.48l1.71,-1.36l1.18,-1.53l0.05,-1.35l0.65,-1.05l0.58,-0.01l0.66,0.78l0.32,1.59l-0.31,1.25l-2.61,2.62l0.21,0.83l0.48,0.17l1.13,-0.42l2.05,-1.47l1.93,-4.91l0.5,-0.59l0.42,0.4l1.8,0.29l1.84,0.89l0.6,0.91l0.19,1.1l-2.06,0.81l-0.0,0.73l1.65,0.77l-3.51,2.28l0.44,2.48l-1.33,0.06l-0.38,0.35l0.28,0.43l1.43,0.64l0.0,0.57l-4.1,3.43l0.54,1.99l1.71,2.5l-0.94,0.82l-0.62,0.06l-2.14,-1.05l-5.58,0.25l-1.22,-0.26l-1.03,-0.58l0.46,-2.29l-0.15,-1.14ZM661.9,65.94l-3.17,0.75l-1.1,-0.53l0.72,-0.94l0.57,-1.51l0.75,-0.79l1.95,-0.43l1.37,-1.1l2.9,-0.21l1.36,-0.47l-3.08,3.29l-2.28,1.94ZM652.82,15.13l0.83,2.02l0.7,0.07l0.92,-1.38l1.57,-0.39l3.34,0.23l0.02,1.34l-0.67,0.88l0.0,0.97l1.04,0.95l-0.74,1.24l0.02,1.47l1.46,2.55l-0.88,2.07l-3.91,-3.08l-1.88,-0.24l-0.4,0.23l0.09,0.46l2.15,2.54l1.78,3.26l-1.82,0.68l-1.08,-0.17l-1.13,-0.7l-0.45,0.02l-0.14,0.43l0.56,1.65l1.2,0.91l2.16,0.44l-0.25,0.75l1.35,1.21l0.02,1.28l-0.84,1.06l-1.53,0.31l-0.27,0.59l1.27,2.21l0.5,2.47l-0.22,1.37l-0.35,0.15l-2.05,-0.65l-2.06,0.08l-0.79,-0.25l-0.36,-0.85l-0.76,-0.17l-0.72,0.63l-0.21,1.01l0.92,1.25l-2.33,-0.4l-1.86,-1.48l-1.14,-2.73l-1.05,-12.17l0.66,-2.47l2.17,-0.32l-0.2,2.11l0.94,1.55l1.47,1.02l1.32,-0.31l0.23,-0.54l-1.46,-3.99l-0.26,-1.66l1.02,-2.66l-0.68,-1.21l-0.07,-0.99l0.53,-2.18l0.82,-1.38l0.89,-1.09l0.6,-0.02ZM615.12,86.2l-0.37,-0.81l0.44,-1.13l0.86,-0.64l3.7,-0.95l0.06,-0.72l-1.04,-0.61l-2.07,-2.68l-0.69,0.11l-0.83,2.76l-0.86,1.03l-0.54,0.1l-0.89,-2.16l-0.46,-0.22l-1.34,0.33l-2.56,1.29l-2.43,0.03l-0.77,-1.71l-2.41,-0.47l-0.56,-0.56l-1.7,-5.71l0.23,-0.53l2.37,-1.87l3.13,-1.01l1.26,0.1l3.15,2.63l1.72,0.04l0.37,-0.54l-0.37,-1.04l2.26,0.67l0.51,-0.38l0.0,-0.89l-0.64,-0.53l3.54,-0.34l0.93,0.8l0.1,3.7l0.52,0.37l1.92,-1.05l0.08,-0.51l-0.89,-2.05l1.14,0.0l0.36,-0.57l-0.48,-1.44l1.54,-0.52l2.08,0.5l1.76,1.6l0.86,2.78l0.69,0.13l2.38,-2.62l-0.03,-0.61l-2.15,-1.66l1.39,-2.71l0.89,0.46l1.38,0.11l0.35,-0.64l-0.74,-1.0l0.93,-0.25l4.26,0.1l0.4,-0.3l-0.2,-0.45l-2.07,-1.1l-2.62,-0.47l-1.82,-0.88l-0.48,-2.6l-0.66,-0.23l-2.38,1.82l-0.69,-0.12l-0.75,-0.81l-0.26,-1.06l0.24,-1.04l0.97,-1.15l0.0,-0.89l-0.4,-0.4l-3.68,-0.22l-0.62,-0.52l0.05,-3.77l-0.68,-4.14l-0.34,-0.33l-0.42,0.23l-2.0,3.8l-0.66,0.46l-0.95,-0.32l-0.21,-0.73l0.43,-1.0l1.05,-0.84l0.12,-0.45l-0.38,-0.26l-4.34,0.31l-1.31,-1.11l-0.61,0.12l-0.72,1.38l-1.04,0.42l-2.64,-0.14l0.3,-1.69l1.32,-1.96l1.96,0.17l0.89,-0.41l0.48,-1.06l0.17,-2.51l1.67,-2.06l0.77,-0.09l0.99,1.22l1.18,2.85l2.87,2.21l3.4,0.94l3.13,-1.32l0.04,-0.71l-0.98,-0.59l-3.55,-0.35l-2.28,-2.31l-0.95,-0.23l1.83,-3.01l0.97,-0.21l2.64,-1.51l0.06,-0.65l-0.9,-0.76l0.77,-1.36l-0.24,-0.99l1.63,-0.6l2.21,0.25l2.26,0.96l2.07,1.36l0.58,-0.16l0.54,-0.89l-0.06,-0.55l-1.34,-1.12l0.15,-1.02l1.44,-2.1l0.6,1.79l-0.31,1.95l0.14,1.7l-1.02,0.5l-0.3,0.47l0.6,2.87l-0.59,1.2l-1.28,1.05l-1.05,1.73l0.34,0.61l0.99,0.0l-1.38,0.49l0.21,0.43l1.41,0.85l-1.59,3.91l0.43,0.55l0.83,-0.13l2.07,-1.33l0.12,0.18l-1.37,2.66l0.26,1.58l-1.63,0.68l-2.02,4.44l-1.51,1.07l-0.17,1.3l0.37,0.4l1.1,0.1l2.25,-0.49l1.17,-1.0l-0.1,-2.11l2.09,-1.18l5.41,-0.75l0.34,-0.32l-0.19,-0.42l-4.06,-2.33l-0.91,-0.9l1.49,-1.25l0.44,0.18l0.12,1.92l0.68,0.26l2.6,-3.15l0.33,-0.8l0.49,-0.21l1.34,0.62l0.92,1.07l-0.47,1.23l0.24,0.52l1.8,0.94l0.58,0.91l0.32,1.25l-0.52,0.81l0.13,0.49l0.65,0.46l-0.39,0.26l-2.08,-0.68l-3.28,2.6l-0.1,0.63l0.66,0.41l1.37,-0.32l0.0,0.83l0.56,0.37l2.77,-1.21l0.65,0.35l0.15,2.3l0.4,0.37l0.64,0.0l0.39,-0.3l0.27,-1.07l0.63,0.06l0.85,-0.7l1.36,-3.21l0.19,1.22l0.35,0.35l0.42,-0.26l0.76,-2.08l1.22,-1.38l1.47,-0.71l0.92,-0.01l-0.88,1.59l-6.06,5.43l-0.59,1.1l0.07,1.29l0.79,0.54l0.42,-0.08l1.94,-2.24l1.01,-0.55l0.76,-0.01l0.39,1.07l-0.64,3.07l-0.57,0.44l-6.64,0.55l-1.39,0.43l-0.12,0.7l1.79,1.34l4.46,0.87l1.68,0.99l-5.11,3.85l0.07,1.52l0.46,0.84l0.89,0.12l0.49,-0.53l1.93,0.49l-2.91,2.15l-1.4,0.46l-1.17,-0.27l-1.53,-2.56l-1.12,-0.24l-1.0,1.17l0.15,1.0l1.05,1.37l-1.35,0.23l-1.61,1.07l0.0,0.8l0.4,0.4l2.76,0.0l-1.41,3.08l0.16,0.49l0.51,-0.07l1.57,-1.73l0.92,-0.58l-2.11,3.64l-0.47,1.93l0.2,0.45l0.48,-0.08l1.33,-1.42l1.57,-0.51l0.51,0.34l-1.04,1.95l0.14,0.53l2.77,1.92l-2.02,0.0l-0.4,0.4l0.0,0.85l-0.63,-0.08l-1.72,1.47l-1.39,0.02l-0.37,0.27l0.13,0.44l1.01,0.78l-0.28,0.75l-0.35,0.46l-1.29,0.11l-0.43,0.4l0.0,0.8l0.32,0.39l1.8,0.63l-1.06,1.05l-0.08,0.46l0.81,1.72l1.71,1.38l0.57,0.09l-0.31,1.22l-1.11,0.85l-1.42,0.2l-1.27,-0.39l-0.51,0.47l0.41,1.86l1.85,3.53l-0.53,1.02l-0.92,-0.05l-2.65,-1.34l-0.58,0.41l0.37,2.63l-0.19,2.65l-0.69,2.33l-0.83,1.22l-0.84,-0.47l-0.15,0.5l0.92,2.78l-0.2,1.38l-0.73,1.7l0.94,1.28l0.19,0.87l-0.62,1.01l-1.59,-2.28l-0.68,0.05l-0.68,1.03l-0.08,-0.53l0.97,-1.28l-0.17,-1.21l-1.61,-0.98l-2.61,0.49l-1.17,-0.47l-0.8,-1.23l1.34,-1.44l-0.38,-2.23l0.58,-0.85l0.73,-0.55l1.75,-0.05l0.46,-0.4l-0.13,-1.02l-2.19,-2.03l1.92,0.0l0.39,-0.48l-0.47,-2.18l2.21,-4.17l1.3,-6.12l2.17,-5.11l-0.42,-3.7l-0.56,-0.74l-0.98,-0.04l-0.29,-0.98l1.64,-3.63l-0.38,-0.58l-0.88,0.04l-1.77,1.12l-0.63,-0.2l1.47,-4.28l1.39,-2.19l0.82,-0.63l0.16,-1.2l-0.37,-0.4l-1.99,-0.02l-1.32,1.43l-1.98,3.39l-0.92,-2.31l-1.37,-2.31l-1.98,-1.43l-2.82,-0.53l-0.47,0.39l0.0,0.97l3.14,2.03l2.14,3.25l-0.36,1.14l-2.09,-1.47l-1.28,-0.11l-0.42,0.41l0.04,2.31l-0.53,1.48l-0.19,0.08l-0.32,-1.32l-0.62,-0.23l-1.05,0.74l-0.75,2.96l-0.53,0.73l-3.72,-1.75l-2.35,-1.92ZM653.13,86.9l0.43,2.38l0.37,0.3l1.3,-0.23l-0.19,1.78l-1.21,2.51l-0.56,2.57l-0.49,0.19l-2.3,-1.31l-0.65,-0.71l0.25,-4.04l-1.41,-1.77l0.04,-0.89l1.22,-0.14l1.8,0.53l0.91,-0.58l0.22,-0.88l0.27,0.3ZM629.03,103.58l0.17,-0.18l-0.11,0.14l-0.06,0.04ZM629.45,103.1l0.84,-3.28l0.84,-1.55l-0.71,-1.57l1.29,-0.26l0.58,-0.47l-0.67,3.0l0.2,0.44l0.47,-0.07l0.74,-0.63l0.17,0.55l-0.38,1.17l-1.69,3.67l0.44,-3.15l-0.58,-0.76l-0.35,0.35l-0.29,1.45l-0.9,1.11ZM607.03,168.59l-0.28,1.19l0.39,0.48l0.78,0.0l0.0,0.31l-3.54,2.05l-0.37,-1.4l0.59,-1.92l1.44,-1.18l1.8,-0.53l1.29,0.03l-1.48,0.37l-0.63,0.6ZM242.69,441.54l1.02,-1.11l-1.16,-2.0l-0.03,-1.53l0.23,-0.66l0.85,-0.76l-0.1,-0.66l-3.94,-1.2l-1.14,-4.82l1.73,-3.67l0.35,-4.09l1.06,0.01l0.38,-0.52l-0.52,-2.17l1.07,-0.34l1.38,0.21l1.4,0.72l4.68,3.75l1.47,0.85l0.87,-0.3l1.36,1.61l3.39,1.91l1.06,0.24l0.41,-0.17l0.0,-0.45l-0.93,-2.01l5.66,-0.77l3.52,0.48l2.09,-0.04l0.72,-1.07l-0.15,-0.49l-2.64,-1.73l-4.07,-0.77l-3.96,0.41l-2.32,1.52l-2.38,-2.19l0.92,-1.43l-0.29,-0.6l-2.73,-0.4l-1.38,-1.78l-1.12,-2.5l-1.61,-2.0l-3.71,-1.12l-0.37,-1.26l0.43,-1.29l1.68,-1.47l-0.36,-2.1l2.91,-1.3l1.42,-0.05l2.44,2.12l1.39,-0.02l1.16,-1.08l0.75,-1.47l-0.27,-0.57l-0.85,-0.19l-1.98,-2.2l-1.11,-0.55l-7.05,-1.29l-0.2,-1.02l0.47,-5.83l-0.74,-2.49l-0.1,-1.47l0.3,-1.24l1.43,-2.1l1.03,-0.68l2.09,-0.65l2.17,-0.02l2.17,0.53l1.82,0.92l-0.28,1.53l0.27,2.48l1.27,4.46l0.89,1.39l1.22,1.04l1.58,0.6l1.78,-0.3l-1.49,-2.49l1.2,0.15l1.57,0.76l0.56,-0.45l-0.55,-2.37l0.44,-3.59l-1.29,-2.05l-3.3,-2.41l-0.89,-1.15l0.73,-1.02l-0.24,-0.62l-0.8,-0.43l3.14,-3.7l1.95,1.46l2.91,0.04l-0.32,3.31l2.59,2.62l3.54,1.47l2.89,0.3l0.38,-0.61l-0.37,-0.59l0.93,-1.02l1.02,-3.52l0.67,-1.09l0.81,0.01l3.82,1.3l3.64,3.04l2.91,1.41l6.32,1.92l0.44,-0.15l-0.0,-0.47l-1.28,-1.74l-1.05,-0.86l-2.58,-0.94l-3.87,-3.07l-6.02,-2.32l-0.34,-1.05l0.25,-0.55l1.49,0.61l0.44,-0.27l0.34,-1.07l1.16,0.56l2.37,2.7l2.03,0.91l1.17,-0.03l2.53,-0.79l4.78,2.11l3.13,2.4l3.65,1.33l2.43,3.37l1.91,1.02l0.49,-0.1l0.02,-0.5l-2.38,-4.82l-8.67,-5.89l-1.93,-0.43l1.63,-0.35l0.77,-1.2l-0.18,-1.61l-0.91,-1.72l-1.22,-0.78l-2.69,-0.42l-1.32,-0.91l-2.43,-0.49l-3.49,-3.42l-1.8,-0.37l0.25,-0.75l-1.49,-1.54l-1.83,-0.47l-2.86,0.14l0.91,-1.36l0.0,-0.86l-2.75,-3.99l1.25,-1.31l2.91,0.64l1.98,3.15l0.55,0.13l1.75,-1.1l1.75,0.44l2.24,0.09l2.08,-2.05l0.09,-0.44l-0.36,-0.24l0.21,-2.02l-0.66,-1.49l0.84,-0.4l0.0,-0.86l-1.35,-0.95l2.95,-0.75l1.4,-0.88l0.0,-0.94l-0.41,-0.4l-2.82,0.1l-2.0,-0.66l0.35,-0.44l-0.03,-0.54l-1.41,-1.16l-1.32,-0.54l0.52,-2.25l-0.38,-0.52l-1.02,-0.01l-0.71,-0.38l-3.84,-4.59l0.06,-1.65l1.0,-0.26l1.85,0.62l3.62,1.94l1.74,0.35l1.56,-0.35l3.4,-1.77l1.73,-0.45l1.72,0.16l1.75,1.09l0.54,-0.11l1.7,-1.64l1.78,-0.76l1.37,0.35l2.56,1.75l1.27,0.45l4.43,-0.27l1.21,0.27l5.91,3.48l0.49,-0.07l0.05,-0.49l-0.94,-1.42l-2.83,-1.89l0.52,-0.34l2.52,-0.37l1.18,-0.65l0.2,-0.42l-0.33,-0.33l-5.5,-0.86l-1.77,0.0l-1.01,0.49l-0.9,1.03l-0.69,0.18l-0.71,-0.22l-3.93,-2.08l-3.34,-3.54l-2.1,-2.68l-0.97,-2.8l1.23,0.0l0.34,-0.62l-0.81,-1.24l0.04,-1.04l1.42,-2.63l0.02,-2.12l2.08,0.73l4.98,2.67l3.82,-0.06l0.37,-0.29l-0.17,-0.44l-2.99,-2.12l0.16,-1.12l-0.58,-0.94l-0.59,-0.1l-1.5,0.89l-1.41,0.0l1.13,-0.58l0.0,-0.86l-1.41,-0.86l4.05,-1.84l4.51,2.11l0.53,-0.14l-0.12,-0.54l-9.35,-6.31l-0.01,-2.06l0.14,-0.92l0.52,-0.45l4.54,-2.08l1.47,-1.27l1.02,-1.94l-0.42,-0.59l1.4,-6.78l1.22,-1.13l10.89,1.87l1.93,0.98l1.38,1.38l0.47,2.6l0.74,1.81l-0.26,2.05l-0.9,1.81l0.06,0.49l0.49,0.05l1.59,-0.99l0.82,-1.3l0.55,-4.49l1.21,-1.7l-0.2,-1.44l3.47,3.27l3.81,1.99l1.83,0.63l0.05,0.75l-0.63,1.78l-4.11,3.4l-4.03,7.29l0.41,0.57l1.82,-0.29l5.1,-4.39l0.77,-0.33l0.75,-2.08l3.06,-1.47l1.59,-1.23l2.4,-6.26l1.87,-0.64l3.6,0.54l3.57,1.23l4.01,2.3l-0.03,2.37l-1.95,1.79l-1.28,2.3l-2.65,5.37l0.04,0.45l0.44,0.12l1.61,-0.57l1.52,-1.18l2.36,-2.68l0.08,-1.65l4.33,-3.49l3.25,-1.76l3.0,-0.91l1.57,0.4l2.68,1.91l1.96,0.42l0.45,-0.22l-0.12,-0.49l-0.76,-0.58l1.87,-2.18l0.76,-0.1l2.82,0.82l1.0,-0.42l0.79,-1.72l0.74,-0.29l3.18,0.0l2.8,0.44l1.1,-0.58l1.84,-3.0l0.62,-0.33l0.59,-0.11l2.16,2.87l2.17,-0.23l7.47,0.94l7.5,-0.96l3.8,-1.38l5.91,-3.46l3.26,-1.2l5.32,-0.79l2.68,0.06l1.25,0.46l-0.58,0.39l-0.04,0.67l2.36,1.58l2.51,-0.17l4.82,-1.32l4.69,1.65l2.51,0.0l0.36,-0.23l1.15,-2.54l-0.24,-0.54l-2.94,-1.33l-1.32,-1.23l-0.75,-1.4l1.73,-1.8l1.14,-0.58l1.1,0.15l0.78,2.72l1.02,0.78l2.75,-0.01l5.65,-1.37l3.33,-0.26l4.6,2.51l2.94,0.02l5.61,-0.88l2.49,0.84l-0.44,1.89l-1.67,2.67l-0.39,1.78l-2.98,4.31l-2.22,1.65l-0.71,0.91l-1.03,2.55l-0.03,2.2l0.97,1.72l2.21,1.07l2.69,-0.66l0.44,0.45l0.24,1.26l-0.31,0.93l-1.72,1.08l-0.79,4.38l-3.7,5.58l-4.55,5.12l-3.21,2.83l-3.53,1.59l-7.55,2.08l-3.19,1.52l-4.6,3.6l-0.91,1.36l-0.65,2.02l-1.55,2.02l-3.57,3.11l-18.97,12.07l-6.49,2.59l-1.69,1.36l-2.06,4.73l-2.74,1.44l-2.82,0.53l-6.36,3.39l-0.79,0.99l-0.37,1.87l-0.89,-0.41l0.35,-0.46l-0.17,-0.61l-1.32,-0.52l-2.15,-0.22l-2.42,-1.13l-0.48,0.11l-0.49,0.85l0.3,1.17l0.88,1.23l1.49,0.82l2.63,0.09l1.19,0.45l2.13,2.65l-1.67,2.22l-0.42,1.29l0.24,1.15l-3.3,-0.78l-1.45,0.0l-1.07,0.62l-2.04,1.95l-2.22,-0.05l-4.91,-1.97l-2.47,-0.53l-7.01,1.4l-1.72,-0.93l-2.75,-2.98l-1.72,-1.22l-1.87,-0.53l-0.44,0.17l0.03,0.47l4.57,5.34l2.99,1.92l3.53,0.56l3.45,-1.28l1.6,-0.22l2.92,2.46l2.05,1.15l1.62,0.01l0.38,-0.49l-0.29,-1.24l4.77,2.55l3.15,0.67l5.04,-3.0l2.5,0.45l1.22,1.25l-0.98,1.35l0.24,0.63l3.04,0.61l3.32,-1.19l3.1,-2.28l3.65,-3.86l0.67,0.09l0.43,0.92l-0.22,1.83l-0.61,0.98l-11.71,11.94l-2.03,1.29l-3.28,3.5l-1.5,0.24l-1.08,-0.4l-0.31,-0.89l0.99,-1.8l-0.11,-0.51l-2.67,-1.81l-3.15,0.93l-6.66,4.68l-1.04,0.36l-2.21,0.12l-5.58,1.22l-3.08,-0.18l-0.35,0.24l-1.18,3.06l-2.46,1.17l-6.45,5.3l-1.5,3.31l0.29,0.53l0.72,0.04l3.81,-1.59l1.32,-1.03l3.1,-3.58l3.88,-1.86l3.37,-2.71l3.58,-1.45l1.39,0.23l1.29,1.17l4.36,0.76l1.98,-0.05l2.69,-1.84l3.66,-1.81l0.91,-0.12l0.28,1.06l-1.67,2.41l-2.45,2.38l-2.6,1.61l-3.04,3.8l0.56,1.63l-3.12,0.24l-1.81,0.8l-1.58,1.57l-0.04,0.51l0.47,0.67l-1.92,-0.46l-4.73,0.0l-0.4,0.4l0.0,0.93l0.41,0.4l2.44,-0.06l1.74,0.58l-1.38,2.5l-1.9,2.18l0.2,0.68l3.13,0.66l1.79,0.05l1.94,-0.82l2.19,-2.45l2.68,-0.5l2.94,-2.85l4.09,-1.52l0.18,-0.61l-0.99,-1.37l-2.2,-1.58l9.0,-0.92l8.28,0.63l2.79,-0.64l13.27,-7.69l4.34,-0.79l-1.35,1.73l0.05,0.64l1.38,0.78l3.64,-0.73l0.28,-0.58l-1.34,-2.51l4.08,0.8l1.9,-0.31l1.31,-0.79l1.46,-1.46l0.82,-1.59l-0.41,-1.56l0.64,-0.97l2.59,0.44l4.38,-1.69l10.63,0.36l6.46,3.3l11.38,3.07l3.89,0.12l3.71,-0.92l5.31,-2.99l1.34,-0.37l13.54,-0.0l1.23,1.33l1.07,0.44l2.39,-0.73l1.18,0.73l2.83,-1.07l7.28,1.97l2.64,-0.09l1.25,1.56l0.42,0.14l0.69,-0.19l0.79,-1.04l0.93,-0.47l1.38,0.13l4.03,1.62l0.48,-0.15l0.47,-0.71l2.13,0.88l3.3,-1.75l1.64,0.78l1.45,0.08l1.29,-1.92l1.32,-0.66l1.69,0.25l3.77,1.81l1.99,0.49l2.38,-0.42l5.11,-3.01l1.29,-0.25l9.18,0.26l1.36,2.54l1.05,0.88l1.06,0.1l1.59,-0.98l0.78,0.02l1.48,2.11l7.26,6.34l0.73,2.0l0.79,4.46l1.32,2.02l-0.28,2.43l0.98,1.45l1.77,1.56l-0.61,0.22l-0.58,0.94l0.02,1.31l1.64,1.04l-2.22,1.65l-3.55,3.77l-1.54,2.3l-0.26,1.72l-8.91,6.52l-2.36,2.87l-5.57,11.53l-2.1,6.54l-0.49,2.53l0.23,2.43l1.7,1.22l0.18,0.74l-1.33,2.2l-7.8,9.78l-2.74,4.61l-1.14,4.65l1.19,2.71l-0.01,1.31l-1.97,2.24l-0.89,2.86l-1.17,1.27l-3.01,1.9l-4.41,5.53l-1.34,1.26l-4.83,2.43l-3.11,2.57l-1.29,2.17l-0.93,5.32l-2.21,2.73l-0.87,1.82l-0.03,1.26l0.57,2.19l-1.99,2.11l-0.88,2.06l-1.25,1.23l-8.07,4.57l-1.58,2.64l-5.11,2.34l-0.82,1.01l-1.57,3.11l-0.52,0.19l-1.23,-0.76l-1.22,-0.27l-25.71,2.97l-3.35,1.21l-3.07,1.87l-9.02,7.25l-3.46,1.15l-3.63,-0.95l-0.44,0.18l0.04,0.48l1.04,1.15l1.7,0.57l3.8,0.01l1.89,-0.4l3.7,-1.75l3.38,-0.67l17.26,-6.91l1.82,-2.05l1.72,-0.86l1.9,-0.25l3.07,1.95l2.86,0.19l0.87,1.28l0.15,2.16l-0.6,2.07l-2.54,3.4l0.37,0.26l1.95,0.0l0.92,2.49l2.26,0.68l0.82,0.95l7.86,0.48l1.79,0.72l6.59,4.54l0.0,0.35l-4.46,3.46l-1.6,2.41l-1.89,0.71l-4.26,0.78l-5.44,2.95l-1.83,0.41l-2.01,-0.27l-5.41,-2.23l-4.15,-0.06l-2.2,0.47l-1.77,2.12l-4.58,2.59l-4.76,4.32l-3.26,1.25l-0.99,1.42l-1.2,4.08l-0.9,1.65l-1.1,0.6l-6.09,0.28l-8.12,3.5l-3.31,0.45l-3.32,-0.18l-13.96,-3.27l-7.74,0.1l-3.23,-0.86l-3.0,-1.69l-3.14,-2.41l-1.79,-1.81l-1.3,-0.7l-1.95,-0.09l-0.41,0.4l0.21,1.11l5.11,2.85l0.69,0.88l0.77,0.4l3.32,4.95l1.02,0.42l2.17,-0.21l1.66,2.19l1.23,0.32l4.86,-0.85l1.86,0.02l14.85,3.32l4.17,0.01l2.18,-0.54l2.55,2.02l15.63,1.01l2.56,2.48l1.29,0.26l5.61,-0.46l6.66,-2.34l2.11,-1.47l2.79,-3.26l2.01,-0.19l0.34,-0.52l-0.92,-2.3l3.77,-3.28l1.61,-0.57l14.38,0.82l1.51,0.54l2.39,2.64l1.36,0.72l-1.06,2.23l0.22,0.62l1.39,0.35l2.07,-0.31l1.19,0.68l0.52,-0.11l1.52,-1.37l4.59,2.86l3.33,0.87l5.44,3.64l3.8,1.64l14.56,2.43l0.9,3.07l2.53,0.98l1.57,1.42l4.65,7.29l-3.4,1.02l-1.08,0.77l-0.64,2.99l-0.55,1.07l-2.05,1.78l-1.82,0.75l-2.62,1.97l-1.25,2.3l-5.23,6.16l-1.94,0.52l-4.53,0.29l-0.96,0.65l-0.22,0.87l0.42,1.59l2.04,1.23l0.44,1.31l1.48,1.44l1.91,4.81l3.44,4.92l0.38,2.26l2.43,2.96l0.11,0.67l-0.43,0.96l-1.87,1.82l-1.73,0.92l-3.53,0.81l-2.02,1.58l-2.58,0.95l-0.64,0.51l-1.31,2.68l-1.01,1.1l-2.21,0.84l-2.13,-1.14l-1.33,-0.17l-2.26,0.34l-1.03,0.41l-7.69,5.57l-6.32,5.94l-0.27,1.52l0.62,1.49l-0.51,1.67l-3.11,1.76l-3.1,3.97l-1.79,1.42l-2.34,1.3l-5.26,1.75l-1.36,0.81l-5.29,6.24l-3.87,1.84l-1.51,2.68l-0.64,0.54l-1.75,0.11l-3.8,-1.5l-0.89,0.39l-0.42,0.78l-0.21,3.57l-1.09,1.81l-0.38,2.06l-7.05,1.55l-27.49,-1.64l-4.03,-1.28l-1.46,0.4l-0.16,0.67l0.32,0.37l-0.99,0.38l-1.18,-0.37l-2.43,-1.74l-0.61,0.2l-1.13,3.29l0.68,1.56l0.58,4.84l-0.15,1.84l-0.87,1.75l-1.22,0.57l-7.98,-0.62l-2.32,0.29l-2.0,2.5l-5.8,-0.73l0.24,-0.42l-0.29,-1.36l-0.4,-0.49l-0.62,0.02l-1.0,1.3l-1.3,1.02l-0.14,0.44l0.42,1.3l-1.43,0.85l-0.03,0.65l2.52,2.04l-4.89,1.88l-6.72,4.1l-3.99,0.43l-2.29,-0.13l-0.25,-0.89l-0.78,-0.3l0.42,-0.77l-0.15,-1.32l0.34,-1.64l-0.19,-1.22l-1.19,-0.66l-0.02,-0.3l-0.63,-0.3l-1.26,0.89l-1.11,1.85l-0.35,2.19l0.65,1.62l-2.73,0.38l-4.22,-2.21l-2.89,-3.87l0.72,-4.64l-0.57,-0.42l-1.4,0.71l-2.05,2.11l-1.22,0.49l-1.14,-0.12l-7.3,-3.05l-0.68,-0.75l-1.84,-3.89l-2.0,-0.36l-1.3,1.88l-0.86,2.88l0.82,3.05l1.29,2.64l2.82,0.49l1.0,0.57l0.91,0.99l0.23,1.28l-1.15,2.78l1.14,1.87l-1.01,1.77l0.7,4.67l-1.84,2.08l-0.73,0.21l-1.85,-0.22l-1.76,-0.63l-3.04,-1.65l-3.1,0.05l-0.61,-0.38l-4.98,-6.16l-2.99,-2.37l-10.2,-5.11l-3.95,-0.92l-1.69,-0.85l-1.78,-3.47l-1.99,-0.67l-3.43,0.07l-2.15,0.78l-3.75,2.76l-2.13,2.66l-0.52,1.56l0.65,3.48l0.66,1.24l0.91,0.62l2.91,6.87l2.45,1.77l-0.45,4.14l0.76,1.93l-4.62,-1.8l-1.74,-0.37l-0.67,-0.68l-0.49,-1.73l0.07,-1.76l0.92,-1.0l0.01,-0.53l-0.91,-1.36l0.33,-1.49l-0.33,-0.55l-1.57,-0.14l-1.03,-0.52l-1.39,-4.39l-0.95,-0.74l-1.67,-0.63l-8.14,-7.9l-2.45,-3.55l-1.56,-4.17l-0.44,-4.7l0.26,-4.28l0.54,-2.02l1.0,-0.77l2.92,-0.14l0.78,-1.41l3.36,4.98l0.4,1.18l-0.06,4.14l0.48,1.39l1.21,1.36l1.62,1.16l1.86,0.11l1.6,-1.39l0.7,-1.1l-0.06,-1.03l-3.09,-5.01l-1.96,-4.6l-0.26,-1.31l0.22,-3.34l2.47,-5.58l0.26,-2.51l0.68,-2.08l1.57,-1.28l3.63,-1.91l5.58,-6.08l1.41,-0.62l0.24,-2.33l2.31,-5.14l-0.13,-3.93l0.54,-1.64l5.12,-4.6l1.33,-4.11l0.75,-1.27l2.68,-1.94l5.87,-2.27l2.18,-2.59l0.74,-3.29l-0.88,-3.29l-2.08,-2.1l-2.73,-0.8l1.5,-2.03l-0.5,-2.87l-1.87,-2.52l-2.72,-1.84l-4.72,-1.66l-3.18,-0.3l0.5,-0.98l-0.21,-1.26l-4.99,-2.61l-2.75,-1.99l-1.4,-1.63l3.52,-2.99l1.46,-2.95l-0.39,-4.21l-1.49,-3.7l-0.85,-8.62l0.52,-3.14l1.16,-2.0l1.85,-1.26l4.16,-1.14l1.07,0.1l5.53,2.06l1.46,0.2l1.02,-0.32l1.83,0.89l14.42,1.79l2.34,-1.17l0.21,-0.42l-0.33,-0.33l-12.79,-2.18l-3.65,-1.84l-4.38,-4.41l-3.6,-1.14l-1.5,-1.22l-2.27,-3.07l-1.16,-4.11l-0.32,-0.36l-1.29,-0.26l-0.44,0.22l-0.48,1.12l0.07,1.34l0.54,1.51l4.14,5.01l0.87,1.98l-0.36,0.64l-1.36,0.2l-2.02,-0.03l-1.83,-0.62l-0.82,-1.52l-0.26,-2.11l-0.01,-5.54l3.34,-6.93l6.11,-7.81l0.47,-1.91l-0.49,-0.82l-0.51,-0.08l-1.02,0.62l-1.23,1.36l-4.95,8.17l-1.11,1.29l-1.46,0.06l-0.45,-0.67l0.13,-3.72l-0.36,-1.65l-0.96,-1.4l-1.39,-0.49l-1.55,1.22l-0.09,0.45l0.98,2.17l1.19,4.26l0.77,4.12l-0.21,1.59l-1.13,0.57l-0.21,0.92l0.54,6.63l0.36,1.12l-0.72,0.29l-4.07,-1.29l-0.49,0.39l0.26,1.21l2.13,0.99l0.79,0.84l0.36,1.22l-0.29,1.58l-2.54,3.18l-1.07,3.79l-0.79,1.16l-1.1,0.96l-0.82,0.12l-2.55,-0.44l-1.24,-1.2l-1.2,-3.01l-1.31,-6.05l-3.4,-3.62l-0.47,-1.57l-0.66,-1.0l-0.55,-0.12l-1.39,0.87l-0.12,0.56l1.36,1.98l3.27,6.58l0.59,2.35l-0.47,0.78l-1.3,-0.36l-5.57,-3.63l-0.7,-1.39l0.0,-2.45l-0.25,-0.37l-0.44,0.1l-0.95,1.03l-0.76,1.61l-1.11,3.78l-2.51,2.91l-0.04,0.47l2.9,5.25l0.46,1.63l-0.97,0.0l-3.71,-1.71l-2.86,-0.83l-0.74,-0.78l-0.65,-3.16l-1.77,-1.29l-0.25,-0.72l0.0,-3.24l1.04,-2.28l0.19,-1.16l-1.18,-4.44l2.0,-1.82l9.38,-12.98l4.9,-1.63l3.76,-2.33l0.93,-0.83l3.06,-5.56l1.31,-1.52l2.52,-1.33l3.36,-1.17l3.02,-1.76l1.85,-3.39l-0.07,-0.47l-0.47,-0.07l-1.52,0.83l-3.23,2.82l-1.34,0.56l-3.46,0.22l-1.67,0.58l-1.4,1.06l-3.01,5.78l-0.73,0.79l-10.27,5.53l-7.24,8.73l-2.94,0.8l-1.01,3.77l-1.05,1.34l-1.65,0.4l-3.37,-0.47l-0.27,-2.2l-0.56,-0.26l-0.82,0.49l-0.34,0.8l-0.61,8.11l0.55,0.68l1.64,0.62l1.5,5.7l1.03,0.89l-0.59,0.56l0.0,0.83l0.93,0.74l-0.74,0.58l-0.05,0.64l4.77,4.09l2.09,2.8l0.73,2.92l-0.5,1.44l-1.04,0.69l-2.87,0.74l-1.41,0.78l-4.08,3.65l-1.81,2.53l-0.65,1.57l-0.63,4.05l-1.71,1.05l-0.17,0.46l0.65,1.39l-0.01,2.98l0.79,0.74l1.06,0.29l0.49,0.91l-0.41,1.24l-1.28,0.46l-1.19,1.13l0.52,2.11l-2.3,3.97l-0.11,3.69l-0.57,-0.01l-0.5,0.45l-1.91,4.01l-1.3,1.55l-2.15,1.3l0.0,0.75l0.45,0.4l1.7,0.12l1.46,1.44l1.56,3.31l0.76,0.6l-0.71,1.48l-4.17,4.33l-3.5,1.8l-1.94,0.31l-3.53,-0.89l-3.94,1.73l-2.4,-0.03l-1.34,-0.41l-0.8,-1.3l-1.0,-5.09l-0.17,-2.67l0.42,-2.15l2.34,-1.57l3.29,-3.09l0.97,-1.54l0.04,-2.54l-0.57,-5.4l1.19,-3.79l-1.17,-2.43l0.28,-1.19l2.04,-3.6l1.86,-4.36l0.34,-2.44l-0.85,-1.61l4.39,-2.97l1.3,-3.22l2.67,-3.74l1.06,-0.7l2.55,-0.9l3.06,-2.31l2.7,-3.2l1.66,-3.76l-0.13,-0.48l-0.5,0.03l-8.36,7.54l-3.96,2.28l-0.48,0.02l0.38,-1.02l-0.26,-0.52l-3.42,-1.24l-1.08,-1.09l-0.6,-1.52l-0.09,-3.19l-0.37,-0.89l3.52,-4.25l1.09,-2.58l2.8,-2.4l1.32,-1.36l0.04,-0.5l-0.48,-0.15l-1.95,0.8l-3.02,2.79l-2.2,0.91l-1.55,1.28l-0.45,0.01l-0.45,-0.6l-0.66,-2.44l9.38,-11.58l0.78,-1.6l-0.2,-0.64l0.79,-0.87l-0.18,-0.63l-1.41,-0.38l-3.63,1.99l-0.71,2.41l-3.65,3.36l-0.06,2.87l-1.5,2.23l-0.58,-0.56l0.93,-4.65l3.1,-4.92l6.5,-7.48l0.62,-1.47l1.34,0.19l1.62,1.14l0.68,0.06l0.43,-0.33l0.09,-0.97l-0.5,-0.9l-1.28,-0.9l-0.64,-2.68l3.07,-4.14l1.15,-2.84l-0.47,-0.51l-2.81,0.71l-3.69,4.0l-1.13,0.73l1.43,-3.98l3.06,-4.24l-0.61,-1.82l0.84,-1.03l4.44,-1.54l0.41,-1.19l-0.82,-1.34l-1.39,-0.41l-3.68,0.94l-2.36,1.74l-0.47,-0.07l-0.37,-0.77l0.19,-1.22l0.95,-2.57l1.03,-4.52l0.79,-1.48l1.4,-1.23l1.57,0.69l2.34,-0.21l4.42,-1.41l0.28,-0.38l0.0,-0.76l-0.42,-0.4l-2.16,0.13l-3.66,0.97l-1.33,-0.24l2.12,-4.41l2.72,-1.51l-0.17,-1.23l1.96,-2.17l2.75,-1.07l8.6,-0.6l6.94,1.56l3.2,-0.63l2.39,-1.63l5.49,-5.91l2.88,-5.08l1.8,-1.98l0.03,-0.5l-0.48,-0.14l-2.09,0.97l-3.36,5.83l-3.49,2.47l-2.89,3.37l-3.52,0.34l-9.16,-1.68l-2.51,1.64l-1.04,-0.59l-1.36,-4.54l-0.52,-0.26l-1.33,0.54l-2.5,3.47l-0.53,-0.34l2.89,-5.56l0.36,-1.25l1.72,1.32l2.12,0.67l2.21,-0.06l1.67,-0.59l4.1,-2.5l2.23,-0.82l1.19,-0.72l0.91,-1.08l0.01,-0.5l-0.49,-0.11l-2.86,1.39l-3.03,0.18l-4.34,2.46l-0.86,0.19l-0.85,-0.31l-1.34,-1.2l-0.91,-0.17l1.33,-1.55l0.87,-2.11l2.21,-3.33l4.23,-3.29l1.17,-1.68l-0.14,-0.58l-1.47,-0.8l0.0,-0.43l2.39,-1.52l3.47,0.03l2.43,-1.73l1.77,0.0l3.69,0.91l1.97,-0.4l3.44,-1.8l7.04,-1.3l1.49,-0.82l0.18,-0.48l-0.45,-0.26l-14.18,2.46l-6.38,-2.42l1.29,-2.51l5.82,-5.01l1.64,-2.09l1.47,-2.47l-0.07,-0.5l-0.5,-0.03l-5.14,3.6l-1.19,1.87l-0.79,0.6l-2.68,1.03l-0.93,3.18l-1.08,1.74l-1.04,0.96l-3.5,0.78l-0.93,1.14l-1.86,0.61l-1.69,2.25l-2.41,2.36l-3.98,1.5l-1.34,2.32l-2.9,1.38l-4.43,4.99l-5.69,5.35l-6.16,3.83l-0.53,-0.32l-1.16,-1.71l-3.97,-1.15l-2.19,-1.49l1.52,-2.77l0.19,-1.31l-0.4,-0.45l-0.95,0.13l-3.07,3.37l-4.94,-0.84l-12.76,-8.3l-0.45,-0.77l0.12,-1.68l0.71,-0.75l1.11,-0.32l4.24,-0.23l2.9,0.47l2.69,1.1l2.35,1.82l0.57,-0.09l0.65,-0.92l-0.11,-0.57l-2.75,-1.99l-0.01,-0.81l8.88,-4.71l1.94,-0.18l5.36,2.2l2.36,0.39l4.61,-0.26l2.6,-0.54l1.93,-1.0l0.2,-0.47l-0.42,-0.28l-7.99,0.83l-1.79,-0.24l-4.39,-2.2l-3.56,-0.74l-9.65,4.12l-4.0,0.75l-4.15,-1.67l-6.06,0.35l-6.45,-1.39l-2.4,0.25l-3.1,2.05l-1.97,-0.33l-2.96,-1.66l-0.99,-1.89l0.04,-1.56l0.83,0.18l0.64,-0.3l2.0,-2.39l0.98,-0.66l13.2,-1.12l5.34,-2.59l1.27,0.25l2.96,2.29l5.31,2.06l0.61,-0.37l-0.53,-2.74l-0.98,-1.07l-1.44,-0.47l1.65,0.0l1.82,0.89l0.5,-0.05l1.19,-1.18l1.76,-0.47l3.83,0.84l0.47,-0.27l-0.24,-0.49l-6.43,-2.5l-1.48,-1.39l-0.02,-0.98l0.94,-0.75l8.86,-1.0l3.65,-1.27l2.92,-2.3l-0.11,-0.69l-1.32,-0.46l-1.71,0.18l-1.61,0.74l-1.25,1.88l-1.49,-0.03l-2.83,-0.59l0.42,-0.7l3.4,-2.94l-0.2,-0.7l-4.03,-0.57l-8.09,1.42l-2.1,-0.45l4.08,-0.37l0.38,-0.4l-0.21,-1.26l-2.0,-1.44l1.29,-1.28l2.64,-7.76l1.42,-1.43l2.34,-1.32l2.54,-0.7l2.04,0.31l3.45,4.13l2.81,1.38l2.98,0.35l4.7,-0.89l4.23,-1.67l0.25,-0.37l0.0,-0.85l-0.49,-0.39l-4.04,1.29l-1.38,-0.4l-1.81,1.0l-1.68,-0.37l-4.6,-2.03l0.42,-3.05l-2.1,-1.46l-3.65,0.79l-3.12,-1.64l-0.64,-0.63l1.1,-1.74l5.07,-5.34l3.45,0.14l2.47,-1.26l1.97,0.61l3.63,2.17l1.95,0.8l8.52,0.08l1.29,-1.3l1.2,-0.06l2.07,0.54l0.59,0.0l0.4,-0.4l-0.22,-1.28l-1.93,-0.89l-7.26,0.99l-3.02,0.76l-3.68,-3.29l-7.28,-1.77l-0.85,-1.01l0.53,-1.83l2.97,-3.33l1.18,-1.77l-0.02,-0.46l-1.41,-1.85l1.81,-2.05l3.5,-1.75l2.79,-0.48l2.62,1.55l2.77,2.59l2.93,1.73l3.68,-0.81l0.3,-0.39l0.0,-0.84l-0.33,-0.39l-3.52,-0.65l-2.83,-3.13l-1.42,-0.97l0.93,-1.52l1.97,-1.67l2.02,-0.62l0.28,-0.38l-0.27,-1.31l-2.46,-0.65l-1.45,1.02l-1.15,1.57l-0.91,0.69l-1.51,0.39l-2.99,1.68l-1.61,0.44l-1.69,-0.18l-3.25,-1.2l-1.76,-0.31l-3.84,0.95l-1.47,-0.09l-0.56,-1.25l2.22,-4.06l3.78,-2.45l1.28,1.55l2.36,-0.16l9.87,-3.68l4.02,-3.05l0.74,-3.51l-0.32,-0.48l-1.79,-0.19l-2.38,1.93l-3.9,4.29l-2.08,1.25l-5.18,-1.17l1.06,-0.56l0.83,-1.16l-1.09,-3.45l-0.43,-0.32l-0.58,0.11l-1.43,1.08l-5.76,5.94l-2.06,0.82l-4.37,0.5l-1.74,-0.68l-1.27,-4.21ZM416.76,749.92l-0.51,0.51l0.11,0.8l-0.39,-0.05l-0.7,-0.85l0.66,-1.0l0.83,0.6ZM568.83,93.58l-1.01,1.14l-1.76,-0.58l-1.5,-1.07l-0.45,-0.58l0.12,-0.65l1.69,-1.12l2.58,-0.05l0.35,2.92ZM513.81,213.95l0.38,-2.67l0.46,-0.51l1.99,-1.0l2.9,-3.5l1.89,-0.41l0.79,-0.68l0.38,-1.78l-1.27,-1.52l1.34,-0.05l3.44,-1.58l1.68,-0.1l0.0,0.28l-2.4,1.44l-2.21,2.1l0.19,0.68l1.5,0.73l0.93,-0.68l2.94,-0.52l2.19,-1.85l3.91,-0.46l2.05,-2.34l1.11,-0.78l0.93,3.32l-3.62,0.15l-1.79,0.67l-0.86,1.5l-0.98,0.77l-2.21,3.62l-0.27,0.12l-0.1,-2.2l-0.43,-0.38l-1.69,0.23l-2.62,2.39l0.14,-1.25l-0.57,-0.36l-1.57,0.72l-0.45,-0.04l-0.53,-0.58l-0.59,-0.0l-3.19,3.39l-1.61,1.25l-1.32,-0.31l-0.49,0.34l-0.37,1.89ZM517.81,224.98l-1.26,1.05l0.19,1.67l-1.35,0.37l-0.85,-0.63l1.47,-1.99l1.79,-0.47ZM519.01,224.7l0.87,-0.55l0.34,-1.82l-3.4,-3.1l2.43,-0.65l0.79,0.08l-0.49,1.11l0.36,0.59l2.62,-0.0l-0.87,0.79l-0.2,1.15l1.09,1.48l1.43,0.35l2.07,-0.68l-0.49,1.76l0.68,0.91l1.84,0.9l-0.99,0.84l-3.64,0.43l-1.43,0.65l-0.25,-2.54l-1.29,-1.45l-1.48,-0.26ZM473.09,221.12l3.19,2.37l3.1,-0.5l0.73,0.44l1.65,1.7l-1.12,0.47l-0.2,0.7l1.74,1.48l4.06,1.77l-0.5,0.67l0.11,0.53l0.52,0.4l-4.23,1.31l-0.66,-0.24l-0.51,0.24l-0.7,1.97l-1.62,1.78l-1.89,1.28l-1.47,0.38l-0.12,0.72l1.4,0.93l1.68,0.53l3.34,0.35l1.57,-0.9l1.38,-1.6l1.21,-0.73l3.35,2.25l1.22,-0.26l2.26,-1.25l1.12,0.54l1.92,1.93l1.07,-0.37l-0.35,1.72l0.32,0.5l1.79,0.29l3.14,-1.67l3.33,-0.54l0.6,0.18l0.28,0.49l-0.43,0.97l-4.76,2.97l-0.09,0.52l1.07,1.75l1.24,1.05l1.64,0.47l1.86,-0.33l0.29,-0.56l-1.44,-3.05l1.06,-0.1l2.85,-1.46l1.24,-0.19l0.98,0.41l0.42,0.81l0.09,3.12l-0.56,0.7l-1.51,0.62l-3.26,0.56l-1.26,0.68l-2.07,2.94l-1.18,0.71l-1.17,-0.12l-6.46,-2.07l-0.93,-0.66l-3.98,-6.14l-1.06,-0.99l-1.31,0.28l-2.42,2.18l-1.43,-0.29l-1.05,0.52l-2.62,-0.52l-0.38,0.62l0.77,1.15l-1.86,-0.13l-1.22,0.47l-0.53,1.25l-1.92,-0.59l-5.05,0.65l-1.94,-1.45l-0.85,-2.63l0.26,-2.61l1.0,-2.29l1.43,-1.95l-0.09,-1.05l-1.08,-1.56l-0.62,-1.78l-0.55,-0.25l-1.05,0.51l-0.73,0.81l-0.06,1.0l0.48,0.87l-1.26,-0.32l-1.57,0.63l-0.01,0.68l0.69,0.46l0.23,0.59l-0.08,0.91l0.58,1.85l-0.6,0.96l-2.02,1.55l-0.16,0.59l-2.29,-0.68l-2.47,-3.1l-1.11,-4.04l1.95,-4.73l-0.53,-5.63l2.16,-3.55l3.7,-1.97l4.07,-0.61l4.1,0.16l2.18,0.6ZM506.84,207.27l-0.4,0.4l0.0,0.86l0.47,0.39l1.93,-0.05l0.66,0.49l0.44,0.9l-2.85,3.98l0.25,3.91l0.68,1.04l1.37,0.46l-3.55,0.78l-0.42,-0.31l-0.27,-1.54l-0.84,-1.37l-1.26,-0.85l-1.14,-0.24l0.0,-1.62l0.74,0.38l0.88,-0.07l2.19,-0.96l-0.5,-5.19l0.29,-1.11l0.68,-0.55l0.89,0.07l-0.25,0.19ZM489.0,203.03l-1.37,1.34l-1.84,-0.85l-2.14,-4.73l-0.93,-1.1l-1.93,-0.54l-0.14,-0.54l3.98,0.47l1.6,-0.48l2.54,-2.75l1.06,-0.61l1.22,0.74l-1.39,1.17l0.05,1.66l-1.78,-0.02l-0.46,0.4l0.0,0.87l0.31,0.39l7.79,2.07l2.09,3.97l1.14,0.62l1.74,0.31l0.59,0.9l-1.54,0.05l-1.13,0.7l-1.19,1.27l0.42,-1.4l0.61,-0.77l-0.07,-0.57l-4.27,-3.18l-2.42,-1.08l-2.48,-0.27l-0.44,0.4l0.0,0.95l0.41,0.6ZM486.81,263.79l1.89,-0.08l1.14,-0.61l0.2,-1.29l-0.4,-0.4l-5.52,-0.11l3.04,-1.03l3.74,-0.59l3.88,0.24l1.68,0.62l-0.1,1.01l-2.24,1.12l-0.73,0.82l-0.15,1.14l0.57,1.48l-0.85,0.58l-0.14,0.49l1.27,3.66l-0.48,1.06l-1.55,0.79l-3.8,-3.1l0.0,-0.56l1.01,-0.79l0.11,-0.49l-0.96,-2.0l-1.61,-1.95ZM482.26,214.17l0.51,1.15l0.88,0.6l1.33,0.11l3.52,-0.65l1.0,0.0l0.99,0.42l-2.01,1.98l0.08,3.75l-2.22,0.64l-2.64,-0.14l-2.44,-0.56l-2.17,-1.12l-1.85,-1.86l-0.43,-2.02l1.36,-1.52l2.27,-0.86l1.82,0.07ZM465.24,252.46l4.23,5.0l-0.84,0.54l-0.18,1.28l0.37,0.4l1.53,0.37l1.1,1.4l-3.51,0.75l-1.84,1.09l-1.16,1.86l0.37,0.6l2.59,-0.14l5.09,-1.87l1.59,0.13l-1.54,1.81l-4.12,0.94l-7.84,-0.01l-2.42,-4.89l-2.6,-1.86l-1.69,-2.47l0.44,-1.54l-0.48,-1.12l-0.84,-0.35l-1.2,0.68l-0.96,-0.58l-1.46,0.0l-0.19,-0.88l1.39,-2.78l1.85,-1.41l3.68,-1.02l0.91,-0.02l4.14,2.81l3.59,1.25ZM312.36,645.88l-0.36,0.48l-0.7,-0.04l-1.82,-3.11l-5.57,-4.18l-0.85,-1.91l-1.16,-4.9l-3.11,-1.89l-2.18,-4.67l0.09,-1.54l2.4,-1.01l2.48,1.68l2.62,2.33l2.04,0.81l0.59,2.81l2.14,1.35l1.0,1.54l1.37,3.18l0.88,3.69l-1.53,2.83l0.16,0.54l0.85,0.47l0.56,0.78l0.13,0.76ZM288.43,647.14l2.26,0.02l5.53,2.22l1.45,1.08l1.73,2.19l1.18,2.51l1.68,5.8l-0.9,1.49l0.09,0.52l3.61,2.98l0.17,2.28l-1.86,0.34l-0.8,0.42l-0.2,0.47l0.65,1.84l3.5,1.47l-1.37,1.04l0.2,1.72l0.86,1.83l0.19,1.72l-0.99,0.92l-2.12,0.73l-3.88,0.58l-4.57,-0.37l-3.89,-1.1l-3.54,-1.78l-3.36,-2.35l-0.05,-1.51l-1.13,-4.15l0.0,-0.54l1.11,-1.56l-0.03,-0.49l-2.12,-2.4l-1.56,-2.35l-0.73,-2.77l0.42,-3.79l1.12,-2.52l2.03,-2.53l2.55,-1.79l2.83,-0.42l0.31,-0.55l-0.37,-1.21ZM268.84,562.63l-1.9,2.02l-1.74,0.65l-1.68,-0.05l0.67,-1.31l1.23,-1.24l3.41,-0.07ZM262.3,573.87l-1.5,2.65l0.42,1.55l-1.47,0.72l-1.28,-0.65l-0.47,-1.65l1.06,-2.21l0.85,-0.53l2.38,0.11ZM260.24,581.77l0.07,0.69l-1.51,3.51l-0.67,3.17l-1.81,-3.28l0.8,-1.09l0.92,-2.83l0.7,-0.62l0.66,0.51l0.82,-0.06ZM206.25,572.45l0.7,-0.25l4.02,0.65l1.45,-0.61l1.39,-1.05l5.88,-0.97l4.03,-2.28l1.71,-1.39l0.05,-0.57l-0.92,-0.74l-1.81,0.4l-5.03,2.2l-4.12,0.83l-1.99,-0.11l-1.49,-1.04l-0.33,-1.06l0.32,-1.02l0.71,-0.78l1.97,-0.53l0.84,-0.69l1.98,-4.36l0.62,-0.62l3.83,0.02l5.17,-1.92l1.27,-0.89l0.53,-1.37l0.06,-1.19l-0.39,-1.17l-1.32,-0.98l-5.53,2.26l-1.91,0.25l-1.92,1.01l-0.58,-0.45l-2.17,-3.62l-1.22,-1.05l-1.9,-0.85l-8.06,-1.09l-1.59,-0.59l-2.11,-1.4l3.64,-2.15l0.13,-0.56l-0.79,-1.23l-1.7,-1.5l-0.31,-0.9l2.77,-0.22l2.58,-1.35l1.38,1.23l1.2,-0.03l0.79,-0.81l0.2,-2.18l2.33,-1.42l3.33,-0.82l2.64,-0.24l1.18,0.64l3.69,0.92l-0.43,2.05l0.36,0.51l2.51,0.17l2.0,2.32l3.47,6.57l0.26,1.66l0.5,0.86l1.01,0.25l8.54,0.0l1.85,1.56l1.7,-0.66l1.43,-0.0l3.18,3.22l1.12,0.27l2.0,-0.2l0.87,0.56l2.03,2.41l0.62,1.7l0.87,0.29l1.12,-0.22l0.52,0.28l-0.29,1.58l-2.67,-0.6l-0.41,0.21l0.06,0.45l1.96,2.49l0.51,1.35l-0.75,0.53l-2.63,0.05l-0.89,-0.35l0.12,-1.01l-0.64,-0.85l-0.78,-0.35l-1.33,-0.0l-0.36,0.47l0.25,1.44l-0.9,1.26l-2.79,1.93l-0.17,1.24l0.61,0.34l2.82,-1.33l3.12,-0.36l0.94,0.39l-0.39,0.89l-1.4,1.35l-7.58,4.1l-3.22,0.61l-2.04,-1.08l1.84,-1.94l0.19,-1.32l-0.83,-1.0l-1.36,-0.03l-2.36,0.7l-1.53,2.11l-3.61,0.86l-6.89,2.8l-2.4,1.91l-3.18,-1.07l-3.83,1.74l-7.96,0.0l-0.88,0.62l-0.84,1.58l-0.69,0.3l-2.67,-0.52l-2.3,-1.09l-1.49,-1.29l-1.19,-1.77l-0.47,-2.07l0.68,-1.49l1.69,-0.91l2.05,-0.32l1.54,0.21l1.25,1.17l1.2,1.83l1.21,1.06l0.45,0.05l1.79,-1.22l0.0,-0.84l-0.33,-0.39l-0.98,-0.33ZM186.8,444.56l0.45,-0.69l-0.21,-0.55l-1.15,-0.8l-0.14,-0.81l0.4,-1.29l-0.47,-0.51l-1.29,0.27l-1.99,1.8l0.15,-1.36l-0.32,-1.26l-0.9,-1.1l-0.67,0.1l-0.66,1.51l-1.82,0.76l-1.0,1.1l-0.2,1.84l0.91,2.18l-0.14,1.12l-1.12,0.76l-7.74,-2.07l-1.95,-1.01l-1.52,-1.42l-1.42,-4.89l-3.65,-2.3l-0.7,-2.12l4.77,0.0l0.37,-0.26l-1.96,-2.69l-0.15,-1.32l0.58,-1.42l1.06,-1.23l0.64,-0.25l0.59,0.3l5.89,7.15l1.78,1.08l1.15,0.2l0.45,-0.52l-0.48,-1.99l0.91,-0.71l0.09,-0.64l-2.67,-2.92l0.0,-0.5l0.62,-0.2l0.87,-1.01l1.32,0.13l2.51,0.9l0.51,-0.52l-0.96,-2.41l-2.2,-1.97l-2.73,-1.43l-1.56,-0.34l0.72,-0.81l0.96,-1.99l0.18,-1.79l-1.0,-1.66l1.25,0.01l2.16,2.03l1.77,0.92l0.65,2.79l0.93,0.96l4.7,2.17l3.08,2.82l1.44,-0.01l1.95,-0.53l-1.63,3.09l0.26,0.58l1.24,0.1l1.85,-1.86l0.96,-2.21l0.71,0.28l6.53,6.75l0.44,0.09l0.25,-1.22l-1.23,-1.84l-0.04,-1.82l-1.25,-1.63l-2.93,-2.71l-1.33,-2.41l0.26,-1.02l1.17,-1.28l1.09,-2.54l-0.42,-0.55l-1.88,0.01l-1.12,-0.62l0.3,-1.72l-1.59,-2.51l-0.09,-1.29l4.68,-2.55l1.79,-3.71l1.08,0.3l1.08,-0.49l1.27,1.63l2.82,2.15l2.5,3.48l3.84,2.54l1.61,1.61l1.21,2.08l0.79,8.62l0.98,5.41l-1.17,6.27l-0.4,0.79l-2.3,1.78l-0.79,1.14l0.05,0.52l0.52,0.03l2.4,-1.57l1.38,-0.38l1.04,0.27l0.56,0.96l-1.87,3.02l0.42,2.06l3.04,3.04l-0.46,0.79l-2.87,1.36l-1.18,0.85l-0.14,0.47l0.42,0.26l7.36,-0.77l1.7,0.38l0.21,0.59l-0.79,0.88l-2.09,0.78l-0.26,0.38l0.0,0.85l0.43,0.4l2.36,-0.2l1.97,-0.76l1.55,-0.16l2.67,1.97l3.48,-0.01l1.09,0.42l2.18,3.05l1.52,0.02l1.69,-1.78l3.68,0.03l2.41,-1.89l2.29,-0.66l2.31,0.01l1.62,1.57l5.82,0.0l-1.2,2.7l0.4,2.14l-0.9,1.96l-1.7,1.82l-3.08,2.03l-1.21,0.5l-3.67,0.43l-0.67,1.05l-0.15,2.66l-0.75,1.52l-4.42,2.53l-5.81,6.58l-2.85,1.89l-4.45,0.68l-0.97,-0.35l-0.7,-1.36l0.24,-1.89l2.26,-2.61l-0.15,-1.96l0.69,-0.63l0.64,-1.69l2.16,-2.95l1.64,-1.46l8.28,-3.29l0.25,-1.22l-0.56,-0.37l-2.36,1.02l-2.34,0.54l-7.23,0.11l-0.61,-2.46l-2.09,-2.76l-1.12,-1.11l-1.15,-0.51l-0.54,0.48l1.71,4.14l-1.35,2.4l-0.82,0.67l-0.08,0.53l0.41,0.64l-0.9,0.89l-1.44,2.48l-0.94,0.4l-0.82,-0.71l-1.08,-6.66l-1.31,-0.95l-1.28,0.66l-1.14,-1.06l-0.98,-0.39l-0.85,-0.08l-0.44,0.4l0.15,1.08l0.78,0.62l-0.91,0.49l-11.69,2.39l3.49,-3.54l0.11,-1.05l-0.39,-0.4l-1.7,-0.04l-1.61,0.33l-2.58,1.29l-2.46,-3.58l2.13,-1.39l0.6,-1.1l-0.38,-0.59l-3.91,0.29l-1.28,-0.31l-3.97,-4.14l-0.89,-2.07l-1.28,-1.75l3.67,-2.05l1.59,-0.55l1.75,0.25l4.96,3.85l2.32,0.41l0.4,-0.62l-1.24,-1.76l-5.4,-3.51l-1.72,-1.48l-1.28,-0.21l-2.34,0.6l0.12,-1.14l-0.34,-0.39l-1.4,-0.44ZM250.71,592.72l-1.34,0.14l0.6,-1.29l3.9,-2.72l0.91,2.13l-1.48,1.05l-2.58,0.68ZM245.68,610.28l-7.29,11.45l-1.79,4.61l-0.95,-0.06l-2.08,2.09l-1.54,0.72l-0.63,0.94l-1.44,6.51l-1.97,1.1l-3.18,-0.17l-2.9,-1.52l-1.28,-2.92l-0.75,-5.76l0.16,-2.01l0.77,-1.73l2.72,-1.43l3.84,-2.82l6.7,-1.04l3.0,-1.99l0.16,-0.44l-0.37,-0.29l-2.05,-0.04l-3.25,0.72l-2.67,0.08l-1.05,-1.61l0.97,-2.54l2.38,-3.09l2.61,-2.54l1.68,-1.03l2.71,-0.71l10.99,-8.73l2.45,-1.29l1.5,0.57l0.49,2.56l-0.1,1.29l-4.38,4.34l-3.45,6.79ZM241.16,223.47l0.87,-0.64l0.14,-0.26l0.04,0.57l-1.05,0.34ZM232.99,453.64l-2.41,0.75l-2.08,-0.68l-1.84,-1.51l-0.39,-1.28l1.65,-0.8l2.74,0.45l2.08,1.63l0.25,1.43ZM229.08,420.11l-0.12,-0.32l0.43,-0.54l0.76,-0.47l0.29,0.29l-1.06,4.6l-0.03,1.49l-0.64,-0.27l-0.44,-1.07l0.21,-1.47l0.96,-1.49l-0.35,-0.76ZM227.18,427.36l0.9,1.02l-0.33,1.71l-2.69,8.1l0.08,3.81l1.89,3.11l0.41,1.71l-5.16,2.36l-1.05,-0.52l0.53,-1.37l-0.06,-0.46l-0.86,-0.95l-0.14,-1.91l0.69,-7.93l0.59,-1.9l1.2,-0.85l2.39,-0.24l0.36,-0.4l-0.12,-1.13l-1.54,-2.17l0.62,-0.5l0.63,-0.05l1.66,0.8l0.57,-0.36l0.0,-0.94l-0.59,-0.94ZM217.73,633.63l0.27,3.66l0.57,1.27l1.33,1.39l2.34,1.64l-0.63,2.97l1.09,1.21l1.21,0.49l-0.12,2.59l0.76,2.62l-1.72,0.85l-0.96,1.16l-0.78,-0.26l-1.52,1.85l-1.92,1.39l-2.22,0.99l-2.33,0.6l-3.81,-0.44l-1.34,0.74l-0.91,2.85l-2.9,2.09l-2.04,0.6l-1.77,-0.5l-1.08,-2.42l0.47,-2.5l1.74,-1.6l4.64,-2.12l0.2,-0.52l-1.96,-4.42l-1.2,-1.12l-3.84,-1.39l0.27,-1.63l2.09,-2.13l3.92,-3.02l-0.1,-0.69l-1.98,-0.78l-2.59,-0.34l-2.62,0.39l-1.9,1.34l-3.18,6.09l-2.79,1.59l-3.71,4.15l-2.1,0.28l-0.83,-0.88l0.08,-1.73l1.07,-2.08l-0.17,-0.54l-0.88,-0.75l0.73,-1.58l3.83,-4.53l-0.11,-0.61l-2.35,-1.34l1.48,-1.4l0.69,-4.56l0.55,-0.82l3.02,-1.74l4.7,-1.67l1.92,-1.46l0.4,0.14l-1.42,3.93l-0.02,0.88l0.72,2.42l0.65,0.89l1.3,0.41l0.49,-0.39l0.0,-0.83l-0.62,-2.32l1.72,-2.51l2.7,-2.15l3.18,-1.52l2.1,-2.29l3.58,-1.42l1.85,-1.48l0.98,0.51l0.24,0.59l0.37,5.18l1.17,6.75ZM215.0,599.17l-2.73,3.73l-1.0,2.45l0.19,2.1l-1.46,0.87l-2.26,0.52l-2.26,-0.06l-1.03,-0.43l0.86,-0.62l1.84,-4.45l2.29,-2.52l0.43,-0.29l1.51,0.34l0.72,-0.47l0.13,-0.53l-0.47,-1.05l2.96,-0.59l0.27,1.01ZM135.92,362.62l5.04,-1.07l5.25,-2.33l0.22,-0.49l-0.46,-0.27l-8.1,1.74l-1.96,-0.02l0.7,-0.99l1.62,0.06l0.48,-0.39l0.0,-0.78l-0.4,-0.4l-1.02,0.0l0.98,-1.16l0.31,-1.38l-0.46,-0.05l-4.06,2.11l-2.98,-4.45l0.3,-1.65l-1.52,-1.32l0.22,-1.34l1.0,-1.3l-0.04,-0.93l0.94,-0.51l0.7,-1.23l-0.21,-0.58l-1.44,-0.96l6.12,-0.31l1.88,-0.63l0.27,-0.38l-0.26,-0.38l-2.96,-1.36l-0.32,-1.3l0.17,-1.39l1.85,-2.03l4.43,2.06l0.79,0.11l0.75,-0.38l4.28,1.52l-2.16,0.05l-0.4,0.52l0.58,1.78l2.86,3.16l-0.08,1.89l0.92,2.69l1.37,2.47l1.15,1.26l0.47,0.09l0.23,-0.42l0.0,-3.41l-2.31,-4.09l0.74,-0.52l0.55,-1.94l3.69,-0.72l2.2,-0.86l2.07,0.8l1.97,1.5l0.98,1.76l0.65,0.07l2.36,-2.65l-0.13,-0.63l-2.74,-1.6l-1.22,-3.4l-0.74,-0.34l-1.65,0.19l-0.55,-1.61l-1.63,-2.18l1.29,-0.62l0.32,-0.58l-0.89,-1.56l-0.61,-0.35l6.07,-4.18l1.73,-1.87l1.14,0.35l1.83,-1.3l2.85,0.0l2.4,-0.54l5.61,-2.31l2.98,-2.82l15.35,-9.13l4.33,-4.35l2.36,-1.76l1.81,0.12l1.6,1.37l1.48,2.2l1.06,2.36l0.4,1.97l1.58,2.13l0.18,0.9l-1.25,0.48l-0.88,0.95l-1.99,5.24l0.08,0.41l1.8,1.51l2.24,0.37l0.0,0.25l-5.6,2.96l-1.41,1.24l0.2,2.03l-2.57,0.95l-0.97,1.82l-2.4,0.74l-0.45,1.23l0.15,1.91l-1.43,0.71l-2.34,0.05l-0.31,0.65l1.81,2.17l3.31,0.78l3.46,-0.18l2.63,-0.92l4.15,-3.48l2.79,-0.95l-0.39,0.61l0.27,1.06l-0.88,1.7l0.5,1.3l-2.74,1.19l-1.78,2.16l-1.4,0.58l-1.02,-0.13l-2.47,-1.33l-1.55,-0.42l-3.94,0.37l-3.88,-1.64l-1.52,-0.07l-0.38,0.56l2.78,5.77l-0.89,1.2l0.34,1.38l-1.19,0.73l-4.3,0.76l-3.06,2.85l-1.14,0.57l-2.83,-0.85l-2.58,1.74l-4.37,0.93l-1.35,-0.09l-0.43,0.4l0.0,0.86l0.39,0.4l3.38,0.06l11.26,-2.1l2.7,-1.26l0.98,-0.13l0.94,0.53l0.79,1.13l0.42,1.47l-0.1,1.57l1.01,0.99l-0.99,0.83l-1.79,0.7l0.19,0.42l1.02,0.57l2.17,0.43l-3.22,3.08l-1.88,0.4l-8.02,-1.08l-2.37,-0.62l-0.88,1.15l0.11,0.51l0.73,0.55l1.91,0.65l1.45,1.07l2.95,0.68l1.03,1.09l0.0,0.48l-0.75,0.5l-2.07,2.75l-1.39,0.79l-3.6,-0.87l-0.48,0.39l0.0,0.93l1.18,1.07l0.0,0.45l-1.58,0.63l-1.41,-0.22l-1.21,-0.87l-1.01,-1.26l-1.24,-2.4l-1.01,-0.42l-0.46,0.15l-0.5,0.99l0.49,1.49l1.33,2.18l-0.23,0.3l-3.18,-1.51l-0.95,-2.11l-2.35,-3.74l-0.65,-1.59l-0.13,-1.65l1.2,-3.1l2.34,-1.71l3.04,-0.76l3.2,-0.17l0.38,-0.4l0.0,-0.78l-0.4,-0.4l-8.34,0.0l-0.4,0.4l-0.34,2.0l-1.93,1.91l-2.41,1.78l-1.66,0.81l-0.13,0.61l1.11,1.33l1.89,3.86l0.96,0.78l1.26,0.48l2.24,2.61l-1.29,0.65l-0.27,0.63l0.73,0.93l1.66,0.72l0.47,2.77l-6.5,-1.26l-2.97,-1.34l-1.15,0.42l-1.74,2.43l0.13,0.6l3.51,1.51l2.2,3.27l-0.32,0.7l-1.0,0.53l-2.92,0.08l-0.44,0.4l0.0,0.86l0.28,0.28l-1.04,-0.13l-3.96,-2.28l-0.54,0.13l-0.6,0.93l0.13,0.56l1.43,1.36l-1.59,1.66l-2.26,1.43l0.01,0.68l0.75,0.55l-1.32,1.06l-5.27,2.82l-1.48,1.22l-4.68,-4.11l-0.88,-0.43l-5.19,-5.08l-0.91,-0.54l-0.96,-2.04l0.95,-0.22l0.9,0.14l0.57,0.45l0.74,2.43l0.63,0.24l7.1,-5.14l1.08,-1.37l1.77,-0.45l4.11,0.12l0.4,-0.29l-0.18,-0.46l-3.99,-2.38l0.0,-0.37l4.13,-1.87l2.47,-0.44l2.44,0.44l1.63,1.03l0.54,-0.11l-0.09,-0.55l-2.58,-1.93l1.81,-0.7l0.34,-0.4l0.0,-0.86l-0.4,-0.4l-4.95,0.0l-1.06,-0.37l-2.22,-1.78l-1.43,-0.48l-5.07,0.16l-2.04,-0.6l-0.65,-1.81l-0.59,-0.2l-0.99,0.65l-0.51,-0.01l-3.42,-2.03l2.91,-2.3l1.59,0.06l0.42,-0.4l-0.36,-1.38ZM212.42,555.14l-3.82,0.18l-2.03,-0.25l-1.85,-1.32l1.52,-1.58l1.96,-0.44l3.73,2.65l0.49,0.77ZM203.39,487.59l-0.18,1.24l0.4,0.4l1.79,0.0l-1.02,3.94l-1.57,2.41l-2.22,1.05l-3.14,0.25l-1.32,-0.58l-1.52,-2.99l-2.53,-1.16l-2.67,-2.18l-1.14,-0.5l4.72,-4.26l2.58,-1.63l3.17,-0.34l4.37,2.2l1.48,1.32l-1.21,0.82ZM177.88,539.32l-4.43,2.83l-1.27,0.35l-1.98,-0.68l-1.15,-0.02l-0.37,0.26l-0.62,1.82l-1.29,-2.32l2.06,-0.35l2.28,-1.77l4.92,-6.03l2.7,-1.61l2.1,-0.72l2.53,-1.75l1.31,-0.38l2.59,-0.15l-3.0,5.48l-1.21,1.14l-2.02,0.51l-3.16,3.39ZM182.2,483.43l-2.71,0.37l-3.97,-0.33l3.42,-1.68l1.42,-0.29l1.01,0.67l2.35,0.6l-1.52,0.65ZM150.14,558.23l-1.24,0.04l-5.22,-1.9l-1.9,-4.85l1.47,-0.66l5.86,-0.77l2.01,-0.6l3.15,-1.62l6.32,-1.68l1.89,0.08l0.87,1.71l-0.95,1.21l-5.07,0.5l-0.36,0.37l-0.14,1.86l-1.49,1.02l-1.9,0.31l-2.06,0.78l-1.58,2.15l0.34,2.04ZM152.2,333.9l2.73,2.41l1.11,-0.26l0.55,0.45l1.31,2.12l-6.14,0.0l0.84,-0.07l0.34,-0.4l0.0,-0.79l-1.23,-0.8l-0.76,-1.04l-0.29,-1.23l0.34,-0.81l1.21,0.41ZM134.01,378.93l3.29,-2.65l1.7,-0.62l1.21,0.66l0.02,2.21l-0.64,0.3l-2.89,-1.48l-0.57,0.27l-0.28,1.33l-0.5,0.68l-1.34,0.37l0.01,-1.07ZM111.35,422.71l1.61,-0.84l0.0,0.55l0.4,0.4l6.24,0.0l5.11,-1.16l3.01,0.63l0.64,0.9l-1.82,2.99l-3.38,-0.19l-1.86,0.24l-1.38,0.83l-1.42,-0.77l-2.98,0.19l-1.43,-0.26l-0.97,-0.63l-1.76,-2.89ZM113.07,421.29l-2.99,-0.39l-5.16,-2.64l-2.77,-0.55l-1.48,1.41l-0.94,0.1l-2.44,-0.96l-3.69,-2.1l0.0,-0.38l1.9,-1.1l3.76,-6.4l1.75,0.71l5.45,-0.75l-2.13,0.89l-0.12,0.64l1.55,1.62l0.54,0.04l2.63,-2.06l3.21,-3.45l-0.89,1.68l0.23,0.57l4.73,1.55l1.92,0.18l0.44,-0.4l0.0,-0.85l-1.24,-0.75l5.11,-2.73l2.08,-0.28l0.88,0.95l0.26,0.92l-0.4,0.79l-1.41,0.74l0.01,0.71l1.74,0.7l2.44,-0.99l1.15,0.61l3.12,0.1l1.4,0.62l0.57,1.13l-2.58,3.02l-0.89,-0.13l-1.47,-1.78l-1.6,-0.78l-1.91,-1.46l-4.12,-0.08l-0.4,0.4l0.0,0.93l0.37,0.4l1.29,0.22l-0.47,1.01l0.0,0.93l0.42,0.4l2.35,-0.14l0.52,0.4l0.29,1.66l0.94,1.34l1.52,0.03l1.79,-0.48l-1.11,1.78l-1.94,1.08l-4.97,0.35l-2.26,0.83l-1.21,-2.02l-0.77,-0.51l-1.27,0.3l-3.73,2.44ZM125.45,400.77l-2.35,0.84l-1.03,-0.11l2.88,-2.45l1.26,-0.22l0.49,0.82l-1.26,1.12ZM109.71,439.85l7.05,3.86l-2.11,-0.4l-0.51,0.38l0.0,0.85l0.34,0.4l1.81,0.28l2.65,1.97l1.76,0.27l0.0,0.22l-2.01,0.83l-1.65,-0.62l-1.62,-1.24l-3.51,-1.64l-1.71,-1.95l-2.11,-1.41l-1.98,0.85l-0.08,0.69l1.46,1.45l0.67,1.8l2.14,0.31l2.0,0.74l1.32,1.65l1.48,0.64l3.99,0.34l2.71,2.51l1.15,0.02l-0.27,1.17l-1.74,1.03l-1.11,1.09l-1.94,4.51l-1.44,0.53l-6.55,-1.36l-0.48,0.39l0.31,1.16l5.48,1.32l1.38,1.08l0.71,1.77l0.37,2.53l-0.18,2.33l-0.71,1.09l-1.31,-0.63l-1.66,-0.23l-3.41,0.13l-0.38,0.4l0.0,0.85l0.34,0.4l1.54,0.22l4.35,-0.22l1.35,0.89l2.08,2.33l1.61,0.22l-1.73,1.63l-6.97,-1.14l-2.7,1.2l-2.27,-2.1l-0.71,-1.24l-2.22,-6.45l-0.3,-1.87l0.51,-1.49l-0.1,-1.12l-1.55,-1.7l-1.47,-0.79l1.3,-1.49l1.15,-2.42l0.6,-2.36l0.31,-0.52l1.23,-0.48l0.64,-1.71l-1.03,-4.07l-2.17,-5.31l1.38,-0.8l4.53,-1.51ZM114.76,430.08l1.97,0.5l-0.04,0.69l0.74,0.52l2.46,-0.43l2.43,1.4l-1.39,-0.23l-1.87,1.34l-1.52,0.08l-0.35,0.54l0.62,1.42l0.96,0.55l1.95,-0.0l1.07,0.33l0.5,0.61l-0.06,0.41l-7.15,1.65l-2.14,-0.39l-6.6,-3.16l-0.84,-1.23l0.38,-2.1l1.08,-1.8l1.54,-1.06l1.8,-0.07l2.09,0.86l1.22,-0.14l0.87,-0.58l0.27,0.31ZM101.8,483.27l0.6,0.67l1.59,0.65l-1.55,2.26l0.12,0.67l3.39,1.59l0.98,2.69l-1.39,-0.04l-0.96,0.51l-1.43,1.4l-1.24,0.66l-0.2,0.52l0.38,0.91l-0.5,0.55l-1.2,0.43l-1.26,0.15l-5.52,-0.83l-1.02,-0.42l0.03,-0.77l0.83,-1.01l2.6,-1.31l0.44,-1.48l-0.21,-1.4l-0.64,-0.75l1.6,-0.93l2.18,-0.41l1.61,-1.06l0.78,-3.25ZM4.31,389.19l-1.63,0.3l-1.46,-0.85l-0.47,-1.35l4.49,0.99l-0.93,0.91Z", "name": "Scotalnd"}, "UKE": {"path": "M649.49,927.08l0.24,2.85l-0.5,1.01l-1.92,0.86l-0.18,0.57l0.67,1.12l-2.44,2.07l-0.84,1.49l-5.42,0.24l-1.54,-0.86l-1.47,-0.12l0.29,-1.17l-0.2,-0.45l-1.07,-0.47l-2.14,0.36l-1.14,1.45l-0.7,0.31l-2.14,-0.15l-1.6,-0.67l-0.14,-1.5l-1.36,-0.79l-3.32,0.19l-2.51,2.01l-6.04,1.95l-3.24,-1.72l-1.65,0.27l-1.79,-0.39l0.15,-0.41l2.26,-1.28l0.15,-1.09l-1.07,-0.97l-4.81,-1.61l-0.17,-0.49l0.64,-1.24l-0.27,-1.22l-2.55,-1.24l-1.2,-0.07l-1.1,-1.89l-2.58,-0.78l-0.18,-0.95l0.49,-2.21l-0.17,-0.42l-4.77,-3.19l-0.43,-0.92l-0.3,-2.4l-1.78,-2.26l-4.9,-2.03l-2.24,-0.12l-3.4,-4.0l-3.36,-3.03l-0.93,-2.37l-2.55,-0.66l-0.54,-2.21l-0.92,-0.95l0.19,-2.05l-0.99,-1.17l-0.22,-1.11l-0.41,-0.32l-1.61,0.07l-1.55,1.08l-1.25,0.27l-1.54,-1.19l-1.22,-0.0l-0.78,-1.21l-0.67,-0.33l0.11,-0.91l-0.83,-2.17l3.15,-3.34l0.18,-4.39l2.0,-2.09l4.26,-1.73l0.95,-1.22l0.41,-1.7l-0.18,-0.43l-2.86,-1.76l-2.61,-2.94l-0.86,-3.28l-5.79,-2.45l-0.35,-1.99l-1.12,-1.5l-2.87,-0.4l-0.31,-0.33l0.06,-1.01l-0.54,-0.4l-3.95,1.48l-0.82,-0.1l-1.33,-2.17l-2.87,-0.22l-0.81,-0.99l0.8,-1.65l-0.15,-0.52l-0.61,-0.36l-0.24,-1.6l-0.84,-0.99l-2.39,-0.36l-3.95,0.88l-1.67,-0.2l-0.63,-0.65l-0.09,-2.75l-0.81,-1.19l-4.55,-2.18l-2.11,-1.84l-0.49,-1.56l0.3,-2.4l2.48,-1.2l0.6,-1.3l5.01,-5.38l0.5,-1.41l3.76,0.22l1.79,-1.65l2.36,-0.95l2.1,1.11l1.71,-0.3l0.75,-0.77l0.39,-2.18l-0.92,-2.01l0.47,-1.31l-0.09,-3.52l-0.73,-1.28l-2.36,-1.41l-0.3,-0.55l5.24,-3.67l0.14,-1.9l-0.98,-2.54l1.44,-1.88l2.6,-1.4l4.51,0.09l2.05,-1.44l2.72,1.08l3.34,-2.16l4.53,-1.35l3.2,0.83l4.36,2.14l2.55,-0.02l6.9,-3.09l0.33,-1.73l0.96,-1.06l0.67,0.13l3.15,2.46l0.63,-0.2l0.66,-2.26l1.02,-1.47l0.09,-1.64l1.13,-0.17l2.0,0.64l1.23,-0.78l4.21,0.09l1.51,0.78l0.79,1.72l0.67,0.18l2.43,-0.47l0.59,0.33l1.19,2.29l3.92,2.92l1.36,-0.09l0.32,-0.5l-0.31,-1.14l1.93,0.17l0.76,0.77l1.03,2.68l1.54,1.0l0.96,-0.33l0.51,-1.05l-1.76,-4.01l-0.02,-1.08l0.37,-0.31l0.78,0.07l0.76,0.7l0.59,1.28l1.32,0.41l0.49,-0.23l0.59,-1.44l1.42,0.35l0.7,-0.45l0.64,0.34l0.63,2.38l0.39,0.3l2.3,0.0l0.92,0.6l6.78,-3.02l1.23,-1.48l2.68,-0.68l7.5,0.92l3.46,-0.81l4.03,1.47l4.52,-0.88l1.65,0.27l2.22,1.31l4.37,-1.07l3.58,1.0l0.51,-0.38l0.05,-3.34l0.66,-1.55l1.16,-1.14l2.2,-0.77l0.83,-1.08l18.34,9.39l2.37,1.89l0.94,1.52l-0.06,1.97l0.37,1.39l1.0,1.09l4.0,2.63l1.25,1.82l1.46,2.8l1.02,2.93l0.03,2.33l0.33,0.93l0.58,0.93l1.35,0.84l-0.35,1.74l2.33,2.55l0.85,0.72l3.47,0.75l1.89,1.35l1.86,0.77l0.55,1.02l0.81,3.66l2.41,2.13l10.68,3.5l2.51,1.87l-7.14,3.21l-2.75,2.63l-2.13,5.07l1.89,3.28l2.47,7.73l1.59,3.69l24.61,30.35l1.3,3.72l-1.01,3.6l-0.94,0.71l1.17,-2.26l0.44,-2.11l-0.18,-0.41l-1.37,-0.88l-1.86,-0.53l-3.7,-2.21l-1.96,-0.61l-1.9,0.32l-3.41,1.72l-1.72,0.37l-3.94,-0.63l-3.14,-1.7l-8.22,-8.71l-3.27,-1.96l-4.04,-0.49l-10.86,2.99l-6.82,0.0l-2.91,0.56l-3.0,-2.18l-5.15,-0.47l-1.94,0.51l-5.9,3.24l0.08,0.73l1.47,0.55l1.33,0.99l0.59,-0.08l1.23,-1.77l2.22,-0.85l2.5,-0.14l1.91,0.42l6.0,3.6l1.48,-0.48l2.33,-1.51l15.32,-2.31l2.2,0.77l7.8,10.17l3.95,1.72l2.62,2.55l1.57,0.94l4.26,0.8l3.98,4.07l1.41,0.96l-3.21,0.99l-1.94,-0.27l-1.36,0.82l-2.98,5.7l0.25,1.33l1.18,1.11l-2.01,1.42l-0.76,0.05l-1.82,-1.5l-0.63,-1.28l-1.3,-0.57l-0.61,-1.0l-2.0,-1.39l0.49,-2.75l-1.12,-3.82l2.23,-2.43l0.06,-1.14l-0.38,-0.38l-3.11,-0.16l-2.51,-2.75l-4.26,-2.17l-0.52,0.14l-0.48,0.76l0.05,2.25l-2.94,2.74l-1.97,0.24l-5.79,-1.15l-5.22,3.28l-0.14,0.84l0.38,0.36l6.44,0.35l0.82,0.62l0.05,0.55l-0.77,0.59l-5.37,0.92l-1.08,2.06l0.42,1.51l-3.33,1.17l-5.21,1.26l-2.85,-0.19l-0.72,-0.32l-0.5,-0.78l0.99,-2.67l0.0,-1.41l-0.66,-0.89l-10.99,-1.15l-0.43,0.32l-0.63,3.09l-4.1,3.84l-8.61,-0.59l1.01,-0.71l-0.13,-0.85l-2.47,-1.9l-0.46,-0.02l-4.37,2.88l-0.82,3.52l-2.25,2.49l-0.49,0.31l-1.38,-0.6l-3.43,0.16l-1.9,1.27l-2.64,2.85Z", "name": "Yorkshire and the Humber"}, "UKD": {"path": "M482.93,736.0l0.28,-1.6l1.14,-1.94l0.48,-4.04l0.55,-0.02l3.36,1.39l2.29,-0.18l0.94,-0.82l1.41,-2.55l3.82,-1.8l5.24,-6.2l1.12,-0.69l5.38,-1.8l2.45,-1.36l1.86,-1.47l0.88,-1.1l2.25,5.29l1.23,1.46l3.72,1.1l1.0,2.5l2.72,1.59l0.62,1.05l0.43,0.19l3.49,-0.8l1.12,0.58l-0.52,0.52l0.24,1.12l-0.22,1.02l0.93,1.91l-6.54,3.21l-0.69,0.98l-0.07,2.23l-1.99,2.23l0.13,0.63l2.16,0.99l0.62,2.26l1.13,1.51l-1.32,0.86l-0.89,2.6l-1.9,1.16l-0.16,0.51l0.61,1.29l1.74,1.68l0.21,1.11l-0.56,1.46l0.58,1.54l2.74,2.06l3.1,0.4l6.23,-3.38l1.61,-1.48l0.7,-0.14l3.24,4.27l4.69,3.14l-1.83,6.37l-2.29,4.36l0.04,0.43l0.95,1.16l4.59,1.93l0.75,0.81l0.09,0.65l-0.51,1.02l-1.75,1.85l0.79,2.96l1.0,1.88l6.62,4.38l1.49,2.42l2.45,0.54l0.41,4.77l0.65,1.51l-0.3,1.47l-1.08,-0.25l-2.12,1.49l-4.45,-0.11l-2.77,1.49l-1.82,2.62l1.03,2.68l0.0,1.14l-5.36,3.76l-0.12,0.52l0.53,0.96l2.5,1.55l0.48,0.94l0.04,3.18l-0.48,1.25l0.92,2.13l-0.27,1.75l-0.34,0.43l-1.42,0.25l-2.22,-1.11l-2.62,1.06l-1.55,1.55l-3.88,-0.22l-0.4,0.28l-0.48,1.47l-4.99,5.36l-0.63,1.33l-2.58,1.35l-0.32,2.88l0.67,1.93l2.24,1.95l4.45,2.1l0.59,0.78l0.09,2.78l0.95,1.13l2.11,0.35l4.08,-0.88l2.01,0.32l0.34,0.45l0.25,1.68l0.65,0.56l-0.7,1.98l1.08,1.32l3.09,0.36l1.31,2.16l1.32,0.11l3.47,-1.3l0.07,0.87l0.53,0.56l2.82,0.37l0.87,1.11l0.61,2.41l5.8,2.46l0.7,3.08l2.72,3.06l2.75,1.72l-0.32,1.33l-0.74,0.9l-4.09,1.61l-2.31,2.37l-0.18,4.39l-3.21,3.41l0.79,2.72l-0.17,0.92l0.26,0.45l0.66,0.24l0.84,1.3l1.4,0.1l1.89,1.29l1.67,-0.4l1.29,-0.98l1.14,-0.05l0.26,1.06l0.94,1.11l-0.28,1.76l1.0,1.17l0.57,2.34l0.32,0.3l2.28,0.42l0.99,2.41l3.37,3.04l3.29,3.87l-0.98,1.34l-0.72,2.17l-0.95,0.48l-2.61,0.12l-0.35,0.25l-1.23,3.05l-0.41,2.89l-2.19,1.83l-0.46,1.05l0.35,1.4l1.74,0.68l0.53,0.64l-1.75,2.5l-1.2,0.68l-0.16,0.84l1.53,2.15l0.46,9.67l0.43,2.64l1.66,1.44l-0.45,2.33l-2.29,2.31l-2.21,0.22l-3.17,2.15l-2.66,0.0l-1.94,-1.03l-1.36,0.09l-0.5,0.71l0.73,1.6l-0.19,0.49l-1.98,0.4l-7.61,7.41l-2.07,0.7l-2.81,-0.19l-2.82,2.74l-2.8,0.68l-0.72,1.96l0.62,4.15l-0.88,1.03l-3.77,1.25l-0.82,1.7l-1.42,0.83l-2.39,0.31l-2.85,-0.86l-0.44,0.15l-1.07,1.45l-2.39,-0.96l-1.6,0.24l-1.13,-2.65l-2.88,-1.04l-9.18,2.21l-3.41,-1.69l-3.34,-0.43l-0.83,-0.41l-0.68,-1.25l-2.45,-2.56l-1.37,-5.07l-2.31,-4.27l-5.1,-4.84l0.22,-0.59l3.17,-1.65l0.38,-0.48l0.16,-0.83l-0.64,-1.88l-3.35,-3.18l-5.56,-3.67l-5.43,-1.33l-0.08,-1.95l-2.3,-3.2l-2.09,-3.63l-3.16,-3.4l-1.1,-1.65l-0.08,-1.57l0.78,-0.98l1.44,-0.65l3.63,-0.45l1.84,-0.57l3.1,-2.02l1.68,0.1l1.87,1.85l5.17,10.97l1.6,1.76l2.13,1.55l2.76,1.01l2.68,-0.09l0.76,-1.39l0.43,-0.21l2.67,0.73l2.8,-0.43l2.37,-1.15l0.21,-0.48l-0.45,-1.41l0.2,-0.88l0.59,-0.72l0.55,-0.5l1.58,0.09l1.61,-1.12l0.12,-0.43l-0.36,-0.27l-1.24,-0.07l-4.45,0.86l-1.25,0.75l-0.55,1.56l-1.25,0.52l-3.66,-0.33l-3.62,-1.11l-3.26,-1.89l-2.71,-2.37l-2.03,-2.56l-9.99,-17.81l-0.43,-1.5l0.19,-1.49l0.98,-1.77l5.67,-7.66l5.36,-5.35l0.69,-1.15l3.4,-1.96l1.18,-1.31l-0.3,-0.66l-7.36,-0.08l-3.01,-1.09l-2.26,-2.64l-0.6,-3.81l0.99,-8.89l-0.97,-3.26l1.22,-1.82l1.88,-0.94l7.89,-2.44l1.25,-0.12l1.12,0.7l0.66,0.2l0.47,-0.2l0.55,-1.19l1.89,-1.18l0.17,-0.61l-0.75,-1.03l2.86,-2.48l0.38,-1.92l-0.6,-0.42l-2.89,1.34l-2.46,0.21l-1.65,-3.27l2.09,-1.68l1.74,-2.6l1.1,-1.03l2.88,-1.02l1.05,-1.26l1.66,-3.14l-4.74,-7.42l-0.18,-0.7l1.62,-0.54l2.05,-1.64l1.3,-2.09l-0.0,-2.52l-0.4,-0.39l-0.59,0.0l-0.39,0.33l-0.31,1.68l-1.13,1.3l-7.21,4.03l-1.47,3.1l-1.42,0.72l-3.68,0.22l-0.99,-0.65l-1.1,-1.61l-0.45,-1.66l0.72,-1.45l-0.66,-1.44l-0.79,-1.15l-1.12,-0.65l-1.5,0.45l-0.24,0.46l0.37,1.56l-0.26,1.56l-1.1,3.73l-2.52,2.62l-2.32,3.6l-2.51,1.31l-0.19,1.47l0.24,1.91l-3.27,-3.39l-2.68,-0.4l-1.57,-1.12l0.7,-3.64l-0.04,-1.83l-1.32,-1.11l0.0,-0.29l2.87,-0.96l0.74,-3.57l-0.05,-6.4l-0.57,-0.39l-1.36,0.64l-0.89,1.4l-0.87,3.09l0.65,2.21l-0.87,0.37l-3.36,0.1l-1.66,0.58l-1.66,-1.35l-3.08,-4.45l-3.67,-4.14l-0.44,-1.74l0.74,-2.89l-0.93,-3.27l-2.31,-1.08l-2.88,-4.87l-2.1,-1.57l-8.13,-9.2l-1.82,-1.0l-0.88,-1.67l-0.73,-0.69l1.79,-1.82l1.84,-4.15l2.3,-9.37l4.66,-9.33l3.54,-1.64l2.56,-3.29l0.74,-2.28l-0.75,-2.16l2.76,-6.87l1.66,-3.21l1.9,-1.85l1.42,-0.27l1.88,1.48l1.57,0.46l1.05,-0.12l3.56,-1.55l0.05,-0.71l-1.1,-0.68l-3.79,-1.57l2.94,-2.28l5.29,-1.28l0.92,0.22l1.87,1.39l3.23,0.88l1.81,0.12l7.43,-1.79l1.53,-0.87l0.19,-0.45l-0.39,-0.3l-5.57,0.0l3.92,-1.35l1.53,0.49l0.52,-0.38l-0.26,-1.27l-2.12,-0.79Z", "name": "North West"}, "UKC": {"path": "M622.91,796.15l-0.41,-1.09l-1.17,-0.97l-1.08,-0.1l-0.94,0.62l-0.08,1.84l1.71,3.64l-0.15,0.46l-0.58,0.2l-0.77,-0.57l-1.01,-2.65l-1.01,-1.07l-2.9,-0.35l-0.42,0.5l0.34,1.26l-0.45,0.07l-3.71,-2.76l-1.09,-2.18l-0.98,-0.63l-2.91,0.37l-0.73,-1.67l-1.91,-0.94l-4.45,-0.1l-1.06,0.75l-2.06,-0.61l-1.56,0.23l-0.34,0.39l-0.02,1.64l-1.04,1.54l-0.51,1.76l-2.76,-2.16l-1.16,-0.27l-1.58,1.45l-0.19,1.53l-6.61,2.96l-2.03,0.03l-4.31,-2.11l-3.64,-0.89l-4.69,1.4l-3.3,2.12l-0.93,-0.47l0.36,-1.78l-0.67,-1.68l-0.43,-5.01l-0.33,-0.36l-2.3,-0.37l-1.57,-2.46l-6.48,-4.23l-0.9,-1.66l-0.72,-2.68l1.5,-1.33l0.7,-1.31l-0.18,-1.35l-1.03,-1.06l-4.57,-1.93l-0.57,-0.74l2.22,-4.25l1.92,-6.69l-0.16,-0.44l-4.88,-3.27l-3.25,-4.32l-0.4,-0.15l-1.26,0.31l-1.58,1.47l-5.84,3.25l-2.68,-0.3l-2.41,-1.74l-0.48,-1.26l0.56,-1.36l-0.26,-1.37l-1.89,-1.93l-0.35,-0.78l1.72,-1.05l1.06,-2.81l1.41,-0.8l0.12,-0.59l-1.3,-1.67l-0.65,-2.37l-2.06,-1.1l1.73,-1.93l0.17,-2.49l0.46,-0.56l6.68,-3.24l0.18,-0.54l-1.04,-2.13l0.24,-0.72l-0.28,-0.84l0.71,-0.7l-0.1,-0.64l-2.01,-0.94l-3.35,0.77l-0.67,-1.03l-2.69,-1.57l-1.11,-2.59l-3.61,-1.0l-1.03,-1.2l-1.99,-5.07l-0.48,-0.5l1.78,-2.28l2.6,-1.31l0.89,-1.04l0.35,-1.68l-0.62,-2.21l0.45,-0.65l1.19,-0.78l4.65,-4.62l7.62,-5.52l2.93,-0.63l1.51,0.32l1.2,0.85l1.57,0.06l2.51,-1.52l1.2,-2.46l1.0,-1.18l2.5,-0.9l2.04,-1.6l3.51,-0.8l1.87,-1.01l2.05,-2.01l0.55,-1.25l-0.19,-1.19l-2.45,-2.98l-0.38,-2.25l-3.43,-4.91l-1.92,-4.82l-1.55,-1.55l-0.5,-1.39l-1.96,-1.12l-0.22,-1.49l1.53,-0.64l3.43,-0.03l2.32,-0.67l5.37,-6.31l1.17,-2.22l2.45,-1.84l1.92,-0.81l2.2,-1.93l0.68,-1.32l0.51,-2.73l0.71,-0.51l3.58,-1.07l1.03,1.59l11.37,11.62l2.13,4.29l1.92,1.14l1.32,2.16l1.18,-0.1l1.29,-1.43l0.74,0.08l0.98,0.4l0.94,0.9l0.49,1.12l-1.15,0.0l-0.4,0.4l0.23,1.12l1.3,0.53l2.98,-0.68l1.73,0.18l5.64,3.23l-0.47,1.46l0.14,0.88l1.25,1.59l-0.74,0.47l-0.19,1.17l2.42,1.86l-0.65,1.93l1.87,1.49l0.34,1.29l0.31,8.05l-0.68,4.95l0.58,2.79l2.09,3.04l0.22,1.97l-1.2,2.9l0.14,1.03l1.1,3.14l2.9,2.95l-0.57,1.69l1.31,1.44l0.45,1.01l-1.18,3.1l0.35,1.5l1.9,2.72l0.3,2.61l1.09,3.37l1.82,0.93l1.81,4.28l0.8,1.12l1.39,3.93l3.75,3.08l0.59,1.16l-0.03,4.57l0.23,1.13l0.57,0.53l-0.16,1.06l5.11,14.94l1.87,3.83l3.18,3.38l1.4,0.83l4.31,1.56l0.0,0.21l-1.37,0.0l-0.4,0.41l0.01,0.54l1.21,3.07l1.07,1.35l-1.2,1.21l-2.01,0.73l-0.25,0.48l0.3,1.03l0.59,0.62l1.55,0.29l0.71,-0.78l0.89,1.68l1.04,-0.17l0.84,-0.94l0.59,-2.62l2.64,2.18l1.75,0.52l3.57,0.39l4.23,2.27l18.11,4.64l-0.5,0.74l-2.3,0.85l-1.36,1.39l-0.75,1.85l-0.04,2.9l-3.38,-0.89l-4.31,1.06l-1.83,-1.2l-1.96,-0.36l-4.62,0.88l-3.82,-1.45l-3.61,0.8l-7.51,-0.92l-3.03,0.74l-1.31,1.52l-6.43,2.87l-0.68,-0.55l-2.17,0.0l-0.59,-2.26l-1.27,-0.81l-0.84,0.47l-1.53,-0.38l-0.47,0.24l-0.58,1.42l-0.77,-0.24Z", "name": "North East"}}, "height": 1330.388845040797, "projection": {"type": "mill", "centralMeridian": 0.0}, "width": 900.0}); \ No newline at end of file diff --git a/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-us-merc-en.js b/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-us-merc-en.js deleted file mode 100644 index 641449d72..000000000 --- a/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-us-merc-en.js +++ /dev/null @@ -1 +0,0 @@ -jQuery.fn.vectorMap('addMap', 'us_merc',{"insets": [{"width": 200, "top": 370, "height": 150.45417533741582, "bbox": [{"y": -11550668.73872687, "x": -19771895.08914502}, {"y": -6730133.1880498035, "x": -13363916.660010302}], "left": 10}, {"width": 100, "top": 400, "height": 71.51920738711357, "bbox": [{"y": -2541110.9649878037, "x": -16682694.225454755}, {"y": -2144973.223883047, "x": -16128804.220829042}], "left": 220}, {"width": 900, "top": 0, "height": 482.5272441562264, "bbox": [{"y": -6341005.503342988, "x": -12778676.130802888}, {"y": -2892130.0668135914, "x": -6345903.8252634145}], "left": 0}], "paths": {"US-VA": {"path": "M759.82,259.25l0.64,-1.46l-0.16,-0.7l0.65,-0.63l-0.39,-0.7l0.69,-0.65l-0.06,-1.13l0.43,-0.2l0.02,-0.68l0.59,-0.11l0.37,-0.52l0.66,-1.92l0.95,-0.12l0.15,-0.79l0.41,-0.02l0.15,-1.43l-0.5,-0.51l0.79,-0.28l0.31,-0.8l2.49,-0.27l-0.3,2.16l-5.79,8.13l-0.14,0.98l-0.46,0.19l-0.54,0.87l-0.74,3.62l-0.49,-1.69l0.4,-0.71l-0.13,-0.64ZM641.21,273.09l7.37,-2.2l1.03,-1.91l0.75,-0.03l2.31,-0.98l0.34,-1.57l2.1,-1.29l0.44,-1.71l5.11,-2.74l5.13,-4.35l0.12,0.57l0.68,0.51l0.06,1.26l1.55,1.7l1.29,0.33l1.66,1.34l1.28,0.16l0.79,-0.22l0.89,-0.93l1.15,-0.29l0.7,-1.1l2.14,1.76l1.46,-0.7l2.17,-0.47l0.67,0.18l1.14,-0.65l0.46,-0.69l-0.25,-0.93l0.25,-0.28l1.57,0.84l3.37,-1.69l0.24,-0.03l0.34,0.72l0.62,0.06l2.55,-1.6l0.33,-0.75l-0.35,-0.52l1.07,-0.78l0.22,-0.54l-0.17,-0.52l-0.8,-0.54l1.2,-2.51l3.23,-3.71l0.91,-1.78l0.35,-1.66l1.93,-1.94l-0.01,-0.87l0.92,-1.01l0.68,-1.43l0.61,-2.76l1.03,0.38l0.73,1.75l3.33,1.12l0.61,-0.14l1.45,-2.02l0.65,-2.04l0.84,-0.78l0.29,-1.44l1.12,-1.85l1.55,1.06l0.53,-0.08l1.84,-2.63l1.12,-0.09l0.72,-0.96l0.88,-0.44l0.77,-1.5l1.75,-1.87l0.22,-2.36l0.85,-1.45l0.13,-1.81l7.31,5.96l0.64,-0.15l1.42,-3.38l2.33,0.48l0.44,0.64l0.9,0.42l-0.84,1.39l0.36,0.95l1.28,1.1l2.27,0.5l0.67,1.26l1.31,0.44l1.63,1.96l-0.3,1.15l0.12,1.2l-1.68,0.48l-0.28,0.52l-0.93,0.37l-1.52,4.29l-0.33,0.04l-0.16,0.46l0.77,1.05l-0.43,0.74l1.85,0.44l2.45,-0.75l0.6,-0.52l0.1,0.63l-0.6,0.48l1.48,1.33l0.13,1.05l1.35,0.81l1.75,0.24l0.68,0.56l0.86,-0.38l0.74,0.22l0.09,0.55l1.07,0.71l0.17,1.07l1.0,0.2l-0.05,0.27l0.95,0.62l2.35,1.17l0.13,0.85l-0.62,-0.5l-0.64,0.27l0.39,1.72l-0.43,0.4l0.35,0.85l-0.57,0.64l0.03,0.51l-1.01,-0.57l-0.35,-0.74l-0.69,0.01l-0.15,0.26l-1.63,-2.44l-0.49,-0.08l-0.23,-0.57l-0.53,0.17l-1.0,-1.45l-0.97,-0.59l-0.23,-0.63l-0.72,-0.54l-0.34,-1.28l-0.55,-0.73l-1.16,-0.4l-0.82,-0.94l-1.06,-0.21l-0.49,0.38l0.28,0.78l0.96,0.23l0.42,0.72l1.17,0.35l0.41,0.47l0.0,1.4l2.09,1.97l1.22,2.03l1.58,0.95l0.93,2.16l0.84,0.44l1.27,-0.09l0.89,0.64l-0.58,0.46l0.18,0.53l1.67,0.75l0.1,0.66l0.36,0.2l-0.14,1.62l-0.26,-0.74l-0.82,-0.25l-0.77,-1.1l-0.63,0.14l-0.51,1.25l0.42,0.77l-0.25,0.48l0.95,0.65l-1.31,0.3l-4.35,-5.39l-0.57,-0.04l-0.37,0.7l0.1,0.54l1.68,1.82l1.37,2.29l2.17,1.61l1.21,-0.28l0.19,0.96l1.01,0.46l-0.49,0.45l0.15,0.62l0.83,0.05l-0.26,0.97l-1.51,0.62l-0.35,-0.84l-2.47,-1.76l-0.02,-1.38l-0.4,-0.66l-0.77,-0.29l-1.16,0.29l-1.38,-0.71l-0.07,-1.05l-0.68,-0.22l-0.67,1.39l-0.97,-1.43l-1.01,0.33l-0.48,-0.45l-0.98,0.18l-1.96,-0.54l-0.54,0.78l0.22,0.5l3.64,1.0l0.63,-0.46l0.33,0.86l1.1,0.67l1.78,0.15l0.56,0.8l0.71,0.28l0.55,-0.28l0.13,2.15l1.13,0.42l0.14,0.42l1.29,0.96l0.23,0.64l-0.72,0.77l0.44,0.54l1.79,-0.75l0.74,0.16l0.72,0.8l0.67,-0.12l-0.32,-0.94l0.17,-0.72l-0.33,-0.31l3.43,0.94l0.96,-0.42l0.98,3.39l-0.49,0.53l-0.13,2.73l-0.87,-0.75l-0.25,0.74l-62.65,0.21l-17.72,-0.58l-10.57,-0.93l-0.84,0.4l-25.35,-0.13Z", "name": "Virginia"}, "US-PA": {"path": "M694.93,162.36l0.63,-0.05l4.8,-2.62l0.0,5.05l0.4,0.4l68.59,0.05l1.18,0.88l0.33,1.45l0.57,0.28l0.79,-0.12l0.98,0.83l-0.06,0.83l0.64,0.55l-0.29,0.5l0.16,2.69l1.25,2.36l1.78,1.21l2.08,0.37l0.46,0.88l-1.04,0.54l-1.04,1.17l-0.73,2.0l-2.13,2.69l-1.66,1.11l-0.16,0.75l1.22,1.97l-0.68,1.4l-0.88,0.19l-0.36,0.53l-0.24,1.38l0.25,2.84l0.43,0.37l1.13,0.12l0.29,1.96l0.49,0.87l0.44,0.34l0.67,-0.06l0.33,0.94l3.25,3.68l-2.77,1.42l-1.05,0.98l-2.04,1.12l-0.45,1.46l-1.5,0.68l-0.8,-0.07l-1.46,0.65l-0.44,0.5l-1.53,-0.5l-2.05,0.27l-1.37,0.95l-0.7,1.14l-73.25,-0.0l-0.01,-45.94l2.05,-0.76l3.52,-2.23Z", "name": "Pennsylvania"}, "US-TN": {"path": "M537.7,303.9l0.66,-0.56l0.37,-1.12l0.84,0.13l0.68,-0.65l-0.41,-4.31l1.41,-1.53l0.18,-1.14l1.05,-0.27l0.38,-0.4l-0.41,-1.21l0.61,-1.01l-0.66,-1.21l2.37,-1.09l1.08,-0.88l-0.02,-0.81l-0.58,-0.62l0.99,0.3l0.49,-0.28l-0.11,-1.2l-0.65,-0.85l0.11,-0.58l0.57,-1.18l1.0,-0.88l-0.95,-1.89l1.35,-0.11l0.44,-0.4l-0.07,-0.63l-0.93,-0.74l1.29,-0.49l0.19,-0.61l-0.38,-1.34l0.98,0.4l0.89,-0.85l21.29,0.01l0.4,-0.36l0.07,-1.19l-0.46,-2.12l2.57,0.25l0.7,0.6l20.65,-0.39l9.95,0.68l11.64,0.07l21.66,0.76l1.08,-0.35l26.63,0.14l0.75,-0.4l3.14,0.13l-0.56,1.11l0.23,0.82l-0.69,1.64l0.13,0.7l-0.93,-0.18l-1.82,1.27l-1.72,3.15l-0.68,0.56l-0.79,-0.83l-1.29,-0.25l-2.62,1.06l-1.69,2.12l-0.96,0.59l-0.14,-1.25l-0.58,-0.6l-0.51,0.05l-2.2,1.11l-0.57,1.14l-0.76,-0.33l-0.89,0.28l-0.28,0.67l0.16,0.67l-1.04,1.68l-1.12,-0.14l-1.72,0.71l-2.01,1.67l-0.72,0.13l-2.36,1.76l-3.63,0.06l-2.56,1.12l-0.54,0.82l-1.46,0.97l-0.59,2.45l-0.38,0.44l-1.47,0.2l-0.76,-0.26l-1.11,0.84l-0.59,4.47l-37.06,-0.05l-22.56,-0.38l-0.32,0.23l-31.68,-0.04Z", "name": "Tennessee"}, "US-WV": {"path": "M656.39,242.85l1.01,-1.59l0.05,-1.48l-0.36,-1.34l3.8,-0.73l0.46,-0.59l0.58,-2.42l1.06,0.01l0.49,-0.49l-0.43,-3.52l0.55,-0.49l0.8,-2.41l0.9,-1.36l0.45,-0.26l1.01,0.69l0.24,0.67l-0.31,1.01l0.58,0.54l0.81,-0.26l0.68,-1.14l0.95,0.17l0.29,-0.4l-0.21,-1.98l-0.56,-0.6l0.85,-0.56l0.07,-1.59l1.02,-1.64l1.6,-0.18l0.44,-1.4l1.16,-1.08l0.39,0.0l0.45,0.81l0.6,0.3l2.38,-1.02l1.67,-1.2l1.06,-1.49l2.93,-2.23l0.61,-1.83l-0.46,-1.04l1.07,-1.97l-0.07,-0.7l0.63,-0.43l0.4,-3.15l1.18,-3.45l0.64,-0.62l0.29,-1.02l-0.42,-1.56l0.35,-1.82l-1.09,-2.02l0.49,-0.38l1.12,-0.15l0.01,18.2l0.4,0.4l15.83,-0.01l-0.16,9.93l0.41,0.47l2.38,-1.82l1.0,-0.31l0.51,-0.84l1.89,-1.45l0.44,-0.88l0.53,-0.25l0.99,0.64l0.75,-0.14l1.74,-2.06l0.64,-0.29l0.09,-0.7l0.31,0.57l1.5,0.8l3.03,0.14l0.92,-0.63l0.41,-1.28l1.94,-0.25l1.28,-1.29l0.62,0.05l2.55,2.0l1.78,-0.26l-0.63,0.8l0.3,0.94l1.06,0.66l-0.12,0.87l0.91,0.6l0.03,1.53l-1.28,3.05l-7.17,-5.83l-0.66,0.08l-0.54,0.98l0.01,1.5l-0.81,1.34l-0.1,2.09l-1.73,1.85l-0.75,1.47l-0.76,0.32l-0.6,0.89l-0.78,-0.2l-0.43,0.23l-1.78,2.63l-1.48,-1.04l-0.66,0.1l-1.42,2.27l-0.22,1.31l-0.88,0.87l-0.64,2.02l-1.22,1.74l-2.8,-0.93l-0.97,-1.83l-1.5,-0.55l-0.56,0.29l-0.74,3.05l-1.58,2.38l0.02,0.86l-1.88,1.84l-0.44,1.84l-0.84,1.65l-3.19,3.65l-1.27,2.63l-0.01,0.74l0.9,0.66l-1.21,0.99l0.21,0.98l-2.19,1.37l-0.39,-0.66l-0.78,-0.02l-3.22,1.63l-0.81,-0.66l-1.24,-0.01l-0.58,0.74l0.19,1.08l-0.93,0.6l-0.65,-0.16l-2.19,0.47l-1.23,0.62l-1.69,-1.54l-0.67,-0.14l-1.02,1.24l-1.05,0.24l-1.33,1.06l-0.96,-0.11l-1.56,-1.29l-1.15,-0.23l-0.41,-0.74l-0.96,-0.74l-0.01,-1.14l-0.68,-0.67l0.41,-0.55l-0.15,-0.76l-0.72,-0.49l-1.94,-0.29l-0.91,-1.24l-1.7,-1.02l-0.47,-1.42l-1.18,-1.3l-0.37,-1.43l-0.78,-0.68l0.05,-0.99l-1.08,-1.06l-1.44,-2.38Z", "name": "West Virginia"}, "US-NV": {"path": "M156.98,303.22l-53.73,-51.28l-29.07,-25.88l-0.01,-60.92l92.04,-0.01l0.01,115.78l-1.22,3.1l-0.34,0.19l-1.17,-0.01l-1.15,-1.8l-0.73,-0.47l-1.22,0.37l-1.87,-0.62l-1.39,0.42l-1.45,1.09l-0.33,2.27l1.13,2.11l-0.39,0.9l-0.03,1.17l0.75,2.63l-0.31,2.3l1.17,3.07l0.3,2.64l-0.11,0.91l-0.87,0.43l0.35,1.1l-0.34,0.51Z", "name": "Nevada"}, "US-TX": {"path": "M282.11,360.77l55.54,-0.03l0.4,-0.4l0.37,-84.44l46.56,-0.0l0.05,36.46l0.44,0.4l1.54,0.11l3.27,3.29l1.47,0.18l0.75,-0.49l2.18,0.56l0.43,-0.31l0.23,-1.11l0.46,0.61l0.79,0.19l0.97,1.44l-0.01,1.4l0.47,0.75l2.5,0.39l1.07,-0.16l1.19,0.77l2.4,0.62l2.13,-0.36l1.63,1.56l1.23,-0.08l1.1,-1.2l2.1,0.26l1.4,-0.35l0.04,1.88l0.81,0.64l1.34,0.36l-0.13,1.46l0.71,0.78l0.92,0.26l0.82,-0.17l2.87,-2.29l0.36,0.26l0.32,1.31l1.72,0.21l0.17,0.87l0.67,0.47l1.29,-0.15l0.77,-0.75l0.88,0.2l0.49,-0.79l-0.15,2.0l0.56,1.0l0.7,0.4l1.06,-0.45l0.69,-1.98l0.77,-0.54l0.36,-1.3l0.44,-0.08l0.93,1.47l1.13,0.11l0.71,0.45l1.12,-0.14l0.63,-1.11l0.31,0.11l-0.09,0.67l0.39,0.54l1.02,0.42l0.42,0.64l1.31,0.01l1.22,1.51l0.51,0.04l0.59,-0.54l0.1,-0.57l1.26,-0.04l0.85,-1.18l1.63,-0.28l1.45,-0.88l1.27,0.74l1.35,-0.13l0.31,-0.69l1.94,-0.53l0.49,-0.42l0.67,1.02l3.05,0.45l1.7,-0.93l0.35,-0.84l0.88,0.3l1.86,1.42l0.99,0.2l1.44,1.84l1.82,0.45l0.87,0.84l0.66,-0.05l2.96,0.92l0.28,0.68l1.16,0.9l1.3,-0.04l0.35,-0.56l0.63,0.33l0.8,-0.28l1.43,0.25l0.48,0.31l0.08,28.7l1.2,1.5l1.04,0.75l0.93,1.61l0.38,1.38l-0.22,2.19l1.4,1.44l-0.08,0.69l1.26,1.83l-0.2,0.96l0.79,0.93l0.41,1.39l0.87,0.3l-0.25,1.32l0.54,1.03l-0.68,0.34l-0.12,0.43l0.55,1.07l-0.5,0.68l0.08,1.17l-0.77,2.17l-0.66,0.65l-0.38,1.22l-0.73,0.94l0.42,1.68l-0.81,1.83l0.09,0.91l0.61,1.0l-0.2,0.83l0.31,1.32l-0.28,1.13l-1.03,1.34l-1.02,0.33l-1.09,2.17l-0.13,1.75l1.04,1.33l-2.75,-0.08l-6.11,2.68l-0.01,-0.24l-1.41,-0.5l-2.68,0.71l0.87,-2.45l-0.22,-1.28l-0.42,-0.6l-1.78,-0.04l-1.34,2.14l-0.28,-0.53l-1.92,-1.12l-0.6,0.95l0.21,0.47l0.75,0.33l-0.21,0.64l0.37,0.67l-0.5,0.96l0.13,0.41l1.02,0.65l-0.25,0.46l0.36,0.83l0.92,0.52l-0.26,0.8l-1.23,0.64l-1.56,1.79l-0.83,-0.4l-0.5,0.1l0.17,2.91l-3.18,2.77l-4.21,2.45l-2.69,0.24l-2.1,0.78l-0.22,0.81l-0.87,-0.16l-1.36,0.59l-0.25,-0.28l-0.75,0.07l0.29,-0.55l-0.47,-0.6l-1.2,0.14l-0.96,0.8l-0.4,-0.43l-0.09,-1.02l-1.15,-0.73l-0.5,0.42l0.45,2.02l-1.44,-0.34l-0.44,-1.1l-1.19,-0.35l-0.59,0.37l0.02,0.44l0.72,1.43l-0.0,1.02l1.61,0.78l-0.53,0.24l-0.18,0.83l0.63,0.26l0.88,-0.41l0.67,0.4l-3.43,1.79l-0.41,-0.12l-0.27,-1.16l-1.26,-1.38l-0.48,-0.05l-0.93,1.69l0.9,1.31l-0.27,0.82l0.23,0.69l-1.35,1.37l0.21,-1.75l-0.41,-0.36l-0.48,0.15l-0.61,0.88l0.18,0.63l-0.23,0.55l0.01,-0.73l-0.47,-0.51l-1.58,0.98l-0.65,-0.27l-0.63,0.45l0.01,0.63l-0.64,0.74l0.14,0.66l0.73,0.26l0.12,0.51l0.55,0.4l0.5,-0.38l0.3,-0.83l0.55,-0.23l0.01,0.34l-2.29,3.34l-0.94,-0.77l-1.15,0.28l-0.25,-0.28l-2.83,0.12l-0.2,0.58l0.33,0.52l0.47,0.34l1.14,0.05l0.44,1.25l1.6,0.92l-2.31,5.96l-0.97,-1.29l-1.88,1.44l-1.27,-1.84l-0.94,-0.77l-0.62,0.39l0.06,0.42l1.1,1.63l-0.14,0.56l-0.61,-0.08l-0.34,0.62l0.44,0.49l1.6,0.1l0.53,0.52l1.68,0.22l0.83,-0.42l-0.05,1.7l-0.79,0.54l0.25,1.24l-0.84,0.08l-0.4,0.38l0.25,1.69l-0.27,1.3l0.4,0.59l0.62,0.18l0.62,2.29l0.49,2.23l-0.73,0.65l0.46,0.45l-0.06,1.02l1.09,1.01l0.32,1.42l0.47,0.29l0.34,2.56l0.99,0.55l-0.31,0.79l0.18,0.84l-0.42,0.56l-1.02,0.21l-0.15,0.92l-0.57,0.08l-0.25,-0.48l-1.17,-0.4l-2.26,-2.09l-1.7,-0.19l-0.69,-0.43l-3.31,0.0l-0.65,0.3l-0.65,-0.48l-1.3,0.16l-1.62,-0.72l-1.22,-1.5l-0.91,-0.41l-2.32,-0.75l-1.16,0.29l-2.21,-2.16l-1.58,-0.04l-1.17,-0.52l-1.85,-0.2l0.26,-0.7l-0.23,-0.79l-0.83,-0.58l0.47,-2.33l-0.24,-0.53l0.64,-0.24l0.13,-0.51l-0.88,-0.5l-0.9,0.33l0.02,-0.87l-0.46,-0.64l0.65,-1.17l-0.22,-0.71l-0.63,0.09l-0.71,0.74l-0.46,-0.7l-0.64,-0.2l-0.21,-1.1l-1.16,-0.6l0.3,-2.88l-1.13,-1.61l0.52,-2.53l-0.56,-0.9l-0.13,-1.44l-1.51,-1.21l-0.69,0.13l-0.87,-0.4l-0.59,-1.05l-1.74,-1.36l-0.31,-1.73l-0.78,-0.75l-0.08,-0.63l-0.88,-0.47l-1.05,-2.34l-2.14,-1.21l-0.34,-0.75l-0.87,-0.45l-0.05,-0.94l-0.66,-0.95l-0.42,-1.53l0.24,-0.13l-0.04,-0.72l-0.81,-0.38l-0.2,-1.03l-0.65,-0.48l-0.78,-1.39l-0.51,-1.94l-1.51,-1.92l-0.74,-3.45l-1.49,-1.09l0.04,-0.56l-0.64,-1.01l-3.38,-2.37l-0.19,-0.93l1.36,-0.04l0.66,-0.74l-0.78,-0.44l-0.05,-1.1l0.62,-0.94l-0.19,-0.44l-1.06,0.61l-0.43,1.15l-0.66,0.13l-0.34,0.87l-0.36,-0.03l-1.44,-1.39l-0.36,-1.13l-1.14,0.04l-0.87,-0.47l-0.73,-1.68l-1.28,-0.72l-0.65,0.15l-0.42,-0.63l-0.58,0.12l-0.18,0.48l-0.82,0.13l-2.32,-0.33l-0.38,-0.31l-4.67,0.17l-2.96,-1.54l-0.61,-0.04l-0.85,0.71l-0.48,1.31l-1.62,-0.09l-2.89,0.96l-2.38,5.21l-0.12,1.43l-0.6,0.61l-0.27,1.49l0.24,0.45l-1.5,0.82l-0.58,1.1l-1.35,1.27l-0.19,0.85l-2.22,-0.22l-0.98,-0.68l-0.41,0.23l-1.37,-0.89l-1.11,-1.29l-2.39,-0.61l-0.92,-0.72l-0.46,-0.89l-2.26,-0.33l-1.87,-0.75l-3.21,-3.29l-1.3,-0.22l-2.63,-2.13l-0.78,-2.33l-0.74,-0.79l-0.91,-1.89l-0.31,-1.88l0.31,-2.53l-2.69,-4.05l-0.14,-1.62l-1.15,-2.01l-0.84,-0.35l-0.43,-1.0l-1.22,-0.61l-1.89,-1.7l-0.87,-0.07l-1.7,-0.9l-2.81,-2.63l-0.58,-1.26l-2.73,-1.96l-3.03,-3.49l-3.87,-1.95l-2.26,-4.31l-0.71,-0.67l-1.52,-0.23l-1.49,-1.2l-0.85,-2.46ZM429.22,467.61l0.2,-0.15l0.17,-0.24l0.02,0.35l-0.39,0.03Z", "name": "Texas"}, "US-NH": {"path": "M814.8,148.96l-1.19,-1.78l-0.14,-0.92l0.47,-1.88l0.67,-0.4l0.18,-0.48l0.5,-5.22l0.55,-1.07l0.17,-5.43l0.92,-1.21l0.36,-2.16l1.48,-1.47l0.53,-2.2l1.26,-1.97l-0.24,-0.71l0.96,-2.17l0.19,-3.79l0.7,-0.98l1.99,-0.23l1.08,-1.12l1.85,-1.12l1.24,-1.5l0.09,-1.15l0.68,-0.44l-1.21,-4.03l1.81,-2.86l0.13,-0.78l-0.39,-1.48l0.44,-0.48l-0.02,-0.74l1.42,-2.94l-0.11,-0.9l1.34,-1.17l2.25,1.06l0.89,-0.65l1.93,36.97l-0.29,3.65l1.78,2.82l0.69,0.51l-0.06,1.8l1.17,1.56l-0.1,0.32l0.65,0.46l-1.56,3.21l-1.53,-0.24l-1.58,0.72l-0.75,0.72l-1.0,0.06l-0.96,1.4l-1.44,1.0l-17.77,-0.58Z", "name": "New Hampshire"}, "US-NY": {"path": "M790.96,193.96l-0.57,-0.81l1.58,-2.68l1.01,-0.0l0.46,-0.33l0.6,0.36l0.7,-0.14l0.1,-0.52l1.56,-0.57l0.18,-1.33l0.76,-0.22l0.18,0.58l1.0,0.13l0.55,-0.18l0.14,-0.47l1.38,0.21l0.43,-0.6l1.49,0.44l0.98,-0.25l0.74,-0.96l0.48,0.37l0.53,-0.33l4.27,-0.01l2.45,-0.38l2.93,-1.91l0.09,0.14l-3.22,2.4l-0.14,0.41l0.43,0.52l1.51,0.12l0.09,0.59l-1.48,0.71l-2.02,-0.06l-0.49,0.41l-1.18,0.07l0.1,0.44l-0.29,0.2l-0.58,-0.32l-0.86,0.43l-0.99,-0.12l-0.49,0.39l-1.4,0.03l-0.42,0.53l-1.26,-0.17l-2.06,1.02l-2.86,0.48l-1.15,0.52l-0.98,-0.18l-0.55,0.75l-0.3,-0.71l-1.27,-0.59l-1.0,0.45l-0.2,0.87l-0.94,0.26ZM814.91,187.64l1.36,-1.65l1.19,-0.11l0.81,-0.65l0.65,0.5l0.35,-0.68l0.45,0.71l-4.47,2.24l-0.34,-0.36ZM817.33,182.6l0.11,-0.02l0.04,0.01l-0.1,0.09l-0.05,-0.07ZM701.17,159.34l4.35,-2.83l1.67,-1.79l3.33,-1.87l1.93,-2.88l2.45,-1.57l0.2,-1.78l-1.02,-2.63l0.65,-0.97l0.0,-0.79l-0.69,-0.68l-2.0,-0.44l0.25,-0.92l-0.07,-2.23l5.4,-1.72l4.7,-0.73l2.33,0.34l1.93,-0.29l5.45,1.04l2.7,1.89l3.41,-0.87l5.49,0.27l0.46,0.56l0.7,-0.03l0.35,-0.9l3.52,-0.99l1.15,-1.77l2.21,-1.22l1.05,-1.01l1.06,0.3l1.2,-0.22l1.42,-1.29l-0.27,-0.78l0.63,-1.04l-0.11,-0.56l-0.62,-0.14l0.13,-1.15l-0.51,-1.73l-0.82,-0.83l0.63,0.38l0.58,-0.13l1.07,-1.19l0.22,-0.88l0.94,-0.42l0.23,-0.94l-0.84,-0.41l-0.76,0.52l-0.28,0.05l0.85,-1.1l-0.63,-0.81l-1.23,-0.26l-1.02,0.52l-0.78,-0.9l2.59,-1.9l2.08,-0.98l2.27,-2.12l0.82,-0.36l1.25,-1.26l0.21,-0.53l-0.24,-1.03l1.24,-1.63l6.63,-6.13l5.81,-3.13l2.9,0.25l20.63,-0.14l0.15,0.96l-0.64,1.91l0.64,1.45l-0.64,3.77l1.31,3.57l-0.62,1.95l0.15,2.53l-0.86,0.85l-0.94,3.25l0.43,1.04l0.5,2.97l-0.12,1.08l0.36,0.96l-0.96,3.73l0.29,0.95l0.5,0.22l0.68,-0.43l0.3,-0.8l0.32,0.02l0.68,1.33l-0.3,14.57l-0.33,1.51l0.28,1.18l-3.69,13.83l0.39,0.74l-0.99,15.69l0.79,1.53l-3.4,2.13l-0.12,0.53l1.17,1.9l-2.57,2.53l-0.09,0.99l-1.0,0.14l0.86,-3.86l0.06,-2.16l-0.26,-1.66l-1.05,-1.36l0.13,-1.06l-0.65,-0.28l-0.73,1.11l0.37,1.53l0.68,0.86l0.14,2.71l-11.57,-7.09l-0.82,-1.66l-2.27,-0.37l-1.41,-0.93l-1.13,-2.17l-0.11,-2.3l0.29,-0.65l-0.18,-0.68l-0.45,-0.33l0.18,-0.38l-0.23,-0.5l-1.36,-1.02l-1.08,0.03l-0.35,-1.48l-1.41,-1.11l-68.54,-0.05l-0.0,-4.99Z", "name": "New York"}, "US-HI": {"path": "M301.21,443.33l0.6,1.03l2.42,1.51l1.35,0.01l2.07,0.75l4.98,3.01l1.48,1.67l0.03,2.73l0.42,0.38l1.29,-0.33l0.32,0.22l0.14,1.26l0.63,1.15l2.66,2.09l-1.05,1.59l-0.93,0.38l-1.2,1.17l-2.2,1.12l-2.03,0.6l-1.89,-0.05l-1.56,1.2l-2.85,1.49l-0.96,0.97l-0.16,1.13l-1.88,2.42l-2.81,-1.91l-1.13,-0.33l-0.51,-0.85l-0.24,-1.15l0.65,-4.74l-1.93,-5.4l-1.11,-1.35l-0.41,-1.16l0.34,-0.86l1.3,-1.41l0.99,-0.46l1.04,-1.73l0.83,-0.67l0.22,-1.16l-1.45,-2.7l-0.04,-1.29l0.3,-0.6l2.32,0.29ZM283.53,426.56l0.55,-0.06l0.85,0.46l1.57,2.23l2.14,-0.43l0.96,-0.58l1.62,0.26l2.22,2.07l2.4,0.85l0.24,1.33l-1.11,1.16l-1.51,0.56l-1.57,0.01l-1.85,0.9l-1.92,-0.11l-0.52,-0.66l-0.52,-3.41l-0.7,-0.42l-0.97,0.41l-1.53,-0.66l-1.1,-1.33l-0.03,-1.52l0.79,-1.04ZM251.18,414.51l2.23,-0.04l1.47,-1.16l0.97,-1.37l0.58,-0.13l1.4,2.51l1.01,1.0l-0.26,0.55l0.15,0.99l1.38,1.26l0.7,-0.1l0.63,0.65l0.29,1.03l0.72,0.5l-0.33,0.31l-0.53,-0.23l-1.69,0.58l-2.0,-1.63l-0.52,0.48l-0.35,-0.18l0.57,-0.44l-0.03,-0.67l-1.59,-0.48l-0.67,0.21l-0.14,0.47l0.75,0.99l-1.8,0.36l-1.56,-2.98l-0.79,-0.8l-0.1,-1.18l-0.47,-0.5ZM220.44,403.92l1.24,-1.88l2.96,-1.51l1.0,0.46l0.55,-0.47l2.34,0.16l1.01,1.47l-0.82,1.87l0.04,1.62l-1.86,1.85l-3.39,-0.66l-0.9,-1.0l-1.77,-0.57l-0.44,-0.68l0.04,-0.65Z", "name": "Hawaii"}, "US-VT": {"path": "M799.97,130.84l-0.02,-0.88l0.94,-3.1l-0.37,-1.13l0.13,-0.97l-0.52,-3.08l-0.41,-0.81l0.88,-2.99l0.89,-0.93l-0.12,-2.68l0.62,-2.03l-1.31,-3.65l0.64,-3.68l-0.64,-1.5l0.63,-1.77l-0.13,-1.09l27.46,-0.19l0.31,2.04l-1.42,2.05l-0.49,1.47l1.32,3.28l-0.66,0.41l-0.08,1.15l-1.11,1.32l-1.73,1.03l-1.0,1.07l-1.85,0.17l-0.86,0.7l-0.38,0.9l-0.19,3.81l-0.98,2.22l0.22,0.62l-1.17,1.81l-0.48,2.1l-1.48,1.48l-0.42,2.29l-0.94,1.3l-0.18,5.49l-0.55,1.08l-0.5,5.22l-0.78,0.63l-0.54,2.17l0.21,1.34l1.1,1.41l-11.8,-0.33l0.52,-16.82l-1.2,-1.97l-1.02,0.03l-0.52,0.99Z", "name": "Vermont"}, "US-NM": {"path": "M244.84,372.29l0.01,-106.11l93.41,0.0l0.01,8.92l-0.65,0.42l-0.36,84.42l-55.65,0.03l-0.4,0.42l0.49,1.9l0.57,1.37l0.77,0.47l-25.63,-0.07l-0.4,0.4l0.0,7.83l-12.17,0.0Z", "name": "New Mexico"}, "US-NC": {"path": "M631.17,299.62l0.79,0.27l1.83,-0.4l0.61,-0.77l0.5,-2.28l1.34,-0.82l0.55,-0.82l2.16,-0.92l1.92,-0.13l0.62,0.27l1.25,-0.25l2.45,-1.8l0.71,-0.09l1.97,-1.68l1.43,-0.62l1.4,0.07l1.44,-2.12l-0.06,-1.07l1.43,0.32l0.73,-1.35l0.91,-0.5l1.04,-0.47l0.17,1.35l0.92,0.48l1.38,-0.8l1.6,-2.05l2.41,-0.95l0.65,0.18l0.61,0.82l1.0,-0.01l0.93,-0.79l1.98,-3.34l1.11,-0.75l1.26,0.32l0.47,-0.21l-0.38,-1.22l0.69,-1.65l-0.21,-0.87l0.52,-0.96l6.65,0.51l17.74,0.58l62.8,-0.21l0.09,1.08l2.34,3.53l0.46,1.34l-0.65,-0.99l-0.03,-0.59l-0.71,-0.55l-0.48,-0.08l-0.39,0.57l0.45,0.6l0.18,1.37l-2.83,-2.11l-0.29,-0.51l-0.54,-0.0l-0.44,0.54l-0.02,0.61l1.1,0.69l1.1,1.47l-1.0,0.3l-1.89,-1.56l-0.47,0.4l0.03,0.41l1.02,1.21l-3.09,-1.82l-0.48,0.02l0.23,1.16l1.22,1.05l-0.85,0.26l-0.62,0.86l-1.4,0.31l-0.58,-0.83l-0.87,0.19l-0.63,-2.22l0.75,-2.21l-0.28,-0.52l-0.73,-0.38l-0.51,0.53l0.38,0.7l-0.83,1.64l0.05,1.59l0.89,2.19l-0.52,1.01l0.4,0.4l2.68,0.13l2.13,-0.81l0.34,0.8l0.76,-0.11l1.33,0.38l0.33,-0.66l-0.33,-0.34l1.16,-0.33l1.77,0.02l-0.31,0.96l0.48,0.4l-0.7,0.61l0.5,1.16l-0.7,-0.1l-0.35,0.6l1.09,0.7l-0.04,0.74l-0.97,-0.2l-0.35,0.59l0.46,0.66l1.51,0.46l0.47,-0.26l0.58,-1.61l0.08,-2.94l0.42,-0.29l0.38,0.46l0.83,0.26l0.36,-0.33l-0.07,-0.55l0.45,-0.33l1.0,1.85l-0.32,1.18l0.32,0.83l-0.81,0.43l0.37,1.41l-0.44,0.33l-0.68,-0.08l-0.59,-0.91l-0.39,0.24l-0.17,1.08l-1.28,1.14l0.03,0.5l-0.63,0.87l-0.77,0.34l-0.14,0.78l-0.95,0.6l-0.89,-0.04l-0.45,-0.44l-0.58,0.31l-0.59,-0.86l-0.73,-0.1l-0.16,-0.74l-0.48,-0.33l-0.57,0.22l-0.13,0.79l-0.46,0.07l-0.76,-1.2l0.76,0.04l0.44,-0.33l0.23,-0.52l-0.45,-0.55l-1.79,-0.17l-1.22,0.62l0.56,1.9l-0.42,-0.38l-1.61,0.34l-4.85,-2.11l0.12,1.07l0.75,0.61l0.15,0.58l1.36,0.17l1.3,0.88l4.88,1.66l0.28,0.41l-0.13,0.36l-0.82,-0.17l-0.45,0.56l-1.65,0.87l0.17,0.64l1.47,0.39l-2.81,2.29l-1.39,-0.3l-1.88,-1.5l-0.83,-1.11l-1.02,-0.16l-0.04,0.47l2.19,3.4l3.28,1.48l1.89,-1.44l1.25,1.01l0.53,-0.46l-0.32,-0.8l0.65,0.29l0.39,0.82l1.57,-0.35l0.06,0.71l-1.06,0.19l-0.16,0.74l-1.19,1.23l-0.14,0.63l-0.49,-0.16l0.07,-0.67l-0.84,-0.75l-0.52,0.36l-0.04,0.63l-0.38,-0.62l-0.72,-0.01l-0.97,0.65l-0.09,0.58l-1.73,-0.15l-2.67,0.95l-0.35,-0.93l-0.61,-0.46l-0.47,0.39l0.13,1.05l-0.46,-0.1l-1.43,1.93l-0.9,0.5l-0.36,-0.29l0.5,-0.45l0.14,-0.7l-0.68,-0.96l0.01,-0.49l-1.41,-0.7l-0.26,0.42l0.13,1.07l0.71,1.02l-0.8,0.11l-0.24,0.64l1.02,0.97l-0.07,0.24l-2.11,0.95l-2.17,1.84l-2.56,3.19l-0.75,1.87l-0.49,-1.42l-0.48,-0.29l-0.4,0.4l0.2,3.51l-0.93,1.71l-3.3,-0.6l-1.34,0.26l-0.64,-0.76l-0.69,0.79l-1.82,0.58l-0.47,-0.14l-16.82,-17.16l-17.48,-0.59l-0.09,-2.43l-2.31,-2.98l-0.46,-0.01l-1.21,0.85l0.21,-1.0l-0.65,-0.64l-20.24,-0.93l-0.53,-0.33l-0.97,0.8l-3.74,1.02l-0.95,0.9l-0.88,-0.09l-4.54,1.52l-18.63,0.25l0.35,-3.85l0.69,-0.67ZM761.91,282.38l0.03,0.15l0.04,0.12l-0.11,-0.18l0.04,-0.1ZM754.5,305.09l0.11,-0.17l0.04,0.03l-0.09,0.13l-0.05,0.01ZM752.27,304.48l0.01,-0.13l0.07,0.1l-0.08,0.03Z", "name": "North Carolina"}, "US-ND": {"path": "M428.21,9.38l1.98,7.65l-0.86,2.73l0.53,2.57l-0.32,1.26l0.44,2.17l-0.1,3.52l1.37,4.28l0.46,0.6l-0.12,1.04l0.36,1.63l0.63,0.8l1.43,4.04l-0.2,4.14l0.41,0.75l0.23,8.81l0.47,1.61l0.54,0.29l-0.59,2.75l0.31,1.71l-0.21,1.82l0.68,1.16l0.13,2.25l0.46,1.19l1.76,2.72l0.08,2.28l0.48,1.13l0.12,1.44l-0.3,1.39l0.23,1.81l-115.81,-0.01l-0.04,-69.55l105.46,-0.0Z", "name": "North Dakota"}, "US-NE": {"path": "M408.85,143.99l3.79,2.69l3.8,1.91l1.31,-0.19l0.51,-0.45l0.37,-1.03l0.46,-0.18l2.43,0.38l1.3,-0.42l1.54,0.28l3.38,-0.53l2.26,1.98l1.37,0.18l1.49,0.79l1.41,0.12l0.82,1.09l1.43,0.21l-0.08,0.94l1.57,2.06l3.2,0.69l-0.12,2.43l1.02,1.9l-0.08,2.19l1.08,1.07l0.26,1.65l1.61,1.46l-0.01,1.78l1.36,2.05l-0.57,2.18l0.3,2.94l0.49,0.55l0.89,-0.15l-0.08,1.17l1.13,0.53l-0.48,2.18l0.19,0.46l1.03,0.41l-0.59,0.68l-0.12,0.95l0.11,0.58l0.75,0.5l0.09,1.35l-0.29,0.85l0.2,1.21l0.49,0.59l0.2,1.8l-0.26,1.23l0.19,0.68l-0.57,0.83l-0.01,0.76l0.39,0.84l1.14,0.64l0.14,2.34l1.01,0.51l-0.0,0.73l0.99,2.57l-0.25,0.9l1.1,0.26l0.71,0.95l1.01,0.26l-0.18,0.89l1.14,1.59l-0.25,1.02l0.36,0.83l-102.86,0.0l-0.01,-20.08l-0.4,-0.4l-30.79,-0.01l0.01,-41.15l86.18,0.0Z", "name": "Nebraska"}, "US-LA": {"path": "M478.65,360.31l0.03,-18.22l43.98,-0.05l0.26,0.71l1.17,0.62l-0.87,1.04l-0.38,1.8l0.38,0.68l0.94,0.29l-1.01,0.25l-0.49,0.68l0.28,1.19l0.82,0.78l-0.11,1.79l1.57,1.25l0.3,0.92l1.15,0.44l-0.83,0.92l-0.88,1.85l-0.6,-0.02l-0.54,0.43l-0.08,0.63l0.47,0.67l-0.26,0.88l-1.21,0.69l-1.05,1.48l-1.19,0.45l-0.66,0.66l-0.85,1.96l-0.46,2.87l-1.42,1.33l0.0,1.05l0.44,0.84l-0.46,1.9l-1.46,0.14l-0.45,0.44l0.17,0.86l0.47,0.54l-0.3,1.14l0.69,1.27l-1.04,0.86l-0.12,0.44l0.38,0.26l29.57,0.0l-1.38,3.49l-0.37,1.85l0.76,2.31l1.02,0.71l0.87,1.26l0.66,2.83l0.7,1.51l-1.45,0.13l-0.64,-1.07l-1.06,0.11l-0.92,-0.59l-1.24,0.01l-0.39,-0.82l-0.97,-0.85l-2.35,-0.65l-1.12,0.43l-2.53,2.83l-0.43,0.75l-0.04,1.02l1.04,1.34l3.43,1.04l2.86,-0.54l1.8,-1.64l1.09,0.83l1.52,-0.48l-0.66,0.72l-1.39,0.05l-0.48,1.22l0.54,1.11l1.21,0.16l0.75,1.02l0.61,0.24l1.3,-0.44l0.49,-0.89l0.1,-1.09l0.8,-0.38l0.5,-0.71l-0.23,1.05l0.38,0.72l-0.15,0.37l1.12,1.24l-0.15,0.79l-1.3,-0.71l-1.04,1.46l-0.67,0.03l-0.46,0.41l-0.07,0.85l-1.08,-0.52l-0.44,0.14l-0.01,0.47l0.71,0.8l-0.77,-0.17l-0.86,0.48l1.39,2.24l2.09,1.0l-0.15,0.96l0.27,0.4l1.72,-0.06l1.27,0.98l1.1,-0.13l0.58,0.71l0.77,-0.33l0.74,0.65l-0.3,0.71l1.11,0.86l-0.32,0.46l0.29,0.53l-0.26,0.45l-0.82,0.92l-0.69,-1.11l-0.64,-0.05l0.13,-0.67l-0.37,-0.43l-0.7,-0.39l-0.54,0.42l0.05,0.96l-0.36,0.26l-0.12,-0.82l-1.0,-1.28l0.03,-0.72l-2.09,-0.04l-0.78,-0.75l-1.73,-0.26l0.24,-1.2l-0.45,-0.61l-0.78,-0.12l0.19,-0.69l-0.32,-0.37l-2.06,0.14l-1.98,-1.24l-1.01,-0.16l-0.47,-0.53l-0.63,0.12l-0.28,0.42l-0.15,1.09l1.35,0.94l1.26,0.38l-0.18,1.86l-0.67,0.73l-0.08,0.54l0.56,0.88l-0.84,0.99l-1.05,0.6l-0.51,-0.91l0.29,-1.17l-0.21,-0.82l-0.43,-0.22l-0.34,0.25l-0.89,-0.96l-0.48,0.23l-0.51,-0.83l-0.54,-0.23l-0.66,1.02l-0.7,0.14l-0.67,-0.49l-0.78,0.4l-0.15,0.54l0.31,0.4l-0.53,0.32l-0.23,1.14l-0.71,0.7l-0.63,-0.06l-0.08,-0.45l-1.31,-0.5l-0.72,0.7l-1.43,-0.88l-0.24,-0.46l-0.88,-0.06l-0.29,0.44l-0.72,-0.45l0.38,-1.49l-1.71,-1.61l-0.65,-1.08l-0.01,-0.7l0.73,-1.18l-0.26,-0.72l-0.75,-0.25l-0.77,1.3l-0.06,0.84l-1.3,-0.43l-0.32,-0.77l-1.61,0.44l-0.46,-1.83l-1.04,0.07l0.13,-1.26l-0.36,-0.63l-2.37,-0.15l-0.97,0.47l-0.13,-0.43l0.72,-0.21l0.01,-0.68l-0.49,-0.57l-0.86,-0.17l-0.74,0.26l-0.77,-0.17l-0.41,0.64l-1.66,0.72l-0.87,-0.16l-0.81,0.49l0.35,1.17l0.67,0.37l0.58,1.18l-2.43,0.95l-6.14,-1.24l-5.33,-2.3l-2.81,-0.75l-5.67,0.18l-4.12,0.96l-0.64,-1.07l1.0,-0.31l0.72,-0.8l0.34,-1.87l-0.41,-0.77l0.98,-1.18l0.29,-1.32l-0.31,-1.55l0.14,-1.2l-0.52,-0.64l-0.11,-0.83l0.81,-1.77l-0.42,-1.64l0.68,-0.66l0.31,-1.18l0.7,-0.74l0.82,-2.31l-0.07,-1.19l0.53,-0.76l-0.52,-1.11l0.67,-0.27l0.19,-0.69l-0.63,-0.9l0.13,-1.77l-0.89,-0.32l-0.38,-1.28l-0.71,-0.74l0.3,-1.05l-1.33,-1.8l0.19,-0.8l-0.95,-0.56l-0.61,-0.79l0.27,-2.02l-0.48,-1.67l-1.01,-1.72l-2.09,-1.96ZM552.55,413.03l0.03,0.16l-0.11,0.02l0.08,-0.18ZM522.87,410.11l-0.65,-0.11l-1.17,-0.71l0.82,-0.75l0.86,0.56l0.13,1.01Z", "name": "Louisiana"}, "US-SD": {"path": "M322.61,100.54l0.28,-0.55l-0.1,-20.26l115.67,0.01l-0.25,1.75l-0.8,1.72l-3.04,2.41l-0.47,1.28l1.54,2.21l1.0,2.12l0.54,0.38l1.75,0.31l1.0,0.89l0.54,1.06l0.0,38.63l-1.81,0.02l-0.44,0.54l0.19,1.41l0.82,1.14l-0.04,1.4l-0.65,0.34l0.11,1.45l0.46,0.44l1.06,0.08l0.27,1.63l-0.19,0.87l-0.64,0.78l-0.05,1.68l-0.75,2.33l-0.5,0.41l-0.73,1.8l0.45,1.09l1.24,1.07l-0.17,0.59l0.6,0.66l0.3,1.1l-1.58,-0.32l-0.3,-0.91l-0.8,-0.73l0.21,-0.57l-0.26,-0.6l-1.53,-0.27l-0.97,-1.17l-1.53,-0.16l-1.45,-0.77l-1.31,-0.15l-2.27,-1.99l-3.72,0.47l-1.61,-0.28l-1.17,0.42l-2.55,-0.38l-0.98,0.45l-0.77,1.38l-0.7,0.03l-3.54,-1.82l-3.99,-2.78l-86.36,-0.0l-0.05,-42.65Z", "name": "South Dakota"}, "US-DC": {"path": "M743.96,229.1l-0.27,-0.62l-1.22,-0.89l0.7,-0.72l1.5,1.5l-0.72,0.73Z", "name": "District of Columbia"}, "US-DE": {"path": "M763.1,211.99l0.8,-1.27l1.08,-0.77l1.08,-0.24l1.58,0.3l-0.79,1.6l-1.35,1.2l-0.27,0.68l-0.03,0.59l0.73,0.99l-0.44,2.08l2.79,3.85l0.07,3.77l1.36,1.93l0.13,1.22l2.3,2.73l1.22,0.26l0.13,1.1l-0.54,0.09l-0.47,0.57l0.07,0.89l-0.81,0.3l-0.37,1.07l0.57,0.37l0.92,-0.44l0.85,0.37l0.15,1.39l-0.31,0.14l-8.98,-0.11l-1.45,-24.64Z", "name": "Delaware"}, "US-FL": {"path": "M579.05,379.06l39.63,-0.01l0.98,1.71l0.35,2.32l1.15,1.06l40.51,2.77l0.64,1.23l-0.14,0.87l0.29,0.96l0.83,0.59l1.4,0.02l0.85,-0.52l0.6,-3.74l-0.57,-1.37l0.09,-1.45l1.09,-1.2l4.33,1.66l3.31,0.53l-0.12,0.79l-0.55,-0.13l-0.37,0.34l-0.04,1.31l1.43,1.82l0.22,2.82l2.44,10.12l5.03,12.13l3.13,5.23l-1.53,-0.93l-0.56,0.43l1.3,6.12l5.99,13.84l0.57,2.69l1.92,4.68l-1.1,-0.45l-0.31,0.61l0.52,0.65l1.13,0.3l0.94,0.95l1.06,2.67l-0.61,0.6l0.82,0.64l0.38,1.57l-0.24,0.81l0.3,0.85l0.03,2.16l-0.33,0.54l-0.76,7.18l-0.42,0.8l0.24,0.63l-0.12,2.44l-0.86,1.04l-0.31,1.74l-0.73,0.41l-0.99,2.0l-0.59,2.5l0.39,1.72l-1.57,2.02l-2.23,-0.06l-0.46,0.73l-0.72,0.14l-0.94,0.8l-1.07,-0.09l-0.18,-0.33l-0.99,-0.26l-0.85,0.67l-2.54,0.37l-0.64,-0.59l-0.36,-0.89l0.28,-1.28l0.5,0.74l1.74,1.34l1.2,-0.36l0.19,-1.13l-1.07,-1.16l-2.39,-1.06l-0.38,-1.41l-0.54,-0.65l0.29,-0.77l-0.77,-0.35l-0.65,-2.08l-0.82,-0.41l-0.19,-0.46l0.26,-0.74l-0.45,-0.62l-2.14,-1.43l-2.74,-0.78l-0.3,-0.74l-0.63,-0.01l-0.91,-2.42l-0.43,-0.27l-0.66,-5.18l-0.87,-1.05l-0.31,0.7l-0.72,-0.32l1.0,-0.88l0.37,-1.08l0.79,-0.9l0.57,-0.19l0.36,-0.65l-0.53,-0.49l-1.27,0.53l-0.9,0.9l-0.65,1.63l-0.98,0.09l0.05,-1.05l-0.41,-1.16l0.39,-3.22l-0.54,-0.6l1.5,-0.89l0.24,-0.62l-0.49,-0.52l-2.62,1.03l-1.68,-1.35l-0.52,0.62l1.12,1.21l0.67,1.7l-1.74,-0.52l-0.41,-1.36l-0.81,-0.67l-1.13,-2.27l-0.48,-1.97l-0.86,-0.86l0.2,-0.67l-0.5,-1.58l-1.22,-1.04l0.13,-0.39l0.84,-0.26l-0.15,-0.46l0.39,-0.5l-0.25,-0.33l0.49,-0.91l2.6,-3.18l-0.46,-2.12l-0.54,-0.53l-0.83,0.21l-0.33,0.47l-0.08,1.21l-0.22,-2.03l-1.53,-1.22l-1.26,-0.49l-0.12,1.62l-0.42,0.41l0.16,0.63l1.59,0.74l-0.45,2.56l-0.14,-0.43l-2.08,-1.84l-0.34,0.1l-0.12,-0.46l0.76,-1.58l0.36,-1.67l0.16,-1.12l-0.27,-1.21l1.06,-1.82l-0.1,-0.5l0.96,-2.32l0.5,-4.37l-0.03,-3.5l-1.49,-1.4l-0.27,-1.63l-0.61,-0.76l-0.23,-1.27l-0.58,-0.36l-1.98,-0.27l-1.25,0.22l-0.67,-1.55l-1.14,-0.6l-0.94,-1.93l-2.78,-2.05l-0.04,-2.3l-2.32,-1.36l-0.68,-1.61l-1.49,-1.89l-1.61,-1.18l-1.18,-0.32l-2.55,-1.83l-2.47,0.36l-0.81,-0.43l-2.47,1.08l-0.58,0.97l-0.94,-0.07l-0.2,0.28l0.61,1.06l-1.15,0.05l-2.29,1.27l-1.34,1.14l-1.4,0.6l-0.04,-0.79l-0.6,-0.12l-1.96,1.54l-1.8,-0.09l-2.43,0.53l0.05,-1.64l-0.89,-1.71l-2.15,-1.9l0.68,0.11l0.79,-0.43l0.13,-0.69l-1.13,-0.48l-0.24,0.19l-0.16,-1.1l-0.43,-0.4l-1.18,0.33l-1.69,-0.84l0.58,-0.71l0.71,-0.01l1.03,-1.13l-0.65,-0.92l-0.47,0.05l-0.51,0.73l-1.03,0.26l-0.44,-0.76l-0.71,-0.01l-1.37,0.71l-0.13,0.83l-2.88,-1.49l-2.86,-0.85l0.51,-0.3l1.19,0.53l0.66,-0.15l0.15,-0.52l-0.63,-0.96l0.14,-0.55l-0.58,-0.37l-0.38,0.18l-0.14,-0.36l-1.66,-0.12l-1.75,0.48l-0.16,-0.85l-1.3,-0.1l-0.22,0.97l-1.67,0.91l-4.09,0.2l0.19,-0.31l-0.29,-0.52l-1.55,-0.87l0.54,-0.27l0.12,-0.74l-1.16,-0.83l-0.47,0.05l-0.44,1.87l-1.03,-1.43l-0.46,-0.17l-0.54,0.32l0.0,1.0l0.4,0.87l-0.29,0.6l-1.21,0.61l-0.2,0.84l-0.46,0.11l-0.26,0.47l-0.99,0.22l0.05,-0.77l1.01,-0.67l0.19,-0.53l-0.29,-0.68l-0.95,-0.33l-0.24,-0.7l0.53,-2.52l-1.76,-1.36l-1.65,-2.17l0.38,-2.01ZM589.15,389.05l-0.31,0.04l0.15,-0.13l0.15,0.09ZM606.41,392.88l0.6,-0.11l0.13,0.65l-0.73,-0.54ZM685.76,419.28l1.16,1.73l-0.59,0.41l-1.05,-0.33l0.48,-1.81ZM688.24,423.81l0.14,0.23l-0.26,0.33l0.12,-0.56ZM610.64,395.66l-0.29,-0.24l0.09,0.03l0.2,0.21ZM598.81,389.71l-0.08,-0.02l0.02,-0.03l0.06,0.05Z", "name": "Florida"}, "US-CT": {"path": "M795.43,183.52l3.42,-2.17l0.09,-0.54l-0.87,-1.46l0.97,-15.34l9.72,0.4l0.45,0.58l0.67,-0.07l0.38,-0.47l14.18,0.23l0.08,10.1l-0.12,1.88l-0.51,1.49l-1.59,-0.16l-1.06,0.48l-1.03,-0.55l-0.43,0.77l-1.05,-0.25l-1.51,0.8l-0.5,-0.28l-0.25,-1.07l-0.8,-0.33l-0.39,0.59l0.51,0.77l-0.07,0.48l-0.79,-0.25l-1.17,0.51l-1.53,-0.38l-1.31,0.54l-1.35,-0.27l-1.37,0.52l-0.31,-1.07l-0.61,-0.06l-1.58,1.95l-1.14,0.28l-0.5,0.84l-0.62,-0.42l-1.05,0.26l-0.3,0.74l-1.84,0.44l-2.37,1.54l-1.52,0.37l-0.93,-1.41Z", "name": "Connecticut"}, "US-WA": {"path": "M0.49,28.52l0.59,-1.05l-0.16,-0.75l0.61,-1.77l-0.95,-1.36l1.26,0.55l0.45,-0.12l4.33,2.54l1.11,0.09l2.87,1.93l4.21,0.56l1.26,-0.25l1.0,0.53l0.77,0.14l0.57,-0.32l1.9,0.71l1.65,0.1l1.38,-0.05l1.1,-0.97l0.63,0.19l0.66,0.63l0.26,1.31l0.74,0.62l0.34,0.03l0.39,-0.46l-0.12,-0.83l0.51,-0.09l1.0,1.31l-0.26,0.71l0.45,0.4l0.55,-0.18l0.53,-1.05l-0.82,-1.68l1.06,-0.53l-0.42,0.4l-0.04,0.74l2.44,4.32l-0.48,0.22l-1.32,2.3l-0.1,-1.49l-0.32,-0.34l-1.24,0.64l-0.19,0.92l0.34,0.97l-0.99,2.13l-1.68,1.93l-0.72,1.72l-0.81,0.96l-0.69,1.98l0.11,0.72l0.77,0.45l0.99,-0.12l2.69,-1.19l1.09,-0.9l-0.2,-0.67l-0.7,-0.07l-2.79,1.56l-0.45,-0.24l2.43,-4.37l2.9,-1.68l0.53,-1.79l1.41,-2.06l0.68,0.48l0.48,-0.31l-0.24,-2.0l0.55,2.44l0.49,0.87l-1.08,0.05l-0.46,0.97l-0.62,-0.67l-0.57,-0.06l-0.22,0.73l0.48,0.66l0.48,1.9l-0.57,-1.25l-0.7,-0.05l-0.3,0.82l0.21,0.94l0.56,0.41l-0.51,0.78l0.11,0.44l0.44,0.06l1.59,-1.02l0.16,0.8l0.36,0.29l-0.66,2.13l0.18,1.1l-0.67,0.92l0.37,1.03l-1.07,-0.51l0.79,-1.76l-0.45,-0.91l-1.72,1.59l-0.26,0.8l-0.57,-2.21l-0.5,0.14l-0.65,1.89l-1.15,0.87l-0.69,2.2l-1.46,0.69l-0.35,0.55l0.09,1.23l0.45,0.07l1.03,-0.69l-0.52,0.74l0.71,0.33l0.59,-0.25l0.23,0.69l0.65,0.34l0.44,-0.39l-0.07,-1.91l0.26,0.4l0.8,-0.37l1.49,1.26l1.17,-0.95l1.3,-1.92l0.61,-1.87l0.85,0.66l0.76,-0.04l0.39,-0.34l-0.28,-0.86l1.45,-0.94l0.12,-1.04l-0.65,-1.22l-0.06,-1.28l-0.56,-1.51l0.23,0.33l0.71,-0.18l0.08,-1.01l-0.38,-0.72l-0.9,-0.5l0.64,-1.4l-0.36,-1.83l0.96,-1.61l0.29,-1.58l1.54,-0.92l0.5,-1.36l-0.61,-0.56l-0.54,0.11l-1.22,-1.16l-0.35,-2.24l-0.49,-0.83l0.32,-0.99l-0.15,-0.86l-1.61,-1.51l-0.75,-0.27l-0.36,-0.66l0.08,-0.56l-0.47,-0.34l0.84,0.43l0.65,-0.29l0.19,-0.53l-0.28,-1.65l0.78,-0.44l0.06,-1.12l-1.22,-2.28l0.33,-0.71l-0.24,-0.85l-1.2,-0.68l-0.91,0.59l-1.83,-2.58l0.48,-2.24l88.03,0.0l-0.09,60.07l1.6,2.86l0.5,2.01l-0.78,1.49l1.08,1.78l-32.52,0.04l-1.51,1.14l-7.47,0.48l-1.48,1.27l-4.22,0.76l-3.08,1.13l-1.48,1.1l-0.94,-0.07l-1.13,0.56l-1.55,0.1l-2.63,-0.41l-0.8,0.66l-3.32,1.27l-2.25,-0.24l-1.57,0.66l-1.06,-1.63l-5.48,-0.75l-2.33,0.42l-1.69,-0.15l-2.44,1.71l-4.32,1.63l-1.27,-0.44l-1.21,-0.02l-1.87,-0.75l-1.95,-0.06l-0.93,-0.93l-0.08,-2.29l-0.4,-0.84l0.09,-1.24l-0.52,-2.29l-0.69,-0.83l-0.68,-1.85l-0.82,-0.8l-2.85,-1.49l-1.63,0.17l-1.24,0.61l-2.76,-2.76l-2.12,0.3l-0.64,-0.16l-0.23,-0.5l-0.66,-0.33l-1.14,0.6l-0.84,0.04l-0.87,0.78l-1.49,-1.51l-1.0,0.02l0.09,-1.23l1.11,0.42l0.5,-0.27l0.38,-0.81l0.68,0.55l0.69,-0.18l-0.02,-0.8l-1.36,-1.23l0.63,-1.06l-0.44,-1.34l0.39,-0.51l-0.37,-1.02l0.76,-0.5l0.18,0.5l0.57,0.28l0.86,-0.55l-0.25,-0.64l-1.92,-1.47l-0.51,-0.02l-0.32,0.4l-0.34,-0.23l-0.67,0.21l-0.08,0.39l-1.02,-0.64l-0.17,-1.75l0.83,0.37l0.48,-0.2l0.14,-0.64l-0.43,-0.66l3.31,-1.4l0.07,-0.72l-2.96,-0.63l-0.24,-0.8l-0.81,-0.4l-1.4,0.04l-0.87,-4.94l-0.45,-0.98l-0.38,-0.19l0.06,-0.81l-0.65,-0.35l-0.49,-4.19l-1.12,-4.52l-0.84,-0.9l-0.3,-0.99l-0.8,-0.44l-0.35,-0.71l-0.79,-0.37l-0.29,-0.49l-0.81,-4.49l-0.58,-1.31ZM30.52,49.18l0.36,0.76l-0.31,0.67l-0.25,-1.0l0.21,-0.42ZM35.42,26.66l-0.48,1.14l-0.0,0.74l-0.23,-1.69l0.71,-0.19ZM33.22,21.81l-0.76,0.62l0.21,-0.83l-0.24,-0.64l0.26,-0.16l0.53,1.01Z", "name": "Washington"}, "US-KS": {"path": "M459.72,207.63l0.38,0.6l1.64,0.99l2.1,-0.89l-0.04,0.68l0.96,0.77l0.13,1.32l-0.83,-0.22l-0.6,0.27l-0.2,0.87l-1.13,1.21l-0.11,1.02l-0.76,0.45l0.01,0.6l1.35,2.0l1.78,1.47l0.13,1.03l0.34,0.8l0.66,0.55l0.26,1.04l1.71,0.93l1.39,0.32l0.01,41.94l-114.85,0.0l-0.18,-58.95l104.37,0.0l1.48,1.2Z", "name": "Kansas"}, "US-WI": {"path": "M583.35,99.5l0.53,-0.35l0.58,-2.32l0.98,-0.11l0.74,-0.61l0.41,-1.38l0.5,-0.58l0.65,0.06l0.02,0.41l-0.78,-0.05l-0.25,0.48l-0.0,1.3l-0.41,0.12l-0.19,0.55l0.49,0.65l-0.87,0.87l-0.95,1.81l-0.1,1.24l-1.36,2.13l-0.43,0.09l-0.73,-1.08l-0.09,-0.74l0.52,-1.52l0.76,-0.97ZM498.02,98.68l0.43,-0.24l0.35,-0.88l-0.34,-1.53l0.19,-1.93l0.79,-1.11l0.71,-2.23l-1.41,-3.07l-0.81,-0.42l-1.3,-0.11l-0.04,-2.38l1.88,-2.17l0.01,-0.79l0.91,-1.52l2.08,-0.95l0.55,-0.73l1.01,-0.18l0.53,-0.74l1.19,-0.04l1.19,-1.51l0.01,-12.59l1.1,-0.27l0.32,-1.12l0.56,-0.33l0.29,-0.63l0.75,0.8l1.67,0.81l2.74,-0.35l3.52,-1.33l2.8,-0.6l2.5,-2.01l0.3,0.34l1.43,0.02l1.44,-1.42l0.87,-0.53l1.09,0.01l0.48,-0.5l0.28,0.52l0.52,0.07l0.23,0.56l-0.67,1.73l-0.77,0.89l-0.16,1.01l0.23,0.71l-1.3,1.79l0.0,0.95l1.21,0.14l1.95,-0.85l0.75,-0.78l2.1,1.49l2.35,0.73l0.4,0.6l0.9,-0.05l1.57,0.9l1.91,3.89l15.52,4.32l4.5,2.55l1.72,0.03l1.6,0.63l1.43,-0.44l3.13,1.12l2.2,0.37l0.82,0.52l0.46,0.98l-0.57,1.06l0.31,0.82l3.36,1.07l1.28,1.33l-0.25,0.7l0.46,1.2l-0.46,0.77l0.27,1.31l-0.95,1.16l-0.26,1.76l0.83,0.75l1.42,-0.08l1.13,-0.59l0.17,0.29l-1.11,2.35l-0.13,1.32l1.13,1.63l0.8,0.46l-0.5,1.98l-2.57,0.88l-0.61,0.71l-0.12,1.26l-2.05,3.27l-0.84,3.42l1.0,0.96l0.91,0.07l0.54,-0.3l0.66,-1.29l2.0,-1.22l0.99,-2.43l1.28,-1.55l0.56,0.26l0.67,-0.63l0.93,-0.28l0.97,1.26l0.56,0.27l-0.57,2.12l-1.56,2.67l-1.29,5.43l0.08,1.12l0.67,1.02l0.0,0.52l-2.09,2.04l-1.35,3.69l-0.19,2.53l0.55,1.26l-0.1,1.21l-1.46,3.0l-0.15,2.06l-0.98,1.95l-0.58,2.35l0.32,2.03l-0.2,1.27l0.41,0.58l-0.41,1.61l0.79,0.87l0.22,2.4l0.97,1.62l-0.14,1.62l-0.5,1.34l0.09,2.86l-43.19,-0.41l-0.12,-0.77l-1.31,-2.25l-4.71,-1.26l-0.9,-1.38l-0.2,-1.65l-0.77,-1.24l-0.39,-4.8l1.26,-2.43l0.01,-0.97l-0.63,-0.84l-1.36,-0.59l-0.54,-1.77l0.09,-5.91l-0.57,-1.43l-0.29,-2.56l-1.09,-0.7l-0.95,-1.63l-0.91,-0.19l-1.09,-0.84l-1.7,-0.06l-2.49,-1.99l-1.99,-3.65l-2.45,-2.3l-2.89,-0.77l-0.63,-1.29l-1.04,-1.08l-3.08,-0.69l-3.32,-3.0l0.55,-1.2l0.01,-1.62l0.31,-0.79l-0.65,-3.19Z", "name": "Wisconsin"}, "US-OR": {"path": "M3.24,147.1l1.67,-4.07l0.91,-4.98l-0.17,-1.06l0.32,-0.34l0.2,0.74l0.73,-0.09l0.12,-1.14l0.62,-0.99l0.45,0.82l1.39,-0.08l-1.14,-2.38l-0.84,0.29l1.04,-4.09l0.88,-1.0l0.87,0.18l0.45,-0.46l-0.97,-1.13l-0.65,-0.14l0.54,-4.6l0.3,-0.47l-0.2,-0.93l0.31,-5.69l0.44,-2.15l0.47,0.22l0.57,-0.45l-0.36,-0.91l-0.62,-0.17l0.25,-2.89l0.83,-0.04l0.11,-0.5l-0.28,-0.47l-0.57,-0.14l-0.2,-2.9l0.85,-3.02l0.05,-3.15l0.67,-2.01l0.17,-3.28l-0.34,-0.99l0.91,-1.39l-0.11,-0.59l-0.62,-0.53l0.01,-0.56l0.67,0.5l0.45,-0.06l0.22,-0.71l-0.18,-1.41l-0.92,-0.52l0.19,-1.32l1.07,-1.1l-0.06,-0.46l-0.98,-0.28l-0.54,-1.04l0.29,-2.37l-0.43,-1.41l0.76,-0.82l0.18,-0.94l-0.9,-3.79l0.73,0.75l1.0,0.18l0.19,0.92l0.67,0.38l0.21,-0.91l0.36,-0.24l-0.52,-0.92l1.35,0.55l1.52,-0.39l1.28,-1.05l2.02,2.0l2.17,0.28l1.22,-1.01l0.92,-0.16l2.09,1.09l1.03,0.85l0.67,1.84l0.62,0.67l0.47,2.05l-0.09,1.33l0.41,0.87l-0.01,1.83l0.6,1.37l0.98,0.65l2.06,0.09l1.67,0.7l1.44,0.08l1.19,0.44l4.8,-1.7l2.63,-1.73l1.25,0.24l2.24,-0.42l4.54,0.45l0.82,0.39l0.45,1.1l0.69,0.45l1.78,-0.69l2.25,0.24l3.64,-1.39l0.6,-0.57l2.38,0.45l1.69,-0.12l1.13,-0.56l1.05,0.04l1.59,-1.15l2.97,-1.09l4.19,-0.75l1.41,-1.25l7.39,-0.46l0.92,-0.39l0.68,-0.75l32.59,-0.04l0.56,1.79l1.26,1.67l1.27,0.42l2.31,1.53l1.0,2.36l0.02,1.04l-2.89,5.19l-0.15,1.48l-0.92,2.86l-1.77,2.79l-0.17,2.76l-1.15,2.08l-1.94,1.87l-1.29,3.63l-1.24,1.52l-0.24,2.09l0.22,1.85l0.44,0.85l0.66,0.5l0.54,-0.06l0.32,-0.41l0.75,0.63l0.86,-0.21l0.22,0.84l0.95,0.78l-0.27,1.05l-0.63,0.17l-0.26,0.45l0.53,1.71l-0.55,2.66l-0.94,1.59l0.22,38.43l-111.52,0.0l-2.08,-2.03l-0.32,-2.25l-0.49,-0.75l-0.34,-1.58l-0.03,-2.22l0.62,-2.66l-0.09,-1.2l-0.33,-1.18l-0.6,-0.5l-0.41,-1.02l-0.47,-0.19l-0.56,-1.68Z", "name": "Oregon"}, "US-KY": {"path": "M550.76,275.12l0.49,-1.75l1.51,1.17l0.89,-0.39l1.36,-3.03l0.13,-1.14l-0.29,-1.04l0.43,-0.71l0.1,-1.79l-0.92,-1.78l1.45,-2.22l1.01,-0.63l1.24,0.05l5.4,2.8l0.8,0.19l0.8,-0.21l0.91,-1.54l-0.05,-0.79l-1.18,-2.49l0.33,-1.4l0.39,-0.4l1.01,-0.04l1.21,-0.6l2.8,-0.51l0.65,-0.39l0.28,-1.04l-1.14,-1.98l0.0,-0.58l1.42,-1.58l0.27,-0.99l1.04,0.51l1.2,-1.06l-0.37,-1.85l1.59,1.02l1.62,-0.52l-0.11,0.99l0.9,0.56l1.02,-0.73l0.21,-1.13l1.0,0.01l1.22,-0.5l3.77,1.87l0.47,0.9l0.8,0.27l0.62,-0.47l0.97,-2.14l1.31,-0.31l1.4,-1.01l0.61,1.23l0.66,0.48l1.01,0.04l0.04,0.66l0.85,0.29l0.71,-0.49l0.15,-0.86l1.0,-0.43l0.16,-2.1l0.8,-0.24l0.43,-1.06l1.17,-0.35l0.42,-0.57l0.1,1.31l0.48,0.62l1.24,0.76l1.13,0.16l0.89,0.86l0.53,-0.03l0.31,-0.45l1.05,-0.26l0.58,-0.56l0.51,-3.09l1.06,-1.81l0.88,0.31l1.58,-0.86l1.15,-2.97l1.0,-0.19l1.82,-1.77l0.12,-0.77l-0.67,-2.69l2.58,-0.13l1.3,0.94l3.92,-1.97l2.11,-0.09l0.01,-1.02l0.54,-1.26l-0.26,-0.4l-1.06,-0.19l0.7,-1.16l-0.76,-1.52l1.75,-1.37l1.48,1.31l0.87,0.03l1.89,-0.63l0.58,0.9l1.52,0.74l1.49,3.97l2.27,0.99l1.8,-0.22l1.42,0.49l1.69,1.98l0.82,0.53l1.2,0.04l0.78,-1.09l0.96,-0.31l1.13,0.65l1.21,0.24l1.03,1.18l1.27,-0.41l1.3,0.1l2.07,-1.98l1.69,-0.63l0.44,2.21l0.5,0.86l2.09,1.12l1.05,1.08l0.49,1.03l0.28,3.07l-1.01,1.97l1.58,2.7l1.06,1.02l-0.14,0.94l0.88,0.75l0.33,1.36l1.23,1.39l0.51,1.49l1.87,1.19l0.79,1.16l1.76,0.59l-5.26,4.46l-5.19,2.8l-0.53,0.71l0.0,1.1l-2.15,1.35l-0.22,1.42l-2.96,0.93l-1.12,1.94l-1.57,0.25l-2.67,1.17l-1.54,0.17l-3.36,1.58l-21.61,-0.76l-11.62,-0.07l-9.98,-0.69l-20.58,0.38l-0.52,-0.56l-3.25,-0.33l-0.47,0.53l0.52,3.18l-20.62,-0.01Z", "name": "Kentucky"}, "US-ME": {"path": "M836.41,93.86l1.2,-0.85l0.86,2.07l0.79,0.3l1.03,-1.92l0.22,-2.26l1.54,0.87l0.83,-0.18l0.37,-0.44l-0.09,-0.77l-0.99,-0.82l-0.24,-0.74l0.62,-1.32l1.46,-1.7l2.72,-1.54l0.32,-0.95l-0.21,-1.07l1.51,-1.28l0.85,-1.35l0.08,-0.95l-0.88,-0.67l0.38,-1.41l-0.26,-0.56l0.85,-0.77l0.16,-0.62l-0.58,-1.55l0.67,-1.66l0.57,-0.5l0.16,-1.01l1.81,-1.5l1.03,-6.41l11.69,-17.0l2.33,0.53l0.08,3.58l0.4,0.61l2.09,1.35l0.66,0.01l1.95,-1.04l1.73,-0.17l2.02,-1.37l1.28,0.31l0.79,-0.24l0.73,-1.35l0.53,-0.15l1.34,0.52l3.14,2.69l0.79,1.35l1.97,1.87l0.37,25.13l0.4,0.85l-0.57,0.84l0.29,1.36l-0.62,1.44l-0.34,-0.07l-0.45,0.54l1.27,1.67l1.65,0.81l0.65,0.67l1.87,0.46l1.42,-0.18l0.04,0.95l-1.05,1.16l0.98,2.36l-0.65,2.66l2.02,2.52l0.96,0.24l0.69,-0.54l0.11,-0.5l0.32,0.2l0.07,0.56l0.58,0.29l0.96,1.54l-0.0,0.8l0.88,1.33l-0.13,0.46l-0.45,-0.31l-0.5,0.25l-0.09,0.8l-0.68,-0.41l-0.46,0.26l-0.07,0.65l0.59,0.78l0.21,1.05l0.39,0.32l0.45,-0.78l0.43,-0.04l0.64,0.59l0.52,-0.69l0.19,0.5l-0.58,0.7l-0.56,-0.0l-1.66,2.18l-0.59,0.46l-0.58,-0.25l-0.44,0.31l0.01,-0.9l-0.45,-0.47l-0.87,0.35l-0.55,-0.13l-0.19,0.45l0.26,1.0l-0.7,-0.74l-0.52,0.48l0.07,0.58l-1.28,-0.62l-0.82,0.72l-0.08,0.45l0.39,0.23l-0.12,1.05l-0.22,0.11l-0.16,-0.66l-0.49,-0.24l-0.52,0.29l-0.56,0.96l0.06,-1.61l-1.2,-0.33l-1.42,1.32l-0.17,0.4l0.35,0.78l-0.99,0.32l-0.5,-0.66l-1.04,0.73l-0.12,0.64l0.73,0.91l-0.4,0.08l-0.37,0.74l-0.36,-0.35l-0.2,-1.98l-0.82,-0.77l-0.44,0.08l-0.29,-0.54l-0.75,0.41l-1.12,-0.59l-0.53,0.72l0.6,0.63l-0.11,0.34l-0.47,-0.22l-0.66,0.2l-0.31,0.63l-0.13,-1.12l-1.1,-0.4l-0.36,0.55l0.21,0.99l-1.67,0.44l0.43,1.32l-0.26,1.02l0.29,0.78l-0.78,-0.7l-0.98,-0.1l-0.99,-0.78l0.13,-0.91l0.79,-0.03l0.1,-0.55l-0.24,-0.6l-0.59,-0.33l-0.39,0.21l0.54,-2.31l-0.28,-0.33l-1.13,-0.1l-0.59,1.86l-2.37,1.22l-0.14,0.48l0.71,1.78l-0.91,0.7l-1.41,3.57l0.28,1.56l-1.56,1.27l-0.69,-0.43l-0.72,0.73l-0.56,-0.25l-0.02,-1.2l-0.62,-0.43l-0.81,0.8l-0.11,0.68l-0.6,0.42l-0.64,2.29l-0.58,-1.23l0.53,-1.15l-0.04,-0.63l-0.86,0.02l-0.71,1.85l-0.33,-0.36l0.62,-1.4l-0.32,-0.53l-0.8,0.25l-1.66,2.6l-0.12,-2.07l0.54,-1.09l-0.29,-0.39l-0.5,0.05l-1.79,2.11l0.17,0.61l0.84,0.12l0.24,1.81l0.01,0.41l-0.07,-0.62l-0.42,-0.38l-0.72,0.08l-0.26,0.58l-1.27,-0.52l-3.01,2.31l-1.07,1.59l0.09,0.65l-0.83,0.41l0.35,0.56l0.91,0.07l0.06,0.96l-2.14,0.56l-0.44,0.92l0.21,1.47l-0.27,0.6l-1.13,0.97l-1.06,0.28l-0.89,1.04l-0.06,1.58l-1.21,2.47l-0.64,-0.54l-0.56,0.43l-0.73,-0.99l0.02,-1.89l-0.77,-0.62l-1.62,-2.54l0.31,-3.44l-1.96,-37.67ZM854.44,125.8l-0.0,0.25l-0.14,0.19l0.12,-0.25l0.03,-0.19ZM855.7,126.43l0.22,0.79l-0.18,0.42l-0.22,-0.32l0.19,-0.88ZM858.87,124.21l0.14,0.89l-0.19,0.09l-0.33,-0.31l0.38,-0.67ZM871.97,114.57l-0.19,0.14l0.05,-0.22l0.14,0.09ZM864.94,123.02l0.0,0.01l-0.02,0.01l0.02,-0.03Z", "name": "Maine"}, "US-OH": {"path": "M642.81,170.73l1.51,0.61l0.97,-0.13l1.39,1.24l1.99,0.63l1.19,1.34l1.32,0.48l-2.01,0.71l-0.2,0.44l0.37,0.31l2.28,0.58l1.5,-0.79l1.7,0.07l3.02,1.47l0.88,0.09l1.63,-0.95l1.74,-0.24l3.23,-1.25l2.46,0.44l1.14,-0.37l1.18,0.16l1.15,-0.55l5.01,-4.29l4.93,-2.38l7.36,-2.74l0.0,26.9l-0.56,0.38l-1.28,0.15l-0.57,0.8l1.1,2.37l-0.38,1.91l0.43,1.22l-1.18,2.16l-0.91,2.83l-0.44,2.83l-0.59,0.29l0.1,1.06l-1.1,1.91l0.46,1.27l-0.58,1.61l-2.69,1.93l-1.1,1.52l-1.52,1.1l-1.91,0.89l-0.62,-0.97l-1.13,-0.09l-1.52,1.33l-0.32,1.16l-1.77,0.47l-1.11,1.87l-0.03,1.46l-1.0,0.61l0.66,1.15l-0.01,1.11l-0.71,0.06l-0.37,0.9l-0.35,0.44l0.26,-0.78l-0.61,-1.3l-1.32,-0.76l-1.19,0.53l-1.02,1.56l-0.77,2.33l-0.63,0.67l0.49,3.38l-1.42,0.3l-0.96,2.91l-2.48,0.57l-0.88,-0.11l-0.5,-1.06l-1.18,-1.23l-2.0,-1.03l-0.83,-2.93l-0.64,-0.46l-2.28,0.82l-1.2,0.97l-0.52,0.86l-1.31,-0.09l-0.87,0.4l-0.84,-1.06l-2.77,-1.02l-1.38,0.44l-0.68,1.03l-0.63,-0.07l-2.41,-2.48l-1.71,-0.55l-1.7,0.24l-1.85,-0.78l-0.28,-1.51l-0.71,-0.96l-0.44,-1.42l-1.68,-0.9l-0.89,-1.07l-2.27,0.69l-0.41,-0.04l-1.45,-1.36l-1.23,0.61l0.27,-52.09l20.23,-0.72ZM652.48,174.69l0.53,-0.57l0.43,0.46l-0.38,0.21l-0.58,-0.1Z", "name": "Ohio"}, "US-OK": {"path": "M385.84,311.91l-0.05,-36.41l-0.39,-0.4l-46.32,-0.01l-0.01,-8.92l129.82,0.0l-0.0,9.37l2.79,21.41l-0.69,32.43l-1.19,-0.56l-1.81,-0.29l-0.89,-0.79l-1.58,-0.33l-1.43,-1.82l-1.06,-0.25l-1.87,-1.43l-1.31,-0.41l-0.74,0.37l-0.26,0.76l-0.67,0.14l-0.45,0.51l-2.1,-0.22l-1.46,-1.32l-2.08,1.01l-1.03,0.15l-0.73,0.67l-1.8,-0.73l-1.5,0.94l-1.81,0.37l-0.75,1.12l-1.27,0.0l-0.52,1.02l-1.0,-1.32l-1.46,-0.16l-0.36,-0.55l-0.95,-0.37l0.03,-0.79l-0.39,-0.48l-1.11,-0.18l-0.69,1.16l-0.52,0.06l-0.72,-0.45l-0.82,0.04l-0.56,-1.29l-0.98,-0.34l-0.95,0.33l-0.54,1.57l-0.56,-0.09l-0.5,0.42l0.19,0.61l-0.44,1.4l-0.32,0.12l-0.66,-1.19l0.38,-1.41l-0.65,-0.79l-0.76,0.13l-0.42,0.6l-0.74,-0.14l-0.82,0.8l-0.89,0.08l-0.41,-1.16l-1.7,-0.2l-0.22,-1.25l-1.08,-0.51l-0.74,0.27l-1.88,1.79l-1.02,0.4l-0.78,-0.3l0.17,-1.51l-0.22,-0.53l-1.99,-0.62l-0.03,-1.82l-0.38,-0.52l-1.87,0.28l-2.19,-0.25l-0.58,0.23l-0.72,1.01l-0.78,0.03l-1.51,-1.53l-0.86,-0.12l-1.29,0.45l-2.3,-0.56l-1.61,-0.88l-0.92,0.2l-2.11,-0.28l-0.12,-1.8l-1.1,-1.62l-1.02,-0.38l-0.6,-0.71l-0.79,0.08l-0.36,1.38l-1.91,-0.59l-0.95,0.51l-0.82,-0.08l-3.28,-3.24l-1.65,-0.32Z", "name": "Oklahoma"}, "US-ID": {"path": "M117.78,111.7l1.18,-1.45l1.44,-3.91l1.5,-1.21l1.11,-1.75l0.69,-2.31l-0.16,-1.21l1.77,-2.79l0.95,-2.94l0.13,-1.43l1.64,-2.61l1.4,-3.14l-0.15,-1.02l-1.31,-2.83l-2.48,-1.57l-0.94,-0.21l-1.15,-1.47l-0.96,-2.98l-0.82,-1.1l0.74,-1.37l-0.55,-2.35l-1.54,-2.55l0.08,-60.09l14.62,0.0l-0.01,22.85l1.84,2.8l1.26,1.16l0.55,1.58l1.52,1.66l0.02,0.9l0.6,1.14l-0.87,1.17l1.21,1.71l-0.9,0.26l-0.16,0.76l2.27,1.41l1.4,1.95l2.52,0.89l0.82,1.56l1.35,1.2l1.99,2.65l0.2,0.69l1.98,1.61l0.23,1.82l1.38,1.27l0.81,0.32l0.15,1.41l0.77,0.07l0.84,-0.74l0.45,0.44l-0.27,0.5l0.13,0.66l1.28,0.81l1.67,-0.1l1.81,-0.64l-0.24,2.79l-0.93,0.71l0.44,1.12l-1.28,4.1l0.33,1.75l-0.82,0.2l-0.29,0.6l0.81,1.25l-0.48,1.02l0.15,1.18l1.13,0.79l-0.25,0.88l0.44,0.99l-1.52,0.68l-1.0,1.61l0.27,1.1l0.58,0.71l-0.02,0.77l-0.71,0.91l0.04,1.55l1.59,0.4l1.67,1.59l0.82,0.15l1.03,-0.51l0.44,-0.89l1.8,-0.7l1.02,-1.47l0.78,-0.42l0.03,-0.8l0.93,0.71l0.33,0.68l1.16,0.49l-0.24,1.31l0.87,0.84l-0.14,1.43l0.77,1.27l0.02,1.64l1.93,2.42l0.56,1.68l0.88,0.25l0.96,1.98l-0.04,1.0l-0.67,0.74l0.78,1.81l1.4,0.97l0.41,0.74l0.82,-0.03l0.81,-0.49l1.17,0.78l1.44,2.62l-0.39,0.87l1.13,1.69l-0.19,0.63l0.25,0.95l2.6,2.07l0.94,-0.27l-0.16,-1.12l0.94,-1.02l0.89,-0.34l4.71,1.01l0.64,-0.4l0.49,-1.42l1.13,-0.54l2.36,0.63l3.27,-0.52l1.06,0.75l2.2,-0.86l3.3,0.38l0.39,-0.55l-0.76,-0.68l0.13,-1.08l0.68,-0.56l-0.19,-0.95l1.17,-0.66l0.53,0.31l1.32,1.97l0.25,1.09l1.59,1.77l0.78,0.36l0.02,52.75l-92.17,0.01l-0.2,-38.44l0.88,-1.34l0.58,-2.78l-0.52,-1.65l0.7,-0.27l0.47,-1.71l-1.1,-1.08l-0.39,-1.14l-1.23,0.14l-0.57,-0.63l-1.02,0.39l-0.41,-0.37l-0.27,-1.95l0.21,-1.8Z", "name": "Idaho"}, "US-WY": {"path": "M213.63,100.66l108.19,-0.0l0.05,84.48l-108.22,0.0l-0.01,-84.48Z", "name": "Wyoming"}, "US-UT": {"path": "M212.84,165.13l0.0,20.4l0.4,0.4l30.82,0.0l-0.0,79.44l-77.01,-0.06l-0.04,-100.19l45.83,0.01Z", "name": "Utah"}, "US-IN": {"path": "M572.07,249.51l-0.39,-0.88l0.52,-0.5l0.06,-2.77l0.93,-0.58l0.0,-0.59l-0.32,-0.24l0.94,-0.81l-0.89,-1.44l0.53,-0.93l1.6,-0.16l0.52,-1.57l1.06,-1.07l0.06,-0.74l1.5,-0.78l-0.13,-1.49l0.63,-0.7l0.27,-1.13l0.86,-0.36l0.6,-1.68l-0.68,-2.42l0.28,-1.73l-0.75,-0.93l-0.38,-1.42l-0.87,-0.82l0.04,-0.5l1.02,-1.16l-0.31,-2.09l1.34,-1.06l0.18,-47.43l1.23,0.98l1.99,0.4l1.5,-0.17l2.68,-0.96l2.88,-1.61l31.24,0.02l-0.27,53.86l-0.77,0.96l0.15,0.9l0.61,0.79l-0.76,0.9l0.01,0.48l0.58,0.49l0.72,0.07l-0.4,1.37l-1.65,0.01l-3.67,1.91l-1.17,-0.92l-3.29,0.34l-0.21,0.72l0.65,2.92l-1.52,1.47l-1.15,0.29l-0.54,0.75l-0.63,2.26l-1.09,0.62l-0.94,-0.35l-0.51,0.37l-1.19,2.07l-0.43,2.89l-1.63,0.8l-0.73,-0.7l-1.12,-0.16l-1.07,-0.65l-0.39,-1.75l-1.72,-1.0l-0.46,0.22l-0.11,0.5l0.6,0.69l-0.5,0.16l-0.78,-0.42l-0.39,0.24l0.27,1.32l-1.05,0.46l-0.19,2.13l-1.04,0.45l-0.11,0.62l-0.25,-0.53l-1.46,-0.04l-1.04,-1.66l-0.48,-0.14l-1.69,1.12l-1.51,0.43l-1.3,2.42l-0.59,-1.04l-3.35,-1.69l-0.97,-0.29l-1.68,0.61l-0.43,-0.96l-0.54,-0.25l-0.58,0.46l0.36,1.73l-0.38,0.67l-0.21,0.05l0.12,-1.02l-0.35,-0.43l-1.96,0.47l-1.69,-1.04l-0.55,0.21l-0.29,0.65l0.45,1.46l-0.49,0.56l-0.95,-0.46ZM593.9,248.27l-0.06,0.28l-0.09,0.06l0.15,-0.34Z", "name": "Indiana"}, "US-IL": {"path": "M518.98,198.65l0.84,-0.25l0.43,-0.62l-0.02,-2.17l-0.61,-0.93l0.17,-0.34l0.72,-0.57l2.36,-0.7l0.74,-0.55l0.75,-1.51l0.35,-1.94l1.78,-2.15l0.35,-0.86l-0.3,-3.03l-1.95,-1.95l0.05,-1.65l0.84,-2.16l0.45,-0.31l4.46,-0.38l0.81,-0.31l0.89,-0.97l2.52,-0.7l1.52,-1.33l0.7,-3.06l1.5,-1.23l0.36,-0.68l0.75,-4.1l-0.52,-2.12l-3.62,-2.74l-0.51,-2.28l-3.28,-2.68l43.54,0.42l-0.34,2.51l0.23,2.53l1.01,2.53l1.13,1.05l0.4,2.54l0.86,2.71l1.12,1.91l-0.18,48.21l-1.26,0.88l-0.18,0.64l0.41,1.64l-0.89,0.87l-0.17,1.03l0.97,1.15l0.34,1.33l0.72,0.84l-0.31,1.61l0.69,2.19l-0.42,1.26l-0.87,0.41l-0.38,1.3l-0.65,0.76l0.14,1.1l-1.44,0.82l-0.28,0.38l0.18,0.64l-0.98,0.93l-0.42,1.01l-1.58,0.43l-0.77,1.43l0.05,0.77l0.76,0.83l-1.26,0.83l0.18,0.74l-0.55,0.66l0.04,2.59l-1.05,0.06l0.03,0.45l0.65,0.72l-0.37,0.11l-0.11,0.62l0.71,0.35l-0.01,0.34l-1.4,1.58l-0.36,1.04l1.16,2.76l-3.08,0.7l-1.16,0.59l-1.16,0.08l-0.82,0.83l-0.39,1.81l1.22,2.65l-0.58,1.41l-0.83,-0.08l-5.39,-2.8l-0.98,-0.19l-0.84,0.12l-1.29,0.8l-1.66,2.52l-0.03,0.52l-0.88,-1.13l-1.02,0.25l-0.12,0.53l0.3,0.62l-0.82,-0.71l0.05,-0.6l-1.21,-2.1l-0.26,-1.04l-0.62,-0.39l1.27,-2.4l-0.19,-0.94l-1.09,-1.92l-0.12,-2.88l-1.94,-1.1l-1.19,-2.05l-1.68,-0.91l-1.43,-1.35l-1.41,-0.28l-1.55,-1.02l-1.93,-1.79l-1.9,-2.38l-0.15,-1.75l2.8,-5.92l-0.0,-2.1l1.09,-1.77l-0.27,-0.83l-2.32,-1.57l-2.33,-0.84l-1.02,0.15l-1.16,1.37l-0.81,0.06l-1.01,-1.8l-0.26,-1.41l0.22,-0.79l-0.41,-0.87l-0.12,-1.52l-0.65,-1.32l-0.79,-0.91l-3.58,-2.65l-0.79,-1.58l-3.91,-3.6l-0.52,-1.8l-0.87,-1.19l0.1,-1.46l-0.77,-1.44l-0.4,-3.31l0.34,-2.69l0.66,-1.11Z", "name": "Illinois"}, "US-AK": {"path": "M78.13,425.42l0.67,-0.56l1.01,-0.19l0.42,-1.24l0.54,0.26l0.55,-0.2l0.78,-0.66l0.5,-0.99l1.34,-0.89l0.51,0.45l1.18,0.17l1.11,-0.44l0.13,-0.66l-1.13,-0.68l0.18,-0.21l1.47,-0.89l0.62,0.29l0.59,-0.3l1.48,-1.26l1.59,-0.23l0.54,0.36l-0.45,1.17l0.1,0.87l-1.1,0.67l0.36,0.55l0.69,0.0l0.68,0.86l2.32,0.19l1.14,-0.27l0.17,0.72l2.03,-0.47l1.02,0.81l0.51,-0.15l0.93,-2.42l0.85,0.47l-0.28,0.4l0.24,0.43l0.49,0.05l0.43,-0.37l0.27,-1.19l-0.56,-1.02l-1.11,-0.5l0.47,-0.34l1.44,1.22l2.36,-0.46l0.13,-1.3l-0.36,-1.4l-1.39,0.41l-0.8,-0.61l-1.03,0.15l-0.46,0.25l-0.35,0.77l-1.4,-1.32l0.28,-1.32l0.99,-0.56l-0.06,-0.6l-0.7,-0.49l-0.77,-0.29l-1.07,0.22l-0.34,-0.32l-0.03,-0.71l-0.4,-0.2l-0.46,0.16l-0.38,1.15l-3.57,-0.7l-0.25,-1.99l-1.2,-2.53l-3.83,-3.56l-2.41,-1.31l-0.53,-0.86l-1.18,-0.83l0.34,-0.19l0.45,-1.89l0.04,-2.64l1.59,0.26l2.13,-0.19l2.59,-0.51l1.4,-0.77l1.21,-1.15l1.69,-2.44l0.32,-2.48l0.48,-1.11l-0.17,-0.52l1.54,-1.89l0.9,-1.85l1.14,-0.08l0.85,-0.48l0.12,-0.41l0.93,-0.05l0.84,-0.47l0.59,0.1l0.15,-0.51l2.38,-2.44l-0.43,0.98l0.56,0.22l-0.43,0.93l0.26,0.51l0.5,-0.08l0.51,1.2l0.45,0.23l0.32,-0.69l-0.33,-2.17l1.27,-0.29l0.69,-0.64l-0.5,-0.53l-1.39,0.11l-0.5,-1.02l0.99,-1.2l1.29,1.31l0.36,-0.27l-0.05,-0.52l0.76,-0.42l0.76,0.13l3.05,-0.83l2.32,-2.28l1.67,-2.78l0.59,0.76l1.0,0.1l-0.06,0.54l0.46,0.4l0.6,-0.31l0.77,0.15l0.1,0.57l-0.57,0.71l-1.03,0.29l-0.44,0.58l0.16,0.7l0.48,0.31l-0.05,1.02l0.54,0.37l0.37,-0.21l0.1,-0.54l1.12,-0.34l0.55,-1.51l0.55,0.13l0.64,-0.3l0.33,-0.87l0.59,0.69l-0.7,1.13l0.81,1.03l1.09,0.01l0.39,0.59l0.67,-0.2l0.76,-1.04l1.11,0.1l1.0,-0.47l1.82,1.17l0.57,-0.67l0.53,0.23l-0.78,1.28l0.12,0.82l-0.52,0.55l0.14,0.49l0.58,0.21l2.04,-0.23l-0.5,0.69l0.31,0.54l1.76,0.11l0.76,0.61l0.44,-0.01l0.21,-0.73l1.33,-0.27l0.09,-0.31l0.58,0.22l-0.07,0.35l0.46,0.4l1.25,-0.39l0.58,-0.53l1.12,-0.09l2.82,0.98l0.74,1.03l0.66,0.03l0.48,-0.42l0.98,0.53l0.09,0.57l0.57,0.34l2.13,0.49l1.27,-0.25l3.05,0.41l2.16,1.62l1.95,0.18l1.15,-0.69l0.59,0.0l0.29,0.54l1.22,-1.1l1.08,-0.02l0.14,0.37l0.65,0.08l0.12,-0.35l0.98,0.22l1.37,1.16l0.54,0.9l0.66,0.15l0.36,0.52l1.16,0.3l0.94,1.17l0.42,0.16l0.74,-0.29l0.02,77.4l0.34,0.48l1.55,0.54l0.61,-0.4l1.33,0.64l1.33,-1.01l1.49,-0.09l-0.34,1.5l0.93,1.06l-0.47,-0.05l-0.95,-1.16l-0.45,-0.07l-1.22,1.65l-1.3,0.7l-1.06,-0.01l-2.12,-0.91l0.09,-1.38l-0.76,-0.72l-0.47,0.16l-0.07,0.86l-0.45,0.23l-3.82,-1.05l-3.87,0.79l-0.72,-1.29l-1.55,-0.17l-0.77,-0.65l0.34,-0.82l-0.09,-0.74l0.69,-0.66l-0.14,-0.62l-0.94,0.16l-1.82,2.26l-1.15,-0.71l0.53,-1.26l-0.52,-0.27l-0.34,0.21l-1.34,-1.67l-1.22,0.31l-0.14,-0.75l1.26,-0.34l0.13,-0.58l-0.28,-0.34l-1.44,-0.09l-1.03,1.0l-0.58,-0.18l-1.01,0.26l-0.18,-1.15l-0.53,-0.09l-0.15,-0.79l-0.48,-0.1l-0.97,1.32l-0.48,-0.15l-0.99,0.46l-0.29,0.8l0.51,0.61l-1.21,0.48l-0.18,1.16l0.35,0.4l0.6,-0.07l-0.79,0.84l0.05,0.71l0.52,0.07l0.53,-0.5l0.5,0.33l-0.81,1.54l0.19,0.85l-0.55,0.52l-0.66,0.01l-0.61,-0.72l-0.76,0.24l-0.22,-0.59l-0.64,-0.04l-0.26,1.26l-0.46,-0.22l-0.47,0.2l-0.4,1.02l-0.67,0.12l0.03,0.55l-0.58,-0.13l-0.56,0.9l-0.25,-0.18l-0.66,0.39l-0.2,0.39l0.21,0.34l-1.0,1.0l-0.94,-0.18l-1.36,0.85l-0.56,-0.34l0.35,-0.59l0.37,-0.25l0.8,0.27l0.4,-0.3l-0.07,-0.47l1.31,-1.63l0.01,-0.56l-0.38,-0.24l-1.79,1.07l-0.8,-0.49l0.5,-1.62l0.99,-1.27l0.48,-1.34l0.08,-1.22l-0.38,-0.99l0.98,-0.37l2.01,-1.67l0.44,0.6l0.78,0.21l0.92,-0.42l2.79,0.87l0.29,-0.54l-0.65,-0.85l-1.64,-0.39l-1.09,-0.79l1.02,-1.46l1.52,-0.71l-0.12,-0.66l-1.8,0.11l-0.93,0.88l-0.21,0.79l-0.92,-0.23l-0.44,0.21l0.01,-0.36l-0.6,-0.43l-0.71,0.87l-1.09,0.58l-0.45,0.85l-1.1,0.28l-0.87,0.71l-0.36,0.71l0.12,0.58l-0.83,0.46l-0.99,1.26l-0.37,1.44l-0.75,0.26l-0.99,-0.5l-0.64,0.35l-0.08,0.35l1.83,1.46l-0.41,0.73l-1.5,0.21l-0.48,0.67l-0.38,-0.12l-0.27,0.79l-0.26,-0.13l-0.56,0.59l0.17,0.43l-0.69,0.1l0.22,0.69l-0.94,0.46l-0.74,1.96l0.47,1.05l1.68,-0.22l0.88,0.54l0.22,0.3l-0.29,0.76l-0.6,0.6l-1.07,0.31l-0.15,0.56l-0.51,0.26l0.02,0.64l-0.72,0.44l-0.18,0.67l-0.37,-0.0l-0.45,0.81l-1.43,0.39l-0.37,0.86l-0.7,0.37l-0.14,0.41l-0.59,-0.24l-0.3,0.22l-0.52,1.25l-0.81,0.03l-0.33,0.58l-1.51,1.07l-0.18,0.6l0.59,0.6l-0.24,0.38l-0.95,0.14l-1.44,1.44l-0.82,-0.25l-0.73,1.16l-1.03,0.23l-0.93,1.04l-0.81,0.26l-0.86,1.11l0.15,0.66l-0.35,0.9l-1.85,0.76l-1.86,0.17l-0.93,0.5l-0.23,0.48l0.22,-0.69l-1.04,-0.86l0.56,-1.44l0.59,-0.65l1.44,-1.15l1.78,-0.7l0.23,-0.48l0.6,-0.23l0.88,0.25l0.55,-0.44l-0.08,-1.63l2.37,-2.67l0.36,-0.24l0.64,0.48l0.95,-0.35l-0.07,-0.98l-0.57,0.02l-0.36,-0.53l0.33,-2.59l0.58,-0.37l0.6,0.24l0.4,-0.59l-0.37,-0.42l-0.99,-0.2l-0.07,-0.4l0.3,-0.81l1.86,-1.76l-0.36,-0.32l0.2,-0.92l0.43,-0.41l0.11,-1.48l-0.76,0.27l-0.82,1.54l-3.53,1.75l-0.82,-1.1l0.17,-0.93l0.55,0.13l0.45,0.87l0.71,-0.51l-0.25,-0.67l-0.35,-0.5l-1.08,-0.38l-0.33,-0.57l-0.69,0.22l-0.0,1.15l-0.74,-0.12l-0.08,1.07l-0.47,0.67l0.48,2.09l-2.19,-3.37l-0.76,-0.16l-0.49,0.66l-0.9,-0.43l-0.61,-1.18l-3.12,1.92l-0.54,-0.13l-0.41,1.07l-0.51,0.26l-0.27,-0.23l0.58,-0.59l-0.46,-1.3l0.78,-0.85l-0.42,-0.58l-1.05,0.12l-0.08,-0.26l0.17,-0.95l0.76,-0.69l0.06,-0.52l-1.69,-3.54l0.09,-1.71l-0.79,-0.06l0.68,-1.82l0.99,-0.71l0.02,-0.67l-1.31,-0.26l-1.03,2.24l-1.12,1.32l0.17,0.47l0.62,0.29l-0.06,0.93l-2.57,1.08l-1.8,0.2l-0.66,-0.2l0.24,-0.68l-0.34,-0.52l-0.87,-0.51l-0.75,-1.02l-0.13,-0.71l-1.21,-0.08l0.21,-1.16l-0.28,-0.33l-0.53,0.04l0.67,-0.56l0.43,-0.99l1.42,0.55l-0.46,0.83l0.01,0.74l0.57,0.04l1.39,-1.51l0.15,1.18l0.86,0.15l1.14,-1.08l0.04,-0.66l-0.58,-0.53l0.09,-0.52l-0.71,-0.87l-0.56,0.12l-0.7,0.82l-1.58,-0.0l-0.29,-0.41l-1.06,-0.25l0.51,-0.33l0.16,-0.6l-1.15,-0.21l0.09,-0.63l-0.39,-0.44l1.54,-1.52l0.21,-0.72l-0.41,-0.39l-1.96,1.64l-0.85,1.81l-0.31,-0.99l-0.67,-0.36l0.44,-0.36l0.01,-0.63l-0.79,-0.63l0.7,-0.25l0.0,-0.6l-0.79,-0.32l1.44,-0.37l-0.49,-1.37l0.17,-0.67l1.91,-2.84l0.82,0.49l-0.11,0.42l0.4,0.25l0.88,-0.64l-0.62,-1.16l0.91,-1.12l-0.26,-0.65l-0.94,0.61l0.26,-0.49l-0.26,-0.68l0.35,-0.82l1.4,0.02l-0.06,-0.8l-0.59,-0.36l0.37,-0.41l0.99,-0.17l0.8,0.35l0.19,0.44l-0.63,0.82l0.24,0.44l1.22,-0.81l0.23,0.37l1.22,-0.08l1.98,-1.81l0.87,-1.41l0.39,0.33l2.69,-0.29l1.41,-0.96l0.98,-1.43l0.12,-0.86l-0.72,-3.39l-1.07,-1.59l0.8,-0.18l0.72,-0.92l0.16,-1.21l-0.94,-1.3l0.15,-0.59l-0.41,-0.17l-0.82,0.18l-0.75,1.27l-1.1,-0.43l-3.22,2.93l-1.53,-1.59l-1.12,0.8l-3.19,-0.18l-0.75,0.49l-0.98,-0.09l-0.5,0.64l-3.82,-1.05l-0.76,-0.83l0.32,-0.75l-0.17,-0.91l-0.89,-0.6l-0.16,-0.53l0.52,-0.18l0.44,-0.98l1.29,0.13l0.1,-0.65l-1.84,-0.89l-3.08,-0.54l-1.96,-1.33ZM96.17,434.68l-0.0,0.06l0.02,0.16l-0.07,-0.16l0.05,-0.05ZM86.52,459.7l0.12,0.34l-0.0,0.09l-0.12,-0.14l0.0,-0.29ZM99.62,477.15l0.04,-0.04l0.01,-0.0l-0.05,0.04ZM102.4,477.3l-0.03,0.07l-0.02,0.04l0.02,-0.08l0.03,-0.02ZM113.95,484.67l-0.0,0.0l0.0,-0.0l0.0,0.0ZM129.15,469.85l0.14,-0.04l0.23,0.03l-0.28,0.28l-0.1,-0.27ZM147.01,464.95l0.0,-0.06l0.09,-0.05l-0.01,0.03l-0.08,0.08ZM148.47,460.15l-0.14,0.95l-0.5,0.36l0.2,-0.81l0.44,-0.51ZM178.95,468.95l0.43,0.22l0.41,1.03l3.41,3.49l0.43,2.29l0.63,0.11l1.05,-0.91l-0.52,1.05l0.49,0.39l0.53,-0.44l0.67,0.17l0.61,1.03l-0.07,0.56l1.1,0.11l-0.05,0.45l0.53,0.6l-1.09,-0.69l-0.91,0.79l-0.28,-0.37l-0.93,-0.15l-1.12,-0.93l0.06,-0.79l-0.77,0.02l-0.63,-0.61l-0.36,-0.99l-1.52,-1.26l-0.1,-0.58l-0.96,-0.02l-3.38,-2.05l0.66,-0.89l-0.04,0.68l0.82,0.17l0.23,-0.45l-0.12,-1.33l1.12,0.18l0.14,-0.46l-0.46,-0.42ZM177.09,469.6l-0.15,-0.57l0.12,-0.1l0.15,0.29l-0.11,0.38ZM188.33,476.09l-0.12,-0.21l0.15,0.06l-0.03,0.15ZM188.08,475.82l-0.31,-0.03l0.03,-0.54l-0.92,-0.68l-0.49,0.0l-0.07,0.29l-0.23,-0.24l1.39,-0.53l0.4,-1.69l0.64,-0.5l0.05,-0.75l2.27,-1.0l1.28,1.23l-0.24,0.68l0.51,1.33l0.92,0.39l0.84,0.86l0.48,1.33l1.71,1.27l0.35,0.62l-0.82,0.23l-0.71,1.6l-0.55,-0.58l-0.84,-0.28l-0.59,-1.36l-0.04,-1.23l-0.65,-0.26l-0.78,-2.84l0.02,-1.43l-0.73,0.01l-0.17,0.8l-0.54,0.23l1.57,7.03l-0.61,-1.45l-0.36,-0.21l-0.48,0.42l-0.6,0.16l0.25,-0.41l-0.15,-0.89l-0.56,-0.99l0.71,-0.2l0.25,-0.55l-0.2,-0.28l-0.86,-0.02l-0.23,-0.72l-0.43,-0.22l-0.32,0.12l-0.19,1.3ZM197.12,478.43l0.57,0.62l0.04,0.67l1.33,2.36l-1.55,-0.28l-0.01,-1.3l-0.59,-0.14l-0.65,0.69l0.16,-1.82l0.68,-0.8ZM199.4,482.58l2.36,4.33l-0.29,0.57l0.24,0.57l0.72,0.22l-0.17,0.72l0.76,0.73l0.23,1.18l1.17,0.27l1.57,1.13l1.07,0.33l0.97,0.76l0.26,0.62l1.15,0.27l0.08,0.68l-0.54,1.01l0.52,2.85l-1.39,2.33l-0.52,-0.67l1.16,-1.76l-0.42,-0.52l-1.01,0.05l-0.26,-2.88l-0.78,-0.69l0.5,-0.65l-0.01,-0.51l-0.5,-0.09l-1.02,0.81l-0.5,-0.07l-1.18,0.65l-0.01,-1.1l1.18,-0.03l0.45,-0.5l-0.21,-0.44l-1.35,-0.04l-0.18,-0.69l-0.67,-0.31l-1.03,-1.74l0.28,-0.94l-1.1,0.09l-0.37,-0.49l0.06,-1.23l-0.5,-0.17l-0.38,0.27l-0.85,-0.77l0.79,-0.42l0.15,-0.47l-0.45,-0.39l-0.63,0.26l-0.07,-0.6l-0.46,-0.19l0.43,-0.15l0.79,0.6l0.48,-0.34l-0.56,-0.91l-1.31,-1.0l-0.02,-0.37l1.13,0.33l0.27,-0.47ZM207.42,500.52l-0.4,0.18l-0.11,-0.19l0.31,0.04l0.2,-0.03ZM207.35,499.25l-0.17,0.22l-0.53,0.13l0.27,-0.35l0.42,-0.0ZM203.2,495.74l0.2,0.21l-0.2,0.3l-0.45,-0.03l-0.06,0.25l-0.05,-0.22l0.55,-0.5ZM202.24,492.6l0.44,0.1l0.13,0.37l-0.46,-0.21l-0.1,-0.25ZM198.34,486.95l-0.12,-0.18l0.25,0.01l-0.09,0.07l-0.04,0.1ZM194.65,481.71l0.05,1.26l0.33,0.06l0.42,1.11l0.46,0.26l0.0,0.25l-0.47,0.09l-0.2,0.96l-0.18,-0.44l-0.38,-0.03l0.38,-0.22l-0.0,-0.67l-0.88,-0.15l-0.48,-2.8l0.17,-0.4l0.73,0.09l0.06,0.63ZM195.19,486.11l-0.03,0.57l-0.8,0.77l0.28,-1.09l0.56,-0.25ZM192.52,476.08l-0.0,0.0l-0.02,-0.03l0.02,0.03ZM98.16,415.58l-0.85,-0.24l-0.38,-0.87l0.55,-0.12l0.68,1.23ZM104.59,496.27l-0.65,0.05l-0.08,0.44l-0.27,-0.22l0.17,-0.55l0.83,0.28ZM103.26,496.69l-1.21,0.65l-1.2,-1.0l-0.9,0.15l-1.09,2.28l-0.4,0.03l-0.81,0.82l-0.54,-0.86l0.3,-0.41l-0.1,-0.52l0.89,-1.17l1.42,-1.15l2.09,-0.34l0.83,1.25l0.71,0.26ZM101.68,497.82l-0.45,0.2l-0.32,-0.14l0.05,-0.2l0.71,0.13ZM96.09,500.12l-0.25,0.49l-0.31,-0.65l0.46,-0.31l0.09,0.47ZM93.53,501.89l-0.5,0.66l-2.09,0.08l-0.89,1.1l-0.89,0.1l-0.22,-0.47l0.71,-0.53l0.66,-1.34l0.93,0.1l1.0,-0.8l0.8,-0.05l0.49,1.16ZM103.72,495.94l-0.17,-0.23l0.07,-0.01l0.1,0.23ZM86.35,459.38l0.01,-0.02l0.03,0.03l-0.04,-0.0ZM101.26,434.81l-0.14,0.0l-0.17,-0.06l0.31,0.06ZM204.15,497.84l0.14,-0.12l0.09,0.44l-0.09,-0.16l-0.13,-0.16ZM204.7,497.07l-0.16,-0.42l0.35,-0.15l0.27,-1.2l0.34,-0.15l0.78,1.6l-0.14,1.04l-0.22,0.02l-0.27,-1.24l-0.52,-0.27l-0.43,0.77ZM197.91,492.8l0.12,0.01l0.19,0.21l-0.42,-0.13l0.1,-0.09ZM198.68,493.09l0.03,-0.16l0.23,0.28l0.02,0.13l-0.27,-0.26ZM199.1,494.49l1.08,0.31l0.81,1.12l-0.63,2.11l0.24,0.4l1.56,0.3l-0.41,0.52l0.29,0.55l0.34,-0.03l-0.38,0.59l-1.1,-1.67l-0.42,0.15l-0.15,-0.66l-0.74,-0.71l0.48,-0.37l-0.03,-0.69l-1.39,0.19l0.76,-0.9l-0.32,-1.2ZM202.1,500.84l0.39,0.32l0.02,0.3l-0.45,-0.55l0.05,-0.06ZM202.63,501.65l0.08,0.06l-0.06,0.04l0.0,-0.04l-0.02,-0.07ZM200.95,493.58l0.06,-0.19l0.07,-0.05l0.06,0.27l-0.19,-0.03ZM201.52,493.72l0.26,-0.08l0.38,0.17l-0.23,0.25l-0.41,-0.33ZM202.07,494.3l0.03,-0.01l-0.02,0.15l0.01,-0.05l-0.01,-0.1ZM200.36,490.41l0.19,0.25l-0.28,0.07l0.06,-0.34l0.03,0.03ZM199.82,492.23l0.51,-0.13l0.01,0.4l-0.16,0.08l-0.36,-0.36ZM195.65,489.99l-0.43,-0.27l0.58,-0.27l0.16,0.31l-0.31,0.23ZM197.54,489.86l0.03,-0.82l-1.0,-1.0l1.57,0.55l0.17,0.32l-0.36,0.17l0.06,0.71l0.78,1.32l-0.78,-0.19l-0.36,0.25l-0.12,-1.32ZM197.65,491.21l0.02,0.11l-0.03,0.01l-0.0,-0.0l0.0,-0.12ZM199.3,489.85l-0.07,-0.11l-0.02,-0.11l0.02,0.06l0.06,0.15ZM199.18,489.48l-0.49,-0.5l0.31,-0.38l0.35,0.47l-0.17,0.42ZM188.37,482.81l-0.12,-0.14l-0.06,-0.12l0.25,0.25l-0.07,0.0ZM188.68,483.02l0.28,0.1l0.37,-0.6l-0.66,-0.8l0.43,-0.19l-0.17,-0.59l0.65,-0.12l0.17,-0.41l0.44,0.21l0.04,0.37l-0.58,0.12l-0.56,0.68l0.59,0.74l1.29,0.76l0.11,0.43l-1.25,-0.84l-0.45,0.53l0.04,0.48l-0.74,-0.85ZM190.88,482.01l0.49,-0.6l1.13,0.39l-0.95,0.05l0.12,0.67l-0.79,-0.52ZM191.4,483.89l0.63,0.1l0.53,-0.29l0.18,1.14l-1.33,-0.94ZM189.68,484.21l0.27,0.22l0.06,0.4l-0.49,-0.42l0.16,-0.19ZM190.11,484.94l0.19,0.14l-0.03,0.09l-0.05,0.02l-0.11,-0.24ZM191.28,485.71l0.3,-0.15l0.68,0.34l0.9,1.95l0.35,2.11l-0.04,2.37l-0.59,-1.19l0.55,-0.73l-0.61,-1.03l-0.94,-0.46l0.55,-0.94l-0.29,-0.42l-0.42,-0.01l0.34,-0.42l-0.88,-0.9l0.1,-0.5ZM148.76,468.75l0.04,-0.1l0.01,0.1l-0.05,-0.0ZM130.02,480.92l0.72,-0.31l-0.18,-0.38l0.54,-0.02l-0.17,0.68l-0.53,0.34l-0.38,-0.31ZM131.23,480.07l-0.13,-0.9l0.31,-0.09l0.61,0.83l-0.13,0.45l-0.45,-0.42l-0.21,0.12ZM124.32,486.05l0.34,-0.93l1.15,-0.81l0.21,0.05l-0.26,0.29l0.68,0.46l0.58,1.27l0.86,0.38l-0.12,0.39l-0.42,-0.34l-0.58,0.31l-0.66,-0.29l-1.05,0.07l-0.72,-0.86ZM125.48,488.15l0.1,-0.09l0.0,-0.01l-0.01,0.19l-0.1,-0.1ZM128.71,486.5l-0.59,0.14l-0.55,-1.53l1.16,-1.13l0.6,0.03l0.41,-0.91l0.76,0.78l0.39,-0.72l0.72,-0.37l-0.37,1.1l0.52,0.68l0.39,0.04l-0.13,0.22l-2.06,-0.34l-0.47,0.74l0.22,0.46l-0.41,-0.13l-0.22,0.79l-0.37,0.17ZM127.67,483.4l-0.5,-0.11l0.14,-0.38l0.34,0.11l0.01,0.38ZM130.36,485.59l0.16,-0.04l0.38,0.3l-0.08,-0.0l-0.45,-0.26ZM80.61,467.31l-0.12,-0.29l1.58,0.07l0.38,-0.67l1.55,-0.54l0.55,0.43l0.92,-0.01l0.25,2.04l-1.25,0.51l-1.63,-0.04l-2.23,-1.5ZM84.99,505.84l-0.1,0.03l-0.03,-0.05l0.08,-0.05l0.05,0.06ZM81.55,508.93l0.0,-0.01l0.02,0.02l-0.02,-0.01ZM82.58,508.26l0.03,0.04l-0.04,-0.01l0.01,-0.03ZM82.61,507.85l-0.1,0.17l-1.21,-0.58l0.8,-0.37l0.52,0.77ZM82.62,508.66l-0.11,-0.03l0.05,-0.12l0.05,0.11l0.01,0.05ZM75.58,511.97l0.14,-0.52l0.62,-0.07l-0.41,0.48l-0.35,0.11ZM76.95,510.57l-0.07,-0.5l0.38,-0.36l0.72,0.05l0.02,0.25l-1.04,0.56ZM65.19,441.35l0.43,0.65l0.84,-0.09l1.02,0.36l2.21,-0.92l0.61,0.51l0.08,1.05l1.62,0.44l0.32,0.58l0.86,0.01l0.47,0.45l-0.76,0.3l-0.74,0.87l-2.59,-2.34l-1.5,-0.82l-0.98,0.1l-1.33,0.9l-0.8,-0.63l0.23,-1.43ZM73.85,444.42l0.59,-0.29l0.51,0.12l-0.14,0.43l-0.96,-0.26ZM55.92,517.58l-0.04,0.06l-0.01,-0.07l0.05,0.01ZM56.35,516.26l0.13,0.02l0.09,0.1l-0.06,0.08l-0.17,-0.2ZM47.86,519.47l-0.06,0.01l0.01,-0.13l0.13,0.02l-0.08,0.1ZM11.46,512.95l0.21,0.02l0.32,-0.07l-0.37,0.39l-0.16,-0.34Z", "name": "Alaska"}, "US-NJ": {"path": "M766.74,213.83l0.58,-0.47l0.87,-2.1l0.73,-0.92l1.35,-0.74l2.72,-0.71l0.7,-0.63l-0.12,-0.86l0.53,-0.21l0.77,-1.16l1.53,-1.21l2.84,-1.37l0.34,-0.56l-0.23,-0.88l-3.19,-3.51l-0.43,-1.12l-0.9,-0.02l-0.34,-0.4l-0.53,-2.5l-1.48,-0.42l-0.18,-2.32l0.11,-0.99l1.18,-0.66l0.86,-1.73l-0.08,-0.77l-1.07,-1.74l1.58,-1.0l2.2,-2.78l0.66,-1.91l0.96,-1.05l1.02,-0.41l11.89,7.29l-1.91,5.29l-0.42,0.37l-0.1,-0.41l-0.7,-0.08l-0.53,0.99l-0.94,0.68l-0.25,1.3l-0.57,0.42l-0.27,1.05l-0.08,0.55l0.62,0.92l0.92,0.39l1.23,-0.08l2.01,0.79l-0.94,6.33l-0.6,0.21l-0.03,0.66l-0.78,0.68l0.27,0.63l-0.33,0.45l-0.02,1.87l-0.93,1.66l-0.06,0.57l0.4,0.7l-1.34,1.69l-1.12,0.78l-0.12,0.46l-0.97,-0.17l-0.23,1.12l0.37,0.87l-0.86,0.28l-0.46,1.0l0.74,0.91l-0.3,0.15l-0.48,-0.7l-0.53,0.08l-0.77,1.21l-1.29,0.24l-0.29,0.35l0.29,0.65l0.65,0.23l-0.87,0.91l-0.6,1.24l-0.77,0.42l0.04,0.5l0.33,0.13l-1.16,1.15l-0.16,0.83l-1.86,1.1l1.15,-3.2l0.11,-0.79l-0.33,-0.88l-0.75,-0.48l-1.06,0.03l-0.67,-0.49l-1.54,0.43l-0.11,-0.69l-1.23,-1.23l-0.9,-0.19l-0.41,-0.77l-0.65,-0.12l-2.42,-2.52l0.36,-1.53l-0.68,-1.06Z", "name": "New Jersey"}, "US-CO": {"path": "M353.06,206.03l0.18,59.35l-108.39,0.0l0.0,-79.44l108.19,0.01l0.01,20.08Z", "name": "Colorado"}, "US-MD": {"path": "M705.46,221.36l0.15,-9.28l18.93,0.0l-0.82,0.95l-0.87,-0.12l-1.58,0.41l-0.04,0.66l-0.46,0.37l0.06,0.72l-3.03,-0.19l-0.9,-0.55l0.22,-0.55l-0.49,-0.57l-0.65,-0.18l-0.82,1.52l-2.05,2.21l-1.15,-0.63l-1.08,0.35l-0.63,1.04l-1.84,1.4l-0.54,0.85l-0.89,0.23l-1.51,1.36ZM726.88,212.08l35.41,0.01l0.1,2.46l-0.51,-0.46l-0.38,0.14l-1.23,1.49l0.53,-1.57l-0.74,-0.42l-0.88,0.99l-1.02,-0.13l-0.5,0.27l-0.52,1.25l0.23,0.6l0.53,0.25l-1.68,1.3l0.21,-1.43l-0.51,-0.55l-0.74,0.51l-0.27,1.21l-0.69,-0.36l-1.19,0.31l-0.16,0.69l0.84,0.41l-0.44,0.38l-1.3,0.17l-0.49,0.54l0.76,1.32l-1.41,-0.93l-1.34,0.11l-0.01,0.71l0.71,0.27l0.87,1.35l1.19,0.83l-0.42,0.4l-1.35,0.14l-0.4,1.05l1.42,1.35l0.14,0.37l-0.83,-0.46l-0.52,0.18l0.04,0.67l0.69,0.6l-0.4,0.34l-0.01,0.76l0.62,0.57l-0.83,0.95l0.43,1.13l0.21,3.94l1.93,2.87l-0.08,0.27l-0.42,0.37l-0.31,-1.21l-2.34,-1.59l-0.53,-3.51l-0.53,-0.78l-0.44,0.58l0.16,3.7l0.39,0.97l2.19,1.58l1.02,1.54l0.8,-0.01l0.08,1.14l0.96,1.58l-0.17,0.82l-0.71,-0.69l-0.02,-1.15l-0.47,-0.55l-0.45,-0.07l-0.14,1.06l-0.65,-0.01l-0.39,-0.77l-0.96,-0.59l-1.37,-0.33l-0.92,0.17l-0.41,-0.27l-0.41,-2.12l-0.98,-0.92l-0.48,0.03l-0.11,0.47l0.61,1.93l-0.51,-0.23l-0.16,-0.51l-0.7,-0.54l-0.86,-2.61l-0.43,-0.25l-0.64,1.12l-0.14,-0.67l-0.53,-0.12l-0.46,0.31l0.12,0.74l-0.29,0.53l-0.68,0.37l-0.42,-0.32l-0.15,-1.73l0.46,-0.91l0.72,-0.19l0.29,-0.4l-0.21,-0.54l0.85,-0.28l0.54,-1.36l1.01,-0.07l0.32,-1.36l-0.14,-1.01l1.61,-1.64l-0.0,-0.56l-2.07,-2.07l-0.57,0.0l-0.86,0.88l-1.52,-0.7l-0.29,-0.85l-0.9,-0.7l-2.18,-0.46l-0.91,-1.04l0.84,-1.06l-0.16,-0.97l-1.01,-0.53l-0.67,-0.78l-2.7,-0.77l0.17,-1.14l-0.81,-0.76l0.34,-1.02l-0.43,-0.4l-0.43,0.05l-0.44,-0.85l0.33,-0.62l-0.29,-0.65l-0.61,-0.26l-1.78,0.22l-1.67,-1.54ZM762.4,214.6l1.38,22.44l0.37,0.36l0.99,0.06l7.06,0.08l-0.25,0.17l0.13,0.7l0.43,0.12l0.18,0.75l0.44,0.08l-0.75,1.46l-0.5,-0.24l-0.86,0.59l-0.78,2.27l-0.57,0.05l-0.48,0.53l-0.41,1.43l-3.49,0.36l-0.56,0.5l-2.04,-0.12l-0.54,0.33l-0.09,-0.83l0.51,-0.16l1.2,-1.42l-0.26,-0.59l-0.33,-0.02l-0.2,-0.85l-2.13,0.01l1.57,-0.83l0.01,-0.72l-1.14,-0.43l0.85,-1.84l0.08,-0.97l-0.89,-0.08l-0.82,1.35l-0.15,-0.59l-0.58,-0.22l-0.4,0.23l-0.88,1.19l0.26,0.94l-2.11,-2.53l-0.89,-0.03l-0.49,-0.93l0.4,-0.18l0.3,-1.02l0.8,-0.35l0.28,-1.2l2.17,0.79l0.83,-0.68l0.43,-1.27l-0.08,-0.47l-0.48,-0.24l-0.88,1.27l-0.77,-0.42l-0.1,-0.99l-0.43,-0.4l-0.5,0.06l-0.06,-0.61l-0.59,-0.07l1.07,-0.45l0.44,-0.9l-0.37,-0.63l-0.85,0.56l-0.03,-0.51l1.15,-0.56l-0.08,-0.69l-0.44,-0.18l-0.32,-0.78l-0.42,0.09l-0.33,-0.39l0.92,-0.71l0.04,-0.96l1.19,-1.53l0.13,-0.81l-0.45,-0.1l-0.76,0.44l-0.46,-0.27l-0.53,0.29l-0.36,0.78l-0.56,-1.2l1.47,-2.87l0.65,-0.33l0.22,-0.62l3.67,0.2l0.55,-0.25l-0.05,-0.71l-0.39,-0.16l-2.23,-0.04l1.11,-1.12l1.28,0.28l0.47,-0.39l-0.71,-0.81l0.8,-1.54ZM772.78,237.54l0.07,-0.0l-0.01,0.02l-0.06,-0.02ZM762.7,243.79l-0.1,0.12l-0.05,0.02l0.04,-0.13l0.11,-0.02ZM760.04,239.89l-0.05,0.15l-0.08,-0.09l0.13,-0.06ZM755.92,234.26l-0.13,0.08l-0.02,0.02l0.03,-0.1l0.11,0.0ZM755.69,234.56l-0.02,0.07l-0.08,0.04l0.1,-0.11ZM756.22,231.96l-0.0,0.02l-0.01,-0.01l0.02,-0.01ZM755.24,226.95l-0.26,0.35l-0.75,0.14l0.36,-0.86l0.65,0.38ZM755.81,230.74l-0.5,0.12l-0.42,-0.44l0.14,-0.43l0.67,0.26l0.11,0.5ZM751.65,225.27l0.2,0.05l0.67,0.34l-0.37,0.23l-0.5,-0.62Z", "name": "Maryland"}, "US-MA": {"path": "M802.31,149.4l30.3,0.94l1.95,-1.22l0.75,-1.26l0.98,-0.05l0.87,-0.78l1.4,-0.63l1.28,0.3l-0.72,0.83l0.86,0.59l-0.25,1.48l0.92,0.86l-0.15,0.28l0.28,0.37l1.15,0.55l-0.3,0.45l-2.65,0.97l-0.36,0.98l0.37,0.27l-1.43,0.96l-0.11,1.05l-1.21,0.59l0.13,1.47l1.16,0.82l0.3,0.72l1.43,-0.13l0.48,-0.44l1.07,0.42l0.59,0.65l0.01,0.68l1.24,1.77l-0.42,1.09l-0.67,0.34l-0.07,0.61l0.93,0.96l1.65,0.29l0.13,2.37l0.62,0.89l1.1,0.75l1.38,0.32l0.29,0.47l1.03,0.1l3.37,-1.26l1.08,-0.77l0.46,0.19l-0.04,1.78l-3.47,0.39l-1.11,0.47l-2.81,0.09l-0.93,1.34l-2.13,0.65l0.01,-2.56l0.49,-1.2l-0.42,-0.45l-0.57,0.2l-0.82,-0.36l-0.44,0.39l-0.04,0.89l-0.47,0.63l-0.38,-0.06l-0.89,0.81l-0.49,-0.35l-0.62,0.31l-0.34,1.73l-1.04,0.5l-0.36,-0.87l-0.45,-0.13l-0.48,0.42l-0.06,-2.0l-0.82,-0.62l1.11,-2.11l-0.08,-0.44l-0.85,0.14l-0.68,1.24l-0.68,-0.01l-1.1,-0.97l-0.11,-2.12l-0.67,-0.45l-0.1,-2.16l-0.39,-0.37l-6.23,0.1l-0.23,-0.22l-14.89,-0.24l-0.41,0.36l-0.34,-0.36l-0.84,-0.08l-9.48,-0.37l-0.18,-0.22l3.63,-13.57ZM842.71,151.57l-0.06,-0.04l0.09,-0.8l0.4,0.33l-0.43,0.51ZM853.25,167.68l0.01,-0.3l0.09,0.29l-0.1,0.02ZM852.76,165.76l-0.64,-0.15l-0.12,-1.16l0.34,0.5l0.42,0.8ZM849.75,163.34l-0.06,0.05l-0.03,-0.04l0.09,-0.01Z", "name": "Massachusetts"}, "US-AL": {"path": "M566.52,389.19l-1.28,-26.77l6.18,-56.04l-1.31,-1.86l39.27,0.46l6.27,38.26l0.52,2.17l0.77,1.48l0.26,1.64l1.54,2.36l0.53,1.6l-0.38,1.74l1.35,1.19l-1.94,1.66l-0.49,1.88l0.02,1.25l-0.94,1.78l-0.36,1.51l0.53,2.59l0.8,1.41l0.23,1.36l-1.04,4.73l0.13,1.75l0.97,1.16l0.66,1.74l-40.07,0.01l-0.47,0.5l-0.39,2.5l1.9,2.57l1.52,0.99l-0.58,2.15l0.56,1.73l-0.89,1.21l-1.06,0.67l-0.87,-0.73l-0.4,0.44l0.37,1.21l-2.11,0.5l-0.05,-1.01l-0.81,-0.86l0.01,-0.96l-0.49,-0.26l-0.52,0.43l-0.37,-0.36l-0.35,-1.04l0.51,-1.46l-0.57,-1.78l-1.01,-0.71l-0.17,-0.74l-0.49,-0.23l-0.44,0.56l-0.88,2.73l-0.53,4.06l-0.99,-0.8l-2.0,-0.51l-0.66,0.14Z", "name": "Alabama"}, "US-MO": {"path": "M451.72,194.17l25.16,0.52l16.16,-0.14l21.03,-0.75l0.66,1.22l2.15,1.73l0.2,0.7l1.03,0.9l-0.8,2.24l-0.13,1.92l0.42,3.42l0.77,1.39l-0.11,1.45l0.92,1.36l0.3,1.46l4.27,4.17l0.84,1.63l4.26,3.43l1.03,3.36l-0.22,0.6l0.28,1.7l0.75,1.57l0.65,0.74l0.96,0.24l0.82,-0.44l0.89,-1.18l0.53,-0.11l2.15,0.77l2.14,1.58l-1.07,1.66l0.02,2.07l-2.8,5.93l-0.08,0.94l0.47,1.8l3.87,4.05l1.71,1.12l1.31,0.22l1.37,1.31l1.65,0.89l1.15,2.01l1.75,0.92l0.09,2.65l1.26,2.72l-1.17,1.58l0.03,1.3l0.63,0.35l1.67,3.98l1.66,1.01l0.56,-0.26l0.09,-0.5l0.59,1.0l0.96,0.05l-0.07,1.57l-0.45,0.93l0.31,1.44l-1.34,3.24l-0.41,0.01l-1.1,-1.12l-0.64,0.04l-1.47,3.35l0.18,-0.8l-0.41,-1.03l-0.87,-0.27l-0.74,0.52l-0.08,0.95l0.4,0.6l0.28,1.82l-1.3,0.51l-0.21,0.39l0.65,1.26l-1.41,0.15l-0.2,0.6l1.15,1.82l-0.84,0.54l-0.76,1.77l-9.39,0.26l1.1,-1.8l0.83,-0.45l0.25,-0.75l1.34,-0.68l0.33,-0.81l0.9,-0.77l0.01,-2.04l-0.87,-0.77l-0.1,-0.67l-0.9,-1.16l-69.04,0.0l0.08,-52.02l-0.94,-0.65l-1.12,-0.09l-1.35,-0.73l-0.14,-0.86l-0.95,-1.23l-0.28,-1.45l-0.49,-0.11l-0.26,-0.53l-1.01,-0.66l-1.2,-1.73l0.7,-0.41l0.14,-1.13l1.1,-1.11l0.12,-0.7l0.92,0.19l0.57,-0.37l-0.07,-2.11l-0.91,-0.72l-0.26,-1.05l-1.11,-0.07l-1.26,0.82l-1.39,-0.86l-2.4,-2.28l-0.97,-0.31l0.2,-1.46l-1.15,-1.64l0.12,-0.95l-1.28,-0.56l-0.52,-0.81l-0.74,-0.28l-0.94,-3.86l-1.15,-0.79l-0.03,-0.45ZM552.52,264.57l-0.01,-0.02l0.01,0.0l0.0,0.02Z", "name": "Missouri"}, "US-MN": {"path": "M432.76,36.57l-0.38,-1.47l0.1,-1.26l-0.49,-0.59l-1.32,-4.1l0.1,-3.47l-0.44,-2.15l0.32,-1.21l-0.53,-2.53l0.87,-2.76l-1.98,-7.65l31.72,-0.03l0.52,-0.82l-0.02,-7.93l2.32,0.12l1.96,0.98l0.37,3.24l1.55,5.94l0.01,2.53l0.49,0.95l1.5,1.24l1.35,0.61l3.46,-0.19l0.38,0.98l0.53,0.42l5.58,0.4l0.4,0.29l0.46,1.76l0.71,0.7l4.58,-0.53l0.84,-0.63l0.12,-0.76l0.79,-0.34l1.89,-0.34l4.23,0.29l1.45,0.88l3.55,1.0l0.13,0.18l-1.25,0.63l-0.07,0.86l0.49,0.51l3.1,0.18l0.38,2.31l1.48,2.6l0.72,0.1l1.15,-0.74l0.11,-1.87l2.88,-0.27l1.33,2.47l2.04,1.03l1.61,0.34l0.53,0.69l-0.12,0.87l0.57,0.43l1.41,0.19l-0.1,0.41l0.4,0.51l1.52,-0.07l1.15,0.35l2.41,-0.69l3.17,-2.46l2.79,-1.4l1.07,2.85l0.94,0.63l2.42,-0.47l0.87,0.48l6.43,-0.74l0.57,0.26l1.21,1.91l1.23,0.77l0.63,0.06l1.78,-0.7l1.49,0.22l-1.18,1.06l-5.26,2.74l-6.94,2.3l-4.1,2.24l-2.5,2.41l-1.05,0.51l-7.72,8.48l-1.04,0.55l-1.25,1.53l-1.42,0.95l-0.79,0.93l-4.63,3.33l-1.04,1.78l-0.6,0.41l-0.23,0.99l-0.81,-0.07l-0.5,0.47l-0.02,12.69l-0.91,1.17l-1.07,-0.01l-0.6,0.79l-0.86,0.09l-0.69,0.8l-2.2,1.05l-1.1,1.83l0.01,0.73l-1.91,2.3l-0.17,2.1l0.31,0.95l2.15,0.56l1.25,2.64l-0.67,1.9l-0.82,1.21l-0.21,2.14l0.36,1.36l-0.81,1.18l0.67,3.22l-0.82,4.04l3.72,3.33l2.99,0.63l1.7,2.39l2.82,0.73l2.28,2.11l2.07,3.75l2.46,2.0l2.06,0.27l1.0,0.79l0.86,0.17l0.69,1.41l1.17,0.94l0.09,2.01l0.55,1.33l-0.05,4.73l-80.35,0.02l-0.0,-38.78l-0.66,-1.31l-0.81,-0.82l-2.58,-0.89l-0.89,-1.97l-1.42,-1.87l0.24,-0.69l2.96,-2.29l1.02,-2.04l0.53,-2.57l-0.3,-1.64l0.3,-1.9l-0.13,-1.56l-0.48,-1.08l-0.1,-2.42l-1.77,-2.75l-0.45,-1.19l-0.14,-2.25l-0.64,-1.04l0.22,-1.73l-0.31,-1.61l0.64,-2.8l-0.16,-0.53l-0.54,-0.33l-0.36,-1.11l-0.22,-8.79l-0.41,-0.84l0.2,-4.16l-1.52,-4.26l-0.54,-0.72Z", "name": "Minnesota"}, "US-CA": {"path": "M6.84,193.37l0.52,-1.19l0.95,-0.02l0.6,-2.22l0.87,-0.11l0.78,-0.99l-0.46,-0.71l-0.72,-0.15l0.75,-2.78l-0.81,-2.29l0.57,-1.0l0.54,-2.33l0.45,-3.04l-0.15,-2.0l-0.49,-0.87l-0.89,-3.57l-1.45,-0.84l0.54,-1.35l0.2,-2.79l64.73,0.0l0.14,61.4l29.2,25.98l54.39,51.9l0.2,2.35l0.76,0.7l0.41,1.43l0.83,0.44l1.02,2.04l0.06,0.79l0.72,1.08l0.05,1.24l3.1,2.21l0.73,0.93l-1.45,1.49l-2.51,1.48l-0.77,1.84l-1.32,1.17l-0.19,0.78l0.43,0.79l-0.34,0.51l0.03,0.73l0.37,1.96l-0.41,0.67l-0.23,2.12l-1.38,2.31l-1.33,0.31l-0.31,0.55l0.38,0.68l-0.31,1.21l0.6,0.87l0.14,0.98l-0.29,2.37l0.64,0.79l2.06,0.37l0.75,0.82l0.16,1.99l-0.88,0.78l-0.17,1.18l-1.95,-0.23l-1.02,0.67l-36.78,3.3l-0.07,-0.51l0.48,-0.67l-0.32,-1.17l-1.23,-1.23l-0.83,0.14l-0.41,-1.7l0.42,-1.03l-1.08,-4.2l-2.97,-4.35l-4.99,-4.31l-2.39,-1.39l-2.23,-2.06l-1.91,-0.55l-1.04,0.36l-0.14,0.74l-1.36,-0.51l0.33,-1.64l-0.84,-2.14l-1.2,-1.48l-0.73,-0.38l-1.92,-0.0l-2.14,0.54l-4.96,-1.76l-1.25,-0.9l-0.93,-2.12l-4.42,-2.77l-1.76,-0.1l-0.83,0.4l-1.11,-0.41l-1.29,0.15l-1.98,-0.91l-2.18,-0.29l-4.96,0.47l-0.66,-1.33l-1.88,-0.71l0.61,-2.39l-0.53,-1.12l0.28,-2.03l-0.78,-0.95l0.55,-2.19l-0.18,-2.11l-1.11,-0.89l-1.22,-0.0l-1.38,-0.89l-0.2,-0.56l0.96,-1.5l-0.87,-1.85l-0.41,-0.4l-1.6,-0.33l-2.44,-3.24l-1.77,-0.64l-0.79,-2.15l-1.91,-1.9l-0.74,-2.3l-1.04,-0.46l-1.65,-2.65l-2.34,-1.54l-0.97,-1.2l-0.77,-3.35l0.18,-1.36l-0.55,-0.43l0.28,-0.45l0.62,0.48l0.51,-0.21l0.59,-0.68l0.45,-1.54l0.73,-0.2l-0.04,-0.51l-0.53,-0.32l0.17,-0.8l-0.24,-0.82l-1.67,-2.74l-0.63,-0.27l-0.78,0.39l-1.83,0.05l-1.63,-1.25l-1.21,-1.67l-0.56,-0.24l-1.03,-1.27l-0.2,-0.93l0.27,-2.13l-0.81,-2.52l-1.05,-0.91l0.39,-2.59l-0.31,-2.04l1.09,-0.44l0.48,1.22l-0.47,0.4l0.51,2.41l1.76,0.65l0.93,1.08l1.02,0.41l0.57,0.8l0.89,0.17l0.69,-0.54l-0.42,-1.03l-0.72,-0.32l-0.62,-1.22l-0.31,-1.76l-0.75,-0.99l-0.39,0.01l0.35,-0.75l-1.68,-0.73l0.46,-0.7l-0.55,-1.61l-0.92,-0.14l-0.34,-0.44l0.75,-0.74l0.87,-0.22l0.69,-0.81l1.31,0.64l2.32,-0.63l4.92,0.93l0.45,-0.31l0.11,-0.9l0.56,0.98l0.74,-0.22l0.22,-0.48l1.49,1.1l0.65,-0.32l-0.06,-0.36l-2.14,-2.0l-1.6,-0.05l0.1,-0.51l-0.37,-0.47l-1.94,1.63l-0.7,-0.15l-0.63,0.31l-0.27,-0.44l-0.98,0.03l0.11,-0.62l-0.49,-0.56l-1.01,0.07l-1.32,1.73l-1.7,-0.49l-0.51,-0.68l-1.49,-0.89l-2.24,1.03l0.29,0.79l-0.36,1.2l0.58,0.53l-0.55,1.08l0.42,1.86l-2.08,-1.49l-1.1,-0.04l-1.57,-1.88l-1.51,-0.74l-0.08,-0.62l-0.6,-0.02l0.35,-1.03l1.23,1.51l0.49,0.14l0.23,-0.45l-2.41,-4.02l-0.9,-0.97l-0.52,-0.08l-0.03,-0.74l-0.99,-1.89l-3.15,-2.31l-1.57,-2.4l-4.47,-4.64l0.58,-1.81l-0.08,-0.79l-2.01,-5.84l0.12,-1.77l0.73,-2.1l-0.34,-2.8l-0.6,-1.0l-0.39,-2.16l-0.88,-0.77l-1.99,-3.0l-0.64,-0.35l-0.63,-1.57l-1.16,-0.55l-2.61,-2.48l0.18,-1.23l-0.88,-2.35l1.34,-3.63ZM46.8,244.97l-0.28,0.18l-0.12,-0.01l0.12,-0.07l0.28,-0.1ZM48.03,245.0l0.02,-0.17l0.06,0.0l-0.06,0.12l-0.03,0.05Z", "name": "California"}, "US-IA": {"path": "M438.95,133.31l82.4,-0.04l0.71,2.54l1.86,1.15l0.02,0.58l-1.04,1.66l-0.25,1.0l0.41,4.99l0.79,1.3l0.22,1.72l1.27,1.79l4.72,1.27l1.03,2.05l-0.39,0.95l0.22,0.67l3.26,2.6l0.59,2.38l3.46,2.57l0.42,1.64l-0.71,3.94l-1.76,1.7l-0.67,1.78l0.0,1.22l-1.32,1.15l-2.49,0.67l-1.5,1.2l-4.42,0.36l-0.93,0.61l-0.73,1.56l-0.38,2.39l0.28,1.05l1.78,1.55l0.27,2.5l-2.06,2.86l-0.41,2.07l-0.61,1.26l-2.83,1.04l-1.05,0.87l-0.28,0.93l0.6,0.86l0.0,1.97l-0.54,0.16l-1.18,-0.86l-0.22,-0.73l-1.38,-1.36l-0.8,-0.4l-0.21,-0.77l-0.85,-0.72l-21.24,0.77l-14.35,0.13l-26.83,-0.51l-0.16,-0.98l-1.2,-0.74l-0.28,-0.62l0.59,-1.03l0.11,-2.2l-0.25,-2.07l-0.53,-0.69l0.2,-3.44l-0.98,-0.68l0.77,-2.02l-1.22,-0.58l0.41,-2.37l-0.28,-0.4l-0.94,-0.24l0.17,-1.11l-0.67,-0.46l-0.71,0.19l-0.29,-2.66l0.56,-2.39l-1.4,-2.16l0.0,-1.82l-1.66,-1.54l-0.28,-1.68l-1.01,-0.94l0.11,-2.07l-1.0,-1.83l0.27,-1.61l-0.22,-1.06l-1.31,-0.7l-0.77,-2.11l0.06,-0.61l-1.71,-1.89l0.61,-1.44l0.54,-0.44l0.81,-2.57l0.07,-1.63l0.55,-0.64l0.25,-1.15l-0.42,-2.2l-1.28,-0.33l-0.02,-0.69l0.45,-0.53l0.06,-1.67l-0.89,-1.43l-0.01,-0.84Z", "name": "Iowa"}, "US-MI": {"path": "M591.63,169.36l2.06,-1.83l2.57,-5.33l1.79,-2.69l1.66,-4.61l0.85,-5.07l-0.13,-6.35l-1.51,-4.43l1.06,-1.12l-0.5,-0.5l-1.12,0.38l-2.83,-7.69l0.27,-1.31l1.25,-1.86l0.13,-0.95l-0.29,-3.16l-1.03,-1.79l0.04,-0.61l2.09,-2.43l1.82,-3.96l0.07,-2.67l0.47,-2.56l-0.54,-1.69l1.26,-0.98l0.81,0.1l0.63,-0.39l0.24,-3.5l1.09,0.05l0.88,-1.33l1.11,0.65l0.7,-0.23l1.15,-2.46l1.0,-1.07l0.88,-1.64l0.52,-0.05l-0.71,0.79l0.35,1.74l-0.98,1.68l0.64,0.53l-0.87,2.52l0.66,1.55l0.74,0.06l0.43,0.63l0.67,-0.14l1.23,-2.11l1.2,-3.38l0.24,-2.08l-0.23,-3.53l0.74,-0.93l2.4,-1.3l2.83,-0.11l1.08,-0.47l0.38,-0.59l-0.16,-0.58l-1.75,-0.39l-0.83,-1.02l-0.21,-2.08l2.35,-2.7l-0.0,-0.76l1.78,0.05l0.9,-0.83l3.86,2.7l0.81,0.26l2.06,-0.08l1.32,0.63l0.86,0.97l0.88,1.97l2.78,0.28l1.53,1.31l1.9,0.42l0.69,0.78l1.11,0.44l1.45,0.19l1.58,1.35l-0.2,1.11l0.8,1.49l0.6,0.31l0.21,0.97l-0.23,0.54l-0.63,-0.38l-1.03,0.4l-0.55,1.77l0.58,1.42l1.41,1.25l0.45,1.48l0.25,2.34l-0.42,1.69l-0.27,5.83l-0.88,0.5l-0.55,0.78l-0.74,-0.06l-0.92,0.66l-0.93,4.33l-1.18,0.28l-0.31,0.77l-1.89,0.1l-0.81,0.47l-1.0,2.44l0.17,0.48l-0.34,0.79l-0.13,2.21l1.13,1.5l2.68,1.29l0.9,0.08l1.26,-1.01l0.83,-1.29l0.57,0.29l0.42,-0.17l1.6,-3.3l0.77,-0.93l0.02,-0.51l1.19,-1.24l1.43,-0.14l1.16,-0.48l1.01,-0.92l0.93,-0.27l2.44,1.34l1.23,1.71l0.79,2.3l1.39,7.73l0.33,3.74l0.79,3.73l0.93,1.89l-1.03,3.66l0.17,1.18l-0.6,2.74l-0.94,1.42l-0.33,-1.23l0.17,-0.79l-0.39,-0.4l-1.4,-0.36l-1.66,1.03l-0.21,0.79l0.39,0.72l-0.87,0.39l-0.42,0.7l-0.24,2.82l-0.59,0.62l-1.71,0.6l-1.33,1.57l-1.04,3.43l-0.02,1.51l-0.46,0.81l-0.42,0.1l-0.15,0.85l-0.64,0.18l-1.12,1.36l-0.89,2.09l-0.64,0.76l-20.09,0.71l0.0,-0.87l-0.4,-0.4l-30.56,-0.03ZM610.56,103.23l0.02,-0.07l0.14,-0.11l-0.02,0.04l-0.14,0.15ZM610.96,102.36l-0.05,-0.18l0.1,-0.14l-0.05,0.32ZM535.25,64.97l5.27,-1.95l4.06,-3.36l6.11,-0.76l1.52,-0.71l2.75,-2.54l1.01,0.16l1.65,-0.57l1.31,-2.22l3.29,-2.64l0.03,1.84l1.84,0.85l-0.13,1.51l0.66,0.23l0.46,0.7l-0.57,3.26l0.34,1.05l-0.41,0.45l0.14,0.49l0.75,0.07l1.39,-2.16l1.27,-0.81l-0.59,1.18l0.52,0.52l0.94,-0.59l0.7,-1.2l1.09,-0.32l3.22,0.15l1.53,0.42l1.09,1.13l1.52,0.66l0.35,1.16l2.02,2.98l1.12,0.72l0.33,1.67l0.69,0.44l1.9,0.33l0.8,-0.31l1.09,0.09l0.62,-0.6l0.97,-0.32l0.87,1.29l1.03,0.81l1.06,-0.11l0.82,-0.75l1.76,1.36l0.7,-0.25l2.07,-2.42l3.15,-1.53l1.99,-1.44l0.92,0.26l3.53,-0.74l5.33,0.55l5.02,-2.08l2.72,0.04l-0.56,3.36l0.18,0.78l-0.55,1.07l0.69,1.07l1.29,-0.17l2.12,1.08l1.23,-0.25l1.2,-0.72l0.6,0.62l0.08,0.74l0.82,0.37l1.37,-0.58l1.07,-1.47l0.76,-0.18l1.03,0.41l1.58,-0.94l0.77,0.21l-0.65,2.02l0.55,1.51l-1.14,-0.23l-0.44,0.43l0.16,1.37l0.39,0.64l-1.06,0.91l0.04,0.47l0.71,0.94l1.45,-0.2l0.52,0.58l0.63,0.16l-0.03,1.24l0.84,1.05l1.46,0.79l-1.31,0.5l-4.99,-0.99l-0.58,0.21l-1.34,-0.4l-0.97,0.27l-0.54,-0.88l-1.64,-0.35l-0.67,0.37l-0.27,1.22l-0.62,0.68l0.06,2.14l-0.92,-0.38l-0.75,-1.08l-0.76,-0.26l-1.71,-1.99l-2.34,-0.99l-1.63,-0.21l-0.97,-0.67l-0.58,0.21l-0.66,-0.36l-0.65,0.29l-1.12,-0.11l-0.68,0.36l-1.59,2.38l-3.63,0.21l-0.69,0.7l-2.04,-0.65l-2.99,0.52l-0.81,0.74l-0.93,2.47l-2.5,1.15l0.46,-1.99l-0.4,-0.88l-0.99,-0.07l-1.22,0.96l-0.92,-0.54l-0.71,0.07l-0.42,0.35l-0.01,0.84l-1.03,1.93l-1.31,0.44l0.09,-1.42l-0.32,-1.14l0.58,-1.66l-0.12,-0.39l-0.64,-0.26l-0.53,0.51l-0.9,2.07l-0.58,2.57l-1.25,0.76l-1.69,2.88l-0.98,2.59l-3.28,5.01l-0.79,0.64l0.0,0.93l-1.24,-1.47l0.4,-1.73l0.85,-1.61l-0.31,-0.86l-0.58,-0.39l-1.47,0.68l-1.19,-0.06l0.2,-1.29l1.0,-1.35l-0.24,-1.41l0.45,-1.06l-0.46,-1.07l0.26,-0.82l-1.72,-1.81l-1.11,-0.2l-0.54,-0.52l-0.9,0.09l-0.6,-0.28l0.48,-1.35l-0.76,-1.59l-1.08,-0.66l-2.26,-0.38l-0.67,-0.45l-0.68,0.05l-1.81,-0.72l-1.65,0.41l-1.41,-0.61l-1.67,-0.03l-4.42,-2.53l-15.43,-4.3l-1.68,-3.71l-1.83,-1.19l-0.81,0.19l-0.07,-0.34ZM595.0,83.29l-0.09,0.54l-0.51,0.26l-0.9,1.3l0.01,0.6l-0.6,-0.71l1.23,-2.05l0.87,0.05ZM564.93,52.31l-0.53,-0.42l-1.21,-0.08l0.06,-1.4l3.18,-3.59l1.66,-1.02l0.65,0.09l0.62,-0.54l2.28,-0.66l3.53,0.01l0.87,0.53l0.21,0.35l-0.64,0.34l-1.35,-0.31l-2.44,0.5l-0.2,0.28l0.22,0.62l0.76,0.25l-1.39,0.9l-1.7,1.8l-0.75,0.2l-0.55,1.47l-1.37,1.27l-0.95,2.07l-0.6,-1.03l0.9,-0.92l0.39,-2.02l-0.58,-0.45l-0.33,0.2l-0.67,0.87l-0.07,0.7ZM565.02,52.45l0.13,0.0l-0.11,0.02l-0.02,-0.03ZM553.93,35.38l0.91,-0.96l-0.39,-0.41l0.67,-0.52l5.21,-2.61l2.29,-1.59l0.76,-0.1l-0.62,0.68l0.02,0.84l-0.52,0.48l-4.78,2.2l-1.01,0.93l0.21,0.42l-2.11,1.02l-0.64,-0.4Z", "name": "Michigan"}, "US-GA": {"path": "M610.2,304.99l37.84,-0.29l-2.88,2.85l-0.62,1.42l-0.08,1.1l0.6,0.8l2.32,1.22l2.01,2.1l2.82,0.59l0.42,1.49l1.04,1.59l0.49,2.26l1.99,2.33l0.57,1.63l4.65,3.57l1.53,3.02l1.82,0.85l1.86,1.79l0.03,2.0l0.9,1.07l0.43,-0.06l-0.02,0.94l0.55,0.74l0.63,0.22l0.29,1.08l3.73,2.14l0.29,0.72l-0.12,1.0l1.01,1.71l0.51,1.81l-0.0,2.36l0.47,0.64l2.15,1.24l0.58,0.77l0.5,2.27l0.54,0.59l-0.38,2.19l0.4,1.39l1.01,0.98l1.32,0.04l1.06,0.86l1.12,0.28l-0.51,0.44l-0.43,-0.35l-0.48,0.17l-0.51,0.79l0.33,0.85l-0.3,0.25l-1.06,-0.34l-0.59,-0.59l-0.65,0.27l0.03,0.64l-0.42,0.34l0.23,0.67l1.07,0.41l-0.65,0.92l-1.17,-0.02l-1.04,-0.58l-0.38,0.14l-0.12,0.73l1.09,0.69l-2.06,2.76l0.02,1.46l-0.56,0.75l0.41,1.25l-1.73,-0.51l-0.47,0.17l-0.06,0.64l0.4,0.36l2.24,0.65l0.73,0.65l-1.54,1.74l-0.12,-1.18l-0.42,-0.21l-0.59,0.2l-0.16,1.41l-0.47,0.07l-0.44,0.77l-0.02,0.46l0.89,1.11l-1.05,0.66l0.23,0.5l0.5,0.19l-0.94,1.68l0.63,1.53l-0.08,0.54l-0.64,0.14l-2.11,-0.55l-3.17,-1.42l-1.18,0.1l-0.27,0.54l-0.59,0.15l-0.49,0.98l-0.1,1.76l0.56,1.24l-0.55,3.41l-1.54,0.03l-0.28,-0.79l0.1,-1.08l-0.87,-1.73l-40.95,-2.82l-0.48,-0.51l-0.35,-2.3l-0.96,-1.74l0.19,-0.53l-0.41,-1.35l-1.26,-1.71l-0.12,-1.46l1.04,-4.88l-1.56,-5.24l0.31,-1.32l0.96,-1.85l0.43,-3.0l1.52,-0.88l0.59,-1.22l-1.48,-1.35l0.36,-1.76l-0.57,-1.68l-1.5,-2.29l-0.51,-2.48l-0.54,-0.65l-0.47,-2.04l-6.25,-38.08Z", "name": "Georgia"}, "US-AZ": {"path": "M155.07,350.96l0.12,-1.51l0.9,-1.21l0.3,-0.99l0.33,-0.24l1.46,0.3l0.83,-0.15l0.41,-0.48l0.09,-1.02l0.98,-1.02l-0.15,-2.33l-0.55,-0.99l-0.84,-0.47l-1.8,-0.28l-0.31,-0.44l0.36,-2.1l-0.19,-1.17l-0.59,-0.9l0.36,-0.77l-0.22,-0.67l1.22,-0.43l1.6,-2.68l0.23,-2.12l0.45,-0.76l-0.39,-2.67l0.38,-0.63l-0.44,-1.13l1.31,-1.17l0.63,-1.68l2.56,-1.51l1.55,-1.6l0.16,-0.53l-0.26,-0.9l-3.71,-2.66l0.02,-1.08l-0.75,-1.13l-0.06,-0.79l-1.12,-2.23l-0.81,-0.38l-0.38,-1.37l-0.69,-0.57l-0.3,-3.01l0.38,-0.84l-0.32,-0.63l0.78,-0.51l0.16,-1.28l-0.31,-2.77l-1.15,-3.01l0.31,-2.3l-0.75,-2.51l0.39,-2.32l-1.11,-2.26l0.41,-1.71l2.12,-0.87l1.67,0.63l1.22,-0.36l1.13,1.79l0.8,0.53l1.39,-0.07l0.86,-0.59l0.6,-2.09l0.68,-1.17l0.04,-15.02l77.01,0.06l-0.01,106.11l-30.97,-0.11l-58.0,-21.23Z", "name": "Arizona"}, "US-MT": {"path": "M140.82,42.58l0.72,-1.15l-0.63,-1.3l-0.07,-1.02l-1.62,-1.81l-0.51,-1.53l-1.3,-1.22l-1.67,-2.38l0.01,-22.78l186.2,-0.0l0.14,90.48l-108.87,0.0l-0.4,0.4l-0.01,10.49l-1.74,-1.82l-0.14,-0.9l-1.46,-2.19l-1.33,-0.59l-1.69,1.13l0.15,1.04l-0.67,0.51l-0.15,1.59l-2.46,-0.11l-1.83,0.8l-1.02,-0.73l-3.32,0.51l-2.49,-0.65l-1.59,0.79l-0.64,1.58l-4.84,-0.97l-1.24,0.54l-0.99,1.04l-0.21,0.7l-1.83,-1.16l0.02,-1.44l-1.13,-1.57l0.34,-0.41l-0.02,-0.62l-1.59,-2.89l-1.62,-1.04l-1.39,0.55l-0.3,-0.61l-1.2,-0.74l-0.6,-1.3l0.59,-0.7l0.0,-1.43l-1.11,-2.26l-0.82,-0.24l-0.53,-1.54l-1.88,-2.33l0.01,-1.55l-0.75,-1.19l0.14,-1.46l-0.86,-0.76l0.34,-1.06l-0.32,-0.71l-1.26,-0.59l-0.22,-0.57l-0.99,-0.79l-0.86,-0.28l-0.45,0.44l0.04,0.77l-0.67,0.37l-0.95,1.4l-1.71,0.63l-1.06,1.26l-1.22,-0.69l-0.8,-0.91l-1.14,-0.28l-0.11,-0.88l0.65,-0.75l0.08,-1.1l-0.86,-1.52l0.75,-1.25l1.07,-0.25l0.71,-0.93l-0.44,-1.11l0.22,-1.14l-1.09,-0.67l-0.17,-0.82l0.47,-1.4l-0.78,-1.01l0.75,-0.18l0.32,-0.48l-0.32,-1.8l0.74,-1.69l0.54,-2.41l-0.32,-1.06l0.82,-0.78l0.19,-3.19l-0.81,-0.55l-1.91,0.67l-1.39,0.1l-0.75,-0.47l0.24,-0.92l-0.78,-0.89l-0.7,-0.12l-0.72,0.52l-0.2,-1.02l-2.05,-1.4l-0.25,-1.91l-1.33,-1.32l-0.7,-0.3l-0.2,-0.69l-2.06,-2.73l-1.32,-1.17l-0.86,-1.6l-2.64,-1.0l-1.32,-1.88l-1.8,-1.03l0.81,-0.23l0.25,-0.7l-1.28,-1.66Z", "name": "Montana"}, "US-MS": {"path": "M515.97,373.97l1.36,-0.07l0.48,-0.45l0.54,-2.26l-0.51,-1.55l1.44,-1.38l0.47,-2.94l0.79,-1.81l1.66,-0.87l1.12,-1.55l1.27,-0.77l0.4,-1.49l-0.47,-0.78l0.99,-0.18l1.02,-2.07l0.88,-1.04l-0.07,-0.77l-1.26,-0.51l-0.23,-0.83l-1.44,-1.0l0.11,-1.78l-1.04,-1.43l-0.01,-0.25l0.97,-0.15l0.48,-0.56l-0.16,-0.85l-1.13,-0.47l0.33,-1.44l0.96,-1.22l-0.58,-1.03l-0.87,-0.32l0.1,-2.35l0.78,-0.35l0.29,-0.72l-0.33,-2.19l-1.01,-0.64l0.69,-1.04l0.12,-1.89l-1.55,-1.38l1.07,-0.51l0.09,-1.04l-1.05,-0.84l1.46,-1.56l0.81,-0.18l0.39,-0.58l-0.31,-1.38l0.46,-1.16l-0.57,-0.77l2.39,-0.67l0.59,-0.62l0.02,-0.95l-1.14,-0.9l1.27,-0.78l0.68,-1.43l0.84,-0.09l0.39,-0.82l-0.07,-0.63l1.25,-0.26l1.27,-1.12l0.29,-2.85l-0.27,-1.35l0.43,-1.41l1.27,-0.12l0.45,-0.76l-0.28,-0.88l2.53,-1.24l0.61,-0.89l-0.08,-1.07l32.01,0.04l0.6,1.14l0.67,0.48l-6.18,55.99l1.23,27.63l-0.6,0.47l-1.17,-0.38l-0.7,-0.87l-1.2,0.74l-0.99,0.02l-1.67,-1.24l-1.55,-0.33l-0.69,0.21l-0.39,0.4l0.19,0.33l-0.42,0.21l-3.36,0.97l0.01,-0.39l-0.73,-0.51l-0.89,-0.06l-0.61,0.82l0.57,0.54l-1.39,0.81l-0.41,1.04l-1.6,-0.03l-0.74,-1.56l-0.7,-2.88l-1.03,-1.49l-0.89,-0.53l-0.17,-1.17l-0.48,-0.81l1.66,-4.7l0.06,-1.04l-0.39,-0.33l-28.85,-0.0l0.51,-0.7l-0.74,-1.53l0.25,-1.37l-0.58,-0.68Z", "name": "Mississippi"}, "US-SC": {"path": "M648.9,304.68l4.59,-1.53l0.9,0.11l1.19,-0.99l3.68,-1.0l0.51,-0.66l0.52,0.27l20.14,0.9l-0.19,1.0l0.28,0.59l0.65,0.14l1.25,-0.87l1.95,2.59l-0.05,2.14l0.42,0.58l17.51,0.57l16.4,16.79l-0.12,0.41l-2.45,1.34l-2.75,2.59l-3.11,4.31l-0.56,2.12l-0.75,-0.29l1.2,-2.04l-0.57,-0.36l-0.82,0.6l-0.73,1.05l-0.38,1.28l0.24,0.69l1.12,0.69l0.18,0.77l-1.74,0.14l-0.38,0.62l0.68,0.49l-1.1,0.7l-0.26,0.82l-1.17,0.25l-0.74,-0.73l-1.05,0.52l-0.79,1.28l0.14,0.91l-1.18,0.78l-0.76,1.07l-1.16,0.61l-0.56,-0.46l0.28,-0.37l-0.32,-0.79l-1.27,0.0l-0.07,1.0l-0.38,-0.03l-0.12,0.7l1.49,1.2l-0.96,0.8l-1.12,0.01l-0.32,0.43l0.14,0.38l-2.03,0.66l-1.0,-0.91l-0.53,-0.02l-0.24,0.64l0.8,0.79l-1.41,0.94l-0.49,-0.7l-0.59,0.41l-0.04,0.54l-1.23,-0.57l-1.0,-0.93l-0.52,0.4l0.03,0.39l-1.58,-0.08l-0.48,0.63l0.37,0.46l-0.44,0.51l0.13,2.09l-0.58,-0.52l-0.35,-0.91l-0.03,-1.52l-0.84,-0.9l-0.62,-0.14l-0.38,0.51l1.03,3.23l-0.16,0.7l0.73,1.04l-0.48,0.27l-0.16,0.83l-1.59,2.63l-1.04,-0.84l-1.3,-0.05l-0.64,-0.68l-0.28,-0.91l0.37,-2.34l-0.63,-0.9l-0.46,-2.17l-0.81,-1.06l-2.36,-1.52l0.03,-2.27l-0.58,-1.99l-0.93,-1.54l0.12,-0.88l-0.45,-1.15l-3.77,-2.19l-0.29,-1.15l-0.93,-0.46l0.12,-0.61l-0.33,-0.84l-0.74,-0.15l-0.49,-0.58l0.22,-1.01l-0.35,-1.17l-2.0,-1.93l-1.74,-0.78l-1.49,-2.98l-3.04,-2.24l-0.87,-1.05l-0.67,-0.22l-0.61,-1.69l-1.88,-2.18l-0.46,-2.17l-1.06,-1.64l-0.6,-1.75l-0.87,-0.49l-2.05,-0.17l-2.04,-2.28l-0.9,-0.14l-1.69,-1.37l0.64,-1.78l2.76,-2.43l0.29,-0.86ZM685.32,355.87l0.77,0.42l-1.12,1.2l0.35,-0.76l-0.0,-0.86ZM686.89,351.48l0.84,0.16l-0.21,0.38l0.36,0.33l1.58,0.19l-1.32,1.27l0.45,0.56l0.83,-0.22l-1.95,0.86l0.19,-1.61l-0.52,-0.4l0.16,-0.96l-0.42,-0.58Z", "name": "South Carolina"}, "US-RI": {"path": "M824.65,178.5l0.53,-1.55l0.14,-2.15l-0.07,-9.91l5.67,-0.1l0.11,2.07l0.67,0.47l-0.04,0.7l-0.04,0.36l-0.78,0.05l-0.06,0.27l0.05,1.47l0.39,0.63l-0.57,-0.06l-0.64,0.54l0.52,1.13l-0.48,1.06l0.27,1.97l-0.45,1.5l-0.44,0.55l-0.86,-0.1l-3.92,1.12ZM832.08,169.74l0.15,0.12l-0.01,0.04l-0.11,-0.1l-0.03,-0.06ZM833.11,170.72l0.06,0.51l-0.13,0.26l-0.12,-0.03l0.19,-0.74Z", "name": "Rhode Island"}, "US-AR": {"path": "M471.78,329.54l0.7,-32.59l-2.74,-21.04l68.74,0.0l0.55,1.44l0.83,0.7l-0.07,1.51l-0.73,0.41l-0.27,0.78l-1.35,0.69l-0.35,0.88l-0.79,0.4l-1.3,2.15l-0.05,0.66l0.49,0.3l9.77,-0.27l0.65,0.86l-1.05,0.14l-0.57,0.81l0.19,0.52l0.65,0.38l-3.4,1.98l-0.07,0.79l0.61,0.94l-0.61,0.95l0.43,0.84l-1.28,0.5l-0.24,1.25l-1.47,1.68l-0.05,1.44l0.51,2.72l-1.4,0.3l-0.58,1.42l-1.41,0.68l-0.1,0.5l0.6,0.84l-0.01,0.52l-1.04,0.91l-1.88,0.81l-0.25,0.56l0.12,1.04l-1.06,-0.08l-0.45,0.56l-0.45,1.6l0.27,1.39l-0.24,2.59l-1.16,0.8l-1.38,0.0l-0.14,1.64l-0.84,0.18l-0.66,1.45l-1.37,0.89l-0.11,0.84l1.14,0.8l-0.07,0.51l-3.11,1.02l-0.04,0.63l0.78,0.76l-0.47,0.94l0.34,1.19l-0.96,0.4l-1.85,2.05l0.4,0.69l0.81,0.48l-0.03,0.42l-1.09,0.29l-0.19,0.44l0.38,0.77l1.31,0.97l-0.08,1.44l-0.72,1.55l1.08,0.78l0.24,1.82l-1.0,0.74l-0.12,1.75l-44.02,0.05l-0.09,-9.73l-1.0,-0.84l-0.81,0.08l-0.67,-0.33l-0.85,0.26l-1.03,-0.34l-0.87,0.55l-0.97,-0.44l-0.62,-0.99Z", "name": "Arkansas"}}, "height": 520.4541753374158, "projection": {"type": "merc", "centralMeridian": -10.0}, "width": 900.0}); \ No newline at end of file diff --git a/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-us-ny-newyork-mill-en.js b/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-us-ny-newyork-mill-en.js deleted file mode 100644 index 8b225b749..000000000 --- a/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-us-ny-newyork-mill-en.js +++ /dev/null @@ -1 +0,0 @@ -jQuery.fn.vectorMap('addMap', 'us-ny-newyork_mill',{"insets": [{"width": 900, "top": 0, "height": 806.1671367095423, "bbox": [{"y": -4827249.193754499, "x": -8270287.193842374}, {"y": -4771822.061199306, "x": -8208408.686237508}], "left": 0}], "paths": {"1": {"path": "M551.14,76.47l1.11,-1.33l4.45,-2.76l0.96,-1.68l1.56,-0.03l1.22,0.45l3.87,3.52l0.53,1.92l-1.68,5.32l-0.99,0.37l-0.49,0.69l-1.42,-2.06l-1.72,-1.53l-1.77,-0.88l-5.64,-2.0ZM556.35,78.5l-0.02,-0.02l0.03,-0.01l-0.02,0.04ZM383.11,402.95l0.29,-1.36l0.88,0.07l0.68,-1.92l-0.28,-0.51l-0.73,-0.23l1.49,-7.63l1.6,0.3l0.46,-0.31l0.02,-1.2l0.48,-1.22l-0.32,-0.47l-1.73,-0.34l1.38,-8.94l5.25,0.63l0.46,-0.32l0.24,-1.17l0.25,-1.52l-0.98,-0.94l0.9,-0.26l0.16,-0.97l-0.53,-0.49l0.13,-0.53l0.48,0.07l0.45,-0.34l1.43,-8.39l-0.82,-0.66l-4.88,-0.71l5.44,0.59l0.44,-0.37l0.26,-3.43l-0.36,-0.43l-4.43,-0.41l0.39,-3.48l4.32,0.42l0.44,-0.37l0.36,-4.95l-0.24,-0.26l0.58,-0.62l-0.42,-1.3l0.28,-0.24l0.28,-3.39l0.27,-3.88l-0.27,-0.31l0.31,-0.27l0.1,-1.56l-0.4,-0.43l-1.53,-0.09l0.01,-0.91l0.19,-1.15l2.56,0.13l0.47,-0.23l0.3,-1.08l-0.41,-0.47l0.63,-0.92l0.3,-1.95l-0.8,-0.53l-0.24,-0.62l-3.86,-0.47l3.78,0.45l0.51,-0.53l0.93,-0.27l0.28,-1.9l-0.34,-0.41l-1.03,-0.16l-0.32,-0.62l-3.22,-0.41l3.27,0.31l0.44,-0.34l0.16,-1.13l-0.35,-0.45l-3.22,-0.41l3.31,0.38l0.44,-0.34l0.17,-1.15l-0.35,-0.46l-3.28,-0.43l3.31,0.41l0.44,-0.34l0.18,-1.2l-0.38,-0.46l-1.67,-0.21l0.42,-0.26l0.58,-1.79l0.54,-0.23l2.56,-8.47l3.41,-5.23l0.53,-0.15l0.66,-1.11l-0.55,-0.77l0.01,-0.85l-2.85,-1.41l0.45,-0.72l2.9,1.44l0.52,-0.15l0.29,-0.48l0.67,-0.07l0.08,-0.55l0.47,-0.36l-0.35,-0.65l0.86,-1.39l0.75,-0.03l0.66,-1.46l1.38,-1.84l-0.09,-0.3l0.99,-1.19l-0.14,-0.5l1.31,0.68l1.02,-0.44l0.76,-1.24l-0.16,-0.57l-4.72,-2.37l4.79,2.38l0.52,-0.15l1.0,-1.9l-0.08,-0.48l0.41,-0.12l1.12,-1.83l-0.13,-0.45l0.49,-0.14l1.13,-1.87l-0.16,-0.57l-1.14,-0.57l1.11,-1.42l-0.16,-0.57l-3.59,-1.8l3.65,1.8l0.52,-0.15l1.37,-2.61l0.88,-0.61l-0.15,-0.75l0.4,-0.11l1.53,-1.93l0.11,-1.07l1.78,-2.75l0.67,-0.43l0.34,-0.73l-0.28,-0.54l1.96,-3.2l0.98,-0.24l2.47,-4.05l-0.01,-1.14l6.11,-10.99l21.14,-35.64l5.64,-8.72l7.18,-12.92l6.49,-8.58l0.52,-0.13l1.6,-2.33l-0.07,-0.28l1.09,-1.21l0.41,-0.93l-0.48,-1.06l-1.98,-0.99l3.41,-6.02l0.68,-0.09l0.81,-1.44l1.77,0.81l1.32,-1.03l5.23,-8.83l1.92,-3.83l0.97,-4.19l0.46,-0.39l-0.34,-0.49l1.7,-5.4l3.76,-7.9l-0.11,-3.06l-0.42,-0.95l0.16,-0.53l-0.76,-1.74l0.3,-3.45l-0.57,-2.77l0.43,-0.58l0.48,0.06l2.16,-1.71l0.82,-0.15l1.66,-0.99l2.66,-3.11l2.59,-5.39l1.89,-2.66l1.31,-2.58l1.14,-1.26l1.83,-3.65l3.93,-5.91l2.65,-4.97l0.32,-2.27l-0.22,-0.78l0.53,-0.93l-0.23,-1.01l0.45,-1.88l4.4,-8.46l1.59,-1.76l1.01,-0.38l1.13,-1.1l0.52,0.47l0.78,0.07l2.05,-0.72l1.99,0.3l1.22,0.77l-0.47,3.22l0.16,1.45l0.9,1.54l1.7,1.15l1.69,-0.15l1.01,-1.32l-0.37,-0.67l-1.24,-0.92l-0.47,-1.54l2.63,1.25l-0.45,0.94l-0.03,1.08l1.27,0.96l0.78,-0.01l0.05,-0.88l0.6,-0.5l2.44,-1.05l1.71,0.05l4.64,1.61l1.65,1.11l0.83,1.26l0.31,1.41l-0.44,0.92l-0.27,2.57l-0.43,-0.12l-0.5,0.38l-0.0,0.38l0.58,0.5l-1.21,2.58l-3.22,5.43l-3.26,0.94l0.02,0.81l1.06,0.29l-0.47,0.93l0.13,0.46l-3.02,2.59l-3.36,5.29l-1.48,-0.76l-1.13,-1.83l-1.02,0.49l-0.46,1.93l0.88,0.67l0.79,1.51l-2.33,2.39l-0.11,2.12l-3.35,5.21l-8.72,14.96l-1.76,4.91l-6.54,14.18l-0.39,4.97l1.18,10.78l1.02,16.79l-0.3,6.57l0.2,1.48l-0.76,8.93l0.38,1.82l0.91,2.03l3.47,4.49l1.81,2.88l2.03,5.28l0.2,2.11l-0.22,5.89l-0.37,1.66l-1.4,2.28l-5.26,3.46l-3.84,3.26l-2.06,3.32l-1.71,4.28l-2.7,3.61l-4.19,2.56l-1.4,1.23l-0.73,1.45l-0.36,2.81l1.08,3.83l0.86,-0.18l0.09,0.56l-0.42,0.99l0.71,2.41l0.59,0.78l0.11,1.29l-1.44,2.73l-9.26,11.16l-2.29,3.54l-7.03,9.29l-7.72,8.33l-2.39,3.71l-1.59,1.5l-5.99,7.9l-4.93,6.95l0.08,0.34l-0.6,0.87l-4.34,5.73l0.16,0.52l-1.02,1.63l-0.6,4.81l-0.69,2.03l0.23,6.32l-2.5,-1.19l-0.56,0.24l-0.18,1.1l0.08,0.49l0.5,0.36l-0.43,0.49l1.65,7.63l2.43,2.63l0.71,1.3l0.07,1.32l-0.42,2.07l0.28,0.35l-3.23,16.19l-1.85,5.89l-2.84,7.23l-2.23,2.36l-5.32,0.68l-0.33,0.8l-10.96,1.27l-0.18,-1.15l-0.69,-0.44l-8.7,1.42l-6.43,1.4l-5.12,3.21l-0.03,1.09l-0.4,0.82l1.05,1.12l-0.78,0.59l-0.74,-0.8l-0.94,-0.29l-0.62,0.39l-0.48,-0.51l-0.53,-0.04l-1.02,0.44l-1.18,1.38l-1.11,0.73l-0.02,0.36l-1.25,0.26l-5.12,4.13l-0.35,-0.13l-2.53,0.74l-0.39,1.34l-2.12,0.67l-0.78,-0.11l-0.41,-0.89l-0.64,-0.1l-0.54,0.64l-1.05,-0.59l-0.4,0.09l-0.77,-0.7l-2.75,-3.52l-0.3,-2.02l0.41,-0.44l-0.18,-0.33l-2.19,-0.25l-0.62,-2.28ZM455.86,346.51l1.0,0.49l0.01,0.03l-1.11,-0.55l0.11,0.03ZM397.03,345.15l0.02,-0.04l-0.02,0.05l-0.01,-0.01ZM397.05,345.07l-0.03,-0.07l0.01,-0.01l0.01,0.03l0.01,0.05ZM396.37,340.75l-0.02,-0.04l0.02,0.04l-0.01,0.0ZM394.92,337.91l-0.44,-0.02l-0.04,-0.05l0.47,-0.01l0.02,0.08ZM480.07,178.92l-0.14,0.05l-0.38,-0.19l0.08,-0.13l0.44,0.27ZM455.75,346.47l-0.01,-0.01l0.01,-0.01l0.0,0.0l0.0,0.02ZM523.79,242.56l2.4,-2.42l1.71,-0.73l2.64,1.01l2.96,0.25l0.62,-0.33l-0.07,-1.93l0.51,0.1l0.41,-0.33l-0.08,-0.41l-2.03,-0.3l-0.51,0.52l-0.24,-0.48l-0.96,-0.12l-0.54,-0.45l-0.1,-1.03l1.54,-2.66l0.73,-2.13l-0.02,-2.45l-0.79,-1.98l0.28,-2.12l0.6,-1.92l0.56,-0.75l-0.1,-0.55l1.6,-2.37l4.32,0.19l1.02,0.62l2.67,4.14l5.94,2.9l1.82,1.46l2.58,4.73l0.03,1.09l-2.11,3.37l-1.86,1.69l0.01,0.43l-0.72,0.81l-0.47,-0.07l-1.19,0.57l-1.28,0.99l-0.11,0.77l-5.5,6.86l-1.69,4.58l-2.24,1.91l-1.91,0.23l-2.63,2.09l-1.56,0.17l-4.18,-2.68l-6.36,-1.17l-1.39,-1.59l-0.09,-0.88l0.53,-2.15l5.23,-7.51ZM532.38,238.16l0.57,0.45l-0.11,0.72l-1.37,0.02l0.92,-1.2ZM513.58,259.83l0.04,-0.78l0.38,-0.32l0.18,0.85l0.49,0.18l-1.08,0.07ZM476.88,318.66l-0.0,-0.02l0.01,0.0l-0.0,0.02ZM476.87,318.5l-0.0,-0.01l0.0,0.01l-0.0,0.0ZM476.89,318.68l1.12,-2.12l1.18,-1.41l1.47,-3.15l0.99,-0.83l8.27,-11.32l0.59,-0.23l1.44,-1.73l1.9,-3.33l1.52,-2.02l1.46,-1.23l5.09,-7.53l1.19,-1.28l0.82,-1.81l4.06,-4.21l2.4,-1.0l-0.01,3.17l-1.3,2.29l-2.81,2.14l-10.63,14.89l-3.84,4.18l-1.23,2.5l-4.28,4.44l-2.79,3.48l-6.62,6.11ZM417.74,411.73l2.57,-3.08l1.02,0.46l-2.04,3.25l-1.56,-0.63ZM417.05,416.52l-2.49,-1.04l0.5,-0.94l2.47,1.01l-0.48,0.97ZM416.13,418.6l-0.46,1.01l-2.76,-1.13l0.52,-0.93l2.7,1.05ZM412.44,425.41l-2.72,-0.92l0.6,-1.09l2.69,1.12l-0.57,0.89ZM411.58,431.78l0.06,0.07l-4.83,-1.61l0.31,-0.74l3.5,1.17l0.96,1.1ZM411.18,428.36l-0.17,0.37l-2.9,-1.22l0.51,-0.92l2.83,1.16l-0.27,0.6ZM408.67,433.29l-0.38,0.84l-3.05,-0.96l0.37,-0.9l3.06,1.02ZM407.14,436.11l-0.67,0.73l-2.89,-0.96l0.37,-0.88l3.19,1.1ZM405.31,438.71l-0.56,0.87l-2.86,-0.93l0.36,-0.85l3.06,0.9ZM377.2,444.56l-1.99,0.54l-2.29,-0.37l-1.36,-1.34l-0.19,-1.53l10.21,-11.62l0.79,-2.1l4.5,-0.3l3.91,0.96l3.09,3.27l0.24,0.56l-0.29,0.34l-0.12,2.16l-1.27,1.97l-2.6,1.64l-1.98,-0.1l-10.65,5.92ZM394.23,429.48l0.2,-0.21l0.15,0.15l-0.22,0.12l-0.13,-0.06ZM343.85,418.43l1.28,-1.18l-0.1,-0.68l2.44,-2.32l0.74,0.19l1.12,-0.97l3.03,2.45l-0.42,0.51l-0.16,0.95l-0.91,-0.0l-0.56,0.36l-2.81,-2.5l-0.53,0.0l-0.82,0.75l-0.0,0.59l2.64,2.47l-2.22,1.88l-2.71,-2.51ZM338.37,433.69l-0.4,-1.44l1.45,-0.12l2.17,0.99l1.08,0.68l0.54,0.87l-0.22,1.32l-1.35,0.2l-2.29,-1.33l-0.99,-1.17Z", "name": "Manhattan"}, "3": {"path": "M677.71,576.86l2.36,-1.56l1.5,-2.05l0.21,-2.15l-0.84,-0.86l-0.03,-0.59l0.76,-0.17l0.4,-0.66l0.84,0.59l-0.38,9.38l-1.51,-0.34l-0.91,-1.24l-2.4,-0.34ZM682.96,568.15l-0.08,-0.05l0.09,-0.14l-0.01,0.2ZM682.99,567.47l-0.05,-0.13l0.06,-0.01l-0.01,0.15ZM680.69,569.15l-0.12,-0.11l0.23,-0.17l-0.07,0.14l-0.04,0.14ZM682.03,563.88l1.09,0.3l-0.05,1.3l-0.44,0.58l-0.52,-0.05l0.2,-1.46l-0.27,-0.67ZM681.81,592.81l-1.61,2.1l-0.24,-2.15l2.04,-2.42l-0.19,2.47ZM659.46,594.41l0.27,-0.39l0.69,0.1l1.1,-0.66l0.96,-1.64l0.95,0.07l0.76,-0.71l1.23,0.45l0.31,-0.54l-1.65,-1.27l0.58,-1.06l0.13,-1.66l-0.33,-0.32l0.04,-0.57l0.16,-0.38l0.64,0.3l0.43,-0.37l-0.65,-1.53l0.33,-1.08l-0.62,-1.16l0.26,-0.24l-0.08,-1.1l0.51,-0.3l0.73,0.37l0.75,0.07l0.44,1.35l1.45,-0.22l1.27,0.88l0.21,1.46l1.21,0.61l0.89,0.19l0.54,-1.14l1.39,-0.69l0.95,0.91l0.4,-0.45l-0.18,-1.28l0.73,-0.36l1.06,0.12l1.59,1.15l-1.02,1.76l-0.99,0.61l0.01,1.35l-1.53,1.58l-0.5,1.85l-0.89,0.27l-0.45,-0.27l-0.09,-0.97l-0.44,-0.34l-1.0,1.07l0.1,0.82l1.17,0.8l-1.08,1.15l-0.81,-0.1l-0.74,0.62l0.07,1.33l1.3,0.7l-1.2,0.53l-0.07,1.49l-1.25,-1.3l-0.95,0.03l-0.34,0.36l-0.6,-0.27l0.21,-0.83l-0.42,-1.2l-0.6,-0.31l-0.31,0.33l-0.51,-0.64l-0.51,0.07l-0.4,0.61l-0.79,0.09l-0.05,1.99l-0.62,-0.02l-0.6,0.55l-0.76,-0.48l-0.8,0.01l0.49,-0.65l0.79,-0.01l0.17,-0.53l1.12,-0.78l-0.43,-0.4l-0.62,-1.84l-0.68,0.26l-0.05,0.58l-0.48,0.44l-0.04,0.74l0.44,0.09l-0.35,0.26l-1.14,0.14l-1.24,-0.47ZM663.69,598.63l0.2,-0.35l0.91,0.12l-0.05,0.55l-0.76,0.22l-0.29,-0.54ZM666.31,596.0l-0.05,0.31l0.71,1.38l-0.7,-0.71l-0.21,-1.13l0.24,0.15ZM666.68,580.71l-0.02,0.0l0.0,-0.01l0.02,0.01ZM671.18,555.46l0.99,0.55l-0.16,0.23l-1.07,-0.32l0.25,-0.46ZM673.41,554.69l-0.06,0.02l-0.05,-0.11l0.15,0.06l-0.03,0.03ZM664.77,559.5l0.25,-0.05l-0.04,0.2l-0.22,-0.15ZM665.21,560.5l1.24,0.28l0.3,0.67l0.74,0.14l-1.24,0.68l-0.95,-0.09l0.06,-0.42l-0.62,-0.82l0.47,-0.43ZM657.29,544.76l0.31,-3.37l1.64,-2.52l1.08,-4.24l1.09,-1.34l1.34,-0.43l1.21,2.25l1.84,1.23l-1.11,1.69l-2.51,0.87l-0.29,1.72l-1.32,1.61l-0.32,1.3l-1.82,1.13l-1.15,0.08ZM660.82,551.06l-3.33,7.42l-13.1,0.39l-0.33,-1.65l0.6,-4.82l1.62,-0.92l0.67,1.37l3.51,1.29l2.96,0.13l2.7,-0.96l3.43,-2.96l1.26,0.73ZM645.99,567.12l0.04,-0.45l1.74,-1.41l1.34,0.36l0.3,1.49l1.52,0.65l-0.51,0.36l-1.37,-0.23l-2.29,0.55l-0.32,-1.0l-0.46,-0.33ZM652.49,567.68l0.06,-0.05l0.05,0.04l-0.02,0.02l-0.09,-0.01ZM654.37,567.49l0.76,-0.56l0.21,-1.94l-1.2,-1.79l0.35,-0.94l0.96,0.22l0.81,-0.23l0.75,0.52l0.6,1.04l1.32,0.22l-0.82,1.23l-0.98,0.24l-1.22,0.89l-0.35,0.85l-1.2,0.25ZM647.14,586.38l0.01,-0.09l0.34,0.25l0.26,0.79l0.51,0.42l3.46,-0.06l0.98,-0.48l1.19,0.29l0.43,-0.62l-0.23,-0.66l0.58,-0.46l-0.27,-0.59l0.24,-0.33l0.63,0.31l0.36,-0.15l0.64,-1.4l0.59,0.23l0.38,1.09l-0.36,0.67l0.31,1.07l-0.69,0.45l0.23,0.89l-0.53,-0.06l-0.66,0.59l-0.99,0.2l-0.57,1.02l-0.53,0.06l-0.55,0.67l-0.55,0.02l-0.35,0.54l-1.34,0.36l-0.82,-0.18l-0.23,-1.16l-0.85,-0.68l0.1,-1.19l-0.95,-0.1l-0.74,-1.7ZM649.76,592.34l0.23,0.18l0.13,0.07l-0.21,-0.01l-0.15,-0.24ZM639.23,602.24l3.1,0.98l6.61,0.36l0.96,0.8l0.98,0.11l1.34,0.76l2.92,3.69l-0.95,0.65l-1.57,2.16l-2.17,1.0l-0.68,0.02l-0.94,0.74l-3.4,0.47l-4.98,-0.77l-0.25,-1.08l-3.52,-3.82l-0.8,-1.3l-0.09,-0.78l0.55,-1.19l1.73,-2.13l1.15,-0.67ZM643.58,548.15l0.72,-1.3l-0.12,-1.37l0.84,-1.26l3.43,-0.09l0.99,-1.44l1.11,-0.44l1.38,-0.09l0.9,0.28l0.03,0.5l-1.15,2.58l0.88,1.52l1.3,0.6l-0.35,0.34l-0.47,0.1l-1.91,-1.03l-2.28,1.39l-1.69,0.51l-2.63,-0.09l-1.0,-0.73ZM354.69,531.85l1.82,-2.91l-0.44,-1.05l-1.15,-0.93l3.97,-4.77l1.7,1.23l1.39,-0.07l0.08,-0.53l0.61,-0.09l1.99,-2.37l2.03,1.46l1.43,0.75l0.54,-0.09l3.49,-4.31l-0.08,-0.57l-5.59,-4.03l5.66,4.0l0.49,-0.02l0.73,-0.76l0.73,0.09l0.37,-0.41l-0.05,-0.43l0.48,-0.06l0.34,-0.41l-0.05,-0.56l-1.36,-1.16l0.14,-0.59l-0.84,-2.06l0.97,-1.52l1.33,-1.08l1.02,0.58l0.52,-0.03l0.35,-0.51l1.6,1.13l0.91,-0.3l0.67,-0.89l-0.08,-0.57l-1.63,-1.19l1.24,-1.17l-0.08,-0.7l-1.02,-0.75l0.92,-0.82l0.19,-0.82l0.84,0.47l1.21,0.1l0.94,0.55l0.33,0.58l0.59,0.15l2.61,-2.6l-0.38,-0.76l1.21,-0.34l0.41,-0.54l-0.07,-0.56l-4.05,-3.09l0.29,-0.33l4.16,2.93l0.54,-0.07l0.68,-0.81l-0.07,-0.58l-0.56,-0.42l0.74,0.47l0.53,-0.09l1.01,-1.26l-0.08,-0.58l-4.49,-3.23l2.46,-1.99l2.24,1.64l0.8,-0.24l2.71,1.97l0.55,-0.06l1.21,-1.55l-0.09,-0.55l-4.25,-3.15l1.37,-0.5l6.47,4.66l0.52,-0.06l1.85,-1.99l-0.05,-0.59l-4.62,-3.46l1.15,-1.05l1.14,-0.16l3.96,2.84l0.53,-0.05l0.53,-0.57l1.99,1.39l0.51,-0.05l0.17,-0.83l-1.61,-1.2l1.66,1.16l0.57,-0.05l0.52,-0.64l-0.09,-0.58l-0.48,-0.32l0.71,-0.54l-0.08,-0.56l-1.61,-1.21l0.12,-0.84l-1.21,-0.9l0.16,-0.19l5.74,3.95l1.01,-0.26l2.11,-2.68l-0.06,-0.59l-4.99,-3.6l1.61,-0.3l0.67,-0.48l-0.0,-0.53l0.69,-0.39l1.38,0.02l1.55,-1.91l0.07,-1.35l0.54,-0.72l-0.34,-0.8l0.57,-2.86l-0.41,-0.82l-0.65,0.0l-0.28,0.41l-2.1,4.86l-0.86,-0.31l-0.49,0.19l-0.43,0.82l-0.97,-0.32l-0.49,0.21l-1.03,2.21l-3.16,-1.26l-1.13,-0.0l1.94,-4.75l-0.24,-0.53l-1.11,-0.38l-0.5,0.22l-1.82,4.23l-0.34,0.22l-0.15,-0.21l-4.48,0.13l-0.36,0.25l-2.64,6.4l-6.67,0.9l0.19,-0.91l5.6,-0.48l0.34,-0.25l2.18,-5.29l0.96,-0.44l0.03,-0.84l-0.9,-0.63l0.03,-0.57l-0.35,-0.42l-0.8,-0.11l0.06,-1.03l-0.77,-1.0l-0.69,-0.26l-0.71,0.15l-1.3,-0.68l-0.93,-0.05l0.5,-0.51l-0.36,-0.86l1.82,-1.93l-0.04,-0.59l-0.63,-0.51l-0.53,0.02l-2.6,2.52l-1.31,-0.97l2.5,-2.57l-0.03,-0.59l-0.62,-0.51l-0.54,0.03l-4.97,5.04l-0.32,-0.19l2.13,-2.24l0.0,-0.55l-1.33,-1.38l0.37,-1.83l-0.88,-0.49l0.68,-0.21l0.24,-1.35l-0.54,-0.56l-1.69,0.05l-0.96,-0.29l0.89,-0.04l0.38,-0.43l-0.09,-1.0l0.77,-0.05l0.38,-0.39l0.23,-1.65l-0.89,-0.83l-1.04,0.04l0.74,-1.17l3.35,-1.99l6.26,-4.88l0.63,0.74l-2.91,2.09l-0.07,0.58l0.56,0.65l-0.13,0.74l1.39,1.15l0.54,-0.03l5.42,-5.49l0.01,-0.55l-1.73,-2.03l4.23,-3.05l1.49,-0.47l1.77,0.58l0.45,-0.26l2.04,-3.78l1.28,-1.43l1.23,-2.56l1.3,0.44l0.55,-0.36l1.07,0.37l0.49,-0.21l0.36,-1.36l-1.91,-2.19l0.29,-0.85l1.26,-3.16l2.5,-4.39l-0.1,-0.6l0.98,-0.51l1.38,-3.53l0.74,-1.47l0.56,-0.39l0.06,-0.96l4.02,-6.07l-0.3,-0.77l0.23,-0.87l3.48,-0.64l0.74,1.15l1.6,0.11l1.35,-1.74l2.84,0.76l0.46,-0.39l0.01,-0.71l1.85,-0.1l0.61,0.35l0.56,-0.76l4.13,-0.49l0.36,0.32l1.76,-0.16l2.2,0.34l0.46,-0.39l0.01,-0.54l2.01,0.17l0.22,0.41l0.86,0.13l-0.08,0.75l0.96,1.38l1.11,0.33l-0.36,1.44l0.22,0.46l0.76,0.2l0.04,0.45l1.5,1.23l0.13,0.51l1.97,0.51l-1.83,3.18l0.34,0.91l1.06,-0.17l1.65,-3.0l2.32,2.13l0.72,-0.14l0.14,-0.57l-1.74,-2.22l3.14,3.19l0.38,0.21l0.72,-0.28l0.02,-0.83l-2.76,-2.9l-1.02,-1.22l0.17,-0.13l4.63,4.53l0.56,0.0l0.55,-0.53l0.01,-0.57l-3.55,-3.56l3.42,2.53l0.51,-0.03l0.5,-0.48l0.02,-0.66l-3.68,-2.84l0.45,-0.38l-0.2,-0.95l-3.98,-2.95l1.49,-0.99l0.02,-0.63l1.64,1.4l0.45,0.05l0.41,-0.43l0.04,-2.28l-2.56,-3.39l3.06,3.72l-0.35,2.73l0.51,0.47l0.15,0.81l4.15,3.04l0.52,-0.04l0.29,-0.43l-0.1,-1.33l-2.77,-2.06l-0.01,-3.68l-0.91,-1.84l-0.14,-2.35l0.53,-1.67l-0.15,-1.08l0.69,-0.81l0.71,-2.83l0.57,-0.38l-0.48,-1.03l2.43,-6.04l0.11,-1.03l1.71,-2.69l1.52,-1.38l-0.44,-1.13l0.17,-0.56l1.38,0.18l1.46,-2.81l1.04,-1.08l1.76,-4.06l0.29,-1.69l0.53,-0.22l0.93,0.23l3.61,1.39l0.87,-0.29l0.17,-1.32l-1.19,-1.09l-2.41,0.14l-0.19,-0.87l-0.45,-0.31l-1.73,0.17l1.04,-5.18l-0.71,-4.3l-0.82,-1.52l-0.66,-3.72l0.64,-1.75l3.34,-4.41l4.53,-3.39l3.55,-0.45l2.72,0.36l3.94,1.19l6.18,2.64l-1.15,2.7l0.22,1.85l0.44,0.35l0.76,-0.08l0.35,-0.47l-0.4,-1.8l0.19,-0.41l0.63,-0.62l0.71,-0.11l0.41,-0.64l-0.16,0.92l0.36,1.11l0.79,-0.2l0.62,-1.24l1.75,0.82l1.29,0.68l1.35,1.36l0.67,1.33l0.02,0.84l0.67,0.67l1.36,3.9l2.82,2.8l2.0,1.27l3.28,1.1l4.77,0.78l4.25,1.29l2.18,2.92l0.13,1.73l3.53,9.34l0.49,0.24l0.92,-0.28l0.34,0.8l-0.09,0.74l-0.36,1.18l-5.35,1.51l-1.11,-0.16l-1.49,1.53l0.62,1.97l-0.13,0.36l-3.61,0.95l-0.85,0.54l0.03,0.97l0.76,0.18l0.63,1.46l-2.17,1.15l0.82,2.73l-1.79,0.56l-0.26,0.51l0.16,0.49l0.5,0.26l1.88,-0.58l1.44,3.84l0.7,0.87l0.71,0.21l0.44,-0.92l-1.96,-5.25l0.93,-0.39l0.18,-0.54l-0.54,-0.41l-0.96,0.27l-0.21,-0.53l1.91,-0.59l0.35,-0.41l-0.95,-2.88l0.16,-0.27l3.75,-1.16l0.26,-0.52l-0.72,-1.92l0.84,-0.6l5.66,-1.59l1.34,1.1l0.67,1.44l-1.8,0.87l-0.98,1.51l0.86,2.06l3.46,2.68l1.07,3.35l1.07,0.95l-1.56,1.84l0.08,0.59l15.97,11.2l-1.49,1.73l0.07,0.59l3.24,2.28l-1.54,1.8l0.09,0.6l11.85,7.89l-2.21,2.69l0.09,0.58l7.02,4.97l-0.7,1.32l2.08,4.61l-0.85,0.42l-0.15,0.59l7.61,10.66l0.7,-0.13l1.06,-2.12l2.25,-2.99l2.37,3.16l0.58,0.06l3.46,-2.75l0.63,1.08l0.61,0.1l2.45,-1.99l5.72,-2.65l1.36,-2.38l6.84,-6.24l8.8,-5.79l7.83,-1.75l0.61,0.5l-0.31,1.36l3.34,16.73l0.93,6.45l0.49,0.32l2.73,-0.75l1.23,5.9l0.44,0.31l1.15,-0.13l3.1,14.82l0.45,0.31l4.1,-0.69l2.98,14.18l-4.04,0.73l-0.32,0.47l1.24,6.05l-4.18,0.84l-4.55,2.63l-0.15,0.56l0.54,0.9l-0.76,1.37l0.42,0.72l-0.27,0.69l0.71,1.11l1.85,1.09l1.15,0.16l1.9,2.01l1.28,2.76l3.06,3.75l-0.79,1.1l-0.48,3.16l-0.94,2.62l0.23,1.67l1.42,2.7l0.35,1.75l-2.55,0.76l-4.98,0.63l-1.51,0.67l-4.0,3.51l-2.23,1.51l-0.6,0.11l-2.03,-1.87l-1.95,-4.39l-0.22,-1.63l-0.97,-1.51l-1.14,-1.02l-2.09,-0.46l-10.7,-17.21l-0.7,-0.21l-0.81,0.64l0.01,0.41l4.75,7.26l5.7,9.73l-0.35,1.43l0.31,1.63l0.51,0.23l0.38,1.13l1.26,1.58l1.88,3.64l1.1,1.19l0.01,1.1l0.35,0.72l0.81,0.73l1.85,0.7l-1.0,0.75l-0.43,-0.7l-0.51,-0.15l-2.5,1.07l-2.22,1.64l-1.09,0.39l-2.04,-0.79l-4.08,-3.65l-2.13,-0.62l-0.27,-0.78l-2.83,-3.14l0.73,-0.88l-0.08,-0.87l-2.44,-0.97l-1.01,-1.72l-0.07,-0.82l-2.08,-1.51l-1.36,0.32l-1.12,0.73l-1.03,-0.15l-2.45,-2.81l-0.69,-1.33l-0.11,-1.26l0.31,-0.63l-0.4,-1.2l-1.57,-0.41l-0.94,-1.29l-1.61,-1.26l-0.53,-0.01l-0.16,0.3l-0.84,-0.33l-0.62,0.57l0.15,1.13l2.63,3.12l-0.04,0.49l1.14,1.7l0.63,0.05l0.09,-0.54l-0.89,-1.3l0.35,-0.15l0.23,0.76l0.7,0.2l-0.36,0.76l1.03,0.73l0.23,0.52l-0.7,0.08l-0.08,0.71l0.47,0.35l0.85,-0.29l0.53,1.18l0.47,0.2l0.92,1.32l2.25,1.12l1.52,1.26l4.67,5.05l0.47,1.25l1.63,1.8l0.54,0.21l0.9,-0.36l0.17,1.54l2.12,2.68l-1.59,2.43l-2.8,1.96l-0.71,1.09l-1.33,1.08l-2.91,1.5l-1.05,1.35l-0.28,1.61l0.32,0.54l-0.6,0.42l-0.06,0.6l2.0,2.15l-1.09,0.88l-2.08,-2.17l-0.53,-0.04l-0.69,0.53l-0.59,-0.36l-0.59,0.08l-1.94,0.66l-4.91,4.13l-0.7,2.48l-1.99,2.04l-1.13,0.81l-1.08,0.01l-3.3,1.62l-2.76,-1.8l-10.69,-5.43l-19.72,-10.99l-1.26,0.21l-1.19,1.07l-0.03,0.59l0.47,0.8l3.18,1.95l18.48,9.92l0.99,0.19l0.12,0.48l0.62,0.36l-0.35,0.6l0.27,0.8l0.89,0.29l0.57,0.9l1.56,0.68l0.09,1.01l0.5,0.85l4.39,-0.37l2.38,0.74l0.19,1.11l0.88,0.94l0.16,0.84l-1.63,4.62l0.3,2.41l0.99,1.99l-0.21,0.74l0.43,0.66l2.39,1.15l3.56,0.45l1.29,0.77l0.44,0.61l-0.51,0.86l-1.06,0.08l-1.01,0.66l-2.13,0.49l-0.24,0.41l0.18,0.7l1.24,0.55l2.58,-1.0l1.69,-1.21l1.34,0.89l-0.11,0.88l-0.76,1.12l-3.2,2.24l-0.72,3.58l-0.9,0.94l-2.43,0.67l-1.67,1.06l-3.96,1.03l-2.04,-0.46l-1.5,-2.34l0.5,-0.96l0.14,-3.22l0.51,-1.89l-2.03,-2.14l0.11,-1.05l-0.72,-0.54l-0.65,0.17l-0.98,-0.83l-6.65,-7.07l0.15,-0.67l-0.48,-0.16l-0.11,-0.45l-0.73,-0.2l-0.36,-1.26l-0.82,0.15l-1.34,-0.33l-0.51,1.08l-0.87,0.58l-0.01,0.93l1.57,1.78l1.32,0.58l0.93,0.83l2.92,3.3l1.74,1.09l0.17,0.88l3.2,2.95l0.85,8.44l-5.11,1.49l-0.15,-0.91l-0.96,-1.73l-3.62,0.02l-0.51,-0.57l-0.56,-0.1l-1.28,0.41l-0.82,0.59l-0.18,0.63l2.41,3.44l-3.76,0.95l-4.03,-0.77l-4.96,-5.32l0.03,-1.37l0.62,-1.93l-0.63,-0.6l0.49,-1.95l0.48,-0.97l2.57,-2.1l-0.62,-4.46l1.56,-1.18l0.08,-0.56l-0.58,-0.63l-0.67,-0.07l-3.79,2.91l-0.13,0.5l1.31,2.81l-3.58,2.88l-0.16,0.56l0.57,0.73l-0.39,1.45l-2.15,1.53l-0.33,0.81l0.56,0.99l3.45,3.69l-0.02,0.3l2.47,2.64l0.46,0.15l1.44,1.91l0.93,0.27l1.16,1.04l4.87,0.57l0.74,-0.17l1.54,0.83l2.28,-1.34l3.44,-0.66l1.39,0.22l0.99,-0.34l0.8,0.46l3.33,-1.55l2.47,-0.12l1.72,-0.61l1.24,0.62l1.04,-0.14l3.31,0.55l1.11,-0.36l1.4,0.22l0.9,-0.56l1.68,0.18l1.73,-0.41l0.73,-0.79l2.92,-1.07l0.36,-0.55l1.97,-0.88l4.31,0.32l1.16,-0.73l1.73,2.1l-0.91,2.59l1.16,2.32l0.71,2.86l1.05,2.33l0.11,2.48l1.18,2.68l0.02,3.19l1.58,6.27l0.78,1.24l-0.02,0.86l0.43,0.72l-0.26,1.07l0.46,2.19l1.09,2.71l2.3,3.59l-4.65,8.82l-3.15,0.99l-0.44,0.82l-1.58,0.12l-2.17,0.96l-4.81,0.99l-2.4,-0.09l-1.31,0.63l-2.55,-0.14l-1.49,0.78l-4.51,1.33l-0.61,0.02l-0.99,-2.96l-1.4,-2.32l-0.06,-1.6l0.97,-3.0l-0.08,-1.56l-0.87,-2.23l-1.75,-2.24l0.33,-1.5l-0.59,-1.66l-1.33,-1.79l-1.1,-0.71l-1.93,-0.17l-2.37,1.4l-1.07,-0.03l-2.33,0.79l-2.05,-0.86l-0.33,-0.87l-1.28,-0.32l-0.75,0.38l-0.53,0.83l0.6,0.8l-1.94,0.36l-4.44,1.61l-0.69,-0.19l-0.6,-0.86l0.63,-1.01l-0.54,-2.36l0.68,-5.15l-0.85,-3.82l0.02,-2.42l-0.69,-1.86l-1.22,-1.66l-0.83,-1.92l-0.88,-0.5l-1.54,-2.75l-1.34,-1.15l-2.67,-1.3l-0.44,-0.74l-1.26,-0.78l-2.23,-0.57l-2.66,-1.65l-1.49,0.39l-1.05,0.66l-1.28,1.82l-0.56,1.41l-0.95,-0.23l-3.68,-2.67l-1.87,-1.9l-0.71,-0.11l-0.29,-0.45l-0.85,-0.34l-0.07,-0.47l0.99,-1.05l-0.54,-0.94l-0.65,-0.1l-0.57,0.38l-0.5,-0.46l-0.63,0.57l-0.71,-0.39l-0.6,0.28l-1.38,1.56l-0.16,1.24l0.53,0.2l0.55,1.0l1.89,1.75l1.08,-0.03l0.68,1.35l2.16,0.36l0.89,0.57l7.14,6.78l1.83,2.73l2.38,0.65l2.02,1.75l0.62,0.86l1.16,0.81l2.28,3.51l2.5,1.44l0.64,0.85l-0.1,0.92l0.54,0.41l-4.66,2.7l-1.54,2.01l-1.4,0.74l-0.78,-0.29l-2.89,0.83l-1.28,-0.56l-1.78,0.04l-2.16,0.69l-0.59,-0.27l-2.5,-2.69l-1.3,-2.37l5.86,-4.53l0.04,-0.58l-0.4,-0.43l-1.03,0.17l-5.66,4.46l-1.09,-0.7l-1.8,-0.4l-0.59,-1.21l0.39,-3.74l0.92,-1.52l-0.41,-2.06l-1.13,-1.04l-3.62,-0.93l-0.53,0.33l-0.09,0.54l0.27,1.02l2.2,4.02l-0.43,1.47l0.6,3.54l2.15,3.32l-2.08,0.33l-0.34,0.36l0.2,1.13l0.53,0.32l4.05,-0.52l0.54,0.47l-0.3,1.14l0.19,0.47l0.62,0.23l0.71,-0.3l3.65,2.67l3.06,-0.33l3.96,0.46l1.71,-0.19l1.78,-0.7l0.44,-0.49l4.86,-1.79l3.26,0.26l1.21,0.88l-0.14,3.98l-2.81,0.68l-0.57,-0.69l-1.71,0.48l-1.99,-0.67l-0.42,0.22l-0.04,0.44l1.01,1.05l0.78,0.01l0.53,0.58l1.07,0.2l1.88,-0.08l0.45,-0.62l1.06,-0.41l0.57,0.46l0.48,-0.5l1.27,0.07l0.62,0.9l-0.24,0.52l-4.51,0.12l-0.9,0.33l-4.94,-1.13l-6.62,-2.14l-3.67,-0.6l-4.41,-0.04l-4.1,0.35l-1.67,0.42l-0.7,0.82l-0.66,-0.09l-0.64,-0.61l-1.14,0.37l-2.3,-0.11l-0.75,-0.36l-0.9,0.17l-0.29,-0.32l-1.38,-0.14l-0.51,0.23l-1.12,-0.29l-2.33,0.02l-0.22,0.33l-0.66,-0.01l-0.33,-0.32l-3.03,0.08l-0.69,-0.61l-3.2,0.33l-4.37,-0.26l-3.41,0.15l-8.32,0.96l-0.35,0.46l0.31,1.89l0.44,0.33l5.77,-0.6l11.3,2.54l16.24,-0.39l2.27,9.14l-0.49,0.7l-5.48,0.31l-2.36,-0.7l-0.7,0.58l-8.7,0.33l-1.57,-0.63l-1.76,-0.17l-0.87,0.51l-1.98,0.09l-0.61,0.83l-9.16,1.25l-0.79,0.34l-4.16,-0.28l-5.36,0.54l-1.08,0.41l-2.94,0.02l-10.16,1.03l-3.82,0.98l-4.83,0.48l-4.91,1.21l-1.07,-0.15l-2.34,0.53l-1.69,-0.3l-1.77,0.58l-1.33,-0.29l-1.98,0.51l-1.58,-0.13l-16.52,2.27l-7.07,0.11l-1.69,-0.38l-2.11,0.0l-3.58,0.5l-0.53,-2.74l-0.86,-0.87l-1.3,-0.29l-0.9,-0.9l-3.94,-1.26l-5.52,-0.84l-1.62,-0.59l-1.26,-1.25l-0.46,-1.36l-0.23,-2.01l-0.9,-2.14l0.43,-1.18l0.94,-1.69l1.24,-1.27l5.35,-2.81l2.96,-0.56l6.18,1.18l1.57,-0.11l2.03,0.33l2.81,-0.43l0.09,1.18l0.51,0.49l9.76,2.61l2.4,-0.32l2.06,1.07l1.09,0.09l1.81,-0.54l1.32,-1.52l-0.25,-0.76l1.65,-2.16l-0.25,-1.09l-0.62,-0.24l-1.36,1.0l-1.7,2.83l-2.91,-1.85l-2.58,-0.79l-0.22,-0.71l2.4,-4.78l0.06,-1.22l-0.46,-0.09l-8.33,4.59l-1.9,-0.08l-5.48,-1.55l-0.17,-1.52l3.76,-2.53l-0.38,-0.59l-1.8,-0.14l-0.27,-0.7l2.15,-0.44l6.43,-3.55l0.29,-1.17l-0.75,-0.46l-0.54,0.31l-0.77,-1.08l-0.53,-0.11l-3.61,2.14l-1.24,-1.77l-0.39,-0.09l0.74,-0.44l-0.08,-0.92l2.34,-2.39l-0.42,-1.06l-0.88,-0.45l-2.6,1.45l-1.13,-0.16l1.86,-1.51l0.01,-0.56l-0.67,-0.73l1.5,-0.87l0.01,-0.72l-0.62,-0.12l-3.7,1.88l-1.16,-2.52l-2.93,-4.07l-3.1,-2.83l-8.77,-6.14l-2.41,-1.23l-3.96,-1.42l-2.86,-0.62l-3.99,-0.35l-1.08,-0.92l-1.9,-0.88l-14.83,-2.36l-4.18,-2.94l-2.49,-2.62l-1.0,-1.69l-1.88,-1.36l-1.38,-3.56l-3.72,-4.36l-1.85,-3.55l-1.98,-9.94l-0.45,-6.92l1.34,-11.42l6.79,-17.04ZM373.1,508.87l-0.29,0.14l-0.39,-0.39l0.34,-0.19l0.35,0.44ZM404.66,486.16l-0.01,0.0l-0.11,-0.07l0.0,-0.0l0.12,0.07ZM406.71,485.81l-0.47,0.33l-0.12,-0.08l0.11,-0.58l0.47,0.34ZM405.2,485.4l-0.13,-0.09l0.13,-0.56l0.46,0.32l-0.46,0.33ZM403.79,483.59l-0.09,-0.06l-0.0,-0.09l0.15,0.11l-0.06,0.04ZM402.7,482.8l-0.08,-0.06l0.01,-0.07l0.13,0.09l-0.06,0.04ZM386.76,481.76l-1.31,-1.62l-1.1,-8.64l-0.49,-1.63l1.45,0.71l1.45,11.17ZM458.5,402.21l-0.95,-0.74l-1.83,-1.61l0.07,-0.08l2.71,2.42ZM553.05,610.89l-0.0,-0.0l0.0,0.0l0.0,0.0ZM553.0,610.85l0.0,-0.0l-0.0,0.0l-0.0,-0.0ZM629.26,640.78l-1.79,0.2l-1.09,0.47l-1.44,-1.58l-0.74,-1.21l-0.18,-2.97l-0.87,-3.67l2.08,-4.74l2.02,-1.14l3.38,-3.36l3.07,0.85l1.55,0.9l3.12,5.34l-0.66,3.38l-2.51,4.17l-1.89,0.47l-4.07,2.88ZM635.48,561.18l0.1,-0.1l0.59,0.05l-0.27,0.43l-0.42,-0.38ZM626.64,573.04l-1.47,0.25l-7.0,2.67l-6.4,0.08l-0.94,-0.24l-1.28,-1.06l-0.37,-1.67l0.07,-2.55l1.32,-3.03l1.65,-1.95l1.93,-1.16l2.92,-2.6l13.35,-8.84l1.67,0.9l0.66,1.95l-0.35,1.42l-0.84,0.81l-0.54,1.61l-0.7,0.52l-0.43,0.98l0.28,1.65l1.83,2.1l0.44,1.35l-0.11,1.0l-0.66,1.49l0.12,0.71l-0.58,1.52l-1.66,1.24l-2.89,0.83ZM629.04,599.44l-0.83,1.01l-0.29,-0.04l0.35,-0.91l0.77,-0.06ZM628.77,591.27l-1.67,1.19l0.05,-1.24l1.02,-0.4l0.6,0.45ZM624.81,612.32l-0.01,0.14l-0.03,-0.02l0.04,-0.12ZM624.72,594.17l-1.44,2.2l-0.03,-1.88l-2.23,-3.59l-0.75,-3.85l1.24,0.34l1.07,0.92l0.44,1.9l1.69,3.96ZM623.83,604.78l0.08,3.57l-0.56,0.07l0.49,-3.64ZM540.4,609.96l0.66,-0.94l1.43,-0.89l2.14,-0.21l0.99,0.27l0.36,0.54l3.35,1.82l0.42,1.24l2.59,2.83l0.97,1.9l0.68,0.6l0.43,1.06l-0.23,3.75l-2.06,0.75l-1.58,-0.95l-0.82,-1.96l-2.36,-3.11l-4.76,-3.31l-1.29,-1.38l-0.95,-2.02Z", "name": "Brooklyn"}, "2": {"path": "M783.03,122.56l0.01,-0.72l0.8,-0.05l0.37,-0.39l0.02,-1.02l-0.91,-0.5l-0.13,-0.98l0.38,-1.55l-0.09,-8.29l-0.26,-1.47l0.12,-0.27l1.81,-0.18l2.07,1.38l1.66,1.72l0.12,1.47l4.44,4.55l-3.64,1.15l-1.08,2.09l-0.91,0.19l-0.55,1.45l1.21,3.53l-1.57,6.21l0.22,0.88l2.36,3.18l-1.11,0.23l-3.33,-3.37l-0.5,-0.85l1.01,-4.49l-1.88,-3.59l-0.63,-0.3ZM791.35,93.37l-0.19,0.21l-0.48,-0.06l0.1,-0.44l0.56,0.29ZM785.05,85.01l0.8,1.13l-3.24,-1.05l0.61,-0.76l1.83,0.69ZM781.47,104.56l-0.05,0.08l-0.02,-0.04l0.06,-0.04ZM779.68,78.98l-0.0,-0.01l0.01,0.01l-0.01,0.01ZM752.55,121.63l-0.16,-0.53l1.26,-0.37l0.26,-0.53l-1.22,-0.8l0.12,-1.06l-1.15,-0.07l0.77,-0.54l0.03,-0.58l-1.59,-2.26l0.92,-1.71l-0.02,-0.69l0.61,-0.01l1.42,-1.31l0.61,-1.01l0.79,-0.06l0.27,0.08l0.35,1.75l-0.23,1.69l0.85,1.74l-0.29,1.02l0.35,0.38l-0.23,1.01l0.3,0.71l0.7,0.21l-0.11,1.01l3.47,3.35l1.09,0.39l1.56,-0.28l0.29,0.19l0.17,0.18l-0.7,0.14l-0.47,0.52l0.29,0.72l0.56,0.24l-0.22,0.94l1.07,1.7l1.41,0.51l0.7,-0.38l0.93,0.68l-1.57,0.92l0.28,0.89l1.57,-0.02l0.07,0.62l-1.03,0.84l-0.68,1.34l-0.07,1.04l-0.88,0.47l-0.2,0.86l0.32,0.68l-0.55,0.67l0.33,0.49l-0.54,0.89l0.67,2.07l0.65,0.66l0.58,0.03l0.17,1.18l0.61,0.32l0.58,1.58l0.19,1.87l-0.32,2.09l-0.71,1.24l0.12,0.45l-0.38,0.3l-0.79,-0.13l-0.34,0.38l0.27,1.54l-0.36,-0.69l-0.51,-0.18l-1.02,0.3l-0.88,-1.24l-0.54,-0.15l-0.54,-0.69l0.03,-1.62l-0.76,-1.38l-1.24,-0.66l-1.05,0.07l-0.22,-0.94l0.31,-0.55l-0.45,-1.24l-0.72,-0.72l-0.29,-1.21l-1.36,-2.03l-1.13,0.01l0.77,-0.53l-0.03,-0.86l-2.22,-3.41l-0.43,-1.13l-0.73,-0.71l-0.04,-0.94l0.32,-0.65l-0.14,-1.12l0.4,-0.87l2.05,-1.35l-0.4,-3.18l0.62,-0.13l0.31,-0.48l-0.35,-0.77l-0.78,-0.21l0.01,-1.03l-1.73,0.07ZM768.95,115.28l-0.28,0.9l-0.38,-0.02l0.0,-0.91l0.22,-0.27l0.44,0.3ZM765.4,115.0l-0.19,0.91l-0.48,-0.07l-0.25,-0.5l0.46,-0.78l0.45,0.44ZM523.18,202.59l0.49,-1.2l0.31,-16.74l-0.63,-11.29l-1.36,-14.04l0.97,-5.49l3.96,-8.07l0.14,-1.19l2.04,-4.43l0.92,-3.53l2.89,-4.98l3.53,-4.86l1.24,-2.93l2.14,-3.6l1.11,-1.66l0.83,-0.47l-0.09,-0.64l0.78,-1.13l0.37,0.22l0.62,-0.23l-0.31,-0.88l1.51,-2.2l2.86,-3.51l0.96,-0.51l5.91,-8.25l0.75,0.46l0.54,-0.11l0.79,-1.16l-0.51,-0.94l3.54,-4.76l1.52,-4.43l0.9,-4.16l0.42,-0.64l-0.3,-1.47l0.55,-0.8l1.27,-0.63l1.77,-5.6l-0.27,-1.87l-0.45,-0.73l-4.03,-3.66l-1.46,-0.56l-2.37,0.22l-0.87,1.63l-4.43,2.75l-1.49,1.75l-2.18,-0.16l-0.74,0.21l-3.12,-1.31l-3.84,-4.23l-1.3,-0.71l-2.5,-0.16l1.25,-1.95l5.54,-14.13l8.44,-26.83l-0.32,-0.72l0.6,-2.16l0.58,-1.69l0.76,-0.35l2.14,-6.54l-0.19,-0.59l0.55,-0.47l1.88,-8.05l0.07,-1.35l-0.31,-0.97l1.91,-3.48l12.42,4.71l3.03,0.69l5.43,1.83l23.03,8.32l38.16,13.12l0.47,-0.15l0.63,-0.94l-0.33,-0.77l0.44,-0.11l0.26,-0.51l-0.19,-0.55l-0.78,-0.34l-0.11,-0.55l1.36,0.67l0.66,-0.2l0.31,-0.93l0.75,-0.3l0.83,-1.53l0.22,-1.87l-0.6,-0.73l0.13,-0.26l1.19,0.26l0.89,-0.79l-0.34,-0.73l-0.63,-0.11l-0.42,-0.49l1.96,-0.37l0.69,-0.94l1.57,-0.48l0.63,-1.13l0.1,0.35l4.15,1.77l0.47,-0.14l1.02,-1.42l4.7,2.43l3.41,1.15l-0.08,2.31l0.38,0.37l5.4,0.04l1.07,4.85l2.36,4.0l0.01,0.97l-0.75,1.89l0.03,1.07l2.05,6.39l0.48,0.27l0.44,-0.11l4.41,1.41l20.37,7.26l0.51,-0.25l0.31,-0.92l-0.45,-0.52l-0.83,0.14l-0.1,-1.34l0.4,-0.12l7.3,2.58l24.88,7.34l15.66,4.99l-2.76,4.73l-0.74,-0.21l-0.47,0.55l0.77,1.66l-1.9,5.04l-1.47,1.73l-0.46,1.86l-1.46,1.14l-0.8,-0.3l-1.46,0.94l-0.28,1.53l-1.52,3.43l-0.79,0.29l-1.46,1.44l-0.72,-1.53l0.63,-0.83l-0.14,-0.6l-1.12,-0.56l-0.52,0.16l-1.5,2.59l0.2,0.57l0.73,0.29l0.21,1.72l0.48,0.34l0.65,-0.13l-0.16,0.91l-1.51,0.23l-1.28,-0.53l-1.05,0.56l-0.01,-1.28l-4.33,-2.88l-0.62,0.35l0.05,1.19l1.24,0.63l-0.27,0.72l0.3,0.54l1.12,0.2l0.49,1.71l1.29,0.77l1.56,0.27l0.33,2.75l0.64,0.27l1.15,-0.89l0.86,0.15l-0.08,2.01l0.28,0.4l1.3,0.4l0.47,-0.19l7.14,-12.68l4.96,-1.94l1.36,-2.72l0.63,-4.06l0.56,-0.52l-0.13,-0.67l-1.69,-0.77l0.76,-1.56l1.48,-1.21l1.05,-0.45l0.78,-0.75l1.72,-0.54l0.55,-1.36l1.06,-0.67l0.22,1.69l-1.26,0.77l-0.11,0.58l0.88,1.15l2.3,0.39l3.83,-0.37l2.18,1.11l0.26,1.06l-0.81,2.46l-3.2,3.99l-0.68,1.56l-0.17,1.59l0.94,0.84l0.88,0.24l0.66,-0.34l0.7,1.39l0.67,0.02l1.39,-1.98l1.44,1.2l-0.21,2.39l-1.03,0.4l-0.63,0.78l-0.95,0.47l-0.51,1.12l-0.76,-0.78l-1.14,-0.44l-3.31,0.01l-3.14,1.55l-1.71,1.71l-1.55,4.63l-0.6,3.28l1.87,3.81l-0.65,2.33l-2.5,0.54l-0.3,0.51l0.19,0.79l-0.72,0.49l-0.94,1.56l-0.54,1.78l0.94,2.6l-1.75,-0.08l-2.11,0.49l-1.12,1.17l-0.91,1.61l-0.79,-0.31l-0.49,0.4l-0.49,2.07l0.7,1.3l1.04,0.68l0.21,1.75l-0.58,2.4l-2.19,1.8l-1.04,2.8l-1.38,-1.06l-0.57,-2.59l-3.78,-6.13l-0.56,-2.67l1.34,-0.75l0.29,-0.82l-0.99,-4.34l-0.11,-2.17l-0.7,-1.92l0.05,-2.45l-0.46,-0.89l-0.94,-0.65l-1.16,-0.14l-0.87,1.49l0.61,2.39l-0.65,0.19l-0.79,-0.89l-1.19,-0.21l-0.97,1.1l-1.87,-1.94l-2.0,-2.81l-3.92,-1.81l-0.63,-1.08l-0.83,-0.57l-0.62,0.6l-0.24,1.15l-1.12,0.34l-2.2,3.71l0.2,0.57l0.87,0.34l1.44,-0.2l0.21,0.4l1.54,0.63l1.65,3.01l0.65,8.57l-6.57,0.35l-0.76,1.65l-0.57,2.98l0.5,1.73l1.43,0.44l-0.41,1.04l1.58,2.13l-1.3,2.79l-0.0,2.24l1.06,0.6l1.0,-0.43l0.36,0.54l-0.64,0.51l-0.01,0.68l0.59,0.13l1.04,-0.77l0.51,1.07l-0.68,0.45l-0.11,0.67l0.41,0.52l0.65,0.14l0.23,0.78l-1.41,0.69l-0.39,-0.16l-0.64,-1.22l-1.1,-0.79l-0.64,0.14l-0.14,0.64l-1.99,-0.71l-1.22,0.02l-0.39,0.41l0.44,0.85l0.91,-0.28l0.65,0.65l0.73,-0.06l0.21,0.3l0.43,1.21l1.07,1.3l-0.11,1.09l0.45,0.68l0.94,3.5l-0.07,0.63l-2.13,1.29l-0.66,1.71l0.81,3.39l-0.04,3.8l0.85,3.25l1.18,2.88l1.45,1.56l0.08,0.73l1.61,2.53l0.71,0.36l-2.44,2.4l0.31,0.78l-0.57,0.89l0.35,1.22l1.1,0.62l-1.21,0.58l-0.24,0.35l0.16,0.79l0.39,0.47l1.05,0.16l1.18,-1.04l1.48,0.27l1.52,-1.08l1.91,-0.72l0.87,-1.02l2.14,0.05l0.72,0.67l0.43,1.23l0.09,2.36l1.35,3.16l-0.25,1.89l0.48,1.35l1.81,2.23l2.04,1.57l1.45,0.09l0.75,-0.51l2.1,0.78l0.7,0.96l4.31,1.99l0.24,1.0l-0.94,-0.09l-1.61,0.42l-1.76,2.87l-1.3,0.56l-0.86,1.49l-2.36,0.86l-0.38,-0.14l0.54,-0.83l0.04,-0.86l-3.15,-4.17l-1.43,-0.86l-0.91,-1.05l-0.5,-0.18l-0.71,0.25l-0.25,0.48l0.75,1.81l1.58,0.93l0.47,0.67l0.45,3.65l1.27,1.47l1.13,0.47l1.39,2.44l1.04,1.02l1.04,-0.36l0.17,0.46l2.2,0.83l2.57,0.25l10.06,5.24l1.56,-0.13l0.62,-0.84l0.11,1.07l1.08,2.29l-0.29,0.94l-1.05,0.92l-1.83,0.42l-1.71,-0.34l-3.73,-3.69l-0.82,0.3l-0.34,-0.6l-2.38,-0.76l-6.56,-4.45l-1.63,-0.22l-1.56,0.93l-5.05,-3.8l-2.07,-2.65l-2.56,-1.8l-0.8,-0.18l-0.76,0.27l-2.58,-0.45l-2.38,-0.95l-2.83,0.15l-1.01,-0.65l-4.23,0.82l-2.38,0.92l-1.58,-0.01l-4.95,1.61l-3.29,1.58l-3.41,-0.22l-3.04,1.16l-2.19,2.13l-1.18,2.58l-0.07,1.63l0.76,2.06l-0.31,1.21l0.5,1.65l-3.87,-0.4l-4.85,-1.89l-0.92,-1.45l-0.33,-2.25l-3.26,-6.28l-0.24,-1.93l0.22,-1.26l1.0,-1.28l0.17,-1.2l0.03,-2.68l-1.03,-2.53l0.14,-1.11l1.88,-2.29l0.33,-1.45l-0.53,-0.48l0.26,-4.32l-0.33,-1.18l-0.64,-0.54l-0.41,-2.08l-0.63,-0.42l-3.39,-7.73l-0.16,-1.27l0.67,-2.96l4.36,-4.67l0.6,-1.18l-0.61,-5.94l0.06,-3.84l-0.69,-0.53l-0.16,-1.13l-0.43,-0.34l-0.94,0.08l-0.37,0.43l0.53,2.37l0.63,8.04l-0.86,1.75l-3.36,2.98l-0.86,1.36l-0.62,2.23l0.13,1.72l0.79,2.62l4.07,10.36l0.31,1.15l-0.43,2.24l0.18,0.64l-3.21,2.29l-0.21,1.47l-2.65,5.25l-2.35,6.51l-0.89,0.57l-0.61,1.58l-1.11,0.16l-1.61,-3.55l-1.96,-1.54l-1.57,-0.66l-1.2,-1.51l-2.09,0.07l-0.4,-0.35l-0.92,0.06l-0.1,0.47l0.42,0.59l-0.82,0.58l-1.39,-0.47l-1.63,-1.08l-0.59,0.46l0.32,0.78l1.47,0.86l1.73,0.48l1.45,-0.49l2.08,0.35l2.98,2.08l0.2,0.48l-0.55,1.45l0.33,0.62l-1.29,2.71l0.02,1.87l1.0,1.53l1.55,0.96l0.25,2.19l1.15,0.56l0.03,0.79l-0.65,0.58l-1.24,0.15l-0.37,-0.34l-1.1,-0.16l-0.63,0.33l-0.23,0.79l-0.51,0.07l-2.23,-0.23l-5.35,0.24l-0.2,-1.07l-0.86,-0.43l-1.83,-0.14l-0.43,0.27l-1.36,-0.77l0.3,-0.5l-0.56,-1.5l0.42,-2.86l-0.89,-3.8l-0.32,-0.34l-0.56,0.62l-1.67,0.84l-6.61,-1.47l-5.11,-0.58l-3.3,-5.29l-1.78,-2.19l-1.6,-0.87l-7.78,-2.33l-0.5,0.29l-0.34,1.42l0.24,0.47l6.85,2.87l1.23,1.16l1.07,2.02l0.63,0.27l0.02,1.45l3.89,8.49l-0.5,1.38l-5.24,8.31l-2.7,1.23l-1.42,-0.19l-0.31,-0.56l-0.94,-0.29l-0.96,-0.11l-0.5,0.67l-2.79,-0.35l0.11,-1.84l-0.38,-0.58l-1.89,-0.48l-7.35,1.22l-0.66,0.42l-1.23,-0.31l-3.54,-3.4l0.05,-0.43l-1.18,-1.59l-1.34,0.23l-0.79,-0.59l0.13,-0.82l-0.32,-0.65l-0.98,-0.01l-0.46,0.32l-1.22,-0.34l-1.28,0.13l-0.16,-0.76l-0.41,-0.32l-4.43,0.45l-0.21,-1.04l-0.75,-0.29l-0.48,0.53l-1.06,0.18l-0.3,0.53l-3.11,0.22l-0.25,0.47l0.14,0.66l-0.46,0.22l-3.71,0.98l-2.22,-0.02l-0.25,0.89l-3.51,2.56l-3.69,4.38l0.03,0.33l-1.11,1.38l-1.55,1.1l-0.15,0.81l0.25,0.19l-4.02,3.58l-1.33,0.67l-2.92,-0.3l-10.4,-5.34l-1.74,-3.19l-2.65,-2.14l-2.31,-0.4l-3.9,0.25l-1.09,-0.38l0.36,-1.54l-0.62,-0.98l-1.9,-0.46l-2.78,-4.56l-2.77,-3.28l-0.55,-1.83l0.08,-1.23l-0.44,-0.46ZM620.55,221.22l-0.06,0.36l-0.24,-0.03l0.05,-0.32l0.25,-0.01ZM710.71,137.47l-0.0,0.0l-0.0,0.0l0.0,-0.0ZM651.33,14.81l-0.46,-0.65l-1.22,-0.07l0.28,-1.15l1.63,-1.35l0.8,-1.17l0.1,0.51l0.58,0.4l1.13,-0.5l-2.83,3.98ZM763.94,81.7l0.28,-0.81l0.24,-0.06l0.06,0.47l-0.57,0.39ZM713.13,136.97l0.02,0.03l0.01,0.04l-0.03,-0.07ZM717.85,168.39l0.08,-0.01l0.06,-0.0l-0.07,0.01l-0.06,0.0ZM763.47,101.62l0.42,-0.31l0.12,0.24l-0.13,0.17l-0.4,-0.1ZM759.02,108.59l0.61,-1.46l3.14,-0.71l0.16,0.75l-0.75,1.3l-1.99,-0.63l-1.17,0.75ZM758.83,67.75l-0.02,-0.13l0.32,-0.61l0.64,-0.01l0.34,0.21l-0.89,-0.05l-0.38,0.58ZM758.87,67.93l0.17,0.36l-0.12,0.1l0.01,-0.19l-0.05,-0.28ZM756.47,155.37l-0.82,0.2l-0.15,-0.81l0.88,0.05l0.09,0.56ZM733.85,142.42l-0.32,0.5l-4.04,-0.1l-2.29,-0.54l0.15,-1.28l4.09,-0.18l0.44,0.59l1.96,1.0ZM591.52,226.97l0.47,-0.25l1.69,0.25l2.0,-1.03l0.98,0.07l2.83,2.25l2.74,2.75l2.72,1.06l5.39,0.99l2.89,1.61l1.72,1.19l1.61,1.73l4.18,2.29l1.42,1.55l0.81,4.04l-1.29,2.04l-2.7,1.86l-4.56,-0.2l-3.28,0.94l-11.28,-2.49l-3.8,-0.4l-2.01,-0.88l-2.01,-4.79l-1.02,-0.75l-1.94,-0.16l-1.0,-4.48l1.63,-7.41l1.83,-1.8ZM576.69,223.47l0.71,-4.58l1.25,-0.67l2.52,2.61l-3.07,2.83l-1.42,-0.19ZM580.81,230.28l-1.36,0.05l-1.55,-1.15l1.54,-0.83l0.97,0.49l0.44,0.7l-0.03,0.74Z", "name": "Bronx"}, "5": {"path": "M332.33,671.65l0.57,0.03l0.87,0.79l0.06,0.44l-0.68,0.05l-0.9,-0.85l0.08,-0.45ZM1.85,782.33l1.02,-0.54l0.03,-0.67l1.11,-1.09l0.57,-2.84l-0.08,-1.61l1.7,-1.55l0.13,-0.63l-0.33,-0.82l1.13,-1.12l1.39,-0.74l0.87,-1.04l0.4,0.5l0.77,-0.07l0.09,-0.58l-0.47,-0.58l1.4,-0.88l0.24,-0.48l0.95,1.2l0.54,0.08l0.8,-0.53l0.92,0.11l0.51,-0.29l0.18,-0.51l-0.73,-0.59l2.04,-1.15l0.12,-0.59l-0.62,-0.79l0.9,-0.18l0.93,-0.72l1.0,0.42l2.26,-0.08l2.13,-2.02l0.47,0.33l0.55,-0.09l1.17,-1.9l-0.39,-0.74l-1.01,-0.42l-0.89,-1.08l-0.69,0.15l-2.01,-0.48l0.52,-1.55l-0.39,-3.66l-0.9,-1.6l-0.81,-0.26l0.86,-1.42l0.83,-3.02l-0.08,-1.43l0.6,-0.57l0.51,-2.67l0.96,-1.72l0.16,-1.13l-0.5,-2.51l-0.63,-0.34l-0.1,-0.94l0.49,-0.71l-0.17,-1.53l-1.42,-2.07l-1.7,-1.63l-0.36,-1.26l-0.47,-0.24l-0.93,0.14l0.9,-1.2l0.13,-0.72l-1.36,-2.33l-0.56,-3.33l-0.66,-0.7l-0.83,-1.84l-2.1,-1.82l2.67,-4.36l3.73,-3.48l0.97,0.88l1.49,0.35l3.03,-1.45l3.3,-2.86l1.22,-1.89l1.98,-0.77l0.5,-2.05l-0.5,-1.44l2.21,-1.15l1.67,0.91l1.01,-0.03l1.82,-1.77l0.63,-1.58l1.75,-2.44l0.63,0.3l1.56,-0.21l1.02,-1.55l0.64,-0.16l1.31,0.67l1.66,-0.41l4.12,0.6l2.06,1.02l2.2,0.07l0.89,-1.02l1.16,2.35l1.53,-0.23l0.73,0.23l0.49,-0.45l-0.27,-1.58l0.55,1.04l0.71,0.33l2.8,-1.04l2.18,-1.37l0.15,-0.52l-0.26,-0.5l1.4,0.78l1.02,-0.44l0.46,-1.05l0.74,-0.4l-0.01,-0.76l1.1,-1.43l0.41,-1.53l-0.21,-0.82l1.16,-1.78l-0.28,-1.45l0.39,-1.77l-0.46,-2.52l1.19,-3.79l2.87,-6.57l-0.04,-1.4l1.42,-1.7l-0.2,-0.67l0.5,-3.35l1.24,-3.29l-0.26,-1.71l0.58,-0.91l-0.09,-1.32l0.64,-0.81l-0.32,-0.75l0.64,-0.61l0.68,-2.13l-0.1,-3.41l1.45,-2.3l-0.01,-1.15l1.13,-3.0l-0.32,-1.13l0.37,-0.57l-0.05,-1.63l0.46,-0.87l-0.44,-3.96l-0.31,-0.44l0.46,-0.4l0.28,-0.94l-0.18,-0.59l-0.55,-0.33l2.74,-2.11l0.61,-0.0l0.64,-0.52l0.47,-2.29l1.1,-1.27l1.0,-0.18l1.33,-1.65l0.51,-0.89l-0.1,-0.52l1.09,-1.19l0.39,-1.25l1.65,-2.41l0.32,-2.19l-2.39,-7.44l-2.26,-3.8l-2.02,-1.87l-1.29,-2.45l-0.94,-4.3l0.82,-6.84l-0.22,-2.68l3.31,-6.24l-0.33,-1.15l-0.4,-0.3l-0.1,-1.01l0.64,-0.31l0.25,-0.87l-0.59,-0.92l-0.48,-2.3l0.77,-0.22l0.18,-0.68l-0.21,-0.36l-0.61,-0.12l-0.3,-0.67l-0.28,-3.16l-0.54,-0.67l0.9,-1.85l0.15,-2.54l-0.2,-1.25l-0.45,-0.46l0.61,-5.5l0.87,-0.89l0.53,-3.44l2.51,-2.33l0.39,-0.75l0.88,0.29l0.69,-0.48l0.2,-1.17l1.14,-0.47l0.84,-1.64l1.09,-0.52l0.28,-1.02l1.25,-1.78l-0.19,-1.07l1.37,-0.35l0.02,-0.41l11.21,-10.75l0.69,0.17l0.59,-0.89l1.36,-0.55l0.78,0.68l-0.32,0.62l0.75,1.44l0.6,0.55l0.51,-0.12l-0.16,-1.21l0.63,0.01l0.26,-0.46l-0.84,-2.76l1.02,-0.33l3.11,0.29l0.8,0.71l1.91,-0.27l0.02,1.4l-0.55,0.49l-0.36,2.03l0.23,0.84l0.62,-0.26l0.33,-1.37l1.5,1.26l0.27,-0.76l0.58,-0.2l0.24,-0.7l0.44,-0.1l0.57,1.08l0.75,0.29l0.44,-0.14l0.03,-0.47l-0.5,-0.39l-0.02,-1.07l1.67,0.08l0.3,-0.63l-0.25,-1.81l0.48,-0.88l1.25,-0.02l1.89,1.55l-0.08,1.19l0.83,0.39l-0.44,0.69l0.7,0.57l0.8,-0.05l0.18,1.57l0.33,0.28l-0.16,0.9l-2.17,1.03l0.15,0.74l2.67,-1.04l0.45,-1.34l1.42,-0.07l0.51,-0.53l1.2,0.33l0.53,-0.4l5.25,1.68l0.42,-0.34l0.28,-1.64l-0.35,2.63l1.79,1.6l1.42,0.37l0.39,-0.34l0.28,-1.76l0.4,-0.12l1.32,0.61l-0.89,3.18l0.27,0.49l3.43,0.84l0.46,-0.53l0.22,0.87l0.74,0.66l0.5,-0.08l0.41,-0.77l1.05,0.56l2.91,0.08l0.38,0.76l1.91,-0.37l0.84,1.01l1.64,-0.14l0.97,0.27l0.43,-0.19l0.12,-0.82l2.11,-0.14l0.36,-0.43l-0.08,-1.07l0.54,-0.07l0.72,0.52l0.68,1.4l0.66,0.27l0.51,-0.49l-0.2,-0.88l0.24,-0.94l0.42,1.94l0.5,0.3l0.35,-0.55l-0.36,-2.26l4.06,-0.35l0.22,-0.31l1.09,-0.22l2.25,0.92l0.97,-1.52l1.04,0.29l0.54,-0.32l0.11,-1.21l0.65,-0.01l0.55,0.45l1.15,-0.95l5.17,-0.79l0.64,-0.64l4.27,-0.99l2.41,0.85l1.16,-0.53l0.98,0.11l0.07,0.52l0.62,0.54l1.85,0.56l1.09,0.81l0.5,-0.17l0.52,0.43l1.84,0.14l0.44,1.29l0.62,0.31l0.36,-0.46l-0.09,-1.4l0.72,-0.18l1.09,0.42l2.69,0.01l1.87,-1.19l0.81,0.17l-0.35,-1.31l1.87,-0.25l1.31,0.85l1.28,-0.31l0.57,-0.46l2.31,-0.3l0.26,-0.45l0.53,0.41l0.79,-0.02l0.82,-0.95l2.16,-0.68l2.62,-2.25l0.1,-0.41l0.64,0.21l2.48,-1.82l3.22,-1.47l8.02,-0.18l0.79,-0.32l3.02,0.35l3.6,0.93l2.17,0.03l0.69,-0.62l3.78,-0.0l2.27,-0.36l2.78,-0.81l2.69,-1.41l3.25,-1.21l2.76,-1.76l3.77,-1.28l4.26,1.17l0.75,0.08l1.17,-0.41l1.04,0.41l1.52,-0.18l1.2,0.42l3.96,2.22l3.25,3.57l1.74,0.18l0.48,0.57l0.49,-0.03l0.2,0.55l0.64,-0.09l0.35,1.18l0.62,0.21l0.27,0.76l-0.1,0.4l-0.8,0.14l-0.23,0.81l-1.46,0.2l-0.33,0.49l0.71,2.53l-0.46,0.59l-0.02,3.64l0.12,0.44l0.76,0.41l-1.16,0.35l-0.44,0.72l0.08,0.78l0.39,0.32l-0.27,0.34l0.93,6.13l-0.79,3.17l1.6,9.02l-0.59,0.24l-0.13,0.54l0.9,4.64l3.68,6.15l6.11,5.18l-0.71,0.77l0.03,0.57l0.43,0.37l0.89,-0.38l1.22,0.36l0.04,0.73l1.46,1.17l0.59,0.14l3.78,4.6l1.14,2.59l0.4,1.81l0.73,0.71l1.27,0.47l0.4,0.65l-0.1,1.0l3.07,3.58l1.2,3.0l1.59,1.48l2.67,1.08l0.22,0.85l-0.6,0.85l1.58,6.53l-0.63,1.72l0.89,1.13l-2.48,2.06l-4.42,4.55l-4.18,4.92l-1.24,0.85l-2.62,2.63l-4.67,5.83l-0.09,0.41l0.42,0.63l-3.86,3.28l-4.86,5.31l-1.25,1.59l-0.79,1.44l-0.07,0.74l-3.73,3.32l-3.21,3.85l-1.09,0.59l-4.46,4.43l-2.69,1.85l-8.19,8.44l-1.48,2.33l-0.56,-0.05l-1.82,1.59l-1.39,2.11l-1.18,-0.45l-1.71,1.28l-5.02,7.38l-1.19,-0.6l-0.67,-0.01l-1.44,1.22l-0.85,1.02l-2.74,5.02l-0.61,-0.04l-0.95,0.65l-0.53,-0.14l-0.95,0.62l-1.72,2.39l-1.02,3.21l-1.12,-0.42l-0.83,0.53l-2.55,3.45l-0.62,1.49l-1.5,-0.97l-0.34,-0.74l-1.77,0.04l-2.01,1.77l-2.85,3.41l-4.04,6.9l-0.74,-0.47l-2.18,0.14l-1.11,0.92l-0.86,-0.64l-0.99,-0.03l-1.3,0.81l-1.3,0.36l-2.77,3.49l-2.84,0.32l-1.61,0.89l-2.89,3.43l-3.47,4.98l-7.01,11.48l-4.58,5.75l-5.01,4.03l-0.4,-0.58l-2.37,-0.25l-0.38,-0.61l-0.23,-2.45l-1.83,-3.45l-0.55,-1.87l0.6,-1.7l2.87,0.47l5.13,-0.06l2.03,-0.69l8.99,-9.05l1.27,-1.83l0.55,-2.1l-0.32,-2.76l-2.67,-3.4l-1.18,-1.22l-1.46,-0.86l-2.14,-0.77l-2.47,-0.42l-4.0,0.8l-0.92,0.39l-0.33,0.53l-0.85,0.08l-0.42,0.53l-0.37,-0.48l-0.62,-0.12l-1.32,1.23l-0.18,1.01l-1.56,1.56l-0.96,0.07l0.24,1.19l-0.64,0.58l-0.94,-0.15l-0.33,1.31l-1.37,0.42l0.07,0.72l-0.46,1.36l0.99,2.83l-0.23,0.44l0.2,0.47l-0.6,0.33l0.0,0.78l0.59,0.49l-0.49,0.46l-0.21,1.32l0.55,0.53l-2.57,-0.14l-0.94,0.94l-0.73,1.73l-1.05,-0.06l-2.6,0.99l-3.65,2.12l-0.94,0.7l-0.08,1.01l-1.26,1.37l-0.79,-0.22l-1.26,1.04l-1.0,0.31l-3.21,3.21l-1.14,0.59l-2.05,2.03l-0.8,0.01l-1.53,0.9l-1.7,1.19l-0.77,0.95l-0.7,0.06l-0.62,-0.36l-2.06,1.03l-1.26,-0.29l-2.32,1.6l-1.69,0.54l-8.47,5.8l-1.57,-0.99l-1.76,0.47l-6.49,4.74l-2.45,2.78l-0.77,-0.99l-1.49,-0.26l-0.97,-0.93l-2.27,-0.36l-2.22,0.71l-1.31,0.91l-2.74,1.04l-2.92,2.44l-2.86,3.08l-1.45,2.1l-0.8,0.2l-3.35,4.34l-2.69,2.86l-1.06,1.76l-1.65,1.16l-1.78,0.1l-3.36,-2.42l-1.63,-0.42l-0.4,-1.77l1.35,-0.09l0.34,-0.55l-0.57,-0.84l-1.48,0.29l-1.48,-0.19l-10.99,2.3l-2.06,0.97l-1.77,1.37l-4.5,6.35l-1.42,1.41l-1.27,0.14l-1.97,1.56l-3.24,4.45l-3.46,1.19l-5.35,0.52l-3.11,1.34l-3.64,-1.02l-6.33,0.87l-4.03,1.81l-2.7,0.59l-2.52,1.19l-1.46,1.52l-1.45,0.7l-2.01,2.4l-7.21,0.05l-2.0,1.02l-1.98,1.69l-0.45,0.03l-1.64,-0.2l-1.43,-0.59l-2.61,-2.64l-0.56,-1.96l-2.41,-1.32l-0.98,-1.13l-3.29,-7.59l0.08,-4.2l-0.46,-2.16l1.45,-1.65ZM61.52,791.93l0.03,0.01l0.02,0.01l-0.04,-0.02ZM17.37,727.62l-0.21,0.28l-0.16,-0.14l0.29,-0.1l0.08,-0.04ZM47.29,691.12l0.02,0.01l-0.05,0.02l0.03,-0.04ZM69.1,689.46l-0.01,0.01l-0.0,0.0l0.01,-0.01ZM72.07,681.72l-0.02,-0.01l0.01,0.01l0.0,0.0ZM83.42,628.9l0.0,0.0l-0.01,0.01l0.01,-0.01ZM325.59,645.5l1.42,-0.87l0.87,0.88l-0.31,3.86l-1.08,0.81l-0.97,-0.91l0.31,-3.47l-0.24,-0.3ZM152.88,522.16l4.96,0.73l0.49,0.56l-0.78,1.16l-0.74,0.42l-0.38,1.23l-1.46,0.52l-1.61,-0.66l-0.49,-3.96Z", "name": "Staten Island"}, "4": {"path": "M475.01,339.97l0.48,-1.82l0.76,0.0l0.93,-0.96l-0.28,-0.85l-0.76,-0.29l1.1,-0.35l0.22,-1.33l-0.6,-0.68l0.39,-0.82l0.91,-1.46l1.4,-0.26l0.04,-0.65l0.54,-0.68l0.98,-0.56l0.59,-1.22l-0.3,-0.5l-1.08,-0.32l0.96,0.02l0.49,-0.3l0.06,-0.58l-0.76,-0.51l3.06,-4.56l2.93,1.42l2.71,0.59l0.47,-0.27l0.21,-0.68l-0.29,-0.51l-2.76,-0.64l-1.99,-1.0l0.55,-0.63l1.21,-0.13l0.89,-1.83l-0.12,-0.61l1.01,-1.72l4.16,-5.17l9.2,-13.43l3.55,-5.77l3.51,-4.6l2.28,-1.97l1.55,-0.05l1.15,-1.4l2.0,-0.28l0.86,-1.13l1.13,0.16l1.5,-1.46l0.32,-0.74l-0.64,-0.66l0.12,-0.65l0.81,-0.19l0.15,-0.55l-0.25,-0.48l-0.6,-0.52l-4.11,-1.46l-0.49,-1.75l0.24,-2.71l2.01,-3.45l2.02,-1.87l1.63,-0.26l3.3,0.45l0.93,0.64l0.76,1.64l1.36,0.86l2.4,-0.68l3.77,-3.19l3.41,-1.68l2.07,-2.57l1.44,-0.84l4.86,-4.82l1.39,-1.04l1.71,-0.55l0.63,-2.0l1.56,-1.57l0.95,-0.32l-0.27,-0.78l4.36,-5.1l0.83,0.12l0.42,-0.76l1.05,-0.23l0.36,-0.83l1.81,-1.4l4.71,1.04l0.56,0.39l7.01,1.29l2.86,0.93l5.42,4.55l1.55,2.33l-4.37,4.36l-4.03,0.27l-1.7,1.83l-0.87,2.96l0.76,0.67l0.49,-0.1l0.56,-2.02l0.98,-1.02l1.63,-0.63l2.72,0.26l3.83,-2.27l-0.02,0.1l1.67,1.36l-0.74,0.72l0.24,0.93l0.54,-0.03l1.6,-1.66l0.25,0.06l2.87,2.48l0.08,-0.06l0.12,0.4l0.39,0.1l-1.34,1.48l-0.2,0.77l0.27,0.39l1.21,-0.02l0.66,1.4l-2.01,2.08l-0.07,0.42l1.77,2.0l-0.63,1.94l0.22,1.13l0.48,-0.19l0.63,-1.44l0.06,-1.88l0.52,-1.1l0.94,-0.55l0.92,3.17l-0.5,2.74l-0.65,1.12l0.45,0.55l0.46,-0.2l0.71,0.38l9.0,-1.16l0.28,-0.59l-1.13,-0.56l-0.33,-0.9l0.03,-0.4l0.86,-0.55l-1.39,-5.95l0.31,-2.41l2.5,-0.56l0.71,0.2l2.25,-0.73l3.34,-0.26l0.75,0.26l0.56,-0.46l-0.79,-2.47l1.11,-1.6l4.84,2.74l0.42,-0.02l0.61,-0.44l5.62,-8.07l1.82,1.03l0.59,3.07l-1.52,2.19l-1.68,0.47l-1.77,2.51l0.13,0.58l12.71,7.86l15.45,8.6l-2.11,3.05l-1.29,-0.55l-1.66,0.67l0.14,0.6l2.13,1.55l-0.43,0.14l-0.94,1.56l-1.72,1.75l-1.85,0.69l-1.13,-0.1l-0.45,-0.5l-0.51,0.21l-0.15,0.46l-2.11,0.09l-0.37,0.42l0.14,0.65l0.78,0.76l4.4,7.08l0.75,0.33l0.41,0.75l2.86,1.71l2.87,1.01l1.22,0.98l1.47,-0.15l1.46,0.5l1.93,1.19l1.24,-0.09l1.78,-0.59l1.12,-1.11l1.05,0.19l6.21,-4.93l2.79,-1.67l0.3,-0.73l-0.09,-0.9l0.35,-0.36l3.25,-1.32l1.97,-0.01l0.73,-1.43l-0.89,-1.1l0.33,-0.96l-0.57,-0.67l-0.68,0.11l-0.79,1.49l-6.12,1.56l-1.41,-0.33l-2.06,-1.23l-1.1,-0.02l-0.82,-0.8l-1.03,-2.21l0.29,-0.87l-0.88,-0.67l-0.19,-0.6l0.61,-0.99l-0.2,-0.69l0.2,-1.23l-1.52,-1.46l-0.63,-1.1l1.19,-1.93l0.39,-1.34l-0.41,-1.76l0.44,-1.66l-0.27,-0.68l0.25,-4.09l-0.24,-0.49l-0.58,-0.2l-0.03,-0.77l-0.52,-0.32l0.37,-0.56l-0.32,-0.9l0.45,-0.84l-0.65,-1.94l0.04,-0.59l1.06,-0.29l-0.35,-0.65l0.23,-0.88l-2.04,-0.59l-4.64,0.26l-0.44,0.58l-2.78,0.13l-0.09,-1.91l-1.11,-0.71l-1.12,0.18l-2.11,-0.88l0.45,-1.33l-1.15,-1.45l-0.69,-0.19l-0.12,-0.73l0.73,-0.45l-0.06,-0.88l0.64,-0.68l1.48,0.75l0.59,-0.03l0.99,-0.77l0.5,-1.16l4.06,-0.31l1.07,-0.85l0.09,-0.5l-0.36,-0.4l-2.43,0.05l-0.38,-0.25l0.47,-2.83l2.62,-1.33l0.38,-0.53l-0.41,-1.09l-1.41,-1.44l0.24,-1.31l-0.16,-1.56l1.64,-0.91l2.3,1.37l3.39,0.94l0.55,-0.5l-0.34,-1.37l0.46,-0.7l-0.12,-1.24l1.27,-0.78l2.5,-0.73l0.72,0.25l1.87,2.1l1.64,0.08l0.97,-0.64l0.56,-0.01l0.22,-0.47l0.74,-0.35l0.64,0.45l0.59,-0.07l0.42,-0.57l0.12,-1.12l0.95,-0.94l2.27,-0.42l0.75,0.39l2.08,5.38l0.87,3.43l0.01,0.47l-1.3,0.5l-0.49,0.92l0.75,3.29l-0.11,0.86l0.6,0.12l0.35,-0.88l1.89,-0.12l0.52,0.67l1.87,0.25l0.6,1.08l1.67,0.02l1.44,-0.55l0.63,-0.89l0.59,-0.02l-0.09,-0.55l-0.75,-0.32l-0.26,-0.98l0.61,-1.67l0.54,-0.62l0.98,-0.43l1.09,0.17l1.43,-0.64l2.12,-2.03l0.3,-1.24l-0.31,-2.75l-1.55,-2.96l2.03,-0.38l0.77,-0.45l0.38,-0.66l-0.33,-0.73l0.35,-0.11l1.15,0.8l1.75,-0.07l4.03,-2.97l2.53,-2.96l1.74,-0.78l3.66,3.01l1.42,0.53l0.81,0.95l3.66,1.85l-0.01,0.82l0.73,0.22l1.14,-0.33l0.75,-1.72l0.45,0.11l-0.08,0.67l0.56,0.63l4.63,1.14l3.93,0.77l0.68,-0.18l0.94,0.62l0.66,0.06l1.76,-0.26l1.18,-0.79l0.2,0.48l1.05,0.33l2.1,-0.36l2.57,0.49l5.32,2.22l2.37,0.32l0.3,0.89l-0.35,0.44l-0.24,2.37l-0.3,0.42l-0.01,1.6l1.99,5.3l1.81,0.71l0.97,-0.28l3.33,-2.69l7.37,-0.03l3.06,-0.6l2.27,-1.39l0.78,0.42l0.49,-0.08l1.17,-1.2l0.63,-3.88l-0.54,-1.63l-1.37,-0.95l0.3,-0.9l2.98,-1.22l0.55,-0.68l1.89,-0.2l2.83,1.11l2.98,3.15l1.11,3.23l2.09,2.4l0.32,2.52l2.37,3.22l-0.2,0.55l-1.62,1.06l-3.15,1.1l-0.12,-0.34l-1.38,-0.75l-2.0,-2.1l-0.59,-0.01l-0.09,0.59l3.38,3.63l0.27,1.28l4.0,5.62l5.44,6.57l1.83,5.18l3.25,5.92l8.96,9.82l1.06,0.73l0.52,1.93l1.55,0.88l0.68,-0.22l1.11,0.78l0.24,0.57l0.94,-0.16l1.5,0.59l2.95,3.19l1.42,1.08l1.86,4.03l4.04,1.65l1.69,2.02l1.59,1.01l0.31,0.37l-0.2,1.72l0.48,1.07l0.88,-0.06l1.5,1.46l0.26,0.88l0.67,-0.31l-0.18,-1.12l-1.87,-1.85l-0.77,-0.21l0.38,-1.04l-0.19,-0.76l-0.72,-0.94l-1.48,-0.97l-1.09,-1.44l-0.38,-1.63l-1.52,-0.71l-0.48,0.05l-0.28,0.66l-1.23,-0.65l-1.35,-1.57l-0.48,-1.77l-1.3,-1.65l-0.88,-0.59l-3.21,-5.1l0.47,-1.63l0.63,-0.69l-0.52,-0.37l0.01,-1.55l-1.35,-3.16l1.7,-0.81l1.25,-1.18l0.57,-1.36l-1.46,-4.19l-1.36,-2.15l0.39,-0.69l0.04,-1.25l0.54,-0.63l0.75,-3.28l1.61,-2.36l0.08,-0.88l3.13,-2.71l10.62,7.98l6.54,4.67l1.13,0.39l2.74,2.34l14.55,10.24l8.33,6.4l0.88,0.07l0.92,1.13l2.15,1.24l21.55,16.63l9.9,7.05l2.6,25.11l-2.31,3.28l-9.96,18.47l-4.4,1.11l-8.69,1.31l-3.97,0.98l-12.0,3.86l-6.16,2.72l-1.46,0.94l-0.15,0.45l1.86,5.73l2.94,13.03l0.73,4.51l-0.24,0.96l0.43,14.46l1.86,42.98l-0.9,4.16l-2.21,6.32l-1.15,11.69l-0.01,3.17l0.26,2.11l0.4,0.61l0.07,3.2l-0.82,0.65l0.67,2.55l2.4,4.95l1.4,4.61l0.12,2.39l0.81,2.35l-0.31,3.96l-8.34,3.18l-7.56,1.14l-6.33,2.94l-3.93,2.55l-0.54,9.25l-0.6,1.32l0.84,1.87l-1.02,0.54l-0.14,0.58l2.5,4.15l-0.56,-0.56l-2.26,-0.65l-1.49,0.36l0.45,-1.39l-0.75,-0.43l-0.46,0.34l-1.48,3.22l-0.49,-0.03l-1.73,1.36l-0.3,-0.28l0.21,-0.3l2.07,-1.48l0.33,-0.73l-0.33,-0.68l-0.69,0.02l-0.43,0.34l-0.08,0.58l-1.36,0.99l1.0,-3.45l0.26,-2.21l-0.3,-0.58l-0.0,-1.56l-1.58,-3.4l-2.31,-2.43l-0.08,-1.24l-0.69,-0.3l-0.58,0.35l-3.61,-2.85l-4.13,-2.65l-1.21,0.12l-0.45,0.67l0.56,1.08l9.01,6.91l2.35,3.56l0.22,0.56l-0.18,3.82l-0.93,4.48l-0.48,0.69l-0.15,2.08l-1.2,0.85l-2.14,0.61l-2.88,1.85l-1.57,0.26l-2.17,1.23l-1.14,0.23l-3.05,1.25l-0.57,0.54l-2.16,0.7l-2.36,1.51l-2.69,0.8l-1.43,1.09l-2.17,0.83l-0.62,-0.34l-0.47,0.11l-0.07,0.68l-2.16,1.35l-1.08,1.71l-2.92,6.25l-0.1,0.87l0.47,1.44l-0.2,0.81l-1.29,0.97l-0.52,1.17l0.03,0.82l-1.33,1.88l-0.91,-0.45l-0.11,-0.89l1.29,-2.74l0.03,-2.09l-1.18,-0.12l-5.31,-6.12l-2.63,-1.95l-2.59,-0.34l-2.46,0.81l-2.33,2.63l-5.75,9.77l-0.92,0.59l-0.7,-0.17l-0.86,0.28l-1.74,1.66l-0.24,1.08l0.73,3.13l0.59,0.65l0.05,1.26l0.92,1.81l-0.53,2.07l-0.92,0.65l-6.09,2.26l-0.87,2.14l-0.06,2.53l-1.1,-0.34l-1.45,0.07l-1.07,0.96l-0.15,0.93l0.77,1.8l-1.15,-0.61l-0.23,-0.71l-0.94,-0.49l-0.57,-1.3l-0.53,-0.35l-1.1,-0.18l-2.75,-1.39l-1.55,-0.07l-0.32,-0.39l-0.69,-0.0l-0.04,-0.65l-0.44,-0.34l-1.55,0.77l-0.23,-0.06l0.47,-0.32l0.36,-1.79l1.12,-0.69l-0.45,-0.83l0.34,-2.12l1.03,-1.36l0.9,-0.06l0.1,-1.08l1.35,-0.79l-0.2,-0.9l0.42,-0.83l0.58,-0.26l-0.09,-1.09l0.79,-0.4l0.35,-2.29l0.9,-1.13l0.14,-1.18l0.75,-0.8l-0.05,-0.76l0.98,-0.28l-0.24,-1.41l1.49,-0.14l1.82,0.73l1.51,0.19l2.73,-0.59l0.98,-0.65l7.15,-7.24l2.32,-2.89l1.07,-2.57l0.34,-1.69l-0.24,-0.45l-1.72,-0.69l-0.98,-1.43l-2.2,-1.39l-2.02,-0.37l-0.7,-0.5l-3.48,-3.35l-1.65,0.56l-0.4,-0.54l-0.63,-0.0l0.04,-0.99l-1.85,-2.15l-1.94,-0.39l-1.25,-0.86l-0.74,-0.11l-4.14,-2.68l-2.34,-0.79l-0.85,0.01l-4.1,-2.57l-4.66,-2.19l-1.58,-1.3l-1.79,-0.4l-3.14,-1.98l-3.42,-1.31l-2.11,-1.57l-2.33,-0.62l-4.75,-2.62l-2.99,-0.72l-4.66,-5.19l-1.03,-1.74l-2.51,-10.0l1.78,-7.42l1.09,-1.04l4.53,-2.14l9.76,1.82l2.15,-0.23l0.43,-0.48l-0.05,-0.78l-1.37,-0.67l-10.84,-2.42l-7.17,3.24l-0.96,0.72l-2.56,9.29l2.08,8.43l0.51,3.36l0.58,1.45l-0.66,-0.8l-0.08,-0.63l-1.26,-1.14l-0.5,-0.09l-0.37,0.32l-0.59,-0.67l-0.62,0.76l-0.17,-0.82l-0.39,-0.27l-0.59,0.27l0.16,0.84l-0.43,0.67l0.01,0.81l-2.73,-0.66l-2.11,-2.38l-0.36,-1.08l-1.38,-1.24l-0.59,-2.02l0.07,-1.33l-0.48,-0.5l4.16,-4.51l-0.58,-0.48l-1.0,0.94l-1.18,0.12l-0.55,0.74l0.02,0.88l-1.69,1.37l0.96,-1.34l0.48,-1.65l1.7,-1.03l0.65,0.18l0.48,-0.24l0.36,-0.5l-0.08,-0.52l0.52,-0.57l-0.37,-1.36l-1.06,-0.84l0.4,-0.74l-0.86,-2.24l-0.6,-0.25l-0.27,0.48l0.66,1.82l-0.66,0.38l-0.11,0.48l1.89,1.78l-0.67,0.97l-0.76,-0.01l-0.71,0.77l-1.29,0.7l-0.82,2.02l-0.54,-1.8l0.67,0.12l0.25,-0.51l-0.95,-2.85l2.01,-0.59l0.27,-0.65l-0.49,-0.37l-1.28,0.15l-2.35,0.43l-0.32,0.47l3.62,16.29l0.07,1.7l-0.64,0.89l-4.4,-0.25l-1.33,-0.38l-0.3,-0.41l-1.36,-7.73l-2.44,-9.61l-0.36,-3.23l-0.79,-3.11l1.08,-1.61l-0.09,-0.54l-1.53,-0.9l-2.02,1.06l-0.2,0.44l0.31,2.73l2.19,9.09l4.01,19.39l-21.43,2.42l-3.59,-3.16l-0.65,-1.25l-0.19,-1.38l1.15,-2.89l1.17,-0.28l0.94,-2.56l1.8,-1.11l0.13,-0.48l-0.38,-0.74l-1.24,-0.58l-1.46,0.26l-2.67,1.86l-2.36,-0.19l-2.33,-1.18l-0.58,-0.0l-0.45,-0.49l-0.08,-0.9l-0.68,-1.4l-0.72,-0.47l-1.25,0.39l-0.6,-0.34l-1.55,-3.57l-2.52,-2.43l1.55,-1.06l0.06,-1.55l0.52,-0.92l-0.26,-0.96l-0.8,-0.36l-0.66,-1.15l4.58,-1.0l0.28,-0.47l-1.24,-6.0l4.04,-0.72l0.33,-0.48l-3.16,-14.96l-0.45,-0.31l-4.09,0.69l-3.09,-14.81l-0.43,-0.32l-1.16,0.12l-1.25,-5.97l-0.51,-0.3l-2.68,0.77l-0.85,-6.04l-3.34,-16.79l0.24,-1.59l-1.31,-0.87l-8.22,1.86l-8.94,5.89l-6.92,6.31l-1.23,2.25l-5.65,2.62l-2.23,1.77l-0.61,-1.05l-0.59,-0.12l-3.53,2.77l-2.42,-3.23l-0.63,-0.01l-3.53,5.06l-6.88,-9.64l0.77,-0.38l0.19,-0.52l-2.14,-4.75l0.79,-1.11l-0.14,-0.59l-7.0,-4.9l2.21,-2.68l-0.08,-0.59l-11.85,-7.91l1.53,-1.78l-0.07,-0.59l-3.24,-2.28l1.49,-1.73l-0.07,-0.59l-15.98,-11.21l1.57,-1.85l-0.09,-0.59l-1.16,-0.86l-1.23,-3.59l-2.46,-1.84l0.25,-0.35l-0.65,-1.79l2.57,-1.46l2.56,0.55l0.47,-0.27l0.13,-0.65l-0.3,-0.35l-2.49,-0.63l-0.84,-2.04l-1.03,-1.12l-0.81,-1.75l0.18,-2.07l-0.62,-1.44l-0.05,-1.07l-1.43,-1.61l0.89,-2.05l3.59,-0.19l2.34,0.73l0.81,-0.78l-0.22,-0.71l-3.1,-0.96l-3.21,-0.21l-0.91,-0.37l-2.6,-2.17l-3.29,-4.32l-1.2,-0.76l-3.42,-0.91l-5.21,-0.72l-3.03,-1.07l-2.52,-1.58l-1.62,-1.57l-1.25,-3.53l-0.32,-0.2l0.04,-0.81l-1.3,-2.53l-1.26,-1.53l-1.75,-1.07l-4.68,-1.94l4.73,-2.09l0.23,-0.42l1.72,-0.52l1.59,-1.73l0.1,-0.88l2.03,-3.67l0.9,-0.23l0.13,-0.76l-0.31,-0.46l-2.3,-0.53l-0.5,0.27l-0.21,0.72l0.6,0.58l-2.24,4.2l-0.92,1.01l-1.34,0.69l-0.31,0.6l-1.5,0.28l-2.7,1.28l-2.52,0.55l-6.76,-2.72l-4.02,-0.95l-5.99,0.52l-5.3,2.81l-1.81,-0.28l-0.79,-0.78ZM588.21,260.66l-0.0,-0.0l-0.0,0.0l0.0,-0.0ZM588.24,260.65l0.03,-0.02l0.01,-0.0l-0.03,0.01l-0.01,0.01ZM588.76,260.15l-0.0,-0.0l-0.0,0.0l0.0,-0.0ZM588.85,260.06l0.01,-0.0l-0.01,0.0l-0.0,0.0ZM589.08,259.82l-0.0,-0.0l-0.0,0.0l0.0,-0.0ZM588.56,258.89l0.01,-0.01l-0.01,0.0l0.0,0.01ZM588.56,258.9l-0.0,-0.0l0.0,0.0l0.0,-0.0ZM587.52,258.04l0.0,0.0l0.0,0.0l-0.0,-0.0ZM587.5,258.03l-0.0,-0.0l0.0,0.0l0.0,-0.0ZM586.44,257.11l0.0,0.0l0.01,0.0l-0.01,-0.01ZM585.01,257.01l-0.02,0.01l0.01,-0.0l0.01,-0.0ZM584.75,257.27l-0.01,0.01l-0.01,0.01l0.02,-0.01l0.01,-0.01ZM584.43,257.58l-0.02,0.01l0.01,-0.0l0.0,-0.0ZM654.0,508.81l0.01,0.0l0.01,0.0l-0.03,-0.0ZM696.3,511.4l0.0,0.0l0.01,0.01l-0.01,-0.02ZM786.92,564.6l-0.01,0.04l0.0,-0.02l0.01,-0.02ZM797.23,549.55l0.0,0.0l-0.0,-0.0l-0.0,-0.0ZM833.83,534.35l1.78,3.8l-0.36,0.49l-3.61,0.46l0.55,-1.44l1.76,-2.26l-0.12,-1.05ZM777.24,231.14l0.0,0.0l-0.0,-0.0l0.0,-0.0ZM642.59,249.79l0.01,-0.02l0.02,0.04l-0.02,0.0l-0.02,-0.03ZM626.93,253.93l0.04,-0.04l0.01,0.02l-0.05,0.01ZM626.87,253.48l0.03,-0.0l0.06,0.01l-0.02,0.04l-0.07,-0.04ZM588.07,260.89l0.01,0.0l-0.0,0.0l-0.0,-0.01ZM589.05,259.97l-0.01,-0.02l0.02,0.0l-0.01,0.02ZM589.34,259.49l0.01,-0.01l0.01,-0.0l-0.01,0.01l-0.01,0.01ZM588.87,259.11l0.05,0.06l-0.08,-0.03l0.03,-0.04ZM588.77,258.98l0.01,0.01l-0.02,0.01l0.01,-0.02ZM588.8,259.02l-0.01,0.0l0.0,-0.01l0.01,0.0ZM587.66,258.12l-0.04,-0.03l-0.03,-0.04l0.07,0.07ZM586.82,257.36l0.04,0.04l-0.05,-0.01l0.01,-0.03ZM586.14,256.86l-0.02,-0.01l-0.02,-0.02l0.04,0.03ZM583.09,255.76l0.01,-0.03l0.01,0.01l-0.02,0.02ZM582.45,255.21l-0.0,0.0l-0.0,0.0l0.0,-0.0ZM582.45,255.22l0.01,0.01l-0.01,0.01l0.0,-0.02ZM582.35,255.11l0.01,0.01l-0.02,0.02l0.02,-0.02ZM582.4,255.19l-0.06,0.03l0.05,-0.06l0.0,0.03ZM582.37,255.15l0.01,-0.02l0.0,-0.0l0.0,0.0l-0.01,0.01ZM582.37,255.14l-0.05,0.02l0.04,-0.03l0.01,0.01ZM582.32,255.08l0.0,0.0l-0.0,0.0l0.0,-0.0ZM582.25,255.06l-0.02,0.01l0.01,-0.01l0.01,-0.0ZM582.47,255.26l-0.0,0.0l0.0,-0.0l0.0,0.0ZM585.54,256.48l-0.01,0.0l-0.02,-0.0l0.01,-0.01l0.02,0.01ZM658.44,280.35l-0.37,0.15l-0.16,-0.09l0.44,-0.2l0.08,0.14ZM742.39,574.08l-0.05,-0.02l0.04,0.0l0.01,0.02ZM638.5,493.71l-0.05,1.4l1.05,0.54l0.41,0.88l-0.68,0.47l-0.64,-0.11l-0.27,-1.89l-1.7,0.58l-0.36,-0.59l2.25,-1.27ZM510.64,716.06l0.78,-9.46l-0.2,-8.81l0.67,-2.62l1.1,-2.09l0.69,-0.92l3.42,-2.34l2.13,-0.62l3.06,-0.22l1.98,-0.75l9.58,-7.31l3.0,-0.81l5.02,-0.15l3.32,-0.77l3.08,-1.01l5.38,-3.09l1.28,-0.1l1.28,-0.68l1.2,-0.16l1.96,0.31l0.46,1.05l0.97,0.71l1.82,0.08l0.65,1.22l1.79,0.99l2.12,0.11l4.01,-1.25l1.1,0.85l1.34,0.04l4.08,-1.68l4.55,-2.76l1.66,-2.29l-0.29,-1.06l4.31,-2.97l5.68,1.24l1.96,-0.21l2.22,-0.84l1.86,-0.25l0.52,0.12l0.65,1.03l0.5,0.16l1.52,-0.9l1.36,0.01l1.08,-0.66l5.3,0.15l1.8,-0.44l2.7,-1.3l16.92,-9.84l20.21,-12.68l4.13,-1.64l2.85,-0.11l5.56,1.17l9.61,-0.55l1.29,-1.73l4.38,-0.23l11.85,-3.79l0.97,-2.41l7.54,-2.61l3.02,1.3l6.55,-4.12l0.11,-0.66l0.85,-0.06l2.54,-1.33l0.87,-1.19l1.25,-0.1l1.39,-1.1l1.3,-0.15l1.28,-0.86l0.87,-0.09l0.29,-0.54l1.39,-0.32l0.64,-0.68l0.35,-1.46l3.57,2.12l1.3,0.45l0.27,2.21l0.64,0.23l0.27,-0.43l-0.16,-1.48l2.09,0.88l0.4,-0.37l0.16,-1.11l-6.06,-3.17l0.04,-1.32l1.18,-1.73l1.31,-0.42l1.78,0.87l1.12,1.35l-0.1,1.33l0.66,1.48l1.44,0.69l1.06,-0.12l0.36,-0.43l-0.18,-2.97l0.34,-0.59l-0.41,-0.37l-1.06,-0.17l0.06,-0.7l-0.35,-0.39l-0.57,-0.05l-2.06,-3.31l0.49,-0.76l1.21,-0.56l1.56,-1.72l1.47,0.08l1.69,-0.66l3.95,0.05l4.73,-0.62l1.54,0.15l1.08,-0.3l1.03,-0.74l1.48,0.01l1.89,-1.14l5.52,-4.94l1.93,-0.25l-1.31,1.16l-1.44,2.78l-2.28,1.62l-1.37,1.48l-1.28,4.0l0.03,3.49l0.32,1.08l0.67,0.67l1.66,0.04l1.07,-0.96l0.17,-0.57l-0.21,-2.18l0.22,-2.69l3.23,-2.81l0.69,-0.99l1.09,-0.61l0.93,-2.3l1.41,-0.49l1.7,-1.6l0.66,-2.54l-1.26,-1.93l0.39,-0.85l5.17,-5.86l2.82,-2.24l1.99,-0.38l1.58,0.38l1.44,-0.17l1.56,1.43l-0.85,0.43l-1.33,-1.56l-0.44,-0.08l-0.32,0.32l1.73,2.45l0.57,1.47l-0.5,3.66l-0.46,1.79l-1.15,1.61l-0.27,1.54l-0.61,0.28l-0.28,0.75l-1.82,2.05l-0.97,0.3l-0.04,0.45l0.42,0.29l-3.03,-0.65l-3.15,3.32l-0.05,1.39l1.11,1.69l1.76,1.02l0.15,0.67l0.52,0.1l0.74,-1.04l3.71,-2.82l0.42,-1.55l1.4,-2.74l0.93,-1.01l0.68,-0.13l0.23,1.61l0.99,1.6l-0.16,1.7l0.8,0.71l0.04,0.8l0.45,0.47l1.1,0.49l2.23,-0.24l0.89,-0.61l1.12,0.42l1.44,-0.31l2.4,0.77l0.49,-0.85l-0.19,-0.47l-2.91,-0.96l-1.06,-0.67l-0.83,0.3l-0.23,-0.78l0.35,-3.2l1.2,-3.03l-0.6,-4.07l0.9,-0.95l0.29,-1.89l-0.29,-1.75l0.38,-0.57l-0.05,-0.66l0.92,-1.03l0.46,-1.76l-0.4,-1.0l-1.02,-0.8l-2.51,-0.7l-0.83,-0.71l-0.68,-1.39l-0.87,0.01l-1.47,0.7l-0.43,-1.87l0.78,-2.28l0.59,0.22l2.0,-0.77l3.88,-0.02l1.59,-0.48l2.17,-0.15l2.64,0.95l0.24,3.34l4.62,1.37l1.05,-0.79l1.84,1.51l-2.28,2.89l0.11,0.58l0.38,0.23l0.54,-0.12l2.39,-3.34l-0.16,0.84l0.33,0.52l0.92,-0.41l5.37,0.27l0.46,0.29l1.13,-0.13l0.55,-0.52l1.94,-0.22l8.78,-3.18l0.26,0.25l0.77,-0.09l0.37,0.76l0.54,0.23l1.41,-0.64l4.05,7.4l-0.26,0.82l0.29,0.53l4.67,5.18l1.75,0.92l1.63,2.58l0.23,2.0l-0.5,6.48l0.3,0.72l-0.8,1.05l-1.23,-0.25l-1.08,0.83l-0.6,-0.4l-0.9,0.32l-0.47,-0.19l-0.75,0.42l-0.18,0.47l0.45,0.57l1.52,0.08l0.18,0.65l0.83,0.33l0.83,-0.24l0.62,-0.72l0.03,-0.66l0.55,0.21l1.03,-0.45l0.59,3.91l-2.97,0.08l-3.93,-0.77l-0.56,0.33l-0.64,-0.18l-2.73,0.33l-3.33,0.71l-3.83,1.75l-2.09,1.37l-2.13,2.46l-3.06,0.85l-3.78,0.14l-3.13,-0.92l-5.69,-0.72l-2.66,0.23l-8.1,1.69l-1.21,-0.27l-9.23,1.13l-2.34,-0.07l-1.31,0.49l-1.59,0.03l-2.52,0.88l-2.05,0.0l-6.64,2.15l-5.1,1.07l-1.66,0.88l-1.16,-0.31l-10.68,2.48l-1.06,-0.07l-6.84,1.84l-1.52,0.12l-2.32,0.88l-0.8,-0.24l-2.97,0.96l-1.49,0.1l-2.13,0.86l-1.62,-0.02l-1.09,0.39l-6.48,0.67l-9.4,3.29l-4.76,1.25l-8.04,3.22l-6.92,1.96l-3.9,1.48l-6.41,3.34l-9.66,3.89l-13.63,6.03l-2.9,0.85l-5.11,2.26l-8.75,4.43l-1.45,-0.44l-3.4,0.91l-4.55,2.01l-1.45,0.27l-5.37,2.46l-1.06,0.07l-5.07,1.89l-6.47,3.06l-1.51,0.21l-1.89,0.92l-1.32,0.08l-6.05,2.5l-1.46,0.08l-2.86,1.39l-1.59,0.21l-2.42,1.23l-0.67,-0.18l-1.49,0.35l-2.32,1.22l-1.23,-0.15l-2.21,0.98l-1.83,-0.4l-1.69,0.69l-1.99,0.32l-1.25,-0.41l-2.52,0.07l-6.22,1.98l-20.92,9.77l-11.24,4.74l-6.68,3.32l-9.03,3.68l-4.5,2.45l-2.21,0.66ZM721.44,622.09l-0.0,0.0l-0.04,-0.02l0.04,0.01ZM791.51,577.75l-2.02,0.05l-8.56,-2.0l7.86,-8.7l1.58,0.57l1.14,10.08ZM751.86,588.47l1.92,0.12l1.43,-0.74l0.13,-0.46l-0.96,-2.81l1.07,-1.86l1.78,-0.83l1.36,0.04l3.31,-2.1l0.87,-3.84l-0.86,-1.4l0.37,-0.72l-0.07,-0.62l-1.52,-3.13l0.52,-1.01l0.44,-0.14l0.07,2.2l0.58,0.6l0.04,0.69l0.52,0.41l0.01,1.42l1.03,1.69l0.69,0.47l0.32,0.67l1.32,0.12l0.47,0.8l0.85,0.04l1.07,0.72l0.21,0.73l-0.65,0.41l-0.07,0.96l-0.77,0.35l-0.93,1.03l-0.83,0.16l-0.26,0.5l-0.83,0.47l-1.2,0.13l-0.52,-0.25l-0.67,0.28l-0.5,1.09l-0.7,0.63l-2.22,0.63l-0.35,0.71l-0.51,-0.14l-1.62,0.56l-0.92,1.78l-1.28,0.44l-0.93,1.5l-0.74,-0.76l-0.45,-1.54ZM752.43,591.3l-0.01,0.19l-0.33,0.01l0.03,-0.15l0.3,-0.06ZM741.13,554.51l-0.0,0.37l0.51,0.39l0.45,-0.13l2.24,1.48l-5.26,3.56l-0.13,0.52l0.51,0.18l8.08,-2.88l0.23,0.32l-6.98,3.94l-2.3,3.63l-0.62,4.4l-2.36,-2.16l-0.48,-0.04l-0.17,0.45l1.21,4.13l-0.49,3.48l-2.23,4.27l-0.91,0.63l-2.09,-0.38l0.52,-1.39l-0.16,-2.88l-1.58,-1.84l0.1,-1.76l-3.12,-6.71l0.47,-1.12l-0.57,-1.01l1.04,-2.8l1.95,-1.79l0.87,0.4l3.97,-2.46l0.4,-0.77l3.71,-1.1l0.15,-0.69l-0.45,-0.39l3.48,0.15ZM732.48,593.83l0.82,-1.1l2.08,-0.98l1.13,-1.23l6.22,-0.65l0.76,0.21l0.48,0.73l-0.69,0.67l0.4,0.58l-0.38,0.97l0.82,0.18l0.69,-0.81l0.25,1.44l-1.1,0.62l-0.6,-0.04l-1.77,-1.2l-4.93,-0.71l-1.98,1.14l-2.19,0.2ZM732.28,595.97l0.58,-0.24l0.31,-0.85l2.05,-0.07l0.82,-0.77l-0.15,0.44l0.33,0.43l0.57,0.27l0.87,-0.12l0.27,-0.56l-0.49,-0.38l0.34,-0.54l3.04,0.74l-0.61,1.1l-1.66,0.72l-0.69,-0.27l-0.4,0.48l0.23,0.56l1.17,0.17l1.22,-0.71l1.06,0.5l-0.52,0.23l-0.72,-0.36l-1.73,0.72l-0.7,-0.41l-0.43,0.21l0.07,0.72l-2.34,0.35l-0.23,-0.32l-0.42,0.14l-1.05,-0.38l-0.7,-0.82l-0.09,-0.98ZM739.29,598.17l2.1,-0.05l0.53,-0.37l0.28,-1.21l-0.84,-1.05l0.45,-0.49l1.75,0.88l-0.59,1.03l0.42,0.67l-0.8,0.67l-2.09,0.15l-1.22,-0.24ZM714.15,602.68l0.08,-2.85l0.14,-0.62l0.69,-0.58l1.42,0.16l0.86,0.87l1.54,0.53l2.4,1.52l0.34,1.38l-0.27,1.81l0.3,1.07l-0.71,1.32l-0.16,1.48l-1.26,0.41l-0.42,0.44l-0.49,-0.3l-3.93,-5.3l-0.54,-1.36ZM716.43,550.62l-0.71,3.63l0.23,0.44l0.48,-0.13l1.04,-1.41l1.85,6.22l-0.1,3.24l-0.8,1.63l-0.4,1.91l0.62,0.99l1.01,5.3l1.24,2.48l-0.44,0.21l-1.5,-1.54l-0.22,-1.47l-1.21,-1.84l-1.31,-4.7l-1.24,-1.91l0.39,-2.66l-1.62,-2.02l-1.53,-1.18l-0.63,-1.12l3.97,0.67l0.47,-0.39l0.01,-0.4l-0.22,-0.37l-3.82,-1.87l-1.44,-3.56l-0.14,-2.66l1.23,-1.17l3.55,1.03l1.25,2.65ZM683.87,566.62l0.82,-0.34l0.8,-0.88l1.45,-0.46l0.08,-0.83l0.87,-0.61l0.58,0.73l0.55,-0.13l0.41,-0.58l0.17,-1.51l1.04,-0.69l0.5,-1.03l-0.41,-0.52l-0.74,0.12l-0.99,1.05l-0.08,-0.71l-0.45,-0.02l-0.64,0.9l0.05,0.81l-0.54,0.51l-0.81,-0.55l1.63,-2.05l0.19,-0.68l-0.24,-0.45l0.46,-0.46l-0.17,-0.6l0.39,-1.23l-0.4,-1.38l-1.47,-0.71l-0.71,0.09l-0.35,-0.71l0.13,-0.52l0.67,-0.1l0.56,-0.73l-0.19,-1.12l-0.59,-0.32l-0.43,0.24l0.29,0.85l-0.4,0.18l-0.73,-0.1l-0.04,-0.61l0.8,-0.47l0.7,-1.12l0.12,-1.83l1.21,-4.39l-0.31,-1.54l-0.97,-1.25l-0.04,-1.35l-0.85,-1.18l-1.45,-5.39l0.57,-0.48l0.79,-0.07l5.57,4.31l1.21,1.53l4.08,0.2l1.48,-0.5l0.79,-0.71l0.48,-4.94l-0.64,-1.15l0.2,-0.38l0.89,1.25l0.97,6.46l1.1,2.93l0.41,3.91l1.25,4.43l2.01,3.83l3.0,1.37l-0.01,1.13l0.5,0.99l2.54,2.61l-0.71,0.79l-2.19,-0.25l-1.56,1.93l-0.05,1.15l1.79,1.51l0.32,0.79l1.32,0.26l0.73,-0.92l1.01,0.75l0.38,2.22l-2.73,1.62l-0.49,0.89l-0.0,1.47l-0.5,1.64l1.03,3.89l0.89,0.78l0.21,1.21l0.61,0.38l1.02,-0.17l0.23,0.85l0.58,0.49l-0.9,-0.17l-0.86,0.73l-0.18,0.54l0.91,4.37l0.32,0.55l0.41,0.06l-0.13,0.96l0.69,1.85l-0.45,2.67l-1.5,2.1l0.11,0.6l-0.69,1.09l-1.35,0.11l-0.37,0.43l0.22,2.29l-0.72,3.16l-0.98,1.82l-0.29,3.69l-1.18,3.27l-0.79,0.22l-0.97,1.66l-0.56,2.71l-0.83,0.83l-5.57,-0.72l-1.75,0.39l-5.19,0.13l-2.21,0.42l-3.05,-0.06l-3.41,-0.98l-0.17,-0.4l0.86,-1.8l1.08,-0.62l0.34,-0.53l1.8,-0.77l0.03,-0.32l1.11,-0.09l1.14,0.91l1.87,-1.28l0.43,0.59l1.96,0.22l3.04,-3.02l0.9,1.5l0.89,0.57l0.71,0.05l0.75,-0.43l0.65,-1.17l-0.33,-0.71l0.63,-1.29l2.54,0.42l0.9,-0.37l0.34,-0.45l-0.36,-0.45l-4.41,-0.52l-0.01,-0.27l1.44,-1.53l-0.13,-1.18l0.85,-0.31l0.21,-0.56l0.3,-3.23l-0.17,-0.97l0.64,-1.64l-0.52,-0.64l2.53,-2.08l1.88,-3.5l0.72,-3.11l-1.41,-3.41l-0.43,-0.44l-0.77,-0.02l-0.88,2.58l0.23,0.66l1.05,1.02l-0.54,1.67l-0.68,0.95l-0.26,-2.16l-0.87,-0.91l-0.86,-0.14l-0.66,-1.39l-0.77,-0.7l-0.45,-1.54l-0.39,-0.56l-0.45,-0.06l-0.08,-0.77l-1.65,-2.26l-0.96,-0.03l-1.85,1.45l-0.25,-0.35l0.49,-0.29l-0.08,-0.61l-0.42,-0.27l-1.69,-0.08l-3.97,-1.51l-1.97,0.21l-2.72,0.9l0.54,-12.05ZM714.31,579.29l0.18,-0.1l0.28,-0.3l-0.33,0.47l-0.13,-0.07ZM686.84,564.03l-1.1,0.33l-0.54,-0.25l0.52,-0.63l1.12,0.55ZM693.87,591.96l1.22,0.29l-0.02,0.74l0.48,0.28l0.08,0.85l-0.52,0.25l-0.83,-0.3l-2.27,0.92l0.71,-3.07l1.14,0.04ZM695.23,590.41l-0.37,0.2l-1.38,-0.3l-0.37,-2.15l1.09,0.5l1.03,1.76ZM688.63,590.58l0.49,3.0l-1.94,1.41l-2.28,1.11l-4.24,-0.48l1.86,-2.43l0.3,-3.1l0.84,0.94l0.52,0.07l0.02,-0.77l1.47,-1.66l1.27,0.35l1.7,1.56ZM685.42,560.75l-0.08,-0.26l0.68,-0.66l-0.23,0.7l-0.36,0.21ZM685.28,561.34l-0.31,1.13l-0.05,0.04l-0.2,-0.5l0.56,-0.67ZM683.97,563.84l0.0,0.42l-0.05,0.1l0.02,-0.52l0.03,-0.0ZM684.05,564.86l-0.01,0.06l-0.15,0.08l0.01,-0.15l0.15,0.02ZM667.57,618.79l0.6,-1.0l2.68,-0.99l2.06,-1.75l1.96,-0.68l0.69,0.09l1.56,0.7l1.05,1.2l0.19,0.93l1.24,0.58l1.1,-0.11l0.23,0.94l1.13,0.52l0.26,0.63l1.05,0.18l0.69,0.78l-0.04,0.89l-1.11,-0.15l-0.44,0.25l0.05,1.13l-0.31,0.56l0.3,0.34l2.3,-0.11l0.22,1.53l-1.6,0.15l-0.55,0.33l-1.3,-0.18l-0.53,1.06l-1.59,0.03l-1.46,-0.56l-0.34,-0.61l-1.87,-1.42l-0.12,-1.29l-1.18,-1.27l-0.21,-0.73l-0.7,-0.52l-1.46,-0.37l-1.0,0.94l-1.12,-1.09l-2.44,-0.94ZM681.89,626.91l0.28,-0.13l0.13,0.06l-0.14,-0.0l-0.27,0.07ZM683.02,626.8l0.24,-0.21l0.31,0.04l-0.09,0.22l-0.46,-0.06Z", "name": "Queens"}}, "height": 806.1671367095423, "projection": {"type": "mill", "centralMeridian": 0.0}, "width": 900.0}); \ No newline at end of file diff --git a/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-za-mill-en.js b/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-za-mill-en.js deleted file mode 100644 index 90d8cc1f4..000000000 --- a/public/assets/global/vendor/jvectormap/maps/jquery-jvectormap-za-mill-en.js +++ /dev/null @@ -1 +0,0 @@ -jQuery.fn.vectorMap('addMap', 'za_mill',{"insets": [{"width": 900, "top": 0, "height": 1182.5061736225139, "bbox": [{"y": 2504518.996929638, "x": 1834359.851696376}, {"y": 5651894.636486174, "x": 4229812.948506281}], "left": 0}], "paths": {"ZA-WC": {"path": "M899.55,1165.29l-1.23,0.4l-1.82,-0.23l-0.95,-0.54l0.09,-0.68l1.22,-0.63l1.67,-0.06l1.06,0.71l-0.04,1.03ZM894.93,1180.92l-1.04,0.85l-1.08,0.32l-1.02,-0.32l-5.3,-0.07l-1.99,-0.44l-0.66,-0.76l-0.25,-1.1l3.43,-3.77l1.18,-0.3l1.31,0.16l3.74,0.96l1.9,1.92l0.93,0.38l-1.14,2.17ZM55.18,406.6l1.23,0.35l0.51,-0.36l0.32,-4.79l2.06,-2.69l0.56,-3.18l2.5,-2.31l0.96,-3.12l1.87,-1.72l1.17,0.06l4.08,2.06l4.12,-1.81l2.12,-2.91l1.77,-3.16l1.1,-3.56l1.83,-3.18l1.88,1.01l0.56,-0.19l0.56,-1.27l1.03,-0.84l1.97,-0.2l7.14,4.76l2.62,3.61l1.87,1.81l3.9,1.33l-0.03,5.11l-1.29,2.03l0.87,2.62l-0.95,3.16l1.38,8.74l0.94,2.35l1.52,1.9l-0.3,2.09l0.78,4.31l0.02,1.99l0.47,1.27l0.98,0.82l0.96,2.69l-0.51,4.0l0.73,3.93l-0.22,1.96l-0.88,1.61l-0.69,3.06l0.37,0.49l2.66,0.27l1.91,1.12l1.14,-0.41l1.48,0.22l2.21,-1.48l-0.55,1.99l0.18,1.15l1.76,0.99l1.37,2.35l1.36,0.35l0.72,0.56l1.54,-0.34l1.45,1.64l1.2,0.17l-0.13,3.23l0.74,3.45l-1.9,2.03l-0.91,1.71l0.61,3.67l2.0,3.62l-0.49,5.67l2.54,2.52l0.45,0.08l2.41,-1.1l0.39,-1.03l-0.92,-1.77l1.49,-4.62l0.55,-0.45l0.96,0.4l2.24,-0.74l1.21,-1.46l2.84,-1.53l2.82,-0.1l2.44,-0.69l3.85,-2.92l1.36,-1.7l1.22,-0.64l2.5,-2.48l0.92,-0.13l0.52,0.39l1.05,1.95l0.0,1.63l-3.0,3.78l-2.46,2.29l-0.14,2.29l0.7,2.99l1.2,3.52l2.0,4.12l0.66,2.52l1.06,1.33l2.9,1.93l2.29,2.56l0.83,1.4l3.16,2.24l2.81,-0.5l2.39,-1.09l2.55,0.87l4.31,-0.22l3.43,-2.82l0.85,-2.4l0.77,-4.31l1.61,-1.69l2.94,-1.0l4.31,-0.78l3.26,-1.45l2.48,-4.57l0.79,-2.39l2.54,-1.27l2.11,-2.52l4.93,-1.34l4.2,-2.74l1.3,-2.25l1.9,-0.9l1.2,-0.22l1.87,0.33l1.55,-0.46l5.8,1.4l2.69,-0.63l2.42,-1.62l3.54,-4.42l1.13,-0.39l0.89,-1.77l-0.99,-2.79l0.5,-4.9l0.56,-1.28l1.74,-0.48l4.94,-11.5l0.97,-1.3l7.45,3.67l1.54,1.11l1.9,1.91l2.01,2.74l3.77,1.21l2.64,1.47l2.83,0.13l1.93,0.75l2.99,0.16l3.23,1.28l0.48,2.07l1.34,2.04l0.6,0.08l5.52,-4.99l3.81,-5.46l2.6,-1.36l1.83,-1.78l5.1,0.04l4.25,-1.05l2.83,0.35l4.4,2.65l0.39,1.94l2.4,1.51l2.99,-1.74l1.25,-1.67l1.13,-0.42l0.91,0.12l1.97,2.46l3.12,0.76l0.28,0.77l-1.09,1.98l-0.16,1.43l1.24,0.94l0.81,1.06l0.25,0.9l-0.93,1.27l-1.28,0.83l-0.55,0.8l-0.15,1.47l-0.56,0.78l0.09,1.75l-0.34,0.94l-1.51,0.79l-1.0,1.48l-5.78,2.39l-5.47,-1.45l-1.57,0.63l-2.01,1.43l-1.65,3.18l-1.27,0.73l-6.38,0.71l-2.06,0.95l-2.95,-0.28l-3.75,3.34l-0.38,4.07l1.08,1.88l0.57,1.99l0.24,1.51l-0.17,2.15l1.47,1.82l0.78,1.63l1.42,1.29l-1.39,1.41l-2.6,-0.2l-2.8,0.22l-3.17,1.17l-1.65,-2.27l-0.82,0.15l0.21,3.01l-0.48,0.79l-2.5,1.1l-1.99,2.55l-0.3,1.53l-1.26,1.77l0.53,2.17l-0.59,1.7l-7.11,10.83l-0.42,1.78l0.55,2.01l0.37,0.29l6.52,0.16l5.22,-0.7l9.64,0.41l7.29,1.57l3.03,1.28l2.01,1.54l0.78,3.06l1.99,2.56l-0.41,0.78l-7.44,3.13l-3.09,3.31l0.25,0.68l3.79,0.34l1.12,-0.35l0.89,0.14l1.4,0.53l0.9,1.23l4.74,2.17l-1.7,2.57l-0.08,1.93l-1.82,0.07l-7.76,1.9l-1.54,1.2l-0.5,1.17l0.27,1.2l0.41,0.44l-12.58,-1.12l-0.41,-1.71l-2.7,-0.86l-0.05,1.14l1.47,1.32l-1.76,-0.27l-1.99,0.35l-3.26,-0.96l-2.2,-1.14l-0.33,-0.96l0.92,-0.27l-0.79,-0.98l-2.98,-0.55l-0.39,0.59l1.39,1.81l-5.13,-1.63l-2.07,-0.1l-1.65,0.48l-2.22,1.7l-1.61,0.8l-1.77,0.38l-5.65,-0.37l-3.68,0.84l-1.72,0.98l-1.82,2.34l0.15,1.05l0.97,0.98l-6.14,1.0l-1.65,0.67l-1.3,1.39l0.06,2.26l-1.11,1.73l-2.58,1.45l-3.38,0.9l-1.74,0.1l-4.3,-0.82l-1.51,-0.87l-1.19,-0.26l-4.13,1.11l-1.11,1.11l-2.69,1.11l-1.71,0.24l-1.72,-0.13l-8.54,-2.74l-4.11,-0.35l-2.08,0.21l-4.66,1.81l-0.23,0.42l0.33,0.34l1.04,0.16l0.84,0.6l0.38,0.75l-0.23,0.65l-0.51,0.19l-7.41,-1.24l-5.85,0.75l-1.86,0.79l-1.6,1.2l-2.97,3.51l-1.48,0.5l-0.89,1.11l-2.37,1.11l-0.86,0.75l-0.82,1.35l-3.06,0.94l-3.17,2.16l-1.27,1.57l0.44,1.52l-2.03,0.87l-1.7,-0.57l-4.2,-2.85l-6.71,0.19l-2.11,0.9l-0.67,-0.85l-2.07,-1.19l-3.16,-2.98l-2.2,-1.19l-2.06,-1.79l-1.34,-0.18l-1.71,0.77l-0.64,-0.22l2.42,-3.39l-0.18,-1.5l-0.69,-1.61l-1.73,-2.48l-0.8,-0.55l-0.7,-0.13l-2.87,0.56l-2.47,-0.16l-0.89,-0.54l-1.05,-1.54l0.71,-0.24l0.5,-0.69l0.76,-2.14l-0.1,-0.45l-1.18,0.34l-1.36,1.83l-3.64,-0.15l-5.32,1.07l-1.4,1.02l-0.57,-0.22l-0.26,-0.38l0.37,-1.0l-0.3,-1.81l1.22,-2.32l-0.71,-3.09l0.87,-0.73l0.54,-1.27l-1.76,-2.51l-0.91,-0.52l-2.54,-0.58l-3.91,-0.35l-3.91,0.18l-3.42,1.63l-1.48,1.56l-0.29,1.13l0.19,0.78l0.71,0.71l0.59,2.27l-0.35,3.47l0.23,1.17l-0.55,-0.27l-1.52,-1.52l-0.97,-1.79l0.13,-1.9l-0.59,-0.53l-0.41,-1.22l-0.55,-0.67l-1.1,-0.35l-0.31,-0.71l0.27,-0.7l0.87,-0.64l0.24,-1.82l0.43,-0.88l-0.4,-0.6l-1.0,0.21l-0.37,-0.94l1.47,-2.07l0.85,-2.66l1.16,-0.87l2.89,-0.17l0.88,-2.01l-0.23,-1.24l-0.77,-1.17l-1.37,-5.63l-1.33,-2.97l-3.38,-3.23l-0.22,-3.23l-1.36,-2.49l-1.31,-1.33l-4.22,-2.77l0.28,-0.76l-0.28,-1.02l-3.04,-5.33l1.29,0.53l0.65,-0.36l0.02,-1.0l-0.96,-0.99l-0.54,-1.59l-0.84,-0.25l-1.13,-1.17l0.02,-2.37l-0.78,-1.74l-1.29,-0.64l-2.55,0.09l-0.3,0.58l0.28,0.55l-1.05,0.65l-0.17,-0.19l-0.88,-2.33l0.22,-0.94l-0.92,-2.63l0.75,-1.94l-1.3,-1.9l1.97,-1.27l0.35,-3.05l2.21,-0.86l0.54,0.98l2.25,1.93l1.8,0.68l1.98,-0.44l6.5,-5.88l1.07,-1.97l1.59,-5.5l0.17,-1.91l-0.2,-3.3l-0.71,-1.79l1.2,-1.93l0.19,-1.88l-1.62,-6.19l-0.47,-4.93l-0.98,-3.02l0.04,-2.99l-1.73,-3.06l-0.04,-1.29l-1.64,-4.88l-5.27,-7.61l-1.99,-1.99l-0.62,-1.6l-2.02,-1.87l-1.6,-2.37l-1.19,-0.91l-0.95,-3.34l-2.24,-1.9l-1.54,-2.56ZM67.17,500.46l-1.74,-1.56l-1.51,-0.66l-1.17,-1.77l1.24,-0.31l1.1,1.63l-0.02,0.59l2.08,2.08Z", "name": "Western Cape"}, "ZA-FS": {"path": "M335.68,343.81l-0.39,-1.06l-1.6,-0.2l-1.18,-0.82l-1.81,-2.28l-0.88,-2.72l22.23,-45.35l0.07,-0.92l-1.15,-1.2l-0.27,-1.14l0.16,-2.76l0.75,-2.33l1.2,-2.14l0.93,-3.3l0.09,-1.51l-0.85,-1.38l2.23,-2.05l1.31,-2.2l1.22,-3.37l0.41,-2.43l1.04,0.12l0.88,-0.64l1.49,-2.31l-0.1,-0.99l1.16,-1.99l1.84,-0.3l1.52,-1.33l1.62,-2.24l-0.17,-1.0l1.42,-1.48l2.28,-0.47l3.63,-3.02l2.61,-0.67l0.65,-0.59l1.37,0.21l1.32,-0.69l0.68,-0.74l2.24,0.81l0.61,-0.06l1.99,-1.74l4.28,-2.37l0.95,0.06l1.08,1.24l0.87,0.49l1.83,-0.0l3.16,0.68l0.96,3.38l0.8,0.4l1.46,-0.32l0.5,-0.91l-0.68,-1.84l1.02,-1.87l0.9,-1.17l3.66,-3.34l1.08,-0.31l0.49,-0.48l0.31,-2.28l0.62,-0.8l1.82,-0.71l0.86,0.54l0.45,-0.04l0.66,-1.12l0.7,-0.35l1.93,0.27l4.58,-0.17l-0.11,-0.98l-2.18,-0.73l-0.16,-0.35l0.65,-1.35l0.79,-0.51l-0.06,-2.82l-2.94,-3.21l0.57,-0.7l2.46,-0.72l1.71,-1.73l1.57,0.26l0.75,-0.78l-0.04,-1.87l1.29,-1.52l0.98,-0.54l2.07,0.78l0.38,-0.27l0.5,-1.56l1.81,-1.41l1.43,-0.68l0.85,0.56l0.51,-0.13l1.36,-1.14l2.29,1.78l0.62,-0.36l-0.15,-2.88l0.34,-0.66l1.26,1.77l1.52,0.75l1.92,0.26l5.2,-0.31l-0.17,1.23l0.83,0.47l2.62,-1.62l2.7,-2.78l0.97,-0.15l1.67,1.37l0.84,0.28l3.78,-1.02l1.46,-2.11l0.34,-2.22l0.4,-0.35l1.62,-0.21l0.37,-0.51l-0.01,-0.68l1.3,-0.3l1.13,1.49l3.51,-0.32l0.65,0.74l0.94,0.13l0.58,-0.51l0.09,-0.77l1.45,-0.57l2.89,-0.5l1.94,-2.02l1.11,-0.54l1.07,0.9l-0.46,0.89l0.4,1.06l2.45,3.9l1.92,0.92l1.89,1.68l0.49,-0.02l0.8,-0.64l0.34,0.99l0.97,0.89l2.56,-0.39l2.8,1.65l2.9,0.23l0.54,1.3l0.84,0.81l0.7,0.06l0.99,-0.83l0.76,-0.02l1.38,1.69l0.99,0.41l-0.56,1.59l0.52,0.49l2.96,-2.1l2.15,-0.25l0.17,-0.9l-1.09,-0.99l0.6,-0.31l1.68,0.63l3.2,2.05l2.31,1.04l1.21,-0.37l0.6,0.5l0.71,0.09l1.4,-1.28l1.82,-0.94l1.07,0.05l2.52,1.37l0.2,1.85l2.37,3.74l0.72,0.15l1.28,-0.69l2.17,0.17l1.64,1.34l2.09,1.15l1.18,0.29l-0.08,0.93l0.55,0.6l2.57,-0.29l1.57,0.88l0.53,0.72l0.43,1.54l0.67,0.73l0.12,0.99l2.29,2.07l-0.21,0.63l0.23,0.7l3.64,4.2l0.86,0.08l1.06,-0.67l1.19,-0.13l0.41,-0.46l0.13,-1.13l1.39,-0.43l-1.08,0.63l-0.33,2.13l0.33,0.61l1.72,0.62l0.37,2.18l-2.72,1.62l-1.05,1.37l0.02,0.82l0.96,1.8l-0.17,2.8l0.78,1.43l-2.23,4.42l-0.1,2.63l-0.98,1.37l-0.77,2.29l0.45,1.18l1.53,1.56l-0.04,1.93l-1.9,1.81l-1.29,2.36l-2.87,0.23l-1.1,0.4l-3.7,4.26l-2.64,1.18l-1.64,1.87l-2.95,0.71l-1.82,2.24l0.24,1.35l-0.3,0.74l-1.92,0.62l-1.76,-0.34l-2.31,0.44l-3.15,1.17l-1.63,1.81l-0.24,1.98l-1.39,1.42l-1.33,3.48l-2.53,-0.82l-1.17,-2.12l-0.72,-0.62l-1.89,-0.13l-1.29,-4.01l-1.42,-1.27l-0.9,0.0l-2.49,1.57l-6.52,0.54l-0.98,0.37l-1.01,0.94l-1.1,1.81l-1.43,0.88l-1.74,0.02l-0.98,-0.36l-3.45,0.29l-2.27,3.12l-3.42,3.9l-0.25,0.91l-1.07,0.02l-1.19,-1.05l-1.0,-0.19l-1.01,0.54l-0.92,1.89l-0.9,0.39l-4.67,-0.3l-0.4,0.55l0.2,0.49l-1.26,0.79l-0.39,1.87l-0.52,0.2l-1.23,1.54l-1.06,0.35l-0.26,0.55l0.77,1.02l-0.77,-0.07l-0.28,0.31l0.08,1.3l-0.86,1.53l-2.32,2.72l-1.51,1.05l0.21,2.08l-2.25,0.81l-0.87,0.63l-0.3,1.79l-1.43,1.01l-0.24,0.51l0.47,1.48l-2.13,2.2l-0.67,1.54l-1.31,0.21l-0.64,1.48l-1.51,0.95l-5.62,1.7l-1.66,1.55l-0.19,-0.39l-0.77,-0.2l-0.82,0.99l-0.39,-0.26l-0.76,0.16l-0.89,2.37l0.2,0.53l1.91,1.29l1.18,1.69l4.94,11.09l2.87,2.62l1.93,4.46l2.79,0.47l-0.61,0.72l-0.95,2.34l0.1,1.43l0.9,2.38l-0.05,0.5l-0.48,0.21l-0.19,0.55l0.86,1.84l1.32,0.15l-0.36,0.48l-1.56,-0.07l-1.04,0.34l-0.34,1.12l1.1,1.03l-0.27,0.16l-1.26,-0.55l-0.69,0.12l-0.34,0.46l0.08,0.78l1.0,0.61l-0.75,0.85l-1.14,-0.01l-1.05,-0.64l-1.26,0.41l-0.83,0.69l-2.27,0.01l-0.32,0.38l0.19,0.9l-0.54,0.4l-2.42,-0.59l-2.59,0.63l-0.17,0.55l1.33,1.8l-1.46,-0.14l-1.14,0.36l-0.76,0.59l-0.5,0.93l-0.01,1.13l-2.26,0.28l-0.96,0.81l-1.64,-1.36l-1.33,-0.18l-1.43,0.85l-1.25,0.1l-0.96,0.61l-1.03,-0.38l-1.01,0.23l-0.25,-0.44l-0.88,-0.35l-2.8,-0.05l-2.68,-1.38l-0.34,-1.58l-1.41,-1.39l-5.65,0.96l-1.08,-0.09l-0.87,-1.63l-2.26,-0.79l-1.35,-1.62l-1.26,-0.29l-0.69,0.55l-0.13,1.32l-2.98,-0.54l-3.14,0.99l-1.8,1.33l-1.21,-0.9l-0.95,-0.1l-1.02,0.81l0.05,1.38l-0.37,0.48l-3.54,2.68l-1.97,0.96l-3.74,-1.14l-0.43,-1.78l-0.5,-0.48l-1.43,-0.17l-4.55,0.47l-4.31,-3.05l-2.96,-0.12l-0.66,-1.41l-0.66,-0.63l-3.06,-1.9l-2.25,-2.58l-3.62,-3.14l-0.57,-2.13l-2.02,-0.97l-1.49,-2.16l-1.63,-0.66l-5.1,-9.72l-4.03,-1.04l-0.71,-0.67l-0.67,-2.64l-0.65,-0.42l-1.66,-0.26l-1.1,-0.66l-2.32,-2.49l-1.44,-0.04Z", "name": "Orange Free State"}, "ZA-EC": {"path": "M276.69,482.56l1.07,1.49l0.73,0.08l3.02,-1.15l2.7,-0.22l2.69,0.21l2.13,-1.96l-0.02,-0.58l-1.67,-1.51l-0.75,-1.58l-1.3,-1.44l0.16,-2.03l-0.27,-1.72l-0.59,-2.06l-1.03,-1.71l0.21,-3.44l3.25,-3.05l2.86,0.27l2.18,-0.97l6.56,-0.76l1.6,-1.0l1.53,-3.05l1.89,-1.35l1.3,-0.51l3.53,1.17l1.98,0.27l6.0,-2.48l1.05,-1.51l1.55,-0.82l0.62,-1.4l-0.07,-1.78l0.52,-0.67l0.14,-1.44l1.69,-1.42l1.13,-1.8l-0.39,-1.29l-0.91,-1.2l-1.0,-0.57l0.12,-1.03l1.16,-2.18l-0.41,-1.15l0.24,-1.15l0.87,-0.32l2.58,-0.01l3.84,-1.37l6.85,-0.67l0.36,-0.37l0.54,-7.01l0.47,-2.45l0.83,-1.2l0.62,-3.0l5.37,-0.17l3.07,-0.45l3.37,-1.3l1.14,-1.2l1.69,-0.72l2.29,-1.64l3.97,-0.89l6.23,-2.85l5.52,1.18l1.52,-0.84l0.49,-2.47l2.39,-2.98l0.26,-1.18l1.1,-1.9l-0.15,-1.64l1.06,-1.58l0.35,-1.24l-0.75,-3.12l1.39,-2.99l-1.63,-2.39l-0.6,-6.06l4.25,-0.42l1.12,0.15l0.3,1.57l0.49,0.62l2.88,1.08l1.47,0.14l2.2,-1.07l3.66,-2.79l0.62,-0.98l-0.15,-1.07l0.58,-0.43l2.03,1.07l2.02,-1.45l2.94,-0.92l3.1,0.56l0.39,-0.28l0.25,-1.57l0.71,0.13l1.41,1.65l2.12,0.71l0.29,0.91l0.86,0.88l1.41,0.1l5.31,-0.98l0.97,1.03l0.31,1.54l0.62,0.58l2.62,1.22l2.81,0.06l0.41,0.17l-0.21,0.29l0.38,0.63l1.66,-0.51l1.51,0.29l0.74,-0.55l1.36,-0.14l1.16,-0.78l0.86,0.07l1.17,1.17l0.99,0.31l1.18,-0.87l2.41,-0.37l0.57,-0.84l-0.24,-0.74l0.9,-1.04l2.85,-0.35l0.19,-0.46l-0.27,-0.88l-0.96,-1.07l1.85,-0.32l2.44,0.59l1.09,-0.68l0.01,-1.1l1.87,0.09l1.04,-0.76l1.13,-0.28l0.57,0.55l2.06,-0.18l0.99,-1.4l-0.08,-0.45l-1.03,-0.77l1.4,0.59l1.21,-0.56l0.06,-0.65l-1.23,-0.95l0.03,-0.3l2.33,-0.15l0.93,-1.01l-0.25,-0.88l-0.71,-0.38l-0.59,0.11l-0.52,-1.09l1.96,0.13l1.62,-0.39l0.98,2.04l2.1,1.17l0.35,0.96l2.02,2.27l0.52,1.66l2.61,1.92l2.32,2.49l2.81,1.23l1.93,0.23l1.49,-0.48l1.43,0.99l1.77,0.69l4.97,0.42l0.95,0.39l0.55,-0.37l0.09,-3.15l1.63,-1.52l0.88,-2.47l-0.08,-1.07l-0.53,-0.99l4.39,-3.78l0.31,-1.15l-0.11,-1.05l-1.24,-0.96l-0.24,-0.98l1.31,-1.01l2.5,-0.71l1.85,-1.9l1.1,-1.94l0.69,-0.57l2.99,0.13l3.42,-1.52l2.57,0.79l1.69,0.01l9.23,-2.99l6.22,-3.84l2.26,2.76l1.75,1.51l0.15,1.14l-1.79,2.19l-1.43,-0.05l-2.21,1.28l-0.13,0.65l0.43,0.83l-0.95,0.54l-1.24,1.57l-1.19,0.08l-1.87,2.34l-2.92,-1.2l-0.67,0.23l-1.44,3.63l0.84,1.82l-0.52,2.71l0.83,1.56l1.86,0.44l1.91,2.42l4.24,0.82l0.92,-0.58l0.32,-2.55l0.47,-0.27l2.8,1.38l0.25,1.98l0.57,0.57l7.0,1.87l2.58,1.24l1.06,-0.05l0.95,-0.8l2.48,-0.08l1.57,-0.8l6.03,3.38l2.21,-0.25l4.02,1.56l0.83,-0.5l0.6,0.01l1.07,1.09l3.31,2.15l0.99,0.18l0.65,-0.24l0.21,0.92l1.26,1.52l1.23,0.08l0.99,0.68l1.26,0.18l0.5,1.53l1.96,1.35l0.67,4.18l1.27,0.95l0.28,1.39l0.78,0.66l-2.79,3.55l-1.27,0.91l-1.33,2.72l-2.16,2.42l-6.05,5.46l-3.27,1.04l-1.86,1.1l-2.91,3.79l-1.28,0.63l-0.63,1.29l-1.45,0.56l-2.1,1.98l-3.31,1.63l-2.2,0.36l-0.34,0.66l0.22,0.51l-0.71,1.49l-1.23,0.69l-0.83,1.99l-2.77,2.42l-2.62,4.53l-2.79,1.28l-2.13,3.87l-5.12,5.22l-4.29,5.57l-2.16,1.27l-6.05,5.42l-0.99,1.35l-1.41,0.88l-2.32,2.55l-0.59,1.4l-7.61,5.3l-0.32,0.87l-0.82,0.61l-5.21,3.01l-2.43,0.72l-1.14,1.04l-0.81,1.29l-0.71,2.37l-5.04,4.21l-1.35,0.5l-1.58,1.58l-0.18,0.73l-1.9,0.82l-0.89,0.91l-4.03,1.46l-5.13,4.81l-3.01,1.11l-1.86,1.92l-0.79,-0.16l-0.57,0.26l-0.27,1.09l-0.9,0.92l-3.11,2.17l-0.77,-0.16l-0.37,0.67l-4.77,3.29l-3.16,1.45l-1.02,0.85l-0.7,1.26l-1.22,0.26l-3.58,1.83l-2.72,0.52l-2.42,1.95l-2.87,0.46l-5.93,2.48l-0.82,1.24l-0.92,0.15l-3.97,1.88l-3.21,0.48l-4.7,-0.45l-1.48,0.45l-2.52,-1.25l-5.57,-1.05l-5.8,-0.3l-3.81,0.53l-3.43,1.02l-3.16,1.46l-1.48,1.09l-1.13,1.36l-0.83,1.61l-0.81,3.82l0.21,0.69l2.49,2.06l1.0,1.53l-1.28,-0.31l-2.75,1.01l-4.64,-0.98l-3.08,0.25l-1.17,-0.62l-1.4,-0.23l-2.96,-1.56l-3.69,-0.92l-3.89,-0.07l-3.8,0.5l-2.53,0.7l-1.77,1.32l0.46,2.16l-1.02,1.49l-2.54,2.17l-0.29,0.71l0.16,0.84l0.92,0.79l-0.84,0.78l-0.55,-0.61l-0.99,-0.3l-2.82,-0.07l-3.27,-0.71l-3.43,0.41l-3.54,-0.88l-1.73,-0.85l-1.55,-1.28l-5.92,-0.88l-4.1,-1.86l-7.46,-0.64l-2.73,-0.83l-4.44,-0.43l-6.91,-1.52l0.0,-1.69l1.9,-2.87l-0.17,-0.58l-5.06,-2.32l-0.93,-1.25l-1.56,-0.59l-1.11,-0.19l-1.17,0.36l-2.86,-0.26l2.31,-2.57l7.49,-3.16l0.8,-1.32l-0.04,-0.44l-2.02,-2.55l-0.79,-3.11l-2.31,-1.88l-3.27,-1.39l-7.42,-1.59l-9.71,-0.42l-5.24,0.7l-6.2,-0.15l-0.43,-1.43l0.32,-1.47l7.14,-10.89l0.65,-1.87l-0.56,-2.0l1.19,-1.69l0.29,-1.5l1.88,-2.4l2.52,-1.11l0.68,-1.23l-0.06,-1.78ZM553.56,356.76l3.19,0.41l1.92,-0.44l0.46,0.35l0.99,2.55l1.79,1.2l1.47,1.93l-0.86,0.45l0.03,0.98l1.42,1.28l1.43,0.55l0.32,1.14l0.84,0.7l0.57,0.06l0.98,-0.53l-0.4,0.93l0.21,0.82l2.33,1.98l0.09,0.26l-1.0,-0.03l-0.57,0.8l-0.77,-0.12l-0.49,0.27l0.01,1.8l-0.74,0.39l-0.5,2.51l-1.25,1.46l-4.12,-1.43l-2.48,-1.56l-1.58,-0.29l-3.11,0.79l-2.7,-0.47l-1.84,-4.78l-1.78,-2.02l-1.71,-5.64l-2.45,-2.31l0.05,-2.64l1.61,-2.04l0.13,-0.83l-0.57,-1.28l0.72,-0.84l1.41,1.08l1.76,0.43l3.13,1.56l2.05,0.56Z", "name": "Eastern Cape"}, "ZA-NC": {"path": "M0.52,289.97l0.55,-0.94l0.09,-1.08l2.72,-1.49l1.73,-0.58l3.11,-2.96l0.26,-0.01l0.77,1.64l0.99,-0.02l0.9,-0.75l1.24,-1.78l0.39,-2.66l0.96,-0.71l0.12,-0.44l-1.47,-2.81l-0.02,-1.34l0.4,-0.19l1.07,0.54l0.75,-0.34l0.21,-1.06l-0.62,-1.15l1.59,-0.35l0.31,-0.41l-0.77,-1.38l1.24,0.23l0.69,-0.63l0.36,-3.62l0.82,-0.87l0.59,0.53l0.63,0.06l1.45,-0.89l1.35,0.19l1.37,-0.98l1.13,-0.37l0.61,0.13l1.69,2.45l1.74,0.64l0.26,0.54l0.08,4.12l0.98,1.27l1.74,0.38l2.62,-0.6l1.17,0.05l1.04,3.38l1.16,1.81l-0.02,2.04l-0.29,0.9l-1.97,1.0l-0.63,0.68l-0.24,1.07l1.48,2.26l0.57,1.77l1.61,0.71l0.34,0.74l-0.77,3.64l0.08,1.37l0.34,0.37l1.71,0.23l5.77,-1.3l0.36,0.24l0.18,0.76l0.17,2.08l1.14,0.67l2.07,0.37l1.76,-0.94l1.22,-0.1l6.89,1.47l2.82,1.42l2.59,2.06l5.29,2.02l5.97,-0.99l3.64,0.85l3.24,-1.11l1.07,0.61l2.43,-1.07l7.9,-1.11l8.56,1.19l2.24,2.71l2.14,0.4l1.14,1.12l1.71,-0.1l4.17,-1.78l1.01,-1.19l1.94,-0.45l0.16,-1.1l-1.77,-3.39l0.8,-2.02l0.83,-0.88l1.83,0.81l5.17,-1.54l1.25,-1.32l1.24,-3.69l0.93,-0.73l1.36,-2.18l0.61,-0.3l4.15,-0.3l2.55,-1.31l3.27,-0.48l2.99,-2.22l1.74,0.12l1.79,-0.37l0.31,-0.37l0.07,-1.36l-0.06,-161.98l1.35,1.62l3.31,2.91l2.22,0.63l3.13,1.85l5.74,4.78l2.83,5.31l-0.36,1.55l0.52,0.73l1.4,0.7l0.26,1.46l1.21,0.83l-0.28,1.08l0.8,1.36l0.58,1.94l1.99,1.1l0.26,1.04l0.53,0.32l-0.13,0.94l0.24,0.34l0.73,0.19l0.85,-0.35l-0.94,0.67l-0.38,2.07l1.92,1.87l0.26,0.9l-1.3,1.13l0.07,0.82l1.24,0.59l-0.26,1.96l1.85,1.34l0.35,0.69l0.83,2.78l-0.44,1.29l0.53,0.4l0.91,-0.36l1.4,3.06l0.36,3.79l-0.09,3.27l0.19,0.98l1.49,2.56l-0.1,0.46l-1.76,2.4l-1.74,3.34l-2.4,2.92l-1.26,2.26l-1.86,1.7l-0.87,4.34l0.16,1.36l1.09,2.01l-0.98,4.04l0.26,3.11l1.03,2.93l1.54,1.51l0.64,1.85l0.65,0.1l6.57,-3.72l2.16,-0.27l3.43,1.71l5.62,1.21l1.39,-0.05l3.6,-1.0l2.32,0.11l3.55,-0.92l1.83,-0.06l3.03,1.07l3.52,0.09l2.54,0.65l1.98,-0.36l2.5,-1.64l1.31,-1.61l0.23,-1.04l-0.42,-2.89l0.36,-0.8l2.26,-0.56l4.03,-0.03l2.73,-0.62l2.57,-1.51l2.18,-2.11l1.64,-2.43l2.14,-5.15l1.64,-1.63l0.47,-0.91l2.76,-0.7l1.16,-0.6l2.18,-2.04l1.44,-2.05l0.8,-0.64l1.15,-0.2l1.82,0.38l0.95,-0.3l1.67,-2.89l1.52,-1.37l2.52,0.13l0.32,12.85l-0.54,0.7l-0.29,2.15l0.62,3.64l0.47,0.81l0.64,0.38l4.56,0.16l1.15,0.84l2.6,0.61l0.84,1.01l1.19,0.02l2.58,1.74l-0.26,2.02l0.16,2.47l-0.12,0.81l-0.64,0.95l-0.31,1.68l1.44,4.58l1.37,1.99l-2.28,0.96l-0.79,1.0l-0.42,2.69l0.2,2.17l1.14,2.21l0.88,0.6l1.91,0.25l5.42,5.47l0.96,0.58l3.99,0.62l3.22,2.31l1.79,0.25l0.75,0.61l0.81,1.6l4.8,0.8l3.45,1.82l2.03,0.63l1.26,-0.25l1.91,-1.9l3.11,0.09l0.76,-0.38l0.43,-0.88l-0.91,-1.41l0.55,-0.8l3.3,0.14l0.37,-0.22l0.23,-0.65l-0.27,-2.6l0.44,-0.85l1.44,2.02l-0.28,6.03l0.47,3.5l1.12,2.12l0.04,2.83l1.15,2.48l0.45,0.22l12.59,-2.75l0.52,1.3l0.27,2.99l-0.18,0.94l-1.65,1.95l-0.94,2.16l0.83,1.59l1.68,0.69l1.03,1.31l0.07,0.69l-0.47,1.24l0.17,0.95l3.4,2.81l0.54,-0.03l1.1,-1.12l0.78,-1.64l2.05,-1.9l0.41,-1.53l0.01,-2.76l1.07,-1.69l1.33,-0.8l0.52,-1.04l0.49,-3.31l-0.1,-1.21l-1.01,-1.05l-0.25,-1.19l0.54,-1.47l-0.23,-1.08l0.24,-1.44l1.95,0.09l0.41,0.46l0.99,3.07l0.61,0.76l1.18,0.31l6.55,-0.08l1.76,0.61l-8.28,9.28l4.51,8.49l1.09,0.28l1.66,-1.19l0.6,-0.07l-0.13,1.53l-1.62,4.12l-0.79,1.21l-2.02,1.59l-0.36,0.81l0.2,0.86l0.67,0.87l-0.1,1.13l-0.91,3.2l-1.18,2.1l-0.78,2.43l-0.19,2.97l0.37,1.51l1.1,1.16l-0.06,0.28l-22.29,45.86l0.99,2.92l1.95,2.46l1.46,1.0l1.31,0.06l0.53,1.14l1.74,0.18l1.87,2.22l1.32,0.82l2.07,0.52l0.5,2.35l1.05,1.09l3.86,0.92l5.02,9.59l0.78,0.62l0.95,0.21l0.81,1.47l0.88,0.81l1.78,0.78l0.6,2.15l3.65,3.17l2.23,2.55l3.12,1.96l1.53,2.19l2.95,0.11l4.14,2.95l0.63,6.37l1.59,2.16l-0.2,0.76l-0.95,1.13l-0.23,1.1l0.76,3.02l-0.25,0.97l-1.11,1.65l0.13,1.72l-1.03,1.74l-0.27,1.19l-2.46,3.12l-0.3,2.13l-0.93,0.6l-5.74,-1.15l-6.31,2.88l-4.0,0.91l-2.4,1.7l-1.65,0.7l-1.06,1.15l-3.36,1.3l-2.82,0.4l-5.72,0.18l-0.39,0.39l-0.59,3.13l-0.84,1.23l-0.5,2.61l-0.52,6.7l-6.57,0.64l-3.92,1.38l-2.58,0.01l-1.14,0.42l-0.47,1.37l-2.79,-0.68l-1.76,-2.34l-1.44,-0.31l-1.53,0.51l-1.36,1.74l-2.64,1.54l-1.59,-1.19l0.06,-0.99l-0.53,-1.0l-1.09,-0.91l-3.72,-1.97l-3.04,-0.37l-1.49,0.15l-2.84,0.91l-5.15,-0.05l-2.09,1.9l-2.76,1.48l-3.85,5.51l-5.07,4.59l-1.04,-1.58l-0.69,-2.36l-3.53,-1.41l-3.09,-0.19l-1.93,-0.75l-2.8,-0.13l-2.49,-1.42l-3.68,-1.18l-1.79,-2.55l-3.59,-3.16l-7.84,-3.87l-0.5,0.12l-1.25,1.69l-4.87,11.35l-1.75,0.5l-0.64,1.48l-0.56,5.22l1.0,2.57l-0.72,1.44l-1.02,0.29l-3.55,4.43l-2.29,1.53l-2.4,0.54l-5.63,-1.41l-1.76,0.46l-1.66,-0.34l-1.48,0.24l-2.16,1.01l-1.34,2.28l-4.11,2.68l-4.89,1.31l-2.26,2.63l-2.49,1.21l-1.05,2.73l-2.21,4.23l-3.04,1.36l-4.31,0.78l-3.23,1.15l-1.84,2.01l-0.8,4.39l-0.8,2.25l-3.11,2.49l-3.84,0.13l-1.49,-0.71l-1.14,-0.16l-2.57,1.12l-2.57,0.46l-1.66,-1.52l-0.93,-0.42l-0.79,-1.34l-2.35,-2.64l-2.97,-2.0l-0.9,-1.16l-0.6,-2.4l-2.01,-4.13l-1.16,-3.43l-0.67,-2.88l0.13,-1.92l2.28,-2.02l3.19,-4.16l-0.06,-2.09l-1.1,-2.05l-0.86,-0.7l-1.74,0.2l-2.55,2.53l-1.27,0.69l-1.31,1.65l-3.75,2.84l-2.19,0.59l-2.81,0.09l-3.1,1.63l-1.21,1.46l-1.83,0.62l-1.26,-0.38l-0.97,0.88l-1.34,3.51l-0.21,1.67l0.86,1.92l-2.03,0.93l-2.2,-2.18l0.59,-5.35l-2.05,-3.81l-0.55,-3.34l2.78,-3.56l-0.73,-3.75l0.13,-3.28l-0.49,-0.61l-1.05,-0.07l-1.63,-1.74l-1.64,0.31l-0.51,-0.49l-1.16,-0.19l-1.37,-2.35l-1.74,-1.07l0.67,-2.75l-0.32,-0.63l-1.01,0.19l-2.09,1.42l-1.2,-0.28l-0.96,0.4l-1.81,-1.08l-2.4,-0.28l0.57,-2.54l0.9,-1.67l0.24,-2.09l-0.73,-4.03l0.51,-4.02l-1.0,-2.9l-1.13,-1.05l-0.29,-0.91l-0.01,-1.92l-0.78,-4.27l0.3,-2.13l-1.61,-2.15l-0.9,-2.24l-1.33,-8.52l0.95,-3.01l-0.85,-2.79l1.27,-1.84l0.03,-5.53l-0.27,-0.38l-3.93,-1.3l-1.77,-1.71l-2.7,-3.69l-7.57,-4.96l-2.46,0.31l-1.19,0.97l-0.54,1.11l-1.87,-1.01l-0.55,0.17l-2.05,3.63l-1.07,3.5l-3.63,5.76l-3.5,1.66l-3.98,-2.02l-1.62,-0.1l-2.32,2.02l-1.05,3.28l-2.4,2.14l-0.69,3.45l-2.0,2.53l-0.38,4.65l-1.62,-0.46l-3.27,-6.16l-2.92,-3.93l-2.29,-4.36l-1.06,-3.92l-3.55,-5.17l0.04,-1.92l-1.0,-1.09l-2.74,-5.2l-3.4,-5.26l-0.96,-4.74l-2.18,-3.63l-1.67,-6.91l-3.38,-8.24l-1.15,-4.46l-0.08,-2.74l-0.99,-2.96l-0.61,-0.68l-0.43,-2.62l-3.09,-8.28l-2.07,-2.75l-0.86,-2.67l-0.84,-1.21l0.01,-1.1l-0.88,-2.13l-0.0,-1.93l-0.72,-1.13l-2.63,-2.22l-1.29,-2.86l-1.92,-2.57l-2.81,-2.34l-0.81,-2.43l-0.15,-2.67l-0.61,-1.46l-0.4,-0.4l-0.81,-0.13l-0.82,-1.77l-1.66,-1.56Z", "name": "Northern Cape"}, "ZA-LP": {"path": "M416.09,110.91l2.68,-2.7l1.54,-3.68l0.99,-1.26l3.86,-2.63l2.91,-3.22l4.48,-1.58l1.7,-1.22l0.49,-0.89l0.8,-3.89l0.09,-2.0l2.93,-11.73l0.17,-1.24l-0.25,-0.91l1.11,-1.96l0.05,-1.66l1.65,-3.24l0.91,1.14l0.97,-0.04l0.64,-0.46l0.14,-0.98l-0.28,-1.02l1.5,-1.19l0.39,-0.81l0.61,0.22l0.58,-0.21l0.12,-0.91l-0.62,-0.86l0.67,0.41l0.65,-0.05l0.33,-0.47l0.57,0.24l0.94,-0.22l-0.06,-1.39l3.17,-1.28l1.46,-1.21l1.12,-1.64l0.28,0.83l0.58,0.22l1.54,-1.28l0.17,0.55l0.99,0.29l1.16,-1.21l2.16,-0.23l1.85,-0.86l0.79,-1.04l0.24,-0.99l-0.19,-0.87l1.72,-3.39l1.48,0.44l1.96,-1.33l1.58,1.32l0.95,-0.31l1.68,-3.04l-0.63,-1.07l1.78,-0.19l0.11,-0.9l2.97,-1.02l1.65,-1.17l0.71,-1.5l-0.35,-2.63l2.74,-1.1l1.33,-1.11l0.8,-2.07l-0.32,-1.22l2.16,-0.79l0.69,-1.26l1.56,-0.78l0.45,-0.86l-0.13,-1.69l1.41,-1.87l2.2,-0.66l1.6,-1.81l2.03,-1.29l1.52,-0.4l3.35,-0.23l2.79,0.65l1.63,-0.97l2.63,-0.0l1.54,-0.51l2.99,-1.65l3.67,-0.98l0.74,-0.68l0.47,-1.14l2.79,0.09l0.86,-0.69l1.59,-2.71l-0.28,-3.1l2.2,-2.2l0.92,-1.39l5.33,-0.39l2.23,-1.39l6.37,0.49l3.31,-1.49l3.1,0.59l1.12,-1.21l0.55,-0.12l1.55,0.1l2.14,-0.76l1.0,0.48l3.13,-0.3l3.25,1.81l2.5,0.84l1.99,0.28l2.48,1.06l1.46,1.4l1.71,0.35l2.22,1.36l3.73,-0.08l3.15,1.96l1.57,0.4l3.41,-0.34l3.16,-1.17l4.61,0.27l1.47,0.61l2.54,-1.21l4.62,-0.36l1.36,-0.51l3.65,0.57l6.7,1.81l2.71,-0.88l1.14,1.18l1.34,0.77l0.53,0.16l1.23,-0.31l1.07,1.37l-0.32,0.89l10.76,32.65l0.24,1.26l-0.87,10.03l0.3,2.03l0.85,1.67l3.98,4.18l0.78,1.51l1.62,5.54l2.31,4.86l3.56,2.74l0.59,1.04l0.02,0.41l-0.53,0.16l-1.76,-0.28l-0.76,0.17l-1.95,1.69l-0.43,1.74l-0.31,0.24l-1.33,-0.14l-0.58,-1.09l-0.69,-0.41l-1.16,0.3l-1.22,1.33l-0.88,-0.73l-1.81,0.52l-3.2,-1.04l-1.92,1.57l-1.57,-0.06l-1.59,1.09l-2.31,-0.13l-1.32,1.14l0.25,0.69l8.32,0.69l0.87,1.25l-0.91,1.91l-0.19,2.6l-2.72,6.66l0.64,1.52l-1.02,1.75l0.34,0.6l2.77,0.07l0.17,1.55l0.52,1.0l4.6,3.0l0.9,1.39l-0.37,0.49l-1.23,0.08l-0.73,0.38l-0.99,1.87l-4.65,1.14l-1.8,1.3l-0.47,2.53l0.23,1.33l0.68,0.47l3.5,0.83l0.28,0.4l0.13,1.78l-1.35,1.87l-1.58,-0.33l-3.19,0.09l-0.81,0.42l-1.36,0.11l-0.74,1.09l-1.01,0.26l-4.19,0.34l0.06,-1.83l0.39,-0.87l1.26,-0.61l2.16,-0.45l0.65,-1.12l-1.68,-2.84l-0.67,-2.34l-1.38,-1.39l-1.51,-0.52l-0.16,-0.53l2.69,-1.13l1.11,-1.83l-0.24,-0.8l-0.72,-0.39l-1.99,-0.02l-1.3,-1.13l-1.44,-2.75l-2.66,-0.46l-0.9,-1.31l-4.08,-0.92l-1.26,-0.6l-3.18,-3.08l-0.63,0.1l-0.83,1.62l-0.5,2.38l-2.43,0.62l-0.89,-0.2l-0.94,0.48l-0.88,2.2l-0.62,0.61l-1.47,0.5l-1.99,-0.86l-4.93,-1.14l-1.86,0.51l-3.44,0.34l-1.26,1.28l-2.25,-1.03l-2.43,0.96l-0.24,0.35l-0.12,3.69l0.98,1.93l-0.1,1.26l-0.61,1.21l-7.51,5.22l-4.49,3.7l-0.78,1.33l-1.16,0.53l-0.4,1.41l1.75,2.06l-0.2,0.73l-0.84,0.51l-0.44,1.0l-3.22,0.95l-4.49,-0.77l-2.45,-2.56l-1.73,-1.17l-1.08,-1.92l-2.16,-2.21l-1.07,-0.07l-0.93,0.62l-0.04,-0.28l1.04,-0.87l0.22,-0.83l-0.08,-1.26l-0.87,-2.01l0.1,-0.43l0.7,-0.85l1.0,0.35l1.21,-1.02l-0.25,-3.7l-0.54,-0.35l-3.05,1.16l-1.82,1.15l-3.3,0.94l-1.78,1.74l-1.31,3.29l-3.18,1.45l-1.4,-2.65l-1.02,-1.25l-1.7,-0.39l-1.89,0.22l-0.35,0.4l0.01,2.06l-0.7,-0.24l-6.54,0.08l-6.71,2.96l-0.64,2.97l-0.6,0.56l-4.59,1.58l-0.56,0.84l-3.65,1.87l-0.35,0.93l0.65,1.39l1.35,0.46l3.21,-0.59l2.13,-1.21l3.3,-1.03l1.43,2.36l0.74,0.48l0.06,0.58l-1.79,0.75l-1.34,-0.22l-2.3,0.17l-1.05,0.43l-0.8,0.93l-2.02,0.94l-2.18,0.0l-0.68,-0.51l-2.69,0.26l-2.63,-3.99l-1.57,-0.8l-1.57,0.18l-1.05,-0.41l-0.4,-1.04l-1.39,-1.23l0.06,-0.93l1.14,-0.19l1.62,0.91l1.63,0.16l0.89,-0.68l0.45,-2.16l-0.81,-1.25l-4.61,-2.21l-5.74,-1.11l-1.08,0.15l-1.0,0.65l-6.57,-0.73l-2.05,0.79l-1.46,-1.4l-2.18,0.12l-1.66,0.84l-0.42,2.27l-1.42,2.23l-0.7,0.35l-0.6,-1.47l-0.56,-0.57l-5.2,0.06l-3.13,-2.26l-4.54,-0.76l-0.39,-0.31l-0.96,-1.93l-1.37,-1.38l-1.46,-0.89l-0.92,-1.52l-0.53,-4.48l-0.31,-0.83l-0.7,-0.5l-1.11,0.23l-0.93,1.53l-1.64,1.15l-7.33,3.38l-1.49,-0.0l-4.2,-1.74l-7.36,-0.74l-1.4,-2.84l-0.24,-4.5Z", "name": "Limpopo"}, "ZA-MP": {"path": "M497.76,205.12l0.84,-1.78l3.01,-2.05l1.03,-1.25l1.27,-0.52l0.71,-1.33l0.77,-0.7l1.25,-0.45l1.59,-0.07l0.81,-0.65l4.01,-0.87l5.74,-4.71l0.11,-0.49l-1.82,-3.65l-0.41,-0.22l-4.87,0.69l-4.23,-0.99l-0.26,-1.67l-2.48,-1.84l-1.65,-3.95l-0.6,-0.42l-0.74,-1.67l1.17,-0.7l2.61,-0.33l2.21,-3.39l4.27,0.02l1.48,0.35l0.91,0.64l3.03,0.08l0.4,-0.32l1.78,-5.56l1.44,-0.98l0.93,-1.36l0.21,-2.09l1.07,-3.36l-0.18,-1.11l0.48,-1.05l2.39,-2.25l0.82,-2.86l1.11,-1.22l0.67,-2.13l1.1,-0.48l1.42,-2.25l2.18,0.12l0.38,-0.22l1.3,-2.99l-0.27,-1.08l-0.75,-0.36l-1.52,0.15l-2.21,-0.59l-3.31,0.82l-0.96,0.53l-1.87,-0.55l-2.79,0.4l-1.1,0.79l-1.61,0.49l-2.07,-0.79l-0.05,-0.43l1.59,-1.29l0.7,-1.06l0.09,-1.16l-0.46,-2.14l0.88,0.97l0.96,-0.29l0.22,-2.41l0.98,-1.6l-0.25,-0.57l-0.63,-0.25l-1.89,0.76l-1.53,-1.86l-3.25,0.2l-1.81,1.16l-3.63,0.48l-4.47,1.44l-2.1,1.2l-1.36,0.36l-2.36,-0.01l-0.33,-1.21l3.55,-1.78l0.56,-0.84l0.67,-0.35l3.93,-1.23l0.87,-0.92l0.38,-2.6l5.41,-2.59l1.82,-0.31l2.3,0.22l3.18,-0.21l0.98,0.4l0.55,-0.37l-0.01,-2.29l1.48,-0.17l1.09,0.18l0.94,1.14l1.52,2.88l0.52,0.18l3.73,-1.74l1.28,-2.49l0.18,-0.96l1.55,-1.51l3.12,-0.85l1.87,-1.18l2.5,-0.95l0.25,2.87l-0.69,0.49l-0.48,-0.37l-0.66,0.07l-1.17,1.63l0.85,2.58l0.05,1.03l-1.27,1.56l0.26,1.0l0.76,0.25l1.35,-0.69l2.0,2.05l1.15,1.98l1.76,1.2l2.7,2.72l4.77,0.83l3.64,-1.03l0.71,-1.26l0.89,-0.58l0.3,-1.1l-1.81,-2.36l0.13,-0.49l1.25,-0.63l0.84,-1.37l4.33,-3.57l7.69,-5.39l0.7,-1.38l0.16,-1.6l-0.98,-1.95l0.11,-3.33l1.97,-0.78l2.21,1.03l0.77,-0.4l0.66,-0.9l3.36,-0.34l1.64,-0.49l4.79,1.11l2.31,0.9l1.7,-0.58l0.9,-0.82l0.78,-2.09l4.2,-0.83l1.34,-3.86l2.95,2.83l1.45,0.68l3.95,0.89l0.93,1.33l2.64,0.46l1.17,2.51l1.54,1.33l2.44,0.18l-0.79,1.56l-2.06,0.61l-0.9,1.1l0.54,1.23l1.51,0.5l1.14,1.14l1.41,3.96l0.78,0.75l-0.18,0.43l-2.09,0.44l-1.63,0.89l-0.51,1.22l-0.08,2.36l0.43,0.41l5.94,-0.7l0.74,-1.1l1.18,-0.05l1.0,-0.46l4.86,0.22l1.62,-2.25l-0.07,-2.27l-0.75,-1.0l-3.88,-1.07l0.36,-3.03l1.31,-0.86l4.82,-1.21l1.05,-1.93l1.9,-0.42l0.54,-0.54l0.18,-0.81l-1.2,-1.83l-4.57,-2.97l-0.41,-2.32l-0.39,-0.41l-2.5,-0.06l0.79,-1.36l-0.63,-1.6l2.68,-6.55l0.22,-2.71l0.91,-2.31l-1.37,-1.75l-7.63,-0.68l0.82,-0.42l1.94,0.22l1.68,-1.13l1.34,0.13l1.76,-1.54l3.0,1.03l0.74,0.02l1.01,-0.54l1.04,0.75l0.59,-0.15l0.91,-1.17l0.79,-0.33l0.96,1.39l1.91,0.24l0.84,-0.62l0.37,-1.66l1.76,-1.51l0.94,0.27l1.69,-0.12l0.52,8.35l3.87,8.19l1.03,3.34l0.22,3.35l-0.34,3.06l0.21,35.71l-0.71,2.18l-0.22,2.64l0.16,1.45l0.69,1.89l0.38,3.64l-1.7,2.06l-1.78,4.49l-0.28,1.44l1.73,6.23l-3.09,1.22l-1.05,-0.31l-17.01,-10.64l-1.28,-0.4l-2.85,0.43l-1.26,0.63l-8.01,6.93l-3.45,8.53l-2.81,4.84l-6.9,8.42l-0.98,3.51l0.1,11.09l0.71,4.23l0.41,0.3l1.47,-0.18l1.61,-1.08l0.75,2.09l2.16,2.64l0.17,1.79l-0.43,1.89l0.23,1.26l0.94,1.56l4.34,3.81l2.67,3.54l3.9,1.54l-1.99,2.44l-1.39,1.09l-1.88,0.01l-5.16,1.36l-0.93,-0.14l-2.14,-1.77l-1.86,0.32l-1.16,0.65l-3.87,-1.99l-2.01,-0.66l-2.69,0.46l-1.55,1.07l-3.76,-0.31l-2.39,0.29l-0.44,-0.25l-0.47,-1.38l-1.49,-0.3l-1.47,0.99l-1.27,0.02l-1.95,0.69l-2.06,1.44l-2.63,1.05l-0.66,0.85l-3.75,-0.76l-1.98,0.99l-3.37,-0.81l-2.9,0.66l-0.85,0.58l-1.61,3.05l-2.25,-0.56l-1.59,0.19l-0.92,0.76l-0.12,1.14l-1.1,0.1l-1.24,0.66l-3.39,-3.95l-0.07,-1.43l-2.27,-2.03l-0.07,-0.92l-0.66,-0.7l-0.4,-1.47l-0.8,-1.06l-1.9,-1.02l-2.38,0.35l-0.22,-1.38l-3.46,-1.57l-1.76,-1.39l-2.5,-0.21l-1.53,0.64l-1.36,-2.66l-0.7,-0.75l-0.24,-2.02l-2.85,-1.57l-1.75,-0.07l-1.92,0.99l-1.1,1.16l-1.03,-0.59l-1.37,0.35l-5.1,-2.97l-2.29,-0.72l-1.18,0.62l-0.34,0.67l0.36,0.53l1.03,0.52l-1.78,0.15l-2.14,1.63l0.32,-0.59l-0.1,-0.7l-1.22,-0.65l-1.41,-1.69l-1.17,-0.15l-1.41,0.86l-1.34,-2.1l-3.04,-0.28l-1.09,-0.57l0.52,-1.66l-0.0,-1.71l2.46,-2.33l0.1,-0.98l-0.36,-0.71Z", "name": "Mpumalanga"}, "ZA-NL": {"path": "M515.61,366.81l3.32,1.13l2.03,-2.45l1.12,-0.03l1.35,-1.65l1.0,-0.58l0.23,-0.66l-0.43,-0.9l1.85,-1.02l1.63,-0.06l1.9,-2.26l0.25,-1.17l-0.35,-0.97l-1.82,-1.6l-2.16,-2.62l2.92,-1.73l2.09,-0.75l0.43,-0.53l-0.69,-3.07l-1.11,-1.21l0.32,-3.21l1.9,-3.65l1.09,-0.83l3.15,-0.93l0.67,-0.7l0.13,-1.49l0.52,-0.34l0.09,-0.59l-0.79,-1.59l0.27,-1.86l0.76,-0.74l4.08,-1.74l0.62,-1.03l0.06,-1.37l0.93,-1.78l-0.88,-1.3l-0.06,-1.32l-1.6,-2.52l-0.77,-2.35l-1.68,-1.65l-0.45,-2.83l-1.27,-0.51l-2.99,-0.43l-3.38,-3.41l-2.9,-1.22l-0.18,-1.21l-0.48,-0.71l-1.11,-0.54l-1.54,-0.25l-2.14,-2.09l-1.66,-2.79l-0.95,-0.99l1.38,-3.55l1.41,-1.46l0.21,-1.92l1.51,-1.64l2.76,-0.97l2.12,-0.42l1.86,0.33l2.31,-0.77l0.59,-1.0l-0.25,-1.45l1.41,-1.76l2.89,-0.7l1.83,-1.99l2.69,-1.22l3.58,-4.18l4.05,-0.66l1.43,-2.51l1.75,-1.47l0.52,-2.1l-0.18,-0.9l-0.44,-0.8l-1.33,-1.16l-0.13,-0.88l0.64,-1.61l1.0,-1.41l0.11,-2.66l2.28,-4.72l-0.8,-1.57l0.14,-3.0l-0.95,-2.03l0.78,-0.96l2.73,-1.49l0.33,-1.14l-0.57,-2.27l-1.88,-0.79l0.21,-1.64l1.7,-0.8l0.92,0.37l0.89,-0.25l1.74,-3.19l0.45,-0.3l2.62,-0.62l3.44,0.81l1.89,-0.97l3.09,0.81l1.02,-0.09l0.81,-0.97l2.56,-1.01l2.04,-1.43l1.75,-0.62l1.38,-0.05l1.29,-0.95l0.96,0.18l0.32,1.27l1.02,0.49l2.46,-0.3l3.95,0.29l1.61,-1.11l2.22,-0.42l1.83,0.6l4.03,2.05l2.96,-0.99l2.0,1.7l1.28,0.23l5.36,-1.38l2.1,-0.08l1.59,-1.26l2.21,-2.71l8.73,2.89l2.86,0.56l18.56,0.25l0.4,-0.41l-0.02,-0.6l-0.85,-2.2l-0.22,-6.87l2.09,-11.77l-0.06,-1.02l2.86,0.11l1.06,0.99l1.98,0.57l3.38,-0.19l5.46,0.85l22.09,-0.62l-1.02,7.21l-1.06,4.69l-1.5,2.07l-0.96,3.96l-4.37,11.95l-3.56,16.26l0.27,1.97l-1.98,11.19l-3.73,6.0l-0.86,2.7l-0.6,0.58l-0.84,0.24l-0.27,0.52l0.43,0.74l0.52,0.02l0.21,0.98l-1.47,4.66l-4.03,4.2l-2.48,1.44l-1.71,2.45l-4.32,3.55l-1.2,-0.79l-1.88,0.36l-0.96,0.97l-0.04,0.52l0.93,1.24l0.63,0.02l1.2,-0.99l-0.36,0.66l-1.54,1.23l-5.09,2.61l-1.42,0.28l-3.37,-0.4l-0.47,0.45l0.41,1.05l-1.02,0.62l-8.13,8.89l-2.84,2.14l-0.4,1.21l-2.23,2.6l-2.56,1.82l-0.52,1.45l-1.13,0.95l-0.38,0.88l-5.52,7.24l-5.5,10.49l-0.46,1.91l0.32,1.46l-1.43,0.1l-0.53,0.6l-0.2,1.2l0.58,0.42l1.75,-0.68l-1.28,1.57l-4.32,3.77l-1.31,1.54l-2.03,3.4l-2.34,5.21l-6.05,10.18l-1.33,3.18l-2.0,2.08l-7.1,12.55l-1.15,1.57l-1.88,1.47l-1.3,2.67l-3.56,4.52l-0.58,-0.42l-0.34,-1.48l-1.17,-0.77l-0.7,-4.25l-0.6,-0.75l-1.48,-0.81l-0.5,-1.49l-0.54,-0.35l-1.27,-0.14l-0.73,-0.59l-1.09,0.01l-1.03,-1.29l-0.33,-1.13l-1.85,-0.01l-3.18,-2.06l-1.21,-1.19l-1.15,-0.05l-0.71,0.42l-3.85,-1.5l-2.02,0.3l-6.22,-3.43l-2.07,0.89l-2.23,0.01l-1.12,0.86l-0.56,-0.01l-2.49,-1.22l-6.9,-1.82l-0.56,-2.34l-3.41,-1.68l-0.65,0.12l-0.58,0.68l-0.4,2.61l-4.12,-0.81l-1.61,-2.25l-1.81,-0.39l-0.6,-1.14l0.53,-2.57l-0.81,-2.07l1.2,-2.76ZM553.74,355.98l-1.91,-0.51l-3.19,-1.59l-1.63,-0.38l-1.55,-1.19l-0.47,-0.01l-1.26,1.32l0.42,2.22l-1.62,2.07l-0.05,3.05l2.54,2.49l1.67,5.58l1.79,2.05l2.16,5.15l3.16,0.54l3.09,-0.79l1.32,0.26l3.22,1.87l1.2,0.21l1.49,0.87l1.29,-0.02l0.81,-0.57l0.8,-1.28l0.5,-2.4l0.82,-0.71l-0.15,-1.33l1.05,-0.07l0.57,-0.8l1.11,0.25l0.29,-0.63l-0.26,-0.89l-2.34,-2.01l-0.07,-0.54l0.44,-0.82l-0.35,-0.67l-1.1,-0.1l-0.64,0.51l-0.46,-0.35l-0.49,-1.35l-1.58,-0.66l-1.18,-1.08l1.02,0.02l0.38,-0.28l0.01,-0.46l-2.11,-2.7l-1.71,-1.1l-1.08,-2.66l-1.07,-0.59l-1.29,0.47l-3.57,-0.38Z", "name": "KwaZulu-Natal"}, "ZA-NW": {"path": "M258.15,176.34l1.41,-2.1l-0.06,-1.41l1.86,-0.93l0.53,-0.79l0.33,-2.91l-0.68,-1.37l2.24,-2.67l-0.29,-1.27l-0.7,-1.1l0.73,-1.69l2.18,-2.71l0.21,-1.24l-0.2,-0.95l0.94,-1.23l-0.78,-1.53l1.43,-4.01l1.1,-0.48l1.49,-2.82l1.74,-1.11l0.61,-1.22l1.55,-1.53l0.82,-0.42l0.71,0.1l0.41,0.74l0.72,0.28l4.0,-2.03l1.92,-0.55l1.98,-0.14l4.9,1.27l3.02,-0.51l1.54,1.85l2.71,1.48l4.35,3.31l0.85,0.97l2.43,0.77l0.97,1.54l1.67,0.8l1.54,1.97l3.43,2.78l2.71,-0.4l0.63,0.44l-0.19,0.65l0.5,0.5l5.24,-1.27l2.04,-0.01l1.7,0.94l2.84,3.28l1.83,1.33l2.44,0.41l2.68,-0.71l4.89,1.75l2.31,1.5l1.61,0.33l2.99,-0.33l2.46,0.58l1.47,-0.14l3.38,-1.0l2.55,-1.87l1.81,-0.84l1.49,-0.21l5.32,1.13l8.86,-0.92l3.08,-1.49l5.53,-4.29l3.18,-7.99l1.35,-5.83l3.64,-7.92l0.93,-2.97l1.24,-2.12l0.13,-1.76l1.66,-4.24l-0.36,-5.95l1.61,-0.51l2.27,0.03l1.99,-1.28l11.0,-3.35l1.89,-0.26l2.87,0.4l0.28,4.58l1.7,3.29l7.66,0.84l4.25,1.74l1.84,-0.02l7.44,-3.43l1.85,-1.28l0.55,-1.2l0.68,-0.37l0.5,0.79l0.57,4.58l1.01,1.68l1.56,0.99l1.28,1.29l1.02,2.0l0.72,0.51l4.38,0.69l3.37,2.35l3.18,0.14l1.79,-0.26l0.57,1.54l0.76,0.54l0.87,-0.09l0.68,-0.55l1.54,-2.45l0.32,-2.08l1.09,-0.5l1.68,-0.19l1.56,1.49l2.33,-0.8l6.67,0.72l1.23,-0.71l0.78,-0.09l5.43,1.05l4.42,2.1l0.48,0.66l-0.13,1.02l-0.23,0.71l-1.04,0.29l-2.22,-1.09l-1.74,0.28l-0.51,0.83l0.12,1.11l1.06,0.85l1.42,2.1l1.07,0.23l1.41,-0.2l1.3,0.67l2.5,3.87l-0.39,3.35l-1.51,1.04l-4.64,0.87l0.37,-0.99l-0.21,-0.86l-1.46,-0.12l-1.36,0.69l-0.41,0.86l0.74,3.8l-0.2,1.67l-1.98,2.35l-0.97,0.64l-3.09,0.67l-0.28,0.55l1.6,4.03l-0.79,0.84l-0.07,2.23l-0.65,0.88l-1.96,0.98l-5.9,1.08l-0.88,-0.61l-1.4,0.07l-2.97,-2.22l-3.55,1.31l-2.94,2.11l-2.06,9.47l-0.9,1.15l-1.3,0.45l-0.77,0.92l-2.42,0.24l-0.35,0.49l1.4,5.91l-3.47,2.41l-2.15,1.87l-0.09,0.49l2.12,4.69l0.74,0.33l1.47,-0.33l3.09,-1.4l0.82,-0.82l4.81,-1.41l0.96,1.04l1.1,0.62l3.27,0.05l-0.13,0.75l-0.75,0.54l-0.3,0.79l-0.21,2.47l-1.18,1.81l-0.28,6.81l-0.91,0.81l-0.34,2.24l-1.19,1.74l-3.28,0.86l-2.31,-1.63l-1.42,0.15l-2.97,2.94l-2.18,1.4l0.2,-1.15l-0.27,-0.38l-5.72,0.18l-1.76,-0.24l-1.23,-0.62l-0.88,-1.43l-1.04,-0.52l-0.79,0.66l-0.05,2.98l-1.61,-1.34l-0.67,-0.14l-1.61,1.2l-1.05,-0.53l-2.38,1.25l-1.34,1.18l-0.53,1.49l-1.71,-0.75l-0.99,0.27l-2.1,2.26l0.0,1.95l-0.31,0.26l-0.94,-0.31l-0.8,0.16l-1.64,1.7l-2.37,0.67l-1.04,1.17l-0.01,0.49l0.92,1.26l2.13,2.11l-0.02,2.09l-1.16,1.17l-0.28,1.24l0.57,0.89l1.68,0.39l-5.66,-0.3l-1.14,0.58l-0.43,0.85l-0.97,-0.49l-1.27,0.27l-1.01,0.61l-0.9,1.18l-0.2,2.07l-1.41,0.62l-3.75,3.41l-1.01,1.31l-1.13,2.16l0.65,1.87l-0.15,0.38l-1.23,0.0l-0.69,-3.0l-0.45,-0.52l-3.42,-0.77l-1.72,0.03l-2.38,-1.9l-1.08,0.13l-4.38,2.42l-1.88,1.68l-2.66,-0.81l-2.11,1.46l-1.32,-0.23l-0.8,0.64l-2.67,0.71l-3.9,3.18l-1.86,0.25l-0.61,0.42l-1.37,1.58l0.19,1.03l-1.38,1.86l-1.33,1.2l-1.39,0.1l-0.67,0.37l-1.33,2.25l0.11,0.98l-1.35,2.09l-0.42,0.36l-1.08,-0.13l-0.63,0.62l-1.26,0.26l-1.37,1.07l-0.29,-0.01l-4.18,-7.87l0.43,-0.17l7.73,-8.96l-0.01,-0.53l-0.67,-0.68l-1.87,-0.45l-6.56,0.07l-0.87,-0.24l-1.21,-3.4l-0.67,-0.82l-1.64,-0.34l-1.34,0.31l-0.48,1.27l0.19,1.97l-0.51,1.37l0.34,1.53l0.94,0.81l-0.35,4.11l-0.42,0.84l-1.3,0.76l-1.23,1.98l-0.03,2.9l-0.34,1.26l-1.97,1.78l-0.74,1.59l-0.81,0.82l-2.98,-2.46l0.46,-1.65l-0.17,-1.13l-1.22,-1.53l-1.68,-0.7l-0.52,-1.04l0.81,-1.64l1.35,-1.35l0.6,-1.88l-0.28,-3.22l-0.64,-1.74l-0.47,-0.28l-12.65,2.77l-0.98,-2.11l-0.06,-2.87l-1.08,-1.99l-0.46,-3.37l0.28,-6.11l-2.12,-2.98l-0.69,0.16l-0.67,1.62l0.25,2.8l-2.47,-0.3l-0.93,0.23l-0.74,0.61l-0.3,0.81l0.12,0.74l0.72,0.64l-0.05,0.4l-1.13,0.28l-2.54,-0.1l-0.82,0.48l-1.28,1.52l-0.8,0.11l-3.38,-1.32l-1.8,-1.07l-4.68,-0.8l-0.56,-1.31l-0.99,-0.84l-1.86,-0.29l-3.23,-2.31l-4.07,-0.65l-6.2,-5.97l-2.13,-0.35l-0.56,-0.43l-0.88,-1.76l-0.15,-1.12l0.34,-3.31l0.43,-0.57l2.36,-1.01l0.41,-0.67l-1.51,-2.28l-1.4,-4.45l1.08,-3.21l0.03,-4.91l-2.98,-2.13l-1.01,0.02l-0.98,-1.02l-2.62,-0.62l-1.17,-0.85l-4.98,-0.39l-0.82,-3.85l0.24,-1.85l0.59,-0.86l-0.34,-13.37l-0.38,-0.39l-2.33,-0.12Z", "name": "North West"}, "ZA-GT": {"path": "M449.99,193.94l-0.41,-1.49l-1.39,-2.65l5.54,-4.18l0.16,-0.42l-1.36,-5.73l2.14,-0.21l0.89,-0.98l1.48,-0.58l1.03,-1.32l2.13,-9.57l2.6,-1.74l3.15,-1.15l2.56,2.08l1.68,0.03l0.95,0.63l6.2,-1.14l2.28,-1.17l0.85,-1.21l0.08,-2.27l0.61,-0.42l0.2,-0.59l-1.47,-3.94l2.82,-0.64l2.12,-1.67l1.16,-1.64l0.32,-1.4l-0.75,-3.73l0.23,-1.08l1.6,-0.46l-0.44,1.32l0.68,0.72l4.02,-0.62l1.19,-0.37l1.71,-1.18l0.56,-3.64l2.4,-0.24l0.62,0.5l2.45,-0.0l2.36,-1.06l0.77,-0.92l0.89,-0.36l3.53,0.08l1.49,-0.45l0.94,-0.84l-0.06,-1.12l-0.91,-0.73l-1.28,-2.09l3.97,-0.61l1.77,-1.15l2.92,-0.18l1.1,1.6l0.61,0.27l1.94,-0.76l-0.92,1.32l-0.09,2.16l-0.93,-1.07l-0.95,0.41l0.27,3.54l-2.21,2.1l-0.04,1.25l0.25,0.32l2.68,0.94l1.82,-0.55l0.98,-0.75l2.5,-0.39l2.23,0.52l0.97,-0.55l3.03,-0.78l2.07,0.57l1.87,0.04l-1.07,2.86l-2.42,0.01l-0.84,0.91l-0.74,1.49l-1.14,0.52l-0.67,2.15l-1.19,1.37l-0.82,2.84l-2.34,2.17l-0.57,1.24l0.16,1.24l-1.03,3.2l-0.19,2.03l-0.78,1.12l-1.56,1.13l-1.79,5.48l-2.56,-0.07l-0.82,-0.61l-1.65,-0.38l-4.5,-0.02l-1.63,1.77l-0.84,1.72l-2.41,0.26l-1.68,1.01l-0.13,0.49l0.92,2.09l0.61,0.43l1.16,3.12l0.65,0.99l2.29,1.6l0.17,1.63l0.33,0.38l4.72,1.07l4.68,-0.66l1.54,3.1l-5.28,4.39l-4.01,0.87l-0.71,0.61l-1.62,0.09l-1.51,0.58l-0.97,0.92l-0.6,1.19l-1.17,0.44l-1.02,1.24l-3.13,2.15l-1.07,2.24l0.29,1.51l-2.46,2.35l-0.03,1.86l-0.43,1.38l-1.17,-0.69l-2.25,0.45l-1.32,-1.93l-0.75,0.08l-0.64,0.54l-1.65,-1.5l-1.98,-0.97l-2.42,-4.33l0.49,-0.99l-1.71,-1.51l-1.78,0.66l-1.79,1.93l-2.78,0.47l-1.75,0.71l-0.45,1.16l-1.25,-0.93l-3.26,0.35l-1.15,-1.55l-2.41,0.64l-0.09,0.91l-0.5,0.03l0.23,-6.37l1.2,-1.83l0.35,-2.96l0.87,-0.73l0.24,-1.4l-0.39,-0.47l-3.6,-0.06l-2.23,-1.69l-5.12,1.5l-0.89,0.86l-2.95,1.34l-1.42,0.12Z", "name": "Gauteng"}}, "height": 1182.5061736225139, "projection": {"type": "mill", "centralMeridian": 0.0}, "width": 900.0}); \ No newline at end of file diff --git a/readme.md b/readme.md index 338928ce0..d4e885939 100644 --- a/readme.md +++ b/readme.md @@ -7,8 +7,8 @@ Support but not limited to: Shadowsocks,ShadowsocksR,ShadowsocksRR,V2Ray,Trojan, - Account: test@test.com - Password: 123456 - [Issues](https://github.com/ZBrettonYe/ProxyPanel/issues) -- [WIKI](https://github.com/ZBrettonYe/ProxyPanel/wiki) -- [Update Log](https://github.com/ZBrettonYe/ProxyPanel/wiki/%E6%9B%B4%E6%96%B0%E6%97%A5%E5%BF%97) +- [WIKI](https://proxypanel.gitbook.io/wiki/) +- [UpdateLog](https://proxypanel.gitbook.io/wiki/updatelog) - [Upcoming](https://github.com/ZBrettonYe/ProxyPanel/projects/2) - [Telegram](https://t.me/joinchat/GUrO5hZsT3FOd79HAa9pcA) diff --git a/resources/views/admin/config/config.blade.php b/resources/views/admin/config/config.blade.php index 95af76b15..cc66ce05e 100644 --- a/resources/views/admin/config/config.blade.php +++ b/resources/views/admin/config/config.blade.php @@ -44,7 +44,7 @@ - @foreach($method_list as $method) + @foreach($methodList as $method) {{$method->name}} @@ -76,7 +76,7 @@ - @foreach($protocol_list as $protocol) + @foreach($protocolList as $protocol) {{$protocol->name}} @@ -109,7 +109,7 @@ - @foreach($obfs_list as $obfs) + @foreach($obfsList as $obfs) {{$obfs->name}} @@ -140,7 +140,7 @@ - @foreach($level_list as $level) + @foreach($levelList as $level) @@ -175,7 +175,7 @@ - @foreach($country_list as $country) + @foreach($countryList as $country) 用户自行生成邀请的有效期
+
+
+ +
+
+ +
+ +
+ +
+
+ 管理员生成邀请码的有效期 +
+
@@ -551,21 +566,6 @@
-
-
- -
-
- -
- -
- -
-
- 管理员生成邀请码的有效期 -
-
@@ -760,7 +760,7 @@
% - +
diff --git a/resources/views/admin/group/groupInfo.blade.php b/resources/views/admin/group/groupInfo.blade.php new file mode 100644 index 000000000..0061582bd --- /dev/null +++ b/resources/views/admin/group/groupInfo.blade.php @@ -0,0 +1,124 @@ +@extends('admin.layouts') +@section('css') + +@endsection +@section('content') +
+
+
+

@isset($userGroup)编辑@else添加@endisset用戶分组

+
+ 返 回 +
+
+ @if (Session::has('successMsg')) +
+ + {{Session::get('successMsg')}} +
+ @endif + @if($errors->any()) +
+ +
    + @foreach ($errors->all() as $error) +
  • {{ $error }}
  • + @endforeach +
+
+ @endif +
+
+ @isset($userGroup)@endisset + @csrf +
+ +
+ +
+
+
+ +
+
+ + +
+ +
+
+
+ +
+
+
+
+
+@endsection +@section('script') + + + + +@endsection diff --git a/resources/views/admin/group/groupList.blade.php b/resources/views/admin/group/groupList.blade.php new file mode 100644 index 000000000..1af4fc401 --- /dev/null +++ b/resources/views/admin/group/groupList.blade.php @@ -0,0 +1,94 @@ +@extends('admin.layouts') +@section('css') + +@endsection +@section('content') +
+
+
+

用户分组控制(同一节点可分配至多个分组,一个用户只能属于一个分组;对于用户可见/可用节点:先按分组后按等级)

+ +
+
+ + + + + + + + + + @foreach ($list as $vo) + + + + + + @endforeach + +
# 分组名称 操作
{{$vo->id}} {{$vo->name}} +
+ + + + +
+
+
+ +
+
+@endsection +@section('script') + + + + +@endsection \ No newline at end of file diff --git a/resources/views/admin/layouts.blade.php b/resources/views/admin/layouts.blade.php index 7d78d29d5..c38a933bd 100644 --- a/resources/views/admin/layouts.blade.php +++ b/resources/views/admin/layouts.blade.php @@ -113,7 +113,7 @@ 管理中心 - +