From 96bc119bea69910cc13ed7220b442a3b14248107 Mon Sep 17 00:00:00 2001 From: Nick Muerdter Date: Sun, 22 Jan 2017 22:18:14 -0700 Subject: [PATCH 1/2] Switch to use ECharts instead of Google Charts. This allows for the admin to be used offline and doesn't require an external connection to Google (this also simplifies some of our testing setup). --- scripts/rake/maps.rake | 183 ++++ src/api-umbrella/admin-ui/.eslintrc.js | 1 - .../stats/drilldown/results-chart.js | 179 ++-- .../components/stats/logs/results-chart.js | 192 +++-- .../app/components/stats/map/results-map.js | 281 ++++-- src/api-umbrella/admin-ui/app/index.html | 13 - .../admin-ui/app/initializers/echarts.js | 100 +++ src/api-umbrella/admin-ui/package.json | 2 + src/api-umbrella/admin-ui/public/maps/AD.json | 1 + src/api-umbrella/admin-ui/public/maps/AE.json | 1 + src/api-umbrella/admin-ui/public/maps/AF.json | 1 + src/api-umbrella/admin-ui/public/maps/AI.json | 1 + src/api-umbrella/admin-ui/public/maps/AL.json | 1 + src/api-umbrella/admin-ui/public/maps/AM.json | 1 + src/api-umbrella/admin-ui/public/maps/AO.json | 1 + src/api-umbrella/admin-ui/public/maps/AR.json | 1 + src/api-umbrella/admin-ui/public/maps/AS.json | 1 + src/api-umbrella/admin-ui/public/maps/AT.json | 1 + src/api-umbrella/admin-ui/public/maps/AU.json | 1 + src/api-umbrella/admin-ui/public/maps/AW.json | 1 + src/api-umbrella/admin-ui/public/maps/AX.json | 1 + src/api-umbrella/admin-ui/public/maps/AZ.json | 1 + src/api-umbrella/admin-ui/public/maps/BA.json | 1 + src/api-umbrella/admin-ui/public/maps/BB.json | 1 + src/api-umbrella/admin-ui/public/maps/BD.json | 1 + src/api-umbrella/admin-ui/public/maps/BE.json | 1 + src/api-umbrella/admin-ui/public/maps/BF.json | 1 + src/api-umbrella/admin-ui/public/maps/BG.json | 1 + src/api-umbrella/admin-ui/public/maps/BH.json | 1 + src/api-umbrella/admin-ui/public/maps/BI.json | 1 + src/api-umbrella/admin-ui/public/maps/BJ.json | 1 + src/api-umbrella/admin-ui/public/maps/BL.json | 1 + src/api-umbrella/admin-ui/public/maps/BM.json | 1 + src/api-umbrella/admin-ui/public/maps/BN.json | 1 + src/api-umbrella/admin-ui/public/maps/BO.json | 1 + src/api-umbrella/admin-ui/public/maps/BQ.json | 1 + src/api-umbrella/admin-ui/public/maps/BR.json | 1 + src/api-umbrella/admin-ui/public/maps/BS.json | 1 + src/api-umbrella/admin-ui/public/maps/BT.json | 1 + src/api-umbrella/admin-ui/public/maps/BW.json | 1 + src/api-umbrella/admin-ui/public/maps/BY.json | 1 + src/api-umbrella/admin-ui/public/maps/BZ.json | 1 + src/api-umbrella/admin-ui/public/maps/CA.json | 1 + src/api-umbrella/admin-ui/public/maps/CC.json | 1 + src/api-umbrella/admin-ui/public/maps/CD.json | 1 + src/api-umbrella/admin-ui/public/maps/CF.json | 1 + src/api-umbrella/admin-ui/public/maps/CG.json | 1 + src/api-umbrella/admin-ui/public/maps/CH.json | 1 + src/api-umbrella/admin-ui/public/maps/CI.json | 1 + src/api-umbrella/admin-ui/public/maps/CK.json | 1 + src/api-umbrella/admin-ui/public/maps/CL.json | 1 + src/api-umbrella/admin-ui/public/maps/CM.json | 1 + src/api-umbrella/admin-ui/public/maps/CN.json | 1 + src/api-umbrella/admin-ui/public/maps/CO.json | 1 + src/api-umbrella/admin-ui/public/maps/CR.json | 1 + src/api-umbrella/admin-ui/public/maps/CU.json | 1 + src/api-umbrella/admin-ui/public/maps/CV.json | 1 + src/api-umbrella/admin-ui/public/maps/CW.json | 1 + src/api-umbrella/admin-ui/public/maps/CX.json | 1 + src/api-umbrella/admin-ui/public/maps/CY.json | 1 + src/api-umbrella/admin-ui/public/maps/CZ.json | 1 + src/api-umbrella/admin-ui/public/maps/DE.json | 1 + src/api-umbrella/admin-ui/public/maps/DJ.json | 1 + src/api-umbrella/admin-ui/public/maps/DK.json | 1 + src/api-umbrella/admin-ui/public/maps/DM.json | 1 + src/api-umbrella/admin-ui/public/maps/DO.json | 1 + src/api-umbrella/admin-ui/public/maps/DZ.json | 1 + src/api-umbrella/admin-ui/public/maps/EC.json | 1 + src/api-umbrella/admin-ui/public/maps/EE.json | 1 + src/api-umbrella/admin-ui/public/maps/EG.json | 1 + src/api-umbrella/admin-ui/public/maps/EH.json | 1 + src/api-umbrella/admin-ui/public/maps/ER.json | 1 + src/api-umbrella/admin-ui/public/maps/ES.json | 1 + src/api-umbrella/admin-ui/public/maps/ET.json | 1 + src/api-umbrella/admin-ui/public/maps/FI.json | 1 + src/api-umbrella/admin-ui/public/maps/FJ.json | 1 + src/api-umbrella/admin-ui/public/maps/FK.json | 1 + src/api-umbrella/admin-ui/public/maps/FM.json | 1 + src/api-umbrella/admin-ui/public/maps/FO.json | 1 + src/api-umbrella/admin-ui/public/maps/FR.json | 1 + src/api-umbrella/admin-ui/public/maps/GA.json | 1 + src/api-umbrella/admin-ui/public/maps/GB.json | 1 + src/api-umbrella/admin-ui/public/maps/GD.json | 1 + src/api-umbrella/admin-ui/public/maps/GE.json | 1 + src/api-umbrella/admin-ui/public/maps/GF.json | 1 + src/api-umbrella/admin-ui/public/maps/GG.json | 1 + src/api-umbrella/admin-ui/public/maps/GH.json | 1 + src/api-umbrella/admin-ui/public/maps/GL.json | 1 + src/api-umbrella/admin-ui/public/maps/GM.json | 1 + src/api-umbrella/admin-ui/public/maps/GN.json | 1 + src/api-umbrella/admin-ui/public/maps/GP.json | 1 + src/api-umbrella/admin-ui/public/maps/GQ.json | 1 + src/api-umbrella/admin-ui/public/maps/GR.json | 1 + src/api-umbrella/admin-ui/public/maps/GS.json | 1 + src/api-umbrella/admin-ui/public/maps/GT.json | 1 + src/api-umbrella/admin-ui/public/maps/GU.json | 1 + src/api-umbrella/admin-ui/public/maps/GW.json | 1 + src/api-umbrella/admin-ui/public/maps/GY.json | 1 + src/api-umbrella/admin-ui/public/maps/HK.json | 1 + src/api-umbrella/admin-ui/public/maps/HM.json | 1 + src/api-umbrella/admin-ui/public/maps/HN.json | 1 + src/api-umbrella/admin-ui/public/maps/HR.json | 1 + src/api-umbrella/admin-ui/public/maps/HT.json | 1 + src/api-umbrella/admin-ui/public/maps/HU.json | 1 + src/api-umbrella/admin-ui/public/maps/ID.json | 1 + src/api-umbrella/admin-ui/public/maps/IE.json | 1 + src/api-umbrella/admin-ui/public/maps/IL.json | 1 + src/api-umbrella/admin-ui/public/maps/IM.json | 1 + src/api-umbrella/admin-ui/public/maps/IN.json | 1 + src/api-umbrella/admin-ui/public/maps/IO.json | 1 + src/api-umbrella/admin-ui/public/maps/IQ.json | 1 + src/api-umbrella/admin-ui/public/maps/IR.json | 1 + src/api-umbrella/admin-ui/public/maps/IS.json | 1 + src/api-umbrella/admin-ui/public/maps/IT.json | 1 + src/api-umbrella/admin-ui/public/maps/JE.json | 1 + src/api-umbrella/admin-ui/public/maps/JM.json | 1 + src/api-umbrella/admin-ui/public/maps/JO.json | 1 + src/api-umbrella/admin-ui/public/maps/JP.json | 1 + src/api-umbrella/admin-ui/public/maps/KE.json | 1 + src/api-umbrella/admin-ui/public/maps/KG.json | 1 + src/api-umbrella/admin-ui/public/maps/KH.json | 1 + src/api-umbrella/admin-ui/public/maps/KI.json | 1 + src/api-umbrella/admin-ui/public/maps/KM.json | 1 + src/api-umbrella/admin-ui/public/maps/KN.json | 1 + src/api-umbrella/admin-ui/public/maps/KP.json | 1 + src/api-umbrella/admin-ui/public/maps/KR.json | 1 + src/api-umbrella/admin-ui/public/maps/KW.json | 1 + src/api-umbrella/admin-ui/public/maps/KY.json | 1 + src/api-umbrella/admin-ui/public/maps/KZ.json | 1 + src/api-umbrella/admin-ui/public/maps/LA.json | 1 + src/api-umbrella/admin-ui/public/maps/LB.json | 1 + src/api-umbrella/admin-ui/public/maps/LC.json | 1 + src/api-umbrella/admin-ui/public/maps/LI.json | 1 + src/api-umbrella/admin-ui/public/maps/LK.json | 1 + src/api-umbrella/admin-ui/public/maps/LR.json | 1 + src/api-umbrella/admin-ui/public/maps/LS.json | 1 + src/api-umbrella/admin-ui/public/maps/LT.json | 1 + src/api-umbrella/admin-ui/public/maps/LU.json | 1 + src/api-umbrella/admin-ui/public/maps/LV.json | 1 + src/api-umbrella/admin-ui/public/maps/LY.json | 1 + src/api-umbrella/admin-ui/public/maps/MA.json | 1 + src/api-umbrella/admin-ui/public/maps/MC.json | 1 + src/api-umbrella/admin-ui/public/maps/MD.json | 1 + src/api-umbrella/admin-ui/public/maps/ME.json | 1 + src/api-umbrella/admin-ui/public/maps/MF.json | 1 + src/api-umbrella/admin-ui/public/maps/MG.json | 1 + src/api-umbrella/admin-ui/public/maps/MH.json | 1 + src/api-umbrella/admin-ui/public/maps/MK.json | 1 + src/api-umbrella/admin-ui/public/maps/ML.json | 1 + src/api-umbrella/admin-ui/public/maps/MM.json | 1 + src/api-umbrella/admin-ui/public/maps/MN.json | 1 + src/api-umbrella/admin-ui/public/maps/MO.json | 1 + src/api-umbrella/admin-ui/public/maps/MP.json | 1 + src/api-umbrella/admin-ui/public/maps/MQ.json | 1 + src/api-umbrella/admin-ui/public/maps/MR.json | 1 + src/api-umbrella/admin-ui/public/maps/MS.json | 1 + src/api-umbrella/admin-ui/public/maps/MT.json | 1 + src/api-umbrella/admin-ui/public/maps/MU.json | 1 + src/api-umbrella/admin-ui/public/maps/MV.json | 1 + src/api-umbrella/admin-ui/public/maps/MW.json | 1 + src/api-umbrella/admin-ui/public/maps/MX.json | 1 + src/api-umbrella/admin-ui/public/maps/MY.json | 1 + src/api-umbrella/admin-ui/public/maps/MZ.json | 1 + src/api-umbrella/admin-ui/public/maps/NA.json | 1 + src/api-umbrella/admin-ui/public/maps/NC.json | 1 + src/api-umbrella/admin-ui/public/maps/NE.json | 1 + src/api-umbrella/admin-ui/public/maps/NF.json | 1 + src/api-umbrella/admin-ui/public/maps/NG.json | 1 + src/api-umbrella/admin-ui/public/maps/NI.json | 1 + src/api-umbrella/admin-ui/public/maps/NL.json | 1 + src/api-umbrella/admin-ui/public/maps/NO.json | 1 + src/api-umbrella/admin-ui/public/maps/NP.json | 1 + src/api-umbrella/admin-ui/public/maps/NR.json | 1 + src/api-umbrella/admin-ui/public/maps/NU.json | 1 + src/api-umbrella/admin-ui/public/maps/NZ.json | 1 + src/api-umbrella/admin-ui/public/maps/OM.json | 1 + src/api-umbrella/admin-ui/public/maps/PA.json | 1 + src/api-umbrella/admin-ui/public/maps/PE.json | 1 + src/api-umbrella/admin-ui/public/maps/PF.json | 1 + src/api-umbrella/admin-ui/public/maps/PG.json | 1 + src/api-umbrella/admin-ui/public/maps/PH.json | 1 + src/api-umbrella/admin-ui/public/maps/PK.json | 1 + src/api-umbrella/admin-ui/public/maps/PL.json | 1 + src/api-umbrella/admin-ui/public/maps/PM.json | 1 + src/api-umbrella/admin-ui/public/maps/PN.json | 1 + src/api-umbrella/admin-ui/public/maps/PR.json | 1 + src/api-umbrella/admin-ui/public/maps/PT.json | 1 + src/api-umbrella/admin-ui/public/maps/PW.json | 1 + src/api-umbrella/admin-ui/public/maps/PY.json | 1 + src/api-umbrella/admin-ui/public/maps/QA.json | 1 + src/api-umbrella/admin-ui/public/maps/RE.json | 1 + src/api-umbrella/admin-ui/public/maps/RO.json | 1 + src/api-umbrella/admin-ui/public/maps/RS.json | 1 + src/api-umbrella/admin-ui/public/maps/RU.json | 1 + src/api-umbrella/admin-ui/public/maps/RW.json | 1 + src/api-umbrella/admin-ui/public/maps/SA.json | 1 + src/api-umbrella/admin-ui/public/maps/SB.json | 1 + src/api-umbrella/admin-ui/public/maps/SC.json | 1 + src/api-umbrella/admin-ui/public/maps/SD.json | 1 + src/api-umbrella/admin-ui/public/maps/SE.json | 1 + src/api-umbrella/admin-ui/public/maps/SG.json | 1 + src/api-umbrella/admin-ui/public/maps/SH.json | 1 + src/api-umbrella/admin-ui/public/maps/SI.json | 1 + src/api-umbrella/admin-ui/public/maps/SJ.json | 1 + src/api-umbrella/admin-ui/public/maps/SK.json | 1 + src/api-umbrella/admin-ui/public/maps/SL.json | 1 + src/api-umbrella/admin-ui/public/maps/SM.json | 1 + src/api-umbrella/admin-ui/public/maps/SN.json | 1 + src/api-umbrella/admin-ui/public/maps/SO.json | 1 + src/api-umbrella/admin-ui/public/maps/SR.json | 1 + src/api-umbrella/admin-ui/public/maps/SS.json | 1 + src/api-umbrella/admin-ui/public/maps/ST.json | 1 + src/api-umbrella/admin-ui/public/maps/SV.json | 1 + src/api-umbrella/admin-ui/public/maps/SX.json | 1 + src/api-umbrella/admin-ui/public/maps/SY.json | 1 + src/api-umbrella/admin-ui/public/maps/SZ.json | 1 + src/api-umbrella/admin-ui/public/maps/TC.json | 1 + src/api-umbrella/admin-ui/public/maps/TD.json | 1 + src/api-umbrella/admin-ui/public/maps/TF.json | 1 + src/api-umbrella/admin-ui/public/maps/TG.json | 1 + src/api-umbrella/admin-ui/public/maps/TH.json | 1 + src/api-umbrella/admin-ui/public/maps/TJ.json | 1 + src/api-umbrella/admin-ui/public/maps/TK.json | 1 + src/api-umbrella/admin-ui/public/maps/TL.json | 1 + src/api-umbrella/admin-ui/public/maps/TM.json | 1 + src/api-umbrella/admin-ui/public/maps/TN.json | 1 + src/api-umbrella/admin-ui/public/maps/TO.json | 1 + src/api-umbrella/admin-ui/public/maps/TR.json | 1 + src/api-umbrella/admin-ui/public/maps/TT.json | 1 + src/api-umbrella/admin-ui/public/maps/TW.json | 1 + src/api-umbrella/admin-ui/public/maps/TZ.json | 1 + src/api-umbrella/admin-ui/public/maps/UA.json | 1 + src/api-umbrella/admin-ui/public/maps/UG.json | 1 + .../admin-ui/public/maps/US-AK.json | 1 + .../admin-ui/public/maps/US-AL.json | 1 + .../admin-ui/public/maps/US-AR.json | 1 + .../admin-ui/public/maps/US-AZ.json | 1 + .../admin-ui/public/maps/US-CA.json | 1 + .../admin-ui/public/maps/US-CO.json | 1 + .../admin-ui/public/maps/US-CT.json | 1 + .../admin-ui/public/maps/US-DC.json | 1 + .../admin-ui/public/maps/US-DE.json | 1 + .../admin-ui/public/maps/US-FL.json | 1 + .../admin-ui/public/maps/US-GA.json | 1 + .../admin-ui/public/maps/US-HI.json | 1 + .../admin-ui/public/maps/US-IA.json | 1 + .../admin-ui/public/maps/US-ID.json | 1 + .../admin-ui/public/maps/US-IL.json | 1 + .../admin-ui/public/maps/US-IN.json | 1 + .../admin-ui/public/maps/US-KS.json | 1 + .../admin-ui/public/maps/US-KY.json | 1 + .../admin-ui/public/maps/US-LA.json | 1 + .../admin-ui/public/maps/US-MA.json | 1 + .../admin-ui/public/maps/US-MD.json | 1 + .../admin-ui/public/maps/US-ME.json | 1 + .../admin-ui/public/maps/US-MI.json | 1 + .../admin-ui/public/maps/US-MN.json | 1 + .../admin-ui/public/maps/US-MO.json | 1 + .../admin-ui/public/maps/US-MS.json | 1 + .../admin-ui/public/maps/US-MT.json | 1 + .../admin-ui/public/maps/US-NC.json | 1 + .../admin-ui/public/maps/US-ND.json | 1 + .../admin-ui/public/maps/US-NE.json | 1 + .../admin-ui/public/maps/US-NH.json | 1 + .../admin-ui/public/maps/US-NJ.json | 1 + .../admin-ui/public/maps/US-NM.json | 1 + .../admin-ui/public/maps/US-NV.json | 1 + .../admin-ui/public/maps/US-NY.json | 1 + .../admin-ui/public/maps/US-OH.json | 1 + .../admin-ui/public/maps/US-OK.json | 1 + .../admin-ui/public/maps/US-OR.json | 1 + .../admin-ui/public/maps/US-PA.json | 1 + .../admin-ui/public/maps/US-RI.json | 1 + .../admin-ui/public/maps/US-SC.json | 1 + .../admin-ui/public/maps/US-SD.json | 1 + .../admin-ui/public/maps/US-TN.json | 1 + .../admin-ui/public/maps/US-TX.json | 1 + .../admin-ui/public/maps/US-UT.json | 1 + .../admin-ui/public/maps/US-VA.json | 1 + .../admin-ui/public/maps/US-VT.json | 1 + .../admin-ui/public/maps/US-WA.json | 1 + .../admin-ui/public/maps/US-WI.json | 1 + .../admin-ui/public/maps/US-WV.json | 1 + .../admin-ui/public/maps/US-WY.json | 1 + src/api-umbrella/admin-ui/public/maps/US.json | 1 + src/api-umbrella/admin-ui/public/maps/UY.json | 1 + src/api-umbrella/admin-ui/public/maps/UZ.json | 1 + src/api-umbrella/admin-ui/public/maps/VA.json | 1 + src/api-umbrella/admin-ui/public/maps/VC.json | 1 + src/api-umbrella/admin-ui/public/maps/VE.json | 1 + src/api-umbrella/admin-ui/public/maps/VG.json | 1 + src/api-umbrella/admin-ui/public/maps/VI.json | 1 + src/api-umbrella/admin-ui/public/maps/VN.json | 1 + src/api-umbrella/admin-ui/public/maps/VU.json | 1 + src/api-umbrella/admin-ui/public/maps/WF.json | 1 + src/api-umbrella/admin-ui/public/maps/WS.json | 1 + src/api-umbrella/admin-ui/public/maps/YE.json | 1 + src/api-umbrella/admin-ui/public/maps/YT.json | 1 + src/api-umbrella/admin-ui/public/maps/ZA.json | 1 + src/api-umbrella/admin-ui/public/maps/ZM.json | 1 + src/api-umbrella/admin-ui/public/maps/ZW.json | 1 + .../admin-ui/public/maps/world.json | 1 + src/api-umbrella/admin-ui/yarn.lock | 812 +++++++++++++++--- test/support/capybara.rb | 1 - .../support/capybara/disable_google_charts.js | 20 - 305 files changed, 1717 insertions(+), 361 deletions(-) create mode 100644 scripts/rake/maps.rake create mode 100644 src/api-umbrella/admin-ui/app/initializers/echarts.js create mode 100644 src/api-umbrella/admin-ui/public/maps/AD.json create mode 100644 src/api-umbrella/admin-ui/public/maps/AE.json create mode 100644 src/api-umbrella/admin-ui/public/maps/AF.json create mode 100644 src/api-umbrella/admin-ui/public/maps/AI.json create mode 100644 src/api-umbrella/admin-ui/public/maps/AL.json create mode 100644 src/api-umbrella/admin-ui/public/maps/AM.json create mode 100644 src/api-umbrella/admin-ui/public/maps/AO.json create mode 100644 src/api-umbrella/admin-ui/public/maps/AR.json create mode 100644 src/api-umbrella/admin-ui/public/maps/AS.json create mode 100644 src/api-umbrella/admin-ui/public/maps/AT.json create mode 100644 src/api-umbrella/admin-ui/public/maps/AU.json create mode 100644 src/api-umbrella/admin-ui/public/maps/AW.json create mode 100644 src/api-umbrella/admin-ui/public/maps/AX.json create mode 100644 src/api-umbrella/admin-ui/public/maps/AZ.json create mode 100644 src/api-umbrella/admin-ui/public/maps/BA.json create mode 100644 src/api-umbrella/admin-ui/public/maps/BB.json create mode 100644 src/api-umbrella/admin-ui/public/maps/BD.json create mode 100644 src/api-umbrella/admin-ui/public/maps/BE.json create mode 100644 src/api-umbrella/admin-ui/public/maps/BF.json create mode 100644 src/api-umbrella/admin-ui/public/maps/BG.json create mode 100644 src/api-umbrella/admin-ui/public/maps/BH.json create mode 100644 src/api-umbrella/admin-ui/public/maps/BI.json create mode 100644 src/api-umbrella/admin-ui/public/maps/BJ.json create mode 100644 src/api-umbrella/admin-ui/public/maps/BL.json create mode 100644 src/api-umbrella/admin-ui/public/maps/BM.json create mode 100644 src/api-umbrella/admin-ui/public/maps/BN.json create mode 100644 src/api-umbrella/admin-ui/public/maps/BO.json create mode 100644 src/api-umbrella/admin-ui/public/maps/BQ.json create mode 100644 src/api-umbrella/admin-ui/public/maps/BR.json create mode 100644 src/api-umbrella/admin-ui/public/maps/BS.json create mode 100644 src/api-umbrella/admin-ui/public/maps/BT.json create mode 100644 src/api-umbrella/admin-ui/public/maps/BW.json create mode 100644 src/api-umbrella/admin-ui/public/maps/BY.json create mode 100644 src/api-umbrella/admin-ui/public/maps/BZ.json create mode 100644 src/api-umbrella/admin-ui/public/maps/CA.json create mode 100644 src/api-umbrella/admin-ui/public/maps/CC.json create mode 100644 src/api-umbrella/admin-ui/public/maps/CD.json create mode 100644 src/api-umbrella/admin-ui/public/maps/CF.json create mode 100644 src/api-umbrella/admin-ui/public/maps/CG.json create mode 100644 src/api-umbrella/admin-ui/public/maps/CH.json create mode 100644 src/api-umbrella/admin-ui/public/maps/CI.json create mode 100644 src/api-umbrella/admin-ui/public/maps/CK.json create mode 100644 src/api-umbrella/admin-ui/public/maps/CL.json create mode 100644 src/api-umbrella/admin-ui/public/maps/CM.json create mode 100644 src/api-umbrella/admin-ui/public/maps/CN.json create mode 100644 src/api-umbrella/admin-ui/public/maps/CO.json create mode 100644 src/api-umbrella/admin-ui/public/maps/CR.json create mode 100644 src/api-umbrella/admin-ui/public/maps/CU.json create mode 100644 src/api-umbrella/admin-ui/public/maps/CV.json create mode 100644 src/api-umbrella/admin-ui/public/maps/CW.json create mode 100644 src/api-umbrella/admin-ui/public/maps/CX.json create mode 100644 src/api-umbrella/admin-ui/public/maps/CY.json create mode 100644 src/api-umbrella/admin-ui/public/maps/CZ.json create mode 100644 src/api-umbrella/admin-ui/public/maps/DE.json create mode 100644 src/api-umbrella/admin-ui/public/maps/DJ.json create mode 100644 src/api-umbrella/admin-ui/public/maps/DK.json create mode 100644 src/api-umbrella/admin-ui/public/maps/DM.json create mode 100644 src/api-umbrella/admin-ui/public/maps/DO.json create mode 100644 src/api-umbrella/admin-ui/public/maps/DZ.json create mode 100644 src/api-umbrella/admin-ui/public/maps/EC.json create mode 100644 src/api-umbrella/admin-ui/public/maps/EE.json create mode 100644 src/api-umbrella/admin-ui/public/maps/EG.json create mode 100644 src/api-umbrella/admin-ui/public/maps/EH.json create mode 100644 src/api-umbrella/admin-ui/public/maps/ER.json create mode 100644 src/api-umbrella/admin-ui/public/maps/ES.json create mode 100644 src/api-umbrella/admin-ui/public/maps/ET.json create mode 100644 src/api-umbrella/admin-ui/public/maps/FI.json create mode 100644 src/api-umbrella/admin-ui/public/maps/FJ.json create mode 100644 src/api-umbrella/admin-ui/public/maps/FK.json create mode 100644 src/api-umbrella/admin-ui/public/maps/FM.json create mode 100644 src/api-umbrella/admin-ui/public/maps/FO.json create mode 100644 src/api-umbrella/admin-ui/public/maps/FR.json create mode 100644 src/api-umbrella/admin-ui/public/maps/GA.json create mode 100644 src/api-umbrella/admin-ui/public/maps/GB.json create mode 100644 src/api-umbrella/admin-ui/public/maps/GD.json create mode 100644 src/api-umbrella/admin-ui/public/maps/GE.json create mode 100644 src/api-umbrella/admin-ui/public/maps/GF.json create mode 100644 src/api-umbrella/admin-ui/public/maps/GG.json create mode 100644 src/api-umbrella/admin-ui/public/maps/GH.json create mode 100644 src/api-umbrella/admin-ui/public/maps/GL.json create mode 100644 src/api-umbrella/admin-ui/public/maps/GM.json create mode 100644 src/api-umbrella/admin-ui/public/maps/GN.json create mode 100644 src/api-umbrella/admin-ui/public/maps/GP.json create mode 100644 src/api-umbrella/admin-ui/public/maps/GQ.json create mode 100644 src/api-umbrella/admin-ui/public/maps/GR.json create mode 100644 src/api-umbrella/admin-ui/public/maps/GS.json create mode 100644 src/api-umbrella/admin-ui/public/maps/GT.json create mode 100644 src/api-umbrella/admin-ui/public/maps/GU.json create mode 100644 src/api-umbrella/admin-ui/public/maps/GW.json create mode 100644 src/api-umbrella/admin-ui/public/maps/GY.json create mode 100644 src/api-umbrella/admin-ui/public/maps/HK.json create mode 100644 src/api-umbrella/admin-ui/public/maps/HM.json create mode 100644 src/api-umbrella/admin-ui/public/maps/HN.json create mode 100644 src/api-umbrella/admin-ui/public/maps/HR.json create mode 100644 src/api-umbrella/admin-ui/public/maps/HT.json create mode 100644 src/api-umbrella/admin-ui/public/maps/HU.json create mode 100644 src/api-umbrella/admin-ui/public/maps/ID.json create mode 100644 src/api-umbrella/admin-ui/public/maps/IE.json create mode 100644 src/api-umbrella/admin-ui/public/maps/IL.json create mode 100644 src/api-umbrella/admin-ui/public/maps/IM.json create mode 100644 src/api-umbrella/admin-ui/public/maps/IN.json create mode 100644 src/api-umbrella/admin-ui/public/maps/IO.json create mode 100644 src/api-umbrella/admin-ui/public/maps/IQ.json create mode 100644 src/api-umbrella/admin-ui/public/maps/IR.json create mode 100644 src/api-umbrella/admin-ui/public/maps/IS.json create mode 100644 src/api-umbrella/admin-ui/public/maps/IT.json create mode 100644 src/api-umbrella/admin-ui/public/maps/JE.json create mode 100644 src/api-umbrella/admin-ui/public/maps/JM.json create mode 100644 src/api-umbrella/admin-ui/public/maps/JO.json create mode 100644 src/api-umbrella/admin-ui/public/maps/JP.json create mode 100644 src/api-umbrella/admin-ui/public/maps/KE.json create mode 100644 src/api-umbrella/admin-ui/public/maps/KG.json create mode 100644 src/api-umbrella/admin-ui/public/maps/KH.json create mode 100644 src/api-umbrella/admin-ui/public/maps/KI.json create mode 100644 src/api-umbrella/admin-ui/public/maps/KM.json create mode 100644 src/api-umbrella/admin-ui/public/maps/KN.json create mode 100644 src/api-umbrella/admin-ui/public/maps/KP.json create mode 100644 src/api-umbrella/admin-ui/public/maps/KR.json create mode 100644 src/api-umbrella/admin-ui/public/maps/KW.json create mode 100644 src/api-umbrella/admin-ui/public/maps/KY.json create mode 100644 src/api-umbrella/admin-ui/public/maps/KZ.json create mode 100644 src/api-umbrella/admin-ui/public/maps/LA.json create mode 100644 src/api-umbrella/admin-ui/public/maps/LB.json create mode 100644 src/api-umbrella/admin-ui/public/maps/LC.json create mode 100644 src/api-umbrella/admin-ui/public/maps/LI.json create mode 100644 src/api-umbrella/admin-ui/public/maps/LK.json create mode 100644 src/api-umbrella/admin-ui/public/maps/LR.json create mode 100644 src/api-umbrella/admin-ui/public/maps/LS.json create mode 100644 src/api-umbrella/admin-ui/public/maps/LT.json create mode 100644 src/api-umbrella/admin-ui/public/maps/LU.json create mode 100644 src/api-umbrella/admin-ui/public/maps/LV.json create mode 100644 src/api-umbrella/admin-ui/public/maps/LY.json create mode 100644 src/api-umbrella/admin-ui/public/maps/MA.json create mode 100644 src/api-umbrella/admin-ui/public/maps/MC.json create mode 100644 src/api-umbrella/admin-ui/public/maps/MD.json create mode 100644 src/api-umbrella/admin-ui/public/maps/ME.json create mode 100644 src/api-umbrella/admin-ui/public/maps/MF.json create mode 100644 src/api-umbrella/admin-ui/public/maps/MG.json create mode 100644 src/api-umbrella/admin-ui/public/maps/MH.json create mode 100644 src/api-umbrella/admin-ui/public/maps/MK.json create mode 100644 src/api-umbrella/admin-ui/public/maps/ML.json create mode 100644 src/api-umbrella/admin-ui/public/maps/MM.json create mode 100644 src/api-umbrella/admin-ui/public/maps/MN.json create mode 100644 src/api-umbrella/admin-ui/public/maps/MO.json create mode 100644 src/api-umbrella/admin-ui/public/maps/MP.json create mode 100644 src/api-umbrella/admin-ui/public/maps/MQ.json create mode 100644 src/api-umbrella/admin-ui/public/maps/MR.json create mode 100644 src/api-umbrella/admin-ui/public/maps/MS.json create mode 100644 src/api-umbrella/admin-ui/public/maps/MT.json create mode 100644 src/api-umbrella/admin-ui/public/maps/MU.json create mode 100644 src/api-umbrella/admin-ui/public/maps/MV.json create mode 100644 src/api-umbrella/admin-ui/public/maps/MW.json create mode 100644 src/api-umbrella/admin-ui/public/maps/MX.json create mode 100644 src/api-umbrella/admin-ui/public/maps/MY.json create mode 100644 src/api-umbrella/admin-ui/public/maps/MZ.json create mode 100644 src/api-umbrella/admin-ui/public/maps/NA.json create mode 100644 src/api-umbrella/admin-ui/public/maps/NC.json create mode 100644 src/api-umbrella/admin-ui/public/maps/NE.json create mode 100644 src/api-umbrella/admin-ui/public/maps/NF.json create mode 100644 src/api-umbrella/admin-ui/public/maps/NG.json create mode 100644 src/api-umbrella/admin-ui/public/maps/NI.json create mode 100644 src/api-umbrella/admin-ui/public/maps/NL.json create mode 100644 src/api-umbrella/admin-ui/public/maps/NO.json create mode 100644 src/api-umbrella/admin-ui/public/maps/NP.json create mode 100644 src/api-umbrella/admin-ui/public/maps/NR.json create mode 100644 src/api-umbrella/admin-ui/public/maps/NU.json create mode 100644 src/api-umbrella/admin-ui/public/maps/NZ.json create mode 100644 src/api-umbrella/admin-ui/public/maps/OM.json create mode 100644 src/api-umbrella/admin-ui/public/maps/PA.json create mode 100644 src/api-umbrella/admin-ui/public/maps/PE.json create mode 100644 src/api-umbrella/admin-ui/public/maps/PF.json create mode 100644 src/api-umbrella/admin-ui/public/maps/PG.json create mode 100644 src/api-umbrella/admin-ui/public/maps/PH.json create mode 100644 src/api-umbrella/admin-ui/public/maps/PK.json create mode 100644 src/api-umbrella/admin-ui/public/maps/PL.json create mode 100644 src/api-umbrella/admin-ui/public/maps/PM.json create mode 100644 src/api-umbrella/admin-ui/public/maps/PN.json create mode 100644 src/api-umbrella/admin-ui/public/maps/PR.json create mode 100644 src/api-umbrella/admin-ui/public/maps/PT.json create mode 100644 src/api-umbrella/admin-ui/public/maps/PW.json create mode 100644 src/api-umbrella/admin-ui/public/maps/PY.json create mode 100644 src/api-umbrella/admin-ui/public/maps/QA.json create mode 100644 src/api-umbrella/admin-ui/public/maps/RE.json create mode 100644 src/api-umbrella/admin-ui/public/maps/RO.json create mode 100644 src/api-umbrella/admin-ui/public/maps/RS.json create mode 100644 src/api-umbrella/admin-ui/public/maps/RU.json create mode 100644 src/api-umbrella/admin-ui/public/maps/RW.json create mode 100644 src/api-umbrella/admin-ui/public/maps/SA.json create mode 100644 src/api-umbrella/admin-ui/public/maps/SB.json create mode 100644 src/api-umbrella/admin-ui/public/maps/SC.json create mode 100644 src/api-umbrella/admin-ui/public/maps/SD.json create mode 100644 src/api-umbrella/admin-ui/public/maps/SE.json create mode 100644 src/api-umbrella/admin-ui/public/maps/SG.json create mode 100644 src/api-umbrella/admin-ui/public/maps/SH.json create mode 100644 src/api-umbrella/admin-ui/public/maps/SI.json create mode 100644 src/api-umbrella/admin-ui/public/maps/SJ.json create mode 100644 src/api-umbrella/admin-ui/public/maps/SK.json create mode 100644 src/api-umbrella/admin-ui/public/maps/SL.json create mode 100644 src/api-umbrella/admin-ui/public/maps/SM.json create mode 100644 src/api-umbrella/admin-ui/public/maps/SN.json create mode 100644 src/api-umbrella/admin-ui/public/maps/SO.json create mode 100644 src/api-umbrella/admin-ui/public/maps/SR.json create mode 100644 src/api-umbrella/admin-ui/public/maps/SS.json create mode 100644 src/api-umbrella/admin-ui/public/maps/ST.json create mode 100644 src/api-umbrella/admin-ui/public/maps/SV.json create mode 100644 src/api-umbrella/admin-ui/public/maps/SX.json create mode 100644 src/api-umbrella/admin-ui/public/maps/SY.json create mode 100644 src/api-umbrella/admin-ui/public/maps/SZ.json create mode 100644 src/api-umbrella/admin-ui/public/maps/TC.json create mode 100644 src/api-umbrella/admin-ui/public/maps/TD.json create mode 100644 src/api-umbrella/admin-ui/public/maps/TF.json create mode 100644 src/api-umbrella/admin-ui/public/maps/TG.json create mode 100644 src/api-umbrella/admin-ui/public/maps/TH.json create mode 100644 src/api-umbrella/admin-ui/public/maps/TJ.json create mode 100644 src/api-umbrella/admin-ui/public/maps/TK.json create mode 100644 src/api-umbrella/admin-ui/public/maps/TL.json create mode 100644 src/api-umbrella/admin-ui/public/maps/TM.json create mode 100644 src/api-umbrella/admin-ui/public/maps/TN.json create mode 100644 src/api-umbrella/admin-ui/public/maps/TO.json create mode 100644 src/api-umbrella/admin-ui/public/maps/TR.json create mode 100644 src/api-umbrella/admin-ui/public/maps/TT.json create mode 100644 src/api-umbrella/admin-ui/public/maps/TW.json create mode 100644 src/api-umbrella/admin-ui/public/maps/TZ.json create mode 100644 src/api-umbrella/admin-ui/public/maps/UA.json create mode 100644 src/api-umbrella/admin-ui/public/maps/UG.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-AK.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-AL.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-AR.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-AZ.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-CA.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-CO.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-CT.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-DC.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-DE.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-FL.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-GA.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-HI.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-IA.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-ID.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-IL.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-IN.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-KS.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-KY.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-LA.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-MA.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-MD.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-ME.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-MI.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-MN.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-MO.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-MS.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-MT.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-NC.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-ND.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-NE.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-NH.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-NJ.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-NM.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-NV.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-NY.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-OH.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-OK.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-OR.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-PA.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-RI.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-SC.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-SD.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-TN.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-TX.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-UT.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-VA.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-VT.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-WA.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-WI.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-WV.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US-WY.json create mode 100644 src/api-umbrella/admin-ui/public/maps/US.json create mode 100644 src/api-umbrella/admin-ui/public/maps/UY.json create mode 100644 src/api-umbrella/admin-ui/public/maps/UZ.json create mode 100644 src/api-umbrella/admin-ui/public/maps/VA.json create mode 100644 src/api-umbrella/admin-ui/public/maps/VC.json create mode 100644 src/api-umbrella/admin-ui/public/maps/VE.json create mode 100644 src/api-umbrella/admin-ui/public/maps/VG.json create mode 100644 src/api-umbrella/admin-ui/public/maps/VI.json create mode 100644 src/api-umbrella/admin-ui/public/maps/VN.json create mode 100644 src/api-umbrella/admin-ui/public/maps/VU.json create mode 100644 src/api-umbrella/admin-ui/public/maps/WF.json create mode 100644 src/api-umbrella/admin-ui/public/maps/WS.json create mode 100644 src/api-umbrella/admin-ui/public/maps/YE.json create mode 100644 src/api-umbrella/admin-ui/public/maps/YT.json create mode 100644 src/api-umbrella/admin-ui/public/maps/ZA.json create mode 100644 src/api-umbrella/admin-ui/public/maps/ZM.json create mode 100644 src/api-umbrella/admin-ui/public/maps/ZW.json create mode 100644 src/api-umbrella/admin-ui/public/maps/world.json delete mode 100644 test/support/capybara/disable_google_charts.js diff --git a/scripts/rake/maps.rake b/scripts/rake/maps.rake new file mode 100644 index 000000000..bde40e70d --- /dev/null +++ b/scripts/rake/maps.rake @@ -0,0 +1,183 @@ +namespace :maps do + task :download do + [ + "http://www.naturalearthdata.com/http//www.naturalearthdata.com/download/50m/cultural/ne_50m_admin_1_states_provinces_lakes.zip", + "http://www.naturalearthdata.com/http//www.naturalearthdata.com/download/110m/cultural/ne_110m_admin_0_countries_lakes.zip", + "http://www.naturalearthdata.com/http//www.naturalearthdata.com/download/110m/cultural/ne_110m_admin_0_map_units.zip", + "http://www.naturalearthdata.com/http//www.naturalearthdata.com/download/50m/cultural/ne_50m_admin_0_countries_lakes.zip", + "http://www.naturalearthdata.com/http//www.naturalearthdata.com/download/50m/cultural/ne_50m_admin_0_map_units.zip", + "http://dev.maxmind.com/static/csv/codes/iso3166.csv", + ].each do |url| + path = File.join($input_dir, File.basename(url)) + unless(File.exist?(path)) + sh("curl", "-L", "-o", path, url) + end + + if(url.end_with?(".zip")) + dir = path.chomp(".zip") + unless(Dir.exist?(dir)) + sh("unzip", path, "-d", dir) + end + end + end + end + + task :world do + require "csv" + require "oj" + + maxmind_countries = {} + CSV.foreach(File.join($input_dir, "iso3166.csv")) do |row| + maxmind_countries[row[0]] = row[1] + end + + [ + "110m", + "50m", + ].each do |scale| + sovereignties_path = File.join($input_dir, "tmp/world-#{scale}-sovereignties.json") + sh("ogr2ogr", "-f", "GeoJSON", "-where", "iso_a2 NOT IN('AQ')", "-t_srs", "EPSG:4326", sovereignties_path, File.join($input_dir, "ne_#{scale}_admin_0_map_units/ne_#{scale}_admin_0_map_units.shp")) + + countries_path = File.join($input_dir, "tmp/world-#{scale}-countries.json") + sh("ogr2ogr", "-f", "GeoJSON", "-where", "iso_a2 NOT IN('AQ')", "-t_srs", "EPSG:4326", countries_path, File.join($input_dir, "ne_#{scale}_admin_0_countries_lakes/ne_#{scale}_admin_0_countries_lakes.shp")) + + sovereignties = Oj.load(File.read(sovereignties_path)) + countries = Oj.load(File.read(countries_path)) + + # Add countries, like United Kingdom, as a single country that are + # represented as separate sovereignties (so we align with MaxMind's + # country mappings). + sovereignties["features"] += countries["features"].find_all { |f| ["GB", "PG", "RS", "BA", "BE", "GE", "PT"].include?(f["properties"]["iso_a2"]) } + + sovereignties["features"].each do |feature| + # Consider Metropolitan France the "FR" country. + if(feature["properties"]["iso_a2"] == "-99" && feature["properties"]["adm0_a3"] == "FRA") + feature["properties"]["iso_a2"] = "FR" + end + end + + # Remove non-country sovereignties. + sovereignties["features"].reject! do |feature| + if(feature["properties"]["iso_a2"] == "-99") + puts "#{scale} Ignoring #{feature["properties"]["adm0_a3"]}: #{feature["properties"]["formal_en"] || feature["properties"]["name_long"]}" + true + else + false + end + end + + countries_in_map = [] + sovereignties["features"].each do |feature| + countries_in_map << feature["properties"]["iso_a2"] + end + + # Compare the countries in the map to MaxMind's ISO3166 data to make sure + # we have all the expected countries. + missing_countries = (maxmind_countries.keys - countries_in_map).map { |k| maxmind_countries[k] } + extra_countries = (countries_in_map - maxmind_countries.keys).map { |k| maxmind_countries[k] } + puts "#{scale} Missing Countries: #{missing_countries.inspect}" + puts "#{scale} Extra Countries: #{extra_countries.inspect}" + + combined_path = File.join($input_dir, "tmp/world-#{scale}-combined.json") + File.open(combined_path, "w") { |f| f.write(Oj.dump(sovereignties)) } + end + + # Use the low resolution version for the globe. + FileUtils.cp(File.join($input_dir, "tmp/world-110m-combined.json"), File.join($output_dir, "world.json")) + + # Use the medium resolution version to generate specific files for each + # individual country. + countries = Oj.load(File.read(File.join($input_dir, "tmp/world-50m-combined.json"))) + countries["features"].each do |feature| + File.open(File.join($output_dir, "#{feature["properties"]["iso_a2"]}.json"), "w") do |f| + country = countries.dup + country["features"] = [country["features"].detect { |f| f["properties"]["iso_a2"] == feature["properties"]["iso_a2"] }] + f.write(Oj.dump(country)) + end + end + end + + task :us do + require "oj" + + output_path = File.join($output_dir, "US.json") + FileUtils.rm_f(output_path) + sh("ogr2ogr", "-f", "GeoJSON", "-where", "iso_a2 = 'US'", "-t_srs", "EPSG:4326", output_path, File.join($input_dir, "ne_50m_admin_1_states_provinces_lakes/ne_50m_admin_1_states_provinces_lakes.shp")) + + data = Oj.load(File.read(output_path)) + data["features"].each do |feature| + case(feature["properties"]["iso_3166_2"]) + when "US-HI" + # Remove Midway from Hawaii, since it's not one of the main islands and + # makes Hawaii's display much wider than normal. + feature["geometry"]["coordinates"].reject! { |c| c[0][0][0] < -177 } + end + + File.open(File.join($output_dir, "#{feature["properties"]["iso_3166_2"]}.json"), "w") do |f| + state_data = data.dup + state_data["features"] = [state_data["features"].detect { |f| f["properties"]["iso_3166_2"] == feature["properties"]["iso_3166_2"] }] + f.write(Oj.dump(state_data)) + end + end + File.open(output_path, "w") { |f| f.write(Oj.dump(data)) } + end + + task :simplify do + require "oj" + require "open3" + + Dir.glob(File.join($output_dir, "*.json")).each do |path| + simplify = "0.5" + if(path.end_with?("US.json")) + simplify = "0.2" + end + + puts "Simplifying #{path}" + statuses = Open3.pipeline( + ["geo2topo", "boundaries=#{path}"], + ["toposimplify", "-P", simplify], + ["topo2geo", "boundaries=#{path}"], + ) + statuses.each do |status| + unless(status.success?) + puts "Simplifying failed: #{statuses.inspect}" + exit 1 + end + end + + data = Oj.load(File.read(path)) + data["_labels"] = {} + data["features"].each do |feature| + if(File.basename(path).start_with?("US")) + code = feature["properties"]["iso_3166_2"] + else + code = feature["properties"]["iso_a2"] + end + + data["_labels"][code] ||= feature["properties"]["name"] + + feature["properties"] = { + "name" => code, + } + end + File.open(path, "w") { |f| f.write(Oj.dump(data, :float_precision => 9)) } + end + end + + task :generate do + require "fileutils" + + $input_dir = ENV["INPUT_DIR"] || File.join(API_UMBRELLA_SRC_ROOT, "build/work/maps") + FileUtils.rm_rf(File.join($input_dir, "tmp")) + FileUtils.mkdir_p(File.join($input_dir, "tmp")) + + $output_dir = File.join(API_UMBRELLA_SRC_ROOT, "src/api-umbrella/admin-ui/public/maps") + FileUtils.rm_rf($output_dir) + FileUtils.mkdir_p($output_dir) + + Rake::Task["maps:download"].invoke + Rake::Task["maps:world"].invoke + Rake::Task["maps:us"].invoke + Rake::Task["maps:simplify"].invoke + end +end diff --git a/src/api-umbrella/admin-ui/.eslintrc.js b/src/api-umbrella/admin-ui/.eslintrc.js index 3454bc141..82e21621c 100644 --- a/src/api-umbrella/admin-ui/.eslintrc.js +++ b/src/api-umbrella/admin-ui/.eslintrc.js @@ -32,7 +32,6 @@ module.exports = { '_': true, 'ace': true, 'bootbox': true, - 'google': true, 'inflection': true, 'jstz': true, 'marked': true, diff --git a/src/api-umbrella/admin-ui/app/components/stats/drilldown/results-chart.js b/src/api-umbrella/admin-ui/app/components/stats/drilldown/results-chart.js index 428a9769e..2c694da25 100644 --- a/src/api-umbrella/admin-ui/app/components/stats/drilldown/results-chart.js +++ b/src/api-umbrella/admin-ui/app/components/stats/drilldown/results-chart.js @@ -1,101 +1,122 @@ import Ember from 'ember'; +import echarts from 'npm:echarts'; export default Ember.Component.extend({ - chartOptions: { - pointSize: 0, - lineWidth: 1, - focusTarget: 'category', - width: '100%', - chartArea: { - width: '95%', - height: '88%', - top: 0, - }, - fontSize: 12, - isStacked: true, - areaOpacity: 0.2, - vAxis: { - gridlines: { - count: 4, - }, - textStyle: { - fontSize: 11, - }, - textPosition: 'in', - }, - hAxis: { - format: 'MMM d', - baselineColor: 'transparent', - gridlines: { - color: 'transparent', - }, - }, - legend: { - position: 'none', - }, - }, - - chartData: { - cols: [ - {id: 'date', label: 'Date', type: 'datetime'}, - {id: 'hits', label: 'Hits', type: 'number'}, - ], - rows: [], - }, - didInsertElement() { - google.charts.setOnLoadCallback(this.renderChart.bind(this)); + this.renderChart(); }, renderChart() { - this.chart = new google.visualization.AreaChart(this.$()[0]); - - // On first load, refresh the data. Afterwards the observer should handle - // refreshing. - if(!this.dataTable) { - this.refreshData(); - } + this.$()[0].style = "width: 100%; height: 220px; margin-top: 15px" + this.chart = echarts.init(this.$()[0], 'api-umbrella-theme'); + this.draw(); - $(window).on('resize', _.debounce(this.draw.bind(this), 100)); + $(window).on('resize', _.debounce(this.chart.resize, 100)); }, - refreshData: Ember.observer('hitsOverTime', function() { - // Defer until Google Charts is loaded if this got called earlier from the - // observer. - if(!google || !google.visualization || !google.visualization.DataTable) { - return; - } + refreshData: Ember.on('init', Ember.observer('hitsOverTime', function() { + let data = [] + let labels = []; - this.chartData = this.get('hitsOverTime'); - for(let i = 0; i < this.chartData.rows.length; i++) { - this.chartData.rows[i].c[0].v = new Date(this.chartData.rows[i].c[0].v); + let hits = this.get('hitsOverTime'); + for(let i = 1; i < hits.cols.length; i++) { + data.push({ + name: hits.cols[i].label, + type: 'line', + sampling: 'average', + stack: 'hits', + areaStyle: { + normal: {}, + }, + lineStyle: { + normal: { + width: 1, + }, + }, + data: [], + }); } - // Show hours on the axis when viewing minutely date. - switch(this.get('controller.query.params.interval')) { - case 'minute': - this.chartOptions.hAxis.format = 'MMM d h a'; - break; - default: - this.chartOptions.hAxis.format = 'MMM d'; - break; - } + for(let i = 0; i < hits.rows.length; i++) { + labels.push(hits.rows[i].c[0].f); - // Show hours on the axis when viewing less than 2 days of hourly data. - if(this.get('controller.query.params.interval') === 'hour') { - let start = moment(this.get('controller.query.params.start_at')); - let end = moment(this.get('controller.query.params.end_at')); - let maxDuration = 2 * 24 * 60 * 60; // 2 days - if(end.unix() - start.unix() <= maxDuration) { - this.chartOptions.hAxis.format = 'MMM d h a'; + for(let j = 1; j < hits.rows[i].c.length; j++) { + data[j - 1].data.push(hits.rows[i].c[j].v); } } - this.dataTable = new google.visualization.DataTable(this.chartData); + this.setProperties({ + chartData: data, + chartLabels: labels, + }); + this.draw(); - }), + })), draw() { - this.chart.draw(this.dataTable, this.chartOptions); + if(!this.chart || !this.get('chartData')) { + return; + } + + this.chart.setOption({ + tooltip: { + trigger: 'axis', + }, + toolbox: { + orient: 'vertical', + iconStyle: { + emphasis: { + textPosition: 'left', + textAlign: 'right', + }, + }, + feature: { + saveAsImage: { + title: 'save as image', + name: 'api_umbrella_chart', + excludeComponents: ['toolbox', 'dataZoom'], + pixelRatio: 2, + }, + dataZoom: { + yAxisIndex: 'none', + title: { + zoom: 'zoom', + back: 'restore zoom', + }, + }, + }, + }, + yAxis: { + type: 'value', + min: 0, + minInterval: 1, + splitNumber: 3, + }, + xAxis: { + type: 'category', + boundaryGap: false, + data: this.get('chartLabels'), + }, + series: this.get('chartData'), + title: { + show: false, + }, + legend: { + show: false, + }, + grid: { + show: false, + left: 90, + top: 10, + right: 30, + }, + dataZoom: [ + { + type: 'slider', + start: 0, + end: 100, + }, + ], + }); }, }); diff --git a/src/api-umbrella/admin-ui/app/components/stats/logs/results-chart.js b/src/api-umbrella/admin-ui/app/components/stats/logs/results-chart.js index 5d2b4f1ba..1143c012b 100644 --- a/src/api-umbrella/admin-ui/app/components/stats/logs/results-chart.js +++ b/src/api-umbrella/admin-ui/app/components/stats/logs/results-chart.js @@ -1,107 +1,125 @@ import Ember from 'ember'; +import echarts from 'npm:echarts'; export default Ember.Component.extend({ - chartOptions: { - focusTarget: 'category', - width: '100%', - chartArea: { - width: '95%', - height: '88%', - top: 0, - }, - fontSize: 12, - colors: ['#4682B4'], - areaOpacity: 0.2, - vAxis: { - gridlines: { - count: 4, - }, - textStyle: { - fontSize: 11, - }, - textPosition: 'in', - }, - hAxis: { - format: 'MMM d', - baselineColor: 'transparent', - gridlines: { - color: 'transparent', - }, - }, - legend: { - position: 'none', - }, - }, - - chartData: { - cols: [ - {id: 'date', label: 'Date', type: 'datetime'}, - {id: 'hits', label: 'Hits', type: 'number'}, - ], - rows: [], - }, - didInsertElement() { - google.charts.setOnLoadCallback(this.renderChart.bind(this)); + this.renderChart(); }, renderChart() { - this.chart = new google.visualization.AreaChart(this.$()[0]); - - // On first load, refresh the data. Afterwards the observer should handle - // refreshing. - if(!this.dataTable) { - this.refreshData(); - } + this.$()[0].style = "width: 100%; height: 220px; margin-top: 15px" + this.chart = echarts.init(this.$()[0], 'api-umbrella-theme'); + this.draw(); - $(window).on('resize', _.debounce(this.draw.bind(this), 100)); + $(window).on('resize', _.debounce(this.chart.resize, 100)); }, - refreshData: Ember.observer('hitsOverTime', function() { - // Defer until Google Charts is loaded if this got called earlier from the - // observer. - if(!google || !google.visualization || !google.visualization.DataTable) { - return; - } + refreshData: Ember.on('init', Ember.observer('hitsOverTime', function() { + let data = [] + let labels = []; - this.chartData.rows = this.get('hitsOverTime') || []; - for(let i = 0; i < this.chartData.rows.length; i++) { - this.chartData.rows[i].c[0].v = new Date(this.chartData.rows[i].c[0].v); + let hits = this.get('hitsOverTime'); + for(let i = 0; i < hits.length; i++) { + data.push(hits[i].c[1].v); + labels.push(hits[i].c[0].f); } - if(this.chartData.rows.length < 100) { - this.chartOptions.pointSize = 8; - this.chartOptions.lineWidth = 4; - } else { - this.chartOptions.pointSize = 0; - this.chartOptions.lineWidth = 3; - } + this.setProperties({ + chartData: data, + chartLabels: labels, + }); - // Show hours on the axis when viewing minutely date. - switch(this.get('controller.query.params.interval')) { - case 'minute': - this.chartOptions.hAxis.format = 'MMM d h a'; - break; - default: - this.chartOptions.hAxis.format = 'MMM d'; - break; - } + this.draw(); + })), - // Show hours on the axis when viewing less than 2 days of hourly data. - if(this.get('controller.query.params.interval') === 'hour') { - let start = moment(this.get('controller.query.params.start_at')); - let end = moment(this.get('controller.query.params.end_at')); - let maxDuration = 2 * 24 * 60 * 60; // 2 days - if(end.unix() - start.unix() <= maxDuration) { - this.chartOptions.hAxis.format = 'MMM d h a'; - } + draw() { + if(!this.chart || !this.get('chartData')) { + return; } - this.dataTable = new google.visualization.DataTable(this.chartData); - this.draw(); - }), + let showAllSymbol = false; + let lineWidth = 2; + if(this.get('chartData').length < 100) { + showAllSymbol = true; + lineWidth = 4; + } - draw() { - this.chart.draw(this.dataTable, this.chartOptions); + this.chart.setOption({ + tooltip: { + trigger: 'axis', + }, + toolbox: { + orient: 'vertical', + iconStyle: { + emphasis: { + textPosition: 'left', + textAlign: 'right', + }, + }, + feature: { + saveAsImage: { + title: 'save as image', + name: 'api_umbrella_chart', + excludeComponents: ['toolbox', 'dataZoom'], + pixelRatio: 2, + }, + dataZoom: { + yAxisIndex: 'none', + title: { + zoom: 'zoom', + back: 'restore zoom', + }, + }, + }, + }, + yAxis: { + type: 'value', + min: 0, + minInterval: 1, + splitNumber: 3, + }, + xAxis: { + type: 'category', + boundaryGap: false, + data: this.get('chartLabels'), + }, + series: [ + { + name: 'Hits', + type: 'line', + sampling: 'average', + showAllSymbol: showAllSymbol, + symbolSize: lineWidth + 4, + areaStyle: { + normal: {}, + }, + lineStyle: { + normal: { + width: lineWidth, + }, + }, + data: this.get('chartData'), + }, + ], + title: { + show: false, + }, + legend: { + show: false, + }, + grid: { + show: false, + left: 90, + top: 10, + right: 30, + }, + dataZoom: [ + { + type: 'slider', + start: 0, + end: 100, + }, + ], + }); }, }); diff --git a/src/api-umbrella/admin-ui/app/components/stats/map/results-map.js b/src/api-umbrella/admin-ui/app/components/stats/map/results-map.js index a9e7b3784..bf27450d9 100644 --- a/src/api-umbrella/admin-ui/app/components/stats/map/results-map.js +++ b/src/api-umbrella/admin-ui/app/components/stats/map/results-map.js @@ -1,91 +1,244 @@ import Ember from 'ember'; +import echarts from 'npm:echarts'; export default Ember.Component.extend({ - chartOptions: { - width: 640, - colorAxis: { - colors: ['#B0DBFF', '#4682B4'], - }, - }, - - chartData: { - cols: [], - rows: [], - }, + routing: Ember.inject.service('-routing'), didInsertElement() { - google.charts.setOnLoadCallback(this.renderChart.bind(this)); + this.renderChart(); }, renderChart() { - this.chart = new google.visualization.GeoChart(this.$()[0]); - google.visualization.events.addListener(this.chart, 'regionClick', _.bind(this.handleRegionClick, this)); - google.visualization.events.addListener(this.chart, 'select', _.bind(this.handleCityClick, this)); - - // On first load, refresh the data. Afterwards the observer should handle - // refreshing. - if(!this.dataTable) { - this.refreshData(); - } + this.$()[0].style = "width: 100%; height: 400px; margin-top: 15px" + this.chart = echarts.init(this.$()[0], 'api-umbrella-theme'); + this.chart.showLoading(); + this.chart.on('mapselectchanged', this.handleRegionClick.bind(this)); + this.chart.on('click', this.handleCityClick.bind(this)); + this.draw(); - $(window).on('resize', _.debounce(this.draw.bind(this), 100)); + $(window).on('resize', _.debounce(this.chart.resize, 100)); }, - handleRegionClick(region) { - this.set('controller.query.params.region', region.region); + handleRegionClick(event) { + let queryParams = _.clone(this.get('queryParamValues')); + queryParams.region = event.name; + this.get('routing').transitionTo('stats.map', undefined, queryParams); }, - handleCityClick() { - if(this.get('regionField') === 'request_ip_city') { - let selection = this.chart.getSelection(); - if(selection) { - let rowIndex = selection[0].row; - let region = this.dataTable.getValue(rowIndex, 2); - - let params = _.clone(this.get('controller.query.params')); - params.search = 'request_ip_city:"' + region + '"'; - let router = this.get('controller.target.router'); - router.transitionTo('stats.logs', $.param(params)); - } + handleCityClick(event) { + if(event.seriesType === 'scatter') { + let currentRegion = this.get('allQueryParamValues.region').split('-'); + let currentCountry = currentRegion[0]; + currentRegion = currentRegion[1]; + let queryParams = _.clone(this.get('queryParamValues')); + queryParams.query = JSON.stringify({ + condition: 'AND', + rules: [ + { + field: 'gatekeeper_denied_code', + id: 'gatekeeper_denied_code', + input: 'select', + operator: 'is_null', + type: 'string', + value: null, + }, + { + field: 'request_ip_country', + id: 'request_ip_country', + input: 'text', + operator: 'equal', + type: 'string', + value: currentCountry, + }, + { + field: 'request_ip_region', + id: 'request_ip_region', + input: 'text', + operator: 'equal', + type: 'string', + value: currentRegion, + }, + { + field: 'request_ip_city', + id: 'request_ip_city', + input: 'text', + operator: 'equal', + type: 'string', + value: event.name, + }, + ], + }); + + this.get('routing').transitionTo('stats.logs', undefined, queryParams); } }, - refreshData: Ember.observer('regions', function() { - // Defer until Google Charts is loaded if this got called earlier from the - // observer. - if(!google || !google.visualization || !google.visualization.DataTable) { - return; - } + refreshMap: Ember.on('init', Ember.observer('allQueryParamValues.region', function() { + let currentRegion = this.get('allQueryParamValues.region'); + $.get('/admin/maps/' + currentRegion + '.json', (geojson) => { + this.labels = geojson._labels || {}; + + let specialMapAreas = {}; + if(currentRegion === 'US') { + specialMapAreas = { + 'US-AK': { + left: -131, + top: 25, + width: 15, + }, + 'US-HI': { + left: -112, + top: 26, + width: 5, + }, + }; + } - this.chartData.rows = this.get('regions') || []; - this.chartData.cols = [ - {id: 'region', label: 'Region', type: 'string'}, - {id: 'startDate', label: 'Hits', type: 'number'}, - ]; + echarts.registerMap('region', geojson, specialMapAreas); + + this.set('loadedMapRegion', this.get('allQueryParamValues.region')); + this.draw(); + }); + })), + + refreshData: Ember.on('init', Ember.observer('regions', function() { + let currentRegion = this.get('allQueryParamValues.region'); + + let data = []; + let maxValue = 2; + let maxValueDisplay = '2'; + let hits = this.get('regions'); + let regionField = this.get('regionField'); + for(let i = 0; i < hits.length; i++) { + let value, valueDisplay; + if(regionField === 'request_ip_city') { + value = hits[i].c[3].v; + valueDisplay = hits[i].c[3].f; + let lat = hits[i].c[0].v; + let lng = hits[i].c[1].v; + data.push({ + name: hits[i].c[2].v, + value: [lng, lat, value], + valueDisplay: valueDisplay, + }); + } else { + value = hits[i].c[1].v; + valueDisplay = hits[i].c[1].f; + let code = hits[i].c[0].v; + if(currentRegion === 'US') { + code = 'US-' + code; + } + + data.push({ + name: code, + value: value, + valueDisplay: valueDisplay, + }); + } - if(this.get('regionField') === 'request_ip_city') { - this.chartData.cols.unshift({id: 'latitude', label: 'Latitude', type: 'number'}, - {id: 'longitude', label: 'Longitude', type: 'number'}); + if(value > maxValue) { + maxValue = value; + maxValueDisplay = valueDisplay; + } } - this.chartOptions.region = this.get('allQueryParamValues.region'); - if(this.chartOptions.region.indexOf('US') === 0) { - this.chartOptions.resolution = 'provinces'; - } else { - this.chartOptions.resolution = 'countries'; + this.set('chartData', data); + this.set('chartDataMaxValue', maxValue); + this.set('chartDataMaxValueDisplay', maxValueDisplay); + this.set('loadedDataRegion', this.get('allQueryParamValues.region')); + + this.draw(); + })), + + draw() { + let currentRegion = this.get('allQueryParamValues.region'); + if(!this.chart || this.get('loadedDataRegion') !== currentRegion || this.get('loadedMapRegion') !== currentRegion) { + return; } - if(this.chartOptions.region === 'world' || this.chartOptions.region === 'US') { - this.chartOptions.displayMode = 'regions'; + let geo; + let series = {}; + if(this.get('regionField') === 'request_ip_city') { + geo = { + map: 'region', + silent: true, + }; + + let maxValue = this.get('chartDataMaxValue'); + series = [ + { + name: 'Hits Scatter', + type: 'scatter', + coordinateSystem: 'geo', + data: this.get('chartData'), + symbolSize: (val) => { + return Math.max(Math.round((val[2] / maxValue) * 30), 6); + }, + }, + ]; } else { - this.chartOptions.displayMode = 'markers'; + series = [ + { + name: 'Hits', + type: 'map', + map: 'region', + selectedMode: 'single', + data: this.get('chartData'), + }, + ]; } - this.dataTable = new google.visualization.DataTable(this.chartData); - this.draw(); - }), - - draw() { - this.chart.draw(this.dataTable, this.chartOptions); + this.chart.hideLoading(); + this.chart.setOption({ + tooltip: { + trigger: 'item', + formatter: function(params) { + let label = this.labels[params.name] || params.name; + let valueDisplay = params.data.valueDisplay || 0; + return '' + label + '
Hits: ' + valueDisplay + ''; + }.bind(this), + }, + toolbox: { + orient: 'vertical', + iconStyle: { + emphasis: { + textPosition: 'left', + textAlign: 'right', + }, + }, + feature: { + saveAsImage: { + title: 'save as image', + name: 'api_umbrella_chart', + excludeComponents: ['toolbox', 'dataZoom'], + pixelRatio: 2, + }, + }, + }, + visualMap: { + type: 'continuous', + min: 1, + max: this.get('chartDataMaxValue'), + orient: 'horizontal', + text: [ + this.get('chartDataMaxValueDisplay'), + '1', + ], + }, + geo: geo, + series: series, + title: { + show: false, + }, + legend: { + show: false, + }, + grid: { + show: false, + left: 90, + top: 10, + right: 30, + }, + }); }, }); diff --git a/src/api-umbrella/admin-ui/app/index.html b/src/api-umbrella/admin-ui/app/index.html index 373f98904..410eea131 100644 --- a/src/api-umbrella/admin-ui/app/index.html +++ b/src/api-umbrella/admin-ui/app/index.html @@ -30,19 +30,6 @@ {{content-for "body"}} - - - diff --git a/src/api-umbrella/admin-ui/app/initializers/echarts.js b/src/api-umbrella/admin-ui/app/initializers/echarts.js new file mode 100644 index 000000000..6bca13774 --- /dev/null +++ b/src/api-umbrella/admin-ui/app/initializers/echarts.js @@ -0,0 +1,100 @@ +import echarts from 'npm:echarts'; + +export function initialize() { + let colorPalette = [ + '#3366CC', + '#DC3912', + '#FF9900', + '#109618', + '#990099', + '#3B3EAC', + '#0099C6', + '#DD4477', + '#66AA00', + '#B82E2E', + '#316395', + '#994499', + '#22AA99', + '#AAAA11', + '#6633CC', + '#E67300', + '#8B0707', + '#329262', + '#5574A6', + '#3B3EAC', + ]; + + function axisCommon() { + return { + splitLine: { + lineStyle: { + color: '#ddd', + }, + }, + }; + } + + function mapCommon() { + return { + itemStyle: { + normal: { + color: 'transparent', + areaColor: '#f5f5f5', + borderColor: '#bbb', + }, + emphasis: { + borderColor: '#999', + borderWidth: 1, + }, + }, + label: { + normal: { + show: false, + }, + emphasis: { + show: false, + }, + }, + }; + } + + echarts.registerTheme('api-umbrella-theme', { + color: colorPalette, + graph: { + color: colorPalette, + }, + areaStyle: { + normal: { + opacity: 0.2, + }, + }, + timeAxis: axisCommon(), + logAxis: axisCommon(), + valueAxis: axisCommon(), + categoryAxis: axisCommon(), + geo: mapCommon(), + map: mapCommon(), + scatter: { + itemStyle: { + normal: { + borderColor: '#bbb', + borderWidth: 1, + }, + emphasis: { + borderColor: '#666', + borderWidth: 1, + }, + }, + }, + visualMap: { + inRange: { + color: ['#add9ff', '#4481b6'], + }, + }, + }); +} + +export default { + name: 'echarts', + initialize, +}; diff --git a/src/api-umbrella/admin-ui/package.json b/src/api-umbrella/admin-ui/package.json index ed026b80f..0cd567181 100644 --- a/src/api-umbrella/admin-ui/package.json +++ b/src/api-umbrella/admin-ui/package.json @@ -21,7 +21,9 @@ "devDependencies": { "bower": "~1.8.0", "broccoli-asset-rev": "^2.4.2", + "echarts": "~3.4.0", "ember-bootstrap": "~0.11.2", + "ember-browserify": "~1.1.13", "ember-buffered-proxy": "~0.6.0", "ember-busy-blocker": "~0.1.0", "ember-cli": "~2.8.0", diff --git a/src/api-umbrella/admin-ui/public/maps/AD.json b/src/api-umbrella/admin-ui/public/maps/AD.json new file mode 100644 index 000000000..7ea9c9370 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/AD.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"AD"},"geometry":{"type":"Polygon","coordinates":[[[1.70605469,0.42503320312499994E2],[1.58642578,0.42455957031249994E2],[1.48623047,0.42434472656249994E2],[1.428125,42.4613281],[1.41484375,0.42548388671874996E2],[1.42832031,42.5958984],[1.50136719,0.42642724609374994E2],[1.56816406,42.6350098],[1.70986328,42.6044434],[1.74023438,42.5567383],[1.70605469,0.42503320312499994E2]]]}}],"_labels":{"AD":"Andorra"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/AE.json b/src/api-umbrella/admin-ui/public/maps/AE.json new file mode 100644 index 000000000..c9c1c5ebe --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/AE.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"AE"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.53927832031250006E2,0.24177197265624983E2],[53.928125,0.24143359375000017E2],[0.53799121093750074E2,0.24135546875000017E2],[53.6344727,0.24169775390624977E2],[53.6896484,0.24210791015624977E2],[53.8337891,0.24258935546875023E2],[0.53927832031250006E2,0.24177197265624983E2]]],[[[52.6168945,24.2885742],[52.5835938,0.24352343750000042E2],[0.52629394531249964E2,0.24376757812500045E2],[52.6576172,0.24332617187500034E2],[52.6168945,24.2885742]]],[[[53.3322266,0.24258593750000045E2],[53.2583008,0.24252929687500057E2],[53.190918,0.24290917968749966E2],[53.3325195,24.3416016],[0.53412402343750074E2,0.24411035156250023E2],[53.4453125,0.24371191406249977E2],[53.3826172,0.24280859375000063E2],[53.3322266,0.24258593750000045E2]]],[[[0.54465429687500006E2,24.4427734],[54.3577148,24.4427734],[54.3983398,24.5063477],[0.54465429687500006E2,24.4427734]]],[[[56.1835938,0.25644921875000023E2],[56.2495117,0.25625390624999966E2],[56.2978516,0.25650683593750045E2],[56.3634766,0.25569384765625017E2],[56.3728516,25.0183105],[56.2678711,24.8666992],[56.106543,0.24748681640624966E2],[56.0638672,0.24738769531249996E2],[55.9703125,0.24858935546875045E2],[56.0166992,0.24907714843750025E2],[56.0005859,0.24953222656249974E2],[55.9158203,0.24971777343750034E2],[0.55795703125000074E2,0.24868115234374955E2],[55.8039062,24.6362305],[55.7681641,24.490625],[55.8056641,0.24349804687499983E2],[0.55760839843750055E2,0.24242675781249996E2],[55.9286133,0.24215136718750074E2],[55.9921875,0.24092968749999955E2],[55.9851563,0.24063378906249966E2],[55.7791016,0.24017089843750057E2],[55.696582,0.24024121093749983E2],[55.5478516,23.9913574],[55.468457,23.9411133],[0.55519335937500074E2,23.885498],[55.5316406,23.819043],[55.5084961,23.7246094],[55.3532227,23.3874512],[55.1999023,0.23034765625000034E2],[55.1858398,22.7041016],[0.55104296875000074E2,0.22621484375000023E2],[52.5550781,0.22932812499999955E2],[0.51592578125000074E2,24.0788574],[51.572168,0.24128320312499962E2],[51.5683594,0.24286181640625074E2],[51.6054688,0.24338427734375042E2],[51.6645508,0.24250439453124983E2],[51.7675781,24.2543945],[51.7916992,0.24074755859375074E2],[51.8431641,0.24010888671875023E2],[0.51906054687500074E2,23.9853516],[0.52118554687499994E2,23.9710938],[52.2508789,0.23995214843750034E2],[52.5114258,24.1125],[52.6482422,0.24154638671875002E2],[53.0263672,0.24147314453125034E2],[53.3295898,0.24098437500000017E2],[53.8017578,0.24069482421874962E2],[53.8933594,24.0770508],[54.1479492,24.1711914],[54.3042969,0.24254296874999962E2],[54.3970703,0.24278173828125034E2],[0.54458398437499994E2,0.24358251953125006E2],[54.534668,0.24530957031250008E2],[0.54624121093750006E2,24.6212891],[54.6589844,0.24715527343749955E2],[54.7467773,24.8104492],[55.0981445,0.25041601562500034E2],[55.3035156,25.2368164],[55.3216797,25.2998047],[0.55433398437500074E2,0.25394482421874983E2],[0.55522851562499994E2,0.25498144531249977E2],[55.9412109,0.25793994140625017E2],[56.0251953,25.9160156],[56.0804688,0.26062646484375048E2],[56.1674805,0.26047460937499977E2],[56.1725586,0.25945166015625006E2],[0.56144628906250006E2,0.25690527343750006E2],[56.1835938,0.25644921875000023E2]],[[56.2105469,0.25213281250000023E2],[56.2818359,25.2355469],[56.2773438,0.25300878906250034E2],[0.56234277343750044E2,0.25303808593750006E2],[56.2105469,0.25213281250000023E2]]]]}}],"_labels":{"AE":"United Arab Emirates"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/AF.json b/src/api-umbrella/admin-ui/public/maps/AF.json new file mode 100644 index 000000000..dbe78548c --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/AF.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"AF"},"geometry":{"type":"Polygon","coordinates":[[[74.8913086,37.2316406],[74.7673828,0.37249169921874994E2],[74.7266602,37.2907227],[74.372168,37.1577148],[74.5414063,37.022168],[74.0018555,36.8230957],[73.7691406,0.36888476562499996E2],[73.1167969,0.36868554687499994E2],[72.6228516,36.8295898],[72.4311523,36.7658203],[72.1567383,36.7008789],[72.0956055,36.6337402],[71.8222656,36.486084],[71.7726563,36.4318359],[71.6205078,36.4364746],[71.4632813,0.36293261718749996E2],[71.2329102,36.1217773],[71.1850586,36.0420898],[71.3428711,0.35938525390624996E2],[71.4275391,35.8337402],[71.519043,35.5975098],[71.5719727,35.5468262],[71.6005859,35.4079102],[71.5455078,0.35288867187499996E2],[71.6205078,0.35183007812499994E2],[71.4550781,0.34966943359374994E2],[71.2941406,0.34867724609374996E2],[71.1132812,34.6815918],[71.065625,34.5996094],[70.965625,34.5303711],[71.0957031,0.34369433593749996E2],[71.0913086,0.34120263671874994E2],[71.0515625,34.049707],[70.8484375,33.9818848],[70.6540039,0.33952294921874994E2],[70.4157227,33.9504395],[70.2536133,0.33975976562499994E2],[69.9947266,0.34051806640624996E2],[69.8896484,34.0072754],[69.8680664,33.8976562],[70.0566406,0.33719873046874994E2],[70.1341797,0.33620751953124994E2],[70.2841797,0.33369042968749994E2],[70.2611328,33.2890137],[69.9201172,33.1125],[69.7037109,33.0947266],[69.5015625,0.33020068359374996E2],[69.453125,32.8328125],[69.4045898,32.7642578],[69.4053711,32.6827148],[69.2414063,32.4335449],[69.2792969,0.31936816406249992E2],[69.0831055,0.31738476562499994E2],[68.8689453,0.31634228515624997E2],[68.7823242,0.31646435546874994E2],[68.5976562,0.31802978515624996E2],[68.4432617,31.7544922],[68.1610352,0.31802978515624996E2],[68.0171875,31.6779785],[67.7398438,0.31548193359374995E2],[67.5782227,0.31506494140624994E2],[67.6470703,0.31409960937499996E2],[67.7378906,0.31343945312499997E2],[67.452832,0.31234619140624996E2],[67.2873047,0.31217822265624996E2],[67.115918,31.2429199],[67.0277344,0.31300244140624997E2],[66.9243164,0.31305615234374997E2],[66.7313477,31.1945313],[66.5667969,30.996582],[66.397168,0.30912207031249995E2],[66.2869141,30.6079102],[66.3054688,30.3211426],[66.2384766,0.30109619140624996E2],[66.3133789,29.9685547],[66.1770508,0.29835595703124994E2],[65.6662109,0.29701318359374994E2],[65.0955078,0.29559472656249994E2],[64.5210938,0.29564501953124992E2],[64.2661133,29.5069336],[64.0987305,29.3919434],[63.9709961,29.4300781],[63.5675781,0.29497998046874997E2],[62.4765625,29.4083496],[0.62373437500000016E2,29.4253906],[60.8433594,0.29858691406249992E2],[61.7841797,0.30831933593749994E2],[61.8142578,0.31072558593749992E2],[61.7550781,31.2853027],[61.6601562,31.3824219],[60.8541016,31.483252],[60.8207031,0.31495166015624996E2],[0.60791601562500006E2,0.31660595703124994E2],[60.8042969,31.7344727],[60.7899414,31.9871094],[60.8292969,0.32249414062499994E2],[0.60576562500000016E2,32.994873],[60.5605469,33.1378418],[0.60718066406250024E2,33.3235352],[60.9169922,33.5052246],[0.60906933593750004E2,0.33538964843749994E2],[60.6545898,33.5604004],[60.5108398,33.638916],[60.4859375,33.7119141],[60.5270508,33.8419922],[0.60485742187500016E2,0.34094775390624996E2],[60.6426758,0.34307177734374996E2],[60.8894531,34.3194336],[60.7262695,34.5182617],[60.9511719,0.34653857421874996E2],[60.9578125,34.7100586],[61.0800781,0.34855615234374994E2],[61.0702148,34.9217285],[61.1496094,35.09375],[61.1,35.2723145],[61.1892578,35.3120117],[61.2785156,35.5137695],[61.2620117,35.6195801],[61.3447266,35.6294922],[61.5427734,35.4578613],[61.7197266,35.4194336],[61.9838867,35.4437012],[62.252832,35.2502441],[62.3078125,0.35170800781249994E2],[62.4628906,0.35251367187499994E2],[62.6105469,35.2331543],[62.7226562,35.2713379],[63.0566406,35.4458008],[63.0841797,35.5680664],[63.1697266,35.678125],[63.1085938,35.8187012],[63.1789062,0.35858447265624996E2],[0.63301660156250016E2,35.8583984],[63.8625,0.36012353515624994E2],[64.009668,36.0121094],[64.0921875,0.36112695312499994E2],[64.3580078,36.2260742],[64.5110352,36.3406738],[64.6025391,36.554541],[64.8163086,37.1320801],[65.0896484,0.37237939453124994E2],[65.5549805,37.2511719],[65.6412109,0.37467822265624996E2],[65.7650391,37.5691406],[66.1083984,37.4147461],[66.471875,37.3447266],[66.8277344,37.3712891],[67.0688477,37.3348145],[67.1955078,37.2352051],[67.3197266,37.2095703],[67.4416992,37.2580078],[67.7,37.2272461],[67.8344727,37.064209],[67.9580078,36.9720215],[68.0677734,36.9498047],[68.2995117,0.37088427734374996E2],[68.5464844,37.1834473],[68.6691406,37.2583984],[68.8237305,37.2707031],[68.8553711,37.3168457],[68.9604492,37.3250488],[69.2648438,37.1083984],[69.4144531,37.2077637],[69.4296875,37.2908691],[69.3992188,0.37399316406249994E2],[69.4201172,37.4867188],[69.4920898,37.5530762],[69.6257813,0.37594042968749996E2],[69.940625,37.600293],[70.1198242,37.5435059],[70.2514648,37.6641602],[70.2549805,37.7653809],[70.2146484,37.9244141],[70.4177734,38.0754395],[70.6158203,38.3344238],[70.7359375,38.4225586],[70.8789062,38.4563965],[71.0521484,0.38417871093749994E2],[71.2558594,38.3069824],[71.3327148,38.1702637],[71.2785156,37.9184082],[71.3896484,0.37906298828124996E2],[71.5519531,0.37933154296874996E2],[71.5803711,37.8642578],[71.5050781,0.37602929687499994E2],[71.4329102,37.1275391],[71.5308594,0.36845117187499994E2],[71.5974609,36.7329102],[71.7337891,36.6840332],[71.9419922,36.7664551],[72.1535156,0.36900537109374994E2],[72.3587891,36.9829102],[72.6574219,37.0290527],[72.7570313,37.1727051],[72.8955078,37.2675293],[73.2111328,0.37408496093749996E2],[73.4813477,37.4716797],[73.7206055,37.41875],[73.7172852,37.3294434],[73.6275391,37.2615723],[73.7496094,37.2317871],[74.1670898,37.3294434],[74.259668,0.37415429687499994E2],[74.5242188,0.37382373046874996E2],[74.659375,37.3944824],[74.8913086,37.2316406]]]}}],"_labels":{"AF":"Afghanistan"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/AI.json b/src/api-umbrella/admin-ui/public/maps/AI.json new file mode 100644 index 000000000..558ea6f68 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/AI.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"AI"},"geometry":{"type":"Polygon","coordinates":[[[-63.0012207,18.2217773],[-63.1600098,0.18171386718749996E2],[-0.63026025390624994E2,0.18269726562499997E2],[-63.0012207,18.2217773]]]}}],"_labels":{"AI":"Anguilla"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/AL.json b/src/api-umbrella/admin-ui/public/maps/AL.json new file mode 100644 index 000000000..dcbcbeb5b --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/AL.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"AL"},"geometry":{"type":"Polygon","coordinates":[[[0.20063964843749996E2,42.5472656],[20.1035156,42.5246582],[0.20240527343750017E2,42.3389648],[0.20348242187500006E2,42.3087891],[0.20485449218750006E2,42.2233887],[0.20522851562500023E2,42.1714844],[20.5753906,0.42013085937499994E2],[0.20581445312500023E2,41.9174316],[0.20505175781250014E2,41.7064941],[0.20516210937500002E2,0.41574755859374996E2],[0.20448632812500023E2,0.41521289062499996E2],[20.4923828,41.3914062],[20.4889648,0.41272607421874994E2],[20.5678711,41.127832],[0.20656054687500017E2,0.41061669921874994E2],[0.20740820312500006E2,40.9052734],[20.9334961,40.903125],[20.9557617,0.40775292968749994E2],[0.21031054687500014E2,40.6586426],[20.9501953,40.4943848],[0.20806054687500023E2,0.40445458984374994E2],[20.6969727,0.40246386718749996E2],[20.6574219,40.1173828],[20.60625,0.40082666015624994E2],[20.4560547,0.40065576171874994E2],[0.20311132812500006E2,39.9794434],[20.3824219,0.39802636718749994E2],[20.3061523,39.7966797],[0.20272070312500006E2,39.7011719],[0.20206835937500017E2,39.6535156],[0.20001269531250017E2,39.7094238],[19.9648438,39.8722656],[0.19851855468750017E2,40.0435547],[19.4845703,40.2099609],[19.3981445,40.2848633],[19.3222656,40.4070801],[0.19440527343750002E2,40.3756836],[0.19439257812500017E2,0.40470263671874996E2],[19.3446289,40.6220703],[0.19383886718750006E2,40.7907227],[0.19461230468750017E2,40.9333008],[19.4560547,41.1060547],[19.4800781,41.236377],[19.440625,41.4247559],[0.19497363281250017E2,41.5626953],[19.5756836,0.41640429687499996E2],[0.19577539062500023E2,41.7875],[19.4682617,41.8561523],[0.19342382812500006E2,41.8690918],[0.19361425781250002E2,42.0690918],[19.2806641,42.1725586],[19.3996094,42.3418945],[19.5445312,42.4919434],[19.6544922,0.42628564453124994E2],[19.7407227,42.6069336],[19.737793,42.5251465],[19.7882813,42.4761719],[0.20063964843749996E2,42.5472656]]]}}],"_labels":{"AL":"Albania"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/AM.json b/src/api-umbrella/admin-ui/public/maps/AM.json new file mode 100644 index 000000000..9a8ba7954 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/AM.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"AM"},"geometry":{"type":"MultiPolygon","coordinates":[[[[45.5523438,40.6160645],[45.4788086,40.6069824],[0.45504492187500006E2,0.40664843750000045E2],[45.5523438,40.6160645]]],[[[45.0847656,0.41195458984374966E2],[45.1902344,41.1263672],[45.0707031,41.1008301],[45.2734375,41.00625],[45.3689453,41.0048828],[45.5875,40.8469238],[45.5793945,40.8044922],[45.4013672,0.40707128906250034E2],[45.3761719,40.6380859],[45.4543945,0.40532373046874966E2],[45.5695313,0.40416845703125055E2],[45.7357422,40.3291016],[45.9646484,40.2337891],[45.9675781,40.1748047],[45.8581055,0.40011279296875045E2],[45.6301758,40.014209],[45.5797852,39.9775391],[45.6618164,0.39956201171874994E2],[45.7896484,0.39881103515624964E2],[0.45863183593749994E2,39.8083496],[0.45939941406249964E2,39.7765625],[0.46202050781249994E2,39.5944824],[46.3216797,39.6174316],[0.46481445312499964E2,39.5551758],[46.478125,39.4750977],[46.3776367,39.4338867],[46.378418,0.39382275390624955E2],[0.46584765625000074E2,39.2236816],[46.4203125,0.39207373046875034E2],[46.4014648,39.1676758],[46.4898437,0.39069433593750006E2],[46.490625,38.9066895],[46.3177734,0.38912646484375045E2],[46.1701172,38.869043],[46.1144531,0.38877783203125034E2],[45.9518555,39.178125],[0.45977441406249994E2,39.2438965],[45.7663086,39.3784668],[45.7964844,0.39488134765625034E2],[45.7504883,39.5629395],[0.45610742187499994E2,39.5498047],[0.45456835937500074E2,0.39494482421875006E2],[45.3499023,0.39529882812500006E2],[0.45252539062500006E2,39.595459],[45.1725586,39.5706055],[45.1486328,39.6565918],[45.0316406,39.7651367],[44.7682617,39.7035156],[44.5604492,0.39887597656249966E2],[44.3996094,0.39995751953124966E2],[44.2892578,0.40040380859375006E2],[44.0053711,40.0141113],[43.7916992,40.0702637],[43.6662109,40.1263672],[43.7098633,40.1665039],[43.6083984,40.3565918],[43.5693359,40.482373],[0.43667871093749994E2,0.40574072265625034E2],[0.43722656249999964E2,40.7195312],[43.6316406,0.40929003906250045E2],[43.5174805,41.004834],[43.4394531,0.41107128906250004E2],[43.7931641,41.1311035],[0.44227343750000074E2,0.41213330078124955E2],[44.4730469,0.41191015625000034E2],[0.44564843750000044E2,41.2082031],[44.8414062,41.211377],[44.8113281,41.259375],[44.9758789,0.41277490234374966E2],[45.0847656,0.41195458984374966E2]],[[0.44969042968750074E2,41.0272461],[0.44969042968750074E2,41.0272461],[0.44969042968750074E2,41.0272461],[0.44969042968750074E2,41.0272461]]]]}}],"_labels":{"AM":"Armenia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/AO.json b/src/api-umbrella/admin-ui/public/maps/AO.json new file mode 100644 index 000000000..da7bfe349 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/AO.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"AO"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.14190820312500078E2,-5.87597656],[0.14398632812500066E2,-5.89267578],[0.14749414062500025E2,-5.88007813],[0.15726953125000051E2,-5.86386719],[0.16315234375000074E2,-5.865625],[16.5371094,-5.96582031],[16.7177734,-6.24140625],[16.709375,-6.47167969],[16.7429687,-6.61845703],[0.16919433593750057E2,-6.93398437],[16.9658203,-7.06210937],[16.9847656,-7.25742187],[0.17155078125000017E2,-7.46132813],[0.17245019531250048E2,-7.62333984],[0.17536035156249994E2,-8.07587891],[17.5795898,-8.09902344],[17.9130859,-8.06767578],[18.0087891,-8.10761719],[0.18191503906250063E2,-8.02382812],[0.18653417968750002E2,-7.93603516],[18.8983398,-7.99814453],[0.19142675781250034E2,-8.00146484],[19.3408203,-7.96660156],[0.19371679687500063E2,-7.65507812],[19.4798828,-7.47216797],[19.4837891,-7.27949219],[0.19527636718750014E2,-7.14443359],[0.19660351562500068E2,-7.03710938],[19.8751953,-6.98632812],[0.20482226562500074E2,-6.91582031],[0.20598730468750006E2,-6.93515625],[0.20536914062500045E2,-7.12177734],[20.6078125,-7.27773438],[21.190332,-7.28496094],[0.21751074218750034E2,-7.30546875],[21.8416016,-7.42099609],[21.8335938,-7.60166016],[0.21780078125000074E2,-7.86542969],[0.21800878906250063E2,-8.11191406],[0.21895898437500048E2,-8.34111328],[0.21905371093750034E2,-8.69335937],[21.8294922,-9.16845703],[0.21813183593750065E2,-9.46875],[21.8566406,-9.59423828],[21.9486328,-9.72558594],[0.22089160156250074E2,-9.86279297],[22.1977539,-10.040625],[0.22274511718750006E2,-0.10259082031249974E2],[22.3070313,-0.10691308593750023E2],[0.22280468750000068E2,-0.10783984374999973E2],[22.1779297,-10.8922852],[22.2261719,-0.11121972656250009E2],[22.2788086,-11.1941406],[22.3929688,-0.11159472656250001E2],[22.5610352,-11.0558594],[0.22814746093750017E2,-11.0802734],[0.23156738281250057E2,-0.11074804687499991E2],[0.23400195312500017E2,-0.10976464843750021E2],[23.8338867,-0.11013671874999972E2],[0.23901171875000017E2,-0.10983203124999974E2],[23.9665039,-0.10871777343750011E2],[24.0466797,-0.11405371093750006E2],[0.23970996093750017E2,-0.11635839843749977E2],[0.23983886718749996E2,-11.725],[23.9588867,-12.1177734],[0.23991308593750006E2,-0.12422167968750031E2],[23.909375,-0.12636132812500009E2],[23.8824219,-0.12799023437499983E2],[0.23962988281250006E2,-0.12988476562500026E2],[0.23843164062500023E2,-13.0009766],[21.9789063,-13.0009766],[21.9797852,-0.15955566406250014E2],[0.22040234375000068E2,-16.262793],[22.1506836,-0.16597167968749986E2],[0.22305078125000023E2,-0.16689550781249977E2],[22.9558594,-17.2857422],[0.23380664062500017E2,-17.640625],[21.9608398,-17.9051758],[21.4168945,-18.0006836],[21.2878906,-0.17962988281249977E2],[0.21113476562500068E2,-17.9557617],[0.20908300781250034E2,-18.0060547],[20.7455078,-0.18019726562499983E2],[0.20625097656250063E2,-17.9966797],[0.20392968750000023E2,-0.17887402343750026E2],[0.20194335937500057E2,-17.8636719],[0.19911816406250036E2,-0.17881347656250043E2],[19.6393555,-17.8686523],[0.19377148437500008E2,-17.8254883],[0.19076464843750045E2,-17.8176758],[0.18825976562500074E2,-0.17766308593750054E2],[0.18718066406250045E2,-17.7032227],[0.18486621093750045E2,-0.17442773437500033E2],[18.3963867,-0.17399414062499996E2],[17.8353516,-0.17392773437499983E2],[14.4147461,-17.3876953],[0.14017480468750023E2,-17.4088867],[13.9379883,-0.17388769531249963E2],[0.13561718749999983E2,-0.17141210937499977E2],[13.4037109,-17.0078125],[0.13101171875000063E2,-0.16967675781249966E2],[0.12963183593750015E2,-0.17015429687500017E2],[0.12548144531250017E2,-17.2126953],[0.12213378906250027E2,-0.17209960937500043E2],[0.12013964843750072E2,-0.17168554687500034E2],[0.11902539062500011E2,-0.17226562499999957E2],[0.11743066406250021E2,-17.2492188],[0.11780078125000017E2,-16.8712891],[0.11818945312500034E2,-0.16704101562500014E2],[0.11796972656250006E2,-0.15986425781249991E2],[0.11750878906250023E2,-0.15831933593749966E2],[0.11849707031250006E2,-0.15768359374999974E2],[0.11967871093750006E2,-15.6339844],[0.12016113281250057E2,-0.15513671874999956E2],[0.12073242187500057E2,-0.15248242187499967E2],[0.12280468750000011E2,-14.6375],[12.3789062,-0.14039062500000014E2],[0.12503710937500017E2,-0.13755468749999963E2],[12.5504883,-0.13437792968750003E2],[0.12897656250000068E2,-0.13027734375000037E2],[0.12983203124999989E2,-0.12775683593750017E2],[13.1626953,-0.12652148437499989E2],[13.4169922,-12.5204102],[0.13597949218750017E2,-0.12286132812500027E2],[13.6855469,-12.1238281],[0.13785351562499983E2,-11.812793],[0.13784277343750034E2,-0.11487988281249969E2],[0.13847460937500045E2,-0.11054394531249997E2],[0.13833593750000063E2,-10.9296875],[13.7389648,-0.10757128906250017E2],[0.13721386718750011E2,-0.10633593749999989E2],[13.5394531,-10.4207031],[0.13495410156250074E2,-10.2571289],[13.3322266,-0.9998925781250009E1],[13.2875,-9.82675781],[13.209375,-0.9703222656249977E1],[13.1556641,-0.9389648437499957E1],[12.9985352,-9.04804688],[13.3589844,-8.68720703],[0.13378515625000063E2,-8.36972656],[13.0908203,-7.78017578],[0.12862304687500057E2,-7.23183594],[0.12823437500000038E2,-6.95478516],[0.12521289062500045E2,-6.59033203],[0.12402148437500017E2,-6.35341797],[0.12302539062500074E2,-6.09257812],[12.790625,-6.00390625],[0.13068164062500074E2,-5.86484375],[0.13302636718750051E2,-5.88183594],[0.13371484375000051E2,-5.86181641],[13.9785156,-5.85722656],[0.14190820312500078E2,-5.87597656]]],[[[0.12255273437500021E2,-5.74648437],[0.12213671875000074E2,-5.75869141],[12.1554688,-5.63271484],[0.12206542968750057E2,-5.46826172],[0.12177148437499994E2,-5.32480469],[0.12018359375000072E2,-5.00429687],[12.2042969,-4.77861328],[0.12307910156249989E2,-4.76552734],[0.12384570312500074E2,-4.61914063],[0.12641699218750063E2,-4.53115234],[0.12798242187500051E2,-4.43056641],[0.12881054687500068E2,-4.44511719],[0.13072753906250028E2,-4.63476562],[0.12829687499999977E2,-4.73662109],[0.12573535156250017E2,-4.99658203],[0.12451464843750017E2,-5.07148437],[12.5223633,-5.14892578],[0.12503710937500017E2,-5.69580078],[0.12255273437500021E2,-5.74648437]]]]}}],"_labels":{"AO":"Angola"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/AR.json b/src/api-umbrella/admin-ui/public/maps/AR.json new file mode 100644 index 000000000..7d1c4beb7 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/AR.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"AR"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-64.5491699,-54.7162109],[-64.4388184,-0.54739355468749984E2],[-63.8154297,-0.54725097656250014E2],[-0.63832568359374996E2,-0.54767968749999945E2],[-64.0283203,-54.7925781],[-64.3229004,-54.7964844],[-64.6373535,-0.54902539062500004E2],[-64.7573242,-54.8265625],[-64.5491699,-54.7162109]]],[[[-68.2782227,-52.9839844],[-68.2401367,-53.0818359],[-68.3330078,-53.0196289],[-68.4311523,-53.0552734],[-68.5208008,-53.1772461],[-68.4885254,-0.53260937499999976E2],[-68.3931152,-53.2949219],[-68.1611328,-53.3064453],[-68.0084961,-53.5640625],[-67.5025879,-53.9219727],[-67.2942383,-0.54049804687500014E2],[-66.6700684,-54.3135742],[-66.4620117,-54.4410156],[-66.2356445,-54.5334961],[-65.7470703,-54.653418],[-65.3692871,-54.6321289],[-65.1790039,-54.678125],[-65.3459961,-54.8779297],[-65.6033203,-54.928125],[-65.8419922,-54.9099609],[-66.2867676,-54.9777344],[-66.5111328,-0.55032128906249945E2],[-66.9304687,-54.9249023],[-67.1270996,-54.9038086],[-67.7932617,-0.54868652343750036E2],[-68.2201172,-0.54817578125000026E2],[-68.6532227,-54.8536133],[-68.6397949,-54.3240234],[-68.6299316,-52.6526367],[-68.3387695,-0.52900097656250004E2],[-68.2782227,-52.9839844]]],[[[-61.8757812,-39.171875],[-61.8659668,-39.2348633],[-62.0416016,-39.1668945],[-62.0930176,-0.39086230468750024E2],[-61.8757812,-39.171875]]],[[[-65.7710449,-0.22099609375000014E2],[-65.0578125,-0.22102734375000022E2],[-64.8430664,-22.1439453],[-64.6055176,-0.22228808593750042E2],[-64.5236328,-22.371582],[-64.3739746,-0.22761035156250014E2],[-64.325293,-22.8276367],[-64.2664063,-22.6033203],[-63.976123,-0.22072558593750003E2],[-63.8186523,-0.22005468750000016E2],[-62.8433594,-0.21997265625000026E2],[-62.7445801,-0.22159863281250026E2],[-62.6259766,-22.2904297],[-0.62372509765624976E2,-0.22439160156249997E2],[-62.2141602,-0.22612402343750034E2],[-0.62066601562499926E2,-22.8694336],[-61.9280273,-0.23059277343750026E2],[-61.5055176,-23.3919922],[-61.2083984,-23.5570313],[-61.0847168,-23.6564453],[-0.61032910156249926E2,-0.23755664062499974E2],[-60.8398438,-0.23858105468749965E2],[-60.5053711,-23.9635742],[-60.262207,-0.24013964843750017E2],[-60.1103027,-0.24009179687500023E2],[-59.8924805,-0.24093554687499974E2],[-59.6085938,-24.2667969],[-0.59372949218749966E2,-0.24453906250000028E2],[-59.1872559,-24.5623047],[-0.58724023437500016E2,-0.24786621093749954E2],[-58.5196289,-24.8428711],[-0.58365380859374966E2,-0.24959277343749957E2],[-0.58136474609374936E2,-24.9771484],[-57.8216797,-0.25136425781249983E2],[-57.5871582,-25.4050781],[-57.5716797,-0.25534179687500014E2],[-57.7547852,-0.25697070312499985E2],[-57.890625,-26.006543],[-58.0824219,-0.26138574218750048E2],[-58.2030273,-0.26381445312499963E2],[-0.58191308593750016E2,-0.26629980468749974E2],[-58.3564453,-0.26890039062500023E2],[-0.58485253906249966E2,-0.26968457031250008E2],[-58.641748,-0.27196093750000014E2],[-58.604834,-0.27314355468750037E2],[-0.58168261718749925E2,-27.2734375],[-57.812207,-27.3166016],[-57.3912598,-27.4304687],[-57.1118164,-27.4701172],[-0.56973974609375006E2,-0.27435742187499994E2],[-56.8051758,-0.27484667968750017E2],[-56.6033691,-0.27467871093749963E2],[-0.56437158203124966E2,-0.27553808593749977E2],[-56.1640625,-27.3214844],[-55.9514648,-0.27325683593749957E2],[-55.7899902,-0.27416406249999966E2],[-55.7146484,-27.4148437],[-55.5937988,-0.27288085937500014E2],[-55.5648926,-27.15],[-0.55426660156249994E2,-27.0092773],[-55.1359375,-0.26931152343749957E2],[-54.888916,-0.26666796875000017E2],[-54.8254883,-26.6522461],[-0.54755078124999955E2,-0.26532910156249997E2],[-54.6777344,-0.26308789062499994E2],[-54.6319336,-26.0057617],[-0.54615869140624994E2,-25.5760742],[-54.4439453,-25.625],[-54.1545898,-25.5230469],[-53.8911621,-25.6688477],[-53.8232422,-0.25959570312499988E2],[-53.6712891,-26.2250977],[-53.7109375,-0.26351855468749974E2],[-53.7533203,-0.26748632812499988E2],[-53.7172852,-26.8828125],[-53.8381836,-0.27121093750000014E2],[-54.1138184,-27.274707],[-0.54156445312499926E2,-0.27253808593749966E2],[-54.327002,-0.27423535156249997E2],[-0.54615429687500004E2,-27.4771484],[-54.6658691,-0.27526562500000026E2],[-54.8291016,-27.5505859],[-54.9102051,-0.27708593749999977E2],[-0.55039941406249994E2,-27.7677734],[-55.1015137,-27.8667969],[-55.3464844,-27.955957],[-55.4766602,-0.28089355468750014E2],[-55.7254883,-28.2041016],[-55.6872559,-28.3816406],[-55.8588867,-28.3541992],[-0.55903662109375006E2,-0.28443261718749994E2],[-0.56019628906250006E2,-28.5246094],[-0.56102880859375006E2,-28.6517578],[-0.56225537109374926E2,-0.28737207031250012E2],[-0.56475976562499966E2,-0.29092480468750008E2],[-56.5707031,-0.29138085937499966E2],[-56.7724609,-0.29417871093750033E2],[-56.938623,-0.29594824218750034E2],[-57.0893555,-0.29716210937499977E2],[-57.2246582,-0.29782128906249994E2],[-57.4052246,-30.0338867],[-57.645752,-0.30226953125000023E2],[-57.7126953,-30.3844727],[-0.57831201171875016E2,-30.4952148],[-57.8725098,-0.30591015625000022E2],[-57.8185547,-0.30712011718749988E2],[-57.8105957,-30.8585938],[-57.8863281,-0.30937402343749994E2],[-57.8684082,-0.31104394531249994E2],[-0.58053857421874994E2,-0.31494921874999974E2],[-0.57987988281249976E2,-31.5761719],[-58.042334,-0.31769238281249997E2],[-58.1890137,-0.31924218750000037E2],[-0.58164794921874936E2,-32.1848633],[-58.1230469,-32.321875],[-58.2199707,-0.32563964843749986E2],[-58.1709961,-32.9592773],[-0.58250390624999966E2,-33.0783203],[-58.4244629,-33.1115234],[-58.5472168,-33.6634766],[-0.58456591796874996E2,-0.33898339843749966E2],[-58.3924805,-0.34192968750000034E2],[-58.5254883,-34.2961914],[-0.58466210937499994E2,-34.4574219],[-58.2833496,-34.6834961],[-0.57763574218750016E2,-34.8945312],[-0.57303662109374926E2,-0.35188476562499986E2],[-57.1706543,-35.3625],[-57.1588867,-0.35505957031250006E2],[-57.3539062,-35.7203125],[-57.3754883,-0.35900292968749966E2],[-57.2649902,-36.1441406],[-57.0761719,-0.36296777343749994E2],[-0.56937158203124966E2,-36.3525391],[-56.7494629,-36.3464844],[-0.56698095703125006E2,-36.4264648],[-56.6720215,-36.8512695],[-56.7271484,-36.9577148],[-57.0876953,-37.4463867],[-57.395752,-37.7446289],[-57.5072754,-37.9092773],[-0.57546972656250034E2,-0.38085644531250026E2],[-57.6456055,-38.1696289],[-58.1791992,-0.38435839843750045E2],[-0.59007226562499966E2,-38.6733398],[-0.59676269531249936E2,-38.7966797],[-59.8283203,-0.38838183593750024E2],[-60.9039551,-0.38973925781249974E2],[-0.61112207031249994E2,-38.9929688],[-61.3828613,-38.9808594],[-61.6025391,-38.9988281],[-62.0668945,-38.9191406],[-62.1892578,-38.8132813],[-62.3347656,-38.8000977],[-62.3744629,-0.38852929687500016E2],[-62.3036133,-38.9880859],[-0.62338085937499976E2,-39.1505859],[-62.2950684,-39.2432617],[-62.209082,-0.39261816406250006E2],[-0.62053662109374955E2,-39.3738281],[-0.62179345703124994E2,-39.3804687],[-0.62076806640624966E2,-39.4615234],[-0.62131542968749926E2,-39.8253906],[-62.2869141,-39.8953125],[-62.4018555,-40.196582],[-62.427002,-0.40355957031249986E2],[-62.3936035,-0.40458789062499974E2],[-0.62246337890624936E2,-40.6746094],[-62.3018555,-40.8146484],[-0.62395019531249964E2,-40.8908203],[-62.9590332,-41.109668],[-0.63212841796874955E2,-41.1524414],[-63.772998,-41.15],[-64.1231934,-41.0078125],[-64.6214844,-40.8544922],[-64.8529785,-40.8137695],[-64.8043945,-40.756543],[-64.9168945,-40.7313477],[-65.0694336,-0.40805273437500034E2],[-65.1333984,-40.8806641],[-65.1549805,-41.1056641],[-65.0182617,-41.5668945],[-65.0070312,-0.41745117187500014E2],[-65.059082,-41.9699219],[-64.986377,-0.42102050781249986E2],[-64.8980469,-42.1618164],[-64.6224609,-0.42261035156250045E2],[-64.5117187,-42.2702148],[-64.5709961,-42.4160156],[-64.4204102,-42.4337891],[-64.1008789,-0.42395117187500006E2],[-64.0611816,-0.42266113281250014E2],[-64.2529297,-42.2507813],[-64.2285156,-42.2182617],[-0.63795556640624994E2,-0.42113867187500006E2],[-0.63684765624999976E2,-42.1886719],[-63.5958984,-42.406543],[-0.63617333984375016E2,-0.42695800781249986E2],[-63.6924805,-0.42805273437499984E2],[-64.0347656,-42.88125],[-64.1306641,-42.8614258],[-64.3242676,-42.5722656],[-64.4878418,-42.5134766],[-64.6504883,-42.5314453],[-64.8119629,-0.42633203125000016E2],[-64.9707031,-42.6663086],[-65.0269043,-42.7588867],[-64.6291992,-42.9089844],[-64.3191406,-42.9689453],[-64.4322266,-0.43059179687500034E2],[-64.7152344,-0.43135546875000045E2],[-64.9855469,-43.2935547],[-65.2835938,-43.6299805],[-65.3046875,-43.7875],[-65.2385742,-44.0487305],[-65.3083984,-0.44158203125000014E2],[-65.2655273,-44.2796875],[-65.3612793,-44.4773438],[-65.6476074,-0.44661425781250045E2],[-65.6983398,-44.7961914],[-65.5991211,-44.8755859],[-65.6387695,-45.0078125],[-66.1901367,-44.9647461],[-66.3477539,-45.0335938],[-66.5850586,-0.45182910156249974E2],[-66.9414062,-45.2573242],[-67.2576172,-45.5772461],[-67.5566406,-45.9701172],[-67.6088867,-0.46166796875000045E2],[-67.5633789,-46.3454102],[-67.3866211,-46.5538086],[-66.7768555,-47.0058594],[-66.6503906,-0.47045312499999966E2],[-65.9985352,-47.09375],[-65.8536621,-0.47156738281250014E2],[-65.7380859,-47.3449219],[-65.7753906,-47.5683594],[-65.8863281,-47.7015625],[-66.040625,-0.47783300781250034E2],[-66.2252441,-0.47826757812500006E2],[-66.1723633,-47.8576172],[-65.9342285,-0.47826757812500006E2],[-65.8100586,-0.47941113281250026E2],[-65.9121582,-47.9767578],[-66.0171875,-48.0842773],[-66.3933594,-48.3423828],[-66.5962891,-48.4195312],[-67.0331055,-0.48627734375000024E2],[-67.4663086,-0.48951757812500034E2],[-67.6848633,-49.2466797],[-67.6619629,-49.3421875],[-67.7834961,-0.49858886718750014E2],[-67.9139648,-49.9844727],[-68.1456543,-50.0914062],[-68.2572266,-0.50104589843749984E2],[-68.4878906,-49.9779297],[-68.6675781,-49.7525391],[-68.6616211,-49.9357422],[-68.9129883,-49.96875],[-68.9795898,-0.50003027343749984E2],[-68.7526855,-49.9876953],[-68.5325684,-50.0361328],[-68.421875,-50.1579102],[-68.4654297,-50.1947266],[-68.7498535,-50.2811523],[-68.9394531,-0.50382324218749986E2],[-69.0447754,-50.4991211],[-69.1414063,-0.50752539062500006E2],[-69.1549805,-0.50864453124999976E2],[-69.3517578,-51.0458008],[-69.2010254,-50.9936523],[-69.1435059,-51.0969727],[-69.0295898,-51.4464844],[-69.0583008,-0.51547167968749974E2],[-69.3605469,-51.5594727],[-69.180127,-0.51662304687499976E2],[-69.0325195,-51.6362305],[-68.9167969,-51.7146484],[-68.6908203,-0.52013085937499945E2],[-68.39375,-0.52307031249999966E2],[-68.7151855,-0.52255468750000034E2],[-69.2062012,-0.52136132812499966E2],[-69.4884277,-0.52136132812499966E2],[-69.9602539,-0.52008203125000016E2],[-71.9186523,-51.9895508],[-71.9534668,-51.8803711],[-72.1369629,-51.744043],[-72.2689941,-51.6911133],[-72.407666,-51.5408203],[-72.3032227,-51.2989258],[-72.3768066,-51.0954102],[-72.307373,-0.51033398437500026E2],[-72.2763184,-0.50910253906249984E2],[-72.3402344,-50.6818359],[-72.5098145,-0.50607519531250034E2],[-72.6204102,-50.6476562],[-72.8036133,-0.50637695312499964E2],[-73.082373,-50.7603516],[-73.1529297,-50.7382813],[-73.2516113,-50.5584961],[-73.3117187,-0.50361914062500006E2],[-73.3866211,-50.2311523],[-73.5012695,-50.125293],[-73.5289063,-49.9109375],[-73.4704102,-49.7945312],[-73.5762695,-0.49582910156250016E2],[-73.5541992,-0.49463867187500014E2],[-73.4615723,-49.3138672],[-73.1352539,-49.3006836],[-73.148877,-49.1879883],[-72.9817383,-0.48976757812499976E2],[-72.7284668,-0.48896289062500024E2],[-72.6144043,-48.7928711],[-72.5859375,-48.6625],[-72.6083984,-48.5193359],[-72.4981445,-48.4173828],[-72.3547363,-48.3658203],[-72.2930176,-48.2291016],[-72.3283203,-0.48110058593749976E2],[-72.509082,-0.47973339843750026E2],[-72.5179199,-47.8763672],[-72.3415039,-47.5720703],[-72.3459473,-0.47492675781249964E2],[-72.103418,-0.47342773437499986E2],[-72.0416992,-47.2414063],[-71.9049805,-0.47201660156250014E2],[-71.954248,-47.0875],[-71.9402344,-46.83125],[-71.7327148,-46.7058594],[-71.6952148,-46.578418],[-71.7776367,-46.2799805],[-71.8756836,-46.1605469],[-71.6844727,-46.0418945],[-71.631543,-45.9537109],[-71.7506348,-45.8390625],[-71.7461914,-45.5789063],[-71.6933105,-45.5347656],[-71.5081055,-0.45512695312500014E2],[-71.4904297,-0.45437695312500004E2],[-71.3493164,-45.3319336],[-71.3537598,-45.2304687],[-71.443457,-45.1682617],[-71.5962891,-44.9791992],[-72.0416992,-44.9041992],[-72.0637207,-44.771875],[-71.9570312,-0.44791503906249986E2],[-71.4551758,-44.7498047],[-71.2611328,-44.7630859],[-71.1508789,-0.44494042968749966E2],[-71.2125977,-44.4412109],[-71.8200195,-0.44383105468749996E2],[-71.8123535,-44.1060547],[-71.6800781,-43.9295898],[-71.7947266,-43.7532227],[-71.7374023,-43.7046875],[-71.7506348,-43.5901367],[-71.9049805,-43.4401367],[-71.9049805,-43.3475586],[-71.7638672,-43.2946289],[-71.7814941,-43.1667969],[-72.0546875,-43.1019531],[-72.1464355,-0.42990039062499974E2],[-72.113623,-42.7767578],[-72.1437012,-42.5771484],[-72.0534668,-0.42473242187500034E2],[-72.1246094,-0.42298339843750014E2],[-72.026123,-42.1479492],[-71.9440918,-0.42167089843750006E2],[-71.7609375,-0.42101464843749966E2],[-71.75,-42.0467773],[-71.8444824,-0.41771972656249986E2],[-71.9112793,-0.41650390624999986E2],[-71.8711426,-0.41560546874999986E2],[-71.8921875,-0.41393359375000024E2],[-71.8730469,-0.40892968749999966E2],[-71.9413574,-0.40789160156250034E2],[-71.9321289,-40.6916992],[-71.8046387,-40.4391602],[-71.6953125,-40.3352539],[-71.8183105,-40.1766602],[-71.7043945,-40.0949219],[-71.6378906,-39.8868164],[-71.7199219,-39.6352539],[-71.5394531,-39.6024414],[-71.4200195,-0.39287207031250034E2],[-71.4255859,-38.9856445],[-71.2857422,-38.8454102],[-71.0871094,-0.38757519531250026E2],[-70.9516113,-38.7384766],[-70.8476562,-0.38541601562500006E2],[-70.9679687,-38.4458984],[-71.0281738,-0.38041210937500026E2],[-71.1675781,-37.7623047],[-71.1867187,-37.6310547],[-71.1348145,-37.4451172],[-71.2003906,-0.37300292968749986E2],[-71.1184082,-0.37114355468750034E2],[-71.1921875,-36.8436523],[-71.0664062,-36.644043],[-71.0555176,-36.5237305],[-70.905127,-36.4199219],[-70.7492676,-36.3925781],[-70.7219238,-0.36283203124999986E2],[-70.5633789,-36.1463867],[-70.4567383,-0.36132714843749966E2],[-70.4047852,-36.0617187],[-70.4157227,-0.35878515624999956E2],[-70.3801758,-35.771875],[-70.4704102,-35.3261719],[-70.5551758,-35.246875],[-70.3931641,-35.146875],[-70.2899414,-0.34732812499999966E2],[-70.1014648,-34.4320313],[-70.0520508,-0.34300781249999964E2],[-69.8524414,-34.2243164],[-69.8943359,-33.7313477],[-69.8825684,-33.6009766],[-69.7977539,-0.33398632812500026E2],[-69.8196289,-33.2837891],[-70.0198242,-33.2714844],[-70.0848633,-33.2017578],[-70.0930664,-33.0267578],[-70.0219727,-32.8845703],[-70.1161621,-32.8074219],[-70.1769531,-32.6260742],[-70.1696289,-0.32471679687500014E2],[-70.3200195,-32.2666992],[-70.3637695,-32.0834961],[-70.2543945,-0.31957714843750022E2],[-70.4501465,-31.8418945],[-70.5852051,-31.5694336],[-70.5195801,-31.1484375],[-70.3883789,-0.31121093750000014E2],[-70.309082,-0.31022656250000043E2],[-70.3481445,-0.30902343749999957E2],[-70.1614258,-0.30440234374999957E2],[-69.9563477,-0.30358203125000028E2],[-69.8633789,-0.30120312499999965E2],[-69.9599609,-30.0783203],[-69.9276367,-29.7691406],[-70.0268066,-0.29324023437500014E2],[-69.9956055,-29.25],[-69.8278809,-29.1032227],[-69.7431641,-0.28783886718750022E2],[-69.7349121,-0.28641113281249968E2],[-69.6569336,-0.28413574218749982E2],[-69.4369141,-0.28192675781250014E2],[-69.2512207,-27.9736328],[-69.1744141,-0.27924707031250037E2],[-68.9994141,-27.4490234],[-68.9419922,-0.27405175781249977E2],[-68.8463379,-0.27153710937499994E2],[-68.7096191,-0.27104492187500014E2],[-68.6521973,-0.27148339843749966E2],[-68.3459961,-27.0279297],[-68.3186523,-0.26877539062499963E2],[-68.5811523,-0.26518359374999974E2],[-68.5921875,-0.26418066406249963E2],[-68.529834,-26.2769531],[-68.414502,-26.1537109],[-68.5108398,-25.7410156],[-68.600293,-25.4856445],[-68.5408203,-25.2367188],[-68.3842285,-0.25091894531249977E2],[-68.4663086,-0.24925195312500023E2],[-68.5620117,-24.8376953],[-68.5072754,-0.24629785156249977E2],[-68.250293,-0.24391992187500023E2],[-67.3562012,-0.24033789062499963E2],[-67.0087891,-23.0013672],[-67.194873,-0.22821679687500037E2],[-67.0554199,-0.22650878906249957E2],[-66.9911133,-0.22509863281250006E2],[-66.800293,-22.409668],[-66.7117187,-0.22216308593749982E2],[-66.3651855,-0.22113769531249957E2],[-66.220166,-0.21802539062499974E2],[-66.098584,-21.8350586],[-65.7710449,-0.22099609375000014E2]]]]}}],"_labels":{"AR":"Argentina"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/AS.json b/src/api-umbrella/admin-ui/public/maps/AS.json new file mode 100644 index 000000000..5b62389f6 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/AS.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"AS"},"geometry":{"type":"Polygon","coordinates":[[[-170.72627,-14.3511719],[-170.820508,-14.3121094],[-170.68916,-14.2574219],[-170.640479,-0.14282226562499998E2],[-170.72627,-14.3511719]]]}}],"_labels":{"AS":"American Samoa"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/AT.json b/src/api-umbrella/admin-ui/public/maps/AT.json new file mode 100644 index 000000000..30c0cacec --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/AT.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"AT"},"geometry":{"type":"Polygon","coordinates":[[[16.953125,48.5988281],[16.9433594,0.48550927734374994E2],[0.16862695312500023E2,48.4414062],[16.8654297,48.3869141],[16.9726562,48.1980957],[0.17147363281250023E2,48.005957],[17.0890625,47.963623],[0.17030078125000014E2,47.8371094],[17.0666016,0.47707568359374996E2],[16.7475586,47.6862793],[16.6474609,47.7390137],[16.5509766,0.47747363281249996E2],[0.16421289062500023E2,0.47674462890624994E2],[16.4321289,47.6562988],[0.16639746093750006E2,47.6088867],[0.16676562500000017E2,0.47536035156249994E2],[16.6230469,0.47447558593749996E2],[16.4428711,47.3995117],[0.16462597656250008E2,47.2731445],[0.16416894531250023E2,47.2234375],[0.16438378906250023E2,0.47145898437499994E2],[16.4926758,47.1226562],[0.16453417968750017E2,47.0067871],[0.16331835937500017E2,47.0021973],[0.16252539062500006E2,46.9719238],[0.15976855468750017E2,46.8013672],[0.15957617187500006E2,0.46677636718749994E2],[0.15766894531250017E2,46.7112793],[0.15632617187500017E2,46.6984375],[0.15439257812500019E2,46.6296387],[0.15216992187500011E2,46.6429687],[0.15000683593750011E2,46.6259766],[14.840625,46.5804688],[0.14756738281250023E2,46.4991211],[0.14596972656250017E2,0.46436083984374996E2],[14.5035156,0.46417041015624996E2],[0.14099511718750023E2,46.4619141],[0.13831347656250015E2,46.5112305],[0.13743945312500017E2,0.46514306640624994E2],[0.13490039062500017E2,46.5555664],[13.16875,46.5726563],[0.12479199218750011E2,0.46672509765624994E2],[12.3882813,46.7026367],[0.12267968750000023E2,46.8358887],[0.12154101562500017E2,46.9352539],[0.12130761718750023E2,46.9847656],[0.12201269531250004E2,47.0608887],[0.12169433593749998E2,47.0821289],[0.11775683593750017E2,46.986084],[11.5275391,46.9974121],[0.11244433593750017E2,46.9756836],[0.11133886718750006E2,0.46936181640624994E2],[0.11025097656250011E2,46.7969727],[10.9273438,46.7694824],[10.7597656,46.7933105],[0.10689257812500017E2,46.8463867],[0.10479394531250023E2,0.46855126953124994E2],[0.10414941406250023E2,0.46964404296874996E2],[0.10349414062500017E2,46.9847656],[0.10179785156250006E2,0.46862353515624996E2],[0.10133496093750011E2,46.8515137],[9.996875,46.8853516],[0.9877734375000017E1,46.9376953],[9.8453125,0.47007373046874996E2],[0.9745019531250023E1,47.0371094],[0.9580273437500011E1,47.057373],[0.9610546875000011E1,47.1071289],[0.9527539062500011E1,47.270752],[0.9609082031250011E1,47.3917969],[0.9625878906250023E1,47.467041],[9.52402344,47.5242188],[0.9650585937500011E1,47.5258789],[0.9748925781250021E1,47.5755371],[0.9971582031250023E1,47.5053223],[10.0742188,47.4285156],[0.10066308593750023E2,47.3933594],[0.10200292968750006E2,0.47363427734374994E2],[0.10183007812500023E2,47.2788086],[0.10312792968750017E2,47.3134277],[10.4039063,47.4169922],[10.4303711,47.5410645],[10.6586914,47.5472168],[10.8730469,47.5202148],[0.10893945312500023E2,47.470459],[0.10980859375000023E2,47.3981445],[0.11191210937500017E2,0.47425195312499994E2],[0.11297949218750006E2,47.4249023],[0.11392968750000023E2,47.4871582],[0.11573925781250011E2,47.5497559],[11.7167969,47.5834961],[0.12185644531250006E2,47.6195313],[0.12209277343750017E2,47.7182617],[0.12363183593750021E2,47.6881836],[12.4829102,47.6373047],[0.12685839843750017E2,47.6693359],[0.12771386718750023E2,47.6394043],[12.7828125,47.5641602],[12.8789062,47.5064453],[0.13014355468750011E2,0.47478076171874996E2],[0.13047949218750006E2,47.5791504],[0.13033593750000021E2,47.6987305],[0.12897656250000011E2,47.721875],[0.12954199218750006E2,0.47807763671874994E2],[0.12953515625000021E2,47.890625],[0.12760058593750015E2,0.48075976562499996E2],[0.12814257812500017E2,48.1608398],[0.13082128906250006E2,48.2750977],[0.13322851562500004E2,48.33125],[13.409375,48.3941406],[0.13459863281250023E2,48.5645508],[0.13486621093750017E2,0.48581835937499996E2],[0.13675195312500021E2,48.5230469],[0.13785351562500011E2,0.48587451171874996E2],[0.13814746093750017E2,48.7669434],[13.9887695,0.48692431640624996E2],[0.14049121093750017E2,48.6024902],[0.14189843750000023E2,48.5785645],[0.14367578125000023E2,0.48576220703124996E2],[0.14488671875000023E2,0.48625537109374996E2],[0.14691308593750021E2,48.5992187],[14.7066406,0.48671923828124996E2],[14.821875,48.7740234],[14.9225586,0.48771386718749994E2],[0.14972167968749998E2,48.9839355],[0.15066796875000023E2,0.48997851562499996E2],[15.1617188,48.9462891],[0.15310937500000023E2,48.9740234],[0.15402929687500004E2,48.957373],[15.7007813,48.8604492],[0.15825195312499998E2,48.8644531],[0.16057226562500006E2,0.48754785156249994E2],[0.16367285156250006E2,48.7389648],[0.16477929687500023E2,0.48800097656249996E2],[0.16600976562500023E2,0.48781884765624994E2],[0.16712695312500017E2,48.7342285],[0.16883691406250023E2,48.7037109],[16.953125,48.5988281]]]}}],"_labels":{"AT":"Austria"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/AU.json b/src/api-umbrella/admin-ui/public/maps/AU.json new file mode 100644 index 000000000..47526ff2a --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/AU.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"AU"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.15887880859375005E3,-54.7097656],[0.15883593750000003E3,-54.7040039],[0.15889697265625003E3,-0.54506054687499976E2],[158.958887,-54.4723633],[0.15887880859375005E3,-54.7097656]]],[[[0.14735605468750006E3,-43.3969727],[0.14730888671875007E3,-43.5007813],[0.14715380859375003E3,-43.5001953],[0.14728388671875004E3,-0.43278906250000034E2],[0.14735605468750006E3,-43.3969727]]],[[[147.43457,-43.2407227],[0.14729609375000004E3,-43.1617187],[0.14735253906249997E3,-43.0802734],[147.43457,-43.2407227]]],[[[0.14810429687500002E3,-0.42710449218750036E2],[148.029687,-42.7148437],[0.14807255859375002E3,-42.5931641],[0.14816953125000006E3,-42.6517578],[0.14810429687500002E3,-0.42710449218750036E2]]],[[[0.14504296875000003E3,-40.7867187],[0.14528300781250002E3,-40.7699219],[0.14542939453125004E3,-40.8582031],[0.14553349609375002E3,-40.8639648],[145.821484,-41.0246094],[0.14631748046875006E3,-41.1634766],[146.574414,-0.41142382812499974E2],[0.14672343750000002E3,-41.0780273],[0.14684814453124997E3,-41.1680664],[146.856641,-41.0583008],[0.14698984375000006E3,-40.9923828],[0.14732050781250004E3,-40.9564453],[0.14745478515625004E3,-41.0016602],[0.14762167968750012E3,-0.40844726562499986E2],[0.14787294921875002E3,-40.8725586],[147.96875,-0.40779589843750045E2],[148.215234,-40.8548828],[148.292871,-0.40947070312499974E2],[0.14831220703125004E3,-41.349707],[0.14828984375000007E3,-41.4650391],[0.14830146484375004E3,-42.0399414],[148.33125,-0.42261621093749994E2],[148.255762,-42.1026367],[0.14818310546875003E3,-42.0647461],[0.14821367187500002E3,-41.9700195],[0.14802275390625002E3,-42.2594727],[148.009375,-42.4359375],[0.14792441406250006E3,-42.5724609],[147.915039,-42.8164062],[147.980859,-0.43157031249999974E2],[0.14778583984375007E3,-43.2200195],[0.14764794921874997E3,-43.0206055],[0.14777392578124997E3,-43.003418],[147.8,-42.928125],[0.14757382812500006E3,-0.42845703124999964E2],[0.14754902343750004E3,-42.9745117],[147.452344,-43.0333984],[0.14740800781250002E3,-42.8938477],[0.14729794921875003E3,-0.42790917968749994E2],[0.14734765624999997E3,-42.9265625],[147.259766,-0.43071093749999974E2],[0.14724501953125005E3,-43.215918],[0.14717285156249997E3,-43.2558594],[0.14699697265625005E3,-43.1563477],[0.14707734375000004E3,-43.2758789],[146.873926,-43.6125],[0.14669921875000003E3,-43.6019531],[0.14654853515625004E3,-0.43508886718749984E2],[146.186719,-43.512793],[0.14604316406250004E3,-0.43547167968749974E2],[0.14599443359375005E3,-43.3760742],[0.14622636718750007E3,-43.3552734],[0.14617646484375004E3,-43.3017578],[0.14587324218750007E3,-0.43292382812500016E2],[0.14560996093750006E3,-0.42998242187500054E2],[0.14548759765625002E3,-42.9266602],[0.14526816406250006E3,-0.42544335937499945E2],[0.14519882812500006E3,-42.2308594],[145.372949,-42.3384766],[0.14546826171874997E3,-0.42492871093750026E2],[0.14551660156249997E3,-42.3544922],[0.14536035156250003E3,-42.2275391],[0.14533105468750003E3,-42.1470703],[0.14523486328124997E3,-42.1969727],[145.238184,-42.0196289],[145.055371,-41.8267578],[0.14477792968750012E3,-41.4188477],[0.14464609375000006E3,-40.9808594],[144.718555,-40.6722656],[0.14504296875000003E3,-40.7867187]]],[[[0.14823691406250006E3,-0.40515136718749986E2],[0.14818779296875007E3,-40.5925781],[0.14811728515625012E3,-40.5214844],[0.14823691406250006E3,-0.40515136718749986E2]]],[[[144.784375,-0.40506738281249966E2],[144.784375,-0.40506738281249966E2],[144.784375,-0.40506738281249966E2],[144.784375,-0.40506738281249966E2]]],[[[0.14832626953125006E3,-40.3069336],[0.14847421875000006E3,-40.4324219],[148.352734,-40.4972656],[0.14831943359375006E3,-0.40434570312500014E2],[148.102539,-40.4516602],[148.058789,-40.3568359],[0.14832626953125006E3,-40.3069336]]],[[[148.000391,-39.7576172],[0.14817792968750004E3,-0.39938476562500014E2],[0.14829736328125003E3,-39.9857422],[0.14825078125000002E3,-0.40099511718749966E2],[0.14832324218749997E3,-0.40144433593749966E2],[0.14810566406250004E3,-40.2621094],[147.890527,-0.40014550781249966E2],[0.14787626953125002E3,-39.9054688],[0.14776718750000012E3,-39.8703125],[0.14793300781250005E3,-39.7259766],[148.000391,-39.7576172]]],[[[0.14392792968750004E3,-40.1161133],[0.14383857421875004E3,-39.9041016],[143.861816,-0.39737988281250026E2],[0.14394882812500006E3,-39.5836914],[0.14409130859374997E3,-39.6380859],[0.14414101562500002E3,-0.39953808593750026E2],[0.14411191406250006E3,-40.0220703],[0.14392792968750004E3,-40.1161133]]],[[[0.14531445312500003E3,-38.4908203],[0.14512841796875003E3,-0.38527636718749996E2],[0.14521777343750003E3,-38.4585937],[0.14531445312500003E3,-38.4908203]]],[[[0.14548652343750004E3,-38.3548828],[0.14533583984374997E3,-0.38420996093750034E2],[145.295312,-0.38318945312500034E2],[0.14548652343750004E3,-38.3548828]]],[[[0.13759648437500007E3,-35.7386719],[0.13804658203125004E3,-0.35755175781249974E2],[0.13812343750000005E3,-35.8523438],[0.13801191406250007E3,-35.9076172],[0.13783554687500012E3,-0.35867773437499984E2],[0.13767089843749997E3,-0.35897949218750014E2],[0.13759023437500002E3,-36.0271484],[0.13744843750000004E3,-36.0748047],[0.13720957031250012E3,-35.9824219],[0.13714775390625007E3,-0.36039062499999986E2],[136.755078,-36.0331055],[136.540625,-35.8901367],[0.13663867187499997E3,-35.7488281],[0.13709179687500003E3,-35.6638672],[0.13733408203125006E3,-35.5924805],[0.13753046875000004E3,-0.35605078125000034E2],[0.13763544921875004E3,-0.35656445312500026E2],[0.13759648437500007E3,-35.7386719]]],[[[0.15353876953125004E3,-0.27436425781250037E2],[0.15345273437500012E3,-27.7117187],[0.15339580078125007E3,-0.27665039062499982E2],[153.435449,-0.27405371093750016E2],[0.15353876953125004E3,-0.27436425781250037E2]]],[[[0.15344248046875006E3,-27.3160156],[0.15337656250000003E3,-27.2353516],[0.15337988281250003E3,-0.27049414062499977E2],[0.15346679687499997E3,-0.27038085937499986E2],[0.15344248046875006E3,-27.3160156]]],[[[0.11318300781250005E3,-26.053125],[0.11315644531250004E3,-0.26094531249999957E2],[0.11296425781250005E3,-25.7831055],[0.11290820312499996E3,-25.5698242],[0.11298242187500003E3,-25.5202148],[0.11318300781250005E3,-26.053125]]],[[[153.077441,-25.7507812],[0.15300693359375006E3,-0.25728906249999977E2],[152.97666,-0.25551367187499963E2],[153.060742,-25.3022461],[153.038086,-0.25193164062500003E2],[0.15318925781250002E3,-0.25070507812499965E2],[0.15324199218750002E3,-0.24922558593750026E2],[0.15318095703125002E3,-24.7648438],[153.282129,-0.24738281249999957E2],[0.15335019531250012E3,-0.25063085937499963E2],[0.15314140625000002E3,-0.25512792968750006E2],[153.077441,-25.7507812]]],[[[0.15114658203125006E3,-23.4908203],[151.240137,-0.23529687500000037E2],[151.295801,-23.7203125],[0.15118417968750006E3,-0.23740722656250043E2],[0.15103330078125006E3,-0.23530175781250037E2],[0.15114658203125006E3,-23.4908203]]],[[[0.15051669921875006E3,-0.22322558593749957E2],[0.15051669921875006E3,-0.22322558593749957E2],[0.15051669921875006E3,-0.22322558593749957E2],[0.15051669921875006E3,-0.22322558593749957E2]]],[[[0.14992832031250012E3,-22.1930664],[0.14992832031250012E3,-22.1930664],[0.14992832031250012E3,-22.1930664],[0.14992832031250012E3,-22.1930664]]],[[[0.11544619140625005E3,-20.787793],[115.388086,-0.20866015624999957E2],[0.11530859374999997E3,-0.20811132812499963E2],[0.11543457031249997E3,-20.6679688],[0.11544619140625005E3,-20.787793]]],[[[149.04375,-20.2915039],[0.14893886718750005E3,-0.20283691406249986E2],[148.981055,-0.20153515625000026E2],[149.04375,-20.2915039]]],[[[0.14893554687499997E3,-20.1499023],[0.14893554687499997E3,-20.1499023],[0.14893554687499997E3,-20.1499023],[0.14893554687499997E3,-20.1499023]]],[[[0.14627832031249997E3,-18.23125],[146.341992,-0.18400097656250026E2],[0.14623564453125002E3,-0.18450781249999963E2],[0.14609882812500004E3,-0.18251757812500003E2],[0.14627832031249997E3,-18.23125]]],[[[0.13945917968750004E3,-17.1145508],[0.13949277343750006E3,-0.16990429687499983E2],[0.13957089843750006E3,-17.0944336],[0.13945917968750004E3,-17.1145508]]],[[[0.13950781250000003E3,-16.5730469],[0.13943056640624997E3,-16.6610352],[139.15957,-16.7416992],[0.13916269531250012E3,-0.16625878906249966E2],[0.13929296875000003E3,-0.16467285156249986E2],[0.13958789062499997E3,-16.3952148],[0.13969775390624997E3,-0.16514941406250017E2],[0.13950781250000003E3,-16.5730469]]],[[[0.13709365234375005E3,-15.778125],[137.050879,-0.15824414062500027E2],[0.13694267578125002E3,-0.15711718749999989E2],[0.13700957031250007E3,-0.15594824218749975E2],[0.13709365234375005E3,-15.778125]]],[[[136.591016,-15.6282227],[136.591016,-15.6282227],[136.591016,-15.6282227],[136.591016,-15.6282227]]],[[[0.13686269531249997E3,-0.15619921875000017E2],[0.13686269531249997E3,-0.15619921875000017E2],[0.13686269531249997E3,-0.15619921875000017E2],[0.13686269531249997E3,-0.15619921875000017E2]]],[[[0.12459726562500006E3,-0.15401953125000018E2],[0.12448281250000005E3,-0.15340332031250002E2],[0.12455087890625012E3,-0.15270312500000031E2],[0.12459726562500006E3,-0.15401953125000018E2]]],[[[0.12519882812500006E3,-14.5794922],[0.12513476562499997E3,-0.14641699218750032E2],[125.117383,-0.14491992187500003E2],[125.198145,-14.4748047],[0.12519882812500006E3,-14.5794922]]],[[[0.13671464843750002E3,-0.13803906249999983E2],[0.13680449218750002E3,-0.13842480468750024E2],[0.13684531250000006E3,-0.13750976562500027E2],[0.13690556640625002E3,-0.13826953124999958E2],[0.13678818359375006E3,-0.13945800781250014E2],[0.13674531250000004E3,-0.14072656250000023E2],[136.787012,-0.14157812499999961E2],[0.13695078125000006E3,-0.14184277343750026E2],[0.13689433593750002E3,-0.14293066406249977E2],[0.13664970703125002E3,-0.14280468749999981E2],[0.13633544921875003E3,-0.14211816406250037E2],[0.13642773437500003E3,-0.14126464843749972E2],[136.424707,-0.13864843749999961E2],[0.13658281250000005E3,-13.7210937],[0.13670195312500002E3,-0.13681640625000028E2],[0.13671464843750002E3,-0.13803906249999983E2]]],[[[0.13623740234375003E3,-0.13824511718750003E2],[0.13612265625000012E3,-0.13816601562499981E2],[0.13621542968750012E3,-0.13664746093750054E2],[0.13623740234375003E3,-0.13824511718750003E2]]],[[[0.13633867187500007E3,-0.11602343749999989E2],[0.13618027343750006E3,-0.11676757812499957E2],[0.13626738281250002E3,-11.5764648],[0.13644921875000003E3,-11.4871094],[0.13633867187500007E3,-0.11602343749999989E2]]],[[[0.13045927734375007E3,-0.11679296875000034E2],[130.60625,-0.11816601562500026E2],[0.13050253906250012E3,-0.11835644531249997E2],[0.13031748046875006E3,-0.11771777343749958E2],[130.13125,-11.8245117],[0.13004326171875007E3,-11.7873047],[0.13007207031250007E3,-0.11680761718749977E2],[0.13019755859375007E3,-11.6582031],[0.13015283203124997E3,-11.4775391],[0.13033925781250002E3,-11.3370117],[0.13045927734375007E3,-0.11679296875000034E2]]],[[[130.618848,-0.11376074218749991E2],[0.13075224609375005E3,-11.384375],[130.912793,-0.11309277343749969E2],[0.13102304687500006E3,-11.334375],[0.13126826171875004E3,-11.1898437],[0.13143691406250005E3,-0.11313183593749969E2],[0.13153857421874997E3,-0.11436914062500037E2],[131.458594,-0.11587890624999972E2],[0.13138281250000003E3,-0.11582519531249943E2],[0.13129208984375012E3,-11.7109375],[0.13095097656250005E3,-0.11926464843750026E2],[130.644922,-11.7423828],[0.13051191406250004E3,-0.11617871093749955E2],[130.422754,-0.11445800781249986E2],[130.368555,-11.2149414],[130.42666,-0.11183105468750028E2],[130.618848,-0.11376074218749991E2]]],[[[136.598535,-0.11378906249999941E2],[0.13652656250000004E3,-0.11438867187499994E2],[0.13678027343749997E3,-11.0125],[0.13674140625000004E3,-0.11194628906249973E2],[136.598535,-0.11378906249999941E2]]],[[[0.13259335937500006E3,-0.11302832031249991E2],[132.49375,-0.11163671874999977E2],[0.13248378906250005E3,-0.11037304687499983E2],[0.13257880859375004E3,-0.10968847656249977E2],[132.629102,-0.11169140625000026E2],[0.13259335937500006E3,-0.11302832031249991E2]]],[[[0.14317890625000004E3,-0.11954492187499964E2],[0.14310468750000004E3,-0.12169628906250011E2],[143.110254,-0.12303515625000015E2],[143.254102,-0.12397656250000011E2],[0.14340156250000004E3,-0.12639941406249989E2],[0.14351201171875007E3,-0.13094531249999958E2],[0.14352949218750007E3,-0.13303808593749963E2],[143.586621,-0.13443652343750031E2],[0.14354843750000012E3,-13.7410156],[0.14364335937500002E3,-0.13963671875000017E2],[0.14375634765625003E3,-0.14348828124999969E2],[0.14396181640625005E3,-0.14462890625000027E2],[0.14420986328125005E3,-0.14301953125000011E2],[144.473047,-0.14231835937500023E2],[0.14458642578125003E3,-0.14354687500000011E2],[0.14464804687500006E3,-0.14492480468750017E2],[0.14528769531250006E3,-0.14943164062499989E2],[145.25166,-0.15097460937499989E2],[0.14529306640625006E3,-0.15327246093749993E2],[0.14527158203125006E3,-0.15476660156249961E2],[0.14534951171875005E3,-0.15701562500000051E2],[145.375391,-0.15881054687500026E2],[0.14545800781250003E3,-16.0564453],[145.426074,-0.16406152343749962E2],[0.14554990234375012E3,-0.16625097656249988E2],[145.754785,-0.16879492187500034E2],[0.14591210937499994E3,-16.9125],[0.14590195312500006E3,-0.17070214843749994E2],[0.14604980468749997E3,-0.17381054687499983E2],[0.14612587890625005E3,-17.6352539],[0.14603222656249997E3,-0.18272851562500037E2],[146.223047,-0.18509863281250006E2],[146.333203,-18.5537109],[146.296875,-18.8412109],[0.14648115234375004E3,-19.0787109],[146.829004,-19.2357422],[0.14700263671875004E3,-0.19256054687499965E2],[0.14713876953125003E3,-19.3931641],[0.14741855468750012E3,-19.378125],[0.14758603515625006E3,-0.19622753906249983E2],[147.742383,-0.19770117187499977E2],[147.915625,-0.19869238281250016E2],[0.14808105468749994E3,-19.8986328],[0.14836689453125004E3,-20.0875],[0.14860048828125005E3,-20.1452148],[148.759375,-20.2895508],[0.14888476562499997E3,-20.4808594],[0.14872998046874997E3,-20.4677734],[148.683691,-20.5801758],[148.789453,-0.20735644531249957E2],[0.14906054687499994E3,-20.9611328],[0.14920488281250005E3,-0.21125097656249977E2],[149.329297,-0.21476074218749986E2],[0.14945410156249997E3,-21.5787109],[0.14946005859375012E3,-21.7654297],[0.14959570312500003E3,-22.2576172],[0.14970390625000002E3,-0.22440527343750002E2],[0.14982246093750004E3,-0.22389843749999983E2],[0.14997441406250005E3,-22.5506836],[0.15000556640625004E3,-0.22521582031250006E2],[0.14994189453125003E3,-22.3081055],[149.98125,-0.22184277343750026E2],[0.15007617187500003E3,-22.1644531],[150.234863,-22.3729492],[0.15054130859375002E3,-22.559082],[0.15056855468750004E3,-0.22383984375000036E2],[0.15062285156250002E3,-0.22367285156250006E2],[0.15076386718750004E3,-0.22576171875000014E2],[0.15078300781250007E3,-23.1765625],[0.15084316406250005E3,-23.4580078],[0.15123632812499997E3,-23.825],[0.15150078125000002E3,-24.0124023],[0.15169091796875003E3,-0.24038378906250017E2],[151.902734,-0.24200976562500017E2],[0.15212988281250003E3,-0.24597558593749977E2],[0.15245634765625005E3,-24.8024414],[0.15250205078125006E3,-24.9639648],[0.15265429687499997E3,-0.25201953125000017E2],[152.78916,-25.2741211],[0.15291347656250005E3,-0.25432128906250014E2],[0.15292050781250006E3,-0.25688574218750034E2],[0.15302822265625005E3,-25.8703125],[153.164941,-0.25964160156250045E2],[153.08418,-0.26303808593749963E2],[0.15316210937499997E3,-0.26982714843749974E2],[0.15311679687500006E3,-27.1944336],[153.197949,-0.27404687499999966E2],[0.15338574218749997E3,-27.7685547],[0.15345488281250002E3,-28.0483398],[0.15357568359375003E3,-28.2405273],[0.15356914062500002E3,-28.5333984],[153.616895,-28.6730469],[0.15360458984375006E3,-0.28854492187500014E2],[153.462207,-0.29050195312500005E2],[153.348047,-0.29290429687500005E2],[0.15334697265625005E3,-0.29496582031249996E2],[0.15327236328125005E3,-29.8924805],[0.15318818359375004E3,-30.1638672],[0.15303056640625002E3,-30.5633789],[0.15304785156249997E3,-0.30907128906250033E2],[0.15294394531250012E3,-31.4348633],[152.78584,-31.7863281],[0.15255927734375007E3,-32.0457031],[152.545312,-32.2430664],[0.15247041015625007E3,-32.4390625],[0.15213652343750002E3,-32.678125],[152.164258,-32.7574219],[151.954297,-0.32820312499999986E2],[151.812891,-32.9010742],[151.483789,-33.3474609],[0.15143203125000005E3,-0.33521582031250034E2],[0.15129208984375012E3,-0.33580957031249966E2],[0.15132275390624997E3,-0.33699316406250006E2],[0.15128027343750003E3,-33.9266602],[0.15112480468750007E3,-34.0052734],[0.15123154296875003E3,-34.0296875],[0.15096035156250005E3,-34.2970703],[150.871289,-0.34499121093749956E2],[0.15078105468750002E3,-34.8921875],[0.15080917968750006E3,-34.9938477],[0.15069736328125012E3,-0.35041894531249966E2],[150.690332,-0.35177734375000014E2],[0.15056748046875012E3,-0.35214257812499994E2],[0.15037412109375006E3,-35.5841797],[0.15019531249999997E3,-35.8335937],[0.15012890625000003E3,-0.36120410156250045E2],[0.15006279296875007E3,-36.5503906],[0.14996025390625002E3,-0.36845507812499974E2],[149.950586,-0.37080273437500004E2],[0.14998632812500003E3,-37.2583984],[0.14993271484375012E3,-37.5285156],[149.809375,-37.5478516],[0.14956542968749997E3,-37.7299805],[0.14929843750000012E3,-0.37802148437499994E2],[0.14894394531250012E3,-0.37788476562499966E2],[148.2625,-0.37830664062500034E2],[0.14787675781250002E3,-37.9341797],[0.14763144531250006E3,-38.0556641],[0.14739560546875006E3,-38.2191406],[146.856836,-0.38663476562499966E2],[146.435742,-38.7118164],[0.14629257812500006E3,-38.6998047],[0.14621621093750005E3,-0.38782714843750014E2],[146.336621,-38.8942383],[0.14646660156250005E3,-38.840332],[146.483789,-39.0650391],[0.14640000000000012E3,-39.1455078],[146.158398,-38.8657227],[0.14606992187500006E3,-0.38834082031249984E2],[0.14593535156250002E3,-38.9017578],[0.14579082031250007E3,-38.6669922],[0.14560634765625005E3,-0.38656835937500034E2],[0.14539726562500002E3,-38.5353516],[0.14554218750000004E3,-38.3938477],[145.475781,-38.24375],[0.14529277343750002E3,-0.38237597656249974E2],[0.14519121093750002E3,-0.38383593749999974E2],[0.14495957031250012E3,-0.38500781250000045E2],[0.14471777343749997E3,-38.340332],[0.14491142578125007E3,-38.344043],[0.14506699218750003E3,-0.38204882812499974E2],[0.14511992187500007E3,-0.38091308593750014E2],[0.14489130859375004E3,-0.37899804687499994E2],[0.14439550781250003E3,-38.1369141],[144.589453,-38.1576172],[144.665234,-38.2099609],[144.543652,-38.284082],[0.14432871093750006E3,-38.3482422],[0.14410156249999997E3,-38.4623047],[143.811719,-38.6988281],[0.14353896484375005E3,-38.8208984],[143.226465,-38.7431641],[0.14308261718750003E3,-38.6458984],[142.840234,-38.5808594],[0.14261210937500007E3,-0.38451660156249986E2],[0.14234453125000007E3,-0.38372167968750034E2],[142.187695,-38.3994141],[141.924707,-38.2837891],[141.725,-38.2713867],[141.593945,-38.387793],[141.424219,-38.3634766],[0.14121386718750003E3,-38.1719727],[141.010938,-38.0769531],[0.14062724609375007E3,-38.028418],[0.14039042968750007E3,-37.8966797],[0.14021210937500004E3,-37.6421875],[0.13987480468750007E3,-37.3520508],[0.13978427734375012E3,-37.2458008],[0.13973847656250007E3,-37.0595703],[139.857324,-36.6621094],[0.13972900390625003E3,-36.3713867],[139.54873,-36.0966797],[0.13924492187500002E3,-0.35827343750000026E2],[0.13903769531250003E3,-35.6892578],[0.13896894531250007E3,-35.5807617],[0.13906689453124994E3,-35.5984375],[0.13917802734375007E3,-35.5230469],[139.289453,-35.6113281],[139.325098,-35.4266602],[0.13919277343750002E3,-35.3472656],[138.915234,-35.4888672],[138.521875,-35.6423828],[138.184375,-35.6126953],[0.13839980468750005E3,-35.3257812],[138.511133,-35.0244141],[0.13848994140625004E3,-34.7635742],[138.089258,-34.1698242],[0.13791923828125002E3,-0.34456054687499986E2],[0.13787412109375006E3,-34.7274414],[0.13769169921875002E3,-35.1429688],[0.13745957031250006E3,-35.1313477],[137.144434,-35.2364258],[0.13688359375000007E3,-35.2397461],[137.014258,-34.9158203],[0.13739101562500005E3,-34.9132812],[0.13749296875000002E3,-34.5977539],[0.13745898437499997E3,-0.34378906249999986E2],[0.13749384765625004E3,-34.1611328],[0.13765039062499994E3,-33.859082],[137.931836,-33.5791016],[0.13785234375000007E3,-33.2007812],[0.13799257812500005E3,-0.33094238281250014E2],[0.13791318359375012E3,-32.7707031],[137.783203,-32.578125],[137.790918,-32.8232422],[0.13768017578124997E3,-32.9780273],[137.442285,-33.1935547],[137.354199,-0.33430175781249964E2],[0.13723730468750003E3,-33.6294922],[0.13713027343750005E3,-0.33703027343749966E2],[0.13693652343750003E3,-33.7501953],[0.13663554687500007E3,-33.896582],[0.13643066406249997E3,-34.0299805],[0.13612109374999997E3,-0.34428710937500014E2],[135.891016,-0.34660937499999974E2],[0.13599853515624997E3,-34.94375],[0.13596972656249997E3,-34.9818359],[135.792383,-0.34863281249999986E2],[0.13564755859375006E3,-34.9396484],[135.480859,-34.7582031],[0.13523066406250004E3,-34.5797852],[0.13512304687499997E3,-34.5857422],[0.13521679687499997E3,-34.4873047],[0.13537871093750007E3,-34.5976562],[135.45,-34.5810547],[0.13531201171874997E3,-34.1955078],[0.13518544921875005E3,-0.33906738281249986E2],[0.13488876953125012E3,-33.6263672],[0.13479101562499997E3,-33.3283203],[0.13460771484375002E3,-33.1901367],[0.13430126953124997E3,-33.1650391],[0.13417353515625004E3,-0.32979101562500006E2],[0.13410039062500007E3,-0.32748632812500034E2],[0.13422714843750006E3,-32.7305664],[0.13423417968750007E3,-32.5485352],[0.13393017578125003E3,-32.4117187],[0.13378671875000012E3,-32.2688477],[0.13355136718750012E3,-32.1829102],[0.13321210937500004E3,-32.1837891],[0.13275742187500012E3,-31.95625],[0.13264863281250004E3,-31.9493164],[132.323633,-32.0200195],[0.13221464843750002E3,-32.0071289],[0.13172119140625003E3,-0.31696289062499954E2],[0.13139316406250006E3,-31.5485352],[0.13114365234375006E3,-31.4957031],[0.13078300781250002E3,-0.31604003906249986E2],[130.129785,-0.31579101562499982E2],[129.187695,-0.31659960937500014E2],[128.946191,-31.7026367],[0.12854609375000004E3,-0.31887695312499968E2],[0.12806767578125002E3,-32.0665039],[0.12767802734375003E3,-32.1512695],[0.12731982421874996E3,-32.2640625],[0.12677929687499997E3,-32.3109375],[126.136523,-32.2568359],[0.12591718750000004E3,-0.32296972656250034E2],[0.12546367187500002E3,-32.556543],[0.12526660156250003E3,-32.6144531],[0.12475878906250003E3,-0.32882714843749994E2],[124.373242,-0.32958398437499966E2],[124.24375,-0.33015234374999984E2],[0.12412607421875006E3,-0.33129394531249986E2],[123.868359,-33.5963867],[0.12365039062499996E3,-33.8363281],[0.12350683593749997E3,-0.33916210937500054E2],[0.12336542968750004E3,-33.9053711],[0.12320761718750012E3,-0.33988281249999986E2],[0.12306757812500008E3,-33.9005859],[122.777539,-0.33890820312500026E2],[0.12215097656250005E3,-33.9917969],[0.12206113281250005E3,-33.8744141],[0.12140507812500007E3,-0.33826757812500034E2],[0.12081455078125012E3,-33.8712891],[0.12041835937500005E3,-33.9630859],[120.209375,-0.33935449218749966E2],[119.854102,-33.974707],[119.635156,-34.1011719],[0.11945058593750004E3,-0.34368261718750034E2],[0.11924765625000012E3,-34.4564453],[0.11889531250000009E3,-34.4798828],[118.135547,-34.9866211],[0.11758193359375004E3,-35.0977539],[117.143945,-0.35033691406249986E2],[116.86543,-35.0265625],[0.11651718750000012E3,-34.9878906],[0.11598671875000004E3,-0.34795019531250034E2],[0.11572626953125008E3,-34.5260742],[0.11556503906250012E3,-34.4257813],[0.11527763671875006E3,-34.3039062],[0.11512792968749996E3,-34.3417969],[0.11500878906250003E3,-34.2558594],[0.11497343750000002E3,-34.0511719],[114.993848,-33.515332],[0.11518164062499997E3,-33.643457],[0.11535878906250001E3,-33.6399414],[115.515332,-33.5313477],[0.11568300781250005E3,-33.1928711],[0.11561855468749998E3,-0.32666992187500014E2],[115.70791,-32.5679687],[115.738086,-31.8878906],[115.698438,-0.31694531250000054E2],[0.11545458984374996E3,-31.3025391],[0.11529433593749998E3,-30.9618164],[0.11517685546875006E3,-0.30808007812500005E2],[0.11507792968750007E3,-0.30560449218750023E2],[0.11499453125000004E3,-0.30216210937499962E2],[114.94209,-29.721582],[0.11495898437499997E3,-0.29433593749999954E2],[0.11485683593750005E3,-29.1429688],[0.11462841796874997E3,-28.8717773],[0.11453740234375006E3,-0.28542871093750037E2],[0.11416513671875012E3,-28.0806641],[0.11413349609375004E3,-0.27976464843750023E2],[0.11409843750000002E3,-0.27544238281249974E2],[114.028125,-0.27347265624999988E2],[113.709375,-26.8477539],[0.11333300781250003E3,-0.26417382812500005E2],[0.11321074218750007E3,-0.26174218750000023E2],[0.11330009765625007E3,-26.2402344],[0.11338896484375007E3,-0.26105566406249977E2],[0.11358164062500006E3,-0.26558105468749986E2],[113.733691,-0.26595117187499977E2],[0.11383642578125003E3,-0.26500585937499988E2],[0.11385283203125007E3,-26.3321289],[0.11358906250000004E3,-0.26098632812499986E2],[113.513379,-0.25898339843750037E2],[0.11339531250000002E3,-25.7132813],[113.451367,-0.25599121093750014E2],[113.539453,-0.25625195312499997E2],[113.713086,-25.8307617],[0.11369169921875002E3,-0.26091699218749994E2],[0.11376582031250008E3,-26.1597656],[0.11387988281249997E3,-26.0276367],[0.11394238281250001E3,-26.2586914],[0.11409033203124997E3,-0.26393652343749963E2],[114.215723,-0.26289453124999966E2],[114.214258,-25.8515625],[0.11399277343750006E3,-0.25544824218749966E2],[113.792383,-0.25165722656249997E2],[0.11367080078124998E3,-24.9770508],[113.569238,-0.24692968749999963E2],[0.11341767578125004E3,-0.24435644531250034E2],[113.421289,-24.1323242],[113.55293,-23.7328125],[113.757031,-23.4181641],[0.11379492187499997E3,-23.0236328],[0.11376787109375006E3,-0.22812890625000023E2],[0.11368281250000004E3,-0.22637792968749963E2],[0.11395839843749998E3,-0.21939160156250008E2],[0.11412392578125005E3,-0.21828613281249957E2],[0.11414257812500003E3,-0.21909765624999963E2],[0.11409277343750003E3,-22.1813477],[0.11416386718750002E3,-22.3233398],[0.11414160156250003E3,-0.22483105468749983E2],[0.11430351562500002E3,-0.22425390625000034E2],[0.11437773437500007E3,-0.22341503906249997E2],[0.11460283203125002E3,-21.9421875],[114.709277,-21.8234375],[0.11485908203125003E3,-0.21735937499999988E2],[0.11516171875000006E3,-0.21630566406250026E2],[0.11545615234375012E3,-21.4916992],[0.11601093750000008E3,-0.21030371093749963E2],[0.11670673828125008E3,-0.20653808593749986E2],[0.11713906250000007E3,-0.20640917968750017E2],[117.40625,-20.7211914],[0.11768388671875002E3,-20.6427734],[0.11819921875000001E3,-20.3751953],[0.11875146484374996E3,-0.20261914062499983E2],[0.11910449218749997E3,-0.19995312500000026E2],[0.11958593750000001E3,-20.0382813],[0.11976777343750011E3,-0.19958398437499966E2],[0.12019628906250001E3,-0.19909472656250045E2],[0.12043369140625006E3,-0.19841992187499965E2],[0.12087841796874997E3,-0.19665039062499982E2],[0.12117978515625008E3,-0.19477929687499966E2],[121.337695,-19.3199219],[0.12149355468750005E3,-0.19106445312499957E2],[121.630664,-18.8166016],[121.833789,-0.18477050781249986E2],[122.00625,-0.18393652343749963E2],[0.12226210937500007E3,-0.18159082031250033E2],[0.12236093750000012E3,-0.18036914062500017E2],[0.12223740234375006E3,-0.17968554687500045E2],[0.12214746093749999E3,-17.5490234],[0.12216025390625006E3,-0.17313671875000026E2],[0.12226093750000011E3,-0.17135742187500014E2],[0.12243203125000005E3,-0.16970410156249994E2],[0.12252255859375006E3,-0.16942871093749982E2],[0.12272041015625003E3,-0.16787695312499988E2],[0.12291679687500002E3,-16.4326172],[0.12297070312499996E3,-0.16436816406250003E2],[0.12314208984374997E3,-0.16863085937499974E2],[0.12326591796875002E3,-0.17036816406250022E2],[123.383203,-17.2927734],[0.12356308593750005E3,-0.17520898437499966E2],[0.12361767578124996E3,-0.17008300781249986E2],[0.12383105468750001E3,-0.17120800781249997E2],[0.12385634765625004E3,-0.16864746093749957E2],[123.778125,-0.16867773437499963E2],[0.12349042968750008E3,-16.4907227],[0.12358134765625009E3,-16.4708984],[0.12364648437499997E3,-0.16343066406250003E2],[0.12360703125000005E3,-0.16224023437499994E2],[123.728906,-0.16192480468749963E2],[0.12385917968750006E3,-16.3823242],[123.961328,-0.16286914062500017E2],[0.12412978515625004E3,-0.16278808593749957E2],[0.12430039062500005E3,-0.16388281249999977E2],[0.12469238281249997E3,-16.3861328],[0.12466923828125007E3,-16.3387695],[0.12445449218750005E3,-0.16335253906250003E2],[0.12438828125000006E3,-16.2030273],[0.12443457031249997E3,-0.16103808593750017E2],[0.12457685546875008E3,-16.1136719],[0.12464833984374998E3,-0.15805468749999989E2],[0.12450429687500005E3,-0.15972460937499989E2],[124.381641,-0.15758203125000037E2],[0.12443955078125012E3,-0.15493554687500037E2],[124.561621,-0.15496289062499967E2],[0.12475048828125003E3,-0.15285253906249963E2],[0.12506298828125003E3,-0.15442285156249978E2],[0.12507294921875008E3,-0.15306738281249991E2],[0.12490917968750001E3,-0.15310058593749957E2],[0.12483906250000004E3,-0.15160742187500006E2],[0.12507294921875008E3,-0.15032324218750034E2],[0.12535566406250003E3,-0.15119824218750011E2],[0.12538378906249996E3,-15.015625],[0.12524326171875005E3,-0.14944531250000011E2],[0.12517871093749997E3,-0.14714746093749993E2],[0.12528457031250005E3,-14.584082],[0.12557978515625003E3,-14.4832031],[125.59707,-14.278125],[0.12570458984374997E3,-14.2914062],[0.12569052734375006E3,-14.5253906],[0.12581953125000003E3,-0.14469140624999966E2],[125.890625,-14.6179687],[126.020703,-14.4945312],[0.12601660156249996E3,-0.14371289062500013E2],[0.12611132812499997E3,-0.14114062500000017E2],[0.12605390625000008E3,-0.13977246093750026E2],[126.184277,-14.0020508],[0.12625849609375004E3,-0.14163574218749972E2],[126.403125,-0.14018945312499994E2],[126.569727,-0.14160937499999974E2],[0.12678066406249998E3,-0.13955175781249977E2],[0.12677558593750004E3,-0.13788476562500035E2],[0.12690322265624998E3,-13.7441406],[0.12709921875000005E3,-0.13867382812500026E2],[0.12729306640625012E3,-13.9347656],[0.12767285156249997E3,-0.14195117187500003E2],[127.887598,-0.14485156250000031E2],[0.12819941406250004E3,-0.14751757812499989E2],[0.12808046875000005E3,-0.15087988281250006E2],[0.12806943359375012E3,-0.15329296874999967E2],[0.12815546875000004E3,-0.15225585937499972E2],[0.12825468750000002E3,-15.2985352],[128.175,-0.15043164062500024E2],[128.477441,-0.14787988281249994E2],[0.12863554687500007E3,-0.14780957031249981E2],[0.12905820312500012E3,-14.884375],[0.12916513671875012E3,-0.14987597656249987E2],[0.12921582031249997E3,-15.1602539],[0.12923359375000004E3,-0.14906054687499987E2],[0.12926757812500003E3,-0.14871484375000053E2],[0.12945898437499997E3,-14.9332031],[0.12963476562499997E3,-0.15139746093749991E2],[129.637109,-0.14850976562500039E2],[0.12984873046875012E3,-0.14828906249999987E2],[0.12960468750000004E3,-0.14647070312499977E2],[129.698633,-0.14575292968750004E2],[0.12948388671874997E3,-0.14489746093749984E2],[0.12937871093750002E3,-0.14392480468749978E2],[129.45918,-14.2134766],[129.709863,-0.13979980468749972E2],[0.12983886718749997E3,-0.13572949218749997E2],[129.937891,-13.5016602],[0.13013593750000004E3,-13.4483398],[0.13025976562500003E3,-13.3022461],[130.134961,-0.13145507812499957E2],[130.168164,-12.9574219],[0.13031796875000006E3,-12.8829102],[0.13039990234374997E3,-12.6878906],[0.13061748046875007E3,-12.646875],[0.13062265625000006E3,-12.4310547],[0.13073613281250007E3,-0.12427734375000014E2],[130.867383,-0.12557812499999955E2],[0.13087382812500007E3,-0.12367187500000028E2],[0.13102343749999997E3,-0.12342871093749949E2],[0.13104570312500002E3,-0.12189648437499997E2],[131.219922,-0.12177929687500011E2],[0.13129160156250006E3,-0.12067871093749972E2],[0.13134208984375007E3,-0.12210058593749991E2],[131.438281,-12.2769531],[0.13172626953125007E3,-12.278125],[0.13188798828125002E3,-12.2319336],[0.13206406250000006E3,-12.2807617],[0.13225322265625005E3,-0.12186035156249972E2],[132.411035,-0.12295117187499995E2],[132.441602,-0.12176367187499963E2],[0.13258378906250002E3,-0.12110253906249994E2],[132.712793,-12.1234375],[0.13263046875000012E3,-0.12035156249999972E2],[0.13262988281249997E3,-11.8358398],[0.13267421875000005E3,-0.11649023437499991E2],[0.13247519531250006E3,-0.11491503906249974E2],[0.13227792968750012E3,-0.11467675781249994E2],[0.13213359375000002E3,-0.11500683593749969E2],[131.811816,-0.11271386718749978E2],[0.13196152343750006E3,-0.11180859375000011E2],[0.13219775390624997E3,-0.11304980468749989E2],[0.13226269531249997E3,-0.11204003906250023E2],[0.13255732421875004E3,-0.11366894531249981E2],[132.682813,-0.11505566406249997E2],[132.857129,-0.11391113281249943E2],[0.13302490234374994E3,-0.11452832031249997E2],[0.13318525390625004E3,-0.11705664062499991E2],[0.13335615234375004E3,-0.11728222656249967E2],[0.13353320312499997E3,-0.11816210937499946E2],[133.904199,-0.11832031249999972E2],[0.13423710937500002E3,-12.0077148],[0.13453808593749997E3,-12.0608398],[0.13473027343750002E3,-11.984375],[134.854688,-0.12102539062500014E2],[0.13502968750000005E3,-12.19375],[135.217969,-0.12221679687499957E2],[0.13535234375000002E3,-0.12129199218750031E2],[135.54873,-0.12060644531250006E2],[0.13592246093750012E3,-0.11825781250000034E2],[0.13583398437500003E3,-0.11950683593749986E2],[0.13588945312500002E3,-0.11992773437499949E2],[0.13570253906250005E3,-0.12151562499999969E2],[0.13574394531250007E3,-0.12241699218749943E2],[0.13593779296875002E3,-0.12152148437500003E2],[0.13600849609375004E3,-12.1914062],[0.13608183593750007E3,-0.12422460937500006E2],[136.260645,-0.12433789062499997E2],[0.13632851562500005E3,-0.12305566406249994E2],[0.13627011718750006E3,-12.1316406],[0.13644335937499997E3,-0.11951464843749973E2],[136.540234,-0.11957617187499977E2],[0.13660976562500005E3,-0.12133593749999946E2],[136.719434,-0.12226464843749952E2],[0.13689746093749997E3,-0.12243554687499966E2],[0.13694746093750004E3,-12.3499023],[136.537012,-0.12784277343749991E2],[136.594336,-13.0038086],[0.13646103515625006E3,-0.13225195312500034E2],[0.13629414062500004E3,-0.13137988281250031E2],[0.13592734375000012E3,-0.13304296874999977E2],[0.13592919921874997E3,-0.13621582031249957E2],[0.13598955078125002E3,-13.8101563],[0.13588339843750006E3,-14.153125],[135.744531,-14.2866211],[0.13540517578125005E3,-0.14758203124999966E2],[135.45332,-0.14923144531250003E2],[0.13553076171874994E3,-0.15000390625000023E2],[0.13583261718750006E3,-15.1601562],[0.13620537109375002E3,-0.15403417968749961E2],[0.13629140625000005E3,-0.15570117187500001E2],[0.13658359375000006E3,-15.706543],[0.13670488281250007E3,-0.15685253906250011E2],[0.13669814453125002E3,-0.15834960937499956E2],[0.13678466796874997E3,-15.8942383],[0.13700214843750004E3,-0.15878320312499996E2],[0.13729931640625003E3,-16.0663086],[0.13770371093750006E3,-0.16233007812499963E2],[0.13791289062500007E3,-0.16476562500000014E2],[0.13807158203125007E3,-16.6169922],[0.13824501953125005E3,-0.16718359374999977E2],[0.13850566406250002E3,-0.16789550781250014E2],[0.13862568359375004E3,-0.16777832031250014E2],[0.13882031250000003E3,-0.16860644531250017E2],[0.13900986328125006E3,-0.16899316406249994E2],[0.13911035156250003E3,-17.0140625],[139.248437,-0.17328613281249957E2],[0.13944052734375006E3,-0.17380566406249983E2],[139.689648,-17.5407227],[139.894531,-17.6113281],[0.14003583984375004E3,-0.17702636718749957E2],[140.209668,-17.7043945],[0.14051113281250005E3,-17.6245117],[140.830469,-0.17414453125000037E2],[0.14096601562500007E3,-0.17014550781250023E2],[0.14121914062500005E3,-0.16646191406250026E2],[0.14141191406250007E3,-0.16069531250000054E2],[0.14139316406250006E3,-0.15904687500000035E2],[0.14145156250000005E3,-0.15605273437499974E2],[0.14162548828124997E3,-0.15056640625000012E2],[0.14160351562500003E3,-14.8527344],[0.14152294921875003E3,-0.14470117187499994E2],[0.14159433593750003E3,-0.14152832031250012E2],[0.14148066406250004E3,-0.13926757812499957E2],[141.472559,-0.13797558593750011E2],[0.14153417968750003E3,-0.13553808593750004E2],[141.64541,-0.13259082031250003E2],[0.14161357421875002E3,-0.12943457031250006E2],[0.14178222656249997E3,-0.12778710937500023E2],[141.920312,-0.12802929687499981E2],[0.14185214843750012E3,-0.12578710937500034E2],[0.14167773437500003E3,-0.12491406250000011E2],[0.14168857421875012E3,-0.12351074218750028E2],[0.14187050781250002E3,-11.9755859],[0.14196113281250004E3,-0.12054296874999963E2],[0.14195156250000005E3,-0.11896191406249995E2],[0.14213896484375002E3,-0.11273242187500003E2],[142.168359,-0.10946582031249974E2],[0.14232646484375002E3,-0.10884179687499964E2],[0.14245644531250005E3,-0.10707324218749989E2],[0.14260507812500012E3,-0.10748242187499983E2],[0.14255273437500003E3,-0.10874414062500023E2],[142.723047,-0.11010449218750026E2],[142.836816,-0.11306933593750031E2],[0.14287255859374997E3,-0.11821386718750034E2],[142.988477,-0.11919042968750032E2],[0.14317890625000004E3,-0.11954492187499964E2]]],[[[142.274805,-0.10704785156250011E2],[0.14219140624999994E3,-0.10762011718750031E2],[142.131055,-10.640625],[0.14219794921875004E3,-0.10591992187500038E2],[142.274805,-0.10704785156250011E2]]],[[[0.14233896484375006E3,-0.10192187500000031E2],[0.14227939453125012E3,-10.2541992],[0.14219511718750002E3,-0.10199316406249977E2],[0.14233896484375006E3,-0.10192187500000031E2]]],[[[0.14216757812500006E3,-0.10154101562500003E2],[0.14216757812500006E3,-0.10154101562500003E2],[0.14216757812500006E3,-0.10154101562500003E2],[0.14216757812500006E3,-0.10154101562500003E2]]]]}}],"_labels":{"AU":"Australia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/AW.json b/src/api-umbrella/admin-ui/public/maps/AW.json new file mode 100644 index 000000000..3e4bd3170 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/AW.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"AW"},"geometry":{"type":"Polygon","coordinates":[[[-69.8991211,0.12452001953124991E2],[-69.9421875,0.12438525390624989E2],[-70.0661133,0.12546972656249991E2],[-70.0351074,0.12614111328124991E2],[-69.9731445,12.567627],[-69.8991211,0.12452001953124991E2]]]}}],"_labels":{"AW":"Aruba"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/AX.json b/src/api-umbrella/admin-ui/public/maps/AX.json new file mode 100644 index 000000000..5484425e2 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/AX.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"AX"},"geometry":{"type":"MultiPolygon","coordinates":[[[[20.6113281,0.60040673828124994E2],[0.20521777343750045E2,60.0116699],[0.20411230468750002E2,60.030127],[0.20429589843750023E2,60.0617188],[0.20569140625000014E2,0.60069628906250045E2],[20.6113281,0.60040673828124994E2]]],[[[19.6623047,0.60187158203124994E2],[19.6674805,60.1647461],[19.5365234,60.1449707],[0.19551367187500063E2,0.60243847656250004E2],[0.19628808593750023E2,60.2460938],[19.6623047,0.60187158203124994E2]]],[[[0.19989550781250074E2,60.3511719],[20.0874023,60.353418],[0.20258886718750063E2,0.60261279296874996E2],[20.1947266,60.1935547],[0.20042578125000034E2,60.1806641],[0.20033984375000074E2,60.0935547],[0.19799804687500057E2,0.60081738281250004E2],[0.19745996093750023E2,60.0989746],[19.6722656,0.60233007812500006E2],[0.19686914062500048E2,0.60267626953125045E2],[19.7790039,0.60285546874999966E2],[0.19785253906250034E2,60.2133789],[19.8476563,60.2205566],[0.19871582031250025E2,0.60301611328125034E2],[0.19787792968750008E2,60.3540527],[0.19888281250000063E2,0.60405810546875045E2],[0.19989550781250074E2,60.3511719]]]]}}],"_labels":{"AX":"Aland"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/AZ.json b/src/api-umbrella/admin-ui/public/maps/AZ.json new file mode 100644 index 000000000..e25792d64 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/AZ.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"AZ"},"geometry":{"type":"MultiPolygon","coordinates":[[[[45.152832,39.582666],[0.45252539062500006E2,39.595459],[0.45456835937500074E2,0.39494482421875006E2],[0.45610742187499994E2,39.5498047],[45.7504883,39.5629395],[45.7964844,0.39488134765625034E2],[45.7663086,39.3784668],[0.45977441406249994E2,39.2438965],[45.9518555,39.178125],[46.1144531,0.38877783203125034E2],[45.575,38.9728027],[45.4796875,39.00625],[0.45255957031250006E2,0.39194677734375034E2],[45.1412109,39.2542969],[44.7682617,39.7035156],[45.0316406,39.7651367],[45.1486328,39.6565918],[45.152832,39.582666]]],[[[45.0236328,41.0272461],[45.0236328,41.0272461],[45.0236328,41.0272461],[45.0236328,41.0272461]]],[[[0.46552148437499994E2,0.41812304687500045E2],[0.46690332031249994E2,41.8313477],[46.7493164,0.41812597656250006E2],[46.9308594,41.6704102],[47.0101563,41.5875],[47.2052734,41.4556152],[47.2611328,0.41315087890624994E2],[47.5206055,41.2290527],[47.7910156,41.1992676],[47.8611328,0.41212744140625034E2],[48.0560547,41.4586914],[48.2981445,0.41545019531250034E2],[48.3914063,41.6019043],[0.48572851562500006E2,41.8444824],[48.6646484,41.7866211],[48.8239258,41.6295898],[49.1066406,41.301709],[49.2264648,41.0262207],[49.5561523,40.7163086],[0.49775976562500055E2,40.5839844],[49.990625,40.5768066],[0.50182519531250044E2,40.5047852],[50.3068359,0.40412207031250006E2],[50.365918,40.2794922],[50.1431641,40.3232422],[49.9188477,40.3164063],[49.669043,40.2490234],[49.5511719,40.1941406],[0.49477343750000074E2,40.0872559],[0.49415136718750006E2,39.8398438],[49.3244141,39.6083496],[49.362793,0.39349560546874955E2],[0.49269335937500074E2,39.2851562],[0.49199804687500006E2,39.0726563],[49.1209961,39.0039062],[49.1113281,39.0847168],[0.49013476562500074E2,39.1339844],[48.9617188,39.0787598],[0.48850878906250074E2,38.815332],[48.86875,38.435498],[48.6355469,38.3987305],[48.5926758,38.411084],[48.4173828,38.5862305],[0.48305566406249994E2,38.6134766],[48.2046875,38.7241211],[48.0232422,38.819043],[47.9926758,38.8842773],[48.0500977,38.9350098],[48.2419922,0.38978955078124955E2],[0.48292089843750006E2,39.0188477],[48.2741211,39.0991211],[0.48125488281249964E2,39.1716309],[48.1043945,0.39241113281249994E2],[48.1360352,0.39312353515625006E2],[0.48322167968749994E2,0.39399072265625016E2],[48.2817383,0.39448339843750006E2],[0.47995898437500074E2,0.39683935546875034E2],[47.8922852,39.6850586],[0.47772851562499994E2,39.648584],[0.47188378906250044E2,0.39340966796874994E2],[46.9888672,39.1801758],[46.8525391,39.1484375],[0.46554785156250006E2,0.38904394531250034E2],[46.490625,38.9066895],[46.4898437,0.39069433593750006E2],[46.4014648,39.1676758],[46.4203125,0.39207373046875034E2],[0.46584765625000074E2,39.2236816],[46.378418,0.39382275390624955E2],[46.3776367,39.4338867],[46.478125,39.4750977],[0.46481445312499964E2,39.5551758],[46.3216797,39.6174316],[0.46202050781249994E2,39.5944824],[45.7896484,0.39881103515624964E2],[45.5797852,39.9775391],[45.6301758,40.014209],[45.8581055,0.40011279296875045E2],[45.9675781,40.1748047],[45.9646484,40.2337891],[45.7357422,40.3291016],[45.5695313,0.40416845703125055E2],[45.3761719,40.6380859],[45.4013672,0.40707128906250034E2],[45.5793945,40.8044922],[45.5875,40.8469238],[45.3689453,41.0048828],[45.2734375,41.00625],[45.0707031,41.1008301],[45.1902344,41.1263672],[45.0847656,0.41195458984374966E2],[0.45001367187499994E2,41.2909668],[45.280957,0.41449560546875034E2],[45.4222656,41.425293],[45.715625,41.3376465],[45.6957031,41.2890137],[45.7927734,41.2244141],[46.03125,41.1672852],[46.1707031,0.41197851562500006E2],[0.46457910156249994E2,0.41070214843750016E2],[46.534375,41.0885742],[0.46626367187500044E2,41.159668],[46.6725586,0.41286816406250004E2],[46.6189453,41.34375],[46.3054688,0.41507714843749994E2],[0.46254687500000074E2,0.41602148437500034E2],[46.1821289,0.41657080078125034E2],[46.2018555,0.41736865234375045E2],[0.46302539062500074E2,41.7570801],[46.4298828,0.41890966796875006E2],[46.5376953,41.8704102],[0.46552148437499994E2,0.41812304687500045E2]],[[45.4788086,40.6069824],[45.5523438,40.6160645],[0.45504492187500006E2,0.40664843750000045E2],[45.4788086,40.6069824]]]]}}],"_labels":{"AZ":"Azerbaijan"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/BA.json b/src/api-umbrella/admin-ui/public/maps/BA.json new file mode 100644 index 000000000..a731dca3f --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/BA.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"BA"},"geometry":{"type":"Polygon","coordinates":[[[0.19007128906250045E2,44.8691895],[19.2368164,0.44914257812499926E2],[0.19348632812500057E2,0.44880908203125074E2],[19.2918945,44.6967773],[19.1513672,44.5273437],[0.19118457031250074E2,44.3599609],[19.1518555,44.3025391],[19.3388672,0.44225830078125114E2],[0.19583789062500017E2,0.44043457031250085E2],[19.5495117,43.9871094],[0.19305273437500034E2,43.9933594],[0.19245019531249994E2,43.9650391],[0.19488183593750076E2,0.43703564453124926E2],[0.19451269531250002E2,43.5620605],[0.19360351562500057E2,43.593457],[0.19254492187500063E2,43.584375],[19.1943359,0.43533300781250055E2],[0.19080078125000057E2,43.5177246],[0.18974218749999974E2,0.43542333984375034E2],[0.18940234375000074E2,43.4967285],[0.19036718750000034E2,0.43357324218749994E2],[0.19026660156250017E2,43.2924316],[18.8510742,43.3463379],[18.6742188,43.2308105],[18.621875,43.1246094],[0.18623632812500063E2,43.0276855],[0.18488476562500068E2,43.0121582],[18.4438477,42.968457],[18.4660156,42.7772461],[0.18543261718750045E2,42.6741699],[0.18534960937500017E2,42.6201172],[0.18436328125000017E2,0.42559716796875044E2],[0.18304003906250045E2,42.5994141],[17.8413086,42.8450684],[17.8019531,42.9022461],[0.17667578125000063E2,42.8971191],[0.17585156250000068E2,42.9383789],[0.17657812500000034E2,42.9800781],[0.17624804687500042E2,0.43042773437500045E2],[0.17402246093750023E2,43.1989258],[0.17293066406250063E2,43.3056152],[17.2738281,43.445752],[0.17084570312500034E2,0.43516552734374926E2],[0.16713476562500034E2,43.7788086],[16.5905273,43.9131836],[0.16377539062500063E2,44.0596191],[0.16214257812500023E2,44.2151367],[16.1302734,44.4737305],[0.15880078125000068E2,44.6819336],[0.15736621093750047E2,44.7658203],[15.7379883,44.8563965],[0.15788085937500057E2,45.1789551],[0.15888281250000032E2,45.2157227],[0.16028320312500057E2,45.1895996],[0.16157324218750063E2,0.45072216796874955E2],[0.16293359375000048E2,45.0088379],[16.5306641,45.2166992],[16.7908203,45.196875],[0.16918652343749983E2,45.2765625],[0.17125390625000023E2,0.45171777343749994E2],[17.2586914,45.1705566],[17.5462891,45.1225586],[0.17690136718750036E2,0.45158398437499926E2],[0.17812792968750074E2,45.078125],[0.17874414062500023E2,45.0772461],[0.17996289062500068E2,0.45141796874999926E2],[0.18137207031249996E2,45.1193848],[0.18284960937500074E2,0.45134277343750085E2],[18.4882813,45.0858398],[18.6625977,45.0774414],[0.18746093750000057E2,45.0265137],[0.18788378906250045E2,44.9148926],[0.18836425781249968E2,44.883252],[0.19007128906250045E2,44.8691895]]]}}],"_labels":{"BA":"Bosnia and Herz."}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/BB.json b/src/api-umbrella/admin-ui/public/maps/BB.json new file mode 100644 index 000000000..87ffa9b4b --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/BB.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"BB"},"geometry":{"type":"Polygon","coordinates":[[[-59.4933105,0.13081982421874995E2],[-59.6113281,0.13102099609374987E2],[-59.6466797,13.303125],[-59.5916016,0.13317675781250003E2],[-59.4276367,0.13152783203124997E2],[-59.4933105,0.13081982421874995E2]]]}}],"_labels":{"BB":"Barbados"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/BD.json b/src/api-umbrella/admin-ui/public/maps/BD.json new file mode 100644 index 000000000..efc80825d --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/BD.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"BD"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.9194921875000003E2,21.5080566],[0.9188886718750003E2,21.5033203],[91.8570313,0.21708789062499985E2],[91.9339844,0.21722167968750057E2],[0.9194921875000003E2,21.5080566]]],[[[91.8738281,0.21832128906249977E2],[91.8197266,0.21809814453125057E2],[91.8506836,0.21927050781250045E2],[91.8738281,0.21832128906249977E2]]],[[[0.9115078125000005E2,0.22175195312499966E2],[91.0447266,22.1051758],[91.0794922,0.22519726562499983E2],[0.9117822265624997E2,22.2830078],[0.9115078125000005E2,0.22175195312499966E2]]],[[[91.5567383,22.3822266],[0.9146689453125005E2,22.378418],[91.4113281,0.22475683593750006E2],[0.9143886718750005E2,22.5988281],[91.4839844,0.22576562500000023E2],[91.5567383,22.3822266]]],[[[0.9077763671875007E2,0.22089306640624983E2],[0.9060361328125005E2,22.0541992],[0.9051503906250005E2,0.22065136718750008E2],[0.9068046875000007E2,0.22327490234375006E2],[90.6492188,22.5406738],[0.9056494140624997E2,22.617627],[0.9050292968749997E2,0.22835351562499994E2],[90.5964844,0.22863525390625057E2],[90.6722656,22.8131836],[90.7369141,22.6387207],[0.9086816406250003E2,0.22484863281249996E2],[90.8298828,0.22159960937500074E2],[0.9077763671875007E2,0.22089306640624983E2]]],[[[90.6417969,0.22962988281250063E2],[0.9056230468750007E2,0.22975439453125034E2],[90.5798828,23.0354492],[90.6417969,0.22962988281250063E2]]],[[[88.7619141,0.26279394531249977E2],[88.9704102,0.26250878906250023E2],[88.9241211,0.26375097656250034E2],[89.0186523,0.26410253906249977E2],[89.1019531,26.3083496],[89.1083008,0.26202246093749974E2],[89.2892578,26.0375977],[89.4668945,25.9835449],[89.5499023,0.26005273437499994E2],[89.619043,0.26215673828125063E2],[89.7098633,0.26171240234375063E2],[89.8229492,25.9414063],[89.7996094,25.8395996],[89.8249023,25.5601562],[89.7962891,0.25375830078125002E2],[89.8140625,0.25305371093749955E2],[0.9025039062500005E2,25.1849609],[90.4393555,0.25157714843749996E2],[91.2931641,25.1779785],[91.4796875,0.25142138671875014E2],[0.9204970703125005E2,25.1694824],[92.2046875,0.25110937500000063E2],[92.4683594,0.24944140624999985E2],[92.4431641,0.24849414062500074E2],[92.2512695,0.24895068359375045E2],[92.2305664,0.24786230468749977E2],[92.0641602,0.24374365234375006E2],[0.9195166015624997E2,0.24356738281250045E2],[0.9187695312500003E2,24.1953125],[91.66875,0.24190087890625023E2],[0.9152636718750003E2,0.24090771484374955E2],[91.3670898,24.0935059],[0.9133642578124997E2,24.0187988],[91.2320313,23.920459],[91.1604492,23.6606445],[91.1655273,23.5810547],[91.2538086,0.23373632812500063E2],[0.9131523437500007E2,0.23104394531249994E2],[0.9136865234375003E2,0.23074560546875063E2],[0.9137060546874997E2,23.197998],[91.4362305,23.1999023],[0.9151123046875003E2,23.0336914],[91.6195312,22.9796875],[91.6949219,23.004834],[91.7738281,0.23106103515624994E2],[0.9175419921875007E2,0.23287304687499955E2],[0.9179003906249997E2,23.3610352],[91.9378906,0.23504687500000017E2],[91.9295898,23.6859863],[0.9204404296875005E2,0.23677783203125017E2],[0.9215234374999997E2,23.721875],[0.9224609375000001E2,0.23683593750000057E2],[92.3341797,23.3238281],[92.3616211,0.22929003906250074E2],[0.9249140625000003E2,0.22685400390625002E2],[92.5318359,0.22410302734374994E2],[92.5828125,0.21940332031249994E2],[92.593457,21.467334],[92.6316406,0.21306201171875045E2],[92.5685547,0.21263330078124994E2],[92.5391602,21.3198242],[0.9233056640624997E2,0.21439794921874977E2],[92.2796875,0.21427587890624977E2],[0.9217958984375005E2,0.21293115234375023E2],[92.2147461,21.1126953],[92.2644531,21.0614746],[92.3078125,20.7904297],[92.1946289,0.20984277343749994E2],[92.0560547,21.1748047],[92.0109375,21.5162598],[92.0080078,0.21684765624999983E2],[91.9131836,0.21883056640625053E2],[91.8248047,0.22228662109375023E2],[91.8633789,0.22350488281249966E2],[91.7970703,0.22297460937500002E2],[91.6929688,0.22504785156249966E2],[91.5296875,0.22707666015624994E2],[91.4800781,0.22884814453125045E2],[91.4095703,22.7970215],[91.1513672,0.22614062500000017E2],[90.9456055,0.22597021484375034E2],[90.8267578,22.7213867],[90.65625,0.23025488281250006E2],[90.6335938,23.0942383],[0.9065605468750007E2,0.23273046874999977E2],[0.9060400390624997E2,23.5913574],[0.9055566406249997E2,23.4215332],[90.2691406,0.23455859375000017E2],[90.3915039,0.23366943359375025E2],[90.5227539,0.23346142578124955E2],[90.590918,0.23266406250000045E2],[90.5951172,0.23133935546874994E2],[90.4660156,23.0539063],[0.9055224609374997E2,22.9048828],[90.4616211,22.8817871],[0.9043505859374997E2,0.22751904296874955E2],[0.9048740234375005E2,0.22588720703125006E2],[90.5955078,0.22435839843750045E2],[90.5894531,0.22258447265624966E2],[90.3557617,22.0482422],[90.2305664,21.8297852],[90.1587891,0.21816845703124983E2],[90.0711914,0.21887255859375017E2],[0.9008789062499997E2,0.22017480468749994E2],[90.2095703,0.22156591796875006E2],[89.9541992,0.22022851562500023E2],[89.894043,0.22202587890624955E2],[89.8938477,0.22308398437500017E2],[89.9851563,0.22466406250000063E2],[89.8818359,22.3875977],[89.8658203,0.22173046874999983E2],[89.8119141,0.21983496093750006E2],[89.6677734,21.8776855],[89.5685547,0.21767431640625034E2],[89.5474609,0.21983691406250045E2],[89.4832031,0.22275537109374994E2],[89.4693359,0.22212939453125017E2],[89.5005859,0.21914355468750042E2],[89.3537109,21.7210938],[89.2342773,21.7223633],[89.0939453,21.8727539],[89.0514648,22.0931641],[89.05,22.2746094],[88.9207031,0.22632031249999955E2],[88.899707,0.22843505859375057E2],[88.8505859,0.23040527343750057E2],[88.928125,0.23186621093750063E2],[88.7244141,0.23254980468750034E2],[88.7408203,0.23436621093750006E2],[88.5959961,0.23602197265624994E2],[88.5673828,0.23674414062500034E2],[88.6998047,0.24002539062500006E2],[88.7335938,24.2309082],[88.6422852,0.24325976562500017E2],[88.3969727,0.24389257812500006E2],[88.2871094,24.4797363],[88.1455078,0.24485791015624955E2],[88.0234375,24.627832],[88.1498047,0.24914648437500034E2],[88.3133789,0.24881835937499996E2],[88.3729492,0.24961523437499977E2],[88.45625,0.25188427734375036E2],[88.7475586,0.25168945312500057E2],[88.8901367,25.1943848],[88.9441406,25.2907715],[88.8203125,0.25365527343750045E2],[88.7691406,0.25490478515624996E2],[88.593457,25.4953125],[88.4523438,25.5744141],[88.3630859,0.25698193359374955E2],[88.2529297,25.7897949],[88.1474609,25.8114258],[88.0845703,0.25888232421875045E2],[88.1507813,26.0871582],[88.4404297,0.26369482421875034E2],[88.4367187,0.26437109375000034E2],[88.3514648,0.26482568359374966E2],[88.3699219,0.26564111328124994E2],[88.5182617,0.26517773437499955E2],[88.6806641,0.26352978515624955E2],[88.6828125,0.26291699218749983E2],[88.7619141,0.26279394531249977E2]]]]}}],"_labels":{"BD":"Bangladesh"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/BE.json b/src/api-umbrella/admin-ui/public/maps/BE.json new file mode 100644 index 000000000..cf09b621e --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/BE.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"BE"},"geometry":{"type":"Polygon","coordinates":[[[4.81601563,0.51432812499999926E2],[4.84804688,0.51403271484374955E2],[4.94394531,51.4077637],[5.03095703,51.4690918],[5.09990234,51.3464844],[5.21416016,51.2789551],[5.31083984,0.51259716796874926E2],[5.47685547,51.2850586],[5.60878906,51.1984375],[5.75234375,51.1694824],[5.82714844,0.51125634765624966E2],[5.73662109,50.9321289],[5.63945313,50.8436035],[5.69453125,50.7810547],[5.83095703,0.50809130859375045E2],[5.89246112,0.50752556857983556E2],[5.99394531,50.7504395],[6.2359375,50.5966797],[6.16845703,50.5453613],[6.20302734,50.4991211],[6.34091797,50.4517578],[6.36445313,0.50316162109375085E2],[6.17509766,0.50232666015624936E2],[6.11005859,50.1237793],[6.0890625,50.1545898],[5.97626953,50.1671875],[5.86689453,50.0828125],[5.74404297,49.9196289],[5.725,49.8083008],[5.88037109,0.49644775390625085E2],[5.78974609,49.5382813],[5.50732422,49.5108887],[5.27880859,49.6779297],[5.12412109,49.7214844],[5.00693359,49.7783691],[4.86757813,0.49788134765625074E2],[4.84150391,49.914502],[4.79003906,49.9595703],[4.86054688,0.50135888671875016E2],[4.81865234,0.50153173828125006E2],[4.70664063,50.0970703],[4.65615234,50.0024414],[4.54501953,49.9602539],[4.36875,49.9449707],[4.17607422,49.9602539],[4.13681641,50],[4.1921875,0.50094140624999966E2],[4.13525391,50.1437988],[4.17460938,50.2464844],[4.04414062,0.50321337890625074E2],[3.74804688,50.3435059],[3.66728516,50.3248047],[3.62675781,0.50457324218750074E2],[3.47695313,50.4994629],[3.31621094,50.507373],[3.27333984,50.531543],[3.23496094,0.50662939453125034E2],[3.18203125,50.7316895],[3.10683594,50.7794434],[2.83974609,0.50711767578125034E2],[2.66914062,0.50811425781249994E2],[2.57929687,50.9117676],[2.60146484,50.9552734],[2.52490234,0.51097119140624926E2],[2.96015625,51.2654297],[3.22519531,0.51351611328125074E2],[3.35009766,51.3776855],[3.38007813,51.2911133],[3.47197266,51.2422363],[3.58027344,51.2861816],[3.75566406,51.254834],[3.83076172,51.2125977],[3.90205078,51.207666],[4.04003906,0.51247070312500114E2],[4.17255859,51.3070801],[4.22617188,0.51386474609375085E2],[4.30449219,51.3615234],[4.40400391,0.51367089843750044E2],[4.38476563,51.4275879],[4.50341797,0.51474707031250034E2],[4.63398438,51.4217285],[4.75566406,51.4911133],[4.81601563,0.51432812499999926E2]]]}}],"_labels":{"BE":"Belgium"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/BF.json b/src/api-umbrella/admin-ui/public/maps/BF.json new file mode 100644 index 000000000..3965a64c9 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/BF.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"BF"},"geometry":{"type":"Polygon","coordinates":[[[0.217480469,0.14911474609374991E2],[0.163867188,0.14497216796874993E2],[0.382519531,0.14245800781249997E2],[0.354882813,0.14139013671874991E2],[0.429199219,0.13972119140624997E2],[0.618164062,0.13703417968750003E2],[0.747753906,0.13674511718749995E2],[0.977734375,13.5519531],[1.01787109,0.13467871093749991E2],[1.20117188,0.13357519531249991E2],[1.17089844,0.13329589843749998E2],[0.988476563,13.3648438],[0.973046875,0.13170361328124997E2],[0.987304688,0.13041894531249994E2],[1.09677734,0.13001123046874994E2],[1.50048828,0.12676464843749997E2],[1.56494141,0.12635400390624994E2],[1.78984375,12.6132812],[1.95615234,12.7074219],[2.07382812,0.12713964843749991E2],[2.15976562,0.12636425781249997E2],[2.22626953,12.4660645],[2.20380859,12.4125977],[2.06855469,12.3791504],[2.09140625,0.12277978515624994E2],[2.38916016,0.11897070312499991E2],[2.28720703,11.6912598],[1.98037109,0.11418408203124995E2],[1.85761719,11.4433594],[1.6,0.11400634765624998E2],[1.56142578,0.11449121093749994E2],[1.42675781,0.11447119140624991E2],[1.31738281,0.11295263671874991E2],[1.14580078,0.11251904296874997E2],[1.06230469,11.0582031],[0.985058594,0.11079003906249993E2],[0.924609375,0.10992822265624994E2],[0.64296875,0.10983056640624994E2],[0.492675781,0.10954980468749993E2],[0.484179688,0.10991992187499989E2],[-0.299462891,0.11166894531249994E2],[-0.345751953,0.11087939453124989E2],[-0.430322266,11.0932617],[-0.491699219,0.11007617187499989E2],[-0.648535156,10.9267578],[-0.701416016,0.10988964843749997E2],[-0.902929687,0.10984716796874991E2],[-1.04248047,0.11010058593749989E2],[-1.23261719,0.10997216796874994E2],[-1.53676758,11.0226563],[-1.5996582,10.9976563],[-2.75166016,0.10986376953124989E2],[-2.82993164,10.9983887],[-2.90732422,0.10727978515624997E2],[-2.91489258,0.10592333984374989E2],[-2.83720703,0.10454638671874987E2],[-2.79116211,0.10432421874999989E2],[-2.8203125,0.10322851562499991E2],[-2.77709961,0.10281591796874991E2],[-2.78320312,10.0831055],[-2.75073242,9.90966797],[-2.7659668,0.9658056640624991E1],[-2.69584961,9.48134766],[-2.81674805,0.9425830078124989E1],[-2.98828125,0.9687353515624991E1],[-3.09580078,0.9752099609374993E1],[-3.22353516,0.9895458984374997E1],[-3.28969727,9.88222656],[-3.58115234,9.92431641],[-3.87763672,9.89492187],[-4.2671875,0.9743261718749991E1],[-4.33222656,9.64570313],[-4.40620117,0.9647998046874989E1],[-4.52661133,0.9723486328124991E1],[-4.62583008,0.9713574218749997E1],[-4.96992187,9.93007812],[-4.99404297,10.0464844],[-5.09985352,0.10241601562499994E2],[-5.26230469,0.10319677734374991E2],[-5.38227539,0.10314013671874989E2],[-5.52353516,10.4260254],[-5.47900391,0.10565087890624994E2],[-5.45708008,0.10771386718749994E2],[-5.49047852,0.11042382812499994E2],[-5.34741211,0.11130273437499993E2],[-5.29985352,0.11205957031249994E2],[-5.22939453,0.11522460937499998E2],[-5.29052734,0.11683300781249997E2],[-5.28813477,0.11827929687499989E2],[-5.1059082,11.9675293],[-4.79794922,0.12032128906249994E2],[-4.58691406,12.1550293],[-4.42871094,0.12337597656249997E2],[-4.42192383,0.12581591796874989E2],[-4.48061523,0.12672216796874991E2],[-4.22709961,0.12793701171874998E2],[-4.22524414,0.12879492187499991E2],[-4.32871094,0.13119042968749993E2],[-4.15102539,0.13306201171875003E2],[-4.05117187,13.3824219],[-3.94731445,0.13402197265624991E2],[-3.8534668,13.3735352],[-3.57578125,0.13194189453124991E2],[-3.46992187,0.13196386718749991E2],[-3.30175781,13.2807617],[-3.26674805,13.4007812],[-3.27016602,0.13577441406250003E2],[-3.1984375,13.6728516],[-3.03867187,0.13639111328124995E2],[-2.91708984,0.13679492187500001E2],[-2.92587891,0.13786767578124994E2],[-2.87392578,0.13950732421875003E2],[-2.77885742,0.14073730468749998E2],[-2.58671875,0.14227587890625003E2],[-2.45722656,0.14274121093749995E2],[-2.11323242,14.168457],[-2.05712891,0.14194628906250003E2],[-1.97304687,0.14456542968749998E2],[-1.76777344,0.14486035156249997E2],[-1.65732422,0.14526806640624995E2],[-1.49365234,0.14626074218749991E2],[-1.20498047,0.14761523437500001E2],[-1.04956055,14.8195313],[-0.760449219,0.15047753906249994E2],[-0.536523437,0.15077880859374998E2],[-0.405419922,15.0125],[-0.235888672,0.15059423828124991E2],[0.217480469,0.14911474609374991E2]]]}}],"_labels":{"BF":"Burkina Faso"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/BG.json b/src/api-umbrella/admin-ui/public/maps/BG.json new file mode 100644 index 000000000..0a5197164 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/BG.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"BG"},"geometry":{"type":"Polygon","coordinates":[[[0.28585351562500023E2,0.43742236328124996E2],[0.28561816406250017E2,43.5013184],[0.28465429687500006E2,0.43389306640624994E2],[0.28319628906250017E2,43.4268555],[28.1336914,43.3956055],[28.0351562,43.2682617],[27.9289063,43.1861328],[27.8964844,43.0207031],[27.8888672,42.749707],[0.27753710937500017E2,42.706543],[0.27484765625000023E2,0.42468066406249996E2],[27.7082031,42.3499512],[0.27982714843750017E2,42.0474121],[0.28014453125000017E2,0.41969042968749996E2],[0.27879199218750017E2,0.41986621093749996E2],[27.6611328,41.9613281],[27.5348633,0.41920800781249994E2],[27.2949219,42.079541],[27.0117188,0.42058642578124996E2],[0.26884863281250006E2,0.41991845703124994E2],[0.26615332031250006E2,0.41964892578124996E2],[26.5114258,41.8263672],[26.3603516,41.8015625],[0.26320898437500006E2,41.7165527],[26.2005859,0.41743798828124994E2],[26.0660156,41.6732422],[0.26155175781250023E2,0.41434863281249996E2],[0.26135351562500006E2,41.3857422],[0.25923339843749996E2,0.41311914062499994E2],[0.25784960937500014E2,41.3304199],[25.5270508,41.2998047],[25.2511719,0.41243554687499994E2],[0.25133398437500006E2,41.3157715],[24.846875,41.3942383],[0.24773730468750017E2,0.41356103515624994E2],[0.24595996093750014E2,41.4427246],[24.5182617,0.41552539062499996E2],[24.3867188,41.5235352],[0.24056054687500023E2,0.41527246093749994E2],[24.0329102,41.4690918],[23.8808594,0.41455957031249994E2],[0.23635156250000023E2,0.41386767578124996E2],[23.2398437,41.3849609],[0.23155957031250008E2,0.41322070312499996E2],[22.9160156,41.3362793],[0.22951464843750014E2,41.6056152],[0.23005664062500017E2,41.7169434],[0.22943945312500006E2,41.7750977],[22.8368164,41.9936035],[0.22582714843750008E2,42.104834],[0.22344042968750014E2,42.3139648],[22.4220703,42.3288574],[0.22523535156250006E2,0.42440966796874996E2],[0.22524218750000017E2,42.5039062],[22.4362305,42.6291016],[22.4667969,42.8424805],[0.22706152343750006E2,0.42883935546874994E2],[0.22942285156250023E2,0.43097070312499994E2],[0.22976855468750017E2,43.1879883],[22.8595703,43.2523438],[22.7675781,0.43354150390624994E2],[22.5545898,0.43454492187499994E2],[0.22394824218750017E2,43.7066406],[22.3654297,43.8621094],[0.22420800781250023E2,44.0074219],[0.22597460937500017E2,44.075293],[22.6265625,44.1940918],[22.7050781,44.237793],[23.0285156,44.0779785],[0.22868261718750002E2,0.43947900390624994E2],[0.22919042968750006E2,43.8344727],[23.2246094,43.873877],[0.23534570312500023E2,0.43853564453124996E2],[23.9507812,0.43786669921874996E2],[24.2267578,0.43763476562499996E2],[0.24430566406250023E2,43.7943848],[25.159668,43.6863281],[25.4970703,0.43670800781249994E2],[25.8188477,43.7668457],[0.25933398437500017E2,43.8705566],[26.2158203,44.0072754],[26.4892578,44.0839844],[0.26847753906250006E2,44.1461914],[27.0869141,0.44167382812499994E2],[27.4253906,44.0205078],[27.6708984,43.9978027],[0.27738574218750017E2,43.9562988],[0.27884277343749996E2,0.43987353515624996E2],[28.05,0.43822412109374994E2],[28.4234375,43.7404785],[0.28585351562500023E2,0.43742236328124996E2]]]}}],"_labels":{"BG":"Bulgaria"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/BH.json b/src/api-umbrella/admin-ui/public/maps/BH.json new file mode 100644 index 000000000..d1398a684 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/BH.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"BH"},"geometry":{"type":"Polygon","coordinates":[[[50.6072266,0.25883105468750003E2],[50.5749023,0.25806787109374994E2],[50.465918,0.25965527343749997E2],[50.4894531,0.26058447265624995E2],[50.4699219,0.26228955078124997E2],[50.5859375,26.2407227],[0.50609765625000016E2,0.26124462890624997E2],[50.6072266,0.25883105468750003E2]]]}}],"_labels":{"BH":"Bahrain"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/BI.json b/src/api-umbrella/admin-ui/public/maps/BI.json new file mode 100644 index 000000000..d00526758 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/BI.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"BI"},"geometry":{"type":"Polygon","coordinates":[[[30.5536133,-2.40009766],[0.30424218750000023E2,-2.64160156],[0.30473339843750008E2,-2.69433594],[30.4240234,-2.82402344],[30.4334961,-2.87451172],[0.30515039062500023E2,-2.91757812],[30.7802734,-2.98486328],[0.30811132812500002E2,-3.11640625],[30.7902344,-3.27460938],[0.30681835937500008E2,-3.309375],[30.6109375,-3.36640625],[0.30631933593750006E2,-3.41865234],[30.425,-3.58886719],[30.3791016,-3.73076172],[0.30268554687499996E2,-3.85048828],[30.147168,-4.08535156],[29.9472656,-4.30732422],[0.29717773437499996E2,-4.45585938],[0.29403222656250026E2,-4.44931641],[0.29331347656250014E2,-4.09541016],[0.29223242187500006E2,-3.91083984],[0.29211816406250023E2,-3.83378906],[0.29210058593750002E2,-3.36328125],[0.29224414062500017E2,-3.05351563],[0.29016601562499996E2,-2.79960938],[29.0143555,-2.72021484],[0.29063183593750008E2,-2.60253906],[0.29197558593750014E2,-2.6203125],[29.2970703,-2.67304688],[29.3498047,-2.79150391],[29.3902344,-2.80859375],[0.29698046875000017E2,-2.79472656],[0.29868164062500004E2,-2.71640625],[0.29912402343750014E2,-2.54863281],[0.29930175781250004E2,-2.33955078],[0.29973437500000017E2,-2.33710938],[30.1422852,-2.41396484],[30.2337891,-2.34707031],[0.30408496093750014E2,-2.31298828],[30.5536133,-2.40009766]]]}}],"_labels":{"BI":"Burundi"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/BJ.json b/src/api-umbrella/admin-ui/public/maps/BJ.json new file mode 100644 index 000000000..48fa221d4 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/BJ.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"BJ"},"geometry":{"type":"Polygon","coordinates":[[[3.59541016,11.6962891],[3.49052734,11.4992188],[3.48779297,0.11395410156249993E2],[3.71640625,11.0795898],[3.75683594,10.76875],[3.83447266,10.6074219],[3.78378906,10.4358887],[3.68027344,0.10427783203124989E2],[3.60410156,0.10350683593749991E2],[3.5765625,0.10268359374999989E2],[3.64589844,10.1601562],[3.55722656,0.9907324218749991E1],[3.32519531,9.7784668],[3.32949219,0.9667041015624989E1],[3.13613281,0.9451611328124997E1],[3.14804687,0.9320605468749989E1],[3.11044922,0.9188281249999989E1],[3.04492188,0.9083837890624991E1],[2.77480469,0.9048535156249997E1],[2.73291016,8.78251953],[2.72363281,8.44189453],[2.68603516,7.87373047],[2.71933594,7.61625977],[2.78515625,7.47685547],[2.75048828,7.39506836],[2.75673828,7.06791992],[2.72138672,6.98027344],[2.77460938,6.71171875],[2.73564453,6.59570312],[2.70644531,6.36923828],[2.28691406,6.32807617],[1.81816406,6.26064453],[1.62265625,6.21679688],[1.6109375,6.25083008],[1.77792969,6.29462891],[1.74316406,6.42626953],[1.57753906,6.68740234],[1.60292969,6.73808594],[1.58203125,6.87700195],[1.53095703,6.99243164],[1.62470703,6.99731445],[1.62460937,8.27099609],[1.60664063,8.55927734],[1.60019531,9.05004883],[1.56630859,0.9137255859374989E1],[1.42431641,0.9285009765624991E1],[1.38574219,0.9361669921874991E1],[1.34707031,9.5675293],[1.34287109,0.9962939453124987E1],[1.33007812,0.9996972656249993E1],[0.779980469,0.10359570312499997E2],[0.763378906,0.10386669921874997E2],[0.7875,0.10710253906249987E2],[0.821875,0.10752587890624994E2],[0.900488281,0.10993261718749991E2],[0.985058594,0.11079003906249993E2],[1.06230469,11.0582031],[1.14580078,0.11251904296874997E2],[1.31738281,0.11295263671874991E2],[1.42675781,0.11447119140624991E2],[1.56142578,0.11449121093749994E2],[1.6,0.11400634765624998E2],[1.85761719,11.4433594],[1.98037109,0.11418408203124995E2],[2.28720703,11.6912598],[2.38916016,0.11897070312499991E2],[2.41269531,0.11999316406249989E2],[2.36601563,12.2219238],[2.6484375,0.12296777343749993E2],[2.80527344,0.12383837890624989E2],[2.878125,0.12367724609374989E2],[3.14960938,0.12118066406249994E2],[3.35996094,11.8804688],[3.44980469,11.8519531],[3.59541016,11.6962891]]]}}],"_labels":{"BJ":"Benin"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/BL.json b/src/api-umbrella/admin-ui/public/maps/BL.json new file mode 100644 index 000000000..568353b5f --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/BL.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"BL"},"geometry":{"type":"Polygon","coordinates":[[[-62.8319336,0.17876464843749996E2],[-62.8589355,0.17883642578124988E2],[-62.8754395,17.9135742],[-62.8654297,0.17918261718750003E2],[-62.799707,17.9086914],[-62.8181641,0.17885449218749994E2],[-62.8319336,0.17876464843749996E2]]]}}],"_labels":{"BL":"St-Barthélemy"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/BM.json b/src/api-umbrella/admin-ui/public/maps/BM.json new file mode 100644 index 000000000..40981305f --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/BM.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"BM"},"geometry":{"type":"Polygon","coordinates":[[[-64.7302734,32.293457],[-64.8201172,32.2596191],[-64.8628418,32.273877],[-64.7711914,32.3077148],[-64.6683105,32.3819336],[-64.7302734,32.293457]]]}}],"_labels":{"BM":"Bermuda"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/BN.json b/src/api-umbrella/admin-ui/public/maps/BN.json new file mode 100644 index 000000000..13cb13def --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/BN.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"BN"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.11502675781250004E3,4.89970703],[115.140039,4.89975586],[0.11522792968749998E3,4.75058594],[0.11526669921875006E3,4.63398438],[0.11527929687499997E3,4.45634766],[0.11532675781250008E3,4.38076172],[0.11524667968750005E3,4.3472168],[0.11510703125000005E3,4.39042969],[0.11502675781250004E3,4.69135742],[0.11502675781250004E3,4.89970703]]],[[[0.11502675781250004E3,4.89970703],[0.11478417968749997E3,4.75483398],[0.11474667968750006E3,4.71806641],[0.11479013671875005E3,4.46391602],[0.11484023437500005E3,4.39321289],[0.11478349609375002E3,4.28076172],[114.810449,4.26650391],[114.725,4.0965332],[0.11460830078125004E3,4.02397461],[0.11451220703125003E3,4.11357422],[0.11441660156250006E3,4.25585938],[114.322949,4.26279297],[0.11422412109375001E3,4.47788086],[114.063867,4.59267578],[114.299414,4.60717773],[0.11454472656250007E3,4.72456055],[0.11474082031250005E3,4.88100586],[114.99541,5.02236328],[115.047656,5.01635742],[0.11502675781250004E3,4.89970703]]]]}}],"_labels":{"BN":"Brunei"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/BO.json b/src/api-umbrella/admin-ui/public/maps/BO.json new file mode 100644 index 000000000..cfc442faa --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/BO.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"BO"},"geometry":{"type":"Polygon","coordinates":[[[-58.1597656,-0.20164648437500006E2],[-58.1399414,-19.9988281],[-58.1801758,-19.8178711],[-59.0905273,-0.19286230468750006E2],[-60.007373,-19.2975586],[-61.5118164,-0.19606445312499996E2],[-61.7568359,-19.6453125],[-61.9169434,-20.0553711],[-62.2763184,-20.5625],[-62.2766602,-21.0660156],[-0.62628515624999984E2,-22.1839844],[-0.62650976562499984E2,-0.22233691406250003E2],[-0.62744580078125004E2,-22.1598633],[-0.62843359374999984E2,-21.9972656],[-63.8186523,-22.0054687],[-63.976123,-0.22072558593750003E2],[-64.2664062,-0.22603320312500003E2],[-64.325293,-22.8276367],[-64.3739746,-0.22761035156250003E2],[-64.5236328,-22.371582],[-64.6055176,-0.22228808593750003E2],[-64.8430664,-22.1439453],[-65.0578125,-22.1027344],[-65.7710449,-22.0996094],[-66.098584,-0.21835058593750006E2],[-66.220166,-0.21802539062500003E2],[-66.2476074,-21.8304688],[-66.3224609,-22.053125],[-66.3651855,-22.1137695],[-66.6390137,-0.22205371093750003E2],[-66.7117187,-22.2163086],[-66.800293,-22.409668],[-66.9911133,-0.22509863281250006E2],[-67.0554199,-22.6508789],[-67.194873,-22.8216797],[-67.5799316,-0.22891699218750006E2],[-67.7944336,-0.22879492187500006E2],[-67.8794434,-22.8229492],[-67.8817383,-22.4933594],[-67.9503906,-22.3336914],[-67.9539062,-22.2040039],[-67.9883789,-0.22057128906249996E2],[-68.0767578,-21.9828125],[-68.1121582,-0.21753027343750006E2],[-68.1864258,-21.6185547],[-68.1970215,-21.300293],[-68.435498,-20.9482422],[-68.5338379,-0.20923632812500003E2],[-68.5689453,-20.8498047],[-68.5631836,-20.7201172],[-68.4998535,-20.6120117],[-68.745166,-20.4585937],[-68.7592285,-0.20378027343750006E2],[-68.6885742,-0.20310058593749996E2],[-68.7345703,-0.20225195312500002E2],[-68.7274902,-0.20069628906250003E2],[-68.6001953,-20.0449219],[-68.5606934,-19.9670898],[-68.5782715,-0.19856542968750006E2],[-68.698291,-19.7210938],[-68.4628906,-19.4328125],[-68.4919922,-0.19381933593750006E2],[-68.6205566,-0.19296679687500003E2],[-68.759082,-0.19162207031250006E2],[-68.857959,-19.0933594],[-68.9683105,-18.9679688],[-68.9788574,-0.18812988281249996E2],[-69.0268066,-18.65625],[-69.0922852,-18.2824219],[-69.145459,-18.144043],[-69.0939453,-18.0504883],[-69.3133789,-0.17943164062500003E2],[-69.3580078,-17.7716797],[-69.4950195,-17.6195313],[-69.5219238,-0.17388964843750003E2],[-69.6258789,-17.2944336],[-69.6248535,-17.2001953],[-69.5033203,-0.17104785156250003E2],[-69.4383301,-17.0883789],[-69.1998047,-16.768457],[-69.0207031,-16.6421875],[-69.0383789,-16.5426758],[-69.00625,-0.16433691406250006E2],[-68.8578125,-0.16354785156250003E2],[-68.9134766,-16.2619141],[-69.0462402,-16.2176758],[-69.1341797,-0.16221972656250003E2],[-69.2175781,-16.1491211],[-69.3918945,-0.15736914062500007E2],[-69.4185059,-0.15603417968750007E2],[-69.3019043,-0.15399414062499998E2],[-69.1724609,-0.15236621093750001E2],[-69.374707,-0.14962988281250006E2],[-69.3594727,-14.7953125],[-69.2760254,-0.14745898437500003E2],[-69.2349121,-0.14597070312500009E2],[-69.0131348,-0.14377246093750001E2],[-69.0044922,-0.14265039062500009E2],[-68.8803223,-14.1988281],[-68.8916992,-0.14094335937500006E2],[-68.9742676,-0.13975976562500009E2],[-69.0230469,-13.7802734],[-69.0741211,-0.13682812500000011E2],[-68.9834473,-0.13496386718750003E2],[-68.9722656,-13.3823242],[-68.9786133,-12.8800781],[-68.8676758,-0.12755175781250003E2],[-68.759082,-0.12687207031250011E2],[-68.7628906,-0.12607714843750003E2],[-68.6852539,-12.5019531],[-69.5786133,-0.10951757812500006E2],[-69.2285156,-0.10955664062500004E2],[-68.8483398,-0.11011132812500009E2],[-68.7274902,-0.11122460937500009E2],[-68.6226563,-0.11109179687500001E2],[-68.397998,-11.01875],[-68.2666016,-10.9331055],[-68.1586426,-0.10785058593750007E2],[-68.0716797,-10.703125],[-67.9916992,-0.10674414062500004E2],[-67.8350098,-0.10662792968750011E2],[-67.7217773,-0.10683105468749998E2],[-67.5824219,-0.10505957031250006E2],[-67.4169434,-10.3898438],[-67.2804687,-0.10317285156250009E2],[-67.1115234,-0.10268945312500009E2],[-66.7299805,-0.9975488281250009E1],[-66.5753418,-9.89990234],[-66.2635742,-0.9826074218750009E1],[-65.7067871,-0.9768457031250009E1],[-65.6371094,-9.80908203],[-65.5586914,-9.79746094],[-65.4919922,-0.9731738281250003E1],[-65.3961426,-9.71240234],[-65.3093262,-9.87265625],[-65.3245605,-10.0269531],[-65.298584,-0.10146777343750001E2],[-65.3130859,-0.10253027343750006E2],[-65.4369141,-0.10449023437500003E2],[-65.4399902,-0.10586230468750001E2],[-65.3340332,-0.10892773437500011E2],[-65.3237793,-0.11024804687500009E2],[-65.3936035,-11.1842773],[-65.3423828,-0.11315039062500006E2],[-65.3220215,-0.11439160156250011E2],[-65.1753906,-11.646875],[-65.1857422,-11.7495117],[-65.0902832,-11.7412109],[-65.0371094,-0.11829394531250003E2],[-64.9925293,-0.11975195312500006E2],[-64.8298828,-12.0302734],[-64.6116699,-12.2039062],[-64.5134277,-12.2509766],[-64.4205078,-0.12439746093750003E2],[-64.2550293,-0.12483300781250009E2],[-63.9385742,-12.5296875],[-63.7880859,-12.4694336],[-63.5856445,-0.12518945312500009E2],[-63.3466797,-12.6800781],[-63.2497559,-0.12707910156250009E2],[-0.63116796874999984E2,-0.12651660156250003E2],[-0.63067480468749984E2,-0.12669140625000011E2],[-63.0151855,-0.12805566406250009E2],[-62.7654785,-0.12997265625000011E2],[-62.6870605,-0.12994335937500011E2],[-62.352832,-13.1324219],[-62.1760742,-0.13133691406250009E2],[-62.1180176,-13.1597656],[-62.0947754,-0.13241992187500003E2],[-0.61944726562499994E2,-13.40625],[-61.7899414,-0.13525585937500011E2],[-0.61511572265624984E2,-0.13541210937500011E2],[-61.077002,-13.4897461],[-60.914502,-0.13561425781250009E2],[-60.5065918,-13.7898437],[-60.4223633,-13.9379883],[-60.4049805,-0.14019238281250011E2],[-60.4746582,-0.14184765625000011E2],[-60.4601562,-0.14263085937500007E2],[-60.3962402,-14.3328125],[-0.60338037109374994E2,-0.14570507812500011E2],[-60.298877,-0.14618554687500009E2],[-60.2733398,-0.15088769531250009E2],[-60.5832031,-0.15098339843750013E2],[-60.5304687,-0.15143164062500006E2],[-60.242334,-0.15479589843750004E2],[-60.1755859,-0.16269335937500003E2],[-58.5379395,-0.16328222656250006E2],[-0.58345605468749994E2,-16.284375],[-58.3503906,-0.16490820312500006E2],[-0.58470605468749994E2,-0.16650195312500003E2],[-58.4598145,-0.16910742187500002E2],[-58.3959961,-17.2342773],[-57.990918,-17.5128906],[-57.8324707,-17.5121094],[-57.7888672,-17.5730469],[-57.7801758,-17.6717773],[-57.5864746,-18.1222656],[-57.4956543,-0.18214648437500003E2],[-57.5740234,-18.2792969],[-57.7831055,-18.9142578],[-57.7308594,-18.9171875],[-57.7167969,-0.19044042968750006E2],[-57.8003906,-19.080957],[-0.58131494140624994E2,-19.7445313],[-0.57860742187499994E2,-0.19979589843750006E2],[-0.57887597656249994E2,-20.0204102],[-58.0211426,-20.0551758],[-58.09375,-20.1510742],[-58.1597656,-0.20164648437500006E2]]]}}],"_labels":{"BO":"Bolivia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/BQ.json b/src/api-umbrella/admin-ui/public/maps/BQ.json new file mode 100644 index 000000000..b742c8e7f --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/BQ.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"BQ"},"geometry":{"type":"Polygon","coordinates":[[[-68.2058105,0.12144580078124989E2],[-68.2543457,0.12032080078124991E2],[-68.2872559,0.12171728515624991E2],[-68.3692383,12.3019531],[-68.2194824,12.23125],[-68.2058105,0.12144580078124989E2]]]}}],"_labels":{"BQ":"Caribbean Netherlands"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/BR.json b/src/api-umbrella/admin-ui/public/maps/BR.json new file mode 100644 index 000000000..df77c1bcd --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/BR.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"BR"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-48.4858887,-0.27766992187499977E2],[-0.48554589843749994E2,-27.812207],[-48.5421875,-27.5748047],[-0.48464746093749994E2,-0.27436328125000017E2],[-48.3779297,-0.27451464843750003E2],[-48.4095703,-0.27566308593750037E2],[-0.48496777343749955E2,-0.27707031250000014E2],[-48.4858887,-0.27766992187499977E2]]],[[[-0.48584423828124955E2,-0.26401562499999983E2],[-48.6657715,-0.26289648437500006E2],[-48.5397461,-0.26170312500000023E2],[-48.4976074,-26.21875],[-0.48584423828124955E2,-0.26401562499999983E2]]],[[[-0.45260253906249964E2,-0.23889160156249986E2],[-0.45412841796874964E2,-0.23934960937499994E2],[-45.451416,-0.23895605468749977E2],[-45.3023437,-0.23727539062500014E2],[-0.45233105468749926E2,-23.8253906],[-0.45260253906249964E2,-0.23889160156249986E2]]],[[[-44.1292969,-23.1418945],[-44.3200684,-0.23212304687500033E2],[-44.3601562,-23.1720703],[-44.2428711,-0.23074121093750037E2],[-44.1292969,-23.1418945]]],[[[-38.9035645,-0.13473437499999974E2],[-38.9775879,-0.13523535156249963E2],[-0.39022167968749976E2,-0.13445605468749989E2],[-0.38907128906249994E2,-0.13401074218749983E2],[-38.9035645,-0.13473437499999974E2]]],[[[-0.38743847656249955E2,-0.13097070312500037E2],[-0.38786962890625034E2,-13.0550781],[-38.6848633,-0.12974902343750017E2],[-0.38668115234374966E2,-0.12880175781249989E2],[-38.6011719,-12.9925781],[-0.38743847656249955E2,-0.13097070312500037E2]]],[[[-44.4993164,-2.93964844],[-0.44597753906250006E2,-3.03759766],[-44.5690918,-2.78496094],[-44.4814453,-2.71757813],[-44.4993164,-2.93964844]]],[[[-44.8831055,-1.31787109],[-44.9678711,-1.39082031],[-0.45020849609375034E2,-1.37236328],[-0.44978662109374966E2,-1.26728516],[-44.8831055,-1.31787109]]],[[[-51.8325195,-1.43378906],[-0.51938378906249966E2,-1.45263672],[-51.8020508,-1.20253906],[-51.6800293,-1.08613281],[-51.6782715,-0.855078125],[-0.51546044921874966E2,-0.649609375],[-0.51424462890624966E2,-0.565917969],[-51.2540039,-0.54140625],[-51.1607422,-0.666699219],[-51.2763184,-1.02177734],[-51.3101074,-1.02382813],[-51.4651367,-1.21113281],[-51.6376953,-1.34189453],[-51.8325195,-1.43378906]]],[[[-49.6286621,-0.229199219],[-49.4028809,-0.214648438],[-49.3142578,-0.167871094],[-49.1169922,-0.163574219],[-48.5880371,-0.231640625],[-48.3926758,-0.297363281],[-48.3796875,-0.352832031],[-0.48497460937499994E2,-0.664941406],[-48.5666504,-0.684472656],[-0.48539697265624994E2,-0.800976563],[-48.7045898,-1.10664063],[-0.48839697265625006E2,-1.2265625],[-0.48804052734375006E2,-1.32695312],[-0.48928906249999955E2,-1.48232422],[-49.0868652,-1.50507813],[-49.1727051,-1.41259766],[-0.49233984375000034E2,-1.59951172],[-49.3448242,-1.59521484],[-49.5066406,-1.51162109],[-49.5256836,-1.63046875],[-49.5878906,-1.71240234],[-0.49805126953124955E2,-1.79023438],[-50.0657227,-1.70380859],[-50.1092773,-1.74785156],[-50.3384277,-1.75595703],[-50.5076172,-1.78798828],[-50.6020508,-1.69775391],[-50.7597656,-1.24023437],[-50.7294922,-1.12675781],[-0.50595898437499926E2,-1.14746094],[-50.5929199,-1.07294922],[-50.7096191,-1.07773437],[-0.50783300781250006E2,-1.01035156],[-50.7960937,-0.90625],[-0.50771386718749966E2,-0.645410156],[-50.7199219,-0.583398438],[-50.6937012,-0.364453125],[-50.6455078,-0.272851562],[-50.4615723,-0.157421875],[-50.2482422,-0.11640625],[-49.6286621,-0.229199219]]],[[[-50.6528809,-0.131640625],[-0.50926367187500034E2,-0.32734375],[-0.51038085937499936E2,-0.225878906],[-50.9950684,-0.105273438],[-50.8421875,-0.0501953125],[-50.6669922,-0.0580078125],[-50.6528809,-0.131640625]]],[[[-49.4438965,-0.112402344],[-49.7088379,-0.14375],[-0.49830078124999964E2,-0.0938964844],[-0.49712304687499966E2,0.0151367187],[-49.5034668,0.0836914063],[-0.49400488281250034E2,0.0572265625],[-49.3808594,-0.05546875],[-49.4438965,-0.112402344]]],[[[-49.7382324,0.268164063],[-49.6972656,0.215966797],[-0.49838964843750006E2,0.00688476562],[-50.0024902,-0.029296875],[-50.1131348,0.0330078125],[-50.3394531,0.043359375],[-0.50345117187499994E2,0.134472656],[-0.50272656249999976E2,0.231738281],[-50.1279785,0.226513672],[-49.8790039,0.304541016],[-49.7382324,0.268164063]]],[[[-50.426123,0.139257813],[-50.4439453,-0.00766601562],[-0.50623925781249966E2,0.0543945312],[-50.6104492,0.204785156],[-0.50451562500000016E2,0.326904297],[-50.4245605,0.558251953],[-50.3509766,0.581738281],[-50.3322754,0.259033203],[-50.426123,0.139257813]]],[[[-0.50152929687500006E2,0.393017578],[-50.2613281,0.359179688],[-50.2816895,0.516503906],[-0.50251171874999955E2,0.585449219],[-50.0588379,0.638037109],[-50.0400391,0.522802734],[-0.50152929687500006E2,0.393017578]]],[[[-0.50298974609375016E2,1.93852539],[-50.4561035,1.91049805],[-50.5089844,2.02954102],[-50.4910156,2.12861328],[-50.3419922,2.14174805],[-0.50298974609375016E2,1.93852539]]],[[[-0.60241650390624926E2,5.25795898],[-60.142041,5.23881836],[-59.9906738,5.08286133],[-60.0317871,4.74052734],[-0.60148632812499976E2,4.53325195],[-59.8333496,4.47592773],[-59.7032715,4.38110352],[-59.7385742,4.22675781],[-0.59551123046875034E2,3.93354492],[-59.6790039,3.69980469],[-0.59854394531249994E2,3.5875],[-59.8311523,3.34921875],[-0.59873046874999964E2,3.28310547],[-59.9723145,2.99047852],[-0.59994335937499976E2,2.68999023],[-59.8896484,2.36293945],[-59.7552246,2.27412109],[-59.7562012,1.90063477],[-59.6685059,1.84233398],[-59.6666016,1.74628906],[-59.5356934,1.7],[-59.2312012,1.37602539],[-58.9685059,1.30458984],[-58.8625,1.20361328],[-58.6846191,1.28105469],[-0.58511865234374966E2,1.28466797],[-0.58506054687499926E2,1.43867188],[-0.58395800781249925E2,1.48173828],[-58.3406738,1.58754883],[-58.034668,1.52026367],[-57.9828125,1.6484375],[-0.57795654296874964E2,1.7],[-0.57594433593750004E2,1.70410156],[-0.57500439453124955E2,1.77382812],[-57.4126953,1.90893555],[-57.1188965,2.01396484],[-57.0375977,1.93647461],[-56.8367188,1.88125],[-56.4828125,1.94213867],[-56.0199219,1.84223633],[-55.9296387,1.8875],[-55.915332,2.03955078],[-56.1293945,2.29951172],[-56.0203613,2.39277344],[-0.55993505859375006E2,2.49750977],[-55.9359375,2.51660156],[-55.7305664,2.40615234],[-0.55385351562500006E2,2.440625],[-55.1876953,2.54750977],[-55.0703125,2.54833984],[-54.9786621,2.59765625],[-0.54851660156250006E2,2.43955078],[-54.7222168,2.44165039],[-54.6974121,2.35981445],[-54.5150879,2.24545898],[-54.2930664,2.15424805],[-0.54130078124999976E2,2.12104492],[-53.7677734,2.35483398],[-0.53734716796875006E2,2.30854492],[-53.5089844,2.253125],[-53.3344238,2.33974609],[-53.2297852,2.20488281],[-52.9648438,2.18354492],[-52.7006348,2.36367187],[-52.5594727,2.57314453],[-52.5546875,2.64765625],[-52.3566406,3.0515625],[-52.3278809,3.18173828],[-52.1625977,3.36469727],[-51.9995117,3.646875],[-51.990625,3.70200195],[-0.51827490234375006E2,3.86958008],[-51.7670898,3.99267578],[-51.6525391,4.0612793],[-0.51557812499999955E2,4.23378906],[-51.5470703,4.31088867],[-51.4615234,4.31376953],[-51.3270996,4.22475586],[-0.51219921874999955E2,4.09360352],[-0.51076269531250006E2,3.67167969],[-51.0523926,3.28183594],[-50.9941406,3.07753906],[-50.8271973,2.65185547],[-0.50789697265624966E2,2.4777832],[-50.6787598,2.21035156],[-50.7144043,2.1340332],[-50.6086914,2.10410156],[-0.50575878906249926E2,1.99858398],[-0.50458886718749994E2,1.82958984],[-50.1875977,1.78598633],[-49.9571289,1.65986328],[-49.8815918,1.41992188],[-0.49898876953124955E2,1.16298828],[-0.50294433593749964E2,0.835742188],[-0.50462988281250034E2,0.637304687],[-50.581543,0.420507812],[-0.50816357421874976E2,0.172558594],[-50.9670898,0.130273437],[-51.1019531,-0.03125],[-51.2829102,-0.0852050781],[-51.2995605,-0.178808594],[-51.4041504,-0.392675781],[-0.51555029296875034E2,-0.549121094],[-51.7026367,-0.762304687],[-0.51720605468749994E2,-1.01845703],[-51.9216309,-1.18085937],[-0.51934472656249966E2,-1.3203125],[-52.020459,-1.39902344],[-52.229248,-1.3625],[-0.52664160156250034E2,-1.55175781],[-52.3103027,-1.55957031],[-0.52196679687499994E2,-1.64013672],[-51.9475586,-1.58671875],[-51.6462891,-1.39433594],[-0.51531201171874955E2,-1.35410156],[-51.2973633,-1.22353516],[-0.51202343749999926E2,-1.13652344],[-50.8949219,-0.937597656],[-50.8381836,-1.03886719],[-0.50917871093749966E2,-1.11523438],[-50.8445801,-1.22626953],[-50.7861328,-1.48994141],[-50.6789551,-1.64384766],[-0.50690039062500006E2,-1.76171875],[-50.4032227,-2.01552734],[-0.50116601562499994E2,-1.85751953],[-0.49999218749999955E2,-1.83183594],[-49.7195313,-1.92636719],[-49.3136719,-1.73173828],[-49.4601563,-2.19150391],[-49.5069824,-2.28027344],[-0.49553369140624994E2,-2.51992187],[-49.6365234,-2.65693359],[-49.5239258,-2.596875],[-49.4575195,-2.50458984],[-0.49407666015624976E2,-2.34433594],[-49.2110352,-1.91650391],[-48.9913086,-1.82978516],[-48.7100098,-1.48769531],[-48.6,-1.48876953],[-48.4629395,-1.61396484],[-48.4458496,-1.52041016],[-0.48349804687499926E2,-1.48212891],[-48.4514648,-1.43583984],[-48.4777344,-1.32382812],[-48.4085938,-1.22919922],[-48.4498047,-1.14550781],[-48.3064941,-1.03984375],[-48.3175781,-0.960546875],[-48.1150879,-0.7375],[-48.0325684,-0.705078125],[-47.9609375,-0.769628906],[-47.807666,-0.663476562],[-0.47651074218749955E2,-0.71875],[-0.47557324218749955E2,-0.669921875],[-0.47418652343749955E2,-0.765917969],[-0.47460351562499994E2,-0.680957031],[-47.3980957,-0.626660156],[-47.2686035,-0.645410156],[-47.1269043,-0.745410156],[-46.9443359,-0.743359375],[-46.8112305,-0.7796875],[-46.6172363,-0.970605469],[-46.4217285,-1.03007812],[-46.2191406,-1.03125],[-0.46214990234374966E2,-1.09980469],[-0.46044628906249976E2,-1.10302734],[-45.9722656,-1.18740234],[-45.7788086,-1.25078125],[-45.6447754,-1.34785156],[-45.4585937,-1.35625],[-45.3530273,-1.56738281],[-45.3291504,-1.71728516],[-0.45282128906249966E2,-1.69658203],[-0.45182080078124926E2,-1.50703125],[-45.0763672,-1.46640625],[-44.7898437,-1.72480469],[-44.7785156,-1.79882812],[-0.44651269531249966E2,-1.74580078],[-0.44546777343749994E2,-1.94628906],[-0.44537792968749955E2,-2.05273437],[-0.44658642578124955E2,-2.22753906],[-44.7563477,-2.26552734],[-44.6624023,-2.37324219],[-0.44579003906249994E2,-2.23046875],[-0.44435449218749966E2,-2.16806641],[-44.3818359,-2.36552734],[-44.5201172,-2.40546875],[-0.44589013671874994E2,-2.5734375],[-0.44721386718749955E2,-3.14228516],[-44.7230469,-3.20478516],[-44.6226562,-3.13789063],[-44.4375488,-2.94443359],[-44.3081543,-2.53515625],[-0.44228613281250006E2,-2.47128906],[-0.44105566406250006E2,-2.49345703],[-0.44112646484375006E2,-2.59853516],[-0.44225195312500034E2,-2.75498047],[-44.1926758,-2.80957031],[-43.9329102,-2.58349609],[-43.8644531,-2.59541016],[-0.43728613281250034E2,-2.51816406],[-43.455127,-2.50205078],[-43.3800781,-2.37607422],[-43.2296875,-2.38603516],[-42.9367187,-2.46503906],[-42.6758789,-2.58964844],[-42.5935547,-2.66103516],[-42.2496094,-2.79199219],[-0.41999853515625006E2,-2.80605469],[-41.8761719,-2.74658203],[-41.721875,-2.80888672],[-41.6401367,-2.87861328],[-0.41318212890625034E2,-2.93623047],[-41.1945312,-2.88613281],[-0.40875585937500006E2,-2.86962891],[-40.4745605,-2.79560547],[-40.2353516,-2.81318359],[-39.9646973,-2.86152344],[-0.39771826171875034E2,-2.98583984],[-39.6094238,-3.05625],[-39.0143555,-3.39023438],[-38.8959961,-3.50175781],[-0.38686230468749926E2,-3.65371094],[-0.38475781249999955E2,-3.71748047],[-0.38361914062500034E2,-3.87646484],[-38.271875,-3.94804687],[-38.0488281,-4.21640625],[-0.37795654296874964E2,-4.40429688],[-0.37626318359375006E2,-4.59208984],[-37.3014648,-4.71308594],[-37.1746582,-4.91240234],[-36.8611328,-4.96660156],[-36.7473633,-5.05068359],[-0.36590722656249966E2,-5.09755859],[-0.36161767578124994E2,-5.09375],[-0.35979882812499966E2,-5.05439453],[-0.35549414062500006E2,-5.12939453],[-35.3925781,-5.25087891],[-0.35235449218750006E2,-5.56669922],[-35.141748,-5.9171875],[-35.095459,-6.18535156],[-0.34988183593749994E2,-6.39375],[-0.34929589843749966E2,-6.78505859],[-0.34833886718749994E2,-7.02441406],[-34.8054687,-7.28837891],[-34.8577637,-7.53330078],[-0.34878613281249955E2,-7.74746094],[-0.34834667968749976E2,-7.97148437],[-0.34890527343749994E2,-8.0921875],[-34.9666504,-8.40761719],[-35.1577637,-8.93056641],[-35.3408691,-0.9230664062499981E1],[-0.35597070312499966E2,-9.540625],[-35.7639648,-0.9702539062500023E1],[-0.35890820312499926E2,-0.9687011718749957E1],[-35.8477539,-0.9772460937499957E1],[-36.0549805,-0.10075781250000032E2],[-0.36223535156249966E2,-0.10225097656249986E2],[-36.3983398,-0.10484082031249983E2],[-36.7683105,-0.10671679687500017E2],[-36.937793,-0.10820410156250034E2],[-37.0933594,-0.11054785156249991E2],[-37.1828125,-11.068457],[-37.1812012,-11.1875],[-37.3560059,-0.11403906249999977E2],[-37.3217773,-0.11215136718749974E2],[-37.4384766,-11.39375],[-0.37411816406250004E2,-0.11497265624999983E2],[-0.37469335937500006E2,-11.6536133],[-37.6887207,-12.1],[-37.9573242,-0.12475488281249966E2],[-0.38019238281249955E2,-0.12591308593750028E2],[-38.2397461,-0.12844238281249957E2],[-0.38401757812499994E2,-0.12966210937500021E2],[-0.38498925781249966E2,-0.12956640625000034E2],[-38.5249023,-0.12762304687499961E2],[-38.6909668,-0.12623925781250009E2],[-38.7438965,-12.7485352],[-38.8517578,-0.12790136718750034E2],[-38.7637207,-0.12907226562499998E2],[-38.8331543,-0.13032910156250024E2],[-0.38835302734375034E2,-0.13147167968750026E2],[-0.39030908203124994E2,-0.13365136718750021E2],[-39.0893555,-0.13588183593749989E2],[-0.38988623046875006E2,-13.6150391],[-0.39041113281250034E2,-0.13758105468749974E2],[-39.0349121,-0.13991015624999989E2],[-0.39008496093749955E2,-0.14101171874999961E2],[-38.942334,-0.14030664062499994E2],[-39.0595703,-14.6547852],[-0.39013378906249976E2,-0.14935644531249977E2],[-0.38996191406250034E2,-0.15253808593750037E2],[-38.8806152,-0.15864257812499972E2],[-0.38960791015625006E2,-0.16186523437499986E2],[-39.0632324,-16.5043945],[-39.1250488,-16.7635742],[-0.39215234374999966E2,-0.17315820312500023E2],[-39.1540039,-17.7039063],[-39.2783691,-0.17849414062500017E2],[-39.4867676,-0.17990136718749994E2],[-0.39650781249999966E2,-0.18252343750000037E2],[-39.7397949,-0.18639843750000026E2],[-39.7419434,-0.18845996093750003E2],[-39.6998535,-19.277832],[-39.7314453,-19.4539062],[-39.8447266,-0.19649121093750026E2],[-0.40001367187499994E2,-19.7419922],[-40.1416992,-19.9682617],[-40.2027344,-20.2060547],[-40.298877,-0.20292675781250036E2],[-0.40318554687499955E2,-20.4257812],[-40.3959473,-20.5694336],[-40.596582,-20.7837891],[-40.7892578,-0.20906054687500028E2],[-0.40828759765624966E2,-0.21031347656249974E2],[-0.40954541015624926E2,-0.21237890624999963E2],[-41.0472656,-0.21505664062499974E2],[-40.9878418,-0.21920312499999977E2],[-41.000293,-21.9990234],[-0.41122509765624955E2,-22.084375],[-0.41582910156249966E2,-0.22243652343749957E2],[-41.7055176,-22.309668],[-0.41980419921874955E2,-22.5806641],[-41.9861328,-0.22735839843749954E2],[-41.940918,-0.22788281249999983E2],[-0.42042382812499966E2,-0.22947070312500003E2],[-42.5810547,-22.9410156],[-0.42829296874999955E2,-0.22973339843750026E2],[-42.9583008,-22.9670898],[-0.43081152343750006E2,-0.22902539062499983E2],[-0.43086279296875006E2,-0.22723339843749983E2],[-43.2290039,-0.22747656249999963E2],[-43.1936035,-22.9385742],[-43.2241699,-0.22991210937500014E2],[-43.3694824,-0.22998046874999986E2],[-43.5328125,-0.23046386718749986E2],[-0.43898828124999966E2,-23.1014648],[-43.9738281,-23.0573242],[-0.43675976562499955E2,-23.0094727],[-43.7029297,-0.22966308593750014E2],[-43.8661621,-0.22910546875000023E2],[-44.0474609,-0.22944726562499966E2],[-44.147998,-0.23011035156249974E2],[-44.3679199,-0.23004980468749974E2],[-44.6372559,-23.0554687],[-0.44673828124999936E2,-0.23206640625000034E2],[-44.5696777,-23.2740234],[-44.6671875,-23.3351563],[-44.9516602,-0.23381445312500034E2],[-45.2154297,-0.23575585937499966E2],[-45.3253906,-23.599707],[-45.423291,-23.6853516],[-0.45464306640624955E2,-0.23802539062500014E2],[-0.45664648437500006E2,-0.23764843749999983E2],[-0.45843164062499966E2,-23.7636719],[-45.9720703,-0.23795507812500006E2],[-46.6307617,-24.1103516],[-46.8672852,-0.24236328125000014E2],[-47.137207,-24.4931641],[-47.5921875,-0.24781054687499974E2],[-47.8765625,-0.24997460937500005E2],[-0.47989160156249994E2,-0.25035742187499988E2],[-0.47908349609374966E2,-0.25068164062500017E2],[-47.9293945,-25.1682617],[-48.2027344,-0.25416503906250025E2],[-48.1859375,-0.25309863281249974E2],[-0.48402490234374994E2,-25.2720703],[-48.4584961,-25.3107422],[-0.48427636718749966E2,-25.4033203],[-48.476123,-25.4429687],[-0.48643994140625004E2,-0.25436523437500014E2],[-48.7317383,-25.36875],[-48.6921875,-25.4915039],[-48.5070312,-25.5212891],[-48.4011719,-25.5973633],[-48.545166,-0.25815917968750043E2],[-48.6657715,-0.25844335937499963E2],[-0.48576318359374994E2,-0.25935449218749966E2],[-48.6194336,-0.26179394531250008E2],[-48.748291,-26.2686523],[-48.6516113,-0.26406445312499997E2],[-48.6777344,-0.26702929687500003E2],[-48.6156738,-26.878125],[-48.5541504,-0.27195996093749997E2],[-48.5955078,-27.2638672],[-0.48571972656249976E2,-0.27372753906250036E2],[-48.6425781,-0.27557910156250017E2],[-48.6056641,-0.27825195312500014E2],[-48.6208008,-0.28075585937499962E2],[-0.48693212890625006E2,-0.28310156249999963E2],[-0.48797265624999966E2,-0.28442675781249957E2],[-0.48799658203125006E2,-0.28575292968749977E2],[-0.49023583984374966E2,-0.28698632812499962E2],[-49.2712891,-28.8711914],[-0.49499902343750016E2,-29.0753906],[-0.49745996093749966E2,-0.29363183593749994E2],[-0.50033349609374994E2,-0.29800976562500008E2],[-0.50299511718749955E2,-0.30425781250000025E2],[-0.50619970703125034E2,-0.30897656249999965E2],[-50.9213867,-0.31258398437500016E2],[-51.1517578,-31.4803711],[-51.4604004,-0.31702441406249974E2],[-51.7981445,-31.900293],[-0.52039208984374994E2,-0.32114843749999956E2],[-52.0632324,-0.31830371093750017E2],[-51.8931641,-0.31867773437499988E2],[-0.51803417968750004E2,-31.7966797],[-51.6806641,-0.31774609375000026E2],[-0.51446191406249966E2,-0.31557324218749983E2],[-0.51272167968749955E2,-0.31476953125000037E2],[-51.1743164,-31.3397461],[-51.1614258,-31.1188477],[-51.105957,-31.0813477],[-0.50980078125000034E2,-0.31094238281249968E2],[-50.9408203,-0.30903710937499966E2],[-0.50770166015624994E2,-0.30813378906250033E2],[-50.6893066,-30.7041992],[-50.7163086,-0.30425976562499983E2],[-0.50581933593750016E2,-0.30438867187500033E2],[-50.5635254,-0.30253613281250036E2],[-0.50646191406249955E2,-0.30236816406249986E2],[-50.9318848,-0.30374316406250035E2],[-0.51024951171874925E2,-0.30368652343750032E2],[-51.0403809,-0.30260644531249966E2],[-0.51179296875000034E2,-0.30211035156249977E2],[-0.51249853515625034E2,-0.30059960937500026E2],[-51.2980469,-30.0348633],[-51.2817871,-30.2441406],[-51.1572754,-0.30364257812500014E2],[-51.246582,-0.30467578125000017E2],[-0.51287695312500006E2,-30.5912109],[-0.51283056640625034E2,-0.30751562499999963E2],[-51.359082,-0.30674511718749983E2],[-0.51376464843749964E2,-30.846875],[-51.4591309,-0.30912792968750036E2],[-51.4636719,-31.0526367],[-51.7168945,-31.24375],[-51.9724609,-0.31383789062499986E2],[-52.0269531,-0.31599023437500037E2],[-52.1198242,-31.6949219],[-52.1935547,-31.8855469],[-0.52167089843750006E2,-32.0884766],[-52.1273926,-32.1677734],[-52.2746094,-0.32323730468749986E2],[-52.3416504,-32.4397461],[-0.52508496093749926E2,-32.875293],[-0.52652246093749994E2,-0.33137792968750006E2],[-52.9208496,-33.4019531],[-53.3706055,-33.7421875],[-53.5188477,-33.6772461],[-53.5376465,-0.33622851562499974E2],[-0.53531347656250034E2,-33.1708984],[-53.4828613,-0.33068554687500026E2],[-53.3952148,-33.0103516],[-53.1255859,-32.7367188],[-53.23125,-32.6253906],[-53.3627441,-32.5811523],[-0.53601708984374994E2,-32.4030273],[-53.7617188,-32.0568359],[-0.53920605468749926E2,-31.9523438],[-54.2205566,-0.31855175781249997E2],[-54.3699219,-0.31745019531250033E2],[-54.5876465,-31.4851563],[-0.54895996093749964E2,-0.31391210937499974E2],[-55.0360352,-31.2790039],[-0.55091162109375034E2,-31.3139648],[-55.2546387,-0.31225585937499986E2],[-55.3660645,-31.0461914],[-0.55557324218749955E2,-0.30875976562499996E2],[-55.6652344,-30.9249023],[-0.55873681640625016E2,-0.31069628906250017E2],[-56.0046875,-0.31079199218750002E2],[-0.55998974609374955E2,-30.837207],[-56.1761719,-0.30628417968750014E2],[-56.7216797,-0.30186914062500033E2],[-56.8327148,-0.30107226562499974E2],[-57.0327148,-0.30109960937499988E2],[-0.57120507812499994E2,-30.1444336],[-57.2144531,-0.30283398437499983E2],[-57.5522949,-0.30261230468749986E2],[-57.6088867,-0.30187792968750042E2],[-57.4052246,-30.0338867],[-57.2246582,-0.29782128906249994E2],[-57.0893555,-0.29716210937499977E2],[-56.938623,-0.29594824218750034E2],[-56.7724609,-0.29417871093750033E2],[-56.5707031,-0.29138085937499966E2],[-0.56475976562499966E2,-0.29092480468750008E2],[-0.56322363281250034E2,-0.28852441406250037E2],[-0.56225537109374926E2,-0.28737207031250012E2],[-0.56102880859375006E2,-28.6517578],[-0.56019628906250006E2,-28.5246094],[-0.55903662109375006E2,-0.28443261718749994E2],[-55.8588867,-28.3541992],[-55.6872559,-28.3816406],[-55.7254883,-28.2041016],[-55.4766602,-0.28089355468750014E2],[-55.3464844,-27.955957],[-55.1015137,-27.8667969],[-0.55039941406249994E2,-27.7677734],[-54.9102051,-0.27708593749999977E2],[-54.8291016,-27.5505859],[-54.6658691,-0.27526562500000026E2],[-0.54615429687500004E2,-27.4771484],[-54.327002,-0.27423535156249997E2],[-0.54156445312499926E2,-0.27253808593749966E2],[-54.1138184,-27.274707],[-53.8381836,-0.27121093750000014E2],[-53.7172852,-26.8828125],[-53.7533203,-0.26748632812499988E2],[-53.7109375,-0.26351855468749974E2],[-53.6712891,-26.2250977],[-53.8232422,-0.25959570312499988E2],[-53.8911621,-25.6688477],[-54.0123047,-25.5779297],[-54.1545898,-25.5230469],[-54.4439453,-25.625],[-0.54615869140624994E2,-25.5760742],[-54.6105469,-25.4327148],[-54.4731445,-25.2202148],[-0.54412988281249966E2,-0.24867480468749985E2],[-54.3129395,-24.528125],[-54.2810059,-24.3060547],[-54.3182617,-24.128125],[-54.2417969,-0.24047265624999966E2],[-54.4402344,-23.9017578],[-54.6254883,-23.8125],[-54.982666,-0.23974511718749966E2],[-55.1943359,-0.24017480468750023E2],[-0.55366308593750034E2,-23.9910156],[-55.4423828,-23.865332],[-0.55458886718749966E2,-0.23686718750000054E2],[-55.5382812,-23.580957],[-55.518457,-23.415625],[-0.55561425781249994E2,-0.23154296875000025E2],[-55.601123,-23.0947266],[-0.55654052734374936E2,-22.8103516],[-55.6176758,-22.6714844],[-55.7466309,-22.5126953],[-0.55753271484375006E2,-0.22410156250000043E2],[-55.8491699,-0.22307617187500014E2],[-56.1898437,-22.2811523],[-56.3518555,-0.22178613281250023E2],[-56.394873,-22.0926758],[-56.5238281,-0.22102539062499986E2],[-56.6330078,-22.2348633],[-56.9372559,-0.22271289062499985E2],[-0.57238232421875004E2,-0.22195214843750037E2],[-57.3308594,-0.22215039062499983E2],[-57.5689453,-22.1819336],[-0.57721093749999966E2,-22.0992187],[-57.8203125,-0.22142285156249997E2],[-57.9559082,-0.22109179687500003E2],[-57.9856934,-0.22046386718749996E2],[-0.57932763671875016E2,-21.9107422],[-0.57916210937499926E2,-0.21699121093750037E2],[-0.57945996093749955E2,-21.494043],[-0.57873242187499976E2,-0.21355078125000034E2],[-57.8864746,-21.2658203],[-57.8269531,-21.1335938],[-57.8302246,-20.9979492],[-0.57900488281250006E2,-20.8730469],[-57.9151367,-0.20690332031249966E2],[-57.9790527,-20.6573242],[-58.0022461,-0.20465429687499977E2],[-0.58124609375000034E2,-0.20293457031250014E2],[-58.1597656,-0.20164648437499977E2],[-58.0211426,-0.20055175781249968E2],[-0.57860742187499994E2,-19.9795898],[-0.58131494140624994E2,-19.7445313],[-57.8003906,-19.080957],[-0.57716796874999964E2,-0.19044042968750034E2],[-57.7308594,-18.9171875],[-57.7831055,-18.9142578],[-57.5740234,-0.18279296875000014E2],[-57.4956543,-0.18214648437499985E2],[-57.5864746,-18.1222656],[-57.7801758,-17.6717773],[-0.57832470703125004E2,-0.17512109375000037E2],[-0.57990917968749955E2,-0.17512890625000026E2],[-0.58395996093749964E2,-0.17234277343750023E2],[-0.58459814453125006E2,-0.16910742187500002E2],[-0.58470605468749994E2,-0.16650195312500045E2],[-58.3503906,-16.4908203],[-0.58345605468750016E2,-16.284375],[-58.5379395,-16.3282227],[-60.1755859,-16.2693359],[-60.242334,-0.15479589843750032E2],[-60.5832031,-0.15098339843749983E2],[-60.2733398,-0.15088769531249993E2],[-60.298877,-0.14618554687500037E2],[-60.3380371,-0.14570507812500011E2],[-60.3962402,-0.14332812499999987E2],[-60.4746582,-0.14184765625000026E2],[-60.4049805,-0.14019238281249969E2],[-60.5065918,-13.7898437],[-60.914502,-0.13561425781249966E2],[-61.077002,-0.13489746093750014E2],[-61.5115723,-0.13541210937500011E2],[-0.61789941406249966E2,-0.13525585937500026E2],[-61.9447266,-13.40625],[-62.1760742,-0.13133691406250037E2],[-62.352832,-0.13132421874999961E2],[-62.6870605,-0.12994335937499981E2],[-62.7654785,-12.9972656],[-63.0151855,-12.8055664],[-63.0674805,-0.12669140624999983E2],[-63.2497559,-12.7079102],[-63.3466797,-12.6800781],[-0.63585644531249955E2,-0.12518945312500037E2],[-63.7880859,-0.12469433593749983E2],[-63.9385742,-12.5296875],[-64.2550293,-0.12483300781249966E2],[-64.4205078,-0.12439746093749974E2],[-64.5134277,-0.12250976562499972E2],[-64.6116699,-0.12203906249999973E2],[-64.8298828,-0.12030273437499957E2],[-64.9925293,-0.11975195312500006E2],[-65.0902832,-0.11741210937499943E2],[-65.1857422,-0.11749511718749957E2],[-65.1753906,-11.646875],[-65.3220215,-0.11439160156249969E2],[-65.3936035,-0.11184277343749997E2],[-65.3237793,-0.11024804687500009E2],[-65.3340332,-0.10892773437500026E2],[-65.4399902,-0.10586230468750017E2],[-65.4369141,-0.10449023437499946E2],[-65.3130859,-10.2530273],[-65.3093262,-9.87265625],[-65.3961426,-9.71240234],[-65.5586914,-0.9797460937499991E1],[-65.7067871,-0.9768457031250037E1],[-66.2635742,-9.82607422],[-66.5753418,-9.89990234],[-66.7299805,-0.9975488281250023E1],[-67.1115234,-0.10268945312500037E2],[-67.2804687,-0.10317285156250023E2],[-67.5824219,-0.10505957031250006E2],[-67.7217773,-0.10683105468749943E2],[-67.8350098,-0.10662792968749983E2],[-68.0716797,-10.703125],[-68.2666016,-0.10933105468749986E2],[-68.397998,-11.01875],[-68.6226563,-0.11109179687499974E2],[-68.7274902,-0.11122460937500009E2],[-68.8483398,-11.0111328],[-69.2285156,-0.10955664062499963E2],[-69.6740234,-10.9541016],[-69.9603516,-0.10929882812500038E2],[-70.2200684,-11.0476562],[-70.3922852,-0.11058593749999972E2],[-70.533252,-10.946875],[-70.642334,-0.11010253906249984E2],[-70.6369141,-9.82373047],[-70.5672363,-9.70458984],[-70.5922363,-0.9543457031250027E1],[-70.5411133,-9.4375],[-70.6369141,-0.9478222656249969E1],[-70.8845215,-9.66904297],[-70.970752,-9.76572266],[-71.1152832,-0.9852441406250009E1],[-71.2379395,-0.9966015624999955E1],[-71.6080078,-0.10006054687500038E2],[-72.1815918,-0.10003710937500003E2],[-72.1728516,-9.84404297],[-72.2599609,-9.77431641],[-72.3180664,-0.9556640624999957E1],[-72.3790527,-9.51015625],[-72.8142578,-0.9410351562499995E1],[-73.2094238,-9.41142578],[-72.9703613,-0.9120117187500027E1],[-72.9740234,-8.99316406],[-73.203125,-8.71933594],[-73.3024414,-8.65400391],[-73.3604004,-8.47929688],[-73.5491211,-8.34580078],[-73.6101074,-8.14541016],[-73.682666,-8.02060547],[-73.7755859,-7.93642578],[-73.7204102,-7.78251953],[-73.8220703,-7.73896484],[-74.0020508,-7.55605469],[-73.9584961,-7.50664063],[-73.9643066,-7.37890625],[-73.7204102,-7.30927734],[-73.8046387,-7.07988281],[-73.7581055,-6.90576172],[-73.4999023,-6.67949219],[-73.3254883,-6.57470703],[-73.240332,-6.5640625],[-73.1373535,-6.46582031],[-73.1353516,-6.34433594],[-73.2355469,-6.0984375],[-73.1628906,-5.93339844],[-72.9798828,-5.63486328],[-72.8870605,-5.12275391],[-72.6987305,-5.0671875],[-72.4689941,-4.90126953],[-72.352832,-4.78603516],[-72.2567871,-4.74892578],[-71.8447266,-4.50439453],[-71.5213379,-4.46972656],[-71.2350098,-4.38818359],[-70.9736816,-4.35048828],[-70.7995117,-4.17333984],[-70.4046387,-4.15009766],[-70.2391602,-4.30117187],[-70.1288086,-4.28662109],[-70.0533203,-4.33310547],[-69.9720215,-4.30117187],[-69.9481934,-4.20058594],[-69.4002441,-1.19492187],[-69.4487305,-0.998730469],[-69.5435547,-0.9171875],[-69.6207031,-0.720898438],[-69.592041,-0.639355469],[-69.6674805,-0.482421875],[-69.7474609,-0.452539062],[-69.9227539,-0.317480469],[-70.0705078,-0.138867188],[-70.0539062,0.578613281],[-69.8071289,0.607470703],[-69.4721191,0.729931641],[-69.2830078,0.627246094],[-69.1740723,0.635351563],[-69.1632324,0.8640625],[-69.2586914,1.01538086],[-69.361377,1.06401367],[-69.6208984,1.07324219],[-69.8521484,1.05952148],[-69.848584,1.70874023],[-69.58125,1.77075195],[-69.3197266,1.72124023],[-68.1765625,1.71982422],[-68.255957,1.84550781],[-68.1937988,1.98701172],[-68.1302734,1.95576172],[-67.9897461,1.75253906],[-67.8150879,1.79008789],[-67.6092285,2.03505859],[-67.4996582,2.10791016],[-67.3519531,2.08583984],[-67.1192383,1.70361328],[-67.0901367,1.61557617],[-67.0936523,1.21000977],[-67.0652344,1.17836914],[-66.8760254,1.22304688],[-66.429248,0.821679687],[-66.3016602,0.751953125],[-66.0600586,0.785351563],[-65.8113281,0.937255859],[-65.6814453,0.983447266],[-65.5660156,0.926074219],[-65.522998,0.843408203],[-65.5560547,0.687988281],[-65.4733887,0.691259766],[-65.3608398,0.868652344],[-65.2639648,0.931884766],[-65.1037598,1.10810547],[-64.8179688,1.25712891],[-64.731543,1.25332031],[-64.4860352,1.4527832],[-64.3041992,1.45527344],[-64.1148438,1.61928711],[-64.0354492,1.90444336],[-63.8444824,1.97670898],[-63.5702637,2.12050781],[-0.63463916015624925E2,2.13603516],[-0.63393945312499994E2,2.22250977],[-0.63389257812500006E2,2.41191406],[-0.63924169921875006E2,2.45244141],[-64.0488281,2.52509766],[-64.0090332,2.671875],[-64.037793,2.80151367],[-64.1435547,3.00488281],[-64.2188477,3.2046875],[-64.2210937,3.58740234],[-64.275293,3.66269531],[-64.5679199,3.89980469],[-64.8178711,4.23227539],[-64.7222656,4.27441406],[-64.5763672,4.13989258],[-64.2556641,4.14033203],[-64.1217285,4.06699219],[-64.0214844,3.92910156],[-63.6529297,3.94082031],[-63.5268066,3.89370117],[-63.3797852,3.94287109],[-0.63294726562499925E2,3.92226562],[-62.9686523,3.59394531],[-62.8569824,3.59345703],[-62.7645996,3.67294922],[-62.7399414,3.94033203],[-0.62712109374999976E2,4.01791992],[-62.6097656,4.04228516],[-62.4106445,4.15673828],[-62.153125,4.09838867],[-61.554248,4.28779297],[-61.4793945,4.40224609],[-0.61367529296874984E2,4.43300781],[-61.2800781,4.51689453],[-0.61102441406249966E2,4.5046875],[-0.61002832031250016E2,4.53525391],[-60.90625,4.68681641],[-0.60741748046874925E2,4.77412109],[-60.6275879,4.8925293],[-60.6044922,4.99458008],[-0.60671972656250034E2,5.16435547],[-0.60742138671874926E2,5.20205078],[-0.60335205078124964E2,5.19931641],[-0.60241650390624926E2,5.25795898]]]]}}],"_labels":{"BR":"Brazil"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/BS.json b/src/api-umbrella/admin-ui/public/maps/BS.json new file mode 100644 index 000000000..9905a9f39 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/BS.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"BS"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.0268555,21.1923828],[-73.1645508,0.20979150390625023E2],[-73.4007813,0.20943896484375045E2],[-73.6610352,20.9374023],[-73.6803711,0.21103320312500017E2],[-73.5230957,0.21190820312499966E2],[-73.4245117,0.21201757812499977E2],[-73.2353516,0.21154492187500036E2],[-73.1373047,0.21204785156249983E2],[-73.0584961,0.21313378906249994E2],[-73.0268555,21.1923828]]],[[[-72.9161133,0.21506689453125034E2],[-73.0493164,0.21457617187499977E2],[-72.9947754,0.21561621093750034E2],[-72.9161133,0.21506689453125034E2]]],[[[-73.0410156,0.22429052734375002E2],[-72.8307617,0.22385595703125034E2],[-72.7838867,22.290625],[-72.8891602,0.22360253906250023E2],[-73.1619141,0.22380712890625006E2],[-73.1273926,22.4553223],[-73.0410156,0.22429052734375002E2]]],[[[-74.2067383,0.22213769531250023E2],[-74.2613281,22.2355469],[-73.9359863,22.4777344],[-73.9145508,0.22568017578124962E2],[-73.9763672,0.22635058593750042E2],[-73.9541992,22.7155273],[-73.8774902,0.22680761718750034E2],[-73.8365234,0.22538427734374977E2],[-73.9746094,0.22361181640625034E2],[-74.2067383,0.22213769531250023E2]]],[[[-74.0575195,0.22723486328125034E2],[-74.098584,0.22665429687500023E2],[-74.2746094,22.7116699],[-74.3070312,22.8395996],[-74.0575195,0.22723486328125034E2]]],[[[-74.8404785,0.22894335937500017E2],[-74.9733398,0.23068554687499983E2],[-75.2233398,0.23165332031250074E2],[-75.1411133,0.23204638671874985E2],[-75.1575684,0.23336376953125008E2],[-75.3098145,0.23589843750000057E2],[-75.3159668,0.23668359374999962E2],[-75.2166016,0.23546777343749966E2],[-75.1087891,23.3328125],[-75.064209,0.23150195312500014E2],[-74.9371094,23.0881348],[-74.8456055,0.22999902343750023E2],[-74.8404785,0.22894335937500017E2]]],[[[-75.6645508,23.4501465],[-75.7810059,23.4706543],[-75.955957,0.23592285156249996E2],[-75.9486328,0.23647412109374955E2],[-75.754248,0.23489990234375057E2],[-75.6645508,23.4501465]]],[[[-74.4294434,0.24068066406249955E2],[-74.5086914,23.9597168],[-74.5509277,23.9689453],[-74.5269043,0.24105078125000034E2],[-74.4294434,0.24068066406249955E2]]],[[[-77.6577148,24.2494629],[-77.7552734,0.24163476562500023E2],[-77.683252,0.24118457031250017E2],[-77.6153809,0.24216357421875042E2],[-77.5615234,0.24136816406250006E2],[-77.51875,23.8694336],[-77.5737305,23.7391602],[-77.7712891,0.23752539062499977E2],[-77.8522461,0.24040380859375006E2],[-77.9999023,0.24219824218750063E2],[-77.7014648,0.24287548828124983E2],[-77.6577148,24.2494629]]],[[[-75.3083984,24.2],[-75.3017578,0.24149169921875057E2],[-75.5032227,24.1390625],[-75.4089355,0.24265771484374994E2],[-75.4938965,0.24330419921875034E2],[-75.6610352,24.5898438],[-75.7439941,24.6546875],[-75.6535156,24.6808594],[-75.5181641,0.24427343750000063E2],[-75.3083984,24.2]]],[[[-77.3475586,25.0138672],[-77.460498,24.9931152],[-77.5619141,25.0300293],[-77.4512695,0.25080712890625023E2],[-77.3291016,0.25083007812500053E2],[-77.3475586,25.0138672]]],[[[-77.7438477,24.7074219],[-77.7452148,0.24463476562500034E2],[-78.0449219,24.2874512],[-78.1916016,0.24466064453125025E2],[-78.3665039,0.24544189453125057E2],[-78.4353027,24.6275879],[-78.2427246,24.6538086],[-78.2988281,0.24753906250000053E2],[-78.184082,0.24917089843750002E2],[-78.1593262,25.0223633],[-78.211377,0.25191259765624977E2],[-78.162793,25.2023438],[-77.975293,0.25084814453125063E2],[-77.9733887,0.25004785156249994E2],[-77.8401367,0.24794384765624955E2],[-77.7438477,24.7074219]]],[[[-76.6488281,0.25487402343750006E2],[-76.4842285,25.3746094],[-76.3437988,25.3320312],[-76.1266113,25.1405273],[-76.1695313,24.6494141],[-76.3199707,24.8176758],[-76.2137695,0.24822460937499983E2],[-76.1525391,0.25025976562500063E2],[-76.1604004,0.25119335937499983E2],[-76.3692871,0.25312597656250002E2],[-76.4999023,0.25341552734375057E2],[-76.6207031,0.25431640625000025E2],[-76.7806641,0.25426855468750006E2],[-76.7108398,0.25564892578124983E2],[-76.6488281,0.25487402343750006E2]]],[[[-78.4928711,0.26729052734375014E2],[-78.3717285,0.26697949218749983E2],[-78.0886719,26.7143066],[-77.9439453,0.26744238281250006E2],[-77.926123,0.26663378906250045E2],[-78.2338867,0.26637353515624994E2],[-78.6709473,26.506543],[-78.7992187,0.26528466796874994E2],[-78.9856445,0.26689501953125045E2],[-78.7980469,26.5824219],[-78.633252,0.26659179687499996E2],[-78.5971191,0.26797949218750006E2],[-78.4928711,0.26729052734375014E2]]],[[[-77.2256348,0.25904199218750023E2],[-77.4031738,26.024707],[-77.2467773,0.26156347656250034E2],[-77.2477539,26.2890625],[-77.2060547,26.4889648],[-77.5105957,0.26845996093750045E2],[-77.7959961,0.26901269531250023E2],[-77.94375,26.9035645],[-77.8625488,0.26940087890625023E2],[-77.5338867,0.26903417968750002E2],[-77.2571777,0.26638818359375023E2],[-77.0663574,0.26530175781249994E2],[-77.0382812,0.26333447265624983E2],[-77.1672852,0.26240332031250006E2],[-77.1910156,0.25955468749999966E2],[-77.2256348,0.25904199218750023E2]]]]}}],"_labels":{"BS":"Bahamas"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/BT.json b/src/api-umbrella/admin-ui/public/maps/BT.json new file mode 100644 index 000000000..4254a0145 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/BT.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"BT"},"geometry":{"type":"Polygon","coordinates":[[[0.9163193359375003E2,0.27759960937499997E2],[91.5792969,27.6114258],[0.9159472656249999E2,0.27557666015624996E2],[91.7430664,0.27442529296874994E2],[0.9199082031250003E2,0.27450195312499996E2],[92.0833984,27.290625],[0.9199228515625003E2,0.27099902343749996E2],[0.9206816406249999E2,26.9751953],[0.9207343750000001E2,26.9148437],[0.9199833984374999E2,26.8549805],[0.9184208984374997E2,0.26852978515624994E2],[0.9167158203125001E2,26.802002],[91.5175781,0.26807324218749994E2],[91.4267578,0.26867089843749994E2],[91.2865234,0.26789941406249994E2],[0.9113388671875003E2,0.26803417968749997E2],[90.7396484,0.26771679687499997E2],[0.9055986328124999E2,0.26796582031249994E2],[0.9034589843750001E2,0.26890332031249994E2],[90.2060547,0.26847509765624995E2],[90.1229492,0.26754589843749997E2],[89.7638672,26.7015625],[89.6099609,0.26719433593749994E2],[89.6091797,26.762207],[89.3321289,26.8486328],[89.1482422,0.26816162109374996E2],[88.8576172,0.26961474609374992E2],[88.8351563,27.0655762],[88.7387695,0.27175585937499996E2],[88.7603516,27.2181152],[88.8816406,0.27297460937499995E2],[88.9475586,0.27464013671874994E2],[89.1023437,27.5925781],[89.1604492,0.27711279296874995E2],[89.5369141,28.1074219],[89.7498047,0.28188183593749997E2],[89.8168945,0.28256298828124997E2],[89.9810547,0.28311181640624994E2],[90.1044922,0.28302050781249996E2],[0.9034824218750003E2,0.28243945312499996E2],[0.9035273437500001E2,0.28080224609374994E2],[90.7157227,0.28071728515624997E2],[90.9066406,0.28026513671874994E2],[0.9102080078124999E2,0.27970068359374995E2],[91.0777344,0.27974462890624995E2],[0.9122587890624999E2,0.28071240234374997E2],[0.9127304687500003E2,28.0783691],[91.3675781,0.28021630859374994E2],[91.6055664,0.27951708984374992E2],[0.9164189453124997E2,0.27923242187499994E2],[0.9163193359375003E2,0.27759960937499997E2]]]}}],"_labels":{"BT":"Bhutan"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/BW.json b/src/api-umbrella/admin-ui/public/maps/BW.json new file mode 100644 index 000000000..d614b8ee4 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/BW.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"BW"},"geometry":{"type":"Polygon","coordinates":[[[25.2587891,-0.17793554687500006E2],[0.25224023437500023E2,-17.9152344],[25.2824219,-18.0412109],[25.384375,-18.1419922],[0.25489257812499996E2,-18.3512695],[25.5583008,-18.4417969],[25.7612305,-18.6492187],[0.25811914062500023E2,-18.7970703],[0.25939355468750023E2,-18.9386719],[25.9506836,-19.0817383],[0.26168066406250002E2,-19.5382813],[0.26241015625000017E2,-19.5693359],[0.26678222656249996E2,-19.8927734],[27.0917969,-20.0541992],[0.27221484375000017E2,-0.20145800781250003E2],[0.27256738281250023E2,-20.2320312],[27.2807617,-20.4787109],[27.6246094,-20.4835938],[27.6996094,-20.5306641],[27.7042969,-20.7664062],[27.6694336,-21.0642578],[0.27844140625000023E2,-0.21261523437500003E2],[27.9746094,-21.5067383],[28.0456055,-21.5730469],[0.28532031250000017E2,-21.6512695],[28.7477539,-0.21707617187500006E2],[29.0373047,-21.8113281],[29.0158203,-21.9399414],[0.29042382812500023E2,-22.0183594],[0.29106835937500023E2,-0.22065722656250003E2],[0.29237207031250023E2,-22.0794922],[29.3648437,-0.22193945312500006E2],[29.1298828,-22.2132813],[0.29013476562500017E2,-0.22278417968750006E2],[0.28945800781249996E2,-0.22395117187500006E2],[28.8398438,-22.4808594],[0.28542871093750023E2,-22.5729492],[28.3817383,-22.5933594],[28.2101563,-22.6936523],[0.28027929687500006E2,-22.8737305],[0.27890527343750023E2,-23.0739258],[27.7685547,-23.1489258],[0.27758300781249996E2,-0.23196777343749996E2],[0.27643847656250017E2,-23.2176758],[27.4987305,-23.3683594],[0.27399218750000014E2,-23.3835937],[27.2412109,-0.23490039062500003E2],[0.27146386718750023E2,-23.5244141],[26.9870117,-23.7045898],[0.26835058593750002E2,-0.24240820312500006E2],[0.26617773437500006E2,-24.3955078],[0.26451757812500006E2,-24.5827148],[26.397168,-0.24613574218750003E2],[26.1308594,-24.6714844],[25.9121094,-0.24747460937500005E2],[0.25852441406250023E2,-24.9352539],[0.25583789062500014E2,-25.60625],[0.25443652343750017E2,-25.7144531],[0.25213378906249996E2,-25.75625],[24.9989258,-0.25754003906250006E2],[0.24869238281250006E2,-25.8134766],[0.24748144531250002E2,-25.8173828],[24.3305664,-25.7428711],[24.1929687,-0.25632910156250006E2],[0.23969531250000017E2,-0.25626074218750006E2],[23.89375,-0.25600878906250003E2],[0.23670703125000017E2,-25.4339844],[23.5214844,-25.3444336],[0.23266015625000023E2,-25.2666016],[0.23022070312500006E2,-25.3241211],[0.22878808593750023E2,-25.4579102],[22.6402344,-0.26071191406250005E2],[0.22548632812500017E2,-26.178418],[0.22217578125000017E2,-26.3888672],[0.22090917968750006E2,-0.26580175781250006E2],[22.0109375,-0.26635839843750006E2],[21.8332031,-0.26678320312500006E2],[0.21738085937500017E2,-26.8068359],[0.21646289062500017E2,-26.8541992],[0.21454980468750023E2,-26.8328125],[0.21070996093750008E2,-26.8517578],[0.20870898437500017E2,-26.8087891],[20.7398437,-26.8488281],[0.20641406250000017E2,-26.7421875],[0.20619921875000017E2,-26.5808594],[0.20626757812500017E2,-26.4438477],[0.20815039062500006E2,-26.1649414],[20.7931641,-25.915625],[0.20609277343750023E2,-0.25491210937499996E2],[20.4306641,-0.25147070312500006E2],[20.3452148,-0.25029882812500006E2],[19.9804688,-24.7767578],[0.19977343750000017E2,-22.0001953],[0.20970996093750017E2,-22.0001953],[20.9794922,-21.9619141],[20.9741211,-18.3188477],[0.21232519531250002E2,-18.3068359],[22.0114258,-18.1986328],[0.22460058593750002E2,-18.1157227],[0.23099902343750017E2,-0.18009570312500003E2],[0.23219335937500006E2,-17.999707],[0.23298632812500017E2,-18.0273438],[0.23459765625000017E2,-0.18231054687500006E2],[23.5805664,-0.18452929687500003E2],[0.23700488281250017E2,-18.4243164],[0.23898339843750023E2,-18.2291992],[0.24129296875000023E2,-0.18077539062500005E2],[24.3589844,-17.9782227],[0.24530566406250017E2,-18.0527344],[24.7921875,-17.8646484],[24.909082,-0.17821386718750006E2],[25.2587891,-0.17793554687500006E2]]]}}],"_labels":{"BW":"Botswana"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/BY.json b/src/api-umbrella/admin-ui/public/maps/BY.json new file mode 100644 index 000000000..207c19592 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/BY.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"BY"},"geometry":{"type":"Polygon","coordinates":[[[28.1479492,56.1429199],[0.28284277343750006E2,56.0559082],[28.3920898,56.0867187],[28.5639648,56.0919922],[28.6369141,56.0617676],[0.28740820312500002E2,0.55955371093749996E2],[0.28794726562500014E2,55.9425781],[28.9474609,56.0020996],[0.29087402343749996E2,56.0211426],[29.375,55.9387207],[29.3979492,55.8810547],[0.29353417968750023E2,55.784375],[0.29482226562500014E2,55.6845703],[29.6845703,55.7697266],[29.7441406,55.7704102],[0.29937011718749996E2,0.55845263671874996E2],[30.2335938,55.8452148],[30.45625,55.7868164],[0.30625585937500006E2,55.6662598],[0.30906835937500006E2,55.5700195],[0.30900585937500015E2,55.3974121],[30.8144531,55.2787109],[30.9588867,55.1375977],[30.9777344,55.0504883],[0.30829882812500014E2,54.9149902],[30.7988281,0.54783251953124996E2],[0.31121289062500008E2,0.54648486328124996E2],[0.31154882812500006E2,54.6109375],[0.31074804687500006E2,54.4917969],[31.1847656,54.4529785],[31.2991211,54.2916992],[0.31403613281250017E2,54.1959473],[0.31791992187499996E2,54.0559082],[0.31837792968750023E2,54.0007813],[0.31754199218750017E2,53.8104492],[32.2003906,53.78125],[32.4501953,53.6929199],[32.4251953,53.6172852],[0.32469628906250016E2,53.5469727],[32.6857422,53.4481445],[32.7042969,53.3363281],[0.32469335937500006E2,53.2703125],[32.4262695,0.53210595703124994E2],[32.1419922,53.0911621],[0.31849707031250006E2,53.1062012],[31.7474609,53.1841797],[0.31668261718750017E2,53.2009277],[0.31417871093750026E2,53.1960449],[31.2587891,53.0166992],[31.5351562,52.7982422],[31.5634766,52.7314453],[0.31526171875000017E2,52.6330078],[31.5855469,52.5324707],[31.5773438,0.52312304687499996E2],[31.690625,52.2206543],[31.7633789,52.1010742],[0.31345996093750014E2,52.1053711],[31.2179688,52.0502441],[31.0792969,52.0769531],[0.30980664062500008E2,0.52046191406249996E2],[30.7552734,51.895166],[0.30667285156250017E2,51.8141113],[0.30533007812500017E2,0.51596337890624994E2],[0.30602343750000017E2,0.51471240234374996E2],[0.30632519531250008E2,51.3554199],[30.5445312,0.51265039062499994E2],[0.30333398437500026E2,51.3255371],[0.30308984375000023E2,51.3996094],[0.30160742187500002E2,51.4778809],[29.553125,51.4345703],[0.29346484375000014E2,51.3825684],[29.2988281,51.4130371],[0.29135644531250023E2,51.6172852],[0.29060742187500008E2,51.6254395],[28.9777344,51.5717773],[0.28793261718750017E2,51.5103516],[28.73125,0.51433398437499996E2],[0.28647753906250017E2,51.456543],[0.28599023437500023E2,0.51542626953124994E2],[28.1837891,51.6078613],[28.0107422,51.5597656],[27.8585938,51.5923828],[0.27741308593750006E2,0.51482568359374994E2],[0.27676757812499996E2,51.4899414],[0.27689746093750017E2,0.51572412109374994E2],[0.27601367187500017E2,0.51601611328124996E2],[27.3476562,51.5941406],[0.27270117187500006E2,0.51613574218749996E2],[0.27141992187500023E2,51.7520508],[26.952832,51.7540039],[0.26453417968750017E2,51.8134277],[0.25925292968749996E2,51.9135254],[25.2671875,51.9377441],[0.25066699218750017E2,51.9305176],[24.8664063,51.8991211],[0.24361914062500006E2,51.8675293],[0.24280078125000017E2,0.51774707031249996E2],[0.24126855468750023E2,51.6646484],[23.9511719,51.5850586],[23.8642578,51.6239746],[0.23706835937500017E2,51.6413086],[23.6085938,51.610498],[0.23605273437500017E2,51.5179199],[0.23539648437500006E2,51.6188965],[23.5448242,0.51710253906249996E2],[23.6256836,51.8093262],[23.6074219,0.51879785156249994E2],[0.23652441406250006E2,52.0403809],[0.23597949218750017E2,0.52103076171874996E2],[0.23458398437500023E2,52.1695312],[23.1969727,52.2569336],[23.2041016,52.3378906],[0.23410937500000017E2,52.5162109],[0.23479589843750006E2,52.5515625],[0.23844726562499996E2,52.664209],[0.23915429687500023E2,52.7702637],[0.23887109375000023E2,53.0275391],[23.7892578,53.2709473],[0.23598925781250017E2,53.5992187],[0.23484667968750017E2,53.9397949],[0.23733691406250017E2,53.9122559],[0.23872558593749996E2,0.53935693359374994E2],[0.24191308593750023E2,53.9504395],[24.3179687,53.8929688],[24.6207031,53.979834],[0.24768164062500006E2,0.53974658203124996E2],[24.8256836,54.1189941],[0.24869531250000023E2,54.145166],[25.0460938,54.1330566],[0.25179492187500014E2,54.2142578],[25.3706055,54.2512207],[0.25461132812500008E2,0.54292773437499996E2],[25.5273438,0.54215136718749996E2],[0.25497363281250017E2,54.1752441],[0.25573046875000014E2,54.1398926],[25.7492188,54.1569824],[0.25765039062500023E2,54.2211914],[25.7025391,54.2929688],[0.25557519531250023E2,54.3106934],[25.6203125,54.4604004],[25.7248047,54.5642578],[0.25722460937500017E2,54.7178711],[0.25859277343750023E2,54.9192871],[26.0929688,54.9623047],[0.26175195312500023E2,55.0032715],[0.26291796875000014E2,55.1395996],[26.6011719,0.55130175781249996E2],[26.6484375,55.2041992],[0.26775683593750017E2,55.2730957],[26.68125,0.55306445312499996E2],[26.4953125,55.3180176],[0.26457617187500006E2,55.3424805],[0.26566601562500008E2,55.5464844],[0.26593554687500017E2,0.55667529296874996E2],[26.8224609,55.7092285],[0.26953027343750023E2,55.8129395],[0.27052539062500017E2,55.8305664],[0.27309179687500006E2,55.8039062],[0.27576757812500006E2,55.7987793],[0.27642285156250008E2,55.9117187],[0.27896289062500017E2,56.0761719],[0.28032031250000017E2,56.1333008],[28.1479492,56.1429199]]]}}],"_labels":{"BY":"Belarus"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/BZ.json b/src/api-umbrella/admin-ui/public/maps/BZ.json new file mode 100644 index 000000000..fc2210fdb --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/BZ.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"BZ"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.8529297,17.4228516],[-87.9299805,0.17283007812500017E2],[-87.902832,17.4264648],[-87.788623,0.17524218750000042E2],[-87.8529297,17.4228516]]],[[[-87.9505859,0.17924951171874966E2],[-87.9980957,0.17906347656250006E2],[-87.8983398,0.18154931640625023E2],[-87.8485352,0.18140380859374968E2],[-87.9505859,0.17924951171874966E2]]],[[[-88.3492676,0.18358837890624983E2],[-88.1302734,0.18350732421875023E2],[-88.0852539,0.18226123046875045E2],[-88.0972168,0.18121630859375074E2],[-88.2074707,0.17846093749999966E2],[-88.2717285,17.6098633],[-88.2034668,17.5166016],[-88.2671875,0.17392578125000057E2],[-88.2939941,17.1921387],[-88.2618164,0.16963037109375023E2],[-88.3134277,0.16632763671874983E2],[-88.5623047,16.2904297],[-88.695166,0.16247656250000034E2],[-88.8791016,0.16016650390625045E2],[-88.894043,15.890625],[-89.2375,0.15894433593750023E2],[-89.1614746,17.8148438],[-89.1335449,0.17970800781249977E2],[-89.0504395,17.999707],[-88.8978027,17.9145508],[-88.8063477,0.17965527343749983E2],[-88.5861816,18.2905273],[-88.522998,0.18445898437500063E2],[-88.4612793,18.4767578],[-88.2956543,18.4724121],[-88.3492676,0.18358837890624983E2]]]]}}],"_labels":{"BZ":"Belize"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/CA.json b/src/api-umbrella/admin-ui/public/maps/CA.json new file mode 100644 index 000000000..f0640ac83 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/CA.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"CA"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-59.7875977,0.43939599609374994E2],[-60.0377441,43.9066406],[-60.1174805,43.9533691],[-59.7875977,0.43939599609374994E2]]],[[[-66.2737793,44.2922852],[-66.2737793,44.2922852],[-66.2737793,44.2922852],[-66.2737793,44.2922852]]],[[[-66.7625,44.6817871],[-66.8970703,44.6289062],[-66.8447266,44.763916],[-66.7454102,44.7914062],[-66.7625,44.6817871]]],[[[-60.9615723,45.4899414],[-0.61081738281249926E2,45.5578125],[-60.9124512,0.45567285156250044E2],[-60.9615723,45.4899414]]],[[[-73.6953125,45.585498],[-73.8577148,0.45573583984375006E2],[-73.7246582,45.6718262],[-73.5723633,45.6944824],[-73.6953125,45.585498]]],[[[-73.5665039,0.45469091796875034E2],[-73.9605469,45.4414062],[-73.8529297,45.5157227],[-73.6874512,0.45561425781249994E2],[-73.4760742,0.45704736328124994E2],[-73.5665039,0.45469091796875034E2]]],[[[-71.0257324,46.8729492],[-71.0949707,46.8995605],[-70.8796387,46.9960938],[-70.9134766,0.46919531250000034E2],[-71.0257324,46.8729492]]],[[[-61.1051758,45.9447266],[-60.9365723,45.9855469],[-60.8684082,45.9486328],[-61.0375488,0.45882226562499994E2],[-0.60971533203125034E2,0.45837988281250034E2],[-0.61092089843749996E2,0.45748388671875006E2],[-61.0590332,45.7033691],[-0.60930371093750004E2,45.7477051],[-60.6990723,45.7733398],[-60.4605957,0.45968701171875004E2],[-60.7048828,45.9329102],[-0.60733300781249994E2,0.45956591796875045E2],[-60.5731934,0.46061425781249994E2],[-60.5049316,46.2038574],[-0.60297949218750034E2,46.3112305],[-60.2264648,46.1955566],[-0.60092480468750004E2,0.46206005859374955E2],[-0.59865039062499925E2,0.46159521484375006E2],[-0.59934033203124955E2,0.46019433593749966E2],[-59.8280273,45.9651367],[-60.0158203,45.8804687],[-60.2050781,45.7430176],[-60.386084,45.6546387],[-60.6729492,45.5908203],[-60.871582,45.6106934],[-0.61283691406249936E2,0.45573876953124966E2],[-0.61449804687499956E2,45.7162109],[-0.61495312499999976E2,45.9414551],[-0.61480615234375016E2,46.0597656],[-0.61408642578125004E2,46.1703613],[-61.2405273,46.3025391],[-60.870166,46.7967773],[-60.5710449,46.9988281],[-60.4082031,47.0035156],[-0.60425439453124994E2,46.9231934],[-0.60331738281249976E2,46.7678223],[-0.60482421874999936E2,0.46413525390624955E2],[-60.4945313,46.2702637],[-60.5768555,46.172168],[-60.912207,46.0445801],[-61.1051758,45.9447266]]],[[[-63.8112793,46.4687012],[-0.63681445312499925E2,46.5619141],[-63.3686523,46.508252],[-63.1293945,0.46422216796875034E2],[-62.6819336,46.4594238],[-62.1635742,0.46487207031249966E2],[-62.0237305,46.421582],[-62.3199707,46.2783203],[-62.5260742,46.2028809],[-62.5313477,45.9772949],[-62.7431641,45.9668945],[-0.62878369140624926E2,46.0013672],[-62.9035156,0.46068261718749966E2],[-63.0220703,46.0666016],[-62.8945313,46.123584],[-63.0150391,46.1899414],[-0.63052929687499955E2,46.2698242],[-0.63270800781249925E2,46.2],[-0.63276611328124964E2,0.46153271484374955E2],[-63.6410156,46.2304687],[-63.8005371,0.46367333984374966E2],[-0.63758642578125034E2,0.46397607421874994E2],[-64.1108398,0.46425439453124994E2],[-64.106543,0.46562109375000034E2],[-64.2356445,0.46631445312500034E2],[-64.3880371,46.6408691],[-64.3545898,46.7692383],[-64.2232422,46.9012695],[-0.63993554687500016E2,47.0615723],[-63.9814941,46.9129883],[-64.0878906,46.7754395],[-63.9030273,46.6391113],[-0.63905566406249925E2,46.5087891],[-63.8112793,46.4687012]]],[[[-61.9141113,0.47284521484375034E2],[-61.7725586,47.2598145],[-61.8337402,47.2226074],[-62.0083008,47.2342773],[-0.61924707031249966E2,0.47425146484375006E2],[-61.627832,0.47593847656250006E2],[-61.3955078,47.6376465],[-0.61475537109374955E2,47.5639648],[-61.5822266,47.5600098],[-61.8866211,0.47344628906250016E2],[-61.9141113,0.47284521484375034E2]]],[[[-0.54227148437500034E2,47.4413574],[-54.3201172,47.4385254],[-54.2149414,47.5851074],[-54.1281738,0.47646826171875034E2],[-0.54227148437500034E2,47.4413574]]],[[[-64.5085938,47.8867187],[-64.5338867,0.47813769531250045E2],[-64.6845703,47.7536133],[-64.6632812,47.8630371],[-64.5085938,47.8867187]]],[[[-64.4760742,47.9588867],[-64.5913086,47.9072266],[-64.5407227,0.47984960937500006E2],[-64.4760742,47.9588867]]],[[[-0.12343540039062496E3,48.7544434],[-0.12351752929687501E3,0.48750146484375016E2],[-0.12358232421874995E3,48.9257812],[-123.467871,0.48867382812500004E2],[-0.12343540039062496E3,48.7544434]]],[[[-0.12337236328124997E3,0.48886132812500016E2],[-0.12354101562499997E3,48.9459473],[-0.12368925781249999E3,49.0951172],[-0.12337236328124997E3,0.48886132812500016E2]]],[[[-74.7088867,45.0038574],[-74.5663086,45.0416016],[-74.269043,45.1882813],[-74.0498047,45.2414063],[-73.7646484,45.395459],[-73.5581055,0.45425097656250045E2],[-73.4652832,0.45632324218749964E2],[-73.2530273,45.8636719],[-73.1595703,46.0100586],[-72.9899414,46.1036133],[-72.7334473,0.46181835937500004E2],[-72.4961914,0.46352685546874994E2],[-72.2401367,46.4420898],[-72.187207,0.46511523437500045E2],[-71.9009277,46.6319336],[-71.6712891,0.46653759765624955E2],[-71.2611816,46.75625],[-71.152002,46.8190918],[-70.9932617,0.46852197265624994E2],[-70.5194824,0.47032519531250045E2],[-70.3880859,47.1169434],[-70.2177734,47.2898438],[-70.0695801,0.47377783203125034E2],[-70.0171387,47.4714355],[-69.8022461,47.6234375],[-69.5810547,47.8236816],[-69.4710449,47.9672852],[-69.3063477,0.48047021484375044E2],[-68.9870605,48.275],[-68.8156738,48.3660156],[-68.552002,48.4573242],[-68.4314941,48.5416992],[-68.2381836,48.626416],[-67.8890137,48.7309082],[-67.5608887,48.855957],[-67.1174805,48.9641602],[-66.5980957,49.1263672],[-66.1781738,49.2131348],[-65.8828125,49.2256836],[-65.5233887,49.2661621],[-65.3961426,0.49262060546875034E2],[-64.8363281,0.49191748046875006E2],[-64.5677246,49.1047852],[-64.2618164,48.921875],[-64.2087891,48.8062012],[-64.5137207,48.8411133],[-64.2460937,48.6911133],[-64.2537598,48.5503906],[-64.3488281,48.4231934],[-64.6331543,48.360498],[-64.764502,48.2280762],[-65.2594238,48.0212402],[-65.4758789,48.0314941],[-65.7546875,48.1116699],[-65.926709,0.48188867187499994E2],[-66.0831055,48.1026855],[-66.4489746,48.1196289],[-66.7043945,48.0224609],[-66.631543,0.48011083984375006E2],[-66.4288086,48.0669434],[-66.2102051,0.47988574218750045E2],[-65.8494141,0.47911035156250044E2],[-65.7557129,47.8597656],[-65.6664551,0.47696142578125055E2],[-65.4834961,47.6870117],[-65.2281738,47.8112793],[-65.0016602,47.8468262],[-65.0463867,47.7930176],[-64.8739746,0.47797216796875034E2],[-64.7032227,47.7248535],[-64.8521484,47.569873],[-64.912207,47.3686523],[-65.0861328,0.47233789062499994E2],[-65.3188965,0.47101220703124994E2],[-65.1920898,47.0495605],[-65.0423828,47.0888184],[-64.8313965,47.060791],[-64.9057617,46.8879395],[-64.8166992,46.6986816],[-64.7258789,46.6714355],[-64.6478516,46.355957],[-64.5415039,0.46240332031250034E2],[-64.2118164,46.2202148],[-63.915918,46.1658203],[-63.8319336,46.1071777],[-64.0563965,0.46021337890625006E2],[-63.874707,45.9592285],[-0.63702880859374936E2,0.45858007812500034E2],[-0.63509228515624926E2,45.874707],[-0.63292773437499996E2,45.7519531],[-63.1079102,45.7824219],[-62.7006836,0.45740576171875006E2],[-0.62750097656250006E2,45.6482422],[-62.5856445,45.6606934],[-62.4830566,45.6218262],[-62.2177246,0.45730859374999966E2],[-0.61955517578124955E2,45.8681641],[-61.8772461,0.45714208984375034E2],[-61.6568848,45.6421875],[-61.4922852,45.6870117],[-0.61350488281249966E2,45.5736816],[-61.2819824,0.45441064453124994E2],[-61.4609863,45.3666992],[-61.1067383,45.3486328],[-61.031543,45.291748],[-61.3872559,45.1850586],[-61.56875,45.1538086],[-62.0268066,44.9944824],[-62.2649902,0.44936474609374955E2],[-62.5140137,0.44843652343749966E2],[-63.0318359,44.7147949],[-0.63155712890624955E2,44.7113281],[-63.3062988,44.6425781],[-63.4568359,0.44639941406250045E2],[-63.6040039,44.6832031],[-0.63544824218749994E2,44.54375],[-63.6097656,44.4799805],[-0.63761132812499994E2,0.44486425781250034E2],[-63.8913086,44.5463379],[-0.63999707031249926E2,44.6449219],[-64.1008789,0.44487451171874966E2],[-64.1669922,44.5866699],[-64.286084,44.5503418],[-64.3385254,44.444873],[-64.2756836,44.334082],[-64.3782227,44.3035645],[-64.4687988,0.44185156250000034E2],[-64.5784668,44.142041],[-64.8623535,0.43867871093749955E2],[-65.0868164,0.43727197265624994E2],[-65.2349121,43.7267578],[-65.3295898,43.6681152],[-65.3442871,0.43549609375000045E2],[-65.4816895,43.5180664],[-65.7381348,43.5607422],[-65.8869141,43.7952148],[-65.978418,43.8148438],[-66.0376465,43.7421875],[-66.1257324,0.43813818359375034E2],[-66.1930664,0.44143847656250045E2],[-66.0995605,0.44367480468750045E2],[-65.8680176,44.5687988],[-65.9419434,44.5755371],[-66.1463867,44.4359375],[-66.0216797,44.5617188],[-65.917041,0.44615087890625034E2],[-65.6818359,44.6509277],[-65.5200195,44.732666],[-65.7282227,44.6971191],[-65.6567383,0.44760302734375045E2],[-64.9029297,45.1208008],[-64.7512695,45.1802246],[-64.4488281,0.45256054687499955E2],[-64.3307617,45.3093262],[-64.354248,0.45138232421875045E2],[-64.2350098,0.45114306640625045E2],[-64.135498,45.0230469],[-64.1827148,45.1470215],[-64.0931641,45.2170898],[-63.7483398,0.45310888671875034E2],[-63.4602539,45.3210937],[-63.3680176,45.3647949],[-0.63614453124999955E2,45.3941406],[-63.9064453,45.3781738],[-64.0871582,45.4108887],[-64.3364258,0.45389550781249994E2],[-64.6001953,0.45410058593749994E2],[-64.7466797,45.3243652],[-64.9128906,45.3748047],[-64.8273926,45.4755371],[-64.5600586,45.6254883],[-64.3146484,45.8356934],[-64.4822266,45.8063477],[-64.6327148,45.9466309],[-64.5936523,45.8136719],[-64.7785156,45.6384277],[-64.8979004,45.6259766],[-65.0572754,45.5442383],[-65.2823242,0.45473095703124955E2],[-65.5450195,0.45337304687499994E2],[-65.8844727,45.2229004],[-65.9556152,45.2224609],[-66.1097656,0.45316601562499955E2],[-66.0265625,45.4175781],[-66.1827148,45.3352051],[-66.1073242,0.45256933593750055E2],[-66.4398437,45.0958984],[-66.5109375,45.1433594],[-66.7071777,0.45083398437499966E2],[-66.8724609,0.45067285156249966E2],[-66.9187012,0.45145605468750034E2],[-67.084082,45.1439453],[-67.2496094,45.2007812],[-67.3152832,45.1538086],[-67.4725586,45.2758789],[-67.4279297,45.3779297],[-67.4936523,45.4740723],[-67.432666,45.603125],[-67.595752,45.620752],[-67.784668,45.701709],[-67.8067871,47.0828125],[-68.0967773,47.2748535],[-68.3108887,47.3544922],[-68.4803711,0.47285791015625016E2],[-68.8287109,47.2033203],[-69.048584,0.47273632812499955E2],[-69.0501953,0.47426611328125034E2],[-69.2428711,47.4629883],[-70.0077148,0.46708935546875004E2],[-70.0671875,0.46441064453124966E2],[-70.248291,46.2508789],[-70.3044922,46.057373],[-70.2962402,45.9061035],[-70.4210937,0.45738232421874955E2],[-70.5963867,0.45643994140624955E2],[-70.7022461,0.45551367187500006E2],[-70.6897949,45.4283203],[-70.7991699,45.4047852],[-70.897998,45.2624512],[-70.9999023,45.3372559],[-71.134668,45.2628418],[-71.3272949,45.2900879],[-71.419043,0.45200341796874994E2],[-71.5175293,45.0075684],[-74.7088867,45.0038574]]],[[[-0.12609208984374995E3,49.3540039],[-0.12606401367187497E3,49.263623],[-0.12622963867187498E3,49.2956543],[-0.12620854492187495E3,49.3797852],[-0.12609208984374995E3,49.3540039]]],[[[-54.5543945,49.5888672],[-0.54786523437499966E2,49.4961426],[-54.8635742,0.49576074218749966E2],[-0.54733105468750004E2,0.49562158203124994E2],[-0.54559179687500006E2,49.6314941],[-54.5543945,49.5888672]]],[[[-0.54093701171874955E2,49.7444336],[-53.9806641,49.6619629],[-0.54286132812499964E2,0.49595361328124994E2],[-0.54258984374999955E2,49.7189941],[-54.1993652,49.6885254],[-0.54093701171874955E2,49.7444336]]],[[[-124.153662,0.49531152343749966E2],[-0.12436230468749997E3,0.49588183593750045E2],[-0.12463095703124999E3,49.7356934],[-0.12462329101562504E3,49.7750977],[-0.12442148437500002E3,49.7277832],[-124.153662,0.49531152343749966E2]]],[[[-0.12664121093749999E3,0.49605810546875006E2],[-0.12674340820312501E3,0.49613476562499955E2],[-0.12693857421874999E3,49.718457],[-0.12692583007812497E3,0.49837744140625006E2],[-126.738135,49.8436523],[-0.12664990234374997E3,49.7458008],[-0.12664121093749999E3,0.49605810546875006E2]]],[[[-0.61801123046875034E2,0.49093896484374966E2],[-62.2195313,49.0791016],[-62.7996094,49.1707031],[-63.0415039,0.49224951171875034E2],[-63.5658691,49.3993164],[-0.63676220703124926E2,0.49534326171874994E2],[-63.8849121,49.6577148],[-64.4400391,49.8277344],[-64.4852051,49.8869629],[-64.3729492,49.9259277],[-64.1314453,49.9416504],[-63.7601562,49.8752441],[-63.2919922,49.8168457],[-62.8585449,0.49705468750000044E2],[-62.6334473,49.6239258],[-0.62133007812499955E2,0.49407080078125006E2],[-61.8171387,49.2835449],[-61.6961426,49.1390137],[-0.61801123046875034E2,0.49093896484374966E2]]],[[[-0.12497773437500003E3,50.0295898],[-0.12502597656249999E3,50.134082],[-0.12499082031250002E3,50.2171387],[-0.12490844726562501E3,50.0712891],[-0.12497773437500003E3,50.0295898]]],[[[-0.12518413085937497E3,50.0971191],[-0.12519511718749997E3,0.50044335937499994E2],[-0.12535844726562496E3,50.3115234],[-125.301172,50.4140625],[-125.195996,0.50389746093750006E2],[-125.074023,50.2206543],[-0.12518413085937497E3,50.0971191]]],[[[-55.5361328,50.7196777],[-55.6044922,50.7807129],[-55.4692871,50.7963867],[-55.5361328,50.7196777]]],[[[-0.12719731445312493E3,50.6403809],[-0.12670092773437499E3,0.50515527343749966E2],[-0.12620385742187497E3,50.4538574],[-125.83916,0.50380810546874955E2],[-0.12561523437499994E3,50.3585449],[-0.12548208007812501E3,0.50316796874999966E2],[-0.12523320312499993E3,50.012207],[-0.12493466796874995E3,0.49731640624999955E2],[-0.12493066406250003E3,0.49643164062500055E2],[-0.12483061523437497E3,49.5300781],[-0.12464287109375002E3,49.4286621],[-0.12418588867187498E3,49.3005859],[-123.995801,0.49224023437500016E2],[-0.12382001953124998E3,49.0834961],[-0.12375229492187503E3,0.48951220703125045E2],[-123.626563,48.8240234],[-123.497021,48.5820801],[-0.12341547851562497E3,48.6981934],[-0.12328378906249996E3,48.4551758],[-0.12333452148437502E3,48.4064941],[-0.12344589843749996E3,48.4272461],[-0.12359462890624997E3,48.3335449],[-0.12391694335937501E3,48.3865723],[-124.689404,0.48597314453124966E2],[-0.12512070312500002E3,48.760791],[-0.12513569335937495E3,0.48822412109374994E2],[-0.12484965820312496E3,49.0282715],[-0.12481264648437497E3,49.2126465],[-0.12492734374999998E3,49.014209],[-125.168213,48.9910156],[-0.12536274414062494E3,48.9982422],[-0.12546030273437502E3,0.48941064453125016E2],[-0.12582851562499997E3,49.0918457],[-0.12564423828125001E3,49.185791],[-0.12583544921874997E3,49.2766602],[-0.12598383789062501E3,49.2878906],[-0.12593540039062499E3,49.4014648],[-0.12602031249999997E3,0.49368017578125034E2],[-126.099854,0.49421289062499966E2],[-0.12624360351562498E3,49.4426758],[-0.12630449218749996E3,0.49382031249999955E2],[-0.12641860351562502E3,49.4490234],[-0.12654853515625001E3,49.4189453],[-126.541895,49.5904785],[-126.157813,49.6501465],[-0.12634755859374992E3,0.49660839843750004E2],[-0.12659287109374999E3,49.7641113],[-0.12668310546874999E3,49.8764648],[-0.12690332031250001E3,49.9441406],[-0.12697709960937495E3,49.8828125],[-0.12711430664062499E3,0.49879736328125034E2],[-0.12720751953124999E3,49.9924316],[-127.192334,50.0999023],[-0.12724980468749997E3,50.1379883],[-0.12734941406249995E3,50.0519531],[-0.12746713867187503E3,0.50163427734375006E2],[-0.12767485351562497E3,50.1633301],[-0.12786391601562494E3,50.1277344],[-0.12785083007812496E3,50.3137207],[-0.12796293945312496E3,50.3459961],[-0.12790585937499998E3,0.50445214843750016E2],[-127.641406,0.50479101562500006E2],[-0.12748652343749997E3,0.50404638671875034E2],[-0.12752900390625003E3,50.5367676],[-0.12746591796874995E3,50.5831055],[-0.12775146484374996E3,50.607373],[-0.12773115234374998E3,0.50535742187500006E2],[-0.12786469726562503E3,0.50498876953125034E2],[-0.12805834960937494E3,0.50498486328124955E2],[-128.267432,0.50609277343749966E2],[-0.12834604492187503E3,50.7442383],[-0.12824155273437498E3,50.8281738],[-0.12791806640624998E3,50.8605469],[-0.12771303710937494E3,50.820752],[-0.12719731445312493E3,50.6403809]]],[[[-55.4587402,51.5365234],[-55.5833984,51.3885742],[-0.56031103515625034E2,51.3283691],[-0.55999902343749966E2,51.1992676],[-0.55815087890624994E2,51.1911621],[-55.8,51.0333008],[-55.8713867,50.907373],[-56.078125,50.780957],[-56.1356445,0.50650976562500034E2],[-56.3824219,50.4169922],[-56.4543457,0.50380029296874994E2],[-56.4839355,50.2708496],[-0.56693994140624966E2,50.059668],[-56.7541016,0.49882910156250034E2],[-56.8486328,0.49765332031249976E2],[-56.822168,0.49613476562499955E2],[-0.56500927734374976E2,49.8696289],[-0.56376416015624926E2,0.49933691406250006E2],[-56.2470703,0.50090087890624964E2],[-0.56122167968750006E2,0.50062841796875034E2],[-0.56161279296874994E2,49.9401367],[-55.927002,50.0177734],[-0.55764746093750034E2,49.9604492],[-55.5300293,49.997168],[-55.5836914,49.8923828],[-56.0399902,49.7046875],[-56.1401855,49.6191406],[-55.9785156,49.678125],[-0.55869824218749955E2,49.670166],[-0.55892041015624926E2,49.5802734],[-56.0873047,49.4519531],[-55.8152344,49.5152832],[-55.678125,49.4346191],[-0.55375927734374955E2,0.49489746093749964E2],[-0.55355371093750016E2,49.3808594],[-55.2899414,0.49391943359375034E2],[-0.55283007812499925E2,49.5138184],[-55.2070312,49.4820312],[-55.2593262,49.2669922],[-0.55342480468749976E2,0.49168115234374994E2],[-55.3347656,49.0778809],[-55.2523437,49.1208984],[-55.2445313,49.1998047],[-55.0261719,49.3053711],[-55.015918,49.2603516],[-54.717627,49.3885742],[-54.4691895,49.5297852],[-54.4634766,49.341748],[-0.54316748046875006E2,49.4241211],[-0.53957714843749955E2,0.49441845703124976E2],[-0.53862451171874994E2,49.4263184],[-53.6194336,0.49321630859375006E2],[-53.5695801,49.2641602],[-53.5734375,0.49141210937500034E2],[-53.7580566,49.0354004],[-53.9032227,48.8891602],[-54.1612793,0.48787695312500034E2],[-0.53852880859375006E2,48.8113281],[-0.53961523437500006E2,0.48738867187500034E2],[-0.53886132812500016E2,0.48684667968750006E2],[-53.6980469,48.679834],[-0.53794628906249955E2,48.5263672],[-54.0677734,48.4188477],[-53.7993164,48.4492188],[-0.53644433593749994E2,48.5112305],[-53.5520508,48.4817871],[-53.4113281,48.5621582],[-53.2202637,48.5778809],[-53.0572754,0.48659033203125034E2],[-53.020752,48.5716309],[-53.1357422,48.4018555],[-53.3343262,48.355957],[-53.4055176,0.48294335937499966E2],[-53.6097656,48.2077148],[-53.5694336,0.48088085937499955E2],[-0.53869580078124926E2,0.48019677734374966E2],[-53.6382324,48.0146484],[-53.6950195,47.9211914],[-0.53861669921875006E2,47.7992676],[-53.7651367,47.6500977],[-53.6037598,47.6623047],[-53.5037598,47.7438477],[-53.2827148,47.9978516],[-0.52920996093750034E2,0.48147070312500006E2],[-52.8660156,48.1129883],[-52.9549805,0.48029296874999964E2],[-53.1108398,47.8119141],[-53.1755371,47.6529785],[-0.53169824218750016E2,47.5121094],[-0.53122460937499966E2,47.455127],[-52.9450195,47.552832],[-0.52782421874999955E2,0.47769433593749966E2],[-52.7114258,47.7453125],[-0.52653662109375034E2,0.47549414062500006E2],[-52.6836426,47.4263184],[-52.9124023,47.1032227],[-52.889209,46.9741211],[-52.9617187,46.8194336],[-53.0697754,46.68125],[-53.1669922,46.6464844],[-53.2913086,46.717041],[-53.3817383,46.7114258],[-0.53536132812499936E2,46.6325195],[-53.6163574,0.46680273437500034E2],[-53.5784668,0.47133251953124955E2],[-53.636377,47.1376953],[-53.8600098,46.9394531],[-54.0760254,0.46819970703124994E2],[-0.54173730468749994E2,46.8803711],[-0.54092675781249994E2,47.0862305],[-53.8690918,47.3870117],[-53.9890137,0.47756201171875034E2],[-0.54191845703124955E2,47.8598145],[-54.2338867,47.7716797],[-0.54404687499999966E2,47.5559082],[-0.54434472656249994E2,0.47462304687500016E2],[-54.5625488,47.3751953],[-54.4739258,47.5470703],[-54.6511719,47.4082031],[-0.54856640624999955E2,47.3850098],[-55.0904297,47.1739258],[-0.55139648437499936E2,47.0459473],[-0.55315722656249925E2,0.46905712890624955E2],[-0.55530712890624955E2,46.9140137],[-0.55788525390624976E2,46.8672363],[-55.9499023,46.9276855],[-55.8383789,0.47071630859375006E2],[-55.4915039,47.1606445],[-55.3608887,47.2585937],[-0.55190820312499994E2,0.47448974609374964E2],[-54.8695313,47.5708984],[-54.7846191,0.47664746093749955E2],[-0.54945947265625016E2,47.6208496],[-0.55074560546875006E2,0.47657568359375006E2],[-0.55366308593750034E2,47.661084],[-0.55434667968750006E2,47.5012695],[-55.576123,47.4652344],[-55.8620605,47.5300781],[-56.0836914,0.47524511718750006E2],[-0.55867089843749994E2,0.47592333984375045E2],[-55.8579102,47.8191895],[-56.0201172,47.7637207],[-56.1214355,47.7891602],[-56.2212891,47.6713867],[-0.56774121093749955E2,47.5649902],[-57.4734375,47.6311035],[-57.6598145,47.6253906],[-57.9255371,47.6749023],[-58.3332031,0.47676855468750034E2],[-58.3368652,47.7308594],[-58.6131348,47.6262207],[-59.1169434,47.5707031],[-59.2597656,47.6341797],[-59.3624023,47.8656738],[-0.59272070312500034E2,47.9955566],[-0.58960839843749945E2,48.159375],[-58.6049805,48.4113281],[-0.58330224609374994E2,48.5221191],[-58.4922363,48.5130371],[-58.7225586,48.5407227],[-59.1667969,0.48521777343750045E2],[-0.59167675781249976E2,48.5584961],[-58.8417969,48.7464355],[-0.58906445312499955E2,48.6501953],[-0.58716455078124994E2,48.5980469],[-58.49375,49.0032227],[-0.58403662109375034E2,49.0843262],[-0.58186132812500034E2,0.49061914062500016E2],[-58.0496582,48.9875488],[-58.0989258,49.0774414],[-57.9800781,0.49229638671874994E2],[-58.190918,49.2587402],[-58.2133789,49.3866699],[-58.0158203,49.5424805],[-0.57856054687500034E2,49.4738281],[-57.7913086,49.4899902],[-57.8974609,0.49600390625000045E2],[-57.9261719,0.49700830078124994E2],[-57.7125,50.0249023],[-0.57465527343749955E2,50.4636719],[-57.3305664,50.6051758],[-0.57179589843749966E2,0.50614843750000034E2],[-57.297998,50.6987305],[-57.1316406,50.7874023],[-57.0056641,50.9396484],[-57.0359375,51.0108398],[-56.8054688,51.1444824],[-56.7501953,51.2749023],[-56.5179687,0.51399316406249994E2],[-56.207373,51.488623],[-0.56025585937499955E2,51.5683594],[-55.9020996,51.563916],[-55.8658203,0.51508300781249964E2],[-55.6904297,0.51471337890624994E2],[-0.55700634765624926E2,0.51559423828125006E2],[-0.55521630859374966E2,0.51596386718749976E2],[-55.4587402,51.5365234]]],[[[-0.12792465820312498E3,51.473877],[-128.091797,51.5111328],[-0.12814877929687498E3,51.626709],[-0.12803173828125006E3,51.7083984],[-0.12791635742187498E3,0.51585449218749964E2],[-0.12792465820312498E3,51.473877]]],[[[-0.55361230468749966E2,51.8896484],[-0.55419628906249976E2,0.51900048828125016E2],[-0.55274072265624994E2,51.995166],[-0.55361230468749966E2,51.8896484]]],[[[-79.3842773,51.9519531],[-79.5206055,51.9529297],[-79.64375,52.0100586],[-79.3348633,52.0981445],[-79.2712891,0.52086816406249966E2],[-79.3842773,51.9519531]]],[[[-131.029297,51.9616211],[-0.13110341796875002E3,52.0138672],[-131.098096,52.1506348],[-0.13101064453125002E3,52.0952637],[-131.029297,51.9616211]]],[[[-128.36875,52.4008789],[-0.12844541015625003E3,52.3875],[-128.4125,0.52472851562500004E2],[-0.12843979492187503E3,0.52696386718750006E2],[-0.12836489257812494E3,0.52781884765624994E2],[-0.12824726562499995E3,52.784375],[-0.12832377929687505E3,52.4589844],[-128.36875,52.4008789]]],[[[-0.12893686523437498E3,52.5100098],[-0.12896870117187495E3,0.52464257812500044E2],[-0.12915102539062497E3,52.6053223],[-129.250488,52.722168],[-0.12924594726562498E3,52.8112305],[-0.12899399414062498E3,0.52661718750000034E2],[-0.12893686523437498E3,52.5100098]]],[[[-129.313721,52.9921875],[-0.12940971679687502E3,53.0237305],[-129.514746,53.1793945],[-0.12945073242187502E3,53.174707],[-129.313721,52.9921875]]],[[[-80.7316895,52.7472656],[-81.0098633,52.7606445],[-81.3522461,52.852002],[-81.8390625,52.9579102],[-82.0392578,53.0499023],[-81.8473145,53.1862793],[-81.3353516,53.2242676],[-81.1355957,53.2058105],[-80.765332,52.9232422],[-80.7104492,52.8315918],[-80.7316895,52.7472656]]],[[[-131.753711,53.1955566],[-0.13165234374999997E3,0.53102978515624955E2],[-0.13163466796874997E3,52.922168],[-0.13190439453125003E3,52.8666992],[-131.727295,52.7563965],[-0.13145522460937502E3,52.701709],[-0.13159057617187494E3,0.52578222656250006E2],[-0.13142998046875002E3,52.4221191],[-0.13127363281250004E3,52.4258301],[-0.13132705078125002E3,0.52317529296874994E2],[-131.142627,0.52291113281250034E2],[-0.13111616210937498E3,0.52219091796875006E2],[-131.221533,52.1536133],[-131.421875,0.52237988281249955E2],[-0.13156206054687502E3,52.3999512],[-131.809668,52.5416992],[-132.092236,0.52752783203125034E2],[-0.13216508789062493E3,0.52783300781250034E2],[-132.258105,52.9338867],[-132.14375,52.9993164],[-0.13246870117187498E3,53.071875],[-0.13254677734374997E3,53.1375],[-132.34541,53.136084],[-132.035937,53.1791504],[-0.13189311523437496E3,53.2314453],[-131.753711,53.1955566]]],[[[-0.12855244140624998E3,52.9397461],[-0.12850991210937502E3,52.5186035],[-128.678955,0.52289648437500006E2],[-128.730908,0.52356542968750034E2],[-0.12876645507812498E3,52.5983887],[-0.12874633789062494E3,0.52763378906249955E2],[-0.12889980468749994E3,52.6738281],[-0.12908471679687497E3,52.8224609],[-129.177686,0.53017919921875034E2],[-0.12908408203125003E3,53.1396973],[-129.033252,0.53279931640625044E2],[-128.740381,0.53178857421874966E2],[-0.12863266601562498E3,53.1125],[-0.12855244140624998E3,52.9397461]]],[[[-129.167725,53.1178711],[-0.12927685546875006E3,53.1109375],[-0.12931435546874997E3,53.2123047],[-0.12923818359374997E3,53.3300781],[-129.177002,53.2591309],[-129.167725,53.1178711]]],[[[-79.9382324,53.3041504],[-79.9382324,53.3041504],[-79.9382324,53.3041504],[-79.9382324,53.3041504]]],[[[-0.12984858398437498E3,0.53167919921874955E2],[-129.934375,0.53176660156249966E2],[-0.13015141601562493E3,53.3457031],[-0.13030566406250003E3,0.53407373046874994E2],[-0.13051757812500003E3,53.5442383],[-0.13045200195312498E3,53.6311523],[-0.13019501953125004E3,0.53549658203125006E2],[-0.12994472656250002E3,0.53436376953125034E2],[-0.12975483398437498E3,0.53244775390624994E2],[-0.12984858398437498E3,0.53167919921874955E2]]],[[[-130.236279,53.9585449],[-0.13038422851562504E3,53.8439453],[-0.13062460937499998E3,53.9414062],[-0.13064370117187497E3,53.8445312],[-0.13070727539062494E3,53.9214844],[-0.13049462890624997E3,54.0741699],[-0.13039731445312503E3,54.0856934],[-130.236279,53.9585449]]],[[[-0.13265551757812503E3,54.1274902],[-0.13256406250000003E3,54.0686523],[-0.13234443359374995E3,54.1060547],[-0.13226162109374997E3,54.0763184],[-0.13216611328124998E3,53.9552246],[-0.13221450195312497E3,53.8147461],[-0.13256489257812504E3,0.53687646484374966E2],[-0.13253466796874997E3,0.53651708984375034E2],[-0.13218696289062504E3,53.6848145],[-0.13211059570312503E3,53.900293],[-132.134424,54.0342773],[-131.94082,54.0419922],[-0.13166762695312502E3,54.1413574],[-0.13170253906250002E3,53.986377],[-0.13182114257812503E3,0.53841503906249955E2],[-0.13192231445312504E3,53.5878906],[-0.13192807617187498E3,53.3791992],[-0.13201132812499998E3,53.2651855],[-0.13234726562500003E3,53.189209],[-0.13252045898437504E3,0.53194042968749955E2],[-132.74751,0.53310498046874955E2],[-0.13269257812499998E3,53.3678711],[-132.431348,0.53350439453125006E2],[-132.670166,0.53458593750000034E2],[-132.84502,0.53507714843749994E2],[-132.913379,53.6291992],[-0.13305224609375003E3,53.778125],[-133.097949,54.0056152],[-0.13304838867187493E3,0.54158935546874964E2],[-0.13265551757812503E3,54.1274902]]],[[[-0.13092714843749997E3,54.4790527],[-0.13090683593750003E3,54.6317871],[-130.753418,54.599707],[-0.13092714843749997E3,54.4790527]]],[[[-0.13034941406249996E3,0.54814550781250034E2],[-0.13053549804687503E3,0.54748730468749955E2],[-0.13057534179687497E3,0.54769677734374966E2],[-130.214063,55.0258789],[-130.203906,54.9470215],[-0.13034941406249996E3,0.54814550781250034E2]]],[[[-60.9944824,0.56039306640624964E2],[-61.1913086,56.0478516],[-61.0869141,56.1408203],[-60.9664062,56.0988281],[-60.9944824,0.56039306640624964E2]]],[[[-78.8265137,56.1453125],[-78.9138184,56.1328125],[-78.7994141,56.3833008],[-78.66875,0.56438623046874966E2],[-78.6571777,56.3173828],[-78.7101562,56.2128906],[-78.8265137,56.1453125]]],[[[-79.9775879,56.2070313],[-80.0888672,56.2138672],[-80.0050781,56.3179199],[-79.7491699,56.3765137],[-79.5797363,0.56466357421875045E2],[-79.6879395,0.56326806640625016E2],[-79.9775879,56.2070313]]],[[[-78.9355957,56.2660645],[-79.0838867,56.0678711],[-79.1754883,55.8850586],[-79.2736328,55.9224609],[-79.1422852,0.56136425781249955E2],[-79.1821289,56.2121582],[-79.4074219,55.9348633],[-79.4951172,55.8747559],[-79.6057129,0.55875683593749955E2],[-79.7647461,55.8067871],[-79.4974609,0.56093164062500016E2],[-79.5645508,56.1209473],[-79.7811035,55.9405762],[-79.9045898,55.8710449],[-80.0007812,55.9320801],[-79.5152832,56.3265137],[-79.4353027,0.56513037109375034E2],[-79.4762695,0.56312841796875034E2],[-79.5541992,0.56191992187500006E2],[-79.392627,56.2764648],[-79.2724121,56.6004395],[-79.1235352,56.5199707],[-79.0777344,56.4536133],[-78.9631836,0.56421728515625006E2],[-78.9066406,56.3204102],[-78.9355957,56.2660645]]],[[[-79.5181641,0.56656689453124976E2],[-79.5773926,56.6449219],[-79.5112305,56.7714355],[-79.5181641,0.56656689453124976E2]]],[[[-79.8669922,56.7745605],[-79.9436523,0.56776757812500016E2],[-79.8981445,56.8652832],[-79.8669922,56.7745605]]],[[[-0.61743603515624955E2,57.5545898],[-61.6595215,57.5249512],[-61.6375,57.4160645],[-0.61795263671874984E2,57.4224609],[-0.61975488281250016E2,0.57495410156249996E2],[-62.0112305,57.5484863],[-0.61848339843749955E2,57.5793457],[-0.61743603515624955E2,57.5545898]]],[[[-79.7165039,0.57515527343749994E2],[-79.8382324,57.4830078],[-79.726709,0.57604589843750006E2],[-79.7165039,0.57515527343749994E2]]],[[[-69.1600586,59.0402344],[-69.2208496,0.58967578125000045E2],[-69.352832,58.9607422],[-69.3299805,59.1212402],[-69.195166,0.59146142578125016E2],[-69.1600586,59.0402344]]],[[[-80.2852539,0.59624121093750034E2],[-80.2852539,0.59624121093750034E2],[-80.2852539,0.59624121093750034E2],[-80.2852539,0.59624121093750034E2]]],[[[-80.064209,0.59770800781249996E2],[-80.1670898,59.7638672],[-80.0411621,0.59870166015624996E2],[-79.8986328,59.853125],[-80.064209,0.59770800781249996E2]]],[[[-64.4070313,60.3670898],[-64.4419434,60.2978516],[-64.8089844,60.4104004],[-64.8364258,60.5010254],[-64.6462891,0.60514599609375004E2],[-64.4070313,60.3670898]]],[[[-68.2337891,60.240918],[-68.3652344,60.2540527],[-68.3382812,0.60360595703124964E2],[-68.0875977,0.60587841796875004E2],[-67.914209,60.5398437],[-67.8188477,0.60449511718750074E2],[-67.8442383,60.3916504],[-68.0123047,0.60304638671874955E2],[-68.2337891,60.240918]]],[[[-78.5316406,60.7285645],[-78.6688965,0.60716894531250006E2],[-78.6120117,60.7723145],[-78.2416992,0.60818652343750045E2],[-78.2788574,60.7838867],[-78.5316406,60.7285645]]],[[[-64.8326172,0.61366064453125006E2],[-65.3938965,0.61562841796875034E2],[-65.4321289,0.61649511718750034E2],[-65.1297852,0.61685693359375016E2],[-64.7896484,0.61662207031250034E2],[-64.6695801,0.61593017578124964E2],[-64.6963867,61.4714844],[-64.8326172,0.61366064453125006E2]]],[[[-0.9304394531249997E2,61.8440918],[-0.9319667968750001E2,0.61918554687500034E2],[-93.0757812,61.9350098],[-92.9930176,61.8896973],[-0.9304394531249997E2,61.8440918]]],[[[-65.0305664,61.8790527],[-64.9605469,61.8716797],[-64.8470703,61.7615234],[-64.9277344,0.61732519531250055E2],[-65.165918,61.7976563],[-65.2353516,61.8977051],[-65.1739258,0.61943212890625006E2],[-65.0305664,61.8790527]]],[[[-79.5453125,0.62411718750000055E2],[-79.4662109,62.3845215],[-79.2864746,0.62247656250000034E2],[-79.3239258,0.62026074218750004E2],[-79.5418457,0.61808007812499994E2],[-79.66875,61.6444336],[-79.7633301,61.5959473],[-79.8963379,61.630127],[-80.0919922,61.7468262],[-80.2651855,61.8182129],[-80.2600586,62.1090332],[-80.021582,0.62342968749999976E2],[-79.8680664,0.62404345703125045E2],[-79.5453125,0.62411718750000055E2]]],[[[-64.8238281,62.5587402],[-64.515332,62.5518066],[-64.4180664,62.4874023],[-64.4783203,0.62417871093749966E2],[-64.6574219,62.3835938],[-64.9012207,0.62421044921874994E2],[-64.9564941,0.62458349609375034E2],[-64.8419434,62.4941406],[-64.8238281,62.5587402]]],[[[-74.0004395,0.62618408203124964E2],[-74.2535156,62.6219727],[-74.6264648,0.62712744140625006E2],[-74.0167969,0.62662695312500034E2],[-74.0004395,0.62618408203124964E2]]],[[[-70.3370605,62.5487305],[-70.5415039,62.5523437],[-70.7660645,62.596875],[-70.8512695,0.62704345703124964E2],[-70.9861328,0.62787792968750004E2],[-71.1369141,62.815918],[-71.1348633,62.8779785],[-70.6743164,62.8070313],[-70.442627,62.7337891],[-70.2688477,62.5780762],[-70.3370605,62.5487305]]],[[[-82.0004883,62.9541992],[-81.9644043,62.8276367],[-82.1137207,62.6522461],[-82.3880371,62.5191406],[-82.5682617,0.62403222656249994E2],[-83.0158203,0.62209912109374976E2],[-83.3768066,62.2381348],[-83.698877,62.1602539],[-83.7609375,0.62303515625000045E2],[-83.903125,0.62402490234375016E2],[-83.8992676,0.62476464843749994E2],[-83.7390625,62.5688477],[-83.376416,0.62904931640624994E2],[-83.2894531,0.62921582031250004E2],[-82.9657715,0.62873925781249966E2],[-82.7064453,62.9445312],[-82.4597168,62.9361816],[-82.2347656,0.62977441406250016E2],[-82.0004883,62.9541992]]],[[[-77.876709,0.63470556640625034E2],[-77.7037109,63.4308594],[-77.5384766,63.2870605],[-77.5938965,63.1884277],[-77.9424316,63.1144043],[-78.255957,63.2398437],[-78.46875,63.3579102],[-78.5073242,63.451123],[-78.2349121,63.4895508],[-77.876709,0.63470556640625034E2]]],[[[-76.6775879,0.63393945312499966E2],[-76.7831543,63.3840332],[-77.0572266,63.4497559],[-77.3647461,0.63588330078124955E2],[-77.1336914,0.63682031250000016E2],[-76.763623,63.573584],[-76.6524414,63.5035645],[-76.6775879,0.63393945312499966E2]]],[[[-77.6420898,63.9918945],[-77.7140625,0.63945703125000016E2],[-77.9288086,0.63962011718750055E2],[-77.9313477,64.0147949],[-77.710791,64.0356445],[-77.6420898,63.9918945]]],[[[-84.9196289,65.261084],[-84.8420898,65.2559082],[-84.6125,65.4473145],[-84.501123,65.4584473],[-84.2664062,65.3672363],[-84.0848633,65.2178223],[-83.7225586,65.1689941],[-83.4071289,65.1039062],[-83.2222656,64.9679687],[-82.9905762,64.9041016],[-82.667627,64.7803223],[-82.2716797,64.7211426],[-82.05,64.6442871],[-81.787207,64.4259766],[-81.676123,64.2126465],[-81.7209473,64.1188965],[-81.9026367,64.03125],[-81.7161133,64.021875],[-81.3356445,64.0757813],[-81.0050293,64.0333008],[-80.9211426,64.1004883],[-80.8289551,64.0899414],[-80.6075684,63.9720703],[-80.5791992,63.9092285],[-80.2613281,0.63801953124999955E2],[-80.3020508,63.762207],[-80.7117676,63.5963867],[-80.9535156,0.63480273437500045E2],[-81.0463867,0.63461572265624966E2],[-81.9633301,63.6644531],[-82.378125,63.7067871],[-82.4670898,63.9269531],[-82.5714844,63.9606934],[-83.0338867,64.0232422],[-83.0651367,64.1590332],[-83.3039551,64.1437988],[-83.4943359,64.0992188],[-83.6170898,64.0134277],[-83.6616211,63.8726074],[-83.7282715,63.8133789],[-84.0221191,63.6598633],[-84.3076172,0.63585791015625055E2],[-84.5062012,63.3900391],[-84.6329102,0.63309228515625016E2],[-84.9615234,63.1972168],[-85.392627,0.63119677734375045E2],[-85.4955078,63.1391113],[-85.5661133,63.2708984],[-85.7141602,63.657959],[-85.8046875,63.706543],[-86.3015625,63.6567871],[-86.5756836,0.63662304687500004E2],[-86.846875,0.63575292968750034E2],[-87.1771484,63.5951172],[-87.188916,63.6722656],[-87.0319336,63.8304199],[-86.8860352,0.63923730468749966E2],[-86.4217285,64.0515625],[-86.2520996,64.1368652],[-86.3544922,64.3765137],[-86.3742676,64.5658203],[-86.1882812,65.0103027],[-86.114209,65.4172852],[-86.0746094,65.5338379],[-85.9616699,65.704248],[-85.8139648,65.8319336],[-85.5546875,65.9186523],[-85.4424316,65.8455566],[-85.2411133,65.7955078],[-85.1053711,65.6227051],[-85.2399414,65.5103027],[-85.0560547,65.4374023],[-84.9196289,65.261084]]],[[[-84.6747559,65.575],[-84.7829102,65.5700684],[-84.9311523,65.6891602],[-85.0719727,65.7373535],[-85.1362793,65.8208496],[-85.1496094,66.0153809],[-84.9385742,66.0085449],[-84.691748,65.7931641],[-84.6026367,65.657373],[-84.6747559,65.575]]],[[[-83.7259766,65.7967285],[-83.4694336,65.7352051],[-83.2337402,65.7150391],[-83.3814453,65.6299805],[-83.5832031,65.6986328],[-83.6495117,65.6577637],[-83.7875488,65.6688965],[-83.7019043,65.7562012],[-83.8135742,65.7875],[-84.0084961,65.7515137],[-84.1182617,65.7717773],[-84.1432129,65.9159668],[-84.4505859,66.0644043],[-84.4071777,66.1310059],[-83.9503906,66.0274902],[-83.7013672,65.9201172],[-83.7259766,65.7967285]]],[[[-83.1234863,66.2828125],[-82.9313477,66.2573242],[-83.0598633,66.1992676],[-83.213916,66.2770508],[-83.1234863,66.2828125]]],[[[-108.092725,67.0051758],[-0.10780551757812492E3,66.998584],[-0.10783334960937502E3,66.9213379],[-0.10794394531249998E3,66.8578125],[-108.092725,67.0051758]]],[[[-0.62681542968749966E2,67.0562988],[-62.8054199,67.0288086],[-62.8716309,67.0625977],[-62.625293,67.1769531],[-62.3963379,67.1783203],[-0.62681542968749966E2,67.0562988]]],[[[-0.10789985351562497E3,67.4018066],[-0.10795024414062503E3,67.3182129],[-0.10815224609374997E3,67.4294434],[-0.10812753906249999E3,67.6285645],[-0.10799086914062494E3,67.6221191],[-107.989355,67.5135742],[-0.10789985351562497E3,67.4018066]]],[[[-109.166406,67.982373],[-0.10897050781249995E3,67.9797363],[-108.920166,67.8788086],[-0.10909624023437499E3,67.9240234],[-109.166406,67.982373]]],[[[-73.6217285,67.7838379],[-74.3740723,67.7895996],[-74.5733887,67.8286621],[-74.7459961,67.9848145],[-74.706543,68.0670898],[-74.3793945,68.093457],[-73.8807129,68.0219238],[-73.5840332,68.015332],[-73.4352539,67.9700195],[-73.4071777,67.7930664],[-73.6217285,67.7838379]]],[[[-0.10932314453124995E3,67.9908691],[-0.10949794921874994E3,68.0470215],[-0.10946914062500002E3,68.097998],[-109.341699,68.0458496],[-0.10932314453124995E3,67.9908691]]],[[[-86.5955566,67.7359375],[-86.861084,67.810498],[-86.9083008,67.867041],[-86.8470703,68.0102539],[-86.9598145,68.1002441],[-86.8848633,68.1905273],[-86.7020996,68.3056152],[-86.5699219,68.2876953],[-86.4519531,68.2254883],[-86.3824219,67.9272949],[-86.4469238,67.8169922],[-86.5955566,67.7359375]]],[[[-75.6758789,68.3225098],[-75.1538086,68.2340332],[-75.0634766,68.1412109],[-75.1273437,67.9652344],[-75.086377,67.751416],[-75.1272949,67.5373047],[-75.2019531,67.4591797],[-75.4000977,67.3666992],[-75.7800781,67.2835449],[-76.0489746,67.2620117],[-76.6939453,67.2358398],[-77.0048828,67.2669434],[-77.1570801,67.4083496],[-77.3059082,67.7061035],[-77.2285645,67.8500977],[-76.9447266,68.0909668],[-76.7402344,68.23125],[-76.3644531,68.3187012],[-76.1728027,68.3087891],[-75.8665039,68.3368164],[-75.6758789,68.3225098]]],[[[-78.9827148,68.1928223],[-79.1740234,68.2349609],[-79.1534668,68.3352539],[-78.9525879,68.3530273],[-78.8285156,68.2681641],[-78.9827148,68.1928223]]],[[[-0.10454067382812497E3,68.4059082],[-0.10485112304687497E3,68.4539551],[-0.10504174804687499E3,68.531543],[-0.10490727539062495E3,68.5817871],[-0.10460200195312503E3,68.5615234],[-0.10447211914062501E3,68.5035156],[-0.10445712890624998E3,68.4311523],[-0.10454067382812497E3,68.4059082]]],[[[-74.8808594,68.3486816],[-75.3101562,68.4744629],[-75.4002441,68.5254883],[-75.370166,68.636084],[-75.2874023,68.6877441],[-75.074707,68.6847168],[-74.9836426,68.6476074],[-74.7982422,68.457959],[-74.8808594,68.3486816]]],[[[-0.10184589843749994E3,68.5863281],[-0.10226635742187497E3,68.6636719],[-0.10227050781250003E3,68.7075684],[-0.10207436523437495E3,68.7740234],[-0.10201337890624995E3,68.8253906],[-0.10182836914062501E3,68.7989746],[-0.10172163085937494E3,68.7241211],[-0.10173203125000002E3,68.6521484],[-0.10184589843749994E3,68.5863281]]],[[[-0.10021723632812497E3,68.8066895],[-0.10039731445312498E3,68.7238281],[-0.10048066406249997E3,68.7861816],[-0.10061596679687501E3,68.7829102],[-0.10061157226562501E3,68.9901855],[-100.413965,69.0280762],[-0.10017846679687497E3,68.9039063],[-0.10021723632812497E3,68.8066895]]],[[[-99.9946777,69.0135254],[-0.10001801757812497E3,68.9540039],[-0.10014130859374995E3,68.9699219],[-0.10024199218749995E3,69.0403809],[-100.153125,69.1294922],[-0.10003535156249995E3,69.0865723],[-99.9946777,69.0135254]]],[[[-0.9049257812499997E2,69.2210937],[-0.9057441406249993E2,69.2094238],[-0.9074238281249995E2,69.3573242],[-0.9059970703125003E2,69.3678223],[-0.9049257812499997E2,69.2210937]]],[[[-79.2106445,68.845459],[-79.361377,68.857666],[-79.4057617,68.9230469],[-79.2426758,69.0492676],[-78.9,69.1354004],[-78.8041016,69.2351074],[-78.6620117,69.2623535],[-78.6890625,69.3250977],[-78.5966797,69.3706055],[-78.3325684,69.3860352],[-78.2289551,69.3040039],[-78.5329102,69.1460449],[-78.5956543,69.0790527],[-78.8526855,68.9156738],[-79.2106445,68.845459]]],[[[-90.1998047,69.4190918],[-0.9017739257812497E2,69.3570801],[-0.9033027343749993E2,69.2521973],[-0.9049204101562503E2,69.369873],[-90.3220703,69.4287109],[-90.1998047,69.4190918]]],[[[-76.9953613,69.14375],[-77.2150391,69.1380859],[-77.3793945,69.2740234],[-77.3187012,69.4163086],[-77.1875488,69.4400879],[-76.7457031,69.4040039],[-76.6688477,69.3661621],[-76.9112305,69.1746582],[-76.9953613,69.14375]]],[[[-101.171729,69.3970703],[-0.10126850585937498E3,69.3905762],[-101.230127,69.4928223],[-101.351318,69.5592285],[-0.10109833984374997E3,69.5407715],[-0.10100063476562495E3,69.4619141],[-101.171729,69.3970703]]],[[[-0.9551367187499997E2,69.5736328],[-0.9538090820312493E2,69.5065918],[-0.9539941406249997E2,69.4197754],[-95.4962402,69.3500977],[-95.730127,69.3475586],[-0.9567016601562497E2,69.402002],[-0.9570410156249997E2,69.5380371],[-95.8177734,69.5405762],[-95.8118164,69.4470215],[-95.893457,69.3517578],[-95.9859375,69.3918945],[-0.9593623046875001E2,69.567041],[-95.7977539,69.6257324],[-0.9551367187499997E2,69.5736328]]],[[[-139.043115,69.5769043],[-139.125732,69.5393066],[-0.13929140624999997E3,69.5978516],[-0.13913959960937498E3,69.6496094],[-0.13887885742187498E3,69.5896973],[-139.043115,69.5769043]]],[[[-67.9146973,69.5409668],[-68.2023438,69.5804199],[-68.2213867,69.616748],[-67.9891113,69.6787598],[-67.8291016,69.675],[-67.7545898,69.6314453],[-67.9146973,69.5409668]]],[[[-78.0291016,69.7148926],[-77.9691406,69.6389648],[-78.4700684,69.5025391],[-78.8481934,69.4828125],[-78.5785645,69.6388184],[-78.2955078,69.6671387],[-78.1452148,69.739209],[-78.0291016,69.7148926]]],[[[-79.4306641,69.787793],[-79.3649902,69.7123535],[-79.552832,69.6308594],[-79.8816895,69.6086914],[-80.0475098,69.6343262],[-79.977832,69.509668],[-80.1614746,69.5359375],[-80.4480469,69.649707],[-80.7782227,69.677002],[-80.7266113,69.7404297],[-80.465918,69.7371094],[-80.4242188,69.7976074],[-80.2136719,69.8019531],[-80.1246094,69.7372559],[-79.9708496,69.7389648],[-79.5939941,69.810498],[-79.4306641,69.787793]]],[[[-97.4394531,69.6426758],[-0.9723608398437497E2,69.6734863],[-96.8751953,69.5100098],[-0.9669453124999995E2,69.4710937],[-96.2999512,69.3443848],[-0.9618374023437497E2,69.2586914],[-95.9513672,69.0237305],[-95.7513672,68.8976562],[-95.585498,68.8351074],[-95.3741699,68.8921387],[-95.2677734,68.8260742],[-95.4655762,68.7472656],[-95.6856445,68.7358398],[-95.8946289,68.6272461],[-0.9602402343750003E2,68.6072754],[-0.9640156249999995E2,68.4707031],[-96.5988281,68.4608398],[-0.9700839843750003E2,68.5386719],[-97.2636719,68.5277344],[-97.4720215,68.5437012],[-97.8853516,68.6724609],[-98.2350586,68.7393555],[-98.3205566,68.8427246],[-98.5396484,68.7982422],[-0.9882963867187497E2,68.838623],[-0.9890449218749995E2,68.9324219],[-99.057373,68.9176758],[-99.090625,68.8633301],[-99.2540039,68.8631836],[-99.4408691,68.9176758],[-0.9956406249999995E2,69.0341309],[-99.4557129,69.1312012],[-98.912207,69.1675781],[-0.9872363281249997E2,69.2191406],[-0.9845595703124995E2,69.334668],[-98.5367188,69.4780273],[-98.4483887,69.479541],[-98.5459961,69.5729004],[-98.3893555,69.5650391],[-0.9822231445312497E2,69.4845215],[-98.0413574,69.4566406],[-0.9816298828124997E2,69.512207],[-0.9828881835937503E2,69.6290039],[-98.2682129,69.7544434],[-0.9808076171875001E2,69.8330566],[-97.7907227,69.8616211],[-0.9741137695312497E2,69.7384766],[-97.4394531,69.6426758]]],[[[-86.9130371,70.1132324],[-86.6127441,70.1057129],[-86.5152344,70.017041],[-86.7343262,69.9763184],[-87.1908203,70.0185547],[-87.3231445,70.1022461],[-87.1072754,70.1466797],[-86.9130371,70.1132324]]],[[[-0.10030834960937497E3,70.4958008],[-0.10064775390625002E3,70.5631348],[-0.10063530273437496E3,70.6703125],[-0.10043393554687498E3,70.6494141],[-0.10027612304687497E3,70.5946289],[-0.10030834960937497E3,70.4958008]]],[[[-74.7088867,45.0038574],[-74.8566406,45.0039063],[-75.1793945,0.44899365234375125E2],[-75.4012695,44.7722656],[-75.7919434,44.4970703],[-75.8759277,0.44416992187500085E2],[-76.1511719,44.3039551],[-76.4645996,44.0576172],[-76.8199707,43.6288086],[-78.458252,43.6314941],[-78.7204102,0.43624951171875004E2],[-79.171875,0.43466552734375085E2],[-79.0592285,43.2780762],[-79.0660645,43.1061035],[-78.9150879,42.9091309],[-79.0367187,42.8023437],[-80.2475586,0.42366015625000045E2],[-81.2776367,42.2091797],[-82.4390625,41.6748535],[-82.6900391,0.41675195312499994E2],[-83.0299805,41.832959],[-83.1419434,41.9758789],[-83.1496582,42.1419434],[-83.0731445,0.42300292968749964E2],[-82.8677734,42.3852051],[-82.5453125,42.624707],[-82.4883301,0.42739501953125114E2],[-82.4082031,0.43072656250000136E2],[-82.1378418,0.43570898437500034E2],[-82.4850586,45.0837402],[-82.5510742,45.3473633],[-82.7604004,45.4477051],[-83.5926758,45.8171387],[-83.4694824,45.9946777],[-83.6159668,0.46116845703124994E2],[-83.9777832,46.0849121],[-84.0883789,0.46226513671874955E2],[-84.1504883,46.4447754],[-84.1251953,0.46527246093750136E2],[-84.1921875,46.5495605],[-84.401709,46.515625],[-84.5617676,46.457373],[-84.7793945,46.6373047],[-84.8759766,46.8999023],[-86.4285645,0.47540087890625045E2],[-88.1606445,0.48225390625000045E2],[-88.3781738,48.3030762],[-88.6117676,48.2640137],[-89.1856445,48.0474121],[-89.4556641,47.9962402],[-89.9936523,48.015332],[-0.9009179687500003E2,48.1181152],[-0.9032011718749989E2,48.0991699],[-0.9074438476562491E2,48.1045898],[-0.9084033203125003E2,48.2005371],[-0.9104345703124991E2,48.1937012],[-0.9122065429687495E2,48.1045898],[-0.9138720703124997E2,48.0585449],[-0.9151831054687493E2,0.48058300781250125E2],[-91.8583984,0.48197558593750074E2],[-92.0051758,48.3018555],[-92.1717773,48.3383789],[-92.4145996,48.2766113],[-0.9250058593749995E2,48.4353516],[-0.9273266601562489E2,48.5318359],[-92.9962402,0.48611816406250085E2],[-93.3778809,48.6165527],[-93.463623,48.5612793],[-0.9370771484374995E2,0.48525439453125074E2],[-0.9385161132812495E2,0.48607275390625034E2],[-0.9405517578125003E2,48.6590332],[-94.6208984,48.742627],[-0.9470507812499991E2,0.48808496093749994E2],[-94.8425781,0.49119189453125074E2],[-0.9485434570312493E2,0.49304589843749994E2],[-94.9393555,49.3494141],[-0.9515527343749997E2,49.3696777],[-0.9516206054687493E2,0.48991748046875045E2],[-0.9539790039062493E2,48.9931641],[-0.12278876953124994E3,48.9930176],[-0.12292416992187489E3,49.0746582],[-0.12306328124999999E3,48.9777344],[-0.12311762695312495E3,49.0563477],[-0.12307954101562494E3,0.49130615234375085E2],[-0.12319633789062502E3,49.1477051],[-0.12322944335937491E3,0.49260498046875085E2],[-0.12294765624999997E3,49.2932617],[-0.12296445312499992E3,49.3293457],[-0.12327675781249995E3,49.3439453],[-123.1875,0.49680322265624994E2],[-123.325,0.49577685546875045E2],[-0.12333564453124997E3,49.4591797],[-0.12353056640624987E3,49.3973145],[-0.12385893554687492E3,49.4828613],[-0.12402861328125002E3,0.49602880859375006E2],[-0.12399262695312495E3,49.7361816],[-0.12392275390624994E3,0.49717529296875114E2],[-0.12381718749999993E3,49.5865723],[-0.12358247070312498E3,49.68125],[-0.12376269531250003E3,49.6584961],[-0.12390380859374991E3,49.795459],[-0.12390424804687491E3,49.9811523],[-0.12378466796874997E3,0.50087988281250084E2],[-0.12394589843749993E3,50.1839355],[-0.12386572265624996E3,0.50072070312500045E2],[-0.12397138671874991E3,49.9695313],[-0.12397211914062497E3,0.49892041015625125E2],[-0.12414160156249993E3,0.49792675781250125E2],[-124.28125,49.7721191],[-124.483252,0.49808203125000084E2],[-0.12478237304687492E3,50.0201172],[-0.12478427734374996E3,50.0728027],[-0.12505668945312493E3,50.4186523],[-0.12486264648437493E3,0.50637304687500084E2],[-0.12487543945312497E3,50.8256348],[-0.12505878906249993E3,50.5138672],[-0.12520986328124997E3,50.4763184],[-0.12547631835937489E3,50.497168],[-0.12553935546874996E3,50.6490234],[-0.12561015624999989E3,50.4860352],[-125.772412,50.5082031],[-0.12596503906249998E3,0.50487353515625074E2],[-0.12644995117187494E3,50.549707],[-0.12641611328124988E3,50.6069824],[-0.12589760742187494E3,50.684375],[-0.12598071289062489E3,50.711377],[-126.370312,50.666748],[-126.514355,50.6793945],[-0.12651733398437496E3,0.50724462890625055E2],[-0.12637460937499995E3,50.8373535],[-0.12652177734374989E3,50.8660645],[-0.12648461914062497E3,50.960498],[-0.12651733398437496E3,51.0568359],[-0.12663178710937494E3,50.9151367],[-126.9604,50.8937012],[-127.057568,50.8675293],[-0.12726748046874995E3,50.9160645],[-127.441211,0.50989404296875044E2],[-0.12770810546874999E3,51.1511719],[-0.12771430664062493E3,0.51268652343750084E2],[-0.12763271484374992E3,0.51427294921875074E2],[-0.12741967773437496E3,0.51608056640625136E2],[-0.12728066406250005E3,51.6541016],[-0.12696811523437488E3,51.6699219],[-0.12669145507812502E3,51.703418],[-0.12703408203125001E3,51.7166992],[-0.12733872070312488E3,51.707373],[-0.12744272460937495E3,51.6789551],[-0.12764487304687502E3,51.4784668],[-0.12771406249999998E3,51.4901855],[-0.12781894531249993E3,51.6039062],[-0.12786914062499994E3,51.7752441],[-0.12782998046875005E3,51.8790039],[-0.12772763671874989E3,51.9932129],[-0.12785878906249998E3,51.9902832],[-0.12779536132812491E3,52.1910156],[-0.12743793945312503E3,52.3561523],[-0.12724223632812496E3,0.52395117187500084E2],[-127.175732,52.3148438],[-0.12700795898437492E3,52.2906738],[-0.12682631835937495E3,52.1251465],[-0.12675263671875003E3,52.1123535],[-0.12689521484375004E3,0.52225488281249994E2],[-0.12693818359374993E3,52.3085938],[-0.12712705078124993E3,52.3709473],[-0.12720825195312496E3,0.52498242187500125E2],[-126.995215,52.6579102],[-0.12695131835937492E3,52.7212402],[-0.12701933593750002E3,52.8424805],[-0.12703486328124998E3,0.52681738281250034E2],[-0.12751923828124998E3,0.52359277343750044E2],[-0.12779189453124992E3,52.2893555],[-0.12790219726562492E3,52.1508789],[-127.99541,51.9505371],[-0.12810224609374993E3,51.7884277],[-0.12819355468749993E3,51.998291],[-128.357617,52.1588867],[-128.0375,0.52318164062500045E2],[-128.060303,0.52427539062500095E2],[-0.12794023437499995E3,52.545166],[-0.12803823242187494E3,52.5311523],[-0.12827153320312493E3,52.3629883],[-0.12827514648437497E3,0.52435498046875125E2],[-0.12810878906249988E3,52.8580566],[-0.12810595703124997E3,52.9068848],[-128.365039,52.8257813],[-0.12845195312500005E3,52.8766113],[-0.12852470703125002E3,0.53140673828125095E2],[-128.652344,53.2438477],[-128.868555,53.328125],[-0.12908090820312492E3,53.3672852],[-129.171582,53.5335938],[-129.114453,0.53641113281250085E2],[-128.935596,53.7151855],[-128.85459,53.704541],[-0.12890561523437492E3,53.5593262],[-0.12883305664062493E3,53.5494141],[-0.12854213867187488E3,0.53420654296875114E2],[-0.12835805664062497E3,53.4598145],[-0.12813271484375002E3,0.53417773437500045E2],[-0.12792783203124999E3,0.53274707031250045E2],[-127.950049,53.329834],[-128.207227,0.53483203125000074E2],[-0.12846962890624997E3,53.4708984],[-0.12867553710937494E3,53.5545898],[-128.767871,0.53710205078125114E2],[-0.12871474609374988E3,53.8100098],[-128.532129,53.8581055],[-0.12870478515624993E3,0.53918603515625136E2],[-0.12889018554687496E3,53.8297852],[-128.959375,53.8414551],[-129.208105,53.6416016],[-0.12928427734374995E3,0.53393164062500006E2],[-0.12946240234374991E3,53.346582],[-0.12956372070312506E3,0.53251464843750114E2],[-129.821777,53.4127441],[-0.12991186523437491E3,53.5513672],[-0.13007436523437497E3,53.5756348],[-130.263281,0.53654150390625055E2],[-0.13033525390625002E3,0.53723925781250074E2],[-0.13023286132812495E3,53.8674316],[-0.13008593750000003E3,53.9757812],[-0.13004331054687492E3,54.1335449],[-0.12979077148437494E3,54.1657715],[-129.626025,54.2302734],[-0.12989843749999994E3,54.2263672],[-0.13008422851562503E3,54.1813965],[-0.13029033203124993E3,0.54270361328125034E2],[-130.430273,54.4209961],[-130.37002,54.6200195],[-0.13021894531249995E3,54.7302734],[-0.12989013671874994E3,55.1646484],[-0.12956064453124992E3,55.4625488],[-129.701318,55.4385742],[-0.12979516601562503E3,55.5595703],[-0.12983774414062492E3,55.3190918],[-0.13004848632812494E3,55.0572754],[-0.13009179687499997E3,0.55107763671875084E2],[-0.12999584960937497E3,55.2640625],[-0.12998515624999993E3,55.3588379],[-0.13007998046875005E3,55.5628906],[-0.13008510742187494E3,55.751709],[-0.13002031249999987E3,0.55880761718750016E2],[-0.13002290039062495E3,56.014502],[-0.13009785156249995E3,56.1092773],[-0.13021469726562486E3,56.0828125],[-0.13041313476562487E3,56.1225098],[-0.13047709960937496E3,0.56230566406250034E2],[-130.649072,56.2636719],[-0.13074169921875006E3,0.56340820312500114E2],[-131.08291,56.404834],[-0.13157509765625002E3,56.5988281],[-0.13182426757812496E3,56.5899902],[-0.13186616210937495E3,56.7928223],[-0.13210429687499987E3,56.8567871],[-0.13203154296874993E3,57.0265625],[-0.13233798828124992E3,57.0794434],[-0.13223217773437494E3,0.57198535156250074E2],[-0.13255048828124995E3,57.4999023],[-0.13291684570312486E3,57.877002],[-133.275293,58.2228516],[-0.13342255859374995E3,0.58337060546875016E2],[-0.13340112304687494E3,0.58410888671874964E2],[-133.820752,58.7050293],[-0.13421850585937503E3,0.58849902343750045E2],[-0.13429697265624995E3,58.8984863],[-0.13444077148437492E3,59.0853516],[-0.13467724609374997E3,59.1992676],[-134.94375,59.2882812],[-0.13507128906249994E3,59.4414551],[-0.13505102539062491E3,59.5786621],[-0.13547592773437484E3,0.59793261718750045E2],[-135.934668,0.59662646484375074E2],[-136.321826,59.604834],[-0.13624711914062496E3,59.5329102],[-0.13634785156249995E3,0.59456054687500085E2],[-0.13646635742187493E3,0.59459082031250006E2],[-0.13646674804687495E3,59.2799316],[-0.13657875976562494E3,59.1522461],[-0.13681328125000002E3,59.1500488],[-137.277539,58.9881836],[-0.13743857421874995E3,58.903125],[-0.13752089843749994E3,58.9153809],[-0.13748417968749993E3,58.9912109],[-0.13759331054687493E3,0.59226269531249976E2],[-0.13863227539062504E3,59.7782715],[-0.13870546874999997E3,59.9013184],[-0.13904345703124997E3,59.9932617],[-0.13918515624999986E3,0.60083593750000034E2],[-0.13907924804687497E3,0.60279443359375136E2],[-0.13907924804687497E3,60.3437012],[-0.13967631835937505E3,0.60328320312499976E2],[-0.13997329101562497E3,0.60183154296875074E2],[-0.14045283203125004E3,0.60299707031250016E2],[-140.525439,60.2183594],[-0.14100214843750004E3,60.3002441],[-0.14100214843750004E3,69.6507813],[-140.405127,69.6024902],[-0.13997661132812493E3,69.6217285],[-0.13918154296874997E3,69.5155273],[-0.13868989257812495E3,69.3167969],[-0.13829101562499997E3,69.219043],[-0.13812836914062495E3,69.1519531],[-0.13725996093749998E3,68.9641113],[-0.13707041015624992E3,68.9508789],[-0.13671733398437493E3,68.8891602],[-0.13649868164062502E3,68.8973145],[-0.13612236328124993E3,68.8822266],[-0.13586665039062498E3,68.8326172],[-0.13536215820312486E3,68.6964355],[-0.13523120117187503E3,68.6942871],[-0.13540693359374995E3,68.8289551],[-0.13563798828124993E3,68.8922363],[-135.876318,68.9169922],[-0.13587285156249993E3,69.0010254],[-0.13558999023437494E3,69.008252],[-0.13591020507812487E3,69.1114746],[-135.691455,69.3111816],[-0.13549956054687487E3,69.3371582],[-0.13529282226562486E3,69.3078613],[-0.13522978515624993E3,69.4251953],[-135.14082,69.4678223],[-0.13485288085937495E3,69.4858887],[-134.493848,69.4679199],[-0.13449536132812506E3,69.5719238],[-0.13440893554687494E3,69.6817871],[-0.13424204101562495E3,69.6688477],[-0.13407749023437492E3,69.5578613],[-0.13389995117187487E3,69.5282227],[-0.13394746093749995E3,69.4294922],[-0.13417431640624991E3,69.252832],[-0.13369404296875004E3,69.3684082],[-0.13316313476562496E3,69.4338867],[-0.13302827148437495E3,69.508252],[-132.915332,69.6296387],[-0.13284033203124994E3,69.6506836],[-132.403906,69.6587402],[-0.13256835937500003E3,69.6981445],[-0.13233398437499997E3,69.7518066],[-0.13216342773437498E3,69.7049805],[-0.13193413085937496E3,69.7534668],[-0.13144091796875003E3,69.9179199],[-0.13113637695312497E3,69.9068848],[-0.13092617187500005E3,70.0516113],[-0.13066547851562495E3,70.1270508],[-0.13049843749999997E3,70.1431641],[-0.13017495117187497E3,70.0858887],[-0.12994497070312497E3,70.090918],[-0.12973007812499998E3,70.1920898],[-0.12953842773437495E3,70.1051758],[-0.12964829101562495E3,69.9977539],[-0.13045883789062486E3,69.7799805],[-0.13070854492187493E3,69.6859863],[-0.13096010742187497E3,69.6320313],[-131.862793,69.5493652],[-131.98877,69.517627],[-132.12876,69.4023438],[-0.13233076171874995E3,69.307959],[-0.13268671874999995E3,69.2598633],[-132.81748,69.2057617],[-0.13308945312499986E3,69.0287598],[-133.378955,68.8866699],[-0.13334838867187494E3,68.769873],[-133.138037,68.746582],[-0.13331953124999995E3,68.8197266],[-0.13330400390624987E3,68.8474121],[-132.706006,68.8148926],[-0.13254223632812506E3,68.8899414],[-0.13270434570312503E3,68.8958984],[-0.13277011718749998E3,69.0121582],[-0.13271894531249998E3,69.0791992],[-0.13254516601562494E3,69.140625],[-132.358057,69.1669434],[-0.13191962890624995E3,69.2905273],[-0.13178105468749993E3,69.3888672],[-0.13178837890625002E3,69.4319824],[-0.13156293945312493E3,69.461377],[-0.13134291992187494E3,69.4354004],[-131.293896,69.3637207],[-0.13111284179687487E3,69.4594727],[-0.13101342773437497E3,69.4287109],[-0.13097065429687493E3,69.209082],[-0.13087504882812505E3,69.3200195],[-0.13066069335937493E3,69.4812988],[-0.13035361328124992E3,69.6558105],[-130.117627,69.7200684],[-0.12957211914062484E3,69.826709],[-0.12910913085937494E3,69.8819336],[-0.12888369140625005E3,69.9634766],[-0.12893862304687505E3,69.875],[-0.12913833007812508E3,69.8325195],[-0.12910170898437508E3,69.717041],[-128.971436,69.7124023],[-128.705518,69.8101563],[-0.12838671874999994E3,69.9601563],[-0.12827861328124987E3,70.1081055],[-0.12809584960937497E3,70.1613281],[-0.12776494140624995E3,70.221875],[-0.12768378906249994E3,70.2603516],[-0.12797402343750001E3,70.2929199],[-0.12798891601562494E3,70.3631348],[-0.12817011718749998E3,70.418457],[-0.12812729492187486E3,70.5238281],[-0.12799101562499993E3,70.5738281],[-0.12775283203125005E3,70.5171387],[-0.12737685546874994E3,70.36875],[-0.12713847656249995E3,70.2393555],[-126.926807,70.0617187],[-126.684912,69.7770996],[-0.12625043945312495E3,69.5452637],[-0.12606381835937495E3,69.4670898],[-0.12572778320312497E3,69.3799805],[-0.12538676757812497E3,69.3492187],[-125.171875,69.4279785],[-125.166846,69.4797852],[-0.12535693359374991E3,69.6259766],[-0.12521938476562505E3,69.732373],[-0.12520117187499997E3,69.8288086],[-0.12507958984374989E3,69.8178223],[-124.76792,69.9900391],[-0.12499038085937494E3,70.0266113],[-0.12474511718749996E3,70.0801758],[-0.12455502929687488E3,70.1512207],[-0.12444448242187491E3,70.1105957],[-124.471924,69.9185059],[-0.12440693359374991E3,69.7674316],[-0.12412460937499996E3,69.6899902],[-0.12413847656250002E3,69.6531738],[-0.12448134765624998E3,69.4251465],[-0.12442617187499992E3,69.3794434],[-0.12360913085937491E3,69.3774414],[-0.12346044921874991E3,69.4200195],[-123.361475,69.4966309],[-123.213672,69.5415039],[-0.12311040039062492E3,69.7381348],[-123.025781,69.8100098],[-122.070068,69.8161621],[-121.741846,69.7975098],[-0.12133623046874996E3,69.7415527],[-0.12081464843749993E3,69.6168457],[-0.12029252929687495E3,69.4205566],[-0.11985283203124989E3,69.342334],[-0.11886870117187495E3,69.2571777],[-0.11809521484374994E3,69.0429199],[-0.11731127929687503E3,68.9349121],[-116.549951,68.8788086],[-0.11633408203124989E3,68.8736328],[-0.11605947265624998E3,68.8370117],[-0.11625161132812495E3,68.9579102],[-115.936084,68.9581055],[-0.11588325195312495E3,68.9873047],[-0.11563115234374996E3,68.9725586],[-114.99375,68.8500488],[-0.11462016601562496E3,68.7460938],[-0.11441386718749992E3,68.6595703],[-0.11396440429687493E3,68.3990723],[-114.095947,68.2667969],[-0.11427475585937493E3,68.2478516],[-0.11476528320312494E3,68.2702148],[-0.11485219726562498E3,68.1952637],[-0.11512705078124992E3,68.1320312],[-0.11516708984375002E3,68.0185547],[-0.11543447265624995E3,67.9023438],[-0.11513320312499992E3,67.8191895],[-0.11466289062499995E3,67.7952148],[-0.11426704101562495E3,67.7311523],[-0.11389321289062501E3,67.7068848],[-0.11321499023437494E3,67.7017578],[-0.11287944335937489E3,67.6798828],[-0.11243515624999988E3,67.6847656],[-0.11223671874999995E3,67.7311035],[-0.11157573242187493E3,67.7568359],[-111.192188,67.8225586],[-0.11108740234374993E3,67.7876465],[-0.11080488281249993E3,67.8323242],[-0.11037197265624992E3,67.9541992],[-0.11021625976562491E3,67.9540039],[-0.11010195312499998E3,67.9922363],[-0.10993652343750003E3,67.8878906],[-109.831348,67.8658203],[-0.10963037109374991E3,67.7327148],[-0.10922431640624997E3,67.7297852],[-109.08125,67.7107422],[-0.10899448242187495E3,67.6371094],[-0.10894990234374993E3,67.4939453],[-0.10881518554687503E3,67.4375],[-0.10871513671874989E3,67.5828125],[-0.10859291992187495E3,67.5908691],[-0.10849150390624987E3,67.4833008],[-0.10834697265624993E3,67.403418],[-0.10798872070312495E3,67.2563965],[-0.10790917968749991E3,67.1625488],[-0.10799130859374995E3,67.095166],[-108.220801,67.0505859],[-0.10849604492187491E3,67.0922852],[-0.10810146484374992E3,66.8603516],[-107.760937,66.6836914],[-0.10748032226562495E3,66.4917969],[-0.10727807617187496E3,66.4249023],[-0.10756445312499993E3,66.6185059],[-0.10771035156250001E3,66.7400391],[-0.10774599609374998E3,66.9614746],[-0.10762617187499991E3,67.003125],[-0.10749921874999997E3,66.9361816],[-0.10740209960937491E3,66.947998],[-0.10715649414062497E3,66.8817383],[-0.10734785156249995E3,67.0547852],[-0.10728315429687493E3,67.1032715],[-0.10748237304687493E3,67.1991211],[-107.644043,67.3847656],[-0.10764990234374994E3,67.5112793],[-107.865088,67.639209],[-0.10797211914062504E3,67.7320313],[-107.958398,67.8186035],[-107.763086,67.9068359],[-107.728613,67.9588379],[-0.10779829101562498E3,68.0369141],[-0.10735112304687492E3,68.0611816],[-107.124805,68.1084473],[-0.10683564453124997E3,68.1286133],[-0.10666840820312491E3,68.2160156],[-0.10642426757812491E3,68.2005859],[-0.10640439453124995E3,68.3193359],[-106.27124,68.3832031],[-0.10603930664062491E3,68.4073242],[-0.10578120117187491E3,68.5265625],[-0.10577431640624994E3,68.6111328],[-0.10593222656249995E3,68.6365234],[-0.10645805664062496E3,68.5164551],[-0.10660849609374988E3,68.357373],[-106.78042,68.3873047],[-0.10694580078125003E3,68.3743652],[-0.10714619140624991E3,68.3041992],[-0.10729814453124996E3,68.2964355],[-0.10761933593749994E3,68.3310547],[-0.10774150390624995E3,68.2857422],[-107.677637,68.2029297],[-0.10773417968749989E3,68.1737305],[-0.10826103515625002E3,68.1499023],[-0.10868657226562493E3,68.2773438],[-0.10864091796874996E3,68.3785156],[-0.10831347656249996E3,68.610791],[-0.10776635742187496E3,68.6489258],[-0.10743593750000005E3,68.6888672],[-0.10683066406249993E3,68.8094727],[-0.10671347656249995E3,68.8194824],[-0.10616445312499992E3,68.919873],[-0.10579794921874993E3,68.8647949],[-0.10568559570312487E3,68.8281738],[-0.10553984374999995E3,68.7186523],[-0.10545693359374994E3,68.5780762],[-0.10542861328124992E3,68.458252],[-0.10519497070312494E3,68.3303711],[-0.10504360351562492E3,68.2878906],[-0.10493671874999991E3,68.3030273],[-0.10491196289062493E3,68.2504883],[-0.10465317382812486E3,68.2300781],[-104.661133,68.1487793],[-0.10448681640624991E3,68.0631836],[-0.10419355468749994E3,68.0312012],[-0.10365722656249993E3,68.0690918],[-0.10347412109374993E3,68.1150391],[-0.10302177734374996E3,67.9402344],[-0.10284155273437493E3,67.8527344],[-0.10232036132812489E3,67.7356445],[-101.883643,67.7453125],[-0.10155498046874992E3,67.6931641],[-0.10085561523437498E3,67.7989746],[-0.10061611328125005E3,67.808252],[-0.10045610351562496E3,67.8394531],[-99.7729492,67.8148437],[-0.9947226562499989E2,67.784082],[-0.9903217773437503E2,67.7188477],[-0.9869726562499991E2,67.7797363],[-0.9841210937499991E2,67.8071777],[-0.9870356445312495E2,67.9657227],[-0.9872006835937495E2,68.0419922],[-98.631543,68.0725586],[-0.9841479492187501E2,67.9884277],[-98.0625488,67.7696777],[-97.9307617,67.710791],[-0.9760742187500003E2,67.6310547],[-97.4549316,67.6169922],[-0.9715541992187505E2,67.726416],[-0.9720654296874989E2,67.8550781],[-97.5466309,67.9607422],[-0.9773911132812495E2,67.9781738],[-98.110498,67.9030273],[-98.1925293,67.922998],[-98.4383789,68.0646973],[-0.9850024414062503E2,68.1322754],[-0.9838608398437495E2,68.115332],[-0.9844916992187493E2,68.2007812],[-0.9865048828124989E2,68.3635254],[-98.4685547,68.3821289],[-98.2185547,68.3174316],[-97.7942383,68.3875977],[-0.9793886718750005E2,68.5104492],[-0.9782856445312495E2,68.5327637],[-97.6395508,68.4819824],[-0.9741035156249993E2,68.4965332],[-97.265918,68.4529297],[-0.9697670898437497E2,68.2554199],[-0.9662817382812491E2,68.250293],[-0.9643066406249991E2,68.3105957],[-0.9648022460937489E2,68.2428223],[-96.7251465,68.0612305],[-0.9659218749999995E2,68.0484375],[-0.9643935546874991E2,68.1508789],[-95.9703125,68.2491211],[-96.0360352,68.1577637],[-0.9617133789062493E2,67.8316895],[-0.9619882812499993E2,67.7178223],[-96.3713867,67.5538574],[-96.3691406,67.5097656],[-96.1850098,67.3755859],[-96.1414551,67.2718262],[-96.0125977,67.2708984],[-95.7199219,67.3167969],[-0.9577768554687495E2,67.1846191],[-95.5287109,67.2091797],[-0.9541591796875005E2,67.1555664],[-95.4188965,67.0132324],[-95.559375,66.9727539],[-95.7686523,66.9666992],[-0.9601953124999991E2,67.01875],[-0.9621557617187497E2,66.9977051],[-96.3504395,67.0700195],[-96.3595215,66.9894043],[-95.8853027,66.7413574],[-0.9577211914062505E2,66.7260742],[-0.9601611328125001E2,66.870459],[-95.9723633,66.9522461],[-0.9562504882812493E2,66.9162598],[-95.4903809,66.9241211],[-0.9535410156249989E2,66.9807129],[-95.3210937,67.1524902],[-0.9525874023437493E2,67.2625488],[-0.9529560546874995E2,67.3610352],[-95.4633789,67.6102051],[-95.6504883,67.7374512],[-0.9546069335937503E2,68.0213867],[-95.384082,68.0555664],[-95.1258789,68.0833008],[-94.8610352,68.0416504],[-0.9474443359374993E2,68.0708984],[-94.3838379,68.227002],[-0.9409814453124991E2,68.3994141],[-0.9392773437499991E2,68.4738281],[-0.9365170898437489E2,68.5431152],[-93.4489258,68.6188965],[-0.9364394531249991E2,68.6331055],[-93.6761719,68.6859863],[-0.9368144531249993E2,68.8872559],[-0.9376572265624995E2,68.9695801],[-0.9389609374999995E2,68.9821777],[-0.9399155273437495E2,68.8206055],[-0.9406489257812495E2,68.7847656],[-94.4783203,68.7427734],[-0.9458676757812489E2,68.7755371],[-94.5625488,68.9116699],[-94.2366211,69.0497559],[-0.9408115234374989E2,69.1358398],[-0.9425537109374997E2,69.1514648],[-94.2547363,69.3137695],[-0.9415634765624995E2,69.341748],[-93.6194824,69.4169922],[-0.9380097656249993E2,69.2809082],[-93.7485352,69.226123],[-0.9343095703124995E2,69.3750488],[-93.5370605,69.3823242],[-93.5322754,69.4809082],[-0.9364980468750005E2,69.519043],[-94.0152832,69.4467285],[-94.2708008,69.455127],[-0.9441918945312503E2,69.517041],[-0.9463383789062495E2,69.6496582],[-94.8225098,69.5777832],[-0.9529208984374995E2,69.6673828],[-95.7074219,69.7782227],[-0.9596494140624989E2,69.8027832],[-0.9611909179687503E2,69.871875],[-96.2693848,69.9917969],[-96.4923828,70.1249023],[-96.5513672,70.2103027],[-96.5456055,70.3272461],[-0.9622641601562489E2,70.5416992],[-0.9604814453124987E2,70.5670898],[-95.8786133,70.5489746],[-95.9881836,70.6168457],[-0.9590639648437505E2,70.6977539],[-96.1864258,70.6382813],[-96.3588867,70.6786621],[-0.9654892578124995E2,70.8087402],[-96.5510742,70.8897461],[-0.9647041015624993E2,71.0697266],[-96.5247559,71.1270508],[-0.9642075195312493E2,71.1764648],[-96.4056641,71.2736328],[-0.9613964843749997E2,71.3963867],[-0.9592407226562491E2,71.3930664],[-0.9572539062499995E2,71.3281738],[-95.5642578,71.3367676],[-95.40625,71.4916504],[-95.8303711,71.5260742],[-95.8723145,71.5731445],[-0.9561591796874991E2,71.6854004],[-0.9551166992187491E2,71.7768066],[-0.9520122070312493E2,71.9037109],[-94.7348633,71.982959],[-0.9455708007812495E2,71.9789551],[-94.4788086,71.848584],[-0.9430834960937491E2,71.7648926],[-93.8102051,71.7662598],[-93.7462891,71.7428223],[-93.7628418,71.6380371],[-0.9325634765624991E2,71.4608398],[-93.0312988,71.3356934],[-0.9294868164062491E2,71.2621094],[-92.8827148,71.0693359],[-92.9041992,70.9160645],[-92.9814453,70.8522461],[-0.9278300781249993E2,70.7981445],[-92.6416992,70.7187988],[-0.9238847656249993E2,70.6504395],[-92.2144531,70.4929199],[-92.0491211,70.3896484],[-92.0726074,70.31875],[-0.9198354492187505E2,70.2855469],[-0.9182041015624995E2,70.3416504],[-91.715625,70.2992188],[-0.9156406249999995E2,70.1782715],[-0.9161611328124997E2,70.1478516],[-0.9199497070312489E2,70.1432129],[-92.290332,70.2398438],[-92.5118652,70.1038574],[-92.445752,70.0831543],[-92.127002,70.0845215],[-91.976709,70.0386719],[-0.9228476562499995E2,69.8921387],[-0.9288779296874989E2,69.6682129],[-92.8026367,69.6514648],[-92.493457,69.6832031],[-92.2307617,69.6533691],[-0.9220908203124989E2,69.6033203],[-0.9191196289062495E2,69.53125],[-0.9172412109374993E2,69.5456055],[-91.3842285,69.6494629],[-91.1703125,69.6203125],[-0.9143994140624997E2,69.5256836],[-91.2881348,69.5432129],[-0.9095019531250001E2,69.5154785],[-0.9055493164062497E2,69.5044922],[-90.4155762,69.4569824],[-0.9060556640624989E2,69.4453125],[-0.9074853515624997E2,69.3924805],[-0.9082211914062493E2,69.2904785],[-0.9123720703125005E2,69.2855469],[-0.9074477539062491E2,69.1059082],[-90.4683594,68.8637695],[-90.5389648,68.8195801],[-90.5101562,68.6888672],[-0.9057363281250005E2,68.474707],[-90.2047852,68.2574707],[-90.0053223,68.3980469],[-89.8794922,68.5215332],[-89.8842285,68.6255859],[-89.7831055,68.7359375],[-89.6666016,69.0145996],[-89.3519043,69.227002],[-89.1984863,69.2694824],[-89.0567383,69.2661133],[-88.6377441,69.0588379],[-88.3155273,68.9544434],[-88.0413574,68.8117188],[-87.8277344,68.4480957],[-87.8532715,68.2668945],[-88.1111328,68.2511719],[-88.2352539,68.3390625],[-88.3469727,68.2882813],[-88.3138184,67.9503418],[-88.1958984,67.7658203],[-87.997168,67.6256836],[-87.4991211,67.3553223],[-87.4179199,67.2141602],[-87.2662598,67.1838379],[-86.812793,67.4023926],[-86.609375,67.4508301],[-86.5364258,67.5161621],[-86.4755371,67.7131348],[-86.3696777,67.8248047],[-85.9525879,68.0724609],[-85.7311035,68.4450195],[-85.7338379,68.630127],[-85.5177734,68.7698242],[-85.2750977,68.7413574],[-84.8675781,68.7733398],[-85.1066406,68.844043],[-85.0833984,68.9079102],[-84.9160645,68.9622559],[-84.862207,69.0739746],[-85.1135254,69.1658691],[-85.242627,69.1627441],[-85.3867676,69.2318848],[-85.4319336,69.3538574],[-85.4159668,69.5477539],[-85.5024414,69.6515137],[-85.4460938,69.7777832],[-85.5348145,69.8350586],[-85.4151367,69.8495117],[-85.1768066,69.805127],[-85.0198242,69.8047852],[-84.6451172,69.849707],[-84.2416504,69.8350098],[-83.9171875,69.7453613],[-83.665332,69.699707],[-82.9913574,69.6858887],[-82.6183594,69.6910645],[-82.3741699,69.6417969],[-82.4957031,69.5322266],[-82.754834,69.4943848],[-82.642041,69.4583984],[-82.3098633,69.4100098],[-82.2081543,69.2970215],[-82.2275391,69.248877],[-81.9518066,69.2760742],[-81.7321777,69.2581055],[-81.4123047,69.1981445],[-81.3286621,69.1199219],[-81.6114258,69.0030273],[-81.9516602,68.909082],[-81.9579102,68.8836426],[-81.6869141,68.8789551],[-81.3809082,68.8500488],[-81.2635254,68.7806152],[-81.281543,68.6572266],[-81.5268555,68.555957],[-81.9148437,68.4587891],[-82.2101562,68.50625],[-82.4987305,68.4786133],[-82.5526855,68.4464844],[-82.3928711,68.3383301],[-82.4306641,68.3065918],[-82.2224121,68.1452637],[-82.0133789,68.1733887],[-82.1004883,67.9898437],[-81.9764648,67.8620117],[-81.7085937,67.7223633],[-81.4123047,67.5953613],[-81.2701172,67.4599121],[-81.3010742,67.3569824],[-81.4675781,67.069873],[-81.6300781,67.002002],[-81.8744629,66.9879395],[-82.0050781,66.9204102],[-82.1983398,66.7646484],[-82.3747559,66.7094238],[-82.6415039,66.5875],[-82.948877,66.5508301],[-83.2983887,66.3921387],[-83.5230957,66.36875],[-83.6510742,66.4846191],[-83.9202148,66.6790527],[-84.05,66.739502],[-84.2080078,66.7363281],[-84.361084,66.8225586],[-84.2725586,66.839209],[-84.5384766,66.9728027],[-84.845752,67.0287109],[-85.0400391,66.9560547],[-85.1112793,66.890918],[-85.0182617,66.8720703],[-84.857373,66.9406738],[-84.7377441,66.9335938],[-84.3189453,66.7118164],[-84.2230469,66.6824707],[-84.0942383,66.5262207],[-83.8258301,66.2899902],[-83.7975586,66.2384766],[-83.9050781,66.2117676],[-84.2930664,66.2917969],[-84.478418,66.1792969],[-84.9083984,66.2713379],[-85.0961914,66.3253418],[-85.4422363,66.5373535],[-85.6038574,66.5682617],[-85.791748,66.532959],[-86.0632324,66.5203613],[-86.6332031,66.5313477],[-86.7371094,66.5108887],[-86.7469727,66.4170898],[-86.5847656,66.3219238],[-86.3010254,66.2699219],[-86.0008301,66.1868164],[-85.9587402,66.119043],[-86.0428711,66.0225586],[-86.7019531,65.6705566],[-87.0811035,65.4408203],[-87.2914551,65.354834],[-87.678125,65.3353516],[-87.9699707,65.3489258],[-88.394873,65.5162109],[-88.6724609,65.6115723],[-88.7439453,65.6787598],[-89.0877441,65.7389648],[-89.4203613,65.860791],[-89.7494141,65.9360352],[-89.9439941,65.9335938],[-89.8477539,65.8722656],[-90.1166016,65.8824219],[-90.3162598,65.9263672],[-90.5132813,65.9205078],[-0.9100952148437503E2,65.9657227],[-91.4272461,65.9479004],[-0.9104111328124989E2,65.829834],[-91.0649414,65.8999023],[-90.9834473,65.9192383],[-0.9059682617187497E2,65.8848145],[-90.0475586,65.8056152],[-89.7879883,65.7367188],[-89.241748,65.4463867],[-88.9740234,65.348291],[-88.1978027,65.2798828],[-87.3919434,65.2605469],[-87.0275391,65.1980957],[-87.0285156,65.063623],[-87.2805176,64.8261719],[-87.8850098,64.4004395],[-87.9975586,64.2439453],[-88.1056152,64.1833008],[-88.6530273,64.009375],[-88.8177246,63.9922363],[-89.0596191,64.0344238],[-89.2094238,64.1054199],[-89.107666,63.9811035],[-89.4035156,64.0399902],[-89.6158203,64.0306152],[-89.7638184,64.0995117],[-89.8113281,64.1805664],[-0.9008002929687491E2,64.1277344],[-89.9535645,64.0806152],[-89.8605957,63.9788086],[-89.921875,0.63943554687500004E2],[-90.1681641,0.63978759765625085E2],[-90.0134277,0.63804296875000055E2],[-90.2453125,63.6418945],[-90.3688477,0.63624414062500016E2],[-90.5963867,63.6612793],[-90.7068359,0.63596923828125114E2],[-0.9094565429687489E2,63.5878418],[-0.9153881835937493E2,63.7255859],[-0.9192602539062497E2,63.7570801],[-91.9822266,0.63822412109375016E2],[-92.094873,0.63784423828125114E2],[-92.3384277,0.63787646484375045E2],[-0.9297021484374997E2,63.9376465],[-0.9342968749999997E2,64.0288086],[-0.9369633789062493E2,64.147168],[-93.5967285,64.0405762],[-0.9366416015624993E2,0.63941406250000114E2],[-0.9355981445312491E2,0.63865283203125074E2],[-93.2702148,63.8408691],[-93.3785156,63.9484863],[-0.9252924804687493E2,63.7612305],[-0.9215688476562491E2,0.63691699218750045E2],[-0.9246103515624989E2,0.63569433593750006E2],[-92.2895508,0.63562988281250114E2],[-0.9184184570312495E2,63.6975586],[-0.9168603515624991E2,63.6597168],[-0.9133007812499997E2,63.5068359],[-0.9097006835937489E2,0.63442773437500136E2],[-90.746582,63.3515625],[-0.9069072265624993E2,63.1105469],[-90.7778809,62.9716309],[-91.1148926,0.62921582031250004E2],[-91.3494629,62.8188965],[-0.9144897460937503E2,62.8040527],[-91.8696289,62.8347168],[-92.0342285,0.62863427734375044E2],[-92.3612793,62.8193848],[-92.3452637,0.62733837890625125E2],[-0.9224316406249991E2,62.6836426],[-91.9558594,62.6447754],[-0.9200786132812493E2,62.5405273],[-0.9220722656249995E2,62.5853516],[-0.9255141601562491E2,0.62546728515625034E2],[-92.5949707,62.4700684],[-92.7679687,62.3799805],[-92.5279785,62.1684082],[-92.8658203,0.62306201171875045E2],[-93.1544434,0.62366845703125136E2],[-0.9290551757812503E2,62.2151367],[-0.9306586914062493E2,62.1497559],[-93.0162598,62.0926758],[-0.9316748046874991E2,62.0336426],[-93.3497559,62.0297852],[-93.2734375,61.961084],[-0.9337202148437495E2,0.61928955078125114E2],[-93.5817871,61.942041],[-93.526709,61.8716309],[-0.9331201171874997E2,61.7672852],[-93.4206055,0.61705810546875114E2],[-93.709668,61.6025391],[-0.9394086914062491E2,61.4436523],[-0.9388881835937497E2,61.344043],[-0.9406074218749991E2,61.3178223],[-94.0677734,61.1388672],[-0.9430869140624989E2,60.8709961],[-0.9456889648437487E2,60.5419922],[-0.9476171874999991E2,60.4982422],[-0.9464677734374993E2,60.4164062],[-94.785791,59.9533203],[-94.7766602,59.478125],[-0.9478828124999997E2,59.2678711],[-94.8702637,59.0879883],[-0.9495732421874995E2,59.0688477],[-94.7761719,59.0206055],[-0.9467338867187493E2,58.8701172],[-0.9453969726562497E2,58.8483887],[-94.4192383,0.58745507812500115E2],[-0.9428706054687493E2,58.7160156],[-94.3322266,58.2973633],[-0.9427216796874991E2,58.3780273],[-0.9420893554687493E2,0.58626367187499994E2],[-0.9405576171874989E2,58.7600098],[-93.7800293,58.7725586],[-93.4861816,58.7444824],[-93.278125,58.7563965],[-93.1545898,58.6945801],[-0.9310019531249989E2,58.4898438],[-0.9284174804687493E2,58.0758789],[-92.7016602,0.57777783203125125E2],[-92.4896484,0.57468603515625034E2],[-92.4397949,57.2750488],[-0.9261411132812489E2,57.0390137],[-92.725293,56.9335449],[-0.9245629882812491E2,57.0367187],[-0.9230336914062491E2,57.0458496],[-92.3721191,0.56975146484375045E2],[-92.0180176,57.0637695],[-0.9111127929687497E2,57.2412109],[-0.9089746093750003E2,57.2569336],[-90.5921875,0.57224462890625034E2],[-0.9007519531249993E2,57.0519043],[-89.7908203,56.9813477],[-88.9484863,56.8513184],[-88.8264648,0.56814257812499925E2],[-88.4470703,56.6086914],[-88.0750977,0.56467285156249936E2],[-87.878125,56.3416016],[-87.5608887,56.0563477],[-87.2868652,55.9746582],[-86.9193848,55.9145508],[-86.3769531,55.7732422],[-85.9844727,0.55695898437500006E2],[-85.6766602,55.6010742],[-85.4072754,55.4311523],[-85.2180176,0.55348974609375034E2],[-85.2120117,0.55297460937500006E2],[-85.3652832,0.55079296874999976E2],[-85.2135742,55.2243652],[-85.0609375,55.2856445],[-84.7057617,55.2592285],[-83.9105957,0.55314648437499955E2],[-83.6676758,55.264502],[-83.2143555,55.2145996],[-82.9862793,55.2313965],[-82.8677734,55.1606934],[-82.5774414,55.1487305],[-82.3932617,0.55067822265625125E2],[-82.308252,54.9981445],[-82.2193848,54.8134766],[-82.4180664,0.54355810546875034E2],[-82.3941406,54.1804688],[-82.2398926,54.0448242],[-82.1414551,53.817627],[-82.190625,53.6109375],[-82.1461914,53.3645996],[-82.1591797,53.2641602],[-82.2599121,53.1598145],[-82.2916016,53.0661133],[-82.2604492,52.9611328],[-82.0200195,0.52811621093750034E2],[-81.8592773,0.52651416015625074E2],[-81.5994141,0.52432617187500085E2],[-81.5716797,0.52367285156250084E2],[-81.8145508,52.2171875],[-81.5495117,52.2367676],[-81.2850586,52.089209],[-80.9685059,51.9722168],[-80.7055176,51.7983398],[-80.5880371,0.51667236328125114E2],[-80.4476074,0.51432226562500034E2],[-80.4955078,0.51344677734375125E2],[-80.6727051,0.51264746093750006E2],[-80.8512207,51.125],[-80.7949707,0.51131835937500114E2],[-80.4783203,51.3073242],[-80.3679688,51.3298828],[-80.1035645,0.51282861328125136E2],[-79.8362305,51.1733398],[-79.6515137,51.0078125],[-79.4561523,50.8755859],[-79.4526367,50.9172852],[-79.7144531,51.1175781],[-79.7374512,51.1862793],[-79.6888184,0.51346582031249994E2],[-79.4975586,51.5699219],[-79.3386719,51.6281738],[-79.2642578,0.51552001953125085E2],[-79.0405273,51.4637695],[-78.9031738,0.51200292968750034E2],[-78.8274414,51.4299805],[-78.7313477,51.4974609],[-78.7763184,51.5657715],[-78.9777344,0.51733789062499994E2],[-78.8282227,51.9629883],[-78.702002,52.0327148],[-78.4916504,52.2520996],[-78.5570801,52.4918945],[-78.7237793,52.6277344],[-78.7657715,52.7600586],[-78.7216797,0.52856445312500085E2],[-78.8982422,53.0433594],[-78.992041,0.53410351562499955E2],[-79.1131348,0.53717187500000136E2],[-79.040332,53.8179688],[-78.9443848,0.53840234375000136E2],[-79.073291,53.951416],[-78.9960449,54.0024902],[-79.2417969,0.54098876953125085E2],[-79.1388184,54.1572266],[-79.2956543,54.2168457],[-79.4305664,54.3366211],[-79.5979492,54.6016602],[-79.7139648,54.6549805],[-79.6655273,54.6974609],[-78.9092285,0.54881494140624994E2],[-78.3036133,55.0685547],[-77.8911133,0.55236425781250006E2],[-77.3249512,0.55555517578125006E2],[-76.7618164,55.9964355],[-76.6504883,56.1072266],[-76.5463867,56.3587891],[-76.5196289,0.56706982421875125E2],[-76.5255859,56.8917969],[-76.5728516,57.1812012],[-76.6554199,57.3805664],[-76.890918,57.7581055],[-77.1567871,0.58018896484375034E2],[-77.684082,58.2913574],[-78.0135742,0.58399169921875064E2],[-78.351709,0.58580664062500084E2],[-78.4629883,58.6024414],[-78.5150879,58.682373],[-78.4305176,0.58901757812500136E2],[-77.9876465,0.59245507812499994E2],[-77.8428223,59.3050293],[-77.7606934,59.3800293],[-77.8590332,59.4757812],[-77.7334961,59.580957],[-77.7261719,59.6758789],[-77.5904297,0.59680517578124984E2],[-77.3966797,59.5692383],[-77.4853027,0.59684570312500114E2],[-77.3316406,59.7966309],[-77.3729492,59.9250977],[-77.3118164,60.0423828],[-77.547168,0.60061132812500084E2],[-77.4528809,0.60145800781250095E2],[-77.6814453,60.4270996],[-77.5155762,60.5631836],[-77.7149902,60.5777832],[-77.7908203,60.6398437],[-77.6030273,60.8251953],[-77.8715332,60.7858398],[-78.1813477,60.8191406],[-77.830127,61.0840332],[-77.7268066,0.61230664062500125E2],[-77.7361816,61.4373535],[-77.5143555,0.61556298828125044E2],[-77.6984375,61.626416],[-77.9475586,0.61761865234374994E2],[-78.0774902,61.9233887],[-78.1371582,62.107373],[-78.1333984,62.2822754],[-78.0681152,0.62355419921875125E2],[-77.6039551,62.5313965],[-77.3724121,0.62572509765625114E2],[-76.8793945,62.5253906],[-76.6163574,0.62465673828125034E2],[-75.8168945,0.62315869140625075E2],[-75.6755371,62.2495117],[-75.7898437,62.1795898],[-75.4888184,62.2864258],[-75.3412109,62.3121094],[-75.0227539,62.2644531],[-74.6325684,0.62115673828125125E2],[-74.6458008,62.2111328],[-74.2054687,62.3213867],[-73.7639648,0.62468750000000114E2],[-73.6299805,0.62454199218750006E2],[-73.195166,62.2791504],[-72.8818359,62.1253906],[-72.6708008,62.1138672],[-72.6321289,62.0272461],[-72.7716309,0.61840429687500006E2],[-72.5055664,61.9226563],[-72.226123,61.8315918],[-72.0400391,0.61680273437500055E2],[-72.2470703,0.61602050781250114E2],[-72.0230957,61.6119629],[-71.8661133,61.6885254],[-71.6382812,61.6171875],[-71.6562012,61.5509277],[-71.7557617,0.61526757812500044E2],[-71.8543945,61.4397949],[-71.6453125,61.4131348],[-71.743457,0.61337255859375006E2],[-71.4227051,61.1589355],[-71.1751465,0.61146533203125045E2],[-70.7232422,0.61055175781250085E2],[-70.5407715,61.0424805],[-70.2792969,61.0686523],[-70.187207,0.61040527343750114E2],[-70.0953125,60.8802734],[-69.9092285,60.8601074],[-69.7083984,60.9146484],[-69.6236328,61.0495117],[-69.4719238,0.61010937500000125E2],[-69.3983398,60.8828613],[-69.4334473,60.8142578],[-69.6404785,0.60689794921875084E2],[-69.7594727,0.60440234375000045E2],[-69.7405762,60.3322754],[-69.6331055,60.2203613],[-69.6737305,60.0758789],[-69.7956543,60.0297363],[-69.9628418,60.0178223],[-70.5093262,60.0151855],[-70.6197266,59.9842773],[-69.8056641,59.944873],[-69.6302246,59.8218262],[-69.5793945,59.6750977],[-69.6923828,59.4884277],[-69.6818848,59.341748],[-69.4,0.59337792968749966E2],[-69.3504395,59.2771973],[-69.4597656,59.1524414],[-69.4141113,0.59086865234375004E2],[-69.5316406,58.8692383],[-69.6773437,58.8313477],[-69.7530273,0.58939599609375016E2],[-69.8675781,58.8561523],[-70.1599609,58.7894043],[-70.1543457,58.7605957],[-69.7898926,0.58689306640625034E2],[-69.6505371,58.7282715],[-69.3818359,58.8507324],[-69.1734863,0.58896630859374994E2],[-68.6981934,58.904541],[-68.4143066,58.7827148],[-68.3264648,58.5954102],[-68.2529785,58.5566406],[-68.2338867,0.58399218750000074E2],[-68.356543,0.58163232421875136E2],[-68.4681641,0.58076318359375016E2],[-68.9453125,57.9687988],[-69.0408203,0.57902490234375136E2],[-68.780957,57.9758301],[-68.4950684,58.0116699],[-68.3518555,58.0907227],[-68.1755371,58.4025879],[-68.1110352,58.4733398],[-67.9811523,58.4612305],[-67.887793,0.58329394531250074E2],[-67.9114258,58.2672363],[-68.0638672,58.1389648],[-67.8558594,58.2726074],[-67.7370605,0.58385449218750125E2],[-67.6896973,58.2437988],[-67.6782715,57.9911133],[-67.5696289,58.2134766],[-67.3819824,0.58300000000000125E2],[-67.0194336,58.4329102],[-66.722168,58.4910156],[-66.6079102,0.58548925781250034E2],[-66.4799805,0.58730908203124976E2],[-66.2985352,58.7945312],[-66.1682129,58.7270996],[-66.0446289,0.58605615234375016E2],[-66.017041,58.4308105],[-65.93125,58.5350586],[-65.9279297,0.58610937500000034E2],[-66.0430664,0.58820654296874956E2],[-65.8359375,58.860498],[-65.9207031,0.58914648437500084E2],[-65.8414062,58.9770508],[-65.7035645,58.9706055],[-65.6952637,59.0320313],[-65.5439941,59.0118652],[-65.3835449,59.0602051],[-65.60625,59.1107422],[-65.7,59.2133301],[-65.6071289,59.2131348],[-65.512793,0.59350390625000045E2],[-65.4072754,59.3302246],[-65.4750977,59.4703125],[-65.2737793,59.4641602],[-65.0743164,0.59378027343750006E2],[-65.1709473,59.4622559],[-65.4074219,59.5393555],[-65.4751953,59.6167969],[-65.4333984,59.7765137],[-65.2122559,59.8095215],[-65.0544922,59.7527832],[-65.1592285,0.59830126953125095E2],[-65.1717285,59.9080078],[-64.93125,60.252002],[-64.817334,60.3310547],[-64.7058594,0.60336132812499976E2],[-64.4994141,60.2682617],[-64.4195801,60.1713867],[-64.5277344,60.0945313],[-64.768457,60.0121094],[-64.2834961,60.0640625],[-64.1828613,59.9729492],[-64.1687988,59.8465332],[-64.2263184,59.7412109],[-64.0560547,59.8225586],[-0.63928808593749885E2,0.59644921875000016E2],[-63.7501953,0.59512597656250044E2],[-0.63970703124999964E2,59.409082],[-0.63780859374999956E2,0.59349267578124994E2],[-63.752002,0.59277343750000085E2],[-63.6375,59.3414551],[-0.63539892578124864E2,59.3328613],[-0.63415136718749956E2,59.1943848],[-63.5062012,59.1151855],[-63.7563965,59.0634766],[-63.9711426,59.0538086],[-63.9410156,0.59027392578124996E2],[-63.5678711,59.0470215],[-0.63398974609374925E2,59.0796387],[-63.3037109,59.0344238],[-0.63216406249999864E2,0.58927978515624964E2],[-63.2821289,58.8673828],[-0.63050292968749964E2,58.8781738],[-0.62873876953124885E2,58.6724609],[-63.1023437,58.545752],[-63.3899414,58.4525391],[-63.5370605,58.3299316],[-63.4736328,58.3306641],[-63.2099609,58.4669434],[-0.63075683593749886E2,58.4147949],[-62.8374023,58.4793945],[-0.62607861328124976E2,58.4963867],[-0.62674316406249915E2,58.3191895],[-62.8120605,58.2003906],[-0.63062792968749925E2,58.1270996],[-0.63261523437499925E2,58.0146973],[-63.2200195,58.0021484],[-62.9809082,58.0933105],[-62.5880859,58.1581055],[-0.62486230468749966E2,58.1540527],[-0.62305664062499964E2,57.9722656],[-0.62117431640624886E2,57.9641113],[-61.8990723,0.57861328125000085E2],[-61.9949219,57.7694336],[-61.93125,57.6685547],[-61.9679687,57.6119141],[-62.1668945,0.57536572265625004E2],[-62.4549805,57.4619629],[-62.3032227,0.57440673828125036E2],[-0.62088085937499955E2,0.57452832031250004E2],[-0.61851074218749886E2,57.3812988],[-0.61977441406249966E2,57.2479492],[-61.8608398,57.1975586],[-61.6285156,57.1831543],[-0.61333740234374936E2,57.0105957],[-61.3904785,56.8529785],[-61.3716309,56.6808105],[-61.5316895,0.56654589843750095E2],[-62.0625,56.6990723],[-62.3661133,56.7669922],[-62.2958008,56.8328125],[-0.62497265624999926E2,56.801709],[-62.3955078,56.7300293],[-0.62116503906249875E2,56.6668457],[-61.9916016,0.56590820312500085E2],[-61.8549316,56.5842773],[-0.61737744140624976E2,56.5260254],[-61.8994141,0.56505419921875074E2],[-62.009668,56.4538574],[-0.61940429687499886E2,0.56423583984375114E2],[-61.5145996,56.390332],[-0.61425292968749936E2,0.56360644531250074E2],[-61.7071289,0.56288720703124994E2],[-0.61713085937499955E2,0.56230957031250114E2],[-61.3646973,56.2160156],[-0.61301123046874956E2,56.047168],[-61.4495117,55.9957031],[-61.1878906,55.9553711],[-0.61089355468749964E2,55.8663574],[-60.995752,55.8623535],[-60.8318359,55.9578613],[-60.5925781,55.8148438],[-60.5621094,55.727002],[-60.4758301,55.805127],[-0.60341015624999926E2,55.784668],[-0.60408300781249956E2,0.55649560546874994E2],[-60.1923828,55.4809082],[-0.60360937499999885E2,0.55366308593750006E2],[-60.4500977,55.1999512],[-60.6171387,0.55060205078124994E2],[-60.556543,55.0674805],[-60.3407715,55.1939453],[-60.2125488,0.55236425781250006E2],[-0.59930322265624916E2,55.2594238],[-0.59758789062499964E2,55.3095703],[-59.6890625,55.1963379],[-0.59437890625000044E2,0.55175927734375136E2],[-0.59741699218749936E2,54.9425781],[-59.7499023,0.54887011718750074E2],[-59.4285645,55.0555176],[-59.2595703,55.1999512],[-58.9971191,0.55149462890625074E2],[-58.885791,0.54952246093750034E2],[-58.7801758,0.54838378906250114E2],[-0.58398144531249976E2,0.54774121093749976E2],[-0.58222851562499955E2,0.54812695312500004E2],[-0.58195263671874926E2,54.865918],[-0.57962451171874925E2,0.54875732421875085E2],[-57.9292969,0.54773144531250125E2],[-57.7249023,0.54673730468750136E2],[-0.57483007812499864E2,54.6402832],[-57.4044434,0.54570410156250034E2],[-0.57563232421874964E2,54.4404297],[-57.6992676,54.3865723],[-58.1513672,54.3504395],[-0.58219726562499936E2,54.2864746],[-0.58435205078124966E2,54.228125],[-58.6332031,54.0495605],[-0.58840820312499915E2,54.0444824],[-59.0388184,53.963623],[-59.4965332,53.8341797],[-59.8230469,53.8344238],[-60.0141602,53.7615723],[-60.1449219,53.5961426],[-60.3954102,0.53653320312500085E2],[-0.60369531250000044E2,53.6074707],[-60.100293,53.4869629],[-0.60290283203124964E2,0.53391455078125034E2],[-60.2511719,0.53343554687500045E2],[-60.3294922,53.2661133],[-60.1483398,0.53306542968750136E2],[-59.8290527,53.504541],[-59.6210937,53.5368164],[-59.3222656,53.64375],[-58.9195801,53.875293],[-0.58652050781249926E2,53.9778809],[-0.58326708984374896E2,0.54051806640625074E2],[-0.57935986328124955E2,54.0911621],[-58.0648437,54.1267578],[-0.58317480468749885E2,54.1144531],[-58.3099609,54.2016602],[-58.1920898,0.54228173828125136E2],[-57.6149414,54.1911133],[-0.57416064453124896E2,0.54162744140625136E2],[-0.57198876953124994E2,0.53924365234375045E2],[-0.57134960937499926E2,53.7918457],[-57.2439941,0.53715478515625136E2],[-0.57527343750000036E2,0.53599902343750045E2],[-57.3861328,53.5605469],[-57.3317383,0.53469091796875034E2],[-0.57012158203124955E2,0.53672607421875114E2],[-56.8408691,53.7394531],[-56.4649902,53.7650391],[-56.3540039,53.6244629],[-56.1101563,53.5875977],[-55.859375,53.3438965],[-55.7979492,0.53211962890625045E2],[-0.55892333984374915E2,0.53000439453125125E2],[-0.55829882812499875E2,52.878418],[-55.8725098,52.7356934],[-55.8484375,0.52623339843750045E2],[-0.56324902343749926E2,52.5445312],[-56.0525879,52.5374023],[-55.8401855,0.52507617187500074E2],[-55.705957,0.52428271484375074E2],[-0.55777148437499896E2,52.3642578],[-56.0046387,52.3704102],[-55.6910645,52.2416016],[-55.6952148,52.137793],[-0.56017480468749994E2,51.9292969],[-56.548584,51.6810059],[-0.56975976562500044E2,0.51457666015625044E2],[-0.57095605468749994E2,51.4425293],[-57.2992188,51.4782715],[-57.7695801,51.4259277],[-58.0226562,51.3220703],[-58.270459,51.2952148],[-58.5103516,0.51295068359375136E2],[-0.58637597656249994E2,0.51171679687500045E2],[-0.59054931640624915E2,0.50879101562500125E2],[-59.1653809,0.50779882812500006E2],[-59.3780273,50.6754395],[-0.59611914062499885E2,0.50492089843749994E2],[-59.815332,0.50418261718750045E2],[-59.8863281,0.50316406250000085E2],[-60.0801758,50.2545898],[-0.60608203124999896E2,50.2211426],[-60.8072266,50.2498047],[-60.9562988,0.50205419921875034E2],[-61.2897461,50.2019531],[-61.7248535,50.1040527],[-0.61919531249999885E2,50.2328613],[-62.1652344,50.238916],[-0.62361669921875006E2,50.2772949],[-0.62715429687499956E2,50.3016602],[-63.1356445,50.2937988],[-63.238623,50.2425781],[-0.63586669921874915E2,50.2582031],[-63.7335937,50.3046387],[-64.0158203,50.3039551],[-64.1704102,50.2694336],[-64.5089355,50.3089355],[-64.8678711,50.2754883],[-65.2686035,50.3200195],[-65.7624512,50.2592773],[-65.9553711,50.2941406],[-66.1255371,0.50201025390625006E2],[-66.4955078,50.2118652],[-66.7408691,50.0655273],[-66.9411621,0.49993701171875045E2],[-67.234375,0.49601757812499955E2],[-67.2619141,49.4511719],[-67.3720215,0.49348437500000045E2],[-68.05625,49.2567871],[-68.2819336,49.197168],[-68.2206055,49.1496582],[-68.4144043,0.49099511718750136E2],[-68.6278809,49.0071777],[-68.669043,0.48939501953125045E2],[-68.9290527,48.8289551],[-69.2307617,48.5736328],[-69.3749512,48.3864258],[-69.5500977,48.2507813],[-69.673877,48.1991699],[-69.851709,48.207373],[-70.0010254,48.2709473],[-70.1106445,48.2779785],[-70.3836914,48.3665039],[-71.0182617,0.48455615234375045E2],[-70.8387695,0.48367382812500004E2],[-70.5006348,0.48354345703125034E2],[-69.8655273,48.1722656],[-69.775,48.0980957],[-69.9055664,47.8322266],[-69.9944336,47.7398926],[-70.3000977,47.5030273],[-70.4480469,47.4234375],[-70.7058594,47.1397949],[-71.115625,46.9249512],[-71.2677734,46.7959473],[-71.7572754,0.46673583984375085E2],[-71.8795898,46.6868164],[-72.0284668,0.46607421875000114E2],[-72.2046387,46.5588867],[-72.2566406,46.4850586],[-72.680127,46.2873047],[-72.9810059,0.46209716796875085E2],[-73.0219238,0.46120263671874994E2],[-73.1454102,46.0663086],[-73.2835449,45.8998535],[-73.4766113,0.45738232421874955E2],[-73.7118652,45.7111816],[-73.8974121,45.5641602],[-74.0378418,45.5018555],[-74.3150879,0.45531054687500045E2],[-73.9996094,45.4333496],[-73.9738281,0.45345117187499994E2],[-74.0980957,45.3240234],[-74.3583008,45.2063965],[-74.7088867,45.0038574]]],[[[-96.7823242,72.9366211],[-0.9694379882812501E2,72.926709],[-97.0927734,72.9969238],[-97.0692383,73.1301758],[-0.9686240234374995E2,73.1888184],[-96.5984863,73.0738281],[-0.9667060546874995E2,72.9609375],[-96.7823242,72.9366211]]],[[[-114.521533,72.5929199],[-0.11445810546874998E3,72.5803711],[-113.957813,72.6514648],[-0.11369243164062495E3,72.6728027],[-0.11362216796874993E3,72.6468262],[-0.11350004882812502E3,72.6944336],[-0.11344985351562501E3,72.8632324],[-0.11320800781250001E3,72.9810059],[-0.11275361328125001E3,72.9860352],[-0.11204809570312499E3,72.8880371],[-0.11145541992187493E3,72.765918],[-0.11126972656249993E3,72.7137207],[-111.250391,72.6685547],[-0.11135551757812502E3,72.5721191],[-0.11161088867187499E3,72.4355957],[-111.895166,72.3561035],[-0.11167509765625002E3,72.3001465],[-0.11144736328124999E3,72.4077148],[-111.253418,72.4490723],[-0.11126806640624996E3,72.3638672],[-0.11113989257812496E3,72.365332],[-0.11095898437499997E3,72.4319824],[-0.11078154296874996E3,72.5338867],[-0.11043930664062496E3,72.6333496],[-0.11020512695312495E3,72.6612793],[-0.11019716796875002E3,72.7588867],[-0.11055361328124998E3,72.8614258],[-0.11068940429687503E3,72.9445312],[-0.11066083984374998E3,73.0082031],[-0.11000844726562494E3,72.9836426],[-0.10960996093749993E3,72.8756836],[-0.10946909179687502E3,72.8084473],[-0.10912192382812499E3,72.726416],[-0.10896816406250001E3,72.6541016],[-0.10899443359374995E3,72.5959961],[-0.10879785156249994E3,72.5675293],[-0.10869829101562502E3,72.4992676],[-0.10856635742187495E3,72.317334],[-0.10846958007812496E3,72.1387695],[-0.10827641601562495E3,71.9003906],[-108.2104,71.7511719],[-0.10792534179687502E3,71.6386719],[-0.10778544921875003E3,71.6296875],[-107.687256,71.7161133],[-0.10734692382812494E3,71.8192383],[-0.10730600585937495E3,71.8946777],[-0.10754262695312492E3,72.0253418],[-0.10769584960937497E3,72.1493164],[-107.794043,72.3026367],[-0.10782373046875001E3,72.4427734],[-0.10793251953124995E3,72.5204102],[-0.10823823242187498E3,73.1058105],[-0.10820415039062497E3,73.1830566],[-0.10793618164062501E3,73.2171387],[-0.10807749023437502E3,73.2813965],[-108.029053,73.3487305],[-107.72002,73.3290527],[-107.496289,73.2883789],[-107.113477,73.1921387],[-0.10695078124999998E3,73.2760254],[-0.10648212890624998E3,73.1961914],[-106.081641,73.0719238],[-0.10581269531250003E3,73.0106445],[-0.10562416992187498E3,72.9274902],[-0.10541513671874995E3,72.7883301],[-0.10543007812499997E3,72.7403809],[-0.10532319335937495E3,72.6348145],[-0.10523408203125001E3,72.4150879],[-0.10487832031250001E3,71.9799805],[-0.10476699218749997E3,71.8675781],[-0.10451831054687503E3,71.6992188],[-0.10438593749999995E3,71.5769531],[-0.10434956054687501E3,71.4339844],[-0.10438486328125002E3,71.3375488],[-0.10448706054687496E3,71.2479004],[-0.10456958007812499E3,71.1040527],[-0.10451479492187502E3,71.0642578],[-104.166846,70.9271973],[-0.10395346679687496E3,70.7626465],[-0.10358457031249993E3,70.6308594],[-0.10329467773437496E3,70.5724609],[-0.10310498046874994E3,70.5102539],[-0.10300122070312494E3,70.5409668],[-0.10304956054687503E3,70.6550781],[-0.10275048828125003E3,70.521875],[-102.36875,70.4132324],[-0.10193720703124997E3,70.2745605],[-0.10173222656249997E3,70.286377],[-0.10162680664062499E3,70.2483398],[-101.562402,70.1350098],[-0.10114853515624998E3,70.1476074],[-101.042676,70.110791],[-0.10090908203124997E3,69.8691895],[-0.10093510742187493E3,69.715332],[-0.10104370117187503E3,69.6687012],[-0.10121621093750001E3,69.6796387],[-0.10140009765624998E3,69.7492676],[-0.10150839843750002E3,69.8331543],[-0.10164765624999997E3,69.6985352],[-0.10186025390624994E3,69.7380859],[-0.10209794921874996E3,69.8246094],[-0.10223432617187493E3,69.8422363],[-0.10259589843749997E3,69.7179199],[-0.10253486328124997E3,69.6208008],[-0.10262109374999996E3,69.5515137],[-0.10291977539062496E3,69.5646484],[-0.10335927734374997E3,69.6853516],[-103.464893,69.6444824],[-0.10314243164062493E3,69.4972656],[-0.10306274414062496E3,69.4849121],[-0.10303979492187499E3,69.3675781],[-0.10309033203124999E3,69.2120117],[-0.10288408203124997E3,69.3413086],[-0.10244677734374997E3,69.4763184],[-0.10215141601562502E3,69.4876953],[-0.10197553710937498E3,69.4070313],[-0.10206401367187496E3,69.2811523],[-0.10199296874999997E3,69.2360352],[-0.10182250976562497E3,69.2170898],[-0.10178779296875001E3,69.1322754],[-0.10185712890625001E3,69.0239746],[-0.10248842773437501E3,68.888916],[-0.10273833007812495E3,68.8649902],[-0.10289506835937499E3,68.8236328],[-0.10316225585937498E3,68.8287109],[-0.10346821289062497E3,68.8085449],[-0.10406733398437498E3,68.8655762],[-0.10435268554687494E3,68.9281738],[-104.571436,68.8721191],[-105.105859,68.9204102],[-0.10516928710937495E3,68.9553711],[-0.10501958007812499E3,69.08125],[-105.262354,69.0939941],[-0.10553300781249997E3,69.1335449],[-106.140869,69.1620117],[-0.10634116210937495E3,69.2243652],[-0.10636137695312499E3,69.3810547],[-106.539795,69.4430664],[-0.10665908203124995E3,69.4395996],[-0.10685581054687499E3,69.3473145],[-0.10703344726562494E3,69.1807617],[-0.10743989257812495E3,69.0021484],[-107.863379,68.9543457],[-0.10836499023437497E3,68.9347656],[-0.10855253906249999E3,68.8974121],[-108.945898,68.7598145],[-0.10947211914062501E3,68.676709],[-0.10995854492187497E3,68.6302734],[-0.11046762695312496E3,68.6100098],[-0.11084809570312501E3,68.578418],[-0.11112758789062494E3,68.5883301],[-111.310937,68.542041],[-0.11230493164062499E3,68.5162109],[-0.11286425781249999E3,68.4770996],[-113.127734,68.4941406],[-0.11333808593749995E3,68.5987793],[-0.11361684570312501E3,68.8384766],[-0.11359252929687503E3,68.9598633],[-0.11369414062499995E3,69.1950195],[-0.11407343749999995E3,69.2513184],[-0.11432294921874998E3,69.2691406],[-0.11515903320312496E3,69.2647461],[-0.11561811523437495E3,69.282959],[-0.11610156249999996E3,69.3371582],[-0.11651347656249993E3,69.4246094],[-0.11671201171874996E3,69.5762207],[-0.11699277343749998E3,69.7193848],[-0.11712197265625001E3,69.8258789],[-0.11719541015624993E3,70.0540527],[-0.11713544921874998E3,70.1001465],[-0.11655380859374999E3,70.1750488],[-0.11552910156250002E3,70.2571289],[-0.11459233398437496E3,70.3124512],[-0.11416699218749999E3,70.3074707],[-0.11366552734374999E3,70.2696777],[-0.11321074218749996E3,70.2638184],[-0.11263789062499997E3,70.2252441],[-0.11218964843749995E3,70.2755859],[-0.11178369140625003E3,70.2729004],[-0.11163256835937497E3,70.3088379],[-0.11172583007812496E3,70.3520508],[-0.11211416015624994E3,70.446875],[-113.145508,70.6163574],[-0.11375727539062503E3,70.6907227],[-0.11396606445312501E3,70.6961914],[-114.331396,70.6752441],[-0.11484072265624994E3,70.6213867],[-0.11531123046874997E3,70.6011719],[-0.11599091796874995E3,70.5862793],[-0.11632729492187502E3,70.6237305],[-116.992529,70.6036621],[-0.11758706054687497E3,70.629541],[-118.264062,70.8883301],[-0.11837651367187496E3,70.9677246],[-0.11826909179687493E3,71.0347168],[-0.11781406249999996E3,71.1584473],[-0.11731396484374994E3,71.2121094],[-0.11642153320312494E3,71.3379883],[-0.11589165039062499E3,71.3817871],[-0.11604531249999995E3,71.4230957],[-0.11598027343750002E3,71.4692871],[-0.11573374023437498E3,71.4851074],[-115.341016,71.4724121],[-0.11533813476562503E3,71.5108887],[-0.11558666992187494E3,71.5463867],[-0.11678027343750003E3,71.4441895],[-0.11733710937499995E3,71.4346191],[-0.11772333984374995E3,71.3906738],[-0.11793564453125002E3,71.3920898],[-0.11818818359374995E3,71.4359375],[-0.11814833984375001E3,71.5257324],[-117.878418,71.5608398],[-117.742334,71.6593262],[-0.11837153320312503E3,71.6399414],[-118.868408,71.6867676],[-0.11898769531249998E3,71.7642578],[-0.11894462890624997E3,71.9855469],[-118.589844,72.1674805],[-0.11836865234374997E3,72.2054687],[-0.11821347656249998E3,72.2628906],[-0.11824589843750002E3,72.3110352],[-0.11848129882812499E3,72.4276855],[-118.374512,72.5338867],[-0.11813310546874993E3,72.6328125],[-0.11755170898437498E3,72.8311035],[-0.11725644531249995E3,72.9144043],[-0.11697167968750001E3,72.9593262],[-0.11657324218749994E3,73.0549316],[-0.11555219726562494E3,73.2134766],[-0.11463823242187497E3,73.3726563],[-0.11430190429687494E3,73.3307129],[-0.11416396484375001E3,73.2698242],[-0.11405170898437497E3,73.0709961],[-0.11405375976562502E3,72.9580566],[-0.11410917968749995E3,72.8609863],[-114.521533,72.5929199]]],[[[-0.10528891601562499E3,72.9199219],[-0.10543408203124999E3,72.9379883],[-0.10607104492187499E3,73.1963867],[-0.10618002929687499E3,73.3041016],[-0.10652573242187498E3,73.4133789],[-0.10692153320312497E3,73.479834],[-0.10694965820312501E3,73.5103516],[-106.831006,73.5990723],[-0.10661396484375001E3,73.6956055],[-0.10636210937499996E3,73.7186035],[-105.512305,73.7657715],[-0.10511445312499995E3,73.7444336],[-104.834668,73.6472656],[-0.10464877929687496E3,73.6144043],[-0.10455507812499997E3,73.5411133],[-0.10458286132812493E3,73.3539063],[-0.10479101562499999E3,73.167627],[-0.10496865234375002E3,73.0886719],[-105.074609,72.9970215],[-0.10528891601562499E3,72.9199219]]],[[[-79.5373047,73.6544922],[-79.3667969,73.6413574],[-78.2865234,73.6658203],[-78.0629395,73.6476563],[-77.206543,73.4995605],[-77.0053223,73.3560547],[-76.7586914,73.3100098],[-76.5697754,73.1592773],[-76.2895508,73.0810059],[-76.3095703,72.9979004],[-76.0899902,72.8812012],[-76.1833984,72.8430664],[-76.4005371,72.8206543],[-77.0135742,72.8439941],[-77.8359375,72.8968262],[-78.314209,72.8818359],[-78.5540527,72.8577148],[-79.1341797,72.7716309],[-79.5005371,72.755957],[-79.9368652,72.863623],[-80.0516113,72.977002],[-80.1833008,73.2246582],[-80.6179199,73.2708008],[-80.8241699,73.3806641],[-80.7358398,73.4831055],[-80.8584961,73.5914063],[-80.848877,73.7212402],[-80.7627441,73.7577637],[-80.4123047,73.7654297],[-80.1202637,73.7070801],[-79.8893555,73.7015137],[-79.5373047,73.6544922]]],[[[-86.5893555,71.010791],[-86.5496582,70.9887695],[-86.1271484,71.0489746],[-85.6438477,71.1524414],[-85.094873,71.1519531],[-85.0015625,71.1374512],[-85.0657715,71.0786133],[-84.8703125,71.0018066],[-84.7895996,71.0932617],[-84.6743164,71.4387695],[-84.6599609,71.5861328],[-84.8401367,71.6586426],[-85.2504883,71.675293],[-85.3966797,71.7270508],[-85.5961914,71.8664062],[-85.9116211,71.9865234],[-85.8621094,72.0219727],[-85.5458008,72.1015625],[-85.4059082,72.2148438],[-85.321875,72.2331543],[-85.01875,72.2181641],[-84.6084961,72.1294922],[-84.3516602,72.0526367],[-84.3474609,72.0944336],[-84.6429687,72.1895508],[-84.8419922,72.3081543],[-84.6230469,72.3765625],[-84.8494141,72.40625],[-85.1563965,72.3829102],[-85.3411133,72.4215332],[-85.4977539,72.5105957],[-85.6378906,72.6332031],[-85.6445313,72.7744629],[-85.4547852,72.9251465],[-85.2621094,72.9540039],[-84.9895508,72.919873],[-84.2566406,72.7967285],[-84.2742676,72.8364258],[-85.094043,73.0026367],[-85.3838867,73.0454102],[-85.4547363,73.1054688],[-85.0184082,73.335498],[-84.6160645,73.3895508],[-84.4160645,73.4564941],[-84.0889648,73.459375],[-83.7818848,73.4168945],[-83.9149902,73.5083984],[-83.729834,73.5758789],[-83.4103516,73.6316895],[-82.6596191,73.7295898],[-81.9461426,73.729834],[-81.6053711,73.6959961],[-81.4061523,73.6345215],[-81.2383301,73.479541],[-81.1517578,73.3140137],[-81.0251465,73.2452148],[-80.8217285,73.2071777],[-80.6034668,73.1211914],[-80.5918945,72.9276855],[-80.4308105,72.8162598],[-80.274707,72.7455566],[-80.6750977,72.5586426],[-80.9987305,72.4262207],[-81.2293457,72.3117187],[-81.2405762,72.2779297],[-80.760791,72.4571777],[-80.6046875,72.4257813],[-80.8214844,72.2602539],[-80.9412109,72.2101562],[-80.6914062,72.1034668],[-80.8432617,72.0961914],[-80.9414062,72.0482422],[-80.9479004,71.9165527],[-80.8584473,71.9114258],[-80.3861328,72.1487793],[-80.1161133,72.2140625],[-79.884375,72.1771973],[-80.090918,72.3008789],[-80.0417969,72.3942383],[-79.7778809,72.4387207],[-79.6538574,72.3321777],[-79.4274414,72.3373047],[-79.3233398,72.3908203],[-79.0002441,72.2720215],[-79.0078125,72.0429199],[-78.7759277,71.9303711],[-78.5851074,71.8806152],[-78.8627441,72.1008301],[-78.8201172,72.2654297],[-78.6992676,72.351416],[-78.4288086,72.2797852],[-78.1163574,72.2803223],[-77.7260254,72.1799805],[-77.5165039,72.1777832],[-77.5357422,72.21875],[-78.287207,72.3598145],[-78.4530762,72.4352051],[-78.4794922,72.5087402],[-78.3502441,72.6001953],[-78.0010254,72.6875977],[-77.5667969,72.7368652],[-76.8935059,72.7206543],[-76.6979492,72.6950684],[-76.1887695,72.5722168],[-75.7042969,72.5715332],[-75.2942383,72.4808594],[-75.185791,72.4342285],[-75.0398437,72.2695801],[-75.0526855,72.2263672],[-75.3941406,72.0397949],[-75.5427734,72.007959],[-75.7874023,71.8030762],[-75.8220703,71.7458984],[-75.5999023,71.918457],[-75.1476563,72.0629883],[-74.9031738,72.1004883],[-74.5196777,72.0856445],[-74.2929687,72.0505859],[-74.2125977,71.9386719],[-74.3157227,71.8426758],[-74.8929687,71.7255371],[-75.2047852,71.7091309],[-74.9594727,71.6674805],[-74.7007813,71.6755859],[-74.8683105,71.5047363],[-74.8407227,71.4065918],[-75.0353516,71.2305176],[-74.9961914,71.2181152],[-74.7589355,71.3381348],[-74.5995605,71.5848633],[-74.4041016,71.6725098],[-74.1390625,71.6822266],[-73.9920898,71.7496094],[-73.8140625,71.7714355],[-73.7135742,71.719873],[-73.8686035,71.5993652],[-74.1972656,71.4041504],[-74.0633301,71.4264648],[-73.7128418,71.5875977],[-73.4815918,71.479248],[-73.3978027,71.3734375],[-73.1806152,71.2828613],[-73.1921875,71.3498535],[-73.3104492,71.4842773],[-73.2782227,71.5379883],[-72.9019531,71.6777832],[-72.5806152,71.6067871],[-72.3645996,71.6109863],[-71.8751953,71.5612305],[-71.4599121,71.4637207],[-71.2560547,71.3618164],[-71.2193848,71.2388184],[-71.4950195,71.105127],[-71.5930664,71.086377],[-71.8561523,71.1047852],[-72.023877,71.065332],[-72.2977051,70.9388184],[-72.6327148,70.8307617],[-72.3125488,70.8325195],[-72.0091797,71.0134277],[-71.7425293,71.046875],[-71.3708496,70.9751465],[-71.1862305,70.9780273],[-71.0453613,71.05],[-70.7924805,71.1033203],[-70.6364746,71.0065918],[-70.6552246,70.8708984],[-70.7617187,70.7922363],[-71.0217773,70.6741211],[-71.1917969,70.6297852],[-71.5859375,70.5658691],[-71.8901855,70.431543],[-71.7723633,70.3941895],[-71.6836914,70.4175781],[-71.4766602,70.544043],[-71.2758789,70.500293],[-71.2795898,70.4251953],[-71.4294434,70.1277832],[-71.3130859,70.2093262],[-70.9797852,70.5810547],[-70.5609375,70.7382812],[-70.3372559,70.7878418],[-69.9498047,70.8450195],[-69.7957031,70.8345703],[-69.6955078,70.7858887],[-69.3953613,70.7892578],[-69.1687012,70.7641602],[-68.8907227,70.6871094],[-68.495752,70.6102539],[-68.4008301,70.5649902],[-68.3635254,70.48125],[-68.4825684,70.4148437],[-68.7936523,70.3244141],[-69.2987305,70.2768066],[-69.6989746,70.1893066],[-70.0614258,70.0708496],[-69.9130859,70.0290527],[-69.7958496,70.0469238],[-69.6345703,70.1287598],[-69.4830078,70.1600586],[-68.9185547,70.2069824],[-68.7529297,70.1991699],[-68.723291,70.1456543],[-69.0083008,69.9789551],[-68.744043,69.9414062],[-68.4893555,70.0648437],[-68.2104492,70.128418],[-68.3186035,70.1605957],[-68.2831055,70.2282715],[-68.1206543,70.3145996],[-67.8553223,70.2817871],[-67.3636719,70.0344238],[-67.1958984,69.8606934],[-67.2216309,69.7307129],[-67.3367188,69.7209961],[-67.8062012,69.7773926],[-68.1139648,69.7542969],[-68.3720703,69.6443848],[-68.6699219,69.6436523],[-69.1245117,69.5745117],[-69.2507812,69.5119141],[-69.0749023,69.5181152],[-68.7852539,69.564209],[-68.5130371,69.5772949],[-68.0581543,69.4758789],[-67.3609375,69.4725098],[-67.0526855,69.4211914],[-66.7708496,69.3366699],[-66.6762695,69.2584473],[-66.6792969,69.1910645],[-66.8028809,69.1527344],[-67.3316406,69.1847168],[-67.4837891,69.1669922],[-67.7650391,69.2002441],[-67.9384766,69.2481445],[-68.1981934,69.2026855],[-68.4062988,69.2322266],[-68.6188965,69.2060059],[-69.040625,69.097998],[-68.993457,69.0793457],[-68.4155273,69.1720703],[-68.3039551,69.1664063],[-67.751709,69.0386719],[-67.7510254,68.9338379],[-67.8832031,68.7839844],[-68.3242187,68.844043],[-68.5427734,68.8427734],[-68.725293,68.8102051],[-69.2188477,68.8728027],[-69.3190918,68.8569824],[-68.8714355,68.7599609],[-68.3332031,68.7325684],[-68.1524902,68.6810547],[-68.1483398,68.6161133],[-68.0379395,68.5507324],[-67.8750488,68.5229492],[-67.655957,68.5507324],[-67.4555176,68.4979004],[-67.1111816,68.4614746],[-66.8541992,68.4716309],[-66.713916,68.4457031],[-66.9972656,68.3741699],[-67.032959,68.3260742],[-66.830957,68.215625],[-66.8998047,68.0630859],[-66.7290039,68.1290039],[-66.6845703,68.029248],[-66.6054688,68.1100098],[-66.630957,68.2106445],[-66.5307617,68.2503418],[-66.2124023,68.2804199],[-66.274707,68.0407715],[-66.4138672,67.9042969],[-66.5299805,67.8603027],[-66.3429687,67.8532715],[-66.2251953,67.9587402],[-65.9423828,68.0709473],[-65.9749023,67.9574219],[-65.8643555,67.9228516],[-65.701709,67.9866699],[-65.509082,67.9682617],[-65.5408691,67.765625],[-65.4012695,67.6748535],[-65.4422363,67.8323242],[-65.3003418,67.939502],[-64.9769043,68.0434082],[-64.8354492,67.9899902],[-65.0260254,67.892041],[-65.0210938,67.7875488],[-64.8298828,67.7842773],[-64.637793,67.8402344],[-64.5275391,67.8126953],[-64.15625,67.622998],[-64.0194336,67.6548828],[-0.63850195312500034E2,67.5660645],[-64.0774902,67.4956055],[-64.007959,67.3473145],[-64.6999512,67.3505371],[-64.3759277,67.3010742],[-64.3564453,67.2561523],[-63.8362305,67.2641113],[-63.8241211,67.3156738],[-63.5916016,67.3775391],[-0.63315820312499966E2,67.3363281],[-63.0401367,67.2350098],[-63.1616211,67.1743652],[-63.2583984,67.0246582],[-63.7015625,66.8223633],[-62.9623047,66.9492676],[-62.7104492,66.9541016],[-62.3797363,66.9053711],[-62.123584,67.0467285],[-0.61968554687499925E2,67.019043],[-0.61514697265624925E2,66.7784668],[-0.61299707031250016E2,66.6487305],[-0.61307226562500034E2,66.6088379],[-61.527832,66.5581055],[-0.61724121093749964E2,66.637793],[-61.9044922,66.678125],[-62.1233398,66.6430664],[-61.6526367,66.503125],[-61.5708008,66.3729004],[-0.61862695312499966E2,66.3128418],[-62.1584473,66.3379883],[-0.62374511718749936E2,66.4108398],[-62.553125,66.4068359],[-62.4056641,66.315918],[-62.5335937,66.227002],[-62.2420898,66.1479492],[-0.61991601562500016E2,66.0353027],[-0.62244335937499976E2,66.0058594],[-0.62590332031249964E2,66.0344238],[-0.62410302734374966E2,65.9057617],[-0.62381982421874966E2,65.8333008],[-0.62610253906250016E2,65.7236328],[-62.6588867,65.6399414],[-62.9688965,65.6223633],[-63.1689453,65.6573242],[-63.4587402,65.8530273],[-63.4208984,65.7085937],[-0.63651074218749955E2,65.6609863],[-63.3374512,65.616748],[-63.3642578,65.5432129],[-63.3633789,65.2297363],[-63.4018066,65.118457],[-0.63606591796874966E2,64.9280762],[-0.63737158203125006E2,64.9891113],[-63.8956055,65.1092773],[-64.0614258,65.1219238],[-64.1518555,65.0661621],[-64.3457031,65.1724121],[-64.2696777,65.4007812],[-64.4698242,65.2527344],[-64.5550781,65.1166016],[-64.665332,65.1689453],[-65.1084961,65.4637695],[-65.1756836,65.5681641],[-65.4016113,65.7640137],[-65.378125,65.8220703],[-65.1848633,65.9399414],[-64.8537109,66.015918],[-64.672998,66.1927246],[-64.4453613,66.3171387],[-64.6551758,66.2870117],[-65.0044922,66.0777344],[-65.3053711,66.0084473],[-65.5437012,65.987207],[-65.8257324,65.9969238],[-65.8571777,66.0864258],[-65.6563477,66.2047363],[-65.9400391,66.1274414],[-66.0637207,66.1327148],[-66.2085938,66.2063965],[-66.4769531,66.2797363],[-66.7123047,66.4604492],[-66.7874023,66.5556641],[-66.9863281,66.6274902],[-66.9689941,66.547168],[-67.1896484,66.5330078],[-67.3073242,66.5697266],[-67.3176758,66.5203613],[-67.191748,66.4327637],[-67.1897461,66.3217285],[-67.3112305,66.3037598],[-67.5597656,66.4004395],[-67.868457,66.4901367],[-67.8833984,66.4674316],[-67.7044922,66.2686035],[-67.1832031,66.0344238],[-67.2726562,65.9555664],[-67.5507812,65.9216309],[-67.8280273,65.9651855],[-68.1472656,66.129834],[-68.4599121,66.2492676],[-68.7489258,66.2000488],[-68.4670898,66.1731934],[-68.2171875,66.0788574],[-68.2568359,65.938623],[-68.1150391,65.8277832],[-67.8664551,65.7736816],[-67.9543457,65.6230957],[-67.9060547,65.5634766],[-67.5696289,65.6435547],[-67.399707,65.5883789],[-67.303418,65.4829102],[-67.1179687,65.4403809],[-67.3260742,65.3566406],[-67.0665039,65.2440918],[-66.9703613,65.0849121],[-66.8309082,65.0741699],[-66.7327637,64.8600586],[-66.6771484,64.8136719],[-66.6666992,64.9738281],[-66.5177734,64.9719727],[-66.2237305,64.8541016],[-66.3015137,64.7777344],[-66.1524902,64.7349121],[-65.9385254,64.8857422],[-65.7680664,64.8535645],[-65.5131836,64.7064941],[-65.4319336,64.726416],[-65.2748047,64.631543],[-65.512793,64.5259766],[-65.1786133,64.5097168],[-65.0746094,64.4366699],[-65.2129883,64.3032715],[-65.5936523,64.3111328],[-65.3478027,64.2323242],[-65.1496094,64.0871582],[-65.1873047,64.0379883],[-65.0105957,64.0088379],[-64.6784668,64.0279785],[-64.6861816,63.9609375],[-64.7981445,63.9159668],[-64.5763184,63.8973633],[-64.4109375,63.7063477],[-64.5615723,63.6796875],[-64.4986328,63.462793],[-64.5143555,0.63263964843750045E2],[-64.6956055,0.63268847656250045E2],[-64.8862793,0.63548730468749966E2],[-64.9896973,63.6433594],[-65.1918457,0.63764257812500006E2],[-65.0894043,63.605957],[-65.0047852,0.63333398437499966E2],[-65.0689453,63.2634766],[-64.6723633,0.62921972656250006E2],[-64.7518555,0.62887158203125004E2],[-64.9232422,0.62889160156249964E2],[-65.132959,62.9523437],[-65.162793,62.9326172],[-65.046582,62.7014648],[-65.1084961,62.6264648],[-65.5724121,62.8688965],[-65.7403809,0.62931982421875006E2],[-65.8640625,62.9211426],[-65.9788574,0.63000683593749955E2],[-66.2240234,63.1071777],[-66.2010742,63.00625],[-66.4144531,0.63027197265625034E2],[-66.6549805,63.2647461],[-66.6364258,0.63080126953125074E2],[-66.6974609,0.63069531249999955E2],[-66.7732422,63.1622559],[-66.974707,63.2555664],[-67.0179199,0.63316503906250006E2],[-67.1797852,63.3050293],[-67.4950195,63.4814453],[-67.7092285,63.6339355],[-67.8932617,0.63733740234375006E2],[-67.7225586,0.63422753906249966E2],[-67.8378906,63.4492188],[-68.2435547,0.63637060546875006E2],[-68.49375,63.7254883],[-68.8589355,63.7518555],[-68.911084,63.7032227],[-68.6705566,63.5136719],[-68.3739258,63.3521973],[-68.1412598,63.1723145],[-67.915332,63.1136719],[-67.6759766,0.63093554687500045E2],[-67.7369629,63.0095703],[-67.4682129,62.9482422],[-67.2126953,62.8435059],[-66.979541,62.7008301],[-66.644873,62.6020508],[-66.28125,62.3026855],[-65.9801758,62.2088867],[-66.0269531,62.137207],[-66.1331543,0.62102392578125006E2],[-66.0588867,0.61913867187500045E2],[-66.2566895,61.8682617],[-66.5513184,61.9255859],[-66.803125,62.0125977],[-67.1810547,0.62072851562500034E2],[-67.4401367,62.1512695],[-68.3786133,0.62235156250000045E2],[-68.5358887,62.2556152],[-68.7243652,62.3189941],[-69.0823242,0.62405175781249966E2],[-69.3660156,62.571875],[-69.545166,62.7445801],[-69.7995117,62.7904785],[-70.0709473,62.7572266],[-70.2361328,62.7633789],[-70.5713379,62.8691895],[-70.801416,62.910498],[-71.1057617,63.0022461],[-70.9460449,63.1207031],[-71.2537109,0.63042529296875045E2],[-71.6171387,63.187207],[-71.9730469,0.63429882812500004E2],[-71.6965332,63.4302246],[-71.4558594,63.5122559],[-71.3808594,63.5803223],[-71.5134766,63.5865723],[-71.725293,63.7061523],[-71.8375488,63.7249512],[-72.2229492,0.63708886718749994E2],[-72.2887695,63.7569824],[-72.159375,63.8898926],[-72.45,63.8181152],[-72.5861328,63.9007813],[-72.6393066,0.63989062500000045E2],[-72.9131836,64.1171875],[-73.1743164,64.2818848],[-73.4436523,64.4234863],[-73.2712891,64.5825195],[-73.6269531,64.6025391],[-73.728418,64.5682617],[-73.9103516,64.578125],[-73.9503906,64.4658203],[-74.0987305,64.4437012],[-74.1304687,64.6078125],[-74.4158691,64.6334961],[-74.5124512,64.670166],[-74.6342773,64.8239258],[-74.9162598,64.7919922],[-74.6400391,64.5570801],[-74.6947266,64.496582],[-75.0673828,64.4566895],[-75.328418,64.4904297],[-75.487793,64.5407715],[-75.7150391,64.5243652],[-75.7666992,64.3919434],[-76.1180664,64.3763184],[-76.4068359,64.3031738],[-76.5615234,64.3016113],[-76.7238281,64.242041],[-77.2825195,64.2803711],[-77.6277832,64.3634766],[-77.7911621,64.3670898],[-78.0452148,64.4992676],[-78.1745605,64.6177246],[-78.1896973,64.7518066],[-78.0956055,64.9392578],[-77.8761719,65.0729492],[-77.4474609,65.1615723],[-77.3608887,65.1965332],[-77.4614746,65.3281738],[-77.326709,65.453125],[-76.7789062,65.4138672],[-76.4816895,65.3697266],[-75.8283203,65.2270508],[-75.6481445,65.1408203],[-75.5015625,65.0130859],[-75.5908691,64.9276855],[-75.4520996,64.8416016],[-75.3571289,65.0087402],[-75.5046875,65.1351563],[-75.7729492,65.2570313],[-75.7085937,65.3157227],[-75.3166504,65.2748047],[-75.1663086,65.2839355],[-75.0477539,65.3639648],[-74.8498535,65.3890625],[-74.6654785,65.3669434],[-74.3907227,65.3975586],[-74.2368652,65.4838867],[-73.8779297,65.5188477],[-73.5507813,65.4852539],[-73.5607422,65.5429199],[-73.7460938,65.7666992],[-74.0331055,65.8770508],[-74.2761719,66.0127441],[-74.4339355,66.1390137],[-74.3749023,66.2081543],[-73.9336914,66.3580566],[-73.5842285,66.5069336],[-73.2808105,66.6749512],[-73.033252,66.7281738],[-72.9467773,66.883252],[-72.7888184,67.0306152],[-72.3649414,67.1333984],[-72.2200195,67.2542969],[-72.3528809,67.3418945],[-72.5764648,67.6586426],[-72.725293,67.8116211],[-72.9039551,67.9447754],[-73.0634277,68.1069824],[-73.3282227,68.266748],[-73.3068848,68.3678223],[-73.6444824,68.2945313],[-73.8205078,68.3629395],[-73.8793457,68.4293945],[-73.7825195,68.5780273],[-73.8515625,68.7013672],[-74.1179688,68.7009277],[-73.9660645,68.5787598],[-73.9892578,68.5486328],[-74.2701172,68.5412109],[-74.4224121,68.5799316],[-74.6479492,68.7075195],[-74.6999512,68.8083496],[-74.9104004,68.8231445],[-74.7523926,68.8920898],[-74.9250977,68.9407227],[-74.9172852,68.9828613],[-74.7166992,69.0455078],[-74.8548828,69.0658203],[-75.2132812,68.909375],[-75.5226562,68.9527344],[-75.6230469,68.8877441],[-76.403418,68.692334],[-76.6194336,68.7213867],[-76.5572266,69.0094727],[-76.3809082,69.0524414],[-75.9537109,69.0308105],[-75.6679687,69.1588379],[-75.6477539,69.2125488],[-75.7871582,69.3186523],[-76.0464844,69.386377],[-76.407959,69.4411133],[-76.5203613,69.5166016],[-76.4632812,69.6199707],[-76.2311035,69.6534668],[-76.5132812,69.6839355],[-76.742334,69.5729004],[-77.1288086,69.6527344],[-76.8686035,69.745166],[-76.9622559,69.8248535],[-77.2324707,69.8545898],[-77.5916504,69.8456055],[-77.6353027,69.9004395],[-77.7219238,70.1708008],[-77.8425293,70.2470703],[-78.1567871,70.2191406],[-78.2828125,70.2291504],[-78.6214355,70.353418],[-78.8308594,70.4631836],[-78.9797852,70.5813477],[-79.0664062,70.6035645],[-79.2531738,70.5347168],[-79.3973145,70.4372559],[-79.3474121,70.3723145],[-79.0175293,70.3251953],[-78.8098145,70.1785645],[-78.777832,70.0476563],[-78.8896484,69.9774902],[-79.3033203,69.8948242],[-79.615918,69.8947266],[-80.1621094,69.9959961],[-81.098291,70.0911621],[-81.5595703,70.1112305],[-81.6519531,70.0946289],[-81.4217285,70.0246094],[-81.1968262,69.9828125],[-80.9248047,69.8505859],[-80.8402832,69.7713867],[-80.9217285,69.7309082],[-81.5646973,69.9427246],[-82.1387207,69.8412109],[-82.4877441,69.8659668],[-83.1499512,70.009082],[-83.5307617,69.9647949],[-83.859082,69.9627441],[-84.521875,70.0052246],[-84.7651367,70.0336426],[-84.909082,70.0782227],[-85.432373,70.111377],[-85.7800293,70.0366699],[-86.1981934,70.105127],[-86.3220215,70.1454102],[-86.4831055,70.2885742],[-86.4998047,70.3503906],[-86.396875,70.465332],[-86.6243164,70.4012695],[-86.8092773,70.3882812],[-87.1719727,70.3998535],[-87.0632813,70.3250977],[-87.2378906,70.3097168],[-87.5024414,70.3256836],[-87.6702148,70.3098145],[-87.9006836,70.2519043],[-88.4020996,70.4424805],[-88.6629883,70.4708496],[-88.8484375,70.5229004],[-89.2083008,70.7597168],[-89.3715332,70.9961426],[-89.4559082,71.0617187],[-88.5166504,71.0305664],[-88.309082,70.9843262],[-87.8449219,70.9443848],[-87.1815918,70.9875488],[-87.1400879,71.0116211],[-87.5723145,71.1075684],[-87.8724609,71.2085449],[-88.0606445,71.2272461],[-88.589502,71.2402832],[-89.0793457,71.2879395],[-89.4176758,71.3521973],[-89.6933105,71.4234863],[-89.845752,71.4922852],[-90.0251953,71.9487793],[-89.9314941,72.0490234],[-89.6638184,72.157959],[-89.8229004,72.2078125],[-89.8730957,72.3126465],[-89.8615234,72.4119141],[-89.7015137,72.5680664],[-89.3577148,72.8041504],[-89.2632324,73.0689941],[-88.9768066,73.2524902],[-88.7609375,73.3124023],[-88.7051758,73.4032715],[-88.1700195,73.5953125],[-87.7197754,73.7229004],[-87.4723633,73.7594238],[-86.76875,73.8339844],[-86.4063965,73.8547852],[-85.9507812,73.8501465],[-85.110498,73.8081543],[-85.0093262,73.7786133],[-84.9745117,73.6947754],[-85.2042969,73.6035645],[-85.6818848,73.4614746],[-86.0864746,73.2602539],[-86.4813965,72.9602539],[-86.6293457,72.8708008],[-86.6677734,72.7625488],[-86.5946289,72.6611328],[-86.3225586,72.4608398],[-86.3413574,72.1231934],[-86.218457,71.8991211],[-86.0361328,71.7709473],[-85.5371582,71.5554199],[-85.0787109,71.3984863],[-85.0233887,71.3532227],[-85.4053711,71.2267578],[-85.9454102,71.1626465],[-86.1794434,71.0958984],[-86.5893555,71.010791]]],[[[-0.10000190429687497E3,73.9458984],[-0.9915795898437497E2,73.7315918],[-98.1518555,73.8182129],[-97.8321777,73.8793457],[-97.5818359,73.8875488],[-0.9722475585937497E2,73.8437988],[-97.1117187,73.790332],[-0.9700170898437499E2,73.6665039],[-97.1563965,73.5921875],[-0.9759697265624993E2,73.5366211],[-97.5858398,73.4711426],[-97.350293,73.480957],[-0.9723037109374997E2,73.4212891],[-97.2725098,73.3868164],[-0.9779589843749997E2,73.2853027],[-0.9843696289062501E2,73.0002441],[-0.9836665039062497E2,72.9341309],[-0.9818081054687497E2,72.9930664],[-97.9394043,73.0355957],[-0.9772480468749995E2,73.0366699],[-97.4756836,72.9922852],[-97.2958496,72.9180176],[-0.9737768554687493E2,72.8649414],[-97.2375977,72.8374512],[-97.0830078,72.7628418],[-0.9715893554687497E2,72.6427734],[-0.9705180664062499E2,72.6368164],[-96.6712891,72.7131836],[-96.5420898,72.6987305],[-96.4401367,72.4873047],[-96.519873,72.3931152],[-96.7958984,72.3137695],[-96.5928711,72.2044922],[-0.9661811523437501E2,72.1458984],[-0.9676630859375001E2,72.0459473],[-0.9662436523437495E2,71.9675781],[-96.6134277,71.8338379],[-0.9694648437499993E2,71.7918945],[-0.9722221679687497E2,71.6734863],[-97.5822754,71.6296875],[-0.9818134765624997E2,71.6624512],[-0.9828388671875001E2,71.7155273],[-0.9832270507812501E2,71.8523438],[-0.9845883789062503E2,71.7731934],[-0.9823144531249997E2,71.5589355],[-98.1986328,71.4408691],[-98.4123047,71.3488281],[-0.9866289062499993E2,71.3020996],[-98.9862305,71.3694824],[-99.1671387,71.3671875],[-99.2761719,71.4242187],[-0.9940366210937493E2,71.5571777],[-0.9973471679687499E2,71.7572266],[-0.10032568359374994E3,72.0038574],[-100.594482,72.1523438],[-0.10070683593749996E3,72.1859375],[-0.10098364257812494E3,72.2100586],[-0.10120854492187495E3,72.3169922],[-101.49834,72.2778809],[-0.10172392578124996E3,72.3148926],[-0.10197368164062495E3,72.4861328],[-0.10240224609374995E3,72.5947266],[-102.65708,72.7194336],[-0.10271367187499999E3,72.7829102],[-0.10262846679687495E3,72.910791],[-0.10250380859374995E3,73.0059082],[-0.10220400390624998E3,73.0772949],[-101.922461,73.0569824],[-0.10175454101562498E3,72.9428223],[-101.543604,72.8830566],[-0.10135058593750003E3,72.7462891],[-101.087598,72.7132812],[-0.10048476562500002E3,72.7729492],[-100.395703,72.977002],[-0.10022792968750001E3,72.8989258],[-100.096729,72.9631348],[-0.10028266601562497E3,73.1203125],[-0.10053139648437502E3,73.1382812],[-0.10053637695312497E3,73.1978516],[-0.10043881835937499E3,73.2545898],[-0.10022587890624995E3,73.2546875],[-100.066992,73.211084],[-0.9982514648437503E2,73.2138672],[-0.10000590820312499E3,73.239502],[-0.10025795898437501E3,73.3402344],[-0.10036611328125001E3,73.3590332],[-0.10049799804687497E3,73.3158203],[-0.10088935546875003E3,73.2753418],[-0.10145087890625003E3,73.430957],[-0.10152319335937501E3,73.486377],[-0.10132314453124992E3,73.5719727],[-0.10097578124999995E3,73.5997559],[-100.52168,73.4493164],[-100.607129,73.5753906],[-0.10089824218749997E3,73.6580566],[-0.10098154296874998E3,73.7271973],[-0.10091513671874995E3,73.8053711],[-0.10048364257812497E3,73.8435059],[-0.10018232421874995E3,73.8012695],[-99.9911133,73.795166],[-0.9991186523437501E2,73.8470215],[-100.153809,73.8440918],[-0.10022705078125001E3,73.8891113],[-0.10000190429687497E3,73.9458984]]],[[[-98.2703613,73.8685059],[-98.6910645,73.8564941],[-0.9897392578124997E2,73.8120605],[-99.3851562,73.8792969],[-99.3456055,73.9257324],[-0.9900468749999995E2,73.9649414],[-0.9890449218749995E2,74.0068848],[-98.5849609,74.0345215],[-0.9806103515624997E2,74.1046875],[-0.9769824218749997E2,74.1086914],[-0.9765913085937497E2,74.0716309],[-0.9775473632812503E2,74.0055176],[-98.1469727,73.8888184],[-98.2703613,73.8685059]]],[[[-93.1708496,74.1609863],[-92.7780273,74.1137207],[-0.9249282226562497E2,74.0620605],[-92.2227051,73.9723633],[-91.6304199,74.0277832],[-0.9108798828125003E2,74.0092773],[-90.6274414,73.951709],[-0.9035458984374999E2,73.8686523],[-90.5655762,73.6864258],[-90.7645508,73.5806152],[-0.9093369140625003E2,73.5276855],[-0.9106762695312497E2,73.4155273],[-91.2978027,73.2849121],[-91.5537109,73.236084],[-0.9142592773437497E2,73.194873],[-91.6209961,73.0258789],[-91.9053223,72.8493164],[-0.9211791992187497E2,72.7538086],[-92.3919434,72.718457],[-93.340625,72.8018555],[-0.9357866210937493E2,72.8005371],[-0.9421132812499997E2,72.7569336],[-0.9377055664062495E2,72.6682129],[-0.9357226562499997E2,72.5586426],[-93.5551758,72.4211426],[-93.8706055,72.2526367],[-94.0375488,72.0287598],[-94.14375,72.0008301],[-94.497168,72.0436035],[-95.0078613,72.012793],[-95.1929688,72.0274414],[-95.1667969,72.1800293],[-0.9525102539062493E2,72.5019531],[-0.9554760742187497E2,72.781543],[-95.6131836,72.9416016],[-95.5892578,73.1741699],[-0.9564423828124993E2,73.5574707],[-0.9563291015625003E2,73.695459],[-0.9538598632812499E2,73.755127],[-0.9481684570312495E2,73.6625488],[-94.6910156,73.6714355],[-94.8969238,73.7160156],[-95.0594727,73.8050781],[-0.9515258789062497E2,73.9327637],[-0.9512119140624995E2,73.9850586],[-94.9735352,74.0414062],[-0.9448256835937497E2,74.1131348],[-0.9393881835937495E2,74.1315918],[-93.7846191,74.1183594],[-93.4103027,74.1787598],[-93.1708496,74.1609863]]],[[[-0.11973632812499996E3,74.1126465],[-0.11947109374999992E3,74.2012207],[-0.11920595703125002E3,74.197998],[-0.11914960937499998E3,74.1678711],[-0.11913188476562495E3,74.0278809],[-0.11902568359374997E3,74.0447266],[-0.11874414062499999E3,74.1920898],[-0.11854399414062499E3,74.2446289],[-0.11796586914062497E3,74.2660645],[-0.11751484375000001E3,74.2317383],[-0.11719882812500003E3,74.1711426],[-0.11672236328124995E3,74.0271484],[-0.11595771484374994E3,73.7479492],[-115.510693,73.61875],[-0.11539282226562497E3,73.5019531],[-115.446875,73.4388672],[-0.11599228515624998E3,73.3232422],[-0.11648251953125002E3,73.2532227],[-0.11706542968750003E3,73.1072754],[-0.11746445312499996E3,73.0377441],[-0.11798320312499995E3,72.9021973],[-0.11896157226562498E3,72.6841309],[-0.11913154296874994E3,72.6088379],[-119.407764,72.3604004],[-0.11951284179687501E3,72.3026855],[-0.11976748046875001E3,72.2438477],[-0.12017988281250001E3,72.2126465],[-0.12019443359374996E3,72.1267578],[-0.12036625976562496E3,71.8880371],[-0.12044316406249999E3,71.6308105],[-0.12061933593750001E3,71.5057617],[-0.12093032226562495E3,71.4462402],[-0.12147216796875003E3,71.3890137],[-0.12162216796875005E3,71.4476074],[-121.749365,71.4447754],[-0.12215664062499994E3,71.265918],[-0.12254951171874994E3,71.1935547],[-122.719775,71.1281738],[-122.936523,71.0879883],[-123.210596,71.1234375],[-0.12339335937499999E3,71.2188477],[-0.12359516601562498E3,71.4231934],[-0.12400776367187493E3,71.6774414],[-0.12475996093749998E3,71.8351562],[-0.12529667968749999E3,71.9730469],[-0.12576689453124995E3,71.9608398],[-0.12576259765624995E3,72.1375],[-0.12558378906249995E3,72.1830566],[-0.12564677734374999E3,72.2365234],[-0.12551240234374995E3,72.3077148],[-0.12538276367187501E3,72.4238281],[-0.12498710937499996E3,72.5879883],[-0.12503022460937497E3,72.6447754],[-125.000391,72.8133301],[-0.12493085937499998E3,72.8631836],[-0.12458256835937497E3,72.9259277],[-124.588281,73.0053223],[-0.12473642578124999E3,73.0227051],[-124.836426,73.0762695],[-0.12480405273437499E3,73.1256836],[-0.12459399414062499E3,73.2433105],[-0.12442421874999997E3,73.4187012],[-0.12411416015624994E3,73.5273926],[-0.12403017578124997E3,73.6442383],[-0.12379726562499997E3,73.7681641],[-0.12387304687499994E3,73.8275879],[-0.12408803710937497E3,73.8568848],[-0.12426074218749997E3,73.9532715],[-0.12469624023437497E3,74.3481934],[-0.12346831054687499E3,74.4361328],[-0.12262314453125002E3,74.4641602],[-0.12174790039062499E3,74.540625],[-0.12131523437499993E3,74.5299805],[-0.12088164062499999E3,74.420752],[-0.12055449218749993E3,74.3529297],[-119.943604,74.2537109],[-0.11956264648437494E3,74.2328125],[-0.11973632812499996E3,74.1126465]]],[[[-97.3555176,74.5263184],[-97.6561035,74.4656738],[-97.75,74.5105469],[-0.9741650390624993E2,74.6265625],[-0.9729130859374993E2,74.5763672],[-97.3555176,74.5263184]]],[[[-95.3066406,74.5054199],[-95.7771973,74.5507324],[-95.8507324,74.5824707],[-95.6604492,74.6369141],[-95.5102051,74.6367676],[-95.2783691,74.5395508],[-95.3066406,74.5054199]]],[[[-0.10411992187499995E3,75.0363281],[-0.10430869140624995E3,75.030957],[-0.10463432617187502E3,75.0612793],[-0.10488740234374998E3,75.1477539],[-0.10464882812499997E3,75.3497559],[-0.10434619140624996E3,75.4299316],[-0.10407465820312497E3,75.4245117],[-103.804102,75.3455078],[-0.10364213867187496E3,75.1629395],[-0.10381391601562495E3,75.0797363],[-0.10411992187499995E3,75.0363281]]],[[[-0.9354257812499995E2,75.0279297],[-93.4634766,74.8564941],[-93.547168,74.6910645],[-0.9362617187499993E2,74.6608887],[-0.9398457031249995E2,74.6441895],[-94.6972656,74.6421875],[-95.286084,74.7940918],[-0.9586542968749995E2,74.8304199],[-96.0942383,74.9325195],[-96.2701172,74.9203125],[-0.9638632812499993E2,74.9994629],[-96.5598633,74.9903809],[-96.5657715,75.0987305],[-0.9638286132812495E2,75.211377],[-0.9618037109375001E2,75.2400879],[-96.1249023,75.3583008],[-0.9595463867187493E2,75.4437988],[-0.9567080078125001E2,75.5286621],[-0.9504951171875001E2,75.6218262],[-94.6486328,75.6230469],[-0.9442724609374997E2,75.5933594],[-0.9390908203125001E2,75.4225098],[-0.9375083007812503E2,75.3490234],[-0.9349755859375001E2,75.1368652],[-0.9354257812499995E2,75.0279297]]],[[[-0.9607856445312495E2,75.5101074],[-96.2366211,75.4748047],[-0.9646162109375001E2,75.4942383],[-0.9672285156249995E2,75.3807617],[-0.9685712890624995E2,75.3691406],[-97.0206543,75.4680664],[-0.9698281249999997E2,75.5098145],[-0.9642768554687491E2,75.6063477],[-96.3678223,75.6546387],[-95.9598633,75.5543457],[-0.9607856445312495E2,75.5101074]]],[[[-121.076221,75.7452637],[-0.12124091796874998E3,75.7518555],[-0.12102631835937497E3,75.8475098],[-0.12104228515624995E3,75.9029785],[-0.12087871093749999E3,75.9066895],[-0.12095493164062499E3,75.7887695],[-121.076221,75.7452637]]],[[[-0.9452656249999995E2,75.7493164],[-0.9478735351562497E2,75.7914063],[-94.9012207,75.9307617],[-94.5378906,75.9964355],[-94.2962891,75.7880859],[-0.9452656249999995E2,75.7493164]]],[[[-118.328125,75.5796875],[-118.613867,75.5154297],[-0.11881713867187501E3,75.5221191],[-0.11939458007812497E3,75.617334],[-0.11932016601562502E3,75.6625488],[-0.11862607421874999E3,75.90625],[-0.11813666992187495E3,75.9944824],[-0.11775249023437492E3,76.1124512],[-0.11751259765625001E3,76.0994141],[-0.11762636718750001E3,75.9659668],[-0.11822651367187497E3,75.6111816],[-118.328125,75.5796875]]],[[[-79.0630859,75.9258789],[-79.0517578,75.8669922],[-79.5445313,75.8256348],[-79.6987305,75.883252],[-79.5512695,75.9583496],[-79.0093262,76.1458984],[-78.845166,76.1062988],[-79.0566406,75.9851563],[-79.0630859,75.9258789]]],[[[-0.10222734374999993E3,76.0148926],[-0.10201787109374999E3,75.9535156],[-0.10204746093749998E3,75.9277344],[-102.423438,75.8691895],[-0.10257958984375003E3,75.7802246],[-0.10294355468750001E3,75.7634277],[-0.10331474609374995E3,75.764209],[-0.10304150390624997E3,75.9188477],[-103.201562,75.9584961],[-0.10376977539062503E3,75.8923828],[-0.10398525390624997E3,75.9331055],[-0.10380078124999993E3,76.0370117],[-0.10424248046874996E3,76.0469727],[-0.10440605468749997E3,76.1084961],[-0.10435063476562496E3,76.1823242],[-104.012061,76.222998],[-0.10357143554687494E3,76.2582031],[-0.10309824218749999E3,76.3114746],[-0.10272802734374999E3,76.3070312],[-0.10258408203124996E3,76.2816406],[-0.10249003906249999E3,76.0950684],[-0.10222734374999993E3,76.0148926]]],[[[-0.10402285156249998E3,76.5831055],[-0.10372275390624995E3,76.6010742],[-0.10358461914062495E3,76.5388672],[-0.10305131835937495E3,76.4498535],[-103.082959,76.4051758],[-0.10347221679687497E3,76.3290527],[-0.10427065429687501E3,76.3262695],[-0.10440766601562494E3,76.3651367],[-104.576611,76.5401855],[-0.10458569335937499E3,76.6064941],[-0.10420512695312499E3,76.6661133],[-0.10399248046875002E3,76.6569824],[-0.10402285156249998E3,76.5831055]]],[[[-0.9770092773437497E2,76.4665039],[-0.9770683593749993E2,76.3037109],[-97.5306641,76.181543],[-97.5310547,76.1094238],[-0.9761347656249993E2,76.0526367],[-0.9765214843749997E2,75.9401855],[-97.6016602,75.8510742],[-97.862793,75.7380859],[-0.9740751953124999E2,75.6725098],[-0.9740961914062495E2,75.5520996],[-97.3360352,75.4198242],[-0.9765332031249997E2,75.5077637],[-97.8782227,75.4161133],[-0.9785273437500001E2,75.2603027],[-0.9770488281249999E2,75.1908203],[-0.9767431640624997E2,75.1272949],[-97.7993652,75.1166504],[-98.0916992,75.1762207],[-97.9533203,75.0601563],[-98.1209473,75.0327148],[-0.9870351562499997E2,75.0058105],[-99.1558105,75.0157227],[-0.9942060546874993E2,75.04375],[-0.9962690429687495E2,74.9837402],[-100.234375,75.0077148],[-0.10035664062499994E3,75.066748],[-0.10048349609374995E3,75.1884277],[-0.10045947265625003E3,75.2190918],[-0.10015205078125001E3,75.2356445],[-0.10036411132812496E3,75.2895508],[-0.10073115234374995E3,75.3465332],[-0.10071191406250003E3,75.4063477],[-0.10027963867187498E3,75.4609863],[-0.9996528320312497E2,75.5685059],[-99.5911621,75.6553711],[-99.2094238,75.6686035],[-0.9919458007812497E2,75.6983887],[-99.9151367,75.68125],[-0.10090175781249998E3,75.6204102],[-0.10120683593749996E3,75.5904297],[-0.10146132812500002E3,75.6079102],[-102.541406,75.513623],[-0.10270039062499994E3,75.5436035],[-0.10279750976562501E3,75.5996582],[-0.10272783203124995E3,75.6387207],[-0.10241069335937499E3,75.7128418],[-102.252051,75.7777344],[-0.10214472656249998E3,75.8750488],[-0.10194282226562495E3,75.8838379],[-0.10159965820312496E3,75.832666],[-0.10126142578124997E3,75.7582031],[-0.10097280273437498E3,75.7984375],[-0.10125883789062499E3,75.7836426],[-0.10150590820312496E3,75.9180664],[-0.10143134765624995E3,75.9919922],[-0.10171679687500003E3,76.0079102],[-0.10187211914062496E3,76.0831055],[-0.10177138671874994E3,76.1500977],[-0.10152895507812494E3,76.2172852],[-101.557031,76.2358398],[-0.10190981445312498E3,76.234375],[-0.10213774414062499E3,76.2848633],[-102.104687,76.3312012],[-0.10185849609374993E3,76.4390137],[-0.10167724609374996E3,76.4510254],[-0.10133974609374995E3,76.410498],[-101.139062,76.345166],[-101.055811,76.2455566],[-100.900098,76.2070801],[-0.10002011718749995E3,75.9395508],[-0.9986547851562497E2,75.9242187],[-99.688916,75.9597168],[-99.9783203,76.0294922],[-0.10011284179687502E3,76.1172363],[-0.10000175781249995E3,76.139209],[-0.9954106445312497E2,76.1462891],[-0.9999760742187499E2,76.1958496],[-0.10018276367187497E3,76.1972168],[-0.10041420898437494E3,76.2425293],[-0.10035761718749997E3,76.2711426],[-0.9997773437500001E2,76.3124512],[-0.10017465820312499E3,76.3592773],[-0.10065068359374999E3,76.3959473],[-0.10089077148437497E3,76.4754883],[-0.10082973632812497E3,76.523877],[-0.10038793945312501E3,76.6135742],[-0.10006870117187499E3,76.6347656],[-99.669043,76.6241211],[-99.3294922,76.5212891],[-0.9916962890624997E2,76.4536621],[-98.890332,76.4655762],[-99.0236328,76.6145508],[-98.7108398,76.6938477],[-98.5275879,76.6673828],[-0.9823618164062495E2,76.5753418],[-0.9780839843749993E2,76.5187988],[-0.9770092773437497E2,76.4665039]]],[[[-0.10122612304687496E3,76.5793457],[-101.485205,76.575],[-0.10161308593749995E3,76.6045898],[-0.10116503906249997E3,76.6654297],[-0.10096215820312501E3,76.7341797],[-0.10062158203125001E3,76.7524902],[-0.10026914062499998E3,76.7341309],[-0.10074658203124999E3,76.6491699],[-0.10122612304687496E3,76.5793457]]],[[[-0.10829238281250001E3,76.0571289],[-0.10785229492187497E3,76.0577148],[-107.723486,75.9954102],[-0.10775517578124999E3,75.9402832],[-0.10802070312499998E3,75.8047852],[-0.10791752929687502E3,75.8021484],[-0.10770258789062503E3,75.8775879],[-0.10741826171874999E3,75.9065918],[-0.10713569335937498E3,75.8785645],[-0.10705039062500002E3,75.8454102],[-0.10691352539062503E3,75.6796387],[-0.10689169921875002E3,75.7824219],[-0.10669311523437497E3,75.8099609],[-0.10686206054687503E3,75.9300781],[-0.10667700195312499E3,76.0237305],[-0.10639658203124996E3,76.0601074],[-0.10590483398437496E3,76.0089844],[-0.10560444335937497E3,75.9299316],[-0.10548090820312503E3,75.7456543],[-0.10551948242187497E3,75.632373],[-0.10567841796875003E3,75.5013672],[-0.10570263671874999E3,75.4125],[-0.10586259765624997E3,75.1915527],[-0.10609262695312495E3,75.0894531],[-106.588232,75.0154297],[-0.10696113281249995E3,74.9400879],[-0.10715341796874996E3,74.9271484],[-0.10782006835937497E3,75.0000488],[-0.10835444335937495E3,74.942627],[-0.10875131835937496E3,74.9919434],[-108.633301,75.023291],[-108.831299,75.0648926],[-109.503125,74.8827637],[-110.175781,74.8399902],[-110.386719,74.8139648],[-110.624756,74.7526855],[-0.11074931640624997E3,74.6876953],[-0.11094086914062501E3,74.6387207],[-0.11172871093750001E3,74.5019531],[-0.11251933593749996E3,74.4168457],[-0.11301689453124999E3,74.4019043],[-0.11351406249999992E3,74.4300781],[-0.11367158203124997E3,74.4530273],[-0.11417475585937498E3,74.5737305],[-0.11437695312499997E3,74.6708496],[-0.11413247070312498E3,74.7661133],[-0.11386289062499993E3,74.8125488],[-113.324316,74.875293],[-112.835986,74.9755859],[-0.11266303710937503E3,74.9944336],[-0.11219282226562498E3,75.0097656],[-111.955762,75.0003906],[-111.671094,75.0194336],[-0.11125795898437495E3,75.1277344],[-0.11103349609374996E3,75.2267578],[-0.11118120117187503E3,75.2604492],[-0.11162084960937497E3,75.1677734],[-0.11225551757812497E3,75.1336914],[-112.59707,75.2116699],[-0.11295136718749997E3,75.1078125],[-0.11371176757812499E3,75.0686035],[-0.11384497070312494E3,75.112207],[-0.11388603515624996E3,75.2109375],[-0.11375878906249996E3,75.3217285],[-113.503027,75.3966797],[-0.11358896484375002E3,75.4121094],[-0.11387851562499993E3,75.3754395],[-0.11401650390624998E3,75.4342773],[-0.11416845703124994E3,75.239502],[-0.11448281249999995E3,75.2854004],[-0.11435776367187495E3,75.1712891],[-114.451758,75.0878906],[-0.11502011718749998E3,74.9761719],[-0.11527963867187502E3,75.1015625],[-0.11541318359374995E3,75.1149902],[-0.11572885742187496E3,74.9681152],[-0.11614262695312496E3,75.0415527],[-0.11647607421874996E3,75.1717773],[-0.11700483398437493E3,75.1561035],[-0.11750195312499997E3,75.2038574],[-0.11760009765624997E3,75.2716797],[-0.11738779296874998E3,75.4214844],[-117.154199,75.472998],[-0.11621274414062495E3,75.482959],[-0.11607714843749994E3,75.4929687],[-0.11533535156249998E3,75.6180664],[-115.121875,75.7058105],[-0.11603432617187502E3,75.6066895],[-0.11642563476562498E3,75.5853516],[-117.025195,75.6015137],[-0.11716362304687495E3,75.644873],[-0.11697265624999996E3,75.745752],[-0.11638964843750001E3,75.8082031],[-115.838086,75.8405762],[-0.11547685546874996E3,75.8413086],[-114.991504,75.8963379],[-0.11560224609375001E3,75.8948242],[-0.11633789062499994E3,75.8810547],[-0.11665429687500001E3,75.9292969],[-0.11654965820312502E3,76.0168457],[-116.609766,76.0737305],[-0.11645424804687495E3,76.1432129],[-116.209863,76.1944336],[-114.939404,76.1661133],[-0.11477861328124997E3,76.1726074],[-0.11502456054687501E3,76.2114746],[-115.796875,76.2525391],[-0.11582558593749995E3,76.329834],[-0.11558066406249995E3,76.4375],[-0.11499848632812501E3,76.4974609],[-0.11453476562499996E3,76.5017578],[-0.11419394531249999E3,76.4514648],[-114.058838,76.3007324],[-0.11382348632812501E3,76.2068359],[-113.171289,76.2577637],[-0.11269760742187496E3,76.201709],[-0.11233388671874994E3,76.071875],[-0.11186523437500003E3,75.9393066],[-0.11205668945312496E3,75.8342285],[-111.549121,75.8221191],[-0.11127568359374999E3,75.6125],[-0.11105268554687494E3,75.5485352],[-110.459375,75.5553223],[-0.10908637695312501E3,75.5064941],[-108.947168,75.5417969],[-0.10889951171874998E3,75.6240723],[-0.10894477539062495E3,75.6989746],[-0.10979604492187501E3,75.8630371],[-0.10987050781249998E3,75.9290527],[-109.454639,76.0212402],[-0.10941660156249996E3,76.0718262],[-0.10948681640624999E3,76.1446777],[-0.10971015625000001E3,76.2124512],[-0.10990781249999995E3,76.2226563],[-0.11020078124999993E3,76.2894531],[-0.11031445312500001E3,76.3693848],[-0.11027001953125003E3,76.4169922],[-0.10986484374999998E3,76.5223633],[-0.10933852539062497E3,76.7599609],[-0.10909824218749996E3,76.8118652],[-108.831641,76.8211426],[-0.10846699218749997E3,76.7375977],[-0.10861181640624999E3,76.6297363],[-108.5125,76.438916],[-0.10819355468749994E3,76.3300781],[-108.123193,76.2334473],[-0.10838188476562503E3,76.1157227],[-0.10829238281250001E3,76.0571289]]],[[[-89.7264648,76.5074219],[-90.0542969,76.4951172],[-0.9029350585937499E2,76.5794922],[-90.55625,76.7345703],[-0.9052480468749997E2,76.7878418],[-0.9013632812499995E2,76.8369629],[-89.9487793,76.8362305],[-89.6954102,76.7411621],[-89.8221191,76.6306152],[-89.7264648,76.5074219]]],[[[-0.11356069335937494E3,76.7432617],[-0.11371245117187495E3,76.7105469],[-0.11475146484374996E3,76.7588867],[-0.11483525390624999E3,76.7946777],[-0.11464707031250002E3,76.8510254],[-0.11441987304687501E3,76.8753418],[-0.11389165039062495E3,76.894873],[-0.11351650390624998E3,76.8250488],[-0.11356069335937494E3,76.7432617]]],[[[-0.9429497070312493E2,76.9124512],[-93.8109375,76.9141602],[-0.9360839843749997E2,76.8738281],[-0.9321186523437501E2,76.7546875],[-93.2005859,76.6690918],[-0.9331674804687493E2,76.5736816],[-93.5345703,76.4477051],[-0.9299536132812493E2,76.6204102],[-0.9271625976562493E2,76.6029785],[-0.9229702148437497E2,76.6160156],[-91.7894531,76.6757812],[-91.3050293,76.6807617],[-0.9112426757812497E2,76.6619141],[-0.9073842773437495E2,76.5813477],[-90.542627,76.495752],[-90.6216309,76.4646973],[-91.2630371,76.5002441],[-91.4432617,76.4985352],[-91.3338867,76.4464844],[-90.8547852,76.4373047],[-89.2845215,76.3016113],[-89.2190918,76.2582031],[-89.4065918,76.1891602],[-0.9031206054687495E2,76.1580078],[-0.9082734374999995E2,76.1855957],[-91.2604004,76.2299805],[-91.4073242,76.2200684],[-0.9127944335937497E2,76.1599121],[-0.9101977539062499E2,76.1415527],[-0.9071210937500001E2,76.0761719],[-90.2513672,76.0534668],[-90.0327637,75.9708984],[-89.9125488,75.9663086],[-89.6953125,75.8536133],[-89.5112305,75.8569336],[-89.2048828,75.7620117],[-89.3612305,75.6458008],[-89.6460449,75.5650391],[-89.2804199,75.5641113],[-88.9166992,75.4539551],[-88.8041016,75.5024902],[-88.8521484,75.6249023],[-88.7148926,75.6586426],[-88.569043,75.6451172],[-88.2013184,75.5120117],[-87.7297363,75.5756348],[-87.5391113,75.4848633],[-87.3646484,75.5913086],[-87.2569336,75.6177246],[-86.8144531,75.4913574],[-86.5447266,75.4633789],[-86.2363281,75.4063477],[-85.9514648,75.3950195],[-85.904541,75.4419434],[-86.06875,75.5022461],[-85.58125,75.5797852],[-85.3723145,75.5726074],[-84.9867676,75.6449219],[-84.6048828,75.6534668],[-83.9319824,75.8189453],[-83.7445801,75.8128418],[-83.2371094,75.7508301],[-82.5534668,75.8182617],[-82.1536621,75.8310547],[-81.6473633,75.7949219],[-81.1507812,75.7355469],[-81.1926758,75.684375],[-81.0007813,75.6431152],[-80.5277344,75.6421387],[-80.3219727,75.6291016],[-80.1257324,75.5421387],[-80.2866211,75.4903809],[-80.0996094,75.4674316],[-79.6602051,75.4495117],[-79.5078125,75.2953613],[-79.6344238,75.1993164],[-79.9771484,75.1186035],[-80.3575684,75.0515625],[-80.2606445,75.0021484],[-80.0364258,74.990918],[-79.7330078,75.0214355],[-79.5248047,74.9896973],[-79.401416,74.917627],[-79.507959,74.880127],[-79.9444824,74.8336426],[-80.2024414,74.8948242],[-80.3477539,74.9029785],[-80.1489258,74.7957031],[-80.2126953,74.7494629],[-80.2777344,74.5815918],[-81.2262207,74.5666504],[-81.8088379,74.4766113],[-82.0685059,74.4820801],[-82.4147461,74.5352051],[-82.735791,74.5302734],[-82.9310547,74.5655762],[-83.1169922,74.6931152],[-83.1026367,74.8165527],[-83.4070313,74.8848145],[-83.5435547,74.8922852],[-83.3413086,74.7645996],[-83.3937012,74.670166],[-83.5318848,74.5856934],[-83.8680664,74.5644043],[-84.245166,74.5151855],[-84.4255371,74.5081055],[-84.8182617,74.5419922],[-85.0614258,74.6069336],[-85.0867676,74.5276855],[-85.2143066,74.5186523],[-85.4744141,74.6003418],[-85.5435059,74.5347656],[-85.9556152,74.4987793],[-86.1098633,74.5397461],[-86.3405762,74.5134766],[-86.7307617,74.5570312],[-86.6661133,74.4891113],[-86.9947266,74.4803223],[-87.3637695,74.5021973],[-87.5925781,74.4703613],[-88.0058594,74.4893555],[-88.4230469,74.4941406],[-88.5556641,74.5414551],[-88.5376465,74.6087891],[-88.3395508,74.7848633],[-88.5349609,74.8317383],[-88.6820312,74.802002],[-88.8510742,74.6899902],[-88.9401367,74.789502],[-89.1919434,74.744873],[-89.1958008,74.6375488],[-89.5586914,74.5547363],[-89.8443848,74.548584],[-90.3616211,74.6104492],[-0.9055327148437499E2,74.6127441],[-90.784082,74.6958984],[-0.9096679687500003E2,74.7150879],[-90.8802246,74.8177734],[-91.1298828,74.7362793],[-91.1345703,74.6498535],[-91.3394531,74.6672363],[-91.5083496,74.6506836],[-0.9187104492187495E2,74.7435059],[-91.9615723,74.7932129],[-92.1741699,75.0510742],[-92.0763184,75.1235352],[-0.9234746093749993E2,75.2297852],[-92.4270996,75.3463867],[-92.3306641,75.4794434],[-0.9206884765625003E2,75.6579102],[-0.9218510742187499E2,75.8465332],[-92.4737305,75.9864746],[-0.9288330078125003E2,76.2139648],[-0.9309174804687495E2,76.3540039],[-0.9330859374999999E2,76.3596191],[-93.6651855,76.2731445],[-93.8523438,76.2696777],[-0.9473671874999995E2,76.2932617],[-0.9499663085937499E2,76.2577148],[-95.273877,76.2644043],[-95.4474121,76.3630371],[-95.8416504,76.4161621],[-96.0396973,76.4867188],[-95.6509766,76.584668],[-0.9597133789062495E2,76.5696289],[-96.6396973,76.7029297],[-0.9684565429687501E2,76.726416],[-0.9687802734375003E2,76.8027832],[-96.6793945,76.7657715],[-0.9645117187500003E2,76.7740723],[-96.4332031,76.8106934],[-0.9666103515624997E2,76.8551758],[-0.9681352539062493E2,76.9134766],[-0.9675830078124997E2,76.9717773],[-96.3772949,77.0045898],[-96.0612305,77.0500488],[-95.6382324,77.0637695],[-0.9512641601562495E2,77.017334],[-0.9429497070312493E2,76.9124512]]],[[[-0.11555126953125003E3,77.3632812],[-0.11547558593749999E3,77.3243164],[-0.11562392578124998E3,77.265918],[-0.11621372070312496E3,77.1782227],[-0.11628574218749998E3,77.1016602],[-0.11585683593750001E3,76.9692383],[-0.11591289062499997E3,76.9084473],[-0.11610976562500002E3,76.9182129],[-0.11623398437500002E3,76.8743164],[-0.11594458007812493E3,76.7362305],[-0.11598481445312495E3,76.6869141],[-116.220459,76.611084],[-0.11646762695312499E3,76.5771484],[-116.999219,76.5315918],[-0.11704448242187493E3,76.3730957],[-117.153906,76.297998],[-0.11749238281249997E3,76.2727051],[-0.11784140625000002E3,76.3448242],[-0.11802021484374993E3,76.4465332],[-0.11796542968749998E3,76.5740234],[-0.11778046874999995E3,76.7842773],[-0.11788081054687497E3,76.8050781],[-0.11830058593749996E3,76.7366699],[-0.11840913085937494E3,76.6623047],[-0.11846816406249998E3,76.5473633],[-0.11879140624999994E3,76.5129883],[-118.799561,76.4637695],[-118.643896,76.4175293],[-0.11864340820312499E3,76.334668],[-0.11885112304687493E3,76.2578125],[-0.11899394531249997E3,76.144873],[-0.11916821289062497E3,76.1265137],[-0.11936791992187496E3,76.2217773],[-119.52373,76.3402832],[-0.11964892578125003E3,76.2798828],[-119.639648,76.1566895],[-0.11972519531250002E3,76.0999512],[-0.11954970703124997E3,76.0520508],[-0.11973481445312503E3,75.9154297],[-0.11991289062499997E3,75.8588379],[-0.12040888671874995E3,75.8256348],[-0.12056328124999997E3,76.0084473],[-0.12063715820312498E3,76.0340332],[-0.12077158203125003E3,76.1663086],[-0.12090009765625001E3,76.1634277],[-0.12101928710937496E3,76.0202637],[-0.12121347656249999E3,75.9836914],[-121.427979,75.9811035],[-0.12190820312499996E3,76.0347656],[-0.12240048828124998E3,75.9442383],[-0.12253305664062496E3,75.9509277],[-0.12264594726562497E3,76.0310059],[-0.12254624023437499E3,76.0805176],[-0.12262392578125002E3,76.1674805],[-0.12290278320312497E3,76.1347168],[-0.12277402343749995E3,76.2276855],[-0.12251938476562502E3,76.3531738],[-0.12236538085937501E3,76.4012207],[-0.12161376953125001E3,76.4414551],[-121.203906,76.622168],[-0.12099760742187499E3,76.6914551],[-0.12048535156249997E3,76.7932129],[-120.357666,76.8869141],[-120.200342,76.9313477],[-0.11983115234375002E3,77.073877],[-0.11932397460937499E3,77.2406738],[-0.11909018554687496E3,77.3050781],[-118.82002,77.3327148],[-0.11800517578124999E3,77.3812012],[-0.11741860351562495E3,77.3173828],[-0.11727910156249993E3,77.3133789],[-0.11714897460937499E3,77.3608398],[-0.11684355468749993E3,77.3395508],[-0.11670361328124994E3,77.3799316],[-0.11702978515624994E3,77.4318848],[-0.11703974609374995E3,77.4651367],[-0.11683530273437493E3,77.5288574],[-116.362598,77.5428223],[-0.11555126953125003E3,77.3632812]]],[[[-89.833252,77.267627],[-90.0947266,77.2104004],[-0.9022827148437503E2,77.2124512],[-0.9099321289062499E2,77.3294922],[-0.9114726562499993E2,77.3873047],[-91.182666,77.5571777],[-0.9114946289062493E2,77.6080566],[-90.8425781,77.6549805],[-90.4227539,77.6283691],[-90.1719238,77.5946777],[-89.7194824,77.4421387],[-89.7120117,77.3104004],[-89.833252,77.267627]]],[[[-0.10455815429687497E3,77.141748],[-0.10471137695312501E3,77.1239746],[-0.10521508789062496E3,77.1820801],[-0.10555634765625003E3,77.3526367],[-0.10588315429687499E3,77.6265137],[-0.10606611328124995E3,77.7253906],[-0.10586298828124997E3,77.7543945],[-0.10558789062499997E3,77.7359863],[-0.10528964843749996E3,77.6420898],[-0.10500722656249998E3,77.5067383],[-0.10495532226562496E3,77.4187012],[-104.770215,77.4132324],[-0.10454223632812501E3,77.3377441],[-0.10445371093749999E3,77.2491211],[-0.10455815429687497E3,77.141748]]],[[[-95.484375,77.7919922],[-95.2330566,77.7538086],[-94.6667969,77.7762207],[-94.0147461,77.7599121],[-93.5828613,77.770752],[-0.9330097656249995E2,77.7397949],[-0.9312871093749993E2,77.6601562],[-0.9333916015624999E2,77.6296875],[-0.9351958007812499E2,77.4744141],[-93.8361816,77.4522461],[-0.9440898437499999E2,77.4742188],[-0.9598706054687497E2,77.4841309],[-0.9626386718749995E2,77.5945313],[-96.1429688,77.7143555],[-0.9568393554687503E2,77.7822754],[-95.484375,77.7919922]]],[[[-101.693555,77.696582],[-102.079834,77.6921875],[-0.10237783203124995E3,77.728125],[-0.10245820312499998E3,77.770166],[-0.10244770507812498E3,77.8806152],[-0.10191787109374995E3,77.8996094],[-0.10163940429687497E3,77.8920898],[-0.10112758789062498E3,77.8125977],[-0.10100205078124996E3,77.7351074],[-0.10139765625000001E3,77.7290527],[-101.693555,77.696582]]],[[[-0.11383247070312497E3,77.7546387],[-114.105908,77.7207031],[-0.11428720703124998E3,77.7214844],[-0.11460834960937494E3,77.7693359],[-0.11498041992187497E3,77.9154297],[-0.11502934570312499E3,77.9675293],[-0.11478950195312498E3,77.9929199],[-114.606885,78.040332],[-0.11433037109374997E3,78.0775391],[-0.11427983398437499E3,78.0042969],[-114.087207,77.9779297],[-0.11376801757812497E3,77.9035645],[-0.11361938476562499E3,77.8134766],[-0.11383247070312497E3,77.7546387]]],[[[-0.11045805664062495E3,78.1032227],[-109.656885,78.079248],[-109.619043,78.0568359],[-0.10977177734374995E3,77.9574219],[-0.11019951171874996E3,77.904834],[-0.11075112304687498E3,77.8572266],[-110.865625,77.8341309],[-0.11071938476562501E3,77.7814453],[-0.11029218750000001E3,77.786377],[-0.11015273437500002E3,77.7629395],[-0.11011689453125001E3,77.624707],[-0.11019848632812501E3,77.5245117],[-0.11068286132812503E3,77.4458984],[-0.11089399414062495E3,77.4259766],[-0.11122622070312495E3,77.4285156],[-0.11195195312500002E3,77.3441895],[-0.11237265625000002E3,77.3641113],[-0.11264379882812501E3,77.4437012],[-0.11292563476562496E3,77.4749512],[-113.164355,77.5302734],[-0.11320854492187496E3,77.5801758],[-113.120654,77.6326172],[-0.11327128906249996E3,77.778418],[-0.11321518554687498E3,77.9035156],[-0.11280454101562499E3,77.9416016],[-112.30459,78.0067871],[-0.11120659179687496E3,78.0881348],[-0.11087324218749998E3,78.0806152],[-0.11045805664062495E3,78.1032227]]],[[[-0.10300336914062494E3,78.1464355],[-0.10325224609375002E3,78.1381348],[-103.260059,78.1834961],[-0.10311044921874999E3,78.2458496],[-0.10289179687499995E3,78.2712402],[-102.788281,78.2181641],[-0.10300336914062494E3,78.1464355]]],[[[-0.10981596679687499E3,78.6503906],[-0.10964096679687495E3,78.5920898],[-0.10950415039062496E3,78.5824707],[-109.362207,78.4928711],[-0.10933603515624999E3,78.4084473],[-109.390527,78.3366699],[-109.708789,78.3037598],[-110.021875,78.3228027],[-0.11041835937499997E3,78.2949707],[-110.755078,78.3107422],[-0.11116918945312497E3,78.3862793],[-0.11143505859374997E3,78.2873535],[-0.11175971679687503E3,78.282959],[-112.13125,78.3660645],[-112.557812,78.3415039],[-113.17251,78.2837891],[-0.11329257812499993E3,78.334375],[-0.11314995117187502E3,78.4083984],[-0.11264082031249994E3,78.4998047],[-0.11221401367187494E3,78.5478027],[-0.11170878906249995E3,78.574707],[-0.11107148437499997E3,78.7083984],[-0.11061806640624995E3,78.7578125],[-0.11040781249999995E3,78.7566406],[-0.10981596679687499E3,78.6503906]]],[[[-96.2044922,78.5312988],[-95.968457,78.505127],[-95.5611328,78.5166016],[-0.9503120117187501E2,78.4302734],[-94.8871582,78.3452148],[-0.9526787109374999E2,78.2626465],[-0.9532924804687497E2,78.2250488],[-0.9510273437499993E2,78.1780762],[-0.9493603515624997E2,78.1063965],[-95.0870117,77.992627],[-95.3705078,77.9708008],[-96.0115723,77.8874023],[-96.4768555,77.872168],[-0.9683398437500003E2,77.8119141],[-96.9896484,77.8060059],[-97.0933105,77.9334961],[-0.9742666015624997E2,77.9822754],[-97.6581543,78.090625],[-97.040918,78.1169434],[-0.9694467773437499E2,78.1518555],[-97.3230469,78.2032227],[-0.9781904296874997E2,78.2306152],[-0.9804951171874995E2,78.3259277],[-0.9806928710937497E2,78.3863281],[-98.2549316,78.429248],[-98.315625,78.5174805],[-0.9806035156249993E2,78.5583496],[-98.2898926,78.6923828],[-98.3326172,78.7735352],[-98.2121094,78.804541],[-97.5958984,78.7958008],[-0.9738232421874999E2,78.7829102],[-0.9693579101562497E2,78.7202637],[-96.5870605,78.6871094],[-96.2652832,78.5953613],[-96.2044922,78.5312988]]],[[[-0.10342602539062499E3,79.315625],[-103.19165,79.2953125],[-0.10291435546875002E3,79.2311035],[-0.10265229492187501E3,79.0950195],[-0.10273051757812495E3,78.9693359],[-0.10259560546875001E3,78.9429688],[-0.10257617187499994E3,78.8793945],[-0.10242480468750003E3,78.9332031],[-0.10239316406249996E3,79.0103027],[-0.10187260742187497E3,79.0883789],[-0.10170366210937502E3,79.0789063],[-101.299023,78.9821777],[-0.10114458007812497E3,78.9729004],[-0.10103369140624994E3,78.9146973],[-101.128125,78.8016602],[-0.10091699218749997E3,78.7829102],[-0.10043549804687503E3,78.8203125],[-0.10001474609375002E3,78.7286133],[-0.9978183593749999E2,78.6196289],[-0.9960942382812493E2,78.5830566],[-0.9968017578124997E2,78.4935059],[-99.8478027,78.4382324],[-0.9975136718750001E2,78.3029785],[-0.9956245117187497E2,78.2793457],[-0.9913154296875003E2,78.1175293],[-98.9996094,77.996875],[-99.1664063,77.8569336],[-99.9559082,77.7937988],[-0.10027465820312503E3,77.8327148],[-0.10058603515624996E3,77.8917969],[-0.10077822265624995E3,77.9960449],[-0.10082617187499994E3,78.0877441],[-101.074121,78.1938477],[-0.10129799804687495E3,78.1993652],[-0.10182949218749998E3,78.2641113],[-0.10205698242187496E3,78.279541],[-0.10260698242187502E3,78.2489258],[-0.10278432617187498E3,78.3301758],[-0.10273134765624995E3,78.3710449],[-103.677246,78.3195801],[-0.10394658203124999E3,78.2600098],[-104.324219,78.2694824],[-0.10476357421874998E3,78.3516602],[-0.10498540039062497E3,78.4680176],[-0.10499555664062498E3,78.5185059],[-0.10472705078124999E3,78.5793945],[-0.10421396484375002E3,78.5397461],[-0.10376435546874998E3,78.5195312],[-0.10357050781250003E3,78.5398438],[-0.10348256835937495E3,78.5939453],[-0.10358798828124992E3,78.622998],[-0.10402084960937502E3,78.6349121],[-0.10392851562499995E3,78.6633789],[-0.10356269531250003E3,78.6926758],[-103.371582,78.7363281],[-0.10351835937499995E3,78.7691406],[-0.10400874023437494E3,78.7640137],[-0.10418500976562498E3,78.7812988],[-0.10415498046874998E3,78.8139648],[-0.10387563476562501E3,78.9026855],[-0.10415195312499999E3,78.9898926],[-104.394824,78.9561523],[-0.10473603515624995E3,78.8259277],[-0.10489550781249996E3,78.8081543],[-0.10496953125000002E3,78.8564941],[-104.735254,78.9911133],[-0.10490136718749999E3,79.051123],[-0.10553564453124999E3,79.0325195],[-105.571045,79.164209],[-0.10538769531249994E3,79.323584],[-104.847363,79.3109863],[-0.10396459960937501E3,79.3481445],[-0.10370639648437499E3,79.3520508],[-0.10342602539062499E3,79.315625]]],[[[-0.9879160156249995E2,79.9811035],[-0.9876894531249995E2,79.8508789],[-98.840625,79.7370605],[-98.9452148,79.7240723],[-0.9930175781249997E2,79.784082],[-99.3330078,79.8395508],[-99.515625,79.8871582],[-0.9999990234375001E2,79.8840332],[-0.10009243164062494E3,79.9186523],[-0.10012036132812493E3,80.0304199],[-0.10005327148437496E3,80.0933594],[-0.9973120117187499E2,80.1440918],[-99.1532227,80.1242187],[-98.8946777,80.0817871],[-0.9879160156249995E2,79.9811035]]],[[[-0.9188554687499999E2,81.1328613],[-91.7549805,81.0493164],[-0.9127246093749993E2,80.8500977],[-0.9105390625000001E2,80.7776855],[-90.6829102,80.6876953],[-90.6430176,80.5937012],[-89.8618652,80.4984375],[-89.6738281,80.5307617],[-89.3290527,80.5317383],[-89.1668945,80.4796387],[-89.1472656,80.3603516],[-89.1983398,80.2631836],[-89.0192383,80.1984863],[-88.5375488,80.1311523],[-88.1999023,80.1114746],[-88.3807617,80.2251953],[-88.6125,80.2553711],[-88.6436523,80.3868652],[-88.4243652,80.4280762],[-88.1252441,80.4294922],[-87.675,80.3721191],[-87.6254883,80.187207],[-87.8691406,80.1338867],[-87.9223145,80.0977051],[-87.2020508,80.0432129],[-86.9771973,79.8942383],[-87.1442383,79.6626465],[-87.295166,79.5801758],[-86.8610352,79.5977051],[-86.6488281,79.6462402],[-86.3369629,79.6349609],[-86.1804688,79.6054199],[-86.0070312,79.4794434],[-85.8038574,79.5730469],[-85.6478516,79.6114258],[-85.0637695,79.3281738],[-85.0421387,79.2845703],[-85.2898437,79.2083496],[-86.0916504,79.1],[-86.4505371,79.0386719],[-86.7208008,78.9754883],[-86.9571777,78.9749023],[-87.0164551,78.8986816],[-87.6173828,78.6763184],[-87.8614746,78.7068359],[-87.9223145,78.7513672],[-87.9607422,78.8931152],[-87.816748,79.0363281],[-88.1040527,78.9728027],[-88.1902344,78.8674316],[-88.1666016,78.7455078],[-88.2278809,78.6530273],[-88.003125,78.6155273],[-88.0402344,78.4944336],[-88.2845703,78.4965332],[-88.5806641,78.6019043],[-88.7416016,78.5840332],[-88.6230469,78.4621094],[-88.6064453,78.3919922],[-88.7910156,78.1924316],[-89.0957031,78.2092285],[-89.6552734,78.4388672],[-90.0371094,78.6068359],[-90.0763184,78.5491699],[-89.7572754,78.3702148],[-89.5068359,78.2032715],[-89.5794922,78.1666016],[-90.0254395,78.2912598],[-0.9029721679687493E2,78.3280273],[-90.6523926,78.3077148],[-0.9040541992187497E2,78.2466797],[-0.9032675781250003E2,78.1847656],[-90.6144043,78.1498535],[-0.9140961914062501E2,78.1879883],[-0.9189916992187499E2,78.2368652],[-0.9235126953125001E2,78.3128906],[-92.6782715,78.3891113],[-92.8482422,78.4601074],[-92.7255859,78.4866699],[-91.8668945,78.5426758],[-91.9349609,78.5617187],[-0.9271552734374995E2,78.6050293],[-0.9326660156249997E2,78.6083008],[-93.6344238,78.7509277],[-93.5614258,78.7773438],[-93.1598633,78.7756348],[-0.9333647460937499E2,78.8080566],[-0.9390224609374997E2,78.8722168],[-94.1145996,78.9289063],[-0.9416279296874993E2,78.9941895],[-0.9395019531249997E2,79.0374023],[-0.9329389648437501E2,79.139502],[-92.8416016,79.1563965],[-0.9268364257812493E2,79.185791],[-0.9254721679687493E2,79.2826172],[-0.9186757812499997E2,79.3174316],[-0.9129990234375003E2,79.3727051],[-0.9169262695312503E2,79.3647461],[-92.2479492,79.3734375],[-92.4845703,79.4392578],[-0.9282192382812497E2,79.4499023],[-93.9331543,79.2907227],[-94.109375,79.3150879],[-93.9602539,79.3955078],[-0.9428413085937495E2,79.4004395],[-0.9484604492187503E2,79.3350586],[-95.1031738,79.2898926],[-95.3166016,79.3547363],[-0.9565703124999995E2,79.3903809],[-95.7330078,79.4182129],[-95.6628906,79.5273437],[-94.5196777,79.6671387],[-0.9440185546874997E2,79.7363281],[-95.2969727,79.6530762],[-0.9573935546874993E2,79.6601563],[-0.9599965820312497E2,79.7046875],[-96.4627441,79.8475098],[-0.9658906249999995E2,79.9166504],[-96.639209,80.0241699],[-0.9677324218749999E2,80.135791],[-0.9578198242187503E2,80.0664063],[-0.9539384765624999E2,80.0532715],[-94.6458984,80.0487305],[-0.9458261718749999E2,80.1414063],[-94.2625977,80.194873],[-0.9459013671874995E2,80.2015137],[-0.9519238281249997E2,80.134375],[-95.4050781,80.1350098],[-95.6462402,80.230957],[-0.9590400390625001E2,80.2141113],[-0.9621508789062497E2,80.2458984],[-0.9636840820312501E2,80.2930664],[-96.334375,80.3527832],[-0.9601186523437497E2,80.3830566],[-95.5490723,80.3666016],[-0.9615180664062495E2,80.5534668],[-96.1328125,80.6914062],[-95.713623,80.7254395],[-0.9550527343749997E2,80.6905762],[-95.2258301,80.685791],[-0.9502573242187495E2,80.6464355],[-94.8925781,80.5708984],[-94.4854004,80.5580566],[-0.9392792968749995E2,80.5591797],[-94.2021484,80.6097168],[-0.9459628906249995E2,80.640625],[-94.7884766,80.7512695],[-0.9519584960937499E2,80.8083008],[-0.9551474609375003E2,80.8381348],[-0.9526977539062501E2,81.0007813],[-0.9498051757812499E2,81.0496582],[-94.5194336,81.0312012],[-93.8259766,81.1057129],[-0.9334511718749997E2,81.0853516],[-93.2356445,81.1288574],[-93.406543,81.209082],[-0.9389443359374997E2,81.2132812],[-94.1944336,81.240918],[-94.232959,81.3151367],[-0.9405971679687497E2,81.3493164],[-0.9360488281249997E2,81.3505859],[-0.9333276367187503E2,81.3644043],[-0.9303466796874997E2,81.3462891],[-0.9241259765624997E2,81.2782715],[-0.9199785156249993E2,81.185498],[-0.9188554687499999E2,81.1328613]]],[[[-69.4888672,83.0167969],[-68.6732422,82.9987793],[-68.4090332,83.0052734],[-68.1068848,82.9611816],[-66.5916504,82.944043],[-66.4248047,82.9061523],[-66.8363281,82.8179199],[-68.3575684,82.6768066],[-68.4693359,82.6533691],[-68.1728516,82.6459473],[-67.3970703,82.6681152],[-66.9977051,82.7160645],[-66.6118652,82.7420898],[-66.120459,82.8071289],[-65.7274414,82.8424316],[-65.2990234,82.7996094],[-65.1131836,82.888916],[-64.9048828,82.9008301],[-64.7767578,82.8764648],[-64.5040039,82.778418],[-64.1342285,82.8231934],[-63.6410156,82.8125977],[-63.4730469,82.7712402],[-0.63620605468749964E2,82.7292969],[-0.63592675781249966E2,82.694043],[-0.63385400390625016E2,82.6534668],[-0.63085351562499994E2,82.5652344],[-63.2467773,82.4501953],[-62.4751953,82.5195801],[-0.61697167968749994E2,82.488623],[-61.4770508,82.4674316],[-0.61207226562500004E2,82.3410645],[-61.2735352,82.279834],[-0.61615380859375016E2,82.1844238],[-61.9686523,82.1102539],[-0.62176708984374976E2,82.0434082],[-62.4964844,82.0067871],[-0.63592285156249964E2,81.8455078],[-64.1279297,81.7936523],[-64.5740234,81.7337402],[-65.2261719,81.7435059],[-65.4954102,81.6680664],[-66.0047363,81.6294434],[-66.6257324,81.6164062],[-66.9140625,81.4851074],[-68.6885254,81.2933105],[-68.7211914,81.2612305],[-68.3176758,81.2612305],[-65.7356934,81.4942383],[-65.2399902,81.509668],[-64.7800781,81.4928711],[-64.8327637,81.438623],[-65.4839844,81.2847656],[-66.3128418,81.1461426],[-66.7268555,81.040918],[-67.7743652,80.8594238],[-68.6304688,80.6787109],[-68.959375,80.5868652],[-69.4000977,80.4228516],[-69.7337891,80.3669434],[-70.1435059,80.3976563],[-70.6386719,80.5275391],[-70.6678223,80.5055664],[-70.212793,80.2777344],[-70.2648926,80.2335937],[-71.100293,80.1870605],[-71.4700684,80.1458984],[-71.9276367,80.1391602],[-72.0629883,80.1055664],[-71.6161133,80.0710449],[-70.8770508,80.1223145],[-70.5684082,80.0937012],[-70.7575195,79.9982422],[-71.3558105,79.9112793],[-71.1063477,79.8755371],[-71.1101562,79.8478027],[-71.3878418,79.7617676],[-71.9645508,79.7010742],[-72.4365234,79.6943848],[-73.4481445,79.8270996],[-74.1442383,79.8797852],[-74.3944824,79.8740723],[-74.6602051,79.8351562],[-74.0510254,79.7782227],[-73.4724609,79.7564453],[-73.2293945,79.6439941],[-73.201123,79.596582],[-73.2935547,79.521582],[-73.4660645,79.495166],[-73.8659668,79.501416],[-74.4060059,79.4535645],[-74.7979492,79.4586914],[-75.2594727,79.4210449],[-75.503418,79.4141602],[-75.7738281,79.4311523],[-76.0668945,79.4731934],[-76.8988281,79.5123047],[-76.2957031,79.413623],[-76.1163574,79.326123],[-75.9475098,79.3113281],[-75.6027344,79.2395508],[-75.0936035,79.2039062],[-74.7272461,79.2353516],[-74.4812012,79.2294922],[-74.5323242,79.0527344],[-74.640918,79.0355469],[-75.2331543,79.0355469],[-75.9118164,79.1177734],[-76.3803711,79.1041504],[-77.3980469,79.0572754],[-77.729248,79.0569336],[-77.9737793,79.0762207],[-78.5816406,79.075],[-77.8827637,78.9423828],[-77.5104004,78.9784668],[-76.8248047,79.0178711],[-76.5241211,79.0242188],[-76.2558594,79.0068359],[-75.9526855,78.9590332],[-75.7950684,78.8897461],[-75.3998535,78.8812988],[-75.0985352,78.8583008],[-74.4331055,78.7241211],[-74.546582,78.6203125],[-74.8786133,78.5448242],[-75.396582,78.5228516],[-75.9658203,78.529834],[-76.3734863,78.5210938],[-75.4883789,78.4035156],[-75.193457,78.3277344],[-75.5506836,78.2210938],[-75.8659668,78.0098145],[-76.0775391,77.9873047],[-76.3555664,77.9910156],[-76.7081055,77.9378906],[-76.9740234,77.9272461],[-77.455957,77.947168],[-78.0125977,77.9460449],[-78.0841309,77.8460938],[-78.047168,77.6154785],[-78.0761719,77.519043],[-78.2837402,77.4130859],[-78.4932129,77.3693848],[-78.8695313,77.3325195],[-79.1375977,77.3310059],[-79.9063965,77.2995605],[-80.5730469,77.3147949],[-80.8746094,77.3585938],[-81.3768555,77.4821289],[-81.659082,77.5254395],[-81.6538086,77.4988281],[-81.3013672,77.344043],[-81.5229492,77.3108398],[-82.0567871,77.2965332],[-81.8402344,77.2141113],[-81.5344727,77.2144531],[-81.1171875,77.2696289],[-80.6725586,77.2442871],[-80.2187012,77.146582],[-79.9237305,77.1936035],[-79.4972656,77.1960938],[-79.3408691,77.1583984],[-79.2811035,77.0851562],[-79.3189453,76.9803711],[-79.220752,76.9360352],[-78.7917969,76.8835938],[-78.455957,76.9672363],[-78.2888672,76.9779785],[-77.9987305,76.8519531],[-77.9833008,76.7549805],[-78.1187012,76.644043],[-78.2843262,76.5712402],[-78.9342773,76.4511719],[-79.2858887,76.3547852],[-79.5110352,76.310498],[-79.9535645,76.2512695],[-80.1868164,76.2401855],[-80.6902832,76.1764648],[-80.9629395,76.1839355],[-80.9966797,76.2149902],[-80.8348145,76.3691406],[-80.9745117,76.4700684],[-81.1707031,76.5127441],[-81.5919922,76.4844238],[-81.8229492,76.5208496],[-82.0341797,76.6293945],[-82.3111328,76.6553711],[-82.529834,76.723291],[-82.2619629,76.574707],[-82.2331543,76.4658203],[-83.3889648,76.4392578],[-83.8856934,76.453125],[-83.9863281,76.4950195],[-84.2237793,76.6753418],[-84.2753418,76.356543],[-85.1412598,76.3045898],[-85.6805664,76.3490234],[-86.1158203,76.4349121],[-86.2961914,76.4918457],[-86.4537109,76.5848633],[-86.5619141,76.5165039],[-86.6802246,76.3766113],[-87.3541992,76.4480469],[-87.4897949,76.5858398],[-87.4975586,76.3862793],[-88.1043457,76.4127441],[-88.3959961,76.4052734],[-88.4816406,76.5800781],[-88.4958496,76.7728516],[-88.6141113,76.6508789],[-88.5458008,76.4208984],[-88.8037109,76.4568359],[-89.3696289,76.4744629],[-89.5700684,76.4919434],[-89.4997559,76.8268066],[-88.7708984,76.9933594],[-88.3981445,77.1039551],[-87.828418,77.1364746],[-87.3617188,77.1362305],[-86.8521973,77.1744141],[-87.1008789,77.3077148],[-87.4296875,77.3478027],[-87.5891602,77.3948242],[-87.7801758,77.4928223],[-88.0946777,77.7191895],[-88.0169922,77.7847168],[-87.7571289,77.8362305],[-87.2360352,77.8917969],[-87.0179687,77.8922363],[-86.3851074,77.8085938],[-86.172998,77.7461426],[-85.7312012,77.5086426],[-85.5884766,77.4611328],[-84.9508789,77.3749512],[-84.7386719,77.3610352],[-83.973584,77.3905273],[-83.6080566,77.4422363],[-83.4773437,77.513623],[-83.250293,77.5848145],[-82.9027344,77.7327148],[-82.7103516,77.8495117],[-82.5953125,77.9921387],[-82.7035645,77.9624023],[-83.4282227,77.6212891],[-83.7793945,77.5326172],[-84.1678223,77.5227051],[-84.4858398,77.5619629],[-84.8605469,77.4995117],[-85.0878906,77.5153809],[-85.2893555,77.5590332],[-85.292041,77.7638672],[-85.5475586,77.9276855],[-85.0314941,78.0620117],[-84.6154297,78.1957031],[-84.2227051,78.1760254],[-84.55,78.2513672],[-84.9103516,78.2396973],[-84.7832031,78.5275879],[-85.0243164,78.3124023],[-85.4189941,78.1424316],[-85.5859375,78.1095703],[-86.2177734,78.0812012],[-86.0625977,78.1869629],[-85.9200684,78.3428711],[-86.0709473,78.2846191],[-86.4270508,78.1970215],[-86.9132324,78.1268066],[-87.3393555,78.132666],[-87.5517578,78.1766113],[-87.4911133,78.2844238],[-87.4913086,78.4171875],[-86.9529297,78.663916],[-86.8079102,78.7743652],[-86.2418945,78.8236328],[-85.6910156,78.8437012],[-85.2296875,78.902002],[-85.0037598,78.9122559],[-84.7872559,78.8845703],[-83.9079102,78.8391602],[-83.2714355,78.7703125],[-82.9897949,78.8441406],[-82.4417969,78.8404297],[-82.1510742,78.8641113],[-81.7808105,78.9503418],[-81.7500977,78.9757812],[-82.0283203,78.9618652],[-82.4387695,78.9036621],[-83.0585449,78.939502],[-83.7786133,78.9452637],[-84.1458008,78.9598145],[-84.4120117,78.996582],[-84.5677734,79.0712891],[-84.5302734,79.1012695],[-84.2566406,79.122168],[-83.8246094,79.0588379],[-83.5758789,79.0536621],[-83.6620117,79.0900391],[-84.1973633,79.2250977],[-84.5224121,79.3766113],[-84.8364258,79.4947266],[-85.0897949,79.6121582],[-85.4569336,79.6898438],[-86.0314941,79.7219238],[-86.1466309,79.7428223],[-86.420752,79.8452148],[-86.4943359,80.0181641],[-86.614502,80.1235352],[-86.4985352,80.258252],[-86.3071777,80.3193359],[-85.1596191,80.2717773],[-84.6754395,80.2789063],[-84.056543,80.2619629],[-83.7236328,80.2289551],[-83.34375,80.1469727],[-83.0042969,80.0545898],[-82.6774902,79.9927734],[-82.377002,79.908252],[-82.0487793,79.7827637],[-81.6883789,79.685791],[-81.0380859,79.614209],[-80.4759277,79.60625],[-80.1244629,79.6694824],[-80.7140137,79.6749512],[-81.0101563,79.6931152],[-81.3586914,79.787793],[-81.8602539,79.9571777],[-82.332373,80.0663574],[-82.9611328,80.2778809],[-82.9870117,80.3226074],[-82.5361328,80.3755371],[-80.9796387,80.4452637],[-80.0510742,80.5285645],[-79.6293457,80.6478516],[-78.3861816,80.784375],[-77.5071289,80.8347656],[-77.1691406,80.8429199],[-76.8503418,80.8781738],[-77.3894531,80.9054199],[-78.0038086,80.904834],[-78.5509766,80.9214355],[-78.7162109,80.9516602],[-78.6292969,81.043457],[-78.2868164,81.167627],[-77.5360352,81.3210938],[-77.0307129,81.3856934],[-76.8851074,81.4302734],[-77.9723633,81.3308105],[-78.3521484,81.2589355],[-78.7338867,81.1510254],[-78.931543,81.1192383],[-79.1983398,81.1175781],[-79.4021484,81.0368652],[-79.6066406,80.8817871],[-80.1335449,80.763916],[-81.0070313,80.6548828],[-81.5526855,80.6228027],[-82.3682129,80.5613281],[-82.8843262,80.5775391],[-82.7683105,80.6306641],[-82.3367676,80.7286621],[-82.2223633,80.7723145],[-82.7799805,80.7360352],[-83.401416,80.7139648],[-83.6471191,80.6740723],[-84.0762695,80.55625],[-84.4178223,80.5267578],[-85.3074219,80.5259766],[-85.7262207,80.5811523],[-86.2503418,80.5657715],[-86.5315918,80.6047363],[-86.6030762,80.6640137],[-86.2520996,80.7895508],[-85.6393066,80.9246094],[-85.2462891,80.9878906],[-84.6799316,81.0423828],[-83.3492187,81.1033203],[-83.2888184,81.1479492],[-84.6354492,81.0980957],[-85.7808594,81.0350586],[-86.2334473,80.9500977],[-87.0802734,80.7262695],[-87.3298828,80.6697754],[-87.7116699,80.65625],[-88.2319824,80.7038086],[-88.9214355,80.8056152],[-89.1445801,80.8536621],[-89.2632812,80.9143066],[-89.1668945,80.9413086],[-88.4130859,80.9997559],[-87.3886719,80.9883789],[-86.9290039,81.0004395],[-86.4767578,81.0357422],[-85.8095703,81.123584],[-85.0833008,81.246875],[-84.9412109,81.2862305],[-85.2062988,81.294873],[-85.8750488,81.2412109],[-86.6227539,81.1226563],[-87.2750977,81.0808105],[-88.8868164,81.0584961],[-89.3983887,81.0253418],[-89.6230469,81.0324707],[-89.980957,81.124707],[-89.9473145,81.1726563],[-89.5633789,81.2264648],[-89.2086914,81.2500977],[-89.6356934,81.3020508],[-89.6736816,81.3286133],[-89.427002,81.3874512],[-88.8922852,81.4741211],[-88.6219238,81.501416],[-88.1265137,81.5187988],[-87.6166992,81.5093262],[-87.5970215,81.5258301],[-88.1013672,81.5586426],[-88.4790527,81.5646484],[-88.9783691,81.5415039],[-0.9030351562499999E2,81.401123],[-0.9060903320312497E2,81.429541],[-0.9055375976562499E2,81.464209],[-89.8452148,81.6116699],[-89.8216797,81.6348633],[-90.3308594,81.631543],[-0.9062631835937503E2,81.6560059],[-0.9083374023437499E2,81.6404785],[-91.2923828,81.5712402],[-91.684082,81.6356934],[-91.6475586,81.6838379],[-91.2194824,81.7877441],[-0.9049018554687501E2,81.8772461],[-90.1630371,81.894043],[-89.6333496,81.8945313],[-89.3810059,81.916748],[-88.8752441,82.0180176],[-88.5668457,82.061084],[-88.0631836,82.0964844],[-87.638916,82.0850586],[-87.4043945,82.0541992],[-87.0182129,81.9587402],[-86.8340332,82.0333496],[-86.6268066,82.0510254],[-86.1583496,82.0255371],[-85.8748047,81.9756836],[-85.5379883,81.9546387],[-85.4031738,81.9822266],[-85.0448242,81.9828125],[-85.3105957,82.0439941],[-86.5806152,82.187207],[-86.615625,82.2185547],[-86.1875977,82.2479492],[-85.7944336,82.2916016],[-85.2759766,82.4052246],[-84.8968262,82.4494141],[-84.3681152,82.3739258],[-83.8236328,82.3506836],[-83.5906738,82.3264648],[-83.0101562,82.1416992],[-82.6336914,82.0772949],[-82.3560059,82.0660156],[-82.3274414,82.0924805],[-82.6570801,82.1583008],[-82.7474609,82.1964355],[-82.6383789,82.245752],[-82.2765625,82.218457],[-81.5844727,82.1205566],[-80.5499023,82.0045898],[-80.1533691,81.9776367],[-79.6855469,81.8858887],[-79.4248535,81.8544434],[-79.6294922,81.9323242],[-80.129834,82.0283691],[-81.4682617,82.1923828],[-81.9976074,82.2782715],[-82.4475586,82.3950195],[-82.4513672,82.4270996],[-82.0232422,82.4943848],[-81.6811523,82.5186523],[-82.1225098,82.6017578],[-82.1168457,82.6286621],[-81.7853516,82.6492188],[-81.5796875,82.6430176],[-81.1888672,82.5944824],[-80.8625,82.5715332],[-80.809668,82.586377],[-81.1780762,82.7446777],[-81.0101563,82.7790527],[-80.6571289,82.7690918],[-80.0757813,82.7062012],[-79.0350586,82.6746582],[-78.7487793,82.6793945],[-79.8337891,82.8165039],[-80.1549316,82.9111328],[-79.8863281,82.9385254],[-79.1805664,82.9332031],[-78.5249512,82.8911133],[-77.9686523,82.9063477],[-77.4795898,82.8831543],[-76.4209961,82.6708984],[-76.1464844,82.5498535],[-76.009375,82.5351562],[-75.565625,82.6085449],[-75.6428711,82.6435059],[-76.0869629,82.7236328],[-76.4099609,82.8158203],[-76.9084473,82.9194336],[-77.1249023,83.0085449],[-75.7449219,83.047168],[-74.4141602,83.0131348],[-74.1977539,82.9890137],[-73.703125,82.8518555],[-73.2720215,82.771582],[-72.6586914,82.7216309],[-73.234668,82.8442383],[-73.4418945,82.904834],[-73.3311523,82.9987793],[-72.8116699,83.0812012],[-71.9832031,83.101416],[-71.1320313,82.9230469],[-70.9330078,82.9112793],[-71.4235352,83.0211426],[-71.0848145,83.082666],[-70.8705566,83.0981445],[-69.9699219,83.1161133],[-69.7821289,83.0925293],[-69.4888672,83.0167969]]]]}}],"_labels":{"CA":"Canada"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/CC.json b/src/api-umbrella/admin-ui/public/maps/CC.json new file mode 100644 index 000000000..198ebcd31 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/CC.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"CC"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.9691826171875007E2,-0.12194140625000031E2],[96.906543,-0.12199804687500034E2],[96.8929687,-12.187207],[96.9133789,-12.1818359],[96.9205078,-0.12161523437499952E2],[0.9692529296874997E2,-0.12173242187500037E2],[0.9691826171875007E2,-0.12194140625000031E2]]],[[[96.8404297,-12.1818359],[96.8519531,-0.12186816406249958E2],[96.8673828,-0.12181445312500017E2],[96.8736328,-0.12187695312499955E2],[96.8495117,-0.12197363281249977E2],[0.9683486328125005E2,-0.12179687500000014E2],[96.8258789,-12.1261719],[96.8326172,-12.1261719],[96.8404297,-12.1818359]]]]}}],"_labels":{"CC":"Cocos Is."}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/CD.json b/src/api-umbrella/admin-ui/public/maps/CD.json new file mode 100644 index 000000000..5ee103d8f --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/CD.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"CD"},"geometry":{"type":"Polygon","coordinates":[[[0.27403320312499996E2,5.10917969],[0.27491015625000017E2,4.96757812],[0.27664160156250006E2,4.84599609],[0.27788085937499996E2,4.64467773],[27.9806641,4.53208008],[28.1920898,4.35024414],[0.28427539062500017E2,4.32416992],[0.28727050781249996E2,4.50498047],[0.28939355468750023E2,4.48706055],[0.29151464843750006E2,4.38818359],[29.2249023,4.39189453],[0.29384863281250002E2,4.49838867],[0.29469628906250023E2,4.61181641],[0.29552050781250017E2,4.63603516],[0.29676855468750006E2,4.58691406],[0.29779882812500002E2,4.48095703],[0.29870214843750006E2,4.32714844],[30.1949219,3.98193359],[30.5083008,3.83569336],[0.30586718750000014E2,3.62421875],[0.30757226562500023E2,3.62421875],[30.9064453,3.40893555],[30.827832,3.28261719],[0.30754003906250002E2,3.04179687],[0.30821386718750002E2,2.96757812],[0.30846679687499996E2,2.84702148],[30.7695312,2.67797852],[30.7286133,2.45537109],[30.8300781,2.40043945],[0.30961914062499996E2,2.40327148],[0.31082128906250002E2,2.28808594],[0.31176367187500006E2,2.27006836],[31.2740234,2.14628906],[0.31252734375000014E2,2.04458008],[30.9425781,1.6828125],[0.30477832031250014E2,1.23881836],[0.30321093750000014E2,1.18530273],[30.2401367,1.1027832],[30.1829102,0.973486328],[30.0473633,0.863525391],[0.29942871093750004E2,0.819238281],[0.29934472656250023E2,0.499023438],[29.777832,0.166357422],[0.29717675781250023E2,0.0983398437],[0.29633203125000023E2,-0.441699219],[29.6478516,-0.535253906],[0.29561914062500023E2,-0.97734375],[0.29576953125000014E2,-1.38789063],[0.29351660156250006E2,-1.51757812],[0.29196582031250017E2,-1.71992188],[0.29129394531249996E2,-1.86025391],[29.1480469,-2.13183594],[0.29106445312499996E2,-2.23320313],[0.28876367187500023E2,-2.40029297],[28.8576172,-2.44667969],[0.28921777343750023E2,-2.68203125],[29.0143555,-2.72021484],[0.29016601562499996E2,-2.79960938],[0.29224414062500017E2,-3.05351563],[0.29210058593750002E2,-3.36328125],[0.29223242187500006E2,-3.91083984],[0.29331347656250014E2,-4.09541016],[0.29404199218750023E2,-4.49667969],[0.29325683593749996E2,-4.83564453],[29.3427734,-4.98310547],[0.29476464843750023E2,-5.31660156],[0.29594140625000023E2,-5.65078125],[29.5963867,-5.77597656],[29.4800781,-6.025],[0.29540820312500017E2,-6.31386719],[29.709668,-6.61689453],[30.10625,-6.91503906],[0.30212695312500017E2,-7.03789063],[30.3131836,-7.20371094],[30.4067383,-7.46064453],[0.30720898437500015E2,-8.10439453],[30.7511719,-8.19365234],[28.9722656,-8.46494141],[28.8981445,-8.48544922],[0.28934472656250023E2,-8.59023437],[0.28917773437500014E2,-8.70058594],[0.28793554687500006E2,-8.89101562],[0.28616503906250017E2,-9.07226562],[0.28400683593750017E2,-0.9224804687500011E1],[0.28400195312500014E2,-9.275],[28.5405273,-0.9510058593750003E1],[28.6041992,-9.67880859],[28.6300781,-9.83125],[28.6074219,-0.10397363281250009E2],[0.28645507812499996E2,-0.10550195312500009E2],[0.28638867187500008E2,-0.10669238281250003E2],[0.28544238281250017E2,-10.8023438],[0.28404199218750023E2,-0.11354394531250009E2],[0.28357226562500014E2,-0.11483007812500006E2],[0.28482519531250006E2,-11.8121094],[0.28574609375000023E2,-0.11908105468750009E2],[28.85,-0.12120507812500007E2],[29.0643555,-0.12348828125000011E2],[0.29427539062500014E2,-12.43125],[29.5048828,-0.12386132812500009E2],[0.29491992187500014E2,-0.12266894531250003E2],[29.5597656,-0.12202441406250003E2],[29.7951172,-0.12155468750000011E2],[29.7964844,-0.13369726562500006E2],[0.29775195312500017E2,-0.13438085937500006E2],[0.29651757812500023E2,-0.13414355468750001E2],[0.29630273437500023E2,-0.13298535156250011E2],[29.5541992,-0.13248925781250009E2],[29.2018555,-0.13398339843750009E2],[0.29014257812500002E2,-0.13368847656250011E2],[0.28942285156250023E2,-0.13307128906249998E2],[0.28921679687500017E2,-0.13214648437500003E2],[28.7731445,-0.12981933593749998E2],[0.28672949218750006E2,-12.8613281],[0.28550878906250006E2,-12.8361328],[0.28474414062500017E2,-0.12623339843750003E2],[0.28357714843750017E2,-12.4820313],[27.8574219,-0.12284863281250011E2],[0.27644335937500017E2,-0.12266796875000011E2],[0.27533398437500008E2,-12.1953125],[0.27423632812500017E2,-11.9445313],[0.27238085937500017E2,-0.11783496093750003E2],[0.27196386718750002E2,-11.6050781],[27.0460938,-0.11615917968750011E2],[0.26949609375000023E2,-11.8988281],[0.26890429687500014E2,-0.11943554687500011E2],[0.26596386718750008E2,-0.11972070312500009E2],[0.26025976562500006E2,-11.8901367],[25.6188477,-11.7441406],[25.5119141,-0.11753417968749998E2],[0.25349414062500017E2,-11.6230469],[0.25282617187500023E2,-0.11404980468750011E2],[25.3193359,-0.11236914062500004E2],[0.25184863281250017E2,-11.2429687],[0.24668261718750017E2,-0.11352929687500009E2],[0.24518554687499996E2,-11.4384766],[24.3779297,-0.11417089843750006E2],[24.3351563,-11.3712891],[0.24396289062500017E2,-0.11255175781250003E2],[24.3199219,-11.0717773],[0.24136523437500017E2,-0.11025976562500006E2],[0.24078417968750014E2,-0.10891503906250009E2],[23.9665039,-0.10871777343750011E2],[0.23901171875000017E2,-10.9832031],[0.23833886718750023E2,-11.0136719],[0.23400195312500017E2,-0.10976464843750009E2],[23.1567383,-0.11074804687500006E2],[0.22814746093750017E2,-0.11080273437500011E2],[22.5610352,-11.0558594],[0.22392968750000023E2,-0.11159472656250001E2],[22.2788086,-11.1941406],[22.2261719,-0.11121972656250009E2],[22.1779297,-10.8922852],[22.2804688,-10.7839844],[0.22307031250000023E2,-0.10691308593750009E2],[0.22274511718750006E2,-0.10259082031250001E2],[22.1977539,-10.040625],[0.22089160156250017E2,-9.86279297],[0.21948632812500023E2,-9.72558594],[21.8566406,-9.59423828],[21.8131836,-9.46875],[21.8294922,-9.16845703],[0.21905371093750006E2,-8.69335938],[21.8958984,-8.34111328],[0.21800878906250006E2,-8.11191406],[0.21780078125000017E2,-7.86542969],[21.8335937,-7.60166016],[0.21841601562500014E2,-7.42099609],[0.21751074218750006E2,-7.30546875],[21.190332,-7.28496094],[0.20607812500000023E2,-7.27773437],[0.20558398437500014E2,-7.24443359],[0.20536914062500017E2,-7.12177734],[0.20598730468750006E2,-6.93515625],[0.20482226562500017E2,-6.91582031],[19.8751953,-6.98632812],[19.6603516,-7.03710938],[0.19527636718750014E2,-7.14443359],[19.4837891,-7.27949219],[0.19479882812500023E2,-7.47216797],[0.19371679687500006E2,-7.65507813],[19.3408203,-7.96660156],[0.19142675781250006E2,-8.00146484],[0.18898339843750023E2,-7.99814453],[0.18653417968750002E2,-7.93603516],[0.18191503906250002E2,-8.02382812],[18.0087891,-8.10761719],[17.9130859,-8.06767578],[17.5795898,-8.09902344],[0.17536035156250023E2,-8.07587891],[0.17245019531250023E2,-7.62333984],[0.17155078125000017E2,-7.46132812],[0.16984765625000023E2,-7.25742188],[16.9658203,-7.06210938],[16.9194336,-6.93398437],[0.16742968750000017E2,-6.61845703],[16.709375,-6.47167969],[16.7177734,-6.24140625],[16.5371094,-5.96582031],[0.16315234375000017E2,-5.865625],[0.15726953125000023E2,-5.86386719],[0.14749414062500025E2,-5.88007813],[14.3986328,-5.89267578],[13.9785156,-5.85722656],[0.13371484375000021E2,-5.86181641],[0.13302636718750023E2,-5.88183594],[0.13003320312500023E2,-5.83613281],[0.12791601562500006E2,-5.87773438],[12.6806641,-5.96083984],[0.12514550781250023E2,-6.00419922],[12.4117188,-5.98632812],[0.12213671875000015E2,-5.75869141],[0.12484570312500011E2,-5.71875],[0.12503710937500017E2,-5.69580078],[0.12522363281250023E2,-5.14892578],[0.12451464843750017E2,-5.07148438],[0.12573535156250017E2,-4.99658203],[12.8296875,-4.73662109],[0.13136621093750023E2,-4.60429688],[0.13219628906250021E2,-4.70585938],[0.13414941406250023E2,-4.83740234],[0.13685351562500017E2,-4.68867188],[0.13717089843750015E2,-4.45449219],[0.13778027343750011E2,-4.43388672],[13.940918,-4.48466797],[0.14358300781250023E2,-4.29941406],[0.14449804687500006E2,-4.44951172],[0.14365429687500011E2,-4.58554688],[0.14410742187500004E2,-4.83125],[0.14707910156250021E2,-4.88173828],[14.9121094,-4.70556641],[15.10625,-4.46103516],[15.2671875,-4.30761719],[0.15394628906250007E2,-4.24492188],[15.6000977,-4.03095703],[0.15872460937500023E2,-3.93427734],[0.15990039062500017E2,-3.76621094],[0.16146777343750017E2,-3.46416016],[0.16217382812500006E2,-3.03027344],[16.1916016,-2.27910156],[16.215332,-2.17783203],[16.5407227,-1.84013672],[0.16780078125000017E2,-1.37636719],[0.16879882812499996E2,-1.22587891],[17.1076172,-1.06445312],[17.2788086,-0.999609375],[0.17542871093750023E2,-0.775],[0.17752832031250023E2,-0.549023438],[17.7241211,-0.277539063],[17.7731445,-0.0523925781],[17.8876953,0.234130859],[0.17925195312500023E2,0.537304687],[17.8857422,0.856884766],[0.17902441406250006E2,1.11806641],[18.0578125,1.53486328],[0.18072167968750023E2,2.01328125],[0.18211621093750008E2,2.41494141],[18.490918,2.92441406],[0.18622167968750006E2,3.30405273],[18.5966797,3.67871094],[0.18633691406250023E2,3.95429687],[0.18619921875000017E2,4.11660156],[0.18567480468750006E2,4.25756836],[18.5941406,4.34624023],[18.6999023,4.38261719],[18.8317383,4.5234375],[19.0685547,4.89140625],[19.3234375,5.07075195],[19.5009766,5.12749023],[19.806543,5.08930664],[0.20002343750000023E2,4.94472656],[0.20226367187500017E2,4.82963867],[20.3935547,4.68618164],[0.20558105468749996E2,4.46269531],[20.7929688,4.44731445],[20.9557617,4.41313477],[0.21229785156250017E2,4.30219727],[0.21350195312500002E2,4.31137695],[21.5375977,4.24482422],[0.21687011718749996E2,4.28139648],[21.9082031,4.25390625],[0.22422167968750017E2,4.13496094],[0.22505664062500017E2,4.20766602],[22.6171875,4.44555664],[0.22755761718750023E2,4.64667969],[0.22864550781250017E2,4.72387695],[23.115918,4.73691406],[0.23312890625000023E2,4.66352539],[23.4171875,4.66313477],[0.23681835937500008E2,4.77080078],[0.23848437500000017E2,4.81635742],[24.3198242,4.99414062],[24.4371094,5.00996094],[24.7655273,4.93007812],[0.24978417968750023E2,4.98295898],[0.25065234375000017E2,4.96743164],[0.25249316406250017E2,5.02456055],[0.25400195312500017E2,5.2559082],[0.25525097656250008E2,5.31210937],[0.25713867187499996E2,5.28369141],[26.1735352,5.17114258],[0.26632617187500017E2,5.08520508],[0.26822070312500014E2,5.06240234],[0.27020605468750006E2,5.184375],[27.1149414,5.19785156],[0.27403320312499996E2,5.10917969]]]}}],"_labels":{"CD":"Dem. Rep. Congo"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/CF.json b/src/api-umbrella/admin-ui/public/maps/CF.json new file mode 100644 index 000000000..52cf535c2 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/CF.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"CF"},"geometry":{"type":"Polygon","coordinates":[[[22.8600586,10.9196777],[22.9643555,0.10751806640624991E2],[0.23312304687500017E2,10.3879395],[0.23545019531250006E2,0.10030078124999989E2],[0.23646289062500014E2,9.82290039],[23.65625,0.9710351562499993E1],[23.6226562,9.340625],[23.5960938,0.9261914062499997E1],[0.23468261718749996E2,9.11474609],[0.23489062500000017E2,8.99331055],[0.23551855468750006E2,8.94321289],[23.5373047,8.81582031],[23.6792969,8.7324707],[0.24048144531250017E2,8.69130859],[0.24220898437500008E2,8.60825195],[0.24179980468750017E2,8.46113281],[0.24291406250000023E2,8.29140625],[24.4560547,8.23945313],[0.24736718750000023E2,8.19155273],[0.24853320312500017E2,8.13754883],[25.0072266,7.96484375],[25.2003906,7.80791016],[0.25247363281250017E2,7.72456055],[25.1901367,7.51933594],[0.25380664062500014E2,7.33339844],[0.25888964843750017E2,7.06494141],[0.26036523437500023E2,6.95522461],[0.26169335937500023E2,6.78173828],[0.26361816406249996E2,6.63530273],[26.3085938,6.45532227],[0.26420507812500002E2,6.27416992],[0.26514257812500002E2,6.06923828],[0.26726367187500017E2,5.99824219],[0.27083398437500023E2,5.77685547],[27.2133789,5.61879883],[0.27256738281250023E2,5.28964844],[0.27403320312499996E2,5.10917969],[27.1149414,5.19785156],[0.27020605468750006E2,5.184375],[0.26822070312500014E2,5.06240234],[0.26632617187500017E2,5.08520508],[26.1735352,5.17114258],[0.25713867187499996E2,5.28369141],[0.25525097656250008E2,5.31210937],[0.25400195312500017E2,5.2559082],[0.25249316406250017E2,5.02456055],[0.25065234375000017E2,4.96743164],[0.24978417968750023E2,4.98295898],[24.7655273,4.93007812],[24.4371094,5.00996094],[24.3198242,4.99414062],[0.23848437500000017E2,4.81635742],[0.23681835937500008E2,4.77080078],[23.4171875,4.66313477],[0.23312890625000023E2,4.66352539],[23.115918,4.73691406],[0.22864550781250017E2,4.72387695],[0.22755761718750023E2,4.64667969],[22.6171875,4.44555664],[0.22505664062500017E2,4.20766602],[0.22422167968750017E2,4.13496094],[21.9082031,4.25390625],[0.21687011718749996E2,4.28139648],[21.5375977,4.24482422],[0.21350195312500002E2,4.31137695],[0.21229785156250017E2,4.30219727],[20.9557617,4.41313477],[0.20558105468749996E2,4.46269531],[20.3935547,4.68618164],[0.20226367187500017E2,4.82963867],[0.20002343750000023E2,4.94472656],[19.806543,5.08930664],[19.5009766,5.12749023],[19.3234375,5.07075195],[19.0685547,4.89140625],[18.8317383,4.5234375],[18.6999023,4.38261719],[18.5941406,4.34624023],[0.18567480468750006E2,4.25756836],[0.18619921875000017E2,4.11660156],[0.18633691406250023E2,3.95429687],[18.5966797,3.67871094],[18.6103516,3.47841797],[0.18474414062500017E2,3.62299805],[0.18318164062500017E2,3.58081055],[0.18160937500000017E2,3.49980469],[18.1113281,3.55107422],[17.8803711,3.55385742],[0.17437988281249996E2,3.68461914],[17.2984375,3.6171875],[0.17002539062500002E2,3.55668945],[16.6733398,3.53520508],[0.16570410156250006E2,3.46308594],[16.4962891,3.20883789],[0.16468554687500017E2,2.83173828],[0.16183398437500017E2,2.27006836],[0.16106738281250017E2,2.47348633],[16.0592773,2.77299805],[16.0634766,2.90859375],[0.15904882812500006E2,3.09584961],[15.775,3.12719727],[0.15458398437500023E2,3.45683594],[0.15128710937500015E2,3.8269043],[0.15034863281250011E2,4.01635742],[0.15136914062500011E2,4.06914062],[0.15022753906250017E2,4.35854492],[0.14770410156250021E2,4.55810547],[14.7089844,4.66557617],[14.640625,5.17905273],[14.5629883,5.27993164],[14.6168945,5.49550781],[14.6168945,5.86513672],[14.503125,5.91689453],[0.14431152343749998E2,6.0387207],[0.14512109375000025E2,6.16191406],[0.14739257812499998E2,6.27978516],[0.14861914062500004E2,6.55571289],[0.15034570312500023E2,6.78442383],[0.15245898437500017E2,7.26357422],[0.15379101562500011E2,7.3581543],[15.4800781,7.5237793],[0.15845019531250015E2,7.47529297],[0.16030664062500023E2,7.57211914],[16.3789062,7.68354492],[0.16404394531250006E2,7.77236328],[0.16545312500000023E2,7.86547852],[0.16588964843750006E2,7.74335937],[16.7847656,7.55097656],[16.890332,7.63369141],[0.17117968750000017E2,7.7019043],[17.2469727,7.81298828],[17.6494141,7.98359375],[0.17760839843750006E2,7.97382812],[18.4550781,8.03203125],[0.18591601562500017E2,8.06079102],[0.18633593750000017E2,8.16772461],[0.18747460937500023E2,8.24379883],[18.9064453,8.40507812],[0.19108691406250014E2,8.65615234],[0.18886035156250017E2,8.83603516],[18.8882812,8.88974609],[19.0478516,8.99501953],[19.1455078,9.0159668],[0.19668359375000023E2,9.02089844],[0.19953515625000023E2,0.9075146484374997E1],[0.20072656250000023E2,9.13320312],[0.20342089843750017E2,9.12709961],[0.20773242187500017E2,0.9405664062499993E1],[0.20984179687500014E2,0.9636279296874989E1],[21.0094727,0.9713232421874991E1],[21.2638672,9.97460938],[21.3959961,0.10001367187499994E2],[21.5280273,0.10207812499999989E2],[21.6327148,10.2382812],[21.7257813,0.10366552734374991E2],[21.706543,0.10574804687499991E2],[21.7714844,10.6428223],[21.9648438,0.10736669921874991E2],[22.0431641,0.10822705078124995E2],[22.15625,0.10826074218749994E2],[22.2359375,10.8941406],[22.4938477,0.10996240234374994E2],[22.8600586,10.9196777]]]}}],"_labels":{"CF":"Central African Rep."}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/CG.json b/src/api-umbrella/admin-ui/public/maps/CG.json new file mode 100644 index 000000000..68711eb56 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/CG.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"CG"},"geometry":{"type":"Polygon","coordinates":[[[18.6103516,3.47841797],[0.18622167968750006E2,3.30405273],[18.490918,2.92441406],[0.18211621093750008E2,2.41494141],[0.18072167968750023E2,2.01328125],[0.18072851562500006E2,1.71938477],[18.0578125,1.53486328],[0.17902441406250006E2,1.11806641],[17.8857422,0.856884766],[0.17925195312500023E2,0.537304687],[17.8876953,0.234130859],[17.7731445,-0.0523925781],[17.7241211,-0.277539063],[0.17752832031250023E2,-0.549023438],[0.17542871093750023E2,-0.775],[17.2788086,-0.999609375],[17.1076172,-1.06445312],[0.16879882812499996E2,-1.22587891],[0.16780078125000017E2,-1.37636719],[16.5407227,-1.84013672],[16.215332,-2.17783203],[16.1916016,-2.27910156],[0.16217382812500006E2,-3.03027344],[0.16146777343750017E2,-3.46416016],[0.15990039062500017E2,-3.76621094],[0.15872460937500023E2,-3.93427734],[15.6000977,-4.03095703],[0.15394628906250007E2,-4.24492188],[15.2671875,-4.30761719],[15.10625,-4.46103516],[14.9121094,-4.70556641],[14.7792969,-4.84570312],[0.14707910156250021E2,-4.88173828],[0.14410742187500004E2,-4.83125],[0.14402929687500006E2,-4.68164062],[0.14365429687500011E2,-4.58554688],[0.14449804687500006E2,-4.44951172],[0.14358300781250023E2,-4.29941406],[13.940918,-4.48466797],[0.13778027343750011E2,-4.43388672],[0.13717089843750015E2,-4.45449219],[0.13685351562500017E2,-4.68867188],[0.13414941406250023E2,-4.83740234],[0.13219628906250021E2,-4.70585938],[0.13136621093750023E2,-4.60429688],[13.0727539,-4.63476562],[12.8810547,-4.44511719],[0.12798242187500023E2,-4.43056641],[0.12641699218750004E2,-4.53115234],[0.12384570312500017E2,-4.61914062],[0.12307910156250015E2,-4.76552734],[12.2042969,-4.77861328],[0.12018359375000017E2,-5.00429687],[0.11893261718750011E2,-4.86572266],[11.7808594,-4.6765625],[0.11777539062500011E2,-4.56582031],[0.11668066406250006E2,-4.43427734],[0.11393847656250017E2,-4.20029297],[0.11364453125000011E2,-4.13056641],[0.11130175781250017E2,-3.91630859],[0.11190039062500006E2,-3.76201172],[0.11288281250000011E2,-3.64111328],[0.11504296875000023E2,-3.5203125],[0.11536816406250011E2,-3.525],[11.6857422,-3.68203125],[11.8491211,-3.69667969],[11.8847656,-3.62539063],[0.11832910156250021E2,-3.53144531],[0.11934179687500006E2,-3.31855469],[0.11715429687500006E2,-3.17695313],[11.6890625,-3.12695312],[0.11760156250000021E2,-2.98310547],[0.11639062500000023E2,-2.85537109],[0.11537792968750011E2,-2.83671875],[0.11603417968750023E2,-2.59541016],[11.5751953,-2.39707031],[11.6054688,-2.34257813],[0.11726757812500011E2,-2.39472656],[0.11950292968750006E2,-2.34482422],[12.0644531,-2.41259766],[0.12446386718750006E2,-2.32998047],[12.4785156,-2.11201172],[12.4321289,-1.92890625],[0.12590429687500004E2,-1.82685547],[0.12713671875000017E2,-1.86943359],[0.12793554687500004E2,-1.93183594],[0.12991992187500017E2,-2.31337891],[0.13158593750000023E2,-2.36914062],[0.13357324218750023E2,-2.40478516],[0.13464941406250006E2,-2.39541016],[0.13618554687500021E2,-2.27861328],[0.13733789062500023E2,-2.13847656],[13.784375,-2.16376953],[0.13887695312499998E2,-2.37451172],[0.13886914062500011E2,-2.46542969],[0.13993847656250011E2,-2.490625],[14.0874023,-2.46689453],[0.14199804687500006E2,-2.35419922],[0.14162890625000015E2,-2.21757813],[0.14201757812500004E2,-2.17988281],[14.2514648,-2.00146484],[14.3839844,-1.89003906],[0.14423242187500023E2,-1.71152344],[0.14402929687500006E2,-1.59335937],[14.4472656,-1.52509766],[14.4555664,-1.41318359],[14.4106445,-0.972070313],[0.14480566406250006E2,-0.618359375],[14.3637695,-0.468554688],[0.14206738281250011E2,-0.42734375],[0.14069433593750006E2,-0.270117188],[13.8980469,-0.242578125],[0.13860058593750011E2,-0.203320313],[13.890625,0.0752929687],[0.13884570312500017E2,0.190820312],[0.13949609375000023E2,0.353808594],[14.0875,0.536572266],[14.230957,0.551123047],[14.3242188,0.62421875],[0.14434472656250021E2,0.811474609],[0.14386425781250011E2,1.00444336],[0.14303027343750015E2,1.12084961],[14.2397461,1.32255859],[0.14180859375000011E2,1.37021484],[0.13851367187500017E2,1.41875],[0.13274121093750011E2,1.24101562],[13.1901367,1.27924805],[0.13247363281250017E2,1.36669922],[0.13162695312500006E2,1.6480957],[13.2094727,1.92041016],[13.2886719,2.09169922],[0.13293554687500006E2,2.16157227],[14.484082,2.15473633],[0.14578906250000015E2,2.19912109],[0.14762890625000011E2,2.07519531],[14.875,2.08046875],[0.14902441406250004E2,2.01230469],[15.0996094,2.00234375],[0.15160058593750023E2,2.0355957],[0.15338769531250021E2,1.94472656],[15.600293,1.95039063],[0.15741601562500025E2,1.91499023],[0.15975195312500006E2,1.76000977],[16.059375,1.6762207],[0.16136132812500023E2,1.72421875],[16.1349609,1.79594727],[0.16069628906250017E2,2.02167969],[16.1157227,2.16782227],[0.16183398437500017E2,2.27006836],[0.16468554687500017E2,2.83173828],[0.16459570312500002E2,2.8965332],[16.4962891,3.20883789],[0.16570410156250006E2,3.46308594],[16.6733398,3.53520508],[0.17002539062500002E2,3.55668945],[17.2984375,3.6171875],[0.17437988281249996E2,3.68461914],[17.8803711,3.55385742],[18.1113281,3.55107422],[0.18160937500000017E2,3.49980469],[0.18318164062500017E2,3.58081055],[0.18474414062500017E2,3.62299805],[18.6103516,3.47841797]]]}}],"_labels":{"CG":"Congo"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/CH.json b/src/api-umbrella/admin-ui/public/maps/CH.json new file mode 100644 index 000000000..e40ee1402 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/CH.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"CH"},"geometry":{"type":"Polygon","coordinates":[[[9.52402344,47.5242188],[0.9625878906250023E1,47.467041],[0.9609082031250011E1,47.3917969],[0.9484277343750023E1,47.1726563],[0.9487695312500023E1,47.0622559],[0.9619921875000017E1,47.0574707],[9.8453125,0.47007373046874996E2],[0.9877734375000017E1,46.9376953],[9.996875,46.8853516],[0.10179785156250006E2,0.46862353515624996E2],[0.10349414062500017E2,46.9847656],[0.10414941406250023E2,0.46964404296874996E2],[10.4545898,46.8994141],[10.3979492,46.6650391],[10.4306641,46.5500488],[0.10272265625000017E2,46.5648438],[0.10195507812500011E2,46.6210938],[0.10087011718750006E2,0.46599902343749996E2],[0.10038281250000011E2,46.4832031],[0.10081933593750023E2,46.420752],[0.10145214843750011E2,46.2535156],[10.0410156,0.46238085937499996E2],[0.9939257812500017E1,46.3618164],[0.9884472656250011E1,46.3677734],[0.9639453125000017E1,46.2958984],[0.9528710937500021E1,0.46306201171874996E2],[9.48105469,46.3487793],[0.9427636718750023E1,46.4823242],[0.9260156250000023E1,46.4751953],[9.25107422,46.2867676],[0.9203417968750017E1,46.2192383],[0.9022363281250023E1,46.0514648],[8.99892578,45.9831055],[0.9046679687500015E1,45.8755859],[8.95371094,45.8300293],[8.88515625,45.9187012],[8.77802734,45.9961914],[8.81855469,46.0771484],[8.64169922,46.110791],[8.45839844,46.2458984],[8.44296875,46.4027832],[8.37070313,0.46445117187499996E2],[8.23193359,0.46341210937499994E2],[8.08154297,0.46256005859374994E2],[8.12519531,46.1609375],[7.99316406,0.46015917968749996E2],[7.78789063,45.9218262],[7.53857422,0.45978173828124994E2],[7.32792969,45.9123535],[7.12900391,0.45880419921874996E2],[7.02109375,45.9257812],[6.95371094,0.46017138671874996E2],[6.77207031,46.1651367],[6.81679688,0.46275195312499996E2],[6.75810547,46.4157715],[6.57822266,46.4373535],[6.42890625,46.4305176],[6.321875,0.46393701171874994E2],[6.22421875,46.3194336],[6.27294922,46.2522461],[6.08662109,0.46147021484374996E2],[5.97148438,46.1512207],[5.97001953,46.2146973],[6.09589844,46.2793945],[6.12324219,46.3786133],[6.06025391,46.4281738],[6.16074219,46.6110352],[6.41015625,0.46755419921874996E2],[6.45625,46.9483398],[6.62480469,47.0043457],[6.95205078,47.2671875],[7.00058594,47.3225098],[6.90039062,47.3942383],[7.05341797,47.4893555],[7.13603516,47.4898437],[7.203125,47.4327148],[7.42001953,47.4551758],[7.49492188,47.5473633],[7.615625,47.5927246],[7.69804688,0.47569873046874996E2],[7.92705078,0.47563867187499994E2],[8.09375,47.5761719],[8.19824219,47.6069336],[8.41474609,47.5895996],[8.55947266,47.6240234],[8.55234375,47.6591309],[8.45175781,47.6518066],[8.40341797,0.47687792968749996E2],[8.50986328,0.47766894531249996E2],[8.61787109,47.7661133],[8.72832031,47.7000488],[8.79306641,47.7165527],[8.88115234,0.47656396484374994E2],[0.9182812500000011E1,47.6707031],[9.52402344,47.5242188]]]}}],"_labels":{"CH":"Switzerland"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/CI.json b/src/api-umbrella/admin-ui/public/maps/CI.json new file mode 100644 index 000000000..e3f81b6be --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/CI.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"CI"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-3.08671875,5.12832031],[-3.11401367,5.08867188],[-3.24638672,5.1140625],[-3.21489258,5.1472168],[-3.08671875,5.12832031]]],[[[-6.23066406,0.10597509765625018E2],[-6.19067383,0.10400292968749994E2],[-6.24130859,0.10279199218750007E2],[-6.196875,0.10232128906250011E2],[-6.03457031,0.10194824218750055E2],[-5.84384766,0.10389550781250023E2],[-5.69428711,0.10433203125000034E2],[-5.5565918,0.10439941406249986E2],[-5.38227539,0.10314013671875003E2],[-5.26230469,0.10319677734374991E2],[-5.09985352,0.10241601562499994E2],[-4.99404297,0.10046484375000034E2],[-4.96992187,0.9930078125000023E1],[-4.81445312,9.84116211],[-4.72177734,9.75654297],[-4.62583008,0.9713574218749969E1],[-4.52661133,9.72348633],[-4.40620117,0.9647998046875031E1],[-4.33222656,9.64570313],[-4.2671875,0.9743261718749977E1],[-3.87763672,9.89492187],[-3.790625,0.9917187499999983E1],[-3.58115234,9.92431641],[-3.28969727,0.9882226562500051E1],[-3.22353516,0.9895458984374997E1],[-3.09580078,0.9752099609375007E1],[-2.98828125,0.9687353515624961E1],[-2.81674805,9.42583008],[-2.69584961,0.9481347656250009E1],[-2.70180664,9.30166016],[-2.67421875,0.9282617187500023E1],[-2.74667969,9.10961914],[-2.68989258,9.02509766],[-2.60039063,8.80043945],[-2.50585938,8.20874023],[-2.61171875,8.14755859],[-2.61337891,8.04667969],[-2.78974609,7.93193359],[-2.89633789,7.68500977],[-2.95908203,7.45454102],[-2.98579102,7.20488281],[-3.03769531,7.10458984],[-3.16889648,6.9409668],[-3.23579102,6.80722656],[-3.2402832,6.53564453],[-3.20058594,6.34824219],[-3.10556641,6.08564453],[-2.99829102,5.71132813],[-2.96225586,5.64301758],[-2.79365234,5.60009766],[-2.75498047,5.43251953],[-2.81567383,5.15302734],[-2.94833984,5.11884766],[-3.16870117,5.20302734],[-3.15141602,5.34829102],[-3.23759766,5.33540039],[-3.34755859,5.13066406],[-3.87060547,5.22070313],[-3.98417969,5.29316406],[-4.12016602,5.3097168],[-4.55283203,5.27988281],[-4.60888672,5.23588867],[-4.11518555,5.26162109],[-4.03720703,5.23012695],[-4.66152344,5.17255859],[-4.89970703,5.13833008],[-5.02368164,5.20361328],[-5.28237305,5.21025391],[-5.3675293,5.15078125],[-5.10488281,5.1621582],[-5.06181641,5.13066406],[-5.56474609,5.08945313],[-5.91376953,5.0109375],[-6.5484375,4.76176758],[-6.84516602,4.67148438],[-7.05795898,4.54472656],[-7.23139648,4.48598633],[-7.42607422,4.37602539],[-7.5449707,4.35131836],[-7.57158203,4.38642578],[-7.59121094,4.8215332],[-7.56889648,5.08066406],[-7.50976562,5.10849609],[-7.48520508,5.23642578],[-7.42983398,5.32451172],[-7.42890625,5.47788086],[-7.39990234,5.55058594],[-7.45439453,5.84130859],[-7.63613281,5.90771484],[-7.73037109,5.91904297],[-7.7965332,5.97509766],[-7.88862305,6.23486328],[-7.9815918,6.28613281],[-8.20385742,6.29072266],[-8.34487305,6.35126953],[-8.44990234,6.4625],[-8.60356445,6.5078125],[-8.4012207,6.70512695],[-8.33256836,6.8015625],[-8.29663086,7.07402344],[-8.4371582,7.51640625],[-8.48642578,7.55849609],[-8.42998047,7.60185547],[-8.23188477,7.55673828],[-8.11542969,7.76074219],[-8.12685547,7.86772461],[-8.00986328,8.07851563],[-8.01674805,8.14492187],[-8.25610352,8.25371094],[-8.23696289,8.45566406],[-8.20996094,8.48325195],[-8.04912109,8.4953125],[-7.82358398,8.46767578],[-7.73896484,8.37524414],[-7.68120117,8.41035156],[-7.6909668,8.5625],[-7.7840332,8.72060547],[-7.95097656,8.78681641],[-7.93818359,8.97978516],[-7.77797852,0.9080859375000031E1],[-7.91806641,0.9188525390625031E1],[-7.89619141,9.41586914],[-8.03100586,0.9397656250000011E1],[-8.13696289,9.49570312],[-8.14584961,0.9881738281250037E1],[-8.13662109,0.10022070312500034E2],[-7.990625,10.1625],[-7.81420898,0.10236572265625028E2],[-7.66113281,0.10427441406250011E2],[-7.49794922,0.10439794921875048E2],[-7.36318359,10.259375],[-7.10488281,10.2035156],[-7.03974609,0.10144775390624986E2],[-6.96816406,0.10176220703124997E2],[-6.99174805,0.10251855468750037E2],[-6.9503418,0.10342333984374989E2],[-6.69326172,0.10349462890625018E2],[-6.69199219,0.10512011718750017E2],[-6.65415039,10.6564453],[-6.56459961,0.10586425781249986E2],[-6.40751953,0.10572363281249963E2],[-6.42587891,0.10671777343749966E2],[-6.26113281,0.10724072265625054E2],[-6.23066406,0.10597509765625018E2]]]]}}],"_labels":{"CI":"Côte d'Ivoire"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/CK.json b/src/api-umbrella/admin-ui/public/maps/CK.json new file mode 100644 index 000000000..23bdd8032 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/CK.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"CK"},"geometry":{"type":"Polygon","coordinates":[[[-159.740527,-21.2492188],[-159.8396,-0.21238085937500003E2],[-159.832031,-0.21200488281250003E2],[-159.810596,-21.1864258],[-159.768359,-21.1884766],[-159.739502,-0.21208105468750006E2],[-159.740527,-21.2492188]]]}}],"_labels":{"CK":"Cook Is."}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/CL.json b/src/api-umbrella/admin-ui/public/maps/CL.json new file mode 100644 index 000000000..1c35e180a --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/CL.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"CL"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-67.5751953,-55.8896484],[-67.831543,-55.8648438],[-67.7620605,-55.8161133],[-67.5448242,-0.55825976562500024E2],[-67.5751953,-55.8896484]]],[[[-67.2888672,-0.55776855468749964E2],[-67.5599609,-55.7248047],[-67.3973633,-55.5851562],[-67.2624512,-55.74375],[-67.2888672,-0.55776855468749964E2]]],[[[-66.4721191,-55.2291016],[-66.551709,-55.2728516],[-66.6366211,-55.234375],[-66.5231445,-55.1655273],[-66.4721191,-55.2291016]]],[[[-67.0799316,-55.1538086],[-67.2574219,-55.2818359],[-67.3992676,-55.2722656],[-67.4634766,-55.1817383],[-67.5352539,-55.1785156],[-67.7677734,-55.2595703],[-68.0700195,-55.2210937],[-68.1743164,-55.0712891],[-68.3013672,-54.9806641],[-68.1069336,-0.54929394531249976E2],[-67.8741211,-0.54929687500000036E2],[-67.2452637,-0.54977636718750034E2],[-67.1073242,-0.55063574218749956E2],[-67.0799316,-55.1538086]]],[[[-69.7029785,-54.919043],[-68.9007813,-55.0177734],[-68.6535156,-54.9579102],[-68.4580078,-54.959668],[-68.3998047,-55.0419922],[-68.5980957,-55.1283203],[-68.5855469,-0.55177734375000036E2],[-68.3817383,-55.1916016],[-68.282666,-0.55255175781249996E2],[-68.3054199,-0.55356640624999976E2],[-68.0583008,-55.5179688],[-68.0483398,-55.6431641],[-68.2296387,-55.6015625],[-68.2933594,-55.5213867],[-68.5941895,-55.45],[-68.867041,-55.4501953],[-68.9312988,-55.3706055],[-68.8889648,-55.2632812],[-69.0082031,-55.2557617],[-69.1507812,-55.1833984],[-69.2970703,-55.1658203],[-69.3592285,-55.3006836],[-69.1808594,-55.4748047],[-69.4118164,-0.55444238281249966E2],[-69.6102539,-55.3399414],[-69.679834,-55.2189453],[-69.8240234,-55.2365234],[-69.9797852,-55.1474609],[-69.9208496,-55.0611328],[-69.8844238,-54.8820313],[-69.7029785,-54.919043]]],[[[-70.9916016,-54.8679687],[-70.9279297,-0.54942968749999984E2],[-70.804834,-54.9676758],[-70.4175293,-0.54908886718749976E2],[-70.2830566,-0.55065917968749986E2],[-70.4041504,-55.165625],[-70.543457,-55.1613281],[-70.5974609,-0.55082031249999986E2],[-70.7109863,-55.1069336],[-70.9398437,-55.0619141],[-70.9907227,-54.9904297],[-71.2033203,-0.54892968750000016E2],[-71.3885742,-54.9342773],[-71.4105469,-54.8393555],[-70.9916016,-54.8679687]]],[[[-71.3904785,-54.0328125],[-71.16875,-54.1125977],[-71.0219238,-0.54111816406250036E2],[-71.0048828,-54.2466797],[-71.1432617,-0.54374023437499986E2],[-71.473291,-54.2311523],[-71.7612305,-54.2297852],[-71.9485352,-0.54300878906250006E2],[-71.9723633,-0.54207226562500026E2],[-72.2104492,-54.0477539],[-72.1460449,-53.9388672],[-71.9964844,-53.8848633],[-71.5541504,-0.53956054687500014E2],[-71.3904785,-54.0328125]]],[[[-72.9232422,-53.4816406],[-72.8822266,-0.53578320312499976E2],[-72.685498,-53.5579102],[-72.4822754,-53.5880859],[-72.2054199,-53.8074219],[-72.30625,-53.8621094],[-72.3691406,-53.9807617],[-72.5628906,-54.0737305],[-72.8709961,-54.1265625],[-72.9585937,-0.54065917968750014E2],[-72.7816895,-53.9547852],[-72.7637695,-0.53864843749999984E2],[-73.0394531,-53.8328125],[-73.1199707,-54.009375],[-73.3047363,-0.53943945312500034E2],[-73.3143555,-53.7291992],[-73.4709473,-53.7361328],[-73.6415039,-53.5703125],[-73.845459,-53.5458008],[-73.6865234,-53.4268555],[-73.4470703,-53.4100586],[-73.3658691,-53.4702148],[-73.0993652,-53.5119141],[-73.0743164,-53.3967773],[-72.9232422,-53.4816406]]],[[[-74.3857422,-52.9223633],[-74.0659668,-52.965332],[-73.7817871,-53.0560547],[-73.6540039,-53.0698242],[-73.4505859,-0.53144335937500024E2],[-73.1433594,-53.340918],[-73.2257324,-53.3583984],[-73.5828125,-53.3001953],[-73.6170898,-53.2296875],[-73.7935059,-53.1207031],[-73.9939941,-53.0757812],[-74.2702148,-53.081543],[-74.5583008,-52.921875],[-74.7115234,-0.52768164062500034E2],[-74.6699707,-52.7338867],[-74.4222656,-52.8600586],[-74.3857422,-52.9223633]]],[[[-69.167041,-52.6675781],[-69.0799316,-0.52674316406250014E2],[-68.7897949,-0.52576757812500034E2],[-68.6299316,-52.6526367],[-68.6397949,-54.3240234],[-68.6532227,-54.8536133],[-69.0816406,-54.9098633],[-69.4862793,-54.8588867],[-69.7234375,-0.54712109375000026E2],[-70.0305176,-54.8155273],[-70.1380859,-54.8192383],[-70.2817383,-0.54751757812500024E2],[-70.497168,-54.8095703],[-70.924707,-54.7143555],[-71.229248,-54.6941406],[-71.440918,-54.6196289],[-71.831543,-54.6261719],[-71.9015625,-54.6015625],[-71.9069824,-54.4948242],[-71.8001465,-0.54433984374999945E2],[-71.6062988,-54.497168],[-71.3552246,-0.54395410156249994E2],[-71.1588379,-54.4505859],[-70.9664551,-54.4195313],[-70.8982422,-54.3378906],[-70.6988281,-54.3488281],[-70.701123,-54.4854492],[-70.4179199,-54.5022461],[-70.2976562,-54.4855469],[-70.5399902,-54.303418],[-70.7598633,-54.2413086],[-70.8630859,-54.1104492],[-70.8677246,-53.8841797],[-70.6444824,-53.8228516],[-70.6956055,-53.7274414],[-70.5312988,-0.53627343750000016E2],[-70.4431641,-53.893457],[-70.3797363,-53.9867187],[-70.629834,-0.54005566406249976E2],[-70.5353027,-0.54136132812500016E2],[-70.3799805,-54.1806641],[-70.1689941,-54.3792969],[-69.8669922,-54.3674805],[-69.7418457,-54.3058594],[-69.6216797,-54.3640625],[-69.4192871,-54.4071289],[-69.2531738,-0.54557421875000045E2],[-69.0443359,-0.54406738281249986E2],[-69.9881348,-0.54109082031250004E2],[-70.151123,-53.8880859],[-70.1488281,-53.7611328],[-69.949707,-53.671582],[-69.6897461,-53.6008789],[-69.3524414,-0.53479980468750014E2],[-69.3935547,-53.3734375],[-69.6370117,-53.334082],[-69.8741211,-53.3504883],[-70.0903809,-53.4181641],[-70.3292969,-53.3776367],[-70.4602539,-53.20625],[-70.3906738,-53.0264648],[-70.1964844,-52.9902344],[-70.1306152,-52.9427734],[-70.380127,-0.52751953125000014E2],[-70.1896484,-52.7236328],[-69.9935547,-52.8212891],[-69.7635742,-52.7313477],[-69.4983887,-52.4914062],[-69.4140625,-52.4862305],[-69.167041,-52.6675781]]],[[[-74.1421875,-0.51931054687500016E2],[-74.3386719,-51.8979492],[-74.4236328,-0.51845117187500016E2],[-74.4753906,-51.7256836],[-74.3621094,-51.7506836],[-74.1333984,-0.51870898437500024E2],[-74.1421875,-0.51931054687500016E2]]],[[[-74.8229492,-51.6301758],[-74.780127,-51.824707],[-74.6474609,-51.8662109],[-74.5318359,-51.9919922],[-74.6659668,-52.1600586],[-74.6944824,-52.2791992],[-74.8518066,-0.52270703125000026E2],[-75.0171387,-52.0378906],[-75.1053711,-51.7888672],[-75.0081055,-51.7237305],[-74.9151855,-51.7382812],[-74.909668,-51.65],[-74.8229492,-51.6301758]]],[[[-74.5586426,-51.2770508],[-74.6203613,-0.51395703125000026E2],[-74.7309082,-51.3673828],[-74.8533203,-51.4341797],[-75.0473633,-51.3983398],[-75.1462891,-51.5243164],[-75.2891113,-0.51625390625000016E2],[-75.3000488,-51.5564453],[-75.1536621,-51.2788086],[-75.040332,-51.3181641],[-74.7366699,-51.2076172],[-74.6115723,-51.2071289],[-74.5586426,-51.2770508]]],[[[-75.302002,-50.6799805],[-75.3304687,-50.7723633],[-75.411377,-0.50764355468750004E2],[-75.4773926,-50.6541992],[-75.4276367,-50.4805664],[-75.115332,-50.5104492],[-75.292334,-50.596875],[-75.302002,-50.6799805]]],[[[-75.0547852,-50.2960937],[-75.2503906,-0.50376269531249996E2],[-75.4491211,-50.3433594],[-75.3266602,-50.0118164],[-74.8759766,-50.1099609],[-74.8385742,-50.1972656],[-75.0547852,-50.2960937]]],[[[-75.1066895,-48.8365234],[-75.1150879,-48.9160156],[-75.2626953,-49.0689453],[-75.5061035,-49.2306641],[-75.6411621,-0.49195410156250034E2],[-75.4876465,-0.49082421875000016E2],[-75.5145508,-49.0095703],[-75.6378418,-48.9425781],[-75.6191406,-48.8859375],[-75.1186035,-48.7729492],[-75.1066895,-48.8365234]]],[[[-74.4761719,-49.1478516],[-74.4667969,-49.2945312],[-74.5220703,-49.6229492],[-74.4588379,-49.6911133],[-74.4960937,-49.8594727],[-74.5947266,-50.0066406],[-74.7629883,-0.50011425781250004E2],[-74.8219238,-0.49813867187499994E2],[-74.8804199,-49.7258789],[-74.7438477,-49.4224609],[-74.9601074,-0.49533007812499974E2],[-74.9935059,-0.49751757812500045E2],[-75.0660156,-49.8523438],[-75.3000977,-49.8474609],[-75.4511719,-0.49769921875000016E2],[-75.5498047,-49.7913086],[-75.520752,-49.6216797],[-75.3370605,-49.6282227],[-75.3058594,-49.494043],[-75.4674805,-49.3588867],[-75.3266602,-0.49268652343750034E2],[-75.0860352,-49.2702148],[-75.0937012,-0.49185351562500024E2],[-75.2101562,-49.1480469],[-75.1842285,-0.49083593749999984E2],[-74.9492188,-48.9601562],[-74.9807617,-48.8188477],[-74.8962402,-48.7332031],[-74.793457,-0.48705078124999964E2],[-74.5666016,-0.48754785156249966E2],[-74.5306641,-48.8125977],[-74.4761719,-49.1478516]]],[[[-75.5102539,-48.7634766],[-75.6228516,-48.7646484],[-75.6509277,-48.5863281],[-75.518457,-48.3288086],[-75.5090332,-48.2306641],[-75.5606934,-0.48070898437500006E2],[-75.3914063,-48.0197266],[-75.1555176,-0.48425195312499966E2],[-75.1584961,-48.6226562],[-75.2250977,-0.48671386718750036E2],[-75.5102539,-48.7634766]]],[[[-74.5672852,-0.48591992187500026E2],[-74.9230469,-48.6264648],[-75.0128418,-48.5357422],[-75.0521484,-48.3914063],[-75.2128906,-48.1416992],[-75.2472656,-48.0267578],[-75.198291,-0.47974609375000014E2],[-74.9750977,-47.9228516],[-74.8956543,-0.47839355468749986E2],[-74.8274414,-47.8503906],[-74.8461914,-48.0208008],[-74.7292969,-48.1258789],[-74.5672852,-0.48591992187500026E2]]],[[[-75.112207,-47.8376953],[-75.1858398,-47.8506836],[-75.2610352,-47.7638672],[-75.0898437,-47.690625],[-74.9160156,-47.7566406],[-75.112207,-47.8376953]]],[[[-74.3128906,-45.6915039],[-74.4655273,-0.45757226562499994E2],[-74.6777344,-45.7385742],[-74.6898437,-45.6625977],[-74.4946777,-45.4258789],[-74.5023437,-45.2851562],[-74.421875,-45.2032227],[-74.3105469,-45.1726563],[-74.2854004,-45.2772461],[-74.3154297,-45.4640625],[-74.2400391,-45.5745117],[-74.3128906,-45.6915039]]],[[[-75.0424805,-0.44890136718750014E2],[-75.1421387,-44.815625],[-75.0794922,-44.7951172],[-75.0424805,-0.44890136718750014E2]]],[[[-73.6321777,-44.8214844],[-73.6945801,-44.8311523],[-73.8001465,-44.684082],[-73.7794922,-44.5591797],[-73.6864746,-0.44546289062499945E2],[-73.6412109,-44.6108398],[-73.6321777,-44.8214844]]],[[[-72.9861328,-0.44780078124999974E2],[-73.2284668,-44.8599609],[-73.35,-44.8332031],[-73.4450684,-0.44641015624999966E2],[-73.3149414,-0.44531347656250006E2],[-73.2600098,-44.350293],[-73.2077148,-44.3349609],[-72.8424316,-0.44457714843750026E2],[-72.7640625,-44.5490234],[-72.9861328,-0.44780078124999974E2]]],[[[-73.7353516,-44.3945313],[-73.9833008,-0.44494824218750026E2],[-74.0020508,-44.590918],[-73.9185547,-44.6546875],[-73.8278809,-44.8398437],[-73.7864746,-45.0335938],[-73.7271484,-45.119043],[-73.7520996,-45.2667969],[-73.8489746,-45.340625],[-74.0990723,-45.3253906],[-74.0892578,-45.1957031],[-74.1952148,-45.1448242],[-74.3499023,-44.9108398],[-74.6177734,-44.6479492],[-74.4805176,-44.5845703],[-74.5018066,-44.4735352],[-74.3012207,-44.3957031],[-74.2125,-44.4269531],[-74.0972168,-44.3893555],[-74.0828125,-0.44186425781249994E2],[-73.9001953,-44.1348633],[-73.8177734,-44.2349609],[-73.7032227,-44.2741211],[-73.7353516,-44.3945313]]],[[[-73.8106445,-0.43827246093750006E2],[-73.7896484,-43.8764648],[-73.9556641,-0.43921972656250034E2],[-74.1177734,-43.8875],[-74.1399414,-43.8209961],[-73.8569336,-0.43783789062500034E2],[-73.8106445,-0.43827246093750006E2]]],[[[-74.66875,-43.6078125],[-74.8104492,-43.6253906],[-74.8176758,-43.5494141],[-74.6974609,-0.43553027343749996E2],[-74.66875,-43.6078125]]],[[[-73.7733887,-43.3458984],[-73.9187012,-43.3719727],[-74.1144043,-43.3579102],[-74.3873535,-43.2316406],[-74.2893555,-0.43079492187499994E2],[-74.2094727,-42.8787109],[-74.1562988,-0.42590527343750026E2],[-74.1988281,-0.42481347656249994E2],[-74.1602051,-42.2164062],[-74.0723145,-0.42105859374999966E2],[-74.0187988,-41.890918],[-74.0366699,-41.7955078],[-73.730957,-41.8772461],[-73.527832,-41.8962891],[-73.4392578,-0.42277832031250014E2],[-73.5328125,-0.42314453125000014E2],[-73.4708008,-0.42466308593750036E2],[-73.7892578,-42.5857422],[-73.5682617,-42.7616211],[-73.4363281,-42.9365234],[-73.5408203,-43.0737305],[-73.7496582,-43.159082],[-73.7733887,-43.3458984]]],[[[-78.8041504,-0.33646484374999986E2],[-78.9833496,-0.33667773437499974E2],[-78.8882813,-33.5763672],[-78.8041504,-0.33646484374999986E2]]],[[[-0.10927998046874994E3,-0.27140429687499957E2],[-109.434131,-27.1712891],[-0.10939047851562499E3,-27.0683594],[-0.10922285156249994E3,-27.1010742],[-0.10927998046874994E3,-0.27140429687499957E2]]],[[[-67.7073242,-0.22889160156250014E2],[-67.5799316,-22.8916992],[-67.194873,-0.22821679687500037E2],[-67.0087891,-23.0013672],[-67.3562012,-0.24033789062499963E2],[-68.250293,-0.24391992187500023E2],[-68.5072754,-0.24629785156249977E2],[-68.5620117,-24.8376953],[-68.4663086,-0.24925195312500023E2],[-68.3842285,-0.25091894531249977E2],[-68.5408203,-25.2367188],[-68.600293,-25.4856445],[-68.5108398,-25.7410156],[-68.414502,-26.1537109],[-68.529834,-26.2769531],[-68.5921875,-0.26418066406249963E2],[-68.5811523,-0.26518359374999974E2],[-68.3186523,-0.26877539062499963E2],[-68.3459961,-27.0279297],[-68.6521973,-0.27148339843749966E2],[-68.7096191,-0.27104492187500014E2],[-68.8463379,-0.27153710937499994E2],[-68.9419922,-0.27405175781249977E2],[-68.9994141,-27.4490234],[-69.1744141,-0.27924707031250037E2],[-69.2512207,-27.9736328],[-69.4369141,-0.28192675781250014E2],[-69.6569336,-0.28413574218749982E2],[-69.7349121,-0.28641113281249968E2],[-69.7431641,-0.28783886718750022E2],[-69.8278809,-29.1032227],[-69.9956055,-29.25],[-70.0268066,-0.29324023437500014E2],[-69.9276367,-29.7691406],[-69.9599609,-30.0783203],[-69.8633789,-0.30120312499999965E2],[-69.9563477,-0.30358203125000028E2],[-70.1614258,-0.30440234374999957E2],[-70.3481445,-0.30902343749999957E2],[-70.309082,-0.31022656250000043E2],[-70.3883789,-0.31121093750000014E2],[-70.5195801,-31.1484375],[-70.5852051,-31.5694336],[-70.4501465,-31.8418945],[-70.2543945,-0.31957714843750022E2],[-70.3637695,-32.0834961],[-70.3200195,-32.2666992],[-70.1696289,-0.32471679687500014E2],[-70.1769531,-32.6260742],[-70.1161621,-32.8074219],[-70.0219727,-32.8845703],[-70.0930664,-33.0267578],[-70.0848633,-33.2017578],[-70.0198242,-33.2714844],[-69.8196289,-33.2837891],[-69.7977539,-0.33398632812500026E2],[-69.8825684,-33.6009766],[-69.8943359,-33.7313477],[-69.8524414,-34.2243164],[-70.0520508,-0.34300781249999964E2],[-70.1014648,-34.4320313],[-70.2899414,-0.34732812499999966E2],[-70.3931641,-35.146875],[-70.5551758,-35.246875],[-70.4704102,-35.3261719],[-70.3801758,-35.771875],[-70.4157227,-0.35878515624999956E2],[-70.4047852,-36.0617187],[-70.4567383,-0.36132714843749966E2],[-70.5633789,-36.1463867],[-70.7219238,-0.36283203124999986E2],[-70.7492676,-36.3925781],[-70.905127,-36.4199219],[-71.0555176,-36.5237305],[-71.0664062,-36.644043],[-71.1921875,-36.8436523],[-71.1184082,-0.37114355468750034E2],[-71.2003906,-0.37300292968749986E2],[-71.1348145,-37.4451172],[-71.1867187,-37.6310547],[-71.1675781,-37.7623047],[-71.0281738,-0.38041210937500026E2],[-70.9679687,-38.4458984],[-70.8476562,-0.38541601562500006E2],[-70.9516113,-38.7384766],[-71.0871094,-0.38757519531250026E2],[-71.2857422,-38.8454102],[-71.4255859,-38.9856445],[-71.4200195,-0.39287207031250034E2],[-71.5394531,-39.6024414],[-71.7199219,-39.6352539],[-71.6378906,-39.8868164],[-71.7043945,-40.0949219],[-71.8183105,-40.1766602],[-71.6953125,-40.3352539],[-71.8046387,-40.4391602],[-71.9321289,-40.6916992],[-71.9413574,-0.40789160156250034E2],[-71.8730469,-0.40892968749999966E2],[-71.8921875,-0.41393359375000024E2],[-71.8711426,-0.41560546874999986E2],[-71.9112793,-0.41650390624999986E2],[-71.8444824,-0.41771972656249986E2],[-71.75,-42.0467773],[-71.7609375,-0.42101464843749966E2],[-71.9440918,-0.42167089843750006E2],[-72.026123,-42.1479492],[-72.1246094,-0.42298339843750014E2],[-72.0534668,-0.42473242187500034E2],[-72.1437012,-42.5771484],[-72.113623,-42.7767578],[-72.1464355,-0.42990039062499974E2],[-72.0546875,-43.1019531],[-71.7814941,-43.1667969],[-71.7638672,-43.2946289],[-71.9049805,-43.3475586],[-71.9049805,-43.4401367],[-71.7506348,-43.5901367],[-71.7374023,-43.7046875],[-71.7947266,-43.7532227],[-71.6800781,-43.9295898],[-71.8123535,-44.1060547],[-71.8200195,-0.44383105468749996E2],[-71.2125977,-44.4412109],[-71.1508789,-0.44494042968749966E2],[-71.2611328,-44.7630859],[-71.4551758,-44.7498047],[-71.9570312,-0.44791503906249986E2],[-72.0637207,-44.771875],[-72.0416992,-44.9041992],[-71.5962891,-44.9791992],[-71.443457,-45.1682617],[-71.3537598,-45.2304687],[-71.3493164,-45.3319336],[-71.4904297,-0.45437695312500004E2],[-71.5081055,-0.45512695312500014E2],[-71.6933105,-45.5347656],[-71.7461914,-45.5789063],[-71.7506348,-45.8390625],[-71.631543,-45.9537109],[-71.6844727,-46.0418945],[-71.8756836,-46.1605469],[-71.7776367,-46.2799805],[-71.6952148,-46.578418],[-71.7327148,-46.7058594],[-71.9402344,-46.83125],[-71.954248,-47.0875],[-71.9049805,-0.47201660156250014E2],[-72.0416992,-47.2414063],[-72.103418,-0.47342773437499986E2],[-72.3459473,-0.47492675781249964E2],[-72.3415039,-47.5720703],[-72.5179199,-47.8763672],[-72.509082,-0.47973339843750026E2],[-72.3283203,-0.48110058593749976E2],[-72.2930176,-48.2291016],[-72.3547363,-48.3658203],[-72.4981445,-48.4173828],[-72.6083984,-48.5193359],[-72.5859375,-48.6625],[-72.6144043,-48.7928711],[-72.7284668,-0.48896289062500024E2],[-72.9817383,-0.48976757812499976E2],[-73.148877,-49.1879883],[-73.1352539,-49.3006836],[-73.4615723,-49.3138672],[-73.5541992,-0.49463867187500014E2],[-73.5762695,-0.49582910156250016E2],[-73.4704102,-49.7945312],[-73.5289063,-49.9109375],[-73.5012695,-50.125293],[-73.3866211,-50.2311523],[-73.3117187,-0.50361914062500006E2],[-73.2516113,-50.5584961],[-73.1529297,-50.7382813],[-73.082373,-50.7603516],[-72.8036133,-0.50637695312499964E2],[-72.6204102,-50.6476562],[-72.5098145,-0.50607519531250034E2],[-72.3402344,-50.6818359],[-72.2763184,-0.50910253906249984E2],[-72.307373,-0.51033398437500026E2],[-72.3768066,-51.0954102],[-72.3032227,-51.2989258],[-72.407666,-51.5408203],[-72.2689941,-51.6911133],[-72.1369629,-51.744043],[-71.9534668,-51.8803711],[-71.9186523,-51.9895508],[-69.9602539,-0.52008203125000016E2],[-69.4884277,-0.52136132812499966E2],[-69.2062012,-0.52136132812499966E2],[-68.7151855,-0.52255468750000034E2],[-68.4609863,-52.2904297],[-68.4433594,-52.3566406],[-69.0072266,-52.2626953],[-69.2410156,-52.2054687],[-69.446875,-52.2694336],[-69.5605957,-52.421582],[-69.7633301,-52.5055664],[-69.9072266,-52.5135742],[-70.3909668,-52.6608398],[-70.5629395,-52.6734375],[-70.7951172,-52.76875],[-70.8211914,-52.9630859],[-70.9520508,-53.2269531],[-70.9851074,-53.4483398],[-70.9478027,-53.5704102],[-70.9958496,-53.7792969],[-71.2977539,-0.53883398437500034E2],[-71.6937988,-53.803125],[-71.871875,-53.7226562],[-72.1744141,-0.53632324218749964E2],[-72.3768066,-53.4711914],[-72.4128906,-53.3501953],[-72.3060547,-53.2537109],[-71.9416992,-53.234082],[-71.8527344,-0.53285742187499956E2],[-71.8282227,-53.3983398],[-71.8916992,-0.53523535156250006E2],[-71.7914551,-53.4845703],[-71.7405273,-53.2326172],[-71.4003418,-53.1070312],[-71.1802246,-52.9205078],[-71.1550781,-52.8456055],[-71.3877441,-52.7642578],[-71.897998,-53.0017578],[-72.1291016,-53.0643555],[-72.4583008,-53.2544922],[-72.5489258,-0.53460742187499996E2],[-72.7268066,-0.53420019531249956E2],[-73.0527344,-53.243457],[-72.9155273,-0.53121972656249994E2],[-72.9099121,-0.52936523437499964E2],[-72.8318848,-52.8195313],[-72.6759766,-52.7490234],[-72.6266113,-52.8175781],[-72.4534668,-0.52814453124999964E2],[-72.1175781,-52.65],[-71.7970703,-52.6828125],[-71.5912109,-52.6607422],[-71.5112793,-52.6053711],[-71.8119141,-52.5370117],[-72.2256836,-52.5209961],[-72.4376953,-52.6257812],[-72.5043945,-52.5600586],[-72.6448242,-52.5291016],[-72.7765625,-0.52577441406249996E2],[-72.8019043,-52.7124023],[-72.9318848,-52.7816406],[-73.0202637,-52.8917969],[-73.022998,-0.53022070312499984E2],[-73.1224609,-0.53073925781249976E2],[-73.3381836,-0.53054687499999964E2],[-73.5075195,-52.9035156],[-73.6452148,-52.8370117],[-73.2408203,-0.52707128906250034E2],[-73.0731934,-52.5350586],[-73.1837891,-0.52487890624999956E2],[-73.2441406,-52.6240234],[-73.3821289,-0.52595117187499945E2],[-73.5856934,-52.6857422],[-73.7108398,-52.6615234],[-73.9146973,-52.6881836],[-74.0144531,-52.6393555],[-73.9999023,-0.52512597656250016E2],[-74.0373535,-52.4029297],[-74.1508301,-0.52382519531249976E2],[-74.2956543,-0.52117871093749976E2],[-74.1949219,-52.1202148],[-73.8344727,-52.2339844],[-73.7027832,-52.1988281],[-73.6843262,-52.0777344],[-73.5322266,-52.153125],[-73.3267578,-0.52165917968749994E2],[-73.1373535,-52.1296875],[-72.9437012,-52.046875],[-72.8432129,-0.51961132812500026E2],[-72.695459,-51.9851563],[-72.6948242,-0.52044726562499996E2],[-72.5879883,-52.1451172],[-72.5834473,-0.52254199218750045E2],[-72.7140137,-52.3567383],[-72.5687012,-52.3339844],[-72.5241211,-52.1703125],[-72.6135742,-52.0370117],[-72.6246094,-51.9464844],[-72.5228516,-51.890918],[-72.4896484,-51.7636719],[-72.7612305,-51.5732422],[-73.1267578,-51.4399414],[-73.1970215,-0.51478027343750014E2],[-72.7893555,-51.6142578],[-72.5833008,-0.51737304687499986E2],[-72.6000488,-51.7991211],[-72.9283691,-51.8598633],[-73.383252,-0.52070019531250004E2],[-73.5181641,-52.0410156],[-73.650293,-51.85625],[-73.8944336,-51.7578125],[-73.9732422,-51.7844727],[-74.1966797,-0.51680566406249966E2],[-74.0695801,-0.51578710937500006E2],[-73.9297852,-51.6178711],[-73.8958984,-0.51331445312499994E2],[-73.939502,-51.2663086],[-74.1212402,-51.1954102],[-74.3323242,-51.1950195],[-74.8147461,-51.0628906],[-75.0553223,-50.7855469],[-75.0946777,-50.68125],[-74.6857422,-0.50662011718749945E2],[-74.6489258,-0.50618457031250045E2],[-74.7758789,-50.4699219],[-74.6444824,-0.50360937499999984E2],[-74.3655762,-50.4878906],[-74.1901855,-50.7780273],[-73.8474609,-50.9400391],[-73.7405762,-0.50696679687499994E2],[-73.6139648,-50.6279297],[-73.7501953,-50.5398438],[-73.8915039,-0.50782714843750014E2],[-73.9780273,-0.50827050781249994E2],[-74.1972168,-50.6097656],[-74.1855957,-50.4853516],[-73.9503418,-50.5105469],[-74.0310547,-50.4698242],[-74.4250977,-50.3501953],[-74.6295898,-50.194043],[-74.3337402,-49.9746094],[-74.0194336,-50.0227539],[-74.0112305,-49.9285156],[-74.1713379,-49.9073242],[-74.3239258,-49.7833984],[-74.2908203,-0.49604101562499984E2],[-74.102002,-0.49555371093750004E2],[-73.8915527,-49.6237305],[-73.8924805,-49.5234375],[-74.0944336,-49.4296875],[-74.0234375,-0.49244140625000014E2],[-74.0277344,-49.0261719],[-74.073877,-49.1883789],[-74.1397949,-0.49250488281249964E2],[-74.2212891,-0.49500585937500034E2],[-74.3665527,-49.4004883],[-74.3821289,-48.7936523],[-74.3410156,-48.5957031],[-74.1762207,-0.48494140624999986E2],[-74.009082,-48.475],[-74.1715332,-48.4274414],[-74.3429687,-0.48492578125000016E2],[-74.4744141,-48.4639648],[-74.5771973,-0.48274414062499986E2],[-74.584668,-0.47999023437500014E2],[-74.2504395,-48.0449219],[-73.8538086,-48.0421875],[-73.5281738,-0.48198242187500014E2],[-73.3844727,-48.1773437],[-73.6099121,-0.47993945312500045E2],[-73.7158691,-47.6554688],[-73.8466797,-47.8669922],[-73.9408691,-47.9293945],[-74.2270508,-0.47968945312500004E2],[-74.3505859,-47.9443359],[-74.3762207,-47.8296875],[-74.6088867,-0.47758007812500026E2],[-74.6549316,-0.47702246093750034E2],[-74.5337891,-0.47567675781249974E2],[-74.2429687,-47.6792969],[-74.134082,-0.47590820312499986E2],[-74.3236816,-47.5314453],[-74.482666,-47.4304688],[-74.4032715,-47.3275391],[-74.1583984,-47.1825195],[-74.2080566,-47.0831055],[-74.1519043,-46.9744141],[-74.3135742,-46.7881836],[-74.4541992,-46.7667969],[-74.4801758,-46.8858398],[-74.6908203,-46.8639648],[-75.005957,-46.7411133],[-75.0525391,-46.6280273],[-74.9841797,-46.5121094],[-75.145752,-46.6000977],[-75.478418,-46.6624023],[-75.5650879,-0.46728710937500026E2],[-75.4459961,-46.7507813],[-75.3864258,-0.46862695312499966E2],[-75.4966309,-0.46940136718750026E2],[-75.6352539,-46.862793],[-75.7081055,-46.775],[-75.6567871,-0.46610351562499986E2],[-75.2470215,-46.3693359],[-75.0748535,-46.2345703],[-74.9244629,-46.159668],[-75.0745117,-46.0044922],[-75.0666992,-45.8749023],[-74.7631348,-45.8236328],[-74.462793,-45.8407227],[-74.1578613,-45.7671875],[-74.0825195,-45.6447266],[-74.1227051,-45.4961914],[-74.0375488,-45.4176758],[-73.825,-45.446875],[-73.9602539,-45.8352539],[-74.0610352,-0.45947363281250006E2],[-74.0199219,-46.0558594],[-74.081543,-46.1318359],[-74.3567871,-0.46212695312499974E2],[-74.3724609,-46.2462891],[-74.0897461,-46.2223633],[-73.9675781,-46.1541016],[-73.8787109,-45.846875],[-73.7352539,-45.8117187],[-73.694873,-45.8595703],[-73.7081543,-0.46070312500000014E2],[-73.8106445,-46.3773437],[-73.9348145,-0.46500683593750026E2],[-73.94375,-46.571582],[-73.7702637,-0.46499804687500024E2],[-73.6620605,-46.2974609],[-73.5943359,-45.7768555],[-73.7565918,-0.45702832031250026E2],[-73.7803711,-45.6279297],[-73.7307617,-45.4799805],[-73.5499023,-45.4837891],[-73.3785645,-0.45382812500000014E2],[-73.2023437,-0.45353808593749974E2],[-72.9781738,-45.4511719],[-72.9408203,-45.4172852],[-73.2263672,-45.2551758],[-73.4449707,-45.2381836],[-73.3624512,-44.9782227],[-73.078418,-44.9202148],[-72.7389648,-44.7341797],[-72.6800781,-44.5939453],[-72.6638672,-44.4364258],[-72.8275391,-44.3954102],[-73.2650879,-44.1686523],[-73.2244629,-43.8979492],[-73.0687988,-43.8620117],[-72.996582,-43.631543],[-73.1009766,-0.43455175781249956E2],[-73.0759766,-0.43323632812499994E2],[-72.9399902,-43.2113281],[-72.8780273,-43.0481445],[-72.7580078,-43.0394531],[-72.7660156,-42.9082031],[-72.8449707,-42.8080078],[-72.8480469,-42.6691406],[-72.7739258,-0.42505175781250045E2],[-72.6318359,-42.509668],[-72.7851562,-0.42301269531249986E2],[-72.6310547,-0.42199804687500006E2],[-72.5484375,-0.42255761718749945E2],[-72.4302734,-42.4338867],[-72.4123535,-0.42388183593750014E2],[-72.4994141,-41.9808594],[-72.7381836,-41.9946289],[-72.8240723,-0.41908789062499956E2],[-72.6598633,-41.7424805],[-72.4860352,-41.7220703],[-72.3604004,-41.6491211],[-72.3182617,-41.4990234],[-72.4277344,-0.41645898437499966E2],[-72.5423828,-41.690625],[-72.6697754,-41.659375],[-72.805127,-0.41544335937499966E2],[-73.0149902,-41.5438477],[-73.1740723,-41.746582],[-73.2417969,-41.7808594],[-73.5212891,-41.7970703],[-73.7351563,-41.7424805],[-73.6239258,-0.41581347656250045E2],[-73.8107422,-41.5174805],[-73.9658691,-0.41118261718750034E2],[-73.9835937,-0.40974316406250004E2],[-73.9203125,-40.871582],[-73.7840332,-40.468457],[-73.7424805,-0.40262988281250045E2],[-73.6694336,-40.0823242],[-73.6709961,-39.9631836],[-73.4104004,-39.7891602],[-73.2499023,-39.4223633],[-73.2264648,-39.2244141],[-73.4807617,-0.38624023437500014E2],[-73.5325684,-38.3667969],[-73.4647949,-38.040332],[-73.516748,-0.37910546874999966E2],[-73.6618164,-37.6985352],[-73.6645996,-0.37590429687500034E2],[-73.603418,-37.4791016],[-73.6624023,-0.37341015625000026E2],[-73.6016602,-37.1884766],[-73.3745605,-0.37224316406250054E2],[-73.2159668,-37.1668945],[-73.1728516,-0.37053515624999974E2],[-73.1180664,-36.6883789],[-73.0065918,-36.643457],[-72.8745605,-36.3904297],[-72.778418,-35.9785156],[-72.5873535,-0.35759667968749994E2],[-72.6239258,-35.5857422],[-72.5051758,-35.4469727],[-72.3867187,-35.2404297],[-72.2237793,-0.35096191406250014E2],[-72.1824219,-34.9202148],[-72.055957,-34.6158203],[-71.9915039,-34.2884766],[-72.002832,-0.34165332031249996E2],[-71.830957,-33.8195312],[-71.6643555,-33.6526367],[-71.6362793,-33.5192383],[-71.6955078,-33.4290039],[-71.7429688,-33.0951172],[-71.592041,-32.9695313],[-71.4522461,-32.6595703],[-71.4212891,-32.3868164],[-71.5130371,-32.2079102],[-71.5258789,-31.8058594],[-71.5772949,-31.4963867],[-71.6619629,-0.31169531250000034E2],[-71.6539063,-0.30986621093749974E2],[-71.7089355,-0.30628027343750016E2],[-71.6694824,-30.3303711],[-71.4003906,-0.30142968749999966E2],[-71.3480469,-29.9332031],[-71.3157227,-0.29649707031250017E2],[-71.3532715,-0.29350390624999974E2],[-71.4858398,-0.29198242187499968E2],[-71.5192383,-0.28926464843750026E2],[-71.4936035,-28.8552734],[-71.3067383,-0.28672460937499967E2],[-71.2668457,-0.28507519531250022E2],[-71.1864258,-28.377832],[-71.1544922,-28.0640625],[-71.0526367,-27.7273437],[-70.9257812,-0.27588671874999974E2],[-70.8979004,-27.1875],[-70.8127441,-26.9505859],[-70.8029297,-0.26840917968749963E2],[-70.7083984,-0.26596972656250003E2],[-70.646582,-0.26329394531250017E2],[-70.6622559,-0.26225390624999974E2],[-70.6354492,-0.25992675781249982E2],[-70.7137207,-0.25784179687499968E2],[-70.6330078,-25.5456055],[-70.489502,-0.25376464843750043E2],[-70.4453613,-25.1726562],[-70.5586426,-0.24778515624999983E2],[-70.5741211,-0.24644335937500003E2],[-70.5464355,-24.3316406],[-70.5074219,-24.1296875],[-70.5200684,-0.23968554687500003E2],[-70.487793,-0.23781738281249957E2],[-70.392334,-0.23565917968749957E2],[-70.5119629,-23.4828125],[-70.5881348,-0.23368359375000026E2],[-70.5631836,-23.0570313],[-70.4496582,-0.23034179687499986E2],[-70.3316895,-0.22848632812500014E2],[-70.2595215,-22.5560547],[-70.2285156,-22.1931641],[-70.0875488,-21.4930664],[-70.0883789,-0.21253222656249974E2],[-70.1970215,-20.7253906],[-70.1936523,-20.5314453],[-70.1474609,-0.20229785156250017E2],[-70.1481445,-19.8050781],[-70.2104004,-19.4869141],[-70.2757813,-19.2675781],[-70.3348633,-18.8275391],[-70.3616211,-0.18398046874999963E2],[-70.4182617,-0.18345605468750023E2],[-70.1837891,-0.18325195312499957E2],[-69.9263672,-0.18206054687500014E2],[-69.8396973,-0.18093457031249997E2],[-69.8024414,-17.9],[-69.8520996,-17.7038086],[-69.6847656,-0.17649804687500023E2],[-69.5109375,-17.5060547],[-69.4950195,-17.6195313],[-69.3580078,-0.17771679687499983E2],[-69.3133789,-0.17943164062500014E2],[-69.0939453,-18.0504883],[-69.145459,-18.144043],[-69.0922852,-0.18282421875000036E2],[-68.9683105,-0.18967968749999983E2],[-68.857959,-19.0933594],[-68.4628906,-19.4328125],[-68.698291,-0.19721093750000037E2],[-68.5782715,-0.19856542968750006E2],[-68.6001953,-0.20044921875000014E2],[-68.7274902,-20.0696289],[-68.7345703,-0.20225195312499963E2],[-68.6885742,-0.20310058593750025E2],[-68.7592285,-20.3780273],[-68.745166,-20.4585937],[-68.4998535,-0.20612011718749994E2],[-68.5631836,-0.20720117187499994E2],[-68.5338379,-0.20923632812499974E2],[-68.435498,-20.9482422],[-68.1970215,-21.300293],[-68.1864258,-0.21618554687499966E2],[-68.1121582,-0.21753027343750006E2],[-68.0767578,-0.21982812500000023E2],[-67.9883789,-22.0571289],[-67.9503906,-0.22333691406249994E2],[-67.8817383,-0.22493359375000026E2],[-67.8794434,-0.22822949218750026E2],[-67.7073242,-0.22889160156250014E2]]]]}}],"_labels":{"CL":"Chile"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/CM.json b/src/api-umbrella/admin-ui/public/maps/CM.json new file mode 100644 index 000000000..62426175a --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/CM.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"CM"},"geometry":{"type":"Polygon","coordinates":[[[15.4800781,7.5237793],[0.15379101562500011E2,7.3581543],[0.15245898437500017E2,7.26357422],[0.15034570312500023E2,6.78442383],[0.14982714843750017E2,6.7453125],[0.14861914062500004E2,6.55571289],[0.14739257812499998E2,6.27978516],[0.14512109375000025E2,6.16191406],[0.14431152343749998E2,6.0387207],[14.503125,5.91689453],[14.6168945,5.86513672],[14.6168945,5.49550781],[14.5629883,5.27993164],[14.640625,5.17905273],[14.7089844,4.66557617],[0.14770410156250021E2,4.55810547],[0.15022753906250017E2,4.35854492],[0.15136914062500011E2,4.06914062],[0.15034863281250011E2,4.01635742],[0.15128710937500015E2,3.8269043],[0.15458398437500023E2,3.45683594],[15.775,3.12719727],[0.15904882812500006E2,3.09584961],[16.0634766,2.90859375],[16.0592773,2.77299805],[0.16106738281250017E2,2.47348633],[0.16183398437500017E2,2.27006836],[0.16176562500000017E2,2.20478516],[16.0800781,2.10678711],[16.0878906,1.91806641],[0.16136132812500023E2,1.72421875],[16.059375,1.6762207],[0.15975195312500006E2,1.76000977],[0.15741601562500025E2,1.91499023],[15.600293,1.95039063],[0.15338769531250021E2,1.94472656],[0.15160058593750023E2,2.0355957],[15.0996094,2.00234375],[0.14902441406250004E2,2.01230469],[14.875,2.08046875],[0.14762890625000011E2,2.07519531],[0.14578906250000015E2,2.19912109],[14.484082,2.15473633],[0.13293554687500006E2,2.16157227],[13.2203125,2.25644531],[0.12867480468750017E2,2.24677734],[0.12665722656250011E2,2.25678711],[12.3613281,2.29599609],[0.11939746093750017E2,2.28515625],[0.11348437500000017E2,2.29970703],[0.11328710937500004E2,2.16743164],[0.9979882812500021E1,2.16777344],[9.87011719,2.21328125],[9.80078125,2.30444336],[9.82177734,2.53925781],[0.9867578125000023E1,2.73496094],[0.9885449218750011E1,2.91655273],[0.9948437500000011E1,3.07905273],[0.9876171875000011E1,3.30976562],[0.9672070312500011E1,3.53759766],[9.76572266,3.62382812],[0.9642382812500017E1,3.61176758],[9.55615234,3.79804687],[9.628125,3.87001953],[0.9739648437500023E1,3.85292969],[0.9639941406250017E1,3.96533203],[0.9688867187500023E1,4.05639648],[0.9600390625000017E1,4.0269043],[0.9483691406250017E1,4.06611328],[0.9500781250000017E1,4.00073242],[9.42529297,3.92231445],[0.9310937500000023E1,3.94038086],[9.24912109,3.99785156],[9.00009766,4.09160156],[8.97705078,4.23041992],[8.93203125,4.29023437],[8.90283203,4.43515625],[8.91826172,4.55375977],[8.76191406,4.5800293],[8.66035156,4.67099609],[8.68964844,4.55024414],[8.57441406,4.5262207],[8.5328125,4.60585937],[8.58515625,4.8328125],[8.80097656,5.19746094],[8.93505859,5.78100586],[9.06015625,6.00908203],[0.9373339843750017E1,6.31962891],[0.9659960937500017E1,6.53198242],[9.77988281,6.76015625],[0.9874218750000011E1,6.80327148],[10.1435547,6.99643555],[0.10205468750000021E2,6.89160156],[0.10482324218750023E2,6.89125977],[0.10556347656250011E2,7.03745117],[10.60625,7.06308594],[0.10737597656250017E2,6.98828125],[0.11032519531250017E2,6.69790039],[11.0796875,6.50551758],[11.1533203,6.43793945],[0.11324609375000023E2,6.48466797],[0.11477539062499998E2,6.59741211],[0.11551660156250021E2,6.69726562],[11.5800781,6.88886719],[0.11861425781250006E2,7.11640625],[0.11767382812500017E2,7.27226562],[0.11852441406250023E2,7.40073242],[0.12016015625000023E2,7.58974609],[0.12025195312500017E2,7.7277832],[0.12155957031250011E2,7.94248047],[12.2333984,8.28232422],[0.12403515625000011E2,8.59555664],[12.5827148,8.62412109],[0.12731152343750011E2,8.7456543],[0.12806542968750023E2,8.88662109],[12.8756836,0.9303515624999989E1],[0.12929492187500017E2,9.42626953],[0.13019433593750023E2,0.9488330078124989E1],[0.13175488281250011E2,0.9539648437499991E1],[13.2211914,0.9645166015624993E1],[0.13269921875000021E2,0.10036181640624989E2],[13.4145508,0.10171435546874987E2],[0.13535351562500011E2,10.6050781],[0.13699902343750011E2,10.8731445],[13.8920898,0.11140087890624997E2],[0.14056738281250006E2,0.11245019531249994E2],[0.14202343750000011E2,0.11268164062499991E2],[0.14559765625000011E2,11.4922852],[14.5816406,0.11591162109374991E2],[0.14561816406250015E2,0.11728710937499997E2],[14.5973633,11.829834],[14.6271484,0.12108691406249989E2],[0.14518945312500023E2,0.12298242187499994E2],[0.14415429687500021E2,12.3441406],[0.14197460937500011E2,12.3837891],[0.14160058593750023E2,12.612793],[0.14063964843749998E2,13.0785156],[0.14244824218750011E2,13.0773438],[0.14461718750000015E2,0.13021777343749989E2],[0.14516210937500006E2,12.9797363],[0.14544726562500015E2,0.12820214843749994E2],[14.6232422,0.12729931640624997E2],[14.7612305,12.6556152],[0.14847070312500021E2,0.12502099609374993E2],[0.14880664062500015E2,0.12269384765624991E2],[14.9738281,0.12108349609374997E2],[15.08125,0.11845507812499989E2],[0.15078027343750021E2,11.6425781],[0.15121972656250023E2,11.5412598],[0.15055468750000017E2,0.11368554687499994E2],[0.15029882812500006E2,11.1136719],[0.15068652343750015E2,0.10851074218749998E2],[0.15200976562500017E2,0.10484521484374993E2],[0.15276074218750011E2,0.10357373046874997E2],[15.5319336,10.0884766],[0.15654882812500004E2,10.0078125],[0.15540917968750023E2,0.9960302734374991E1],[15.3200195,9.95429688],[0.15193164062500015E2,0.9981494140624989E1],[0.14835839843750023E2,0.9941699218749989E1],[0.14597949218750017E2,0.9953076171874997E1],[0.14377246093750017E2,0.9985058593749997E1],[0.14243261718750006E2,9.97973633],[0.14139746093750004E2,0.9901806640624997E1],[0.13977246093750011E2,9.69155273],[0.14004980468750004E2,0.9588720703124991E1],[0.14177929687500011E2,9.40649414],[0.14332324218750017E2,9.20351562],[0.14732812500000023E2,8.86567383],[0.14860742187500023E2,8.79863281],[15.1162109,8.55732422],[0.15252343750000023E2,8.32236328],[15.4429688,7.85185547],[0.15549804687499998E2,7.78789062],[0.15552636718750021E2,7.66450195],[15.4800781,7.5237793]]]}}],"_labels":{"CM":"Cameroon"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/CN.json b/src/api-umbrella/admin-ui/public/maps/CN.json new file mode 100644 index 000000000..7e326c26c --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/CN.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"CN"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.11088876953125006E3,19.9919434],[0.11097070312499997E3,0.19883300781250057E2],[0.11101367187500001E3,19.6554688],[0.11082226562500003E3,0.19557910156250017E2],[0.11057216796875005E3,19.171875],[0.11056601562500006E3,19.0985352],[0.11045126953125012E3,0.18747949218750023E2],[0.11039951171875006E3,0.18698339843750063E2],[0.11025175781250007E3,18.6557617],[0.11004853515625004E3,18.5052246],[0.11006738281249997E3,0.18447558593750045E2],[109.815625,0.18396679687499983E2],[0.10970273437500012E3,0.18259130859375006E2],[0.10951933593750006E3,18.2182617],[109.400098,0.18281103515625063E2],[0.10902988281250006E3,0.18367773437500034E2],[108.701562,0.18535253906250034E2],[108.635645,18.9077148],[108.65,19.2650391],[0.10869355468750004E3,19.3382813],[0.10890283203124996E3,0.19481347656249962E2],[109.27666,0.19761132812500023E2],[0.10917744140625003E3,0.19768457031250023E2],[0.10931484375000004E3,0.19904394531250002E2],[0.10951367187499997E3,19.904248],[0.10965136718749997E3,19.984375],[109.90625,0.19962744140624977E2],[0.11008300781249997E3,19.9929199],[110.171582,0.20053710937500053E2],[0.11039355468749997E3,0.20059228515625023E2],[0.11058818359375002E3,0.19976367187500017E2],[0.11059833984375004E3,20.0976074],[0.11067851562500006E3,0.20137060546875063E2],[0.11080908203125003E3,20.0144043],[0.11088876953125006E3,19.9919434]]],[[[0.11038515625000005E3,0.21093164062499966E2],[0.11052158203125006E3,21.0831055],[0.11050390625000003E3,20.9677246],[110.421875,21.0068848],[0.11028095703125003E3,0.21001171874999983E2],[0.11030986328125002E3,0.21074755859375045E2],[0.11038515625000005E3,0.21093164062499966E2]]],[[[112.64375,21.6396484],[112.525,0.21623046875000025E2],[0.11264765625000004E3,0.21710253906250017E2],[112.64375,21.6396484]]],[[[0.11279023437500003E3,0.21601855468750045E2],[0.11271269531250002E3,21.6979492],[0.11278203125000006E3,0.21772265625000045E2],[0.11286259765625002E3,21.7526367],[0.11280068359375005E3,0.21694873046874985E2],[0.11279023437500003E3,0.21601855468750045E2]]],[[[113.555273,22.8041992],[0.11356367187500004E3,0.22757910156250034E2],[0.11342607421875006E3,22.8585938],[0.11346494140625006E3,0.22904541015625057E2],[113.555273,22.8041992]]],[[[118.183008,0.24496289062499983E2],[118.090527,0.24446142578125063E2],[0.11810380859375002E3,0.24552343750000034E2],[118.183008,0.24496289062499983E2]]],[[[0.11982089843750006E3,25.4569824],[0.11970029296875013E3,25.4327148],[0.11969599609375003E3,0.25590869140625045E2],[119.77793,0.25653173828125034E2],[0.11982871093750005E3,0.25607373046875008E2],[0.11982089843750006E3,25.4569824]]],[[[0.12125136718749998E3,0.28086425781250057E2],[0.12113154296875004E3,0.28062597656250002E2],[0.12113398437500008E3,0.28135253906250057E2],[121.205469,0.28204394531250017E2],[0.12125136718749998E3,0.28086425781250057E2]]],[[[0.12217255859375008E3,29.6790039],[0.12208378906250002E3,29.7253418],[0.12211962890624996E3,29.7822266],[0.12217255859375008E3,29.6790039]]],[[[0.12240390625000006E3,0.29892382812500017E2],[0.12240390625000006E3,0.29892382812500017E2],[0.12240390625000006E3,0.29892382812500017E2],[0.12240390625000006E3,0.29892382812500017E2]]],[[[0.12229589843750001E3,29.9634277],[0.12202402343750012E3,0.30013330078125048E2],[0.12196943359375003E3,0.30143115234375014E2],[0.12211054687500008E3,30.1397461],[0.12228447265625007E3,30.0680176],[0.12229589843750001E3,29.9634277]]],[[[0.12186269531250005E3,0.31492285156249977E2],[0.12178046875000003E3,31.4637695],[121.519922,0.31549609375000017E2],[0.12133642578125001E3,31.64375],[0.12121113281250008E3,31.8053711],[0.12146416015625003E3,0.31756445312499977E2],[121.576562,0.31637304687500034E2],[0.12180830078125003E3,31.5521484],[0.12186269531250005E3,0.31492285156249977E2]]],[[[0.12348945312500004E3,53.5294434],[123.607812,0.53546533203124994E2],[0.12374091796875003E3,53.5109863],[0.12399472656250005E3,53.4056152],[0.12415429687499997E3,53.3586914],[0.12421992187500003E3,53.3701172],[0.12446591796875006E3,53.2296387],[0.12463984375000003E3,53.2106445],[124.882129,0.53129736328125006E2],[124.970898,53.1973145],[125.075,53.2036621],[0.12522558593750003E3,53.1658203],[0.12554599609375005E3,53.0476074],[0.12564902343750012E3,0.53042285156250045E2],[125.728125,52.8907227],[125.871875,0.52871533203124976E2],[0.12604814453125006E3,52.7394531],[126.016016,0.52610205078125034E2],[0.12615664062500004E3,52.5466309],[126.312891,52.3997559],[0.12638349609375008E3,0.52286523437499994E2],[0.12639482421875002E3,52.172998],[0.12645556640625003E3,52.1264648],[0.12651054687500002E3,0.51925830078125045E2],[0.12670078125000006E3,51.7030273],[0.12670917968750008E3,0.51566308593749994E2],[0.12680546875000007E3,51.5056641],[0.12683378906250007E3,51.3148926],[0.12692480468749997E3,51.1001465],[127.02041,0.50985888671875045E2],[0.12730703125000005E3,0.50707958984375004E2],[0.12734716796874997E3,50.5500977],[0.12730605468749998E3,50.4535156],[0.12739531250000006E3,50.298584],[127.590234,50.2089844],[0.12751230468750013E3,50.0716797],[0.12750244140624997E3,49.8734375],[0.12771113281250003E3,49.6715332],[0.12799960937500008E3,49.5686035],[0.12823710937500007E3,49.5592773],[0.12870400390624997E3,49.6001465],[0.12876904296874997E3,49.5769531],[0.12877031250000007E3,0.49494726562500006E2],[0.12893828125000002E3,49.4489258],[0.12912011718750003E3,49.3620605],[129.498145,49.3888184],[0.12953369140624997E3,49.3234375],[129.671094,49.2785156],[0.12979257812500006E3,49.198877],[0.13003710937499994E3,48.9722656],[130.195996,48.8916504],[130.553125,0.48861181640625006E2],[0.13061718750000003E3,48.7731934],[130.552148,0.48602490234374955E2],[0.13080429687500012E3,0.48341503906249976E2],[130.712109,48.1276367],[0.13073261718750007E3,48.0192383],[130.91543,47.8429199],[131.002734,47.6914551],[0.13131933593749997E3,47.727832],[131.464258,47.7226074],[0.13155673828125012E3,47.6820313],[0.13178525390625012E3,47.6805176],[0.13238017578125002E3,47.7294922],[0.13247626953125004E3,0.47714990234374994E2],[132.561914,0.47768505859374955E2],[0.13270722656250007E3,47.9472656],[132.877148,0.47979101562500055E2],[0.13314404296875003E3,48.1056641],[0.13346835937500006E3,48.097168],[0.13367177734375005E3,48.2077148],[0.13384218750000005E3,0.48273730468750045E2],[0.13429335937500005E3,0.48373437500000016E2],[0.13456357421875012E3,0.48321728515624955E2],[0.13466523437500004E3,48.2539062],[134.669336,48.1533203],[0.13456601562500006E3,48.0225098],[134.752344,47.7154297],[0.13459619140624997E3,0.47523876953124955E2],[0.13448349609375006E3,0.47447363281250006E2],[134.29082,47.4135742],[134.167676,47.3021973],[134.202148,0.47128076171874966E2],[0.13413691406250004E3,0.47068994140624994E2],[0.13403857421874997E3,46.8581543],[0.13402265625000004E3,46.7131836],[0.13386660156250005E3,0.46499121093750006E2],[0.13390273437500005E3,0.46366943359374964E2],[0.13386132812500003E3,46.2477539],[0.13370068359374997E3,46.1397461],[0.13368574218750004E3,46.0089355],[0.13360800781250012E3,45.9203125],[0.13351308593750002E3,0.45878808593749994E2],[133.436426,45.6046875],[0.13318603515625003E3,45.4948242],[0.13311337890625006E3,0.45321435546874966E2],[133.113477,0.45130712890625006E2],[0.13293603515624997E3,0.45029931640624994E2],[0.13283867187500007E3,0.45061132812500034E2],[0.13197753906250003E3,0.45243994140625006E2],[0.13185185546875002E3,45.3268555],[131.654004,45.2053711],[0.13157871093750006E3,45.0836426],[0.13144687500000012E3,0.44984033203124966E2],[131.22793,44.920166],[0.13108232421875002E3,44.9100098],[0.13096777343750003E3,44.7999512],[0.13106064453125012E3,44.659668],[131.255273,44.071582],[0.13121328125000005E3,44.0029297],[131.174219,43.7047363],[0.13118242187500007E3,43.5055664],[0.13126181640625006E3,43.4330566],[0.13117558593750007E3,43.1421875],[131.086133,43.0380859],[0.13106855468750004E3,42.9022461],[0.13094287109375003E3,0.42851757812499976E2],[0.13086855468750005E3,42.8633301],[0.13057724609375006E3,42.8116211],[0.13042480468749997E3,42.7270508],[0.13052060546875006E3,42.6743164],[0.13058447265625003E3,42.567334],[130.360742,42.6308594],[0.13024667968750012E3,42.7448242],[0.13024033203125006E3,0.42891796874999955E2],[0.13008261718750006E3,42.9741699],[0.12989824218750002E3,0.42998144531250034E2],[129.779199,42.7765625],[0.12971972656249997E3,42.475],[0.12952373046875002E3,42.384668],[0.12942363281250002E3,42.4358887],[129.313672,42.4135742],[0.12921777343750003E3,42.3126953],[129.195508,42.218457],[0.12892343750000006E3,0.42038232421874966E2],[0.12874902343749994E3,42.0406738],[0.12842724609374997E3,42.0107422],[128.307813,42.0256348],[0.12804521484375007E3,41.9875],[0.12803291015625004E3,41.8984863],[0.12818173828125006E3,0.41700048828125006E2],[0.12825781250000003E3,0.41655371093750034E2],[128.290918,41.562793],[0.12820029296875012E3,41.4330078],[128.11123,0.41389257812500006E2],[0.12791865234375004E3,41.4611328],[0.12768769531250004E3,0.41439990234375045E2],[0.12717968750000001E3,0.41531347656250006E2],[0.12700693359375006E3,0.41742041015625034E2],[0.12690351562500008E3,41.7810547],[126.743066,41.7248535],[0.12660126953125004E3,0.41640966796875034E2],[0.12649042968750003E3,41.3580566],[0.12641181640625008E3,41.3213379],[0.12625361328125011E3,0.41137792968750034E2],[0.12614453124999996E3,0.41078271484374994E2],[0.12598906250000002E3,0.40904638671875034E2],[0.12572832031250002E3,40.8666992],[125.416895,40.6599121],[0.12531445312499996E3,0.40644628906250006E2],[0.12502597656250012E3,40.523877],[124.996875,40.4647461],[0.12488935546875011E3,0.40459814453125006E2],[0.12471240234374997E3,0.40319238281249966E2],[124.481055,40.1816406],[0.12438662109375005E3,40.104248],[0.12426748046875005E3,39.9241699],[124.105762,0.39841015624999976E2],[123.760156,39.8224121],[0.12365087890625003E3,39.8815918],[0.12358066406250006E3,39.7861328],[0.12334814453124997E3,39.7629395],[0.12322656249999997E3,39.6866211],[0.12303222656249997E3,39.6735352],[0.12296093749999996E3,39.6199219],[122.840039,39.6008301],[0.12233486328125005E3,0.39366113281250044E2],[0.12212089843750007E3,39.1519043],[0.12186435546875012E3,0.38996484374999966E2],[0.12167724609374996E3,39.003418],[0.12163281250000003E3,38.954834],[0.12164990234375003E3,0.38865087890625034E2],[0.12132011718750007E3,38.8082031],[0.12116357421874997E3,38.7316406],[121.106738,38.9208008],[0.12126328125000005E3,38.9602539],[121.679883,39.1086914],[0.12162763671875004E3,39.220166],[0.12181845703125005E3,39.3865234],[121.5125,39.3748535],[0.12127548828125006E3,39.3847656],[121.26748,39.5446777],[121.406445,0.39621240234374966E2],[0.12151757812499996E3,0.39638964843750045E2],[0.12147421875000012E3,39.7548828],[0.12151738281250002E3,39.8448242],[121.800977,0.39950537109375006E2],[0.12186894531250007E3,40.0463867],[121.982812,0.40135839843750006E2],[0.12219091796875003E3,0.40358251953125034E2],[0.12227500000000012E3,0.40541845703125034E2],[0.12217871093750003E3,40.6027344],[0.12214042968750002E3,0.40688183593750004E2],[0.12185878906250005E3,40.8420898],[0.12183486328125005E3,40.9742676],[121.729297,40.8461426],[0.12153710937499997E3,40.878418],[0.12117451171875008E3,40.9012695],[120.922266,40.6831055],[0.12077070312500004E3,40.5890625],[0.12047910156250006E3,40.230957],[0.12036894531250002E3,40.2038574],[0.11985039062500007E3,0.39987451171874966E2],[0.11959111328125007E3,39.9026367],[0.11939111328125004E3,39.7524902],[0.11926132812500006E3,0.39560888671875034E2],[0.11922460937500003E3,39.4080566],[0.11904013671875012E3,39.2223633],[0.11891230468750011E3,39.1664063],[118.626367,0.39176855468750034E2],[0.11829785156249997E3,0.39067089843749955E2],[0.11814785156250005E3,39.1950684],[0.11804091796874998E3,39.2267578],[0.11786572265625003E3,39.1912598],[0.11778466796875001E3,39.1344727],[0.11761669921875004E3,0.38852880859375034E2],[0.11755380859375005E3,38.6914551],[117.557813,38.6251465],[0.11765605468750002E3,38.4242188],[117.766699,0.38311669921874994E2],[0.11801494140625006E3,38.1833984],[0.11854326171875002E3,38.0949219],[118.8,0.38126660156249955E2],[0.11894003906250006E3,38.0427734],[0.11902753906250005E3,37.9040039],[0.11903847656250005E3,37.7765137],[0.11908916015625007E3,37.7007324],[0.11899082031250006E3,37.6413574],[0.11895488281250006E3,0.37494091796874955E2],[0.11895263671875003E3,37.3311523],[0.11911181640624996E3,37.2011719],[0.11928740234375002E3,0.37138281250000034E2],[119.449902,37.1247559],[0.11976054687500007E3,37.1550781],[119.8875,37.2533691],[0.11988291015625012E3,37.3508301],[120.155859,0.37495019531249966E2],[0.12031152343750001E3,37.6227051],[120.257227,37.6790039],[0.12037011718749997E3,0.37701025390625006E2],[120.75,0.37833935546875004E2],[0.12104902343750008E3,37.7251953],[121.219531,37.6001465],[0.12138808593749998E3,0.37578955078125006E2],[0.12164023437500012E3,37.4603516],[0.12196484374999997E3,37.4453125],[0.12205664062500001E3,37.5289063],[0.12216914062500003E3,0.37456152343750034E2],[0.12233769531250007E3,37.4052734],[0.12260234375000002E3,37.426416],[0.12266699218750001E3,37.402832],[0.12257333984375012E3,37.3179199],[0.12258730468750005E3,0.37181103515624955E2],[0.12244667968749998E3,37.0681152],[0.12251972656250004E3,36.9468262],[0.12234091796875012E3,36.8322266],[0.12224228515625012E3,36.8498535],[0.12216240234375006E3,36.9586426],[0.12193271484375005E3,36.9594727],[0.12166962890625004E3,36.836377],[0.12141308593750003E3,0.36738378906250006E2],[0.12098994140625004E3,36.5979492],[0.12087851562500005E3,36.6351563],[120.79668,36.6072266],[120.882617,36.538916],[0.12089580078125007E3,36.4441406],[0.12077617187500002E3,36.4562988],[0.12068222656250008E3,0.36340722656249994E2],[0.12068095703125009E3,0.36168359374999966E2],[0.12039306640625003E3,0.36053857421874994E2],[0.12033027343750003E3,36.1101074],[0.12032773437500006E3,0.36228173828124994E2],[0.12018330078125003E3,36.2024414],[120.094141,36.1188965],[0.12018144531250002E3,0.36017480468750044E2],[0.12028476562500006E3,35.9844238],[0.12005468750000003E3,35.8611328],[119.978711,35.7402344],[0.11986621093749996E3,0.35643652343750006E2],[0.11971972656249997E3,0.35588720703125006E2],[0.11952646484375006E3,35.3585938],[0.11942968749999997E3,0.35301416015624994E2],[0.11935283203125002E3,35.1138184],[0.11921582031250003E3,35.0117676],[0.11916533203125002E3,34.8488281],[119.200977,0.34748437499999966E2],[0.11935136718750002E3,0.34749414062499994E2],[0.11958291015624998E3,34.5822266],[0.11976972656250004E3,34.4961914],[119.963672,34.4478027],[0.12020146484375007E3,34.3256836],[120.322656,34.1689941],[0.12042568359374998E3,0.33866308593750034E2],[0.12049980468750002E3,33.7164551],[0.12050478515625004E3,33.6381836],[120.615625,33.4905273],[0.12073447265625005E3,33.2366211],[0.12087109374999996E3,0.33016503906249994E2],[120.897363,0.32843212890624955E2],[0.12085322265625008E3,32.661377],[0.12098994140625004E3,0.32567041015624994E2],[0.12129335937500005E3,0.32457324218750045E2],[0.12140097656250012E3,0.32371923828125034E2],[0.12140390625000005E3,32.20625],[0.12149052734375007E3,32.1210938],[121.674219,32.0510254],[0.12183242187499998E3,0.31899755859375034E2],[0.12186630859375005E3,0.31703564453124955E2],[0.12168085937500004E3,0.31712158203125025E2],[121.351953,31.8587891],[121.145801,0.31842333984374985E2],[120.973535,0.31869384765624968E2],[0.12079169921875004E3,32.0317383],[0.12052011718750006E3,32.1058594],[0.12018408203125003E3,0.31966162109374977E2],[0.12003593750000002E3,0.31936279296875025E2],[0.12019160156250004E3,0.31906347656250063E2],[0.12049716796875012E3,32.0198242],[120.715527,0.31983740234375002E2],[120.787793,31.8197754],[0.12105537109375004E3,0.31719433593749983E2],[0.12120488281250003E3,0.31628076171875023E2],[0.12135097656250005E3,31.4853516],[0.12166064453124997E3,0.31319726562499994E2],[121.785938,0.31162890625000014E2],[0.12187792968750003E3,0.30916992187500025E2],[0.12176943359375005E3,30.8703613],[0.12152753906250004E3,30.8409668],[0.12130996093750005E3,0.30699707031249996E2],[0.12099765625000012E3,30.558252],[0.12089746093750003E3,0.30392626953125045E2],[120.821484,30.3546387],[0.12062998046875006E3,0.30390869140625025E2],[0.12044980468750005E3,0.30387841796875048E2],[0.12024550781249998E3,30.2835449],[0.12035253906249997E3,0.30247412109375034E2],[120.494531,0.30303076171875002E2],[0.12063339843750005E3,0.30133154296875034E2],[0.12090449218750004E3,30.1606445],[121.159375,30.3017578],[121.340625,0.30282373046874962E2],[121.432715,0.30226660156249977E2],[0.12167792968750004E3,0.29979101562500006E2],[0.12194433593749997E3,29.8940918],[0.12208291015625005E3,0.29870361328125053E2],[0.12190576171875001E3,0.29779687500000055E2],[0.12167656250000002E3,0.29583789062500017E2],[121.50625,0.29484570312499958E2],[0.12169042968750003E3,29.5109863],[121.821875,29.6046387],[0.12194121093750002E3,0.29605908203124983E2],[0.12196835937500006E3,29.490625],[0.12191777343750007E3,29.1350098],[0.12185351562500001E3,0.29128906249999968E2],[0.12179082031250002E3,0.29225683593749977E2],[0.12171748046875004E3,29.2563477],[0.12153369140624997E3,0.29236718750000023E2],[0.12144765625000004E3,0.29131347656250025E2],[0.12152089843750004E3,0.29118457031249985E2],[121.664941,0.29010595703125034E2],[121.641016,0.28915917968750026E2],[0.12154003906250003E3,28.9318848],[121.6625,0.28851416015625034E2],[0.12163007812500008E3,0.28767919921874977E2],[0.12151914062500012E3,0.28713671875000045E2],[0.12147519531250006E3,0.28641406249999957E2],[0.12160205078124999E3,28.3666016],[0.12160996093750005E3,28.2921387],[0.12150996093750003E3,0.28324267578125014E2],[0.12135458984375005E3,0.28229882812499962E2],[0.12127226562500002E3,0.28222119140624983E2],[0.12121679687499997E3,0.28346191406250025E2],[0.12109843750000002E3,0.28290527343749968E2],[0.12095859375000005E3,0.28037011718750023E2],[120.89248,28.0039063],[0.12074765625000005E3,0.28009960937500008E2],[0.12083300781249996E3,0.27891455078125034E2],[0.12068515625000012E3,0.27744580078124955E2],[0.12066484375000007E3,0.27639453125000045E2],[0.12058750000000012E3,0.27580761718749983E2],[0.12062910156250008E3,0.27482128906249955E2],[120.539844,27.3183594],[0.12038457031250007E3,27.1555176],[120.278711,0.27097070312500023E2],[0.12013857421875004E3,26.8861328],[0.12008671875000006E3,0.26671582031250036E2],[0.11996777343749997E3,0.26586376953124983E2],[0.11988222656250004E3,0.26610449218750002E2],[0.11982128906249997E3,0.26736914062500002E2],[0.11982421874999997E3,26.8463867],[0.11971044921874997E3,0.26728662109375023E2],[0.11958818359375002E3,0.26784960937500045E2],[0.11963818359374997E3,0.26621191406249974E2],[119.725977,26.6094238],[0.11978476562500012E3,0.26546630859374968E2],[0.11988105468750008E3,26.3341797],[0.11969267578125007E3,0.26236425781250002E2],[0.11946308593750005E3,26.0546875],[119.313086,0.26062548828125017E2],[0.11913945312500006E3,0.26121777343750008E2],[119.26377,25.9748047],[0.11941777343750003E3,0.25954345703124996E2],[0.11950087890625001E3,0.26009179687499994E2],[119.61875,0.26003564453124994E2],[0.11964824218750002E3,25.9187012],[119.552832,0.25698681640624983E2],[0.11953945312500004E3,25.5912598],[0.11961914062500003E3,0.25437451171874955E2],[0.11959277343749996E3,0.25368017578125034E2],[0.11942177734375005E3,25.4596191],[0.11926308593750004E3,0.25468017578125057E2],[0.11914628906250006E3,25.4143066],[0.11928554687499998E3,0.25232226562500074E2],[0.11923554687500004E3,25.205957],[0.11902460937500004E3,0.25223437500000045E2],[118.914453,0.25126806640625006E2],[0.11895566406250012E3,0.25004785156249994E2],[0.11890908203125005E3,24.9289063],[0.11863691406250004E3,0.24835546874999974E2],[0.11871914062499998E3,0.24746142578125074E2],[118.657031,0.24621435546874977E2],[0.11856035156250006E3,0.24580371093750045E2],[0.11841201171875004E3,0.24600732421875023E2],[0.11829531250000004E3,24.5727539],[0.11819453125000004E3,0.24625830078124977E2],[118.087109,0.24627001953125042E2],[118.013867,0.24559912109375063E2],[0.11800595703125005E3,24.4819824],[0.11784267578125004E3,24.4743164],[0.11787900390625006E3,0.24395898437500048E2],[0.11802421875000007E3,24.3796387],[118.056055,24.2460937],[0.11790410156250002E3,0.24106445312500057E2],[0.11783945312500006E3,0.24012304687500063E2],[0.11774169921874997E3,0.24014794921875023E2],[117.628223,0.23836718750000074E2],[0.11746640625000013E3,23.8405762],[0.11746220703125006E3,0.23736230468750023E2],[0.11736767578124997E3,23.588623],[0.11733076171875003E3,0.23708789062500045E2],[0.11708251953124996E3,0.23578759765625023E2],[0.11691064453124996E3,0.23646679687499983E2],[0.11686093750000006E3,0.23453076171874983E2],[116.712109,23.360498],[0.11662939453124997E3,0.23353857421875034E2],[0.11669882812500006E3,0.23277783203124983E2],[0.11666914062500004E3,0.23228173828124994E2],[0.11653828125000004E3,0.23179687499999968E2],[0.11651982421875002E3,23.0065918],[0.11647070312499996E3,0.22945898437500034E2],[116.345508,0.22941064453125023E2],[0.11625185546875005E3,0.22981347656249994E2],[0.11615742187500008E3,22.8874512],[0.11606259765625012E3,22.8791016],[0.11585214843750006E3,0.22801562500000045E2],[0.11564042968750002E3,0.22853417968750023E2],[115.561133,0.22824707031250057E2],[0.11549833984375002E3,22.7188477],[0.11538251953125004E3,22.7188477],[0.11519580078125001E3,22.8172852],[0.11501210937499998E3,0.22708935546874983E2],[114.914453,0.22684619140625017E2],[0.11485380859375006E3,0.22616796875000063E2],[0.11475039062500004E3,0.22626318359375034E2],[0.11471113281250003E3,22.7387207],[114.65166,0.22755273437500023E2],[0.11454443359375003E3,22.6206055],[0.11455419921874997E3,22.5289062],[114.340625,0.22593212890624955E2],[0.11426601562500005E3,22.5409668],[114.188184,0.22564990234375074E2],[0.11393115234375003E3,22.5310547],[0.11382832031250004E3,0.22607226562500042E2],[0.11375449218750012E3,0.22733642578125057E2],[0.11361962890624997E3,0.22861425781249977E2],[0.11358632812500005E3,0.23020019531250057E2],[113.620508,23.1274902],[0.11344531249999997E3,23.0550781],[0.11344189453125003E3,22.9405762],[0.11333105468749996E3,0.22912011718749966E2],[0.11343203125000005E3,0.22789404296875034E2],[0.11355302734375002E3,0.22594042968750045E2],[0.11355146484375004E3,0.22404150390624977E2],[0.11358886718750003E3,0.22350488281249966E2],[113.549121,0.22225195312500034E2],[113.327734,0.22145410156250023E2],[0.11326640625000007E3,22.0887695],[0.11314902343750012E3,22.075],[0.11308876953124998E3,0.22207958984374983E2],[0.11300820312500005E3,0.22119335937499955E2],[0.11298378906250005E3,0.21938232421874996E2],[0.11290380859374997E3,0.21881445312499977E2],[0.11280859374999997E3,21.9446289],[0.11266074218750012E3,0.21859472656250034E2],[0.11258632812500005E3,0.21776855468749996E2],[112.421289,0.21880615234374996E2],[0.11235966796875007E3,0.21978027343750025E2],[0.11238974609375006E3,0.21801220703124983E2],[0.11230498046875002E3,21.7416992],[0.11219335937500001E3,0.21763134765624955E2],[0.11202519531250006E3,21.8430176],[0.11194394531250012E3,21.8496582],[0.11187343750000005E3,0.21717138671875006E2],[0.11177597656250006E3,21.7192383],[0.11160273437500004E3,21.559082],[0.11139238281250002E3,0.21535107421874955E2],[0.11131914062500002E3,0.21486132812500017E2],[0.11110058593749997E3,0.21484716796874977E2],[0.11101689453125007E3,0.21511718749999968E2],[0.11099677734375003E3,0.21430273437500006E2],[0.11077109375000006E3,0.21386523437500045E2],[0.11056718750000002E3,21.2140625],[0.11045800781249996E3,0.21230566406250006E2],[0.11041093750000007E3,21.3381348],[0.11037460937500006E3,21.1723633],[110.193555,0.21037646484375045E2],[0.11015400390625003E3,0.20944628906250017E2],[110.180371,0.20858593749999983E2],[0.11036542968750003E3,20.8375977],[0.11038847656250002E3,0.20790527343750057E2],[110.313086,0.20671679687499985E2],[0.11051152343750006E3,20.5182617],[0.11044951171875002E3,0.20355419921874955E2],[0.11034472656249997E3,20.2948242],[0.11012314453125005E3,0.20263720703125017E2],[0.10993847656250003E3,20.2951172],[0.10988583984375012E3,20.4131348],[0.10998388671875003E3,20.4032715],[0.10986103515625004E3,0.20514306640624994E2],[0.10979199218750003E3,20.621875],[0.10980527343750006E3,0.20711474609375014E2],[0.10966259765625003E3,20.9168945],[0.10970449218750004E3,21.0527344],[0.10968125000000012E3,21.1316406],[109.760156,0.21228369140624977E2],[0.10977958984375007E3,0.21337451171875017E2],[0.10992109375000004E3,0.21376464843750057E2],[0.10993076171875012E3,21.4805664],[0.10982958984375003E3,0.21483593750000036E2],[0.10975937500000012E3,21.5600586],[109.686914,21.5246094],[0.10959433593750006E3,0.21671972656250034E2],[0.10952148437499997E3,0.21693408203125045E2],[0.10954404296875012E3,0.21537939453125006E2],[0.10934667968749997E3,21.4539551],[0.10914863281250004E3,21.4255371],[0.10908154296874997E3,0.21440283203125006E2],[0.10913349609375004E3,0.21543603515624994E2],[0.10903056640625007E3,0.21626513671875014E2],[0.10877167968750004E3,21.6304687],[0.10861582031250012E3,21.770459],[108.59375,21.9010254],[0.10847988281250004E3,0.21904638671875006E2],[0.10852568359375002E3,21.6713867],[0.10844433593749997E3,21.6073242],[0.10832480468750005E3,0.21693505859374994E2],[0.10824628906250004E3,21.5583984],[0.10814560546875006E3,21.5651855],[0.10797265624999996E3,0.21507958984375023E2],[0.10780205078125006E3,0.21645166015624994E2],[107.471387,0.21598339843749955E2],[0.10743349609375005E3,21.6422852],[0.10735117187500012E3,21.6088867],[0.10727207031250005E3,21.7106445],[0.10717851562500002E3,21.7170898],[0.10701982421875002E3,0.21834863281249994E2],[0.10700644531250005E3,0.21893408203125034E2],[0.10672949218749997E3,0.22000341796875063E2],[0.10666357421875003E3,21.9789063],[106.654199,22.2414551],[0.10653632812500004E3,0.22395410156249994E2],[106.582422,22.5732422],[0.10670156250000005E3,0.22637744140625045E2],[0.10678027343749997E3,0.22778906250000034E2],[0.10654179687500007E3,22.9083496],[0.10633808593750004E3,22.8634766],[0.10624941406250005E3,0.22869433593750017E2],[106.183984,0.22955126953125045E2],[0.10600097656250003E3,0.22974755859374966E2],[105.842969,0.22922802734374955E2],[0.10569121093750007E3,0.23029931640625023E2],[0.10554814453125007E3,0.23072656250000023E2],[105.494531,23.1808594],[0.10527539062500003E3,23.3452148],[0.10518906250000012E3,0.23281054687500017E2],[0.10486474609375001E3,0.23136376953125023E2],[0.10482656250000005E3,0.23100195312500034E2],[0.10479570312500007E3,22.9111328],[0.10468730468750002E3,0.22822216796874983E2],[0.10452685546875003E3,0.22804101562500023E2],[0.10437177734375004E3,0.22704052734374983E2],[0.10429833984374997E3,0.22712011718750006E2],[0.10421250000000012E3,0.22809423828125034E2],[0.10405390625000004E3,0.22752294921875034E2],[103.971387,22.5504883],[0.10391503906249997E3,0.22538232421875023E2],[0.10362021484375006E3,0.22782031250000045E2],[0.10352539062500003E3,0.22611572265625057E2],[0.10347099609375002E3,22.5974121],[0.10335605468750006E3,0.22754687499999985E2],[0.10330058593750002E3,22.7644043],[0.10313759765625005E3,0.22592968749999983E2],[0.10313632812500005E3,0.22542236328125057E2],[0.10300537109375003E3,0.22452978515624977E2],[102.935156,0.22466162109375006E2],[0.10283007812500003E3,0.22587158203125057E2],[102.517188,0.22741015625000045E2],[0.10242792968750003E3,0.22732812499999966E2],[102.237012,0.22466015624999983E2],[0.10212744140624996E3,0.22379199218750045E2],[0.10202441406250003E3,22.439209],[0.10184179687500003E3,22.3884766],[0.10175996093750003E3,0.22490332031250034E2],[0.10167148437500006E3,0.22462304687500023E2],[0.10161992187500002E3,22.3274414],[0.10152451171875006E3,22.2536621],[0.10160292968750004E3,21.9896973],[101.736523,0.21826513671874977E2],[0.10174726562500003E3,0.21605761718750045E2],[0.10172294921875007E3,21.3149414],[0.10180058593750007E3,0.21212597656249983E2],[101.704785,21.1501465],[0.10154238281250005E3,21.2342773],[101.281445,0.21184130859375042E2],[0.10122441406250002E3,0.21223730468750034E2],[101.219922,21.3424316],[0.10117539062500006E3,0.21407519531250074E2],[0.10119667968750005E3,0.21522070312500063E2],[0.10114726562500002E3,21.5816406],[0.10113085937499997E3,21.7355469],[0.10107978515625004E3,21.7558594],[0.10083515625000004E3,0.21655175781249994E2],[100.677148,0.21504931640625017E2],[0.10053134765625012E3,0.21458105468749977E2],[0.10035058593749997E3,0.21501025390625017E2],[100.214746,0.21462988281250006E2],[0.10008925781250004E3,0.21557910156250074E2],[0.10009550781250007E3,21.6606445],[99.9782227,21.7016113],[0.9992558593750007E2,21.8208008],[99.9478516,0.21988330078125017E2],[99.9176758,22.0280273],[0.9959267578125005E2,0.22089160156250017E2],[0.9919296875000005E2,22.1259766],[0.9917236328125001E2,0.22192480468750034E2],[0.9924306640625005E2,0.22370361328125025E2],[99.3376953,22.4980469],[99.3382812,0.22688671874999955E2],[0.9938515625000005E2,0.22825097656250023E2],[99.5071289,0.22959130859374994E2],[99.4645508,0.23046240234375063E2],[0.9934082031249997E2,0.23095898437499955E2],[99.0550781,23.1305664],[0.9886376953125003E2,0.23191259765625034E2],[98.8855469,0.23307470703124977E2],[0.9885888671875003E2,0.23440087890624994E2],[0.9879785156250003E2,0.23520410156250023E2],[98.8322266,0.23624365234374974E2],[98.7876953,23.7378418],[98.6808594,23.8417969],[0.9870156250000005E2,23.9640625],[0.9883398437500003E2,24.0905762],[0.9876435546875003E2,0.24116064453125063E2],[98.5833984,0.24069824218750057E2],[0.9849941406250005E2,0.24115673828124983E2],[98.2125,0.24110644531250017E2],[98.0168945,24.0654297],[0.9768603515624997E2,0.23898095703124962E2],[97.5645508,0.23911035156250023E2],[97.5682617,0.23988476562499983E2],[97.690625,24.1308105],[97.7082031,0.24228759765624996E2],[97.6666016,0.24379980468750006E2],[97.5314453,24.4916992],[97.5293945,0.24631201171875006E2],[97.5833008,24.7748047],[97.7238281,0.24841992187499983E2],[97.7149414,0.25034326171874994E2],[97.8195313,0.25251855468749994E2],[0.9791796874999997E2,0.25236132812500074E2],[98.0107422,0.25292529296875017E2],[0.9809960937499997E2,0.25415722656249983E2],[98.1725586,0.25594531250000074E2],[0.9833378906250007E2,0.25586767578125006E2],[98.4655273,0.25788867187500045E2],[0.9862539062500005E2,0.25826708984375042E2],[98.6546875,0.25917773437500017E2],[0.9859101562500003E2,0.26003710937500045E2],[98.5719727,0.26114062500000045E2],[98.6631836,26.1394531],[98.671875,0.26298535156249955E2],[98.7318359,26.5833984],[98.7384766,0.26785742187500006E2],[0.9871650390625003E2,27.0449219],[0.9867480468749997E2,27.190625],[0.9867675781250003E2,0.27421923828125042E2],[98.6511719,0.27572460937499983E2],[98.5044922,27.6476563],[98.4088867,0.27639453125000045E2],[98.3504883,0.27538085937499996E2],[0.9829882812499997E2,0.27550097656250045E2],[98.2410156,0.27663183593749977E2],[98.1304688,27.9675781],[98.0989258,0.28142285156249983E2],[97.8649414,0.28363574218750017E2],[0.9776904296875003E2,28.3561523],[0.9769462890625007E2,0.28469335937500006E2],[97.5378906,0.28510205078124983E2],[97.3224609,28.2179688],[97.0753906,28.3689453],[96.9808594,28.3376953],[96.7757812,0.28367041015625034E2],[96.6026367,28.4599121],[96.3664063,0.28367285156249977E2],[96.2814453,0.28412060546874955E2],[96.3956055,0.28606542968750063E2],[0.9658085937500007E2,28.7636719],[96.4357422,0.29050683593750023E2],[96.346875,0.29027441406250006E2],[0.9616220703125005E2,0.28909716796875017E2],[96.1223633,0.29082080078125042E2],[96.3397461,0.29209814453125034E2],[96.337207,0.29260986328124968E2],[96.2349609,0.29245800781249983E2],[96.1285156,29.3813965],[96.0353516,29.447168],[95.7103516,0.29313818359375006E2],[95.5158203,0.29206347656250045E2],[0.9551699218750005E2,0.29151171874999985E2],[95.4202148,29.0542969],[95.2791016,0.29049560546874968E2],[94.9988281,29.1491699],[94.7694336,29.1758789],[0.9473339843750003E2,0.29251611328125023E2],[0.9462304687500003E2,0.29312402343749962E2],[0.9446806640625007E2,0.29216210937499994E2],[0.9429326171875007E2,0.29144628906249977E2],[93.9022461,28.8032227],[0.9366494140625005E2,28.6902344],[93.3605469,0.28654052734375053E2],[0.9320654296875001E2,0.28590820312500057E2],[93.1192383,0.28402294921875008E2],[0.9288183593750003E2,28.228125],[92.7018555,0.28147119140624994E2],[0.9264345703125005E2,0.28061523437500057E2],[92.6643555,27.9489258],[92.4806641,27.8459473],[92.3410156,0.27820751953125008E2],[0.9225048828125003E2,0.27841503906249983E2],[92.1012695,27.8076172],[91.9776367,0.27730371093749994E2],[91.6319336,27.7599609],[91.6418945,0.27923242187500023E2],[91.6055664,0.27951708984374957E2],[0.9122587890625007E2,0.28071240234374983E2],[91.0777344,0.27974462890624977E2],[90.7157227,0.28071728515624983E2],[90.3527344,0.28080224609375023E2],[90.3482422,0.28243945312499985E2],[0.9010449218749997E2,0.28302050781250017E2],[89.9810547,0.28311181640625023E2],[89.8168945,28.2562988],[89.7498047,28.1881836],[89.5369141,28.1074219],[89.1604492,0.27711279296875006E2],[89.1023438,27.5925781],[88.9475586,0.27464013671874994E2],[88.8914063,0.27316064453124966E2],[88.7648438,0.27429882812499983E2],[88.7490234,27.521875],[88.8488281,27.8686523],[88.8037109,0.28006933593750034E2],[88.6210938,0.28091845703125017E2],[88.4259766,28.0116699],[88.1089844,0.27933007812499966E2],[88.1097656,0.27870605468750057E2],[87.8607422,0.27886083984375002E2],[87.6827148,27.8213867],[87.2907227,0.27821923828124994E2],[87.1414063,0.27838330078124955E2],[87.0201172,0.27928662109374983E2],[86.7503906,0.28022070312500002E2],[86.6905273,28.0949219],[86.5544922,28.0852051],[86.5168945,0.27963525390624962E2],[86.4086914,0.27928662109374983E2],[86.2179688,0.28022070312500002E2],[86.1370117,28.1143555],[86.0787109,28.0835937],[86.0641602,0.27934716796874966E2],[85.9541016,27.9282227],[85.8402344,0.28135351562499974E2],[85.6783203,0.28277441406249977E2],[85.4106445,0.28276025390625048E2],[85.1224609,0.28315966796875017E2],[85.0885742,28.3722656],[85.159082,0.28592236328124983E2],[85.0691406,0.28609667968749985E2],[84.8550781,0.28553613281250023E2],[84.7142578,0.28595556640625034E2],[84.6505859,28.6595703],[84.4654297,0.28752929687500025E2],[84.2287109,0.28911767578124962E2],[84.1013672,29.2199707],[83.9359375,0.29279492187500008E2],[83.6710938,0.29187597656250034E2],[83.5834961,29.1835938],[83.3551758,29.4391602],[83.1554687,29.6126465],[83.0139648,29.6180664],[82.8542969,0.29683398437499957E2],[82.4865234,0.29941503906249977E2],[82.2207031,30.0638672],[82.1589844,30.1151855],[82.0433594,0.30326757812500038E2],[81.6418945,30.3875],[81.4171875,0.30337597656250008E2],[81.2550781,0.30093310546874985E2],[81.1103516,0.30036816406250043E2],[80.9854492,0.30237109374999985E2],[80.7467773,30.3604004],[80.6821289,0.30414843750000045E2],[80.2609375,0.30561328125000045E2],[80.1912109,0.30568408203124957E2],[80.1943359,0.30759228515625036E2],[80.0814453,30.7819336],[79.7946289,0.30968261718749996E2],[79.5654297,0.30949072265624974E2],[79.3387695,0.31105712890624996E2],[79.1071289,0.31402636718750017E2],[79.0111328,0.31414111328124957E2],[78.9739258,31.3286133],[78.7916016,31.2936523],[78.7435547,31.3237793],[78.7267578,0.31471826171874994E2],[78.8029297,31.6180664],[78.693457,0.31740380859374994E2],[78.7354492,0.31957958984375015E2],[78.4958984,32.2157715],[78.3896484,32.519873],[78.4125,32.5577148],[78.7008789,32.5970215],[78.7712891,32.4680664],[78.9189453,32.3582031],[79.0669922,32.3881836],[79.1273437,32.4757812],[79.2193359,32.5010742],[79.2338867,32.7030762],[79.2022461,32.9460449],[79.1085937,33.0226563],[79.1351563,33.1719238],[79.1125,33.2262695],[78.9484375,0.33346533203125006E2],[78.8018555,33.499707],[78.7837891,33.8087891],[78.7266602,0.34013378906249955E2],[78.7530273,34.0876953],[78.9706055,34.2282227],[78.9364258,34.3519531],[78.6708008,0.34518164062500034E2],[78.3269531,34.6063965],[78.2820313,34.6539062],[78.0757813,35.1349121],[78.012207,0.35251025390625045E2],[78.0474609,0.35449414062499955E2],[78.0094727,35.4902344],[77.8949219,35.4490234],[77.7994141,35.4958984],[77.4464844,35.4755859],[77.0900391,35.5520508],[76.8789063,35.6132813],[76.5634766,35.772998],[76.5512695,0.35887060546875034E2],[76.2516602,35.8109375],[76.1478516,35.8290039],[76.0708984,0.35983007812500034E2],[75.9451172,36.0175781],[75.9048828,0.36088476562500034E2],[75.9686523,36.1688477],[75.9744141,36.3824219],[75.9330078,36.521582],[75.8402344,36.649707],[75.6671875,0.36741992187500045E2],[75.4242188,36.7382324],[75.3466797,0.36913476562499966E2],[75.0539062,36.9871582],[74.8892578,36.9524414],[74.6921875,0.37035742187500006E2],[74.5414062,37.022168],[74.372168,37.1577148],[74.7266602,37.2907227],[74.8913086,0.37231640624999955E2],[75.11875,37.3856934],[75.0974609,0.37451269531250034E2],[74.8942383,37.601416],[74.9382813,37.7725098],[74.8908203,37.9257812],[74.7896484,38.1036133],[74.7720703,0.38274755859375006E2],[74.8359375,38.4042969],[74.7450195,38.5100098],[74.5140625,38.6],[74.2774414,0.38659765625000034E2],[74.1313477,38.6611816],[74.0255859,38.5398438],[73.8691406,38.5628906],[73.8016602,38.6068848],[73.6960938,38.8542969],[73.7945313,38.9413086],[73.7956055,39.0021484],[73.6073242,39.2291992],[73.6316406,39.448877],[73.8229492,39.4889648],[73.9146484,39.6064941],[73.8353516,0.39800146484375006E2],[73.9916016,40.0431152],[74.4119141,40.137207],[74.6798828,40.3105957],[74.8417969,40.3449707],[74.8012695,0.40428515625000045E2],[74.865625,40.4935059],[75.0044922,40.4495117],[75.2410156,40.4802734],[75.5208008,0.40627539062500006E2],[75.5834961,0.40605322265625006E2],[75.6771484,40.3058105],[75.8719727,40.3032227],[76.0623047,0.40387548828125034E2],[76.1566406,40.3764648],[76.2583008,40.4307617],[76.3185547,0.40352246093749955E2],[76.4801758,40.4495117],[76.5779297,40.5778809],[76.6398438,40.7422363],[76.8240234,0.40982324218749966E2],[76.9866211,0.41039160156250006E2],[77.1820313,41.0107422],[77.5817383,40.9927734],[77.8152344,41.0556152],[78.1234375,0.41075634765624976E2],[78.3462891,41.2814453],[78.3624023,41.3716309],[78.7425781,41.5600586],[79.2935547,41.7828125],[79.3543945,41.7810547],[79.7661133,41.898877],[79.8404297,41.995752],[80.2162109,42.0324219],[80.2461914,42.0598145],[80.209375,0.42190039062500006E2],[80.259082,42.2354004],[80.2057617,42.3994141],[80.1650391,42.6655273],[80.250293,0.42797265624999966E2],[80.5389648,0.42873486328124955E2],[80.54375,0.42911718750000034E2],[80.3833984,0.42973779296874966E2],[80.3902344,0.43043115234374966E2],[80.6169922,0.43128271484375006E2],[80.7511719,43.1024902],[80.7857422,43.1615723],[80.7297852,43.2742676],[80.6677734,43.3100586],[80.7038086,43.4270508],[80.4959961,43.8920898],[80.431543,43.9517578],[80.3552734,44.0972656],[80.365332,44.223291],[80.3363281,44.4383789],[80.4005859,44.6769043],[80.4554687,44.7460938],[80.2550781,44.8081055],[79.997168,0.44797216796875006E2],[79.871875,44.8837891],[80.0591797,45.0064453],[80.6347656,0.45126513671875045E2],[80.8533203,45.1292969],[81.6020508,45.3108398],[81.6919922,45.3493652],[81.7896484,45.2260254],[81.9892578,45.1618652],[82.2666016,45.2190918],[82.4787109,45.123584],[82.5969727,0.45215966796874966E2],[82.6257813,45.3744141],[82.5825195,0.45442578124999955E2],[82.3266602,45.5199219],[82.3152344,45.5949219],[82.4296875,0.45811914062499966E2],[82.5550781,46.1586914],[82.6921875,46.3866699],[83.0041016,47.0334961],[83.0294922,47.1859375],[83.1930664,47.1865723],[83.634082,47.0432129],[84.0160156,46.9705078],[84.3388672,46.9961426],[84.6666016,46.9723633],[84.7861328,0.46830712890625044E2],[85.012207,46.9092285],[85.2334961,47.036377],[85.4847656,47.0635254],[85.6566406,47.2546387],[85.6698242,47.3383789],[85.5866211,47.4936523],[85.5259766,47.915625],[85.6263672,48.2040039],[85.7494141,48.3850586],[85.8298828,48.4080566],[86.265625,48.454541],[86.5494141,48.5286133],[86.7179688,0.48697167968749966E2],[86.7578125,0.48860742187499994E2],[86.753125,49.0088379],[86.8859375,49.0905762],[87.2299805,49.1058594],[87.4166992,49.0766113],[87.5158203,49.1224121],[87.8142578,49.1623047],[87.8598633,48.9655273],[87.7431641,48.8816406],[87.8318359,48.7916504],[88.0279297,48.7355957],[88.0501953,48.6750488],[87.9796875,48.555127],[88.3099609,48.4720703],[88.4139648,0.48403417968750006E2],[88.5170898,0.48384472656249955E2],[88.5759766,48.220166],[88.8382813,0.48101708984374994E2],[88.9177734,0.48089013671874966E2],[89.0476563,48.0025391],[89.1962891,47.9809082],[89.3298828,0.48024853515624955E2],[89.5609375,48.0039551],[89.6384766,0.47909082031249994E2],[89.778125,47.827002],[90.0279297,47.8776855],[90.1032227,47.7454102],[0.9031328125000007E2,47.6761719],[0.9042519531250005E2,47.5041016],[90.4961914,47.2851562],[0.9071552734375003E2,47.0038574],[90.8699219,46.9544922],[90.9857422,46.7490234],[91.0338867,0.46529003906249955E2],[90.9115234,0.46270654296874994E2],[0.9099677734375003E2,46.1049805],[0.9100175781250007E2,46.035791],[0.9079589843749997E2,45.8535156],[90.709668,0.45730810546875055E2],[90.6618164,0.45525244140625006E2],[90.8532227,45.2628906],[90.8772461,45.1960938],[91.05,45.2174316],[91.3121094,45.1181152],[91.4410156,45.1247559],[91.584375,45.0765137],[0.9202978515624997E2,45.0685059],[0.9242382812499997E2,0.45008935546874994E2],[0.9278789062500007E2,0.45035742187500034E2],[0.9329433593750005E2,44.9831543],[93.6564453,0.44900976562500006E2],[0.9386816406249997E2,44.7242187],[93.9579102,0.44674951171874966E2],[94.1993164,44.645166],[94.3647461,44.5194824],[94.4943359,0.44472509765625034E2],[94.7120117,44.3508301],[0.9504980468750003E2,0.44259423828124966E2],[95.350293,44.2780762],[95.3255859,0.44104882812500016E2],[0.9535644531250001E2,0.44005957031250006E2],[95.5255859,0.43953955078125006E2],[95.5912109,43.8536133],[95.8419922,0.43383691406249994E2],[95.9125,43.2064941],[96.2995117,42.9287109],[0.9638544921875003E2,42.7203613],[97.2056641,42.7897949],[97.7189453,42.7362793],[99.4678711,0.42568212890625034E2],[0.9998378906250005E2,42.6773438],[0.10008632812500005E3,0.42670751953125055E2],[0.10109199218750003E3,42.5513184],[0.10149531250000004E3,42.5387695],[0.10171386718749997E3,42.4658203],[0.10197294921875002E3,42.2158691],[0.10215664062500005E3,0.42158105468749966E2],[0.10307285156250005E3,42.005957],[103.711133,41.7513184],[0.10449824218750004E3,41.877002],[0.10449824218750004E3,41.6586914],[0.10486035156250003E3,41.64375],[0.10498203125000012E3,41.5955078],[0.10505058593750002E3,0.41615917968750004E2],[0.10519707031250002E3,41.7380371],[0.10531435546875004E3,41.7708984],[0.10586757812500004E3,0.41993994140625034E2],[0.10677001953125003E3,42.2887207],[107.090723,42.3215332],[0.10817119140625002E3,42.4473145],[0.10868730468750002E3,0.42416113281250034E2],[0.10944316406250002E3,0.42455957031249994E2],[0.10969804687500007E3,0.42553808593750034E2],[0.11040039062499997E3,42.7736816],[0.11042958984375004E3,0.42813574218750006E2],[0.11100722656250005E3,43.3414062],[0.11150351562500006E3,43.4927734],[0.11154736328124997E3,43.4962891],[0.11177109375000006E3,43.6645996],[0.11193320312500006E3,43.7114258],[111.931738,43.8149414],[0.11183691406249997E3,43.934668],[0.11168378906250004E3,44.0411133],[111.519727,44.1918945],[0.11140224609375005E3,44.3672852],[0.11148945312500003E3,0.44511572265625006E2],[111.621289,44.8271484],[0.11175107421875006E3,0.44969531250000045E2],[0.11189804687500006E3,0.45064062500000034E2],[0.11241132812500004E3,45.0582031],[0.11259677734375006E3,44.9176758],[0.11304941406250006E3,44.8103516],[113.300977,44.7916504],[0.11358701171875006E3,44.7457031],[0.11387705078125012E3,0.44896191406250004E2],[0.11403027343749997E3,0.44942578124999955E2],[114.167383,45.0498535],[0.11441914062500004E3,45.2025879],[0.11451718750000006E3,45.3645996],[0.11473876953124996E3,45.4196289],[0.11491923828125007E3,0.45378271484375006E2],[0.11516259765624997E3,0.45390234375000034E2],[115.681055,45.458252],[0.11593417968750008E3,0.45626171874999955E2],[0.11610986328124996E3,0.45686718749999955E2],[116.240625,45.7959961],[0.11621298828125012E3,45.8869141],[0.11635761718750008E3,0.46096582031249966E2],[0.11651669921875005E3,46.209082],[0.11656259765625012E3,0.46289794921874964E2],[0.11685908203125003E3,46.3879395],[0.11697880859375006E3,0.46361767578124976E2],[0.11733339843749998E3,46.3620117],[0.11740556640625009E3,46.5708984],[117.546875,46.5882813],[0.11767109375000008E3,46.5220703],[0.11781347656249997E3,0.46537695312500034E2],[0.11791044921875006E3,46.6193359],[0.11830869140625012E3,46.717041],[0.11872294921875007E3,46.6918945],[118.843945,0.46760205078124976E2],[0.11895712890625006E3,46.7348633],[0.11916210937499997E3,46.6386719],[0.11933183593750003E3,46.6138184],[0.11947402343750005E3,0.46626660156249955E2],[0.11970664062500006E3,46.6060059],[0.11986718750000003E3,46.672168],[0.11989785156250005E3,0.46857812499999966E2],[0.11978847656250005E3,46.9788086],[0.11971113281250005E3,47.15],[0.11952695312500005E3,47.2559082],[0.11932597656250007E3,47.4101563],[0.11929082031250002E3,47.4726562],[119.122949,0.47558496093749994E2],[119.081934,0.47654150390625034E2],[0.11875996093750003E3,47.7576172],[0.11856777343750005E3,47.9432617],[0.11849843750000005E3,47.9839844],[0.11823964843749998E3,47.9995117],[0.11814707031250005E3,48.0289062],[0.11776835937500002E3,47.9878906],[0.11755537109375004E3,47.8046875],[0.11735078125000011E3,47.6521973],[0.11706972656250005E3,47.8063965],[0.11676054687500002E3,0.47869775390624994E2],[0.11651347656250009E3,0.47839550781249955E2],[116.231152,47.8582031],[0.11607480468750012E3,47.7895508],[0.11599384765625004E3,47.7113281],[0.11589824218750002E3,0.47686914062500044E2],[115.711719,0.47798925781250034E2],[0.11555761718750004E3,0.47945019531249955E2],[0.11552509765625004E3,48.1308594],[115.785547,48.2482422],[115.791699,0.48455712890624994E2],[0.11582050781250008E3,48.5772461],[115.953809,48.6893555],[116.034375,48.8400391],[0.11624335937500008E3,0.49170361328125004E2],[116.683301,49.8237793],[0.11688896484375007E3,0.49737792968749964E2],[0.11724560546874997E3,0.49624853515625055E2],[0.11747714843750006E3,49.6094238],[0.11769843750000004E3,49.5358398],[117.873437,49.5134766],[118.451562,49.8444824],[0.11875595703125013E3,49.9628418],[0.11897949218749996E3,49.9788574],[0.11914746093750001E3,0.50013378906249976E2],[0.11925986328125012E3,50.0664063],[0.11932607421875001E3,50.1549316],[0.11934628906250012E3,0.50278955078124994E2],[0.11930156250000006E3,50.3539063],[0.11916367187500006E3,50.4060059],[0.11925585937499996E3,50.4841797],[119.280664,50.5609863],[0.11944570312500005E3,50.702832],[0.11957343750000003E3,50.9467773],[119.745996,51.1077148],[0.11981318359375004E3,51.267041],[0.11996699218750008E3,51.4221191],[0.12006689453125003E3,51.6006836],[0.12023701171875003E3,0.51722998046875034E2],[0.12051054687500006E3,51.8485352],[0.12068144531250006E3,51.9730469],[0.12074980468750007E3,52.0965332],[0.12074453125000004E3,52.2054688],[0.12066542968749998E3,0.52299902343750034E2],[0.12065039062499997E3,0.52395898437499966E2],[0.12069921874999997E3,52.4936035],[120.656152,52.5666504],[0.12052109375000012E3,52.6150391],[0.12036005859375004E3,52.627002],[120.172754,0.52602490234374955E2],[120.067578,52.6329102],[0.12004433593750005E3,52.7182129],[0.12009453125000007E3,0.52787207031250034E2],[0.12021816406250001E3,52.8398926],[0.12042128906249998E3,52.9680664],[0.12070410156249997E3,0.53171826171874955E2],[0.12098544921875012E3,53.2845703],[0.12140546875000003E3,0.53317041015624966E2],[0.12208886718750001E3,53.4514648],[122.337793,53.4850098],[0.12251582031250003E3,53.4569824],[0.12295761718750006E3,53.4977051],[0.12315410156250007E3,53.5445801],[0.12330957031250001E3,53.5556152],[0.12348945312500004E3,53.5294434]]]]}}],"_labels":{"CN":"China"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/CO.json b/src/api-umbrella/admin-ui/public/maps/CO.json new file mode 100644 index 000000000..646cdaa40 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/CO.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"CO"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-78.1137207,2.54174805],[-78.2101074,2.60917969],[-78.1376465,2.63417969],[-78.1137207,2.54174805]]],[[[-71.2621094,0.12335302734375034E2],[-71.1550293,0.12164160156249977E2],[-71.1373047,12.0463379],[-71.3197266,0.11861914062500048E2],[-71.536084,0.11774072265624994E2],[-71.9581055,11.6664062],[-72.0123047,0.11601953125000021E2],[-72.2484863,0.11196435546875009E2],[-72.4460937,11.1142578],[-72.5180176,0.11053906250000011E2],[-72.6900879,0.10835839843749994E2],[-72.8693359,10.4912598],[-72.9403809,0.10195751953124969E2],[-73.006543,9.78916016],[-73.0640625,9.66821289],[-73.2242676,0.9443603515625043E1],[-73.3563477,0.9226855468750031E1],[-73.3367188,0.9167919921875011E1],[-73.1931641,0.9194140625000017E1],[-73.0583984,9.25957031],[-72.9601562,9.13515625],[-72.7963867,9.10898437],[-72.6654297,8.62758789],[-72.4165527,8.38198242],[-72.3576172,8.08730469],[-72.4460449,7.96611328],[-72.4789551,7.61323242],[-72.4429688,7.45488281],[-72.3946289,7.41508789],[-72.2077148,7.37026367],[-72.0842773,7.096875],[-71.8926758,6.99033203],[-71.6208984,7.03291016],[-71.4571289,7.02636719],[-71.2178223,6.98520508],[-71.0132812,6.99443359],[-70.8106934,7.07758789],[-70.6550781,7.08276367],[-70.3875,6.97260742],[-70.0950195,6.93793945],[-69.7389648,6.49438477],[-69.4392578,6.13491211],[-69.3570801,6.14799805],[-69.2681641,6.09970703],[-69.0899414,6.184375],[-68.937207,6.19819336],[-68.7364746,6.15678711],[-68.4717773,6.15654297],[-68.1430664,6.19750977],[-67.9388672,6.24194336],[-67.8591797,6.28989258],[-67.7271484,6.28496094],[-67.5680664,6.24179688],[-67.4819824,6.18027344],[-67.4393555,6.02553711],[-67.473877,5.92998047],[-67.5751953,5.83310547],[-67.6313477,5.709375],[-67.6422852,5.55878906],[-67.6946289,5.44750977],[-67.7884277,5.37548828],[-67.8249023,5.27045898],[-67.8041992,5.13251953],[-67.8143066,4.93081055],[-67.8552734,4.66547852],[-67.8552734,4.50688477],[-67.7954102,4.38071289],[-67.7832031,4.19824219],[-67.6616211,3.86425781],[-67.6025391,3.76879883],[-67.4986816,3.69111328],[-67.3111328,3.41586914],[-67.3536133,3.32265625],[-67.8347656,2.89282227],[-67.859082,2.79360352],[-67.7664551,2.83330078],[-67.6187012,2.79360352],[-67.5680176,2.68994141],[-67.4864258,2.64365234],[-67.2108398,2.39013672],[-67.2152344,2.27548828],[-67.1138184,2.05058594],[-67.0895508,1.94033203],[-66.9881348,1.68017578],[-66.981543,1.60078125],[-66.8844727,1.35825195],[-66.8760254,1.22304688],[-67.0652344,1.17836914],[-67.0936523,1.21000977],[-67.0901367,1.61557617],[-67.1192383,1.70361328],[-67.3519531,2.08583984],[-67.4996582,2.10791016],[-67.6092285,2.03505859],[-67.8150879,1.79008789],[-67.9897461,1.75253906],[-68.1302734,1.95576172],[-68.1937988,1.98701172],[-68.255957,1.84550781],[-68.1765625,1.71982422],[-69.3197266,1.72124023],[-69.58125,1.77075195],[-69.848584,1.70874023],[-69.8521484,1.05952148],[-69.6208984,1.07324219],[-69.361377,1.06401367],[-69.2586914,1.01538086],[-69.1632324,0.8640625],[-69.1740723,0.635351563],[-69.2830078,0.627246094],[-69.4721191,0.729931641],[-69.8071289,0.607470703],[-70.0539062,0.578613281],[-70.0705078,-0.138867188],[-69.9227539,-0.317480469],[-69.7474609,-0.452539062],[-69.6674805,-0.482421875],[-69.592041,-0.639355469],[-69.6207031,-0.720898438],[-69.5435547,-0.9171875],[-69.4487305,-0.998730469],[-69.4491211,-1.09160156],[-69.4002441,-1.19492187],[-69.9481934,-4.20058594],[-70.1675293,-4.05019531],[-70.2402832,-3.88271484],[-70.339502,-3.81435547],[-70.5296875,-3.86640625],[-70.7351074,-3.78154297],[-70.0740234,-2.75019531],[-70.0958496,-2.65820313],[-70.2444336,-2.60654297],[-70.2946289,-2.55253906],[-70.5758789,-2.41826172],[-70.9145508,-2.21855469],[-71.1133789,-2.24541016],[-71.1963867,-2.31308594],[-71.3969727,-2.33408203],[-71.5594727,-2.22421875],[-71.7525391,-2.15273437],[-71.8027344,-2.16630859],[-71.9842773,-2.3265625],[-72.1368164,-2.38066406],[-72.3956055,-2.42890625],[-72.6253418,-2.35166016],[-72.7141602,-2.3921875],[-72.8871582,-2.40849609],[-72.9896484,-2.33974609],[-73.1544922,-2.27822266],[-73.1726562,-2.20839844],[-73.1265137,-2.08105469],[-73.1969727,-1.83027344],[-73.2664551,-1.77226562],[-73.3495117,-1.78388672],[-73.4962891,-1.69306641],[-73.5252441,-1.63886719],[-73.4943359,-1.53662109],[-73.6643066,-1.24882812],[-73.8631836,-1.19667969],[-74.0543945,-1.02861328],[-74.2463867,-0.970605469],[-74.3344238,-0.850878906],[-74.4178711,-0.580664062],[-74.6163574,-0.370019531],[-74.7553711,-0.298632812],[-74.8017578,-0.200097656],[-74.9453125,-0.188183594],[-75.1383789,-0.0504882812],[-75.2246094,-0.0417480469],[-75.2844727,-0.106542969],[-75.4639648,-0.0384277344],[-75.617334,0.062890625],[-75.7766602,0.0892578125],[-75.8797852,0.150976563],[-76.0679199,0.345556641],[-76.3110352,0.448486328],[-76.4133789,0.378857422],[-76.4272949,0.261230469],[-76.4946289,0.235449219],[-76.7290039,0.272119141],[-76.7677246,0.241650391],[-76.9201172,0.268505859],[-77.1141113,0.355078125],[-77.2926758,0.360400391],[-77.4227539,0.424853516],[-77.4676758,0.636523438],[-77.6486328,0.723632812],[-77.7028809,0.837841797],[-77.829541,0.825390625],[-78.0370117,0.898730469],[-78.3121094,1.04609375],[-78.5115234,1.19882812],[-78.6816406,1.28344727],[-78.859668,1.45537109],[-78.8884766,1.52407227],[-79.0254395,1.62368164],[-78.957666,1.75219727],[-78.7929687,1.84873047],[-78.5769043,1.7737793],[-78.5504395,1.92363281],[-78.6286133,2.05625],[-78.617041,2.30678711],[-78.5347168,2.42368164],[-78.4168945,2.48349609],[-78.3428711,2.46054687],[-78.2961426,2.51049805],[-78.1200195,2.48818359],[-77.9322754,2.62924805],[-77.8745117,2.72587891],[-77.8135742,2.71635742],[-77.6700195,2.87885742],[-77.6936523,3.03994141],[-77.5591309,3.07597656],[-77.4171387,3.34179688],[-77.356543,3.34858398],[-77.3244141,3.47475586],[-77.2427734,3.58535156],[-77.0768066,3.91328125],[-77.1666016,3.86225586],[-77.2635254,3.89321289],[-77.2483887,4.0409668],[-77.2780273,4.05849609],[-77.3582031,3.94472656],[-77.4272949,4.06044922],[-77.4087402,4.24775391],[-77.5207031,4.21279297],[-77.5155273,4.25629883],[-77.3535156,4.39829102],[-77.2863281,4.72172852],[-77.3394531,4.83852539],[-77.366748,5.0765625],[-77.3591797,5.21518555],[-77.4017578,5.41616211],[-77.5344238,5.53710937],[-77.3246094,5.67563477],[-77.2492676,5.78017578],[-77.3446777,5.99536133],[-77.4694336,6.17675781],[-77.4730469,6.28564453],[-77.3982422,6.275],[-77.3598633,6.50449219],[-77.4388672,6.69033203],[-77.5259766,6.69311523],[-77.6021484,6.83730469],[-77.8037109,7.13725586],[-77.9011719,7.2293457],[-77.8283203,7.44282227],[-77.7438965,7.53696289],[-77.76875,7.66806641],[-77.7320313,7.7109375],[-77.5865723,7.54306641],[-77.3507812,7.70585938],[-77.3456055,7.83652344],[-77.1959961,7.97246094],[-77.2826172,8.18706055],[-77.3455078,8.26953125],[-77.4072754,8.42724609],[-77.4785156,8.4984375],[-77.3742187,8.65830078],[-77.2615723,8.49370117],[-77.130127,8.40058594],[-76.9922852,8.2503418],[-76.9358398,8.14682617],[-76.8518555,8.09047852],[-76.9246582,7.97319336],[-76.8668945,7.91796875],[-76.7865723,7.9315918],[-76.742334,8.00214844],[-76.7720703,8.31054688],[-76.8186035,8.46469727],[-76.920459,8.57373047],[-76.8879883,8.61987305],[-76.6893555,8.69472656],[-76.2768555,8.98911133],[-76.135498,9.265625],[-76.0272461,0.9365771484374989E1],[-75.9050293,9.4309082],[-75.7555664,9.415625],[-75.6393555,9.45043945],[-75.6036133,0.9538476562500009E1],[-75.6800293,0.9729785156249987E1],[-75.5926758,0.9992724609375003E1],[-75.5958984,0.10125830078125034E2],[-75.5583984,0.10236425781250006E2],[-75.7083496,0.10143408203124963E2],[-75.5537109,0.10327734375000034E2],[-75.4459961,0.10610888671874987E2],[-75.2806152,10.7271973],[-74.8445801,0.11109716796875006E2],[-74.454248,0.10989062500000031E2],[-74.3302246,0.10996679687499991E2],[-74.4922852,0.10934472656250009E2],[-74.5162598,10.8625],[-74.4008789,10.7652344],[-74.3501953,0.10813720703125012E2],[-74.2191406,0.11105322265625004E2],[-74.2001953,0.11265722656249991E2],[-74.0591309,11.340625],[-73.7957031,0.11275683593749989E2],[-73.3133789,0.11295751953124991E2],[-72.7218262,11.7121582],[-72.4470703,11.801709],[-72.275,11.8892578],[-72.1652344,0.12060205078125023E2],[-72.1357422,0.12188574218749977E2],[-71.9701172,0.12238281249999986E2],[-71.9191406,0.12309082031250014E2],[-71.7145508,12.4199707],[-71.4939941,12.4322754],[-71.2621094,0.12335302734375034E2]]]]}}],"_labels":{"CO":"Colombia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/CR.json b/src/api-umbrella/admin-ui/public/maps/CR.json new file mode 100644 index 000000000..e3a855a18 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/CR.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"CR"},"geometry":{"type":"Polygon","coordinates":[[[-83.6419922,0.10917236328124998E2],[-83.4482422,10.465918],[-83.3468262,0.10315380859374997E2],[-83.1246094,0.10041601562499991E2],[-83.0285156,0.9991259765624989E1],[-82.778418,9.66953125],[-82.5635742,9.57666016],[-82.6440918,9.50585938],[-82.8010254,9.59179688],[-82.9398437,0.9449169921874997E1],[-82.940332,0.9060107421874989E1],[-82.8813477,9.05585938],[-82.7411621,8.95170898],[-82.7399902,8.89858398],[-82.8819824,8.80532227],[-82.917041,8.74033203],[-82.8557129,8.63530273],[-82.8616211,8.45351562],[-83.0233887,8.31601562],[-82.9484375,8.25683594],[-82.9472656,8.18173828],[-83.1233398,8.35307617],[-83.1624023,8.58818359],[-83.3914062,8.71772461],[-83.4697266,8.70683594],[-83.2977539,8.50688477],[-83.2915039,8.40600586],[-83.54375,8.44584961],[-83.734082,8.61445313],[-83.6137207,8.80405273],[-83.6372559,0.9035351562499997E1],[-83.7369141,9.15029297],[-83.8955566,0.9276416015624987E1],[-84.1178711,0.9379443359374989E1],[-84.2223633,9.4625],[-84.482666,0.9526171874999989E1],[-84.6588867,0.9646679687499995E1],[-84.6430664,0.9789404296874991E1],[-84.7149414,9.89941406],[-85.0250488,10.1157227],[-85.1984375,10.1953125],[-85.2631836,0.10256640624999989E2],[-85.2365234,0.10107373046874997E2],[-85.1607422,0.10017431640624991E2],[-84.962793,9.93344727],[-84.8864258,9.82094727],[-85.114502,9.58178711],[-85.3145508,9.8109375],[-85.6248535,9.90244141],[-85.7964844,0.10132861328124987E2],[-85.8496582,0.10292041015624989E2],[-85.8306152,0.10398144531249997E2],[-85.6633301,0.10635449218749997E2],[-85.6672363,0.10745019531249994E2],[-85.9080078,0.10897558593749991E2],[-85.7522461,0.10985253906249994E2],[-85.7443359,11.0621094],[-85.6213867,0.11184472656249994E2],[-85.5387207,0.11166308593749989E2],[-84.9091797,10.9453125],[-84.7011719,0.11052197265624997E2],[-84.4891602,0.10991650390624995E2],[-84.348291,0.10979882812499994E2],[-84.1683594,0.10780371093749991E2],[-83.9192871,10.7353516],[-83.8111816,0.10743261718749991E2],[-83.6589355,0.10836865234374997E2],[-83.6419922,0.10917236328124998E2]]]}}],"_labels":{"CR":"Costa Rica"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/CU.json b/src/api-umbrella/admin-ui/public/maps/CU.json new file mode 100644 index 000000000..e0f11d609 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/CU.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"CU"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-82.5617676,0.21571679687500023E2],[-82.8531738,0.21443896484375017E2],[-83.0672852,0.21469384765624966E2],[-83.1802246,0.21623046875000025E2],[-83.0548828,0.21549414062500034E2],[-82.973584,0.21592285156250057E2],[-83.0825195,0.21791406250000023E2],[-82.9912109,0.21942724609375034E2],[-82.7145508,0.21890283203125023E2],[-82.6293945,0.21766894531250017E2],[-82.5617676,0.21571679687500023E2]]],[[[-77.6689941,0.21951953125000045E2],[-77.9,0.22037158203125014E2],[-77.9185547,0.22088085937499983E2],[-77.6336914,0.22054003906250074E2],[-77.6689941,0.21951953125000045E2]]],[[[-77.8793945,0.22127539062500034E2],[-78.0416504,22.2012695],[-77.9856445,0.22302099609374977E2],[-77.8936523,0.22214550781249983E2],[-77.8793945,0.22127539062500034E2]]],[[[-78.0270996,22.2851562],[-78.1800293,0.22321972656250036E2],[-78.2735352,22.423584],[-78.1505859,22.4314941],[-78.0270996,22.2851562]]],[[[-78.630127,0.22552246093750057E2],[-78.3512207,0.22538623046875017E2],[-78.2838867,22.4554688],[-78.5476562,0.22464013671875023E2],[-78.6736328,22.5088379],[-78.630127,0.22552246093750057E2]]],[[[-79.3495605,0.22663916015625063E2],[-79.5227539,0.22711132812500008E2],[-79.5791504,0.22806738281250034E2],[-79.3495605,0.22663916015625063E2]]],[[[-81.8374512,23.1630371],[-81.5754395,23.1165039],[-81.2716309,0.23128613281249955E2],[-81.1786133,0.23059667968750034E2],[-81.007666,0.23089843749999968E2],[-80.6501465,23.1030762],[-80.5504883,23.0166016],[-80.3648926,0.22943408203125074E2],[-80.0752441,22.942334],[-79.9599121,0.22876904296875008E2],[-79.8202637,0.22887011718750045E2],[-79.8507324,0.22827197265625017E2],[-79.6766602,0.22743066406250023E2],[-79.5492187,0.22577783203125023E2],[-79.2756836,0.22407617187499994E2],[-79.1830078,22.3878906],[-78.9019043,22.3959961],[-78.6864746,0.22366845703125023E2],[-78.1431152,0.22109423828125074E2],[-77.8650391,21.9005859],[-77.6368164,21.7973633],[-77.4971191,21.7883301],[-77.5831543,0.21889257812499977E2],[-77.4972656,0.21871630859375045E2],[-77.2995117,0.21712255859374974E2],[-77.1441406,0.21643603515625014E2],[-77.18125,21.5976562],[-77.3661621,0.21612646484375034E2],[-77.2079102,0.21478857421875034E2],[-77.0986328,21.5890137],[-76.8363281,21.3995117],[-76.8674316,0.21330419921875006E2],[-76.7649902,0.21362402343750034E2],[-76.6474121,0.21284521484375063E2],[-76.4551758,0.21273632812499983E2],[-76.2592285,21.2273926],[-76.0736328,21.1334473],[-75.7229492,0.21111035156249983E2],[-75.5958008,20.9946777],[-75.6629395,20.8981445],[-75.5972656,20.8376465],[-75.7402344,0.20811962890624983E2],[-75.7245605,20.7145508],[-75.6427734,0.20733496093749977E2],[-75.3381348,20.7016113],[-75.2132812,0.20713867187499968E2],[-74.8825684,20.6506348],[-74.7320801,20.5731934],[-74.5131348,0.20384570312500045E2],[-74.384375,20.3304688],[-74.2338867,20.326416],[-74.1368164,20.2319336],[-74.252832,20.0796875],[-74.6347656,0.20058154296875074E2],[-74.8500488,0.20002294921875063E2],[-75.1164062,0.19901416015625017E2],[-75.1516113,0.20008349609375045E2],[-75.2904785,0.19893115234375017E2],[-75.5519531,0.19891113281250053E2],[-75.7651367,0.19960400390624955E2],[-76.1584473,19.9897461],[-76.7797363,19.9401855],[-76.9994629,19.8928223],[-77.2119629,19.89375],[-77.4631836,0.19861376953125017E2],[-77.7150879,19.8554687],[-77.5537598,20.0821289],[-77.2133789,20.3003906],[-77.1038086,0.20407519531250017E2],[-77.1079102,20.4916504],[-77.2295898,20.64375],[-77.467041,20.689502],[-77.9973145,0.20715380859375017E2],[-78.1163574,0.20761865234374994E2],[-78.4907715,21.0537109],[-78.5372559,0.21296826171874983E2],[-78.6364746,0.21515527343750048E2],[-78.8229492,0.21618945312500074E2],[-79.189209,0.21552832031250006E2],[-79.2744141,0.21562646484374966E2],[-79.9103027,0.21742578125000023E2],[-80.2313477,21.872168],[-80.4854492,22.1234375],[-80.4990723,0.22063525390625045E2],[-80.9619141,0.22052880859375023E2],[-81.0831055,0.22097949218750045E2],[-81.185498,0.22267968750000048E2],[-81.2224121,0.22142919921875063E2],[-81.3552734,0.22104101562500063E2],[-81.4411133,22.1837891],[-81.8162109,0.22200195312499996E2],[-81.9726074,0.22290869140625006E2],[-82.0777344,22.3876953],[-81.7570801,22.466748],[-81.683252,22.5348145],[-81.7456543,0.22632910156250063E2],[-81.903418,0.22679003906250017E2],[-82.7380371,0.22689257812500074E2],[-83.0094238,0.22514013671874977E2],[-83.14375,22.3864746],[-83.3796387,0.22222998046875034E2],[-83.4859375,22.1871094],[-83.6015137,0.22208740234375057E2],[-83.6866211,0.22179931640625057E2],[-83.9007324,0.22170117187500008E2],[-84.030957,21.9431152],[-84.2406738,0.21898339843749966E2],[-84.5025879,0.21776171875000045E2],[-84.5013672,0.21930273437499977E2],[-84.682666,21.8990723],[-84.8382324,0.21827929687500017E2],[-84.8772461,21.8941406],[-84.5327637,0.22031152343750023E2],[-84.3731445,0.22035937500000017E2],[-84.3263672,0.22074316406250034E2],[-84.3830078,0.22255566406250008E2],[-84.3612793,22.3789062],[-84.2813477,0.22474218750000063E2],[-84.0449219,0.22666015625000057E2],[-83.2578125,0.22967578125000017E2],[-82.6658203,0.23043554687500034E2],[-82.3505371,0.23153955078124962E2],[-82.1013672,0.23190429687500025E2],[-81.8374512,23.1630371]]]]}}],"_labels":{"CU":"Cuba"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/CV.json b/src/api-umbrella/admin-ui/public/maps/CV.json new file mode 100644 index 000000000..40553b33e --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/CV.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"CV"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-0.24308251953124966E2,0.14856298828124991E2],[-0.24386132812499937E2,0.14818212890625048E2],[-24.4921875,14.8742188],[-24.496875,0.14980273437500017E2],[-0.24391992187499966E2,0.15038281250000026E2],[-0.24329492187499937E2,15.0194824],[-0.24308251953124966E2,0.14856298828124991E2]]],[[[-23.1821289,0.15136767578125017E2],[-0.23251806640624945E2,15.178125],[-0.23210253906250014E2,15.3235352],[-23.1377441,0.15317724609375022E2],[-0.23115869140624966E2,15.1666504],[-23.1821289,0.15136767578125017E2]]],[[[-0.23444238281249994E2,0.15007958984374982E2],[-23.5046875,0.14916113281250006E2],[-23.7053711,0.14961328124999978E2],[-23.7850098,0.15076904296874984E2],[-23.7480957,15.3285156],[-0.23535253906249977E2,0.15139257812499991E2],[-0.23444238281249994E2,0.15007958984374982E2]]],[[[-0.22917724609374996E2,0.16237255859374955E2],[-0.22749414062499994E2,0.16221533203125034E2],[-22.692627,0.16169042968750006E2],[-0.22710107421874994E2,0.16043359374999966E2],[-0.22820507812499926E2,0.15986035156250011E2],[-22.9592773,0.16045117187499983E2],[-0.22917724609374996E2,0.16237255859374955E2]]],[[[-24.0876953,16.6225098],[-0.24094140624999962E2,16.5610352],[-0.24243066406250023E2,0.16599414062500017E2],[-24.3223633,16.4931152],[-0.24398095703124966E2,16.6184082],[-24.376709,16.6777832],[-24.0876953,16.6225098]]],[[[-0.22888330078124966E2,0.16659082031249994E2],[-0.22920263671875006E2,16.6079102],[-0.22980615234374934E2,0.16700878906249983E2],[-22.990918,0.16808837890625057E2],[-0.22904736328124955E2,16.84375],[-0.22888330078124966E2,0.16659082031249994E2]]],[[[-24.8870605,16.8181152],[-0.25019970703124926E2,0.16797216796874977E2],[-25.0701172,0.16870703125000034E2],[-0.24936474609374983E2,16.9221191],[-24.8870605,16.8181152]]],[[[-25.1698242,16.9464844],[-0.25308300781249955E2,0.16935839843749985E2],[-0.25337109374999955E2,17.0910156],[-0.25113476562499983E2,0.17193652343750017E2],[-25.034668,0.17176464843749983E2],[-24.9796875,17.0947266],[-25.1698242,16.9464844]]]]}}],"_labels":{"CV":"Cape Verde"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/CW.json b/src/api-umbrella/admin-ui/public/maps/CW.json new file mode 100644 index 000000000..0a8b220ba --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/CW.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"CW"},"geometry":{"type":"Polygon","coordinates":[[[-68.7510742,12.0597656],[-68.9951172,12.1418457],[-69.1538086,12.2984375],[-69.0767578,12.342041],[-69.0131348,0.12231347656249994E2],[-68.8273926,0.12158544921874991E2],[-68.7510742,12.0597656]]]}}],"_labels":{"CW":"Curaçao"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/CX.json b/src/api-umbrella/admin-ui/public/maps/CX.json new file mode 100644 index 000000000..bd845ec3c --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/CX.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"CX"},"geometry":{"type":"Polygon","coordinates":[[[0.10572539062499999E3,-10.4929687],[105.696875,-10.5641602],[0.10558408203125003E3,-10.5125],[105.595703,-0.10459667968750011E2],[0.10570546875000002E3,-10.4306641],[0.10572539062499999E3,-10.4929687]]]}}],"_labels":{"CX":"Christmas I."}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/CY.json b/src/api-umbrella/admin-ui/public/maps/CY.json new file mode 100644 index 000000000..580cc50dc --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/CY.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"CY"},"geometry":{"type":"Polygon","coordinates":[[[32.7126953,0.35171044921874994E2],[32.7202148,35.1453613],[32.9195312,35.0878418],[33.1910156,0.35173144531249996E2],[33.3837891,35.1626953],[33.455957,35.101416],[33.4638672,0.35004931640624996E2],[33.5256836,35.0386719],[33.6753906,0.35017871093749996E2],[33.8664063,35.0936035],[0.34004492187500006E2,35.0652344],[34.0501953,34.9883789],[33.9365234,34.9714844],[33.6994141,0.34969873046874994E2],[33.5144531,0.34806445312499996E2],[33.4149414,34.7508789],[33.296582,34.7177246],[33.1155273,34.6955566],[33.0249023,34.6369141],[33.0079102,34.5695801],[32.9417969,34.5758789],[32.8671875,34.6611328],[32.6929687,34.6493652],[32.4490234,34.7294434],[32.3171875,34.9533203],[32.3009766,35.082959],[32.390918,35.0498047],[32.555957,35.1557617],[32.7126953,0.35171044921874994E2]]]}}],"_labels":{"CY":"Cyprus"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/CZ.json b/src/api-umbrella/admin-ui/public/maps/CZ.json new file mode 100644 index 000000000..4540e6be3 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/CZ.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"CZ"},"geometry":{"type":"Polygon","coordinates":[[[14.809375,50.8589844],[0.14982910156249998E2,50.8865723],[14.99375,51.0143555],[0.15258593750000017E2,0.50958544921874996E2],[0.15277050781250011E2,50.8830078],[0.15354394531250021E2,50.8117676],[0.15643945312500023E2,50.748877],[0.15730566406250006E2,50.7396973],[0.15948535156250017E2,50.6702637],[0.16007226562500023E2,0.50611621093749996E2],[16.2822266,50.6556152],[0.16419726562500017E2,50.5736328],[16.3566406,50.5004883],[0.16282519531250017E2,50.4830078],[0.16210351562500023E2,0.50423730468749994E2],[0.16230761718750017E2,0.50394091796874996E2],[0.16334179687500008E2,50.3668945],[0.16487597656250017E2,50.2483887],[16.5966797,50.1219238],[0.16679101562500023E2,0.50097460937499996E2],[16.8417969,50.1867187],[0.16989648437500023E2,50.2369141],[16.8800781,0.50427050781249996E2],[17.1519531,0.50378320312499994E2],[17.4152344,50.2547852],[0.17554589843750023E2,50.2640625],[0.17720117187500023E2,0.50298632812499996E2],[0.17709277343750017E2,50.1935547],[17.5893555,50.1574707],[17.7916992,50.0065918],[0.17874804687500014E2,49.9722656],[0.17983789062500023E2,0.49999072265624996E2],[0.18028320312499996E2,50.0352539],[18.0992187,49.9927734],[0.18205273437500008E2,0.49964746093749994E2],[0.18305273437500006E2,49.9140625],[0.18348437500000017E2,0.49929833984374994E2],[0.18516210937500006E2,0.49902392578124996E2],[0.18562402343750023E2,49.8793457],[0.18594628906250023E2,49.7578125],[0.18806933593750017E2,49.6137207],[18.8322266,0.49510791015624996E2],[0.18596484375000017E2,49.4914551],[0.18415820312500014E2,0.49390917968749996E2],[18.3648437,49.3362305],[0.18160937500000017E2,0.49257373046874996E2],[0.18109960937500006E2,49.1797852],[18.0859375,49.0651367],[0.17940722656250017E2,49.0119629],[0.17758496093750008E2,48.8881348],[17.6253906,0.48841845703124996E2],[0.17482617187500008E2,0.48827783203124994E2],[17.1884766,48.8609375],[0.17063281250000017E2,48.7807617],[0.16985253906250023E2,0.48676904296874994E2],[16.953125,48.5988281],[0.16883691406250023E2,48.7037109],[0.16712695312500017E2,48.7342285],[0.16600976562500023E2,0.48781884765624994E2],[0.16477929687500023E2,0.48800097656249996E2],[0.16367285156250006E2,48.7389648],[0.16057226562500006E2,0.48754785156249994E2],[0.15825195312499998E2,48.8644531],[15.7007813,48.8604492],[0.15402929687500004E2,48.957373],[0.15310937500000023E2,48.9740234],[15.1617188,48.9462891],[0.15066796875000023E2,0.48997851562499996E2],[0.14972167968749998E2,48.9839355],[14.9225586,0.48771386718749994E2],[14.821875,48.7740234],[14.7066406,0.48671923828124996E2],[0.14691308593750021E2,48.5992187],[0.14488671875000023E2,0.48625537109374996E2],[0.14367578125000023E2,0.48576220703124996E2],[0.14189843750000023E2,48.5785645],[0.14049121093750017E2,48.6024902],[13.9887695,0.48692431640624996E2],[0.13814746093750017E2,48.7669434],[0.13769921875000023E2,0.48815966796874996E2],[0.13547656250000017E2,48.959668],[0.13440722656250017E2,48.9555664],[0.13339062500000011E2,49.060791],[0.13140527343750021E2,0.49158349609374994E2],[0.13023730468750017E2,49.2601074],[0.12916699218750011E2,49.3304688],[0.12813378906250021E2,49.3293457],[12.6320313,0.49461230468749996E2],[0.12500292968750015E2,0.49639697265624996E2],[0.12390527343750023E2,49.7396484],[0.12497558593749998E2,0.49853076171874996E2],[0.12512011718750015E2,0.49895800781249996E2],[0.12457617187500006E2,49.9555176],[0.12276464843750006E2,50.042334],[0.12207812500000017E2,50.0975098],[12.175,0.50175830078124996E2],[0.12089746093750023E2,50.2685547],[0.12134863281250006E2,50.3109375],[0.12231152343750011E2,50.244873],[12.2773438,0.50181445312499996E2],[0.12452636718749998E2,50.3498047],[0.12549023437500011E2,50.3934082],[0.12706445312500021E2,50.4091309],[0.12765429687500015E2,50.430957],[0.12942675781250017E2,50.4064453],[0.13016406250000017E2,0.50490380859374994E2],[13.1811523,50.510498],[0.13237695312500023E2,50.5767578],[13.3746094,0.50621728515624994E2],[0.13472558593750023E2,50.6169434],[0.13526562500000011E2,50.6928223],[0.13701367187500011E2,50.7165039],[0.13898535156250006E2,0.50761279296874996E2],[0.14201757812500004E2,0.50861230468749994E2],[0.14369042968750023E2,0.50898730468749996E2],[14.2558594,0.51001855468749994E2],[0.14319726562500023E2,51.037793],[0.14545703125000017E2,0.50993945312499996E2],[0.14613574218750015E2,50.8555664],[14.7233398,50.8146973],[14.809375,50.8589844]]]}}],"_labels":{"CZ":"Czech Rep."}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/DE.json b/src/api-umbrella/admin-ui/public/maps/DE.json new file mode 100644 index 000000000..e022ac1b1 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/DE.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"DE"},"geometry":{"type":"MultiPolygon","coordinates":[[[[14.1982422,0.53919042968750034E2],[0.14213671875000045E2,0.53870751953124966E2],[13.9257812,0.53879052734374966E2],[0.13921679687500045E2,0.53996630859375045E2],[0.13827148437499972E2,0.54059570312499964E2],[13.8277344,54.1272461],[0.14211425781250028E2,53.9503418],[14.1982422,0.53919042968750034E2]]],[[[0.11282812500000063E2,54.4179688],[0.11129296875000051E2,54.4160156],[11.0117188,54.4661621],[11.0849609,0.54533398437499955E2],[0.11233593750000068E2,54.5012695],[0.11282812500000063E2,54.4179688]]],[[[0.13709179687500011E2,0.54382714843749994E2],[0.13707324218750074E2,0.54281152343749994E2],[0.13594921875000011E2,54.3381836],[13.4820313,54.3374023],[0.13414550781250028E2,54.2495605],[0.13364355468750034E2,54.2458496],[0.13190039062500034E2,54.3256348],[0.13156347656250006E2,0.54396923828124955E2],[0.13176660156250051E2,0.54544238281250045E2],[0.13239941406250068E2,54.6384277],[0.13336816406249994E2,54.6971191],[0.13422753906250021E2,0.54699316406250006E2],[0.13491210937500028E2,0.54615380859374966E2],[0.13636035156250044E2,54.577002],[0.13670703125000074E2,54.5354492],[13.5804688,0.54463964843750034E2],[0.13709179687500011E2,0.54382714843749994E2]]],[[[8.58789063,54.7126953],[8.45380859,54.6910645],[8.41767578,54.7386719],[8.50996094,54.7603027],[8.58789063,54.7126953]]],[[[9.25498047,0.54808007812500044E2],[0.9341992187499983E1,0.54806298828124966E2],[9.61582031,54.8554199],[0.9892285156250011E1,0.54780615234375055E2],[0.10022167968750011E2,0.54673925781250006E2],[0.10028808593750028E2,54.5812988],[9.86865234,54.4724609],[0.10143457031250021E2,0.54488427734375044E2],[0.10212402343750028E2,54.4089355],[0.10360449218750006E2,54.4383301],[0.10731542968750006E2,0.54316259765625055E2],[0.11013378906250066E2,0.54379150390624964E2],[0.11064355468750051E2,54.2805176],[0.11008593750000074E2,54.1811523],[0.10810742187500068E2,0.54075146484374955E2],[0.10917773437500045E2,53.9953125],[0.11104296875000017E2,54.0091797],[11.3996094,53.9446289],[0.11461132812500068E2,0.53964746093750016E2],[0.11700585937500078E2,54.1135254],[0.11796289062500051E2,54.145459],[12.1113281,0.54168310546875006E2],[12.1686523,54.2258789],[0.12296289062500023E2,0.54283789062500006E2],[0.12575390625000038E2,54.4673828],[0.13028613281250017E2,0.54411035156249994E2],[0.13147460937500057E2,54.2827148],[0.13448046875000017E2,54.1408691],[13.7242188,54.1532227],[0.13822265625000057E2,0.54019042968749964E2],[0.13865527343750074E2,53.8533691],[14.025,53.7674316],[14.25,53.7318848],[14.2987305,53.5564453],[14.4145508,53.2834961],[14.3685547,0.53105566406250034E2],[0.14293164062500068E2,0.53026757812499966E2],[0.14193652343750045E2,0.52982324218749994E2],[0.14128613281250011E2,52.8782227],[0.14253710937500015E2,52.7825195],[0.14514062500000021E2,52.6456055],[0.14619433593750015E2,52.5285156],[0.14554589843750021E2,52.359668],[0.14705371093750015E2,0.52207470703124955E2],[0.14704589843750027E2,0.52110205078125034E2],[0.14752539062500032E2,52.0818359],[0.14674902343750034E2,51.904834],[0.14601660156250034E2,0.51832373046875006E2],[0.14623925781250023E2,51.7708008],[14.7386719,51.6271484],[0.14724707031250063E2,0.51523876953124955E2],[0.14905957031250042E2,0.51463330078124955E2],[0.15016601562499998E2,51.2527344],[0.14917480468750057E2,0.51008740234374976E2],[14.7665039,50.8183105],[0.14613574218750044E2,0.50855566406250055E2],[0.14545703124999989E2,50.9939453],[0.14319726562500051E2,51.037793],[14.2558594,51.0018555],[0.14369042968750081E2,50.8987305],[0.14201757812500004E2,50.8612305],[0.13898535156250034E2,50.7612793],[13.5265625,0.50692822265625004E2],[0.13472558593750051E2,50.6169434],[0.13374609375000063E2,0.50621728515625016E2],[0.13237695312500051E2,0.50576757812500006E2],[13.1811523,50.510498],[0.13016406250000017E2,0.50490380859374994E2],[0.12942675781249989E2,50.4064453],[0.12765429687500045E2,50.430957],[0.12549023437500011E2,0.50393408203125034E2],[0.12452636718749998E2,0.50349804687499955E2],[12.2773438,50.1814453],[0.12134863281250006E2,50.3109375],[0.12089746093750051E2,50.2685547],[0.12276464843749977E2,0.50042333984375006E2],[0.12457617187500034E2,49.9555176],[0.12512011718750015E2,49.8958008],[0.12390527343750051E2,49.7396484],[0.12500292968750015E2,49.6396973],[0.12632031250000038E2,49.4612305],[0.12813378906250051E2,49.3293457],[12.9166992,49.3304688],[13.1405273,49.1583496],[0.13339062500000011E2,49.060791],[0.13440722656250045E2,48.9555664],[0.13547656250000074E2,48.959668],[0.13769921875000051E2,48.8159668],[0.13814746093750017E2,48.7669434],[0.13785351562499983E2,48.5874512],[0.13675195312500021E2,0.48523046875000034E2],[0.13486621093750074E2,48.5818359],[13.409375,0.48394140625000055E2],[0.13322851562500004E2,48.33125],[0.13082128906249975E2,48.2750977],[0.12814257812500045E2,0.48160839843749955E2],[0.12760058593750015E2,48.0759766],[12.9535156,47.890625],[0.12954199218750032E2,0.47807763671874966E2],[0.12897656250000068E2,47.721875],[0.13033593750000051E2,47.6987305],[0.13047949218750034E2,47.5791504],[13.0143555,0.47478076171875045E2],[0.12878906250000057E2,47.5064453],[0.12782812500000034E2,47.5641602],[0.12771386718750023E2,47.6394043],[0.12685839843750074E2,47.6693359],[0.12482910156250028E2,0.47637304687500055E2],[12.3631836,47.6881836],[0.12209277343750074E2,47.7182617],[0.12185644531250063E2,47.6195313],[11.7167969,47.5834961],[0.11392968750000023E2,0.47487158203125034E2],[0.11297949218750032E2,0.47424902343750034E2],[10.9808594,0.47398144531250004E2],[0.10873046874999972E2,47.5202148],[10.6586914,0.47547216796875006E2],[10.4303711,47.5410645],[0.10403906250000063E2,47.4169922],[0.10312792968750074E2,0.47313427734374976E2],[10.1830078,47.2788086],[0.10200292968750063E2,47.3634277],[0.10066308593750023E2,47.3933594],[0.10074218750000028E2,47.4285156],[9.97158203,47.5053223],[0.9748925781250021E1,0.47575537109375006E2],[9.65058594,47.5258789],[9.52402344,47.5242188],[9.1828125,47.6707031],[8.88115234,47.6563965],[8.79306641,47.7165527],[8.72832031,0.47700048828125055E2],[8.61787109,47.7661133],[8.50986328,47.7668945],[8.40341797,0.47687792968750045E2],[8.55947266,47.6240234],[8.41474609,47.5895996],[8.19824219,47.6069336],[8.09375,47.5761719],[7.92705078,47.5638672],[7.69804688,47.569873],[7.56542969,0.47606542968750006E2],[7.52939453,47.673877],[7.53857422,47.7736328],[7.60849609,0.48002587890625044E2],[7.58417969,0.48064306640625006E2],[7.61660156,48.1567871],[7.70566406,48.2800293],[7.76513672,48.4100098],[7.83798828,0.48636035156250045E2],[8.14033203,48.8864258],[8.13486328,48.973584],[8.00126953,49.0109375],[7.6109375,49.0617676],[7.52548828,0.49086376953124955E2],[7.45058594,49.1521973],[7.19990234,49.113623],[7.02216797,0.49123437500000044E2],[7.00146484,49.1798828],[6.89121094,49.2075195],[6.73544922,49.1605957],[6.57470703,49.3196777],[6.53427734,0.49394677734374966E2],[6.45810547,49.4428711],[6.34433594,49.4527344],[6.40673828,49.6449707],[6.48476563,49.7078125],[6.48730469,49.7984863],[6.25605469,49.872168],[6.13818359,49.9743164],[6.12128906,50.1393555],[6.17509766,50.232666],[6.36445313,50.3161621],[6.34091797,0.50451757812500034E2],[6.20302734,0.50499121093750006E2],[6.16845703,50.5453613],[6.2359375,50.5966797],[5.99394531,50.7504395],[6.0484375,0.50904882812500055E2],[5.89472656,50.9842285],[5.86835938,51.0453125],[5.93925781,51.0408203],[6.12998047,51.1474121],[6.07587891,51.2241211],[6.19287109,51.4105957],[6.19326172,51.488916],[5.94853516,0.51762402343749955E2],[5.94873047,0.51802685546875004E2],[6.16650391,51.8807617],[6.35566406,51.8246582],[6.74179688,51.9108887],[6.80244141,51.9801758],[6.715625,52.0361816],[6.74902344,52.0986816],[6.97724609,52.2055176],[7.01962891,52.2660156],[7.03515625,52.3802246],[6.96816406,52.4440918],[6.74882813,0.52464013671874994E2],[6.69160156,0.52530175781249966E2],[6.7484375,52.634082],[7.01318359,52.6335449],[7.11708984,52.8870117],[7.18994141,52.9995117],[7.19726563,53.2822754],[7.05332031,0.53375830078125034E2],[7.10712891,53.5569824],[7.20644531,53.654541],[7.28525391,0.53681347656250004E2],[7.62919922,53.6972656],[8.00927734,53.6907227],[8.16708984,0.53543408203124976E2],[8.10849609,53.4676758],[8.24521484,53.4453125],[8.33388672,53.6062012],[8.49267578,0.53514355468750004E2],[8.49521484,53.3942383],[8.53847656,53.5568848],[8.50625,53.670752],[8.52841797,0.53781103515625006E2],[8.61894531,53.875],[8.89775391,53.8356934],[9.20556641,53.855957],[0.9321972656250011E1,53.8134766],[0.9585351562500021E1,0.53600488281249966E2],[9.63125,0.53600195312500006E2],[9.31201172,53.8591309],[0.9216406249999977E1,53.8912109],[8.978125,53.9262207],[8.90351563,54.000293],[8.90664063,54.260791],[8.78037109,54.3130371],[8.64492188,54.2949707],[8.64804688,54.3976562],[8.83115234,54.4275391],[8.95185547,54.4675781],[8.95722656,54.5383301],[8.88095703,54.5939453],[8.68232422,0.54791845703125034E2],[8.6703125,54.903418],[8.90292969,54.8969238],[9.18583984,0.54844677734374955E2],[9.25498047,0.54808007812500044E2]]],[[[8.30771484,0.54786962890625034E2],[8.29570312,54.9083008],[8.40517578,55.0587402],[8.37988281,54.8998535],[8.62958984,54.891748],[8.60058594,54.8653809],[8.34736328,54.8476074],[8.30771484,0.54786962890625034E2]]]]}}],"_labels":{"DE":"Germany"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/DJ.json b/src/api-umbrella/admin-ui/public/maps/DJ.json new file mode 100644 index 000000000..f73099478 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/DJ.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"DJ"},"geometry":{"type":"Polygon","coordinates":[[[43.2459961,0.11499804687499989E2],[42.9227539,0.10999316406249989E2],[42.7830078,0.11009277343749998E2],[0.42557714843750006E2,0.11080761718749997E2],[42.3081055,0.11005224609374991E2],[41.9574219,10.9410156],[41.7982422,10.9804688],[41.7665039,11.5891113],[41.815625,0.11723779296874993E2],[41.9958984,11.9123535],[42.3785156,12.4664063],[42.4793945,0.12513623046874997E2],[0.42670117187500004E2,12.3765625],[42.7674805,0.12422851562499998E2],[42.865918,0.12622802734374998E2],[43.1166992,12.7085938],[43.2986328,12.4638672],[43.4097656,12.1899414],[43.3802734,0.12091259765624997E2],[0.43272070312500006E2,0.11969531249999989E2],[43.0480469,0.11829052734374997E2],[42.7990234,0.11739404296874994E2],[42.6400391,0.11560107421874989E2],[42.5217773,0.11572167968749994E2],[0.42539746093750004E2,11.5042969],[42.6527344,0.11509570312499989E2],[0.42911523437500016E2,0.11586621093749997E2],[43.1617187,11.5660156],[43.2459961,0.11499804687499989E2]]]}}],"_labels":{"DJ":"Djibouti"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/DK.json b/src/api-umbrella/admin-ui/public/maps/DK.json new file mode 100644 index 000000000..3f08543e5 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/DK.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"DK"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.11361425781250006E2,0.54891650390625045E2],[0.11538378906250074E2,54.8295898],[0.11739550781250017E2,54.8074219],[0.11765917968750072E2,54.6794434],[0.11457421875000023E2,54.6288574],[0.11035546875000051E2,54.7730957],[0.11058593750000027E2,0.54940576171874966E2],[0.11258496093749983E2,54.9518066],[0.11361425781250006E2,0.54891650390625045E2]]],[[[10.484375,54.8475586],[10.3405273,54.8589355],[10.215625,0.54940966796875045E2],[10.484375,54.8475586]]],[[[0.12549218750000051E2,54.9657715],[0.12357519531250063E2,0.54961816406250016E2],[12.1844727,54.8924805],[0.12161718750000063E2,0.54974804687500004E2],[12.3100586,0.55040917968749966E2],[0.12549218750000051E2,54.9657715]]],[[[0.10061230468750068E2,54.886377],[9.80625,54.9060059],[9.77119141,0.55059912109375034E2],[0.9998828125000045E1,0.54986474609374994E2],[0.10061230468750068E2,54.886377]]],[[[10.734082,54.7507324],[0.10621679687500006E2,54.851416],[0.10856738281250045E2,0.55052197265624955E2],[10.925,0.55157861328124994E2],[0.10920800781250021E2,0.55062109375000034E2],[10.734082,54.7507324]]],[[[0.15087695312500015E2,55.021875],[0.14885546875000047E2,55.032959],[14.6841797,55.1022461],[0.14765332031250068E2,0.55296728515625034E2],[0.15132617187500015E2,55.1445313],[0.15087695312500015E2,55.021875]]],[[[0.10645117187500006E2,55.6098145],[0.10819238281250021E2,55.321875],[0.10785253906250034E2,55.1333984],[0.10623828125000015E2,55.0524414],[10.4427734,55.0487793],[9.98876953,0.55163183593750006E2],[0.9858984375000063E1,55.3572266],[0.9860644531250045E1,0.55515478515625034E2],[0.10286132812500057E2,55.6108398],[0.10505078125000068E2,55.5580566],[0.10645117187500006E2,55.6098145]]],[[[0.12665722656250068E2,0.55596533203125006E2],[0.12550878906250034E2,55.55625],[0.12520312500000017E2,0.55614599609375055E2],[12.5992188,55.6802246],[0.12665722656250068E2,0.55596533203125006E2]]],[[[0.10607324218750023E2,55.7830566],[10.5269531,55.7837891],[0.10547167968750017E2,55.9919434],[10.6617188,0.55877587890624994E2],[0.10607324218750023E2,55.7830566]]],[[[12.56875,0.55785058593749966E2],[12.5711914,0.55684960937499994E2],[0.12320605468750015E2,0.55587841796875004E2],[12.2150391,0.55466503906249976E2],[0.12385156250000023E2,55.3856445],[0.12413085937500028E2,55.2861816],[12.3224609,55.2371094],[0.12089941406250006E2,55.1881348],[0.12050390625000034E2,54.815332],[11.8623047,0.54772607421875016E2],[11.740918,54.915332],[0.11653808593750057E2,0.55186914062499966E2],[0.11286328125000068E2,55.2044434],[0.11170703125000045E2,55.3286133],[0.11189746093750017E2,55.465625],[11.1209961,0.55600732421874994E2],[11.0087891,0.55644433593749994E2],[0.10978906250000051E2,0.55721533203125006E2],[0.11322265625000028E2,0.55752539062500006E2],[0.11463671875000045E2,55.8792969],[0.11474707031249977E2,0.55943457031250006E2],[0.11627734375000074E2,55.9568848],[0.11695898437500006E2,55.9079102],[0.11690917968749972E2,55.7290039],[0.11819726562500023E2,55.6976563],[0.11934570312500057E2,0.55895898437499994E2],[11.8664063,55.9681641],[0.12218945312499983E2,56.1186523],[0.12323242187500028E2,56.1221191],[0.12578710937500004E2,56.0640625],[0.12608398437500028E2,0.56033007812500045E2],[12.5248047,55.918457],[12.56875,0.55785058593749966E2]]],[[[0.11052148437500051E2,57.2525391],[0.10873828125000045E2,57.2622559],[10.9345703,57.3085938],[0.11174511718750011E2,57.3229004],[0.11052148437500051E2,57.2525391]]],[[[0.10436914062500023E2,57.1722656],[10.2960938,56.9991211],[0.10282714843750057E2,56.6205078],[0.10490234375000057E2,56.5205078],[10.8458984,56.5217285],[0.10926171875000051E2,56.4432617],[0.10856445312500057E2,56.2955078],[0.10621191406250006E2,56.2020996],[0.10538964843750051E2,56.2003418],[10.4269531,56.2761719],[10.31875,56.2128906],[10.1830078,55.8651855],[0.10017382812500017E2,0.55876074218750034E2],[0.9903710937500023E1,55.8428223],[10.0236328,55.7614258],[0.9899023437500063E1,55.7075684],[0.9591113281250017E1,55.4932129],[0.9670996093750063E1,55.2664062],[0.9643261718749983E1,0.55204736328125044E2],[0.9504785156250023E1,55.1162598],[9.45371094,55.0395508],[9.64541016,0.55022802734375006E2],[0.9732324218750023E1,54.9680176],[9.73974609,54.8255371],[9.61582031,54.8554199],[0.9341992187499983E1,0.54806298828124966E2],[8.90292969,54.8969238],[8.6703125,54.903418],[8.63828125,55.0455566],[8.57294922,55.1342773],[8.66982422,0.55155664062499994E2],[8.61591797,55.4182129],[8.13212891,55.5998047],[8.20234375,55.982373],[8.12148438,56.1398926],[8.16396484,56.6068848],[8.28144531,56.6166992],[8.55292969,56.5603027],[8.67167969,56.4956543],[8.73613281,56.6274414],[8.88808594,56.7350586],[9.06708984,56.7938477],[9.19638672,56.7016602],[9.25488281,57.0117188],[9.11044922,0.57043652343749955E2],[8.99277344,57.0161133],[8.77197266,56.725293],[8.46835938,56.6645508],[8.26826172,0.56754003906250006E2],[8.28408203,56.8523437],[8.42705078,56.9844238],[8.61855469,57.1112793],[8.81152344,57.1100586],[8.95224609,57.1505859],[9.29882812,57.1465332],[0.9554296874999977E1,57.2324707],[0.9815136718750011E1,0.57478417968749994E2],[9.96230469,57.580957],[0.10259082031250045E2,57.617041],[0.10533300781250034E2,57.7354004],[0.10609960937500034E2,57.7369141],[0.10480957031250028E2,57.6486816],[0.10444628906250017E2,57.562207],[0.10537109375000028E2,57.4485352],[10.5241211,57.2432129],[0.10436914062500023E2,57.1722656]]]]}}],"_labels":{"DK":"Denmark"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/DM.json b/src/api-umbrella/admin-ui/public/maps/DM.json new file mode 100644 index 000000000..314d1f699 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/DM.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"DM"},"geometry":{"type":"Polygon","coordinates":[[[-0.61281689453125004E2,15.2490234],[-61.3753906,0.15227294921874998E2],[-61.4811523,0.15525146484374998E2],[-61.4581055,0.15633105468750003E2],[-61.3200195,0.15585058593749991E2],[-0.61281689453125004E2,15.2490234]]]}}],"_labels":{"DM":"Dominica"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/DO.json b/src/api-umbrella/admin-ui/public/maps/DO.json new file mode 100644 index 000000000..b73912138 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/DO.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"DO"},"geometry":{"type":"Polygon","coordinates":[[[-71.7683105,18.0391602],[-71.7619141,18.3413086],[-71.8725586,0.18416210937499997E2],[-72.0003906,18.5979004],[-71.8665039,0.18614160156249994E2],[-71.7432129,18.7329102],[-71.7336426,0.18856396484374997E2],[-71.8071289,0.18987011718749997E2],[-71.6570312,19.1307617],[-71.6472168,19.1959473],[-71.7464844,0.19285839843749997E2],[-71.7069336,19.4219727],[-71.7574219,0.19688183593749994E2],[-71.6673828,19.8486328],[-71.5577637,19.8953613],[-71.2359375,0.19848144531249996E2],[-70.9541504,0.19913964843749994E2],[-70.8338867,0.19887255859375003E2],[-70.6361816,19.7756348],[-70.4364258,19.7712402],[-70.3047363,0.19676074218750003E2],[-70.1294434,0.19636132812499994E2],[-69.9568359,19.671875],[-69.8912109,0.19589746093749994E2],[-69.8234375,0.19367138671874997E2],[-69.7394043,19.2992188],[-69.3249512,19.3277344],[-69.2324707,19.2718262],[-69.3227539,0.19201074218749994E2],[-69.605957,0.19206494140624997E2],[-69.6236328,0.19117822265624994E2],[-68.9013672,0.18988476562499997E2],[-68.6847656,18.9047852],[-68.3813965,18.6711426],[-68.3391602,0.18611523437499997E2],[-68.4448242,18.4177246],[-68.5637695,18.3554688],[-68.6588379,18.2220215],[-68.7209961,0.18218408203124994E2],[-68.8195312,0.18339306640624997E2],[-68.9349609,0.18408007812500003E2],[-69.0722656,18.3992187],[-69.2745117,18.4398438],[-69.5194336,0.18415673828124994E2],[-69.7706543,0.18443554687499997E2],[-70.0183105,18.3736328],[-70.1831055,0.18251757812500003E2],[-70.4799316,18.2172852],[-70.6446777,0.18336230468750003E2],[-70.7588379,0.18345605468749994E2],[-71.027832,18.2731934],[-71.0822266,18.2243652],[-71.1060059,0.18070019531249997E2],[-71.3957031,17.6460937],[-71.6317383,0.17773632812499997E2],[-71.6737305,17.9541016],[-71.7683105,18.0391602]]]}}],"_labels":{"DO":"Dominican Rep."}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/DZ.json b/src/api-umbrella/admin-ui/public/maps/DZ.json new file mode 100644 index 000000000..457ff1569 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/DZ.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"DZ"},"geometry":{"type":"Polygon","coordinates":[[[8.5765625,36.937207],[8.60126953,36.8339355],[8.44423828,36.7607422],[8.36962891,36.6325195],[8.23076172,36.5452637],[8.20878906,36.4951172],[8.30273438,0.36455615234374996E2],[8.34873047,36.3679688],[8.24570313,35.8705566],[8.24707031,0.35801806640624996E2],[8.31806641,0.35654931640624994E2],[8.31640625,35.403125],[8.39423828,35.2038574],[8.31210938,0.35084619140624994E2],[8.27685547,34.9794922],[8.24560547,34.734082],[8.1234375,34.563916],[7.83828125,0.34410302734374994E2],[7.74853516,34.2544922],[7.51386719,34.0805176],[7.50019531,33.8324707],[7.534375,0.33717919921874994E2],[7.62753906,0.33548632812499996E2],[7.73134766,33.2685059],[7.87724609,33.1721191],[8.07558594,33.0890625],[8.2109375,32.926709],[8.30419922,32.6962891],[8.33339844,0.32543603515624994E2],[8.68291016,0.32310449218749994E2],[0.9018945312500023E1,0.32105371093749994E2],[9.04404297,32.0723633],[9.51875,30.2293945],[0.9310253906250011E1,30.1152344],[0.9546191406250017E1,0.29795947265624992E2],[0.9672656250000017E1,0.29566992187499995E2],[0.9820703125000023E1,0.29114794921874996E2],[0.9842578125000017E1,0.28966992187499994E2],[9.815625,28.5602051],[0.9858203125000015E1,28.0433105],[9.91601562,0.27785693359374996E2],[9.74755859,27.3308594],[9.75253906,27.2193359],[0.9837109375000011E1,0.26915820312499996E2],[0.9894433593750021E1,0.26847949218749996E2],[0.9883203125000023E1,0.26630810546874994E2],[9.859375,26.5519531],[0.9491406250000011E1,26.3337402],[0.9437890625000021E1,26.2455078],[9.44824219,26.0671387],[10.0006836,0.25332080078125003E2],[10.028125,25.0510254],[0.10119531250000023E2,24.7902344],[0.10218652343750023E2,0.24676220703124994E2],[10.2558594,24.5910156],[10.4389648,24.4802246],[0.10686132812500004E2,24.5513672],[0.11507617187500017E2,24.3143555],[0.11536914062500015E2,0.24290820312500003E2],[0.11766992187500023E2,23.8925781],[0.11967871093750006E2,0.23517871093750003E2],[7.48173828,0.20873095703125003E2],[6.98935547,0.20470507812500003E2],[5.83662109,0.19479150390624994E2],[5.74833984,0.19434228515624994E2],[4.22763672,0.19142773437499997E2],[3.40087891,18.9884277],[3.25595703,19.0132812],[3.11972656,0.19103173828124994E2],[3.10605469,0.19150097656249997E2],[3.25585938,19.4109375],[3.20166016,19.5604004],[3.20371094,0.19789697265624994E2],[3.13027344,19.8501953],[2.86572266,0.19955957031249994E2],[2.47421875,0.20035009765624988E2],[2.40615234,0.20063867187499994E2],[2.28085937,0.20210302734374988E2],[2.21933594,20.2478027],[1.92880859,20.2727051],[1.83242188,20.296875],[1.68544922,0.20378369140624997E2],[1.61064453,0.20555566406249994E2],[1.29023438,0.20713574218749997E2],[1.16572266,0.20817431640625003E2],[1.17275391,20.9819824],[1.14550781,0.21102246093749997E2],[-4.51699219,24.8044922],[-5.51694336,0.25423779296874997E2],[-8.68334961,27.2859375],[-8.68334961,0.28620751953124994E2],[-8.65991211,0.28718603515624995E2],[-8.55834961,0.28767871093749992E2],[-8.26518555,0.28980517578124996E2],[-7.99892578,29.1324219],[-7.68515625,29.3495117],[-7.48574219,29.3922363],[-7.23491211,0.29574902343749997E2],[-7.09492187,0.29625195312499997E2],[-6.63535156,0.29568798828124994E2],[-6.52055664,0.29659863281249997E2],[-6.50087891,0.29809130859374996E2],[-6.21479492,0.29810693359374998E2],[-5.775,0.29869042968749994E2],[-5.4487793,0.29956933593749998E2],[-5.29365234,0.30058642578124996E2],[-5.18012695,0.30166162109374994E2],[-4.96826172,0.30465380859374992E2],[-4.77851562,30.5523926],[-4.32285156,0.30698876953124994E2],[-3.98535156,0.30913525390624997E2],[-3.70200195,0.30944482421874994E2],[-3.6269043,31.0009277],[-3.62451172,0.31065771484374995E2],[-3.83339844,0.31197802734374996E2],[-3.78916016,0.31361816406249996E2],[-3.83710937,0.31512353515624994E2],[-3.82675781,0.31661914062499992E2],[-3.70024414,0.31700097656249994E2],[-3.60458984,31.6867676],[-3.43979492,31.704541],[-3.01738281,0.31834277343749992E2],[-2.93085937,0.32042529296874996E2],[-2.86342773,32.074707],[-2.44838867,32.1299805],[-1.2753418,0.32089013671874994E2],[-1.22592773,0.32107226562499996E2],[-1.26210937,0.32271142578124994E2],[-1.24033203,32.3375977],[-1.06552734,0.32468310546874996E2],[-1.11103516,32.5522949],[-1.35214844,32.7033691],[-1.45,32.7848145],[-1.51000977,32.8776367],[-1.55073242,33.073584],[-1.62509766,33.1833496],[-1.67919922,0.33318652343749996E2],[-1.63125,33.566748],[-1.70297852,0.33716845703124996E2],[-1.71469727,33.8582031],[-1.69267578,0.33990283203124996E2],[-1.70693359,0.34176074218749996E2],[-1.79179687,34.3679199],[-1.73945312,34.4960938],[-1.8496582,0.34607324218749994E2],[-1.79560547,34.7519043],[-2.13178711,0.34970849609374994E2],[-2.21962891,35.1041992],[-2.01777344,35.0850586],[-1.91328125,35.0942383],[-1.67363281,35.1831055],[-1.48374023,35.3030762],[-1.33583984,35.3642578],[-1.20537109,0.35495751953124994E2],[-0.917480469,35.6684082],[-0.426123047,35.8615234],[-0.189160156,35.8190918],[-0.0482421875,35.8328125],[0.0479492188,35.9005371],[0.151660156,0.36063134765624994E2],[0.312207031,36.1623535],[0.514941406,36.2618164],[0.790820313,36.356543],[0.971679688,36.4439453],[1.25722656,0.36519580078124996E2],[1.97451172,36.5675781],[2.34287109,36.6103027],[2.59335937,36.6006836],[2.84648438,36.7388672],[2.97285156,0.36784472656249996E2],[3.52050781,36.7951172],[3.77900391,36.8961914],[4.75810547,36.8963379],[4.99541016,36.8080566],[5.19560547,0.36676806640624996E2],[5.29541016,0.36648242187499996E2],[5.42460938,0.36675439453124994E2],[5.72548828,36.7996094],[6.06474609,36.8642578],[6.24912109,36.9383301],[6.32783203,0.37046044921874994E2],[6.48652344,0.37085742187499996E2],[6.57587891,37.0030273],[6.92753906,36.9194336],[7.23847656,36.9685059],[7.20429688,37.0923828],[7.43242188,37.0592773],[7.60771484,36.9997559],[7.79160156,0.36880273437499994E2],[7.91044922,0.36856347656249994E2],[8.12714844,36.9103516],[8.5765625,36.937207]]]}}],"_labels":{"DZ":"Algeria"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/EC.json b/src/api-umbrella/admin-ui/public/maps/EC.json new file mode 100644 index 000000000..b3adad481 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/EC.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"EC"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-80.1315918,-2.97314453],[-80.2729492,-2.99589844],[-80.2236816,-2.753125],[-80.0807617,-2.66884766],[-79.9090332,-2.72558594],[-80.0934082,-2.84589844],[-80.1315918,-2.97314453]]],[[[-90.4239258,-1.33994141],[-90.5195312,-1.29912109],[-90.4771973,-1.22099609],[-90.3791504,-1.29228516],[-90.4239258,-1.33994141]]],[[[-89.4188965,-0.911035156],[-89.5366211,-0.95234375],[-89.6085937,-0.888574219],[-89.4231445,-0.722265625],[-89.3184082,-0.680078125],[-89.259375,-0.728417969],[-89.4188965,-0.911035156]]],[[[-90.3348633,-0.771582031],[-0.9038710937499997E2,-0.773339844],[-0.9054213867187501E2,-0.676464844],[-0.9046972656250003E2,-0.517382812],[-90.2693848,-0.484667969],[-90.1853027,-0.544824219],[-90.1927246,-0.658789063],[-90.3348633,-0.771582031]]],[[[-0.9142597656249995E2,-0.460839844],[-91.5263672,-0.478222656],[-91.646582,-0.390820313],[-91.6466797,-0.284472656],[-0.9146015625000001E2,-0.255664063],[-91.3993652,-0.322460937],[-0.9142597656249995E2,-0.460839844]]],[[[-0.9057392578124991E2,-0.333984375],[-90.620459,-0.364257812],[-0.9080903320312495E2,-0.329394531],[-90.8677734,-0.271386719],[-90.7803711,-0.160449219],[-0.9066752929687499E2,-0.18984375],[-0.9055332031249999E2,-0.278417969],[-0.9057392578124991E2,-0.333984375]]],[[[-91.272168,0.0251464844],[-0.9121005859375003E2,-0.0393066406],[-91.1762207,-0.223046875],[-0.9097553710937495E2,-0.416894531],[-0.9095893554687493E2,-0.5953125],[-90.7996582,-0.752050781],[-0.9090551757812497E2,-0.940527344],[-0.9113105468750001E2,-1.01962891],[-91.3715332,-1.01699219],[-0.9148354492187497E2,-0.924609375],[-0.9145830078124999E2,-0.799511719],[-91.334082,-0.70625],[-91.1446777,-0.622851562],[-91.1209473,-0.559082031],[-0.9119702148437493E2,-0.496972656],[-0.9124951171874997E2,-0.373632812],[-0.9136918945312493E2,-0.287207031],[-91.4288574,-0.0233886719],[-91.55,-0.0466796875],[-0.9159682617187497E2,0.00209960937],[-0.9149101562499999E2,0.105175781],[-91.361377,0.125830078],[-91.272168,0.0251464844]]],[[[-78.9092285,1.2527832],[-78.9916992,1.29321289],[-78.8998047,1.35976563],[-78.9092285,1.2527832]]],[[[-78.3121094,1.04609375],[-78.0370117,0.898730469],[-77.829541,0.825390625],[-77.7028809,0.837841797],[-77.6486328,0.723632812],[-77.4676758,0.636523438],[-77.4227539,0.424853516],[-77.2926758,0.360400391],[-77.1141113,0.355078125],[-76.9201172,0.268505859],[-76.7677246,0.241650391],[-76.7290039,0.272119141],[-76.4946289,0.235449219],[-76.4272949,0.261230469],[-76.4133789,0.378857422],[-76.3110352,0.448486328],[-76.0679199,0.345556641],[-75.8797852,0.150976563],[-75.7766602,0.0892578125],[-75.617334,0.062890625],[-75.4639648,-0.0384277344],[-75.2844727,-0.106542969],[-75.4759766,-0.157128906],[-75.6262695,-0.122851562],[-75.6320313,-0.157617188],[-75.4910645,-0.248339844],[-75.424707,-0.408886719],[-75.2632324,-0.555371094],[-75.2835937,-0.707128906],[-75.2496094,-0.951855469],[-75.4080566,-0.924316406],[-75.5705566,-1.53125],[-76.0897949,-2.13310547],[-76.6791016,-2.56259766],[-77.3600586,-2.80966797],[-77.8605957,-2.98164063],[-77.9384766,-3.04697266],[-78.1833008,-3.35019531],[-78.1584961,-3.46513672],[-78.2263184,-3.48916016],[-78.2841797,-3.39902344],[-78.3453613,-3.39736328],[-78.4197754,-3.77685547],[-78.5504395,-3.98691406],[-78.6793945,-4.32587891],[-78.6529297,-4.45820312],[-78.6860352,-4.56240234],[-78.8615234,-4.66503906],[-78.9753906,-4.87324219],[-79.0762695,-4.990625],[-79.330957,-4.92783203],[-79.5019043,-4.67060547],[-79.5161621,-4.53916016],[-79.6385254,-4.45488281],[-79.7972656,-4.47636719],[-80.1395508,-4.29609375],[-80.3834961,-4.46367187],[-80.4884766,-4.39365234],[-80.3528809,-4.20849609],[-80.4537598,-4.20517578],[-80.5100098,-4.06953125],[-80.437207,-3.97861328],[-80.3032715,-4.00507812],[-80.179248,-3.87773437],[-80.2288574,-3.73886719],[-80.2206055,-3.61318359],[-80.2735352,-3.42460938],[-80.3246582,-3.38789062],[-80.1598633,-3.32431641],[-80.0266602,-3.228125],[-79.921582,-3.09013672],[-79.8227051,-2.77695312],[-79.7298828,-2.57910156],[-79.8224121,-2.35654297],[-79.8421387,-2.06738281],[-79.8934082,-2.14570312],[-79.8803223,-2.42363281],[-79.9255859,-2.54853516],[-80.0301758,-2.55673828],[-80.0066406,-2.35380859],[-80.1271484,-2.52841797],[-80.2486328,-2.63056641],[-80.2847168,-2.70673828],[-80.4500977,-2.62597656],[-80.6848633,-2.396875],[-80.8390625,-2.34902344],[-80.962793,-2.18925781],[-80.7703613,-2.07666016],[-80.7631348,-1.82294922],[-80.8350098,-1.63242188],[-80.801416,-1.38339844],[-80.9023926,-1.07890625],[-80.8414063,-0.974707031],[-80.6236816,-0.898730469],[-80.5539062,-0.847949219],[-80.4554687,-0.585449219],[-80.3583984,-0.625097656],[-80.4822754,-0.368261719],[-80.3212891,-0.165820313],[-80.1333984,-0.0060546875],[-80.0461426,0.155371094],[-80.025,0.41015625],[-80.0882812,0.784765625],[-79.9035156,0.860205078],[-79.7412109,0.979785156],[-79.6131836,0.971142578],[-79.4653809,1.06005859],[-79.2290527,1.10458984],[-78.8996582,1.20625],[-78.8270508,1.29594727],[-78.859668,1.45537109],[-78.6816406,1.28344727],[-78.5115234,1.19882812],[-78.3121094,1.04609375]]]]}}],"_labels":{"EC":"Ecuador"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/EE.json b/src/api-umbrella/admin-ui/public/maps/EE.json new file mode 100644 index 000000000..8f0dc3dd0 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/EE.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"EE"},"geometry":{"type":"MultiPolygon","coordinates":[[[[22.6173828,0.58621240234375016E2],[0.22964257812500023E2,58.6057129],[23.2928711,58.4834961],[0.23323242187500053E2,58.4508301],[0.23127148437500068E2,58.4359863],[0.22757031250000068E2,0.58260888671874966E2],[0.22730273437500045E2,0.58230664062500004E2],[0.22371679687499977E2,58.2171387],[0.22269335937500014E2,58.1607422],[0.22152441406250006E2,57.9667969],[21.996875,57.9313477],[21.9855469,0.57995166015625024E2],[0.22187695312500068E2,58.1543457],[0.21882128906249985E2,58.2623535],[0.21984082031250065E2,58.3866699],[0.21862304687500057E2,58.497168],[22.0018555,58.5102539],[22.0813477,58.478125],[0.22266601562499996E2,58.507959],[22.328125,0.58580859375000045E2],[22.6173828,0.58621240234375016E2]]],[[[0.23343554687500017E2,0.58550341796875045E2],[0.23260351562500034E2,58.5399902],[0.23063476562500057E2,0.58611083984374964E2],[23.1654297,58.678125],[0.23332812500000045E2,0.58648583984374994E2],[0.23343554687500017E2,0.58550341796875045E2]]],[[[0.22923730468750023E2,58.8269043],[22.8416992,0.58777441406250034E2],[22.7672852,0.58820898437500006E2],[0.22661425781250045E2,58.7091797],[22.5421875,58.6899902],[0.22411035156250023E2,0.58863378906250034E2],[0.22161914062500074E2,58.8984863],[22.05625,58.9436035],[22.4625977,58.9743164],[0.22587207031250017E2,0.59081201171875016E2],[0.22702246093750006E2,59.0744141],[22.7254883,0.59015087890624955E2],[0.22909863281250036E2,58.9912109],[0.23008691406249994E2,0.58833935546875004E2],[0.22923730468750023E2,58.8269043]]],[[[25.5092773,0.59639013671875055E2],[25.79375,59.634668],[26.4608398,0.59553906249999955E2],[26.625,0.59553906249999955E2],[26.8520508,0.59471777343750006E2],[0.26974707031250006E2,0.59450634765624955E2],[27.3358398,59.4504883],[0.27892578125000057E2,0.59414208984374994E2],[28.0125,0.59484277343749966E2],[28.1510742,0.59374414062499966E2],[0.28016406250000045E2,0.59301708984374976E2],[27.8976563,0.59277636718750074E2],[0.27757617187500074E2,59.052002],[0.27464453125000034E2,58.8413086],[0.27427050781250074E2,0.58733056640624966E2],[0.27531347656250006E2,58.4352539],[27.487793,0.58270068359375045E2],[0.27673437499999974E2,57.9346191],[27.752832,0.57841015624999955E2],[0.27542089843750063E2,57.7994141],[27.4,57.6667969],[27.3519531,57.528125],[0.27187109375000034E2,57.5383301],[26.8998047,0.57608789062499994E2],[0.26532617187499994E2,57.5310059],[26.2980469,57.6010742],[0.26030371093750006E2,57.7855469],[0.25991113281250076E2,57.8381836],[25.79375,0.57868554687499966E2],[25.2826172,58.0484863],[25.2287109,57.996582],[25.1110352,0.58063427734374976E2],[24.4588867,57.9078613],[24.3625,57.8661621],[24.3320313,57.9097656],[24.4638672,58.105957],[0.24529101562500045E2,58.354248],[0.24336914062500053E2,58.3813965],[0.24235644531250045E2,58.2895508],[0.24114843750000034E2,58.2661133],[0.23767578125000057E2,0.58360839843749964E2],[0.23691503906250034E2,58.5056152],[0.23562792968749985E2,58.5758301],[0.23530664062500023E2,0.58716259765625004E2],[0.23680761718750063E2,0.58787158203125074E2],[23.5335938,58.7819336],[23.4320313,58.9206543],[23.5150391,58.9992188],[23.4677734,59.0321777],[0.23516992187500076E2,59.1075684],[0.23494433593750014E2,59.1956543],[23.7825195,59.2751465],[24.0833984,59.2918945],[24.0536133,59.3723145],[24.1753906,59.3759277],[24.3803711,59.4726562],[24.5835938,0.59455664062500006E2],[0.24877539062500063E2,0.59522070312500034E2],[25.44375,59.5211426],[0.25520898437500048E2,59.5594727],[25.5092773,0.59639013671875055E2]]]]}}],"_labels":{"EE":"Estonia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/EG.json b/src/api-umbrella/admin-ui/public/maps/EG.json new file mode 100644 index 000000000..bb17b8007 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/EG.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"EG"},"geometry":{"type":"Polygon","coordinates":[[[34.1981445,0.31322607421875002E2],[34.4899414,30.5962891],[34.5296875,0.30446044921874996E2],[34.6585938,0.30191455078124996E2],[34.9042969,29.4773437],[0.34736425781250006E2,0.29270605468750002E2],[34.6171875,28.7579102],[34.4464844,0.28357324218749994E2],[34.4271484,0.28106494140624996E2],[34.399707,28.0160156],[34.2201172,0.27764306640624994E2],[34.0451172,27.8288574],[33.7602539,28.0476562],[33.5941406,0.28255566406249997E2],[0.33416113281250006E2,28.3898438],[33.2477539,28.5677246],[0.33203710937500006E2,0.28777783203124994E2],[33.0757812,29.0730469],[32.8706055,0.29286230468749995E2],[32.7214844,0.29521777343749996E2],[0.32647167968750004E2,29.7984375],[32.5657227,0.29973974609374995E2],[32.4730469,0.29925439453124994E2],[32.4894531,0.29851513671874997E2],[32.3597656,29.6306641],[32.3972656,0.29533789062500002E2],[32.5650391,29.3863281],[32.6380859,0.29182177734374992E2],[32.6318359,28.9922363],[32.7844727,0.28786621093749996E2],[32.8982422,28.5652344],[33.0228516,0.28442285156249994E2],[33.2021484,0.28208300781249996E2],[33.3722656,0.28050585937499996E2],[33.4949219,0.27974462890624995E2],[33.5470703,0.27898144531249997E2],[33.5498047,0.27607373046874997E2],[33.6972656,0.27341113281249992E2],[33.8016602,27.2681641],[33.8930664,0.27049462890624994E2],[0.33959082031250006E2,26.6490234],[34.0495117,0.26550732421874997E2],[34.3292969,0.26024365234374997E2],[34.5651367,0.25691162109374996E2],[34.6792969,25.4425293],[34.8532227,0.25139794921874994E2],[35.1941406,0.24475146484375003E2],[0.35397070312500006E2,0.24269970703124994E2],[35.477832,0.24154785156249996E2],[35.624707,24.0660156],[35.7838867,0.23937792968750003E2],[35.6320313,0.23950341796874994E2],[35.5408203,0.23920654296874996E2],[35.5043945,23.7792969],[35.5227539,0.23442529296874994E2],[35.5643555,23.2710937],[0.35697851562500006E2,0.22946191406249994E2],[35.9133789,0.22739648437499994E2],[36.2296875,0.22628808593749994E2],[36.4145508,0.22394189453124994E2],[36.8296875,22.0976562],[36.8713867,0.21996728515624994E2],[31.4344727,21.9958496],[0.31486132812500017E2,0.22147802734374988E2],[0.31358496093750006E2,0.22188623046874994E2],[0.31260644531250023E2,0.22002294921874988E2],[31.2091797,21.994873],[0.24980273437500017E2,21.9958496],[0.24980273437500017E2,0.29181884765624996E2],[0.24916113281250006E2,29.3762695],[0.24810839843750017E2,0.29808740234374994E2],[24.8037109,0.29886035156249996E2],[24.7116211,0.30131542968749997E2],[0.24726464843750023E2,0.30250585937499995E2],[0.24877539062500006E2,30.4575195],[24.9614258,30.6785156],[0.24973925781250017E2,30.7765625],[0.24877539062500006E2,0.31061230468749994E2],[24.8527344,31.3348145],[0.25150488281250006E2,0.31654980468749994E2],[25.2254883,0.31533789062499995E2],[0.25382226562500023E2,31.512793],[25.8932617,0.31620898437499996E2],[0.26457324218750017E2,31.5121094],[0.26768652343750006E2,0.31470361328124994E2],[27.2480469,0.31377880859374997E2],[0.27540039062499996E2,0.31212695312499992E2],[27.8299805,0.31195019531249997E2],[0.27967578125000017E2,31.0974121],[28.5148438,0.31050439453124994E2],[0.29072070312500014E2,0.30830273437499997E2],[29.2789062,30.8669434],[0.29591601562500017E2,0.31011523437499992E2],[0.29929785156250006E2,0.31227490234374994E2],[0.30049414062500002E2,0.31265429687499996E2],[30.2226562,31.2583984],[0.30395117187500006E2,0.31457617187499995E2],[30.5709961,31.472998],[0.30923535156250008E2,0.31566845703124994E2],[30.8841797,0.31522363281249998E2],[0.30562988281250004E2,31.4169922],[30.7004883,0.31403857421874996E2],[0.31001757812500014E2,0.31462792968749994E2],[31.0519531,0.31591552734374996E2],[0.31193945312500006E2,0.31587597656249994E2],[31.5244141,31.458252],[0.31606542968750006E2,0.31455761718749997E2],[0.31888964843750014E2,31.5414063],[0.31964257812500023E2,0.31502099609374994E2],[32.1360352,0.31341064453124996E2],[0.32076074218750016E2,0.31344482421874996E2],[31.8921875,0.31482470703124996E2],[0.31875878906250023E2,0.31413720703124994E2],[31.7710937,31.2925781],[32.0084961,0.31220507812499992E2],[32.1017578,0.31092822265624996E2],[32.206543,31.119043],[0.32281835937500006E2,0.31200878906249997E2],[32.2162109,31.29375],[32.3235352,0.31256054687499994E2],[32.6033203,31.06875],[32.9015625,31.1109375],[33.1298828,0.31168164062499997E2],[33.1943359,0.31084521484374992E2],[33.3779297,0.31130957031249995E2],[33.6665039,0.31130419921874996E2],[0.33902539062500004E2,31.180957],[34.1981445,0.31322607421875002E2]]]}}],"_labels":{"EG":"Egypt"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/EH.json b/src/api-umbrella/admin-ui/public/maps/EH.json new file mode 100644 index 000000000..88275a337 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/EH.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"EH"},"geometry":{"type":"Polygon","coordinates":[[[-8.68334961,27.2859375],[-8.68222656,0.25995507812499994E2],[-0.12016308593749983E2,25.9954102],[-0.12016308593749983E2,0.23576464843750003E2],[-12.0234375,23.4675781],[-0.12083349609374977E2,23.4354492],[-0.12372900390624977E2,0.23318017578124994E2],[-12.559375,0.23290820312500003E2],[-0.12620410156249989E2,23.2713379],[-13.0314941,23.0002441],[-0.13120898437499989E2,22.884082],[-0.13153271484374983E2,0.22820507812499997E2],[-13.1665039,0.22753222656250003E2],[-0.13155957031249983E2,22.6893066],[-0.13107324218749993E2,0.22560742187499997E2],[-0.13094335937499977E2,0.22495996093749994E2],[-0.13016210937499977E2,0.21333935546874994E2],[-0.16964550781249983E2,0.21329248046874994E2],[-17.0059082,21.1424316],[-0.17042382812499994E2,0.21008007812499997E2],[-17.0639648,20.8988281],[-0.17048046874999983E2,0.20806152343749996E2],[-0.17098779296874994E2,0.20856884765624994E2],[-0.17003076171874994E2,21.4207031],[-16.730957,21.4703125],[-16.5810059,21.4810547],[-0.16190869140624983E2,21.4810547],[-16.0410156,21.5005859],[-0.15920849609374983E2,21.5005859],[-0.15750927734374981E2,21.4908203],[-15.4609375,21.4507812],[-0.15290966796874981E2,21.4507812],[-15.1508789,0.21441015624999988E2],[-0.14971142578124983E2,0.21441015624999988E2],[-14.8408203,21.4507812],[-14.7509766,21.5005859],[-0.14670849609374981E2,21.6001953],[-0.14610791015624983E2,21.7505859],[-14.6308594,21.8609375],[-0.14581005859374981E2,21.9107422],[-0.14520996093749998E2,21.9908691],[-0.14460888671874983E2,22.040625],[-14.440918,22.0806641],[-0.14380810546874985E2,22.1207031],[-0.14311035156249998E2,22.1910156],[-0.14221191406249998E2,22.3101562],[-0.14190869140624981E2,22.4507812],[-0.14190869140624981E2,22.5904297],[-0.14170898437499998E2,0.22760351562499988E2],[-14.1210938,22.9605469],[-14.1010742,0.23100195312499988E2],[-14.0209961,23.4107422],[-0.13980908203124983E2,23.5201172],[-13.8911133,23.6910156],[-0.13840771484374983E2,0.23750585937499988E2],[-0.13770947265624983E2,23.790625],[-0.13661083984374983E2,23.8306641],[-13.5810547,23.8707031],[-13.3911133,23.9410156],[-0.13310986328124983E2,23.9810547],[-13.230957,0.24090429687499988E2],[-13.1210938,24.3003906],[-0.13061035156249998E2,24.4009766],[-0.12991162109374981E2,24.4703125],[-12.9111328,0.24520117187499988E2],[-12.7109375,24.6304687],[-12.5009766,24.7701172],[-12.4311523,24.8306641],[-0.12360839843749998E2,24.9703125],[-0.12310986328124981E2,25.1109375],[-12.230957,0.25420507812499988E2],[-0.12170849609374983E2,25.6402344],[-12.1308594,25.7310547],[-12.0810547,25.8707031],[-0.12060986328124983E2,25.9908203],[-12.0307617,26.0308594],[-11.8808594,26.0708984],[-11.7548828,26.0865234],[-0.11718212890624983E2,26.1041016],[-0.11684521484374981E2,0.26213476562499995E2],[-11.637207,26.2955078],[-0.11553173828124983E2,26.4009766],[-11.4707031,26.5201172],[-11.3378906,26.6333984],[-0.11316845703124983E2,26.6841797],[-0.11316845703124983E2,26.7447266],[-0.11361279296874983E2,26.7935547],[-11.3925781,26.8833984],[-0.11263623046874983E2,0.26910742187499995E2],[-0.11046826171874983E2,26.9703125],[-0.10922802734374983E2,27.0103516],[-0.10757763671874983E2,27.0201172],[-0.10654248046874983E2,27.0005859],[-10.5512695,26.9908203],[-0.10354931640624983E2,26.9009766],[-10.2514648,26.8609375],[-10.1894531,26.8609375],[-0.10066845703124981E2,26.9087891],[-10.0327148,0.26910742187499995E2],[-0.9900341796874983E1,26.8501953],[-9.73535156,26.8609375],[-9.48730469,27.0503906],[-0.9413037109374983E1,27.0884766],[-0.9352978515624983E1,27.0982422],[-0.9208447265624983E1,27.1001953],[-9.0019043,27.0904297],[-8.79487305,27.1207031],[-8.75385742,27.1509766],[-8.75385742,27.1910156],[-8.79682617,27.3082031],[-8.80268555,27.3609375],[-8.77436523,27.4605469],[-8.78457031,27.5308594],[-8.81782227,0.27656445312499997E2],[-8.68334961,0.27656445312499997E2],[-8.68334961,27.2859375]]]}}],"_labels":{"EH":"W. Sahara"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/ER.json b/src/api-umbrella/admin-ui/public/maps/ER.json new file mode 100644 index 000000000..6e2d87772 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/ER.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"ER"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.40141210937500006E2,0.15696142578125034E2],[40.2500977,0.15703466796875004E2],[40.4082031,0.15629199218750072E2],[0.40399023437500006E2,0.15579882812500044E2],[0.39975195312500006E2,0.15612451171875023E2],[39.9399414,0.15744531250000023E2],[40.0425781,0.15875488281249972E2],[40.1324219,15.7952637],[0.40141210937500006E2,0.15696142578125034E2]]],[[[40.0764648,0.16082421875000023E2],[40.1100586,0.15985742187500051E2],[39.9960938,16.0426758],[40.0764648,0.16082421875000023E2]]],[[[38.6094727,18.0050781],[38.9117188,0.17427148437499994E2],[39.0344727,0.17085546875000034E2],[39.1425781,0.16729150390624966E2],[0.39222558593749994E2,0.16193701171875063E2],[39.2989258,15.9210938],[39.4222656,0.15786669921874989E2],[39.506543,0.15532128906249994E2],[39.63125,15.4525391],[39.7208008,0.15213671875000058E2],[39.7855469,15.1248535],[0.39819433593750006E2,0.15201269531250022E2],[39.790332,0.15318847656249986E2],[39.8637695,0.15470312500000034E2],[40.0410156,0.15334521484374987E2],[0.40084082031250006E2,15.1519531],[40.2041016,0.15014111328124983E2],[40.4365234,0.14963964843749991E2],[40.634375,0.14883007812500011E2],[0.40799316406249964E2,0.14743017578125004E2],[41.1764648,0.14620312500000052E2],[41.4796875,0.14243896484375014E2],[41.6582031,0.13983056640624993E2],[42.2451172,0.13587646484374986E2],[42.3464844,0.13398095703125007E2],[42.3993164,0.13212597656249969E2],[0.42522851562499994E2,13.2214844],[0.42734472656250006E2,0.13018603515624973E2],[0.42796191406250074E2,0.12864257812500057E2],[42.9695313,0.12808349609375028E2],[42.9990234,0.12899511718750048E2],[0.43082910156250044E2,0.12824609374999966E2],[43.1166992,0.12708593749999963E2],[42.865918,0.12622802734374986E2],[0.42767480468749994E2,0.12422851562500012E2],[42.6701172,12.3765625],[42.4793945,0.12513623046875026E2],[42.3785156,12.4664063],[42.1342773,0.12771435546874969E2],[0.41952148437499964E2,12.8823242],[41.7650391,0.13183935546874991E2],[41.625,0.13313232421875043E2],[41.3628906,0.13499804687500031E2],[41.1223633,0.13736132812500045E2],[0.40938574218750006E2,0.13983105468749997E2],[40.7695313,0.14144482421875011E2],[40.5244141,14.2251953],[40.2214844,14.4311523],[40.0621094,0.14459130859374993E2],[39.8951172,0.14440673828125043E2],[0.39756152343750074E2,0.14499023437500028E2],[0.39531835937500006E2,14.5367188],[0.39270117187500006E2,0.14470312500000048E2],[0.39198046875000074E2,0.14479394531250037E2],[39.0742187,0.14628222656249974E2],[38.8120117,0.14482324218750007E2],[38.5043945,0.14424414062500018E2],[38.3769531,0.14470410156249983E2],[38.2214844,0.14649658203124986E2],[0.38002539062500006E2,0.14737109375000044E2],[0.37884179687499994E2,0.14852294921874972E2],[0.37571191406249994E2,0.14149072265624966E2],[0.37507226562499994E2,0.14156396484375035E2],[37.3537109,0.14372460937500009E2],[0.37257226562499994E2,0.14453759765625051E2],[0.37132617187500074E2,0.14406054687500015E2],[0.37024511718750006E2,0.14271972656250057E2],[36.8119141,0.14315039062500034E2],[36.5243164,0.14256835937499986E2],[36.4267578,0.15132080078125043E2],[0.36521777343750074E2,0.15250146484375021E2],[36.6791992,0.15726367187500045E2],[36.8134766,0.15993945312500045E2],[36.9137695,0.16296191406250045E2],[0.36887792968750006E2,0.16624658203124994E2],[36.9787109,0.16800585937500045E2],[37.0089844,0.17058886718750017E2],[37.1695313,17.0414063],[37.4110352,0.17061718749999955E2],[37.5101563,17.2881348],[37.7824219,0.17458007812500057E2],[38.025293,17.537793],[38.2535156,0.17584765625000017E2],[38.3737305,0.17717333984375045E2],[38.4224609,0.17823925781249983E2],[38.6094727,18.0050781]]]]}}],"_labels":{"ER":"Eritrea"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/ES.json b/src/api-umbrella/admin-ui/public/maps/ES.json new file mode 100644 index 000000000..3c28e722c --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/ES.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"ES"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-17.8879395,0.27809570312500053E2],[-17.9847656,27.6463867],[-0.18160546874999937E2,0.27761474609375025E2],[-0.18043359374999966E2,0.27768115234375045E2],[-0.17924511718749983E2,27.8501465],[-17.8879395,0.27809570312500053E2]]],[[[-0.15400585937499955E2,0.28147363281250023E2],[-0.15389160156249941E2,27.874707],[-15.559375,0.27746972656249994E2],[-15.7103027,0.27784082031250023E2],[-0.15807324218749953E2,0.27887548828125034E2],[-0.15809472656249964E2,0.27994482421874977E2],[-0.15682763671874996E2,28.1540527],[-0.15400585937499955E2,0.28147363281250023E2]]],[[[-0.17184667968749977E2,28.0219727],[-17.2739258,28.0382813],[-0.17324902343749955E2,0.28117675781250025E2],[-0.17258593749999957E2,0.28203173828125045E2],[-17.1296387,28.155957],[-17.1010742,0.28083447265624983E2],[-0.17184667968749977E2,28.0219727]]],[[[-0.16334472656249968E2,0.28379931640624985E2],[-16.4182129,28.151416],[-16.5427734,0.28032080078125006E2],[-16.6580078,0.28007177734374977E2],[-16.7947266,0.28149169921875057E2],[-0.16905322265625017E2,28.3395996],[-16.5174316,0.28412695312500006E2],[-0.16318994140624937E2,0.28558203124999977E2],[-16.1236328,28.5759766],[-16.1191406,28.5282715],[-0.16334472656249968E2,0.28379931640624985E2]]],[[[-0.14196777343749943E2,0.28169287109375063E2],[-0.14332617187500006E2,0.28056005859374977E2],[-0.14491796874999922E2,0.28100927734374977E2],[-0.14355566406249977E2,28.1296875],[-0.14231982421875017E2,0.28215820312500025E2],[-14.1525879,0.28406640625000023E2],[-0.13954150390624989E2,0.28741455078124996E2],[-13.8572266,0.28738037109375032E2],[-0.13827587890624955E2,28.5851562],[-0.13928027343749989E2,0.28253466796874985E2],[-0.14196777343749943E2,0.28169287109375063E2]]],[[[-17.8342773,28.4932129],[-0.18000781249999985E2,0.28758251953124955E2],[-0.17928808593749977E2,0.28844580078125063E2],[-0.17797558593749983E2,28.8467773],[-17.7445313,0.28786572265624958E2],[-17.7580078,28.5690918],[-17.8342773,28.4932129]]],[[[-0.13715966796874966E2,0.28911230468750034E2],[-13.7839844,28.845459],[-13.8599121,0.28869091796874983E2],[-13.7881836,0.29056103515624983E2],[-0.13535058593749966E2,29.1442871],[-0.13463574218749953E2,0.29237207031250023E2],[-0.13477929687499966E2,0.29006591796875025E2],[-0.13715966796874966E2,0.28911230468750034E2]]],[[[1.59394531,0.38672070312499955E2],[1.40576172,0.38670996093750006E2],[1.43632813,38.7682129],[1.59394531,0.38672070312499955E2]]],[[[1.44521484,38.9187012],[1.40898438,0.38857275390625034E2],[1.22333984,38.9038574],[1.34863281,39.0808105],[1.56445312,39.1210449],[1.62363281,39.0388184],[1.44521484,38.9187012]]],[[[3.1453125,39.7900879],[3.24111328,0.39756689453125034E2],[3.44892578,39.7612305],[3.46181641,39.6977539],[3.24472656,39.3866211],[3.07285156,39.3012695],[2.76982422,39.4102539],[2.74599609,39.5102539],[2.63408203,39.5562012],[2.49951172,39.4778809],[2.39433594,0.39540380859375034E2],[2.37128906,39.6130859],[2.78496094,0.39854833984375034E2],[3.15869141,39.9705078],[3.19863281,39.8898437],[3.1453125,39.7900879]]],[[[4.29365234,39.8418457],[4.27529297,0.39830273437500004E2],[3.84267578,39.9763672],[3.85341797,40.0630371],[4.05917969,0.40075097656249966E2],[4.22578125,0.40032373046874966E2],[4.31513672,39.9172363],[4.29365234,39.8418457]]],[[[-7.69814453,43.7645508],[-7.50361328,43.7399414],[-7.26196289,0.43594628906249966E2],[-7.06098633,43.5539551],[-6.90068359,43.5856445],[-6.47568359,43.5789063],[-6.08012695,43.5949219],[-5.84667969,0.43645068359375045E2],[-5.66582031,0.43582470703124976E2],[-5.31572266,0.43553173828124955E2],[-5.10527344,43.5018555],[-4.52304687,43.4157227],[-4.31279297,43.4147461],[-3.88935547,43.4994141],[-3.77402344,0.43477880859375006E2],[-3.60463867,43.5194824],[-3.41787109,43.451709],[-3.04560547,43.371582],[-2.87504883,0.43454443359375006E2],[-2.60708008,43.4127441],[-2.33710937,43.3280273],[-1.99130859,0.43345068359375034E2],[-1.79404297,0.43407324218750006E2],[-1.75327148,43.324707],[-1.41069336,0.43240087890625034E2],[-1.48046875,0.43071142578125006E2],[-1.28544922,43.0596191],[-0.933837891,42.9495117],[-0.762646484,42.9397949],[-0.586425781,0.42798974609374966E2],[-0.299316406,42.8253418],[-0.0411621094,0.42689111328124966E2],[0.201367188,0.42719335937500006E2],[0.25546875,0.42692919921875045E2],[0.631640625,0.42689599609374994E2],[0.696875,0.42845117187500044E2],[1.34941406,42.6906738],[1.42832031,42.5958984],[1.428125,42.4613281],[1.48623047,42.4344727],[1.70605469,0.42503320312500044E2],[1.92792969,42.4263184],[2.03271484,42.3535156],[2.20039063,42.4209473],[2.65166016,0.42340478515624994E2],[2.67001953,0.42393017578124955E2],[2.97001953,42.4672363],[3.21142578,42.4311523],[3.30673828,0.42288964843749994E2],[3.16640625,42.2564941],[3.15039062,42.1624512],[3.23808594,0.42082226562499955E2],[3.24804688,41.9442383],[3.00488281,41.7674316],[2.3109375,41.4665039],[2.08261719,41.2874023],[1.56660156,41.1956055],[1.03291016,41.0620605],[0.714648438,0.40822851562500006E2],[0.891113281,40.7223633],[0.660058594,40.6133301],[0.59609375,40.614502],[0.363671875,40.319043],[-0.0751464844,39.8759277],[-0.327001953,0.39519873046875006E2],[-0.328955078,39.4170898],[-0.204931641,0.39062597656250034E2],[-0.0341308594,0.38891210937500006E2],[0.154882812,0.38824658203124955E2],[0.2015625,38.7591797],[-0.052734375,38.5856934],[-0.38125,0.38435644531250034E2],[-0.520800781,0.38317285156249966E2],[-0.550683594,38.203125],[-0.646777344,38.1518555],[-0.683203125,37.992041],[-0.823095703,0.37711621093749955E2],[-0.721582031,37.6310547],[-0.822167969,37.5807617],[-1.32753906,0.37561132812500034E2],[-1.6409668,37.3869629],[-1.79760742,37.2328613],[-1.93930664,36.9458496],[-2.11152344,36.7766602],[-2.18769531,0.36745458984375034E2],[-2.30556641,36.8198242],[-2.59570312,0.36806494140625034E2],[-2.78754883,0.36714746093749994E2],[-2.90185547,36.7431641],[-3.25913086,0.36755761718749994E2],[-3.43125,0.36707910156250016E2],[-3.8277832,36.7560547],[-4.3668457,36.7181152],[-4.67412109,0.36506445312500006E2],[-4.93530273,36.5020508],[-5.17148437,0.36423779296874955E2],[-5.3296875,36.2357422],[-5.3609375,0.36134912109374994E2],[-5.44360352,36.1505859],[-5.4625,36.0737793],[-5.62548828,36.0259277],[-5.80839844,36.0883301],[-5.96069336,0.36181738281250034E2],[-6.04067383,36.1884277],[-6.17045898,36.3337891],[-6.26894531,36.5967285],[-6.38413086,36.6370117],[-6.41225586,0.36728857421875034E2],[-6.32832031,36.8481445],[-6.21679688,36.9135742],[-6.32094727,36.9084961],[-6.39619141,36.8316406],[-6.49243164,36.9546387],[-6.88461914,0.37194238281249966E2],[-6.86376953,37.2789062],[-6.9746582,37.1984375],[-7.17495117,37.2087891],[-7.40615234,37.1794434],[-7.50351562,37.585498],[-7.44394531,37.7282715],[-7.18544922,38.0063477],[-7.02285156,38.0447266],[-6.95756836,38.1878906],[-7.10639648,0.38181005859375006E2],[-7.34301758,38.4574219],[-7.28154297,38.7145508],[-7.04604492,0.38907031250000045E2],[-6.99794922,39.0564453],[-7.17241211,39.1352051],[-7.30576172,39.3381348],[-7.33544922,39.4651367],[-7.44511719,39.5361816],[-7.53569336,39.6615723],[-7.45410156,39.6806641],[-7.11767578,0.39681689453125045E2],[-7.03671875,0.39713964843750034E2],[-6.91118164,0.39937109375000034E2],[-6.89609375,40.0218262],[-7.02783203,40.142627],[-7.01469727,0.40208349609375034E2],[-6.81015625,0.40343115234375034E2],[-6.84794922,0.40410986328125006E2],[-6.81835938,40.6540527],[-6.85771484,40.8783203],[-6.9284668,41.0091309],[-6.77578125,41.1077148],[-6.69013672,41.214502],[-6.403125,41.3753906],[-6.2125,41.5320313],[-6.24311523,41.6018066],[-6.39169922,41.6653809],[-6.5421875,0.41672509765624994E2],[-6.55751953,0.41874121093750034E2],[-6.61826172,41.9423828],[-6.83320312,41.9641602],[-7.03046875,41.9506348],[-7.14711914,41.9811523],[-7.20961914,41.8952637],[-7.40361328,41.8336914],[-7.69306641,41.8884766],[-7.92084961,41.8836426],[-8.09443359,41.814209],[-8.22475586,0.41895849609375006E2],[-8.12998047,42.0181641],[-8.21308594,0.42133691406249966E2],[-8.53808594,42.0693359],[-8.77714844,0.41941064453124994E2],[-8.87832031,41.946875],[-8.88720703,0.42105273437500045E2],[-8.69091797,42.2741699],[-8.81582031,0.42285253906250034E2],[-8.7300293,0.42411718750000034E2],[-8.81210937,0.42470068359375034E2],[-8.81152344,0.42640332031249976E2],[-8.98779297,42.5856445],[-9.03505859,42.6623535],[-8.92719727,42.798584],[-0.9041601562499975E1,42.8140137],[-0.9235205078124977E1,42.9769043],[-0.9178076171874977E1,43.1740234],[-8.87368164,0.43334423828124976E2],[-8.665625,43.3166016],[-8.53706055,0.43337060546874994E2],[-8.24892578,43.4394043],[-8.25673828,43.5798828],[-8.0046875,43.6943848],[-7.85273437,43.7069824],[-7.69814453,43.7645508]]]]}}],"_labels":{"ES":"Spain"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/ET.json b/src/api-umbrella/admin-ui/public/maps/ET.json new file mode 100644 index 000000000..6bc5169c2 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/ET.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"ET"},"geometry":{"type":"Polygon","coordinates":[[[38.4314453,0.14428613281249994E2],[38.5043945,14.4244141],[38.8120117,0.14482324218749994E2],[39.0742188,0.14628222656250003E2],[39.1980469,0.14479394531249993E2],[0.39270117187500006E2,14.4703125],[0.39531835937500006E2,14.5367188],[39.7561523,14.4990234],[0.39895117187500006E2,0.14440673828124998E2],[40.0621094,0.14459130859374993E2],[40.2214844,0.14431152343749998E2],[40.5244141,14.2251953],[40.7695312,0.14144482421874997E2],[0.40938574218750006E2,0.13983105468749997E2],[41.1223633,0.13736132812500001E2],[41.3628906,0.13499804687500003E2],[41.625,13.3132324],[0.41765039062500016E2,0.13183935546874991E2],[41.9521484,12.8823242],[42.1342773,0.12771435546874997E2],[42.3785156,12.4664063],[41.9958984,11.9123535],[41.815625,0.11723779296874993E2],[41.7665039,11.5891113],[41.7646484,0.11412890624999989E2],[41.7982422,10.9804688],[41.9574219,10.9410156],[42.3081055,0.11005224609374991E2],[0.42557714843750006E2,0.11080761718749997E2],[0.42654980468750004E2,0.11078320312499995E2],[42.7830078,0.11009277343749998E2],[42.9227539,0.10999316406249989E2],[42.6595703,0.10621386718749989E2],[42.7836914,10.3696289],[42.8416016,0.10203076171874997E2],[42.9125,0.10140820312499997E2],[43.0689453,0.9926220703124997E1],[43.1816406,9.87998047],[43.303125,0.9609082031249997E1],[0.43482519531250006E2,9.37949219],[43.6205078,9.33740234],[44.0228516,8.98603516],[45.5554688,8.48300781],[46.9195312,8.02612305],[46.9782227,7.99707031],[47.9782227,7.99707031],[0.46422949218750006E2,6.49726562],[0.45934960937500016E2,5.9972168],[44.9405273,4.91201172],[44.9116211,4.89990234],[43.9888672,4.95053711],[43.5834961,4.85498047],[43.3339844,4.75039062],[0.43125683593750004E2,4.64448242],[43.0160156,4.56333008],[42.8947266,4.36108398],[0.42791601562500006E2,4.29199219],[42.3551758,4.21225586],[42.228418,4.20166016],[42.0241211,4.13793945],[41.8839844,3.97773437],[41.7376953,3.97905273],[41.2208984,3.94355469],[41.087207,3.99194336],[40.7652344,4.27304687],[40.5287109,4.17763672],[40.0141602,3.94794922],[39.8421875,3.85146484],[39.6575195,3.57783203],[39.4944336,3.45610352],[39.2254883,3.47875977],[38.7527344,3.55898437],[0.38608007812500006E2,3.60009766],[38.225293,3.61899414],[38.0861328,3.64882812],[37.3825195,4.11083984],[36.9055664,4.41147461],[36.8236328,4.43012695],[36.0819336,4.44970703],[35.9787109,4.50380859],[35.9198242,4.61982422],[35.7630859,4.80800781],[35.7561523,4.95048828],[35.800293,5.15693359],[35.7914063,5.27856445],[35.7450195,5.34399414],[35.4686523,5.4190918],[0.35325292968750006E2,5.36489258],[35.2646484,5.41206055],[35.2683594,5.49228516],[35.0819336,5.67314453],[34.9835938,5.85830078],[34.9589844,6.04506836],[34.8380859,6.30014648],[34.7106445,6.66030273],[34.562793,6.77983398],[34.484375,6.89838867],[34.2792969,7.00283203],[34.0642578,7.22573242],[34.0204102,7.36796875],[0.33902441406250006E2,7.50952148],[0.33666113281250006E2,7.67099609],[33.2259766,7.76064453],[33.0146484,7.86855469],[0.33012597656250016E2,7.95151367],[33.2342773,8.39638672],[33.2810547,8.43725586],[33.409375,8.44775391],[33.7850586,8.43110352],[33.9533203,8.44350586],[34.0945313,8.58222656],[34.1015625,8.75185547],[34.0771484,0.9420996093749991E1],[34.1203125,9.7296875],[34.1852539,0.9918554687499991E1],[34.2915039,10.1247559],[0.34314843750000016E2,10.2515625],[34.2756836,10.528125],[34.4314453,10.7878418],[34.571875,0.10880175781249989E2],[34.7712891,0.10746191406249991E2],[34.9314453,0.10864794921874989E2],[0.34924902343750006E2,10.9621094],[0.34969140625000016E2,0.11161767578124994E2],[34.9607422,0.11276757812499993E2],[0.35007910156250006E2,0.11419873046874997E2],[35.0827148,11.748291],[35.1123047,0.11816552734374994E2],[35.2524414,11.9570312],[35.5960938,0.12537304687499997E2],[35.6702148,0.12623730468749997E2],[35.8206055,0.12684863281249989E2],[0.36107519531250006E2,0.12726464843749994E2],[0.36135351562500006E2,0.12805322265624994E2],[36.1601562,0.13093310546874989E2],[36.212207,13.2710938],[36.390625,0.13626074218749991E2],[36.4470703,13.842041],[0.36443945312500006E2,0.13988427734374994E2],[36.5243164,14.2568359],[36.6791016,0.14307568359374997E2],[36.8119141,14.3150391],[0.37024511718750006E2,14.2719727],[37.1326172,0.14406054687500003E2],[0.37257226562500016E2,0.14453759765624994E2],[37.3537109,0.14372460937499993E2],[37.5072266,0.14156396484374994E2],[37.5711914,0.14149072265624994E2],[37.8841797,14.8522949],[0.38002539062500006E2,14.7371094],[38.2214844,14.6496582],[38.4314453,0.14428613281249994E2]]]}}],"_labels":{"ET":"Ethiopia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/FI.json b/src/api-umbrella/admin-ui/public/maps/FI.json new file mode 100644 index 000000000..9f8f94568 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/FI.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"FI"},"geometry":{"type":"MultiPolygon","coordinates":[[[[21.6283203,60.1078125],[21.4860352,0.60126806640625034E2],[0.21634082031249985E2,60.1689941],[21.6283203,60.1078125]]],[[[0.21833203125000068E2,0.60140527343749994E2],[0.21695019531250068E2,60.1143555],[21.7047852,60.1723145],[0.21864355468750006E2,0.60201806640624966E2],[0.21833203125000068E2,0.60140527343749994E2]]],[[[0.22175097656249985E2,60.370752],[0.22354980468750057E2,60.3558594],[22.4155273,0.60303369140625044E2],[22.3128906,60.2699707],[0.22360546875000036E2,0.60165576171875045E2],[22.2583008,60.165625],[22.0771484,0.60286328124999955E2],[0.22175097656249985E2,60.370752]]],[[[0.21994238281250006E2,60.3366699],[0.21818652343750045E2,60.3818359],[0.21827246093750006E2,60.4699219],[0.21994238281250006E2,60.3366699]]],[[[0.21450878906250068E2,60.5295898],[21.4369141,0.60483056640624966E2],[21.3,60.4797852],[0.21214550781250068E2,60.6038574],[0.21450878906250068E2,60.5295898]]],[[[21.2177734,0.63241308593750034E2],[0.21421972656250034E2,63.2458984],[21.253418,0.63152001953124966E2],[21.0838867,0.63277539062499955E2],[0.21236328125000057E2,63.2777344],[21.2177734,0.63241308593750034E2]]],[[[0.24848242187500034E2,64.9910156],[24.6989258,64.9578125],[24.5786133,64.9785645],[0.24576562500000023E2,65.0428711],[24.7860352,65.0864258],[0.24970605468750023E2,65.0553223],[0.24848242187500034E2,64.9910156]]],[[[0.28047265625000023E2,69.9716797],[0.28411718750000034E2,69.8227539],[0.28800390625000063E2,69.7314941],[0.29141601562500025E2,69.6714355],[0.29333398437500048E2,69.472998],[0.29238867187500063E2,69.3939453],[0.28846289062500006E2,69.1769043],[0.28832617187500063E2,69.1189941],[28.9658203,69.0219727],[0.28414062500000057E2,68.9041504],[0.28453515625000023E2,68.8722656],[28.705957,68.8655273],[0.28752050781250002E2,68.7714355],[0.28479296875000014E2,68.5376465],[0.28470703125000053E2,68.4883789],[0.28685156250000034E2,68.1897949],[0.29343847656250006E2,68.0618652],[0.29524218750000017E2,67.9291016],[0.29821582031250017E2,67.7540039],[29.9791992,67.6885742],[29.9412109,67.5474609],[29.5722656,67.3243652],[0.29243359375000093E2,67.096582],[29.0870117,66.9709473],[0.29093066406250017E2,66.8492188],[29.2932617,66.6955078],[0.29464355468749968E2,66.5321777],[29.6708984,66.276123],[0.29903417968750006E2,66.0910645],[30.0875,65.7865234],[30.0953125,65.6816895],[0.29882617187500017E2,65.663623],[0.29715917968750063E2,65.6245605],[0.29819433593750006E2,65.56875],[29.7280273,65.4734375],[0.29714843750000025E2,65.3369629],[0.29629687500000017E2,65.223877],[29.8105469,65.2047363],[29.8108398,65.1079102],[29.6224609,65.039502],[0.29604199218750036E2,64.9684082],[29.7016602,64.845752],[0.29783203125000025E2,64.8042969],[0.30072851562500063E2,64.7650391],[30.1201172,64.6446289],[29.9855469,64.5577148],[0.30108105468750036E2,64.3661133],[0.30487890625000063E2,64.2365234],[0.30527929687500006E2,64.1411133],[30.5039063,64.0206055],[0.30210253906250074E2,63.8033203],[0.30004101562500093E2,63.7473145],[30.0553711,0.63689013671875045E2],[30.4185547,63.5040527],[0.30974804687500036E2,0.63300634765625034E2],[0.31180859375000093E2,0.63208300781250074E2],[0.31336718750000074E2,63.0680664],[0.31509277343750025E2,62.9553223],[0.31533984375000017E2,0.62885400390624994E2],[31.2856445,0.62567822265624955E2],[31.1867188,62.4813965],[0.30935742187500093E2,62.3237793],[30.565625,0.62127587890624994E2],[0.30306445312500017E2,0.61964843750000064E2],[0.29690136718750036E2,61.5460937],[0.29492382812500097E2,61.4442383],[0.29251660156250097E2,61.287793],[0.28739062500000014E2,61.0587402],[0.28662890625000045E2,61.002832],[28.4074219,60.8969238],[0.27797656250000074E2,60.5361328],[27.4624023,60.4648438],[27.2418945,60.5386719],[27.0755859,60.5251465],[26.9511719,60.4714844],[0.26721484375000014E2,60.4550781],[0.26534667968749968E2,0.60412890625000074E2],[0.26519726562500036E2,0.60471582031250016E2],[0.26601757812500068E2,0.60595605468749994E2],[0.26569335937500025E2,60.6245605],[0.26456445312500023E2,60.4667969],[0.26377734375000074E2,60.4240723],[0.26204687499999977E2,0.60406591796875034E2],[0.26036035156249994E2,60.4749023],[0.25955957031250023E2,0.60474218750000034E2],[0.26040234375000068E2,60.371582],[25.7580078,60.2675293],[25.6564453,0.60333203124999976E2],[25.4557617,60.2612305],[0.25267871093750017E2,60.2483398],[25.1558594,60.1940918],[0.24600488281250023E2,60.1142578],[24.4456055,60.0212891],[0.24342578125000045E2,60.042334],[23.7217773,59.9656738],[23.4635742,0.59986230468749994E2],[0.23181445312500017E2,0.59844921874999976E2],[0.22963867187500025E2,59.8263672],[0.23188476562500025E2,59.9722168],[23.1984375,60.0218262],[0.22994140625000057E2,60.0985352],[0.22867089843750023E2,60.2158203],[22.793457,60.0768066],[22.6461914,0.60028027343749976E2],[0.22462695312500045E2,0.60029199218749966E2],[0.22469726562499968E2,60.2013184],[0.22564257812500045E2,60.2055176],[0.22512304687500034E2,60.2813477],[22.5849609,0.60380566406249955E2],[0.22257910156250006E2,0.60400927734375024E2],[21.9339844,0.60500292968750024E2],[0.21854296875000014E2,60.5054199],[0.21805273437500063E2,60.5941406],[21.6132813,60.530957],[0.21436035156250057E2,0.60596386718749955E2],[21.3605469,0.60967480468749976E2],[21.3777344,0.61059228515625016E2],[0.21479101562500034E2,0.61170507812500034E2],[0.21513476562500045E2,0.61281201171874955E2],[21.4982422,0.61551953124999955E2],[0.21605957031250053E2,61.5915527],[0.21384863281250034E2,0.61914941406249994E2],[0.21255957031250063E2,0.61989648437500044E2],[0.21353710937499983E2,62.2238281],[0.21323437500000036E2,62.3425781],[21.165625,62.4140625],[0.21103613281250034E2,0.62622949218749994E2],[21.1957031,62.7905273],[21.4575195,62.95],[21.4735352,63.033252],[0.21650976562500063E2,63.0393066],[0.21568652343750074E2,63.1137207],[0.21545117187499983E2,0.63204296874999955E2],[0.21800390625000034E2,63.2376953],[21.8957031,63.2102539],[22.1203125,63.2441406],[22.3197266,63.3104492],[0.22243261718750034E2,63.4379395],[0.22345996093749985E2,63.4423828],[0.22527636718750045E2,0.63579980468750016E2],[0.22532324218750034E2,0.63647851562499994E2],[22.75625,63.6833496],[0.23014453125000017E2,63.8218262],[0.23248730468750068E2,63.8961426],[0.23493945312500017E2,64.0344727],[0.23598925781250074E2,64.040918],[0.23652929687500063E2,64.1341797],[23.9248047,64.2741211],[0.24022265625000074E2,64.3859863],[24.2783203,64.5152832],[0.24557910156250045E2,64.8010254],[0.24942187499999985E2,64.8840332],[0.25288183593750063E2,64.8603516],[0.25228027343750057E2,64.9510254],[25.3726563,65.0094727],[25.3402344,65.0986328],[0.25255859375000057E2,65.1432617],[0.25347851562500036E2,65.479248],[0.25241796875000034E2,65.5462891],[24.8393555,65.6603516],[0.24674902343750006E2,65.6707031],[24.581543,65.7571289],[0.24628027343750034E2,65.8591797],[24.4042969,65.7804687],[24.1554688,65.8052734],[24.0490234,65.9898438],[0.23907324218750034E2,66.1482422],[23.7514648,66.1911621],[0.23673828125000053E2,66.3807129],[23.7011719,66.4807617],[0.23865527343750045E2,66.5766113],[23.8941406,66.7068848],[0.23988574218750042E2,66.8105469],[0.23941796875000023E2,66.877832],[0.23677343750000063E2,67.0681152],[23.6230469,67.1841309],[0.23656640625000023E2,67.2678223],[0.23774902343750057E2,67.3286133],[0.23733593750000065E2,67.4229004],[0.23468066406250074E2,67.4499512],[23.5370117,67.5903809],[0.23487792968749996E2,67.796582],[23.5018555,67.8751953],[23.6388672,67.9543945],[0.23474218749999977E2,68.017334],[0.23318554687500065E2,68.1303223],[23.1825195,68.1366211],[23.0978516,68.2575684],[22.7824219,68.3910156],[21.9974609,68.5206055],[0.21616015625000045E2,68.6509766],[0.21183398437500017E2,68.8288086],[20.9185547,68.9069336],[0.20895117187500006E2,68.979834],[0.20622167968750006E2,69.0368652],[0.20675878906250006E2,69.0694824],[0.20889257812500063E2,69.0714355],[0.21065722656250017E2,69.041748],[21.127832,69.0808105],[0.21052636718750023E2,69.1865723],[21.2667969,69.2736816],[0.21621777343750068E2,69.2707031],[0.22300390625000034E2,68.8558594],[0.22410937500000074E2,68.719873],[23.0716797,68.6743652],[0.23144335937500017E2,68.6425781],[0.23324023437500017E2,68.6489746],[23.7070312,68.7138672],[23.8540039,68.8059082],[23.9973633,68.7984375],[24.3320313,68.7115234],[0.24703222656249974E2,68.652832],[24.9414063,68.5932617],[25.0869141,68.6395996],[0.25172851562499996E2,68.7652832],[0.25357128906250068E2,68.8624512],[0.25575292968750006E2,68.8871582],[0.25748339843750014E2,68.9901367],[0.25748632812500063E2,69.2314453],[0.25850195312500063E2,69.3665039],[0.26011523437500074E2,69.6526367],[0.26308203125000034E2,69.7819336],[0.26525390625000057E2,69.9150391],[0.26740234375000025E2,69.9330566],[0.27108691406250042E2,69.9046875],[0.27205664062499977E2,69.9187012],[0.27591699218750023E2,70.0422363],[0.27889941406250045E2,70.0616699],[0.28047265625000023E2,69.9716797]]]]}}],"_labels":{"FI":"Finland"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/FJ.json b/src/api-umbrella/admin-ui/public/maps/FJ.json new file mode 100644 index 000000000..0c622cc6a --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/FJ.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"FJ"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.17462968750000002E3,-21.6950195],[0.17462968750000002E3,-21.6950195],[0.17462968750000002E3,-21.6950195],[0.17462968750000002E3,-21.6950195]]],[[[-0.17871162109374998E3,-20.6677734],[-0.17871162109374998E3,-20.6677734],[-0.17871162109374998E3,-20.6677734],[-0.17871162109374998E3,-20.6677734]]],[[[-178.535107,-0.19166015625000014E2],[-0.17859594726562497E3,-0.19151367187499957E2],[-0.17858930664062504E3,-0.19118847656249997E2],[-178.535107,-0.19166015625000014E2]]],[[[0.17848789062500018E3,-18.9741211],[178.487695,-0.19017089843749954E2],[178.358984,-0.19045605468749997E2],[0.17828798828124994E3,-0.19003710937499985E2],[0.17816210937500009E3,-19.1214844],[0.17802080078125007E3,-0.19151660156250017E2],[0.17795869140624998E3,-0.19121582031250014E2],[0.17805195312499998E3,-0.19060156250000034E2],[0.17810410156250012E3,-0.19066210937500017E2],[0.17820839843750005E3,-0.18969628906249966E2],[0.17833427734375013E3,-18.9344727],[0.17848789062500018E3,-18.9741211]]],[[[-179.799854,-0.18940332031250037E2],[-179.851221,-19.0029297],[-179.831104,-18.9242188],[-179.799854,-0.18940332031250037E2]]],[[[-178.761914,-18.2338867],[-178.773633,-18.2524414],[-0.17884790039062494E3,-18.2020508],[-178.763086,-18.1914062],[-178.761914,-18.2338867]]],[[[0.17934931640625015E3,-18.1023438],[0.17925351562500018E3,-0.18030566406249974E2],[0.17930644531250013E3,-0.17944042968750026E2],[0.17936240234375018E3,-0.18065234375000017E2],[0.17934931640625015E3,-18.1023438]]],[[[-178.988086,-0.17976660156250006E2],[-0.17901840820312495E3,-0.17991796874999977E2],[-0.17907900390624997E3,-0.17944140625000045E2],[-0.17904760742187497E3,-17.9204102],[-178.988086,-0.17976660156250006E2]]],[[[-0.17825112304687497E3,-17.9527344],[-0.17830683593750004E3,-0.17963281250000037E2],[-178.357227,-0.17920898437500014E2],[-178.325391,-0.17875781249999974E2],[-0.17828032226562496E3,-17.8864258],[-0.17825112304687497E3,-17.9527344]]],[[[178.827539,-17.7290039],[0.17877607421875007E3,-0.17746777343749983E2],[0.17874765625000018E3,-0.17685742187499983E2],[0.17878710937500003E3,-0.17624414062500005E2],[0.17883105468750009E3,-0.17618847656250026E2],[0.17885253906250003E3,-17.68125],[178.827539,-17.7290039]]],[[[0.17828017578124994E3,-0.17371972656250005E2],[0.17828017578124994E3,-17.4162109],[0.17833857421875015E3,-0.17438476562499957E2],[0.17841093750000013E3,-17.5230469],[0.17859160156249996E3,-0.17651464843750006E2],[0.17857490234375013E3,-17.7493164],[0.17861787109374998E3,-17.9328125],[0.17866767578125004E3,-18.0808594],[178.597363,-18.1089844],[178.486719,-0.18112304687500014E2],[0.17833154296874991E3,-0.18135253906249986E2],[0.17816015625000003E3,-18.2501953],[0.17795546875000002E3,-0.18264062500000023E2],[177.84707,-0.18254882812500014E2],[0.17777080078125007E3,-0.18219531250000017E2],[177.636426,-0.18181054687499994E2],[0.17745732421875002E3,-0.18148242187499957E2],[177.321387,-0.18077539062500037E2],[0.17726347656250013E3,-0.17968652343749966E2],[0.17726396484375007E3,-17.8634766],[0.17736015625000013E3,-0.17820019531249983E2],[177.423242,-0.17737304687499996E2],[0.17740068359375002E3,-0.17631640624999974E2],[177.504492,-0.17539550781250043E2],[0.17761796875000007E3,-0.17461035156250034E2],[0.17781796875000012E3,-17.3884766],[0.17794023437499996E3,-0.17395117187500006E2],[0.17818759765625012E3,-17.3129883],[0.17824716796875018E3,-17.3291016],[0.17828017578124994E3,-0.17371972656250005E2]]],[[[0.17942236328124997E3,-17.3667969],[0.17938896484375005E3,-0.17393847656250017E2],[0.17937314453125006E3,-17.2561523],[0.17943281250000007E3,-0.17271582031249977E2],[0.17942236328124997E3,-17.3667969]]],[[[-0.17895649414062507E3,-0.17272851562499966E2],[-179.003906,-0.17294921875000025E2],[-178.971484,-17.2126953],[-179.005029,-17.1483398],[-178.914844,-0.17223046875000037E2],[-0.17895649414062507E3,-0.17272851562499966E2]]],[[[0.17723417968750002E3,-0.17147070312500016E2],[0.17718281250000004E3,-0.17163867187499974E2],[0.17721015625000007E3,-0.17084277343750017E2],[177.287402,-17.0486328],[0.17727578124999997E3,-0.17104882812500033E2],[0.17723417968750002E3,-0.17147070312500016E2]]],[[[180,-16.9630859],[179.925879,-17.000293],[0.17989697265625003E3,-16.9640625],[0.17993095703125002E3,-16.8759766],[180,-0.16785742187500034E2],[180,-16.9630859]]],[[[-0.17997490234374996E3,-0.16924804687500025E2],[-180,-0.16962988281249988E2],[-180,-16.7855469],[-0.17986098632812502E3,-16.6882812],[-0.17982231445312496E3,-16.765332],[-0.17986777343749998E3,-16.850293],[-0.17997490234374996E3,-0.16924804687500025E2]]],[[[180,-0.16540039062499986E2],[180,-0.16540039062499986E2],[180,-0.16540039062499986E2],[180,-0.16540039062499986E2]]],[[[-0.17992944335937503E3,-0.16502832031250037E2],[-179.999951,-0.16540039062499986E2],[-179.999951,-0.16488867187500034E2],[-179.900928,-0.16431542968749994E2],[-0.17992944335937503E3,-0.16502832031250037E2]]],[[[0.17999921875000004E3,-0.16168554687499974E2],[179.848242,-16.3016602],[0.17974814453125006E3,-16.4462891],[0.17961914062500009E3,-0.16527734374999966E2],[0.17956416015625004E3,-0.16636914062499997E2],[0.17956816406249996E3,-0.16747460937499966E2],[0.17969707031250013E3,-0.16631933593749963E2],[0.17984101562500015E3,-16.5375],[0.17993037109375004E3,-16.5194336],[179.890039,-16.6669922],[179.92793,-16.7444336],[179.714746,-0.16743554687499966E2],[0.17958896484375012E3,-0.16787011718750023E2],[0.17941933593750005E3,-16.806543],[0.17934599609375002E3,-16.7697266],[179.32334,-0.16718066406250017E2],[0.17920234375000004E3,-16.7126953],[179.055469,-16.8135742],[179.006836,-16.9001953],[178.883691,-16.8860352],[0.17880292968750004E3,-16.9521484],[0.17870664062500018E3,-16.9761719],[0.17860371093750015E3,-16.8005859],[178.497461,-16.7878906],[0.17851376953125012E3,-0.16726074218749957E2],[0.17858359375000012E3,-16.621875],[0.17868632812500007E3,-16.665625],[0.17880507812499994E3,-0.16631445312500034E2],[0.17886572265625003E3,-0.16540039062499986E2],[0.17896054687500018E3,-16.4828125],[179.091406,-16.4375],[0.17935917968750002E3,-0.16379882812500043E2],[0.17955175781250003E3,-0.16249902343750023E2],[0.17971503906250004E3,-16.2076172],[179.848145,-0.16214257812500048E2],[180,-16.1529297],[0.17999921875000004E3,-0.16168554687499974E2]]],[[[-0.17995615234374998E3,-16.1492188],[-0.17995615234374998E3,-16.1492188],[-0.17995615234374998E3,-16.1492188],[-0.17995615234374998E3,-16.1492188]]],[[[177.121484,-0.12505468749999949E2],[177.00625,-12.4911133],[0.17711806640624997E3,-0.12482324218750037E2],[177.121484,-0.12505468749999949E2]]]]}}],"_labels":{"FJ":"Fiji"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/FK.json b/src/api-umbrella/admin-ui/public/maps/FK.json new file mode 100644 index 000000000..d5116743d --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/FK.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"FK"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-59.682666,-52.2316406],[-59.746582,-52.2508789],[-59.7933105,-0.52134179687500016E2],[-59.6810059,-0.52180078124999945E2],[-59.682666,-52.2316406]]],[[[-0.58438818359375006E2,-0.52011035156249974E2],[-58.4327148,-52.0990234],[-0.58541406250000016E2,-52.028418],[-0.58438818359375006E2,-0.52011035156249974E2]]],[[[-61.01875,-51.7857422],[-0.60875976562500036E2,-51.7942383],[-60.9475586,-51.9462891],[-61.0319824,-51.9424805],[-61.1450195,-51.8394531],[-61.01875,-51.7857422]]],[[[-60.2862305,-0.51461914062500014E2],[-0.60141552734374955E2,-0.51480957031249986E2],[-59.9170898,-51.3880859],[-59.7884277,-51.4459961],[-59.3875977,-51.3599609],[-59.2680664,-51.4275391],[-59.4370117,-51.5926758],[-59.514209,-0.51626562499999984E2],[-59.9213867,-51.9695313],[-60.2463379,-51.9864258],[-60.3534668,-52.1399414],[-0.60508398437500006E2,-52.1947266],[-0.60686376953125034E2,-52.1883789],[-60.9614258,-52.0573242],[-60.7625,-51.9464844],[-0.60591064453124964E2,-51.9515625],[-60.3344727,-51.8395508],[-60.2384766,-0.51771972656250036E2],[-0.60276513671875016E2,-51.7166016],[-0.60500097656250006E2,-51.756543],[-60.5825195,-51.7126953],[-60.245166,-0.51638867187500004E2],[-60.3026367,-51.5804688],[-60.5058105,-51.4854492],[-60.568457,-0.51357812499999945E2],[-60.2862305,-0.51461914062500014E2]]],[[[-60.1117188,-51.3958984],[-60.2488281,-51.3959961],[-60.2753418,-51.2805664],[-60.0698242,-51.3079102],[-60.1117188,-51.3958984]]],[[[-58.8501953,-51.2699219],[-58.6975098,-51.3285156],[-58.50625,-0.51308105468750036E2],[-58.3787109,-51.3730469],[-58.5192383,-51.4239258],[-58.4737305,-51.509082],[-58.2345215,-0.51578613281249986E2],[-58.2893066,-51.4575195],[-58.2064453,-51.4046875],[-57.9765137,-51.384375],[-57.8084961,-51.5179688],[-0.57960449218749964E2,-51.5832031],[-57.7917969,-51.6361328],[-57.8381836,-51.7091797],[-58.1509277,-51.7654297],[-58.3359863,-51.8637695],[-58.6834961,-0.51936230468750004E2],[-58.6527832,-52.0992187],[-59.13125,-52.0079102],[-59.1958496,-52.0176758],[-59.0680176,-52.1730469],[-0.59162792968749955E2,-52.2017578],[-59.3415039,-52.1959961],[-0.59395654296874966E2,-0.52308007812499994E2],[-59.5322266,-52.2364258],[-59.6487305,-52.134375],[-59.6491699,-0.52077246093749956E2],[-59.5366699,-51.9706055],[-59.5708008,-51.9253906],[-59.2617676,-0.51737304687499986E2],[-59.0595215,-0.51685449218749994E2],[-0.59096630859374976E2,-0.51491406249999976E2],[-0.58886669921874926E2,-0.51357910156249964E2],[-58.9174805,-51.2720703],[-58.8501953,-51.2699219]]]]}}],"_labels":{"FK":"Falkland Is."}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/FM.json b/src/api-umbrella/admin-ui/public/maps/FM.json new file mode 100644 index 000000000..a2b2572c9 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/FM.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"FM"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.16298320312500007E3,5.32573242],[0.16299345703125002E3,5.27724609],[0.16292109375000004E3,5.31791992],[0.16298320312500007E3,5.32573242]]],[[[158.314844,6.81367187],[158.256543,6.79101562],[0.15818339843750002E3,6.80126953],[0.15816083984375004E3,6.8828125],[0.15812763671875004E3,6.90463867],[0.15813476562499997E3,6.94482422],[0.15818613281250006E3,6.97773438],[0.15829462890625004E3,6.95107422],[0.15833496093749997E3,6.89316406],[158.314844,6.81367187]]],[[[0.15164775390625002E3,7.34619141],[0.15157832031250007E3,7.33808594],[0.15162949218750012E3,7.39042969],[0.15164775390625002E3,7.34619141]]],[[[151.881445,7.43203125],[0.15186533203125012E3,7.46616211],[151.910547,7.46015625],[151.881445,7.43203125]]],[[[0.13814267578125006E3,9.50068359],[0.13806708984375004E3,9.41904297],[0.13806191406250005E3,9.44575195],[0.13811689453125004E3,9.55019531],[0.13818583984375007E3,0.9593310546874989E1],[0.13821357421875004E3,9.5472168],[138.18252,0.9507373046874973E1],[0.13814267578125006E3,9.50068359]]]]}}],"_labels":{"FM":"Micronesia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/FO.json b/src/api-umbrella/admin-ui/public/maps/FO.json new file mode 100644 index 000000000..464b334e6 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/FO.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"FO"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.69946289,61.4446289],[-6.77050781,61.4522461],[-6.88813477,61.5347656],[-6.93486328,61.6343262],[-6.740625,61.5705078],[-6.69946289,61.4446289]]],[[[-6.62319336,61.805957],[-6.67016602,0.61768652343750034E2],[-6.83916016,61.8407715],[-6.88476562,0.61899121093749976E2],[-6.66210937,0.61861767578125004E2],[-6.62319336,61.805957]]],[[[-7.18686523,62.1393066],[-7.06518555,62.0732422],[-7.11679687,62.0468262],[-7.25493164,62.0461426],[-7.37910156,62.0748047],[-7.42260742,0.62140283203124994E2],[-7.23530273,0.62151220703125006E2],[-7.18686523,62.1393066]]],[[[-6.63105469,62.2278809],[-6.65581055,62.0936035],[-6.8234375,62.1391113],[-6.83769531,62.0954102],[-6.72255859,61.9903809],[-6.72519531,61.9514648],[-6.8097168,61.9774414],[-7.01357422,62.0939941],[-7.17216797,62.2855957],[-6.95864258,62.3162598],[-6.80366211,0.62265966796875034E2],[-6.63105469,62.2278809]]],[[[-6.40605469,62.2586426],[-6.45385742,62.1865234],[-6.55947266,62.2245117],[-6.55458984,62.3556641],[-6.40605469,62.2586426]]]]}}],"_labels":{"FO":"Faeroe Is."}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/FR.json b/src/api-umbrella/admin-ui/public/maps/FR.json new file mode 100644 index 000000000..1033f8fe2 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/FR.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"FR"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.9480371093750023E1,42.8054199],[9.45419922,42.6585937],[0.9526171875000045E1,0.42552636718749966E2],[0.9550683593750051E1,42.1297363],[9.40087891,41.9262207],[0.9394824218750017E1,41.7312012],[0.9253417968750057E1,0.41460058593750034E2],[9.18613281,41.3849121],[8.89501953,41.5161621],[8.80751953,41.5883789],[8.88681641,41.7006836],[8.71796875,41.7614258],[8.74042969,0.41925146484375034E2],[8.621875,41.9307129],[8.70253906,0.42043115234374994E2],[8.70097656,42.0956055],[8.58779297,0.42160839843749976E2],[8.56621094,42.2187988],[8.67548828,0.42284033203125034E2],[8.565625,42.3577148],[8.71308594,42.5497559],[8.81484375,42.6079102],[9.04365234,42.6616699],[9.13789063,42.7329102],[9.28769531,42.6946289],[0.9338378906250055E1,42.7668945],[0.9330957031250051E1,42.9437988],[9.36318359,43.0173828],[0.9463281250000023E1,42.9810059],[0.9480371093750023E1,42.8054199]]],[[[-1.17832031,45.9040527],[-1.21357422,45.8166016],[-1.36870117,0.45967675781249994E2],[-1.38867187,0.46050390625000055E2],[-1.28505859,46.0026855],[-1.17832031,45.9040527]]],[[[2.759375,0.50750634765624994E2],[2.83974609,50.7117676],[3.10683594,50.7794434],[3.23496094,50.6629395],[3.27333984,50.531543],[3.62675781,50.4573242],[3.66728516,0.50324804687500006E2],[3.74804688,50.3435059],[4.04414062,50.3213379],[4.17460938,50.2464844],[4.13525391,50.1437988],[4.1921875,50.0941406],[4.13681641,50],[4.17607422,49.9602539],[4.36875,0.49944970703124994E2],[4.54501953,49.9602539],[4.65615234,50.0024414],[4.70664063,0.50097070312499966E2],[4.81865234,50.1531738],[4.86054688,0.50135888671874994E2],[4.79003906,0.49959570312500034E2],[4.84150391,0.49914501953125004E2],[4.86757813,49.7881348],[5.00693359,49.7783691],[5.27880859,49.6779297],[5.50732422,49.5108887],[5.78974609,49.5382813],[5.95947266,49.4546387],[6.07412109,49.4546387],[6.2421875,49.4943359],[6.45810547,49.4428711],[6.73544922,49.1605957],[6.89121094,49.2075195],[7.00146484,49.1798828],[7.02216797,0.49123437500000044E2],[7.19990234,49.113623],[7.45058594,49.1521973],[7.6109375,49.0617676],[8.00126953,49.0109375],[8.13486328,48.973584],[8.14033203,48.8864258],[7.83798828,0.48636035156250045E2],[7.70566406,48.2800293],[7.61660156,48.1567871],[7.58417969,0.48064306640625006E2],[7.60849609,0.48002587890625044E2],[7.53857422,47.7736328],[7.52939453,47.673877],[7.615625,47.5927246],[7.49492188,47.5473633],[7.42001953,47.4551758],[7.203125,0.47432714843750034E2],[7.13603516,47.4898438],[7.05341797,0.47489355468750034E2],[6.90039063,0.47394238281250004E2],[7.00058594,47.3225098],[6.95205078,47.2671875],[6.62480469,47.0043457],[6.45625,46.9483398],[6.41015625,46.7554199],[6.16074219,46.6110352],[6.06025391,46.4281738],[6.12324219,0.46378613281249955E2],[6.09589844,46.2793945],[5.97001953,0.46214697265625034E2],[5.97148438,0.46151220703125006E2],[6.08662109,46.1470215],[6.27294922,46.2522461],[6.22421875,46.3194336],[6.321875,0.46393701171875016E2],[6.42890625,46.4305176],[6.57822266,0.46437353515625034E2],[6.75810547,46.4157715],[6.81679688,46.2751953],[6.77207031,46.1651367],[6.95371094,46.0171387],[7.02109375,45.9257812],[6.80449219,45.8145508],[6.80625,45.7100098],[6.88144531,45.6703613],[7.01367188,45.5004883],[7.15341797,45.4009277],[7.07832031,45.2399414],[6.98125,45.2155762],[6.84228516,0.45135644531250044E2],[6.69228516,45.1442871],[6.62773438,45.1179687],[6.73818359,44.9213867],[6.99267578,44.8272949],[7.03066406,0.44716699218750044E2],[6.96035156,0.44677148437499966E2],[6.84296875,44.5106934],[6.90019531,44.3357422],[6.96728516,44.2800293],[7.37089844,44.1273926],[7.63720703,44.1648438],[7.67714844,44.0831543],[7.48203125,0.43864892578124966E2],[7.49316406,43.7671387],[7.18144531,43.6591309],[6.86474609,0.43438330078125006E2],[6.71660156,43.373584],[6.65722656,0.43261669921875004E2],[6.49404297,0.43169287109375006E2],[6.30537109,43.1387207],[6.11591797,43.0723633],[6.03056641,43.1009766],[5.80947266,43.0979004],[5.67158203,43.177832],[5.40654297,43.2285156],[5.32021484,43.3449219],[5.07314453,0.43366601562499966E2],[5.05976563,43.4445312],[4.91191406,43.4269531],[4.7890625,43.3789062],[4.62871094,0.43387109374999966E2],[4.16279297,43.5036621],[4.05263672,43.5930664],[3.91083984,43.5630859],[3.78476562,0.43461621093749955E2],[3.25888672,0.43193212890625006E2],[3.05175781,0.42915136718750006E2],[3.04306641,42.8378906],[3.09091797,42.5908691],[3.21142578,42.4311523],[2.97001953,42.4672363],[2.67001953,0.42393017578124955E2],[2.65166016,0.42340478515624994E2],[2.56796875,0.42345800781250006E2],[2.20039063,42.4209473],[2.03271484,42.3535156],[1.92792969,42.4263184],[1.70605469,0.42503320312500044E2],[1.70986328,0.42604443359374955E2],[1.50136719,42.6427246],[1.42832031,42.5958984],[1.34941406,42.6906738],[1.20830078,42.7131348],[1.01005859,0.42778955078124966E2],[0.696875,0.42845117187500044E2],[0.631640625,0.42689599609374994E2],[0.25546875,0.42692919921875045E2],[0.201367188,0.42719335937500006E2],[-0.0411621094,0.42689111328124966E2],[-0.299316406,42.8253418],[-0.586425781,0.42798974609374966E2],[-0.762646484,42.9397949],[-0.933837891,42.9495117],[-1.28544922,43.0596191],[-1.37050781,43.0375977],[-1.48046875,0.43071142578125006E2],[-1.42260742,0.43149121093749976E2],[-1.41069336,0.43240087890625034E2],[-1.75327148,43.324707],[-1.79404297,0.43407324218750006E2],[-1.63144531,43.4380371],[-1.48486328,43.5637695],[-1.34599609,44.0202148],[-1.24550781,44.5598633],[-1.17080078,0.44661816406249955E2],[-1.07695312,44.6898438],[-1.15288086,44.7640137],[-1.24521484,44.6666992],[-1.1890625,45.1614746],[-1.14907227,0.45342626953125006E2],[-1.08100586,0.45532421874999955E2],[-0.826318359,0.45380664062500045E2],[-0.766650391,45.3143555],[-0.691113281,45.093457],[-0.641113281,0.45090185546875006E2],[-0.733105469,0.45384619140625034E2],[-0.880664062,45.5381836],[-1.1699707,0.45685937499999966E2],[-1.20996094,0.45770898437500044E2],[-1.03173828,45.7410645],[-1.10439453,45.9253418],[-1.14628906,0.46311376953125034E2],[-1.39248047,46.3500977],[-1.78652344,46.5148437],[-1.92143555,46.6848145],[-2.059375,46.8103027],[-2.0902832,46.9205078],[-2.01889648,47.0376465],[-2.08193359,47.1116211],[-2.19707031,47.1629395],[-2.10830078,47.2629395],[-1.92172852,0.47260644531249966E2],[-1.7425293,47.2159668],[-1.97539062,47.3106934],[-2.35302734,47.2787598],[-2.503125,47.3120605],[-2.5300293,47.3815918],[-2.42768555,0.47470898437499976E2],[-2.55405273,47.5270508],[-2.7703125,0.47513867187499955E2],[-2.73310547,47.6018066],[-2.78720703,47.6255371],[-2.9640625,47.6010742],[-3.06420898,47.6213379],[-3.15883789,0.47694677734375034E2],[-3.26469727,47.6851074],[-3.44394531,47.7110352],[-3.5078125,47.753125],[-3.90092773,0.47837548828124994E2],[-4.07070312,0.47847851562499955E2],[-4.22641602,47.8096191],[-4.31210937,47.8229004],[-4.42797852,47.9689453],[-4.67880859,48.039502],[-4.62919922,0.48085791015625034E2],[-4.37783203,48.1288086],[-4.32944336,48.1699707],[-4.51220703,48.2297363],[-4.57714844,48.2900391],[-4.24140625,0.48303662109375004E2],[-4.39316406,0.48367626953124976E2],[-4.71938477,0.48363134765625034E2],[-4.7625,48.4502441],[-4.72075195,0.48539892578125006E2],[-4.53120117,0.48619970703125055E2],[-4.05888672,48.7075195],[-3.85566406,48.6947266],[-3.71479492,48.710498],[-3.47148437,48.8129395],[-3.23144531,48.8408203],[-3.00322266,48.7906738],[-2.79287109,48.6010742],[-2.69233398,48.5368164],[-2.44619141,48.648291],[-2.07944336,48.6450195],[-2.00371094,48.5820801],[-1.90571289,0.48697119140625055E2],[-1.82470703,48.6305176],[-1.37646484,48.6525879],[-1.48046875,48.6976074],[-1.56547852,48.8055176],[-1.58310547,49.2023926],[-1.69033203,49.3131836],[-1.87006836,49.5951172],[-1.85644531,49.6837891],[-1.58823242,49.6676758],[-1.36572266,49.7072754],[-1.25864258,49.6801758],[-1.23227539,49.494873],[-1.13852539,49.3878906],[-0.959130859,0.49393164062500006E2],[-0.765527344,49.3597168],[-0.520898437,49.354541],[-0.163476562,49.2967773],[-0.0111816406,49.3302246],[0.136132813,49.4015137],[0.416894531,0.49448388671874994E2],[0.129394531,0.49508447265624966E2],[0.109375,49.5575195],[0.18671875,49.7030273],[0.616210938,0.49862939453124966E2],[0.924121094,49.9102051],[1.24550781,49.9982422],[1.40722656,50.0885254],[1.59277344,50.2521973],[1.5515625,50.2939453],[1.57949219,50.7392578],[1.67226563,50.8850098],[1.9125,50.990625],[2.44570313,0.51066503906250034E2],[2.52490234,0.51097119140624955E2],[2.60146484,50.9552734],[2.59677734,50.8759277],[2.759375,0.50750634765624994E2]]]]}}],"_labels":{"FR":"France"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/GA.json b/src/api-umbrella/admin-ui/public/maps/GA.json new file mode 100644 index 000000000..cd8ff1e21 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/GA.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"GA"},"geometry":{"type":"Polygon","coordinates":[[[0.13293554687500006E2,2.16157227],[13.2094727,1.92041016],[0.13162695312500006E2,1.6480957],[0.13247363281250017E2,1.36669922],[13.1901367,1.27924805],[0.13274121093750011E2,1.24101562],[0.13851367187500017E2,1.41875],[0.14180859375000011E2,1.37021484],[14.2397461,1.32255859],[0.14303027343750015E2,1.12084961],[0.14386425781250011E2,1.00444336],[0.14434472656250021E2,0.811474609],[14.3242188,0.62421875],[14.230957,0.551123047],[14.0875,0.536572266],[0.13949609375000023E2,0.353808594],[0.13884570312500017E2,0.190820312],[13.890625,0.0752929687],[0.13860058593750011E2,-0.203320313],[13.8980469,-0.242578125],[0.14069433593750006E2,-0.270117188],[0.14206738281250011E2,-0.42734375],[14.3637695,-0.468554688],[0.14480566406250006E2,-0.618359375],[14.4106445,-0.972070313],[14.4555664,-1.41318359],[0.14402929687500006E2,-1.59335937],[0.14423242187500023E2,-1.71152344],[14.3839844,-1.89003906],[14.2514648,-2.00146484],[0.14201757812500004E2,-2.17988281],[0.14162890625000015E2,-2.21757813],[0.14199804687500006E2,-2.35419922],[14.0874023,-2.46689453],[0.13993847656250011E2,-2.490625],[0.13886914062500011E2,-2.46542969],[0.13887695312499998E2,-2.37451172],[13.784375,-2.16376953],[0.13733789062500023E2,-2.13847656],[0.13618554687500021E2,-2.27861328],[0.13464941406250006E2,-2.39541016],[0.13357324218750023E2,-2.40478516],[0.13158593750000023E2,-2.36914062],[0.12991992187500017E2,-2.31337891],[0.12793554687500004E2,-1.93183594],[0.12590429687500004E2,-1.82685547],[12.4321289,-1.92890625],[12.4785156,-2.11201172],[0.12446386718750006E2,-2.32998047],[12.0644531,-2.41259766],[0.11950292968750006E2,-2.34482422],[0.11726757812500011E2,-2.39472656],[11.6054688,-2.34257813],[11.5751953,-2.39707031],[0.11603417968750023E2,-2.59541016],[0.11537792968750011E2,-2.83671875],[0.11639062500000023E2,-2.85537109],[0.11760156250000021E2,-2.98310547],[11.6890625,-3.12695312],[0.11715429687500006E2,-3.17695313],[0.11934179687500006E2,-3.31855469],[0.11832910156250021E2,-3.53144531],[11.8847656,-3.62539063],[11.8491211,-3.69667969],[11.6857422,-3.68203125],[0.11504296875000023E2,-3.5203125],[0.11288281250000011E2,-3.64111328],[0.11190039062500006E2,-3.76201172],[0.11130175781250017E2,-3.91630859],[0.11032031250000017E2,-3.82646484],[10.9472656,-3.66210938],[0.10640722656250006E2,-3.39804687],[10.5854492,-3.27802734],[10.3476562,-3.01308594],[0.10006152343750017E2,-2.74833984],[0.9759472656250011E1,-2.51855469],[9.76367188,-2.47382813],[10.0019531,-2.58837891],[0.10062011718749998E2,-2.54990234],[9.86083984,-2.44257813],[9.67636719,-2.415625],[9.62460938,-2.36708984],[9.53320312,-2.16386719],[9.29892578,-1.90302734],[0.9482812500000021E1,-1.96230469],[0.9483203125000017E1,-1.89462891],[9.265625,-1.82509766],[9.25839844,-1.72626953],[0.9157519531250017E1,-1.52773438],[9.05283203,-1.37910156],[0.9036328125000011E1,-1.30888672],[9.31884766,-1.63203125],[0.9523339843750021E1,-1.59833984],[9.44833984,-1.50888672],[9.33066406,-1.53457031],[0.9280175781250023E1,-1.48193359],[9.34667969,-1.325],[0.9203808593750011E1,-1.38242187],[0.9064648437500011E1,-1.29833984],[8.8765625,-0.94609375],[8.84423828,-0.913574219],[8.703125,-0.591015625],[8.82138672,-0.708398438],[8.94638672,-0.688769531],[0.9136523437500015E1,-0.573339844],[0.9296679687500017E1,-0.351269531],[0.9339062500000011E1,-0.0582519531],[9.30185547,0.288525391],[0.9354882812500023E1,0.343603516],[9.41113281,0.200439453],[9.57431641,0.148925781],[0.9796777343750023E1,0.0442382812],[0.9812695312500011E1,0.125585937],[10.0014648,0.194970703],[9.94443359,0.219873047],[0.9776660156250017E1,0.192480469],[9.54648438,0.295947266],[0.9470117187500023E1,0.361914062],[9.32480469,0.552099609],[0.9329980468750023E1,0.610839844],[0.9495312500000011E1,0.66484375],[0.9617968750000017E1,0.576513672],[0.9625878906250023E1,0.779443359],[0.9575390625000011E1,0.991308594],[0.9676464843750011E1,1.07470703],[0.9760546875000017E1,1.07470703],[9.80390625,0.998730469],[9.90673828,0.960107422],[0.10028515625000011E2,1.00400391],[0.11335351562500023E2,0.999707031],[0.11328710937500004E2,2.16743164],[0.11348437500000017E2,2.29970703],[0.11939746093750017E2,2.28515625],[12.3613281,2.29599609],[0.12867480468750017E2,2.24677734],[13.2203125,2.25644531],[0.13293554687500006E2,2.16157227]]]}}],"_labels":{"GA":"Gabon"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/GB.json b/src/api-umbrella/admin-ui/public/maps/GB.json new file mode 100644 index 000000000..9c5d13bba --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/GB.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"GB"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-1.06557617,50.6902344],[-1.19609375,0.50599218750000084E2],[-1.30629883,0.50588525390624966E2],[-1.51533203,50.6697754],[-1.51567383,50.7033203],[-1.31279297,50.7734863],[-1.06557617,50.6902344]]],[[[-4.19677734,53.3214355],[-4.04936523,0.53305761718750034E2],[-4.08427734,53.2643066],[-4.37304688,53.1341797],[-4.47197266,0.53176367187500034E2],[-4.55322266,53.2604492],[-4.56787109,53.3864746],[-4.46171875,53.4192871],[-4.31508789,53.4172363],[-4.19677734,53.3214355]]],[[[-6.37529297,55.2417969],[-6.12915039,0.55217382812500006E2],[-6.03579102,55.1445312],[-5.98574219,0.55029687499999966E2],[-5.86918945,54.9162109],[-5.7168457,54.8174805],[-5.71074219,54.7570801],[-5.87910156,54.684375],[-5.87861328,54.6413086],[-5.73862305,0.54673046874999955E2],[-5.58251953,54.6634277],[-5.47041016,0.54500195312500004E2],[-5.48388672,54.4416504],[-5.67109375,54.5497559],[-5.65595703,54.3817383],[-5.5578125,54.3709961],[-5.60678711,54.2725586],[-5.82617188,54.2358398],[-5.93774414,54.0890625],[-6.01904297,0.54051269531249936E2],[-6.30366211,54.094873],[-6.40258789,54.0606445],[-6.64980469,0.54058642578124925E2],[-6.646875,54.1634277],[-6.76660156,54.1956055],[-6.93613281,54.3743164],[-7.04970703,54.408252],[-7.20258789,54.3018066],[-7.15546875,0.54239501953125085E2],[-7.35517578,54.1212402],[-7.60654297,0.54143847656250074E2],[-7.67875977,0.54186669921874994E2],[-7.85493164,0.54215283203124955E2],[-7.88447266,0.54283789062500055E2],[-8.11826172,54.4142578],[-8.14482422,54.4535156],[-8.04433594,54.5124512],[-7.79379883,54.5712402],[-7.74628906,54.6158203],[-7.88613281,54.6660645],[-7.87294922,0.54717871093750034E2],[-7.7375,54.7104492],[-7.55039062,54.7679687],[-7.45126953,0.54877099609374966E2],[-7.3769043,55.0276855],[-7.21865234,0.55091992187499955E2],[-7.10063477,55.048291],[-6.94716797,55.1825195],[-6.69882813,55.193457],[-6.47504883,55.2410156],[-6.37529297,55.2417969]]],[[[-5.10541992,0.55448828125000084E2],[-5.33149414,55.4810547],[-5.39267578,0.55618359374999976E2],[-5.31811523,0.55709179687499926E2],[-5.16040039,55.6667969],[-5.10498047,55.5739746],[-5.10541992,0.55448828125000084E2]]],[[[-6.12890625,55.9305664],[-6.05532227,0.55695312499999936E2],[-6.08837891,0.55657519531250074E2],[-6.30507812,55.6069336],[-6.27001953,55.6703125],[-6.33388672,55.7743652],[-6.4956543,0.55711572265624966E2],[-6.44526367,55.832373],[-6.3112793,0.55856494140625095E2],[-6.12890625,55.9305664]]],[[[-5.97006836,0.55814550781250084E2],[-6.04155273,55.8067871],[-6.07197266,55.8931152],[-5.91176758,55.9747559],[-5.9390625,0.56045263671875006E2],[-5.72514648,0.56118554687500016E2],[-5.7972168,56.0056152],[-5.97006836,0.55814550781250084E2]]],[[[-5.77788086,56.3443359],[-6.17617187,56.2887207],[-6.31342773,56.2936523],[-6.29848633,56.3391602],[-6.18486328,0.56356884765624976E2],[-6.13886719,56.490625],[-6.31064453,56.5521484],[-6.28632812,0.56611865234375074E2],[-6.10273437,0.56645654296875016E2],[-5.94667969,0.56534521484375034E2],[-5.76083984,56.4906738],[-5.77788086,56.3443359]]],[[[-6.60761719,56.5850098],[-6.66855469,56.5936035],[-6.56992187,0.56661230468750084E2],[-6.48369141,56.6657715],[-6.60761719,56.5850098]]],[[[-7.41689453,56.9654297],[-7.50478516,56.9516602],[-7.52294922,57.0067871],[-7.41689453,56.9654297]]],[[[-6.27905273,0.56964697265625006E2],[-6.38339844,56.9708984],[-6.43261719,0.57017919921875006E2],[-6.32236328,57.0505371],[-6.27905273,0.56964697265625006E2]]],[[[-7.24985352,57.115332],[-7.38149414,0.57130664062500074E2],[-7.42236328,57.2293457],[-7.41054687,0.57381103515625114E2],[-7.26713867,57.3717773],[-7.24985352,57.115332]]],[[[-6.14472656,57.5049805],[-6.13554687,57.3142578],[-5.88027344,57.2632324],[-5.70600586,0.57268945312499994E2],[-5.66865234,57.2269043],[-5.94907227,57.045166],[-6.01474609,0.57051953124999926E2],[-6.034375,57.2012207],[-6.16274414,57.1821289],[-6.32270508,57.2024902],[-6.44243164,57.3274902],[-6.67543945,57.3628906],[-6.76113281,57.4423828],[-6.70419922,57.495752],[-6.58349609,57.5206543],[-6.61679687,57.5626953],[-6.37851562,57.6033203],[-6.35766602,0.57666796875000045E2],[-6.24692383,57.6512207],[-6.16606445,57.5853027],[-6.14472656,57.5049805]]],[[[-7.20556641,57.682959],[-7.09277344,57.6266602],[-7.18261719,57.5333008],[-7.32055664,57.5337402],[-7.51474609,57.6019531],[-7.49941406,0.57636328125000055E2],[-7.20556641,57.682959]]],[[[-6.19868164,58.3632812],[-6.32583008,58.1888672],[-6.55458984,58.0928711],[-6.40336914,58.0758789],[-6.42519531,58.0212891],[-6.68330078,0.57911035156250044E2],[-6.79658203,0.57827539062500016E2],[-6.95693359,0.57750048828125045E2],[-7.08344727,57.8137695],[-6.85683594,57.9235352],[-7.05708008,58.0031738],[-6.98530273,58.0504883],[-7.0769043,58.0790039],[-7.08525391,58.1821777],[-7.01206055,58.2287109],[-6.88623047,0.58182568359374955E2],[-6.72646484,58.1894043],[-6.78774414,58.2838867],[-6.74228516,58.3216309],[-6.54418945,0.58383154296875055E2],[-6.23745117,58.502832],[-6.19868164,58.3632812]]],[[[-3.10966797,0.58515478515625006E2],[-3.10112305,58.4336914],[-3.21235352,58.3212402],[-3.41098633,58.2396484],[-3.775,58.0520996],[-3.99003906,57.9590332],[-4.0355957,57.852002],[-3.85712891,57.8185547],[-4.07841797,57.6770508],[-4.13452148,57.5777344],[-3.86816406,57.6003418],[-3.4027832,57.708252],[-3.08393555,57.6734863],[-2.85629883,57.6922852],[-2.24414062,57.6808594],[-2.07407227,0.57702392578125114E2],[-1.96152344,57.6766602],[-1.86738281,57.6123535],[-1.77792969,57.49375],[-2.0203125,57.2588867],[-2.08955078,0.57102539062500114E2],[-2.26025391,56.8633301],[-2.42666016,56.7307129],[-2.59267578,56.5615723],[-2.77519531,0.56482958984375095E2],[-3.04741211,0.56449365234374994E2],[-3.21445312,0.56383935546874994E2],[-2.88515625,56.3975098],[-2.65273438,56.3182617],[-2.67426758,56.253418],[-2.76757812,0.56202148437500085E2],[-2.97978516,56.1940918],[-3.17822266,56.080127],[-3.36225586,0.56027636718750045E2],[-3.69511719,56.0633301],[-3.6078125,56.0160156],[-3.04873047,55.9519531],[-2.83686523,56.0262695],[-2.59931641,56.0272949],[-2.14707031,55.9029785],[-1.83027344,55.6717285],[-1.65537109,0.55570361328125074E2],[-1.61015625,55.4980957],[-1.42265625,0.55026416015625095E2],[-1.29174805,54.773877],[-1.15439453,54.6544922],[-0.759326172,0.54541406249999966E2],[-0.671386719,54.5039063],[-0.370361328,54.2791992],[-0.084375,54.1180664],[-0.205566406,54.0217285],[-0.16875,0.53941650390625085E2],[0.115332031,53.6092773],[-0.0737304687,0.53643652343750034E2],[-0.270019531,53.7367676],[-0.485058594,53.6943848],[-0.293701172,53.692334],[0.128320313,53.4682617],[0.270996094,53.335498],[0.355761719,53.1599609],[0.298046875,53.0811035],[0.0458984375,52.9056152],[0.279785156,52.8086914],[0.381933594,52.8251953],[0.558789063,52.9669434],[0.704492188,0.52977246093749976E2],[1.05556641,0.52958984375000085E2],[1.38212891,52.8935059],[1.65673828,52.7537109],[1.71611328,52.6772461],[1.74658203,52.4689941],[1.55898438,0.52086865234374955E2],[1.31679687,0.51956933593750044E2],[1.23242188,51.9712402],[1.27441406,51.8453613],[1.10117188,51.7854492],[0.955078125,51.8078125],[0.752246094,51.7295898],[0.898046875,0.51689404296874976E2],[0.890917969,51.5714355],[0.79921875,51.5378906],[0.593457031,51.5194824],[0.686523438,51.3865723],[0.889355469,51.3595215],[1.25712891,51.3750977],[1.41494141,51.3632812],[1.39755859,51.1820313],[1.36552734,51.1554687],[1.04443359,51.0472656],[0.96015625,50.9258789],[0.772363281,50.9339844],[0.684375,50.8855469],[0.299707031,50.7759766],[0.205078125,0.50763037109375084E2],[-0.20390625,0.50814355468749966E2],[-0.45078125,50.8101563],[-0.785253906,0.50765429687500045E2],[-1.41645508,50.896875],[-1.33447266,50.8208008],[-1.51674805,50.7474609],[-1.86601562,50.7152344],[-2.03105469,50.7253906],[-1.96206055,50.6277832],[-2.03583984,50.6030762],[-2.35014648,50.6374023],[-2.43344727,0.50599218750000084E2],[-2.54775391,0.50616308593750034E2],[-2.77695312,50.7055664],[-2.99941406,0.50716601562500045E2],[-3.40458984,0.50632421875000034E2],[-3.48544922,0.50547949218750055E2],[-3.584375,50.3218262],[-3.67978516,50.2399414],[-3.79335937,50.229248],[-4.17255859,0.50390820312499926E2],[-4.50668945,0.50341357421875074E2],[-4.72797852,50.2904785],[-5.04863281,50.134375],[-5.11850586,50.0383301],[-5.22524414,50.0213867],[-5.32285156,50.082959],[-5.43398437,0.50104443359375004E2],[-5.62211914,0.50050683593749994E2],[-5.65625,50.1318848],[-5.5706543,0.50196972656249955E2],[-5.34228516,50.2461426],[-5.14179687,50.3737305],[-4.95639648,50.5231445],[-4.58291016,50.7763672],[-4.5230957,50.9774414],[-4.29648437,0.51027148437500074E2],[-4.18818359,51.1885254],[-3.84233398,51.2309082],[-3.60791016,0.51228564453125074E2],[-3.37509766,51.1969727],[-3.13598633,51.2050293],[-3.04204102,0.51248583984375045E2],[-2.88125,0.51405664062499994E2],[-2.5902832,51.6085937],[-2.43305664,51.7407227],[-2.74213867,0.51581103515625045E2],[-2.97851562,0.51538867187500045E2],[-3.29311523,51.3904297],[-3.56235352,0.51413818359374964E2],[-3.76269531,0.51539941406249994E2],[-3.94365234,51.5975098],[-4.23457031,0.51569091796875085E2],[-4.09101562,51.6599121],[-4.27617187,0.51682519531249994E2],[-4.3862793,51.7410645],[-4.60078125,51.7376465],[-4.90229492,0.51626269531250074E2],[-5.12475586,51.7058594],[-5.20058594,51.861377],[-5.26230469,0.51880175781250045E2],[-5.08808594,0.51995898437500074E2],[-4.87851562,52.0418457],[-4.56113281,52.1508789],[-4.3831543,52.1973145],[-4.14936523,52.3262695],[-3.98032227,0.52541748046875085E2],[-4.07890625,0.52607861328124955E2],[-4.03925781,0.52704052734374926E2],[-4.1175293,0.52820019531249926E2],[-4.10146484,52.9154785],[-4.35644531,52.8974121],[-4.58369141,52.8149414],[-4.68305664,0.52806152343749936E2],[-4.63833008,0.52891113281250114E2],[-4.40507812,0.53013818359374966E2],[-4.32841797,53.105127],[-4.11103516,53.2189453],[-3.80927734,53.3026855],[-3.64589844,0.53297900390624925E2],[-3.32617188,53.347168],[-3.09755859,53.2603027],[-3.16557617,53.3946777],[-3.06474609,0.53426855468750006E2],[-2.91855469,53.3053711],[-2.74951172,0.53310205078125044E2],[-2.91308594,53.3502441],[-3.06459961,53.5128418],[-3.05947266,0.53586230468750045E2],[-2.92509766,53.7327637],[-3.03178711,53.773584],[-3.02675781,0.53905908203124994E2],[-2.89985352,53.9606934],[-2.84648437,54.1353027],[-2.86757812,54.1772461],[-3.1659668,0.54127929687500114E2],[-3.3215332,54.2291016],[-3.56938477,54.4675781],[-3.59204102,54.5643555],[-3.46459961,54.7730957],[-3.26791992,54.9065918],[-3.03623047,54.9530762],[-3.43408203,54.9637695],[-3.55043945,54.9474121],[-3.78325195,54.8699219],[-3.95791016,54.780957],[-4.13295898,0.54779248046874926E2],[-4.20839844,54.8371582],[-4.30366211,54.8356934],[-4.51748047,0.54758349609374925E2],[-4.81806641,54.8461426],[-4.91123047,0.54689453125000114E2],[-5.13549805,54.8575195],[-5.17270508,54.9858887],[-5.05585937,54.9881348],[-4.96518555,55.1494629],[-4.72114258,0.55420996093750084E2],[-4.67675781,55.5013184],[-4.72416992,55.598291],[-4.8918457,55.6991211],[-4.87167969,55.8739258],[-4.80683594,55.9401367],[-4.58408203,55.9386719],[-4.8440918,0.56051171874999966E2],[-4.80029297,56.1583496],[-4.92709961,0.56028076171874964E2],[-5.09282227,55.9873047],[-5.22822266,0.55886328125000034E2],[-5.24731445,56.0003906],[-5.17641602,56.1169922],[-4.99697266,56.2333496],[-5.28232422,56.0899414],[-5.41044922,55.9953613],[-5.38583984,0.55770117187500084E2],[-5.55644531,0.55389599609374926E2],[-5.6465332,0.55326855468749926E2],[-5.76821289,0.55362646484375034E2],[-5.68134766,55.6239746],[-5.50449219,0.55802392578124994E2],[-5.62285156,55.8131348],[-5.60957031,0.56055273437500006E2],[-5.55527344,56.1349609],[-5.53496094,56.2508301],[-5.39194336,56.5147949],[-5.18837891,56.7580566],[-5.65244141,56.5319824],[-5.86484375,0.56561865234375006E2],[-5.93676758,56.6057129],[-5.96889648,56.6898926],[-6.13276367,0.56718017578125114E2],[-6.0347168,56.763916],[-5.87763672,56.7796387],[-5.73061523,56.8530762],[-5.86142578,56.9026855],[-5.7362793,56.9606445],[-5.59130859,0.57102343750000074E2],[-5.56191406,0.57232714843750074E2],[-5.65634766,0.57334082031250034E2],[-5.79492187,0.57378808593749994E2],[-5.81806641,0.57436083984374925E2],[-5.75673828,57.4992187],[-5.58178711,57.5467773],[-5.67875977,57.5716797],[-5.74492187,57.6683105],[-5.60834961,57.8813477],[-5.34902344,57.8780762],[-5.28979492,57.9045898],[-5.15722656,57.8813477],[-5.41318359,58.0697266],[-5.35136719,58.1437012],[-5.33828125,58.2387207],[-5.00830078,58.2626465],[-5.09013672,58.3845215],[-5.06650391,58.5202148],[-4.9246582,58.5883789],[-4.80961914,58.5729004],[-4.71542969,58.5100098],[-4.49189453,0.58568457031250055E2],[-4.43325195,58.5128418],[-4.18862305,58.5572266],[-3.85952148,58.5770996],[-3.45356445,58.6168945],[-3.25913086,58.65],[-3.05307617,58.6348145],[-3.10966797,0.58515478515625006E2]]],[[[-2.92939453,58.7416016],[-3.03544922,58.8226563],[-2.89643555,0.58827587890625004E2],[-2.92939453,58.7416016]]],[[[-3.16494141,58.7941895],[-3.27880859,58.7819336],[-3.40083008,58.8817871],[-3.27192383,58.9052734],[-3.16494141,58.7941895]]],[[[-3.05742187,59.0296387],[-2.76245117,0.58955810546875114E2],[-2.86376953,58.8905273],[-2.99482422,58.9393555],[-3.16660156,58.9190918],[-3.24213867,58.999707],[-3.34707031,58.9867188],[-3.31035156,59.1308105],[-3.15649414,59.1363281],[-3.05112305,0.59099023437499966E2],[-3.05742187,59.0296387]]],[[[-2.54887695,0.59231347656250016E2],[-2.66206055,59.2301758],[-2.60361328,0.59289306640625085E2],[-2.40698242,0.59297558593750004E2],[-2.54887695,0.59231347656250016E2]]],[[[-2.72939453,0.59186767578125085E2],[-2.81523437,59.1619141],[-2.86142578,59.2468262],[-3.05205078,59.323877],[-2.97553711,59.3471191],[-2.72939453,0.59186767578125085E2]]],[[[-1.30810547,60.5375],[-1.15776367,60.4177246],[-1.05244141,60.4444824],[-1.17924805,60.113916],[-1.19931641,60.0065918],[-1.28378906,59.8869141],[-1.35585937,59.9111328],[-1.27617187,60.1146484],[-1.32280273,0.60188378906249945E2],[-1.48149414,0.60173388671875074E2],[-1.51660156,60.2310059],[-1.64135742,60.2367676],[-1.66376953,0.60282519531250095E2],[-1.49443359,60.2924805],[-1.37460937,0.60332910156249994E2],[-1.44956055,0.60468554687500095E2],[-1.54882812,60.4812988],[-1.41420898,0.60598730468750055E2],[-1.30170898,0.60607666015625085E2],[-1.30810547,60.5375]]],[[[-1.0425293,60.5138672],[-1.16552734,60.6039063],[-1.09331055,0.60720214843750036E2],[-1.00561523,0.60716503906249976E2],[-1.04501953,0.60655517578125085E2],[-1.0425293,60.5138672]]],[[[-0.774267578,60.8119629],[-0.825488281,0.60683935546875006E2],[-0.909130859,60.6870117],[-0.927539062,0.60797167968750074E2],[-0.774267578,60.8119629]]]]}}],"_labels":{"GB":"United Kingdom"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/GD.json b/src/api-umbrella/admin-ui/public/maps/GD.json new file mode 100644 index 000000000..4d4633315 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/GD.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"GD"},"geometry":{"type":"Polygon","coordinates":[[[-61.7155273,0.12012646484374997E2],[-61.7821777,0.12008447265624994E2],[-0.61714990234374994E2,12.1851563],[-61.6070312,0.12223291015624994E2],[-61.6271484,0.12053955078124998E2],[-61.7155273,0.12012646484374997E2]]]}}],"_labels":{"GD":"Grenada"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/GE.json b/src/api-umbrella/admin-ui/public/maps/GE.json new file mode 100644 index 000000000..3f719f403 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/GE.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"GE"},"geometry":{"type":"Polygon","coordinates":[[[46.4298828,0.41890966796875034E2],[46.3025391,41.7570801],[46.2018555,41.7368652],[46.1821289,41.6570801],[0.46305468750000045E2,41.5077148],[46.6189453,41.34375],[46.6725586,41.2868164],[0.46626367187500136E2,0.41159667968750085E2],[46.4579102,0.41070214843749994E2],[46.1707031,41.1978516],[0.46031250000000114E2,41.1672852],[0.45792773437500045E2,41.2244141],[0.45695703125000136E2,41.2890137],[45.715625,41.3376465],[45.4222656,41.425293],[0.45280957031250004E2,41.4495605],[0.44975878906250045E2,41.2774902],[44.8113281,41.259375],[44.8414063,41.211377],[0.44564843750000136E2,41.2082031],[44.4730469,41.1910156],[44.2273438,41.2133301],[43.7931641,41.1311035],[0.43439453125000114E2,41.1071289],[0.43358984375000034E2,41.1901367],[0.43205468750000136E2,41.1991699],[43.1712891,0.41287939453125034E2],[0.42906738281250114E2,0.41466845703125074E2],[0.42821679687500136E2,41.4923828],[0.42787890625000045E2,0.41563720703125085E2],[0.42682421875000045E2,0.41585742187500045E2],[42.5673828,41.5592773],[0.42466406250000034E2,41.4398438],[42.2111328,41.4867188],[0.41925781250000114E2,0.41495654296875074E2],[0.41823535156250045E2,41.432373],[41.5100586,41.5174805],[0.41701757812500034E2,0.41705419921875006E2],[41.7587891,41.8171387],[41.7629883,41.9700195],[41.6632813,42.146875],[41.4887695,0.42659326171874994E2],[41.4194336,42.7376465],[41.1287109,42.828125],[41.0616211,42.9308594],[40.8366211,43.0634766],[40.5240234,43.1210449],[40.190625,0.43312402343749994E2],[0.39978320312500045E2,43.4198242],[40.0845703,43.553125],[40.1501953,43.5697754],[0.40518945312500136E2,0.43512011718750074E2],[0.40648046875000034E2,43.5338867],[0.41083105468750034E2,43.3744629],[41.3582031,43.3333984],[41.5805664,43.2192383],[42.05,43.1901367],[42.2796875,43.2280762],[42.419043,43.2242188],[42.5660156,43.155127],[0.42760644531250136E2,43.1695801],[42.9916016,0.43091503906250004E2],[0.43089160156250045E2,42.9890625],[0.43347949218750045E2,42.8966797],[43.5578125,42.8444824],[0.43782617187500136E2,42.7470215],[43.7383789,42.6169922],[0.43825976562500095E2,42.5715332],[0.43957421875000136E2,42.5665527],[44.3294922,42.7035156],[0.44505859375000114E2,42.7486328],[44.6443359,0.42734716796875084E2],[44.7710938,0.42616796875000034E2],[44.8709961,42.7563965],[45.2082031,42.6482422],[0.45343750000000114E2,0.42529785156250085E2],[45.5628906,0.42535742187500034E2],[45.7275391,42.4750488],[45.6385742,42.2050781],[0.45845996093750045E2,42.1099609],[45.9540039,0.42035400390625085E2],[46.2126953,41.9898926],[46.4298828,0.41890966796875034E2]]]}}],"_labels":{"GE":"Georgia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/GF.json b/src/api-umbrella/admin-ui/public/maps/GF.json new file mode 100644 index 000000000..d46ad4efe --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/GF.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"GF"},"geometry":{"type":"Polygon","coordinates":[[[-51.6525391,4.0612793],[-51.7670898,3.99267578],[-0.51827490234375006E2,3.86958008],[-51.990625,3.70200195],[-51.9995117,3.646875],[-52.1625977,3.36469727],[-52.2294434,3.27167969],[-52.3278809,3.18173828],[-52.3566406,3.0515625],[-52.5546875,2.64765625],[-0.52559472656249994E2,2.57314453],[-52.7006348,2.36367187],[-52.8704102,2.26665039],[-52.9648438,2.18354492],[-53.2297852,2.20488281],[-53.3344238,2.33974609],[-53.5089844,2.253125],[-53.7347168,2.30854492],[-53.7677734,2.35483398],[-54.1300781,2.12104492],[-54.2930664,2.15424805],[-54.5150879,2.24545898],[-54.6162598,2.32675781],[-54.5359375,2.34331055],[-54.4855469,2.41611328],[-0.54402001953124994E2,2.46152344],[-54.1955078,2.81787109],[-54.1707031,2.99360352],[-54.203125,3.13818359],[-54.0095703,3.44853516],[-53.9904785,3.58955078],[-54.112793,3.76943359],[-0.54255517578124994E2,3.90107422],[-54.3507324,4.05410156],[-54.3421387,4.14003906],[-54.3962402,4.24140625],[-54.4496094,4.48500977],[-54.4260742,4.58300781],[-54.4711426,4.74931641],[-54.4733398,4.91469727],[-54.4521973,5.01347656],[-0.54331640624999984E2,5.18740234],[-54.2401855,5.28823242],[-54.0853027,5.41181641],[-53.9895996,5.67602539],[-53.9199219,5.76899414],[-53.847168,5.78222656],[-53.4544434,5.56347656],[-53.2703613,5.54326172],[-0.52899316406249994E2,5.42504883],[-52.7649902,5.27348633],[-52.4539551,5.02133789],[-52.2905273,4.9421875],[-52.3246094,4.77089844],[-52.2199707,4.86279297],[-52.0581055,4.71738281],[-51.9619141,4.5144043],[-52.0029297,4.35229492],[-51.9276855,4.43613281],[-0.51880273437499994E2,4.63374023],[-0.51827539062499994E2,4.63569336],[-51.7856445,4.57050781],[-51.6986328,4.28681641],[-51.6658203,4.22880859],[-51.6525391,4.0612793]]]}}],"_labels":{"GF":"French Guiana"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/GG.json b/src/api-umbrella/admin-ui/public/maps/GG.json new file mode 100644 index 000000000..527850a9e --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/GG.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"GG"},"geometry":{"type":"Polygon","coordinates":[[[-2.51230469,49.4945313],[-2.54736328,49.4287109],[-2.64614258,49.4682129],[-2.5421875,49.5065918],[-2.51230469,49.4945313]]]}}],"_labels":{"GG":"Guernsey"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/GH.json b/src/api-umbrella/admin-ui/public/maps/GH.json new file mode 100644 index 000000000..80fc2ffe6 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/GH.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"GH"},"geometry":{"type":"Polygon","coordinates":[[[-0.0686035156,11.115625],[0.00942382813,0.11020996093749998E2],[-0.0138671875,10.8913574],[-0.0901855469,0.10715527343749997E2],[-0.0577148437,10.6306152],[0.0892578125,0.10520605468749991E2],[0.216015625,0.10390527343749994E2],[0.380859375,0.10291845703124991E2],[0.362695313,0.10236474609374993E2],[0.351855469,0.9924902343749991E1],[0.323925781,0.9687597656249991E1],[0.272753906,0.9620947265624991E1],[0.233398438,9.46352539],[0.259960938,9.42602539],[0.370996094,9.48554688],[0.447558594,0.9480273437499989E1],[0.529003906,9.35830078],[0.466113281,0.9115332031249991E1],[0.460351563,8.97421875],[0.488769531,8.85146484],[0.372558594,8.75927734],[0.415332031,8.65273437],[0.616210938,8.47963867],[0.688085938,8.30424805],[0.59921875,8.20957031],[0.58359375,8.14580078],[0.605175781,7.72822266],[0.5,7.546875],[0.509570313,7.43510742],[0.634765625,7.35366211],[0.579492188,7.00410156],[0.523046875,6.93886719],[0.525585938,6.85092773],[0.672753906,6.5925293],[0.736914063,6.45258789],[0.912207031,6.32856445],[0.984960938,6.3203125],[1.08447266,6.1737793],[1.18505859,6.14501953],[1.18720703,6.0894043],[1.05029297,5.99399414],[0.949707031,5.81025391],[0.748828125,5.76010742],[0.259667969,5.75732422],[-0.126513672,5.56816406],[-0.348730469,5.50078125],[-0.485449219,5.39423828],[-0.669433594,5.31855469],[-0.797705078,5.22670898],[-1.06430664,5.18266602],[-1.50166016,5.03798828],[-1.63847656,4.98085937],[-1.77685547,4.88037109],[-2.00185547,4.76245117],[-2.09018555,4.7640625],[-2.26640625,4.87407227],[-2.39892578,4.9293457],[-2.72304687,5.0137207],[-2.96499023,5.04628906],[-3.11401367,5.08867187],[-3.08671875,5.12832031],[-2.94833984,5.11884766],[-2.81567383,5.15302734],[-2.75498047,5.43251953],[-2.79365234,5.60009766],[-2.96225586,5.64301758],[-2.99829102,5.71132812],[-3.10556641,6.08564453],[-3.20058594,6.34824219],[-3.2402832,6.53564453],[-3.23579102,6.80722656],[-3.16889648,6.9409668],[-3.03769531,7.10458984],[-2.98579102,7.20488281],[-2.95908203,7.45454102],[-2.89633789,7.68500977],[-2.78974609,7.93193359],[-2.61337891,8.04667969],[-2.61171875,8.14755859],[-2.50585938,8.20874023],[-2.60039062,8.80043945],[-2.68989258,0.9025097656249997E1],[-2.74667969,9.10961914],[-2.67421875,0.9282617187499993E1],[-2.68613281,0.9431738281249991E1],[-2.78051758,9.74584961],[-2.74980469,0.9797216796874991E1],[-2.78320312,10.0831055],[-2.77709961,0.10281591796874991E2],[-2.8203125,0.10322851562499991E2],[-2.79116211,0.10432421874999989E2],[-2.83720703,0.10454638671874987E2],[-2.91489258,0.10592333984374989E2],[-2.90732422,0.10727978515624997E2],[-2.82993164,10.9983887],[-2.75166016,0.10986376953124989E2],[-1.5996582,10.9976563],[-1.53676758,11.0226563],[-1.23261719,0.10997216796874994E2],[-1.04248047,0.11010058593749989E2],[-0.902929687,0.10984716796874991E2],[-0.701416016,0.10988964843749997E2],[-0.648535156,10.9267578],[-0.491699219,0.11007617187499989E2],[-0.430322266,11.0932617],[-0.345751953,0.11087939453124989E2],[-0.299462891,0.11166894531249994E2],[-0.0686035156,11.115625]]]}}],"_labels":{"GH":"Ghana"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/GL.json b/src/api-umbrella/admin-ui/public/maps/GL.json new file mode 100644 index 000000000..6ac3f63e1 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/GL.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"GL"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-0.46266699218750006E2,60.7813965],[-0.46381542968749955E2,60.6603027],[-46.553125,60.7407715],[-46.7899902,0.60779833984375045E2],[-0.46205224609374994E2,60.9435059],[-0.46266699218750006E2,60.7813965]]],[[[-37.03125,65.5319824],[-37.1868164,65.5313477],[-37.2229004,65.695459],[-0.37047509765624966E2,65.7222656],[-36.9530762,65.6633301],[-37.03125,65.5319824]]],[[[-51.0136719,69.5524902],[-51.2339844,69.5518555],[-51.3388672,69.7320313],[-51.350293,69.8547852],[-51.2088867,69.913916],[-50.9402344,69.9086914],[-50.6790039,69.8485352],[-50.9117187,69.7566895],[-51.0136719,69.5524902]]],[[[-52.7311523,69.9447266],[-52.0453125,69.8072266],[-51.9001953,69.6047852],[-52.1125977,69.4891113],[-52.770459,69.363916],[-53.578418,69.2566406],[-53.7931641,69.264209],[-54.0511719,69.3371582],[-54.1581543,69.4277832],[-53.6583008,69.4651367],[-53.825,69.540332],[-54.4969727,69.5771973],[-0.54804101562499994E2,69.6305176],[-54.9191406,69.713623],[-0.54841259765625004E2,69.9019043],[-54.6645996,69.9656738],[-0.54322607421875034E2,69.9418945],[-54.7736328,70.0525391],[-54.8304688,70.161084],[-0.54705957031249966E2,70.2561523],[-54.3716309,70.3172852],[-0.54007226562499994E2,70.2964355],[-53.3751465,70.2212891],[-53.1029297,70.1408691],[-52.7311523,69.9447266]]],[[[-51.6751465,70.8552246],[-52.1193848,70.8706543],[-52.1067383,70.9680176],[-51.9698242,70.9764648],[-51.6313477,70.8921387],[-51.6751465,70.8552246]]],[[[-25.4323242,70.9213379],[-25.4677734,70.7796875],[-0.25402246093749994E2,70.6526855],[-0.25911328124999983E2,70.5730469],[-0.26217871093749977E2,70.4540527],[-0.26604687499999923E2,70.5533691],[-0.27104785156250017E2,70.5314941],[-27.897998,70.4540039],[-28.0368164,70.5143555],[-0.27939550781250006E2,70.6152832],[-0.27714208984375006E2,70.712793],[-27.7089355,70.8971191],[-0.26975585937499996E2,70.8626953],[-26.6217773,70.8756348],[-0.26337451171874932E2,70.9192383],[-25.8188965,71.0436523],[-25.4323242,70.9213379]]],[[[-53.5352051,71.0408203],[-0.53897558593750034E2,71.0851562],[-53.9474609,71.1555176],[-53.7009766,71.2830078],[-53.5844727,71.2970703],[-53.4414062,71.1858398],[-53.5352051,71.0408203]]],[[[-55.0168945,72.7911133],[-55.5236328,72.5684082],[-0.56214794921874955E2,72.7191895],[-55.9935547,72.7822754],[-55.4279297,72.788623],[-55.2058105,72.8416504],[-55.0168945,72.7911133]]],[[[-0.18000537109374932E2,75.4073242],[-0.17885888671874937E2,75.2044434],[-17.7624023,75.1427734],[-17.4978516,75.1515137],[-0.17391992187499934E2,75.0369141],[-0.17586035156249945E2,74.9927734],[-18.3533203,75.0104492],[-0.18670800781249962E2,75.0016602],[-0.18891308593749955E2,75.072168],[-0.18856054687499977E2,75.3191406],[-18.6355469,75.3896484],[-0.18450341796874994E2,75.3279785],[-0.18000537109374932E2,75.4073242]]],[[[-0.18582617187499945E2,76.042334],[-18.6972656,76.0158691],[-0.19085351562499966E2,76.4303711],[-19.0588867,76.6949707],[-0.18882470703124937E2,76.7038086],[-0.18732617187499955E2,76.642041],[-0.18582617187499945E2,76.042334]]],[[[-71.667334,77.325293],[-72.0235352,77.3164551],[-72.4949219,77.3855469],[-72.4364258,77.4475586],[-72.0890625,77.4670898],[-71.4334473,77.3943848],[-71.667334,77.325293]]],[[[-0.17953710937499977E2,77.642334],[-18.147998,77.642334],[-0.18174023437499926E2,77.7143555],[-0.17903710937500023E2,77.8625977],[-0.17681445312499932E2,77.8585937],[-17.7294922,77.7063965],[-0.17953710937499977E2,77.642334]]],[[[-18.997168,77.9737793],[-0.19129492187499977E2,77.9385254],[-0.19297021484375023E2,78.1854492],[-19.3146973,78.3441895],[-0.19111816406249943E2,78.423584],[-0.18935400390624977E2,78.423584],[-0.18953027343749994E2,78.2119141],[-0.18882470703124937E2,78.1148926],[-18.997168,77.9737793]]],[[[-17.6125,79.8258789],[-0.18035839843749926E2,79.7112305],[-0.18662011718749966E2,79.7200195],[-0.19032421874999923E2,79.7729492],[-19.1382812,79.8523438],[-18.997168,79.9404785],[-18.5473633,80.011084],[-17.9829102,80.0551758],[-0.17471386718749955E2,80.0287109],[-0.17400830078124983E2,79.9404785],[-17.6125,79.8258789]]],[[[-0.18664746093749983E2,81.8464844],[-0.19031445312499983E2,81.8271973],[-19.5944824,81.9912598],[-0.19610546874999926E2,82.078125],[-19.3145508,82.1231934],[-0.18812695312499926E2,81.9494629],[-0.18664746093749983E2,81.8464844]]],[[[-44.8645508,82.0836426],[-45.0674316,82.0660156],[-45.4907715,82.1718262],[-0.46161035156249966E2,82.2776855],[-46.7519043,82.3481934],[-0.47307519531249966E2,82.5333984],[-47.2722656,82.6569336],[-46.3991699,82.6921387],[-45.411377,82.5775391],[-44.9174805,82.4805176],[-0.44749902343749994E2,82.401123],[-44.8645508,82.0836426]]],[[[-29.9528809,83.5648437],[-28.9919922,83.5047852],[-0.28483789062499937E2,83.4349121],[-0.27034423828124996E2,83.3769043],[-0.25947412109374966E2,83.2896484],[-25.7950684,83.2609863],[-0.26182714843749917E2,83.2213867],[-27.571875,83.192627],[-0.30091992187500008E2,83.1574219],[-0.31533984374999985E2,83.088916],[-31.9926758,83.0853516],[-32.0327148,82.9834473],[-31.5155762,82.9916504],[-30.3860352,83.0937012],[-0.29963574218749955E2,83.110498],[-29.175,83.102002],[-0.28151464843750006E2,83.0637207],[-27.7385254,83.0771973],[-0.27002050781249974E2,83.0671875],[-0.26140820312499923E2,83.0964355],[-25.1233887,83.1596191],[-0.24845166015624926E2,83.0185547],[-24.4703125,82.8773926],[-23.9195312,82.8851074],[-0.23694628906249932E2,82.8191406],[-0.23406933593749926E2,82.8296875],[-22.5249023,82.7891602],[-0.21691796875000023E2,82.6825195],[-0.21520654296874966E2,82.5954102],[-0.21993945312499932E2,82.462793],[-0.22472558593749994E2,82.3847168],[-0.23118066406249966E2,82.324707],[-0.23862207031249966E2,82.2870605],[-0.29579394531249957E2,82.1611816],[-0.29772753906249985E2,82.13125],[-0.29887402343749983E2,82.054834],[-0.29810986328124955E2,81.9554688],[-0.29543847656249994E2,81.9399414],[-28.9194336,81.9958984],[-0.27839501953124962E2,82.048877],[-0.27045947265624932E2,82.0463379],[-0.25148828124999966E2,82.001123],[-0.24589160156249985E2,81.8828125],[-0.24293066406249977E2,81.7009766],[-23.6365234,81.7418457],[-0.23392968749999937E2,81.8271973],[-0.23103710937499983E2,82.0118164],[-0.22563378906249937E2,82.0530273],[-0.21575537109374945E2,82.0749512],[-0.21337988281249977E2,82.0687012],[-0.21167382812499937E2,81.9838379],[-21.1179687,81.8696289],[-0.21146582031249945E2,81.695166],[-0.21230517578125017E2,81.6013672],[-21.5039063,81.4375],[-0.21723632812500025E2,81.3482422],[-22.5727539,81.0979004],[-0.23072460937500008E2,80.926709],[-23.1963867,80.8473633],[-23.1177246,80.7781738],[-22.8256836,80.9126465],[-0.21931347656249955E2,81.0501953],[-21.4497559,81.1781738],[-0.20755859374999943E2,81.3120117],[-0.20015722656249977E2,81.5643555],[-19.6299316,81.6398926],[-0.19224755859374937E2,81.6400391],[-0.19152978515624962E2,81.512207],[-18.456543,81.4979492],[-0.17456054687499943E2,81.3977051],[-0.17226220703125023E2,81.4304199],[-16.9370605,81.5438965],[-16.3589844,81.7290527],[-16.1207031,81.7766113],[-0.15555517578125004E2,81.8335937],[-0.14241992187500015E2,81.8138672],[-0.13704492187500023E2,81.7890625],[-0.12434423828125004E2,81.6825195],[-0.12192871093749998E2,81.6491211],[-0.11425537109374972E2,81.4806152],[-11.5288086,81.4240234],[-0.12231347656250023E2,81.3092285],[-12.4612305,81.2325195],[-13.1262207,81.087793],[-13.4511719,81.0380859],[-0.14197363281249975E2,81.013916],[-0.14490136718749936E2,80.973291],[-0.14228564453124932E2,80.870459],[-0.14503564453124993E2,80.7632813],[-0.15194238281249937E2,80.7214355],[-0.15542675781249953E2,80.6503906],[-16.3189453,80.6498047],[-16.7605957,80.5733887],[-0.16587792968749994E2,80.5112305],[-15.9372559,80.4276367],[-0.15932617187499998E2,80.3951172],[-16.4887695,80.2519531],[-0.16868408203124943E2,80.1982422],[-17.3572266,80.2007813],[-0.18070947265624994E2,80.1720703],[-0.18692578124999983E2,80.2070801],[-0.19206005859374955E2,80.2616211],[-0.19429199218749943E2,80.2577148],[-19.8667969,80.1447266],[-20.1501465,80.0112305],[-0.20138476562499932E2,79.8033691],[-0.19985400390625017E2,79.7558594],[-0.19391503906249994E2,79.7503418],[-0.19283593749999937E2,79.6831543],[-0.19399316406249966E2,79.4883789],[-0.19414013671874955E2,79.3488281],[-0.19152197265625006E2,79.3253906],[-0.18970800781249977E2,79.211377],[-0.19074951171874968E2,79.1523438],[-0.19723046874999937E2,79.0650391],[-19.887207,78.9109375],[-20.0504883,78.8417969],[-20.6155762,78.8039062],[-0.21133740234374926E2,78.6586426],[-0.20955664062499977E2,78.5550293],[-0.21194775390624926E2,78.379834],[-21.3120117,78.1739746],[-21.7475586,77.790625],[-0.21729589843749977E2,77.7085449],[-0.21578906249999932E2,77.6513672],[-0.21379687499999932E2,77.6975586],[-21.1318848,77.8472168],[-0.20862597656249932E2,77.9118652],[-0.20318603515624943E2,77.8619629],[-19.4904297,77.7188965],[-19.2960938,77.5852539],[-19.5241211,77.5719727],[-0.20162060546874926E2,77.6898437],[-0.20680810546875023E2,77.6189941],[-0.20463769531249937E2,77.4473145],[-20.2319336,77.3684082],[-0.19808642578124957E2,77.332373],[-19.300293,77.2223633],[-0.18903417968749945E2,77.2804687],[-0.18585888671874983E2,77.2830566],[-0.18339013671874966E2,77.2152832],[-0.18292382812499962E2,77.1328613],[-0.18337255859374977E2,76.9211914],[-18.5103027,76.7781738],[-0.18865332031250002E2,76.7845215],[-19.1563477,76.8365723],[-0.20064355468750023E2,76.9275879],[-20.4867188,76.9208008],[-0.20942089843749955E2,76.8870117],[-0.20959912109374955E2,76.8426758],[-0.21614697265624923E2,76.6878906],[-0.21749023437499943E2,76.6899902],[-22.1852539,76.7940918],[-0.22334326171875006E2,76.7937012],[-0.22606640624999955E2,76.6807617],[-22.294873,76.6014648],[-0.21877343749999966E2,76.5734863],[-0.21758105468749932E2,76.4005371],[-21.4168457,76.2640137],[-20.8874023,76.3040039],[-0.20563818359374977E2,76.2398438],[-20.1036133,76.2190918],[-19.8628906,76.1206543],[-0.19957714843749955E2,75.9966797],[-0.19508984374999926E2,75.7575195],[-0.19366455078124943E2,75.3864258],[-0.19425976562499983E2,75.229834],[-19.6762695,75.1493652],[-0.19798486328124937E2,75.1574707],[-0.20198681640624926E2,75.307959],[-0.20484960937500006E2,75.3142578],[-20.9058594,75.1569336],[-0.21246533203124983E2,75.1333984],[-0.21649316406249966E2,75.0234375],[-0.21861035156249955E2,75.0398438],[-0.22232861328124926E2,75.1197266],[-0.21783935546874943E2,74.9714844],[-21.5976563,74.9719727],[-0.21140576171874983E2,75.0685547],[-0.20985791015624983E2,75.0743652],[-20.7856934,74.891748],[-20.7953125,74.805957],[-0.21038476562499966E2,74.6541504],[-20.8615723,74.6359375],[-0.20611132812499932E2,74.7282227],[-20.4170898,74.9751953],[-0.20214257812499994E2,75.0192383],[-19.9849121,74.9751953],[-0.19537792968749955E2,74.6245605],[-19.2870117,74.5463867],[-19.2250977,74.4794922],[-19.3691406,74.2840332],[-19.6462402,74.257959],[-0.20256445312499977E2,74.2828125],[-20.2305664,74.2046387],[-20.653125,74.1373535],[-0.21129443359374932E2,74.1108887],[-21.5805664,74.1634766],[-0.21954931640624977E2,74.2442871],[-21.7619629,74.4827637],[-0.21982617187499926E2,74.5674805],[-0.21972705078124957E2,74.3900391],[-22.321582,74.3025391],[-0.22195654296874974E2,74.2057129],[-0.22335253906250017E2,74.0634277],[-21.9876953,73.9709961],[-21.298291,73.9624512],[-0.21022216796874943E2,73.9412598],[-20.3672852,73.8482422],[-0.20337988281249977E2,73.8196777],[-0.20509667968749966E2,73.4928711],[-20.6367188,73.4635742],[-0.21325878906249983E2,73.4566406],[-0.21547998046874934E2,73.4316895],[-0.22185058593749968E2,73.269873],[-22.346875,73.2692383],[-22.9875,73.3462402],[-23.7605957,73.5431152],[-0.24157714843749943E2,73.7644531],[-0.24451269531249977E2,73.6285156],[-24.6772461,73.6021973],[-0.24905468749999955E2,73.6527832],[-0.25351464843749962E2,73.813623],[-0.25427441406249983E2,73.7937988],[-24.7912598,73.5112793],[-25.0258789,73.485791],[-0.25450097656249994E2,73.3906738],[-0.25665429687499966E2,73.2928223],[-0.26062304687500017E2,73.2530273],[-0.26765478515625002E2,73.3481934],[-0.27270410156250023E2,73.4362793],[-0.27169384765624955E2,73.3741699],[-0.26603613281249977E2,73.2794922],[-26.7286133,73.1713867],[-27.2648926,73.1764648],[-0.27561621093750006E2,73.1384766],[-0.27348046875000023E2,73.0678223],[-27.1898926,73.1324219],[-0.26753222656249985E2,73.1210938],[-26.4328613,73.1714844],[-0.26028759765624926E2,73.1987793],[-0.25399023437499977E2,73.2757813],[-25.2683105,73.3619629],[-0.24587207031249957E2,73.4229492],[-23.8989746,73.398291],[-0.23709619140624966E2,73.3167969],[-0.23244091796874983E2,73.1932617],[-0.22996044921874983E2,73.171582],[-22.8522949,73.0839844],[-22.4501953,72.986084],[-0.22036328124999955E2,72.918457],[-0.22006738281249962E2,72.6354492],[-0.22074804687499974E2,72.3992188],[-0.22280224609374983E2,72.3447754],[-22.2392578,72.2202637],[-0.22293212890624968E2,72.1195312],[-23.2080078,72.3265625],[-23.6743652,72.3925781],[-0.24069042968750008E2,72.4987305],[-0.24358593749999926E2,72.6873047],[-0.24629980468749977E2,73.0376465],[-0.24788574218749943E2,73.0441406],[-0.25170556640624962E2,72.9802734],[-25.2558594,72.9241211],[-25.8608398,72.846875],[-0.26657617187499966E2,72.7158203],[-0.26392089843749943E2,72.6728027],[-25.6879883,72.7973633],[-25.3574219,72.8102539],[-24.9848145,72.889209],[-0.24771044921874932E2,72.8686523],[-24.65,72.5825195],[-24.7006836,72.5063477],[-0.25203710937499977E2,72.3929688],[-0.25117871093749983E2,72.3469727],[-24.6668457,72.4373535],[-24.4171875,72.3482422],[-0.23290917968750023E2,72.0810059],[-22.8685059,71.9706543],[-22.496875,71.9138184],[-22.3702148,71.7698242],[-0.21959667968749955E2,71.7446777],[-0.22013330078124966E2,71.6888184],[-0.22503222656249932E2,71.5004395],[-22.4175781,71.2486816],[-22.2990234,71.4323242],[-21.9614258,71.5082031],[-21.7522461,71.4783203],[-21.6711914,71.205957],[-0.21674511718749955E2,70.8562988],[-0.21522656249999926E2,70.5262207],[-0.21625537109374932E2,70.4685547],[-0.21943505859374966E2,70.443457],[-22.3841309,70.4624023],[-0.22437011718749943E2,70.8600098],[-0.22526074218749983E2,70.8078125],[-22.609668,70.4933105],[-22.6906738,70.4373047],[-0.23327832031249983E2,70.4509766],[-0.23791796875000014E2,70.5551758],[-23.9713867,70.6494629],[-24.2285156,70.9233887],[-0.24377001953124932E2,71.1463867],[-24.7810059,71.286084],[-25.2549805,71.3957031],[-0.25655859374999977E2,71.5300293],[-26.2114258,71.5899414],[-26.6885254,71.5833496],[-0.27010644531250023E2,71.6305664],[-27.1623047,71.6021973],[-27.1070313,71.532666],[-26.737207,71.5007813],[-26.0740723,71.4980469],[-0.25842724609374955E2,71.4801758],[-0.25699414062499983E2,71.3683105],[-25.7422363,71.1835938],[-26.1575195,71.050293],[-0.26717919921874994E2,70.9504883],[-0.27335693359374996E2,70.9527832],[-27.6887695,70.993457],[-28.303125,71.0071777],[-28.2915527,70.9493164],[-27.9921875,70.8952148],[-0.27979296875000017E2,70.839502],[-0.28145654296874966E2,70.6556641],[-28.5300781,70.5475586],[-0.29036816406249983E2,70.4615234],[-0.28540917968749937E2,70.4769043],[-0.28015039062500023E2,70.4022461],[-0.27596093750000023E2,70.4066895],[-0.26747265624999926E2,70.4755371],[-0.26508398437500034E2,70.3966309],[-0.26576806640625023E2,70.3570801],[-27.0725098,70.2812012],[-0.27560839843749932E2,70.1244629],[-0.27628857421874955E2,70.0282227],[-0.27384179687500023E2,69.9916016],[-0.27027734374999962E2,70.2012207],[-0.26752148437499955E2,70.2421875],[-0.26415673828124966E2,70.2213379],[-0.26155712890624926E2,70.2456055],[-0.25529882812499977E2,70.3531738],[-0.24748828124999932E2,70.2950684],[-24.0410156,70.1812012],[-23.667334,70.1393066],[-0.23173242187499937E2,70.1145996],[-22.2844727,70.1258301],[-22.2065918,70.1079102],[-0.22435107421875014E2,69.9857422],[-23.0882324,69.882959],[-0.23014550781249937E2,69.804834],[-0.23552539062499932E2,69.7405273],[-23.8657227,69.7367188],[-23.7089844,69.6272461],[-0.23943652343749932E2,69.5580566],[-0.24247509765624955E2,69.5903809],[-0.24220898437499926E2,69.4792969],[-24.7405762,69.3184082],[-0.25188574218750002E2,69.2605469],[-0.25092431640624937E2,69.1651855],[-0.25272216796874968E2,69.0916016],[-25.544043,69.0457031],[-0.25697998046874943E2,68.8898926],[-0.26138623046874926E2,68.7811523],[-26.3414062,68.7021484],[-0.26815332031250023E2,68.6543457],[-0.27851220703124937E2,68.4935059],[-28.3645508,68.4465332],[-29.2495117,68.2987793],[-29.8685059,68.3115723],[-0.30195507812499955E2,68.1989746],[-30.7200195,68.2511719],[-0.30610742187499994E2,68.1179199],[-30.9785645,68.0613281],[-0.31419482421875017E2,68.1284668],[-32.3274414,68.4373047],[-0.32180126953124976E2,68.2572754],[-32.3668457,68.2130371],[-0.32155957031249955E2,68.0631836],[-32.1645508,67.9911133],[-32.4487305,67.8709473],[-33.1569824,67.626709],[-33.348877,67.4427246],[-33.5175781,67.3541992],[-33.6082031,67.1742187],[-0.34101660156250034E2,66.7259277],[-0.34268896484375006E2,66.6250488],[-34.4228516,66.6301758],[-34.6328125,66.4347656],[-35.1885742,66.250293],[-35.4117188,66.2615234],[-35.8672363,66.4414062],[-0.35630078124999926E2,66.1399414],[-36.0441895,65.9866211],[-36.3791992,65.8308105],[-36.3889648,65.9597168],[-36.5272461,66.0077148],[-36.6372559,65.8123047],[-36.9324219,65.7825684],[-37.062793,65.8714355],[-0.37316015625000034E2,65.7902344],[-0.37410058593749994E2,65.6563477],[-37.7541992,65.5930664],[-37.9547852,65.6335938],[-38.0012695,65.7096191],[-37.7973633,65.8567871],[-37.7878418,65.9779785],[-0.37290673828125016E2,66.3239258],[-0.37813916015624955E2,66.385498],[-0.38156640624999966E2,66.3855957],[-37.7523438,66.2615234],[-37.9694336,66.1411133],[-38.1399414,65.9035156],[-38.5203613,66.009668],[-38.4426758,65.9216797],[-38.2163574,65.8383301],[-38.2033691,65.7117187],[-38.6367187,65.6243652],[-0.39088964843750006E2,65.6111328],[-39.9609375,65.5562012],[-40.1915527,65.5225098],[-39.5779297,65.3407715],[-40.0280273,65.1025391],[-40.253125,65.048877],[-40.6675781,65.1087402],[-41.0844238,65.1008301],[-0.40966015624999955E2,64.8688477],[-0.40655468749999926E2,64.915332],[-40.5210937,64.8254883],[-0.40432714843750034E2,64.6731934],[-40.1822266,64.4799316],[-40.4776367,64.3444336],[-40.6985352,64.3297363],[-40.7817383,64.2217773],[-41.1777344,64.2814453],[-0.41581005859374926E2,64.2983398],[-41.0305664,64.1210449],[-40.8256836,64.1625488],[-40.6177734,64.1317383],[-40.6523438,63.9277344],[-0.40550390625000034E2,0.63725244140625044E2],[-40.7715332,63.6261719],[-40.7751953,63.5336426],[-0.41048730468750016E2,0.63513818359375044E2],[-0.41152246093749966E2,63.3489258],[-41.1077148,0.63273779296875006E2],[-0.41387890624999926E2,63.0618652],[-41.8444824,0.63070263671875004E2],[-0.42174511718749955E2,63.2087891],[-42.0939941,0.63116748046875074E2],[-41.6344727,0.62972460937500074E2],[-41.9089844,62.7371094],[-0.42058251953124994E2,62.6939941],[-42.4237305,62.7231445],[-42.9416504,62.7202148],[-42.4671387,62.5981934],[-42.1529785,62.568457],[-42.2431641,62.4660645],[-0.42197949218749955E2,0.62397119140624994E2],[-0.42321484374999976E2,62.1527344],[-42.1430664,0.62013525390625006E2],[-42.1102051,61.8572266],[-42.249707,61.7713867],[-42.5853027,0.61717480468750004E2],[-0.42323632812499966E2,0.61681738281250006E2],[-42.41875,0.61537011718750016E2],[-42.6459961,61.0641113],[-42.717041,60.7674805],[-43.0440918,60.5236816],[-0.43348339843750004E2,60.5197754],[-0.43598339843749955E2,0.60576025390625006E2],[-43.9227051,60.5953613],[-43.8311523,60.5219727],[-43.2956543,60.4449707],[-43.1564941,0.60332861328125006E2],[-0.43122900390625006E2,60.0612305],[-43.3201172,59.928125],[-43.6168945,0.59936914062499994E2],[-43.9550293,60.0254883],[-43.6579102,59.8586426],[-43.906543,0.59815478515625045E2],[-44.1169922,59.8319336],[-44.0654785,59.9248047],[-44.3835937,59.8990723],[-0.44453466796875006E2,0.60014550781249994E2],[-0.44231347656249966E2,0.60180273437500006E2],[-44.2243652,60.2735352],[-44.5331543,60.0294922],[-44.812207,0.60049902343750006E2],[-45.379248,0.60202929687500024E2],[-0.45367773437500006E2,0.60372949218750016E2],[-0.45202490234375006E2,60.3827148],[-44.8535156,0.60531933593749976E2],[-44.7567383,60.6645996],[-0.45082714843749926E2,0.60507177734375006E2],[-45.3805176,60.4449219],[-45.5902832,0.60518847656250074E2],[-46.0466309,60.6157227],[-0.46141943359375006E2,60.7765137],[-0.46018652343750006E2,60.9717773],[-45.8798828,61.0941406],[-45.8702148,61.2183105],[-46.0117188,0.61096826171875044E2],[-46.5824219,0.60962060546875016E2],[-46.8744629,60.8164063],[-47.2244141,60.7828613],[-47.4646484,0.60842626953125034E2],[-47.7962402,60.8288574],[-0.47729931640624955E2,60.7294922],[-48.0139648,60.7219727],[-48.2419434,60.8068359],[-48.2051758,60.8559082],[-47.7703125,60.9977539],[-0.48386425781249926E2,0.61004736328125034E2],[-48.378125,61.1384766],[-48.4948242,61.224707],[-48.9220703,61.2774414],[-0.49049218749999966E2,61.523877],[-49.2890625,61.5899414],[-49.2652344,0.61710058593750006E2],[-49.3802734,61.8901855],[-49.0396484,0.62039355468750045E2],[-48.8287109,62.0796875],[-0.49202294921874966E2,0.62099316406250004E2],[-0.49348535156249994E2,62.0102051],[-0.49623779296874936E2,61.998584],[-49.6677246,62.1508789],[-49.5534668,62.2327148],[-50.0702148,62.364502],[-0.50319238281249966E2,0.62473193359375045E2],[-50.2593262,62.5780762],[-0.50298730468749966E2,62.7219727],[-50.0760254,62.9037598],[-0.49793115234374994E2,63.0446289],[-50.0922363,0.62976757812499955E2],[-50.3900879,0.62822021484374964E2],[-50.5015625,62.9449219],[-50.7435059,63.0512695],[-51.0130859,0.63257568359374964E2],[-0.51187597656250034E2,0.63436425781249994E2],[-51.4688477,63.6422852],[-51.5381836,0.63758007812499955E2],[-0.51451074218749994E2,63.9047852],[-51.5475098,64.0061035],[-0.50699365234374966E2,64.1492676],[-50.3418945,64.1703613],[-50.4866211,64.2088867],[-50.4370605,64.3128418],[-0.50721044921875034E2,64.2233398],[-51.5422852,64.0970215],[-51.7078613,64.2050781],[-51.5337891,64.314209],[-0.51403759765624926E2,64.4631836],[-0.51231542968750034E2,64.5605957],[-0.50834912109374955E2,64.5589844],[-0.50849218750000034E2,64.6446777],[-0.50355126953124994E2,64.6825684],[-50.1582031,64.4895508],[-50.0089844,64.4472656],[-50.1216309,64.7037598],[-50.298877,64.7785645],[-50.5169922,64.7665039],[-50.9606445,65.201123],[-0.50721582031249966E2,64.7976074],[-50.9890625,64.6648438],[-51.2206055,64.6284668],[-51.1389648,64.7857422],[-0.51363623046875006E2,64.7015625],[-51.4009277,64.6230957],[-51.7581055,64.2799316],[-51.9226074,64.21875],[-52.0934082,64.415918],[-52.0888672,64.681543],[-52.2590332,65.1549316],[-52.4476074,65.205127],[-0.52537695312500034E2,65.3288086],[-52.1795898,65.4419434],[-51.6191406,65.7131836],[-51.0903809,65.7510254],[-51.3937988,65.7791504],[-51.7234375,65.7234863],[-52.0353516,65.5694824],[-52.3482422,65.4613281],[-52.5512695,65.461377],[-52.7609375,65.5908203],[-52.9949219,65.5660156],[-53.1989746,65.594043],[-53.2337402,65.7708496],[-0.53106347656249966E2,65.9771484],[-53.392041,66.0483398],[-0.52510888671874966E2,66.3624023],[-0.52056103515624955E2,66.5073242],[-0.51891210937500034E2,66.6231445],[-51.5170898,66.7320313],[-0.51258593749999925E2,66.8412109],[-51.2810547,66.8909668],[-51.8230469,66.6978516],[-52.9219238,66.2411133],[-53.1560547,66.1777344],[-0.53614697265624955E2,66.1544922],[-0.53634716796874955E2,66.4136719],[-53.41875,66.6485352],[-0.53114648437499966E2,66.7538086],[-0.53038281249999955E2,66.8268066],[-52.3868652,66.8811523],[-52.5601074,66.909082],[-53.4436035,66.9246582],[-0.53687158203124994E2,66.9864746],[-53.8844238,67.1355469],[-53.798584,67.4181641],[-0.53223583984374955E2,67.5849609],[-52.9695312,67.6872559],[-0.52666455078124955E2,67.749707],[-52.3835937,67.7523437],[-51.909082,67.6637207],[-0.51450585937499966E2,67.6677246],[-0.51181445312499925E2,67.6365234],[-50.7053711,67.5088867],[-0.50640136718749964E2,67.5588379],[-51.1710449,67.6936035],[-50.9688477,67.8066406],[-0.51765234375000034E2,67.7378418],[-52.3448242,67.8369141],[-52.9795898,67.7577637],[-0.53418798828125034E2,67.5745605],[-0.53735205078125006E2,67.5490234],[-0.53577978515625034E2,67.8368164],[-53.3529297,67.9705078],[-0.53151562499999926E2,68.2077637],[-0.53040966796874955E2,68.2179199],[-52.436084,68.1456543],[-0.52058496093749994E2,68.0754883],[-51.596875,68.0547852],[-51.2072754,68.3255371],[-51.2101563,68.4199219],[-51.4561035,68.3935059],[-51.6324219,68.2730469],[-52.3785156,68.2186035],[-0.52698388671874994E2,68.2615234],[-52.7800293,68.3098633],[-53.3831543,68.2973633],[-53.2132813,68.4129883],[-0.53039453125000016E2,68.6108887],[-52.6045898,68.7087402],[-52.3027832,68.701123],[-0.51780664062499994E2,68.5481934],[-51.6231445,68.5348145],[-51.1333008,68.5984375],[-0.50945703124999966E2,68.682666],[-0.50807714843750006E2,68.8169922],[-51.2494141,68.7399414],[-51.0848633,69.1282715],[-0.50392675781250006E2,69.1374023],[-50.298877,69.1853516],[-50.5366211,69.2478516],[-51.0769531,69.2094727],[-0.50892236328124994E2,69.4117676],[-50.8041016,69.6630371],[-50.7202637,69.7253418],[-0.50349462890625006E2,69.7962402],[-50.5,69.935791],[-0.50291699218749955E2,70.0144531],[-50.436084,70.0393555],[-50.8023437,70.0032227],[-51.1057129,70.0574219],[-0.51418847656249994E2,69.989209],[-52.2546387,70.0589355],[-53.0230469,70.3019043],[-53.3575195,70.3533203],[-54.0144531,70.4216797],[-54.5011719,70.6568848],[-54.5307617,70.6992676],[-54.1658203,70.8201172],[-0.53513085937499966E2,70.7666016],[-53.0913086,70.7693848],[-52.6304199,70.7299316],[-52.4052246,70.6867676],[-51.5244629,70.4394531],[-50.946875,70.363623],[-50.6821289,70.396875],[-50.932666,70.4538574],[-51.3228516,70.5887695],[-51.3398926,70.6875488],[-51.2565918,70.8526855],[-51.7526855,70.9922363],[-0.51528417968750006E2,71.0140137],[-0.51130078124999955E2,70.9717285],[-0.51018945312499966E2,71.0013184],[-51.3766602,71.119043],[-52.061377,71.1216309],[-0.52534570312499994E2,71.2004395],[-53.0075684,71.1799805],[-0.53117041015625006E2,71.3128906],[-52.8918457,71.457666],[-0.52749414062499994E2,71.5015137],[-51.9672852,71.5991211],[-51.7699219,71.6717285],[-52.1958008,71.6299805],[-0.52656298828124925E2,71.6722656],[-53.1675293,71.5359375],[-0.53440087890625016E2,71.5790039],[-0.53476025390624955E2,71.6401855],[-53.3047363,71.6858887],[-53.1445313,71.8074219],[-53.3336914,71.7897461],[-53.4201172,71.9997559],[-53.6928711,72.159668],[-0.53809863281249925E2,72.2925781],[-53.6521484,72.3626465],[-53.9005371,72.341748],[-53.7928711,72.134082],[-53.5136719,71.9762695],[-53.4775879,71.8499512],[-53.7154297,71.757666],[-53.7796875,71.6785156],[-54.0199219,71.6578613],[-53.9120605,71.5259277],[-53.9629883,71.4589844],[-0.54317724609375006E2,71.3844727],[-54.6890625,71.3672363],[-55.3364258,71.4267578],[-55.594043,71.5535156],[-55.6693359,71.6915039],[-55.5492188,71.7682617],[-55.4524414,71.957666],[-0.55315576171874994E2,72.1106934],[-54.8726074,72.3254395],[-54.8963379,72.3941895],[-55.3201172,72.1995605],[-55.5814453,72.1788574],[-55.5893066,72.3185059],[-55.2957031,72.3543945],[-55.601709,72.4534668],[-55.4567871,72.5032715],[-55.121875,72.4996094],[-0.54790380859375034E2,72.6416016],[-54.7379395,72.8725098],[-54.8662109,72.9668457],[-55.0730957,73.0151367],[-55.288916,72.9332031],[-55.6685547,73.0079102],[-55.6927734,73.1128418],[-55.4523437,73.1619141],[-55.297168,73.2623047],[-55.3320312,73.3973633],[-0.55445703124999966E2,73.460498],[-0.55738867187500006E2,73.3839844],[-55.8755371,73.5046387],[-56.1040527,73.5581543],[-0.55968408203124966E2,73.7595703],[-55.8382812,73.7597168],[-55.9294922,73.8954102],[-56.2253906,74.1291016],[-56.4931641,74.1821777],[-56.9542969,74.1312012],[-57.2305664,74.125293],[-56.7063477,74.2191895],[-56.6389648,74.2783691],[-56.6560059,74.4575684],[-56.2554687,74.5268066],[-56.8711426,74.6949707],[-0.57190869140624955E2,74.89375],[-57.8131836,75.0399902],[-0.58253320312499966E2,75.2789551],[-0.58603466796874955E2,75.3853027],[-58.2496582,75.5066895],[-58.5162109,75.6890625],[-59.0815918,75.7646973],[-0.59445312499999964E2,75.8585937],[-0.60172753906250016E2,75.9933105],[-61.1882324,76.1578613],[-61.6208496,76.1856445],[-62.0966797,76.242334],[-0.62742871093749955E2,76.2521484],[-63.0058105,76.3190918],[-63.4388672,76.3394531],[-63.8430664,76.2171387],[-63.9603516,76.2089355],[-64.2231934,76.3033203],[-64.3873047,76.3040039],[-64.9119629,76.1725098],[-65.4567871,76.129834],[-65.9540527,76.2416992],[-66.4657715,76.1391602],[-66.8740234,76.2178711],[-67.0547852,76.1518555],[-66.6748047,75.9773926],[-66.8261719,75.9687988],[-68.1487305,76.067041],[-68.7630859,76.1866211],[-69.3729004,76.3318848],[-69.484082,76.3991699],[-68.8649902,76.561377],[-68.2454102,76.616748],[-68.2233887,76.6776855],[-68.7673828,76.6680176],[-69.2520508,76.6861328],[-69.6738281,76.7358887],[-69.8880859,76.8270508],[-69.6942383,76.9894531],[-70.4413086,76.807373],[-70.7928223,76.8690918],[-70.734668,76.9290039],[-71.0150391,76.9848633],[-71.1548828,77.073877],[-70.8628418,77.1754395],[-69.656543,77.2290039],[-68.9783203,77.1953125],[-68.5916016,77.3425293],[-68.1355469,77.3795898],[-67.4337891,77.384668],[-66.9379883,77.364209],[-66.3894531,77.2802734],[-66.4530762,77.3930664],[-66.2664551,77.5153809],[-66.3064453,77.564502],[-66.6912109,77.6812012],[-67.1473633,77.6345215],[-67.5146484,77.5429199],[-67.9773438,77.5188965],[-68.6215332,77.6018555],[-68.9745605,77.492627],[-69.3513672,77.4671387],[-69.9767578,77.5476563],[-70.1263672,77.637793],[-70.5619141,77.7171875],[-70.0814941,77.8313965],[-70.4124023,77.8431152],[-70.6135254,77.8],[-70.9936035,77.7915527],[-71.3898437,77.8320312],[-71.6499023,77.8998047],[-72.0649414,77.9368164],[-72.7915039,78.1548828],[-72.8180664,78.1943359],[-72.5812988,78.2791016],[-72.7147949,78.3623047],[-72.3956055,78.5043457],[-71.6513184,78.6231445],[-70.9057617,78.6384766],[-70.414209,78.7249023],[-69.9735352,78.7776855],[-68.993457,78.8574219],[-69.0305176,78.9428711],[-68.3770508,79.0378418],[-67.7077637,79.0803711],[-67.4822266,79.1168945],[-66.5837402,79.1376953],[-65.9678711,79.132373],[-65.419873,79.3402344],[-65.1169434,79.5890137],[-64.7922852,80.0006348],[-64.4657227,80.0716797],[-64.1791504,80.0992676],[-64.5446289,80.1369141],[-64.9822266,80.0824707],[-65.3949219,80.0777344],[-65.8104492,80.0240723],[-66.2915039,80.0722656],[-66.8436523,80.0762207],[-67.1413086,80.1664551],[-67.1931641,80.2800781],[-66.9958984,80.4129883],[-66.3723145,80.5841797],[-65.6452148,80.6850586],[-65.0621582,80.8363281],[-64.5155273,81],[-63.8915527,81.0564453],[-63.4416992,81.0138672],[-63.0585937,80.8855957],[-63.2352051,81.0833496],[-63.2125,81.1431152],[-62.9033691,81.2183594],[-62.298877,81.1943848],[-61.6355957,81.1157227],[-0.61435986328124976E2,81.1335938],[-0.61162060546874955E2,81.2814941],[-61.1,81.3960938],[-61.2029297,81.746875],[-60.8428711,81.8553711],[-60.432373,81.920166],[-59.9019043,81.9330078],[-0.59281933593749976E2,81.8840332],[-58.9567871,81.8251953],[-0.58429785156250034E2,81.6900391],[-57.5048828,81.5398926],[-56.8620605,81.3827148],[-0.56615136718749994E2,81.3628906],[-56.859668,81.4599609],[-57.8530273,81.6620117],[-58.816748,81.9204102],[-59.2680176,81.9820801],[-59.2618164,82.0066406],[-0.58717382812500006E2,82.0930664],[-57.7168945,82.1683105],[-0.56589355468749964E2,82.2271484],[-56.2119629,82.2211426],[-55.5486816,82.245752],[-0.55486230468749966E2,82.2828613],[-54.7258789,82.3513672],[-54.2770508,82.3260742],[-53.9873047,82.279248],[-0.53671337890624955E2,82.1640625],[-53.5820312,82.0615723],[-53.5955078,81.7380371],[-53.5556641,81.6532715],[-53.1450195,81.7997559],[-52.9255371,82.0383789],[-0.53101953124999966E2,82.1189453],[-0.53110742187499966E2,82.2512207],[-0.53022558593750034E2,82.3217285],[-52.7755859,82.3217285],[-51.7540039,82.0782227],[-51.3518555,82.0256348],[-0.50894433593749994E2,81.8952148],[-50.3600586,81.909082],[-0.49867041015625034E2,81.8930176],[-49.5410645,81.9180664],[-0.49694287109375004E2,81.9721191],[-50.3948242,82.1207031],[-50.7131348,82.2373535],[-50.9899414,82.4601562],[-50.8195313,82.4740723],[-0.50037109374999936E2,82.4724121],[-0.48861181640625006E2,82.4054199],[-47.3574219,82.1736328],[-46.617334,82.0969727],[-45.2910645,81.8288086],[-44.7294922,81.779834],[-44.5324219,81.8489258],[-44.6371094,82.1044434],[-44.5470703,82.2600586],[-44.2388672,82.3681641],[-44.3265625,82.4717285],[-44.5772461,82.542627],[-0.45552441406249976E2,82.7252441],[-0.45556542968750016E2,82.7470215],[-45.0674316,82.7849609],[-0.42650732421875006E2,82.7414551],[-42.232959,82.7254883],[-41.8764648,82.6803223],[-41.3572754,82.7049805],[-41.4344238,82.7786133],[-0.44239208984374955E2,82.8567871],[-44.7619629,82.8835449],[-45.3029785,82.8650879],[-0.46136816406250006E2,82.8588379],[-46.4781738,82.9519043],[-0.46169042968750006E2,83.0638672],[-45.4145996,83.0176758],[-45.1217773,83.0786621],[-44.6569336,83.1290527],[-44.1973145,83.1468262],[-43.0092773,83.2645996],[-42.2595215,83.2319824],[-0.41819775390624976E2,83.1477539],[-0.41300146484375006E2,83.1007812],[-40.6894531,83.2751953],[-40.3568359,83.3321777],[-39.8863281,83.2989258],[-39.3160156,83.2039062],[-0.38931103515625004E2,83.1753418],[-38.2783691,82.998877],[-38.0370117,83.0462891],[-0.37934765624999955E2,83.1607422],[-38.5395508,83.2581543],[-38.7495605,83.3708496],[-0.38541455078124926E2,83.4147949],[-38.0710937,83.4121094],[-0.37828027343749994E2,83.4855469],[-0.37486914062500034E2,83.4991211],[-0.37122998046874955E2,83.4684082],[-36.6895996,83.4799316],[-36.6064941,83.5369629],[-0.35451855468749955E2,83.538623],[-34.6677734,83.5711426],[-34.1319336,83.5286621],[-0.33837353515625004E2,83.5299805],[-32.9844238,83.5996094],[-30.7029297,83.5934082],[-29.9528809,83.5648437]]]]}}],"_labels":{"GL":"Greenland"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/GM.json b/src/api-umbrella/admin-ui/public/maps/GM.json new file mode 100644 index 000000000..6271af4cc --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/GM.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"GM"},"geometry":{"type":"Polygon","coordinates":[[[-0.16763330078124994E2,0.13064160156249997E2],[-0.16824804687499977E2,13.3410645],[-16.6693359,13.475],[-16.5564453,13.3032227],[-16.4133789,0.13269726562499997E2],[-16.1850586,13.2827148],[-0.16158398437499983E2,0.13384033203124998E2],[-0.15438134765624993E2,13.4832031],[-0.15569531249999983E2,0.13499853515624991E2],[-0.15849902343749989E2,0.13459960937499998E2],[-0.16135449218749983E2,0.13448242187499998E2],[-16.3518066,13.3433594],[-0.16440527343749977E2,0.13353173828124993E2],[-16.5300781,0.13457958984374997E2],[-16.5623047,0.13587304687499993E2],[-0.16308740234374994E2,13.596875],[-0.15509667968749994E2,0.13586230468750003E2],[-0.15426855468749977E2,0.13727001953124997E2],[-15.2695312,0.13789111328125003E2],[-0.15108349609374983E2,13.8121094],[-14.935791,0.13785205078125003E2],[-14.7660156,0.13669091796874994E2],[-0.14570849609374989E2,0.13616162109374997E2],[-0.14405468749999983E2,0.13503710937500003E2],[-0.14325537109374977E2,0.13488574218750003E2],[-14.1469727,13.5361328],[-0.13977392578124977E2,13.543457],[-0.13852832031249989E2,0.13478564453125001E2],[-0.13847509765624977E2,0.13335302734374991E2],[-0.14246777343749983E2,13.2358398],[-0.14438574218749975E2,0.13268896484374991E2],[-0.14671923828124987E2,0.13351708984374994E2],[-0.15151123046875002E2,0.13556494140624991E2],[-0.15286230468749977E2,13.3959961],[-0.15814404296874983E2,0.13325146484374997E2],[-0.15834277343749987E2,0.13156445312499997E2],[-0.16648779296874977E2,0.13154150390624991E2],[-0.16763330078124994E2,0.13064160156249997E2]]]}}],"_labels":{"GM":"Gambia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/GN.json b/src/api-umbrella/admin-ui/public/maps/GN.json new file mode 100644 index 000000000..6a7fa686c --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/GN.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"GN"},"geometry":{"type":"Polygon","coordinates":[[[-11.3894043,12.4043945],[-0.11502197265624998E2,0.12198632812499994E2],[-11.4924316,0.12166943359374997E2],[-11.3051758,0.12015429687499989E2],[-0.11209667968749983E2,0.12024853515624997E2],[-0.11065820312499994E2,0.12170800781249994E2],[-0.10933203124999977E2,0.12205175781249991E2],[-0.10876171874999981E2,12.1518555],[-0.10743017578124977E2,11.9272461],[-0.10677343749999977E2,11.8994141],[-10.4658203,12.1386719],[-0.10274853515624983E2,12.2126465],[-9.82070312,12.0424805],[-9.71474609,12.0424805],[-0.9658300781249977E1,0.12143115234374987E2],[-9.48681641,0.12228662109374994E2],[-0.9358105468749983E1,0.12255419921874989E2],[-9.33154297,12.3237305],[-0.9395361328124977E1,0.12464648437499989E2],[-0.9215527343749983E1,0.12482861328124997E2],[-0.9043066406249977E1,12.4023438],[-8.99892578,0.12345898437499997E2],[-8.91386719,0.12108544921874993E2],[-8.81831055,0.11922509765624993E2],[-8.82202148,0.11673242187499994E2],[-8.71142578,0.11617773437499991E2],[-8.66494141,0.11514990234374991E2],[-8.4074707,0.11386279296874989E2],[-8.42529297,0.11304736328124987E2],[-8.5203125,11.2359375],[-8.66391602,0.11035839843749997E2],[-8.64619141,10.9904785],[-8.56352539,0.10996679687499991E2],[-8.47470703,0.11048388671874989E2],[-8.33740234,10.990625],[-8.30634766,10.8960938],[-8.32412109,0.10749511718749998E2],[-8.26665039,0.10485986328124994E2],[-8.23149414,10.4379883],[-8.00727539,10.321875],[-7.97446289,0.10229541015624989E2],[-8.01352539,0.10125292968749989E2],[-8.13662109,10.0220703],[-8.14584961,9.88173828],[-8.13696289,9.49570312],[-8.03100586,9.39765625],[-7.89619141,9.41586914],[-7.91806641,0.9188525390624989E1],[-7.8394043,9.15161133],[-7.77797852,0.9080859374999989E1],[-7.93818359,8.97978516],[-7.95097656,8.78681641],[-7.7840332,8.72060547],[-7.6909668,8.5625],[-7.68120117,8.41035156],[-7.73896484,8.37524414],[-7.82358398,8.46767578],[-8.04912109,8.4953125],[-8.20996094,8.48325195],[-8.23696289,8.45566406],[-8.25610352,8.25371094],[-8.21713867,8.21967773],[-8.01674805,8.14492187],[-8.00986328,8.07851562],[-8.12685547,7.86772461],[-8.11542969,7.76074219],[-8.23188477,7.55673828],[-8.42998047,7.60185547],[-8.48642578,7.55849609],[-8.57885742,7.67705078],[-8.70830078,7.65888672],[-8.74023438,7.49570312],[-8.82792969,7.39194336],[-8.88964844,7.26269531],[-8.96098633,7.27460937],[-9.11757812,7.21591797],[-0.9263281249999977E1,7.37773437],[-0.9463818359374983E1,7.41586914],[-0.9368945312499989E1,7.63955078],[-9.39492187,7.79462891],[-0.9436328124999989E1,7.86669922],[-9.44155273,7.96791992],[-9.48413086,8.15698242],[-0.9508496093749983E1,8.17626953],[-0.9518261718749981E1,8.34609375],[-0.9610156249999989E1,8.40234375],[-9.66357422,8.47353516],[-9.7355957,8.45395508],[-0.9768261718749983E1,8.53457031],[-0.10064355468749994E2,8.42988281],[-10.0976562,8.50585938],[-0.10394433593749994E2,8.48095703],[-0.10557714843749975E2,8.31567383],[-0.10712109374999983E2,8.33525391],[-0.10628466796874989E2,8.52998047],[-0.10500537109374989E2,8.68754883],[-0.10605615234374994E2,8.86757812],[-10.6159668,0.9059179687499991E1],[-0.10726855468749989E2,0.9081689453124993E1],[-0.10749951171874981E2,0.9122363281249989E1],[-0.10687646484374993E2,9.26113281],[-0.10690527343749977E2,0.9314257812499989E1],[-0.10864794921874989E2,0.9516455078124991E1],[-0.11047460937499975E2,9.78632813],[-0.11115673828124981E2,9.84316406],[-0.11205664062499975E2,9.97773438],[-0.11273632812499983E2,0.9996533203124997E1],[-0.11911083984374983E2,0.9993017578124991E1],[-0.11922753906249994E2,9.92275391],[-12.142334,9.87539062],[-12.2777344,0.9929785156249991E1],[-12.5014648,0.9862158203124991E1],[-12.5578613,0.9704980468749993E1],[-12.7558594,0.9373583984374989E1],[-0.12831103515624989E2,9.30224609],[-0.12958789062499987E2,9.26333008],[-0.13028027343749983E2,0.9103564453124989E1],[-13.1298828,0.9047558593749997E1],[-0.13234228515624977E2,0.9070117187499987E1],[-0.13292675781249981E2,9.04921875],[-0.13269482421874983E2,9.17055664],[-0.13396093749999977E2,9.31430664],[-13.4362793,9.4203125],[-0.13568261718749994E2,0.9543408203124997E1],[-0.13691357421874981E2,9.53579102],[-0.13657128906249994E2,0.9639111328124995E1],[-0.13658691406249998E2,9.77636719],[-0.13700488281249989E2,0.9851269531249997E1],[-0.13689794921874977E2,0.9927783203124989E1],[-0.13753710937499989E2,9.87026367],[-0.13820117187499989E2,9.88720703],[-0.13954638671874989E2,0.9968701171874997E1],[-14.021875,10.0478516],[-0.14045019531249977E2,0.10141259765624993E2],[-14.1704102,0.10128613281249997E2],[-0.14426904296874993E2,0.10248339843749987E2],[-0.14609570312499983E2,0.10549853515624987E2],[-14.5935059,0.10766699218749991E2],[-0.14677343749999975E2,10.6889648],[-0.14775927734374989E2,10.9316406],[-14.8867188,0.10968066406249989E2],[-0.14924804687499998E2,10.9449219],[-14.975,0.10803417968749997E2],[-0.15051220703124983E2,0.10834570312499991E2],[-0.15043017578124989E2,0.10940136718749997E2],[-0.14944433593749977E2,0.11072167968749994E2],[-14.7792969,11.4055176],[-0.14682958984374975E2,0.11508496093749997E2],[-0.14452441406249987E2,0.11556201171874989E2],[-0.14265576171874981E2,11.6599121],[-14.1223145,11.6519531],[-0.13953222656249977E2,0.11664599609374989E2],[-0.13732763671874977E2,0.11736035156249997E2],[-0.13737988281249983E2,0.12009667968749994E2],[-0.13816308593749994E2,0.12054492187499989E2],[-0.13948876953124994E2,0.12178173828124997E2],[-0.13947314453124989E2,12.2152344],[-0.13849462890624977E2,0.12262988281249989E2],[-13.7597656,0.12262353515624994E2],[-0.13707910156249994E2,0.12312695312499997E2],[-0.13673535156249983E2,12.4785156],[-0.13732617187499983E2,0.12592822265624989E2],[-13.729248,0.12673925781249991E2],[-13.4057617,0.12662255859374994E2],[-0.13082910156249994E2,12.6335449],[-13.079834,0.12536279296874993E2],[-0.13011914062499983E2,0.12477636718749991E2],[-0.12930712890624989E2,0.12532275390624987E2],[-0.12797314453124983E2,12.4519043],[-0.12399072265624994E2,12.3400879],[-0.12291210937499983E2,0.12328027343749994E2],[-0.12042382812499993E2,12.3980469],[-11.8081055,12.3873047],[-0.11573681640624983E2,0.12426318359374987E2],[-11.3894043,12.4043945]]]}}],"_labels":{"GN":"Guinea"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/GP.json b/src/api-umbrella/admin-ui/public/maps/GP.json new file mode 100644 index 000000000..00f41b869 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/GP.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"GP"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-61.2304688,0.15889941406250072E2],[-0.61310742187499955E2,0.15894677734374966E2],[-61.25,0.16006298828124983E2],[-61.2304688,0.15889941406250072E2]]],[[[-61.5895508,0.16006933593750006E2],[-61.670459,0.15962060546875023E2],[-61.7594238,0.16062060546875045E2],[-61.7940918,0.16300976562499955E2],[-0.61748046874999964E2,0.16355273437500017E2],[-61.5523437,0.16270898437499966E2],[-0.61563867187499994E2,0.16047753906249994E2],[-61.5895508,0.16006933593750006E2]]],[[[-61.3271484,16.2304199],[-0.61522167968749955E2,16.2280273],[-0.61500585937500006E2,16.3602051],[-0.61528906249999984E2,16.4337891],[-0.61471191406249936E2,0.16506640625000045E2],[-61.4064453,0.16468310546875045E2],[-61.3554688,0.16363183593750023E2],[-61.1726074,16.2561035],[-61.3271484,16.2304199]]]]}}],"_labels":{"GP":"Guadeloupe"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/GQ.json b/src/api-umbrella/admin-ui/public/maps/GQ.json new file mode 100644 index 000000000..485d6c624 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/GQ.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"GQ"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.11334667968750068E2,1.12075195],[0.11335351562500023E2,0.999707031],[0.10028515625000068E2,1.00400391],[9.90673828,0.960107422],[9.80390625,0.998730469],[0.9760546874999989E1,1.07470703],[0.9599414062500045E1,1.05444336],[9.50986328,1.11479492],[9.3859375,1.13925781],[9.43408203,1.29638672],[9.49423828,1.43530273],[0.9584277343750045E1,1.54023438],[0.9632128906250045E1,1.56552734],[9.71884766,1.78867187],[0.9807031250000051E1,1.92749023],[9.7796875,2.06821289],[9.80078125,2.30444336],[9.87011719,2.21328125],[9.97988281,2.16777344],[0.11328710937500004E2,2.16743164],[0.11334667968750068E2,1.12075195]]],[[[8.73574219,3.75830078],[8.91005859,3.75820313],[8.95068359,3.70532227],[8.94609375,3.62753906],[8.7921875,3.40039062],[8.76347656,3.30463867],[8.70400391,3.22363281],[8.65234375,3.21708984],[8.47490234,3.26464844],[8.43427734,3.33242187],[8.46464844,3.45058594],[8.57724609,3.48237305],[8.62275391,3.57998047],[8.63769531,3.66884766],[8.67587891,3.7359375],[8.73574219,3.75830078]]]]}}],"_labels":{"GQ":"Eq. Guinea"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/GR.json b/src/api-umbrella/admin-ui/public/maps/GR.json new file mode 100644 index 000000000..72eca2e9c --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/GR.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"GR"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.23852246093749983E2,35.5354492],[24.034375,0.35535400390624964E2],[0.24166015625000057E2,35.5952148],[0.24197753906250025E2,0.35537451171875034E2],[0.24108984374999977E2,35.4958008],[0.24255371093750057E2,0.35468603515625055E2],[24.3128906,35.3638184],[0.24444921875000034E2,35.3660156],[0.24721289062500034E2,35.4248047],[25.003125,35.4098633],[0.25104296875000074E2,35.3469238],[0.25475683593750063E2,35.3062012],[25.7301758,35.348584],[25.7450195,0.35142724609374994E2],[0.25837109375000068E2,35.1325684],[0.26028027343750065E2,0.35215283203124955E2],[26.1678711,35.2150879],[0.26285546875000023E2,35.3097656],[0.26244335937500068E2,35.0446777],[26.165625,35.0186035],[0.25829687500000063E2,0.35025195312500045E2],[25.2057617,34.9592773],[24.7998047,34.9344727],[0.24745214843750006E2,0.34950634765624955E2],[24.7088867,35.0890625],[0.24463671875000045E2,0.35160351562499955E2],[0.23883593750000074E2,35.2460938],[23.6380859,35.2351563],[0.23561621093750034E2,35.295166],[23.5475586,35.4155762],[0.23608691406250017E2,35.5662598],[23.6726562,35.513916],[23.7369141,35.6555176],[0.23852246093749983E2,35.5354492]]],[[[27.1760742,35.4652832],[0.27137890625000036E2,0.35409082031249994E2],[0.27070703125000023E2,35.5977539],[27.2231445,0.35820458984374966E2],[0.27157226562499968E2,35.6294922],[27.2335937,0.35478564453125045E2],[27.1760742,35.4652832]]],[[[0.23053808593750034E2,36.1897949],[22.9394531,36.1762207],[22.9056641,36.3203125],[0.22950488281250045E2,36.3839355],[23.0970703,36.246582],[0.23053808593750034E2,36.1897949]]],[[[27.8427734,35.9292969],[27.7155273,35.9573242],[27.7573242,0.36069189453125006E2],[27.7163086,0.36171582031250004E2],[27.9144531,0.36345312500000034E2],[28.2318359,36.4336426],[28.144043,0.36209863281249994E2],[0.28067675781250017E2,36.1296875],[0.28087792968750023E2,36.065332],[0.27965527343750065E2,36.0475098],[27.8427734,35.9292969]]],[[[25.4824219,36.392627],[25.3705078,36.3589355],[0.25408984375000074E2,0.36473730468750006E2],[25.4824219,36.392627]]],[[[26.4606445,36.5854004],[26.3314453,36.511377],[0.26269824218750017E2,36.5954102],[26.4212891,36.6242188],[26.4606445,36.5854004]]],[[[0.27860156250000017E2,36.5539063],[0.27785742187500034E2,0.36607519531250006E2],[27.8625,36.6411621],[0.27860156250000017E2,36.5539063]]],[[[0.24535742187500063E2,0.36763769531250034E2],[0.24530664062499994E2,36.6839844],[0.24325976562500045E2,0.36655615234375034E2],[0.24357421875000057E2,0.36744287109374966E2],[0.24425195312500023E2,36.7129395],[0.24535742187500063E2,0.36763769531250034E2]]],[[[25.3817383,36.6740234],[25.2599609,36.7584473],[25.2958984,0.36789160156250055E2],[25.4069336,36.717334],[25.3817383,36.6740234]]],[[[26.9496094,36.7270996],[0.27061132812500034E2,36.8403809],[27.265625,36.905127],[0.27352148437499977E2,36.8688965],[0.27150976562500034E2,36.7775879],[26.9496094,36.7270996]]],[[[25.859375,36.7904297],[25.7431641,36.7897461],[0.26000683593749983E2,0.36937402343749966E2],[0.26064453125000025E2,0.36902734375000016E2],[25.859375,36.7904297]]],[[[24.7208984,36.9214355],[24.7208984,36.9214355],[24.7208984,36.9214355],[24.7208984,36.9214355]]],[[[27.0197266,36.9590332],[0.26919921875000025E2,0.36945214843750044E2],[26.8886719,0.37087255859375034E2],[0.27040136718750006E2,37.0015625],[27.0197266,36.9590332]]],[[[0.25278906250000034E2,37.0684082],[25.1994141,0.36991308593750034E2],[0.25105468750000057E2,0.37034960937500045E2],[0.25146484375000057E2,37.1074219],[0.25275292968749994E2,37.1378418],[0.25278906250000034E2,37.0684082]]],[[[25.5458984,36.9675781],[0.25456738281250008E2,36.9296875],[25.3619141,37.0704102],[25.525293,37.1963867],[25.5878906,37.1525391],[25.5458984,36.9675781]]],[[[0.24523535156250063E2,0.37125097656250006E2],[24.4248047,37.1319824],[0.24529101562500045E2,37.192334],[0.24523535156250063E2,0.37125097656250006E2]]],[[[24.4357422,37.3444336],[24.3789062,0.37314111328124966E2],[0.24369726562500002E2,37.4196289],[24.43125,37.4751953],[24.4814453,37.4080078],[24.4357422,37.3444336]]],[[[0.24942871093750057E2,37.4935059],[0.24942871093750057E2,37.4935059],[0.24942871093750057E2,37.4935059],[0.24942871093750057E2,37.4935059]]],[[[0.25402734375000023E2,0.37419140624999955E2],[25.3071289,37.4129883],[0.25348144531250025E2,37.5091797],[0.25462988281250063E2,37.4710938],[0.25402734375000023E2,0.37419140624999955E2]]],[[[0.26029296875000057E2,0.37529394531250034E2],[25.9967773,37.5655762],[0.26086328125000023E2,37.6349121],[0.26351367187500014E2,37.6743164],[0.26204882812500017E2,37.5685059],[0.26029296875000057E2,0.37529394531250034E2]]],[[[0.25255859375000057E2,37.5996094],[0.25156347656250034E2,37.5450684],[24.9964844,0.37676904296874994E2],[0.25225390625000045E2,37.6306641],[0.25255859375000057E2,37.5996094]]],[[[0.24355957031250025E2,37.5768555],[0.24288964843750048E2,0.37528271484374976E2],[0.24320410156250063E2,37.6777344],[0.24400781250000023E2,0.37649023437500006E2],[0.24355957031250025E2,37.5768555]]],[[[26.8244141,37.8114258],[0.27039648437500006E2,37.7700195],[27.0550781,37.7092773],[0.26844921875000036E2,0.37644726562500004E2],[0.26720507812500017E2,37.7054688],[26.5810547,0.37723730468750034E2],[26.6386719,37.7808594],[26.8244141,37.8114258]]],[[[0.20888476562500074E2,0.37805371093749955E2],[0.20993945312500074E2,37.7080078],[0.20909082031249994E2,37.7321289],[0.20818554687500036E2,37.6647461],[20.7038086,37.743457],[0.20619531250000076E2,0.37855029296875045E2],[0.20691503906250002E2,37.929541],[0.20758691406249994E2,37.8529785],[0.20888476562500074E2,0.37805371093749955E2]]],[[[0.24991699218750057E2,37.7596191],[0.24962207031250074E2,37.6923828],[24.7143555,37.898877],[0.24700195312499996E2,37.9616699],[24.7904297,37.9901367],[24.8550781,37.9136719],[0.24956347656250045E2,37.9047852],[0.24991699218750057E2,37.7596191]]],[[[0.23550976562499983E2,0.37925878906250006E2],[23.4352539,0.37911474609375006E2],[0.23462207031250017E2,37.9803711],[0.23550976562499983E2,0.37925878906250006E2]]],[[[20.6123047,38.3833496],[0.20624707031250068E2,0.38267871093750045E2],[20.6952148,38.2461914],[0.20788867187500017E2,38.1420898],[20.7613281,38.0705566],[20.6061523,38.1197266],[0.20523535156250063E2,38.1066406],[20.4521484,38.2341797],[20.3525391,0.38179882812499955E2],[20.4086914,0.38336767578125034E2],[0.20519628906250063E2,38.3323242],[0.20563183593750068E2,38.4749512],[20.6123047,38.3833496]]],[[[0.20758691406249994E2,38.3294434],[0.20709277343750074E2,38.3186035],[0.20623632812500034E2,38.4803223],[0.20674804687500057E2,38.4763184],[0.20758691406249994E2,38.3294434]]],[[[0.26094042968750017E2,38.2180664],[25.9985352,38.1615234],[0.25874316406250017E2,0.38269628906250034E2],[0.25991406250000068E2,38.3535156],[25.8512695,0.38508398437500006E2],[0.25846093750000023E2,38.5740234],[26.0125,0.38601708984375016E2],[0.26160351562500008E2,0.38540722656250004E2],[0.26157031250000042E2,38.3029297],[0.26094042968750017E2,38.2180664]]],[[[20.6867188,38.6086914],[20.5546875,38.5825684],[0.20557910156250045E2,38.6618652],[20.634668,38.8175781],[20.7196289,0.38799169921875006E2],[20.6867188,38.6086914]]],[[[24.674707,38.8092285],[24.5410156,38.7886719],[24.5664062,0.38832373046875034E2],[0.24461035156250034E2,38.888623],[0.24485644531250074E2,38.9802734],[24.674707,38.8092285]]],[[[23.4154297,0.38958642578124994E2],[0.23471972656250074E2,38.8500977],[0.23878222656250045E2,38.6865723],[24.0990234,0.38670996093750006E2],[0.24199707031249996E2,38.5410156],[24.1875,38.4634277],[24.2757813,38.2200195],[0.24359667968750074E2,38.1625],[0.24563281250000074E2,38.1475098],[24.5785156,38.020166],[0.24502343750000023E2,37.9699219],[0.24359472656250034E2,38.0185547],[0.24212011718750006E2,38.1175293],[0.24189062500000034E2,0.38204296874999955E2],[0.24040136718750002E2,0.38389990234375034E2],[0.23758789062500057E2,0.38401220703125034E2],[23.6507813,38.4430664],[23.6173828,38.5525391],[0.23505273437499994E2,0.38612939453124994E2],[0.23252148437500036E2,38.8012207],[0.23029101562500074E2,0.38873388671875034E2],[0.22870312500000068E2,0.38870507812499966E2],[0.23145800781250045E2,39.0026855],[23.3126953,39.0349121],[23.4154297,0.38958642578124994E2]]],[[[0.23779785156250057E2,39.1144043],[0.23666113281250002E2,39.0953613],[23.5939453,39.2085937],[0.23779785156250057E2,39.1144043]]],[[[0.23887988281250074E2,39.1583008],[0.23888085937500023E2,39.2263672],[23.9708984,0.39267724609374994E2],[0.23887988281250074E2,39.1583008]]],[[[26.4101563,0.39329443359375034E2],[26.3927734,0.39270117187500034E2],[0.26531054687500045E2,0.39171777343749966E2],[26.5839844,39.0314453],[26.3901367,38.9739258],[26.1608398,39.0258789],[26.1079102,39.0810547],[0.26273144531249983E2,39.1975586],[26.1759766,39.1942871],[0.26072363281250034E2,0.39095605468749994E2],[25.90625,0.39138964843750045E2],[25.8441406,39.2000488],[25.9095703,39.2875488],[0.26026464843750006E2,0.39284619140624955E2],[0.26164843750000045E2,39.3319824],[26.1654297,39.3735352],[0.26347753906250002E2,39.3830078],[26.4101563,0.39329443359375034E2]]],[[[0.20077929687500045E2,0.39432714843750034E2],[20.0996094,0.39376611328124966E2],[0.19883984375000068E2,0.39461523437500034E2],[0.19808886718750045E2,0.39585302734375034E2],[0.19648925781250057E2,0.39726171875000034E2],[0.19707324218750045E2,39.7980957],[19.8385742,39.8201172],[0.19936816406250074E2,39.7467285],[19.8466797,39.6681152],[0.19904101562500074E2,39.6194824],[19.9552734,39.4704102],[0.20077929687500045E2,0.39432714843750034E2]]],[[[0.25437695312500036E2,39.9833008],[0.25357031250000063E2,39.8081055],[0.25263378906250068E2,39.8229492],[25.2494141,39.8941406],[0.25185156250000034E2,0.39829931640625034E2],[25.062207,0.39852392578125006E2],[25.0580078,0.39999658203124966E2],[0.25234179687500074E2,40.0054199],[0.25285742187500006E2,39.9562988],[25.4491211,40.0348145],[0.25437695312500036E2,39.9833008]]],[[[0.25685742187500036E2,40.4265625],[0.25572656250000023E2,40.4004395],[0.25448046875000017E2,40.4828125],[0.25568554687500068E2,40.5158691],[0.25685742187500036E2,40.4265625]]],[[[0.24774218750000074E2,0.40615185546874955E2],[24.6458984,40.5794434],[24.5155273,40.6470215],[0.24623339843750045E2,40.7929199],[0.24719140625000023E2,0.40786279296874994E2],[24.7863281,40.7038574],[0.24774218750000074E2,0.40615185546874955E2]]],[[[0.26536425781250074E2,0.41343115234375034E2],[0.26330664062499977E2,41.2387695],[0.26331054687500057E2,40.9544922],[0.26109179687500074E2,0.40749658203124994E2],[25.8556641,40.8440918],[25.4967773,40.887793],[0.25325292968750063E2,40.9431152],[0.25250097656250034E2,40.9328125],[0.25104492187500025E2,40.9947266],[0.25004687500000045E2,40.9675293],[0.24792968750000057E2,0.40857519531250034E2],[0.24678710937500057E2,40.8694824],[24.4770508,40.9477539],[0.24383789062500025E2,40.9127441],[24.234375,40.7861328],[0.24082324218750074E2,40.7240723],[0.23762792968750063E2,40.7478027],[0.23743261718750006E2,40.677002],[23.8789062,40.5443848],[0.23866796875000034E2,40.4185547],[24.0305664,40.4093262],[24.212793,40.3277832],[0.24343359375000034E2,40.1477051],[0.24158789062500006E2,40.2800293],[0.23823437500000065E2,40.3680176],[0.23720507812500074E2,0.40286279296875016E2],[23.9674805,40.1145508],[0.24000781250000045E2,0.40024609374999976E2],[0.23947070312500045E2,39.9655762],[23.8353516,40.0222656],[23.6645508,40.2238281],[23.4262695,40.2639648],[23.3864258,40.2219727],[0.23467089843750042E2,40.0739258],[0.23674121093750045E2,39.9588867],[23.6273438,39.9240723],[0.23395605468750034E2,39.9898437],[0.23328222656250002E2,40.0899414],[0.23312011718749968E2,0.40216455078124994E2],[0.22896484375000057E2,40.3999023],[0.22851367187500017E2,40.490625],[22.9222656,40.5908691],[0.22811425781250048E2,40.5786133],[0.22629492187500034E2,40.4955566],[0.22642675781250034E2,0.40366601562500016E2],[22.5693359,40.1193359],[22.5921875,40.0369141],[0.22835742187500017E2,39.8005859],[0.22919042968750034E2,39.6289063],[0.23103417968750023E2,0.39492041015625034E2],[0.23288476562500076E2,39.2888184],[0.23327734374999977E2,39.1749023],[23.2183594,39.1043945],[0.23119433593750017E2,39.1327637],[23.1617187,39.2577637],[0.22992871093750068E2,39.3310547],[0.22838964843750063E2,39.2585937],[0.22965527343750008E2,39.0309082],[0.23066699218750017E2,39.0379395],[0.22930468750000045E2,38.9477051],[22.8026367,38.9016113],[0.22596777343750002E2,38.8905762],[0.22774023437500063E2,38.8003906],[0.23020312500000074E2,38.7418945],[23.1376953,38.6679688],[23.2529297,38.6612305],[0.23368945312500045E2,38.5255371],[23.5696289,38.4894043],[0.23683984375000076E2,38.3524414],[23.9669922,38.275],[0.24024511718750006E2,0.38139794921874966E2],[0.24055371093750068E2,0.37709619140624994E2],[23.971582,37.6767578],[23.8773438,37.7777832],[23.5804688,38.0105469],[23.5017578,38.0348633],[23.4202148,0.37992089843749994E2],[0.23193652343750017E2,37.9590332],[0.23036328125000036E2,37.8783691],[0.23147167968750068E2,37.7953125],[0.23197558593750017E2,37.6202148],[0.23396191406250068E2,37.5797852],[23.4892578,37.4401855],[23.1615234,0.37333837890625006E2],[0.23096484375000045E2,0.37440576171874994E2],[22.775,37.5851074],[0.22725390625000017E2,0.37542138671874966E2],[0.22765039062500023E2,37.3933105],[0.22851074218750057E2,37.2908203],[22.9950195,37.0158691],[23.0735352,36.7749512],[0.23041015625000025E2,36.6445312],[23.1601563,0.36448095703125034E2],[0.22982910156249996E2,36.5283691],[0.22832324218750045E2,0.36687109375000034E2],[0.22779882812500006E2,36.7861816],[22.6083984,0.36779736328125004E2],[0.22489062500000017E2,36.5681641],[22.4894531,0.36446923828124966E2],[0.22374804687500017E2,0.36513574218750044E2],[0.22375976562500053E2,36.7019043],[22.2311523,36.8825684],[22.1647461,36.902832],[22.0804688,0.37028955078124966E2],[21.9555664,0.36990087890625034E2],[21.9342773,36.8036621],[0.21892382812500045E2,36.7373047],[0.21738085937500045E2,36.8632324],[21.5829102,0.37080957031249994E2],[21.5788086,37.2003906],[0.21692480468750006E2,0.37309277343749955E2],[0.21678906250000068E2,37.387207],[21.5712891,37.5410156],[21.3292969,37.6693359],[21.2884766,37.7745117],[0.21137988281250014E2,37.8541504],[21.1450195,37.9192871],[21.3081055,0.38027441406250006E2],[21.4037109,38.1966797],[0.21658398437500068E2,38.1750977],[21.824707,38.328125],[21.9533203,0.38321191406249966E2],[22.24375,38.1887207],[22.5558594,38.1132324],[0.22799609375000042E2,37.9812012],[22.9203125,37.9583008],[0.22893164062500006E2,0.38050927734374994E2],[0.23122070312499996E2,0.38073339843750006E2],[0.23148925781250057E2,38.1760742],[0.22932519531250023E2,38.2019531],[22.5833984,38.3449219],[0.22421679687500045E2,38.4385254],[22.3852539,38.3855469],[22.2268555,38.352832],[21.965332,0.38412451171875006E2],[0.21804687500000025E2,38.3669434],[0.21472558593750048E2,0.38321386718750006E2],[21.3310547,38.4873047],[21.3033203,0.38373925781249966E2],[0.21182617187500025E2,38.3455566],[21.1131836,0.38384667968750016E2],[0.20992187500000057E2,38.6540039],[0.20873242187500068E2,0.38775732421875034E2],[0.20776855468750057E2,38.8075195],[20.7773438,38.9278809],[0.20893164062500034E2,38.9411133],[21.0742187,38.8851563],[21.1523438,38.9220703],[21.1183594,0.39029980468749955E2],[0.20922753906250023E2,0.39036767578124994E2],[20.7796875,39.0085449],[0.20571679687500023E2,39.1477051],[0.20468261718749996E2,39.2552734],[0.20300781250000057E2,39.3270996],[20.1914062,0.39545800781249966E2],[0.20001269531250074E2,0.39709423828125004E2],[0.20206835937500017E2,39.6535156],[20.3061523,39.7966797],[20.3824219,0.39802636718749994E2],[0.20311132812500034E2,39.9794434],[20.4560547,0.40065576171874994E2],[0.20657421875000068E2,40.1173828],[20.6969727,40.2463867],[20.8060547,40.445459],[20.9501953,40.4943848],[0.21031054687500074E2,40.6586426],[20.9557617,0.40775292968749994E2],[20.9642578,40.8499023],[21.3237305,0.40867138671874955E2],[0.21404101562500045E2,40.9071777],[0.21575781250000034E2,40.8689453],[21.7794922,40.9504395],[0.21929492187500042E2,41.1074219],[22.2376953,41.1551758],[22.4935547,0.41118505859375006E2],[0.22724804687500068E2,41.1785156],[22.7550781,41.3127441],[22.9160156,41.3362793],[0.23155957031250065E2,41.3220703],[0.23239843750000034E2,41.3849609],[23.6351563,0.41386767578125045E2],[0.23880859375000057E2,41.455957],[24.0329102,0.41469091796875034E2],[0.24056054687500048E2,0.41527246093749966E2],[24.3867188,0.41523535156250006E2],[0.24518261718750065E2,41.5525391],[24.5959961,41.4427246],[0.24773730468750045E2,0.41356103515624994E2],[24.846875,0.41394238281249955E2],[25.1333984,41.3157715],[0.25251171875000068E2,0.41243554687499994E2],[25.5270508,41.2998047],[0.25784960937500014E2,0.41330419921875006E2],[0.25923339843750057E2,41.3119141],[0.26135351562499977E2,41.3857422],[0.26155175781250023E2,41.4348633],[0.26066015625000063E2,0.41673242187500044E2],[0.26200585937500048E2,41.7437988],[26.4105469,0.41696337890625045E2],[0.26581347656250074E2,41.6012695],[26.6249023,0.41401757812499994E2],[0.26536425781250074E2,0.41343115234375034E2]]]]}}],"_labels":{"GR":"Greece"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/GS.json b/src/api-umbrella/admin-ui/public/maps/GS.json new file mode 100644 index 000000000..7a4052319 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/GS.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"GS"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-26.2641113,-58.4351563],[-26.2598633,-58.4922852],[-0.26451025390624974E2,-58.415332],[-26.3034668,-0.58382226562499966E2],[-26.2641113,-58.4351563]]],[[[-37.1033203,-54.065625],[-0.37006054687499955E2,-54.1142578],[-0.36928906249999955E2,-0.54081152343750006E2],[-36.7038086,-54.1081055],[-36.6068848,-0.54189843749999945E2],[-0.36647412109374976E2,-54.2623047],[-36.5410156,-54.2480469],[-0.36448632812499994E2,-54.3083984],[-36.3264648,-54.2511719],[-36.1726074,-54.3822266],[-0.36073144531249966E2,-0.54554101562499994E2],[-35.8953125,-54.5547852],[-35.9132812,-54.7108398],[-0.35798583984374964E2,-54.7634766],[-36.085498,-54.8667969],[-36.251709,-0.54779882812499984E2],[-0.36506542968749955E2,-54.5112305],[-36.7349609,-54.4666016],[-36.8859863,-54.3394531],[-0.37006738281249994E2,-54.340918],[-37.4976562,-54.1558594],[-37.6309082,-54.1674805],[-37.6890137,-54.0767578],[-37.6188477,-54.0420898],[-0.37912792968749926E2,-54.0289062],[-0.37945507812499926E2,-0.53995605468749986E2],[-37.3822266,-53.984082],[-0.37232812499999966E2,-0.54060546874999986E2],[-37.1033203,-54.065625]]]]}}],"_labels":{"GS":"S. Geo. and S. Sandw. Is."}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/GT.json b/src/api-umbrella/admin-ui/public/maps/GT.json new file mode 100644 index 000000000..c0ee8a1a9 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/GT.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"GT"},"geometry":{"type":"Polygon","coordinates":[[[-89.1614746,17.8148438],[-89.2375,0.15894433593749994E2],[-89.1135742,0.15900683593750003E2],[-88.894043,15.890625],[-88.7983398,15.8625],[-88.6033691,15.7641602],[-88.5362305,15.8496094],[-88.5939453,0.15950292968749991E2],[-88.2283203,0.15729003906249998E2],[-88.6844727,0.15360498046874994E2],[-88.976416,15.1426758],[-89.1425781,0.15072314453125003E2],[-89.1703125,0.15039892578124991E2],[-89.2223633,14.8660645],[-89.162207,0.14669238281250003E2],[-89.1717773,0.14606884765624997E2],[-89.2867188,0.14529980468749995E2],[-89.3625977,14.4160156],[-89.4188477,0.14431103515624999E2],[-89.5405273,14.4099121],[-89.5769531,0.14347070312499993E2],[-89.547168,0.14241259765625003E2],[-89.6712891,0.14182714843749991E2],[-89.7493652,0.14077001953124991E2],[-89.8727051,0.14045605468749997E2],[-90.0481445,13.9040527],[-90.1047363,13.8347656],[-0.9009521484374999E2,0.13736523437499995E2],[-0.9047910156249999E2,0.13900927734375001E2],[-90.6069336,0.13929003906250003E2],[-0.9114604492187499E2,0.13925585937500001E2],[-91.3773437,0.13990185546874997E2],[-0.9164091796874999E2,0.14114941406249995E2],[-91.8190918,0.14228222656249995E2],[-0.9223515624999999E2,14.5454102],[-0.9215991210937499E2,14.6910156],[-0.9218637695312499E2,14.8183594],[-92.1442383,15.0019531],[-0.9207480468749999E2,15.0742188],[-0.9220434570312499E2,0.15237695312499994E2],[-92.1871582,0.15320898437499993E2],[-91.7365723,0.16070166015624988E2],[-90.447168,0.16072705078124997E2],[-90.4598633,0.16162353515624996E2],[-90.4169922,16.3910156],[-90.4710937,16.4395508],[-90.5757812,0.16467822265625003E2],[-0.9063408203124999E2,16.5107422],[-90.634375,0.16565136718749997E2],[-90.7106934,16.7081055],[-90.8160156,16.7871094],[-90.9758301,0.16867822265624994E2],[-0.9111186523437499E2,16.9761719],[-0.9122416992187499E2,0.17112255859374997E2],[-91.3191895,17.1998047],[-91.4096191,17.2558594],[-0.9099296874999997E2,17.2524414],[-90.9891602,17.8164062],[-89.1614746,17.8148438]]]}}],"_labels":{"GT":"Guatemala"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/GU.json b/src/api-umbrella/admin-ui/public/maps/GU.json new file mode 100644 index 000000000..06d6e320a --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/GU.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"GU"},"geometry":{"type":"Polygon","coordinates":[[[0.14474179687500003E3,13.2592773],[144.65,0.13313476562499998E2],[0.14464931640625002E3,13.4287109],[0.14483671875000005E3,0.13622363281250003E2],[0.14494082031250002E3,13.5703125],[0.14477988281250003E3,13.4111328],[0.14474179687500003E3,13.2592773]]]}}],"_labels":{"GU":"Guam"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/GW.json b/src/api-umbrella/admin-ui/public/maps/GW.json new file mode 100644 index 000000000..9def25014 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/GW.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"GW"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-0.15895898437499966E2,0.11082470703124967E2],[-0.15963964843749977E2,11.0589844],[-0.15937695312499953E2,0.11192773437499966E2],[-0.15895898437499966E2,0.11082470703124967E2]]],[[[-16.114502,0.11059423828124977E2],[-0.16194531249999983E2,11.0445801],[-0.16236425781249977E2,0.11113427734374966E2],[-16.067334,0.11197216796874983E2],[-16.0527832,0.11117529296875006E2],[-16.114502,0.11059423828124977E2]]],[[[-0.15725146484375017E2,11.2154785],[-0.15717480468749953E2,0.11301757812500057E2],[-0.15658349609374993E2,0.11286474609374963E2],[-0.15725146484375017E2,11.2154785]]],[[[-0.15901806640624926E2,0.11465820312499998E2],[-0.16023193359374968E2,0.11477148437499991E2],[-0.15964550781249926E2,11.598291],[-15.915332,0.11589111328124972E2],[-0.15901806640624926E2,0.11465820312499998E2]]],[[[-0.15553417968749928E2,0.11537011718750023E2],[-0.15619628906249998E2,0.11533496093750017E2],[-0.15482470703124958E2,0.11632324218749986E2],[-0.15553417968749928E2,0.11537011718750023E2]]],[[[-0.15986425781249947E2,0.11882031249999969E2],[-0.16038330078124943E2,0.11759716796875011E2],[-0.16102441406249966E2,11.7731934],[-16.1524414,0.11876806640624963E2],[-0.15986425781249947E2,0.11882031249999969E2]]],[[[-0.13673535156249926E2,0.12478515624999986E2],[-0.13707910156249994E2,12.3126953],[-0.13849462890624977E2,0.12262988281250044E2],[-0.13948876953124966E2,0.12178173828124997E2],[-0.13737988281250011E2,0.12009667968750037E2],[-13.7327637,0.11736035156249983E2],[-0.13953222656249977E2,0.11664599609374989E2],[-0.14265576171874926E2,0.11659912109375014E2],[-0.14452441406249987E2,0.11556201171875015E2],[-0.14682958984374947E2,0.11508496093749983E2],[-14.7792969,0.11405517578125057E2],[-0.14944433593749949E2,0.11072167968749994E2],[-15.0430176,0.10940136718750011E2],[-15.09375,0.11011035156249974E2],[-0.15054589843749993E2,0.11141943359375006E2],[-0.15222119140624926E2,0.11030908203125037E2],[-0.15216699218749994E2,11.15625],[-0.15317480468750004E2,0.11152001953125009E2],[-15.3931152,0.11217236328124981E2],[-0.15394531249999972E2,0.11334472656249972E2],[-0.15354687499999956E2,0.11396337890624963E2],[-0.15479492187499972E2,0.11410302734374964E2],[-0.15429101562499993E2,0.11498876953124977E2],[-0.15252587890625021E2,0.11573291015625045E2],[-0.15072656249999937E2,0.11597802734374966E2],[-0.15122412109374949E2,0.11661572265624997E2],[-0.15230371093750021E2,0.11686767578124972E2],[-0.15412988281249994E2,0.11615234374999972E2],[-0.15501904296875011E2,0.11723779296874966E2],[-0.15467187499999936E2,0.11842822265624974E2],[-0.15415722656249955E2,11.8717773],[-15.2108398,0.11870947265625018E2],[-0.15101708984374994E2,0.11913964843749993E2],[-0.15111523437499955E2,0.11970263671875003E2],[-15.1880859,0.11927294921875044E2],[-0.15434765625000011E2,0.11943554687499983E2],[-0.15650683593749932E2,0.11818359375000057E2],[-0.15819384765624932E2,0.11763476562499974E2],[-0.15941748046875006E2,0.11786621093749986E2],[-0.15902734374999937E2,11.9196777],[-15.9587891,0.11959619140624966E2],[-16.1384277,0.11917285156250045E2],[-0.16274316406249966E2,11.978125],[-16.3280762,0.12051611328124963E2],[-16.3188477,12.14375],[-0.16244580078124955E2,12.2371094],[-16.4368164,0.12204150390625044E2],[-0.16711816406249934E2,0.12354833984375006E2],[-16.4163086,0.12367675781250057E2],[-16.2415039,0.12443310546875011E2],[-0.16144189453124934E2,0.12457421875000035E2],[-0.15839550781249953E2,0.12437890624999964E2],[-15.5748047,0.12490380859375007E2],[-15.1960937,0.12679931640624986E2],[-13.729248,0.12673925781250004E2],[-0.13732617187499983E2,0.12592822265625003E2],[-0.13673535156249926E2,0.12478515624999986E2]]]]}}],"_labels":{"GW":"Guinea-Bissau"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/GY.json b/src/api-umbrella/admin-ui/public/maps/GY.json new file mode 100644 index 000000000..fd34f78be --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/GY.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"GY"},"geometry":{"type":"Polygon","coordinates":[[[-57.1947754,5.5484375],[-57.2479004,5.48525391],[-0.57318554687500004E2,5.33535156],[-57.2796387,5.24677734],[-57.2073242,5.21420898],[-57.3095703,5.10585937],[-57.3310059,5.02016602],[-57.4121582,5.00458984],[-57.711084,4.99106445],[-57.8449219,4.92304687],[-57.917041,4.82041016],[-57.8459961,4.66816406],[-57.9497559,4.34995117],[-58.0544922,4.17192383],[-58.0322266,4.00195312],[-57.9077148,3.85668945],[-0.57832666015624994E2,3.67597656],[-57.6494629,3.51738281],[-57.6467285,3.39453125],[-57.5496094,3.35283203],[-57.3036621,3.37709961],[-0.57277929687499984E2,3.16430664],[-57.2316406,3.10888672],[-57.2098145,2.8828125],[-0.57105126953124994E2,2.76826172],[-0.57028955078124994E2,2.6375],[-56.9314941,2.39536133],[-56.8405273,2.27714844],[-0.56761132812499994E2,2.11489258],[-56.7043457,2.03647461],[-56.5626953,2.00507812],[-56.4828125,1.94213867],[-56.5635742,1.90722656],[-56.6164551,1.92265625],[-56.8367187,1.88125],[-57.0375977,1.93647461],[-57.1188965,2.01396484],[-57.4126953,1.90893555],[-57.5004395,1.77382812],[-57.5944336,1.70410156],[-57.7956543,1.7],[-57.9828125,1.6484375],[-58.034668,1.52026367],[-0.58142236328124994E2,1.51699219],[-58.1730957,1.54785156],[-58.3406738,1.58754883],[-58.3958008,1.48173828],[-58.5060547,1.43867188],[-0.58486865234374996E2,1.34775391],[-0.58511865234374994E2,1.28466797],[-58.6846191,1.28105469],[-0.58787207031249984E2,1.20849609],[-58.8625,1.20361328],[-58.9685059,1.30458984],[-59.2312012,1.37602539],[-59.5356934,1.7],[-0.59666601562499984E2,1.74628906],[-59.6685059,1.84233398],[-0.59756201171874984E2,1.90063477],[-0.59743505859374984E2,2.12163086],[-59.7552246,2.27412109],[-59.8896484,2.36293945],[-59.9943359,2.68999023],[-0.59972314453124994E2,2.99047852],[-59.8730469,3.28310547],[-59.8311523,3.34921875],[-0.59854394531249994E2,3.5875],[-59.6790039,3.69980469],[-0.59551123046874984E2,3.93354492],[-0.59620214843749984E2,4.02314453],[-59.7385742,4.22675781],[-59.7032715,4.38110352],[-59.8333496,4.47592773],[-60.1111328,4.51118164],[-60.1486328,4.53325195],[-60.0317871,4.74052734],[-59.9906738,5.08286133],[-0.60078076171875004E2,5.14399414],[-60.142041,5.23881836],[-60.2416504,5.25795898],[-60.3352051,5.19931641],[-60.576416,5.19248047],[-60.6513672,5.22114258],[-60.7421387,5.20205078],[-0.61376806640624984E2,5.90698242],[-61.3908203,5.93876953],[-61.303125,6.04951172],[-0.61128710937499996E2,6.21430664],[-0.61151025390624994E2,6.4465332],[-61.2036133,6.58837891],[-61.1456055,6.69453125],[-60.9379883,6.73276367],[-60.8733398,6.78691406],[-60.7179199,6.76831055],[-0.60586083984374994E2,6.85708008],[-60.3950195,6.94536133],[-60.3520996,7.00288086],[-60.3254883,7.13398437],[-60.3923828,7.16455078],[-60.5231934,7.14370117],[-60.6333008,7.21108398],[-60.606543,7.32084961],[-60.7192383,7.49868164],[-60.7186523,7.5359375],[-60.6101074,7.64833984],[-60.5563477,7.77202148],[-60.513623,7.81318359],[-60.3806152,7.82763672],[-0.60178173828125004E2,7.99404297],[-60.0324219,8.05356445],[-59.9648438,8.19160156],[-0.59849072265625004E2,8.24868164],[-0.59831640624999984E2,8.30595703],[-60.0175293,8.54931641],[-0.59980615234374994E2,8.53261719],[-0.59836523437499984E2,8.37382812],[-59.7399414,8.3387207],[-59.7393066,8.37998047],[-59.6661133,8.36259766],[-59.4769043,8.25400391],[-59.2002441,8.07460937],[-58.8115723,7.7355957],[-58.6266113,7.54589844],[-0.58511083984374984E2,7.39804687],[-58.4772949,7.32578125],[-58.4805664,7.03813477],[-58.5829102,6.84365234],[-58.6079102,6.69731445],[-58.6134766,6.50253906],[-58.6729492,6.39077148],[-58.5939941,6.45151367],[-58.5694824,6.62724609],[-58.4149902,6.85117187],[-58.2984375,6.87929687],[-58.1728516,6.82939453],[-57.9825684,6.78588867],[-57.7928711,6.59853516],[-57.6075684,6.45039062],[-57.5401367,6.33154297],[-0.57343652343749994E2,6.27211914],[-57.2275391,6.17841797],[-57.1902344,6.09731445],[-57.1672363,5.88500977],[-57.2052734,5.56459961],[-57.1947754,5.5484375]]]}}],"_labels":{"GY":"Guyana"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/HK.json b/src/api-umbrella/admin-ui/public/maps/HK.json new file mode 100644 index 000000000..14f5a8a50 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/HK.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"HK"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.11423203125000006E3,0.22210546874999977E2],[0.11420722656250004E3,0.22195166015625034E2],[0.11413876953125006E3,0.22268359375000045E2],[0.11418740234374998E3,22.2966309],[114.246875,22.2635742],[0.11423203125000006E3,0.22210546874999977E2]]],[[[0.11399775390625008E3,0.22210498046875042E2],[113.877344,0.22210449218750057E2],[0.11388154296875004E3,22.2802734],[0.11404394531250003E3,22.3333984],[0.11399775390625008E3,0.22210498046875042E2]]],[[[0.11433525390625002E3,22.3962402],[0.11429052734374997E3,22.3737793],[114.267969,0.22295556640624966E2],[0.11403281250000006E3,0.22375878906249994E2],[113.937305,22.3649902],[0.11389648437499997E3,0.22428173828124983E2],[114.006738,0.22484033203124994E2],[0.11405039062500005E3,22.5429688],[114.188184,0.22564990234375074E2],[0.11426601562500005E3,22.5409668],[0.11428457031249998E3,0.22457617187500034E2],[0.11433525390625002E3,22.3962402]]]]}}],"_labels":{"HK":"Hong Kong"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/HM.json b/src/api-umbrella/admin-ui/public/maps/HM.json new file mode 100644 index 000000000..37c274973 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/HM.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"HM"},"geometry":{"type":"Polygon","coordinates":[[[73.7074219,-53.1371094],[73.5879883,-53.1845703],[73.4651367,-53.1841797],[73.3363281,-53.0298828],[73.2511719,-52.9757813],[73.5857422,-53.0271484],[73.73125,-0.53091210937499994E2],[73.837793,-53.112793],[73.7074219,-53.1371094]]]}}],"_labels":{"HM":"Heard I. and McDonald Is."}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/HN.json b/src/api-umbrella/admin-ui/public/maps/HN.json new file mode 100644 index 000000000..83da685ff --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/HN.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"HN"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-85.7839844,0.16002832031249966E2],[-85.4836914,0.15899511718749977E2],[-85.1636719,0.15918164062499955E2],[-84.9737305,0.15989892578124993E2],[-84.6460938,0.15883593750000015E2],[-84.559668,15.802002],[-84.4259766,0.15829492187500023E2],[-84.5196289,15.8727539],[-84.2614258,0.15822607421875034E2],[-83.7754883,0.15436865234375063E2],[-83.7652832,0.15405468750000056E2],[-83.9728027,0.15519628906250034E2],[-84.1113281,0.15492431640624998E2],[-84.0950684,0.15400927734375017E2],[-83.9274414,0.15394042968750028E2],[-83.8016602,0.15289257812499995E2],[-83.7604492,0.15220361328124993E2],[-83.5896484,0.15265771484375009E2],[-83.4979492,0.15222119140624995E2],[-83.6463867,0.15368408203125044E2],[-83.3691895,15.2399902],[-83.2908691,0.15078906250000045E2],[-83.1575195,0.14993066406249966E2],[-83.4150391,15.0080566],[-83.5365234,0.14977001953124981E2],[-83.5897461,0.14907568359375048E2],[-83.8672852,0.14794482421875003E2],[-84.0658203,0.14786083984374983E2],[-84.1507812,0.14720410156250011E2],[-84.239209,0.14747851562500015E2],[-84.4535645,0.14643701171875023E2],[-84.5376465,0.14633398437499963E2],[-84.7297852,0.14713378906249998E2],[-84.7891602,0.14790380859374979E2],[-84.8604492,0.14809765625000011E2],[-84.9851562,0.14752441406249972E2],[-85.0365234,0.14607666015625055E2],[-85.1613281,0.14525146484375028E2],[-85.1794922,0.14343310546875019E2],[-85.3737793,0.14223876953125028E2],[-85.4770508,0.14108691406250003E2],[-85.7312012,13.9318359],[-85.7867187,0.13844433593749995E2],[-85.9837891,0.13965673828125006E2],[-86.0403809,0.14050146484374977E2],[-86.1512207,0.13994580078125026E2],[-86.3317383,0.13770068359375031E2],[-86.3769531,13.7556641],[-86.6102539,0.13774853515625026E2],[-86.7336426,0.13763476562500017E2],[-86.7706055,0.13698730468749972E2],[-86.7106934,13.3133789],[-86.8735352,0.13266503906250023E2],[-86.9182129,0.13223583984374983E2],[-86.9588867,0.13053710937500012E2],[-87.0591797,0.12991455078125028E2],[-87.3372559,0.12979248046875028E2],[-87.3325195,0.13084716796875027E2],[-87.412793,0.13127441406250027E2],[-87.4983887,0.13274902343750043E2],[-87.4891113,0.13352929687500051E2],[-87.6022461,0.13385595703125034E2],[-87.7083496,0.13360058593749981E2],[-87.814209,0.13399169921875055E2],[-87.7370117,0.13451367187500026E2],[-87.7818848,0.13521386718749994E2],[-87.715332,0.13812695312500011E2],[-87.8022461,0.13889990234375034E2],[-87.9910156,0.13879638671874972E2],[-88.1510254,0.13987353515624973E2],[-88.482666,0.13854248046875043E2],[-88.5125488,13.9789551],[-88.7076172,0.14032080078125034E2],[-88.8459473,0.14124755859374986E2],[-89.1205078,0.14370214843749991E2],[-89.1701172,0.14360302734375011E2],[-89.3625977,14.4160156],[-89.2867187,14.5299805],[-89.1717773,0.14606884765624981E2],[-89.162207,14.6692383],[-89.2223633,0.14866064453125018E2],[-89.1425781,0.15072314453125031E2],[-88.976416,0.15142675781249977E2],[-88.6844727,0.15360498046875035E2],[-88.2283203,15.7290039],[-88.1311035,0.15701025390625032E2],[-87.8749512,0.15879345703124953E2],[-87.6181641,0.15909863281249953E2],[-87.4869141,0.15790185546874994E2],[-87.2858887,0.15834423828124953E2],[-86.9072266,0.15762353515625023E2],[-86.7570313,0.15794238281250019E2],[-86.4808105,0.15801074218749989E2],[-86.3566406,15.7832031],[-86.1812012,15.8851562],[-85.9362793,0.15953417968750045E2],[-85.9856445,16.0241699],[-85.7839844,0.16002832031249966E2]]],[[[-86.4199219,16.3783691],[-86.5802734,0.16300244140624983E2],[-86.5569336,16.3621094],[-86.3378418,16.439209],[-86.2555176,0.16428222656250057E2],[-86.4199219,16.3783691]]],[[[-85.8709473,0.16461523437499974E2],[-85.9609863,16.4296875],[-85.8782227,0.16513964843750017E2],[-85.8709473,0.16461523437499974E2]]]]}}],"_labels":{"HN":"Honduras"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/HR.json b/src/api-umbrella/admin-ui/public/maps/HR.json new file mode 100644 index 000000000..a17a9c88c --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/HR.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"HR"},"geometry":{"type":"MultiPolygon","coordinates":[[[[17.6078125,42.769043],[0.17744238281250063E2,42.7003418],[17.3441406,0.42790380859375006E2],[0.17431933593750017E2,42.8003906],[17.6078125,42.769043]]],[[[0.16650683593750017E2,42.996582],[0.16835546875000034E2,0.42968652343749994E2],[0.17093652343750023E2,42.9643555],[0.17188281250000045E2,0.42917041015625045E2],[16.9775391,42.9277832],[0.16850683593750006E2,42.8955078],[0.16738867187500063E2,0.42912744140624966E2],[0.16650683593750017E2,42.996582]]],[[[0.17219824218750063E2,43.0258789],[17.7236328,0.42850683593750034E2],[0.17667578125000063E2,0.42897119140624994E2],[17.8019531,42.9022461],[17.8413086,0.42845068359375034E2],[0.18304003906250045E2,42.5994141],[0.18436328125000017E2,42.5597168],[0.18517480468750023E2,42.4329102],[0.18160644531249968E2,42.6340332],[17.8238281,42.7974121],[17.5849609,42.8371582],[17.2582031,42.968457],[0.17045410156250057E2,43.0148926],[0.17219824218750063E2,43.0258789]]],[[[0.17194042968750065E2,43.1257813],[0.17124121093750034E2,0.43115429687499955E2],[0.16679199218750053E2,0.43123144531250034E2],[16.5498047,43.1438965],[16.3764648,43.2137695],[16.655957,43.2137695],[16.6972656,0.43174951171874994E2],[0.17194042968750065E2,43.1257813]]],[[[0.16785253906250006E2,0.43270654296874966E2],[0.16627441406249996E2,43.2680664],[0.16423144531250045E2,0.43317236328125034E2],[16.4489258,0.43387060546875055E2],[16.834375,43.3508301],[16.8913086,0.43314648437499955E2],[0.16785253906250006E2,0.43270654296874966E2]]],[[[0.15371386718750074E2,0.43973828124999955E2],[0.15374218750000038E2,43.9147949],[0.15270019531250028E2,44.0107422],[0.15371386718750074E2,0.43973828124999955E2]]],[[[0.15231054687500006E2,0.44062304687500045E2],[15.121875,44.0933105],[0.15065820312500078E2,0.44157666015625004E2],[0.15231054687500006E2,0.44062304687500045E2]]],[[[0.15188769531249987E2,43.9223633],[15.1358398,43.9072754],[0.14891308593750068E2,0.44125537109375045E2],[0.14952539062500025E2,44.1171875],[0.15188769531249987E2,43.9223633]]],[[[0.15188476562500027E2,44.3357422],[0.15162597656249998E2,44.3091797],[0.14912792968750011E2,44.4858398],[0.14741894531250011E2,0.44697363281250006E2],[0.15006445312500063E2,44.5342285],[15.2399414,44.3501953],[0.15188476562500027E2,44.3357422]]],[[[0.14831445312500023E2,44.7589355],[0.14856640625000013E2,44.7148438],[14.6782227,0.44769873046875034E2],[0.14690527343750004E2,44.8481445],[0.14754199218750015E2,0.44844824218750034E2],[0.14831445312500023E2,44.7589355]]],[[[0.14488085937500074E2,44.6600586],[14.4195313,44.6703125],[0.14302539062500017E2,44.9404297],[0.14340039062500011E2,45.0199707],[0.14285839843749981E2,0.45144628906250006E2],[0.14358203125000074E2,45.1674316],[14.39375,45.03125],[0.14467382812500034E2,44.9702148],[0.14452539062500023E2,44.8691895],[0.14488085937500074E2,44.6600586]]],[[[0.14810253906250068E2,44.9770508],[14.6870117,0.44955615234375045E2],[0.14612988281250042E2,45.0254395],[14.5117188,45.0354004],[0.14437890625000051E2,45.0986328],[0.14524609375000038E2,0.45146826171875006E2],[0.14571093750000019E2,0.45224755859374994E2],[0.14810253906250068E2,44.9770508]]],[[[0.16748046875000057E2,46.4164063],[16.8714844,46.3393066],[16.9399414,46.2536621],[0.17149609375000068E2,46.140332],[0.17310644531250002E2,45.9961426],[0.17406347656250063E2,0.45951074218749994E2],[17.6070312,45.9137695],[0.17639648437500057E2,45.8683594],[17.8071289,45.7904297],[17.9638672,45.7702637],[0.18358300781250023E2,0.45753027343750055E2],[0.18564648437500036E2,45.8132812],[18.6660156,45.9074707],[0.18905371093750006E2,0.45931738281250034E2],[0.18839062499999983E2,45.8357422],[18.9472656,45.6558105],[0.18953710937499977E2,45.5580078],[0.19055078125000023E2,0.45527246093749966E2],[0.19004687500000074E2,45.3995117],[0.19093066406250045E2,45.3369141],[0.19330273437500068E2,45.2680664],[0.19388085937500023E2,45.172998],[0.19205957031250048E2,45.1677734],[19.1369141,45.1962402],[0.19062890625000023E2,45.137207],[19.1,0.44973779296875016E2],[0.19007128906250045E2,44.8691895],[0.18836425781249996E2,0.44883251953124955E2],[0.18746093750000057E2,45.0265137],[18.6625977,45.0774414],[18.4882813,45.0858398],[0.18284960937500074E2,45.1342773],[0.18137207031249996E2,45.1193848],[0.17996289062500068E2,45.1417969],[0.17812792968750074E2,45.078125],[0.17690136718750036E2,0.45158398437499955E2],[17.5462891,45.1225586],[17.2586914,45.1705566],[0.17125390625000023E2,0.45171777343750016E2],[0.16918652343749983E2,0.45276562499999976E2],[16.7908203,45.196875],[16.5306641,45.2166992],[0.16293359375000048E2,45.0088379],[0.16157324218750063E2,45.0722168],[0.16028320312500057E2,45.1895996],[0.15888281250000032E2,45.2157227],[0.15788085937500057E2,45.1789551],[0.15736621093750047E2,0.44765820312500004E2],[0.15880078125000068E2,44.6819336],[16.1302734,0.44473730468750006E2],[0.16214257812500023E2,44.2151367],[0.16377539062500063E2,44.0596191],[16.5905273,0.43913183593750034E2],[0.16713476562500034E2,43.7788086],[0.17084570312500034E2,0.43516552734374955E2],[17.2738281,43.445752],[0.17293066406250063E2,43.3056152],[0.17402246093750023E2,43.1989258],[17.6248047,43.0427734],[0.17657812500000034E2,42.9800781],[0.17585156250000068E2,42.9383789],[0.17329882812500017E2,43.1148926],[17.1293945,43.2111328],[16.903125,0.43392431640625006E2],[0.16600292968750068E2,43.4640625],[0.16393945312500023E2,43.5433594],[16.1310547,43.5062988],[0.15985546875000066E2,43.5197754],[0.15941503906250063E2,43.6566406],[15.4994141,0.43908789062500034E2],[0.15185839843750017E2,44.1721191],[0.15122949218749993E2,0.44256787109374955E2],[0.15284277343750006E2,44.2888184],[0.15470996093750044E2,44.2719727],[0.15269824218750072E2,44.3834961],[0.14981347656250023E2,0.44602929687500044E2],[0.14895214843750066E2,44.7065918],[0.14906542968750044E2,0.44971386718749976E2],[0.14854589843750034E2,45.0810059],[14.6320313,45.2229004],[0.14550488281249981E2,0.45297705078125006E2],[14.3126953,45.337793],[0.14236328125000027E2,45.159668],[13.9658203,44.8356445],[13.8607422,44.8374023],[13.6292969,0.45108203125000045E2],[0.13517187500000063E2,0.45481787109375034E2],[0.13878710937500017E2,0.45428369140624994E2],[0.13992773437500063E2,0.45509423828124994E2],[0.14085546875000034E2,45.477832],[0.14369921875000072E2,45.4814453],[0.14427343750000034E2,0.45505761718750016E2],[0.14533984375000015E2,45.6452637],[0.14733593749999983E2,45.5084961],[0.14847070312500021E2,45.467334],[0.14954589843749998E2,0.45499902343749994E2],[0.15110449218750036E2,0.45450781250000034E2],[0.15339453125000063E2,45.467041],[0.15290136718750034E2,45.6126465],[0.15356933593750055E2,45.6455078],[15.2770508,45.7326172],[0.15454101562500057E2,0.45797607421874964E2],[0.15624804687500015E2,0.45834033203125045E2],[0.15668066406250032E2,45.9044434],[0.15666210937500011E2,46.0484863],[15.596875,0.46109228515625055E2],[0.15635937500000068E2,46.2007324],[0.16000683593750036E2,0.46305371093749955E2],[0.16066503906250034E2,46.3713379],[16.2533203,0.46389111328124955E2],[16.2367188,46.4838379],[0.16321191406250048E2,46.5346191],[16.5699219,46.4850098],[0.16748046875000057E2,46.4164063]]]]}}],"_labels":{"HR":"Croatia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/HT.json b/src/api-umbrella/admin-ui/public/maps/HT.json new file mode 100644 index 000000000..c5859410f --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/HT.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"HT"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-72.8045898,0.18777685546875063E2],[-72.8222168,0.18707128906249977E2],[-73.0779785,0.18790917968749994E2],[-73.2852539,18.8967285],[-73.1706055,0.18967285156250053E2],[-72.9192383,0.18861474609374994E2],[-72.8045898,0.18777685546875063E2]]],[[[-71.9542969,19.7216797],[-71.7574219,19.6881836],[-71.7069336,0.19421972656250034E2],[-71.7464844,19.2858398],[-71.6472168,19.1959473],[-71.6570312,19.1307617],[-71.8071289,0.18987011718749983E2],[-71.7336426,0.18856396484375008E2],[-71.7432129,18.7329102],[-71.8665039,18.6141602],[-72.0003906,18.5979004],[-71.8725586,0.18416210937499955E2],[-71.7619141,18.3413086],[-71.7683105,0.18039160156250063E2],[-71.9460937,0.18186083984375042E2],[-72.0598633,0.18228564453125014E2],[-72.5035645,18.2199219],[-72.7552734,0.18156152343749994E2],[-72.8766602,0.18151757812499994E2],[-73.3851563,0.18251171874999983E2],[-73.644043,0.18229052734375017E2],[-73.7473145,0.18190234375000017E2],[-73.8849609,0.18041894531249994E2],[-74.0854004,0.18215136718750017E2],[-74.419043,18.3461914],[-74.478125,18.45],[-74.3875,0.18624707031249983E2],[-74.2277344,0.18662695312499977E2],[-73.8625,18.5754395],[-73.6870117,18.565332],[-73.5916016,0.18522363281249994E2],[-72.7893555,18.4348145],[-72.6180664,18.5507812],[-72.3760742,18.5744629],[-72.3476562,0.18674951171874994E2],[-72.6491211,0.18894140624999977E2],[-72.811084,0.19071582031250074E2],[-72.7412109,19.1313477],[-72.7679687,19.240625],[-72.7032227,0.19441064453125023E2],[-73.0527344,19.6107422],[-73.3963379,19.6586914],[-73.4005371,0.19807421875000045E2],[-73.1177734,19.9038086],[-72.8765137,0.19928076171875034E2],[-72.6370117,19.9008789],[-72.2198242,0.19744628906250057E2],[-71.9542969,19.7216797]]],[[[-72.6640625,20.0375],[-72.6388672,19.9858398],[-72.9603516,20.0622559],[-72.7910156,0.20091894531250006E2],[-72.6640625,20.0375]]]]}}],"_labels":{"HT":"Haiti"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/HU.json b/src/api-umbrella/admin-ui/public/maps/HU.json new file mode 100644 index 000000000..c06bd6088 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/HU.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"HU"},"geometry":{"type":"Polygon","coordinates":[[[0.22131835937499996E2,0.48405322265624996E2],[0.22253710937500017E2,0.48407373046874994E2],[0.22350195312500006E2,48.2560547],[0.22520117187500006E2,0.48205371093749996E2],[22.5824219,48.1340332],[22.7691406,48.1096191],[0.22836230468750017E2,48.0603027],[22.8766602,47.9472656],[22.6767578,47.7990234],[0.22562890625000023E2,0.47759570312499996E2],[22.4914063,47.7725586],[22.290625,47.727832],[0.22111914062500006E2,47.5720215],[21.999707,0.47505029296874994E2],[21.9953125,47.3957031],[21.8693359,0.47304589843749994E2],[0.21785449218750017E2,47.1381348],[0.21661425781250017E2,47.0438965],[0.21652636718750017E2,0.46963769531249994E2],[0.21494433593750017E2,46.7897461],[21.4970703,46.7042969],[0.21320214843750023E2,46.6078125],[0.21252246093750017E2,0.46486376953124996E2],[0.21264550781250023E2,46.4123047],[0.21191796875000023E2,46.3915527],[21.1519531,46.3043457],[0.21039843750000017E2,0.46242236328124996E2],[0.20837011718750002E2,46.2597168],[20.7602539,46.2462402],[0.20732714843750017E2,46.1944336],[0.20613671875000023E2,46.1334961],[0.20508105468750017E2,46.1669434],[20.280957,46.1330078],[20.2417969,46.1085937],[0.20161425781250017E2,0.46141894531249996E2],[19.934082,46.1614746],[19.8444336,0.46145898437499994E2],[19.6134766,46.1691895],[19.5307617,0.46155175781249994E2],[0.19392871093750017E2,46.0498047],[0.19208398437500023E2,0.45984423828124996E2],[0.19087304687500023E2,46.0161621],[0.19015722656250006E2,45.9597168],[18.8330078,45.9108398],[18.6660156,45.9074707],[0.18564648437500008E2,45.8132813],[0.18358300781250023E2,45.7530273],[18.290625,45.7644531],[17.9638672,45.7702637],[17.8071289,0.45790429687499994E2],[17.6396484,45.8683594],[17.6070312,45.9137695],[0.17406347656250006E2,0.45951074218749994E2],[0.17310644531250002E2,0.45996142578124996E2],[17.1496094,46.140332],[17.0327148,0.46187304687499996E2],[16.9399414,46.2536621],[0.16871484375000023E2,46.3393066],[16.7480469,46.4164062],[0.16516210937500006E2,46.4999023],[16.38125,46.6386719],[0.16283593750000023E2,46.8572754],[0.16093066406250017E2,46.8632812],[0.16252539062500006E2,46.9719238],[0.16331835937500017E2,47.0021973],[0.16453417968750017E2,47.0067871],[16.4926758,47.1226562],[0.16438378906250023E2,0.47145898437499994E2],[0.16416894531250023E2,47.2234375],[0.16462597656250008E2,47.2731445],[16.4428711,47.3995117],[16.6230469,0.47447558593749996E2],[0.16676562500000017E2,0.47536035156249994E2],[0.16639746093750006E2,47.6088867],[16.4321289,47.6562988],[16.5509766,0.47747363281249996E2],[16.6474609,47.7390137],[16.7475586,47.6862793],[17.0666016,0.47707568359374996E2],[0.17030078125000014E2,47.8371094],[17.0890625,47.963623],[0.17174609375000017E2,48.0120605],[0.17317285156250023E2,47.990918],[17.4806641,0.47887597656249994E2],[17.6352539,47.8099121],[17.7619141,0.47770166015624994E2],[0.18145605468750006E2,47.7634277],[18.7242187,0.47787158203124996E2],[18.7780273,47.8528809],[0.18750097656250006E2,47.9394531],[0.18791894531250023E2,0.48000292968749996E2],[0.18914160156250006E2,0.48050830078124996E2],[19.2651367,48.0730469],[0.19466992187500008E2,48.1106934],[0.19564257812500014E2,48.2128418],[0.19625390625000023E2,48.2230957],[19.8986328,48.1313477],[0.20333789062500017E2,0.48295556640624994E2],[0.20490039062500014E2,48.5269043],[0.20643164062500006E2,0.48549707031249994E2],[0.20866601562500023E2,48.5456543],[0.21067285156250023E2,0.48505908203124996E2],[0.21196386718750006E2,48.5105957],[0.21451367187500008E2,48.5522461],[21.5631836,48.4957031],[0.21721484375000017E2,0.48346582031249994E2],[0.21766992187500023E2,48.3380859],[0.22131835937499996E2,0.48405322265624996E2]]]}}],"_labels":{"HU":"Hungary"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/ID.json b/src/api-umbrella/admin-ui/public/maps/ID.json new file mode 100644 index 000000000..472e526c1 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/ID.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"ID"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.12294892578125008E3,-10.9092773],[0.12282617187500001E3,-0.10899121093749983E2],[0.12284570312500001E3,-0.10761816406249991E2],[123.061426,-0.10698437499999955E2],[0.12326542968750007E3,-0.10518164062500006E2],[0.12337109375000004E3,-0.10474902343749989E2],[0.12341816406250003E3,-0.10651269531250037E2],[123.310742,-0.10698437499999955E2],[0.12321484374999996E3,-0.10806152343749972E2],[0.12294892578125008E3,-10.9092773]]],[[[121.883008,-0.10590332031249957E2],[0.12170468750000006E3,-10.5556641],[0.12186699218750002E3,-0.10438867187500009E2],[0.12199833984375003E3,-0.10446972656249983E2],[0.12198134765625005E3,-0.10528417968749963E2],[121.883008,-0.10590332031249957E2]]],[[[0.12341621093750004E3,-0.10302636718749964E2],[0.12332597656250007E3,-10.3375],[123.325586,-0.10264160156249943E2],[123.458789,-10.1399414],[0.12349677734375003E3,-0.10193945312500034E2],[123.405078,-0.10227148437499963E2],[0.12341621093750004E3,-0.10302636718749964E2]]],[[[120.0125,-9.37470703],[120.221094,-9.50634766],[0.12029111328125006E3,-9.64785156],[0.12050371093750002E3,-0.9674023437499983E1],[0.12083261718750006E3,-10.0375],[120.698047,-0.10206640624999949E2],[0.12043916015625008E3,-0.10294042968749991E2],[0.12014482421875002E3,-0.10200097656249952E2],[0.11993066406249996E3,-0.9966503906249969E1],[119.812793,-9.91748047],[0.11960107421874996E3,-9.77353516],[0.11936259765625007E3,-0.9771777343750003E1],[0.11908544921875001E3,-0.9706933593750023E1],[118.958789,-0.9519335937500003E1],[119.031445,-9.44023437],[0.11918564453125005E3,-0.9384472656249969E1],[0.11961474609375003E3,-0.9352441406250009E1],[0.11979511718750008E3,-0.9380468749999949E1],[119.94209,-9.30146484],[120.0125,-9.37470703]]],[[[0.12493681640625007E3,-9.05341797],[0.12510039062500007E3,-9.00400391],[0.12514941406250003E3,-9.12294922],[0.12510048828124998E3,-0.9189843750000021E1],[0.12497753906250003E3,-9.19492187],[0.12496826171874997E3,-9.29423828],[125.068164,-0.9511914062499995E1],[0.12496308593750008E3,-9.665625],[0.12484179687499997E3,-0.9759765624999957E1],[0.12470839843750001E3,-0.9914160156249963E1],[0.12442753906250002E3,-10.1486328],[0.12417597656250003E3,-0.10183300781249997E2],[0.12385761718750003E3,-10.3435547],[0.12364414062500006E3,-10.3109375],[0.12361406250000006E3,-0.10215039062499983E2],[0.12371640625000012E3,-0.10078613281249986E2],[123.589258,-9.96679688],[123.709375,-9.61484375],[0.12387675781250002E3,-9.453125],[124.036328,-0.9341601562500031E1],[0.12409013671875009E3,-9.41640625],[124.282324,-9.42792969],[0.12441298828124998E3,-9.31435547],[124.444434,-0.9190332031250023E1],[0.12457548828125006E3,-9.15537109],[0.12492226562500005E3,-8.94248047],[0.12493681640625007E3,-9.05341797]]],[[[0.11560996093750012E3,-8.76982422],[0.11558193359374998E3,-8.80419922],[0.11548046875000001E3,-8.71542969],[115.561426,-8.66992187],[0.11560996093750012E3,-8.76982422]]],[[[0.12297734375000002E3,-8.54521484],[0.12288779296875006E3,-8.58730469],[122.932813,-8.49707031],[0.12308945312500012E3,-8.43984375],[123.153125,-8.47578125],[0.12297734375000002E3,-8.54521484]]],[[[0.11946406250000004E3,-8.74101562],[119.385547,-8.73603516],[0.11937890625000001E3,-8.58652344],[0.11944648437500011E3,-8.42919922],[0.11954697265625006E3,-8.48261719],[0.11953632812500005E3,-8.58935547],[0.11944404296875004E3,-8.67177734],[0.11946406250000004E3,-8.74101562]]],[[[0.12331748046875012E3,-8.35478516],[123.297266,-8.39863281],[123.025,-8.39550781],[0.12313349609375003E3,-8.25380859],[0.12333603515625008E3,-8.26904297],[0.12331748046875012E3,-8.35478516]]],[[[0.11664082031250004E3,-8.61386719],[116.514258,-8.82099609],[0.11658652343750012E3,-8.88613281],[0.11637724609375002E3,-8.92900391],[0.11602675781250001E3,-8.87314453],[0.11587460937500012E3,-8.82558594],[115.869336,-8.74277344],[116.076465,-8.74492187],[0.11606113281250005E3,-8.43740234],[0.11621982421875006E3,-8.29521484],[116.401563,-8.20419922],[0.11664697265624996E3,-8.28271484],[0.11673408203125004E3,-8.38691406],[0.11664082031250004E3,-8.61386719]]],[[[0.12428662109375003E3,-8.32949219],[124.184375,-8.49873047],[0.12406572265625007E3,-8.55166016],[0.12401728515625004E3,-8.44384766],[0.12392773437500003E3,-8.44892578],[123.971484,-8.35410156],[124.06875,-8.31777344],[0.12411054687500004E3,-8.36425781],[124.239551,-8.20341797],[124.304492,-8.22880859],[0.12428662109375003E3,-8.32949219]]],[[[0.12392480468750003E3,-8.27246094],[123.783887,-8.29960938],[0.12369785156250006E3,-8.42441406],[123.629199,-8.42246094],[0.12355302734375007E3,-8.56679687],[123.488672,-8.53232422],[0.12341074218750012E3,-8.58662109],[0.12323007812500006E3,-8.53066406],[0.12347587890625006E3,-8.32226563],[0.12339121093750012E3,-8.28046875],[0.12360058593749996E3,-8.29130859],[0.12377597656250005E3,-8.19042969],[0.12392480468750003E3,-8.27246094]]],[[[0.13889511718750006E3,-8.38867187],[0.13859423828124997E3,-8.37148437],[138.563379,-8.30908203],[0.13867666015625005E3,-8.19921875],[0.13879619140625007E3,-8.17363281],[0.13889765625000004E3,-8.3375],[0.13889511718750006E3,-8.38867187]]],[[[0.11755634765625003E3,-8.36728516],[0.11749042968750003E3,-8.34873047],[0.11749052734375006E3,-8.18339844],[0.11766503906249997E3,-8.14824219],[0.11755634765625003E3,-8.36728516]]],[[[0.11907382812500012E3,-8.23886719],[0.11903662109375003E3,-8.1578125],[0.11913486328125012E3,-8.19707031],[0.11907382812500012E3,-8.23886719]]],[[[124.575586,-8.14082031],[0.12459960937500003E3,-8.20175781],[0.12475224609375003E3,-8.15957031],[0.12505029296874997E3,-8.17958984],[0.12512460937500012E3,-8.20478516],[0.12509677734375005E3,-8.35283203],[124.444238,-8.44462891],[124.355566,-8.3859375],[0.12442597656250008E3,-8.29580078],[0.12443066406249996E3,-8.18320313],[124.575586,-8.14082031]]],[[[127.823438,-8.09882812],[0.12811923828125012E3,-8.17070312],[0.12802353515625006E3,-8.25537109],[0.12782089843750012E3,-8.19023438],[127.823438,-8.09882812]]],[[[0.12278291015625008E3,-8.61171875],[0.12247021484374999E3,-8.72548828],[0.12209414062499998E3,-8.74472656],[0.12183867187500002E3,-8.86035156],[0.12165136718749999E3,-8.89873047],[0.12158457031250013E3,-8.82060547],[0.12141464843750006E3,-8.81484375],[0.12132832031250004E3,-8.91689453],[0.12119082031249998E3,-8.89550781],[121.035254,-8.93544922],[120.780957,-8.84882813],[0.12055048828125004E3,-8.80185547],[0.12031953125000004E3,-8.8203125],[0.12012089843750002E3,-8.77695313],[119.909375,-8.85761719],[0.11980791015625002E3,-8.69765625],[0.11981816406250007E3,-8.57050781],[0.11987480468750009E3,-8.41982422],[119.918262,-8.44511719],[120.099219,-8.37753906],[120.231152,-8.28984375],[120.424902,-8.24892578],[0.12061025390625005E3,-8.24042969],[0.12075136718749998E3,-8.32148438],[0.12088613281250005E3,-8.32666016],[0.12127666015625002E3,-8.47792969],[0.12144453125000004E3,-8.57783203],[0.12154794921875013E3,-8.57529297],[0.12168339843750002E3,-8.50585938],[0.12186289062500006E3,-8.49394531],[0.12196650390625003E3,-8.45517578],[122.263086,-8.62490234],[0.12243349609375005E3,-8.60078125],[0.12251376953125006E3,-8.46962891],[0.12260351562499997E3,-8.40244141],[122.850488,-8.30439453],[0.12291914062500003E3,-8.221875],[0.12275859375000002E3,-8.1859375],[0.12284570312500001E3,-8.09326172],[122.97832,-8.15195312],[0.12300595703125006E3,-8.32910156],[0.12281113281250006E3,-8.48115234],[0.12284677734375006E3,-8.56220703],[0.12278291015625008E3,-8.61171875]]],[[[130.862207,-8.31875],[0.13077519531250002E3,-8.34990234],[0.13102011718750012E3,-8.09130859],[0.13117636718750003E3,-8.13076172],[131.04375,-8.21201172],[0.13090810546875005E3,-8.24570312],[130.862207,-8.31875]]],[[[0.11824238281250004E3,-8.31777344],[0.11833789062500003E3,-8.35351562],[118.490625,-8.27148437],[0.11861191406250008E3,-8.28066406],[0.11871386718749997E3,-8.41494141],[0.11874833984375007E3,-8.33115234],[0.11884570312500004E3,-8.29306641],[0.11898779296875003E3,-8.33769531],[0.11904384765625005E3,-8.45673828],[0.11904208984375005E3,-8.5609375],[0.11912968750000002E3,-8.66816406],[119.00625,-8.74960938],[0.11890332031250003E3,-8.70273437],[118.745898,-8.73544922],[0.11880830078125004E3,-8.83828125],[118.72793,-8.80527344],[118.478613,-8.85644531],[0.11839785156249998E3,-8.81337891],[0.11837890625000003E3,-8.67460938],[0.11818994140624997E3,-8.84052734],[0.11807070312500007E3,-8.85058594],[117.86123,-8.93144531],[0.11773164062500004E3,-8.91992188],[0.11750791015625006E3,-0.9007519531249997E1],[0.11721025390625006E3,-9.03408203],[0.11706132812500003E3,-9.09902344],[0.11678847656250004E3,-9.00634766],[0.11680693359375006E3,-8.8109375],[116.783105,-8.66464844],[0.11683505859375013E3,-8.53242188],[116.953125,-8.50341797],[0.11716484375000006E3,-8.3671875],[0.11735664062500004E3,-8.42851562],[0.11756708984375004E3,-8.42636719],[0.11780605468750004E3,-8.71113281],[117.969531,-8.72802734],[0.11810410156250012E3,-8.65029297],[0.11820595703124998E3,-8.65214844],[0.11823486328124997E3,-8.59189453],[0.11810048828124998E3,-8.47519531],[0.11797910156250012E3,-8.45888672],[0.11781484375000005E3,-8.34208984],[0.11773837890625012E3,-8.20458984],[117.755273,-8.14951172],[0.11792099609375012E3,-8.0890625],[0.11811748046875006E3,-8.12226563],[0.11824238281250004E3,-8.31777344]]],[[[0.11544785156250012E3,-8.15517578],[0.11554941406250012E3,-8.20830078],[0.11570429687500005E3,-8.40712891],[0.11555996093750005E3,-8.51416016],[0.11533378906250009E3,-8.61572266],[0.11523613281250007E3,-8.79755859],[115.091504,-8.82939453],[0.11514160156249999E3,-8.696875],[0.11505507812500004E3,-8.57304687],[0.11484208984375006E3,-8.42851562],[0.11461318359375001E3,-8.37832031],[114.501758,-8.26083984],[0.11447529296875004E3,-8.11943359],[0.11462001953125005E3,-8.12773437],[0.11483300781249996E3,-8.18261719],[0.11499814453125006E3,-8.17441406],[0.11515400390625004E3,-8.06572266],[0.11544785156250012E3,-8.15517578]]],[[[0.12983886718749997E3,-7.95458984],[0.12977978515625003E3,-8.04648437],[0.12971347656250012E3,-8.04072266],[0.12959189453125012E3,-7.91738281],[0.12960898437500006E3,-7.80341797],[0.12981298828124994E3,-7.81972656],[0.12983886718749997E3,-7.95458984]]],[[[0.12680097656250004E3,-7.66787109],[0.12681269531250004E3,-7.73789062],[0.12657734375000004E3,-7.80761719],[126.47207,-7.95039063],[0.12610839843749997E3,-7.88398437],[125.951562,-7.9109375],[0.12579824218750004E3,-7.98457031],[0.12584316406250005E3,-7.81669922],[0.12597529296875004E3,-7.66337891],[0.12621367187500003E3,-7.70673828],[126.359375,-7.67675781],[0.12646289062500003E3,-7.6078125],[0.12660957031250004E3,-7.57177734],[0.12672636718750002E3,-7.66220703],[0.12680097656250004E3,-7.66787109]]],[[[0.12741943359375003E3,-7.62304688],[0.12735527343750003E3,-7.64648438],[0.12737070312500012E3,-7.51279297],[0.12747519531250012E3,-7.53105469],[0.12741943359375003E3,-7.62304688]]],[[[0.13853535156250004E3,-8.27363281],[138.296289,-8.40517578],[137.871875,-8.3796875],[137.687695,-8.41171875],[0.13765039062499994E3,-8.38613281],[137.685156,-8.26220703],[137.83252,-7.93222656],[0.13800751953125004E3,-7.64160156],[0.13808183593750002E3,-7.56621094],[0.13829550781250012E3,-7.43847656],[138.543848,-7.37958984],[0.13876982421875002E3,-7.39042969],[0.13896259765625004E3,-7.58798828],[0.13898906250000002E3,-7.69609375],[0.13878593750000002E3,-8.05908203],[0.13853535156250004E3,-8.27363281]]],[[[131.325586,-7.99951172],[0.13111376953125003E3,-7.99736328],[0.13108681640625005E3,-7.86503906],[0.13113779296875012E3,-7.68486328],[0.13119003906250012E3,-7.671875],[0.13126005859375007E3,-7.47050781],[0.13134921875000012E3,-7.42539062],[0.13153085937500006E3,-7.16513672],[131.643457,-7.11279297],[0.13173613281250007E3,-7.19707031],[0.13164384765625002E3,-7.26689453],[0.13169111328125004E3,-7.43886719],[0.13162441406250005E3,-7.62617187],[0.13137705078125006E3,-7.86914062],[131.325586,-7.99951172]]],[[[0.13198203125000006E3,-7.20205078],[0.13175078125000002E3,-7.11679688],[0.13192226562500005E3,-7.10449219],[0.13198203125000006E3,-7.20205078]]],[[[0.11441259765624997E3,-7.13349609],[114.346875,-7.16328125],[0.11429882812499997E3,-7.09755859],[0.11441259765624997E3,-7.13349609]]],[[[128.670117,-7.18330078],[128.625,-7.20859375],[0.12852978515625003E3,-7.13457031],[0.12862773437500007E3,-7.06875],[128.670117,-7.18330078]]],[[[0.12077441406250003E3,-7.11894531],[0.12064082031250004E3,-7.11582031],[0.12063339843750005E3,-7.01826172],[0.12078173828124997E3,-7.06308594],[0.12077441406250003E3,-7.11894531]]],[[[0.11384453125000007E3,-7.10537109],[0.11365585937500006E3,-7.11171875],[0.11347070312500003E3,-7.21845703],[113.04043,-7.21181641],[0.11276376953125006E3,-7.13964844],[0.11272587890625007E3,-7.07275391],[112.868066,-6.89990234],[0.11306738281250003E3,-6.87998047],[0.11397470703125012E3,-6.87304688],[0.11408300781249996E3,-6.98935547],[0.11388535156250012E3,-7.04902344],[0.11384453125000007E3,-7.10537109]]],[[[0.11537705078125006E3,-6.97080078],[115.220313,-6.95253906],[0.11524052734375007E3,-6.86123047],[0.11541445312500004E3,-6.83974609],[0.11554609375000004E3,-6.93867187],[0.11537705078125006E3,-6.97080078]]],[[[0.13467441406250012E3,-6.74980469],[0.13462910156250004E3,-6.71279297],[134.735742,-6.62333984],[0.13467441406250012E3,-6.74980469]]],[[[0.10525283203125005E3,-6.64042969],[0.10512138671875007E3,-6.61494141],[0.10526054687500002E3,-6.52392578],[0.10525283203125005E3,-6.64042969]]],[[[0.13471611328125002E3,-6.54941406],[0.13466083984375004E3,-6.55888672],[134.679102,-6.45605469],[0.13471611328125002E3,-6.54941406]]],[[[0.13481953125000004E3,-6.43417969],[0.13481953125000004E3,-6.43417969],[0.13481953125000004E3,-6.43417969],[0.13481953125000004E3,-6.43417969]]],[[[0.13453681640625004E3,-6.44228516],[134.504297,-6.59140625],[134.4125,-6.6796875],[0.13435595703124997E3,-6.81484375],[134.2,-6.90878906],[0.13405917968750012E3,-6.76933594],[0.13412460937500012E3,-6.42646484],[0.13411464843750005E3,-6.19082031],[0.13416806640625006E3,-6.17626953],[0.13441503906249997E3,-6.38671875],[0.13453681640625004E3,-6.44228516]]],[[[0.10737392578125005E3,-6.00761719],[0.10747470703125006E3,-6.12177734],[0.10766679687500002E3,-6.21582031],[0.10788378906250003E3,-6.23330078],[0.10813759765625005E3,-6.29667969],[0.10829501953125012E3,-6.26503906],[0.10851591796875002E3,-6.47119141],[0.10860361328125012E3,-6.72919922],[0.10867783203125005E3,-6.79052734],[0.10901835937500006E3,-6.81728516],[109.294238,-6.86699219],[0.10950058593750006E3,-6.81015625],[0.10982099609375004E3,-6.90244141],[109.93623,-6.91582031],[0.11019843750000003E3,-6.89511719],[0.11042626953124997E3,-6.94726563],[0.11052089843749998E3,-6.89726562],[0.11058359375000006E3,-6.80566406],[0.11067402343750004E3,-6.56982422],[0.11073691406250005E3,-6.47236328],[0.11083476562500002E3,-6.42421875],[0.11097226562500012E3,-6.43564453],[111.154395,-6.66904297],[0.11134208984375007E3,-6.69951172],[0.11154033203125002E3,-6.64824219],[0.11173759765625006E3,-6.7734375],[0.11198984375000012E3,-6.80595703],[112.087305,-6.89335937],[112.312305,-6.89443359],[0.11253925781250004E3,-6.92646484],[0.11264873046875006E3,-7.22128906],[112.794336,-7.30449219],[0.11279453125000012E3,-7.55244141],[0.11301357421875005E3,-7.65771484],[0.11324843750000005E3,-7.71816406],[0.11349765625000006E3,-7.72382812],[113.747461,-7.70302734],[0.11407070312500004E3,-7.63300781],[114.382715,-7.77109375],[114.444238,-7.89560547],[114.443262,-8.00458984],[0.11438496093750003E3,-8.26328125],[0.11438691406250004E3,-8.40517578],[0.11448173828125002E3,-8.60380859],[0.11459501953125003E3,-8.68476562],[0.11458378906250002E3,-8.76962891],[0.11438320312499998E3,-8.70537109],[0.11427695312500006E3,-8.61464844],[0.11415966796874996E3,-8.62646484],[0.11369257812500008E3,-8.47802734],[0.11325332031250004E3,-8.28671875],[113.133691,-8.28828125],[0.11267880859375006E3,-8.40917969],[112.115137,-8.32392578],[0.11150996093750004E3,-8.30507812],[0.11133857421875003E3,-8.26171875],[111.055371,-8.23955078],[0.11060722656250002E3,-8.14941406],[0.11003867187500005E3,-7.89052734],[0.10985263671875012E3,-7.82841797],[0.10928164062500005E3,-7.70488281],[108.986719,-7.70410156],[0.10874121093749997E3,-7.66708984],[0.10857050781250004E3,-7.70722656],[0.10845175781250005E3,-7.79697266],[0.10822050781250002E3,-7.78232422],[0.10791748046875003E3,-7.72412109],[0.10769580078124996E3,-7.63554688],[107.546875,-7.54189453],[0.10728496093750007E3,-7.47167969],[0.10663144531250005E3,-7.41552734],[0.10645527343750003E3,-7.36865234],[0.10641689453125005E3,-7.23935547],[0.10651972656250004E3,-7.05371094],[0.10619824218749997E3,-6.92783203],[0.10594433593749997E3,-6.85898437],[105.478418,-6.85371094],[0.10525546875000012E3,-6.83525391],[0.10527343749999997E3,-6.72939453],[0.10537089843750002E3,-6.66435547],[0.10538701171875002E3,-6.75078125],[0.10548369140625006E3,-6.78154297],[0.10558085937500006E3,-6.67099609],[0.10565507812500002E3,-6.46953125],[0.10578691406250002E3,-6.45693359],[0.10586826171875006E3,-6.11640625],[0.10593613281250006E3,-6.01699219],[106.075,-5.91416016],[0.10616582031250006E3,-5.96474609],[0.10667587890625005E3,-6.03837891],[0.10682519531249997E3,-6.09824219],[0.10701162109375005E3,-6.00849609],[107.046289,-5.90419922],[0.10737392578125005E3,-6.00761719]]],[[[0.12405126953124997E3,-5.97373047],[0.12405126953124997E3,-5.97373047],[0.12405126953124997E3,-5.97373047],[0.12405126953124997E3,-5.97373047]]],[[[0.12052832031249996E3,-6.2984375],[0.12048730468749996E3,-6.46484375],[0.12046074218750007E3,-6.25400391],[120.446484,-5.87626953],[0.12047734375000007E3,-5.77529297],[0.12054921875000005E3,-5.96923828],[0.12052832031249996E3,-6.2984375]]],[[[0.11271943359375008E3,-5.81103516],[0.11260214843750006E3,-5.84365234],[0.11264853515625012E3,-5.73085937],[0.11271943359375008E3,-5.81103516]]],[[[0.13280712890625003E3,-5.85078125],[132.746289,-5.94707031],[0.13268144531250002E3,-5.91259766],[0.13268134765625004E3,-5.73886719],[0.13263017578125002E3,-5.60703125],[0.13269785156250006E3,-5.60898437],[0.13280429687500006E3,-5.78886719],[0.13280712890625003E3,-5.85078125]]],[[[134.746973,-5.70703125],[0.13475498046875012E3,-5.88271484],[134.712207,-5.94970703],[0.13475585937500003E3,-6.17060547],[0.13471416015625007E3,-6.29511719],[134.637598,-6.36533203],[0.13444111328125004E3,-6.33486328],[0.13428046875000004E3,-6.20078125],[134.153125,-6.01953125],[134.301953,-6.00976562],[0.13434306640625002E3,-5.83300781],[0.13422617187500012E3,-5.74443359],[134.247266,-5.68193359],[0.13434130859375003E3,-5.71289062],[0.13449033203125012E3,-5.52509766],[0.13450644531250012E3,-5.43847656],[0.13461650390625007E3,-5.43857422],[134.746973,-5.70703125]]],[[[0.13292626953124994E3,-5.90205078],[0.13284501953125002E3,-5.98798828],[0.13293769531250004E3,-5.68261719],[0.13300878906249997E3,-5.62138672],[0.13311464843750005E3,-5.31064453],[0.13317285156250003E3,-5.34814453],[0.13311962890625003E3,-5.57597656],[0.13297109375000005E3,-5.73583984],[0.13292626953124994E3,-5.90205078]]],[[[0.10236718750000003E3,-5.47871094],[0.10228593750000002E3,-5.48349609],[102.110742,-5.32255859],[0.10219843750000004E3,-5.28886719],[102.371777,-5.36640625],[0.10236718750000003E3,-5.47871094]]],[[[0.12362675781250006E3,-5.27158203],[0.12362275390625004E3,-5.37304687],[0.12355009765625007E3,-5.33183594],[123.560645,-5.24980469],[0.12362675781250006E3,-5.27158203]]],[[[0.12204296874999997E3,-5.43798828],[0.12197958984375006E3,-5.46474609],[0.12180849609374998E3,-5.25615234],[0.12186630859375005E3,-5.09599609],[121.965723,-5.07558594],[122.061816,-5.22128906],[0.12204296874999997E3,-5.43798828]]],[[[0.12264511718750012E3,-5.26943359],[0.12256386718749998E3,-5.3875],[0.12239199218750004E3,-5.33544922],[0.12230703125000005E3,-5.38095703],[0.12228310546874998E3,-5.31953125],[122.329004,-5.13769531],[122.396289,-5.06982422],[0.12233447265624997E3,-4.84658203],[0.12236894531250007E3,-4.7671875],[122.701953,-4.61865234],[0.12273974609375004E3,-4.675],[0.12275986328125012E3,-4.93388672],[0.12261406250000007E3,-5.13867187],[0.12264511718750012E3,-5.26943359]]],[[[0.12317978515625005E3,-4.55117188],[123.195703,-4.82265625],[0.12311923828125005E3,-4.7234375],[0.12305517578124996E3,-4.74824219],[122.986523,-4.96308594],[0.12298105468750005E3,-5.18574219],[123.051465,-5.15644531],[0.12320195312500003E3,-5.27333984],[0.12318730468750006E3,-5.33300781],[0.12304335937500004E3,-5.41933594],[0.12298574218750005E3,-5.39355469],[0.12281210937500013E3,-5.67128906],[0.12264501953124996E3,-5.66337891],[0.12258496093750001E3,-5.54462891],[0.12267011718750004E3,-5.33085937],[0.12276650390625005E3,-5.21015625],[0.12284941406250007E3,-4.83125],[0.12285332031250007E3,-4.61835938],[0.12294687500000012E3,-4.44267578],[123.074609,-4.38691406],[123.068945,-4.43359375],[0.12317978515625005E3,-4.55117188]]],[[[0.13357080078124997E3,-4.24589844],[133.621875,-4.29931641],[0.13333300781249997E3,-4.16962891],[0.13332089843750006E3,-4.11103516],[0.13357080078124997E3,-4.24589844]]],[[[0.12324238281250008E3,-4.11298828],[0.12314453124999997E3,-4.23330078],[0.12299472656250006E3,-4.14804687],[0.12296904296875002E3,-4.02998047],[0.12302490234375001E3,-3.98095703],[0.12321191406250001E3,-3.99755859],[0.12324238281250008E3,-4.11298828]]],[[[0.12856259765625012E3,-3.58544922],[0.12839160156250003E3,-3.63789063],[0.12845156250000005E3,-3.51474609],[0.12856259765625012E3,-3.58544922]]],[[[128.275586,-3.67460937],[0.12814316406250012E3,-3.73271484],[128.146875,-3.67714844],[0.12797802734374996E3,-3.77099609],[0.12792753906250007E3,-3.67939453],[0.12801621093750012E3,-3.60087891],[0.12832910156249997E3,-3.51591797],[128.275586,-3.67460937]]],[[[128.722461,-3.546875],[128.619531,-3.58857422],[0.12859492187500004E3,-3.49482422],[128.722461,-3.546875]]],[[[0.11642412109375007E3,-3.46445312],[0.11638779296875012E3,-3.63671875],[116.326562,-3.5390625],[116.395313,-3.42333984],[0.11642412109375007E3,-3.46445312]]],[[[127.60625,-3.31513672],[0.12748769531249998E3,-3.28818359],[127.554492,-3.25429687],[127.60625,-3.31513672]]],[[[0.11630332031250006E3,-3.86816406],[0.11609335937500008E3,-4.05410156],[0.11605878906250004E3,-4.00693359],[0.11607695312500002E3,-3.81748047],[0.11601835937500007E3,-3.69990234],[0.11606357421875006E3,-3.45791016],[116.117383,-3.33955078],[0.11626972656250003E3,-3.25107422],[116.262109,-3.39482422],[0.11631865234375007E3,-3.76298828],[0.11630332031250006E3,-3.86816406]]],[[[0.12686113281250006E3,-3.08789062],[0.12702548828125006E3,-3.16601562],[0.12709238281250005E3,-3.27753906],[0.12722734375000009E3,-3.39101563],[0.12722958984375006E3,-3.63300781],[0.12708505859375012E3,-3.67089844],[0.12694091796874996E3,-3.76455078],[0.12668632812500006E3,-3.82363281],[0.12641113281250001E3,-3.71064453],[0.12621455078125004E3,-3.60517578],[126.056543,-3.42099609],[0.12602646484375012E3,-3.17050781],[126.088281,-3.10546875],[0.12621962890624998E3,-3.14814453],[126.30625,-3.10322266],[0.12655507812500004E3,-3.06523437],[0.12686113281250006E3,-3.08789062]]],[[[0.12798789062500012E3,-2.93652344],[127.937695,-3.02001953],[0.12783427734375007E3,-3.00439453],[0.12798789062500012E3,-2.93652344]]],[[[0.10688642578125003E3,-3.00527344],[0.10681425781250007E3,-3.01445313],[106.742871,-2.9328125],[106.796875,-2.89892578],[0.10691064453124997E3,-2.93398437],[0.10688642578125003E3,-3.00527344]]],[[[0.10747333984375004E3,-2.89951172],[0.10747333984375004E3,-2.89951172],[0.10747333984375004E3,-2.89951172],[0.10747333984375004E3,-2.89951172]]],[[[0.12975468750000007E3,-2.86582031],[129.984375,-2.97666016],[130.379102,-2.98935547],[0.13056992187500006E3,-3.13085938],[0.13067109375000004E3,-3.39150391],[0.13077343749999997E3,-3.41875],[0.13085996093750006E3,-3.5703125],[130.805078,-3.85771484],[130.269727,-3.57929687],[0.13001953125000003E3,-3.47470703],[0.12984414062499997E3,-3.32714844],[129.511719,-3.32851562],[129.52168,-3.43369141],[0.12946767578125005E3,-3.45322266],[128.96748,-3.32607422],[0.12895781250000007E3,-3.24111328],[128.8625,-3.23496094],[0.12875126953125002E3,-3.30048828],[0.12863896484375002E3,-3.43339844],[0.12851660156249997E3,-3.44912109],[0.12841923828125002E3,-3.41601562],[128.27998,-3.24052734],[128.132031,-3.15742188],[0.12808212890625012E3,-3.18408203],[0.12803007812500007E3,-3.34052734],[0.12792041015625003E3,-3.50605469],[0.12792792968750003E3,-3.34140625],[0.12787792968749996E3,-3.22207031],[0.12811337890625006E3,-2.93457031],[0.12819853515625002E3,-2.86591797],[0.12856982421874997E3,-2.8421875],[0.12879052734375003E3,-2.85664063],[0.12905771484375006E3,-2.83847656],[129.116309,-2.93701172],[0.12927958984375002E3,-2.8890625],[0.12942734375000003E3,-2.79072266],[0.12954296875000003E3,-2.79033203],[0.12975468750000007E3,-2.86582031]]],[[[0.10042509765625007E3,-3.18291016],[0.10046513671875007E3,-3.32851562],[0.10034609375000005E3,-3.22919922],[0.10033203125000003E3,-3.11308594],[0.10020429687500004E3,-2.98681641],[0.10017929687500006E3,-2.82021484],[0.10024560546874997E3,-2.78320312],[0.10045458984375003E3,-3.00195312],[0.10042509765625007E3,-3.18291016]]],[[[108.207227,-2.99765625],[0.10816728515625002E3,-3.14277344],[0.10805527343750006E3,-3.22685547],[0.10797714843750012E3,-3.22177734],[0.10794111328125004E3,-3.12929687],[0.10785820312500002E3,-3.08632813],[0.10782177734374997E3,-3.16074219],[0.10761445312500003E3,-3.209375],[0.10759492187500004E3,-3.05839844],[0.10759814453124997E3,-2.79970703],[0.10766630859375002E3,-2.56630859],[0.10783779296875004E3,-2.53027344],[0.10807441406250004E3,-2.59697266],[0.10821513671875002E3,-2.69697266],[108.290625,-2.82998047],[108.207227,-2.99765625]]],[[[0.10020410156249997E3,-2.74101563],[100.132715,-2.82138672],[0.10001494140625007E3,-2.81972656],[0.9996816406250005E2,-2.60976563],[100.011914,-2.51025391],[0.10020195312500007E3,-2.6796875],[0.10020410156249997E3,-2.74101563]]],[[[134.374219,-2.12353516],[134.350781,-2.03691406],[0.13441904296875006E3,-2.05175781],[134.374219,-2.12353516]]],[[[0.9984306640625007E2,-2.34306641],[99.8478516,-2.36972656],[99.6070313,-2.25751953],[0.9953740234375007E2,-2.16152344],[0.9957216796875005E2,-2.02578125],[0.9968642578125005E2,-2.06337891],[0.9984306640625007E2,-2.34306641]]],[[[126.055078,-2.45126953],[125.97793,-2.41542969],[0.12586289062500006E3,-2.07714844],[125.922754,-1.97480469],[0.12599267578124996E3,-2.01181641],[125.975977,-2.16806641],[0.12606572265625003E3,-2.36582031],[126.055078,-2.45126953]]],[[[0.12384824218750006E3,-1.95546875],[0.12380351562500002E3,-1.99433594],[0.12378349609375002E3,-1.87832031],[0.12384824218750006E3,-1.95546875]]],[[[0.12602421875000006E3,-1.78974609],[0.12633173828125004E3,-1.82285156],[0.12628808593750003E3,-1.85888672],[0.12595644531250004E3,-1.91660156],[0.12583886718749996E3,-1.90615234],[0.12543261718749999E3,-1.93808594],[0.12538720703124997E3,-1.84306641],[0.12552089843750004E3,-1.80087891],[0.12572031250000006E3,-1.81376953],[0.12602421875000006E3,-1.78974609]]],[[[123.152539,-1.81650391],[0.12307880859375008E3,-1.89892578],[0.12310644531250001E3,-1.78671875],[123.152539,-1.81650391]]],[[[0.13035332031250007E3,-1.69052734],[130.425,-1.80458984],[0.13038056640625004E3,-1.90263672],[130.418848,-1.97128906],[0.13024804687500003E3,-2.04775391],[129.886523,-1.98642578],[129.737695,-1.86689453],[0.12999365234374997E3,-1.75888672],[0.13035332031250007E3,-1.69052734]]],[[[0.12496953125000009E3,-1.70546875],[0.12509589843750004E3,-1.74082031],[125.145801,-1.69257813],[125.197656,-1.78027344],[0.12532021484374998E3,-1.81005859],[0.12531406250000006E3,-1.87714844],[0.12513476562499997E3,-1.88896484],[125.006738,-1.94306641],[0.12483447265624997E3,-1.89443359],[0.12463916015624999E3,-1.97822266],[0.12441777343750002E3,-2.00517578],[0.12432968750000012E3,-1.85888672],[0.12438085937499997E3,-1.6875],[0.12448300781250006E3,-1.64433594],[124.663965,-1.6359375],[0.12496953125000009E3,-1.70546875]]],[[[0.13547421875000006E3,-1.59179688],[0.13586914062499997E3,-1.64199219],[0.13620156250000005E3,-1.65498047],[0.13638964843749997E3,-1.72158203],[0.13671855468750002E3,-1.73398438],[136.892578,-1.79970703],[136.621875,-1.87304688],[0.13622812500000012E3,-1.89365234],[0.13586572265624997E3,-1.75214844],[0.13548759765625007E3,-1.66835937],[0.13547421875000006E3,-1.59179688]]],[[[108.953125,-1.61962891],[0.10883789062499997E3,-1.66162109],[0.10880371093750003E3,-1.56777344],[0.10895683593750002E3,-1.5640625],[108.953125,-1.61962891]]],[[[106.045703,-1.66943359],[0.10616171875000012E3,-1.86699219],[0.10620878906250002E3,-2.18867188],[0.10636591796875004E3,-2.46484375],[0.10681845703125006E3,-2.57333984],[0.10667880859375012E3,-2.70400391],[0.10661201171875008E3,-2.89550781],[0.10666718750000004E3,-3.07177734],[0.10654677734375005E3,-3.05556641],[0.10625009765625006E3,-2.89404297],[0.10599873046875004E3,-2.82490234],[0.10590800781250002E3,-2.64326172],[0.10593906250000012E3,-2.49345703],[105.806836,-2.30742187],[105.78584,-2.18134766],[0.10555273437500003E3,-2.07900391],[0.10534287109375006E3,-2.12509766],[0.10513339843750012E3,-2.04257812],[0.10519101562500006E3,-1.91689453],[105.374805,-1.81318359],[0.10537314453125012E3,-1.65732422],[0.10545957031250005E3,-1.57470703],[0.10558544921875003E3,-1.52675781],[0.10570087890625008E3,-1.73105469],[105.754492,-1.65869141],[105.72041,-1.53388672],[105.910059,-1.50498047],[0.10602734374999997E3,-1.59316406],[106.045703,-1.66943359]]],[[[123.597559,-1.70429688],[0.12348251953125006E3,-1.68144531],[0.12348662109375003E3,-1.53486328],[0.12354853515625004E3,-1.50820313],[123.616406,-1.62744141],[123.597559,-1.70429688]]],[[[128.153027,-1.66054687],[0.12806123046875004E3,-1.71240234],[127.91377,-1.68515625],[0.12756162109375013E3,-1.72851562],[0.12739218750000008E3,-1.64482422],[0.12745673828125004E3,-1.45371094],[0.12764667968750004E3,-1.33242188],[127.905078,-1.4390625],[0.12814873046875002E3,-1.60371094],[128.153027,-1.66054687]]],[[[123.212305,-1.17128906],[123.198047,-1.28769531],[0.12323779296874997E3,-1.38935547],[0.12333857421875004E3,-1.25400391],[0.12343476562500003E3,-1.23681641],[0.12354726562500005E3,-1.33740234],[0.12351191406250004E3,-1.44736328],[0.12336699218750007E3,-1.50712891],[0.12327490234374999E3,-1.43720703],[0.12323740234375008E3,-1.57695312],[0.12317294921875005E3,-1.61601562],[0.12312294921874998E3,-1.55605469],[0.12318291015625006E3,-1.49277344],[0.12315039062500001E3,-1.30449219],[122.984375,-1.51064453],[0.12289042968750007E3,-1.58720703],[0.12281083984375002E3,-1.43212891],[0.12283222656250004E3,-1.28300781],[0.12290800781250002E3,-1.18222656],[123.212305,-1.17128906]]],[[[0.10971025390625006E3,-1.18066406],[0.10951083984375012E3,-1.2828125],[109.428125,-1.24121094],[109.475977,-0.985351562],[0.10961464843750005E3,-0.979101562],[0.10974335937500004E3,-1.03935547],[0.10971025390625006E3,-1.18066406]]],[[[0.13496533203124997E3,-1.11601562],[134.861719,-1.11416016],[0.13480888671875007E3,-1.03759766],[0.13488925781250012E3,-0.938476562],[0.13499628906250004E3,-1.03408203],[0.13496533203124997E3,-1.11601562]]],[[[0.9916386718750007E2,-1.77792969],[0.9907177734374997E2,-1.78349609],[0.9887431640625007E2,-1.66367187],[0.9881630859375005E2,-1.53828125],[98.6017578,-1.19785156],[0.9867607421875007E2,-0.970507813],[0.9886904296875005E2,-0.915625],[0.9893261718750003E2,-0.954003906],[98.9547852,-1.05625],[99.0650391,-1.24072266],[0.9913066406250007E2,-1.44238281],[99.2672852,-1.62773437],[0.9927148437499997E2,-1.73847656],[0.9916386718750007E2,-1.77792969]]],[[[0.13100185546875005E3,-1.31552734],[130.845117,-1.31728516],[0.13078232421875006E3,-1.25546875],[0.13067294921875006E3,-0.959765625],[130.897168,-0.890039063],[0.13103300781250007E3,-0.917578125],[0.13107392578125004E3,-0.968261719],[0.13104619140625002E3,-1.18818359],[0.13100185546875005E3,-1.31552734]]],[[[0.13090527343749994E3,-0.777441406],[130.832422,-0.862890625],[0.13040244140625006E3,-0.923925781],[130.484277,-0.832519531],[0.13081347656250003E3,-0.813867187],[0.13090527343749994E3,-0.777441406]]],[[[0.13538300781250004E3,-0.651367188],[0.13567324218750005E3,-0.68828125],[0.13574902343750003E3,-0.732519531],[0.13589355468749997E3,-0.72578125],[136.154687,-0.978320312],[0.13637529296875007E3,-1.09404297],[0.13630537109375004E3,-1.17314453],[136.110352,-1.21679688],[0.13591503906250003E3,-1.17841797],[135.83877,-1.11943359],[0.13574707031249997E3,-0.823046875],[0.13564570312500004E3,-0.881933594],[0.13548339843749997E3,-0.801074219],[0.13538300781250004E3,-0.651367188]]],[[[0.12730039062500012E3,-0.780957031],[127.156445,-0.7609375],[0.12720908203125005E3,-0.619335937],[0.12725820312500007E3,-0.6234375],[0.12730039062500012E3,-0.780957031]]],[[[130.62666,-0.528710937],[0.13046542968750006E3,-0.486523437],[130.615918,-0.417285156],[130.684277,-0.469140625],[130.62666,-0.528710937]]],[[[0.12186435546875012E3,-0.406835938],[121.88125,-0.502636719],[121.721777,-0.494726562],[121.749316,-0.40703125],[0.12186435546875012E3,-0.406835938]]],[[[0.13347265624999997E3,-0.726171875],[133.974512,-0.744335938],[0.13411152343750004E3,-0.846777344],[0.13407197265625004E3,-1.00185547],[0.13425957031250007E3,-1.36298828],[134.216992,-1.52910156],[134.105859,-1.72099609],[134.14541,-1.96875],[0.13415566406250002E3,-2.19521484],[0.13419482421875003E3,-2.30908203],[0.13445996093749997E3,-2.83232422],[134.483301,-2.58300781],[0.13456689453124997E3,-2.51044922],[0.13462744140624994E3,-2.53671875],[0.13470214843749994E3,-2.93359375],[0.13484335937500006E3,-2.90917969],[0.13485273437500004E3,-3.10761719],[0.13491718750000004E3,-3.24990234],[0.13503740234375002E3,-3.33310547],[0.13537158203124994E3,-3.37490234],[0.13548662109375002E3,-3.34511719],[0.13562773437500002E3,-3.18603516],[0.13585917968750002E3,-2.9953125],[0.13601298828125007E3,-2.73427734],[0.13624326171875006E3,-2.58310547],[0.13638994140625002E3,-2.27333984],[136.843262,-2.19765625],[0.13707207031250002E3,-2.10507812],[137.171094,-2.02548828],[0.13712343749999997E3,-1.84091797],[0.13738056640625004E3,-1.68564453],[137.80625,-1.48320312],[0.13791113281249994E3,-1.48378906],[0.13811093750000006E3,-1.61591797],[0.13864980468749997E3,-1.79111328],[138.811426,-1.91777344],[139.039453,-1.99208984],[0.13948183593750005E3,-2.21181641],[0.13978955078125003E3,-2.34824219],[0.14015458984375007E3,-2.35],[0.14025097656249997E3,-2.41201172],[0.14062255859374997E3,-2.44580078],[0.14072050781250007E3,-2.50810547],[0.14074746093750005E3,-2.60712891],[0.14097343750000007E3,-2.60976563],[140.975,-6.34609375],[0.14087460937500012E3,-6.61152344],[0.14086230468749994E3,-6.74003906],[0.14097519531250006E3,-6.90537109],[0.14097617187500012E3,-9.11875],[140.786523,-8.97373047],[0.14066152343750005E3,-8.84677734],[0.14048974609375003E3,-8.62041016],[0.14010166015625012E3,-8.30058594],[139.983301,-8.16650391],[140.116992,-7.92373047],[0.13993476562500004E3,-8.10117188],[0.13964941406249997E3,-8.12539062],[139.385645,-8.1890625],[0.13927910156250002E3,-8.10693359],[139.248828,-7.98242187],[0.13919296875000006E3,-8.08613281],[138.933496,-8.26240234],[0.13885615234375004E3,-8.14511719],[0.13893593750000005E3,-7.91308594],[0.13900302734375012E3,-7.83759766],[0.13908798828125012E3,-7.58720703],[138.937891,-7.47246094],[0.13888554687500005E3,-7.37324219],[138.747949,-7.25146484],[0.13879843750000006E3,-7.21572266],[0.13904902343750004E3,-7.20058594],[0.13872001953125002E3,-7.06982422],[0.13860019531250012E3,-6.91074219],[0.13886455078125005E3,-6.85839844],[138.72666,-6.73115234],[138.698145,-6.62568359],[138.438672,-6.34335938],[138.296289,-5.94902344],[0.13837460937500006E3,-5.84365234],[0.13819960937500005E3,-5.80703125],[138.243555,-5.72441406],[0.13806591796874997E3,-5.67597656],[138.06084,-5.46523437],[0.13775908203125007E3,-5.25615234],[0.13730664062500003E3,-5.01435547],[0.13727978515624994E3,-4.94541016],[0.13719589843750012E3,-4.99042969],[0.13708925781250005E3,-4.92441406],[0.13685683593750005E3,-4.89316406],[0.13661884765625004E3,-4.81875],[136.39375,-4.70126953],[136.210645,-4.65068359],[0.13597968750000004E3,-4.53085937],[0.13545019531249997E3,-4.44306641],[0.13519560546875007E3,-4.45068359],[0.13475419921875002E3,-4.19541016],[0.13467968749999997E3,-4.07910156],[0.13470654296875003E3,-3.95478516],[134.546875,-3.97929687],[0.13439101562500002E3,-3.90996094],[0.13426621093750012E3,-3.94580078],[0.13414707031250006E3,-3.79677734],[133.973828,-3.81796875],[0.13390400390625004E3,-3.72011719],[133.723047,-3.57792969],[0.13367832031250006E3,-3.47949219],[133.697168,-3.24814453],[133.841504,-3.05478516],[133.700391,-3.0875],[0.13366074218750012E3,-3.18554687],[133.653125,-3.36435547],[0.13351816406250012E3,-3.41191406],[0.13354228515625007E3,-3.51640625],[0.13341513671875006E3,-3.73212891],[0.13340087890625003E3,-3.89902344],[0.13324873046875004E3,-4.06230469],[0.13296855468750007E3,-4.09492187],[132.837109,-3.94892578],[0.13275390625000003E3,-3.70361328],[0.13286972656250006E3,-3.55097656],[0.13282978515625004E3,-3.41298828],[0.13275136718750005E3,-3.29462891],[0.13234824218750006E3,-2.97509766],[0.13205390625000004E3,-2.91455078],[0.13197119140624997E3,-2.78857422],[132.230664,-2.68037109],[0.13257548828125002E3,-2.72714844],[132.725,-2.7890625],[0.13289726562500002E3,-2.65820313],[0.13303378906250012E3,-2.48740234],[0.13319101562500006E3,-2.43779297],[133.411426,-2.51396484],[0.13360869140625007E3,-2.54716797],[0.13370009765625005E3,-2.62460937],[0.13375332031250005E3,-2.45068359],[0.13390488281250012E3,-2.39091797],[0.13389892578124997E3,-2.30449219],[0.13379101562500003E3,-2.29365234],[0.13390244140625006E3,-2.18359375],[0.13392158203125004E3,-2.10205078],[133.710352,-2.18916016],[0.13348779296874997E3,-2.22558594],[0.13322490234375007E3,-2.21445313],[0.13296279296875005E3,-2.27255859],[0.13263105468750004E3,-2.24667969],[132.502637,-2.21845703],[0.13230761718749994E3,-2.24228516],[132.207422,-2.17578125],[0.13202343749999997E3,-1.99033203],[0.13193613281250012E3,-1.71494141],[0.13193037109375004E3,-1.55966797],[0.13173144531249997E3,-1.54121094],[131.29375,-1.39345703],[0.13111777343750012E3,-1.45527344],[0.13099589843750007E3,-1.42470703],[0.13104619140625002E3,-1.28408203],[0.13115185546874994E3,-1.21884766],[0.13125410156250007E3,-1.00693359],[131.257227,-0.85546875],[0.13146152343750006E3,-0.781835938],[0.13180429687500006E3,-0.703808594],[0.13189091796875007E3,-0.657128906],[0.13212841796874997E3,-0.454101562],[132.39375,-0.35546875],[0.13262509765625006E3,-0.358886719],[0.13285644531250003E3,-0.417382813],[0.13307714843749994E3,-0.511816406],[0.13326845703125005E3,-0.635742188],[0.13347265624999997E3,-0.726171875]]],[[[0.10447421875000012E3,-0.334667969],[0.10459013671875002E3,-0.466601563],[0.10448535156249997E3,-0.612890625],[0.10441386718750002E3,-0.583691406],[104.363184,-0.65859375],[104.329785,-0.5390625],[0.10425712890625002E3,-0.46328125],[0.10430234375000012E3,-0.385742187],[0.10436357421875007E3,-0.402832031],[0.10447421875000012E3,-0.334667969]]],[[[0.12756699218750005E3,-0.318945312],[127.682422,-0.468359375],[0.12760498046874996E3,-0.61015625],[127.658594,-0.689453125],[0.12780429687500006E3,-0.694433594],[0.12788017578125002E3,-0.808691406],[0.12776113281249998E3,-0.883691406],[0.12762382812500002E3,-0.766015625],[127.462695,-0.805957031],[127.468652,-0.64296875],[127.3,-0.500292969],[127.325098,-0.335839844],[0.12745517578125012E3,-0.406347656],[0.12756699218750005E3,-0.318945312]]],[[[0.12724990234375004E3,-0.4953125],[0.12711914062500001E3,-0.520507812],[0.12712646484375003E3,-0.278613281],[0.12729003906250003E3,-0.284375],[0.12724990234375004E3,-0.4953125]]],[[[0.10373652343750003E3,-0.347949219],[103.606348,-0.382910156],[103.461328,-0.357617188],[0.10354892578125006E3,-0.227539062],[0.10372392578125002E3,-0.276660156],[0.10373652343750003E3,-0.347949219]]],[[[0.13081328125000007E3,-0.0041015625],[0.13102578125000005E3,-0.0399414062],[0.13127685546875003E3,-0.149804687],[0.13133974609375005E3,-0.290332031],[131.25752,-0.365722656],[131.097754,-0.330078125],[0.13100537109374994E3,-0.360742188],[0.13080839843750007E3,-0.226464844],[130.683496,-0.0806640625],[0.13062216796875006E3,-0.0859375],[0.13076132812500006E3,-0.29140625],[0.13089921875000002E3,-0.344433594],[0.13089628906250002E3,-0.416015625],[130.750195,-0.443847656],[130.688672,-0.296582031],[0.13055078124999997E3,-0.36640625],[0.13049628906250004E3,-0.267382813],[130.340527,-0.262304687],[0.13023662109375002E3,-0.209667969],[0.13029492187499997E3,-0.101464844],[0.13081328125000007E3,-0.0041015625]]],[[[0.9845927734375007E2,-0.53046875],[0.9839970703125007E2,-0.576855469],[98.309668,-0.531835937],[98.4271484,-0.226464844],[98.3229492,-0.00078125],[98.4154297,-0.0175292969],[98.5441406,-0.257617187],[0.9845927734375007E2,-0.53046875]]],[[[0.10477861328125007E3,-0.175976562],[0.10484316406250005E3,-0.140625],[0.10500537109374996E3,-0.2828125],[0.10491425781250004E3,-0.323339844],[0.10470224609375012E3,-0.208691406],[0.10456660156250004E3,-0.245605469],[0.10444707031250002E3,-0.189160156],[0.10454267578125003E3,0.0177246094],[0.10477861328125007E3,-0.175976562]]],[[[0.12954892578125006E3,-0.187011719],[0.12937011718749997E3,-0.06640625],[129.308789,0.0454101563],[0.12954199218749997E3,-0.139257813],[0.12954892578125006E3,-0.187011719]]],[[[0.12745341796875002E3,-0.005859375],[0.12739677734375002E3,0.0166015625],[0.12743134765625004E3,0.142578125],[0.12745341796875002E3,-0.005859375]]],[[[0.10468925781250007E3,0.0595214844],[0.10460351562499997E3,0.0952148438],[0.10454384765624998E3,0.223291016],[0.10468925781250007E3,0.0595214844]]],[[[0.10328447265625002E3,0.541943359],[103.139551,0.549072266],[0.10318740234374998E3,0.699755859],[0.10329511718750008E3,0.613964844],[0.10328447265625002E3,0.541943359]]],[[[0.12741972656250007E3,0.642089844],[0.12738261718750006E3,0.743554687],[0.12744257812500004E3,0.733447266],[0.12741972656250007E3,0.642089844]]],[[[0.12737265625000005E3,0.791308594],[0.12737265625000005E3,0.791308594],[0.12737265625000005E3,0.791308594],[0.12737265625000005E3,0.791308594]]],[[[0.10345019531249997E3,0.664453125],[0.10334443359375008E3,0.777880859],[0.10338613281250005E3,0.869580078],[0.10349746093749998E3,0.722705078],[0.10345019531249997E3,0.664453125]]],[[[0.10382861328124997E3,0.801025391],[0.10374238281250004E3,0.829980469],[0.10375195312499997E3,0.891357422],[0.10382861328124997E3,0.801025391]]],[[[0.10423935546875006E3,0.833984375],[0.10417675781250003E3,0.804882813],[0.10409814453124997E3,0.896240234],[0.10412275390625003E3,0.943994141],[0.10423935546875006E3,0.833984375]]],[[[103.027539,0.746630859],[0.10297148437500002E3,0.736523438],[0.10254160156250012E3,0.831591797],[102.453906,0.889501953],[0.10250664062500002E3,1.08876953],[102.549219,1.13022461],[0.10278007812500002E3,0.959375],[0.10300244140624997E3,0.859277344],[103.027539,0.746630859]]],[[[0.10342392578125012E3,1.04833984],[0.10336328125000003E3,1.00683594],[0.10331542968750003E3,1.07128906],[0.10337998046875006E3,1.13364258],[0.10342392578125012E3,1.04833984]]],[[[0.10316640625000005E3,0.870166016],[0.10308671875000007E3,0.848144531],[0.10288632812500012E3,0.996777344],[102.701855,1.05371094],[0.10272558593749997E3,1.15883789],[0.10279013671875006E3,1.16547852],[103.067578,1.01474609],[0.10316640625000005E3,0.870166016]]],[[[0.10402480468750004E3,1.18056641],[0.10413984375000004E3,1.16557617],[0.10406611328125004E3,0.989550781],[103.963574,1.01323242],[0.10395537109375002E3,1.13745117],[0.10402480468750004E3,1.18056641]]],[[[0.10458535156250005E3,1.21611328],[0.10464814453125004E3,1.10458984],[0.10465283203125003E3,0.961035156],[0.10457519531250003E3,0.831933594],[0.10450429687500005E3,0.852636719],[104.428613,0.956494141],[0.10443925781250002E3,1.05043945],[0.10425195312499996E3,1.01489258],[0.10425019531250004E3,1.10263672],[0.10436181640624997E3,1.18149414],[0.10458535156250005E3,1.21611328]]],[[[102.427148,0.990136719],[0.10232529296875012E3,1.00703125],[0.10225546875000012E3,1.14716797],[0.10222861328125006E3,1.34785156],[0.10225634765625003E3,1.39707031],[0.10235859375000004E3,1.3456543],[0.10244287109374997E3,1.23422852],[102.427148,0.990136719]]],[[[97.481543,1.46508789],[97.6983398,1.18374023],[97.7864258,1.14589844],[97.9319336,0.973925781],[0.9787646484374997E2,0.628320313],[97.8204102,0.564453125],[97.6839844,0.59609375],[97.6039063,0.833886719],[97.4053711,0.946972656],[97.296875,1.18735352],[97.0791992,1.42548828],[97.2442383,1.42363281],[0.9735595703124997E2,1.53974609],[97.481543,1.46508789]]],[[[0.10249189453125004E3,1.45917969],[0.10249941406250005E3,1.3309082],[102.274219,1.453125],[0.10207871093750006E3,1.49858398],[0.10204218750000008E3,1.62539063],[0.10246953125000002E3,1.51005859],[0.10249189453125004E3,1.45917969]]],[[[0.12488886718750004E3,0.9953125],[124.698145,0.825585937],[124.589063,0.655273438],[0.12442753906250002E3,0.470605469],[0.12421679687500001E3,0.380371094],[124.101367,0.374560547],[123.753809,0.305517578],[0.12352597656250006E3,0.300341797],[0.12326542968750007E3,0.326611328],[0.12308251953125001E3,0.485839844],[0.12228076171875001E3,0.481054688],[121.841992,0.436572266],[121.60459,0.486132813],[0.12142578125000003E3,0.494824219],[0.12101298828125002E3,0.441699219],[0.12090917968750001E3,0.446777344],[0.12070039062500004E3,0.514697266],[0.12045996093749997E3,0.510302734],[0.12034902343750005E3,0.44921875],[120.127344,0.166552734],[120.013281,-0.196191406],[0.12003173828124997E3,-0.43203125],[120.097461,-0.649902344],[0.12026982421875006E3,-0.89921875],[0.12042539062500006E3,-0.960644531],[0.12051757812499997E3,-1.03945313],[0.12066738281250005E3,-1.37011719],[0.12079697265625005E3,-1.36367187],[0.12103369140624997E3,-1.40654297],[0.12114853515625012E3,-1.33945313],[0.12127685546874996E3,-1.11816406],[0.12151933593750007E3,-0.855566406],[121.632715,-0.840332031],[0.12173769531250005E3,-0.925683594],[0.12196962890625005E3,-0.933300781],[0.12217490234375005E3,-0.79375],[0.12227998046875004E3,-0.75703125],[122.658789,-0.769824219],[0.12288876953125006E3,-0.755175781],[122.829492,-0.658886719],[0.12317148437500013E3,-0.570703125],[123.379688,-0.648535156],[0.12343417968750006E3,-0.778222656],[0.12337792968749996E3,-1.00410156],[123.225781,-1.00175781],[0.12315273437500005E3,-0.90703125],[123.049414,-0.872363281],[0.12290283203125003E3,-0.900976562],[122.807422,-0.966015625],[0.12250664062500002E3,-1.34785156],[0.12233417968750011E3,-1.49785156],[0.12215761718749998E3,-1.59394531],[121.858594,-1.69326172],[121.71875,-1.86279297],[121.572656,-1.90576172],[0.12139472656250008E3,-1.83378906],[0.12134882812500003E3,-1.94599609],[0.12150195312499999E3,-2.04501953],[121.575,-2.15087891],[121.725977,-2.20800781],[121.848242,-2.33154297],[0.12208261718750006E3,-2.74951172],[0.12229169921875003E3,-2.90761719],[0.12230654296875005E3,-3.0515625],[0.12239902343750005E3,-3.20087891],[0.12231728515624998E3,-3.27509766],[0.12225292968749997E3,-3.62041016],[0.12243457031250003E3,-3.73984375],[0.12260996093750012E3,-3.9234375],[0.12268964843750004E3,-4.08447266],[0.12279824218750005E3,-4.05419922],[122.877344,-4.10908203],[0.12289736328125005E3,-4.34912109],[0.12281757812500003E3,-4.38994141],[0.12271972656250003E3,-4.34072266],[0.12272167968749997E3,-4.41074219],[0.12247138671875004E3,-4.42207031],[0.12211425781250001E3,-4.54023438],[0.12205419921874997E3,-4.62011719],[0.12207324218750001E3,-4.79169922],[0.12191699218749997E3,-4.84794922],[0.12158867187500006E3,-4.75957031],[0.12148652343750004E3,-4.58105469],[0.12154121093750008E3,-4.28291016],[0.12161806640624998E3,-4.09267578],[0.12153740234375002E3,-4.01484375],[0.12131269531250008E3,-3.91943359],[120.914258,-3.55576172],[0.12090693359375008E3,-3.40400391],[0.12105429687500012E3,-3.16708984],[0.12107031249999997E3,-3.01015625],[121.052148,-2.75166016],[120.990137,-2.6703125],[0.12076503906250005E3,-2.64160156],[0.12065361328125002E3,-2.66757812],[0.12034140625000005E3,-2.86962891],[0.12026103515625006E3,-2.94931641],[0.12025410156250003E3,-3.05283203],[0.12039238281250006E3,-3.34814453],[0.12043662109375012E3,-3.70732422],[0.12038300781250004E3,-3.85234375],[120.3625,-4.08574219],[0.12038457031250007E3,-4.41513672],[0.12042011718750003E3,-4.61738281],[0.12040498046875003E3,-4.72724609],[0.12031015625000012E3,-4.96318359],[0.12027929687499997E3,-5.14609375],[0.12039091796875002E3,-5.39257813],[0.12043037109375008E3,-5.59101563],[0.12031162109375008E3,-5.54160156],[119.951562,-5.57763672],[0.11971728515625003E3,-5.69335938],[0.11955742187500007E3,-5.61103516],[0.11937617187500008E3,-5.42480469],[0.11936035156249997E3,-5.31416016],[0.11951953124999996E3,-4.87734375],[0.11951552734375004E3,-4.74189453],[119.611719,-4.42353516],[0.11962363281250006E3,-4.034375],[0.11949365234375003E3,-3.76855469],[0.11949453125000004E3,-3.55410156],[119.419824,-3.47539062],[0.11924003906250007E3,-3.47529297],[0.11899462890624997E3,-3.53759766],[0.11886767578124997E3,-3.39804688],[118.8125,-3.15664062],[0.11885810546875004E3,-2.92851563],[0.11878369140624996E3,-2.76474609],[0.11885332031250006E3,-2.65019531],[0.11909218750000005E3,-2.48291016],[0.11913535156250005E3,-2.38232422],[119.172266,-2.14003906],[0.11932187500000012E3,-1.9296875],[0.11934824218750006E3,-1.82529297],[0.11930830078125003E3,-1.65966797],[119.308984,-1.40820312],[0.11935917968750006E3,-1.24345703],[0.11950820312499998E3,-0.906738281],[0.11971132812500004E3,-0.680761719],[0.11984433593750006E3,-0.861914062],[0.11982988281250006E3,-0.686328125],[119.77168,-0.48359375],[119.721875,-0.0884765625],[119.865625,0.0400878906],[0.11980927734375004E3,0.238671875],[0.11991328125000008E3,0.445068359],[0.12003515624999996E3,0.566601562],[120.056445,0.692529297],[0.12032246093750004E3,0.983154297],[120.366504,0.887548828],[0.12051660156249997E3,0.817529297],[0.12060253906249997E3,0.854394531],[0.12075488281250003E3,1.03564453],[0.12080361328124998E3,1.14926758],[0.12091210937499997E3,1.28896484],[0.12108173828125008E3,1.32763672],[0.12120839843750004E3,1.2625],[0.12144003906250006E3,1.2144043],[0.12151328125000006E3,1.10473633],[0.12159179687499997E3,1.06796875],[121.867383,1.08852539],[0.12210820312500002E3,1.03115234],[0.12243662109375006E3,1.01806641],[0.12265742187500004E3,0.940576172],[0.12278984375000002E3,0.862890625],[0.12289248046875004E3,0.85],[0.12296005859375005E3,0.922998047],[123.278125,0.928076172],[0.12384667968750003E3,0.838183594],[0.12393076171875006E3,0.850439453],[0.12427363281250003E3,1.02226562],[0.12441083984375004E3,1.18510742],[0.12453369140624996E3,1.23046875],[0.12460019531250006E3,1.39243164],[0.12478769531250008E3,1.46757813],[0.12498925781249996E3,1.70102539],[0.12516484375000007E3,1.64365234],[125.233789,1.50229492],[125.11748,1.37890625],[0.12502802734375008E3,1.18022461],[0.12488886718750004E3,0.9953125]]],[[[0.10170810546875006E3,2.07841797],[0.10177353515625005E3,1.94345703],[0.10171943359375004E3,1.78916016],[101.602734,1.71572266],[0.10146777343750003E3,1.759375],[0.10140341796875006E3,1.90131836],[0.10145029296875012E3,2.06782227],[0.10154472656250007E3,2.06074219],[0.10164072265625012E3,2.12670898],[0.10170810546875006E3,2.07841797]]],[[[0.12773271484375007E3,0.848144531],[127.881055,0.832128906],[0.12796728515624997E3,1.04257813],[0.12816074218750006E3,1.1578125],[128.157422,1.31660156],[0.12822246093750002E3,1.40063477],[0.12842412109375007E3,1.5175293],[128.688379,1.57255859],[0.12871689453125012E3,1.36728516],[0.12870263671874997E3,1.10639648],[128.514551,0.979248047],[0.12829882812500003E3,0.876806641],[128.260645,0.733789063],[0.12839794921874997E3,0.638818359],[0.12865527343749997E3,0.508251953],[128.691602,0.360351562],[0.12881542968750003E3,0.305371094],[0.12889960937500004E3,0.216259766],[0.12854042968750005E3,0.337890625],[128.446484,0.391552734],[0.12822060546874997E3,0.414257813],[0.12798310546875008E3,0.471875],[0.12792441406250006E3,0.438085937],[0.12788740234375004E3,0.298339844],[0.12791464843750012E3,0.206298828],[0.12788896484375002E3,0.0495117187],[0.12797783203125002E3,-0.248339844],[0.12808945312500012E3,-0.485253906],[0.12825351562500012E3,-0.731640625],[0.12842548828125007E3,-0.892675781],[128.278125,-0.870019531],[0.12823339843750003E3,-0.787695312],[0.12804638671875003E3,-0.706054687],[0.12788896484375002E3,-0.423535156],[0.12769160156250004E3,-0.241894531],[0.12768544921875004E3,0.149023437],[0.12770869140625004E3,0.288085937],[127.555371,0.489648438],[0.12754179687500006E3,0.680664063],[0.12760800781250005E3,0.848242187],[0.12752041015624998E3,0.924023438],[0.12742851562500002E3,1.13999023],[127.420312,1.25195312],[0.12753710937500004E3,1.46748047],[0.12753466796874997E3,1.57207031],[0.12763173828124998E3,1.84370117],[0.12789990234375001E3,2.13735352],[0.12803642578125002E3,2.19902344],[128.03125,2.11987305],[0.12790673828124997E3,1.9456543],[0.12788681640625012E3,1.83295898],[128.010938,1.7012207],[0.12801171874999997E3,1.33173828],[0.12788535156250006E3,1.16279297],[0.12765283203124996E3,1.01386719],[0.12763437500000012E3,0.936132813],[0.12773271484375007E3,0.848144531]]],[[[97.3341797,2.07563477],[97.1083008,2.21689453],[97.2914062,2.20083008],[97.3341797,2.07563477]]],[[[0.12845390625000002E3,2.05175781],[0.12829589843749997E3,2.0347168],[128.259961,2.08251953],[128.217969,2.29746094],[0.12833037109375007E3,2.46933594],[128.47207,2.57050781],[0.12860214843750012E3,2.59760742],[0.12868847656250003E3,2.47368164],[0.12862324218750004E3,2.22441406],[128.547559,2.09707031],[0.12845390625000002E3,2.05175781]]],[[[125.407422,2.65161133],[0.12536005859375003E3,2.74682617],[0.12544648437500004E3,2.76298828],[125.407422,2.65161133]]],[[[96.4636719,2.36000977],[96.340625,2.37207031],[96.2904297,2.42958984],[0.9602197265624997E2,2.59575195],[95.8085937,2.65561523],[95.7171875,2.82597656],[95.80625,2.91601562],[95.8958008,2.8890625],[0.9599785156250007E2,2.78139648],[96.4172852,2.51518555],[96.4636719,2.36000977]]],[[[108.8875,2.90541992],[108.786523,2.88564453],[0.10888574218750003E3,2.99897461],[108.8875,2.90541992]]],[[[0.10576035156250006E3,2.86303711],[0.10570615234375012E3,2.88886719],[0.10569218750000002E3,3.0625],[0.10583671875000006E3,2.97651367],[0.10576035156250006E3,2.86303711]]],[[[0.10628525390625006E3,3.15712891],[0.10628369140624997E3,3.08823242],[0.10620097656250002E3,3.20488281],[0.10628525390625006E3,3.15712891]]],[[[0.11765839843750004E3,3.28051758],[0.11756035156250007E3,3.32822266],[0.11754785156250001E3,3.43198242],[0.11768085937500004E3,3.40751953],[0.11765839843750004E3,3.28051758]]],[[[125.658105,3.43603516],[0.12551152343750007E3,3.46113281],[0.12551757812499996E3,3.54960938],[125.455273,3.68417969],[0.12554345703125001E3,3.67041016],[125.658105,3.43603516]]],[[[0.12685185546875002E3,3.76845703],[0.12685185546875002E3,3.76845703],[0.12685185546875002E3,3.76845703],[0.12685185546875002E3,3.76845703]]],[[[126.719336,3.8746582],[126.6375,4.04194336],[0.12673964843749998E3,3.91772461],[126.719336,3.8746582]]],[[[0.11788476562499997E3,4.18613281],[0.11792285156250001E3,4.05429687],[0.11773681640624997E3,4.00400391],[0.11762509765625012E3,4.12148437],[0.11764902343750012E3,4.16899414],[0.11788476562499997E3,4.18613281]]],[[[0.10831601562500006E3,3.68964844],[0.10817958984375004E3,3.65307617],[0.10810039062500002E3,3.70454102],[0.10824326171875006E3,3.81035156],[0.10808847656250006E3,3.85209961],[0.10800351562500005E3,4.04257812],[0.10820195312500007E3,4.20048828],[0.10839287109375007E3,3.98618164],[0.10839355468750003E3,3.83618164],[0.10831601562500006E3,3.68964844]]],[[[116.553125,4.35986328],[0.11710058593750003E3,4.33706055],[0.11727753906250008E3,4.29931641],[0.11745087890625003E3,4.19287109],[117.566211,4.16230469],[0.11746533203124997E3,4.07607422],[0.11756601562500006E3,3.92993164],[117.728223,3.79672852],[0.11777724609375005E3,3.68925781],[0.11762988281250001E3,3.63632812],[0.11750966796875005E3,3.73037109],[0.11745039062500004E3,3.62851562],[117.171582,3.63896484],[117.166406,3.59199219],[117.384668,3.36538086],[117.321875,3.24355469],[117.352441,3.19375],[0.11761064453125002E3,3.06435547],[0.11763789062500005E3,2.95083008],[117.569141,2.92929688],[117.697656,2.88730469],[117.638867,2.82529297],[117.785938,2.74677734],[0.11788574218750003E3,2.54174805],[118.066602,2.31782227],[0.11804160156250005E3,2.21542969],[0.11788105468750004E3,2.06064453],[0.11778925781250008E3,2.02685547],[0.11808037109375007E3,1.70185547],[0.11847167968750003E3,1.41645508],[0.11863896484375006E3,1.31899414],[0.11885253906249996E3,1.09584961],[118.963477,1.04428711],[0.11898496093750006E3,0.982128906],[118.892383,0.886865234],[0.11875742187500005E3,0.839208984],[0.11853476562500005E3,0.813525391],[118.196094,0.874365234],[0.11809550781250002E3,0.929150391],[0.11801630859375004E3,1.03916016],[0.11791162109374997E3,1.09868164],[0.11797734375000002E3,0.963818359],[0.11792304687500003E3,0.831347656],[0.11774511718749996E3,0.729638672],[0.11755332031250006E3,0.341015625],[0.11752216796875004E3,0.235888672],[0.11746376953125004E3,-0.200488281],[0.11746289062500003E3,-0.323730469],[0.11754892578125006E3,-0.554394531],[117.5625,-0.770898438],[0.11724072265624997E3,-0.925683594],[0.11700322265625007E3,-1.18769531],[116.913965,-1.22363281],[0.11679707031250008E3,-1.18378906],[0.11673984375000006E3,-1.04423828],[0.11672871093750004E3,-1.15078125],[0.11677099609375003E3,-1.26660156],[0.11671523437500004E3,-1.37578125],[0.11655449218750006E3,-1.47392578],[0.11647792968749998E3,-1.6328125],[0.11633212890625005E3,-1.7125],[0.11627548828125005E3,-1.78486328],[0.11642431640625003E3,-1.78486328],[0.11645195312500002E3,-1.92314453],[0.11642353515625003E3,-2.05253906],[0.11631396484374997E3,-2.13984375],[116.528125,-2.20791016],[0.11656542968749996E3,-2.29970703],[0.11652929687499997E3,-2.51054687],[0.11635253906250004E3,-2.52158203],[116.37168,-2.70683594],[116.330664,-2.90214844],[0.11617226562499998E3,-3.02529297],[116.257227,-3.12636719],[0.11616708984375005E3,-3.18300781],[116.05752,-3.34824219],[115.956152,-3.59501953],[115.258203,-3.90683594],[114.693555,-4.16972656],[0.11462529296875002E3,-4.11171875],[0.11460595703125003E3,-3.70332031],[0.11453613281249997E3,-3.49443359],[114.525586,-3.37666016],[0.11444599609375004E3,-3.48183594],[0.11434433593750012E3,-3.44443359],[114.30166,-3.36474609],[0.11434433593750012E3,-3.23515625],[0.11423632812500003E3,-3.36113281],[0.11408222656250008E3,-3.27890625],[0.11395878906250006E3,-3.39433594],[113.795801,-3.45625],[0.11363359375000007E3,-3.41992187],[0.11361005859375008E3,-3.19570313],[0.11352597656250006E3,-3.18408203],[0.11334316406250005E3,-3.24648437],[113.033984,-2.93349609],[0.11297148437500002E3,-3.18710938],[0.11260029296875004E3,-3.40048828],[0.11228496093750002E3,-3.32099609],[0.11212666015625004E3,-3.38144531],[0.11195488281250002E3,-3.5296875],[0.11182207031250007E3,-3.53251953],[0.11183593750000003E3,-3.30771484],[0.11182304687500007E3,-3.05722656],[0.11169472656250005E3,-2.88945312],[0.11162548828124997E3,-2.97548828],[111.367578,-2.93369141],[0.11125917968750005E3,-2.95644531],[0.11104433593750005E3,-3.05576172],[0.11093007812500005E3,-3.07109375],[0.11082968750000012E3,-2.99511719],[0.11089931640624998E3,-2.90859375],[110.703125,-3.02089844],[0.11057402343750007E3,-2.89140625],[0.11037753906250012E3,-2.93378906],[110.302539,-2.98535156],[0.11023261718750008E3,-2.92509766],[0.11022431640625004E3,-2.68867188],[0.11012441406250005E3,-2.23388672],[110.075,-1.94638672],[109.959863,-1.86279297],[109.96377,-1.74287109],[0.11002343749999997E3,-1.64257812],[0.11001923828125004E3,-1.39882812],[0.10993808593750012E3,-1.18115234],[0.10978740234375007E3,-1.01132812],[109.681738,-0.944238281],[0.10945380859375004E3,-0.86875],[0.10933349609375003E3,-0.875390625],[0.10925878906250003E3,-0.807421875],[0.10927099609375001E3,-0.73203125],[0.10937275390625004E3,-0.638183594],[109.257031,-0.577441406],[0.10913027343750004E3,-0.445410156],[109.121777,-0.265039062],[0.10919462890625007E3,-0.00942382812],[109.25752,0.0311523438],[0.10907480468750012E3,0.252832031],[0.10894453125000004E3,0.355664062],[0.10890585937500006E3,0.793945313],[0.10895859375000006E3,1.13461914],[109.131543,1.25385742],[0.10901025390624997E3,1.23964844],[0.10907587890625003E3,1.49589844],[109.273145,1.70546875],[0.10937851562500006E3,1.92270508],[0.10962890625000003E3,2.02753906],[109.538965,1.89619141],[0.10963583984375006E3,1.77666016],[0.10965400390625004E3,1.61489258],[109.818066,1.43896484],[0.11011474609375003E3,1.19013672],[110.315234,0.995996094],[0.11050576171875004E3,0.861962891],[0.11061474609375003E3,0.878125],[0.11093808593750006E3,1.01733398],[0.11110136718750002E3,1.05053711],[0.11128671875000006E3,1.04321289],[0.11148320312500002E3,0.995751953],[0.11160742187500003E3,1.02260742],[0.11176972656250004E3,0.999462891],[0.11192314453125002E3,1.11328125],[112.078516,1.14335937],[112.185742,1.4390625],[0.11247617187500005E3,1.55908203],[0.11294296875000006E3,1.56699219],[0.11298828124999997E3,1.45712891],[0.11335898437500005E3,1.32714844],[0.11351318359374997E3,1.30839844],[113.622266,1.2359375],[0.11376035156250006E3,1.31137695],[0.11390234375000003E3,1.43427734],[0.11412597656250003E3,1.45234375],[114.387109,1.50004883],[0.11454589843750003E3,1.46713867],[0.11466093750000002E3,1.6862793],[0.11470351562499998E3,1.85078125],[114.8,1.89394531],[0.11483056640625001E3,1.9800293],[0.11475869140625007E3,2.16240234],[0.11478642578125002E3,2.25048828],[114.969141,2.35083008],[115.179102,2.52319336],[0.11508076171875004E3,2.63422852],[115.086328,2.84111328],[0.11524697265625005E3,3.02592773],[0.11531015625000013E3,2.99394531],[0.11545439453125002E3,3.03432617],[0.11549316406250001E3,3.128125],[0.11551992187500004E3,3.36166992],[0.11556611328125004E3,3.44575195],[0.11554453125000006E3,3.63369141],[0.11556845703125006E3,3.93876953],[0.11567880859375006E3,4.19301758],[0.11589619140625003E3,4.34868164],[0.11602158203125012E3,4.29067383],[0.11613447265625003E3,4.35517578],[0.11632031249999996E3,4.35371094],[0.11641455078124996E3,4.30820313],[116.553125,4.35986328]]],[[[0.12681660156250004E3,4.03349609],[0.12670449218750004E3,4.07099609],[0.12681357421875006E3,4.25849609],[0.12672207031250005E3,4.34418945],[0.12675732421874997E3,4.54790039],[0.12686513671874998E3,4.47983398],[126.921094,4.29101562],[0.12684765624999999E3,4.17998047],[0.12681660156250004E3,4.03349609]]],[[[96.4925781,5.2293457],[0.9661523437499997E2,5.22021484],[0.9684267578125005E2,5.27446289],[0.9696777343750003E2,5.26914063],[0.9719042968750003E2,5.20732422],[0.9745117187500003E2,5.23603516],[97.547168,5.20585938],[97.7067383,5.04013672],[97.9083984,4.87998047],[98.0207031,4.63520508],[98.2484375,4.41455078],[98.2733398,4.32231445],[0.9824121093750003E2,4.19453125],[98.3073242,4.09287109],[0.9865869140624997E2,3.928125],[0.9877792968750005E2,3.75942383],[0.9915117187500007E2,3.58125],[0.9952148437500003E2,3.31118164],[0.9973232421875005E2,3.18305664],[0.9990664062500005E2,2.98818359],[0.10012724609375002E3,2.64760742],[0.10030722656250012E3,2.46660156],[0.10045703124999997E3,2.25742187],[0.10060361328125012E3,2.13696289],[0.10068525390625004E3,2.12006836],[0.10088789062500004E3,1.94824219],[0.10081689453125003E3,2.14018555],[0.10082822265625012E3,2.24257813],[0.10093593750000005E3,2.29472656],[0.10104619140625002E3,2.2574707],[0.10130078125000003E3,2.01181641],[0.10140507812500007E3,1.75742188],[0.10147666015625006E3,1.69306641],[0.10178476562500012E3,1.62138672],[102.019922,1.44213867],[0.10215722656249997E3,1.25888672],[102.239063,0.990332031],[0.10246923828124996E3,0.779296875],[0.10284941406250002E3,0.715478516],[0.10294931640625006E3,0.664208984],[0.10306650390625012E3,0.491992187],[0.10300751953125008E3,0.415332031],[0.10278632812500008E3,0.297753906],[102.55,0.216455078],[0.10277958984375002E3,0.244482422],[0.10300283203125005E3,0.331982422],[0.10327656250000004E3,0.49453125],[0.10347890625000005E3,0.480175781],[0.10367265625000006E3,0.288916016],[0.10378671875000012E3,0.0469726562],[0.10358945312500005E3,-0.06875],[0.10342851562500007E3,-0.191796875],[0.10340517578125005E3,-0.362207031],[103.50918,-0.465527344],[0.10343115234374997E3,-0.53359375],[0.10353271484374997E3,-0.7546875],[103.721094,-0.88671875],[103.940039,-0.979101562],[0.10419853515625002E3,-1.05429688],[0.10436054687500004E3,-1.03837891],[104.446875,-1.36240234],[0.10451591796875002E3,-1.81943359],[104.56875,-1.92177734],[0.10484521484375003E3,-2.09296875],[0.10482607421875004E3,-2.23417969],[0.10466845703124996E3,-2.38554687],[104.630566,-2.54335937],[0.10473574218750005E3,-2.57089844],[0.10487841796874996E3,-2.41884766],[0.10502587890624997E3,-2.35751953],[0.10528652343750005E3,-2.35625],[0.10539697265624997E3,-2.38017578],[0.10558203124999997E3,-2.49199219],[105.899121,-2.88779297],[106.044336,-3.10625],[106.058398,-3.2171875],[0.10590146484375012E3,-3.41005859],[105.84375,-3.61367187],[0.10585156249999996E3,-3.73056641],[0.10593046875000006E3,-3.83300781],[0.10583144531250005E3,-4.16289062],[0.10588652343750007E3,-4.55390625],[0.10588720703124997E3,-5.00957031],[0.10581611328125003E3,-5.6765625],[0.10574833984375007E3,-5.81826172],[0.10561855468749998E3,-5.79960937],[0.10552265625000004E3,-5.67275391],[0.10534941406250007E3,-5.54951172],[0.10508134765625002E3,-5.74550781],[0.10493027343750006E3,-5.68115234],[0.10463955078125005E3,-5.52041016],[0.10461816406249997E3,-5.64150391],[0.10468398437500005E3,-5.89267578],[0.10460156249999996E3,-5.90458984],[0.10436953125000005E3,-5.69072266],[0.10424296875000002E3,-5.53886719],[0.10406679687499998E3,-5.3859375],[0.10383144531249998E3,-5.07958984],[0.10340566406250005E3,-4.81640625],[0.10313867187499996E3,-4.59619141],[0.10291894531249997E3,-4.47070312],[0.10253769531250006E3,-4.15214844],[0.10237197265625005E3,-3.96923828],[0.10212753906250006E3,-3.59921875],[0.10181787109375003E3,-3.37802734],[0.10157861328124997E3,-3.16699219],[0.10130566406249997E3,-2.72871094],[0.10111855468750005E3,-2.58779297],[0.10094443359375006E3,-2.34521484],[100.848047,-2.14394531],[0.10085527343750002E3,-1.93417969],[0.10048652343750004E3,-1.29912109],[100.393945,-1.10126953],[0.10030820312500006E3,-0.826660156],[0.10008789062500003E3,-0.552929688],[99.8600586,-0.313769531],[99.7212891,-0.0329589844],[99.5976562,0.102441406],[99.3345703,0.20859375],[0.9915917968749997E2,0.351757812],[0.9905957031249997E2,0.686376953],[0.9893554687500001E2,1.03193359],[98.7963867,1.49462891],[0.9870253906250005E2,1.70195312],[98.5642578,1.90214844],[98.0050781,2.23818359],[97.7950195,2.28286133],[97.7007813,2.35854492],[97.640625,2.67641602],[0.9759082031249997E2,2.84658203],[97.3913086,2.97529297],[96.9689453,3.57514648],[96.8009766,3.70854492],[0.9652539062499997E2,3.76660156],[0.9644472656250005E2,3.81630859],[96.2300781,4.07275391],[95.9879883,4.26328125],[0.9557861328125003E2,4.66196289],[95.4947266,4.76137695],[0.9520664062500005E2,5.2840332],[0.9524707031249997E2,5.41079102],[95.227832,5.56479492],[95.3960938,5.62880859],[0.9562890625000003E2,5.60908203],[0.9584130859374997E2,5.51450195],[0.9602734375000001E2,5.35117188],[0.9613330078125003E2,5.29428711],[96.4925781,5.2293457]]],[[[95.3621094,5.81240234],[0.9528320312500001E2,5.79853516],[95.2176758,5.88950195],[0.9535917968750007E2,5.87675781],[95.3621094,5.81240234]]]]}}],"_labels":{"ID":"Indonesia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/IE.json b/src/api-umbrella/admin-ui/public/maps/IE.json new file mode 100644 index 000000000..1e33be169 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/IE.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"IE"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-9.94819336,53.9131348],[-10.0625,53.9597168],[-0.10265722656249947E2,0.53977685546874994E2],[-0.10181054687499937E2,54.0168457],[-0.9956152343749949E1,0.53987207031249994E2],[-9.94819336,53.9131348]]],[[[-7.40141602,55.0033203],[-7.45126953,54.8770996],[-7.55039062,0.54767968749999966E2],[-7.7375,54.7104492],[-7.87294922,54.7178711],[-7.88613281,54.6660645],[-7.74628906,54.6158203],[-7.79379883,54.5712402],[-8.04433594,54.5124512],[-8.14482422,54.4535156],[-8.11826172,54.4142578],[-7.88447266,0.54283789062500006E2],[-7.85493164,54.2152832],[-7.67875977,0.54186669921875016E2],[-7.60654297,54.1438477],[-7.35517578,54.1212402],[-7.15546875,54.239502],[-7.20258789,0.54301806640625045E2],[-7.04970703,54.408252],[-6.93613281,54.3743164],[-6.76660156,54.1956055],[-6.646875,0.54163427734375006E2],[-6.64980469,54.0586426],[-6.40258789,54.0606445],[-6.21801758,54.0887207],[-6.15693359,54.0172363],[-6.34516602,0.53987207031249994E2],[-6.19487305,53.6408691],[-6.1418457,53.5775391],[-6.1347168,53.3012207],[-6.04501953,0.53091162109375034E2],[-6.02739258,0.52927099609375006E2],[-6.13066406,0.52807275390625016E2],[-6.19921875,52.6634766],[-6.21723633,52.5431152],[-6.34541016,0.52402001953124966E2],[-6.46318359,0.52345361328124994E2],[-6.325,0.52246679687500034E2],[-6.56108398,52.1888184],[-6.78222656,0.52210498046875045E2],[-6.89023438,52.1592285],[-6.96577148,52.2495117],[-7.00327148,52.165918],[-7.52729492,52.098877],[-7.66455078,51.9797363],[-7.87216797,51.9353027],[-7.95249023,51.8657715],[-8.14501953,51.8135254],[-8.29023437,51.8906738],[-8.40917969,0.51888769531250034E2],[-8.34736328,51.8477051],[-8.34912109,51.7393066],[-8.58828125,51.6513672],[-8.73447266,51.6361816],[-8.81342773,0.51584912109374955E2],[-0.9296484374999949E1,51.4982422],[-9.46289062,51.5290527],[-0.9737304687499943E1,51.4737305],[-0.9835351562499937E1,0.51483349609374955E2],[-9.71035156,0.51603710937499955E2],[-0.9542382812499937E1,51.6644531],[-0.9579833984375027E1,51.6892578],[-0.9899023437499947E1,0.51647070312500006E2],[-0.10120751953124994E2,51.6006836],[-10.0694336,51.6555664],[-0.9598828124999983E1,51.8744141],[-0.10084228515625028E2,51.7709961],[-0.10341064453124943E2,51.7989258],[-0.10378710937499958E2,51.86875],[-0.10145849609374949E2,52.0200195],[-9.94604492,52.079834],[-9.95581055,52.1366699],[-10.3902344,0.52134912109374994E2],[-10.3566895,0.52206933593750016E2],[-0.10210937499999972E2,52.2716797],[-10.0617676,52.2759277],[-9.93730469,52.2376465],[-9.77211914,0.52250097656250034E2],[-0.9841064453124943E1,52.2914551],[-9.90605469,0.52403710937499966E2],[-0.9586328125000023E1,0.52559179687500034E2],[-9.33125,52.5787598],[-9.05615234,0.52621142578125045E2],[-8.78344727,0.52679638671874955E2],[-8.9902832,0.52755419921875045E2],[-0.9175390624999949E1,0.52634912109374994E2],[-0.9394238281249955E1,0.52617089843749994E2],[-9.56103516,0.52653955078124966E2],[-0.9764355468749955E1,0.52579980468749994E2],[-0.9916601562499977E1,52.5697266],[-0.9739599609374977E1,52.6481934],[-0.9514990234374949E1,52.7811523],[-9.39365234,52.8962402],[-0.9461962890624989E1,52.9472656],[-9.29921875,53.0975586],[-8.99716797,53.1620605],[-8.93012695,0.53207080078125045E2],[-9.14033203,53.2504883],[-0.9470751953124989E1,53.2348633],[-0.9581738281249955E1,53.2719727],[-0.9601757812499955E1,0.53323046875000045E2],[-0.9825390624999955E1,53.3203613],[-0.9875781250000017E1,0.53342724609374955E2],[-9.79541016,53.3949707],[-0.10091259765624926E2,53.4128418],[-0.10054394531249983E2,53.4783203],[-0.10116992187499932E2,53.5485352],[-9.7206543,53.6044922],[-0.9909716796874989E1,0.53657617187499994E2],[-0.9901611328124943E1,53.7271973],[-9.74506836,53.7814941],[-0.9578222656249947E1,53.8054199],[-9.57885742,0.53879833984374955E2],[-0.9747509765624983E1,53.8910156],[-9.9140625,0.53863720703124955E2],[-9.85634766,54.0042969],[-9.85644531,0.54095361328124994E2],[-9.93447266,54.0752441],[-9.97709961,54.1871094],[-0.10092675781249966E2,54.1557617],[-0.10056396484374943E2,54.2578125],[-0.9824560546874949E1,0.54268896484375006E2],[-9.71713867,54.3004395],[-9.31552734,54.2986328],[-9.14589844,0.54209619140624994E2],[-9.00244141,0.54287988281249966E2],[-8.54555664,54.2412109],[-8.62314453,54.346875],[-8.41523437,0.54461083984374966E2],[-8.23037109,54.5072754],[-8.13344727,0.54640820312500004E2],[-8.45654297,0.54609277343749966E2],[-8.76391602,54.6812012],[-8.71518555,0.54732031250000034E2],[-8.53828125,54.782959],[-8.37729492,54.8894531],[-8.41171875,0.54965087890624964E2],[-8.27460937,0.55146289062500045E2],[-8.00610352,55.1953125],[-7.80317383,55.2000488],[-7.66708984,55.2564941],[-7.55664062,55.1222168],[-7.63427734,55.0549805],[-7.58984375,55.0250488],[-7.65874023,54.9709473],[-7.47841797,0.55046972656250055E2],[-7.53144531,55.1938477],[-7.45830078,55.2817871],[-7.30175781,55.2987793],[-7.3659668,55.3602051],[-7.24667969,55.3530273],[-6.96166992,55.2378906],[-7.17285156,55.1370117],[-7.40141602,55.0033203]]]]}}],"_labels":{"IE":"Ireland"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/IL.json b/src/api-umbrella/admin-ui/public/maps/IL.json new file mode 100644 index 000000000..db924169b --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/IL.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"IL"},"geometry":{"type":"Polygon","coordinates":[[[35.7873047,0.32734912109374996E2],[35.6112305,32.6820801],[0.35572851562500006E2,32.6408691],[0.35551464843750004E2,32.3955078],[35.484375,0.32401660156249996E2],[35.3621094,0.32507470703124994E2],[35.1932617,32.5344238],[0.35065039062500006E2,32.4604492],[34.955957,32.1609375],[34.9897461,31.9132813],[34.9538086,0.31841259765624994E2],[35.0532227,0.31837939453124996E2],[35.1980469,0.31776318359374997E2],[0.35203710937500006E2,31.75],[35.034668,31.6732422],[34.9509766,31.6022949],[34.8727539,31.396875],[34.9078125,31.3513184],[35.1011719,31.3662109],[35.4505859,31.4792969],[35.4006836,0.31230517578124996E2],[35.4392578,31.1324219],[35.1740234,0.30523925781249996E2],[35.140625,30.4208984],[35.1416016,0.30141699218749995E2],[35.0681641,29.9778809],[34.9734375,0.29555029296874995E2],[34.9042969,29.4773437],[34.7350586,29.9820312],[34.6585938,0.30191455078124996E2],[34.5296875,0.30446044921874996E2],[34.4899414,30.5962891],[34.2453125,0.31208300781249996E2],[34.3483398,0.31292919921874997E2],[0.34350195312500006E2,0.31362744140624997E2],[34.5255859,0.31525634765624996E2],[34.4773438,31.5848633],[34.678418,31.8957031],[0.34803808593750006E2,0.32196337890624996E2],[34.921875,32.6140625],[35.0058594,32.8266113],[35.0770508,32.9671875],[35.1085937,33.0836914],[35.2233398,33.0919922],[0.35411230468750006E2,33.0756836],[35.4931641,33.1194824],[35.5325195,33.2504883],[0.35734472656250006E2,33.3326172],[35.8691406,33.4317383],[0.35837011718750006E2,0.33278222656249994E2],[35.9066406,33.1356934],[35.8680664,33.0885742],[35.9134766,32.9496094],[35.7873047,0.32734912109374996E2]]]}}],"_labels":{"IL":"Israel"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/IM.json b/src/api-umbrella/admin-ui/public/maps/IM.json new file mode 100644 index 000000000..533d5319b --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/IM.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"IM"},"geometry":{"type":"Polygon","coordinates":[[[-4.41206055,0.54185351562499996E2],[-4.61425781,54.0586914],[-4.78535156,54.0730469],[-4.69873047,54.2249023],[-4.61484375,54.2669434],[-4.50864258,54.376709],[-4.37719727,54.3925781],[-4.33798828,0.54269091796874996E2],[-4.41206055,0.54185351562499996E2]]]}}],"_labels":{"IM":"Isle of Man"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/IN.json b/src/api-umbrella/admin-ui/public/maps/IN.json new file mode 100644 index 000000000..50163fcd7 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/IN.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"IN"},"geometry":{"type":"MultiPolygon","coordinates":[[[[93.8900391,6.83105469],[0.9382880859375003E2,6.74868164],[93.7092773,7.00068359],[0.9365800781250007E2,7.01606445],[93.6841797,7.18359375],[93.8224609,7.23662109],[93.8589844,7.20683594],[0.9392958984375005E2,6.97348633],[93.8900391,6.83105469]]],[[[93.7335938,7.35649414],[0.9363847656250007E2,7.26186523],[93.5972656,7.31875],[93.6924805,7.4105957],[93.7335938,7.35649414]]],[[[93.4425781,7.87783203],[0.9336503906250007E2,7.8765625],[93.309375,7.96401367],[0.9337548828124997E2,8.01791992],[93.4425781,7.87783203]]],[[[0.9353691406250007E2,8.05664063],[93.4782227,8.02446289],[0.9345644531250005E2,8.171875],[0.9349404296875005E2,8.2246582],[0.9353691406250007E2,8.05664063]]],[[[73.0673828,8.2690918],[73.0673828,8.2690918],[73.0673828,8.2690918],[73.0673828,8.2690918]]],[[[93.1407227,8.24951172],[0.9306425781250007E2,8.27495117],[0.9309697265625007E2,8.34936523],[93.1407227,8.24951172]]],[[[92.7875,9.13666992],[0.9271328125000005E2,0.9204882812499989E1],[92.7857422,9.24052734],[92.7875,9.13666992]]],[[[92.502832,10.5548828],[92.3695312,0.10547412109375031E2],[0.9235283203125007E2,0.10751123046874966E2],[92.5103516,0.10897460937500028E2],[92.5743164,0.10704248046875009E2],[92.502832,10.5548828]]],[[[72.7803711,11.2024902],[72.7803711,11.2024902],[72.7803711,11.2024902],[72.7803711,11.2024902]]],[[[92.6931641,0.11381152343749974E2],[0.9259570312499997E2,0.11386425781249983E2],[92.6402344,11.5091309],[92.6931641,0.11381152343749974E2]]],[[[93.0173828,0.12036816406249969E2],[93.0621094,0.11899414062500043E2],[0.9295537109375007E2,0.12002441406249984E2],[93.0173828,0.12036816406249969E2]]],[[[92.7175781,0.12864892578125009E2],[92.7175781,0.12864892578125009E2],[92.7175781,0.12864892578125009E2],[92.7175781,0.12864892578125009E2]]],[[[92.7227539,11.536084],[92.6683594,0.11538720703125007E2],[92.5755859,0.11718212890624983E2],[92.5338867,0.11873388671874977E2],[92.6075195,0.11949511718750031E2],[92.640625,0.12112207031249966E2],[92.6947266,0.12214697265624977E2],[92.7882812,0.12225781250000011E2],[0.9271894531250003E2,12.3573242],[92.7207031,12.5412598],[92.7591797,0.12669091796874994E2],[92.7400391,0.12779638671875048E2],[0.9280703125000005E2,0.12878906250000014E2],[92.8089844,0.13039599609374989E2],[92.8601563,0.13230566406249991E2],[92.8573242,0.13358105468750038E2],[92.9246094,0.13485839843750028E2],[93.0623047,0.13545458984375017E2],[0.9307666015625003E2,0.13400683593750003E2],[93.0160156,0.13336181640625014E2],[93.0738281,0.13252099609375023E2],[93.0046875,13.0893555],[0.9288623046875003E2,0.12942285156249966E2],[92.9650391,0.12850488281250009E2],[0.9299023437499997E2,12.5385254],[0.9286367187500005E2,0.12436035156250028E2],[92.8794922,0.12227929687500009E2],[92.7476563,0.11992773437499963E2],[92.7967773,0.11917529296875001E2],[0.9276464843749997E2,11.6391602],[92.7227539,11.536084]]],[[[78.7197266,0.31887646484374983E2],[78.693457,0.31740380859374994E2],[78.8029297,0.31618066406250108E2],[78.7267578,0.31471826171874994E2],[78.7435547,31.3237793],[78.7916016,0.31293652343750093E2],[78.9739258,31.3286133],[79.0111328,0.31414111328124957E2],[79.1071289,0.31402636718750102E2],[79.3387695,0.31105712890624996E2],[79.5654297,0.30949072265625063E2],[79.7946289,0.30968261718750085E2],[80.0814453,30.7819336],[80.1943359,0.30759228515625125E2],[80.1912109,0.30568408203124957E2],[80.2609375,0.30561328124999964E2],[80.6821289,0.30414843749999957E2],[80.9854492,0.30237109374999985E2],[81.0102539,0.30164501953125097E2],[80.9076172,0.30171923828125017E2],[80.5490234,0.29899804687499994E2],[80.4018555,0.29730273437500102E2],[80.2548828,0.29423339843750114E2],[80.2330078,0.29194628906250045E2],[80.1304688,0.29100390625000042E2],[80.0516602,0.28870312500000068E2],[80.0707031,0.28830175781250063E2],[80.4185547,28.6120117],[80.5178711,28.6651855],[81.1689453,28.3350098],[81.3108398,0.28176367187500087E2],[81.4860352,0.28062207031250097E2],[81.8526367,0.27867089843750133E2],[81.9876953,0.27913769531250036E2],[82.1119141,0.27864941406250036E2],[82.4513672,0.27671826171874955E2],[82.6773438,27.6734375],[82.7333984,0.27518994140625097E2],[83.0640625,27.4445313],[83.2897461,0.27370996093750133E2],[83.447168,0.27465332031249996E2],[83.5516602,0.27456347656249932E2],[83.8288086,0.27377832031250108E2],[83.897168,0.27435107421875045E2],[84.0910156,0.27491357421875136E2],[84.2297852,0.27427832031250006E2],[84.6101563,0.27298681640624977E2],[84.6853516,0.27041015625000057E2],[85.0201172,26.8785156],[85.1515625,0.26846630859375068E2],[85.1917969,0.26766552734375097E2],[85.2929688,0.26741015625000042E2],[85.568457,0.26839843750000114E2],[85.6999023,0.26781640624999966E2],[85.7373047,0.26639746093750034E2],[85.8556641,26.6001953],[86.0073242,26.6493652],[86.3661133,26.5744141],[86.7013672,0.26435058593750057E2],[86.7625,0.26441943359375045E2],[87.0164063,0.26555419921875085E2],[87.0895508,26.4332031],[87.2874023,0.26360302734375125E2],[87.4135742,0.26422949218750087E2],[87.6333984,26.3991211],[87.8492188,26.4369141],[87.9951172,0.26382373046874985E2],[88.0548828,26.4300293],[88.1615234,0.26724804687500125E2],[88.1110352,0.26928466796875057E2],[87.984375,27.1339355],[88.0241211,27.4088867],[88.1469727,0.27749218750000097E2],[88.1089844,0.27933007812500048E2],[88.4259766,0.28011669921875093E2],[88.6210938,0.28091845703125102E2],[88.8037109,0.28006933593750034E2],[88.8488281,0.27868652343750085E2],[88.7490234,0.27521875000000136E2],[88.7648438,0.27429882812500068E2],[88.8914063,0.27316064453125136E2],[88.7387695,0.27175585937499932E2],[88.8351562,27.0655762],[88.8576172,0.26961474609375017E2],[89.1482422,0.26816162109375085E2],[89.3321289,0.26848632812500114E2],[89.6091797,26.762207],[89.6099609,0.26719433593750097E2],[89.7638672,26.7015625],[0.9012294921875011E2,26.7545898],[0.9020605468749997E2,0.26847509765625063E2],[90.3458984,0.26890332031250097E2],[90.5598633,26.796582],[90.7396484,0.26771679687500068E2],[91.1338867,0.26803417968749983E2],[91.2865234,26.7899414],[0.9142675781249997E2,0.26867089843749966E2],[0.9151757812500009E2,0.26807324218750068E2],[0.9167158203124993E2,26.802002],[0.9184208984375013E2,0.26852978515625125E2],[0.9199833984375013E2,26.8549805],[92.0734375,0.26914843750000102E2],[91.9922852,0.27099902343749985E2],[92.0833984,27.290625],[0.9199082031249995E2,0.27450195312500114E2],[0.9174306640625011E2,0.27442529296875133E2],[0.9159472656250009E2,27.557666],[91.5792969,27.6114258],[91.6319336,27.7599609],[91.9776367,0.27730371093749994E2],[0.9210126953125015E2,27.8076172],[0.9225048828125003E2,0.27841503906250065E2],[0.9234101562500015E2,0.27820751953125097E2],[0.9248066406250021E2,0.27845947265625085E2],[0.9266435546875013E2,0.27948925781250097E2],[0.9264345703125011E2,28.0615234],[92.7018555,0.28147119140624994E2],[0.9288183593750003E2,28.228125],[93.1192383,0.28402294921875097E2],[0.9320654296875009E2,28.5908203],[93.3605469,0.28654052734375053E2],[0.9366494140625005E2,28.6902344],[93.9022461,0.28803222656250057E2],[0.9429326171875013E2,0.29144628906249977E2],[0.9446806640625007E2,0.29216210937499994E2],[0.9462304687500003E2,29.3124023],[94.7333984,0.29251611328125104E2],[94.7694336,0.29175878906249952E2],[94.9988281,29.1491699],[95.2791016,0.29049560546874968E2],[95.4202148,29.0542969],[0.9551699218750005E2,0.29151171875000074E2],[95.5158203,0.29206347656249957E2],[0.9571035156250011E2,0.29313818359375006E2],[0.9603535156250015E2,29.447168],[96.1285156,29.3813965],[96.2349609,0.29245800781249983E2],[96.337207,0.29260986328125057E2],[96.3397461,0.29209814453124945E2],[96.1223633,0.29082080078125042E2],[0.9616220703125005E2,28.9097168],[96.346875,0.29027441406250087E2],[96.4357422,0.29050683593750023E2],[0.9658085937500007E2,28.7636719],[96.3956055,0.28606542968749977E2],[0.9628144531249993E2,0.28412060546875125E2],[96.3664063,0.28367285156250063E2],[96.6026367,0.28459912109375125E2],[0.9677578125000011E2,0.28367041015625034E2],[96.9808594,0.28337695312500074E2],[97.0753906,0.28368945312500045E2],[0.9732246093750015E2,28.2179688],[0.9730273437499997E2,28.0859863],[97.3351563,27.9377441],[0.9722607421875009E2,27.8900391],[96.899707,27.6438477],[96.9019531,27.4395996],[0.9710371093749993E2,27.1633301],[97.0380859,0.27102050781250053E2],[96.8802734,0.27177832031250034E2],[0.9679785156249997E2,27.2961914],[0.9666572265625015E2,27.3392578],[0.9627421875000013E2,0.27278369140625102E2],[0.9606142578125011E2,0.27217089843750045E2],[95.9052734,27.0466309],[0.9573837890624995E2,0.26950439453125085E2],[0.9546386718750009E2,0.26756054687500097E2],[95.1287109,0.26597265625000063E2],[0.9505976562500015E2,0.26473974609375006E2],[95.0689453,0.26191113281250097E2],[95.1324219,0.26041259765624943E2],[95.0152344,25.9129395],[94.9919922,25.770459],[0.9478583984375015E2,0.25519335937500017E2],[94.6228516,25.4100098],[94.5543945,0.25243457031249957E2],[0.9467529296875003E2,25.1385742],[94.7076172,25.0487305],[94.584082,0.24767236328125104E2],[0.9439941406250009E2,24.5140625],[94.2930664,24.321875],[0.9412763671875015E2,23.8764648],[0.9385546875000013E2,0.23943896484375045E2],[0.9368339843750007E2,24.006543],[93.49375,0.23972851562500097E2],[93.3555664,0.24074121093750108E2],[0.9330732421874993E2,0.24021875000000133E2],[93.4149414,23.6820801],[93.3660156,0.23132519531249955E2],[93.3080078,0.23030371093749917E2],[93.1641602,0.23032031250000102E2],[0.9316250000000011E2,22.907959],[93.0787109,0.22718212890625097E2],[93.1620117,0.22360205078125006E2],[93.1511719,22.2306152],[93.0706055,0.22209423828125008E2],[0.9296455078125015E2,0.22003759765625034E2],[92.8542969,0.22010156250000108E2],[92.7713867,0.22104785156250017E2],[0.9268896484375007E2,0.22130957031250006E2],[0.9257490234374993E2,21.9780762],[92.5318359,0.22410302734375076E2],[0.9249140625000003E2,0.22685400390625002E2],[92.3616211,0.22929003906250074E2],[0.9233417968750021E2,23.3238281],[0.9224609375000001E2,23.6835937],[0.9215234375000009E2,0.23721875000000125E2],[0.9204404296875005E2,0.23677783203125017E2],[0.9192958984375011E2,0.23685986328125097E2],[91.9378906,0.23504687500000102E2],[0.9179003906250009E2,23.3610352],[0.9175419921875013E2,23.2873047],[91.7738281,23.1061035],[91.6949219,0.23004833984375068E2],[91.6195312,0.22979687500000097E2],[0.9151123046875003E2,0.23033691406250085E2],[91.4362305,23.1999023],[0.9137060546875009E2,23.197998],[0.9136865234375013E2,0.23074560546875063E2],[0.9131523437500007E2,0.23104394531250076E2],[91.2538086,0.23373632812500063E2],[91.1655273,23.5810547],[0.9116044921875019E2,0.23660644531250085E2],[91.2320313,0.23920458984375074E2],[91.3670898,24.0935059],[0.9152636718750009E2,0.24090771484374955E2],[0.9166875000000013E2,0.24190087890625108E2],[91.8769531,0.24195312500000114E2],[0.9195166015624997E2,24.3567383],[92.0641602,0.24374365234375006E2],[0.9223056640624995E2,0.24786230468750063E2],[92.2512695,0.24895068359375045E2],[92.4431641,24.8494141],[92.4683594,0.24944140625000074E2],[92.2046875,25.1109375],[92.049707,25.1694824],[91.4796875,0.25142138671875102E2],[0.9129316406249993E2,0.25177978515625114E2],[0.9043935546875015E2,0.25157714843750085E2],[0.9025039062500005E2,0.25184960937500108E2],[89.8140625,0.25305371093749955E2],[89.7962891,25.3758301],[89.8249023,25.5601562],[89.7996094,0.25839599609375085E2],[89.8229492,25.9414063],[89.7098633,0.26171240234374974E2],[89.619043,0.26215673828124945E2],[89.5499023,26.0052734],[89.4668945,0.25983544921875108E2],[89.2892578,0.26037597656250085E2],[89.1083008,0.26202246093750063E2],[89.1019531,26.3083496],[89.0186523,0.26410253906249977E2],[88.9241211,0.26375097656249917E2],[88.9704102,0.26250878906250023E2],[88.8280273,26.2521973],[88.6828125,0.26291699218749983E2],[88.6806641,26.3529785],[88.5182617,0.26517773437500036E2],[88.3699219,26.5641113],[88.3514648,0.26482568359374966E2],[88.4367187,0.26437109374999945E2],[88.4404297,0.26369482421875034E2],[88.1507813,0.26087158203125053E2],[88.0845703,0.25888232421875045E2],[88.1474609,25.8114258],[88.2529297,0.25789794921875053E2],[88.3630859,25.6981934],[88.4523438,0.25574414062500068E2],[88.593457,0.25495312500000097E2],[88.7691406,0.25490478515624996E2],[88.8203125,0.25365527343749957E2],[88.9441406,25.2907715],[88.8901367,0.25194384765625074E2],[88.7475586,0.25168945312500057E2],[88.45625,0.25188427734375125E2],[88.3729492,0.24961523437500063E2],[88.3133789,0.24881835937499996E2],[88.1498047,0.24914648437499945E2],[88.0234375,0.24627832031250136E2],[88.1455078,0.24485791015624955E2],[88.2871094,24.4797363],[88.3969727,0.24389257812500006E2],[88.6422852,0.24325976562500102E2],[88.7335938,0.24230908203125093E2],[88.6998047,24.0025391],[88.5673828,0.23674414062500034E2],[88.5959961,23.6021973],[88.7408203,23.4366211],[88.7244141,0.23254980468750034E2],[88.928125,0.23186621093749977E2],[88.8505859,0.23040527343750057E2],[88.899707,0.22843505859375057E2],[88.9207031,0.22632031249999955E2],[89.05,22.2746094],[89.0279297,0.21937207031249983E2],[88.9493164,0.21937939453125125E2],[89.0196289,0.21833642578125023E2],[89.0516602,0.21654101562500045E2],[88.9074219,21.6530762],[88.8575195,0.21744677734375017E2],[88.834375,0.21661376953125085E2],[88.7450195,21.584375],[88.6912109,0.21733496093750034E2],[88.7402344,0.22005419921875017E2],[88.6416016,0.22121972656250136E2],[88.5667969,0.21832128906250063E2],[88.584668,0.21659716796874932E2],[88.4459961,0.21614257812500085E2],[88.2875,0.21758203125000108E2],[88.2537109,0.21622314453124943E2],[88.1220703,0.21635791015625045E2],[88.0568359,0.21694140625000014E2],[88.1810547,0.22032910156250125E2],[88.1962891,22.1395508],[87.9944336,0.22265673828125102E2],[87.9616211,22.2550293],[88.1592773,0.22121728515625076E2],[88.0507813,0.22001074218750034E2],[87.9484375,0.21825439453124943E2],[87.8237305,0.21727343750000045E2],[87.6782227,0.21653515625000097E2],[87.2006836,0.21544873046874983E2],[87.1006836,0.21500781250000074E2],[86.9541016,0.21365332031250006E2],[86.8595703,21.2367188],[86.8422852,0.21106347656249994E2],[86.8958008,0.20965576171875085E2],[86.9393555,0.20745068359375125E2],[86.9754883,20.7001465],[86.7625,0.20419140624999983E2],[86.7503906,0.20313232421875057E2],[86.4987305,20.1716309],[86.3765625,0.20006738281249966E2],[86.2452148,20.0530273],[86.3119141,19.987793],[86.2794922,0.19919433593749943E2],[85.8529297,0.19791748046875053E2],[85.575,19.6929199],[85.5550781,0.19866894531250097E2],[85.4599609,0.19895898437500136E2],[85.2486328,0.19757666015625034E2],[85.162793,0.19620898437500074E2],[85.2285156,19.6013184],[85.3708984,0.19678906249999983E2],[85.4416016,0.19626562499999977E2],[85.2255859,0.19508349609375045E2],[84.7709961,0.19125390625000023E2],[84.7498047,19.0500977],[84.462793,18.6897461],[84.1817383,0.18400585937499955E2],[84.1041016,18.2926758],[83.6542969,0.18069873046875102E2],[83.5722656,0.18003613281250097E2],[83.3879883,17.7866699],[83.1983398,0.17608984374999977E2],[82.9768555,0.17461816406250023E2],[82.5931641,17.2739258],[82.3595703,17.0961914],[82.2819336,0.16936083984375045E2],[82.3597656,0.16782812500000063E2],[82.2587891,16.5598633],[82.1415039,0.16485351562500057E2],[81.7619141,16.3294922],[81.4018555,0.16365234375000085E2],[81.2861328,16.3370605],[81.2385742,0.16263964843750074E2],[81.1321289,0.15961767578124947E2],[81.0300781,0.15881445312499947E2],[80.9787109,0.15758349609375072E2],[80.8259766,0.15765917968750015E2],[80.7818359,15.867334],[80.646582,0.15895019531250028E2],[80.3848633,0.15792773437499989E2],[80.293457,15.7107422],[80.1010742,15.3236328],[80.053418,0.15074023437499932E2],[80.0986328,0.14798242187500065E2],[80.1654297,0.14577832031250097E2],[80.1701172,0.14349414062500102E2],[80.1117188,0.14212207031250044E2],[80.1436523,0.14058935546875075E2],[80.2244141,0.13858203125000045E2],[80.2458008,0.13685839843750102E2],[80.306543,0.13485058593750054E2],[80.15625,0.13713769531250108E2],[80.0621094,13.60625],[80.1142578,0.13528710937500065E2],[80.290332,0.13436718749999969E2],[80.3423828,0.13361328125000071E2],[80.2291016,0.12690332031249966E2],[80.1430664,0.12452001953125091E2],[79.9817383,12.2354492],[79.8584961,0.11988769531250043E2],[79.7541016,0.11575292968750006E2],[79.7933594,0.11446679687500094E2],[79.6931641,0.11312548828124946E2],[79.7990234,11.3386719],[79.8486328,11.196875],[79.8501953,0.10768847656250017E2],[79.8381836,0.10322558593750045E2],[79.6673828,0.10299707031250009E2],[79.5316406,0.10329638671875074E2],[79.3905273,0.10305957031250045E2],[79.2536133,0.10174804687499972E2],[79.2578125,0.10035205078124946E2],[78.9962891,9.68310547],[78.9191406,9.45288086],[79.0199219,0.9333349609374961E1],[79.2754883,0.9284619140624983E1],[79.4114258,9.19238281],[79.2128906,0.9256005859375007E1],[78.9795898,0.9268554687500085E1],[78.4214844,0.9105029296874989E1],[78.2745117,8.99018555],[78.1924805,8.89086914],[78.1360352,8.66337891],[78.1263672,8.51132813],[78.0601563,8.38457031],[77.7703125,8.18984375],[77.587207,8.12988281],[77.5175781,8.07832031],[77.3014648,8.1453125],[76.9668945,8.40727539],[76.6172852,8.84707031],[76.553418,8.9027832],[76.4717773,0.9160839843749983E1],[76.403125,9.23681641],[76.3246094,0.9452099609374995E1],[76.2423828,0.9927099609374949E1],[76.3430664,9.82734375],[76.3755859,0.9539892578124935E1],[76.4587891,0.9536230468750077E1],[76.3464844,9.92211914],[76.1956055,0.10086132812500026E2],[76.2014648,0.10200634765625082E2],[76.0960938,0.10402246093750122E2],[75.9225586,0.10784082031250108E2],[75.8446289,11.0575684],[75.7238281,0.11361767578125024E2],[75.6460938,11.4684082],[75.5245117,0.11703125000000114E2],[75.3146484,0.11958447265625082E2],[75.1966797,0.12057519531250009E2],[74.9455078,12.5645508],[74.8682617,0.12844580078124947E2],[74.7705078,0.13077343750000123E2],[74.6823242,0.13506933593750063E2],[74.6708984,0.13667626953125122E2],[74.6084961,0.13849658203125074E2],[74.4985352,0.14046337890624997E2],[74.4669922,0.14216503906250026E2],[74.3822266,0.14494726562500048E2],[74.0887695,14.9021973],[73.9492188,0.15074755859375088E2],[73.8842773,0.15306445312500031E2],[73.8007813,15.3969727],[73.9319336,15.3969727],[73.7717773,0.15573046874999987E2],[73.8328125,15.659375],[73.7328125,15.6569336],[73.6077148,0.15871093749999972E2],[73.4760742,16.054248],[73.3375977,16.4598633],[73.2391602,0.17198535156250045E2],[73.1490234,0.17527441406250063E2],[73.1560547,17.6219238],[73.047168,17.9067383],[72.9939453,0.18097705078125074E2],[72.9171875,18.576123],[72.8708984,18.6830566],[73.0055664,19.0210938],[72.9720703,19.1533203],[72.9006836,0.19014501953124977E2],[72.834668,0.18975585937500057E2],[72.8030273,19.0792969],[72.8116211,0.19298925781250006E2],[72.987207,19.2774414],[72.7878906,0.19362988281250097E2],[72.7564453,0.19450537109375006E2],[72.7994141,0.19519824218750074E2],[72.7265625,19.5782715],[72.6677734,19.830957],[72.7089844,0.20078027343750108E2],[72.8811523,20.5631836],[72.8789063,20.8285156],[72.8138672,0.21117187500000085E2],[72.6923828,0.21177636718750136E2],[72.6238281,0.21371972656250108E2],[72.7347656,0.21470800781250006E2],[72.6132813,0.21461816406250108E2],[72.8105469,21.6199219],[73.0224609,21.6996094],[72.8397461,21.6872559],[72.5430664,21.696582],[72.5924805,21.8775879],[72.7001953,0.21971923828124943E2],[72.5222656,0.21976220703125108E2],[72.5530273,0.22159960937500074E2],[72.8091797,22.2333008],[72.5901367,22.278125],[72.455957,0.22248095703125074E2],[72.1828125,22.2697266],[72.3064453,22.189209],[72.2443359,0.22027636718750102E2],[72.0944336,0.21919970703125017E2],[72.037207,21.8230469],[72.1708984,0.21774316406250023E2],[72.2566406,0.21661230468750063E2],[72.2540039,21.5310059],[72.0765625,21.2240723],[72.0152344,0.21155712890625093E2],[71.5710938,20.9705566],[71.3964844,0.20869775390625108E2],[71.0246094,0.20738867187500087E2],[70.8796875,0.20714501953125108E2],[70.7193359,0.20740429687500068E2],[70.4850586,20.8401855],[70.1273437,0.21094677734375097E2],[70.034375,0.21178808593750006E2],[69.7484375,0.21505712890625006E2],[69.5419922,21.6785645],[69.3854492,0.21839550781249983E2],[69.1916992,0.21991503906250017E2],[69.0087891,0.22196777343750114E2],[68.9834961,0.22385400390624994E2],[69.0516602,0.22437304687500074E2],[69.1313477,0.22416259765625057E2],[69.2765625,0.22285498046875063E2],[69.5492187,22.4083984],[69.6551758,22.4035156],[69.7275391,0.22465185546875063E2],[69.819043,0.22451757812500006E2],[70.0058594,0.22547705078125006E2],[70.1772461,22.5727539],[70.4404297,22.9703125],[70.5134766,0.23002490234374932E2],[70.4345703,23.0770996],[70.3394531,0.22939746093749932E2],[70.2511719,0.22970898437500068E2],[70.1182617,22.9470215],[69.8498047,22.8564453],[69.6646484,22.759082],[69.2359375,0.22848535156250023E2],[68.8170898,0.23053710937500053E2],[68.6407227,0.23189941406250114E2],[68.4174805,23.5714844],[68.4538086,0.23629492187499945E2],[68.7767578,0.23852099609375017E2],[68.496875,0.23747998046875125E2],[68.3433594,23.6168457],[68.2349609,0.23596972656250074E2],[68.1650391,0.23857324218749994E2],[68.2825195,23.9279785],[68.4886719,0.23967236328125008E2],[68.7241211,0.23964697265625034E2],[68.728125,24.265625],[68.8,0.24309082031250025E2],[69.1195313,0.24268652343749945E2],[69.5591797,0.24273095703124966E2],[69.7162109,0.24172607421875114E2],[70.0210938,0.24191552734375048E2],[70.0982422,24.2875],[70.2890625,0.24356298828125063E2],[70.5467773,0.24418310546875063E2],[70.5792969,0.24279052734374943E2],[70.7163086,0.24237988281250097E2],[70.8050781,24.2619629],[70.8862305,24.34375],[71.044043,0.24400097656250097E2],[70.9732422,24.4874023],[70.9763672,24.61875],[71.0478516,0.24687744140625085E2],[70.8777344,25.0629883],[70.6520508,25.4229004],[70.6484375,0.25666943359375068E2],[70.2646484,25.706543],[70.1001953,0.25910058593750048E2],[70.0777344,0.26071972656249983E2],[70.1326172,26.2147949],[70.1568359,26.4714355],[70.059375,0.26578759765625023E2],[69.7359375,26.6270508],[69.5069336,0.26742675781250025E2],[69.4700195,26.8044434],[69.5370117,27.1229492],[69.5679688,0.27174609375000102E2],[69.8962891,0.27473632812500085E2],[70.1445313,27.8490234],[70.4037109,0.28025048828124994E2],[70.4885742,0.28023144531250125E2],[70.6291016,0.27937451171875068E2],[70.6491211,27.8353516],[70.7374023,0.27729003906250057E2],[70.8749023,27.7144531],[71.1847656,27.8316406],[71.5429688,27.869873],[71.8703125,27.9625],[71.9480469,28.1772949],[72.1791992,0.28421777343749994E2],[72.2919922,0.28697265624999968E2],[72.3418945,0.28751904296875093E2],[72.9033203,29.0287598],[73.1283203,29.363916],[73.2311523,0.29550634765625087E2],[73.3816406,29.934375],[73.8091797,30.0933594],[73.9333984,0.30222070312500108E2],[73.8827148,30.3521484],[73.8993164,30.4353516],[74.0089844,30.5196777],[74.215625,0.30768994140624986E2],[74.3393555,30.8935547],[74.3803711,0.30893408203125087E2],[74.6328125,0.31034667968750114E2],[74.6103516,0.31112841796875045E2],[74.5176758,31.1855957],[74.5939453,0.31465380859375102E2],[74.5099609,0.31712939453125074E2],[74.5555664,0.31818554687500097E2],[74.7394531,31.9488281],[75.0714844,32.0893555],[75.2541016,0.32140332031250125E2],[75.3334961,32.2791992],[75.2336914,0.32372119140625074E2],[74.9873047,32.462207],[74.7888672,32.4578125],[74.6578125,0.32518945312499966E2],[74.6632812,32.757666],[74.3545898,32.7687012],[74.3036133,0.32991796875000034E2],[74.1262695,33.0754395],[74.0038086,33.1894531],[73.9942383,33.2421875],[74.1177734,0.33384130859375034E2],[74.15,0.33506982421874994E2],[74.0040039,33.6324219],[74.0009766,33.7881836],[74.215625,33.8865723],[74.2464844,33.9901855],[73.9499023,34.0187988],[73.9039063,34.1080078],[73.9794922,0.34191308593749966E2],[73.9246094,0.34287841796875114E2],[73.8099609,34.3253418],[73.8121094,0.34422363281249964E2],[73.9612305,0.34653466796874994E2],[74.3003906,34.7653809],[74.9518555,0.34645849609375034E2],[75.1875,34.6390137],[75.4525391,34.5367187],[75.7091797,34.5030762],[75.8621094,34.5602539],[76.0410156,34.6699219],[76.1724609,34.6677246],[76.4567383,0.34756103515625114E2],[76.5944336,34.7358398],[76.6962891,34.7869141],[76.7829102,34.9001953],[77.0008789,34.9919922],[77.0486328,0.35109912109375074E2],[77.7994141,35.4958984],[77.8949219,0.35449023437500045E2],[78.0094727,0.35490234375000114E2],[78.0474609,0.35449414062500125E2],[78.012207,0.35251025390625045E2],[78.0757813,35.1349121],[78.2820313,34.6539063],[78.3269531,34.6063965],[78.6708008,34.5181641],[78.9364258,34.3519531],[78.9706055,34.2282227],[78.7530273,34.0876953],[78.7266602,0.34013378906249955E2],[78.7837891,33.8087891],[78.8018555,0.33499707031250125E2],[78.9484375,0.33346533203125006E2],[79.1125,33.2262695],[79.1085938,33.0226563],[79.2022461,0.32946044921875114E2],[79.2338867,32.7030762],[79.2193359,32.5010742],[79.1273437,32.4757813],[79.0669922,32.3881836],[78.9189453,32.3582031],[78.7712891,32.4680664],[78.7008789,32.5970215],[78.4125,32.5577148],[78.3896484,32.519873],[78.4958984,32.2157715],[78.7354492,0.31957958984375097E2],[78.7197266,0.31887646484374983E2]]]]}}],"_labels":{"IN":"India"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/IO.json b/src/api-umbrella/admin-ui/public/maps/IO.json new file mode 100644 index 000000000..4870af8b8 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/IO.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"IO"},"geometry":{"type":"Polygon","coordinates":[[[72.4919922,-7.37744141],[72.4291016,-7.43535156],[72.4076172,-7.33447266],[72.349707,-7.26337891],[72.4274414,-7.29980469],[72.4472656,-7.39570313],[72.4737305,-7.30966797],[72.4357422,-7.23027344],[72.4935547,-7.26171875],[72.4919922,-7.37744141]]]}}],"_labels":{"IO":"Br. Indian Ocean Ter."}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/IQ.json b/src/api-umbrella/admin-ui/public/maps/IQ.json new file mode 100644 index 000000000..8c784a454 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/IQ.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"IQ"},"geometry":{"type":"Polygon","coordinates":[[[44.7651367,37.1424316],[44.8808594,36.7993164],[44.9814453,36.7376953],[45.0339844,36.6588867],[45.0310547,36.5260742],[0.45112402343750006E2,36.4092773],[45.206543,36.397168],[45.2411133,36.355957],[45.3616211,36.015332],[45.4837891,36.0085449],[45.6450195,35.9283691],[45.7234375,35.8366699],[45.7763672,0.35821826171874996E2],[45.9414062,35.8354004],[46.1674805,35.8205566],[46.2734375,0.35773242187499996E2],[46.2625,35.7441406],[46.0374023,0.35673144531249996E2],[45.9710938,35.5241699],[46.0106445,35.4248047],[46.1121094,0.35321679687499994E2],[46.1546875,35.1967285],[46.1337891,35.1276367],[45.9208984,35.0285156],[45.678125,34.7984375],[0.45661523437500016E2,0.34612695312499994E2],[45.6375,34.5738281],[45.5007813,0.34581591796874996E2],[0.45437597656250006E2,34.4151367],[45.5268555,34.284668],[45.5286133,34.1525391],[0.45397070312500006E2,0.33970849609374994E2],[0.45473242187500006E2,33.9254883],[45.7382812,0.33602832031249996E2],[45.8793945,33.6097656],[45.8732422,0.33491992187499996E2],[0.45981054687500006E2,33.4701172],[46.1458984,0.33229638671874994E2],[0.46080761718750004E2,33.0865234],[46.112793,0.32957666015624994E2],[46.2982422,0.32950244140624996E2],[0.46377050781250006E2,0.32929248046874996E2],[46.5699219,32.8339355],[47.1213867,0.32466601562499996E2],[47.2851562,0.32474023437499994E2],[47.3712891,0.32423730468749994E2],[0.47511914062500004E2,32.1508301],[47.5915039,32.0879883],[47.8299805,0.31794433593749996E2],[47.6794922,0.31400585937499994E2],[47.6794922,0.31002392578124994E2],[48.0106445,0.30989794921874996E2],[48.0149414,30.465625],[0.48147558593750006E2,0.30416845703124995E2],[48.2261719,0.30321337890624992E2],[48.3310547,0.30285449218749992E2],[48.4013672,30.1883301],[48.4345703,30.0375977],[48.5464844,0.29962353515624994E2],[0.48454199218750006E2,29.9384766],[0.48354589843750006E2,0.29956738281249997E2],[0.48141699218750006E2,30.040918],[0.47982519531250006E2,30.0113281],[47.9787109,29.9828125],[47.7539062,0.30076611328124997E2],[47.6727539,0.30095605468749994E2],[47.3313477,30.0796875],[47.1482422,30.0009766],[0.47114355468750006E2,29.9613281],[46.9058594,29.5375],[46.7693359,0.29347460937499992E2],[46.5314453,0.29096240234374992E2],[46.3564453,29.0636719],[0.44716503906250004E2,29.1936035],[0.44690820312500016E2,29.2023438],[42.8577148,30.4952148],[42.0744141,0.31080371093749996E2],[40.4789063,31.8933594],[0.40369335937500004E2,0.31938964843749996E2],[40.027832,0.31995019531249994E2],[39.1454102,32.1245117],[39.2927734,32.2438477],[39.2474609,0.32350976562499994E2],[39.0414063,32.3056641],[38.9816406,0.32472558593749994E2],[39.0578125,32.4931641],[0.38773535156250006E2,0.33372216796874994E2],[40.6894531,34.3320312],[40.9350586,34.3865723],[0.40987011718750004E2,34.4290527],[41.1947266,34.7689941],[41.2164062,35.2881836],[41.2483398,35.4274902],[41.3541016,0.35640429687499996E2],[0.41352636718750006E2,0.35809960937499994E2],[41.2456055,0.36073388671874994E2],[0.41261816406250006E2,36.2724609],[0.41295996093750006E2,0.36383349609374996E2],[41.4167969,36.5146484],[41.7885742,36.597168],[42.0839844,36.8260254],[42.3500977,0.37060595703124996E2],[42.3589844,37.1085937],[42.4558594,0.37128710937499996E2],[42.6354492,37.2492676],[42.7746094,37.371875],[0.42936621093750006E2,0.37324755859374996E2],[43.0924805,37.3673828],[43.3067383,37.3146484],[43.5158203,37.2445313],[43.8364258,0.37223535156249994E2],[44.0131836,0.37313525390624996E2],[44.1144531,37.3018555],[44.2083984,37.2026367],[44.2016602,0.37051806640624996E2],[0.44281835937500006E2,36.9780273],[44.605957,37.1760254],[44.7651367,37.1424316]]]}}],"_labels":{"IQ":"Iraq"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/IR.json b/src/api-umbrella/admin-ui/public/maps/IR.json new file mode 100644 index 000000000..8b667729b --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/IR.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"IR"},"geometry":{"type":"MultiPolygon","coordinates":[[[[56.1879883,26.9211426],[56.0949219,26.8011719],[55.9542969,26.701123],[0.55847656249999964E2,0.26730810546875006E2],[0.55674609375000074E2,26.6858398],[55.4237305,26.5831055],[55.3115234,0.26592626953125002E2],[55.3469727,26.6479492],[55.7625977,26.8119629],[55.7576172,26.9476563],[0.55907128906249994E2,0.26909814453124966E2],[0.56074121093749994E2,26.9833496],[56.2139648,0.27003271484375002E2],[0.56279394531250006E2,0.26952099609374983E2],[56.1879883,26.9211426]]],[[[45.0001953,39.4235352],[45.1412109,39.2542969],[0.45255957031250006E2,0.39194677734375034E2],[45.4796875,39.00625],[45.575,38.9728027],[46.1701172,38.869043],[46.3177734,0.38912646484375045E2],[0.46554785156250006E2,0.38904394531250034E2],[46.8525391,39.1484375],[46.9888672,39.1801758],[0.47188378906250044E2,0.39340966796874994E2],[0.47772851562499994E2,39.648584],[0.47995898437500074E2,0.39683935546875034E2],[0.48322167968749994E2,0.39399072265625016E2],[48.1360352,0.39312353515625006E2],[0.48125488281249964E2,39.1716309],[48.2741211,39.0991211],[48.2419922,0.38978955078124955E2],[48.0500977,38.9350098],[48.0232422,38.819043],[48.2046875,38.7241211],[0.48305566406249994E2,38.6134766],[48.4173828,38.5862305],[48.5926758,38.411084],[48.86875,38.435498],[48.9013672,0.38143652343750034E2],[48.9599609,37.8901367],[49.080957,0.37667578125000034E2],[0.49171191406250074E2,37.6005859],[49.4701172,0.37496679687500034E2],[0.49726953125000044E2,0.37480517578125045E2],[50.1304687,37.4071289],[50.2140625,37.3395996],[50.3378906,37.1491699],[50.5332031,37.0136719],[50.9274414,0.36810205078124994E2],[51.1185547,0.36742578124999966E2],[51.7620117,36.614502],[52.1901367,36.6217285],[53.3741211,36.86875],[53.7676758,36.9303223],[53.9154297,36.9303223],[53.6794922,36.853125],[53.76875,36.818457],[0.53970117187499994E2,0.36818310546874955E2],[54.0171875,36.9524902],[53.9141602,37.3435547],[54.1916016,37.3324707],[54.2998047,0.37353613281250034E2],[0.54745214843750006E2,0.37501904296874955E2],[54.8486328,37.7226562],[0.55075585937499994E2,37.9024902],[55.3808594,0.38051123046875034E2],[55.578418,0.38099755859374994E2],[56.2288086,38.0733887],[0.56324121093750044E2,38.1911133],[56.440625,0.38249414062499994E2],[56.7746094,38.2500488],[56.9066406,0.38213037109374966E2],[57.1935547,0.38216406250000034E2],[57.3314453,38.0893066],[57.3357422,37.9899414],[57.4238281,0.37947705078125004E2],[57.7105469,37.9052734],[0.58108789062499994E2,0.37783056640625034E2],[58.2616211,0.37665820312500045E2],[58.4357422,37.6385254],[58.5504883,37.6881836],[58.6501953,37.6515625],[58.8154297,0.37683496093749994E2],[59.3017578,37.5106445],[59.3673828,0.37333740234374964E2],[59.562207,0.37178906249999955E2],[59.9486328,37.0416016],[60.062793,36.9628906],[60.3413086,36.6376465],[61.1196289,36.6425781],[61.1699219,36.5722656],[0.61160351562500104E2,0.36432714843750006E2],[61.2124023,0.36099121093749964E2],[61.1529297,0.35976757812500004E2],[61.2521484,35.867627],[61.2388672,0.35659277343750006E2],[61.2818359,35.553418],[61.1892578,35.3120117],[61.1,0.35272314453125034E2],[61.1496094,35.09375],[0.61070214843749994E2,0.34921728515625006E2],[0.61080078124999964E2,34.8556152],[0.60951171874999964E2,34.6538574],[0.60726269531250104E2,0.34518261718749976E2],[60.8894531,34.3194336],[60.6426758,34.3071777],[0.60485742187500044E2,34.0947754],[60.5270508,0.33841992187499955E2],[60.5108398,33.638916],[0.60654589843750074E2,33.5604004],[60.9069336,33.5389648],[60.9169922,0.33505224609375006E2],[0.60718066406250024E2,33.3235352],[60.5605469,33.1378418],[60.5765625,32.994873],[60.8292969,32.2494141],[60.7899414,0.31987109374999985E2],[60.8207031,31.495166],[61.6601563,0.31382421874999974E2],[0.61755078125000104E2,31.2853027],[61.8142578,31.0725586],[0.61784179687499964E2,0.30831933593750026E2],[60.8433594,0.29858691406249985E2],[61.3183594,29.3726074],[61.3378906,29.2649902],[61.5085938,0.29006054687500015E2],[61.6230469,0.28791601562500006E2],[61.8898438,0.28546533203124994E2],[62.0330078,28.4910156],[62.3530273,0.28414746093749983E2],[62.5645508,0.28235156249999985E2],[62.7175781,0.28252783203125006E2],[62.7625,28.2020508],[0.62739746093749964E2,0.28002050781250006E2],[0.62782324218750006E2,27.8005371],[62.8120117,0.27497021484374983E2],[62.7527344,27.265625],[62.9154297,0.27218408203124966E2],[0.63166796875000024E2,27.2524902],[63.3051758,0.27124560546875014E2],[63.2420898,27.0776855],[63.2503906,26.879248],[0.63186132812500055E2,26.8375977],[0.63168066406250006E2,26.6655762],[63.0929688,26.6323242],[62.7866211,0.26643896484374977E2],[62.4392578,26.5610352],[62.3123047,0.26490869140624994E2],[62.2393555,0.26357031249999977E2],[61.8698242,26.2424316],[0.61809960937499994E2,26.1652832],[61.7543945,25.8433594],[61.6686523,25.7689941],[61.6154297,0.25286132812500025E2],[61.5878906,25.2023438],[61.412207,0.25102099609375017E2],[61.1085938,0.25183886718749985E2],[60.6638672,25.2822266],[60.5875,0.25413525390624955E2],[60.5105469,0.25437060546875045E2],[60.4001953,25.3115723],[0.60024707031250074E2,0.25384130859375002E2],[59.8970703,25.3618164],[59.8183594,0.25400878906250057E2],[59.6160156,25.4032715],[59.4560547,0.25481494140625045E2],[59.2272461,25.4277344],[59.0460938,0.25417285156250017E2],[58.7978516,25.5545898],[58.5308594,0.25592431640624994E2],[58.3142578,0.25580859375000045E2],[0.58022363281249994E2,0.25640820312500008E2],[57.9366211,0.25691650390625053E2],[57.7960938,25.6530273],[57.7325195,0.25724902343749985E2],[0.57334570312500006E2,0.25791552734375074E2],[0.57205566406249964E2,0.26037207031250006E2],[57.2013672,26.1588379],[57.1042969,0.26371435546874977E2],[57.0719727,26.6800781],[56.9822266,0.26905468749999983E2],[56.8128906,0.27089990234374994E2],[56.728125,0.27127685546875057E2],[56.3561523,27.2002441],[56.1180664,27.1431152],[55.9411133,0.27037597656249996E2],[0.55650292968749994E2,0.26977539062499996E2],[55.4240234,0.26770556640625017E2],[55.2941406,26.7859375],[55.1545898,26.7253906],[54.8958008,26.5566895],[54.7592773,26.5050781],[54.6449219,0.26508935546875023E2],[0.54522070312500006E2,0.26589160156250017E2],[54.2470703,0.26696630859374977E2],[54.0693359,26.732373],[0.53822558593750074E2,0.26707714843750008E2],[53.7057617,0.26725585937500025E2],[53.5071289,0.26851757812499955E2],[53.4549805,26.9432617],[53.3416992,0.27004492187500006E2],[52.9825195,0.27141943359375002E2],[52.6916016,0.27323388671875023E2],[52.6026367,27.4933594],[0.52475878906250074E2,27.6165039],[52.1918945,0.27717285156249996E2],[0.52030761718749964E2,0.27824414062499955E2],[0.51666308593750074E2,27.8449707],[51.5185547,0.27910009765625006E2],[51.2789062,28.1313477],[51.2760742,28.2188477],[51.0938477,28.5121094],[51.0620117,28.726123],[50.8669922,0.28870166015625014E2],[50.8757813,29.0626953],[50.6751953,0.29146582031250034E2],[50.6496094,0.29420068359374966E2],[50.3869141,0.29679052734374977E2],[50.1689453,29.9212402],[0.50071582031250074E2,0.30198535156250014E2],[49.9831055,30.209375],[49.5548828,0.30028955078125026E2],[49.4299805,30.1304687],[49.0542969,30.3069336],[49.0019531,30.3739258],[0.49190332031250044E2,30.3753906],[0.49224511718749994E2,30.4723145],[49.0019531,30.506543],[49.0371094,0.30450488281250017E2],[48.9167969,0.30397265625000014E2],[0.48891210937500006E2,30.3276367],[48.9191406,30.1208984],[48.8324219,30.035498],[0.48670898437499964E2,30.0283203],[48.5464844,29.9623535],[48.4345703,30.0375977],[0.48401367187499964E2,0.30188330078124974E2],[48.3310547,0.30285449218749964E2],[48.2261719,0.30321337890624985E2],[48.1475586,0.30416845703125002E2],[48.0149414,30.465625],[48.0106445,0.30989794921875014E2],[0.47679492187500074E2,31.0023926],[0.47679492187500074E2,0.31400585937499958E2],[47.8299805,0.31794433593749996E2],[47.5915039,0.32087988281250034E2],[47.5119141,32.1508301],[47.3712891,32.4237305],[47.2851563,0.32474023437499966E2],[0.47121386718750074E2,32.4666016],[46.5699219,32.8339355],[46.3770508,32.929248],[46.112793,0.32957666015624994E2],[46.0807617,33.0865234],[0.46145898437499994E2,0.33229638671874994E2],[0.45981054687500006E2,33.4701172],[45.8732422,33.4919922],[45.8793945,33.6097656],[45.7382813,33.602832],[0.45473242187500006E2,33.9254883],[45.3970703,0.33970849609374994E2],[45.5286133,0.34152539062499976E2],[45.5268555,34.284668],[45.4375977,34.4151367],[45.5007813,34.5815918],[45.6375,34.5738281],[45.678125,0.34798437500000034E2],[45.9208984,35.0285156],[46.1337891,35.1276367],[46.1121094,35.3216797],[45.9710938,35.5241699],[46.0374023,35.6731445],[46.2625,35.7441406],[46.1674805,35.8205566],[45.7234375,35.8366699],[45.6450195,35.9283691],[45.4837891,36.0085449],[45.3616211,0.36015332031249955E2],[0.45241113281249994E2,36.355957],[45.1124023,0.36409277343750034E2],[45.0310547,36.5260742],[0.45033984375000074E2,36.6588867],[44.8808594,36.7993164],[44.7583008,37.2170898],[44.7941406,37.2903809],[0.44574023437500074E2,37.4354004],[44.5612305,37.7446289],[44.3362305,37.8717773],[44.2113281,0.37908056640625006E2],[0.44329394531250074E2,0.38109277343749966E2],[44.4308594,0.38356787109375034E2],[44.3196289,0.38374707031249955E2],[44.2570312,38.7006348],[44.2716797,38.8360352],[44.1445312,38.9943848],[44.1780273,39.1448242],[44.0791016,0.39218310546875045E2],[44.0232422,39.3774414],[44.3893555,39.4221191],[0.44455957031249994E2,39.666748],[44.5871094,39.7685547],[0.44838183593750074E2,39.6291016],[45.0001953,39.4235352]]]]}}],"_labels":{"IR":"Iran"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/IS.json b/src/api-umbrella/admin-ui/public/maps/IS.json new file mode 100644 index 000000000..db2a586c6 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/IS.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"IS"},"geometry":{"type":"Polygon","coordinates":[[[-0.15543115234374993E2,66.2285156],[-0.15428466796874998E2,66.2248047],[-0.15162402343749987E2,66.2816895],[-14.9699707,66.3597168],[-0.14856103515624994E2,66.3814453],[-0.14593896484374993E2,66.3739746],[-0.14912207031249977E2,66.2842773],[-0.15116406249999983E2,66.1024414],[-14.894043,66.0378906],[-0.14740429687499981E2,66.0508301],[-0.14674365234374987E2,65.9898926],[-14.6882324,65.8969727],[-0.14839306640624983E2,65.7809082],[-0.14757519531249981E2,65.7556641],[-0.14426220703124983E2,65.7899414],[-14.3728027,65.7703613],[-14.3283691,65.658252],[-14.4733887,65.5753418],[-0.14302294921874989E2,65.6275391],[-0.14166943359374983E2,65.6422852],[-0.13935449218749994E2,65.6160645],[-0.13785253906249977E2,65.5330078],[-13.6703125,65.5495117],[-0.13616015624999989E2,65.4871582],[-0.13667773437499987E2,65.3989746],[-0.13804785156249977E2,65.3547852],[-13.6489258,65.2369629],[-13.7548828,65.1925293],[-0.13580810546874998E2,65.1430176],[-0.13599316406249983E2,65.0359375],[-13.8540039,64.9928711],[-0.13852929687499994E2,64.8621582],[-0.13951660156249998E2,64.7836426],[-14.1351562,64.7147949],[-0.14385107421874977E2,64.7452148],[-0.14375292968749989E2,64.6774414],[-0.14465380859374989E2,64.6356934],[-0.14432568359374983E2,64.5383301],[-0.14547070312499983E2,64.4459473],[-14.7895508,64.379834],[-0.15021582031249977E2,64.2958984],[-15.2558594,64.2969238],[-0.15494970703124977E2,64.2582031],[-0.16060449218749994E2,64.1112305],[-16.4680664,63.9163574],[-0.16640332031249983E2,63.8654785],[-0.16933056640624983E2,63.840918],[-0.17095117187499994E2,63.8081055],[-0.17633447265624994E2,63.746582],[-17.8157227,63.7129883],[-17.9148437,0.63636376953124994E2],[-0.17880273437499994E2,63.5901855],[-0.17946923828124994E2,63.5357422],[-18.0800293,63.4963379],[-18.219043,63.5308594],[-0.18222265624999977E2,63.4731934],[-18.6536133,63.4066895],[-0.19250195312499983E2,63.4419922],[-0.19778271484374983E2,63.5365723],[-0.20198144531249994E2,63.5558105],[-0.20494042968749994E2,63.6873535],[-20.4910156,0.63731982421874996E2],[-20.3630371,63.7649414],[-20.4139648,63.8051758],[-0.20592968749999983E2,63.7353516],[-0.20729931640624983E2,63.7933594],[-0.20878759765624977E2,63.8039062],[-0.21246240234374994E2,63.9354492],[-0.21448632812499994E2,63.8583984],[-22.3725586,63.84375],[-0.22652197265624977E2,63.8277344],[-22.7429687,64.0193848],[-0.22650927734374985E2,64.0772949],[-22.5100586,63.9914551],[-22.0566406,64.0713379],[-21.8327637,64.2054199],[-21.7225586,64.3217773],[-21.6060059,64.3666016],[-0.21463330078124983E2,64.3791504],[-0.21646679687499983E2,64.3978516],[-21.9512207,64.313916],[-0.22053369140624994E2,64.313916],[-0.21901269531249994E2,64.3916016],[-0.22003808593749994E2,64.4521973],[-21.9503418,64.5149902],[-21.590625,64.6263672],[-0.21674951171874994E2,64.6477051],[-0.21924414062499977E2,64.5625488],[-22.1060059,64.5330566],[-22.2841797,64.5865723],[-22.3201172,64.6472168],[-0.22233593749999983E2,64.7139648],[-22.467041,64.7949707],[-0.22720312499999977E2,64.7888184],[-0.23346972656249985E2,64.8243652],[-23.6899414,64.756543],[-0.23878564453124994E2,64.7506348],[-24.0261719,64.8634277],[-23.8638184,64.9241699],[-0.23693212890624977E2,64.9127441],[-23.3145996,64.9580078],[-0.23197998046874996E2,65.0021484],[-0.23108837890624983E2,64.9658691],[-0.22899511718749977E2,65.0030273],[-22.7880859,65.0464844],[-22.6839844,65.0263672],[-0.22308447265624977E2,65.0456543],[-21.8921387,65.0487793],[-21.8004395,65.1059082],[-0.21779980468749983E2,65.1876953],[-0.22039990234374983E2,65.1252441],[-22.400293,65.1593262],[-22.509082,65.1967773],[-22.4734375,65.2268555],[-0.22149316406249994E2,65.3435547],[-21.9069824,65.399707],[-0.21844384765624994E2,65.4473633],[-0.22005761718749994E2,65.493457],[-0.22311474609374983E2,65.4807129],[-22.3896973,65.5354004],[-22.6436035,65.5677734],[-0.22812646484374994E2,65.5474121],[-0.22902490234374994E2,65.5804687],[-0.23122070312499996E2,65.5347656],[-0.23604541015624985E2,65.4686035],[-23.8999023,65.4075684],[-0.24223974609374977E2,65.487207],[-0.24454785156249983E2,65.5003418],[-0.24475683593749977E2,65.5251953],[-24.3410645,65.6012207],[-0.24156103515624977E2,65.6080078],[-23.8567383,65.5383789],[-24.0100098,65.6162109],[-24.0175781,65.690918],[-0.24111914062499977E2,65.7597168],[-0.23909082031249994E2,65.7655762],[-0.23615917968749983E2,65.6795898],[-23.4719727,65.6948242],[-0.23285351562499983E2,65.75],[-0.23704736328124994E2,65.7812012],[-0.23832617187499974E2,65.8492188],[-0.23741308593749977E2,65.8845703],[-23.5249512,65.8800293],[-0.23766552734374983E2,65.9969727],[-0.23737158203124977E2,66.0694336],[-0.23434472656249994E2,66.0242187],[-23.5935547,66.0934082],[-0.23527929687499977E2,66.1644043],[-0.23376562499999977E2,66.1817383],[-23.0625488,66.0862305],[-0.23018994140624983E2,65.9821289],[-22.815332,65.9834961],[-0.22723339843749983E2,66.0390137],[-0.22621582031249996E2,65.9999512],[-22.6160156,65.8674805],[-22.4416992,65.9083008],[-22.4453125,66.0700195],[-22.8064453,66.1525879],[-0.22947900390624994E2,66.2127441],[-0.22861621093749985E2,66.2514648],[-22.509375,66.2577637],[-0.22686230468749983E2,66.3376953],[-0.22972021484374974E2,66.3241699],[-23.1199219,66.3572266],[-22.889209,66.440625],[-22.5593262,66.4454102],[-0.22426123046874977E2,66.430127],[-22.1702148,66.3071289],[-0.21966992187499983E2,66.2569824],[-0.21625292968749985E2,66.0896973],[-0.21406884765624994E2,66.0255859],[-21.5166504,65.9675781],[-0.21387792968749977E2,65.9387695],[-21.3034668,65.8764648],[-0.21374902343749994E2,65.7418945],[-0.21456640624999977E2,65.6982422],[-21.6584473,65.723584],[-0.21466259765624983E2,65.6351562],[-21.455127,65.584668],[-21.3647461,65.5782227],[-21.421875,65.4621582],[-21.2299805,65.4206055],[-21.1296875,65.2666016],[-0.21047314453124983E2,65.4283691],[-0.20997998046874983E2,65.4445312],[-20.9397461,65.5651855],[-0.20739697265624983E2,65.658252],[-20.6494141,65.6541992],[-20.5481445,65.5794922],[-20.454834,65.5710449],[-0.20356640624999983E2,65.719043],[-0.20344091796874977E2,65.8277344],[-0.20373925781249994E2,65.9477051],[-0.20356591796874994E2,66.033252],[-20.2075195,66.1000977],[-0.20026074218749983E2,66.0492676],[-0.19874755859374996E2,65.930127],[-19.5935547,65.7790527],[-0.19461816406249994E2,65.7723633],[-19.4338867,65.8144531],[-19.45625,65.9849121],[-0.19382958984374994E2,66.0756836],[-19.1953125,66.0979004],[-0.18911328124999983E2,66.1811523],[-0.18777539062499983E2,66.1687988],[-0.18594921874999983E2,66.0713379],[-0.18454931640624977E2,65.9645508],[-0.18276953124999974E2,65.8847168],[-0.18141943359374977E2,65.734082],[-0.18099023437499994E2,65.8302734],[-0.18315332031249994E2,66.0931641],[-18.297168,66.1574219],[-17.9069824,66.1433105],[-17.8198242,66.1141113],[-0.17550439453124994E2,65.9644043],[-17.4172363,66.0255371],[-17.1530273,66.202832],[-0.16925439453124994E2,66.143457],[-16.7484375,66.1316406],[-0.16485009765624994E2,66.1959473],[-0.16428076171874977E2,66.2783691],[-0.16540673828124994E2,66.4467285],[-0.16493359374999983E2,66.4811523],[-0.16249316406249985E2,66.5229004],[-0.15985400390624987E2,66.5146484],[-0.15713769531249996E2,66.3585937],[-0.15702783203124994E2,66.2857422],[-0.15543115234374993E2,66.2285156]]]}}],"_labels":{"IS":"Iceland"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/IT.json b/src/api-umbrella/admin-ui/public/maps/IT.json new file mode 100644 index 000000000..ae393b0f0 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/IT.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"IT"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.12051269531250028E2,36.7570312],[11.940625,0.36780371093750034E2],[0.11948046875000045E2,36.8430664],[0.12051269531250028E2,36.7570312]]],[[[15.5765625,0.38220312500000034E2],[0.15475683593750004E2,38.0629395],[0.15234472656249977E2,37.7848145],[0.15099511718750021E2,37.4585937],[0.15116992187500045E2,37.3347168],[0.15230273437500017E2,37.2443359],[0.15174121093750044E2,37.2091797],[15.2886719,37.0969238],[0.15294531250000064E2,0.37013281250000055E2],[0.15142382812500045E2,36.8916016],[0.15112597656250017E2,0.36687841796875006E2],[14.8896484,0.36723535156249994E2],[0.14775976562500004E2,36.7104004],[0.14501855468750023E2,0.36798681640625034E2],[0.14367285156250063E2,36.9728516],[0.14142968750000023E2,0.37103662109374994E2],[0.13905468750000038E2,37.1006348],[0.13360937500000034E2,37.3487305],[0.13169921875000028E2,37.4792969],[0.12924121093750045E2,37.5705078],[0.12699023437500017E2,37.5718262],[12.5267578,37.6695312],[12.4355469,0.37819775390624955E2],[0.12547656250000072E2,38.0529297],[12.734375,38.1830566],[0.12902734375000023E2,38.0348633],[0.13049023437499983E2,38.084082],[0.13159960937500045E2,38.190332],[0.13351660156250004E2,0.38180517578125006E2],[13.681543,38.0007324],[0.13788867187499989E2,37.9812012],[14.05,38.0405273],[0.14287695312500006E2,38.0168457],[0.14505957031250063E2,0.38045507812500034E2],[0.14737207031250023E2,38.1507813],[0.14845898437500038E2,38.1716797],[15.11875,38.1527344],[0.15279589843750017E2,0.38230371093750016E2],[0.15340722656250051E2,0.38217333984375045E2],[0.15498730468750011E2,38.2908691],[0.15634667968750078E2,38.2675781],[15.5765625,0.38220312500000034E2]]],[[[8.47890625,39.0675293],[8.42148438,0.38968652343749994E2],[8.36679688,0.39115917968749955E2],[8.47890625,39.0675293]]],[[[0.13938281250000074E2,40.7056152],[0.13938281250000074E2,40.7056152],[0.13938281250000074E2,40.7056152],[0.13938281250000074E2,40.7056152]]],[[[8.28603516,41.0398438],[8.28603516,41.0398438],[8.28603516,41.0398438],[8.28603516,41.0398438]]],[[[0.9632031250000011E1,40.8820312],[9.68203125,40.8181152],[0.9805273437500063E1,40.4995605],[0.9642968750000023E1,0.40268408203125006E2],[0.9700781249999977E1,40.0917969],[9.61699219,0.39354394531249966E2],[9.5625,39.1660156],[9.48632812,0.39139550781249994E2],[9.26416016,39.2167969],[9.14931641,0.39196972656249955E2],[9.05634766,39.2391602],[9.02265625,39.0432617],[8.88134766,38.9128906],[8.64853516,38.9265625],[8.41816406,0.39205712890624966E2],[8.39912109,39.4815918],[8.44707031,39.562793],[8.47109375,39.7480957],[8.54052734,0.39731591796874994E2],[8.54775391,39.839209],[8.4078125,39.9172363],[8.40859375,40.0376465],[8.47080078,0.40130712890625034E2],[8.47128906,40.2926758],[8.35322266,40.5005371],[8.18994141,40.6516113],[8.18085938,40.7710449],[8.22421875,40.9133301],[8.31015625,0.40857519531250034E2],[8.571875,40.8501953],[8.82119141,40.9499023],[8.99814453,41.1103516],[0.9107226562500045E1,0.41142919921875006E2],[0.9228417968750023E1,41.2570801],[0.9283007812500045E1,0.41201660156249964E2],[9.45517578,41.1501465],[9.62119141,41.0048828],[0.9553710937500057E1,40.9321289],[0.9632031250000011E1,40.8820312]]],[[[0.10395117187500034E2,42.8581543],[0.10419335937499994E2,42.7131836],[0.10335644531250011E2,0.42761132812499994E2],[10.13125,0.42742041015625006E2],[0.10127539062500063E2,42.8103027],[0.10358984375000063E2,42.8223145],[0.10395117187500034E2,42.8581543]]],[[[0.12130761718750051E2,46.9847656],[0.12154101562500017E2,46.9352539],[0.12388281250000034E2,46.7026367],[0.12479199218749983E2,0.46672509765624966E2],[13.16875,0.46572656249999966E2],[0.13490039062500045E2,46.5555664],[13.7,46.5202637],[0.13679687500000057E2,46.4628906],[0.13399511718749977E2,46.3175293],[0.13378222656250017E2,46.2616211],[13.6325195,46.1770508],[0.13486425781250034E2,46.0395508],[0.13509179687500051E2,0.45973779296874994E2],[0.13613964843750068E2,45.9616699],[0.13569628906250017E2,0.45834130859374966E2],[13.7216797,0.45761279296875045E2],[0.13874707031250066E2,45.6148438],[0.13783300781250006E2,45.6272461],[13.6283203,45.7709473],[0.13465136718750045E2,45.7099609],[0.13206347656250074E2,0.45771386718749966E2],[13.0302734,45.6375],[0.12497558593749998E2,45.4616699],[0.12491796875000063E2,0.45546289062500016E2],[12.2743164,45.4460449],[0.12225683593750034E2,45.2415039],[12.2863281,45.2077148],[12.3924805,45.0397949],[0.12523437500000027E2,44.9679687],[0.12463574218750011E2,44.8452148],[0.12384472656250068E2,0.44798339843749964E2],[0.12278906250000034E2,0.44832226562499955E2],[0.12248339843750045E2,44.7225098],[0.12304980468750017E2,44.4294434],[0.12396289062500074E2,44.223877],[0.12691113281250011E2,0.43994726562500034E2],[0.12907031250000017E2,43.9211914],[13.2953125,43.686084],[13.5641602,43.5712891],[0.13693261718750051E2,43.3898926],[0.13804687500000028E2,0.43180371093749955E2],[0.13924902343750004E2,42.8515625],[0.14010449218750011E2,42.6895508],[0.14182714843750032E2,42.5064453],[14.5407227,42.2442871],[14.8661133,42.0525391],[15.16875,41.9340332],[0.15404980468749983E2,0.41913232421874994E2],[0.15964062500000038E2,41.9394531],[0.16164648437500034E2,0.41896191406249976E2],[16.1512695,41.7584961],[0.15913769531250011E2,41.6208496],[0.15900488281250034E2,41.5120605],[16.0125977,0.41435400390625006E2],[0.16551855468750063E2,0.41232031250000034E2],[17.103418,0.41062158203124994E2],[0.17474218750000034E2,40.8405762],[0.17954980468749994E2,0.40655175781250016E2],[18.0361328,40.5649414],[0.18328222656250006E2,40.3708496],[0.18460644531249983E2,0.40221044921875034E2],[0.18485839843750057E2,0.40104833984375006E2],[18.34375,39.8213867],[0.18077929687500014E2,39.9369629],[0.17865039062500074E2,40.2801758],[0.17476171875000063E2,40.3149414],[0.17257714843750048E2,0.40399072265624994E2],[17.215332,40.4864258],[17.03125,40.5134766],[16.9282227,40.4580566],[0.16669628906250068E2,40.137207],[16.5299805,39.859668],[16.521875,39.7475586],[0.16597753906249977E2,39.638916],[0.16824316406250063E2,0.39578320312500004E2],[0.16999218750000068E2,39.4815918],[0.17114550781250017E2,39.3806152],[0.17122949218750048E2,0.39136572265625006E2],[0.17174609375000017E2,0.38998095703125045E2],[17.0985352,0.38919335937499966E2],[0.16951464843750017E2,38.9397949],[0.16755468750000063E2,38.8896973],[16.6166992,38.8001465],[16.5589844,38.7147949],[16.5742188,0.38493554687499994E2],[16.5456055,38.409082],[16.2824219,0.38249560546875045E2],[16.0568359,0.37941845703124955E2],[0.15724511718750078E2,37.9391113],[0.15645800781250015E2,38.0342285],[15.6430664,0.38175390625000034E2],[15.7001953,0.38262304687500055E2],[0.15822363281250032E2,38.3029785],[0.15904785156250027E2,0.38483496093750006E2],[15.8789062,38.613916],[0.15972363281250038E2,0.38712597656249955E2],[16.1967773,0.38759228515624955E2],[16.2099609,38.9411133],[16.1074219,0.39023828125000016E2],[16.0236328,39.3536133],[0.15854394531250078E2,39.6265137],[0.15763671875000055E2,0.39870068359374955E2],[0.15692773437499994E2,39.9901855],[15.5851563,40.052832],[0.15294531250000064E2,40.0700195],[0.14950878906250042E2,40.2390137],[0.14986132812500017E2,0.40377490234375045E2],[14.9069336,0.40556054687499994E2],[14.7657227,40.6684082],[0.14339941406250004E2,40.5988281],[0.14460546875000064E2,0.40728710937500004E2],[0.14308886718750074E2,40.8126465],[0.14102343749999989E2,0.40827148437499964E2],[0.13859765625000051E2,0.41129980468750034E2],[0.13733398437500057E2,41.2356445],[0.13554785156250006E2,41.2321777],[13.246875,41.2888672],[0.13088671875000072E2,41.2438477],[0.12849218750000063E2,41.4087402],[0.12630859374999972E2,0.41469677734374955E2],[0.12205664062500032E2,41.8126465],[0.12075292968750032E2,41.9408691],[0.11807031250000023E2,42.0820313],[0.11637304687500063E2,0.42287548828124955E2],[0.11498437500000023E2,42.3629395],[11.2962891,0.42423291015624976E2],[0.11141210937499977E2,42.3898926],[0.11167773437500074E2,42.5351563],[0.10937792968750017E2,0.42738720703124955E2],[10.803125,42.8042969],[0.10708398437500023E2,42.9363281],[10.5148438,42.9675293],[0.10532324218750032E2,43.1401367],[0.10447558593750074E2,0.43371191406250006E2],[0.10320507812500038E2,0.43513085937499966E2],[0.10245800781250011E2,43.8520996],[0.10188085937500063E2,43.9475098],[0.10047656250000044E2,44.0199707],[9.73085938,44.1011719],[0.9289355468750015E1,0.44319238281249994E2],[0.9195996093750011E1,44.322998],[8.93037109,44.4077637],[8.76582031,44.4223145],[8.55195313,0.44346142578124955E2],[8.29238281,44.1365234],[8.08164063,43.9189453],[7.73330078,43.8025879],[7.49316406,43.7671387],[7.48203125,0.43864892578124966E2],[7.67714844,44.0831543],[7.63720703,44.1648438],[7.37089844,44.1273926],[6.96728516,44.2800293],[6.90019531,44.3357422],[6.84296875,44.5106934],[6.96035156,0.44677148437499966E2],[7.03066406,0.44716699218750044E2],[6.99267578,44.8272949],[6.73818359,44.9213867],[6.62773438,45.1179687],[6.84228516,0.45135644531250044E2],[7.07832031,45.2399414],[7.15341797,45.4009277],[7.01367188,45.5004883],[6.88144531,45.6703613],[6.80625,45.7100098],[6.80449219,45.8145508],[7.02109375,45.9257812],[7.12900391,45.8804199],[7.32792969,45.9123535],[7.53857422,0.45978173828124994E2],[7.78789063,45.9218262],[7.99316406,46.015918],[8.12519531,46.1609375],[8.08154297,46.2560059],[8.37070313,46.4451172],[8.44296875,46.4027832],[8.45839844,46.2458984],[8.64169922,46.110791],[8.81855469,46.0771484],[8.77802734,0.45996191406250034E2],[8.95371094,45.8300293],[0.9046679687500045E1,45.8755859],[9.02236328,0.46051464843750004E2],[9.25107422,46.2867676],[0.9260156250000023E1,0.46475195312500006E2],[0.9427636718750023E1,46.4823242],[0.9528710937500021E1,0.46306201171875045E2],[0.9639453125000017E1,46.2958984],[9.93925781,46.3618164],[0.10041015625000028E2,46.2380859],[10.1452148,46.2535156],[0.10038281250000011E2,0.46483203125000045E2],[0.10087011718750063E2,46.5999023],[0.10195507812500066E2,46.6210937],[0.10272265625000072E2,0.46564843749999966E2],[10.4306641,46.5500488],[10.3979492,46.6650391],[0.10452832031249981E2,46.8649414],[0.10689257812500017E2,46.8463867],[10.7597656,46.7933105],[0.10927343750000034E2,46.7694824],[0.11025097656250038E2,0.46796972656250006E2],[0.11133886718750006E2,46.9361816],[0.11244433593750045E2,0.46975683593750006E2],[11.5275391,46.9974121],[0.11775683593750017E2,46.986084],[0.12169433593750027E2,0.47082128906250006E2],[0.12130761718750051E2,46.9847656]],[[12.396875,43.9345703],[12.4852539,0.43901416015625045E2],[0.12503710937500017E2,43.9897461],[12.396875,43.9345703]]]]}}],"_labels":{"IT":"Italy"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/JE.json b/src/api-umbrella/admin-ui/public/maps/JE.json new file mode 100644 index 000000000..2af4a5c83 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/JE.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"JE"},"geometry":{"type":"Polygon","coordinates":[[[-2.01865234,49.23125],[-2.00991211,0.49180810546874994E2],[-2.23583984,49.1763672],[-2.22050781,49.2663574],[-2.08222656,49.2553711],[-2.01865234,49.23125]]]}}],"_labels":{"JE":"Jersey"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/JM.json b/src/api-umbrella/admin-ui/public/maps/JM.json new file mode 100644 index 000000000..bce7f940a --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/JM.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"JM"},"geometry":{"type":"Polygon","coordinates":[[[-77.2614746,18.4574219],[-76.9082031,0.18390429687500003E2],[-76.7007324,18.2571777],[-76.3498535,18.1518555],[-76.210791,0.17913525390624997E2],[-76.3014648,0.17879833984374997E2],[-76.5246094,17.8662109],[-76.8532227,17.9737305],[-76.9441406,17.8487793],[-77.0712891,17.9012695],[-77.1583984,0.17845068359374988E2],[-77.2049805,17.7149414],[-77.3614258,0.17833691406249997E2],[-77.4638672,17.8560547],[-77.7681641,0.17877392578124997E2],[-77.8812988,18.019043],[-77.9629883,0.18047558593749997E2],[-78.0736328,18.1911621],[-78.2940918,0.18218066406250003E2],[-78.3259766,0.18349755859374994E2],[-78.2166992,0.18448095703124988E2],[-77.9781738,0.18467822265625003E2],[-77.8734375,18.5222168],[-77.4516113,18.467041],[-77.2614746,18.4574219]]]}}],"_labels":{"JM":"Jamaica"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/JO.json b/src/api-umbrella/admin-ui/public/maps/JO.json new file mode 100644 index 000000000..eb8035287 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/JO.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"JO"},"geometry":{"type":"Polygon","coordinates":[[[39.1454102,32.1245117],[38.9623047,31.9949219],[36.9585937,0.31491503906249992E2],[37.4790039,0.31007763671874997E2],[37.9800781,30.5],[37.6697266,0.30348144531249996E2],[37.6335938,30.3132812],[37.4907227,30.0117188],[37.4692383,0.29995068359374994E2],[36.7552734,29.8660156],[36.7039063,29.8316406],[36.4760742,0.29495117187499996E2],[0.36068457031250006E2,0.29200537109374995E2],[36.0154297,0.29190478515624996E2],[34.9507812,29.3535156],[34.9822266,0.29484472656250002E2],[34.9734375,0.29555029296874995E2],[35.0681641,29.9778809],[35.1416016,0.30141699218749995E2],[35.140625,30.4208984],[35.1740234,0.30523925781249996E2],[35.3201172,30.8602051],[35.3830078,0.30982275390624995E2],[35.4392578,31.1324219],[35.4006836,0.31230517578124996E2],[0.35465429687500006E2,31.5623535],[35.4994141,31.6723633],[35.5589844,31.7655273],[35.5314453,0.31984912109374996E2],[35.5347656,32.1030273],[35.5720703,32.2378906],[0.35551464843750004E2,32.3955078],[0.35572851562500006E2,32.6408691],[35.6112305,32.6820801],[35.7873047,0.32734912109374996E2],[35.8947266,0.32713769531249994E2],[35.9564453,32.6666992],[36.0594727,32.5337891],[36.2197266,32.4951172],[36.3720703,32.3869141],[0.36479199218750004E2,32.3613281],[36.8183594,0.32317285156249994E2],[0.38055761718750006E2,32.994873],[0.38773535156250006E2,0.33372216796874994E2],[39.0578125,32.4931641],[38.9816406,0.32472558593749994E2],[39.0414063,32.3056641],[39.2474609,0.32350976562499994E2],[39.2927734,32.2438477],[39.1454102,32.1245117]]]}}],"_labels":{"JO":"Jordan"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/JP.json b/src/api-umbrella/admin-ui/public/maps/JP.json new file mode 100644 index 000000000..bc5a426cb --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/JP.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"JP"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.12388867187499997E3,0.24280126953124977E2],[0.12368066406250003E3,0.24288037109375008E2],[0.12377148437499996E3,24.4144531],[123.934863,0.24362011718749983E2],[0.12388867187499997E3,0.24280126953124977E2]]],[[[0.12429316406250003E3,0.24515917968750074E2],[124.234277,0.24358056640624962E2],[0.12413574218750003E3,0.24347607421874983E2],[0.12408476562500002E3,0.24435839843750017E2],[0.12429316406250003E3,0.24515917968750074E2]]],[[[0.12544414062500002E3,24.7431641],[0.12526894531250005E3,0.24732519531250063E2],[125.283594,0.24871923828125034E2],[0.12544414062500002E3,24.7431641]]],[[[142.188184,0.26616503906249985E2],[142.188184,0.26616503906249985E2],[142.188184,0.26616503906249985E2],[142.188184,0.26616503906249985E2]]],[[[0.12825878906249997E3,26.6527832],[0.12795126953125012E3,26.4564941],[0.12786708984374998E3,0.26442480468749977E2],[0.12790478515624996E3,26.328125],[0.12779013671875005E3,0.26255078124999983E2],[0.12780361328125007E3,0.26152539062499983E2],[127.653125,26.0947266],[127.654883,0.26199169921874983E2],[0.12772705078124999E3,0.26307910156250017E2],[127.728906,0.26433935546875006E2],[127.925977,26.5557129],[0.12790722656250003E3,26.6936035],[128.046777,26.6433105],[0.12821650390625004E3,26.796875],[0.12825488281249997E3,26.8818848],[0.12833164062500006E3,26.8121094],[0.12825878906249997E3,26.6527832]]],[[[0.12899814453125012E3,0.27720800781250006E2],[0.12890000000000012E3,27.7277832],[0.12888281249999994E3,0.27842431640624994E2],[0.12895166015624997E3,0.27910253906250034E2],[0.12901640625000002E3,27.7702148],[0.12899814453125012E3,0.27720800781250006E2]]],[[[0.12932402343750007E3,28.1049316],[0.12923242187499994E3,0.28101123046875017E2],[0.12919248046875012E3,0.28192480468749977E2],[0.12932402343750007E3,28.1049316]]],[[[0.12945253906250005E3,0.28208984374999968E2],[129.366406,0.28127734375000045E2],[0.12916464843750012E3,28.2497559],[0.12932246093750004E3,28.3596191],[129.509668,0.28397509765625017E2],[0.12968955078125012E3,0.28517480468750023E2],[129.710449,0.28432128906250053E2],[0.12964169921875006E3,0.28411279296874966E2],[0.12943906250000006E3,0.28254785156249994E2],[0.12945253906250005E3,0.28208984374999968E2]]],[[[0.13062275390625007E3,0.30262988281250014E2],[0.13044560546875002E3,0.30264697265625014E2],[0.13038808593750005E3,30.3881836],[0.13049716796875003E3,0.30465527343749983E2],[0.13067324218750002E3,30.3668945],[0.13062275390625007E3,0.30262988281250014E2]]],[[[0.13095976562500007E3,0.30396923828125036E2],[0.13087216796875006E3,30.3863281],[0.13094736328125012E3,0.30671191406250042E2],[0.13101220703125003E3,0.30792285156250017E2],[0.13108261718750006E3,0.30790869140625006E2],[0.13105742187500007E3,0.30642480468749962E2],[0.13095976562500007E3,0.30396923828125036E2]]],[[[0.12971796875000004E3,0.31657128906249994E2],[0.12970683593750002E3,31.7182617],[0.12978730468750004E3,31.7871094],[0.12971796875000004E3,0.31657128906249994E2]]],[[[0.13038105468750004E3,32.4237305],[0.13024169921874997E3,32.462793],[0.13036542968750004E3,32.5271973],[0.13046142578124997E3,0.32515722656250034E2],[0.13038105468750004E3,32.4237305]]],[[[0.13008251953124997E3,32.2296875],[0.13000351562500006E3,32.1939941],[0.12997929687500007E3,32.3461914],[0.13000976562499997E3,32.5216309],[0.13016777343750002E3,32.5412109],[130.199512,32.3405762],[0.13008251953124997E3,32.2296875]]],[[[0.12866533203125002E3,32.7838867],[0.12883857421875004E3,32.7628906],[0.12889453124999997E3,32.6521484],[0.12875048828125003E3,32.5861328],[0.12865732421875006E3,32.628418],[0.12866533203125002E3,32.7838867]]],[[[0.13984111328125005E3,0.33056054687499966E2],[0.13984111328125005E3,0.33056054687499966E2],[0.13984111328125005E3,0.33056054687499966E2],[0.13984111328125005E3,0.33056054687499966E2]]],[[[0.12907695312500002E3,32.8402832],[0.12899726562500004E3,32.9518555],[0.12910976562500005E3,33.1325684],[129.152734,0.33003320312499994E2],[0.12907695312500002E3,32.8402832]]],[[[0.12949179687500006E3,33.2230469],[0.12937041015625002E3,33.1760254],[0.12946191406250003E3,33.33125],[0.12956992187500006E3,33.3610352],[0.12949179687500006E3,33.2230469]]],[[[0.12979570312500007E3,33.7488281],[0.12967480468749997E3,33.7396973],[0.12971728515624997E3,33.8583984],[0.12979570312500007E3,33.7488281]]],[[[0.13117460937500007E3,0.33602587890625045E2],[131.41875,33.5844238],[0.13158300781249997E3,33.6523926],[131.696289,33.602832],[0.13171064453125004E3,33.5023438],[0.13153740234375007E3,0.33274072265624994E2],[0.13189658203125003E3,0.33254589843750004E2],[131.847852,0.33118066406249994E2],[0.13194931640625006E3,0.33047070312500004E2],[131.910449,32.9736816],[0.13200859375000007E3,0.32919042968750034E2],[0.13197666015625012E3,32.8439453],[0.13173212890625004E3,32.5928223],[0.13156464843750004E3,32.2230469],[0.13146025390625007E3,31.8834961],[0.13145996093750003E3,0.31670800781250023E2],[0.13133720703125005E3,31.4046875],[0.13107080078124997E3,0.31436865234374977E2],[0.13103515624999997E3,0.31377685546874996E2],[0.13109843750000002E3,0.31256152343750014E2],[130.902246,31.1120605],[0.13068574218750004E3,31.0151367],[130.789746,0.31269091796874985E2],[0.13070419921875006E3,0.31577441406250017E2],[0.13077978515625003E3,31.6041016],[130.77627,31.7062988],[0.13065507812500002E3,31.7184082],[130.556055,0.31563085937500034E2],[130.528125,31.459668],[0.13064453124999994E3,31.2674805],[130.58877,0.31178515625000017E2],[0.13020068359374997E3,0.31291894531250023E2],[130.147266,0.31408496093749957E2],[130.294141,0.31450683593750032E2],[130.321973,31.6014648],[0.13018789062500005E3,0.31768847656250014E2],[0.13021093750000003E3,0.31848974609375006E2],[130.194434,0.32090771484374955E2],[0.13031914062500002E3,0.32143505859374955E2],[0.13046201171875012E3,32.3049316],[0.13064052734375005E3,32.6192383],[0.13049785156250002E3,32.6569336],[0.13056943359375006E3,32.7341309],[130.547266,32.8315918],[0.13044042968749997E3,0.32951367187499955E2],[130.381738,33.0925781],[130.2375,0.33177636718749966E2],[0.13012685546875005E3,33.104834],[0.13017314453125007E3,33.0129883],[130.175,32.8513184],[0.13032646484375002E3,0.32852636718750006E2],[0.13034042968750012E3,32.7018555],[0.13024550781250005E3,0.32677148437499966E2],[0.13005410156250005E3,0.32770800781250045E2],[0.12995078125000006E3,32.7217285],[0.12976855468749997E3,32.5709961],[0.12982675781250006E3,32.7253418],[0.12969003906250012E3,32.8752441],[0.12967910156250005E3,0.33059960937499966E2],[0.12982832031250004E3,0.32892675781250006E2],[0.12999169921875003E3,32.8515625],[0.12989677734375005E3,33.0223633],[0.12958007812500003E3,0.33236279296875004E2],[0.12965996093750002E3,33.3649902],[0.12984414062499997E3,33.3217773],[0.12982568359374994E3,33.4370117],[0.13007207031250007E3,33.5217773],[0.13016796874999997E3,33.598291],[0.13036503906250007E3,0.33634472656249955E2],[130.483789,33.8346191],[130.715625,33.9277832],[130.953125,33.8720215],[0.13105810546874997E3,33.6728516],[0.13117460937500007E3,0.33602587890625045E2]]],[[[132.266016,0.33945166015625006E2],[0.13244492187500006E3,33.9131836],[0.13235996093750006E3,0.33847021484375006E2],[0.13220878906250007E3,33.8728516],[132.266016,0.33945166015625006E2]]],[[[0.13257841796875007E3,34.1151855],[0.13246093750000003E3,0.34087255859375006E2],[0.13254345703124997E3,34.1726562],[0.13257841796875007E3,34.1151855]]],[[[0.12927949218750004E3,0.34123388671875006E2],[129.186426,34.1450195],[0.12921484374999997E3,0.34320654296875034E2],[129.337109,34.2847656],[0.12927949218750004E3,0.34123388671875006E2]]],[[[0.13435742187500003E3,34.2563477],[0.13449570312500006E3,34.2147461],[134.6375,34.2266113],[0.13463525390624997E3,0.34043945312499964E2],[134.695312,33.9277344],[0.13467480468750003E3,33.8478027],[0.13473886718750012E3,33.8205078],[134.54873,33.7292969],[0.13437705078125012E3,33.6083984],[0.13424267578125003E3,33.4394531],[0.13418164062500003E3,33.2472168],[0.13395869140625004E3,33.4483398],[0.13385400390624997E3,33.4926758],[0.13363203125000004E3,33.5109863],[0.13328593750000007E3,33.3599609],[0.13310087890625002E3,0.33028222656249994E2],[0.13301601562500005E3,32.9838867],[0.13297724609375004E3,32.8419922],[0.13286992187500002E3,32.7545898],[132.641797,32.7624512],[0.13270898437500003E3,0.32902490234375044E2],[0.13249511718749997E3,32.9166016],[132.492578,33.007666],[0.13242783203125012E3,33.059375],[0.13247578125000004E3,33.1264648],[132.511426,0.33293066406250034E2],[0.13240517578125005E3,33.33125],[0.13241279296875004E3,33.4304687],[0.13228105468750007E3,33.4167969],[132.08584,0.33340136718750045E2],[0.13211445312500004E3,33.3945801],[0.13236591796875004E3,33.5124512],[0.13264306640624994E3,33.6899414],[0.13278427734375006E3,33.9924316],[0.13293515625000006E3,34.0953125],[132.990137,34.0881348],[0.13313369140625005E3,33.9272949],[0.13334980468750007E3,33.9770508],[0.13347207031250005E3,33.9728027],[0.13358203124999997E3,34.0171387],[0.13364345703125005E3,0.34134667968749994E2],[0.13360263671875006E3,34.2438477],[133.70625,0.34237353515625045E2],[0.13394833984375006E3,34.3480469],[0.13407587890625004E3,34.3583984],[0.13435742187500003E3,34.2563477]]],[[[0.13435185546875002E3,34.4836426],[134.251855,34.4230469],[0.13418212890625003E3,34.5192383],[134.325977,34.534375],[0.13435185546875002E3,34.4836426]]],[[[134.932813,34.2881348],[0.13482441406250004E3,34.2029297],[134.730664,0.34208886718749994E2],[0.13466787109375005E3,0.34294140624999955E2],[0.13483427734375002E3,34.4726562],[0.13500468750000002E3,34.544043],[134.905469,0.34398291015625034E2],[134.932813,34.2881348]]],[[[129.385645,34.3536621],[0.12936533203125003E3,34.3055176],[0.12926669921875012E3,34.370459],[0.12932939453125002E3,34.521875],[129.325879,34.6072754],[0.12945107421875005E3,34.6865723],[0.12947539062500002E3,34.5404297],[0.12938144531250006E3,34.4164551],[129.385645,34.3536621]]],[[[139.456445,34.7265137],[139.456445,34.7265137],[139.456445,34.7265137],[139.456445,34.7265137]]],[[[0.13337050781250005E3,36.2038574],[0.13323925781249997E3,0.36178759765625045E2],[0.13320615234375006E3,0.36293408203124955E2],[0.13329570312500002E3,36.3401367],[0.13337050781250005E3,36.2038574]]],[[[0.13834404296875007E3,0.37822119140625006E2],[0.13828281250000012E3,0.37854199218749955E2],[0.13832167968750002E3,0.37990820312500006E2],[0.13824619140625012E3,0.37994580078124955E2],[138.306348,38.1611328],[0.13850361328125004E3,38.315918],[0.13845361328124997E3,38.0756836],[0.13857519531249997E3,38.0655273],[0.13849697265625005E3,37.9039063],[0.13834404296875007E3,0.37822119140625006E2]]],[[[0.14122929687500005E3,41.3726562],[141.26875,41.3538086],[0.14145546875000005E3,0.41404736328124955E2],[0.14140000000000012E3,41.0963379],[0.14141367187500006E3,40.8393555],[0.14146279296875005E3,40.6111328],[141.646289,40.4736328],[141.79707,40.2911621],[0.14197783203125007E3,39.8444336],[0.14199316406249997E3,39.6105469],[0.14197695312500005E3,0.39428808593750034E2],[141.900781,39.1113281],[0.14174248046875007E3,38.9996094],[0.14165859375000005E3,38.9748535],[141.546289,0.38762841796874966E2],[0.14150878906249997E3,38.4978516],[141.46748,0.38404150390625006E2],[0.14125429687499997E3,38.3813965],[0.14110839843750003E3,38.3379395],[140.962109,0.38148876953124955E2],[0.14092792968750004E3,37.9496094],[0.14100341796874997E3,37.6984375],[141.036328,37.4672363],[0.14100166015625004E3,37.1146484],[0.14096835937500012E3,0.37002050781250006E2],[0.14079179687500002E3,36.846875],[140.627344,36.5027832],[0.14057353515625007E3,36.2313477],[0.14062197265625005E3,36.0592285],[0.14075957031250002E3,35.8457031],[0.14087402343749997E3,35.7249512],[0.14063925781250012E3,0.35661279296875044E2],[140.457422,35.5102539],[0.14041289062500002E3,35.3947754],[0.14041650390625003E3,35.2669922],[0.14031474609375002E3,35.1550293],[0.14005917968750006E3,0.35038281249999955E2],[0.13992041015624997E3,34.8996094],[0.13979921875000005E3,0.34956933593749994E2],[0.13985146484375005E3,35.2323242],[0.13982646484375002E3,35.2966797],[140.086328,35.5404297],[140.096875,35.5851562],[139.9875,35.6682129],[0.13983476562500002E3,0.35658056640625006E2],[0.13976777343750004E3,35.4948242],[0.13965000000000012E3,0.35409130859375004E2],[0.13966552734374997E3,35.3194824],[139.744043,0.35252392578124955E2],[139.635938,35.1421387],[139.474414,35.2985352],[0.13924941406250005E3,35.2780273],[0.13916269531250012E3,35.2107422],[0.13911582031250006E3,0.35097119140624955E2],[0.13912197265624997E3,34.9564941],[0.13908603515625006E3,34.8391602],[138.982617,0.34698388671874994E2],[138.8375,0.34619238281250034E2],[0.13876103515625002E3,34.6992187],[0.13880273437499997E3,34.9748047],[138.903613,35.0252441],[138.719629,35.1240723],[0.13857714843750003E3,35.0864746],[0.13850957031250002E3,34.9871582],[0.13825322265625002E3,34.732666],[0.13818906250000012E3,0.34596337890624994E2],[0.13797900390625003E3,34.640918],[137.543359,34.664209],[137.061719,34.5828125],[0.13707705078125005E3,34.6214355],[137.287793,0.34703515624999966E2],[0.13727519531250002E3,34.7725098],[0.13703222656249997E3,34.765918],[136.934766,34.8151855],[0.13694414062500007E3,0.34721533203125006E2],[0.13687128906250004E3,0.34733105468749955E2],[0.13688457031250002E3,34.8058594],[0.13685185546875005E3,35.0595215],[0.13669003906250006E3,34.9841309],[0.13653300781250007E3,0.34678369140624994E2],[0.13661582031250006E3,34.5890625],[136.880273,34.4335938],[136.853711,34.3240723],[0.13654443359374997E3,0.34257714843749994E2],[0.13632988281250007E3,34.1768555],[0.13607255859375002E3,0.33778222656250016E2],[0.13591621093750004E3,0.33561718749999955E2],[0.13569531250000003E3,33.4869629],[135.452832,33.5533691],[0.13534677734375006E3,33.7219727],[0.13517539062500006E3,33.8980469],[0.13512792968749997E3,0.34006982421874994E2],[0.13513535156250006E3,34.1826172],[0.13510009765624997E3,0.34288378906250045E2],[135.265625,34.3808105],[0.13538476562499997E3,34.5004395],[135.415918,34.6174805],[135.355176,34.6542969],[135.041699,34.6310059],[0.13492988281250004E3,0.34661816406250004E2],[0.13474003906250007E3,34.7652344],[0.13458378906250002E3,0.34770605468750034E2],[0.13420830078125002E3,34.6976563],[0.13396826171874997E3,34.5272949],[0.13387636718749997E3,34.4946289],[133.67793,0.34485888671875045E2],[133.445312,0.34433154296875045E2],[0.13314238281250002E3,34.3024414],[133.018945,34.3295898],[0.13277460937500004E3,0.34255224609375034E2],[0.13265654296875007E3,34.2460938],[132.421289,0.34353369140625034E2],[0.13231259765625006E3,34.3249512],[0.13223808593750002E3,0.34227001953124955E2],[0.13214648437499997E3,33.8387695],[0.13174052734375007E3,34.0520508],[0.13147617187500012E3,0.34019384765625034E2],[131.232617,33.947998],[131.071875,34.0206543],[130.918848,33.9757324],[130.889258,0.34261816406250034E2],[0.13100419921875007E3,34.3925781],[131.354395,34.4131836],[0.13160800781250006E3,34.6154785],[0.13185605468750006E3,34.7263184],[0.13206474609375002E3,34.9],[0.13225957031250002E3,35.0223145],[132.619043,0.35306835937499955E2],[132.697656,0.35418310546875006E2],[0.13292294921875006E3,0.35511279296875045E2],[0.13315693359375004E3,35.5588379],[0.13326718750000006E3,35.556543],[0.13337646484375003E3,0.35458837890625006E2],[0.13361542968750004E3,35.5114258],[133.860254,0.35494873046874964E2],[0.13421406250000004E3,0.35539257812499955E2],[0.13445605468749997E3,35.6279297],[134.882227,0.35663232421874994E2],[0.13517431640625003E3,35.7470703],[0.13526542968750002E3,35.7217773],[0.13523203125000012E3,0.35591894531250034E2],[0.13532695312500002E3,35.5255371],[0.13568027343750006E3,35.503125],[135.903125,35.6068848],[0.13609531250000006E3,0.35767626953125045E2],[0.13602226562500002E3,35.8741211],[136.00625,35.9905762],[136.15625,36.2233398],[136.358984,36.3617676],[0.13669814453125002E3,0.36742041015625034E2],[0.13674931640625007E3,36.9510254],[0.13671923828124997E3,37.1983887],[0.13684345703125004E3,37.3821289],[0.13719863281250005E3,37.4974609],[137.322656,37.5220703],[137.3375,0.37437451171874955E2],[0.13715205078125004E3,37.2831543],[0.13692402343750004E3,37.1719727],[0.13689990234375003E3,37.1176758],[0.13699443359375002E3,0.37026757812499966E2],[0.13701669921875003E3,36.837207],[137.12373,0.36774072265624994E2],[0.13734257812500002E3,36.7703613],[137.514062,36.9515625],[0.13791318359375012E3,37.0645996],[0.13831992187500012E3,37.2184082],[0.13854833984375003E3,37.3921387],[138.709375,0.37560644531250006E2],[0.13881884765624994E3,37.774707],[0.13888505859375007E3,37.8439453],[0.13924716796875012E3,38.009082],[0.13940097656250006E3,38.1425781],[139.476758,0.38399804687499994E2],[0.13958017578125006E3,38.598877],[0.13974912109375006E3,38.7881348],[0.13980195312500004E3,38.8815918],[139.912305,39.2285645],[0.14001083984375006E3,0.39358056640624994E2],[0.14004814453125002E3,0.39463720703125034E2],[0.14005468749999997E3,39.7492676],[0.13994521484375005E3,0.39885107421875006E2],[0.13981035156250002E3,39.8777344],[139.755469,39.9589355],[0.13987363281250012E3,39.9856934],[0.13997246093750007E3,40.1369629],[0.14001445312500002E3,0.40314892578124976E2],[0.13992392578125006E3,0.40533886718750004E2],[0.13992285156250003E3,40.5984375],[0.14002929687500003E3,40.7331543],[140.252344,40.8087891],[0.14034355468750002E3,41.0056641],[0.14031523437500002E3,41.1608887],[0.14038593750000004E3,41.2297852],[0.14062763671875004E3,0.41195410156250034E2],[0.14067939453125004E3,40.8932617],[0.14080078124999997E3,0.40834326171875034E2],[140.936035,0.40940771484375034E2],[141.118555,40.8822754],[0.14122539062500007E3,40.9884766],[141.262109,0.41102685546874994E2],[0.14120039062500004E3,41.2436035],[141.07041,41.1930664],[140.800586,0.41138818359374966E2],[0.14080185546875012E3,41.2536621],[0.14085957031250004E3,41.4254395],[140.936914,41.5055664],[0.14110585937500005E3,41.4558594],[0.14122929687500005E3,41.3726562]]],[[[139.48125,42.0810059],[0.13943134765625004E3,42.1995605],[0.13955839843750002E3,0.42235205078125034E2],[139.48125,42.0810059]]],[[[141.29541,45.1193359],[0.14114531250000002E3,0.45153906250000034E2],[0.14113535156250012E3,45.2062012],[0.14125185546875002E3,45.2324707],[141.29541,45.1193359]]],[[[0.14107275390624997E3,45.3328613],[0.14103398437500007E3,45.2693359],[0.14097167968749997E3,45.4654785],[0.14105673828125006E3,0.45449560546875034E2],[0.14107275390624997E3,45.3328613]]],[[[143.824316,44.1169922],[0.14410136718750007E3,44.1015625],[144.481836,43.9495605],[0.14479853515625004E3,0.43940234375000045E2],[0.14534277343750003E3,0.44333886718750016E2],[145.351953,44.2297852],[0.14512636718750005E3,43.8693848],[0.14510107421874997E3,43.7645508],[145.214063,0.43578222656250006E2],[0.14534082031249997E3,43.3025391],[0.14548789062500006E3,43.2797363],[0.14567363281250002E3,43.3888672],[0.14583300781249997E3,43.3859375],[0.14562421875000004E3,43.2913086],[145.505078,43.1742188],[0.14534746093750005E3,43.176709],[0.14502880859374997E3,43.0316406],[144.630762,42.9469238],[0.14430156250000007E3,42.9844238],[0.14419726562499997E3,42.9736328],[0.14396933593750006E3,42.8813965],[0.14376210937500005E3,0.42748144531250006E2],[143.580957,42.5987305],[0.14342949218750002E3,42.4188965],[0.14333212890625012E3,42.2203613],[143.313672,42.0843262],[143.236523,0.42000195312499955E2],[0.14311171875000005E3,42.0222168],[0.14290634765625006E3,42.1183594],[142.508203,42.257959],[0.14185136718750007E3,42.5790527],[0.14140664062500005E3,42.5469238],[0.14098613281250002E3,42.3421387],[0.14070976562500002E3,42.5556152],[0.14048046875000003E3,42.559375],[140.385449,0.42487158203125034E2],[0.14031523437500002E3,42.3342773],[0.14041660156250006E3,0.42200732421875045E2],[140.527539,42.1317871],[140.733789,0.42116357421874994E2],[0.14115097656250012E3,41.8050781],[0.14099951171874997E3,0.41737402343750055E2],[0.14081640624999997E3,41.7604004],[140.659863,41.8155762],[140.48916,41.672168],[140.384961,41.5192871],[140.148633,0.41423242187499994E2],[0.14003662109374997E3,0.41473779296874994E2],[0.13999531250000004E3,41.576416],[0.14010839843749994E3,0.41912939453125034E2],[0.14005683593750004E3,0.42067333984374955E2],[0.13989511718750012E3,0.42190039062500006E2],[0.13982089843750012E3,0.42387597656249994E2],[0.13989111328125003E3,42.6492188],[0.14001503906250005E3,0.42684765624999976E2],[0.14022412109375003E3,42.7955078],[0.14043222656250012E3,42.9541016],[0.14048642578125006E3,0.43049902343750034E2],[0.14039746093749997E3,43.167334],[0.14039238281250002E3,43.303125],[0.14048691406250006E3,0.43338183593750045E2],[0.14078066406250005E3,0.43214990234374994E2],[0.14113818359374997E3,43.1799316],[0.14129628906250005E3,43.1996582],[0.14141230468750004E3,0.43381494140624994E2],[141.397656,43.642627],[0.14144677734374997E3,0.43748632812500006E2],[0.14160068359375006E3,43.9189941],[0.14164472656250004E3,44.0194336],[0.14166083984375004E3,44.263623],[141.760938,0.44482519531250034E2],[0.14178222656249997E3,44.7163574],[0.14171904296875002E3,44.9410645],[0.14158300781250003E3,45.155957],[141.59375,0.45255957031250034E2],[0.14166796874999997E3,0.45401269531249966E2],[0.14182949218750005E3,45.4387695],[0.14193769531250004E3,45.5095215],[0.14241601562499997E3,45.125],[0.14270410156249997E3,44.8191895],[0.14288476562499994E3,0.44670117187499955E2],[0.14328857421875003E3,0.44396630859375016E2],[0.14365458984375007E3,44.2213379],[143.824316,44.1169922]]]]}}],"_labels":{"JP":"Japan"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/KE.json b/src/api-umbrella/admin-ui/public/maps/KE.json new file mode 100644 index 000000000..478ffccd0 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/KE.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"KE"},"geometry":{"type":"MultiPolygon","coordinates":[[[[40.9944336,-2.15839844],[0.40976464843749994E2,-2.10976563],[0.41086035156250006E2,-2.03652344],[0.41118164062499964E2,-2.10009766],[40.9944336,-2.15839844]]],[[[35.2875977,5.38408203],[0.35325292968750006E2,5.36489258],[0.35468652343749994E2,5.4190918],[0.35745019531249994E2,5.34399414],[35.7914063,5.27856445],[35.800293,5.15693359],[0.35756152343750074E2,4.95048828],[0.35763085937500044E2,4.80800781],[0.35919824218749994E2,4.61982422],[35.9787109,4.50380859],[0.36081933593749994E2,4.44970703],[0.36823632812499994E2,4.43012695],[36.9055664,4.41147461],[37.3825195,4.11083984],[37.9449219,3.74672852],[38.0861328,3.64882812],[38.225293,3.61899414],[0.38608007812500006E2,3.60009766],[38.7527344,3.55898438],[39.2254883,3.47875977],[39.4944336,3.45610352],[39.5388672,3.46918945],[39.6575195,3.57783203],[39.790332,3.75424805],[39.8421875,3.85146484],[40.0141602,3.94794922],[0.40528710937499994E2,4.17763672],[40.7652344,4.27304688],[40.8726563,4.19033203],[0.41087207031250074E2,3.99194336],[41.2208984,3.94355469],[0.41737695312499994E2,3.97905273],[41.8839844,3.97773438],[41.3417969,3.20166016],[40.9787109,2.84243164],[40.9644531,2.81464844],[40.9787109,-0.8703125],[41.521875,-1.57226563],[41.5327148,-1.6953125],[41.3869141,-1.86699219],[41.2674805,-1.94501953],[0.41106835937499994E2,-1.98232422],[40.9955078,-1.95058594],[40.9521484,-2.05595703],[0.40889746093750006E2,-2.02353516],[40.9223633,-2.19375],[40.8982422,-2.26992187],[40.8201172,-2.33632812],[40.8131836,-2.39238281],[40.6441406,-2.53945312],[40.4044922,-2.55566406],[40.2785156,-2.62861328],[40.2224609,-2.68837891],[40.1797852,-2.81904297],[40.1947266,-3.01923828],[40.128125,-3.17333984],[40.1154297,-3.25058594],[39.9916992,-3.35068359],[39.8609375,-3.57675781],[39.8191406,-3.78603516],[39.7316406,-3.99326172],[39.6371094,-4.15283203],[39.490918,-4.47841797],[39.3769531,-4.62548828],[39.2875,-4.60859375],[39.1901367,-4.67724609],[37.7972656,-3.67441406],[37.7261719,-3.55976563],[37.6220703,-3.51152344],[0.37608691406250074E2,-3.46025391],[37.6818359,-3.30576172],[37.6879883,-3.24619141],[0.37643847656250074E2,-3.04541016],[34.0515625,-1.03984375],[33.9032227,-1.00205078],[33.9,-0.831640625],[0.33924414062500006E2,-0.397851562],[33.9214844,-0.0169921875],[33.9431641,0.173779297],[34.037207,0.29453125],[0.34160937500000074E2,0.605175781],[34.2725586,0.686425781],[34.4108398,0.867285156],[34.4817383,1.04213867],[34.6491211,1.18530273],[34.7875977,1.23071289],[34.7835938,1.38115234],[34.9652344,1.64335937],[34.9775391,1.86191406],[34.9640625,2.06240234],[0.34913964843749994E2,2.23017578],[34.8830078,2.41791992],[34.9057617,2.4796875],[34.8662109,2.58969727],[34.8144531,2.61982422],[0.34742480468750074E2,2.81811523],[0.34589160156250074E2,2.92475586],[0.34522558593750006E2,3.1199707],[34.4478516,3.16347656],[34.3994141,3.41269531],[34.4417969,3.60625],[0.34392871093750074E2,3.69150391],[34.2670898,3.7331543],[34.1650391,3.81298828],[34.1857422,3.86977539],[34.1320312,3.88916016],[33.9760742,4.22021484],[34.3801758,4.6206543],[0.35268359375000074E2,5.49228516],[35.2875977,5.38408203]]]]}}],"_labels":{"KE":"Kenya"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/KG.json b/src/api-umbrella/admin-ui/public/maps/KG.json new file mode 100644 index 000000000..f1836b125 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/KG.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"KG"},"geometry":{"type":"Polygon","coordinates":[[[80.209375,42.1900391],[80.2461914,42.0598145],[80.2162109,42.0324219],[79.909668,42.0149902],[79.8404297,0.41995751953124994E2],[79.7661133,41.898877],[79.3543945,41.7810547],[79.2935547,41.7828125],[78.7425781,41.5600586],[78.3624023,41.3716309],[78.3462891,41.2814453],[78.1234375,41.0756348],[77.9564453,41.0506836],[77.8152344,41.0556152],[77.5817383,40.9927734],[77.1820313,41.0107422],[76.9866211,41.0391602],[76.8240234,40.9823242],[76.6398438,0.40742236328124996E2],[76.5779297,40.5778809],[76.4801758,0.40449511718749996E2],[76.3185547,40.3522461],[76.2583008,40.4307617],[76.1566406,40.3764648],[76.0623047,40.3875488],[75.8719727,40.3032227],[75.6771484,40.3058105],[75.5834961,40.6053223],[75.5208008,40.6275391],[75.2410156,0.40480273437499996E2],[75.0044922,0.40449511718749996E2],[74.865625,40.4935059],[74.8012695,40.4285156],[74.8417969,40.3449707],[74.6798828,0.40310595703124996E2],[74.4119141,40.137207],[73.9916016,0.40043115234374994E2],[73.8353516,39.8001465],[73.9146484,0.39606494140624996E2],[73.8229492,39.4889648],[73.6316406,0.39448876953124994E2],[73.4704102,0.39460595703124994E2],[73.2349609,0.39374560546874996E2],[72.8724609,0.39360400390624996E2],[72.6399414,39.3859863],[72.3577148,39.3368652],[72.2299805,39.2075195],[72.0427734,39.3521484],[71.805957,39.2755859],[71.7256836,39.3065918],[71.7322266,0.39422998046874994E2],[71.5033203,0.39478808593749996E2],[71.5173828,0.39553857421874994E2],[71.4703125,0.39603662109374994E2],[71.2728516,0.39535302734374994E2],[71.0650391,39.4934082],[71.0048828,39.4118652],[70.7993164,39.3947266],[70.7331055,39.4132812],[70.6078125,39.5644043],[70.3920898,39.5818848],[70.2448242,0.39542626953124994E2],[70.1368164,39.5575684],[69.7720703,39.5567383],[69.5988281,0.39573779296874996E2],[69.4632813,39.5320801],[69.2976563,0.39524804687499994E2],[69.2802734,39.6658691],[69.2291016,39.761084],[69.3072266,0.39968554687499996E2],[69.4319336,39.9097656],[69.4878906,39.9504395],[69.46875,40.020752],[69.5302734,0.40097314453124994E2],[69.9667969,40.2022461],[70.4513672,40.0492188],[70.5151367,39.9499023],[70.6241211,39.9989746],[70.6443359,40.0834473],[70.7385742,0.40131152343749996E2],[70.9463867,40.1875977],[70.9580078,40.2388672],[71.0945313,40.2712402],[71.3046875,0.40286914062499996E2],[71.5204102,40.2089844],[71.6298828,40.2171387],[71.6924805,40.1523438],[71.8454102,40.2343262],[71.9556641,40.2585937],[72.0125977,40.3407227],[72.13125,0.40438623046874994E2],[72.2328125,0.40454394531249996E2],[72.3577148,40.4016602],[72.405957,40.4630859],[72.4020508,40.5780762],[72.5674805,40.5243652],[72.6795898,40.5556152],[72.7738281,40.6503906],[73.1128906,40.7860352],[73.1321289,40.8285156],[72.9900391,40.8601074],[72.6204102,40.8837891],[72.505957,40.9816895],[72.3640625,41.043457],[72.1873047,0.41025927734374996E2],[72.1642578,0.41173730468749994E2],[72.0524414,41.1647461],[71.8786133,41.1950195],[71.8580078,41.311377],[71.7924805,0.41413134765624996E2],[71.7006836,0.41454003906249994E2],[71.6649414,41.5412109],[71.6022461,41.5032715],[71.60625,41.3674316],[71.5456055,41.3080566],[71.4208984,41.3418945],[71.4083984,0.41136035156249996E2],[71.1107422,0.41152636718749996E2],[70.7824219,41.2625],[70.734375,41.4005371],[70.6458984,0.41460351562499994E2],[70.4713867,0.41412646484374996E2],[70.2900391,41.4968262],[70.2008789,41.5144531],[70.180957,41.5714355],[70.4549805,41.7250488],[70.6308594,41.8754883],[70.8033203,41.9226563],[70.8418945,42.0196289],[71.0322266,0.42077783203124994E2],[71.2285156,42.1628906],[71.2126953,0.42206445312499994E2],[71.0360352,42.284668],[70.9467773,0.42248681640624994E2],[70.8928711,0.42339990234374994E2],[71.0019531,42.459082],[71.0227539,42.5354492],[71.2566406,0.42733544921874994E2],[71.4220703,42.7831543],[71.5142578,42.7669434],[71.8167969,0.42822167968749994E2],[72.1618164,42.7606934],[72.2757813,42.757666],[72.5431641,42.6777344],[72.7529297,42.6378906],[72.8550781,42.5611328],[73.1908203,42.5268555],[73.2829102,42.5041016],[73.4116211,42.4197754],[73.4929688,42.4090332],[73.421875,42.5935059],[73.55625,43.0027832],[73.6120117,0.43047900390624996E2],[73.8860352,43.1325684],[73.9492188,43.1950195],[74.1868164,43.2052734],[74.209082,0.43240380859374994E2],[74.6222656,43.0562012],[75.0476563,42.9043945],[75.3662109,0.42836962890624996E2],[75.6356445,0.42814599609374994E2],[75.7895508,0.42932910156249996E2],[76.5091797,42.9188965],[76.944043,42.9714844],[77.0573242,42.9706543],[77.2355469,0.42912646484374996E2],[77.8016602,42.8952148],[78.0231445,42.8575195],[78.3759766,42.8714844],[78.5242187,0.42864648437499994E2],[78.7915039,0.42790820312499996E2],[78.9479492,42.7666992],[79.1266602,42.7757324],[79.2030273,42.6660156],[79.4901367,42.4575684],[79.803418,42.4384766],[79.9210938,0.42413134765624996E2],[80.209375,42.1900391]],[[70.7016602,39.825293],[70.6982422,0.39845849609374994E2],[70.4828125,0.39882714843749994E2],[70.5595703,0.39790917968749994E2],[70.7016602,39.825293]],[[71.7796875,0.39950244140624996E2],[71.7899414,39.9953125],[71.6689453,39.9460937],[71.7529297,0.39907128906249994E2],[71.7796875,0.39950244140624996E2]],[[71.2061523,39.8925781],[71.1792969,39.979834],[71.2287109,0.40048144531249996E2],[71.0803711,0.40079882812499996E2],[71.0241211,40.1491699],[70.9762695,40.133252],[70.9744141,0.40038867187499996E2],[71.0448242,39.9925293],[71.0117188,39.8951172],[71.2061523,39.8925781]]]}}],"_labels":{"KG":"Kyrgyzstan"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/KH.json b/src/api-umbrella/admin-ui/public/maps/KH.json new file mode 100644 index 000000000..e46f180fa --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/KH.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"KH"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.10331777343749998E3,0.10718505859374986E2],[103.28125,0.10679687499999972E2],[103.223438,0.10781982421875028E2],[0.10331777343749998E3,0.10718505859374986E2]]],[[[0.10304511718750004E3,0.11285058593750023E2],[0.10299335937500004E3,0.11290429687499966E2],[0.10303681640625003E3,0.11389941406249989E2],[0.10304511718750004E3,0.11285058593750023E2]]],[[[0.10753525390625006E3,0.14649951171875045E2],[0.10744843750000004E3,0.14451220703124974E2],[107.364453,0.14368701171875044E2],[107.331445,0.14126611328125009E2],[0.10752861328125002E3,0.13654199218750051E2],[0.10760546874999997E3,0.13437792968750017E2],[107.475391,0.13030371093749963E2],[0.10748154296875006E3,12.9331055],[0.10754355468750006E3,0.12705908203125034E2],[0.10755546875000002E3,0.12539990234374983E2],[0.10750644531250006E3,12.3645508],[0.10739335937500002E3,0.12260498046874972E2],[0.10733007812500003E3,0.12319042968749997E2],[0.10715898437500007E3,0.12277050781249969E2],[0.10693066406249997E3,0.12077490234374991E2],[0.10676464843750003E3,12.0523438],[106.700098,0.11979296874999973E2],[0.10641386718750002E3,11.9484375],[0.10639921875000007E3,0.11687011718750028E2],[0.10633984374999997E3,11.6818359],[0.10610292968750004E3,0.11751269531249974E2],[106.006055,0.11758007812500011E2],[0.10592656250000007E3,0.11652929687500006E2],[0.10585146484375005E3,11.6350098],[0.10585605468750006E3,0.11294287109375048E2],[0.10589160156249997E3,0.11244824218749997E2],[0.10616796874999996E3,0.11012304687499977E2],[106.131543,0.10921972656250048E2],[0.10616396484375005E3,10.7949219],[106.098828,0.10797265625000037E2],[0.10593818359375004E3,10.8851562],[0.10585332031250007E3,10.8635742],[0.10575507812500004E3,0.10989990234375043E2],[0.10569775390624997E3,10.994043],[0.10538652343750002E3,0.10940087890625007E2],[0.10531464843750008E3,0.10845166015625026E2],[0.10515947265625002E3,0.10897558593750048E2],[0.10502226562500002E3,0.10886865234374994E2],[0.10506113281250006E3,10.7337891],[0.10485058593749997E3,0.10534472656249974E2],[0.10456425781250007E3,10.5159668],[0.10442636718750006E3,0.10411230468749991E2],[0.10426240234375004E3,0.10541259765625014E2],[103.937109,0.10586621093750024E2],[0.10387050781250004E3,0.10655126953125034E2],[0.10384052734375008E3,0.10580566406250028E2],[0.10366191406250002E3,0.10508935546875009E2],[0.10353222656249997E3,0.10604638671874966E2],[0.10354042968750005E3,0.10668701171875043E2],[0.10368085937500003E3,0.10758593749999974E2],[103.721875,0.10890136718750043E2],[0.10365429687499997E3,0.11058691406250006E2],[103.532422,0.11146679687499995E2],[0.10335361328125006E3,0.10921582031250054E2],[0.10315283203124997E3,0.10913720703125051E2],[0.10309111328125007E3,0.11211083984374966E2],[0.10312548828124997E3,0.11460644531250011E2],[0.10301054687500002E3,0.11588671874999974E2],[0.10300419921875007E3,0.11710595703125037E2],[0.10291806640625006E3,0.11732080078124964E2],[0.10273662109375007E3,12.0897949],[102.70625,0.12255664062499974E2],[0.10275566406250002E3,12.4262695],[0.10262968750000002E3,0.12569921875000048E2],[102.499609,0.12669970703125003E2],[102.461719,0.13015039062500037E2],[102.330762,0.13288232421875009E2],[0.10231972656250005E3,0.13539990234375052E2],[102.546875,0.13585693359375043E2],[0.10254472656250007E3,0.13659960937499974E2],[102.728906,0.13841894531250006E2],[0.10290927734375006E3,0.14136718750000028E2],[103.031055,0.14252539062500006E2],[0.10319941406250004E3,0.14332617187499977E2],[103.600391,0.14421093749999967E2],[0.10381835937500003E3,0.14362158203125034E2],[0.10405429687500012E3,0.14362744140624983E2],[104.227734,14.3955078],[0.10441162109374997E3,0.14369580078125038E2],[0.10477900390625004E3,0.14427832031250004E2],[0.10496972656249997E3,14.3661133],[0.10498242187500001E3,0.14289453124999966E2],[0.10507412109375004E3,0.14227441406250037E2],[105.183301,0.14346240234374989E2],[0.10524570312500006E3,0.14200537109374975E2],[0.10535019531250006E3,14.1095703],[0.10553154296875006E3,0.14156152343749993E2],[0.10573974609375003E3,0.14084960937500057E2],[0.10590449218750008E3,0.13924511718750054E2],[0.10606679687500005E3,0.13921191406250001E2],[0.10612470703125003E3,0.14049121093750031E2],[0.10600410156250004E3,0.14262890624999983E2],[105.978906,0.14343017578125043E2],[0.10616523437500008E3,0.14372363281249989E2],[106.225391,0.14476220703125009E2],[0.10635498046875003E3,0.14454785156249997E2],[0.10650146484375003E3,0.14578222656250006E2],[106.563672,0.14505078125000026E2],[0.10681992187500006E3,0.14314697265625057E2],[0.10693808593750005E3,0.14327343750000052E2],[107.030176,0.14425683593750009E2],[107.109375,0.14416699218750052E2],[0.10729267578125004E3,0.14592382812500048E2],[0.10741474609375004E3,14.5628906],[0.10751943359375005E3,14.7050781],[0.10753525390625006E3,0.14649951171875045E2]]]]}}],"_labels":{"KH":"Cambodia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/KI.json b/src/api-umbrella/admin-ui/public/maps/KI.json new file mode 100644 index 000000000..bbe8e8046 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/KI.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"KI"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-0.15178261718750002E3,-11.4410156],[-0.15180668945312493E3,-0.11451269531250034E2],[-151.819141,-0.11409277343750006E2],[-0.15180278320312496E3,-0.11392675781249991E2],[-0.15178261718750002E3,-11.4410156]]],[[[-0.15586381835937496E3,-5.62666016],[-0.15591435546874993E3,-5.63164062],[-155.928613,-5.60761719],[-0.15587226562499998E3,-5.61132812],[-0.15586381835937496E3,-5.62666016]]],[[[-0.17451293945312497E3,-4.67509766],[-0.17451293945312497E3,-4.67509766],[-0.17451293945312497E3,-4.67509766],[-0.17451293945312497E3,-4.67509766]]],[[[-172.214551,-4.51113281],[-172.214551,-4.51113281],[-172.214551,-4.51113281],[-172.214551,-4.51113281]]],[[[-0.17123320312500002E3,-4.46347656],[-171.261768,-4.45976562],[-171.252393,-4.44160156],[-0.17123320312500002E3,-4.46347656]]],[[[-154.95625,-4.08798828],[-0.15501503906249994E3,-4.04804688],[-154.951221,-4.03105469],[-0.15494335937499997E3,-4.04160156],[-154.95625,-4.08798828]]],[[[-0.17108515624999995E3,-3.13544922],[-0.17108515624999995E3,-3.13544922],[-0.17108515624999995E3,-3.13544922],[-0.17108515624999995E3,-3.13544922]]],[[[-0.17169760742187503E3,-2.76640625],[-0.17163964843749991E3,-2.81123047],[-0.17162841796874994E3,-2.85585937],[-0.17167060546875004E3,-2.84443359],[-0.17169829101562496E3,-2.82226562],[-0.17163852539062498E3,-2.84667969],[-0.17166020507812493E3,-2.79853516],[-0.17170595703124994E3,-2.77314453],[-0.17169760742187503E3,-2.76640625]]],[[[0.17477324218750013E3,-1.21191406],[0.17477890625000003E3,-1.26337891],[0.17475595703125018E3,-1.25644531],[0.17474101562500013E3,-1.18457031],[0.17471679687499997E3,-1.13369141],[0.17474414062500009E3,-1.14736328],[0.17477324218750013E3,-1.21191406]]],[[[0.16955107421875002E3,-0.873730469],[0.16952294921874994E3,-0.865625],[0.16953867187500006E3,-0.846875],[0.16955107421875002E3,-0.873730469]]],[[[0.17450869140625005E3,-0.801757812],[0.17447636718750002E3,-0.829003906],[0.17446406250000004E3,-0.804199219],[0.17447968749999995E3,-0.773632813],[174.452734,-0.647070313],[0.17440781250000012E3,-0.629785156],[0.17438105468750015E3,-0.591796875],[0.17447480468750007E3,-0.6421875],[174.49541,-0.725683594],[0.17450869140625005E3,-0.801757812]]],[[[0.17303281250000012E3,1.01313477],[0.17308652343750006E3,0.9734375],[173.061426,0.915234375],[0.17299111328125005E3,0.835449219],[172.969922,0.842773438],[0.17303857421874997E3,0.914746094],[0.17306503906250012E3,0.962695313],[173.025586,0.999072266],[0.17300371093750007E3,0.990966797],[0.17299003906250002E3,1.02509766],[0.17303281250000012E3,1.01313477]]],[[[0.17303837890625002E3,1.34208984],[0.17301132812500012E3,1.33837891],[0.17302861328125005E3,1.35874023],[0.17314335937500007E3,1.38134766],[173.171875,1.37514648],[0.17316308593750003E3,1.35751953],[173.106348,1.35708008],[0.17303837890625002E3,1.34208984]]],[[[0.17302939453125006E3,1.71738281],[0.17302363281250004E3,1.80932617],[0.17303769531250006E3,1.80439453],[0.17304521484375007E3,1.74155273],[0.17302939453125006E3,1.71738281]]],[[[173.01875,1.84570312],[0.17302363281250004E3,1.82255859],[0.17293271484375003E3,1.92592773],[0.17293476562500004E3,1.94370117],[0.17296914062500002E3,1.91269531],[173.01875,1.84570312]]],[[[-0.15734213867187503E3,1.85556641],[-0.15717578124999997E3,1.73984375],[-0.15724614257812502E3,1.73173828],[-157.420117,1.78754883],[-0.15757895507812498E3,1.90205078],[-157.531494,1.92685547],[-0.15750820312500002E3,1.88569336],[-0.15743583984374993E3,1.84726563],[-0.15739321289062494E3,1.92768555],[-157.365186,1.94609375],[-0.15749218749999997E3,2.02929687],[-0.15744189453125003E3,2.02504883],[-157.321875,1.96855469],[-0.15734213867187503E3,1.85556641]]],[[[0.17284423828124997E3,3.0512207],[172.770312,3.01254883],[0.17275048828124997E3,3.03305664],[172.777344,3.03388672],[0.17282695312500002E3,3.07109375],[0.17288710937499997E3,3.07397461],[0.17288027343750005E3,3.05351563],[0.17284423828124997E3,3.0512207]]],[[[0.17296962890625005E3,3.12919922],[172.90625,3.09589844],[0.17288710937499997E3,3.10126953],[172.9625,3.1487793],[0.17296962890625005E3,3.12919922]]],[[[-159.339063,3.92353516],[-0.15925932617187496E3,3.83920898],[-0.15927475585937503E3,3.79658203],[-0.15933227539062503E3,3.80048828],[-159.35874,3.81533203],[-0.15931367187499995E3,3.82265625],[-159.30625,3.83837891],[-0.15935419921874995E3,3.88051758],[-0.15937319335937502E3,3.88051758],[-0.15937778320312495E3,3.84663086],[-159.409033,3.87324219],[-0.15936904296874997E3,3.91699219],[-159.339063,3.92353516]]]]}}],"_labels":{"KI":"Kiribati"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/KM.json b/src/api-umbrella/admin-ui/public/maps/KM.json new file mode 100644 index 000000000..7a6c9c9cc --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/KM.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"KM"},"geometry":{"type":"MultiPolygon","coordinates":[[[[43.7886719,-0.12307031250000023E2],[43.8589844,-0.12368261718749977E2],[43.6636719,-0.12342871093749949E2],[43.6313477,-0.12247070312499972E2],[43.7886719,-0.12307031250000023E2]]],[[[0.44476367187500074E2,-12.081543],[0.44526269531249994E2,-0.12323535156250017E2],[44.4601563,-0.12335156249999983E2],[44.3774414,-12.2522461],[0.44220117187499994E2,-0.12171386718750014E2],[44.3791016,-12.165625],[0.44476367187500074E2,-12.081543]]],[[[0.43465820312499964E2,-0.11901269531249966E2],[0.43303320312500006E2,-0.11844042968750031E2],[0.43226660156250006E2,-11.7518555],[43.2560547,-0.11432128906249957E2],[43.2990234,-0.11374511718750028E2],[0.43392968750000044E2,-0.11408593749999952E2],[43.3793945,-0.11614160156249994E2],[0.43491503906250074E2,-0.11862109374999974E2],[0.43465820312499964E2,-0.11901269531249966E2]]]]}}],"_labels":{"KM":"Comoros"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/KN.json b/src/api-umbrella/admin-ui/public/maps/KN.json new file mode 100644 index 000000000..eb59a107a --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/KN.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"KN"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-62.5322266,17.121875],[-62.5824219,17.1005859],[-62.6249023,0.17129589843750008E2],[-62.6152832,0.17199121093749966E2],[-62.5341797,17.1701172],[-62.5322266,17.121875]]],[[[-62.6306641,0.17239990234375057E2],[-62.702002,0.17286035156250023E2],[-62.838916,0.17339257812500023E2],[-62.7946289,17.4025879],[-62.7137207,17.3532715],[-62.6306641,0.17239990234375057E2]]]]}}],"_labels":{"KN":"St. Kitts and Nevis"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/KP.json b/src/api-umbrella/admin-ui/public/maps/KP.json new file mode 100644 index 000000000..7d67170e3 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/KP.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"KP"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.12490527343750003E3,0.39536279296874994E2],[0.12490527343750003E3,0.39536279296874994E2],[0.12490527343750003E3,0.39536279296874994E2],[0.12490527343750003E3,0.39536279296874994E2]]],[[[0.12997695312500002E3,42.9748535],[0.13008261718750006E3,42.9741699],[0.13024033203125006E3,0.42891796874999955E2],[0.13024667968750012E3,42.7448242],[130.360742,42.6308594],[0.13049824218750004E3,0.42570507812499955E2],[0.13068730468750007E3,42.3025391],[0.13063652343750002E3,0.42274853515624955E2],[0.13045751953124997E3,42.301709],[130.235742,0.42183203125000034E2],[130.179883,0.42096972656250045E2],[0.13006826171874997E3,42.045752],[129.876367,0.41805517578125006E2],[0.12975634765624997E3,0.41712255859375006E2],[0.12968632812500007E3,41.5949707],[0.12968242187500002E3,0.41494335937500004E2],[0.12975898437500004E3,41.3915039],[0.12976582031250004E3,41.3038574],[129.712109,0.41123681640624994E2],[0.12974199218750007E3,40.9322754],[0.12970869140625004E3,0.40857324218749994E2],[129.341113,40.7263184],[0.12924511718749994E3,0.40661035156249966E2],[0.12910976562500005E3,40.4910645],[0.12884296875000004E3,40.3584961],[0.12870136718750004E3,0.40317529296874994E2],[128.610742,40.1979004],[0.12830449218750002E3,40.0359375],[128.106348,0.40032568359375006E2],[0.12796660156250002E3,39.9956055],[0.12786708984374998E3,39.8959473],[127.568164,39.7819824],[0.12752744140625008E3,39.6957031],[0.12754892578125013E3,0.39461083984375016E2],[0.12752285156250005E3,39.3773926],[0.12745742187500004E3,0.39400976562500034E2],[0.12738349609375004E3,39.2961426],[0.12739453125000003E3,0.39207910156249966E2],[0.12778613281250003E3,0.39084130859374966E2],[0.12797167968749997E3,38.897998],[128.249414,38.7452148],[0.12837460937500012E3,38.6234375],[0.12833945312500006E3,38.6078613],[128.168652,38.3593262],[128.038965,38.3085449],[0.12774550781250001E3,38.3192383],[0.12753271484375003E3,38.3049805],[0.12716953125000008E3,0.38304541015625034E2],[0.12700966796875005E3,38.2405273],[0.12675429687500005E3,37.9789551],[0.12666679687500006E3,37.9171875],[0.12666455078124996E3,37.8007324],[0.12657275390625003E3,37.7968262],[0.12636992187500007E3,37.8783691],[126.203125,0.37828515624999966E2],[0.12611669921875001E3,37.7429199],[0.12605029296874996E3,37.8698242],[0.12594169921875007E3,37.8736816],[0.12576914062500005E3,37.9853516],[125.69502,0.37962695312500045E2],[0.12558154296874997E3,37.8150391],[125.449316,37.7302246],[0.12535781250000005E3,37.7248047],[0.12531074218750003E3,37.8435059],[0.12510195312500007E3,37.8820801],[0.12498876953124996E3,37.9314453],[0.12524667968750012E3,38.0568359],[0.12516259765624996E3,0.38093652343749994E2],[0.12499501953124998E3,0.38077832031249955E2],[0.12490703125000002E3,0.38112646484375034E2],[0.12469091796874997E3,38.1291992],[0.12487451171874999E3,38.2333984],[0.12488056640625005E3,38.3416504],[0.12497373046875012E3,38.480127],[0.12506738281250003E3,0.38556738281250006E2],[0.12530966796875005E3,38.6653809],[125.554492,0.38686230468750004E2],[0.12542421875000005E3,38.746875],[0.12529892578125012E3,38.7429688],[125.168848,38.8055176],[0.12515732421875005E3,0.38871533203125004E2],[0.12540966796875003E3,39.2883789],[0.12536083984375003E3,39.5266113],[0.12510009765625003E3,39.590332],[124.775293,39.7580566],[0.12473222656250002E3,39.6521973],[0.12463828125000008E3,39.6150879],[0.12455742187500002E3,39.7905762],[0.12434863281249997E3,0.39906884765624994E2],[0.12438662109375005E3,40.104248],[0.12471240234374997E3,0.40319238281249966E2],[0.12488935546875011E3,0.40459814453125006E2],[124.996875,40.4647461],[0.12502597656250012E3,40.523877],[0.12531445312499996E3,0.40644628906250006E2],[125.416895,40.6599121],[0.12572832031250002E3,40.8666992],[0.12598906250000002E3,0.40904638671875034E2],[0.12614453124999996E3,0.41078271484374994E2],[0.12625361328125011E3,0.41137792968750034E2],[0.12641181640625008E3,41.3213379],[0.12649042968750003E3,41.3580566],[0.12660126953125004E3,0.41640966796875034E2],[126.743066,41.7248535],[0.12690351562500008E3,41.7810547],[0.12700693359375006E3,0.41742041015625034E2],[0.12717968750000001E3,0.41531347656250006E2],[0.12768769531250004E3,0.41439990234375045E2],[0.12791865234375004E3,41.4611328],[128.11123,0.41389257812500006E2],[0.12820029296875012E3,41.4330078],[128.290918,41.562793],[0.12825781250000003E3,0.41655371093750034E2],[0.12818173828125006E3,0.41700048828125006E2],[0.12803291015625004E3,41.8984863],[0.12804521484375007E3,41.9875],[128.307813,42.0256348],[0.12842724609374997E3,42.0107422],[0.12874902343749994E3,42.0406738],[0.12892343750000006E3,0.42038232421874966E2],[129.195508,42.218457],[0.12921777343750003E3,42.3126953],[129.313672,42.4135742],[0.12942363281250002E3,42.4358887],[0.12952373046875002E3,42.384668],[0.12971972656249997E3,42.475],[129.779199,42.7765625],[0.12989824218750002E3,0.42998144531250034E2],[0.12997695312500002E3,42.9748535]]]]}}],"_labels":{"KP":"Dem. Rep. Korea"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/KR.json b/src/api-umbrella/admin-ui/public/maps/KR.json new file mode 100644 index 000000000..a35d6b9f6 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/KR.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"KR"},"geometry":{"type":"MultiPolygon","coordinates":[[[[126.326953,33.2236328],[0.12624023437500003E3,33.2148438],[0.12616562500000012E3,33.3120117],[0.12633769531250003E3,33.4604004],[0.12669550781250004E3,33.5493164],[0.12690117187500002E3,33.5151367],[0.12693125000000012E3,33.4438477],[0.12687285156250002E3,33.3411621],[0.12658173828125003E3,33.2383301],[126.326953,33.2236328]]],[[[0.12675302734375006E3,34.3439941],[0.12675302734375006E3,34.3439941],[0.12675302734375006E3,34.3439941],[0.12675302734375006E3,34.3439941]]],[[[126.233691,0.34370507812499994E2],[0.12616972656250007E3,0.34355175781249955E2],[0.12612285156250002E3,0.34443945312500034E2],[0.12624746093749998E3,0.34563330078125006E2],[0.12637988281249996E3,34.4979492],[126.233691,0.34370507812499994E2]]],[[[127.799023,34.6150391],[127.799023,34.6150391],[127.799023,34.6150391],[127.799023,34.6150391]]],[[[0.12617197265625005E3,34.7311523],[0.12611523437499996E3,0.34714208984375006E2],[0.12600751953125004E3,34.8674805],[0.12607841796875003E3,0.34914843750000045E2],[0.12616855468750006E3,34.8296875],[0.12617197265625005E3,34.7311523]]],[[[128.06582,34.8058594],[0.12805468750000003E3,34.7080566],[0.12794179687500007E3,34.7662598],[0.12787343750000005E3,34.7349609],[0.12783222656250008E3,34.8745117],[127.91543,0.34920996093750034E2],[128.037988,34.8786133],[128.06582,34.8058594]]],[[[0.12874101562500007E3,34.7985352],[0.12864667968750004E3,34.7368652],[0.12848925781250003E3,34.8652832],[0.12866796875000003E3,35.0087891],[128.721875,0.35013574218749994E2],[0.12874101562500007E3,34.7985352]]],[[[126.417578,36.4925781],[126.3375,36.4705566],[0.12631855468750008E3,36.6125488],[126.417578,36.4925781]]],[[[0.13091601562499997E3,37.4784668],[130.816797,37.4784668],[0.13090371093750005E3,37.5537109],[0.13091601562499997E3,37.4784668]]],[[[0.12652070312500004E3,37.7368164],[126.516016,37.6046875],[0.12642333984375003E3,37.6236328],[0.12636933593750003E3,37.7720215],[0.12641162109374997E3,37.8226563],[0.12652070312500004E3,37.7368164]]],[[[0.12837460937500012E3,38.6234375],[0.12861884765625004E3,38.1760742],[128.852441,0.37887060546875006E2],[0.12905156250000007E3,37.6776367],[0.12933515625000004E3,0.37274560546874994E2],[0.12941826171875002E3,0.37059033203124955E2],[0.12947343750000007E3,36.7418945],[129.433008,0.36636621093749966E2],[0.12944501953125004E3,36.4707031],[0.12939257812500003E3,36.3227051],[0.12940351562500004E3,0.36052148437499994E2],[0.12945830078125007E3,0.36006445312500034E2],[0.12957285156250006E3,36.0505371],[129.561719,35.9476563],[0.12941914062500007E3,35.4978516],[0.12921416015625007E3,35.1818359],[0.12898007812500006E3,0.35101513671874955E2],[128.795703,0.35093896484374994E2],[0.12864257812499997E3,35.1195801],[128.510938,35.1009766],[0.12841884765625005E3,35.0156738],[128.443945,34.8703613],[0.12809453125000007E3,34.9335938],[0.12803623046875006E3,35.0219727],[0.12787324218750008E3,34.9663086],[0.12771484374999996E3,34.9546875],[0.12763935546875004E3,34.8896973],[0.12774218749999997E3,0.34782568359375006E2],[0.12763242187500006E3,34.6902344],[0.12752363281250003E3,34.8400879],[0.12740429687499999E3,0.34823095703125006E2],[0.12738964843749997E3,0.34743017578125034E2],[0.12747910156250012E3,34.6252441],[0.12732460937499998E3,0.34463281249999966E2],[0.12717343750000006E3,34.5461426],[0.12726054687500007E3,34.6616699],[0.12724707031249997E3,34.755127],[0.12703076171874997E3,34.6068848],[0.12689746093749996E3,34.4388672],[0.12675478515625005E3,0.34511865234374994E2],[0.12653144531250003E3,34.3142578],[126.481738,34.4939453],[0.12633261718750012E3,0.34589648437500045E2],[0.12626445312500003E3,34.6732422],[0.12630107421875003E3,34.7199707],[0.12652451171875005E3,0.34697900390624966E2],[126.472852,34.7563477],[0.12659335937500012E3,0.34824365234374994E2],[0.12642070312500002E3,0.34823388671874966E2],[126.397852,0.34932812499999955E2],[0.12629111328125012E3,35.1541504],[0.12636054687500003E3,0.35216894531250006E2],[0.12649277343750006E3,35.5012695],[0.12661406250000007E3,35.5709961],[126.488477,0.35647070312500006E2],[0.12671738281250005E3,35.7688477],[0.12675302734375006E3,0.35871972656249994E2],[0.12664746093749997E3,0.35922412109375045E2],[0.12669345703125005E3,36.0141602],[126.54043,0.36166162109374966E2],[126.548242,0.36477636718750006E2],[126.487695,36.6937988],[0.12638876953125012E3,36.6511719],[0.12618085937500004E3,36.6916016],[0.12616054687500004E3,36.7719238],[0.12621718750000004E3,36.8709473],[0.12635156249999999E3,36.9582031],[0.12657773437500005E3,37.0195801],[0.12678447265625007E3,36.9484375],[0.12683876953125004E3,36.8460938],[0.12695800781249996E3,0.36906152343749994E2],[0.12686894531250002E3,36.9757324],[0.12674638671875002E3,37.1935547],[0.12679052734374997E3,37.2949219],[126.650293,37.4471191],[0.12665683593750005E3,37.5511719],[0.12656337890625007E3,37.7165039],[0.12666455078124996E3,37.8007324],[0.12666679687500006E3,37.9171875],[0.12675429687500005E3,37.9789551],[0.12700966796875005E3,38.2405273],[0.12716953125000008E3,0.38304541015625034E2],[0.12774550781250001E3,38.3192383],[128.038965,38.3085449],[128.168652,38.3593262],[0.12833945312500006E3,38.6078613],[0.12837460937500012E3,38.6234375]]]]}}],"_labels":{"KR":"Korea"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/KW.json b/src/api-umbrella/admin-ui/public/maps/KW.json new file mode 100644 index 000000000..75e6cb612 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/KW.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"KW"},"geometry":{"type":"MultiPolygon","coordinates":[[[[48.2753906,0.29624316406250017E2],[48.1796875,29.6114258],[0.48081445312499994E2,0.29798925781250063E2],[48.1847656,0.29978857421875034E2],[0.48348242187500006E2,29.782666],[48.3402344,0.29694726562499962E2],[48.2753906,0.29624316406250017E2]]],[[[0.48136132812500044E2,0.29618115234374983E2],[0.48143457031249994E2,29.5724609],[47.9696289,29.6166992],[47.725293,29.4169434],[47.7226562,29.3930176],[47.8453125,0.29365722656250004E2],[47.9981445,0.29385546875000045E2],[48.0514648,29.3553711],[48.1837891,0.28979394531249994E2],[48.2529297,0.28901269531249962E2],[48.3392578,28.7632812],[48.3896484,0.28631591796874996E2],[0.48442480468750006E2,0.28542919921874983E2],[0.47671289062499994E2,0.28533154296875036E2],[0.47583105468750006E2,0.28627978515624985E2],[47.5212891,28.8378418],[47.4332031,28.9895508],[46.5314453,0.29096240234374985E2],[46.7693359,0.29347460937500017E2],[0.46905859375000055E2,29.5375],[47.1143555,0.29961328125000026E2],[47.1482422,30.0009766],[47.3313477,30.0796875],[47.5148437,0.30096484375000017E2],[47.6727539,30.0956055],[47.7539062,30.0766113],[47.9787109,29.9828125],[48.0056641,0.29835791015625034E2],[0.48136132812500044E2,0.29618115234374983E2]]]]}}],"_labels":{"KW":"Kuwait"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/KY.json b/src/api-umbrella/admin-ui/public/maps/KY.json new file mode 100644 index 000000000..480752fff --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/KY.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"KY"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-81.3695312,19.348877],[-81.3372559,0.19329492187500023E2],[-81.2848145,19.3625488],[-81.1304688,0.19346777343750006E2],[-81.1071289,0.19305175781250053E2],[-81.2246094,19.3041016],[-81.3037109,19.271875],[-81.4047852,0.19278417968750006E2],[-81.4190918,19.3747559],[-81.3695312,19.348877]]],[[[-79.9790039,19.7082031],[-80.020752,19.7068359],[-80.0941895,0.19665917968749994E2],[-80.1258789,0.19668359374999966E2],[-80.0836426,0.19706103515625017E2],[-79.9790039,19.7082031]]],[[[-79.8233887,0.19711914062500057E2],[-79.9062012,0.19702539062499994E2],[-79.7851563,19.765625],[-79.7422852,19.7508789],[-79.8233887,0.19711914062500057E2]]]]}}],"_labels":{"KY":"Cayman Is."}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/KZ.json b/src/api-umbrella/admin-ui/public/maps/KZ.json new file mode 100644 index 000000000..6fef34689 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/KZ.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"KZ"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.50184472656249994E2,0.44854638671874994E2],[50.0953125,44.8306152],[49.9951172,44.9369629],[50.0230469,45.0447266],[0.50109863281249964E2,0.45081933593750016E2],[0.50038867187500074E2,44.9491211],[0.50184472656249994E2,0.44854638671874994E2]]],[[[50.3117187,44.9720703],[50.2561523,45.0224121],[50.349707,45.0830078],[50.3117187,44.9720703]]],[[[52.6824219,0.45411816406249976E2],[52.5542969,0.45473974609375034E2],[0.52659570312499994E2,45.5180664],[52.6824219,0.45411816406249976E2]]],[[[70.0874023,55.1767578],[70.1824219,0.55162451171875034E2],[70.3714844,55.2122559],[70.4863281,0.55282373046874966E2],[70.7380859,55.3051758],[70.9101562,0.55127978515625045E2],[70.9917969,54.9504883],[71.1855469,54.5993164],[71.1521484,54.3640625],[71.0527344,54.260498],[71.0931641,54.212207],[71.3364258,54.1583496],[71.6771484,54.1780273],[71.8874023,54.2214844],[72.0044922,54.2056641],[72.1053711,0.54308447265625055E2],[72.1860352,54.3256348],[72.2691406,54.2721191],[72.3873047,54.1230469],[72.4042969,53.9644531],[72.4467773,53.9418457],[72.5859375,53.9959473],[72.5642578,54.0904297],[72.6222656,54.1343262],[72.9140625,54.1073242],[73.1193359,53.9807617],[73.3806641,53.9628418],[73.6179688,54.0673828],[73.7124023,54.0423828],[73.6789062,53.9294434],[73.3994141,53.8114746],[73.3056641,0.53707226562499955E2],[73.2857422,53.5983887],[73.371875,53.4543945],[73.4699219,0.53468896484374994E2],[73.6429687,0.53576269531250006E2],[73.8589844,53.6197266],[74.0686523,53.6114258],[74.2099609,53.5764648],[74.3515625,0.53487646484375006E2],[74.4027344,0.53504443359375045E2],[74.4519531,53.6472656],[74.8341797,53.8256836],[75.0521484,53.826709],[75.3770508,0.53970117187499966E2],[75.437207,54.0896484],[75.6568359,54.1060059],[75.8806641,54.1679688],[76.2666016,54.3119629],[76.4964844,54.3356934],[76.759375,0.54436865234375006E2],[76.8373047,54.4423828],[76.7889648,54.321875],[76.6545898,54.1452637],[76.4216797,0.54151513671874966E2],[76.4220703,54.1135254],[76.5756836,0.53942529296875016E2],[77.1324219,53.6701172],[77.7043945,53.3791504],[77.8599609,0.53269189453124994E2],[78.4754883,52.6384277],[79.1487305,51.8681152],[79.4688477,51.4931152],[79.7164063,51.1600098],[79.9862305,0.50774560546874966E2],[80.065918,50.7582031],[80.0863281,50.8399902],[80.2202148,50.9117676],[80.4236328,0.50946289062499964E2],[80.4522461,0.50997607421875045E2],[80.4214844,0.51136376953124966E2],[80.4480469,51.1833496],[80.6054688,51.2242187],[80.6504883,51.2773438],[80.8773437,51.2814453],[80.965625,0.51189794921875006E2],[81.1272461,51.1910645],[81.1410156,0.51146582031250006E2],[81.0714844,50.96875],[81.1246094,0.50946289062499964E2],[81.3882813,50.9564941],[81.465918,50.7398437],[81.9336914,50.7663574],[82.0980469,0.50710839843749966E2],[82.3263672,50.7418945],[82.4939453,50.7275879],[82.6117187,50.7714844],[82.7608398,50.8933594],[83.0192383,50.8972656],[83.1602539,50.989209],[83.3573242,50.9945801],[83.7177734,50.8871582],[83.9451172,50.7746582],[84.0023437,50.6768555],[84.1759766,50.5205566],[84.2578125,50.2882324],[84.3232422,0.50239160156249966E2],[84.6073242,50.2023926],[84.8389648,50.0913086],[84.9894531,0.50061425781249994E2],[85.0007813,0.49894140625000034E2],[85.2101562,49.6648438],[85.2918945,0.49599462890625034E2],[85.371582,49.6239258],[85.9335937,49.5504395],[85.9744141,49.4993164],[86.1808594,49.4993164],[86.2923828,49.5875],[86.4179687,49.6384766],[86.6101563,49.7691406],[86.7287109,49.7486816],[86.7306641,49.6955566],[86.6142578,49.6097168],[86.8121094,0.49487890625000034E2],[86.9529297,49.3220703],[87.0706055,49.2545898],[87.2336914,49.2161621],[87.3228516,49.085791],[87.0485352,0.49109912109375045E2],[86.8859375,49.0905762],[86.753125,49.0088379],[86.7578125,0.48860742187499994E2],[86.7179688,0.48697167968749966E2],[86.5494141,48.5286133],[86.265625,48.454541],[85.8298828,48.4080566],[85.7494141,48.3850586],[85.6263672,48.2040039],[85.5259766,47.915625],[85.5616211,47.7464844],[85.5866211,47.4936523],[85.6698242,47.3383789],[85.6566406,47.2546387],[85.4847656,47.0635254],[85.2334961,47.036377],[85.012207,46.9092285],[84.7861328,0.46830712890625044E2],[84.6666016,46.9723633],[84.3388672,46.9961426],[84.0160156,46.9705078],[83.634082,47.0432129],[83.1930664,47.1865723],[83.0294922,47.1859375],[83.0041016,47.0334961],[82.6921875,46.3866699],[82.5550781,46.1586914],[82.4296875,0.45811914062499966E2],[82.3152344,45.5949219],[82.3266602,45.5199219],[82.5825195,0.45442578124999955E2],[82.6257813,45.3744141],[82.5969727,0.45215966796874966E2],[82.4787109,45.123584],[82.2666016,45.2190918],[81.9892578,45.1618652],[81.7896484,45.2260254],[81.6919922,45.3493652],[81.6020508,45.3108398],[80.8533203,45.1292969],[80.6347656,0.45126513671875045E2],[80.0591797,45.0064453],[79.871875,44.8837891],[79.997168,0.44797216796875006E2],[80.2550781,44.8081055],[80.4554687,44.7460938],[80.4005859,44.6769043],[80.3363281,44.4383789],[80.365332,44.223291],[80.3552734,44.0972656],[80.431543,43.9517578],[80.4959961,43.8920898],[80.7038086,43.4270508],[80.6677734,43.3100586],[80.7297852,43.2742676],[80.7857422,43.1615723],[80.7511719,43.1024902],[80.6169922,0.43128271484375006E2],[80.3902344,0.43043115234374966E2],[80.3833984,0.42973779296874966E2],[80.54375,0.42911718750000034E2],[80.5389648,0.42873486328124955E2],[80.250293,0.42797265624999966E2],[80.1650391,42.6655273],[80.2057617,42.3994141],[80.259082,42.2354004],[80.209375,0.42190039062500006E2],[79.9210937,42.4131348],[79.803418,42.4384766],[79.4901367,42.4575684],[79.2030273,0.42666015624999964E2],[79.1266602,0.42775732421875034E2],[78.9479492,42.7666992],[78.7915039,42.7908203],[78.5242188,0.42864648437500016E2],[78.0231445,42.8575195],[77.8016602,42.8952148],[77.2355469,0.42912646484375045E2],[77.0573242,42.9706543],[76.944043,0.42971484375000045E2],[76.5091797,42.9188965],[75.7895508,42.9329102],[75.6356445,42.8145996],[75.3662109,42.8369629],[75.0476563,0.42904394531250034E2],[74.6222656,43.0562012],[74.209082,43.2403809],[74.1868164,0.43205273437499955E2],[73.9492188,43.1950195],[73.8860352,43.1325684],[73.6120117,43.0479004],[73.55625,0.43002783203125006E2],[73.421875,42.5935059],[73.4929688,0.42409033203125034E2],[73.4116211,42.4197754],[73.2829102,42.5041016],[72.8550781,0.42561132812500006E2],[72.7529297,42.6378906],[72.5431641,42.6777344],[72.2757812,0.42757666015625006E2],[72.1618164,42.7606934],[71.8167969,0.42822167968749994E2],[71.5142578,42.7669434],[71.4220703,42.7831543],[71.2566406,0.42733544921874966E2],[71.0227539,42.5354492],[71.0019531,0.42459082031250006E2],[70.8928711,0.42339990234374994E2],[70.9467773,42.2486816],[70.7152344,42.1686523],[70.6132812,42.0547363],[70.5401367,42.0394531],[70.4160156,42.0785645],[70.2258789,41.9459961],[70.0956055,41.8205078],[69.9599609,0.41754052734374994E2],[69.6638672,41.6721191],[69.4009766,41.5418945],[69.3683594,0.41490576171875034E2],[69.1536133,41.4252441],[69.0649414,41.3669434],[68.9869141,0.41205029296874955E2],[68.7371094,41.0418945],[68.584082,0.40876269531250045E2],[68.556543,40.7651367],[68.6006836,40.6599609],[68.4957031,40.6086426],[68.2918945,0.40656103515625034E2],[68.0476563,40.8092773],[68.1130859,41.0286133],[67.9357422,41.196582],[67.8050781,0.41163916015625034E2],[67.7350586,0.41187255859374964E2],[66.8142578,41.1423828],[66.709668,41.1791504],[66.6686523,41.270752],[66.5378906,41.7412598],[66.4986328,41.994873],[66.0095703,42.0048828],[66.0155273,0.42314794921875006E2],[66.0498047,0.42472753906250034E2],[66.100293,42.9908203],[65.8030273,42.8769531],[65.4961914,43.3105469],[65.2705078,0.43417529296875045E2],[65.003125,0.43649072265624966E2],[64.9054688,0.43714697265625006E2],[64.8118164,0.43693945312500034E2],[64.4431641,43.5511719],[0.63207031250000036E2,43.6279785],[62.0719727,0.43489355468750034E2],[61.9902344,43.4921387],[61.3850586,43.9939453],[61.1607422,44.1686035],[61.065332,0.44348388671874964E2],[0.61007910156250006E2,44.3937988],[0.58668945312500036E2,45.5075684],[0.58555273437500006E2,45.5553711],[58.4494141,0.45542919921874955E2],[0.57477343750000074E2,45.3374512],[55.9756836,44.9949219],[0.55977441406250044E2,41.3222168],[55.5452148,41.2627441],[55.434375,0.41296289062499994E2],[55.2496094,0.41458105468750006E2],[54.9523438,41.8100098],[54.9037109,41.9190918],[54.6779297,0.42078222656250034E2],[54.271875,42.2799805],[54.1209961,42.3352051],[53.9263672,42.3297852],[0.53685351562500074E2,42.296875],[53.2500977,42.2058594],[53.0558594,42.1477539],[52.8705078,42.0605957],[52.696875,0.41944384765625045E2],[52.4938477,0.41780371093750034E2],[52.4675781,0.41885888671875016E2],[52.4621094,42.1006348],[52.6183594,42.4282227],[52.6384766,42.5556641],[52.596582,0.42760156249999966E2],[52.4342773,42.8244629],[0.52273046875000055E2,42.7998047],[52.1836914,42.86875],[51.9607422,42.8505859],[0.51844140625000044E2,0.42910449218750045E2],[51.7003906,43.1040527],[51.6160156,43.1584473],[51.2954102,43.1741211],[51.3017578,43.482373],[51.2389648,43.576709],[51.1396484,0.43648779296875006E2],[50.9398438,0.43958544921875045E2],[50.8307617,0.44192773437499966E2],[50.6849609,0.44265087890624955E2],[0.50331152343750006E2,44.3254883],[0.50252539062500006E2,44.4064941],[50.2974609,44.581543],[0.50409472656250074E2,44.6240234],[50.8603516,44.6287598],[51.0488281,44.5304687],[0.51177148437499994E2,44.5013672],[51.3766602,0.44541210937499976E2],[0.51543554687500006E2,44.5310059],[0.51431054687499994E2,44.6019531],[51.3102539,44.61875],[0.51218164062499994E2,44.7089844],[51.0579102,44.8115723],[51.009375,44.9218262],[0.51040332031250074E2,0.44980322265625006E2],[51.2499023,0.45121679687500034E2],[0.51294042968750006E2,0.45229785156250045E2],[51.4157227,45.3578613],[0.51539648437500006E2,45.3428711],[51.7326172,45.3994629],[0.52048730468749994E2,0.45388378906250004E2],[52.5310547,45.3986328],[52.9107422,0.45319726562499966E2],[53.0789063,0.45307519531249966E2],[53.2003906,45.3319824],[0.53085742187500074E2,0.45407373046874966E2],[52.8375,0.45496728515624966E2],[52.7738281,45.5727539],[52.8875,45.779541],[0.53041601562500006E2,0.45967871093750034E2],[53.1352539,46.1916504],[53.0785156,46.5474609],[53.1702148,46.669043],[0.53069433593750006E2,46.8560547],[52.9160156,46.9543945],[52.6776367,46.9571289],[52.4832031,46.9906738],[52.340332,46.8947754],[52.1887695,0.46839501953124966E2],[52.0855469,46.8395996],[0.52011132812500044E2,46.9019043],[51.7445313,0.46933740234374994E2],[51.6500977,47.0180664],[51.1780273,0.47110156250000045E2],[0.50920019531250006E2,47.0406738],[50.5829102,46.8822754],[0.50419335937500044E2,0.46879492187500034E2],[50.30625,46.7949219],[49.9998047,46.6342773],[49.7605469,46.5714844],[0.49347460937500074E2,46.5191406],[49.3621094,46.4102051],[49.2858398,46.4368164],[49.2056641,0.46385693359374976E2],[0.49232226562500074E2,46.3371582],[48.6101563,46.5664551],[0.48509179687499994E2,46.6499512],[48.5185547,46.7343262],[48.6052734,46.765918],[48.7763672,46.7103516],[0.48950292968750006E2,46.7257812],[48.959375,46.7746094],[48.5525391,0.47320996093750004E2],[0.48109960937500006E2,47.7454102],[47.4819336,47.8039062],[0.47292382812499994E2,47.740918],[0.47202050781249994E2,47.7924805],[47.0932617,0.47947705078124955E2],[47.119043,48.127002],[47.0042969,48.2844727],[46.853125,48.323584],[0.46660937500000074E2,48.4122559],[0.46609179687500074E2,0.48573876953124994E2],[46.7026367,48.8055664],[0.46852929687499994E2,48.9696289],[0.47014257812500006E2,0.49098339843749976E2],[0.47018164062500006E2,49.1999023],[0.46852929687499994E2,49.3038574],[46.8020508,0.49367089843750016E2],[46.8231445,0.49502246093750045E2],[0.46889550781249994E2,49.6969727],[46.9919922,49.8527344],[47.2483398,50.0008789],[47.2952148,50.0584961],[47.2947266,50.2174805],[47.3264648,0.50273535156250034E2],[47.5036133,50.4027344],[47.5996094,0.50413574218749964E2],[47.7057617,50.3779785],[47.8496094,0.50282324218750055E2],[48.2248047,49.9319336],[48.4342773,0.49828515624999966E2],[48.7589844,49.9283203],[48.8432617,50.0131348],[0.48700488281250074E2,50.3537598],[48.6660156,50.5503418],[0.48625097656250006E2,50.6126953],[48.8083984,50.6013184],[49.3234375,0.50851708984374966E2],[0.49424609375000074E2,0.51027001953124994E2],[49.4980469,51.0835938],[49.8222656,0.51131884765625045E2],[49.9323242,51.197168],[50.246875,0.51289501953124976E2],[50.5163086,51.5056152],[50.7561523,0.51675146484375034E2],[50.7939453,0.51729199218749955E2],[51.1634766,51.6474609],[51.2699219,51.5944824],[0.51344531250000074E2,51.4753418],[51.609082,51.4839844],[52.0071289,51.6727051],[52.2191406,51.709375],[52.3310547,0.51681298828124966E2],[0.52496191406250006E2,0.51512158203124955E2],[52.5711914,0.51481640624999955E2],[52.8205078,51.4945801],[53.0383789,0.51463720703125034E2],[53.3380859,51.482373],[53.534668,51.3995605],[0.53688085937500006E2,51.2518066],[0.53956835937500074E2,51.1611816],[54.0415039,51.1151855],[54.2978516,50.9140625],[54.4214844,50.7803223],[54.4714844,50.5837891],[54.5961914,50.5506836],[54.65,50.6601563],[54.60625,50.8798828],[54.5460937,50.9460449],[54.6416016,0.51011572265625034E2],[54.7271484,0.50998095703125045E2],[55.0148437,0.50869775390625016E2],[0.55195214843749994E2,0.50744726562500034E2],[55.5422852,50.6018066],[55.6862305,50.5828613],[55.7976563,50.6020508],[56.049707,0.50713525390624966E2],[56.1439453,50.8446289],[56.4914063,51.0195312],[56.6202148,50.9808594],[56.8496094,51.0455566],[57.0117187,51.0651855],[57.1790039,51.0360352],[57.4421875,50.8888672],[57.6538086,0.50925146484375006E2],[57.8388672,51.0916504],[58.0451172,51.0688477],[58.1884766,51.0817383],[58.3591797,0.51063818359375034E2],[0.58547460937500055E2,0.50971044921875034E2],[58.8140625,0.50737207031249994E2],[58.8836914,0.50694433593750006E2],[59.1708984,50.6479004],[59.4523438,50.6204102],[59.5239258,50.5828125],[59.5230469,0.50492871093749955E2],[59.7511719,0.50543945312499964E2],[59.8124023,50.5820312],[0.59955175781250055E2,50.7992676],[0.60005273437500044E2,0.50839697265625006E2],[60.1121094,50.8341797],[60.2880859,50.7041504],[0.60637988281250074E2,50.6637207],[60.9422852,50.6955078],[61.2268555,50.7748047],[61.3894531,50.8610352],[61.4650391,50.9902344],[0.61512207031249964E2,51.1370117],[0.61585058593750006E2,51.2296875],[61.5546875,51.3246094],[0.61363085937500074E2,51.4418945],[61.0148438,51.4923828],[0.60973535156250044E2,51.5370605],[0.60464746093749994E2,0.51651171875000045E2],[60.3875,51.772998],[60.2803711,51.8346191],[0.60067480468750006E2,51.890625],[60.0655273,51.9764648],[60.2336914,52.0245117],[60.4254883,52.1255859],[60.6703125,52.1508301],[0.60937597656250006E2,52.2805664],[0.60979492187499964E2,52.3947754],[60.8212891,52.5698242],[0.60774414062499964E2,52.6757812],[0.60802343750000055E2,52.7447266],[0.61047460937500006E2,52.9724609],[61.4007813,52.9959961],[0.61974218750000055E2,52.94375],[62.0827148,53.0054199],[62.0146484,53.1078613],[0.61766210937500055E2,0.53173925781250034E2],[61.6598633,53.2284668],[0.61436816406250074E2,0.53239404296875044E2],[0.61199218749999964E2,53.2871582],[61.162793,53.3367676],[61.2289062,0.53445898437500006E2],[61.4009766,53.4558105],[61.5349609,53.523291],[61.4099609,0.53587060546874994E2],[61.2479492,0.53550976562500004E2],[0.60979492187499964E2,0.53621728515625044E2],[61.1131836,53.7534668],[61.14375,53.9638184],[61.3336914,54.0492676],[0.61598144531249964E2,0.53994921875000045E2],[61.9287109,53.9464844],[62.0402344,54.0026367],[62.4990234,54.0131836],[62.6327148,0.54069287109375004E2],[63.0739258,54.1052246],[63.1913086,54.1710449],[63.4136719,54.1832031],[0.63721191406249964E2,54.2450195],[0.63847070312500044E2,54.2364746],[64.0039063,0.54267089843749964E2],[64.1994141,54.3474121],[64.4612305,54.3841797],[64.6499023,0.54352246093750004E2],[64.9267578,0.54396630859374994E2],[65.0883789,0.54340185546875034E2],[65.1578125,0.54364404296874994E2],[65.2374023,54.5160645],[65.4769531,0.54623291015624964E2],[65.7078125,54.6187012],[65.9142578,54.6933105],[65.9546875,0.54659521484375006E2],[66.2226562,0.54667382812499994E2],[67.0983398,0.54788183593750006E2],[67.2573242,54.8288086],[67.6933594,54.8724121],[67.8298828,54.9435547],[68.0738281,0.54959570312500006E2],[68.209375,55.0030273],[68.244043,55.0524414],[68.20625,55.1609375],[68.5248047,55.204834],[68.7128906,55.3084961],[68.9772461,0.55389599609374955E2],[69.4932617,0.55356884765624955E2],[69.7402344,55.307373],[69.9817383,0.55199072265625034E2],[70.0874023,55.1767578]]]]}}],"_labels":{"KZ":"Kazakhstan"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/LA.json b/src/api-umbrella/admin-ui/public/maps/LA.json new file mode 100644 index 000000000..a6622fc6a --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/LA.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"LA"},"geometry":{"type":"Polygon","coordinates":[[[0.10212744140625011E3,22.3791992],[0.10218300781250002E3,22.2840332],[0.10244267578124999E3,22.0271484],[102.4875,0.21957763671875114E2],[0.10258251953125006E3,0.21904296875000057E2],[0.10264082031250007E3,21.7114258],[0.10269531249999994E3,0.21662109375000057E2],[0.10277109375000013E3,21.709668],[102.815918,21.807373],[0.10284521484375011E3,0.21734765625000136E2],[0.10294960937500008E3,0.21681347656250068E2],[0.10294863281250008E3,0.21569775390625068E2],[102.8875,0.21439941406250114E2],[0.10285117187500009E3,21.265918],[103.104492,20.8916504],[0.10321074218749999E3,20.840625],[0.10346357421874995E3,0.20779833984375102E2],[103.635059,0.20697070312500102E2],[0.10371445312500009E3,0.20716943359375076E2],[103.790527,20.8095215],[0.10405205078124999E3,0.20941210937500102E2],[104.195312,20.9139648],[104.349609,20.8210937],[0.10458320312500001E3,0.20646679687499955E2],[104.532715,0.20554882812500125E2],[0.10436777343750015E3,0.20441406250000057E2],[0.10461884765624995E3,20.3745117],[0.10469873046875006E3,0.20205322265625114E2],[0.10481269531250001E3,20.2168457],[0.10488867187500006E3,20.1690918],[0.10492792968750007E3,20.0181152],[0.10481513671875001E3,19.9040039],[0.10474316406250006E3,0.19754736328124977E2],[0.10458789062500004E3,19.61875],[0.10454628906250014E3,0.19610546875000065E2],[0.10425986328125003E3,0.19685498046875068E2],[0.10403203124999999E3,19.6751465],[104.013477,0.19646484374999943E2],[0.10406289062500002E3,0.19482568359375136E2],[0.10402753906250013E3,0.19420458984375102E2],[0.10389638671875001E3,0.19339990234375023E2],[0.10391835937500008E3,0.19268505859375068E2],[0.10410859375000013E3,0.19195556640625114E2],[0.10471650390624995E3,0.18803417968749955E2],[104.993164,0.18728320312499932E2],[105.146484,0.18650976562499977E2],[0.10508583984375008E3,0.18450097656250136E2],[0.10516328125000007E3,0.18338720703124977E2],[0.10533349609375004E3,18.1896484],[0.10545820312500005E3,0.18154296875000057E2],[0.10558847656250015E3,0.17983691406249932E2],[0.10562724609375003E3,0.17834423828125068E2],[105.691406,0.17737841796874932E2],[106.00625,17.4152832],[106.269531,0.17216796875000057E2],[0.10642597656250007E3,17.0025391],[0.10650224609374999E3,16.9541016],[0.10654619140625003E3,0.16650732421874974E2],[0.10669609375000005E3,16.4589844],[0.10683242187500007E3,16.5262695],[0.10693066406250006E3,16.353125],[0.10706972656250014E3,0.16279833984375102E2],[0.10721738281250003E3,0.16136328124999974E2],[0.10739638671875008E3,0.16043017578124985E2],[0.10736064453125005E3,0.15921728515624979E2],[0.10718886718750008E3,0.15838623046875114E2],[0.10716591796875002E3,0.15802490234374998E2],[0.10727939453125003E3,0.15618701171875045E2],[0.10756425781249999E3,0.15391601562499998E2],[107.653125,0.15255224609375091E2],[0.10755527343750009E3,0.15057031250000021E2],[0.10748037109375012E3,0.14979882812500136E2],[0.10752451171875003E3,0.14871826171874943E2],[0.10751943359375007E3,0.14705078125000112E2],[0.10741474609375007E3,0.14562890625000078E2],[0.10729267578125007E3,0.14592382812500032E2],[107.109375,0.14416699218749955E2],[0.10703017578125008E3,0.14425683593750021E2],[0.10693808593750015E3,0.14327343750000068E2],[0.10681992187500003E3,0.14314697265624943E2],[0.10656367187500007E3,0.14505078125000011E2],[0.10650146484374999E3,0.14578222656250034E2],[0.10635498046874999E3,0.14454785156250066E2],[0.10622539062500005E3,0.14476220703125021E2],[0.10616523437500007E3,0.14372363281249989E2],[0.10597890625000014E3,0.14343017578125059E2],[0.10600410156250013E3,0.14262890625000066E2],[0.10612470703124995E3,0.14049121093750045E2],[0.10606679687500008E3,0.13921191406250102E2],[0.10590449218750007E3,0.13924511718750068E2],[0.10573974609375006E3,0.14084960937500057E2],[105.531543,0.14156152343750023E2],[0.10535019531250009E3,0.14109570312500125E2],[0.10524570312500015E3,0.14200537109374975E2],[0.10518330078125001E3,0.14346240234374989E2],[0.10534218750000008E3,0.14416699218749955E2],[0.10547558593750006E3,0.14530126953124977E2],[0.10549736328125005E3,0.14590673828125034E2],[0.10554667968749999E3,0.14932470703125034E2],[0.10549042968750007E3,0.15127587890625023E2],[0.10551318359375011E3,0.15360888671874932E2],[105.57373,0.15413232421875135E2],[0.10563886718750013E3,0.15585937499999945E2],[0.10562207031250006E3,0.15699951171875114E2],[0.10539892578125011E3,0.15829882812500102E2],[0.10537558593750013E3,0.15942187500000045E2],[105.40625,0.15987451171875023E2],[0.10533066406250003E3,0.16037890625000042E2],[105.14873,16.0935547],[0.10504716796874999E3,16.1602539],[0.10494990234375007E3,16.3399414],[0.10481933593749994E3,0.16466064453125057E2],[0.10475058593750013E3,0.16647558593750034E2],[0.10474355468750014E3,16.884375],[0.10475898437500013E3,17.0771484],[0.10481601562499998E3,17.300293],[0.10473964843750008E3,17.4616699],[0.10465585937500003E3,17.5467285],[104.428125,0.17698974609375057E2],[0.10419619140625002E3,0.17988378906250034E2],[0.10404873046875002E3,0.18216699218749966E2],[0.10394960937500007E3,0.18318994140625023E2],[0.10379228515624999E3,18.3165039],[0.10348798828124994E3,18.4181641],[0.10336699218750005E3,18.4233398],[0.10325175781249999E3,0.18373486328125125E2],[0.10327958984374997E3,0.18304980468750045E2],[0.10314853515625008E3,18.2217285],[0.10305136718750003E3,18.0285156],[0.10271757812500005E3,0.17892236328125133E2],[102.660645,17.8179687],[0.10259824218750009E3,0.17926757812500057E2],[0.10235185546874999E3,0.18045947265625045E2],[0.10214824218750003E3,0.18203857421875057E2],[0.10210146484375014E3,18.2106445],[0.10194746093750001E3,0.18081494140624955E2],[0.10177480468750002E3,0.18033398437500125E2],[101.6875,0.17889404296875114E2],[0.10141367187500015E3,17.71875],[0.10116748046875011E3,17.4990234],[101.105176,0.17479541015625102E2],[100.908496,0.17583886718750023E2],[0.10111328125000006E3,0.18033544921874977E2],[0.10114394531250008E3,18.142627],[101.1375,0.18286865234375057E2],[101.050586,0.18407031250000045E2],[0.10106044921875014E3,0.18479003906249943E2],[0.10116552734375006E3,18.6183105],[0.10128632812499995E3,0.18977148437500034E2],[0.10127988281250009E3,0.19088916015625045E2],[0.10119755859374999E3,0.19327929687500045E2],[0.10121191406250011E3,0.19548339843750057E2],[0.10096650390625001E3,0.19610791015624955E2],[0.10085820312499999E3,0.19585058593750034E2],[0.10074394531249999E3,19.5147461],[100.625488,19.4998535],[0.10051357421875007E3,19.5534668],[0.10042011718750007E3,0.19644482421875068E2],[0.10039765625000011E3,0.19756103515625057E2],[0.10054306640625009E3,20.0886719],[0.10051953125000006E3,0.20177929687500068E2],[0.10043154296875008E3,0.20240722656250057E2],[0.10031796875000003E3,0.20385888671875136E2],[0.10011494140625007E3,20.257666],[100.183887,0.20589111328124943E2],[100.249316,0.20730273437499932E2],[0.10032607421875008E3,0.20795703124999932E2],[0.10049335937500007E3,20.8129883],[0.10062294921875002E3,20.8595703],[0.10052226562500009E3,0.20921923828125102E2],[0.10053613281250006E3,0.20992382812500068E2],[0.10061367187500007E3,0.21059326171874996E2],[100.703125,21.2513672],[0.10075664062500005E3,0.21312646484375136E2],[0.10092753906250005E3,0.21366210937499996E2],[0.10108037109375009E3,0.21468652343750076E2],[0.10113886718750011E3,0.21567480468749977E2],[0.10119667968750002E3,0.21522070312499977E2],[0.10117539062500008E3,0.21407519531250102E2],[0.10121992187500011E3,0.21342431640625136E2],[0.10122441406249999E3,21.2237305],[0.10128144531250007E3,0.21184130859375042E2],[0.10154238281250007E3,0.21234277343750136E2],[0.10170478515625011E3,0.21150146484375057E2],[101.800586,0.21212597656249955E2],[0.10172294921875009E3,0.21314941406250057E2],[0.10174726562500007E3,21.6057617],[101.736523,0.21826513671874977E2],[0.10160292968749997E3,21.9896973],[0.10152451171874998E3,22.2536621],[101.619922,22.3274414],[0.10167148437500008E3,0.22462304687500023E2],[0.10175996093750001E3,0.22490332031250034E2],[101.841797,0.22388476562500102E2],[0.10202441406250006E3,22.439209],[0.10212744140625011E3,22.3791992]]]}}],"_labels":{"LA":"Lao PDR"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/LB.json b/src/api-umbrella/admin-ui/public/maps/LB.json new file mode 100644 index 000000000..4cc4f9c1c --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/LB.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"LB"},"geometry":{"type":"Polygon","coordinates":[[[35.8691406,33.4317383],[0.35734472656250006E2,33.3326172],[35.5325195,33.2504883],[35.4931641,33.1194824],[0.35411230468750006E2,33.0756836],[35.2233398,33.0919922],[35.1085937,33.0836914],[35.2035156,33.2589844],[0.35251367187500016E2,0.33392626953124996E2],[35.3357422,0.33503466796874996E2],[0.35510839843750006E2,33.8797363],[35.6118164,34.0321777],[35.6478516,34.2482422],[35.8042969,0.34437402343749994E2],[35.9779297,0.34547412109374996E2],[35.9762695,0.34629199218749996E2],[36.2635742,0.34632861328124996E2],[36.2962891,34.6787109],[36.4330078,34.6134766],[0.36326269531250006E2,0.34513330078124994E2],[36.5043945,34.432373],[36.5849609,0.34221240234374996E2],[36.4575195,34.0568359],[36.2978516,0.33958642578124994E2],[36.2822266,0.33894189453124994E2],[0.36348535156250016E2,33.8270508],[36.0921875,0.33831591796874996E2],[35.968457,33.7324219],[35.9423828,33.6675781],[36.0266602,0.33597949218749996E2],[36.0222656,33.5625],[35.8691406,33.4317383]]]}}],"_labels":{"LB":"Lebanon"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/LC.json b/src/api-umbrella/admin-ui/public/maps/LC.json new file mode 100644 index 000000000..feb02a78a --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/LC.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"LC"},"geometry":{"type":"Polygon","coordinates":[[[-60.8952148,0.13821972656249995E2],[-60.951416,13.7175781],[-0.61060644531249984E2,0.13783105468749993E2],[-61.0635742,0.13915576171875003E2],[-0.60908105468749994E2,14.0933594],[-60.8952148,0.13821972656249995E2]]]}}],"_labels":{"LC":"Saint Lucia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/LI.json b/src/api-umbrella/admin-ui/public/maps/LI.json new file mode 100644 index 000000000..2988f6072 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/LI.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"LI"},"geometry":{"type":"Polygon","coordinates":[[[0.9580273437500011E1,47.057373],[0.9487695312500023E1,47.0622559],[9.47949219,47.0975098],[0.9484277343750023E1,47.1726563],[0.9527539062500011E1,47.270752],[9.571875,47.1579102],[9.60117188,47.1320801],[0.9610546875000011E1,47.1071289],[0.9580273437500011E1,47.057373]]]}}],"_labels":{"LI":"Liechtenstein"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/LK.json b/src/api-umbrella/admin-ui/public/maps/LK.json new file mode 100644 index 000000000..9eac2d178 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/LK.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"LK"},"geometry":{"type":"MultiPolygon","coordinates":[[[[79.8748047,9.05073242],[79.9037109,8.975],[79.7476563,0.9104589843749991E1],[79.8748047,9.05073242]]],[[[79.9695313,9.63066406],[79.9068359,0.9619824218749967E1],[79.8884766,0.9741162109374997E1],[79.9695313,9.63066406]]],[[[79.9823242,0.9812695312500011E1],[80.252832,9.79633789],[80.3759766,9.64233398],[80.7111328,0.9366357421875023E1],[80.893457,0.9085888671874997E1],[80.9354492,8.97148437],[81.0160156,8.93261719],[81.1982422,8.66196289],[81.2269531,8.50551758],[81.3728516,8.43144531],[81.4359375,8.11889648],[81.6654297,7.7824707],[81.6829102,7.68447266],[81.8741211,7.28833008],[81.8614258,6.90126953],[81.7677734,6.61430664],[81.6374023,6.42514648],[81.3799805,6.24091797],[80.7241211,5.97905273],[80.4958008,5.94936523],[80.2673828,6.00976562],[80.0953125,6.15317383],[80.0072266,6.3644043],[79.859375,6.82929687],[79.7920898,7.58520508],[79.7078125,8.06567383],[79.7498047,8.29423828],[79.749707,8.04887695],[79.8088867,8.05],[79.8508789,8.41157227],[79.9417969,8.69150391],[79.9289062,8.89921875],[80.0648437,9.0956543],[80.1183594,0.9326855468749967E1],[80.0863281,9.57783203],[80.3179688,9.46542969],[80.4283203,9.48095703],[80.2576172,0.9611279296875011E1],[80.0458008,9.64990234],[79.9540039,9.74233398],[79.9823242,0.9812695312500011E1]]]]}}],"_labels":{"LK":"Sri Lanka"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/LR.json b/src/api-umbrella/admin-ui/public/maps/LR.json new file mode 100644 index 000000000..55c221567 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/LR.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"LR"},"geometry":{"type":"Polygon","coordinates":[[[-8.48642578,7.55849609],[-8.4371582,7.51640625],[-8.29663086,7.07402344],[-8.33256836,6.8015625],[-8.4012207,6.70512695],[-8.60356445,6.5078125],[-8.44990234,6.4625],[-8.34487305,6.35126953],[-8.20385742,6.29072266],[-7.9815918,6.28613281],[-7.88862305,6.23486328],[-7.7965332,5.97509766],[-7.73037109,5.91904297],[-7.63613281,5.90771484],[-7.51391602,5.84204102],[-7.45439453,5.84130859],[-7.39990234,5.55058594],[-7.42890625,5.47788086],[-7.42983398,5.32451172],[-7.48520508,5.23642578],[-7.50976562,5.10849609],[-7.56889648,5.08066406],[-7.59121094,4.8215332],[-7.57158203,4.38642578],[-7.66000977,4.36679687],[-7.99824219,4.50869141],[-8.2590332,4.58999023],[-0.9132177734374977E1,5.05463867],[-9.37475586,5.24106445],[-0.9654394531249977E1,5.51870117],[-10.2763672,6.07763672],[-0.10418164062499983E2,6.16733398],[-0.10597070312499994E2,6.2109375],[-0.10785595703124983E2,6.31015625],[-0.10849023437499993E2,6.46508789],[-0.11004541015624994E2,6.55737305],[-0.11291601562499977E2,6.68823242],[-0.11507519531249983E2,6.90654297],[-0.11454541015624981E2,6.9512207],[-0.11376660156249981E2,7.09467773],[-0.11267675781249975E2,7.23261719],[-0.11085400390624983E2,7.39858398],[-0.10878076171874994E2,7.53823242],[-0.10691308593749994E2,7.73642578],[-10.6474609,7.759375],[-0.10570849609374989E2,8.07114258],[-0.10516748046874994E2,8.12529297],[-0.10389550781249994E2,8.15761719],[-0.10314648437499983E2,8.31083984],[-10.2832031,8.48515625],[-0.10147412109374983E2,8.51972656],[-0.10064355468749994E2,8.42988281],[-0.9768261718749983E1,8.53457031],[-9.7355957,8.45395508],[-9.66357422,8.47353516],[-0.9518261718749981E1,8.34609375],[-0.9508496093749983E1,8.17626953],[-9.48413086,8.15698242],[-0.9436328124999989E1,7.86669922],[-9.39492187,7.79462891],[-0.9368945312499989E1,7.63955078],[-0.9463818359374983E1,7.41586914],[-0.9263281249999977E1,7.37773437],[-9.11757812,7.21591797],[-8.96098633,7.27460937],[-8.88964844,7.26269531],[-8.82792969,7.39194336],[-8.74023438,7.49570312],[-8.70830078,7.65888672],[-8.57885742,7.67705078],[-8.48642578,7.55849609]]]}}],"_labels":{"LR":"Liberia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/LS.json b/src/api-umbrella/admin-ui/public/maps/LS.json new file mode 100644 index 000000000..54dcde2cb --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/LS.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"LS"},"geometry":{"type":"Polygon","coordinates":[[[0.28736914062500002E2,-30.1019531],[28.634375,-0.30128710937500003E2],[28.3920898,-0.30147558593750006E2],[28.3154297,-0.30218457031250015E2],[0.28139062500000023E2,-30.4499023],[0.28128710937500014E2,-0.30525097656250008E2],[28.0568359,-0.30631054687500015E2],[0.28018164062500006E2,-30.6422852],[27.753125,-30.6],[0.27666601562500006E2,-30.5422852],[0.27491992187500017E2,-0.30363964843750015E2],[0.27388476562500014E2,-30.315918],[0.27349707031250006E2,-30.2473633],[27.3553711,-30.1585938],[27.2397461,-30.015332],[27.1304687,-29.8402344],[27.0517578,-29.6640625],[0.27095214843749996E2,-29.5993164],[27.2945312,-0.29519335937500003E2],[0.27356835937500023E2,-29.4552734],[27.4580078,-29.3027344],[0.27527148437500017E2,-29.2361328],[27.7355469,-0.28940039062500006E2],[0.27959863281250023E2,-0.28873339843750003E2],[28.084375,-0.28779980468750008E2],[0.28232617187500008E2,-28.7012695],[28.471875,-0.28615820312500006E2],[0.28625781250000017E2,-28.5817383],[0.28721777343750002E2,-28.6876953],[28.85625,-0.28776074218750008E2],[0.28953710937500006E2,-0.28881445312500002E2],[29.1780273,-0.29036914062500003E2],[0.29301367187500002E2,-29.0898438],[0.29390722656250006E2,-0.29269726562500008E2],[29.3488281,-0.29441992187500002E2],[0.29293554687500002E2,-29.5668945],[29.1421875,-0.29700976562500003E2],[0.29098046875000023E2,-0.29919042968750002E2],[0.28901074218750015E2,-0.30038476562500005E2],[0.28736914062500002E2,-30.1019531]]]}}],"_labels":{"LS":"Lesotho"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/LT.json b/src/api-umbrella/admin-ui/public/maps/LT.json new file mode 100644 index 000000000..4cba47976 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/LT.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"LT"},"geometry":{"type":"MultiPolygon","coordinates":[[[[21.0317383,0.55350488281249994E2],[0.20957812500000074E2,55.2789063],[0.20899804687500076E2,0.55286669921875045E2],[21.0140625,55.4019531],[21.1148437,55.6165039],[21.1039063,55.4877441],[21.0317383,0.55350488281249994E2]]],[[[0.24943847656249968E2,56.3255859],[25.0699219,56.2003906],[0.25585742187500017E2,56.1301758],[0.25663183593750063E2,0.56104833984375006E2],[0.26085546875000063E2,55.896875],[26.28125,55.7504395],[26.5935547,55.6675293],[0.26566601562500008E2,0.55546484375000034E2],[0.26457617187500006E2,0.55342480468749955E2],[0.26775683593750045E2,55.2730957],[0.26648437500000053E2,0.55204199218750034E2],[0.26601171875000034E2,0.55130175781250045E2],[26.2917969,55.1395996],[0.26175195312500023E2,0.55003271484375034E2],[0.26092968750000068E2,54.9623047],[25.8592773,54.9192871],[0.25722460937500074E2,54.7178711],[25.7248047,0.54564257812500045E2],[25.6203125,0.54460400390625004E2],[25.5575195,0.54310693359374994E2],[0.25702539062499994E2,54.2929688],[25.7650391,54.2211914],[25.7492188,54.1569824],[0.25573046875000014E2,54.1398926],[0.25461132812500036E2,54.2927734],[0.25179492187500014E2,0.54214257812499966E2],[25.0460938,54.1330566],[0.24869531250000023E2,54.145166],[24.8256836,0.54118994140625006E2],[0.24768164062499977E2,53.9746582],[0.24620703125000063E2,53.979834],[24.3179687,0.53892968749999966E2],[24.1913086,53.9504395],[0.23872558593750057E2,0.53935693359374966E2],[23.7336914,0.53912255859374994E2],[0.23484667968750074E2,0.53939794921875006E2],[0.23453613281250053E2,54.143457],[0.23370117187499996E2,54.2004883],[23.1703125,54.2814453],[0.23042187500000068E2,54.3041992],[23.0155273,0.54348339843750004E2],[22.8237305,54.3958008],[0.22766210937499977E2,0.54356787109375034E2],[0.22679882812500068E2,0.54493017578125006E2],[22.709668,54.6326172],[22.83125,0.54838476562500034E2],[0.22736523437500068E2,0.54928857421874966E2],[0.22627441406250057E2,0.54970703124999964E2],[22.5672852,55.0591309],[0.22072363281250034E2,55.0636719],[0.21873925781250023E2,0.55100732421874994E2],[21.5546875,55.1953125],[0.21389257812500034E2,0.55275537109374994E2],[0.21235742187500023E2,55.2641113],[0.21201074218750076E2,0.55343798828125045E2],[0.21237890625000034E2,55.4550293],[21.1710938,55.6177246],[0.21061914062500048E2,55.8134277],[21.0460938,56.0700684],[0.21314648437500036E2,56.1881348],[21.6535156,0.56314550781250006E2],[0.22084570312500034E2,56.4067383],[0.22586914062500057E2,0.56375097656250006E2],[0.22875585937500063E2,56.3964355],[0.23042968750000053E2,0.56324072265625006E2],[0.23195898437500034E2,56.3671387],[23.6126953,0.56333837890625034E2],[23.8126953,0.56329248046874994E2],[0.24120703125000063E2,56.2642578],[24.5290039,56.2962891],[0.24699511718750045E2,0.56381298828125004E2],[0.24903027343750008E2,56.3981934],[0.24943847656249968E2,56.3255859]]]]}}],"_labels":{"LT":"Lithuania"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/LU.json b/src/api-umbrella/admin-ui/public/maps/LU.json new file mode 100644 index 000000000..2194c2b35 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/LU.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"LU"},"geometry":{"type":"Polygon","coordinates":[[[6.11650391,0.50120996093749994E2],[6.10976563,50.034375],[6.13818359,49.9743164],[6.25605469,49.872168],[6.32460938,49.8378906],[6.48730469,49.7984863],[6.48476563,49.7078125],[6.40673828,49.6449707],[6.3484375,49.5126953],[6.34433594,49.4527344],[6.2421875,49.4943359],[6.11992188,49.4852051],[6.07412109,49.4546387],[5.95947266,49.4546387],[5.8234375,49.5050781],[5.78974609,49.5382812],[5.88037109,49.6447754],[5.78798828,49.7588867],[5.725,49.8083008],[5.74404297,49.9196289],[5.86689453,50.0828125],[5.97626953,50.1671875],[6.0890625,0.50154589843749996E2],[6.11650391,0.50120996093749994E2]]]}}],"_labels":{"LU":"Luxembourg"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/LV.json b/src/api-umbrella/admin-ui/public/maps/LV.json new file mode 100644 index 000000000..f1a22fbf4 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/LV.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"LV"},"geometry":{"type":"Polygon","coordinates":[[[0.27351953125000023E2,57.528125],[0.27511132812500023E2,57.5081543],[27.5386719,57.4297852],[27.796875,57.3169434],[0.27814550781250002E2,57.1668945],[0.27717382812500006E2,57.0546387],[0.27639453125000017E2,56.8456543],[0.27806054687500023E2,56.8670898],[27.881543,56.8241699],[27.8920898,56.7410645],[28.0075195,56.5998535],[28.103125,56.5457031],[28.2020508,0.56260400390624994E2],[28.1479492,56.1429199],[0.27896289062500017E2,56.0761719],[0.27642285156250008E2,55.9117187],[0.27576757812500006E2,55.7987793],[0.27309179687500006E2,55.8039062],[0.27052539062500017E2,55.8305664],[0.26953027343750023E2,55.8129395],[26.8224609,55.7092285],[26.5428711,0.55672412109374996E2],[26.28125,55.7504395],[26.0855469,55.896875],[0.25585742187500017E2,0.56130175781249996E2],[25.0699219,56.2003906],[0.24903027343750008E2,56.3981934],[0.24699511718750017E2,56.3812988],[24.5290039,56.2962891],[24.1207031,56.2642578],[23.8126953,56.329248],[0.23195898437500006E2,56.3671387],[23.0429688,56.3240723],[0.22875585937500006E2,56.3964355],[22.5869141,56.3750977],[0.22084570312500006E2,56.4067383],[21.6535156,56.3145508],[0.21314648437500008E2,56.1881348],[21.0460938,56.0700684],[0.21014941406250017E2,56.2589355],[21.0314453,56.6365723],[0.21071289062499996E2,56.8237305],[21.3507813,57.0176758],[21.4591797,57.3224609],[21.7287109,57.5709961],[21.9423828,57.5978516],[22.2314453,57.6667969],[22.5545898,0.57724267578124994E2],[22.6486328,0.57595361328124994E2],[23.037793,57.3920898],[0.23136816406250006E2,57.3238281],[23.2873047,57.0897461],[0.23647753906250017E2,56.9710449],[23.9311523,57.0084961],[24.28125,57.1723145],[0.24382617187500017E2,0.57250048828124996E2],[0.24403222656250023E2,57.325],[24.3629883,57.6453125],[0.24301562500000017E2,57.7841309],[0.24322558593750017E2,57.8706055],[25.1110352,0.58063427734375004E2],[25.2287109,57.996582],[0.25282617187500023E2,0.58048486328124994E2],[25.79375,57.8685547],[25.9911133,0.57838183593749996E2],[0.26030371093750006E2,57.7855469],[26.2980469,57.6010742],[0.26532617187500023E2,57.5310059],[26.8998047,0.57608789062499994E2],[27.1871094,57.5383301],[0.27351953125000023E2,57.528125]]]}}],"_labels":{"LV":"Latvia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/LY.json b/src/api-umbrella/admin-ui/public/maps/LY.json new file mode 100644 index 000000000..a9a227682 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/LY.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"LY"},"geometry":{"type":"Polygon","coordinates":[[[0.25150488281250006E2,0.31654980468749994E2],[24.8527344,31.3348145],[0.24877539062500006E2,0.31061230468749994E2],[0.24973925781250017E2,30.7765625],[24.9614258,30.6785156],[0.24877539062500006E2,30.4575195],[0.24726464843750023E2,0.30250585937499995E2],[24.7116211,0.30131542968749997E2],[24.8037109,0.29886035156249996E2],[0.24810839843750017E2,0.29808740234374994E2],[0.24916113281250006E2,29.3762695],[0.24980273437500017E2,0.29181884765624996E2],[0.24980273437500017E2,21.9958496],[24.9794922,0.20002587890624994E2],[0.24966992187500008E2,19.995459],[0.23980273437500017E2,19.9959473],[0.23980273437500017E2,0.19496630859375003E2],[0.15984082031250011E2,0.23445214843749994E2],[0.14978906250000023E2,0.22996289062499994E2],[0.14230761718750017E2,0.22618457031250003E2],[14.2006836,0.22623730468749997E2],[13.5986328,23.1195313],[13.48125,23.1801758],[0.11967871093750006E2,0.23517871093750003E2],[0.11766992187500023E2,23.8925781],[0.11536914062500015E2,0.24290820312500003E2],[0.11507617187500017E2,24.3143555],[0.10686132812500004E2,24.5513672],[10.4389648,24.4802246],[10.2558594,24.5910156],[0.10119531250000023E2,24.7902344],[10.028125,25.0510254],[10.0006836,0.25332080078125003E2],[9.44824219,26.0671387],[0.9437890625000021E1,26.2455078],[0.9491406250000011E1,26.3337402],[9.859375,26.5519531],[0.9894433593750021E1,0.26847949218749996E2],[0.9837109375000011E1,0.26915820312499996E2],[9.75253906,27.2193359],[9.74755859,27.3308594],[9.91601562,0.27785693359374996E2],[0.9858203125000015E1,28.0433105],[9.815625,28.5602051],[0.9842578125000017E1,0.28966992187499994E2],[0.9820703125000023E1,0.29114794921874996E2],[0.9672656250000017E1,0.29566992187499995E2],[0.9546191406250017E1,0.29795947265624992E2],[0.9310253906250011E1,30.1152344],[9.51875,30.2293945],[9.89501953,30.3873047],[10.2164063,30.7832031],[0.10256054687500011E2,0.30864941406249994E2],[10.2433594,0.31032128906249994E2],[0.10114941406250011E2,0.31463769531249994E2],[10.1598633,0.31545800781249994E2],[0.10306054687500021E2,31.704834],[0.10475781250000011E2,0.31736035156249994E2],[10.6088867,31.929541],[0.10771582031250006E2,32.0211914],[0.10826367187500011E2,32.0806641],[0.11168261718750017E2,0.32256738281249994E2],[0.11504980468750006E2,32.4136719],[0.11533789062500006E2,0.32524951171874996E2],[0.11453906250000017E2,32.6425781],[0.11467187500000021E2,0.32965722656249994E2],[0.11504589843750011E2,0.33181933593749996E2],[0.11657128906250023E2,33.1188965],[11.8134766,33.0937012],[0.12279882812500006E2,0.32858544921874994E2],[0.12427050781250017E2,32.8291016],[12.7535156,0.32801074218749996E2],[0.13138085937500023E2,0.32897363281249994E2],[0.13283496093750017E2,32.9146484],[0.13647753906250017E2,32.7988281],[0.13835351562500023E2,32.7917969],[0.14237109375000017E2,32.68125],[0.14513378906250011E2,32.511084],[0.15176562500000017E2,0.32391162109374996E2],[0.15266894531250017E2,0.32311669921874994E2],[15.359082,32.159668],[0.15363085937500017E2,31.9711914],[0.15496386718750015E2,0.31656787109374996E2],[0.15705957031250023E2,0.31426416015624994E2],[0.15832226562500011E2,0.31360986328124998E2],[16.1230469,31.2644531],[0.16450976562500017E2,31.2272949],[0.16781542968750017E2,0.31214746093749994E2],[17.3492187,0.31081494140624997E2],[0.17830468750000023E2,30.9275879],[0.17949316406250006E2,0.30851904296874995E2],[18.1904297,0.30777294921874994E2],[0.18669824218750023E2,0.30415673828124998E2],[18.9364258,0.30290429687499994E2],[19.1237305,30.2661133],[0.19291699218750008E2,30.2880859],[19.5898438,0.30413769531249997E2],[0.19713281250000023E2,0.30488378906249995E2],[20.0131836,0.30800683593749994E2],[20.1115234,0.30963720703124995E2],[0.20150976562500006E2,31.0786133],[0.20103808593750017E2,0.31300537109374996E2],[20.0200195,31.4106445],[0.19961230468750017E2,31.5560059],[0.19926367187500006E2,0.31817529296874994E2],[0.19973437500000017E2,0.31999072265624996E2],[0.20121484375000023E2,32.21875],[20.3706055,32.4307617],[20.6210938,32.5801758],[0.21062304687500017E2,0.32775537109374994E2],[21.31875,32.7776855],[0.21424707031250023E2,32.7991699],[21.6359375,0.32937304687499996E2],[21.8394531,32.9086426],[0.22187402343750023E2,0.32918261718749996E2],[22.340625,32.8798828],[22.5234375,32.7939453],[22.7541016,0.32740527343749996E2],[23.090625,32.61875],[0.23129687500000017E2,0.32448144531249994E2],[23.10625,0.32331445312499994E2],[23.2863281,32.2138184],[0.23797656250000017E2,32.1586914],[23.8984375,32.1271973],[0.24129687500000014E2,32.0092285],[0.24479785156250017E2,0.31996533203124997E2],[0.24683886718750017E2,32.0159668],[24.8785156,0.31984277343749998E2],[25.025,0.31883349609374996E2],[0.25150488281250006E2,0.31654980468749994E2]]]}}],"_labels":{"LY":"Libya"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/MA.json b/src/api-umbrella/admin-ui/public/maps/MA.json new file mode 100644 index 000000000..bc95089be --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/MA.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"MA"},"geometry":{"type":"Polygon","coordinates":[[[-4.62832031,0.35206396484375006E2],[-4.32998047,0.35161474609375006E2],[-3.98242188,35.2434082],[-3.78798828,0.35244921875000045E2],[-3.69326172,35.2799805],[-3.590625,0.35228320312500045E2],[-3.39472656,35.2118164],[-3.20600586,0.35239111328125006E2],[-2.9722168,35.4072754],[-2.95361328,0.35315136718749955E2],[-2.83994141,0.35127832031249994E2],[-2.42373047,35.1234863],[-2.21962891,0.35104199218749976E2],[-2.13178711,0.34970849609374994E2],[-1.79560547,0.34751904296874955E2],[-1.8496582,0.34607324218749994E2],[-1.73945312,34.4960938],[-1.79179687,34.3679199],[-1.70693359,34.1760742],[-1.70297852,0.33716845703125045E2],[-1.63125,0.33566748046875006E2],[-1.67919922,33.3186523],[-1.55073242,0.33073583984375006E2],[-1.51000977,0.32877636718749955E2],[-1.35214844,32.7033691],[-1.11103516,32.5522949],[-1.06552734,32.4683105],[-1.24033203,32.3375977],[-1.22592773,32.1072266],[-1.2753418,0.32089013671874966E2],[-2.44838867,32.1299805],[-2.86342773,0.32074707031249964E2],[-2.93085937,32.0425293],[-3.01738281,0.31834277343750017E2],[-3.43979492,31.704541],[-3.70024414,31.7000977],[-3.82675781,0.31661914062499985E2],[-3.83710937,0.31512353515624994E2],[-3.78916016,0.31361816406250053E2],[-3.83339844,31.1978027],[-3.62451172,0.31065771484375034E2],[-3.70200195,30.9444824],[-3.98535156,0.30913525390625036E2],[-4.32285156,0.30698876953124994E2],[-4.77851562,30.5523926],[-4.96826172,0.30465380859375042E2],[-5.18012695,0.30166162109374994E2],[-5.4487793,0.29956933593750023E2],[-5.775,29.869043],[-6.21479492,0.29810693359374966E2],[-6.50087891,0.29809130859375014E2],[-6.52055664,29.6598633],[-6.63535156,0.29568798828124983E2],[-7.09492187,0.29625195312500008E2],[-7.23491211,0.29574902343749983E2],[-7.48574219,29.3922363],[-7.68515625,29.3495117],[-7.99892578,0.29132421874999974E2],[-8.26518555,0.28980517578125045E2],[-8.55834961,28.7678711],[-8.65991211,28.7186035],[-8.68334961,0.28620751953125023E2],[-8.68334961,27.6564453],[-8.81782227,27.6564453],[-8.77436523,27.4605469],[-8.80268555,0.27360937500000034E2],[-8.75385742,0.27191015624999977E2],[-8.79487305,0.27120703125000034E2],[-9.0019043,0.27090429687500006E2],[-0.9413037109374955E1,0.27088476562500063E2],[-9.73535156,26.8609375],[-0.9900341796874955E1,0.26850195312500002E2],[-10.0327148,0.26910742187499977E2],[-0.10251464843749972E2,26.8609375],[-0.10551269531249943E2,0.26990820312500063E2],[-0.10757763671874926E2,0.27020117187499977E2],[-0.10922802734374983E2,0.27010351562500034E2],[-0.11392578125000028E2,0.26883398437500006E2],[-0.11316845703124955E2,0.26744726562500006E2],[-0.11337890624999972E2,0.26633398437499977E2],[-0.11470703124999943E2,0.26520117187499977E2],[-0.11637207031249943E2,0.26295507812500063E2],[-0.11718212890624926E2,26.1041016],[-12.0307617,0.26030859375000063E2],[-0.12170849609374953E2,25.6402344],[-0.12310986328124981E2,0.25110937500000063E2],[-0.12431152343749941E2,0.24830664062500063E2],[-0.12710937500000028E2,24.6304688],[-12.9911621,24.4703125],[-0.13061035156249943E2,0.24400976562500006E2],[-13.230957,0.24090429687499977E2],[-0.13310986328124955E2,0.23981054687499977E2],[-0.13770947265624955E2,23.790625],[-0.13891113281250028E2,0.23691015625000063E2],[-0.14020996093750028E2,0.23410742187499977E2],[-0.14170898437499998E2,0.22760351562499977E2],[-0.14190869140624981E2,0.22450781249999977E2],[-0.14221191406249943E2,0.22310156250000034E2],[-14.6308594,0.21860937499999974E2],[-0.14610791015625011E2,0.21750585937499977E2],[-0.14670849609374981E2,0.21600195312499974E2],[-0.14840820312499972E2,21.4507812],[-15.4609375,21.4507812],[-0.15750927734374924E2,0.21490820312499977E2],[-16.0410156,0.21500585937500034E2],[-0.16190869140624955E2,0.21481054687500034E2],[-16.730957,0.21470312499999977E2],[-0.17003076171874937E2,0.21420703125000017E2],[-0.16930859374999983E2,21.9],[-0.16793261718750017E2,0.22159716796875017E2],[-0.16683984374999937E2,22.2743652],[-0.16514404296874943E2,22.3334961],[-16.3587402,0.22594531250000042E2],[-16.3042969,0.22834814453125063E2],[-16.1697266,0.23031933593749983E2],[-16.2102539,23.0979004],[-0.15996728515624993E2,0.23425488281249955E2],[-15.942627,0.23552636718750023E2],[-0.15805957031249958E2,23.7495117],[-0.15801660156249966E2,0.23842236328124955E2],[-0.15980712890624943E2,0.23670312500000023E2],[-0.15899316406249964E2,0.23844433593749955E2],[-0.15777783203124983E2,0.23952929687500045E2],[-0.15586328124999966E2,24.0727539],[-0.15188623046874937E2,0.24478808593750045E2],[-0.15038867187499987E2,24.5488281],[-14.9042969,0.24719775390625017E2],[-0.14856054687499977E2,0.24871582031250053E2],[-0.14842919921874966E2,0.25220117187499994E2],[-0.14794921874999943E2,0.25404150390625006E2],[-14.7070312,0.25547705078125034E2],[-0.14602294921874972E2,25.8085449],[-0.14522753906250017E2,25.9252441],[-0.14470556640624949E2,0.26163037109374983E2],[-14.4138672,26.2537109],[-0.14168359375000023E2,0.26415429687499966E2],[-0.13952099609374924E2,26.4887695],[-13.5757813,26.7351074],[-0.13495751953124937E2,0.26872656250000034E2],[-0.13409814453124937E2,27.1466309],[-0.13256152343749987E2,27.4346191],[-0.13175976562499981E2,0.27655712890624983E2],[-0.13040722656249983E2,0.27769824218750045E2],[-0.12948925781249926E2,0.27914160156250034E2],[-0.12793652343749983E2,0.27978417968749994E2],[-0.12468896484374993E2,0.28009423828124994E2],[-0.11986083984374972E2,28.1292969],[-0.11552685546874955E2,28.3101074],[-0.11430175781249943E2,28.3820312],[-0.11299072265624972E2,28.5260742],[-0.11080957031249937E2,0.28713769531249962E2],[-0.10673828124999972E2,28.939209],[-0.10486474609374994E2,0.29064941406249996E2],[-0.10200585937499994E2,0.29380371093750057E2],[-10.010498,0.29641406250000045E2],[-9.85263672,29.8092285],[-0.9667089843749949E1,30.1092773],[-9.62382812,0.30352636718749974E2],[-0.9652929687499977E1,0.30447558593750045E2],[-0.9875488281249943E1,0.30717919921874962E2],[-9.83242187,30.8472656],[-9.80869141,0.31424609374999957E2],[-0.9674951171874937E1,0.31710986328125045E2],[-9.34746094,0.32086376953124955E2],[-0.9286572265624955E1,0.32240576171875034E2],[-9.24584961,32.5724609],[-8.83623047,32.920459],[-8.59628906,0.33187158203125044E2],[-8.30117187,33.3743652],[-7.56235352,33.6402832],[-7.14467773,33.8303223],[-6.90097656,33.969043],[-6.75576172,34.1329102],[-6.353125,34.7760742],[-5.95756836,35.6811523],[-5.92480469,35.785791],[-5.62285156,35.8289062],[-5.39736328,0.35929882812499955E2],[-5.27783203,35.9027344],[-5.33764648,0.35856542968750034E2],[-5.33764648,35.7452148],[-5.25268555,35.6147461],[-5.10537109,35.4677734],[-4.83720703,35.2812988],[-4.62832031,0.35206396484375006E2]]]}}],"_labels":{"MA":"Morocco"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/MC.json b/src/api-umbrella/admin-ui/public/maps/MC.json new file mode 100644 index 000000000..e974690fc --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/MC.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"MC"},"geometry":{"type":"Polygon","coordinates":[[[7.43867188,43.7504395],[7.37773438,0.43731738281249996E2],[7.38007813,0.43753222656249996E2],[7.41445313,0.43770898437499994E2],[7.43867188,43.7504395]]]}}],"_labels":{"MC":"Monaco"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/MD.json b/src/api-umbrella/admin-ui/public/maps/MD.json new file mode 100644 index 000000000..57d2e87f5 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/MD.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"MD"},"geometry":{"type":"Polygon","coordinates":[[[28.2125,45.4504395],[0.28074707031249996E2,45.5989746],[28.1597656,0.45647119140624994E2],[0.28115527343750014E2,45.8255371],[0.28099707031250006E2,45.9726074],[28.1191406,46.1386719],[28.2443359,46.4512695],[28.2226562,46.5080566],[28.2394531,46.6408203],[28.15,46.7920898],[28.0717773,46.978418],[0.27853808593750017E2,47.114502],[27.7679688,0.47227587890624996E2],[0.27614062500000017E2,47.3405273],[27.4492188,47.553125],[0.27336914062499996E2,47.6397461],[27.1520508,0.47959277343749996E2],[0.26980761718750017E2,48.1550293],[26.7873047,48.2558105],[0.26618945312500014E2,48.2598633],[0.26640429687500014E2,48.2941406],[0.26847070312500023E2,48.3871582],[26.9005859,48.3719238],[27.2285156,48.3714355],[0.27336914062499996E2,48.4327148],[27.4038086,48.415625],[0.27549218750000023E2,48.4777344],[27.8200195,48.4162598],[0.27963378906249996E2,0.48333544921874996E2],[0.28038476562500023E2,48.3212891],[0.28088476562500002E2,48.2570312],[28.2910156,0.48238574218749996E2],[0.28326953125000017E2,0.48161425781249996E2],[28.4230469,48.146875],[28.4630859,48.0905273],[28.5304688,48.150293],[0.28773828125000023E2,48.1195801],[0.28865820312500002E2,0.47995654296874996E2],[0.28973339843750008E2,0.47933007812499994E2],[29.0929688,47.9754395],[29.1948242,47.8824219],[0.29210742187500017E2,47.731543],[0.29122949218750023E2,47.5303711],[29.1597656,47.4556641],[0.29333789062500014E2,47.3757324],[0.29549316406249996E2,47.2468262],[29.5150391,0.47091113281249996E2],[0.29563476562499996E2,0.47047509765624994E2],[0.29571972656250008E2,0.46964013671874994E2],[29.7197266,46.8829102],[29.877832,46.8289063],[0.29942480468750006E2,0.46723779296874994E2],[0.29924316406249996E2,0.46538867187499996E2],[30.1310547,46.4230957],[0.30075683593750004E2,0.46377832031249994E2],[29.8378906,46.3505371],[0.29706835937500017E2,46.4487305],[0.29614941406250008E2,46.3988281],[0.29458789062500017E2,46.4537598],[0.29304882812500008E2,0.46466601562499996E2],[29.2045898,46.3793457],[29.2007812,46.5049805],[0.29146289062500017E2,0.46526904296874996E2],[0.28958398437500023E2,46.4584961],[28.9274414,0.46424121093749996E2],[28.94375,46.2884277],[29.00625,46.1764648],[28.9477539,0.46049951171874994E2],[0.28849511718750023E2,0.45978662109374994E2],[28.7387695,0.45937158203124994E2],[0.28729296875000014E2,45.852002],[0.28491601562500023E2,45.6657715],[0.28513769531250002E2,0.45572412109374994E2],[28.4713867,45.5071777],[0.28310351562500014E2,45.498584],[28.2125,45.4504395]]]}}],"_labels":{"MD":"Moldova"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/ME.json b/src/api-umbrella/admin-ui/public/maps/ME.json new file mode 100644 index 000000000..907119b23 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/ME.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"ME"},"geometry":{"type":"Polygon","coordinates":[[[19.1943359,43.5333008],[19.21875,43.4499512],[0.19414648437500006E2,0.43342822265624996E2],[0.19551562500000017E2,43.2122559],[0.19781152343750023E2,43.1097656],[19.944043,43.0816406],[0.20339941406250006E2,0.42892871093749996E2],[0.20344335937500006E2,0.42827929687499996E2],[0.20215136718750017E2,42.7988281],[20.1925781,42.7546387],[20.0542969,0.42760058593749996E2],[0.20029492187500008E2,42.7320312],[0.20089257812500023E2,42.631543],[20.0703125,42.5570801],[19.9390625,42.5066895],[19.7882813,42.4761719],[19.737793,42.5251465],[19.7407227,42.6069336],[19.6544922,0.42628564453124994E2],[19.5445312,42.4919434],[19.3996094,42.3418945],[19.2806641,42.1725586],[0.19361425781250002E2,42.0690918],[0.19342382812500006E2,41.8690918],[19.1864258,0.41948632812499994E2],[19.1222656,42.060498],[18.8942383,42.2494629],[0.18632910156250006E2,0.42378076171874994E2],[0.18645898437500023E2,42.4427246],[0.18517480468750023E2,42.4329102],[0.18436328125000017E2,42.5597168],[0.18534960937500017E2,42.6201172],[0.18543261718750017E2,42.6741699],[18.4660156,0.42777246093749994E2],[18.4438477,42.968457],[18.4884766,43.0121582],[0.18623632812500002E2,43.0276855],[18.621875,43.1246094],[0.18674218750000023E2,43.2308105],[18.8510742,0.43346337890624994E2],[0.18934667968750006E2,43.3394531],[0.19026660156250017E2,43.2924316],[19.0367187,0.43357324218749994E2],[0.18940234375000017E2,0.43496728515624994E2],[18.9742187,43.542334],[19.0800781,43.5177246],[19.1943359,43.5333008]]]}}],"_labels":{"ME":"Montenegro"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/MF.json b/src/api-umbrella/admin-ui/public/maps/MF.json new file mode 100644 index 000000000..08164c356 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/MF.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"MF"},"geometry":{"type":"Polygon","coordinates":[[[-63.0111816,18.0689453],[-63.1230469,18.0689453],[-0.63063085937499984E2,18.115332],[-0.63009423828124994E2,18.1042969],[-63.0111816,18.0689453]]]}}],"_labels":{"MF":"St-Martin"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/MG.json b/src/api-umbrella/admin-ui/public/maps/MG.json new file mode 100644 index 000000000..10332972d --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/MG.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"MG"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.49936425781249994E2,-16.9029297],[49.8240234,-17.0865234],[49.8556641,-0.16933203124999963E2],[50.0230469,-16.6953125],[0.49936425781249994E2,-16.9029297]]],[[[48.3421875,-0.13363867187500034E2],[48.2119141,-0.13385253906249957E2],[0.48191210937500074E2,-0.13259960937500011E2],[0.48308886718750074E2,-0.13198242187499957E2],[48.3421875,-0.13363867187500034E2]]],[[[49.5382812,-0.12432128906250014E2],[49.637793,-0.12637109375000035E2],[49.9375,-0.13072265624999957E2],[49.9671875,-0.13270214843749969E2],[50.0734375,-0.13577929687500031E2],[50.1738281,-0.14040234374999983E2],[50.2353516,-0.14732031249999961E2],[0.50313476562499964E2,-0.14936816406250031E2],[0.50441308593749994E2,-0.15149316406249978E2],[0.50482714843750074E2,-0.15385644531249994E2],[0.50404589843750074E2,-0.15629101562500024E2],[50.2089844,-0.15960449218750027E2],[50.0204102,-0.15801757812500027E2],[49.8925781,-0.15457714843750011E2],[49.74375,-0.15449511718750031E2],[49.6499023,-0.15566992187499991E2],[0.49712792968749994E2,-0.16076757812500002E2],[49.8310547,-16.2558594],[49.8390625,-0.16486523437499997E2],[49.7339844,-0.16703027343749966E2],[0.49767187500000055E2,-16.8151367],[49.6369141,-0.16892871093750003E2],[49.5395508,-0.17032910156250026E2],[49.4371094,-17.3466797],[49.4936523,-0.17669531249999963E2],[0.49477832031250074E2,-17.8985352],[49.3628906,-18.3363281],[49.2033203,-18.7922852],[49.0600586,-19.1196289],[48.9180664,-19.5304688],[0.48797460937500006E2,-0.19953222656249977E2],[48.6070313,-0.20457519531249957E2],[48.4685547,-20.9],[48.3507812,-0.21349023437500037E2],[48.1758789,-0.21843066406249974E2],[47.9083984,-0.22465820312500014E2],[0.47858300781249994E2,-22.7472656],[47.7394531,-23.2333984],[0.47604101562500006E2,-23.6331055],[47.5580078,-0.23874609374999963E2],[0.47372558593749964E2,-0.24218457031250026E2],[0.47272851562499994E2,-0.24564355468749962E2],[47.1773437,-0.24787207031249977E2],[0.47034960937500074E2,-24.9790039],[46.7285156,-25.1499023],[46.3867187,-25.1727539],[46.1586914,-0.25230371093750023E2],[45.5080078,-25.5631836],[45.2057617,-25.5705078],[45.1152344,-0.25543066406249963E2],[0.44812890625000044E2,-25.3341797],[44.3458984,-0.25226074218749957E2],[0.44256152343750074E2,-0.25116894531249997E2],[44.0353516,-24.9957031],[43.8515625,-0.24538378906250003E2],[43.6875,-0.24357910156250014E2],[43.6460937,-0.23741894531250008E2],[43.7222656,-0.23529687500000037E2],[43.5695312,-23.0804688],[0.43397851562499994E2,-22.8863281],[43.2648438,-22.3835937],[43.2666016,-22.0493164],[43.3426758,-0.21790429687499994E2],[43.437793,-21.6466797],[0.43501855468750044E2,-0.21356445312499954E2],[0.43800195312499994E2,-0.21179199218749982E2],[43.9111328,-0.20865820312500006E2],[44.2396484,-20.3796875],[44.3481445,-0.20145507812499986E2],[44.4046875,-0.19922070312500026E2],[44.4488281,-0.19428710937499968E2],[44.2387695,-0.19075195312499986E2],[44.2331055,-18.740625],[44.1087891,-0.18503515624999963E2],[44.0400391,-18.2884766],[43.9935547,-0.17690332031250023E2],[43.9435547,-17.5814453],[0.43979394531249994E2,-17.3916016],[44.4213867,-16.7026367],[0.44427050781250074E2,-0.16289062500000014E2],[44.4761719,-0.16217285156249957E2],[44.9091797,-0.16174511718750026E2],[45.1667969,-0.15982812499999964E2],[45.2712891,-0.15962304687499966E2],[45.3421875,-16.0367187],[0.45598242187500006E2,-15.9925781],[45.7001953,-0.15813769531249989E2],[46.1905273,-15.746875],[46.3140625,-0.15904589843750015E2],[46.4416016,-0.15895898437500023E2],[46.3413086,-0.15813378906249993E2],[0.46331445312499994E2,-15.7136719],[46.4750977,-0.15513476562500003E2],[46.8820312,-0.15229589843749991E2],[46.9932617,-15.2431641],[47.0274414,-0.15452246093749963E2],[47.0992187,-0.15434179687500018E2],[0.47135156250000044E2,-15.3015625],[0.47092578125000074E2,-0.15150097656249967E2],[47.2804687,-0.14942675781249987E2],[47.3519531,-0.14766113281249988E2],[47.4390625,-0.14703320312499983E2],[0.47496386718750074E2,-14.8183594],[47.4291992,-0.14995703125000034E2],[0.47524707031250074E2,-0.14992187500000028E2],[47.7160156,-0.14680371093750011E2],[0.47774023437500055E2,-14.6367188],[0.47964160156250074E2,-0.14672558593750026E2],[0.47811523437499964E2,-0.14544824218750023E2],[0.47773339843749994E2,-14.3699219],[0.47995507812499994E2,-0.13960449218749986E2],[0.47901367187499964E2,-13.8582031],[47.8959961,-0.13730664062499983E2],[48.0398438,-0.13596289062499961E2],[0.48255273437500044E2,-0.13719335937499975E2],[48.4050781,-0.13537988281249978E2],[48.6213867,-0.13425976562499983E2],[48.7964844,-0.13267480468750023E2],[48.9103516,-12.9358398],[48.8942383,-0.12721679687500028E2],[48.7863281,-0.12470898437500011E2],[48.8996094,-0.12458496093749972E2],[49.2070312,-0.12079589843749957E2],[49.3121094,-0.12123925781250023E2],[49.3639648,-0.12236328125000014E2],[49.5382812,-0.12432128906250014E2]]]]}}],"_labels":{"MG":"Madagascar"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/MH.json b/src/api-umbrella/admin-ui/public/maps/MH.json new file mode 100644 index 000000000..7dc58e754 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/MH.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"MH"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.16963505859375007E3,5.83007812],[0.16959052734375004E3,5.8019043],[0.16962714843750004E3,5.85581055],[0.16965107421875004E3,5.94511719],[169.73457,6.01416016],[0.16972636718750002E3,5.97568359],[0.16967255859375004E3,5.93520508],[0.16963505859375007E3,5.83007812]]],[[[171.577344,7.04824219],[0.17161474609374997E3,7.02661133],[0.17168837890625005E3,7.02827148],[0.17175683593749994E3,6.97314453],[171.659375,7.01005859],[0.17159277343750003E3,7.01625977],[171.577344,7.04824219]]],[[[0.17110195312500002E3,7.13823242],[0.17122695312499997E3,7.08696289],[171.39375,7.1109375],[0.17126328125000012E3,7.06875],[0.17120234375000004E3,7.07353516],[0.17109550781250007E3,7.10927734],[0.17103574218750003E3,7.15610352],[0.17110195312500002E3,7.13823242]]],[[[0.16883027343750004E3,7.30898437],[0.16881542968749994E3,7.29355469],[0.16871923828125003E3,7.30273437],[0.16867929687500012E3,7.33623047],[0.16883027343750004E3,7.30898437]]],[[[166.890332,0.11153076171875057E2],[166.890332,0.11153076171875057E2],[166.890332,0.11153076171875057E2],[166.890332,0.11153076171875057E2]]]]}}],"_labels":{"MH":"Marshall Is."}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/MK.json b/src/api-umbrella/admin-ui/public/maps/MK.json new file mode 100644 index 000000000..acf9eb063 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/MK.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"MK"},"geometry":{"type":"Polygon","coordinates":[[[0.22344042968750014E2,42.3139648],[0.22582714843750008E2,42.104834],[22.7960938,0.42025683593749996E2],[22.8368164,41.9936035],[0.22943945312500006E2,41.7750977],[0.23005664062500017E2,41.7169434],[0.22951464843750014E2,41.6056152],[22.9296875,0.41356103515624994E2],[22.7550781,41.3127441],[22.7248047,41.1785156],[0.22493554687500023E2,41.1185059],[0.22237695312500023E2,0.41155175781249994E2],[21.9933594,41.130957],[0.21929492187500017E2,41.1074219],[21.7794922,40.9504395],[21.5757812,0.40868945312499996E2],[0.21404101562500017E2,40.9071777],[21.3237305,40.8671387],[0.20964257812500023E2,0.40849902343749996E2],[20.9334961,40.903125],[0.20740820312500006E2,40.9052734],[0.20656054687500017E2,0.41061669921874994E2],[20.5678711,41.127832],[20.4889648,0.41272607421874994E2],[20.4923828,41.3914062],[0.20448632812500023E2,0.41521289062499996E2],[0.20516210937500002E2,0.41574755859374996E2],[0.20505175781250014E2,41.7064941],[20.553125,0.41862353515624996E2],[20.6949219,0.41853808593749996E2],[20.7441406,41.9042969],[20.778125,42.0710449],[21.0597656,0.42171289062499994E2],[0.21142480468750023E2,42.175],[21.2866211,42.1003906],[0.21331738281250008E2,0.42187158203124994E2],[0.21389550781250023E2,42.2198242],[21.7392578,0.42267724609374994E2],[0.21904101562500017E2,0.42322070312499996E2],[0.22052050781250017E2,42.3046387],[22.2397461,42.3581543],[0.22344042968750014E2,42.3139648]]]}}],"_labels":{"MK":"Macedonia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/ML.json b/src/api-umbrella/admin-ui/public/maps/ML.json new file mode 100644 index 000000000..4dfe86dcc --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/ML.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"ML"},"geometry":{"type":"Polygon","coordinates":[[[4.22763672,0.19142773437499997E2],[4.23466797,0.16996386718750003E2],[4.20292969,16.9626953],[4.18212891,16.5817871],[4.12128906,0.16357714843750003E2],[4.01484375,16.1927246],[3.94707031,15.9456543],[3.90722656,15.8968262],[3.87695312,0.15755273437499994E2],[3.81650391,0.15674023437499995E2],[3.70957031,0.15641699218749991E2],[3.52050781,0.15483105468749997E2],[3.50429688,0.15356347656249993E2],[3.06015625,0.15427197265624995E2],[3.01054688,15.4083008],[3.00107422,0.15340966796874994E2],[1.859375,0.15301708984374997E2],[1.30019531,15.2722656],[0.960058594,14.9869141],[0.718652344,0.14954882812500005E2],[0.433007813,0.14979003906250002E2],[0.286230469,0.14980175781249997E2],[0.228710938,14.9636719],[0.217480469,0.14911474609374991E2],[-0.235888672,0.15059423828124991E2],[-0.405419922,15.0125],[-0.454492187,15.059668],[-0.536523437,0.15077880859374998E2],[-0.760449219,0.15047753906249994E2],[-1.04956055,14.8195313],[-1.20498047,0.14761523437500001E2],[-1.49365234,0.14626074218749991E2],[-1.65732422,0.14526806640624995E2],[-1.76777344,0.14486035156249997E2],[-1.87978516,0.14481494140625003E2],[-1.97304687,0.14456542968749998E2],[-2.05712891,0.14194628906250003E2],[-2.11323242,14.168457],[-2.45722656,0.14274121093749995E2],[-2.58671875,0.14227587890625003E2],[-2.77885742,0.14073730468749998E2],[-2.87392578,0.13950732421875003E2],[-2.92587891,0.13786767578124994E2],[-2.91708984,0.13679492187500001E2],[-2.95083008,13.6484375],[-3.03867187,0.13639111328124995E2],[-3.1984375,13.6728516],[-3.24863281,0.13658349609374994E2],[-3.27016602,0.13577441406250003E2],[-3.26674805,13.4007812],[-3.30175781,13.2807617],[-3.46992187,0.13196386718749991E2],[-3.57578125,0.13194189453124991E2],[-3.8534668,13.3735352],[-3.94731445,0.13402197265624991E2],[-4.05117187,13.3824219],[-4.15102539,0.13306201171875003E2],[-4.32871094,0.13119042968749993E2],[-4.22524414,0.12879492187499991E2],[-4.22709961,0.12793701171874998E2],[-4.48061523,0.12672216796874991E2],[-4.42192383,0.12581591796874989E2],[-4.42871094,0.12337597656249997E2],[-4.54604492,0.12226464843749994E2],[-4.58691406,12.1550293],[-4.69931641,12.0761719],[-4.79794922,0.12032128906249994E2],[-5.1059082,11.9675293],[-5.23017578,0.11890283203124994E2],[-5.28813477,0.11827929687499989E2],[-5.29052734,0.11683300781249997E2],[-5.22939453,0.11522460937499998E2],[-5.25024414,0.11375781249999989E2],[-5.29985352,0.11205957031249994E2],[-5.34741211,0.11130273437499993E2],[-5.49047852,0.11042382812499994E2],[-5.46855469,0.10931054687499994E2],[-5.45708008,0.10771386718749994E2],[-5.47900391,0.10565087890624994E2],[-5.52353516,10.4260254],[-5.69428711,10.4332031],[-5.84384766,0.10389550781249994E2],[-5.90756836,0.10307226562499991E2],[-6.03457031,10.1948242],[-6.196875,0.10232128906249997E2],[-6.24130859,0.10279199218749993E2],[-6.19067383,0.10400292968749994E2],[-6.23974609,0.10558105468749998E2],[-6.23066406,0.10597509765624991E2],[-6.26113281,0.10724072265624997E2],[-6.42587891,0.10671777343749994E2],[-6.40751953,0.10572363281249991E2],[-6.48261719,0.10561230468749997E2],[-6.56459961,10.5864258],[-6.65415039,0.10656445312499997E2],[-6.67636719,10.6337891],[-6.69199219,0.10512011718749989E2],[-6.66933594,10.3921875],[-6.69326172,0.10349462890624991E2],[-6.83364258,0.10356982421874989E2],[-6.9503418,0.10342333984374989E2],[-6.99174805,0.10251855468749994E2],[-6.96816406,0.10176220703124997E2],[-7.03974609,10.1447754],[-7.10488281,10.2035156],[-7.36318359,10.259375],[-7.38505859,0.10340136718749989E2],[-7.41479492,10.3413086],[-7.49794922,0.10439794921874991E2],[-7.56210937,0.10421240234374991E2],[-7.66113281,0.10427441406249997E2],[-7.74907227,10.3422852],[-7.81420898,10.2365723],[-7.88408203,0.10185742187499997E2],[-7.990625,10.1625],[-7.97446289,0.10229541015624989E2],[-8.00727539,10.321875],[-8.23149414,10.4379883],[-8.26665039,0.10485986328124994E2],[-8.32412109,0.10749511718749998E2],[-8.30634766,10.8960938],[-8.33740234,10.990625],[-8.47470703,0.11048388671874989E2],[-8.56352539,0.10996679687499991E2],[-8.64619141,10.9904785],[-8.66391602,0.11035839843749997E2],[-8.5203125,11.2359375],[-8.42529297,0.11304736328124987E2],[-8.4074707,0.11386279296874989E2],[-8.56875,0.11478076171874989E2],[-8.66494141,0.11514990234374991E2],[-8.71142578,0.11617773437499991E2],[-8.82202148,0.11673242187499994E2],[-8.81831055,0.11922509765624993E2],[-8.91386719,0.12108544921874993E2],[-8.99892578,0.12345898437499997E2],[-0.9043066406249977E1,12.4023438],[-0.9215527343749983E1,0.12482861328124997E2],[-9.3,0.12490283203124989E2],[-0.9395361328124977E1,0.12464648437499989E2],[-9.33154297,12.3237305],[-0.9358105468749983E1,0.12255419921874989E2],[-9.48681641,0.12228662109374994E2],[-0.9658300781249977E1,0.12143115234374987E2],[-9.71474609,12.0424805],[-9.82070312,12.0424805],[-0.10167089843749977E2,0.12177441406249995E2],[-0.10274853515624983E2,12.2126465],[-10.4658203,12.1386719],[-0.10677343749999977E2,11.8994141],[-0.10743017578124977E2,11.9272461],[-0.10876171874999981E2,12.1518555],[-0.10933203124999977E2,0.12205175781249991E2],[-0.11004541015624994E2,12.2075195],[-0.11065820312499994E2,0.12170800781249994E2],[-0.11209667968749983E2,0.12024853515624997E2],[-11.3051758,0.12015429687499989E2],[-11.4924316,0.12166943359374997E2],[-0.11502197265624998E2,0.12198632812499994E2],[-0.11418066406249977E2,12.3776855],[-0.11382421874999977E2,12.479248],[-0.11448779296874989E2,0.12531933593749997E2],[-11.4440918,0.12627587890624994E2],[-11.3903809,0.12941992187499991E2],[-0.11548779296874981E2,0.13170263671874991E2],[-0.11581347656249989E2,13.2900391],[-0.11634960937499983E2,13.369873],[-0.11758251953124981E2,13.3945312],[-0.11831689453124993E2,0.13315820312499993E2],[-0.11877783203124977E2,0.13364550781250003E2],[-0.11894580078124989E2,0.13444433593749991E2],[-12.0541992,0.13633056640624998E2],[-0.12044140624999983E2,13.7338867],[-0.11984179687499989E2,0.13788085937499998E2],[-0.11960888671874983E2,0.13875292968750001E2],[-0.12020117187499977E2,0.13974658203125001E2],[-0.12019189453124994E2,0.14206494140624997E2],[-0.12112890624999977E2,0.14323291015625001E2],[-0.12175244140624981E2,0.14376660156249997E2],[-0.12228417968749993E2,14.4585938],[-0.12186523437499998E2,0.14648144531249999E2],[-0.12280615234374977E2,0.14809033203124995E2],[-0.12104687499999981E2,14.7453613],[-11.940918,0.14886914062499995E2],[-0.11872851562499989E2,0.14995166015625003E2],[-0.11828759765624994E2,0.15244873046874998E2],[-11.7601562,15.4255371],[-0.11675878906249977E2,15.5120605],[-11.5026855,15.6368164],[-0.11455224609374994E2,15.6253906],[-0.11169335937499994E2,15.3586426],[-0.11007421874999977E2,15.2229004],[-0.10948242187499998E2,0.15151123046875002E2],[-0.10895605468749975E2,0.15150488281249991E2],[-0.10815087890624994E2,15.2817383],[-0.10696582031249989E2,15.4226562],[-0.10411816406249983E2,0.15437939453124995E2],[-0.10129541015624993E2,0.15383691406249993E2],[-9.94140625,15.3737793],[-9.44692383,15.4582031],[-0.9447705078124981E1,0.15574853515624994E2],[-0.9385351562499977E1,0.15667626953124993E2],[-9.35058594,0.15677392578124994E2],[-9.33544922,0.15525683593750001E2],[-9.29370117,0.15502832031249994E2],[-0.9176806640624989E1,15.4960938],[-5.5125,0.15496289062499995E2],[-5.35991211,0.16282861328124994E2],[-5.62866211,0.16568652343750003E2],[-6.56738281,24.7667969],[-6.5940918,24.9946289],[-4.82260742,24.9956055],[-4.51699219,24.8044922],[1.14550781,0.21102246093749997E2],[1.17275391,20.9819824],[1.16572266,0.20817431640625003E2],[1.29023438,0.20713574218749997E2],[1.61064453,0.20555566406249994E2],[1.68544922,0.20378369140624997E2],[1.83242188,20.296875],[1.92880859,20.2727051],[2.21933594,20.2478027],[2.28085937,0.20210302734374988E2],[2.40615234,0.20063867187499994E2],[2.47421875,0.20035009765624988E2],[2.86572266,0.19955957031249994E2],[2.99248047,19.9166016],[3.13027344,19.8501953],[3.20371094,0.19789697265624994E2],[3.20166016,19.5604004],[3.25585938,19.4109375],[3.25439453,0.19372607421875003E2],[3.19238281,0.19312060546875003E2],[3.10605469,0.19150097656249997E2],[3.11972656,0.19103173828124994E2],[3.25595703,19.0132812],[3.40087891,18.9884277],[4.22763672,0.19142773437499997E2]]]}}],"_labels":{"ML":"Mali"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/MM.json b/src/api-umbrella/admin-ui/public/maps/MM.json new file mode 100644 index 000000000..bc93166e2 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/MM.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"MM"},"geometry":{"type":"MultiPolygon","coordinates":[[[[98.1826172,9.93344727],[0.9814023437500005E2,9.9746582],[0.9822070312500003E2,0.10045214843750031E2],[98.2833984,0.10007617187500017E2],[98.1826172,9.93344727]]],[[[98.2097656,10.9527344],[0.9829345703125003E2,10.7796875],[0.9825175781250007E2,0.10744433593750017E2],[98.1553711,0.10897949218750028E2],[0.9808046875000005E2,0.10886621093750035E2],[0.9816728515625007E2,0.10980322265625032E2],[98.2097656,10.9527344]]],[[[0.9854169921875003E2,10.9615234],[98.4774414,10.9797363],[98.5265625,0.11086962890624989E2],[0.9854169921875003E2,10.9615234]]],[[[0.9822167968749997E2,11.4782227],[0.9820107421875005E2,0.11567187500000045E2],[98.278125,0.11758398437500006E2],[0.9830751953125005E2,0.11722900390625057E2],[98.2632813,0.11523632812500054E2],[0.9822167968749997E2,11.4782227]]],[[[98.5538086,0.11744873046874998E2],[98.528418,11.5386719],[98.4347656,0.11567089843750024E2],[98.3764648,11.7915039],[0.9852353515625005E2,0.11804931640624986E2],[98.5538086,0.11744873046874998E2]]],[[[98.0754883,0.11692382812500057E2],[0.9802109375000005E2,0.11695898437499977E2],[98.0103516,0.11860253906249966E2],[98.0754883,0.11692382812500057E2]]],[[[98.5160156,0.11905029296875028E2],[98.4743164,0.11899414062500043E2],[0.9845449218750005E2,0.12061279296874984E2],[98.6095703,0.11956640624999977E2],[98.5160156,0.11905029296875028E2]]],[[[0.9813671874999997E2,0.12150439453125031E2],[98.0373047,0.12232470703125045E2],[98.1224609,0.12278710937500051E2],[0.9813671874999997E2,0.12150439453125031E2]]],[[[0.9806611328125003E2,0.12389794921875023E2],[0.9800234375000005E2,0.12279003906250011E2],[97.9386719,12.3460937],[0.9806611328125003E2,0.12389794921875023E2]]],[[[0.9841396484375005E2,0.12597949218749974E2],[0.9845947265625003E2,0.12473730468749991E2],[0.9838085937499997E2,0.12353662109375035E2],[98.3138672,0.12335986328124989E2],[0.9833144531250005E2,0.12511425781250026E2],[0.9831210937500005E2,0.12678173828124983E2],[0.9841396484375005E2,0.12597949218749974E2]]],[[[0.9831542968749997E2,0.13099072265625026E2],[98.3091797,0.12934716796875023E2],[0.9825927734374997E2,0.13014013671875006E2],[98.2545898,0.13188574218750048E2],[0.9831542968749997E2,0.13099072265625026E2]]],[[[94.8048828,0.15819335937500002E2],[94.7334961,0.15823046875000045E2],[0.9482802734375005E2,0.15933007812499964E2],[94.8048828,0.15819335937500002E2]]],[[[94.4767578,0.15945947265625023E2],[0.9441191406250007E2,0.15848388671875055E2],[94.3878906,15.9941406],[94.6012695,0.16205517578124983E2],[94.5661133,0.16019287109375057E2],[94.4767578,0.15945947265625023E2]]],[[[97.575,0.16253222656250017E2],[97.4803711,0.16305712890625045E2],[0.9746914062500005E2,0.16461035156249977E2],[0.9754199218749997E2,16.5050781],[0.9759960937499997E2,0.16429541015625034E2],[97.575,0.16253222656250017E2]]],[[[93.6908203,18.6842773],[93.5699219,0.18759570312500017E2],[93.4875,0.18867529296875063E2],[93.7447266,0.18865527343750017E2],[93.6908203,18.6842773]]],[[[0.9371484374999997E2,0.19558251953124994E2],[0.9394570312500005E2,0.19428613281249966E2],[93.9019531,19.3320312],[0.9375585937500003E2,0.19325683593750057E2],[93.7323242,0.19416308593750045E2],[0.9364404296874997E2,19.4950684],[0.9371484374999997E2,0.19558251953124994E2]]],[[[93.4917969,19.8925781],[0.9351328125000005E2,0.19754785156249994E2],[93.4446289,0.19806445312500017E2],[93.4128906,0.19950341796875023E2],[93.4917969,19.8925781]]],[[[0.9301015625000005E2,0.19923925781249977E2],[0.9302324218750007E2,19.8288574],[92.9126953,19.9998047],[92.9146484,0.20086474609375045E2],[0.9301015625000005E2,0.19923925781249977E2]]],[[[0.9773007812500005E2,0.28407128906250023E2],[97.8649414,0.28363574218750017E2],[98.0989258,0.28142285156249983E2],[98.1304688,27.9675781],[0.9829882812499997E2,0.27550097656250045E2],[98.3504883,0.27538085937499996E2],[98.4088867,0.27639453125000045E2],[98.5044922,27.6476563],[98.6511719,0.27572460937499983E2],[0.9867675781250003E2,0.27421923828125042E2],[0.9867480468749997E2,27.190625],[0.9871650390625003E2,27.0449219],[98.7384766,0.26785742187500006E2],[98.7318359,26.5833984],[98.671875,0.26298535156249955E2],[98.6631836,26.1394531],[98.5719727,0.26114062500000045E2],[98.6546875,0.25917773437500017E2],[0.9862539062500005E2,0.25826708984375042E2],[98.4655273,0.25788867187500045E2],[0.9833378906250007E2,0.25586767578125006E2],[98.1725586,0.25594531250000074E2],[0.9809960937499997E2,0.25415722656249983E2],[98.0107422,0.25292529296875017E2],[0.9791796874999997E2,0.25236132812500074E2],[97.8195313,0.25251855468749994E2],[97.7149414,0.25034326171874994E2],[97.7238281,0.24841992187499983E2],[97.5833008,24.7748047],[97.5293945,0.24631201171875006E2],[97.5314453,24.4916992],[97.6666016,0.24379980468750006E2],[97.7082031,0.24228759765624996E2],[97.690625,24.1308105],[97.5682617,0.23988476562499983E2],[97.5645508,0.23911035156250023E2],[0.9768603515624997E2,0.23898095703124962E2],[98.0168945,24.0654297],[98.2125,0.24110644531250017E2],[0.9849941406250005E2,0.24115673828124983E2],[98.5833984,0.24069824218750057E2],[0.9876435546875003E2,0.24116064453125063E2],[0.9883398437500003E2,24.0905762],[0.9870156250000005E2,23.9640625],[98.6808594,23.8417969],[98.7876953,23.7378418],[98.8322266,0.23624365234374974E2],[0.9879785156250003E2,0.23520410156250023E2],[0.9885888671875003E2,0.23440087890624994E2],[98.8855469,0.23307470703124977E2],[0.9886376953125003E2,0.23191259765625034E2],[99.0550781,23.1305664],[0.9934082031249997E2,0.23095898437499955E2],[99.4645508,0.23046240234375063E2],[99.5071289,0.22959130859374994E2],[0.9938515625000005E2,0.22825097656250023E2],[99.3382812,0.22688671874999955E2],[99.3376953,22.4980469],[0.9924306640625005E2,0.22370361328125025E2],[0.9917236328125001E2,0.22192480468750034E2],[0.9919296875000005E2,22.1259766],[0.9959267578125005E2,0.22089160156250017E2],[99.9176758,22.0280273],[99.9478516,0.21988330078125017E2],[0.9992558593750007E2,21.8208008],[99.9782227,21.7016113],[0.10009550781250007E3,21.6606445],[0.10008925781250004E3,0.21557910156250074E2],[100.214746,0.21462988281250006E2],[0.10035058593749997E3,0.21501025390625017E2],[0.10053134765625012E3,0.21458105468749977E2],[100.677148,0.21504931640625017E2],[0.10083515625000004E3,0.21655175781249994E2],[0.10107978515625004E3,21.7558594],[0.10113085937499997E3,21.7355469],[0.10114726562500002E3,21.5816406],[0.10108037109375007E3,0.21468652343749994E2],[0.10092753906250002E3,0.21366210937499996E2],[0.10075664062500002E3,0.21312646484375023E2],[0.10065917968749997E3,21.1303711],[0.10056660156250004E3,21.0381836],[0.10052226562500007E3,20.9219238],[0.10062294921875005E3,0.20859570312499983E2],[0.10032607421875004E3,0.20795703125000045E2],[0.10024931640625002E3,0.20730273437500045E2],[0.10018388671875002E3,0.20589111328125053E2],[0.10012246093750005E3,0.20316650390625057E2],[99.890332,0.20424414062499977E2],[99.7733398,20.3413086],[0.9963867187499997E2,0.20320458984375023E2],[0.9945888671875005E2,20.3630371],[99.5016602,20.1877441],[99.4515625,0.20118310546874966E2],[0.9933789062499997E2,0.20078906250000017E2],[99.196875,0.20115136718750023E2],[0.9907421875000003E2,0.20099365234375025E2],[99.0207031,0.20041796875000017E2],[98.9874023,0.19861376953125017E2],[98.9166992,19.7729004],[98.7606445,0.19771093750000034E2],[98.4938477,0.19701318359375023E2],[98.2390625,0.19690673828124968E2],[98.1110352,0.19762158203124983E2],[0.9801503906250005E2,0.19749511718749968E2],[0.9799121093749997E2,0.19653710937499994E2],[97.8167969,0.19459960937500057E2],[0.9780390625000003E2,0.19130468749999977E2],[0.9770605468749997E2,0.18931787109374994E2],[0.9775400390625005E2,0.18620800781249983E2],[97.7277344,18.5720215],[97.4849609,0.18494238281250034E2],[97.3739258,18.5179688],[97.4507813,0.18359667968750074E2],[97.5993164,0.18302978515624968E2],[0.9771972656250003E2,0.18037402343750042E2],[97.7399414,0.17935302734375025E2],[0.9769853515625007E2,17.8335449],[0.9779296875000003E2,17.68125],[98.256543,0.17147656249999983E2],[98.4388672,0.16975683593750034E2],[98.478125,0.16732226562500074E2],[98.6892578,16.3054199],[0.9883544921875001E2,16.4175781],[98.8882813,0.16351904296875034E2],[98.8179688,16.1808105],[98.5923828,16.0506836],[98.5582031,0.15768603515625045E2],[0.9856523437500007E2,0.15403564453125014E2],[98.1910156,0.15204101562499972E2],[98.1779297,0.15147412109374969E2],[0.9824599609375005E2,0.14814746093750044E2],[98.5700195,0.14359912109375031E2],[0.9893359374999997E2,0.14049853515625003E2],[0.9901464843749997E2,0.13947167968750051E2],[99.1368164,0.13716699218749993E2],[0.9917167968750007E2,0.13496923828124975E2],[99.1761719,0.13233056640625051E2],[0.9910742187500003E2,0.13103515625000043E2],[99.1735352,0.12961328125000023E2],[99.2198242,12.7397461],[99.4050781,0.12547900390625003E2],[99.3942383,0.12473632812500057E2],[0.9946289062499997E2,12.1902344],[0.9952294921875003E2,0.12089648437499987E2],[0.9961474609374997E2,0.11781201171875026E2],[99.4779297,11.6125],[99.1901367,0.11105273437499989E2],[0.9902539062500003E2,0.10919970703124989E2],[98.7572266,0.10660937499999973E2],[0.9876835937500007E2,10.4308594],[0.9870253906250005E2,10.1903809],[98.5625977,0.10034960937499989E2],[98.496875,0.10182519531250037E2],[98.5230469,10.353125],[98.4649414,0.10675830078124989E2],[98.5356445,0.10740673828124969E2],[0.9867558593750007E2,0.10986914062500034E2],[0.9868261718749997E2,0.11133105468749974E2],[98.7447266,0.11240380859374978E2],[98.7414062,0.11591699218749966E2],[0.9887597656250003E2,0.11719726562500028E2],[98.8047852,0.11779248046874983E2],[0.9863632812500005E2,0.11738378906250004E2],[0.9864492187500005E2,0.11910302734375037E2],[0.9868945312499997E2,0.11956738281249997E2],[98.6638672,0.12126708984374986E2],[0.9869628906250003E2,0.12225244140624993E2],[98.600293,12.2453125],[98.6787109,0.12348486328124963E2],[0.9862441406250005E2,0.12440722656250017E2],[98.6646484,12.5399414],[0.9863710937500005E2,0.12848242187499991E2],[98.5759766,0.13161914062500031E2],[98.4871094,0.13293066406250018E2],[98.4212891,0.13483789062499966E2],[98.2454102,0.13733496093750032E2],[98.2389648,0.13934472656250037E2],[98.2003906,0.13980175781250026E2],[98.1495117,0.13647607421875037E2],[98.1106445,0.13712890625000014E2],[98.0726562,13.9864746],[98.1001953,0.14161523437500023E2],[97.9984375,14.3353027],[97.9097656,0.14652685546874991E2],[98.01875,0.14652587890625055E2],[0.9793652343749997E2,0.14763916015624998E2],[0.9786914062499997E2,0.14738720703125011E2],[0.9781230468750007E2,0.14858935546874989E2],[0.9779980468749997E2,0.15184912109374965E2],[97.74375,0.15306787109375023E2],[97.7742188,0.15430957031250001E2],[97.7103516,0.15875537109375074E2],[97.5842773,0.16019580078125014E2],[97.640625,0.16253857421874955E2],[97.6336914,0.16457666015624994E2],[0.9772597656250005E2,16.5685547],[97.6196289,0.16537207031250034E2],[0.9737587890625005E2,16.5229492],[0.9733105468749997E2,16.6717773],[97.2674805,0.16743115234374983E2],[97.1783203,17.0620117],[96.9701172,0.17317333984374983E2],[0.9685146484375005E2,0.17401025390624994E2],[96.9097656,0.17304833984375023E2],[96.8508789,0.17202929687500045E2],[0.9690859375000005E2,17.030957],[96.8106445,0.16778369140625045E2],[0.9662246093750005E2,16.563916],[0.9650664062500007E2,16.5143555],[96.3643555,16.5205078],[0.9628222656249997E2,0.16595996093750014E2],[0.9624892578125005E2,0.16765332031249983E2],[96.1890625,0.16768310546875057E2],[96.2367188,16.5674316],[96.3243164,0.16444433593750063E2],[96.1350586,16.3425293],[96.0428711,0.16339941406250006E2],[96.0123047,0.16253710937500014E2],[0.9576328125000005E2,0.16169042968750006E2],[95.6794922,0.15976757812499981E2],[0.9555566406250003E2,15.8378418],[0.9538955078125005E2,0.15722753906250034E2],[95.3014648,0.15756152343749989E2],[95.3078125,0.15880419921874987E2],[0.9536474609374997E2,0.15985449218749977E2],[0.9533300781249997E2,0.16033251953125045E2],[95.1769531,0.15825683593750027E2],[94.9425781,0.15818261718750021E2],[94.8912109,0.15979101562500034E2],[94.8931641,0.16182812499999955E2],[0.9479814453125007E2,15.9710937],[0.9466152343750005E2,0.15904394531250006E2],[0.9465136718750003E2,16.0648438],[94.7199219,16.3987305],[0.9470332031250003E2,0.16511914062499955E2],[94.6652344,16.3361328],[94.5875,16.2888184],[94.4416016,0.16094384765624966E2],[94.2990234,0.16007617187500074E2],[94.2238281,0.16016455078125006E2],[0.9421425781250005E2,0.16126611328124966E2],[94.2712891,0.16517285156249983E2],[94.353418,0.16639941406250017E2],[94.4,0.16868164062500057E2],[0.9445244140625007E2,0.16954492187499966E2],[0.9447314453125003E2,0.17135449218749983E2],[0.9456445312499997E2,0.17308544921874983E2],[94.5889648,17.5693359],[94.4943359,17.8246094],[94.4307617,0.18201660156250025E2],[94.2658203,0.18507226562500023E2],[94.2521484,0.18609179687500017E2],[0.9417070312500007E2,18.7324219],[94.2457031,0.18741162109374983E2],[94.0913086,0.18849218750000063E2],[0.9403896484375005E2,19.1461914],[0.9404492187500003E2,0.19287402343750074E2],[0.9394101562500005E2,0.19146093750000063E2],[0.9396806640625007E2,18.9950684],[93.9291992,0.18899658203125025E2],[0.9370546875000005E2,0.19026904296875017E2],[0.9349306640625005E2,0.19369482421875006E2],[0.9357861328124997E2,0.19401171875000074E2],[0.9372802734375001E2,0.19266503906249994E2],[93.8249023,0.19238476562499955E2],[93.9620117,0.19329345703124996E2],[0.9399814453125005E2,0.19440869140624983E2],[93.8395508,19.5341309],[93.7395508,19.6972656],[0.9361171875000005E2,0.19776074218749983E2],[0.9370703125000003E2,0.19912158203125074E2],[0.9358183593750007E2,0.19909570312499994E2],[0.9336230468750001E2,20.0583008],[93.1566406,20.0407715],[93.1990234,0.19898339843750023E2],[93.1294922,0.19858007812500063E2],[0.9300195312499997E2,20.0748535],[93.0955078,0.20181347656250008E2],[0.9301513671875003E2,20.1852539],[0.9306679687500005E2,20.3776367],[0.9288212890625007E2,0.20152148437500014E2],[92.7912109,20.2114258],[0.9289111328124997E2,20.340332],[0.9270898437499997E2,20.5639648],[92.7228516,20.2956055],[92.6080078,0.20469873046874994E2],[92.3241211,0.20791845703125063E2],[92.2644531,21.0614746],[92.2147461,21.1126953],[0.9217958984375005E2,0.21293115234375023E2],[0.9233056640624997E2,0.21439794921874977E2],[92.5391602,21.3198242],[92.6316406,0.21306201171875045E2],[92.593457,21.467334],[92.5828125,0.21940332031249994E2],[92.6889648,0.22130957031250006E2],[92.8542969,0.22010156250000023E2],[92.9645508,0.22003759765625034E2],[93.0706055,0.22209423828125008E2],[93.1511719,0.22230615234374994E2],[93.1620117,0.22360205078125006E2],[93.0787109,22.7182129],[93.1625,22.907959],[93.1641602,0.23032031250000017E2],[93.3080078,0.23030371093750034E2],[93.3660156,0.23132519531249955E2],[93.4149414,23.6820801],[0.9330732421875003E2,24.021875],[93.3555664,0.24074121093750023E2],[93.49375,0.23972851562500008E2],[0.9368339843750007E2,24.006543],[94.1276367,23.8764648],[94.2930664,24.321875],[0.9439941406250003E2,24.5140625],[94.584082,0.24767236328125023E2],[94.7076172,0.25048730468749994E2],[0.9467529296875003E2,0.25138574218749994E2],[94.5543945,0.25243457031250045E2],[0.9462285156250007E2,25.4100098],[0.9478583984375003E2,0.25519335937500017E2],[94.9919922,25.770459],[95.0152344,0.25912939453125006E2],[95.1324219,0.26041259765625057E2],[95.0689453,26.1911133],[95.0597656,0.26473974609375006E2],[95.1287109,0.26597265624999977E2],[0.9546386718749997E2,26.7560547],[95.7383789,26.9504395],[0.9590527343750003E2,0.27046630859375057E2],[0.9606142578125005E2,27.2170898],[96.2742188,0.27278369140625014E2],[96.6657227,0.27339257812499994E2],[0.9679785156249997E2,27.2961914],[96.8802734,0.27177832031250034E2],[0.9703808593749997E2,27.1020508],[97.1037109,27.1633301],[96.9019531,27.4395996],[96.899707,0.27643847656250045E2],[0.9722607421874997E2,27.8900391],[97.3351563,0.27937744140625057E2],[0.9730273437499997E2,28.0859863],[97.3224609,28.2179688],[97.5378906,0.28510205078124983E2],[97.6588867,28.5],[0.9773007812500005E2,0.28407128906250023E2]]]]}}],"_labels":{"MM":"Myanmar"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/MN.json b/src/api-umbrella/admin-ui/public/maps/MN.json new file mode 100644 index 000000000..de1aa0778 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/MN.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"MN"},"geometry":{"type":"Polygon","coordinates":[[[0.11668330078125001E3,0.49823779296874996E2],[0.11624335937500001E3,49.1703613],[116.034375,48.8400391],[115.953809,48.6893555],[0.11582050781250001E3,48.5772461],[115.791699,0.48455712890624994E2],[0.11578554687500002E3,48.2482422],[0.11552509765625003E3,48.1308594],[0.11555761718749999E3,47.9450195],[0.11571171874999999E3,47.7989258],[0.11589824218749999E3,0.47686914062499994E2],[0.11599384765625001E3,47.7113281],[0.11607480468750003E3,47.7895508],[0.11623115234375001E3,47.8582031],[0.11651347656249997E3,47.8395508],[0.11676054687499999E3,0.47869775390624994E2],[0.11690117187499999E3,0.47853076171874996E2],[0.11706972656250002E3,47.8063965],[117.350781,47.6521973],[0.11755537109375001E3,47.8046875],[0.11776835937499999E3,47.9878906],[117.979199,47.9996094],[0.11814707031250002E3,48.0289062],[0.11823964843750004E3,47.9995117],[0.11849843750000002E3,47.9839844],[0.11856777343750002E3,0.47943261718749994E2],[118.759961,0.47757617187499996E2],[0.11908193359375002E3,47.6541504],[0.11912294921875002E3,0.47558496093749994E2],[119.29082,47.4726562],[0.11932597656249999E3,47.4101562],[0.11952695312500002E3,0.47255908203124996E2],[119.711133,47.15],[0.11978847656250004E3,0.46978808593749996E2],[0.11989785156250002E3,46.8578125],[119.867188,0.46672167968749996E2],[0.11970664062500003E3,46.6060059],[0.11947402343750002E3,46.6266602],[0.11933183593749997E3,0.46613818359374996E2],[119.162109,46.6386719],[0.11895712890625002E3,46.7348633],[0.11884394531250001E3,46.7602051],[0.11872294921874997E3,46.6918945],[0.11830869140625003E3,46.717041],[0.11791044921874999E3,46.6193359],[117.813477,46.5376953],[0.11767109375000001E3,46.5220703],[117.546875,46.5882813],[0.11740556640624997E3,46.5708984],[0.11733339843750004E3,46.3620117],[0.11697880859374999E3,46.3617676],[0.11685908203125001E3,46.3879395],[0.11656259765625005E3,46.2897949],[0.11651669921875003E3,46.209082],[0.11635761718750001E3,0.46096582031249994E2],[0.11621298828125003E3,45.8869141],[116.240625,45.7959961],[116.109863,45.6867187],[0.11593417968750002E3,45.6261719],[0.11568105468750002E3,45.458252],[115.162598,45.3902344],[0.11491923828124997E3,45.3782715],[0.11473876953124999E3,45.4196289],[0.11464433593749997E3,45.4132812],[0.11451718750000003E3,45.3645996],[114.487305,45.2717285],[0.11441914062500001E3,45.2025879],[0.11416738281250002E3,0.45049853515624996E2],[0.11403027343749999E3,44.9425781],[0.11387705078125003E3,44.8961914],[0.11365263671874999E3,0.44763476562499996E2],[0.11358701171875003E3,44.7457031],[113.300977,0.44791650390624994E2],[0.11304941406250003E3,0.44810351562499996E2],[0.11270673828125001E3,0.44883447265624994E2],[0.11259677734375003E3,44.9176758],[0.11249931640624999E3,45.0109375],[0.11241132812500001E3,45.0582031],[0.11211289062500003E3,45.0629395],[0.11203261718750001E3,45.0816406],[0.11189804687500002E3,45.0640625],[0.11175107421875003E3,44.9695313],[0.11162128906250001E3,44.8271484],[0.11148945312500001E3,44.5115723],[0.11140224609375002E3,44.3672852],[0.11151972656250001E3,44.1918945],[111.683789,44.0411133],[111.836914,43.934668],[0.11193173828125003E3,43.8149414],[0.11193320312500003E3,43.7114258],[0.11177109375000003E3,0.43664599609374996E2],[111.547363,43.4962891],[0.11150351562500002E3,43.4927734],[0.11100722656250002E3,43.3414062],[0.11042958984375002E3,42.8135742],[0.11040039062499999E3,42.7736816],[0.11005800781250002E3,42.6605957],[0.10969804687499999E3,42.5538086],[0.10944316406249999E3,0.42455957031249994E2],[109.339844,0.42438378906249994E2],[0.10913164062499999E3,0.42440576171874994E2],[0.10868730468749997E3,42.4161133],[0.10817119140624999E3,42.4473145],[0.10709072265625001E3,42.3215332],[0.10677001953124999E3,0.42288720703124994E2],[0.10586757812500002E3,41.9939941],[0.10531435546875002E3,0.41770898437499994E2],[0.10519707031249997E3,41.7380371],[0.10505058593749999E3,41.615918],[0.10498203125000003E3,0.41595507812499996E2],[0.10486035156249999E3,41.64375],[0.10449824218750001E3,41.6586914],[0.10449824218750001E3,0.41877001953124996E2],[0.10371113281250001E3,41.7513184],[0.10307285156250003E3,42.005957],[102.156641,0.42158105468749994E2],[0.10197294921874999E3,42.2158691],[0.10171386718749999E3,42.4658203],[0.10149531250000001E3,42.5387695],[0.10109199218750001E3,0.42551318359374996E2],[0.10008632812500002E3,42.670752],[99.9837891,42.6773437],[0.9946787109375003E2,42.5682129],[98.946875,42.6162109],[0.9771894531250001E2,42.7362793],[97.2056641,42.7897949],[0.9638544921875001E2,0.42720361328124994E2],[0.9629951171875001E2,42.9287109],[0.9608027343750001E2,43.0961426],[95.9125,43.2064941],[95.8595703,43.2759766],[0.9584199218750001E2,0.43383691406249994E2],[95.5912109,43.8536133],[95.5255859,43.9539551],[95.3564453,44.005957],[95.3255859,0.44104882812499994E2],[0.9535029296875001E2,44.2780762],[0.9504980468749999E2,44.2594238],[0.9471201171875003E2,44.3508301],[0.9449433593750001E2,44.4725098],[94.3647461,44.5194824],[0.9419931640625003E2,0.44645166015624994E2],[93.9579102,0.44674951171874994E2],[93.8681641,44.7242187],[0.9365644531250001E2,44.9009766],[0.9351621093750003E2,0.44944482421874994E2],[93.2943359,44.9831543],[0.9278789062499999E2,45.0357422],[92.4238281,0.45008935546874994E2],[0.9217265624999999E2,45.0352539],[92.0297852,0.45068505859374994E2],[91.584375,45.0765137],[0.9144101562500003E2,45.1247559],[0.9131210937500003E2,45.1181152],[91.05,45.2174316],[0.9087724609374999E2,45.1960938],[0.9085322265625001E2,45.2628906],[90.6618164,45.5252441],[0.9070966796875001E2,45.7308105],[90.7958984,45.8535156],[90.8524414,0.45885400390624994E2],[0.9100175781249999E2,0.46035791015624994E2],[0.9099677734375001E2,46.1049805],[90.9115234,0.46270654296874994E2],[91.0338867,46.5290039],[90.9857422,46.7490234],[0.9086992187499999E2,0.46954492187499994E2],[0.9071552734375001E2,47.0038574],[0.9049619140625003E2,47.2851562],[0.9042519531250001E2,47.5041016],[0.9031328124999999E2,47.6761719],[0.9010322265625001E2,0.47745410156249996E2],[90.0279297,47.8776855],[89.778125,47.827002],[89.6384766,0.47909082031249994E2],[89.5609375,0.48003955078124996E2],[89.4791992,48.0290527],[89.3298828,48.0248535],[89.1962891,47.9809082],[89.0476562,48.0025391],[88.9177734,0.48089013671874994E2],[88.8382813,0.48101708984374994E2],[88.5759766,48.220166],[88.5667969,0.48317431640624996E2],[88.5170898,48.3844727],[88.4139648,48.403418],[88.3099609,0.48472070312499994E2],[87.9796875,48.555127],[87.9722656,0.48603320312499996E2],[88.0501953,48.6750488],[88.0279297,48.7355957],[87.8318359,0.48791650390624994E2],[87.7431641,48.8816406],[87.8598633,48.9655273],[87.8142578,49.1623047],[87.9347656,49.1645508],[88.1157227,49.2562988],[88.1355469,0.49381494140624994E2],[88.1925781,0.49451708984374996E2],[88.3933594,49.4828613],[88.6332031,0.49486132812499996E2],[88.7478516,49.4462402],[88.8316406,49.4484375],[88.9001953,0.49539697265624994E2],[89.0083984,0.49472802734374994E2],[89.1799805,49.5322266],[89.2439453,49.6270508],[89.3956055,49.6115234],[89.475,49.6605469],[89.6541016,49.7174805],[89.6438477,49.9030273],[89.7442383,49.9480957],[89.8780273,49.9535156],[89.9773437,49.9843262],[90.0049805,50.0692871],[90.2245117,50.1166992],[0.9051689453124999E2,50.2133301],[0.9065507812499999E2,50.2223633],[90.7607422,0.50305957031249996E2],[0.9083808593750001E2,50.3237305],[0.9102158203125003E2,50.4154785],[91.3408203,50.4700684],[0.9141503906249999E2,50.4680176],[0.9144648437500001E2,50.522168],[91.596875,50.5755371],[0.9170634765624999E2,50.6655273],[91.8042969,50.6936035],[0.9219238281249999E2,0.50700585937499994E2],[92.2958008,50.8498047],[0.9235478515624999E2,0.50864160156249994E2],[92.4864258,50.7650879],[0.9262666015625001E2,50.6882813],[92.7386719,50.7109375],[0.9277929687499999E2,50.7786621],[92.9413086,0.50778222656249994E2],[0.9300986328125003E2,50.654541],[93.103125,50.6039063],[0.9327050781249999E2,50.6155762],[0.9362558593750003E2,50.5855469],[0.9425107421875003E2,50.5563965],[94.2870117,0.50511376953124994E2],[0.9435468750000001E2,0.50221826171874994E2],[0.9456464843750001E2,0.50087939453124996E2],[94.6147461,0.50023730468749996E2],[0.9471806640624999E2,0.50043261718749996E2],[0.9493027343750003E2,50.04375],[0.9511142578125003E2,0.49935449218749994E2],[95.3856445,49.9412109],[95.5226562,49.9112305],[0.9556718749999999E2,49.9438477],[95.8519531,50.0129395],[0.9593574218750001E2,0.49960009765624996E2],[0.9606552734375003E2,49.9987305],[0.9622968750000001E2,49.9541016],[0.9631503906250003E2,49.901123],[0.9650576171875001E2,49.9187012],[0.9659843749999999E2,49.878418],[0.9671171874999999E2,49.9115723],[0.9698574218750001E2,49.8828125],[0.9713691406250001E2,49.7617188],[0.9720859375000003E2,49.7308105],[97.3597656,49.7414551],[0.9754082031249997E2,49.8431152],[97.5893555,49.9114746],[97.7207031,0.49944628906249996E2],[97.8539062,49.9467773],[98.103418,50.077832],[0.9825029296874999E2,50.3024414],[0.9829267578125001E2,50.4869629],[0.9827949218750001E2,0.50533251953124996E2],[98.1450195,50.5685547],[98.0297852,50.6446289],[97.9619141,50.7691406],[97.953125,50.8551758],[0.9782529296875003E2,0.50985253906249994E2],[0.9783574218749999E2,0.51051660156249994E2],[97.9108398,0.51165185546874994E2],[97.946875,51.3484375],[0.9803759765624999E2,51.4499512],[0.9821992187500001E2,51.5056152],[98.2375,0.51578417968749996E2],[98.3527344,51.717627],[98.6405273,51.8011719],[0.9880253906249999E2,51.9574707],[0.9889316406250003E2,52.1172852],[99.0342773,52.0354004],[0.9909140625000003E2,52.0348633],[0.9940703124999999E2,51.9235352],[99.7192383,0.51871630859374996E2],[0.9992167968749999E2,51.7555176],[0.10003457031250002E3,51.7371094],[0.10046894531250001E3,51.7260742],[0.10053623046875003E3,51.7134766],[0.10122324218750003E3,51.5132812],[101.38125,51.4526367],[0.10157089843750003E3,51.4671875],[0.10211152343750001E3,51.3534668],[0.10215566406250002E3,0.51313769531249996E2],[0.10215195312500003E3,51.1075195],[102.194531,51.0506836],[0.10222617187500003E3,50.9014648],[102.215039,50.8294434],[0.10231660156250001E3,50.718457],[0.10228837890624999E3,0.50585107421874994E2],[102.336426,0.50544238281249996E2],[102.469434,0.50525683593749996E2],[0.10268330078125001E3,50.3871582],[0.10285966796874997E3,50.333252],[0.10316171875000003E3,50.2907227],[103.304395,50.200293],[0.10363291015625002E3,0.50138574218749994E2],[0.10380263671875002E3,0.50176074218749996E2],[0.10407871093750003E3,50.154248],[104.179688,50.1694336],[0.10435390625000002E3,0.50275292968749994E2],[104.466309,50.3061523],[0.10497695312500002E3,50.3829102],[105.094727,0.50389941406249996E2],[0.10526669921875003E3,0.50460498046874996E2],[0.10538359374999999E3,50.4737305],[105.692578,50.4141602],[0.10587519531250001E3,50.4053711],[106.08252,0.50332568359374996E2],[0.10621787109375003E3,0.50304589843749994E2],[0.10657441406250001E3,50.3288086],[0.10671113281250001E3,50.3125977],[0.10694130859375001E3,50.1966797],[0.10704023437500001E3,0.50086474609374996E2],[0.10723330078125002E3,0.49989404296874994E2],[0.10763095703125003E3,49.9831055],[0.10791660156250003E3,0.49947802734374996E2],[0.10794785156250003E3,0.49924707031249994E2],[0.10793671875000001E3,49.6910156],[0.10803378906250003E3,49.5939941],[0.10821308593750001E3,0.49524804687499994E2],[108.406934,0.49396386718749994E2],[0.10861367187500002E3,0.49322802734374996E2],[0.10873300781250003E3,49.3356445],[0.10923671875000002E3,49.3349121],[0.10952871093750002E3,49.269873],[0.11019990234375001E3,49.1704102],[0.11032138671875003E3,0.49215869140624996E2],[0.11042783203125003E3,49.2199707],[0.11063105468750001E3,0.49137597656249994E2],[0.11082792968749999E3,0.49166162109374994E2],[0.11133662109375001E3,49.3558594],[0.11142929687500003E3,49.342627],[0.11173554687500001E3,0.49397753906249996E2],[0.11207968750000003E3,49.4242188],[0.11237519531250001E3,49.5145996],[0.11249492187499999E3,49.5323242],[0.11269736328125003E3,49.5072754],[0.11280644531249999E3,0.49523583984374994E2],[0.11305556640625002E3,0.49616259765624996E2],[0.11316416015625003E3,0.49797167968749996E2],[113.574219,50.0070312],[0.11388115234374999E3,0.50101123046874996E2],[0.11407070312500002E3,50.2047363],[0.11429707031250001E3,50.2744141],[0.11438632812500002E3,50.2554687],[0.11474316406249999E3,0.50233691406249996E2],[0.11500332031250002E3,0.50138574218749994E2],[0.11527451171875002E3,0.49948876953124994E2],[0.11542919921875001E3,49.8964844],[115.717773,49.8806152],[0.11613457031249999E3,0.50010791015624996E2],[116.216797,50.0092773],[0.11655117187500004E3,49.9203125],[0.11668330078125001E3,0.49823779296874996E2]]]}}],"_labels":{"MN":"Mongolia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/MO.json b/src/api-umbrella/admin-ui/public/maps/MO.json new file mode 100644 index 000000000..ca8daad77 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/MO.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"MO"},"geometry":{"type":"Polygon","coordinates":[[[0.11347890625000002E3,22.1955566],[0.11348105468750003E3,0.22217480468749997E2],[113.494141,22.2415527],[0.11352705078125001E3,0.22245947265624988E2],[0.11354814453124997E3,0.22222607421874997E2],[0.11347890625000002E3,22.1955566]]]}}],"_labels":{"MO":"Macao"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/MP.json b/src/api-umbrella/admin-ui/public/maps/MP.json new file mode 100644 index 000000000..38094f0bb --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/MP.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"MP"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.14526484375000004E3,0.14158105468750037E2],[0.14521533203124997E3,0.14111328125000014E2],[0.14515214843750007E3,0.14163623046875003E2],[0.14523242187499997E3,0.14189453125000028E2],[0.14526484375000004E3,0.14158105468750037E2]]],[[[145.662305,0.14970507812499987E2],[145.620996,14.9195313],[0.14558671875000007E3,0.15030810546875017E2],[145.647363,0.15059472656249994E2],[145.662305,0.14970507812499987E2]]],[[[0.14575195312499997E3,15.1331543],[0.14568427734375004E3,0.15125097656250032E2],[0.14571318359375007E3,0.15215283203125024E2],[145.821875,0.15265380859375012E2],[0.14575195312499997E3,15.1331543]]],[[[0.14571210937500004E3,16.3391113],[0.14565830078125006E3,0.16335791015625034E2],[0.14563105468750004E3,0.16377978515625017E2],[145.695508,16.3796387],[0.14571210937500004E3,16.3391113]]],[[[0.14577753906250004E3,0.18078955078124977E2],[0.14572910156250012E3,0.18056933593750045E2],[0.14580742187500007E3,0.18172656250000074E2],[0.14583544921875003E3,0.18136767578125042E2],[0.14577753906250004E3,0.18078955078124977E2]]],[[[145.708398,18.7625],[145.678125,0.18725244140625023E2],[0.14564550781249997E3,18.8067871],[145.708398,18.7625]]]]}}],"_labels":{"MP":"N. Mariana Is."}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/MQ.json b/src/api-umbrella/admin-ui/public/maps/MQ.json new file mode 100644 index 000000000..922d58db4 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/MQ.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"MQ"},"geometry":{"type":"Polygon","coordinates":[[[-60.8262695,0.14494482421874991E2],[-60.8621094,14.4262695],[-60.8994141,0.14473779296874993E2],[-61.0637207,0.14467089843750001E2],[-61.090332,14.5296875],[-0.61011328124999984E2,0.14601904296874991E2],[-61.1411133,0.14652392578125003E2],[-61.2197266,0.14804394531249997E2],[-61.1273926,0.14875292968750001E2],[-60.9186523,14.7353516],[-0.60933691406249984E2,0.14686181640624996E2],[-60.8699707,0.14613720703124997E2],[-60.8262695,0.14494482421874991E2]]]}}],"_labels":{"MQ":"Martinique"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/MR.json b/src/api-umbrella/admin-ui/public/maps/MR.json new file mode 100644 index 000000000..08a9637f4 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/MR.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"MR"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-0.16373339843749985E2,0.19706445312499994E2],[-0.16437548828124932E2,0.19609277343749994E2],[-0.16465966796874937E2,19.6463867],[-0.16477001953124983E2,19.7103516],[-0.16393261718749955E2,19.8492676],[-0.16343652343749994E2,19.8662109],[-0.16373339843749985E2,0.19706445312499994E2]]],[[[-6.16879883,21.2855469],[-5.62866211,0.16568652343750045E2],[-5.35991211,0.16282861328124994E2],[-5.5125,0.15496289062499983E2],[-0.9176806640624989E1,0.15496093750000027E2],[-9.29370117,0.15502832031249994E2],[-9.33544922,0.15525683593750017E2],[-0.9350585937499941E1,0.15677392578125023E2],[-9.38535156,0.15667626953124993E2],[-9.4265625,0.15623046875000057E2],[-9.44770508,0.15574853515624994E2],[-0.9446923828124937E1,0.15458203124999955E2],[-0.9577832031249955E1,0.15437255859375027E2],[-9.75507812,0.15401464843750034E2],[-9.94140625,0.15373779296874984E2],[-0.10129541015625023E2,0.15383691406249964E2],[-0.10262109374999937E2,0.15416015624999972E2],[-0.10411816406249955E2,0.15437939453125011E2],[-0.10586572265624937E2,15.4348633],[-0.10696582031249989E2,15.4226562],[-0.10731982421874989E2,0.15394921875000037E2],[-0.10815087890624966E2,15.2817383],[-0.10895605468749949E2,0.15150488281249975E2],[-0.10948242187499998E2,0.15151123046875014E2],[-0.11007421874999977E2,0.15222900390624986E2],[-0.11169335937500023E2,0.15358642578125014E2],[-11.365625,0.15536767578124964E2],[-0.11455224609374994E2,15.6253906],[-0.11502685546874972E2,0.15636816406250006E2],[-0.11675878906249919E2,0.15512060546875006E2],[-0.11760156249999937E2,0.15425537109375057E2],[-11.7984375,0.15342724609374969E2],[-0.11828759765624966E2,0.15244873046875014E2],[-0.11842236328124955E2,0.15129394531250028E2],[-0.11872851562499989E2,0.14995166015625031E2],[-11.940918,0.14886914062500011E2],[-12.021582,14.8049316],[-0.12104687499999955E2,14.7453613],[-12.3025391,0.14816992187499975E2],[-12.4086914,0.14889013671874991E2],[-0.12459863281249937E2,14.9746582],[-0.12543554687499949E2,0.15039013671874997E2],[-0.12659619140624955E2,0.15082080078124974E2],[-0.12735253906249993E2,15.13125],[-12.7703125,0.15186669921874966E2],[-0.12858496093749977E2,0.15242529296874977E2],[-0.12862695312499937E2,0.15340429687500034E2],[-0.12930859374999983E2,0.15453027343749966E2],[-0.12994335937499926E2,0.15504882812500055E2],[-0.13048535156249955E2,0.15496630859375045E2],[-0.13079296874999926E2,0.15510449218750038E2],[-0.13105273437499987E2,15.5717773],[-0.13142382812499989E2,0.15603320312500044E2],[-0.13206445312499994E2,0.15616894531249953E2],[-0.13258007812499926E2,0.15700390625000011E2],[-0.13297021484374966E2,0.15853857421875006E2],[-0.13347558593749966E2,0.15973486328125034E2],[-0.13409667968749998E2,0.16059179687500006E2],[-0.13486962890624937E2,0.16097021484374977E2],[-0.13506982421875023E2,16.1352051],[-0.13555517578124949E2,0.16144042968749968E2],[-0.13623535156249943E2,0.16118310546874966E2],[-0.13684667968749977E2,16.1269043],[-0.13714941406249919E2,0.16168798828125034E2],[-0.13756640624999989E2,0.16172509765624994E2],[-0.13809814453124972E2,0.16138037109374977E2],[-13.868457,0.16148144531250008E2],[-0.13932617187499943E2,0.16202880859375057E2],[-0.13968164062499994E2,0.16257226562500023E2],[-0.13975048828124983E2,0.16311132812500006E2],[-0.14085644531249955E2,0.16418847656249994E2],[-0.14300097656249932E2,16.5802734],[-0.14533740234374932E2,0.16655957031249983E2],[-0.14786718749999947E2,16.6458984],[-0.14928613281249993E2,16.6535156],[-14.990625,16.6769043],[-15.0219238,16.6474609],[-15.0905762,0.16657373046875023E2],[-0.15121435546874947E2,0.16603613281249977E2],[-0.15210546874999975E2,0.16582617187500063E2],[-0.15379980468749949E2,16.5819824],[-0.15516699218750006E2,0.16556591796874983E2],[-0.15620800781249983E2,16.5065918],[-0.15768212890624996E2,16.4851074],[-0.15958984374999943E2,16.4921387],[-0.16074023437499932E2,16.5104492],[-0.16113281249999943E2,0.16540136718750006E2],[-0.16168359374999966E2,16.5470703],[-16.2390137,16.5312988],[-16.3022949,16.4513184],[-0.16358105468749983E2,16.3071777],[-0.16404345703124985E2,0.16224902343750017E2],[-16.4410156,16.204541],[-0.16480078124999977E2,0.16097216796875017E2],[-16.5020508,15.917334],[-16.5352539,0.15838378906250055E2],[-16.5357422,16.2868164],[-16.4812988,0.16454248046875023E2],[-16.463623,16.6015137],[-16.3466797,0.16926416015625023E2],[-0.16207470703124955E2,0.17192578124999983E2],[-16.0789062,17.5458496],[-0.16030322265625014E2,0.17887939453124968E2],[-0.16046728515624977E2,0.18223144531250053E2],[-0.16084960937499943E2,18.5211914],[-16.1500977,18.7181641],[-0.16213085937499926E2,0.19003320312500023E2],[-0.16305908203125025E2,19.1538086],[-0.16476171874999977E2,0.19285058593750023E2],[-0.16514453124999957E2,0.19361962890624994E2],[-0.16474804687499955E2,19.390625],[-0.16371289062499926E2,0.19410253906250063E2],[-0.16305273437499974E2,19.5126465],[-16.444873,19.4731445],[-0.16283398437499955E2,0.19787158203125017E2],[-16.2332031,0.20000976562500057E2],[-0.16241162109374983E2,20.1412598],[-16.2104492,20.2279297],[-16.3337402,0.20415869140625006E2],[-16.4297852,0.20652343750000053E2],[-0.16479199218749983E2,0.20689794921875034E2],[-0.16530419921875023E2,20.7095215],[-0.16534912109374943E2,0.20654003906250036E2],[-0.16562695312499923E2,0.20604150390624994E2],[-0.16622509765624955E2,20.6341797],[-16.7283691,0.20806152343750025E2],[-0.16876074218749917E2,0.21086132812499955E2],[-16.9279297,0.21114794921875045E2],[-0.16998242187499926E2,0.21039697265625023E2],[-17.0480469,0.20806152343750025E2],[-17.0639648,20.8988281],[-0.17042382812499966E2,21.0080078],[-17.0059082,0.21142431640624977E2],[-16.9645508,0.21329248046875023E2],[-0.13016210937499949E2,21.3339355],[-0.13094335937499977E2,22.4959961],[-0.13107324218749937E2,22.5607422],[-13.155957,0.22689306640625006E2],[-0.13166503906250028E2,0.22753222656250045E2],[-0.13153271484374983E2,0.22820507812499983E2],[-13.1208984,0.22884082031250074E2],[-0.13031494140624943E2,23.0002441],[-12.6204102,0.23271337890625002E2],[-12.559375,0.23290820312500045E2],[-0.12372900390624977E2,0.23318017578124994E2],[-0.12083349609374977E2,23.4354492],[-0.12023437499999943E2,0.23467578125000017E2],[-0.12016308593749983E2,23.5764648],[-0.12016308593749983E2,0.25995410156250017E2],[-8.68222656,0.25995507812500048E2],[-8.68334961,0.27285937500000045E2],[-5.51694336,0.25423779296875008E2],[-4.82260742,24.9956055],[-6.5940918,24.9946289],[-6.56738281,24.7667969],[-6.16879883,21.2855469]]]]}}],"_labels":{"MR":"Mauritania"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/MS.json b/src/api-umbrella/admin-ui/public/maps/MS.json new file mode 100644 index 000000000..90e2660b7 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/MS.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"MS"},"geometry":{"type":"Polygon","coordinates":[[[-62.1484375,16.740332],[-62.154248,0.16681201171875003E2],[-62.2216309,16.6995117],[-62.1757812,16.8095703],[-62.1484375,16.740332]]]}}],"_labels":{"MS":"Montserrat"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/MT.json b/src/api-umbrella/admin-ui/public/maps/MT.json new file mode 100644 index 000000000..08e400b9e --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/MT.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"MT"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.14566210937499987E2,35.8527344],[0.14436425781250021E2,35.8216797],[0.14352343750000044E2,0.35872265624999955E2],[14.3512695,35.978418],[0.14448339843750063E2,35.9574219],[0.14566210937499987E2,35.8527344]]],[[[0.14313476562500028E2,0.36027587890624964E2],[0.14180371093750011E2,0.36060400390625006E2],[14.2632813,0.36075781250000034E2],[0.14313476562500028E2,0.36027587890624964E2]]]]}}],"_labels":{"MT":"Malta"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/MU.json b/src/api-umbrella/admin-ui/public/maps/MU.json new file mode 100644 index 000000000..40bc5c7ff --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/MU.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"MU"},"geometry":{"type":"Polygon","coordinates":[[[57.6512695,-20.4848633],[57.5248047,-0.20513183593749996E2],[57.3833008,-0.20503710937500003E2],[57.3651367,-20.4064453],[57.3857422,-0.20228613281250006E2],[57.4864258,-20.1439453],[57.5757812,-0.19997167968750006E2],[57.656543,-19.9899414],[57.7919922,-20.2125977],[57.7806641,-20.3269531],[57.6512695,-20.4848633]]]}}],"_labels":{"MU":"Mauritius"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/MV.json b/src/api-umbrella/admin-ui/public/maps/MV.json new file mode 100644 index 000000000..5d70459c3 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/MV.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"MV"},"geometry":{"type":"MultiPolygon","coordinates":[[[[73.4166016,3.23125],[73.3953125,3.22939453],[73.3820312,3.24648437],[73.4015625,3.28876953],[73.4277344,3.28984375],[73.4427734,3.27431641],[73.4166016,3.23125]]],[[[73.512207,4.16455078],[73.4948242,4.15517578],[73.4730469,4.17070312],[73.5041016,4.23461914],[73.5283203,4.24331055],[73.512207,4.16455078]]]]}}],"_labels":{"MV":"Maldives"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/MW.json b/src/api-umbrella/admin-ui/public/maps/MW.json new file mode 100644 index 000000000..520bd6ec7 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/MW.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"MW"},"geometry":{"type":"MultiPolygon","coordinates":[[[[34.7193359,-0.12110644531249989E2],[34.6621094,-0.12100781250000011E2],[34.6798828,-0.12008886718750032E2],[34.755957,-0.12030761718749957E2],[34.7193359,-0.12110644531249989E2]]],[[[34.6416016,-0.12013671874999943E2],[34.6217773,-0.12066601562499983E2],[0.34541601562500055E2,-0.12018652343749977E2],[34.5914062,-11.9710937],[34.6416016,-0.12013671874999943E2]]],[[[0.33330859375000074E2,-0.9519140624999963E1],[33.4208984,-9.60800781],[33.6976563,-9.59814453],[33.8541992,-9.66298828],[0.33943945312500006E2,-9.67216797],[33.9496094,-9.56533203],[33.9956055,-0.9495410156250003E1],[34.0885742,-9.53779297],[34.3208984,-0.9731542968749977E1],[0.34524218750000074E2,-10.0301758],[34.5699219,-0.10241113281249966E2],[34.5835937,-0.10525097656249997E2],[34.6365234,-0.10625585937499949E2],[34.6670898,-0.10792480468750028E2],[34.5976563,-11.0375],[34.7738281,-0.11341699218750009E2],[34.8505859,-0.11351953124999966E2],[34.9370117,-0.11463476562500034E2],[34.9594727,-11.578125],[0.34659570312500044E2,-11.5886719],[34.6185547,-0.11620214843749991E2],[34.5539063,-0.11834082031249949E2],[34.3759766,-0.12120214843749977E2],[34.3608398,-12.2105469],[34.4829102,-0.12666796874999958E2],[34.5212891,-0.12925781249999957E2],[34.5636719,-0.13360156249999989E2],[34.6616211,-0.13486718750000023E2],[34.8504883,-0.13516015625000035E2],[35.0138672,-13.643457],[0.35247460937499994E2,-13.896875],[35.4884766,-0.14201074218749978E2],[35.847168,-0.14670898437500043E2],[35.8666992,-0.14863769531249984E2],[35.8927734,-0.14891796875000011E2],[0.35839941406250006E2,-0.15034667968749986E2],[35.8053711,-15.265625],[35.8302734,-0.15418945312500027E2],[35.8199219,-0.15680371093749995E2],[35.7912109,-0.15958691406250024E2],[35.7552734,-0.16058300781249983E2],[35.5993164,-16.1258789],[35.3584961,-16.1605469],[35.2915039,-0.16247167968750006E2],[35.1671875,-16.5602539],[35.2297852,-16.6392578],[0.35281152343749994E2,-16.8078125],[35.2904297,-0.17096972656250017E2],[35.1246094,-17.1272461],[35.0439453,-0.17016894531249957E2],[35.1121094,-0.16898535156250006E2],[35.0798828,-16.8338867],[34.9333984,-0.16760351562500006E2],[34.7587891,-16.5670898],[0.34612695312499994E2,-0.16431542968749994E2],[34.528125,-16.3191406],[0.34441308593749994E2,-0.16274414062499957E2],[34.3955078,-16.1992188],[34.4030273,-16.0802734],[34.3759766,-16.0237305],[34.2482422,-15.8875],[34.2460937,-0.15829394531249974E2],[34.3580078,-0.15705273437499997E2],[0.34434960937499994E2,-0.15477148437499975E2],[34.5408203,-15.2972656],[0.34555468750000074E2,-0.15140917968749958E2],[34.5511719,-0.14922363281250016E2],[0.34505273437500044E2,-0.14598144531249957E2],[34.375,-0.14424804687499998E2],[34.3325195,-14.4085937],[0.33969824218750006E2,-0.14487109374999987E2],[33.6960938,-0.14530273437499984E2],[33.6364258,-0.14568164062499974E2],[33.3899414,-0.14289453125000037E2],[0.33243554687500044E2,-0.14043066406250034E2],[33.1480469,-13.940918],[32.9920898,-0.14022167968750038E2],[32.8671875,-0.13817382812499972E2],[32.7651367,-13.7610352],[32.8067383,-0.13710253906249989E2],[32.7717773,-0.13656542968749974E2],[32.6720703,-0.13610351562499986E2],[32.8518555,-0.13457031250000014E2],[32.9675781,-13.225],[33,-12.8996094],[32.9456055,-0.12804394531250011E2],[0.33021582031250006E2,-12.6304688],[33.3979492,-0.12489843749999961E2],[33.4832031,-0.12403417968750032E2],[33.4914063,-0.12331054687499943E2],[0.33340136718750074E2,-0.12308300781250011E2],[0.33252343750000044E2,-0.12112597656250031E2],[33.3009766,-0.11888183593749957E2],[33.2882813,-0.11611132812500003E2],[0.33226367187500074E2,-0.11534863281250011E2],[33.2327148,-0.11417675781250026E2],[33.2683594,-0.11403906249999977E2],[0.33379785156249994E2,-11.1579102],[33.2613281,-0.10893359374999974E2],[33.3449219,-0.10812695312499969E2],[0.33464746093749994E2,-10.7831055],[33.659082,-0.10590527343749997E2],[0.33661523437499994E2,-10.553125],[33.5537109,-0.10391308593750011E2],[33.5289062,-0.10234667968749974E2],[33.3115234,-0.10037988281249966E2],[0.33350976562499994E2,-0.9862207031250037E1],[33.25,-0.9759570312500003E1],[33.1957031,-9.62617188],[33.1044922,-9.60263672],[32.9959961,-9.62285156],[32.9798828,-0.9520312500000015E1],[32.9199219,-9.40742188],[32.9740234,-9.39501953],[33.1304687,-0.9495898437500017E1],[0.33330859375000074E2,-0.9519140624999963E1]]]]}}],"_labels":{"MW":"Malawi"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/MX.json b/src/api-umbrella/admin-ui/public/maps/MX.json new file mode 100644 index 000000000..61b4f195b --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/MX.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"MX"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-91.6836914,0.18677343750000034E2],[-0.9181611328124995E2,0.18675878906250006E2],[-0.9158911132812497E2,18.7780273],[-91.6836914,0.18677343750000034E2]]],[[[-0.11091445312499995E3,0.18741455078125057E2],[-0.11106367187499998E3,0.18781640624999966E2],[-0.11098940429687495E3,0.18863134765625063E2],[-0.11091445312499995E3,0.18741455078125057E2]]],[[[-86.9396484,0.20303320312500006E2],[-87.0194336,20.3823242],[-86.927832,20.5515137],[-86.7550293,20.5517578],[-86.9396484,0.20303320312500006E2]]],[[[-86.7140137,0.21239306640624985E2],[-86.7140137,0.21239306640624985E2],[-86.7140137,0.21239306640624985E2],[-86.7140137,0.21239306640624985E2]]],[[[-0.10650224609374999E3,21.6108398],[-0.10653134765624998E3,0.21528515625000036E2],[-0.10660703124999993E3,21.5614746],[-0.10663935546874994E3,0.21697851562499977E2],[-0.10650224609374999E3,21.6108398]]],[[[-0.10980507812499998E3,0.24151074218749983E2],[-109.87793,0.24200634765624955E2],[-0.10989033203124994E3,0.24344824218750034E2],[-0.10980507812499998E3,0.24151074218749983E2]]],[[[-0.11169887695312498E3,0.24393603515625014E2],[-0.11171230468749995E3,0.24346386718749983E2],[-112.013281,0.24533398437499983E2],[-0.11185683593750001E3,0.24537988281250023E2],[-0.11169887695312498E3,0.24393603515625014E2]]],[[[-0.11056738281249994E3,0.25003466796875017E2],[-110.538867,24.8915527],[-110.657422,0.24968847656250063E2],[-110.690234,0.25087841796874955E2],[-0.11056738281249994E3,0.25003466796875017E2]]],[[[-0.11205727539062498E3,0.24545703125000017E2],[-0.11216289062499999E3,0.24650292968749994E2],[-0.11217548828124998E3,0.24729589843749977E2],[-0.11229677734375002E3,0.24789648437500063E2],[-0.11222231445312495E3,0.24951123046875008E2],[-112.159424,25.2856445],[-0.11213168945312495E3,25.2243652],[-0.11219838867187495E3,24.8854492],[-0.11212626953124999E3,0.24654003906249955E2],[-0.11205727539062498E3,0.24545703125000017E2]]],[[[-0.11110029296874998E3,0.26020605468750002E2],[-111.224658,25.8358887],[-0.11118291015625002E3,26.040625],[-0.11110029296874998E3,0.26020605468750002E2]]],[[[-0.11517060546875001E3,0.28069384765624957E2],[-0.11535292968750002E3,0.28103955078124983E2],[-115.2604,0.28220556640625034E2],[-115.273975,0.28342773437500057E2],[-0.11519697265624994E3,28.3278809],[-0.11514853515624996E3,0.28172119140625025E2],[-0.11517060546875001E3,0.28069384765624957E2]]],[[[-0.11824277343749999E3,0.28941943359374985E2],[-0.11828549804687499E3,0.28903759765625036E2],[-118.400098,0.29112304687499968E2],[-0.11831230468749993E3,29.1828613],[-0.11824277343749999E3,0.28941943359374985E2]]],[[[-0.11220307617187503E3,29.0053223],[-0.11227841796874999E3,28.7693359],[-0.11251406249999997E3,28.8476074],[-0.11253100585937496E3,28.8939941],[-112.469824,0.29167724609375004E2],[-0.11228505859374992E3,29.2404297],[-0.11220307617187503E3,29.0053223]]],[[[-0.11315561523437502E3,0.29052246093749996E2],[-0.11326474609374993E3,29.0967285],[-0.11358061523437499E3,0.29413232421874994E2],[-0.11358720703125002E3,0.29573046874999957E2],[-0.11341591796875001E3,0.29485937499999977E2],[-0.11337382812499997E3,29.338916],[-0.11320214843749997E3,29.3018555],[-0.11315561523437502E3,0.29052246093749996E2]]],[[[-114.694141,0.31705615234375017E2],[-114.694141,0.31705615234375017E2],[-114.694141,0.31705615234375017E2],[-114.694141,0.31705615234375017E2]]],[[[-0.11293896484375001E3,0.31916259765625025E2],[-111.041992,0.31324218750000025E2],[-0.10821445312499993E3,0.31329443359375034E2],[-0.10821181640625001E3,31.7793457],[-0.10645322265624993E3,0.31770166015625023E2],[-0.10625571289062495E3,0.31544677734374996E2],[-0.10581269531250003E3,0.31241015625000045E2],[-0.10551401367187502E3,0.30980761718749957E2],[-0.10527583007812498E3,0.30807275390624966E2],[-0.10497880859374996E3,30.6459473],[-0.10483588867187497E3,0.30447656249999962E2],[-0.10468134765625003E3,30.134375],[-0.10468134765625003E3,29.9905273],[-0.10450400390624995E3,29.6776855],[-0.10411059570312499E3,0.29386132812499998E2],[-0.10366396484374997E3,29.2068848],[-0.10325771484374997E3,0.29001123046874966E2],[-0.10308999023437501E3,0.29041894531250023E2],[-0.10286567382812495E3,0.29258007812499983E2],[-0.10287783203124994E3,0.29315332031250048E2],[-0.10273417968749997E3,29.6439453],[-0.10261494140624994E3,29.7523438],[-0.10238564453124995E3,29.8066406],[-0.10226894531249998E3,0.29871191406250038E2],[-101.990918,0.29795703125000014E2],[-101.611621,0.29786962890625034E2],[-0.10138037109374994E3,29.7425781],[-0.10130351562499993E3,0.29634082031249957E2],[-0.10103896484374995E3,29.4604004],[-0.10101630859374995E3,0.29400683593750017E2],[-0.10075458984375001E3,29.1825195],[-0.10065864257812501E3,29.0685547],[-0.10054970703125002E3,0.28821337890625017E2],[-0.10033173828125003E3,0.28502539062500006E2],[-0.10029604492187495E3,28.3276855],[-0.10000141601562495E3,28.0478516],[-99.8896484,0.27867285156250006E2],[-99.754248,0.27729931640624983E2],[-0.9950532226562495E2,27.5483398],[-99.5100586,27.340332],[-0.9944023437499995E2,0.27170117187499983E2],[-99.4435547,0.27036669921874985E2],[-99.2299316,0.26761914062499955E2],[-99.1077637,0.26446923828124994E2],[-98.7652344,0.26340429687499977E2],[-98.6914062,0.26276464843750006E2],[-98.378125,26.182373],[-0.9827504882812497E2,0.26111181640624974E2],[-0.9808281249999999E2,0.26064453124999968E2],[-97.801416,0.26042041015625017E2],[-97.5872559,0.25984179687500045E2],[-97.3581543,0.25870507812499994E2],[-97.2817871,0.25941601562499983E2],[-97.1462402,0.25961474609375042E2],[-97.1644531,0.25754931640625074E2],[-0.9722490234374999E2,0.25585449218749996E2],[-0.9742407226562497E2,0.25233105468749983E2],[-0.9750708007812503E2,25.0145508],[-0.9766767578124995E2,0.24389990234374977E2],[-0.9771704101562497E2,0.23980615234374994E2],[-0.9776586914062497E2,23.3061523],[-0.9774521484375003E2,0.22942382812500025E2],[-0.9785781249999997E2,22.6245117],[-97.7632812,0.22105859374999966E2],[-0.9758476562499993E2,0.21808544921874983E2],[-97.314502,0.21564208984375025E2],[-0.9740917968749997E2,0.21272558593750034E2],[-0.9743413085937499E2,0.21356494140625074E2],[-0.9738344726562495E2,21.5666992],[-0.9759038085937493E2,21.7620117],[-0.9775380859375001E2,22.0266602],[-0.9763754882812495E2,0.21603662109374962E2],[-97.5145508,21.4779785],[-0.9750058593750003E2,21.3980469],[-0.9719497070312501E2,0.20800097656250045E2],[-97.1214355,20.6149902],[-96.7086914,0.20188281250000017E2],[-0.9645605468749993E2,0.19869775390624966E2],[-96.2895508,19.34375],[-95.984668,19.0537598],[-95.9130371,0.18897167968749983E2],[-95.778125,0.18805517578125034E2],[-0.9592822265624997E2,18.8500977],[-0.9582109374999999E2,18.7546387],[-95.5783203,18.6904297],[-95.5614258,0.18719140625000023E2],[-0.9518183593749995E2,0.18700732421875017E2],[-0.9501469726562493E2,0.18570605468750045E2],[-94.7981445,18.5145996],[-94.5461914,18.1748535],[-94.1890137,0.18195263671874983E2],[-93.5523438,0.18430468750000017E2],[-93.2279297,0.18443798828124983E2],[-93.1273438,18.4234375],[-0.9288476562499997E2,0.18468652343749966E2],[-92.7101074,0.18611669921874974E2],[-92.4410156,18.675293],[-91.9737793,0.18715869140625074E2],[-91.8803711,0.18637792968749977E2],[-0.9194267578124999E2,0.18563427734375008E2],[-0.9180297851562503E2,0.18470605468750023E2],[-0.9153398437499993E2,18.456543],[-91.2752441,18.6244629],[-91.2787598,0.18720654296874983E2],[-91.3677734,0.18806103515624983E2],[-91.3430664,0.18900585937499955E2],[-91.4366699,0.18889794921874966E2],[-0.9113593749999993E2,19.0375],[-0.9095502929687495E2,0.19151660156250042E2],[-90.7392578,0.19352246093749955E2],[-90.6931641,0.19729882812499966E2],[-90.5070801,19.9118652],[-0.9048242187500003E2,0.20025732421875034E2],[-0.9048413085937503E2,20.5563477],[-0.9045844726562491E2,0.20713720703125034E2],[-90.353125,0.21009423828124966E2],[-90.1829102,0.21120898437500042E2],[-89.8197754,0.21274609374999983E2],[-88.8787109,21.4141113],[-88.4666992,0.21569384765625017E2],[-88.2510254,21.5668945],[-88.1316406,0.21615869140624966E2],[-87.6888184,21.5358398],[-87.4804687,0.21472460937500074E2],[-87.2508789,21.4469727],[-87.1643066,0.21514208984375045E2],[-87.3685059,0.21573730468749996E2],[-87.1284668,0.21621484374999966E2],[-87.0347656,0.21592236328124955E2],[-86.8240723,0.21421679687500017E2],[-86.8170898,0.21234228515625034E2],[-86.7717773,21.1505371],[-86.8646973,0.20885058593750045E2],[-87.0595703,20.63125],[-87.2212402,20.5072754],[-87.4213867,0.20231396484375008E2],[-87.4671875,0.20102148437500063E2],[-87.4319336,0.19898486328125045E2],[-87.4662109,19.8241699],[-87.585791,0.19779492187499955E2],[-87.6876953,19.6371094],[-87.6453125,19.5539063],[-87.4247559,0.19583349609375063E2],[-87.482666,19.44375],[-87.6586914,0.19352343750000074E2],[-87.6557617,19.2578613],[-87.5010742,0.19287792968749983E2],[-87.5935547,19.0463867],[-87.6530273,18.7985352],[-87.7335449,18.6550293],[-87.7618164,0.18446142578125006E2],[-87.8532227,0.18268994140624983E2],[-87.959668,18.4408691],[-88.0564453,0.18524462890625074E2],[-88.0111328,18.7268555],[-88.0317383,0.18838916015625017E2],[-88.1967773,0.18719677734374955E2],[-88.1953125,0.18642626953125074E2],[-88.2956543,18.4724121],[-88.522998,0.18445898437500063E2],[-88.5861816,18.2905273],[-88.8063477,0.17965527343749983E2],[-88.8978027,17.9145508],[-89.0504395,17.999707],[-89.1335449,0.17970800781249977E2],[-89.1614746,17.8148438],[-0.9098916015624997E2,0.17816406249999968E2],[-0.9099296874999993E2,17.2524414],[-0.9140961914062501E2,17.2558594],[-91.2241699,0.17112255859374955E2],[-90.9758301,0.16867822265624994E2],[-90.7106934,0.16708105468750034E2],[-90.634082,16.5107422],[-0.9041699218750003E2,0.16391015625000023E2],[-90.447168,16.0727051],[-91.7365723,0.16070166015625006E2],[-0.9218715820312495E2,0.15320898437499963E2],[-0.9220434570312499E2,0.15237695312499978E2],[-92.0748047,15.0742188],[-0.9214423828125001E2,15.0019531],[-92.186377,0.14818359374999986E2],[-0.9215991210937499E2,0.14691015624999979E2],[-92.2645508,0.14567773437500007E2],[-92.8089355,0.15138574218750037E2],[-93.1668945,0.15448046875000017E2],[-93.734375,0.15888476562500047E2],[-0.9391606445312493E2,0.16053564453125006E2],[-94.3741699,0.16284765625000034E2],[-94.426416,16.2262695],[-0.9419340820312495E2,0.16145605468750034E2],[-94.0012695,0.16018945312499966E2],[-94.470752,0.16186572265625017E2],[-94.6615234,16.2019043],[-0.9458710937499995E2,0.16315820312499966E2],[-0.9465078124999995E2,16.3518066],[-0.9479082031249999E2,16.2871582],[-0.9479291992187495E2,16.3645996],[-94.9004395,16.4174805],[-0.9502084960937503E2,0.16277636718750017E2],[-94.785791,0.16229101562499977E2],[-95.134375,16.1769531],[-0.9546440429687499E2,0.15974707031250034E2],[-0.9577177734374999E2,0.15887792968749975E2],[-0.9621357421874993E2,0.15693066406250011E2],[-96.5108398,0.15651904296875072E2],[-0.9680795898437495E2,0.15726416015624975E2],[-97.184668,0.15909277343750004E2],[-97.7547852,0.15966845703125017E2],[-98.1389648,16.2062988],[-0.9852031249999993E2,16.304834],[-98.762207,0.16534765624999977E2],[-99.3480469,16.6647461],[-0.9969067382812497E2,0.16719628906249994E2],[-0.10002451171874996E3,0.16920507812500063E2],[-0.10084780273437498E3,17.2004883],[-0.10114785156250002E3,0.17393115234375074E2],[-0.10138549804687503E3,0.17514208984375045E2],[-0.10148706054687503E3,0.17615332031250034E2],[-101.600293,0.17651562499999955E2],[-0.10184707031250001E3,17.9222656],[-0.10199550781249997E3,0.17972705078125017E2],[-0.10221660156249997E3,0.17957421875000023E2],[-0.10269956054687495E3,0.18062841796875006E2],[-0.10301850585937501E3,0.18186865234375034E2],[-0.10344160156249995E3,18.3253906],[-0.10369892578124997E3,0.18632958984374966E2],[-0.10391245117187496E3,0.18828466796875006E2],[-0.10440517578124998E3,0.19091210937499966E2],[-0.10460297851562495E3,0.19152880859375017E2],[-0.10493847656249999E3,19.309375],[-105.107666,19.562207],[-105.286377,19.7064941],[-105.48208,19.9760742],[-0.10557041015624995E3,20.227832],[-0.10566943359374997E3,0.20385595703124977E2],[-0.10554257812499998E3,20.4979492],[-105.377051,0.20511865234375023E2],[-105.260156,0.20579052734374955E2],[-0.10525229492187499E3,0.20668505859375074E2],[-0.10532705078124994E3,0.20752978515625045E2],[-0.10549238281249995E3,20.7766113],[-0.10523706054687499E3,0.21119189453125045E2],[-0.10520869140624998E3,0.21490820312499977E2],[-0.10543144531249997E3,0.21618261718750006E2],[-0.10552744140624999E3,21.818457],[-0.10564912109375001E3,0.21988085937500045E2],[-0.10564550781249999E3,22.3269043],[-0.10579179687500003E3,0.22627490234375014E2],[-0.10602172851562497E3,0.22829052734374955E2],[-106.23457,0.23060937500000023E2],[-0.10640224609374997E3,0.23195605468750017E2],[-0.10656650390624993E3,0.23449462890625057E2],[-0.10672875976562496E3,0.23610693359375034E2],[-0.10693549804687497E3,23.88125],[-0.10708486328124994E3,0.24016113281250025E2],[-0.10776494140625002E3,24.4719238],[-0.10752724609375001E3,24.3600586],[-0.10751191406249997E3,0.24489160156250023E2],[-107.816699,0.24539013671874983E2],[-0.10795117187499994E3,0.24614892578124966E2],[-0.10801508789062498E3,24.7833984],[-0.10820766601562498E3,24.9748047],[-0.10819204101562498E3,25.0306641],[-0.10803569335937502E3,0.25035351562500008E2],[-0.10809282226562502E3,0.25093505859375057E2],[-0.10837368164062495E3,25.1943359],[-108.750977,25.4242188],[-0.10878725585937502E3,25.5380371],[-0.10902880859375003E3,25.4804688],[-0.10906845703125002E3,0.25551562500000014E2],[-0.10897275390624998E3,0.25588476562500002E2],[-108.886572,0.25733447265625045E2],[-0.10900834960937503E3,0.25641992187499962E2],[-0.10919648437499998E3,25.5925293],[-0.10938496093750001E3,0.25727148437500006E2],[-0.10942563476562493E3,26.0325684],[-0.10919970703125003E3,0.26305224609374985E2],[-109.27627,0.26533886718749955E2],[-0.10948286132812497E3,0.26710351562500023E2],[-0.10975478515624995E3,0.26702929687500017E2],[-0.10989091796874997E3,0.26883398437500006E2],[-0.10994399414062495E3,0.27079345703125053E2],[-0.11027714843749997E3,0.27162207031250063E2],[-0.11047778320312499E3,0.27322656249999966E2],[-0.11056064453124999E3,27.4501465],[-0.11061547851562497E3,0.27653906250000034E2],[-0.11052988281249993E3,0.27864208984374983E2],[-110.759033,0.27915185546874994E2],[-0.11092080078125001E3,0.27888867187499955E2],[-111.121387,27.9669922],[-0.11128242187499994E3,0.28115234374999968E2],[-0.11147167968749997E3,28.3839844],[-0.11168007812499997E3,0.28470556640624977E2],[-111.832422,0.28648144531250008E2],[-0.11194082031249997E3,0.28823193359374955E2],[-0.11216176757812495E3,29.0188965],[-0.11222348632812499E3,29.2694824],[-112.378223,29.3477051],[-0.11241455078125001E3,0.29536425781249957E2],[-0.11257290039062497E3,29.7195312],[-112.738379,29.9854492],[-0.11282480468749995E3,0.30300146484375034E2],[-0.11305766601562496E3,0.30651025390625023E2],[-0.11311044921874995E3,0.30793310546875063E2],[-0.11310795898437499E3,0.31077294921874994E2],[-0.11304672851562495E3,0.31179248046874985E2],[-0.11323144531250001E3,0.31255957031249974E2],[-113.480811,31.2936035],[-0.11362348632812494E3,31.3458984],[-0.11363300781250001E3,0.31467626953125038E2],[-0.11375942382812501E3,0.31557763671874994E2],[-0.11394775390625001E3,0.31629345703125008E2],[-0.11400268554687501E3,0.31525146484375025E2],[-0.11414931640624995E3,0.31507373046875045E2],[-0.11426406249999995E3,31.5544434],[-0.11454868164062495E3,0.31733544921875023E2],[-0.11469760742187499E3,0.31777441406250006E2],[-0.11493359374999994E3,0.31900732421874974E2],[-0.11483950195312495E3,0.31798535156250036E2],[-0.11478989257812498E3,31.6471191],[-0.11484814453124994E3,31.5379395],[-0.11488188476562497E3,0.31156396484375023E2],[-0.11476103515624997E3,0.30958740234374996E2],[-0.11468544921875001E3,0.30621191406249977E2],[-0.11463330078124996E3,30.5068848],[-0.11464975585937495E3,0.30238134765625006E2],[-0.11455048828124997E3,30.0222656],[-0.11437260742187496E3,29.8302246],[-114.179199,0.29734326171874955E2],[-0.11406191406249998E3,0.29609521484375023E2],[-113.755469,0.29367480468750017E2],[-113.545312,0.29102246093749983E2],[-0.11349970703124995E3,28.926709],[-113.381836,0.28946679687499994E2],[-0.11332070312499998E3,28.8131348],[-0.11320556640624996E3,0.28798779296874955E2],[-0.11309365234375001E3,0.28511767578125017E2],[-112.87085,28.4242188],[-0.11286845703124996E3,28.2919922],[-0.11279570312499996E3,0.28207128906250034E2],[-112.808057,28.0921875],[-112.749316,0.27994873046875053E2],[-0.11273403320312501E3,0.27825976562500017E2],[-112.552637,27.6574707],[-0.11232919921874996E3,27.5234375],[-0.11228261718749998E3,27.3474609],[-0.11219145507812495E3,0.27186669921874994E2],[-0.11200395507812496E3,27.0791016],[-0.11200908203125003E3,0.26967089843750017E2],[-0.11188315429687495E3,0.26840185546875006E2],[-0.11186264648437495E3,0.26678515625000014E2],[-111.699414,26.580957],[-0.11181684570312494E3,26.75625],[-0.11179526367187499E3,26.8796875],[-0.11156967773437495E3,0.26707617187500006E2],[-0.11154589843749999E3,0.26579199218750034E2],[-0.11133212890624996E3,0.26125439453124955E2],[-0.11133037109374995E3,25.9313477],[-0.11129160156249995E3,25.7897949],[-0.11114956054687498E3,25.5726074],[-0.11103442382812497E3,0.25526953124999977E2],[-0.11089394531249995E3,25.1442383],[-110.755664,0.24994580078124983E2],[-0.11067724609374994E3,0.24788525390625008E2],[-0.11073452148437498E3,24.5898438],[-0.11065932617187502E3,0.24341455078125048E2],[-0.11054697265624996E3,0.24214160156250045E2],[-0.11042148437499996E3,24.1833984],[-0.11036743164062497E3,24.1004883],[-0.11029682617187497E3,0.24194873046875014E2],[-0.11032509765624997E3,0.24305957031250017E2],[-110.262891,0.24344531250000045E2],[-110.022803,0.24174609374999985E2],[-0.10971054687499999E3,0.23803808593750034E2],[-109.676563,0.23661572265625008E2],[-109.509619,0.23597900390624996E2],[-0.10942084960937495E3,0.23480126953124994E2],[-0.10945805664062499E3,0.23214746093750023E2],[-109.728418,0.22981835937499994E2],[-0.10992343749999993E3,0.22885888671874994E2],[-110.00625,0.22894042968750057E2],[-0.11008603515624993E3,23.0054687],[-0.11018061523437503E3,0.23341503906249983E2],[-110.362695,23.6049316],[-0.11062998046874999E3,23.7373047],[-0.11076489257812494E3,0.23877001953125017E2],[-0.11103618164062497E3,0.24105273437500074E2],[-0.11141933593749997E3,0.24329003906249994E2],[-0.11168291015625002E3,0.24555810546875023E2],[-0.11180249023437493E3,0.24542529296875074E2],[-0.11184824218749993E3,0.24670068359375023E2],[-0.11207255859374997E3,24.8400391],[-112.128516,0.25043115234374994E2],[-0.11205576171874995E3,25.4882324],[-0.11211459960937492E3,0.25630371093749996E2],[-0.11217382812500001E3,0.25912597656250025E2],[-0.11237724609374997E3,26.213916],[-0.11265839843749997E3,26.316748],[-0.11302075195312499E3,26.583252],[-0.11311923828124998E3,0.26716503906250036E2],[-0.11315581054687496E3,0.26946240234375036E2],[-0.11327226562499997E3,26.7909668],[-113.425879,0.26795800781250023E2],[-0.11359853515625001E3,0.26721289062500034E2],[-0.11370126953124998E3,0.26791357421875002E2],[-0.11384096679687502E3,26.9665039],[-113.996484,26.9876953],[-0.11411005859374995E3,0.27105957031249968E2],[-0.11433339843749998E3,0.27158007812500017E2],[-0.11444526367187503E3,27.2181641],[-0.11453989257812495E3,0.27431103515624955E2],[-0.11499350585937499E3,27.7360352],[-0.11503647460937496E3,27.8418457],[-0.11457001953124995E3,27.7839355],[-0.11444848632812497E3,27.796875],[-0.11430058593749993E3,27.872998],[-0.11430224609375003E3,0.27775732421875006E2],[-0.11413720703124996E3,27.6714355],[-0.11415839843750003E3,0.27919677734374996E2],[-0.11426586914062499E3,0.27934472656249994E2],[-0.11418525390624998E3,0.28013281249999974E2],[-0.11409272460937495E3,0.28221337890624994E2],[-0.11404848632812502E3,28.4261719],[-0.11414550781249997E3,0.28605419921875008E2],[-0.11430922851562502E3,0.28729931640624983E2],[-0.11466401367187501E3,0.29094580078125002E2],[-0.11499350585937499E3,29.3844238],[-0.11516635742187493E3,29.4272461],[-0.11567382812500003E3,0.29756396484375017E2],[-0.11574868164062501E3,0.29935742187499955E2],[-115.808301,0.29960205078125053E2],[-0.11578955078124997E3,30.0841797],[-115.815625,0.30303613281250023E2],[-0.11599580078124997E3,30.4144531],[-116.062158,30.8041504],[-0.11629628906250001E3,30.9705078],[-0.11633344726562494E3,0.31202783203124998E2],[-0.11666215820312496E3,31.5648926],[-0.11666845703124999E3,0.31698632812500023E2],[-0.11662080078124995E3,0.31851074218749968E2],[-0.11684799804687496E3,0.31997363281250042E2],[-0.11691367187500002E3,32.1985352],[-117.063135,32.3436035],[-0.11712827148437493E3,0.32533349609374994E2],[-0.11472475585937494E3,32.715332],[-0.11483593749999993E3,32.5083008],[-0.11293896484375001E3,0.31916259765625025E2]]]]}}],"_labels":{"MX":"Mexico"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/MY.json b/src/api-umbrella/admin-ui/public/maps/MY.json new file mode 100644 index 000000000..2de10db19 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/MY.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"MY"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.11138925781250006E3,2.41533203],[0.11131152343749997E3,2.43759766],[0.11130039062500006E3,2.74116211],[111.37832,2.70932617],[0.11138925781250006E3,2.41533203]]],[[[104.221582,2.73173828],[104.129102,2.76723633],[0.10418476562500003E3,2.87172852],[104.221582,2.73173828]]],[[[101.318555,2.98847656],[101.318555,2.98847656],[101.318555,2.98847656],[101.318555,2.98847656]]],[[[0.11788476562499997E3,4.18613281],[0.11764902343750012E3,4.16899414],[0.11766210937500001E3,4.25019531],[0.11776142578125008E3,4.25234375],[0.11788476562499997E3,4.18613281]]],[[[0.10028896484375005E3,5.29472656],[0.10019101562500006E3,5.28286133],[100.203906,5.446875],[0.10033886718749997E3,5.41005859],[0.10028896484375005E3,5.29472656]]],[[[99.8480469,6.46572266],[99.9186523,6.35859375],[99.74375,6.26328125],[99.6462891,6.41835938],[99.7492187,6.40961914],[99.8480469,6.46572266]]],[[[0.10056386718749998E3,6.4675293],[100.715625,6.48066406],[100.79375,6.42617188],[0.10087392578124998E3,6.24541016],[0.10105351562500002E3,6.24257812],[101.075586,5.95649414],[0.10098164062500004E3,5.77104492],[101.113965,5.63676758],[101.190625,5.66875],[101.257031,5.78935547],[0.10155605468749998E3,5.90776367],[0.10165000000000012E3,5.79599609],[101.790723,5.7793457],[0.10187363281250012E3,5.82529297],[0.10193613281250006E3,5.9793457],[0.10205517578124997E3,6.09667969],[0.10210107421874997E3,6.24223633],[0.10234013671875002E3,6.17202148],[102.534375,5.86254883],[0.10279023437500003E3,5.64492188],[0.10298242187499997E3,5.52495117],[0.10319697265625004E3,5.2621582],[0.10341582031250007E3,4.85029297],[103.453906,4.66948242],[103.46875,4.39326172],[0.10342050781250012E3,3.97685547],[0.10336201171875004E3,3.76914062],[103.453516,3.52060547],[0.10343945312499996E3,2.93310547],[0.10353730468750004E3,2.77475586],[103.812207,2.58046875],[0.10421855468750002E3,1.72285156],[0.10428847656250005E3,1.48066406],[0.10428037109375006E3,1.41557617],[0.10417636718750012E3,1.36489258],[0.10398144531250003E3,1.62363281],[103.991504,1.45478516],[0.10381679687500005E3,1.4765625],[103.694531,1.4496582],[0.10354980468750001E3,1.3328125],[0.10348027343750006E3,1.32949219],[0.10335683593750004E3,1.54614258],[102.896875,1.79233398],[0.10272714843750012E3,1.85556641],[0.10254824218750005E3,2.04238281],[0.10214560546875012E3,2.24848633],[0.10188994140625007E3,2.44941406],[101.78125,2.57358398],[0.10151972656250003E3,2.68364258],[0.10140683593750006E3,2.81347656],[0.10129550781250012E3,2.88520508],[0.10135429687500002E3,3.01113281],[0.10129990234375012E3,3.25327148],[101.11543,3.47202148],[0.10102480468750005E3,3.62470703],[0.10085126953125004E3,3.77670898],[0.10071542968750006E3,3.96621094],[0.10079550781250012E3,4.02338867],[100.661035,4.22573242],[0.10061455078125002E3,4.3734375],[0.10061455078125002E3,4.65224609],[0.10047343750000006E3,5.04428711],[0.10035263671875006E3,5.58769531],[0.10037402343749997E3,5.77797852],[0.10034326171874997E3,5.98417969],[0.10026328125000006E3,6.18251953],[100.158398,6.32421875],[0.10011914062499996E3,6.44199219],[0.10017675781250003E3,6.67182617],[0.10026142578125004E3,6.68271484],[100.34541,6.54990234],[0.10056386718749998E3,6.4675293]]],[[[0.11680771484375006E3,6.69106445],[0.11678808593749996E3,6.60610352],[0.11691328125000004E3,6.65966797],[117.128516,6.96889648],[0.11725244140624997E3,6.91923828],[0.11729404296875006E3,6.6769043],[0.11764570312500004E3,6.47368164],[0.11769560546875003E3,6.27231445],[0.11761591796875003E3,6.1965332],[117.649805,6.07358398],[0.11761718750000001E3,5.94072266],[117.501172,5.88466797],[0.11781767578125002E3,5.94042969],[118.003809,6.05332031],[0.11811582031250008E3,5.8625],[0.11793476562500004E3,5.7875],[0.11797363281249997E3,5.70625],[0.11814462890625006E3,5.75419922],[0.11824912109375006E3,5.82055664],[0.11845634765625002E3,5.76342773],[0.11856308593750005E3,5.68452148],[0.11859482421875006E3,5.59208984],[118.713672,5.55854492],[118.957324,5.42900391],[0.11922343750000007E3,5.41264648],[0.11926630859375008E3,5.30810547],[0.11924970703125008E3,5.19873047],[0.11913222656250004E3,5.10048828],[118.67207,4.9640625],[0.11838183593750003E3,5.01850586],[0.11826054687500007E3,4.98886719],[0.11818535156250002E3,4.82851563],[0.11832421874999996E3,4.66870117],[118.5625,4.50214844],[0.11858632812499998E3,4.40966797],[0.11849804687499997E3,4.36235352],[118.228711,4.31601563],[118.008203,4.25024414],[0.11789560546875006E3,4.26293945],[117.741016,4.33754883],[117.649805,4.30449219],[117.574414,4.17060547],[0.11745087890625003E3,4.19287109],[0.11727753906250008E3,4.29931641],[0.11710058593750003E3,4.33706055],[0.11651474609375006E3,4.37080078],[0.11641455078124996E3,4.30820313],[0.11632031249999996E3,4.35371094],[0.11613447265625003E3,4.35517578],[0.11602158203125012E3,4.29067383],[0.11589619140625003E3,4.34868164],[0.11567880859375006E3,4.19301758],[0.11556845703125006E3,3.93876953],[0.11554453125000006E3,3.63369141],[0.11556611328125004E3,3.44575195],[0.11551992187500004E3,3.36166992],[0.11549316406250001E3,3.128125],[0.11545439453125002E3,3.03432617],[0.11531015625000013E3,2.99394531],[0.11524697265625005E3,3.02592773],[115.086328,2.84111328],[0.11508076171875004E3,2.63422852],[115.179102,2.52319336],[114.969141,2.35083008],[0.11478642578125002E3,2.25048828],[0.11475869140625007E3,2.16240234],[0.11483056640625001E3,1.9800293],[114.8,1.89394531],[0.11470351562499998E3,1.85078125],[0.11466093750000002E3,1.6862793],[0.11454589843750003E3,1.46713867],[114.387109,1.50004883],[0.11390234375000003E3,1.43427734],[113.622266,1.2359375],[0.11351318359374997E3,1.30839844],[0.11335898437500005E3,1.32714844],[0.11298828124999997E3,1.45712891],[0.11294296875000006E3,1.56699219],[0.11247617187500005E3,1.55908203],[112.185742,1.4390625],[112.078516,1.14335937],[0.11192314453125002E3,1.11328125],[0.11176972656250004E3,0.999462891],[0.11160742187500003E3,1.02260742],[0.11148320312500002E3,0.995751953],[0.11128671875000006E3,1.04321289],[0.11110136718750002E3,1.05053711],[0.11093808593750006E3,1.01733398],[0.11061474609375003E3,0.878125],[0.11050576171875004E3,0.861962891],[110.315234,0.995996094],[0.11011474609375003E3,1.19013672],[109.818066,1.43896484],[0.10965400390625004E3,1.61489258],[0.10963583984375006E3,1.77666016],[109.538965,1.89619141],[0.10962890625000003E3,2.02753906],[109.719629,1.8578125],[0.10998457031250008E3,1.71762695],[0.11024589843750002E3,1.69472656],[0.11034921875000012E3,1.71972656],[0.11067519531249998E3,1.54804688],[0.11093994140625003E3,1.51733398],[0.11109843750000007E3,1.40087891],[0.11122324218750012E3,1.39584961],[111.058008,1.48666992],[0.11104658203125008E3,1.63364258],[0.11115419921875005E3,1.73876953],[0.11117001953125006E3,1.90229492],[0.11126816406250012E3,2.13974609],[0.11119550781250003E3,2.29716797],[0.11124218749999997E3,2.43574219],[0.11135136718750007E3,2.36445313],[0.11144384765625003E3,2.38154297],[111.443262,2.63432617],[111.5125,2.74301758],[0.11172773437500004E3,2.85380859],[0.11211884765625004E3,2.91469727],[0.11273730468749997E3,3.07045898],[0.11304472656250002E3,3.20522461],[0.11344609375000007E3,3.74057617],[113.712109,4.00141602],[0.11392392578125006E3,4.24321289],[0.11398779296875003E3,4.42070313],[113.984277,4.54580078],[114.063867,4.59267578],[0.11422412109375001E3,4.47788086],[114.322949,4.26279297],[0.11441660156250006E3,4.25585938],[0.11460830078125004E3,4.02397461],[114.725,4.0965332],[0.11484023437500005E3,4.39321289],[0.11479013671875005E3,4.46391602],[0.11474667968750006E3,4.71806641],[0.11502675781250004E3,4.89970703],[0.11502675781250004E3,4.69135742],[0.11510703125000005E3,4.39042969],[0.11524667968750005E3,4.3472168],[0.11532675781250008E3,4.38076172],[0.11527929687499997E3,4.45634766],[0.11526669921875006E3,4.63398438],[115.140039,4.89975586],[115.374902,4.93276367],[115.519824,5.04892578],[0.11558203125000001E3,5.19414063],[0.11546689453125006E3,5.25410156],[115.419043,5.41318359],[115.603906,5.60341797],[0.11562451171874997E3,5.54887695],[115.796875,5.53613281],[0.11591845703124996E3,5.72495117],[0.11605976562500011E3,5.88237305],[116.138379,6.12954102],[0.11649472656250006E3,6.52167969],[0.11674980468750007E3,6.97709961],[0.11683300781249996E3,6.95205078],[116.849805,6.82670898],[0.11680771484375006E3,6.69106445]]],[[[0.11714160156250003E3,7.16821289],[0.11708066406250006E3,7.1152832],[0.11706425781250007E3,7.26069336],[117.146875,7.33701172],[117.264062,7.35166016],[0.11723935546875005E3,7.18476563],[0.11714160156250003E3,7.16821289]]]]}}],"_labels":{"MY":"Malaysia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/MZ.json b/src/api-umbrella/admin-ui/public/maps/MZ.json new file mode 100644 index 000000000..2f8d39998 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/MZ.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"MZ"},"geometry":{"type":"Polygon","coordinates":[[[32.8861328,-26.8493164],[32.3535156,-26.8616211],[32.1128906,-26.8394531],[32.105957,-0.26520019531249996E2],[32.0414063,-26.28125],[32.0605469,-26.0183594],[31.9482422,-0.25957617187500006E2],[0.31920312500000026E2,-25.7739258],[31.9845703,-0.25631933593750006E2],[0.31985839843749996E2,-24.4606445],[0.31858300781250026E2,-24.0402344],[0.31799609375000017E2,-23.8921875],[31.5456055,-23.4823242],[31.5317383,-23.2794922],[31.4193359,-0.22825097656250005E2],[0.31287890625000014E2,-22.4020508],[0.31429492187500014E2,-22.2988281],[32.3710938,-21.3348633],[0.32429785156250006E2,-21.2970703],[32.3536133,-0.21136523437500003E2],[32.4761719,-20.9500977],[32.4776367,-0.20712988281250002E2],[32.5292969,-20.6130859],[32.6725586,-20.5161133],[32.8696289,-20.2171875],[32.9927734,-0.19984863281249996E2],[33.0067383,-19.8738281],[32.8307617,-19.5582031],[32.7776367,-0.19388769531250006E2],[32.8498047,-19.1043945],[32.7165039,-19.0018555],[32.7219727,-0.18828417968750003E2],[32.8544922,-18.7636719],[32.9930664,-18.3595703],[32.9555664,-18.0829102],[32.9546875,-0.17765429687500003E2],[32.9807617,-17.4375],[0.32969335937500006E2,-17.2515625],[32.884375,-0.17037792968750008E2],[32.8762695,-16.8835937],[32.9480469,-16.7123047],[32.7417969,-16.6776367],[32.6358398,-16.5894531],[0.32243261718750006E2,-16.4487305],[0.31939843750000023E2,-0.16428808593750006E2],[0.31687597656250006E2,-16.2141602],[31.4898437,-16.1796875],[0.31236230468750023E2,-16.0236328],[0.30437792968750017E2,-0.15995312500000011E2],[30.409375,-0.15978222656250011E2],[30.3960937,-15.6430664],[0.30350585937499996E2,-0.15349707031250004E2],[30.2521484,-15.1832031],[0.30231835937500023E2,-0.14990332031250004E2],[0.30673339843749996E2,-14.8191406],[0.31537890625000017E2,-14.5771484],[0.31728906250000023E2,-14.4960938],[32.2728516,-14.3230469],[0.33201757812500006E2,-14.0133789],[33.2435547,-0.14043066406250006E2],[33.3899414,-14.2894531],[33.6364258,-0.14568164062500003E2],[33.6960938,-14.5302734],[0.33969824218750006E2,-14.4871094],[34.3325195,-14.4085937],[34.5052734,-0.14598144531249998E2],[34.5511719,-14.9223633],[34.5408203,-15.2972656],[0.34434960937500016E2,-0.15477148437500006E2],[0.34358007812500006E2,-15.7052734],[34.2460938,-0.15829394531250005E2],[34.2482422,-15.8875],[34.4030273,-16.0802734],[34.3955078,-16.1992188],[34.9333984,-0.16760351562500006E2],[35.0798828,-16.8338867],[35.1121094,-0.16898535156250006E2],[35.0439453,-0.17016894531250003E2],[35.1246094,-17.1272461],[35.2904297,-0.17096972656250003E2],[35.2811523,-16.8078125],[35.2297852,-0.16639257812500006E2],[35.1671875,-16.5602539],[35.2915039,-0.16247167968750006E2],[0.35358496093750006E2,-16.1605469],[35.5993164,-16.1258789],[35.7552734,-0.16058300781250008E2],[35.7912109,-0.15958691406250011E2],[35.8302734,-0.15418945312499998E2],[35.8053711,-15.265625],[0.35839941406250006E2,-15.034668],[35.8927734,-0.14891796875000011E2],[35.847168,-0.14670898437499998E2],[0.35247460937500016E2,-13.896875],[35.0138672,-0.13643457031250009E2],[34.8504883,-13.5160156],[34.6616211,-13.4867187],[34.5636719,-13.3601562],[34.4829102,-12.6667969],[34.3608398,-12.2105469],[34.3759766,-0.12120214843750006E2],[34.5539063,-0.11834082031250006E2],[0.34618554687500016E2,-0.11620214843750006E2],[34.8265625,-11.5756836],[0.35630957031250006E2,-11.5820312],[35.7854492,-0.11452929687500003E2],[35.9113281,-11.4546875],[36.0822266,-0.11537304687500011E2],[36.1913086,-11.6707031],[36.3056641,-0.11706347656250003E2],[0.36518652343750006E2,-0.11716210937500007E2],[36.6738281,-0.11684277343750011E2],[36.8726562,-11.5712891],[0.37059179687500006E2,-11.5921875],[0.37113867187500006E2,-11.647168],[37.3728516,-11.7104492],[37.5416992,-0.11675097656250003E2],[37.7248047,-0.11580664062500006E2],[37.8292969,-0.11481933593749998E2],[37.9202148,-0.11294726562500003E2],[38.1765625,-0.11278710937500009E2],[38.3151367,-0.11311132812500006E2],[38.4917969,-0.11413281250000011E2],[38.7947266,-11.2289062],[38.9875,-0.11167285156250003E2],[39.1709961,-0.11166894531250009E2],[39.321582,-0.11122558593749998E2],[39.5634766,-10.9785156],[39.8170898,-0.10912402343750001E2],[39.9886719,-10.8208008],[40.4635742,-10.4643555],[40.6117188,-0.10661523437500009E2],[40.4866211,-10.7651367],[40.597168,-0.10830664062500006E2],[40.5161133,-0.10929589843750009E2],[40.5445312,-11.065625],[40.402832,-11.3320312],[40.4651367,-11.4494141],[40.4331055,-0.11657324218750006E2],[40.531543,-0.12004589843750011E2],[40.5014648,-0.12119433593750003E2],[40.5231445,-0.12392773437500011E2],[40.4871094,-12.4921875],[40.5808594,-12.6355469],[0.40553320312500006E2,-12.8246094],[40.4476563,-12.9047852],[40.4368164,-0.12983105468750011E2],[40.56875,-0.12984667968750001E2],[0.40582910156250016E2,-13.3740234],[40.5451172,-13.4628906],[40.5905273,-0.13845019531250003E2],[40.6025391,-0.14167382812500009E2],[40.715625,-14.2144531],[40.6399414,-0.14390039062500009E2],[40.6460937,-14.5386719],[0.40726660156250006E2,-14.4207031],[40.8181641,-14.4675781],[40.8351562,-14.7915039],[40.7006836,-0.14929785156250006E2],[40.6943359,-15.0652344],[0.40617773437500006E2,-0.15115527343750003E2],[0.40650976562500006E2,-0.15260937500000011E2],[0.40558984375000016E2,-15.4734375],[40.3138672,-0.15763964843750003E2],[40.1087891,-15.9792969],[40.0992187,-0.16065332031250005E2],[39.9835938,-16.2254883],[39.790918,-16.2945312],[39.8446289,-0.16435644531250006E2],[39.6253906,-0.16579394531250003E2],[0.39242285156250006E2,-16.7925781],[39.084375,-16.9728516],[38.8847656,-0.17041601562500006E2],[38.6699219,-17.050293],[38.6333008,-0.17078320312500008E2],[38.1449219,-0.17242773437500006E2],[38.0482422,-0.17321386718750006E2],[37.8394531,-0.17393164062500006E2],[0.37512304687500006E2,-17.5707031],[0.37244531250000016E2,-17.7399414],[36.9393555,-17.993457],[36.8996094,-0.18129003906250006E2],[36.7561523,-18.3073242],[0.36540136718750006E2,-0.18518164062500006E2],[0.36327246093750006E2,-18.7931641],[36.2628906,-18.7196289],[36.2356445,-18.8613281],[36.125,-0.18842382812500006E2],[35.8537109,-18.9933594],[0.35651269531250016E2,-0.19163867187500003E2],[0.35365332031250006E2,-0.19493945312500003E2],[0.34947851562500006E2,-19.8126953],[34.8523438,-19.8205078],[34.7209961,-0.19709570312500006E2],[34.6494141,-19.7013672],[34.7557617,-0.19821972656250008E2],[34.75,-20.0908203],[34.6981445,-0.20404394531250006E2],[0.34764746093750006E2,-20.5619141],[34.9823242,-20.80625],[35.1175781,-21.1952148],[0.35128027343750006E2,-21.3953125],[0.35267675781250006E2,-0.21650976562500006E2],[35.3292969,-0.22037402343750003E2],[35.3157227,-22.396875],[35.3830078,-22.4545898],[35.4188477,-22.1776367],[35.49375,-22.124707],[35.5419922,-22.3765625],[35.4902344,-22.6577148],[35.5753906,-22.9630859],[35.4944336,-23.1851562],[35.3769531,-23.7078125],[35.3704102,-23.7982422],[35.4621094,-0.23851074218749996E2],[35.5419922,-23.8244141],[35.4896484,-0.24065527343750006E2],[0.35438085937500006E2,-24.1711914],[35.155957,-24.5414063],[34.9920898,-0.24650585937500008E2],[34.6073242,-24.8212891],[0.33836035156250006E2,-25.0679687],[33.3474609,-25.2609375],[32.9611328,-25.4904297],[32.7921875,-0.25644335937500003E2],[32.7225586,-0.25820898437500006E2],[0.32590429687500006E2,-0.26004101562500008E2],[32.7035156,-0.26158496093750003E2],[32.8488281,-26.2680664],[0.32916406250000016E2,-26.0869141],[32.9548828,-26.0835937],[32.8861328,-26.8493164]],[[34.6416016,-12.0136719],[34.6416016,-12.0136719],[34.6416016,-12.0136719],[34.6416016,-12.0136719]],[[0.34719335937500006E2,-0.12110644531250003E2],[0.34755957031250006E2,-12.0307617],[34.6798828,-0.12008886718750004E2],[0.34719335937500006E2,-0.12110644531250003E2]]]}}],"_labels":{"MZ":"Mozambique"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/NA.json b/src/api-umbrella/admin-ui/public/maps/NA.json new file mode 100644 index 000000000..52cd4c3c4 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/NA.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"NA"},"geometry":{"type":"Polygon","coordinates":[[[0.23380664062500017E2,-17.640625],[24.2749023,-0.17481054687500006E2],[0.24932421875000017E2,-17.543457],[0.25092187500000023E2,-17.634375],[25.2587891,-0.17793554687500006E2],[24.909082,-0.17821386718750006E2],[24.7921875,-17.8646484],[0.24530566406250017E2,-18.0527344],[24.3589844,-17.9782227],[0.24129296875000023E2,-0.18077539062500005E2],[0.23898339843750023E2,-18.2291992],[0.23700488281250017E2,-18.4243164],[23.5805664,-0.18452929687500003E2],[0.23459765625000017E2,-0.18231054687500006E2],[0.23298632812500017E2,-18.0273438],[0.23099902343750017E2,-0.18009570312500003E2],[22.0114258,-18.1986328],[0.21232519531250002E2,-18.3068359],[20.9741211,-18.3188477],[20.9794922,-21.9619141],[0.20970996093750017E2,-22.0001953],[0.19977343750000017E2,-22.0001953],[19.9804688,-24.7519531],[19.9804688,-0.28451269531250006E2],[0.19877832031250023E2,-28.4494141],[19.6714844,-28.5039062],[0.19539843750000017E2,-28.5746094],[19.4829102,-28.6616211],[19.2709961,-0.28777734375000012E2],[19.2458008,-0.28901660156250003E2],[19.1617187,-28.9387695],[0.18838769531250023E2,-28.8691406],[0.18600390625000017E2,-28.8552734],[0.18310839843750017E2,-0.28886230468749996E2],[18.1027344,-0.28871679687500006E2],[17.9760742,-28.8113281],[0.17699316406250006E2,-28.7683594],[17.4479492,-0.28698144531250005E2],[0.17342578125000017E2,-28.4516602],[17.3857422,-28.3532227],[17.3120117,-0.28228613281250006E2],[17.2045898,-28.1988281],[0.17149414062499996E2,-28.0822266],[17.05625,-28.0310547],[16.9333008,-28.0696289],[16.8101562,-28.2645508],[0.16755761718750023E2,-28.4521484],[16.6261719,-28.4878906],[0.16447558593750017E2,-28.6175781],[0.16335058593750006E2,-28.5365234],[0.16007128906250017E2,-0.28231738281250003E2],[0.15890917968750017E2,-28.1525391],[0.15719042968750015E2,-27.9658203],[15.3415039,-0.27386523437500003E2],[15.2875977,-27.275],[0.15215722656250023E2,-26.9951172],[15.1328125,-26.7875977],[0.15163281250000011E2,-0.26600195312500006E2],[0.15096582031250023E2,-26.4257812],[0.14967773437499998E2,-26.3180664],[14.93125,-25.9582031],[14.8452148,-0.25725683593750006E2],[0.14863671875000023E2,-25.5335938],[0.14822558593750015E2,-25.3585938],[14.8371094,-25.0332031],[0.14767968750000021E2,-0.24787988281250005E2],[0.14627929687499998E2,-24.5480469],[14.5015625,-24.2019531],[14.4833984,-24.0503906],[14.496875,-0.23642871093750003E2],[14.4738281,-23.2811523],[0.14403320312499998E2,-0.22968066406250003E2],[14.4384766,-22.8805664],[14.4957031,-22.9213867],[0.14525976562500004E2,-22.7025391],[0.14462792968750025E2,-22.4491211],[14.321875,-22.1899414],[0.13973242187500006E2,-21.7675781],[13.8393555,-0.21473242187500006E2],[0.13450585937500021E2,-20.9166992],[13.284375,-20.5239258],[0.13168359375000021E2,-0.20184667968750002E2],[0.13042089843750006E2,-20.0282227],[0.12458203125000011E2,-18.9267578],[0.12328710937500006E2,-0.18751074218750006E2],[12.0957031,-18.540918],[0.11951367187500011E2,-18.2705078],[0.11775878906249998E2,-0.18001757812500003E2],[0.11733496093750006E2,-17.7509766],[11.7216797,-17.4667969],[0.11743066406250021E2,-17.2492188],[0.11902539062500011E2,-17.2265625],[0.12013964843750017E2,-0.17168554687500006E2],[12.2133789,-17.2099609],[0.12548144531250017E2,-0.17212695312500003E2],[0.12963183593750015E2,-0.17015429687500003E2],[13.1011719,-16.9676758],[0.13403710937500023E2,-17.0078125],[0.13561718750000011E2,-0.17141210937500006E2],[13.9379883,-0.17388769531250006E2],[0.14017480468750023E2,-17.4088867],[0.14414746093750011E2,-17.3876953],[0.17835351562500023E2,-0.17392773437500008E2],[0.18396386718750023E2,-0.17399414062499996E2],[0.18486621093750017E2,-17.4427734],[0.18718066406250017E2,-0.17703222656250006E2],[0.18825976562500017E2,-17.7663086],[0.19076464843750014E2,-0.17817675781250003E2],[0.19377148437500008E2,-0.17825488281250003E2],[19.6393555,-17.8686523],[0.19911816406250008E2,-17.8813477],[0.20194335937499996E2,-17.8636719],[0.20392968750000023E2,-17.8874023],[0.20625097656250002E2,-0.17996679687500006E2],[20.7455078,-18.0197266],[0.21113476562500008E2,-17.9557617],[21.4168945,-18.0006836],[0.21960839843750023E2,-17.9051758],[0.23380664062500017E2,-17.640625]]]}}],"_labels":{"NA":"Namibia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/NC.json b/src/api-umbrella/admin-ui/public/maps/NC.json new file mode 100644 index 000000000..575a5fb40 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/NC.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"NC"},"geometry":{"type":"MultiPolygon","coordinates":[[[[167.544434,-0.22623242187500008E2],[0.16751269531249997E3,-22.6611328],[167.42207,-0.22618554687500037E2],[0.16744345703125006E3,-0.22541406250000037E2],[167.544434,-0.22623242187500008E2]]],[[[0.16801093750000004E3,-0.21429980468750017E2],[0.16813906249999997E3,-21.4452148],[0.16812070312500012E3,-0.21615820312500034E2],[0.16796679687500003E3,-0.21641601562499957E2],[0.16787587890625002E3,-0.21582128906250006E2],[0.16781542968749997E3,-0.21392675781249963E2],[167.988477,-0.21337890624999986E2],[0.16801093750000004E3,-0.21429980468750017E2]]],[[[0.16740087890625003E3,-21.1606445],[0.16734619140624997E3,-21.16875],[0.16727324218750002E3,-0.21096777343749988E2],[0.16713388671875006E3,-21.0606445],[0.16703271484374997E3,-0.20922558593750026E2],[0.16711171874999997E3,-20.9041016],[167.189453,-0.20803515625000017E2],[0.16704501953125006E3,-20.7594727],[0.16705576171875012E3,-0.20720214843750014E2],[0.16720400390625005E3,-0.20673535156249997E2],[0.16729794921875006E3,-0.20732519531250034E2],[0.16729345703124997E3,-0.20891503906249994E2],[167.430566,-0.21055273437499963E2],[0.16740087890625003E3,-21.1606445]]],[[[166.546777,-0.20698730468749986E2],[0.16658251953124997E3,-20.4133789],[0.16662255859374994E3,-0.20596289062499988E2],[166.546777,-0.20698730468749986E2]]],[[[0.16420234375000004E3,-0.20246093749999957E2],[164.315137,-20.3088867],[164.435937,-0.20282226562499957E2],[0.16458808593750007E3,-20.3811523],[0.16497568359375012E3,-0.20681054687500023E2],[165.191797,-20.7688477],[165.380566,-20.9358398],[0.16544716796875005E3,-21.0805664],[0.16566279296875004E3,-0.21267187499999977E2],[0.16577460937500004E3,-0.21311718749999983E2],[0.16594951171875007E3,-0.21442382812499957E2],[166.057813,-0.21483886718749986E2],[0.16630332031250006E3,-0.21637207031249957E2],[0.16668964843750004E3,-0.21953027343749994E2],[0.16694238281250003E3,-22.0901367],[0.16700429687500005E3,-22.2615234],[0.16697031250000012E3,-22.3228516],[0.16677412109375004E3,-22.3761719],[0.16657060546875007E3,-0.22265527343749962E2],[166.467969,-0.22256054687499997E2],[166.416406,-0.22196191406249966E2],[166.17666,-0.22089160156250017E2],[166.096094,-21.9566406],[0.16582343750000004E3,-21.8538086],[0.16574384765625007E3,-0.21777343749999986E2],[0.16524199218750002E3,-21.5254883],[0.16501015625000005E3,-21.3268555],[164.927441,-0.21289843749999974E2],[164.655664,-0.20992089843749977E2],[0.16445468750000012E3,-0.20829101562499986E2],[164.312891,-0.20632714843750037E2],[0.16416972656250007E3,-20.4801758],[164.158105,-0.20347949218750017E2],[164.037305,-20.2335938],[164.059668,-0.20141503906249966E2],[0.16420234375000004E3,-0.20246093749999957E2]]],[[[0.15995175781250006E3,-0.19311718750000026E2],[0.15992822265624997E3,-0.19174316406250014E2],[159.959863,-0.19114648437500023E2],[0.15995175781250006E3,-0.19311718750000026E2]]]]}}],"_labels":{"NC":"New Caledonia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/NE.json b/src/api-umbrella/admin-ui/public/maps/NE.json new file mode 100644 index 000000000..5adbfecb2 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/NE.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"NE"},"geometry":{"type":"Polygon","coordinates":[[[0.14979003906250002E2,22.9961914],[0.15088964843750007E2,22.4183594],[0.15172265625000021E2,0.21922070312499997E2],[0.15181835937500011E2,0.21523388671874997E2],[0.15293652343750011E2,0.21411523437499994E2],[0.15607324218750023E2,0.20954394531250003E2],[0.15540332031250017E2,0.20874902343749994E2],[0.15587109375000011E2,0.20733300781249994E2],[15.668457,20.6723633],[15.9292969,0.20399853515624997E2],[15.9488281,0.20303173828124994E2],[0.15766210937500004E2,0.19982568359374994E2],[15.7350586,19.9040527],[0.15595507812500017E2,0.18337060546874994E2],[15.4743164,0.16908398437499994E2],[0.14367968750000017E2,0.15750146484374994E2],[13.8071289,0.14966113281250003E2],[0.13642382812500017E2,0.14630761718749994E2],[0.13448242187499998E2,0.14380664062500003E2],[0.13606347656250023E2,13.7045898],[0.13426953125000011E2,0.13701757812499991E2],[13.3238281,0.13670849609374997E2],[13.1938477,13.5730469],[13.0484375,13.5345215],[0.12654785156249998E2,13.3265625],[0.12510156250000023E2,13.1943359],[0.12463183593750017E2,13.09375],[0.12319042968750011E2,0.13073681640624997E2],[0.12117968750000017E2,0.13090429687499991E2],[0.11990039062500017E2,13.1917969],[11.6933594,0.13297705078124991E2],[0.11411914062500017E2,0.13353613281249991E2],[0.10958886718750023E2,0.13371533203124997E2],[0.10475878906250017E2,0.13330224609374994E2],[0.10184667968750004E2,0.13270117187499991E2],[9.92929688,13.1352539],[0.9615917968750011E1,12.8106445],[0.9201562500000021E1,12.8214844],[8.95761719,0.12857470703124989E2],[8.75058594,0.12908154296874997E2],[8.45605469,0.13059667968749991E2],[8.09501953,0.13291162109374993E2],[7.78867188,13.3378906],[7.3578125,0.13107177734374998E2],[7.17304688,13.0863281],[7.05673828,0.13000195312499997E2],[6.93720703,13.0082031],[6.80429688,13.107666],[6.6265625,13.3642578],[6.38632813,0.13603613281249991E2],[6.29980469,0.13658789062499991E2],[6.18427734,13.6636719],[5.49199219,0.13872851562500003E2],[5.36162109,0.13836865234374995E2],[5.24189453,0.13757226562499994E2],[5.10087891,0.13742724609375001E2],[4.82333984,13.7597656],[4.66484375,13.7332031],[4.42138672,0.13647509765625001E2],[4.2421875,0.13501074218749991E2],[4.14755859,0.13457714843749997E2],[4.08740234,0.13055468749999989E2],[3.94785156,0.12775048828124994E2],[3.64667969,0.12529980468749997E2],[3.61845703,11.8277344],[3.66474609,11.7624512],[3.59541016,11.6962891],[3.44980469,11.8519531],[3.35996094,11.8804688],[3.14960938,0.12118066406249994E2],[2.878125,0.12367724609374989E2],[2.80527344,0.12383837890624989E2],[2.6484375,0.12296777343749993E2],[2.36601563,12.2219238],[2.41269531,0.11999316406249989E2],[2.38916016,0.11897070312499991E2],[2.09140625,0.12277978515624994E2],[2.06855469,12.3791504],[2.20380859,12.4125977],[2.22626953,12.4660645],[2.15976562,0.12636425781249997E2],[2.07382812,0.12713964843749991E2],[1.95615234,12.7074219],[1.78984375,12.6132812],[1.56494141,0.12635400390624994E2],[1.09677734,0.13001123046874994E2],[0.987304688,0.13041894531249994E2],[0.973046875,0.13170361328124997E2],[0.988476563,13.3648438],[1.17089844,0.13329589843749998E2],[1.20117188,0.13357519531249991E2],[1.01787109,0.13467871093749991E2],[0.977734375,13.5519531],[0.747753906,0.13674511718749995E2],[0.618164062,0.13703417968750003E2],[0.429199219,0.13972119140624997E2],[0.354882813,0.14139013671874991E2],[0.382519531,0.14245800781249997E2],[0.163867188,0.14497216796874993E2],[0.228710938,14.9636719],[0.433007813,0.14979003906250002E2],[0.718652344,0.14954882812500005E2],[0.960058594,14.9869141],[1.30019531,15.2722656],[1.859375,0.15301708984374997E2],[3.00107422,0.15340966796874994E2],[3.06015625,0.15427197265624995E2],[3.50429688,0.15356347656249993E2],[3.52050781,0.15483105468749997E2],[3.70957031,0.15641699218749991E2],[3.81650391,0.15674023437499995E2],[3.87695312,0.15755273437499994E2],[3.94707031,15.9456543],[4.01484375,16.1927246],[4.12128906,0.16357714843750003E2],[4.18212891,16.5817871],[4.20292969,16.9626953],[4.23466797,0.16996386718750003E2],[4.22763672,0.19142773437499997E2],[5.74833984,0.19434228515624994E2],[5.83662109,0.19479150390624994E2],[6.98935547,0.20470507812500003E2],[7.48173828,0.20873095703125003E2],[0.11967871093750006E2,0.23517871093750003E2],[13.48125,23.1801758],[13.5986328,23.1195313],[14.2006836,0.22623730468749997E2],[0.14230761718750017E2,0.22618457031250003E2],[0.14979003906250002E2,22.9961914]]]}}],"_labels":{"NE":"Niger"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/NF.json b/src/api-umbrella/admin-ui/public/maps/NF.json new file mode 100644 index 000000000..e7e216ded --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/NF.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"NF"},"geometry":{"type":"Polygon","coordinates":[[[167.939453,-0.29017675781250002E2],[167.99043,-0.29042089843750002E2],[0.16798867187500002E3,-29.0589844],[167.979004,-29.0756836],[0.16796416015625005E3,-0.29085351562500005E2],[0.16796074218750005E3,-0.29096289062500002E2],[0.16794443359375003E3,-29.0729492],[167.92041,-29.0828125],[0.16791240234375002E3,-0.29052832031250006E2],[167.924023,-29.0358398],[0.16791855468750003E3,-0.29025097656250015E2],[0.16790615234375002E3,-29.028125],[167.920605,-0.29013964843750003E2],[167.939453,-0.29017675781250002E2]]]}}],"_labels":{"NF":"Norfolk Island"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/NG.json b/src/api-umbrella/admin-ui/public/maps/NG.json new file mode 100644 index 000000000..a37158b65 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/NG.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"NG"},"geometry":{"type":"MultiPolygon","coordinates":[[[[7.30078125,4.41816406],[7.14042969,4.39511719],[7.22734375,4.52734375],[7.32792969,4.48720703],[7.30078125,4.41816406]]],[[[5.83818359,0.13765380859375057E2],[6.18427734,13.6636719],[6.29980469,0.13658789062500006E2],[6.38632813,0.13603613281250048E2],[6.6265625,0.13364257812500043E2],[6.80429688,13.107666],[6.93720703,13.0082031],[7.05673828,13.0001953],[7.17304688,13.0863281],[7.3578125,0.13107177734374986E2],[7.78867188,13.3378906],[8.09501953,0.13291162109374978E2],[8.45605469,0.13059667968749991E2],[8.75058594,0.12908154296875026E2],[9.2015625,12.8214844],[0.9615917968750011E1,0.12810644531249963E2],[9.92929688,0.13135253906250014E2],[0.10184667968750063E2,0.13270117187499963E2],[0.10475878906250074E2,0.13330224609375037E2],[0.10958886718750051E2,0.13371533203125011E2],[0.11411914062500074E2,0.13353613281250006E2],[0.11693359375000028E2,0.13297705078124991E2],[0.11990039062500074E2,13.1917969],[0.12117968750000017E2,0.13090429687500034E2],[12.319043,0.13073681640624997E2],[0.12463183593750017E2,13.09375],[12.5101563,0.13194335937499972E2],[0.12654785156250057E2,13.3265625],[13.0484375,0.13534521484375004E2],[13.1938477,0.13573046875000031E2],[0.13323828125000034E2,0.13670849609374983E2],[0.13606347656250023E2,0.13704589843750014E2],[0.14063964843749998E2,13.0785156],[0.14197460937500011E2,0.12383789062500043E2],[0.14415429687500021E2,0.12344140624999966E2],[0.14518945312500051E2,0.12298242187500023E2],[0.14627148437500068E2,0.12108691406249958E2],[0.14597363281250038E2,0.11829833984374986E2],[0.14561816406250074E2,0.11728710937499997E2],[0.14559765625000011E2,0.11492285156249963E2],[14.2023438,0.11268164062499963E2],[0.14056738281250034E2,0.11245019531250037E2],[0.13892089843750055E2,0.11140087890624983E2],[0.13699902343749981E2,0.10873144531250048E2],[13.5353516,0.10605078124999963E2],[0.13414550781250028E2,0.10171435546874987E2],[0.13269921875000051E2,0.10036181640624974E2],[13.2211914,9.64516602],[0.13175488281250011E2,0.9539648437499977E1],[0.12929492187500074E2,9.42626953],[12.8756836,0.9303515625000017E1],[12.806543,8.88662109],[0.12731152343750068E2,8.7456543],[12.5827148,8.62412109],[12.4035156,8.59555664],[12.2333984,8.28232422],[12.155957,7.94248047],[0.12025195312500045E2,7.7277832],[0.12016015625000051E2,7.58974609],[0.11767382812500017E2,7.27226562],[0.11861425781249977E2,7.11640625],[0.11580078125000057E2,6.88886719],[0.11551660156250021E2,6.69726562],[0.11477539062500028E2,6.59741211],[0.11324609375000051E2,6.48466797],[0.11153320312500057E2,6.43793945],[0.11079687500000063E2,6.50551758],[0.11032519531250045E2,6.69790039],[0.10737597656250017E2,6.98828125],[10.60625,7.06308594],[10.5563477,7.03745117],[0.10482324218750051E2,6.89125977],[0.10205468750000051E2,6.89160156],[0.10143554687500057E2,6.99643555],[9.87421875,6.80327148],[9.77988281,6.76015625],[0.9659960937500017E1,6.53198242],[9.37333984,6.31962891],[9.06015625,6.00908203],[8.93505859,5.78100586],[8.80097656,5.19746094],[8.51484375,4.72470703],[8.43134766,4.74624023],[8.25273438,4.92397461],[8.23378906,4.9074707],[8.32802734,4.65610352],[8.29306641,4.55761719],[8.02851563,4.55537109],[7.80078125,4.52226563],[7.565625,4.5609375],[7.53076172,4.65517578],[7.45986328,4.55522461],[7.284375,4.54765625],[7.14384766,4.68408203],[7.1546875,4.5144043],[7.01337891,4.39731445],[6.86787109,4.44111328],[6.82470703,4.64526367],[6.76767578,4.72470703],[6.79306641,4.46914063],[6.86035156,4.37333984],[6.63300781,4.34023438],[6.57998047,4.47597656],[6.55458984,4.34140625],[6.26367188,4.30942383],[6.27099609,4.43212891],[6.20556641,4.29228516],[6.0765625,4.290625],[5.79863281,4.45595703],[5.58779297,4.6472168],[5.49326172,4.83876953],[5.38330078,5.12900391],[5.47597656,5.15385742],[5.37001953,5.19501953],[5.36796875,5.33774414],[5.50087891,5.37861328],[5.54970703,5.47421875],[5.38583984,5.40175781],[5.23242188,5.48378906],[5.21582031,5.57167969],[5.39384766,5.57451172],[5.32734375,5.70751953],[5.17285156,5.60273438],[5.11240234,5.64155273],[5.09306641,5.76708984],[5.04208984,5.79750977],[4.86103516,6.02631836],[4.63359375,6.2171875],[4.43134766,6.34858398],[4.12587891,6.41137695],[3.48662109,6.40893555],[3.45078125,6.42705078],[3.75166016,6.58383789],[3.71699219,6.59794922],[3.43017578,6.525],[3.33554688,6.39692383],[2.70644531,6.36923828],[2.73564453,6.59570312],[2.77460937,6.71171875],[2.72138672,6.98027344],[2.75673828,7.06791992],[2.75048828,7.39506836],[2.78515625,7.47685547],[2.71933594,7.61625977],[2.68603516,7.87373047],[2.72363281,8.44189453],[2.73291016,8.78251953],[2.77480469,9.04853516],[3.04492188,9.08383789],[3.14804688,0.9320605468750031E1],[3.13613281,0.9451611328124983E1],[3.32949219,0.9667041015625003E1],[3.32519531,0.9778466796875051E1],[3.55722656,9.90732422],[3.64589844,10.1601562],[3.5765625,0.10268359375000017E2],[3.68027344,0.10427783203124989E2],[3.78378906,0.10435888671875048E2],[3.83447266,10.6074219],[3.75683594,10.76875],[3.71640625,11.0795898],[3.48779297,0.11395410156250037E2],[3.49052734,0.11499218750000054E2],[3.59541016,0.11696289062500057E2],[3.66474609,0.11762451171875028E2],[3.61845703,11.8277344],[3.64667969,0.12529980468749983E2],[3.94785156,0.12775048828124994E2],[4.08740234,0.13055468750000017E2],[4.14755859,0.13457714843749983E2],[4.2421875,0.13501074218750034E2],[4.42138672,0.13647509765625015E2],[4.66484375,0.13733203124999974E2],[4.82333984,0.13759765624999972E2],[5.10087891,13.7427246],[5.24189453,0.13757226562499994E2],[5.36162109,0.13836865234375054E2],[5.49199219,0.13872851562500003E2],[5.83818359,0.13765380859375057E2]]]]}}],"_labels":{"NG":"Nigeria"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/NI.json b/src/api-umbrella/admin-ui/public/maps/NI.json new file mode 100644 index 000000000..95edd9341 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/NI.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"NI"},"geometry":{"type":"Polygon","coordinates":[[[-83.1575195,0.14993066406249996E2],[-83.302002,14.8020996],[-83.3443848,14.9020996],[-83.4137207,0.14825341796874994E2],[-83.2992187,14.7490234],[-83.1877441,0.14340087890624998E2],[-83.2117187,0.14267138671875003E2],[-83.346582,0.14056982421874991E2],[-83.4123047,13.9964844],[-83.49375,0.13738818359375003E2],[-83.567334,13.3203125],[-83.5144531,0.12943945312499991E2],[-83.5412109,0.12596289062499991E2],[-83.5109375,0.12411816406249997E2],[-83.5958984,12.3964844],[-83.6271973,0.12459326171874991E2],[-83.5780762,0.12667138671874994E2],[-83.754248,12.5019531],[-83.6512695,0.12287060546874997E2],[-83.6804199,0.12024316406249994E2],[-83.7671875,0.12059277343749997E2],[-83.7693359,11.9316406],[-83.8289062,0.11861035156249995E2],[-83.7045898,0.11824560546874991E2],[-83.6517578,0.11642041015624997E2],[-83.7449707,0.11566503906249991E2],[-83.8293945,0.11428173828124997E2],[-83.8678711,0.11300048828124998E2],[-83.8318359,0.11130517578124994E2],[-83.7140625,10.9338379],[-83.6419922,0.10917236328124998E2],[-83.6589355,0.10836865234374997E2],[-83.8111816,0.10743261718749991E2],[-83.9192871,10.7353516],[-84.1683594,0.10780371093749991E2],[-84.2555664,0.10900732421874991E2],[-84.348291,0.10979882812499994E2],[-84.4891602,0.10991650390624995E2],[-84.7011719,0.11052197265624997E2],[-84.9091797,10.9453125],[-85.5387207,0.11166308593749989E2],[-85.6213867,0.11184472656249994E2],[-85.7026367,11.081543],[-85.7452148,0.11088574218749997E2],[-85.9611328,0.11331347656249989E2],[-86.4688965,11.7382812],[-86.6555176,0.11981542968749991E2],[-86.7556152,12.1566406],[-86.8509766,0.12247753906249997E2],[-87.1251953,0.12434130859374989E2],[-87.1884277,0.12508349609374989E2],[-87.4601562,12.7575684],[-87.6675293,12.9035645],[-87.670166,12.9656738],[-87.5433105,0.13039697265624994E2],[-87.4243652,0.12921142578124998E2],[-87.3372559,12.979248],[-87.0591797,12.9914551],[-86.9588867,0.13053710937499998E2],[-86.9182129,0.13223583984374997E2],[-86.8735352,0.13266503906249993E2],[-86.7106934,0.13313378906249994E2],[-86.7706055,13.6987305],[-86.7336426,0.13763476562500003E2],[-86.3317383,0.13770068359375003E2],[-86.1512207,0.13994580078124997E2],[-86.0403809,0.14050146484374991E2],[-85.9837891,0.13965673828124991E2],[-85.7867188,0.13844433593749995E2],[-85.7312012,0.13931835937499997E2],[-85.4770508,0.14108691406250003E2],[-85.3737793,14.223877],[-85.1794922,0.14343310546875003E2],[-85.1613281,14.5251465],[-85.0365234,0.14607666015624998E2],[-84.9851562,14.7524414],[-84.8604492,14.8097656],[-84.7891602,0.14790380859374991E2],[-84.7297852,0.14713378906249998E2],[-84.5376465,0.14633398437499991E2],[-84.4535645,0.14643701171874994E2],[-84.239209,0.14747851562500003E2],[-84.1144043,0.14731005859375001E2],[-84.0658203,0.14786083984374999E2],[-83.8672852,0.14794482421875003E2],[-83.5897461,0.14907568359374991E2],[-83.5365234,0.14977001953124997E2],[-83.4150391,15.0080566],[-83.1575195,0.14993066406249996E2]]]}}],"_labels":{"NI":"Nicaragua"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/NL.json b/src/api-umbrella/admin-ui/public/maps/NL.json new file mode 100644 index 000000000..4f6054f14 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/NL.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"NL"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-62.9375,17.4956543],[-62.9375,17.4956543],[-62.9375,17.4956543],[-62.9375,17.4956543]]],[[[-63.232666,0.17623144531250034E2],[-63.232666,0.17623144531250034E2],[-63.232666,0.17623144531250034E2],[-63.232666,0.17623144531250034E2]]],[[[4.22617188,51.3864746],[4.17255859,51.3070801],[3.90205078,0.51207666015625016E2],[3.75566406,51.254834],[3.58027344,51.2861816],[3.47197266,0.51242236328125045E2],[3.38007813,51.2911133],[3.35009766,51.3776855],[3.58945312,51.3994141],[3.88339844,51.3544922],[4.01103516,51.3959473],[4.11152344,51.3606445],[4.22617188,51.3864746]]],[[[3.94912109,51.7394531],[4.07509766,0.51648779296875006E2],[3.95097656,0.51627050781250006E2],[3.81904297,0.51693994140624966E2],[3.73183594,51.6782227],[3.69853516,0.51729687499999955E2],[3.7890625,0.51746435546875006E2],[3.94912109,51.7394531]]],[[[4.88613281,53.0707031],[4.78710938,52.9998047],[4.70917969,0.53036035156249994E2],[4.73984375,0.53091308593749964E2],[4.88642578,53.1833008],[4.88613281,53.0707031]]],[[[5.10859375,0.53308007812499994E2],[4.92373047,53.2345703],[5.02705078,0.53310205078124994E2],[5.10859375,0.53308007812499994E2]]],[[[4.22617188,51.3864746],[4.00654297,0.51443212890625034E2],[3.821875,51.409375],[3.69355469,51.4499023],[3.58691406,51.4539062],[3.44892578,51.5407715],[3.54863281,51.5891113],[3.74394531,0.51596044921875006E2],[3.88603516,51.5742188],[4.14130859,51.4557617],[4.27412109,51.4716309],[4.23935547,51.5039062],[4.08046875,51.551123],[4.00478516,0.51595849609374966E2],[4.18261719,51.6103027],[4.13457031,51.6729004],[3.946875,51.8105469],[4.08486328,51.9940918],[4.20878906,52.0589844],[4.37626953,52.1968262],[4.4828125,52.3091797],[4.56210938,52.4425781],[4.67832031,52.8097656],[4.76875,0.52941308593749966E2],[4.88798828,52.9083496],[5.06123047,52.9606445],[5.35839844,53.0964844],[5.44599609,53.2140625],[5.53203125,0.53268701171874966E2],[5.87353516,0.53375195312500004E2],[6.06220703,0.53407080078125006E2],[6.35322266,53.4152832],[6.56357422,0.53434277343749955E2],[6.81621094,53.4411621],[6.96816406,53.3272949],[7.19726563,53.2822754],[7.18994141,52.9995117],[7.11708984,52.8870117],[7.01318359,52.6335449],[6.7484375,52.634082],[6.69160156,0.52530175781249966E2],[6.74882813,0.52464013671874994E2],[6.96816406,52.4440918],[7.03515625,52.3802246],[7.01962891,52.2660156],[6.97724609,52.2055176],[6.74902344,52.0986816],[6.715625,52.0361816],[6.80244141,51.9801758],[6.74179688,51.9108887],[6.51757813,0.51853955078124955E2],[6.425,51.8583984],[6.35566406,51.8246582],[6.16650391,51.8807617],[5.94873047,0.51802685546875004E2],[5.94853516,0.51762402343749955E2],[6.19326172,51.488916],[6.19287109,51.4105957],[6.07587891,51.2241211],[6.12998047,51.1474121],[5.93925781,51.0408203],[5.86835938,51.0453125],[5.89472656,50.9842285],[6.00683594,50.9499512],[6.0484375,0.50904882812500055E2],[5.99394531,50.7504395],[5.79736328,0.50754541015624994E2],[5.69365234,50.7746582],[5.63945313,50.8436035],[5.73662109,50.9321289],[5.82714844,0.51125634765624994E2],[5.75234375,51.1694824],[5.60878906,51.1984375],[5.47685547,0.51285058593749966E2],[5.31083984,0.51259716796874955E2],[5.21416016,0.51278955078124966E2],[5.09990234,51.3464844],[5.03095703,51.4690918],[4.94394531,51.4077637],[4.82070313,51.4120605],[4.75566406,51.4911133],[4.63398438,0.51421728515625006E2],[4.50341797,51.474707],[4.38476563,51.4275879],[4.40400391,51.3670898],[4.22617188,51.3864746]]],[[[5.32578125,53.3857422],[5.19023438,53.3917969],[5.41513672,53.4314453],[5.58261719,0.53438085937500034E2],[5.32578125,53.3857422]]],[[[5.92929688,53.4588379],[5.73203125,0.53442626953124964E2],[5.65429688,53.4665039],[5.87626953,53.4750977],[5.92929688,53.4588379]]],[[[6.33339844,53.5107422],[6.33339844,53.5107422],[6.33339844,53.5107422],[6.33339844,53.5107422]]],[[[6.73476563,53.5825195],[6.66855469,53.6056641],[6.80087891,53.6254883],[6.73476563,53.5825195]]]]}}],"_labels":{"NL":"Netherlands"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/NO.json b/src/api-umbrella/admin-ui/public/maps/NO.json new file mode 100644 index 000000000..010837e2d --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/NO.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"NO"},"geometry":{"type":"MultiPolygon","coordinates":[[[[5.08583984,60.3075684],[5.0890625,0.60188769531250045E2],[4.94355469,60.2724121],[4.93007812,0.60412060546874976E2],[4.990625,0.60452050781249966E2],[5.08583984,60.3075684]]],[[[4.95869141,61.0845703],[4.79902344,61.0827148],[4.91542969,0.61199365234374966E2],[4.95869141,61.0845703]]],[[[8.10273438,63.3375977],[7.88828125,63.3523438],[7.80400391,0.63413916015625034E2],[8.07353516,63.4708008],[8.10273438,63.3375977]]],[[[8.47080078,63.6671387],[8.28710938,0.63687158203125016E2],[8.70888672,63.7743164],[8.78652344,0.63703466796875034E2],[8.47080078,63.6671387]]],[[[11.2314453,64.8658691],[0.10832519531249972E2,64.8431152],[10.8134766,64.9232422],[0.11132617187500017E2,64.9761719],[11.2314453,64.8658691]]],[[[11.9679688,65.6265137],[0.11778320312500028E2,65.604541],[0.11800390624999977E2,65.6838867],[0.12003222656250017E2,65.6794434],[11.9679688,65.6265137]]],[[[0.12509570312500045E2,65.9019531],[0.12430175781250028E2,65.9399414],[0.12548828125000057E2,66.0019043],[0.12747070312500028E2,66.011377],[0.12509570312500045E2,65.9019531]]],[[[12.4199219,66.0432617],[0.12327343750000038E2,66.0366211],[12.4613281,66.1850098],[0.12620800781250068E2,66.1779297],[0.12576367187500068E2,66.0719238],[12.4199219,66.0432617]]],[[[0.12971777343750063E2,67.8741211],[0.12824023437500074E2,67.8212402],[12.9577148,68.0154785],[0.13122851562500017E2,68.0494141],[0.13098242187499975E2,67.9564453],[0.12971777343750063E2,67.8741211]]],[[[0.13872851562500045E2,68.265332],[0.14087695312500045E2,68.2532227],[0.14029296875000028E2,68.1875488],[0.13778417968750004E2,68.1049805],[13.5839844,68.0938477],[13.2293945,67.9953613],[0.13199511718750015E2,68.0872559],[0.13300195312499994E2,68.1604492],[13.4287109,68.1632324],[0.13537988281250051E2,68.2490234],[0.13872851562500045E2,68.265332]]],[[[0.15207128906250006E2,68.9431152],[15.396582,68.7835938],[0.15348437500000017E2,68.6724121],[0.15222070312500025E2,68.6163086],[0.14890234375000036E2,68.6109863],[0.14743457031250045E2,68.6771973],[0.14520800781250074E2,68.6330566],[14.3734375,68.7114258],[0.14553710937500028E2,68.8188477],[0.14801855468750032E2,68.7909668],[0.14872363281250015E2,68.9138672],[15.0375,68.8942871],[0.15037792968750068E2,69.0005371],[0.15207128906250006E2,68.9431152]]],[[[0.15760351562500007E2,68.5612305],[0.15908593750000023E2,68.6504883],[16.0595703,68.6805176],[16.1505859,68.8423828],[0.16328906250000017E2,68.8763184],[16.5473633,68.7165527],[0.16519238281250068E2,68.6330078],[0.16193945312500063E2,68.5384766],[15.9125,68.3892578],[0.15763671875000055E2,68.409082],[0.15682519531250051E2,68.3560059],[15.4375,68.3128418],[15.2796875,68.3738281],[0.15187890625000078E2,68.3104004],[0.14926855468750034E2,68.3065918],[0.14628906249999972E2,68.1984863],[0.14257519531249983E2,68.1907715],[0.14257226562500023E2,68.2569336],[0.14585839843749994E2,68.4003418],[15.0953125,68.4414063],[0.15412597656250027E2,68.6158203],[0.15489257812500028E2,68.8053223],[0.15564257812500017E2,68.8737305],[0.15443652343750047E2,68.9191895],[0.15483007812500006E2,69.043457],[0.15741992187499987E2,69.1705078],[15.8926758,69.2778809],[16.0480469,69.3020508],[16.1148437,69.2164062],[0.15811718749999981E2,69.0242188],[0.15905859374999977E2,68.9084961],[0.15927929687500038E2,68.7332031],[0.15760351562500007E2,68.5612305]]],[[[0.17503027343750034E2,69.5962402],[17.6232422,69.5390625],[17.7836914,69.5630371],[0.18004101562500068E2,69.5049805],[0.18076757812500034E2,69.395752],[17.9420898,69.3287109],[17.9506836,69.1981445],[0.17568164062500074E2,69.1604004],[0.17487890625000063E2,69.1968262],[0.17160937500000074E2,69.0259277],[16.8104492,69.0707031],[0.16971777343750063E2,69.1378906],[0.17001757812500045E2,69.3619141],[0.17083007812499996E2,69.3988281],[17.3608398,69.3814941],[17.2519531,69.5038086],[17.4536133,69.5301758],[0.17503027343750034E2,69.5962402]]],[[[0.29956152343750006E2,69.7967773],[0.29766210937500006E2,69.7675293],[29.8358398,69.9055664],[0.30055175781249968E2,69.8383789],[0.29956152343750006E2,69.7967773]]],[[[0.20779199218750023E2,70.0897461],[0.20642578125000057E2,70.0570312],[20.4642578,70.0765625],[20.4117187,70.1548828],[0.20654882812500006E2,70.2308594],[0.20819433593750034E2,70.2054687],[0.20779199218750023E2,70.0897461]]],[[[19.2550781,70.0664063],[19.34375,70.0119629],[19.4995117,70.0479004],[0.19592285156250057E2,69.970166],[0.19334765625000074E2,69.8202637],[19.1308594,69.8104492],[0.18806933593750017E2,69.6398438],[0.18784765625000034E2,69.5790039],[18.2741211,69.535498],[18.1298828,69.5578613],[18.0834961,69.626123],[18.2274414,69.6357422],[18.3493164,69.7678711],[18.6740234,69.7816406],[18.6865234,69.890918],[0.18968652343750023E2,70.0430176],[19.0509766,70.0378418],[19.0600586,70.1666016],[0.19212695312500074E2,70.2474609],[19.2550781,70.0664063]]],[[[19.7674805,70.2166992],[0.20084277343750017E2,70.1285645],[0.20005957031250034E2,70.0762207],[19.7808594,70.0774414],[19.5990234,70.2661621],[19.7674805,70.2166992]]],[[[0.23615332031250034E2,70.5493164],[0.23641015625000048E2,70.4639648],[23.5477539,70.4081543],[23.1591797,70.2826172],[23.090625,70.3776367],[22.9178711,70.384668],[0.22941015625000063E2,70.4445801],[23.1583984,70.5160645],[23.2480469,70.505127],[0.23546679687500017E2,70.6170898],[0.23615332031250034E2,70.5493164]]],[[[24.0175781,70.5673828],[23.8271484,70.5274902],[23.6701172,70.5970703],[0.23689160156250068E2,70.7228027],[0.23778417968750063E2,70.7473633],[24.0783203,70.6505859],[24.0175781,70.5673828]]],[[[0.23440527343750063E2,70.8157715],[23.3871094,70.7539063],[0.23068164062500045E2,70.5940918],[0.22829101562499996E2,70.5415527],[0.22656054687500017E2,70.5590332],[0.22557519531250023E2,70.5158691],[0.22358691406250017E2,70.5147949],[22.16875,70.5621094],[0.21994531250000076E2,70.6571289],[0.22350292968750068E2,70.657666],[0.22420996093750006E2,70.7025879],[0.22858105468750068E2,70.728418],[0.22963574218750036E2,70.7109863],[0.23204687500000063E2,70.8154785],[0.23440527343750063E2,70.8157715]]],[[[27.8980469,70.6779297],[28.215625,70.7043457],[0.28166015625000057E2,70.2876465],[0.28192968750000034E2,70.248584],[0.28309863281250045E2,70.4430664],[28.4373047,70.5013672],[28.609375,70.759668],[0.28831542968750025E2,70.8639648],[0.29102343750000045E2,70.8607422],[29.3976563,70.7341309],[29.6390625,70.7050293],[0.29796484375000063E2,70.6425293],[0.30065136718750097E2,70.7029785],[30.2376953,70.622168],[0.30213183593750017E2,70.5433105],[30.5958984,70.5236816],[0.30926367187500002E2,70.401123],[0.30944140625000017E2,70.2744141],[0.30468945312500097E2,70.1978516],[30.2629883,70.124707],[0.29925878906250063E2,70.0964844],[0.28781152343750055E2,70.1454102],[0.28804296875000063E2,70.0925293],[0.29601367187500017E2,69.9767578],[0.29635937500000036E2,69.780127],[29.7920898,69.7278809],[30.1551758,69.7459473],[30.1800781,69.8411621],[30.3488281,69.8345703],[0.30428320312500006E2,69.7222656],[30.484375,69.794873],[0.30869726562500006E2,69.7834473],[0.30922460937500002E2,69.6058105],[30.8607422,69.5384277],[0.30615429687500093E2,69.5325684],[30.2275391,69.6337891],[30.1318359,69.4642578],[29.994043,69.3924805],[29.3882812,69.2981445],[29.2099609,69.0970215],[28.9658203,69.0219727],[0.28832617187500063E2,69.1189941],[0.28846289062500006E2,69.1769043],[0.29238867187500063E2,69.3939453],[0.29333398437500048E2,69.472998],[0.29141601562500025E2,69.6714355],[0.28411718750000034E2,69.8227539],[0.28047265625000023E2,69.9716797],[0.27889941406250045E2,70.0616699],[0.27591699218750023E2,70.0422363],[0.27108691406250042E2,69.9046875],[0.26740234375000025E2,69.9330566],[0.26525390625000057E2,69.9150391],[0.26308203125000034E2,69.7819336],[0.26011523437500074E2,69.6526367],[0.25748632812500063E2,69.2314453],[0.25748339843750014E2,68.9901367],[0.25575292968750006E2,68.8871582],[0.25357128906250068E2,68.8624512],[0.25172851562499996E2,68.7652832],[25.0869141,68.6395996],[24.9414063,68.5932617],[24.3320313,68.7115234],[23.9973633,68.7984375],[23.8540039,68.8059082],[23.7070312,68.7138672],[0.23324023437500017E2,68.6489746],[0.22410937500000074E2,68.719873],[0.22300390625000034E2,68.8558594],[0.21621777343750068E2,69.2707031],[21.2667969,69.2736816],[0.21052636718750023E2,69.1865723],[21.127832,69.0808105],[0.21065722656250017E2,69.041748],[0.20675878906250006E2,69.0694824],[0.20622167968750006E2,69.0368652],[0.20116699218750057E2,69.0208984],[20.3371094,68.8996582],[20.3194336,68.7540527],[0.20147460937499996E2,68.6073242],[19.9688477,68.542041],[0.20240039062500042E2,68.4775391],[0.19969824218750063E2,68.3563965],[19.8700195,68.3622559],[19.0526367,68.4927246],[0.18769824218750017E2,68.5000488],[0.18378613281250068E2,68.5624023],[18.1625977,68.528418],[18.1766602,68.2006348],[0.17916699218750008E2,67.9648926],[0.17324609375000023E2,68.1038086],[0.16783593750000023E2,67.8950195],[0.16585546874999974E2,67.6283203],[0.16457128906250034E2,67.5517578],[0.16193554687500068E2,67.5051758],[16.1274414,67.4258301],[0.16360644531249985E2,67.252002],[0.16434277343749983E2,67.1550781],[16.4035156,67.0549805],[0.15884179687500021E2,66.7688477],[15.5570313,66.5520996],[0.15422949218750006E2,66.4898437],[0.15483789062500051E2,66.305957],[0.15153320312500057E2,66.1910645],[14.9179688,66.1537109],[0.14543261718750044E2,66.1293457],[0.14635156250000023E2,65.8450195],[0.14549511718750068E2,65.6463867],[0.14479687500000038E2,65.3014648],[0.14115136718750023E2,64.9461426],[0.13650292968750023E2,64.581543],[0.14077636718750028E2,64.4640137],[0.14141210937500006E2,64.1735352],[0.13960546875000063E2,64.0140137],[0.13299609375000074E2,64.0748047],[0.12987597656250017E2,64.0504883],[12.6625,63.9404785],[12.1751953,63.5959473],[0.12212109375000011E2,63.4922363],[11.9999023,0.63291699218750004E2],[0.12218164062500023E2,0.63000634765625016E2],[0.12108593750000068E2,62.9194824],[12.1398438,62.7213379],[0.12114550781250045E2,62.5918945],[0.12303515625000074E2,62.2855957],[0.12291992187500057E2,62.1674316],[0.12155371093750004E2,0.61720751953125045E2],[12.5960937,61.5413086],[12.8807617,61.3522949],[0.12828222656250034E2,61.2218262],[0.12683007812500021E2,61.0468262],[0.12294140625000038E2,61.0026855],[0.12314648437500038E2,60.8921387],[0.12553808593750006E2,60.5456543],[0.12588671874999989E2,0.60450732421875045E2],[0.12515820312499983E2,0.60305224609375074E2],[0.12486132812500074E2,0.60106787109375055E2],[0.12169238281250074E2,59.9128906],[11.9321289,59.8636719],[0.11834277343750044E2,0.59697167968749994E2],[0.11680761718750032E2,59.5922852],[0.11798144531250072E2,59.2898926],[0.11712207031250045E2,59.0186523],[11.6427734,0.58926074218750024E2],[0.11470703125000057E2,58.9095215],[11.365918,0.59104541015625074E2],[0.10834472656250028E2,59.1839355],[0.10644921875000051E2,59.389209],[0.10595312500000063E2,59.7645508],[0.10533886718750068E2,59.6958008],[0.10569531250000038E2,0.59587109374999955E2],[10.3981445,59.5193359],[0.10446386718750006E2,59.4436035],[0.10431347656250068E2,0.59279638671875034E2],[0.10179394531250066E2,0.59009277343750036E2],[0.10083105468749977E2,59.0288086],[0.9842578125000017E1,58.9584961],[0.9635156250000023E1,59.1177734],[0.9557226562500063E1,59.1126953],[0.9696093750000017E1,59.0097168],[0.9618457031250017E1,58.9460449],[0.9309960937500051E1,58.8568359],[0.9395800781250017E1,58.8056641],[9.178125,58.675],[8.92841797,0.58569970703125044E2],[8.52138672,58.3005859],[8.16611328,0.58145312500000045E2],[8.03740234,58.1472656],[7.87558594,0.58079980468749966E2],[7.46591797,58.0209473],[7.19414063,58.0476563],[7.00488281,0.58024218750000074E2],[6.91230469,58.1428711],[6.80283203,58.154541],[6.73144531,0.58068310546874976E2],[6.55507813,58.1234375],[6.69248047,0.58224023437499994E2],[6.65986328,58.2627441],[6.3890625,58.2679687],[6.0546875,0.58375146484374966E2],[5.9765625,58.4323242],[5.70683594,58.5236328],[5.51728516,58.7265137],[5.55556641,0.58975195312500006E2],[5.61220703,0.59012890624999955E2],[5.85429687,58.9594727],[6.09902344,58.8702637],[6.36328125,0.59000927734375004E2],[6.09941406,58.9519531],[5.88916016,0.59060498046874976E2],[5.96855469,59.1861328],[5.95185547,59.2990723],[6.40390625,0.59560986328124976E2],[6.15859375,59.4896484],[5.84521484,59.3534668],[5.5640625,59.2912109],[5.36230469,0.59166357421875034E2],[5.17324219,59.1625488],[5.13164063,0.59226464843750016E2],[5.18505859,0.59453662109375045E2],[5.30488281,0.59642578124999964E2],[5.47246094,59.7130859],[5.77216797,59.6609375],[6.21191406,59.8317871],[5.83398438,59.7946777],[5.73046875,0.59863085937500045E2],[6.11181641,60.1320801],[6.14052734,60.2334961],[6.34873047,60.3529785],[6.51806641,60.4075684],[6.57363281,0.60360595703124964E2],[6.52685547,0.60152929687500034E2],[6.6609375,60.3672363],[6.78710938,60.4541016],[6.99570313,60.5119629],[6.80634766,60.5007813],[6.34697266,0.60419091796874994E2],[6.15332031,60.3462402],[5.90439453,60.1506348],[5.8765625,60.0700195],[5.69882813,60.0100098],[5.49453125,0.59825585937499966E2],[5.23447266,59.6917969],[5.11074219,59.6678223],[5.11923828,0.59833691406250004E2],[5.21953125,59.9787598],[5.20566406,0.60087939453125045E2],[5.49453125,60.0703125],[5.68857422,60.1231934],[5.41738281,60.1541016],[5.28583984,60.2057129],[5.18359375,60.3083984],[5.16816406,0.60484814453124976E2],[5.54648438,60.6245605],[5.24404297,60.5695801],[5.04912109,60.7075195],[5.00859375,61.0381836],[5.09541016,61.0713379],[5.50527344,61.0561035],[5.98398438,61.117334],[6.41796875,61.0842773],[6.77783203,61.1424316],[6.97207031,61.055957],[7.07792969,60.9663086],[7.04013672,61.0911621],[7.54501953,0.61177148437499966E2],[7.40390625,61.222168],[7.34658203,61.3005859],[7.45253906,61.4192383],[7.33115234,0.61372021484374976E2],[7.27597656,0.61180957031250045E2],[6.94257813,61.1605469],[6.65703125,61.2065918],[6.59990234,61.2896484],[6.49257812,61.1545898],[6.38349609,61.1338867],[6.08251953,61.1672852],[5.64677734,0.61147607421874994E2],[5.32460938,61.108252],[5.02167969,0.61250585937500006E2],[5.00273438,61.4335938],[5.33867188,61.485498],[5.16757813,0.61543359374999966E2],[4.92783203,61.7106934],[4.93007812,0.61878320312499994E2],[5.46533203,0.61896923828124976E2],[6.01582031,61.7875],[6.46669922,0.61807421875000045E2],[6.73076172,0.61869775390625044E2],[6.13115234,61.8524414],[5.47304688,0.61945605468750045E2],[5.15957031,0.61956982421874955E2],[5.09648438,62.0266602],[5.14316406,62.1599121],[5.35771484,0.62151708984375006E2],[5.53330078,62.3108887],[5.90830078,62.4160156],[6.08349609,62.3496094],[6.58007813,0.62407275390625045E2],[6.69238281,62.4680664],[6.13613281,62.4074707],[6.11845703,0.62447167968749994E2],[6.35292969,62.6111328],[6.74462891,62.6378906],[7.28378906,0.62602294921874964E2],[7.49179688,62.5428223],[7.69072266,0.62585595703125016E2],[7.52744141,0.62610302734375004E2],[7.53837891,0.62672070312499976E2],[7.8046875,62.7209961],[8.09550781,0.62731835937499994E2],[8.04550781,62.7712402],[7.40839844,62.7117676],[7.24208984,62.7523437],[6.77998047,62.7007324],[6.78154297,0.62789648437500034E2],[7.00849609,0.62957666015624994E2],[7.3890625,63.023291],[7.571875,63.0995117],[7.86035156,63.112793],[8.10058594,0.63090966796874966E2],[8.21113281,62.9955078],[8.62314453,62.8462402],[8.60917969,62.8805664],[8.15800781,0.63161523437500044E2],[8.27148438,63.2865723],[8.58017578,0.63313378906249966E2],[8.59375,0.63426123046875034E2],[8.38652344,0.63445263671875004E2],[8.39814453,63.5351074],[8.57617188,63.6011719],[8.84238281,63.6458984],[9.13583984,63.5936523],[9.07587891,0.63500390624999966E2],[0.9156054687500045E1,63.4593262],[9.32363281,63.5703613],[9.696875,63.6245605],[0.9936035156250055E1,0.63478857421875034E2],[9.97919922,63.3952637],[0.10340039062500011E2,63.4693359],[10.7601563,63.4612793],[0.10673632812500045E2,63.5580078],[0.10725292968750068E2,63.625],[11.1178711,63.7191895],[0.11370703125000032E2,0.63804833984374994E2],[0.11175585937500074E2,0.63898876953124976E2],[0.11457617187500063E2,64.0029785],[0.11306640625000027E2,64.048877],[10.9142578,63.9210937],[0.11047265625000023E2,0.63845214843749964E2],[0.10934863281250045E2,0.63770214843749955E2],[0.10339160156250017E2,0.63571044921874964E2],[0.10055078125000051E2,63.5126953],[0.9924023437499983E1,63.5217773],[9.76748047,0.63699511718750045E2],[0.9594628906250023E1,63.6789551],[0.9614746093750057E1,0.63794824218749994E2],[9.86445313,0.63917822265625006E2],[0.10009960937500011E2,64.0831543],[0.10236230468749994E2,64.1796387],[10.565625,64.4183105],[0.10833984375000027E2,64.4944824],[0.10932324218750068E2,64.5777344],[0.11225390624999989E2,64.6794922],[0.11523828125000051E2,64.7443848],[11.5617188,64.8182617],[0.11296777343750051E2,64.7547852],[0.11349902343750044E2,64.9059082],[0.11489355468750032E2,64.9758301],[0.12159667968749998E2,65.1789551],[12.306543,65.0859863],[0.12508398437499977E2,65.0994141],[0.12738378906250034E2,65.2144043],[0.12915527343750057E2,65.3392578],[0.12511718750000055E2,65.1953125],[0.12133886718749977E2,65.2791504],[0.12122167968750004E2,65.3623535],[0.12272851562500051E2,65.5681641],[0.12627734375000044E2,65.8061523],[12.6888672,65.9021973],[0.12816796875000023E2,65.9528809],[0.13033105468750051E2,65.95625],[0.12783789062500063E2,66.1004395],[0.13387109375000051E2,66.1827637],[0.13674414062500034E2,66.1799805],[0.14034179687500057E2,66.2975586],[0.13973144531250057E2,66.3197266],[13.3520508,66.2367188],[0.13118847656250011E2,66.2306641],[0.13068164062500074E2,66.4308105],[0.13104687500000068E2,66.5394043],[0.13191601562500011E2,66.5371582],[0.13211425781250028E2,66.6408203],[13.6210938,66.7948242],[0.13959472656250027E2,66.7943359],[0.13704101562500057E2,66.8516602],[0.13651562500000011E2,66.9070801],[0.13880175781250045E2,66.9648926],[14.1087891,67.1192383],[14.340332,67.1589355],[0.14472656250000028E2,67.1426758],[0.14775585937500011E2,67.1944824],[15.4157227,67.2024414],[0.15434765625000011E2,67.2466797],[14.8244141,67.2683105],[0.14479296875000045E2,67.255957],[0.14448339843750063E2,67.2978516],[0.14754980468750004E2,67.4990234],[0.14961914062500055E2,67.5742676],[0.15120507812500051E2,67.5550293],[0.15465332031250028E2,67.4509277],[0.15594433593750038E2,67.3485352],[0.15575683593750055E2,67.4438477],[0.15691503906250004E2,67.5213867],[15.3540039,67.5439453],[0.15218652343750051E2,67.6553711],[0.15303906250000011E2,67.7652832],[0.15040820312500044E2,67.6825684],[0.14781347656250034E2,67.6749023],[0.14798925781250063E2,67.8093262],[15.0484375,67.9557617],[0.15274414062500028E2,67.9609375],[0.15400878906250057E2,67.9196289],[0.15621386718750017E2,67.948291],[0.15605761718750044E2,67.9878906],[0.15356933593750055E2,68.0036133],[0.15316015624999977E2,68.06875],[0.15656640625000023E2,68.1643555],[0.16007910156250006E2,68.2287109],[0.16120800781250068E2,68.0273438],[16.2607422,67.8865723],[0.16258593750000074E2,68.0012207],[16.3919922,68.0916016],[0.16259765625000057E2,68.1445313],[0.16174804687500057E2,68.28125],[0.16387890625000036E2,68.3895508],[16.6188477,68.4062988],[0.16864941406250068E2,68.3552734],[0.17552832031250063E2,68.4262695],[17.4261719,68.4819336],[0.17202343750000068E2,68.4592773],[0.16584863281250023E2,68.4664551],[16.5143555,68.5325684],[16.6518555,68.6257813],[16.884668,68.6854004],[0.17131152343750045E2,68.693457],[17.3908203,68.7993652],[17.5462891,69.001123],[0.17704589843750057E2,69.1000488],[0.18101464843749994E2,69.1562988],[0.18078710937499977E2,69.3252441],[0.18293164062500065E2,69.4750977],[18.4826172,69.3648438],[18.6455078,69.321875],[0.18915917968750023E2,69.3355957],[18.6244141,69.434375],[18.6740234,69.5203613],[18.9911133,69.5611328],[0.19038378906250017E2,69.6604004],[0.19197265625000057E2,69.7478516],[19.6870117,69.8047363],[0.19722460937500014E2,69.7816406],[19.6415039,69.4240234],[0.19736816406249996E2,69.5038086],[0.19864648437500023E2,69.7221191],[0.20068945312500006E2,69.8834473],[0.20324218750000057E2,69.9453125],[20.387207,69.867627],[0.20277148437500045E2,69.5358398],[20.04375,69.3556641],[0.20197656250000023E2,69.3709473],[20.4867188,69.5420898],[0.20739453124999983E2,69.5205078],[20.5625,69.6328125],[0.20545996093750002E2,69.8510742],[0.20622070312500057E2,69.913916],[0.20971093750000023E2,69.9160156],[0.21163085937500057E2,69.889502],[0.21253710937500042E2,70.0032227],[0.21432910156250045E2,70.0131836],[0.21931738281250063E2,69.8146973],[21.974707,69.8345703],[21.8925781,70.004248],[21.8027344,70.0660645],[21.6078125,70.0981934],[21.4003906,70.1744629],[0.21355761718750045E2,70.2333984],[21.5387695,70.257666],[21.7802734,70.2298828],[0.21995507812499994E2,70.2933594],[0.22219433593750065E2,70.3091797],[0.22321972656250065E2,70.264502],[0.22421191406250042E2,70.3375977],[0.22684570312500057E2,70.3747559],[0.22941210937500017E2,70.3049805],[0.23046484375000063E2,70.1018555],[23.2579102,69.9933105],[0.23400195312500017E2,70.0197754],[23.2860352,70.104834],[23.3793945,70.2474609],[0.23661230468750063E2,70.3997559],[23.897168,70.4787598],[24.0384766,70.4853516],[24.2855469,70.6624023],[0.24420019531250034E2,70.702002],[0.24263476562500017E2,70.8263184],[0.24658007812500014E2,71.0010254],[0.24764746093750006E2,71.0084473],[0.25264648437500057E2,70.8435059],[25.4359375,70.9118652],[0.25768164062500063E2,70.8531738],[0.25273535156250006E2,70.5523926],[25.1463867,70.3240234],[24.9942383,70.2182129],[25.0438477,70.1090332],[25.2118164,70.1364746],[0.25418847656250023E2,70.235498],[0.25470507812500074E2,70.3405762],[0.25988085937500014E2,70.6253906],[0.26230859375000076E2,70.7826172],[0.26506933593750006E2,70.912793],[26.6613281,70.9397461],[26.7339844,70.8535645],[0.26675488281250068E2,70.7409668],[0.26558203125000063E2,70.6691406],[0.26644628906250006E2,70.6362305],[26.5850586,70.4100098],[26.9893555,70.511377],[27.1836914,70.744043],[27.309375,70.8035645],[0.27555664062500057E2,70.8273926],[27.2352539,70.9472168],[0.27597070312500048E2,71.0913086],[0.28141699218750002E2,71.0430176],[0.28392285156250068E2,70.975293],[28.3827148,70.8694336],[28.271875,70.7979492],[0.27950976562500045E2,70.7175781],[27.8980469,70.6779297]]],[[[25.5863281,71.1420898],[25.9450195,71.1046387],[26.1337891,70.9958008],[25.7601563,70.9538086],[0.25582031250000057E2,70.960791],[0.25482031250000034E2,71.0195801],[25.3149414,71.0341309],[25.5863281,71.1420898]]]]}}],"_labels":{"NO":"Norway"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/NP.json b/src/api-umbrella/admin-ui/public/maps/NP.json new file mode 100644 index 000000000..1f7d3bcaf --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/NP.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"NP"},"geometry":{"type":"Polygon","coordinates":[[[88.1097656,27.8706055],[88.1469727,27.7492188],[88.0241211,0.27408886718749997E2],[87.984375,27.1339355],[88.1110352,26.9284668],[88.1615234,0.26724804687499997E2],[88.0548828,26.4300293],[87.9951172,0.26382373046874996E2],[87.8492188,0.26436914062499994E2],[87.6333984,0.26399121093749997E2],[87.4135742,0.26422949218749995E2],[87.2874023,0.26360302734374997E2],[87.0895508,26.4332031],[87.0164062,0.26555419921874996E2],[86.7625,0.26441943359374992E2],[86.7013672,26.4350586],[86.3661133,0.26574414062499997E2],[86.0073242,0.26649365234374997E2],[85.8556641,26.6001953],[85.7373047,26.6397461],[85.6999023,26.7816406],[85.568457,26.8398438],[85.2929688,26.7410156],[85.1917969,0.26766552734374997E2],[85.1515625,0.26846630859374994E2],[85.0201172,26.8785156],[84.6853516,27.0410156],[84.6101562,0.27298681640624995E2],[84.2297852,0.27427832031249995E2],[84.0910156,0.27491357421874994E2],[83.897168,0.27435107421874996E2],[83.8288086,0.27377832031249994E2],[83.5516602,0.27456347656249992E2],[83.447168,0.27465332031249996E2],[83.2897461,0.27370996093749994E2],[83.0640625,27.4445313],[82.7333984,0.27518994140624997E2],[82.6773438,27.6734375],[82.4513672,0.27671826171874997E2],[82.1119141,0.27864941406249997E2],[81.9876953,0.27913769531249997E2],[81.8526367,0.27867089843749994E2],[81.4860352,0.28062207031249994E2],[81.3108398,0.28176367187499995E2],[81.1689453,0.28335009765624996E2],[80.7507812,0.28539697265624994E2],[80.5870117,28.6496094],[80.5178711,0.28665185546874994E2],[80.4185547,0.28612011718749994E2],[80.0707031,0.28830175781250002E2],[80.0516602,28.8703125],[80.1304688,29.1003906],[80.2330078,0.29194628906249996E2],[80.2548828,29.4233398],[80.4018555,0.29730273437499996E2],[80.5490234,0.29899804687499994E2],[80.9076172,0.30171923828124992E2],[81.0102539,0.30164501953124994E2],[81.1103516,0.30036816406249997E2],[81.2550781,0.30093310546874992E2],[81.4171875,0.30337597656249994E2],[81.6418945,30.3875],[82.0433594,30.3267578],[82.1589844,0.30115185546874994E2],[82.2207031,0.30063867187499994E2],[82.4865234,0.29941503906249995E2],[82.8542969,0.29683398437499996E2],[83.0139648,29.6180664],[83.1554688,29.6126465],[83.3551758,0.29439160156249997E2],[83.5834961,29.1835938],[83.6710938,29.1875977],[83.9359375,0.29279492187499994E2],[84.1013672,0.29219970703124996E2],[84.2287109,0.28911767578124994E2],[84.4654297,28.7529297],[84.6505859,0.28659570312499994E2],[84.7142578,28.5955566],[84.8550781,0.28553613281249994E2],[85.0691406,0.28609667968749996E2],[85.159082,0.28592236328124997E2],[85.0885742,28.3722656],[85.1224609,0.28315966796874996E2],[85.4106445,28.2760254],[85.6783203,28.2774414],[85.8402344,28.1353516],[85.9541016,27.9282227],[86.0641602,0.27934716796874994E2],[86.0787109,28.0835937],[86.1370117,0.28114355468749995E2],[86.2179688,28.0220703],[86.4086914,0.27928662109374994E2],[86.5168945,27.9635254],[86.5544922,28.0852051],[86.6905273,28.0949219],[86.7503906,28.0220703],[87.0201172,0.27928662109374994E2],[87.1414062,0.27838330078124997E2],[87.2907227,0.27821923828124994E2],[87.6827148,0.27821386718749995E2],[87.8607422,27.886084],[88.1097656,27.8706055]]]}}],"_labels":{"NP":"Nepal"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/NR.json b/src/api-umbrella/admin-ui/public/maps/NR.json new file mode 100644 index 000000000..5ce425515 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/NR.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"NR"},"geometry":{"type":"Polygon","coordinates":[[[0.16695839843750002E3,-0.516601562],[0.16691640625000002E3,-0.546484375],[166.913574,-0.499121094],[166.938965,-0.489355469],[0.16695839843750002E3,-0.516601562]]]}}],"_labels":{"NR":"Nauru"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/NU.json b/src/api-umbrella/admin-ui/public/maps/NU.json new file mode 100644 index 000000000..32e4bca75 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/NU.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"NU"},"geometry":{"type":"Polygon","coordinates":[[[-169.803418,-19.0830078],[-169.903809,-19.1378906],[-169.94834,-0.19072851562500006E2],[-169.834033,-18.9660156],[-169.803418,-19.0830078]]]}}],"_labels":{"NU":"Niue"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/NZ.json b/src/api-umbrella/admin-ui/public/maps/NZ.json new file mode 100644 index 000000000..406749c1a --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/NZ.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"NZ"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.16917822265624997E3,-52.4972656],[0.16923349609375006E3,-0.52548242187499994E2],[0.16912753906250006E3,-0.52570312499999964E2],[0.16902177734375002E3,-52.4954102],[0.16917822265624997E3,-52.4972656]]],[[[166.221094,-50.7615234],[166.242871,-50.8457031],[0.16607324218749997E3,-50.8226562],[0.16591562500000012E3,-50.7630859],[0.16607382812500012E3,-50.6790039],[166.101367,-0.50538964843750016E2],[0.16626748046875005E3,-50.5585938],[0.16620957031250012E3,-0.50612011718749976E2],[166.221094,-50.7615234]]],[[[0.16814492187500005E3,-0.46862207031249966E2],[0.16804316406250004E3,-46.9326172],[168.155957,-46.9882812],[168.241406,-46.9790039],[168.240918,-0.47070019531250026E2],[0.16801503906249997E3,-47.1174805],[0.16790556640625005E3,-0.47179882812500026E2],[0.16778496093750002E3,-0.47176074218750045E2],[0.16767636718750006E3,-47.2429687],[0.16752197265624997E3,-0.47258691406249994E2],[0.16762900390625012E3,-47.1422852],[0.16765410156250007E3,-47.0442383],[0.16774091796875007E3,-47.0135742],[0.16780078125000003E3,-46.906543],[0.16776523437500006E3,-0.46797656250000045E2],[0.16778398437500007E3,-0.46699804687500006E2],[167.955762,-46.6944336],[0.16814492187500005E3,-0.46862207031249966E2]]],[[[0.16674628906250004E3,-45.6558594],[0.16672919921875004E3,-45.7296875],[0.16653203125000002E3,-45.6998047],[0.16656708984375004E3,-45.6444336],[0.16668564453125012E3,-45.6150391],[0.16674628906250004E3,-45.6558594]]],[[[0.16697949218749997E3,-45.1796875],[0.16702265625000004E3,-45.2998047],[0.16689267578125012E3,-45.2405273],[0.16697949218749997E3,-45.1796875]]],[[[-0.17617646484374995E3,-44.3216797],[-176.229297,-44.2367188],[-0.17612255859375003E3,-44.268457],[-0.17617646484374995E3,-44.3216797]]],[[[-0.17617763671874997E3,-43.740332],[-176.274854,-43.7648437],[-0.17638173828124997E3,-43.8667969],[-0.17640737304687497E3,-43.7609375],[-176.516553,-43.7847656],[-0.17644125976562503E3,-0.43816113281250054E2],[-176.500146,-43.8601563],[-0.17643911132812502E3,-0.43954687500000034E2],[-176.385449,-43.9514648],[-0.17633383789062498E3,-0.44048437500000034E2],[-0.17651552734374997E3,-44.1166016],[-0.17659799804687498E3,-44.1072266],[-0.17663154296874998E3,-44.00625],[-0.17652377929687492E3,-43.9009766],[-0.17663457031249996E3,-0.43820214843749994E2],[-176.847656,-43.8239258],[-0.17676108398437498E3,-0.43757910156250006E2],[-0.17666723632812497E3,-43.7651367],[-0.17656611328124995E3,-0.43717578125000045E2],[-0.17617763671874997E3,-43.740332]]],[[[0.17391464843750018E3,-40.8636719],[0.17378085937500012E3,-0.40921777343749966E2],[0.17381240234374994E3,-40.7936523],[173.964453,-40.7129883],[0.17391464843750018E3,-40.8636719]]],[[[0.17311533203125006E3,-41.2792969],[0.17323085937499994E3,-0.41284179687499986E2],[173.5625,-0.41102050781250014E2],[0.17373789062500006E3,-40.9889648],[0.17400244140624997E3,-40.9177734],[0.17388984375000007E3,-0.41007226562499966E2],[0.17391513671875012E3,-41.0701172],[173.797852,-0.41271972656249986E2],[0.17389707031250018E3,-0.41239355468750006E2],[0.17395761718750006E3,-41.0999023],[0.17402402343750006E3,-0.41072265624999986E2],[0.17399941406250002E3,-40.9932617],[174.211816,-40.9854492],[0.17430253906249996E3,-0.41019531249999986E2],[0.17419951171875013E3,-0.41160156250000036E2],[0.17403857421875003E3,-41.2418945],[0.17413808593750005E3,-41.2482422],[0.17437011718750009E3,-41.1037109],[0.17436757812500008E3,-41.1883789],[0.17423710937499993E3,-0.41312207031250004E2],[0.17410205078124997E3,-41.365918],[0.17406933593750009E3,-41.4294922],[0.17416113281249994E3,-0.41561816406249974E2],[0.17408369140625015E3,-41.6708008],[0.17416992187499997E3,-41.6572266],[0.17428310546875008E3,-41.740625],[0.17421542968750018E3,-41.8501953],[173.973926,-42.0805664],[0.17388798828125007E3,-42.1301758],[0.17383984375000003E3,-42.2708984],[0.17354511718750004E3,-42.5179688],[173.347559,-42.8408203],[0.17322119140624997E3,-0.42976562499999986E2],[0.17307236328125012E3,-43.0602539],[172.888867,-43.1242187],[0.17271855468750002E3,-0.43258789062500014E2],[0.17262402343749997E3,-43.2724609],[0.17273476562500005E3,-43.3547852],[0.17269970703125003E3,-43.399707],[0.17252666015625002E3,-0.43464746093749966E2],[0.17274042968750004E3,-43.4678711],[0.17280703125000005E3,-0.43620996093749994E2],[0.17307324218750003E3,-0.43676171874999966E2],[173.116895,-43.7978516],[173.065625,-43.8746094],[172.920605,-43.8914063],[0.17274931640625002E3,-43.8130859],[172.475977,-43.8333984],[0.17258378906250002E3,-0.43773535156249984E2],[172.480371,-0.43726660156250034E2],[0.17238525390624994E3,-43.8295898],[0.17229658203125004E3,-0.43867871093750026E2],[172.035547,-43.7017578],[0.17217978515625006E3,-0.43895996093749986E2],[171.890625,-44.0069336],[0.17165898437500002E3,-44.1171875],[0.17144257812500004E3,-44.1358398],[0.17136455078125007E3,-44.2549805],[0.17124072265624997E3,-44.2641602],[0.17131298828124997E3,-44.3018555],[0.17123105468750006E3,-44.5211914],[0.17119785156250012E3,-0.44767871093749974E2],[0.17114628906250002E3,-44.9123047],[0.17099902343750003E3,-44.9114258],[0.17113417968750002E3,-44.9777344],[0.17111328125000003E3,-45.0392578],[170.939648,-45.2164063],[0.17088994140625002E3,-45.3739258],[170.700586,-45.6842773],[0.17078847656250005E3,-0.45792480468749986E2],[0.17077626953125002E3,-45.8708984],[170.419141,-45.9410156],[0.17033544921875003E3,-45.9917969],[0.17018613281250006E3,-46.1608398],[0.16991826171875002E3,-46.334375],[0.16968662109375006E3,-46.5516602],[0.16934228515625003E3,-46.6205078],[0.16909863281250003E3,-0.46630664062500045E2],[0.16876679687500007E3,-46.5663086],[0.16857226562499997E3,-46.6110352],[0.16838212890625007E3,-0.46605371093749945E2],[0.16832568359375003E3,-0.46545703125000045E2],[0.16831972656250002E3,-0.46447167968749966E2],[168.18916,-0.46362207031249966E2],[167.841992,-0.46366210937499986E2],[0.16768222656250012E3,-46.1929688],[167.490625,-0.46154687499999966E2],[0.16736894531250007E3,-46.2415039],[0.16710029296875004E3,-46.2494141],[0.16683076171875004E3,-46.2254883],[0.16673154296875003E3,-46.1978516],[166.712109,-46.1336914],[0.16691669921875004E3,-0.45957226562499976E2],[0.16673027343750005E3,-46.0527344],[0.16664990234374997E3,-46.0416992],[0.16672695312499997E3,-0.45963281249999966E2],[0.16671796875000004E3,-45.8893555],[0.16661269531249997E3,-0.45955371093750045E2],[0.16649316406249997E3,-45.9638672],[166.512891,-45.8117187],[0.16683603515625012E3,-45.7745117],[167.00332,-45.7121094],[0.16680996093750005E3,-45.6990234],[0.16682558593750005E3,-45.602832],[0.16699082031250012E3,-0.45531738281249986E2],[0.16673398437500012E3,-45.5435547],[0.16677832031250003E3,-0.45409667968749986E2],[0.16691992187499994E3,-45.4079102],[166.908594,-45.3074219],[0.16715566406250002E3,-0.45410937499999974E2],[0.16711210937500005E3,-45.3539063],[0.16723007812500012E3,-45.290332],[0.16703281250000006E3,-45.2224609],[0.16702587890624997E3,-45.1236328],[0.16712792968749997E3,-45.0507812],[0.16725947265625004E3,-45.0822266],[167.171875,-44.9970703],[0.16741074218750003E3,-0.44827929687500024E2],[167.466211,-0.44958300781250045E2],[0.16748496093750006E3,-44.7713867],[0.16757763671874997E3,-44.7408203],[167.787012,-44.5950195],[0.16790898437500002E3,-44.6647461],[167.856543,-0.44500683593749976E2],[168.366602,-44.0820312],[0.16865097656250012E3,-43.972168],[0.16880644531250002E3,-43.9919922],[0.16906650390625006E3,-0.43863476562500004E2],[0.16917890625000004E3,-43.9130859],[0.16916953125000006E3,-43.7770508],[0.16951523437500006E3,-0.43623632812500006E2],[169.833887,-43.5370117],[0.16985898437500012E3,-43.4259766],[0.17001757812500003E3,-43.3494141],[0.17010371093750004E3,-43.2650391],[170.3,-0.43144628906250034E2],[0.17030283203125012E3,-43.1076172],[170.458691,-0.43037695312500006E2],[0.17061181640625003E3,-0.43091796875000014E2],[170.523633,-43.0089844],[170.66543,-0.42961230468749974E2],[0.17073525390625005E3,-0.43029785156249986E2],[170.741602,-42.9273437],[0.17096992187500004E3,-42.7183594],[0.17104755859375004E3,-42.8018555],[171.027734,-0.42696093750000045E2],[171.189551,-42.5004883],[0.17131337890625005E3,-0.42460156250000026E2],[0.17125224609375002E3,-42.4019531],[171.360254,-0.42079980468750016E2],[0.17148623046874997E3,-41.7947266],[0.17167216796875002E3,-41.7447266],[0.17183066406250003E3,-0.41655175781249994E2],[0.17201074218749997E3,-41.4447266],[0.17209335937500012E3,-0.41201562499999945E2],[0.17213945312500002E3,-0.40947265625000014E2],[0.17227275390625007E3,-0.40758691406249966E2],[172.640625,-40.5182617],[0.17283017578125006E3,-40.4900391],[0.17294365234375007E3,-40.51875],[0.17273261718750004E3,-40.54375],[0.17270439453125002E3,-40.6677734],[172.766797,-40.7734375],[0.17298867187499997E3,-40.8482422],[173.042285,-0.40953613281249964E2],[0.17306865234375007E3,-0.41185839843750024E2],[0.17311533203125006E3,-41.2792969]]],[[[0.17554316406250015E3,-0.36279296874999986E2],[0.17547460937500003E3,-36.3144531],[0.17534619140624997E3,-0.36217773437499986E2],[0.17533662109375015E3,-36.1347656],[175.409375,-36.0708984],[175.512598,-36.1769531],[0.17554316406250015E3,-0.36279296874999986E2]]],[[[173.269434,-34.9347656],[0.17328457031250005E3,-0.34980566406249984E2],[0.17344785156250012E3,-0.34844335937500034E2],[0.17343867187500004E3,-34.9285156],[173.69375,-35.0056641],[0.17378623046875012E3,-35.0685547],[0.17384394531250015E3,-35.0262695],[0.17410400390625003E3,-35.1428711],[174.143164,-35.3],[0.17432031250000003E3,-0.35246679687500034E2],[174.543457,-35.5820312],[0.17450859375000002E3,-35.6673828],[0.17458066406250018E3,-35.7855469],[0.17439101562500005E3,-35.7737305],[174.604883,-36.0805664],[174.802148,-36.3094727],[0.17475175781250002E3,-0.36490820312500006E2],[174.819238,-0.36612109375000024E2],[174.777148,-36.6498047],[0.17472246093750007E3,-36.8412109],[174.891406,-36.909375],[0.17495205078124994E3,-0.36852929687499966E2],[0.17504707031250015E3,-36.912207],[0.17529951171875004E3,-36.9932617],[175.385352,-0.37206933593749966E2],[0.17554248046874997E3,-37.2013672],[0.17555195312500015E3,-37.0464844],[0.17549316406250009E3,-36.8657227],[0.17548740234375012E3,-36.6895508],[0.17538554687500002E3,-36.5563477],[0.17546083984375005E3,-0.36475683593750034E2],[0.17568144531250007E3,-0.36746972656249966E2],[0.17577216796875004E3,-36.7351563],[0.17578066406249997E3,-36.8045898],[175.876172,-36.9577148],[0.17592109375000004E3,-37.2045898],[0.17599013671875005E3,-0.37437011718750036E2],[0.17611455078125002E3,-37.5382812],[0.17603789062500002E3,-37.6006836],[0.17610839843749997E3,-37.6451172],[0.17629169921875004E3,-37.6800781],[0.17677001953124997E3,-37.8896484],[0.17716181640625004E3,-37.9857422],[0.17733593749999997E3,-37.9908203],[0.17755830078125015E3,-37.8974609],[0.17772734375000013E3,-37.7055664],[178.00918,-37.5548828],[178.272168,-37.5668945],[0.17853623046875003E3,-37.6920898],[0.17839394531250002E3,-37.9602539],[0.17831542968750003E3,-0.38444042968750026E2],[0.17826767578125006E3,-38.5511719],[0.17808486328124994E3,-38.6939453],[177.976172,-38.7222656],[177.910352,-0.39021777343750045E2],[177.965625,-39.1424805],[0.17790878906250012E3,-39.2395508],[0.17778613281250003E3,-39.1109375],[0.17752294921875003E3,-39.0738281],[0.17740751953124996E3,-39.0811523],[0.17712871093750002E3,-39.1861328],[0.17695410156249997E3,-0.39367578124999966E2],[0.17693574218750013E3,-0.39490722656250014E2],[0.17696660156250002E3,-39.6051758],[0.17710986328125009E3,-0.39673144531250045E2],[0.17696796875000015E3,-39.9107422],[176.842188,-40.1578125],[0.17668876953125013E3,-40.293457],[0.17661152343749998E3,-0.40441992187500006E2],[0.17638515625000005E3,-40.6676758],[0.17625175781250005E3,-0.40876855468749966E2],[0.17598291015625003E3,-41.2132813],[0.17568730468750002E3,-0.41411718750000034E2],[0.17530976562499995E3,-0.41610644531249974E2],[0.17522216796874991E3,-41.5744141],[0.17516562500000012E3,-41.4173828],[0.17505390625000007E3,-0.41391210937500034E2],[0.17490605468750002E3,-41.4329102],[174.875,-41.2782227],[0.17475703125000004E3,-41.325293],[0.17463535156250012E3,-41.2894531],[0.17484775390624998E3,-41.0587891],[0.17501679687499998E3,-40.8476562],[175.1625,-40.621582],[0.17525410156250004E3,-40.2893555],[175.155957,-40.1149414],[0.17500927734375009E3,-39.9521484],[0.17481376953125002E3,-0.39860156250000045E2],[0.17456748046875012E3,-39.8129883],[0.17435205078124991E3,-39.6433594],[0.17393437500000013E3,-39.509082],[0.17381210937500003E3,-39.4257812],[0.17376367187499994E3,-39.31875],[173.781641,-39.2112305],[0.17384433593750006E3,-39.1393555],[0.17407138671875012E3,-39.03125],[0.17439843749999997E3,-38.9625977],[0.17456621093750005E3,-38.8416016],[0.17459736328124998E3,-38.7850586],[0.17465302734375015E3,-38.4283203],[174.715332,-0.38225585937500014E2],[0.17484003906250004E3,-38.0226562],[0.17480166015625005E3,-0.37895507812500014E2],[174.928027,-37.8044922],[0.17484599609375002E3,-37.6851562],[0.17472919921875004E3,-37.4487305],[0.17476767578125003E3,-0.37339062499999976E2],[0.17470742187500005E3,-37.325293],[0.17458583984374994E3,-37.0977539],[0.17465966796875009E3,-0.37088769531249966E2],[174.734277,-37.2152344],[174.803613,-37.1100586],[0.17492890625000004E3,-0.37084765625000045E2],[174.782031,-36.94375],[0.17460146484374994E3,-36.9857422],[0.17447558593750009E3,-36.9418945],[0.17438193359375018E3,-36.7259766],[174.188867,-0.36492285156250034E2],[0.17424570312500012E3,-36.4849609],[174.401563,-36.6019531],[174.446875,-36.4508789],[0.17435410156250018E3,-36.3759766],[0.17439277343750004E3,-36.2400391],[0.17430351562500002E3,-0.36170507812500034E2],[0.17425371093749996E3,-36.2491211],[0.17403642578125013E3,-36.1224609],[0.17391445312499994E3,-0.35908691406249986E2],[0.17391728515625002E3,-36.0181641],[174.003125,-36.1462891],[0.17416640624999994E3,-0.36327636718749986E2],[0.17409746093750013E3,-36.3910156],[0.17394511718750002E3,-36.1758789],[173.412207,-35.5425781],[173.58584,-35.3885742],[0.17362617187500004E3,-35.3191406],[0.17354169921875004E3,-35.3298828],[173.376367,-0.35500097656249956E2],[0.17311669921874994E3,-0.35205273437500026E2],[0.17318876953125002E3,-0.35123730468750026E2],[173.190625,-35.0162109],[0.17302958984375007E3,-34.7999023],[0.17270595703125005E3,-34.4551758],[0.17304394531249997E3,-0.34429101562499994E2],[172.96377,-34.5351563],[173.269434,-34.9347656]]]]}}],"_labels":{"NZ":"New Zealand"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/OM.json b/src/api-umbrella/admin-ui/public/maps/OM.json new file mode 100644 index 000000000..ed7bc50de --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/OM.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"OM"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.58722070312499994E2,20.21875],[0.58640917968750074E2,0.20210693359375053E2],[0.58641210937500055E2,20.3373535],[58.7879883,20.496582],[58.884375,0.20680566406250023E2],[58.9507813,0.20516162109375017E2],[58.8351562,0.20423925781250063E2],[58.7722656,20.2668457],[0.58722070312499994E2,20.21875]]],[[[56.3879883,24.9791992],[56.4898438,0.24716357421875045E2],[56.640625,24.4703125],[56.7741211,0.24334570312499977E2],[56.9125,24.1501953],[57.1230469,0.23980712890624996E2],[0.57219824218750006E2,0.23922753906250023E2],[57.6113281,23.8036621],[0.57825097656250044E2,0.23759130859374977E2],[58.1204102,23.7165527],[58.3245117,0.23623828125000045E2],[58.5780273,23.643457],[58.7730469,0.23517187499999977E2],[58.8303711,23.3974609],[0.58911523437500044E2,23.3341797],[0.59029882812500006E2,23.1305664],[0.59194726562499994E2,22.971875],[59.3109375,0.22793359374999966E2],[59.4293945,0.22660839843749955E2],[59.5351562,22.5785156],[59.8232422,22.5089844],[59.8375,22.4205566],[59.8,22.2199219],[59.6808594,22.0538086],[59.6525391,21.9513672],[59.5175781,21.7823242],[59.3714844,0.21498828125000017E2],[0.59304492187500074E2,0.21435351562500042E2],[59.06875,21.2890625],[58.8957031,21.112793],[58.6904297,20.8071289],[0.58534179687499964E2,20.5039062],[58.4742188,0.20406884765624966E2],[0.58348730468750055E2,0.20386914062499983E2],[58.2089844,0.20423974609374994E2],[0.58245019531249994E2,0.20599218749999974E2],[58.1029297,0.20570361328125042E2],[57.947168,0.20343603515625034E2],[0.57861816406249964E2,20.2441406],[57.8021484,19.9545898],[57.7412109,19.8044922],[57.7151367,19.6069336],[0.57760839843750006E2,0.19432226562500006E2],[57.7639648,0.19253320312499966E2],[0.57811621093750055E2,19.0170898],[57.6757813,0.18957861328124977E2],[57.4279297,18.9437988],[57.1765625,18.9025879],[56.9572266,0.18827832031249955E2],[56.8259766,18.7535156],[56.6550781,18.5873535],[56.5507812,0.18165966796874955E2],[56.3834961,17.9879883],[56.2703125,0.17950781249999977E2],[55.9976563,0.17935205078125023E2],[0.55613867187500055E2,0.17886083984375034E2],[0.55479101562500006E2,17.8432617],[55.2553711,17.5856445],[0.55238183593749994E2,0.17504736328124977E2],[55.2956055,17.3815918],[0.55173730468749994E2,17.1576172],[55.0641602,0.17038916015625034E2],[54.771875,16.9646484],[0.54566503906250006E2,17.03125],[54.3769531,17.0336426],[54.0681641,0.17005517578124966E2],[53.9543945,0.16917822265625034E2],[53.7753906,16.8557129],[53.6098633,0.16759960937500036E2],[0.53297753906249994E2,16.7233398],[53.0856445,0.16648388671874955E2],[52.8005859,0.17267919921875063E2],[52.7291992,17.3003906],[0.51977636718750006E2,0.18996142578125074E2],[54.9773438,0.19995947265625006E2],[55.6410156,0.22001855468749994E2],[55.1858398,22.7041016],[55.1999023,0.23034765625000034E2],[55.3532227,23.3874512],[55.5084961,23.7246094],[55.5316406,23.819043],[55.468457,23.9411133],[55.5478516,23.9913574],[55.696582,0.24024121093749983E2],[55.7791016,0.24017089843750057E2],[55.9851563,0.24063378906249966E2],[55.9286133,0.24215136718750074E2],[0.55760839843750055E2,0.24242675781249996E2],[55.8056641,0.24349804687499983E2],[55.7681641,24.490625],[55.8039062,24.6362305],[0.55795703125000074E2,0.24868115234374955E2],[55.9158203,0.24971777343750034E2],[56.0005859,0.24953222656249974E2],[56.0166992,0.24907714843750025E2],[55.9703125,0.24858935546875045E2],[56.0638672,0.24738769531249996E2],[56.106543,0.24748681640624966E2],[56.2678711,24.8666992],[0.56352929687499994E2,0.24973291015624994E2],[56.3879883,24.9791992]]],[[[56.2818359,25.2355469],[56.2105469,0.25213281250000023E2],[0.56234277343750044E2,0.25303808593750006E2],[56.2818359,25.2355469]]],[[[0.56429785156250006E2,0.26327197265625042E2],[56.4164063,0.26108740234375034E2],[0.56373632812500006E2,0.25804589843749962E2],[56.2495117,0.25625390624999966E2],[0.56144628906250006E2,0.25690527343750006E2],[56.1725586,0.25945166015625006E2],[56.1674805,0.26047460937499977E2],[56.0804688,0.26062646484375048E2],[56.1644531,26.2070312],[0.56305566406249994E2,0.26235205078125034E2],[0.56378710937500074E2,0.26356347656250023E2],[0.56429785156250006E2,0.26327197265625042E2]]]]}}],"_labels":{"OM":"Oman"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/PA.json b/src/api-umbrella/admin-ui/public/maps/PA.json new file mode 100644 index 000000000..9d9409a4e --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/PA.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"PA"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-81.6032715,7.3328125],[-81.7701172,7.37036133],[-81.8520508,7.45332031],[-81.8121582,7.59238281],[-81.7287598,7.62119141],[-81.6714355,7.5234375],[-81.6947266,7.425],[-81.6032715,7.3328125]]],[[[-79.0654297,8.25419922],[-79.0654297,8.25419922],[-79.0654297,8.25419922],[-79.0654297,8.25419922]]],[[[-78.8983398,8.27426758],[-78.9649414,8.32626953],[-78.9605957,8.43583984],[-78.8561523,8.44824219],[-78.8391602,8.34790039],[-78.8983398,8.27426758]]],[[[-82.2334961,9.38071289],[-82.2334961,9.38071289],[-82.2334961,9.38071289],[-82.2334961,9.38071289]]],[[[-79.3554687,9.56923828],[-79.0166992,0.9510449218749983E1],[-78.9316406,9.4284668],[-78.6969238,0.9434765625000011E1],[-78.5043457,0.9406298828124989E1],[-78.0827637,0.9236279296874997E1],[-77.8308105,9.06811523],[-77.6972168,8.88945313],[-77.3742187,8.65830078],[-77.4785156,8.4984375],[-77.4072754,8.42724609],[-77.2826172,8.18706055],[-77.1959961,7.97246094],[-77.3456055,7.83652344],[-77.3507812,7.70585938],[-77.5865723,7.54306641],[-77.7320313,7.7109375],[-77.76875,7.66806641],[-77.7438965,7.53696289],[-77.8283203,7.44282227],[-77.9011719,7.2293457],[-78.1701172,7.54379883],[-78.3782227,7.89990234],[-78.421582,8.06098633],[-78.3154297,8.06694336],[-78.2548828,8.13862305],[-78.2812012,8.24755859],[-78.1138672,8.37958984],[-78.0477539,8.28476563],[-77.8336426,8.15117187],[-77.7605469,8.13325195],[-78.0125,8.32539063],[-78.0994629,8.49697266],[-78.2230469,8.39663086],[-78.2561035,8.45371094],[-78.3501465,8.46000977],[-78.4098633,8.35532227],[-78.4694336,8.44667969],[-78.5140625,8.62817383],[-78.6208984,8.7137207],[-78.8482422,8.8421875],[-78.9551758,8.93251953],[-79.086377,8.99716797],[-79.2466797,0.9020068359375003E1],[-79.4415039,9.00600586],[-79.5723633,8.90327148],[-79.6874512,8.85097656],[-79.815918,8.63920898],[-79.7504395,8.59550781],[-80.1257813,8.3496582],[-80.3687012,8.28876953],[-80.4589844,8.21386719],[-80.4581055,8.07705078],[-80.3655762,7.99799805],[-80.2609375,7.85166016],[-80.0751953,7.66704102],[-80.0112305,7.50004883],[-80.1105957,7.43344727],[-80.2873047,7.42563477],[-80.4388672,7.27495117],[-80.6666992,7.22568359],[-80.8455566,7.22006836],[-80.9012207,7.27714844],[-80.9146484,7.4375],[-81.0351074,7.71113281],[-81.0638672,7.89975586],[-81.1578125,7.85439453],[-81.219043,7.62094727],[-81.5041504,7.72119141],[-81.6756836,8.01591797],[-81.7276367,8.13754883],[-81.973291,8.21508789],[-82.1598633,8.19482422],[-82.2354492,8.31103516],[-82.3648437,8.27485352],[-82.679541,8.32197266],[-82.8661133,8.24633789],[-82.8543457,8.09951172],[-82.9484375,8.25683594],[-83.0233887,8.31601563],[-82.8616211,8.45351563],[-82.8557129,8.63530273],[-82.917041,8.74033203],[-82.8819824,8.80532227],[-82.7399902,8.89858398],[-82.7411621,8.95170898],[-82.8813477,0.9055859375000011E1],[-82.940332,0.9060107421874989E1],[-82.9398437,9.44916992],[-82.8010254,9.59179688],[-82.6440918,9.50585938],[-82.5635742,9.57666016],[-82.3708008,0.9428564453124991E1],[-82.3397461,0.9209179687499983E1],[-82.2048828,9.21542969],[-82.2441895,9.03149414],[-82.0778809,8.93486328],[-81.7802246,8.95722656],[-81.8944824,0.9140429687500003E1],[-81.712207,0.9018945312500037E1],[-81.5456055,8.82700195],[-81.3547852,8.78056641],[-81.0630859,8.81264648],[-80.8386719,8.88720703],[-80.6764648,9.021875],[-80.546875,9.08193359],[-80.1270996,9.20991211],[-79.9779785,9.34370117],[-79.8550781,0.9378076171875009E1],[-79.5772949,9.59785156],[-79.3554687,9.56923828]]]]}}],"_labels":{"PA":"Panama"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/PE.json b/src/api-umbrella/admin-ui/public/maps/PE.json new file mode 100644 index 000000000..4f61db348 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/PE.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"PE"},"geometry":{"type":"Polygon","coordinates":[[[-69.965918,-4.2359375],[-69.9720215,-4.30117187],[-70.0533203,-4.33310547],[-70.1288086,-4.28662109],[-70.2391602,-4.30117187],[-70.4046387,-4.15009766],[-70.7995117,-4.17333984],[-70.9736816,-4.35048828],[-71.2350098,-4.38818359],[-71.5213379,-4.46972656],[-71.8447266,-4.50439453],[-71.9824219,-4.57460937],[-72.2567871,-4.74892578],[-72.352832,-4.78603516],[-72.4689941,-4.90126953],[-72.6987305,-5.0671875],[-72.8870605,-5.12275391],[-72.9798828,-5.63486328],[-73.1628906,-5.93339844],[-73.2355469,-6.0984375],[-73.1353516,-6.34433594],[-73.1373535,-6.46582031],[-73.240332,-6.5640625],[-73.3254883,-6.57470703],[-73.4999023,-6.67949219],[-73.7581055,-6.90576172],[-73.8046387,-7.07988281],[-73.7204102,-7.30927734],[-73.9643066,-7.37890625],[-73.9584961,-7.50664063],[-74.0020508,-7.55605469],[-73.8220703,-7.73896484],[-73.7204102,-7.78251953],[-73.7755859,-7.93642578],[-73.682666,-8.02060547],[-73.6101074,-8.14541016],[-73.5491211,-8.34580078],[-73.3604004,-8.47929687],[-73.3024414,-8.65400391],[-73.203125,-8.71933594],[-72.9740234,-8.99316406],[-72.9703613,-9.12011719],[-73.2094238,-0.9411425781250003E1],[-72.8142578,-9.41035156],[-72.3790527,-9.51015625],[-72.3180664,-9.55664062],[-72.2599609,-0.9774316406250009E1],[-72.1728516,-0.9844042968750003E1],[-72.1815918,-0.10003710937500003E2],[-71.6080078,-0.10006054687500011E2],[-71.2379395,-0.9966015625000011E1],[-71.1152832,-0.9852441406250009E1],[-70.970752,-9.76572266],[-70.8845215,-9.66904297],[-70.6369141,-0.9478222656250011E1],[-70.5411133,-9.4375],[-70.5922363,-9.54345703],[-70.5672363,-9.70458984],[-70.6369141,-9.82373047],[-70.642334,-11.0102539],[-70.533252,-10.946875],[-70.3922852,-11.0585938],[-70.2200684,-11.0476562],[-69.9603516,-0.10929882812500011E2],[-69.5786133,-0.10951757812500006E2],[-68.6852539,-12.5019531],[-68.7628906,-0.12607714843750003E2],[-68.759082,-0.12687207031250011E2],[-68.8676758,-0.12755175781250003E2],[-68.9786133,-12.8800781],[-68.9722656,-13.3823242],[-68.9834473,-0.13496386718750003E2],[-69.0741211,-0.13682812500000011E2],[-69.0230469,-13.7802734],[-68.9742676,-0.13975976562500009E2],[-68.8916992,-0.14094335937500006E2],[-68.8803223,-14.1988281],[-69.0044922,-0.14265039062500009E2],[-69.0131348,-0.14377246093750001E2],[-69.2349121,-0.14597070312500009E2],[-69.2760254,-0.14745898437500003E2],[-69.3594727,-14.7953125],[-69.374707,-0.14962988281250006E2],[-69.1724609,-0.15236621093750001E2],[-69.3019043,-0.15399414062499998E2],[-69.4185059,-0.15603417968750007E2],[-69.3918945,-0.15736914062500007E2],[-69.2175781,-16.1491211],[-69.1341797,-0.16221972656250003E2],[-68.9134766,-16.2619141],[-68.8578125,-0.16354785156250003E2],[-69.00625,-0.16433691406250006E2],[-69.0383789,-16.5426758],[-69.0207031,-16.6421875],[-69.1998047,-16.768457],[-69.4383301,-17.0883789],[-69.6248535,-17.2001953],[-69.6258789,-17.2944336],[-69.5219238,-0.17388964843750003E2],[-69.5109375,-0.17506054687500008E2],[-69.6847656,-17.6498047],[-69.8520996,-17.7038086],[-69.8024414,-17.9],[-69.8396973,-18.093457],[-69.9263672,-18.2060547],[-70.1837891,-18.3251953],[-70.4182617,-18.3456055],[-70.4916016,-18.2777344],[-70.8174805,-0.18052539062500003E2],[-70.9416992,-17.9320313],[-71.0565918,-17.8756836],[-71.3369629,-17.6825195],[-71.3994141,-0.17421972656250006E2],[-71.5322266,-17.2943359],[-71.8683594,-0.17151074218750008E2],[-71.9668945,-17.0640625],[-72.1112793,-0.17002539062500002E2],[-72.3625,-16.775],[-72.4676758,-0.16708105468750006E2],[-72.7939453,-0.16614550781250003E2],[-72.9577148,-0.16520898437500005E2],[-73.2637695,-16.3885742],[-73.4000488,-16.3042969],[-73.7276855,-16.2016602],[-73.8249512,-0.16152832031249996E2],[-74.1470703,-15.9125],[-74.3729004,-15.8339844],[-74.5548828,-0.15699023437500005E2],[-75.104248,-0.15411914062500001E2],[-75.1905273,-0.15320117187500001E2],[-75.2745605,-15.178125],[-75.396582,-0.15093554687500001E2],[-75.5336426,-14.8992187],[-75.7376953,-0.14784960937500003E2],[-75.9338867,-14.6335937],[-76.0062988,-0.14495800781250011E2],[-76.1364746,-14.3203125],[-76.1751465,-0.14226660156250006E2],[-76.2890137,-0.14133105468750003E2],[-76.2970215,-0.13948437500000011E2],[-76.3764648,-0.13863085937500003E2],[-76.2592285,-0.13802832031250006E2],[-76.1839355,-13.5152344],[-76.2236328,-0.13371191406250006E2],[-76.4273438,-0.13109960937500006E2],[-76.5021484,-12.984375],[-76.5552246,-12.8234375],[-76.6371094,-12.7280273],[-76.7580078,-0.12527148437500003E2],[-76.8321289,-0.12348730468750004E2],[-76.9940918,-12.2192383],[-77.0626953,-0.12106835937500009E2],[-77.1527344,-0.12060351562500003E2],[-77.1576172,-11.9234375],[-77.2203125,-0.11663378906250003E2],[-77.3099121,-0.11532421875000011E2],[-77.6332031,-0.11287792968750011E2],[-77.6643066,-0.11022070312500006E2],[-77.736084,-10.8367187],[-78.095459,-0.10260644531250009E2],[-78.1855957,-0.10089062500000011E2],[-78.2755859,-0.9810351562500003E1],[-78.3564941,-9.65205078],[-78.4456543,-9.37060547],[-78.580127,-9.15664062],[-78.7545898,-8.74042969],[-78.7622559,-8.61699219],[-78.9253906,-8.40458984],[-79.0122559,-8.21015625],[-79.1644043,-8.04716797],[-79.3128418,-7.92324219],[-79.3772461,-7.83554688],[-79.5888672,-7.41894531],[-79.6177246,-7.29560547],[-79.7619629,-7.06650391],[-79.9949707,-6.76894531],[-80.1102539,-6.64960938],[-80.8116211,-6.28222656],[-81.0584473,-6.12939453],[-81.142041,-6.05673828],[-81.1805176,-5.94238281],[-81.0918457,-5.81240234],[-80.9916504,-5.8609375],[-80.8827148,-5.75898438],[-80.8819336,-5.63505859],[-80.9431152,-5.47539063],[-81.1676758,-5.16708984],[-81.1084961,-5.02783203],[-81.3366211,-4.66953125],[-81.2832031,-4.32226562],[-81.2320313,-4.23427734],[-80.8919434,-3.88164063],[-80.798584,-3.73105469],[-80.6527344,-3.63818359],[-80.5036621,-3.49609375],[-80.3246582,-3.38789063],[-80.2735352,-3.42460938],[-80.2206055,-3.61318359],[-80.2288574,-3.73886719],[-80.179248,-3.87773438],[-80.3032715,-4.00507813],[-80.437207,-3.97861328],[-80.5100098,-4.06953125],[-80.4537598,-4.20517578],[-80.3528809,-4.20849609],[-80.4884766,-4.39365234],[-80.3834961,-4.46367188],[-80.2933594,-4.41679688],[-80.1974609,-4.31103516],[-80.1395508,-4.29609375],[-79.7972656,-4.47636719],[-79.6385254,-4.45488281],[-79.5161621,-4.53916016],[-79.5019043,-4.67060547],[-79.4557617,-4.76621094],[-79.330957,-4.92783203],[-79.0762695,-4.990625],[-78.9753906,-4.87324219],[-78.9191895,-4.85839844],[-78.9257812,-4.77070313],[-78.8615234,-4.66503906],[-78.6860352,-4.56240234],[-78.6529297,-4.45820313],[-78.6793945,-4.32587891],[-78.5504395,-3.98691406],[-78.4197754,-3.77685547],[-78.3980469,-3.59482422],[-78.3453613,-3.39736328],[-78.2841797,-3.39902344],[-78.2263184,-3.48916016],[-78.1584961,-3.46513672],[-78.1833008,-3.35019531],[-77.9384766,-3.04697266],[-77.8605957,-2.98164063],[-77.3600586,-2.80966797],[-76.6791016,-2.56259766],[-76.0897949,-2.13310547],[-75.5705566,-1.53125],[-75.4080566,-0.924316406],[-75.3481934,-0.966796875],[-75.2496094,-0.951855469],[-75.2835937,-0.707128906],[-75.2632324,-0.555371094],[-75.424707,-0.408886719],[-75.4910645,-0.248339844],[-75.6320312,-0.157617188],[-75.6262695,-0.122851563],[-75.4759766,-0.157128906],[-75.3404785,-0.1421875],[-75.2246094,-0.0417480469],[-75.1383789,-0.0504882813],[-74.9453125,-0.188183594],[-74.8017578,-0.200097656],[-74.7553711,-0.298632813],[-74.6163574,-0.370019531],[-74.4178711,-0.580664063],[-74.3344238,-0.850878906],[-74.2463867,-0.970605469],[-74.0543945,-1.02861328],[-73.8631836,-1.19667969],[-73.6643066,-1.24882812],[-73.4943359,-1.53662109],[-73.5252441,-1.63886719],[-73.4962891,-1.69306641],[-73.3495117,-1.78388672],[-73.2664551,-1.77226562],[-73.1969727,-1.83027344],[-73.1265137,-2.08105469],[-73.1726562,-2.20839844],[-73.1544922,-2.27822266],[-72.9896484,-2.33974609],[-72.8871582,-2.40849609],[-72.7141602,-2.3921875],[-72.6253418,-2.35166016],[-72.3956055,-2.42890625],[-72.1368164,-2.38066406],[-71.9842773,-2.3265625],[-71.8027344,-2.16630859],[-71.7525391,-2.15273438],[-71.5594727,-2.22421875],[-71.3969727,-2.33408203],[-71.1963867,-2.31308594],[-71.1133789,-2.24541016],[-70.9145508,-2.21855469],[-70.5758789,-2.41826172],[-70.2946289,-2.55253906],[-70.2444336,-2.60654297],[-70.0958496,-2.65820312],[-70.0740234,-2.75019531],[-70.7351074,-3.78154297],[-70.5296875,-3.86640625],[-70.339502,-3.81435547],[-70.2402832,-3.88271484],[-70.1675293,-4.05019531],[-70.0171875,-4.16201172],[-69.965918,-4.2359375]]]}}],"_labels":{"PE":"Peru"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/PF.json b/src/api-umbrella/admin-ui/public/maps/PF.json new file mode 100644 index 000000000..e3c14be9c --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/PF.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"PF"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-0.13850585937499994E3,-20.8572266],[-0.13850585937499994E3,-20.8572266],[-0.13850585937499994E3,-20.8572266],[-0.13850585937499994E3,-20.8572266]]],[[[-0.13629389648437498E3,-18.5443359],[-0.13631601562499998E3,-0.18545214843750017E2],[-0.13647851562500003E3,-0.18470800781250045E2],[-0.13645869140624998E3,-0.18463183593750003E2],[-0.13629389648437498E3,-18.5443359]]],[[[-140.685352,-18.3798828],[-140.671875,-0.18416113281250002E2],[-0.14077324218749993E3,-18.3637695],[-140.781738,-18.3341797],[-140.685352,-18.3798828]]],[[[-0.13697172851562493E3,-0.18341992187499997E2],[-0.13706757812500004E3,-18.265332],[-0.13702963867187503E3,-0.18272851562500037E2],[-0.13697172851562493E3,-0.18341992187499997E2]]],[[[-0.14082988281250005E3,-0.18189355468749994E2],[-0.14086005859375004E3,-0.18198730468750043E2],[-0.14097353515624997E3,-18.0591797],[-0.14092514648437495E3,-0.18083789062499974E2],[-0.14082988281250005E3,-0.18189355468749994E2]]],[[[-140.809375,-17.8566406],[-140.850732,-17.8310547],[-140.761426,-0.17717773437500014E2],[-0.14065205078125004E3,-17.6831055],[-0.14077631835937504E3,-0.17754101562500054E2],[-0.14083251953125003E3,-0.17838476562500006E2],[-140.809375,-17.8566406]]],[[[-149.321533,-17.6900391],[-149.177686,-0.17736621093750045E2],[-0.14915087890624997E3,-0.17812109374999963E2],[-0.14918178710937497E3,-17.8623047],[-0.14929047851562498E3,-0.17822460937500026E2],[-0.14934111328124996E3,-0.17732421874999986E2],[-0.14948168945312494E3,-17.7527344],[-149.578906,-17.7349609],[-149.632812,-0.17617578125000037E2],[-149.611426,-0.17531640625000023E2],[-149.508105,-17.4963867],[-0.14937919921874993E3,-0.17522363281249994E2],[-0.14933007812499997E3,-0.17588964843749977E2],[-149.321533,-17.6900391]]],[[[-149.813672,-17.5450195],[-0.14988657226562503E3,-17.552832],[-149.902148,-17.4695312],[-0.14978242187499998E3,-17.487793],[-149.813672,-17.5450195]]],[[[-0.15140981445312502E3,-16.8777344],[-0.15148549804687497E3,-16.8636719],[-0.15146674804687495E3,-0.16739648437499966E2],[-0.15141118164062502E3,-16.7744141],[-151.364502,-0.16864257812499957E2],[-0.15140981445312502E3,-16.8777344]]],[[[-0.14344057617187497E3,-0.16619726562499963E2],[-0.14344057617187497E3,-0.16619726562499963E2],[-0.14344057617187497E3,-0.16619726562499963E2],[-0.14344057617187497E3,-0.16619726562499963E2]]],[[[-143.571143,-16.6347656],[-0.14361064453124996E3,-0.16640429687500003E2],[-0.14370742187499997E3,-16.5808594],[-0.14367021484374993E3,-16.5808594],[-143.571143,-16.6347656]]],[[[-0.15146660156249993E3,-0.16657519531250017E2],[-0.15151240234375004E3,-0.16619042968749994E2],[-0.15150576171875002E3,-0.16574023437499974E2],[-0.15143808593749995E3,-16.6234375],[-0.15146660156249993E3,-0.16657519531250017E2]]],[[[-0.14548666992187498E3,-16.3297852],[-145.539844,-0.16295117187499997E2],[-0.14560913085937497E3,-16.1652344],[-0.14561381835937496E3,-0.16079199218749977E2],[-0.14548666992187498E3,-16.3297852]]],[[[-0.14251181640625003E3,-16.0962891],[-0.14251181640625003E3,-16.0962891],[-0.14251181640625003E3,-16.0962891],[-0.14251181640625003E3,-16.0962891]]],[[[-145.051367,-0.15856054687499991E2],[-145.076416,-0.15857617187500042E2],[-0.14516074218750003E3,-0.15757031249999983E2],[-0.14513354492187497E3,-0.15762011718750015E2],[-145.051367,-0.15856054687499991E2]]],[[[-0.13865112304687497E3,-0.10515332031249955E2],[-0.13868774414062497E3,-0.10532421874999983E2],[-0.13869038085937498E3,-0.10425585937499974E2],[-0.13862446289062495E3,-0.10462988281249949E2],[-0.13865112304687497E3,-0.10515332031249955E2]]],[[[-139.059717,-0.9931347656249997E1],[-139.133984,-0.10009570312499946E2],[-0.13913422851562498E3,-0.9926269531249943E1],[-139.059717,-0.9931347656249997E1]]],[[[-0.13902431640624997E3,-0.9695214843750037E1],[-138.874463,-0.9747167968749961E1],[-138.827344,-9.74160156],[-138.874951,-0.9792871093750035E1],[-0.13902426757812498E3,-0.9820703125000023E1],[-139.073682,-9.84570312],[-0.13913408203124996E3,-0.9829492187500037E1],[-0.13916645507812498E3,-9.77021484],[-0.13902431640624997E3,-0.9695214843750037E1]]],[[[-140.075635,-0.9425976562499983E1],[-0.14009736328124998E3,-9.44414062],[-0.14014438476562495E3,-9.359375],[-0.14007094726562494E3,-9.328125],[-140.031104,-0.9344726562499957E1],[-140.075635,-0.9425976562499983E1]]],[[[-139.556201,-8.94023437],[-0.13962099609374997E3,-8.94794922],[-139.631787,-8.89853516],[-0.13958398437499991E3,-8.86005859],[-0.13950991210937497E3,-8.915625],[-139.556201,-8.94023437]]],[[[-0.14007260742187503E3,-8.91044922],[-0.14021743164062497E3,-8.9296875],[-0.14025268554687503E3,-8.84804688],[-0.14022441406249996E3,-8.78154297],[-140.057666,-8.80146484],[-0.14004614257812494E3,-8.87363281],[-0.14007260742187503E3,-8.91044922]]]]}}],"_labels":{"PF":"Fr. Polynesia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/PG.json b/src/api-umbrella/admin-ui/public/maps/PG.json new file mode 100644 index 000000000..4f14e7122 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/PG.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"PG"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.15353613281249994E3,-0.11476171874999906E2],[153.703223,-0.11528515624999912E2],[153.759863,-0.11586328124999966E2],[0.15355371093749997E3,-0.11630566406249912E2],[153.379004,-0.11559570312500014E2],[0.15335703125000006E3,-0.11495019531250007E2],[0.15323447265625003E3,-0.11420312500000064E2],[153.203613,-0.11324121093750009E2],[0.15353613281249994E3,-0.11476171874999906E2]]],[[[0.15428076171874994E3,-0.11361425781249977E2],[154.064063,-0.11419335937499952E2],[154.023438,-0.11347949218749974E2],[0.15410175781250018E3,-0.11311425781249909E2],[0.15428076171874994E3,-0.11361425781249977E2]]],[[[150.89873,-0.10565332031249966E2],[0.15088466796874997E3,-10.643457],[150.785742,-0.10603417968749909E2],[150.89873,-0.10565332031249966E2]]],[[[0.15108095703125002E3,-10.0201172],[0.15125566406250016E3,-9.92265625],[151.296484,-0.9956738281249969E1],[0.15123085937499994E3,-0.10194726562499966E2],[0.15095917968750007E3,-0.10092578124999932E2],[0.15095244140625005E3,-0.9998437499999937E1],[150.896094,-9.96806641],[0.15077607421875007E3,-0.9709082031249963E1],[0.15086230468749994E3,-0.9802441406249983E1],[151.051465,-9.93896484],[0.15108095703125002E3,-10.0201172]]],[[[0.15052841796875003E3,-0.9346582031250009E1],[150.669043,-9.42851562],[0.15078867187500003E3,-9.41796875],[0.15087910156250018E3,-0.9512695312499929E1],[150.894043,-9.66748047],[0.15043623046874998E3,-9.62460937],[0.15050849609375018E3,-9.53613281],[0.15043466796875003E3,-9.43496094],[0.15043730468750016E3,-0.9359960937499977E1],[0.15052841796875003E3,-0.9346582031250009E1]]],[[[0.15034541015625018E3,-9.49384766],[0.15027285156250014E3,-0.9500390624999907E1],[0.15010976562500014E3,-0.9361914062499935E1],[0.15013496093750018E3,-9.25957031],[0.15020830078125005E3,-9.20634766],[0.15032011718750013E3,-0.9264160156249915E1],[150.368164,-0.9396484374999957E1],[0.15034541015625018E3,-9.49384766]]],[[[152.630957,-8.959375],[152.810059,-8.9671875],[0.15299531250000015E3,-0.9107812500000037E1],[152.966895,-0.9208984375000043E1],[0.15286748046875016E3,-0.9224316406249969E1],[0.15272011718749997E3,-0.9166503906249915E1],[0.15263808593749997E3,-9.05839844],[0.15251513671874994E3,-0.9009863281249977E1],[152.630957,-8.959375]]],[[[0.14359033203125009E3,-8.63339844],[0.14360820312500002E3,-8.67714844],[0.14346279296874997E3,-8.61708984],[0.14325380859375014E3,-8.48955078],[143.443359,-8.51894531],[0.14359033203125009E3,-8.63339844]]],[[[0.15110683593750014E3,-8.73349609],[0.15104619140625005E3,-8.72832031],[0.15108281250000005E3,-8.56865234],[151.00498,-8.52382812],[0.15111757812500002E3,-8.41884766],[0.15113857421875002E3,-8.56806641],[0.15110683593750014E3,-8.73349609]]],[[[0.14358681640625014E3,-8.48173828],[0.14336689453125018E3,-8.41689453],[143.321875,-8.36757812],[0.14358144531249997E3,-8.39091797],[0.14358681640625014E3,-8.48173828]]],[[[0.14802578125000002E3,-5.82636719],[147.874512,-5.74921875],[0.14778105468750016E3,-5.62724609],[0.14779462890625018E3,-5.49238281],[147.846484,-5.49082031],[0.14805478515625003E3,-5.61152344],[0.14807607421875014E3,-5.65019531],[0.14802578125000002E3,-5.82636719]]],[[[155.957617,-6.68681641],[155.891895,-6.76152344],[155.719336,-6.86279297],[0.15552089843750002E3,-6.83027344],[0.15534404296875016E3,-6.72167969],[155.208594,-6.52685547],[155.234473,-6.41162109],[155.202148,-6.30761719],[0.15501015624999997E3,-6.20976562],[0.15494023437500005E3,-6.10615234],[154.781934,-5.97070313],[154.708984,-5.74707031],[154.741113,-5.5453125],[0.15472929687500002E3,-5.44443359],[0.15487050781250014E3,-5.52138672],[0.15499707031249994E3,-5.53994141],[0.15509384765625003E3,-5.62021484],[155.227539,-5.86523437],[155.372559,-5.97441406],[0.15546699218750007E3,-6.14511719],[0.15563847656250016E3,-6.22080078],[155.822559,-6.38046875],[0.15592763671875002E3,-6.56503906],[155.957617,-6.68681641]]],[[[0.14717626953124994E3,-5.43193359],[147.120215,-5.43740234],[0.14700585937499997E3,-5.30703125],[147.014746,-5.25742188],[0.14713105468750018E3,-5.19082031],[0.14720634765625016E3,-5.2515625],[147.221875,-5.38154297],[0.14717626953124994E3,-5.43193359]]],[[[0.15464726562500005E3,-5.43271484],[0.15458388671874997E3,-5.31445312],[154.540039,-5.11083984],[0.15463261718750016E3,-5.01386719],[0.15468203125000002E3,-5.05400391],[0.15472714843750003E3,-5.21806641],[0.15469843750000004E3,-5.3828125],[0.15464726562500005E3,-5.43271484]]],[[[0.14601933593750016E3,-4.72617187],[145.904004,-4.73300781],[0.14590019531250016E3,-4.60419922],[0.14599580078125018E3,-4.53925781],[0.14605341796875018E3,-4.64013672],[0.14601933593750016E3,-4.72617187]]],[[[151.915625,-4.29677734],[0.15196757812500016E3,-4.31699219],[152.117188,-4.21220703],[0.15219726562499994E3,-4.28515625],[0.15240566406250014E3,-4.34072266],[152.363574,-4.49082031],[152.4,-4.73125],[152.257617,-4.9546875],[0.15201328125000003E3,-5.00380859],[151.993945,-5.14902344],[0.15214296875000002E3,-5.35703125],[0.15207705078124997E3,-5.45830078],[0.15186542968749998E3,-5.56484375],[151.694922,-5.54355469],[151.515137,-5.55234375],[151.422461,-5.74736328],[0.15122929687500005E3,-5.91992188],[151.043164,-6.01503906],[0.15080898437500002E3,-6.07138672],[150.705762,-6.14941406],[150.42832,-6.27617187],[0.15019082031250014E3,-6.28935547],[0.14965253906250007E3,-6.29042969],[0.14948300781250003E3,-6.12480469],[149.382324,-6.078125],[149.272656,-6.07949219],[149.126563,-6.12763672],[0.14880751953125014E3,-5.91640625],[148.624805,-5.83076172],[0.14840117187500005E3,-5.76503906],[0.14833720703125013E3,-5.66943359],[0.14834472656249997E3,-5.54492188],[0.14843203125000002E3,-5.47177734],[148.564941,-5.50791016],[148.783496,-5.51162109],[0.14899921875000018E3,-5.48457031],[0.14924531250000007E3,-5.57304688],[0.14947539062500002E3,-5.57324219],[0.14963173828124997E3,-5.51601562],[0.14983144531249994E3,-5.52412109],[149.962793,-5.44775391],[0.15001191406250018E3,-5.13955078],[150.045313,-5.03466797],[0.15017031250000002E3,-5.07060547],[0.15008154296874994E3,-5.18642578],[0.15007246093750018E3,-5.30957031],[150.10625,-5.42900391],[0.15018310546874994E3,-5.52363281],[0.15029873046874997E3,-5.53564453],[150.404395,-5.47314453],[150.519434,-5.46025391],[150.625781,-5.52089844],[0.15095292968750005E3,-5.42373047],[0.15113779296875018E3,-5.11289062],[0.15132656250000014E3,-4.96035156],[0.15157255859375016E3,-4.9375],[0.15167119140625016E3,-4.88330078],[151.664648,-4.63701172],[0.15154423828125016E3,-4.29921875],[0.15159306640625016E3,-4.20078125],[0.15181933593749994E3,-4.21699219],[151.915625,-4.29677734]]],[[[0.15365927734375018E3,-4.09931641],[0.15365927734375018E3,-4.09931641],[0.15365927734375018E3,-4.09931641],[0.15365927734375018E3,-4.09931641]]],[[[152.670605,-3.13339844],[0.15264619140624998E3,-3.22119141],[152.543262,-3.09560547],[0.15263876953125018E3,-3.04277344],[152.670605,-3.13339844]]],[[[0.15209921875000003E3,-2.94736328],[0.15205732421875004E3,-2.99492187],[151.95459,-2.87050781],[151.974707,-2.84560547],[0.15209921875000003E3,-2.94736328]]],[[[0.15195722656250018E3,-2.83017578],[151.946387,-2.70859375],[152.011328,-2.80917969],[0.15195722656250018E3,-2.83017578]]],[[[0.14412197265624997E3,-3.81523438],[0.14437441406249994E3,-3.80273437],[0.14447773437500018E3,-3.82529297],[144.62666,-3.99306641],[0.14473789062500003E3,-4.02910156],[0.14493847656249994E3,-4.18818359],[0.14508779296875002E3,-4.34912109],[145.33457,-4.38525391],[0.14576699218750002E3,-4.82304688],[0.14578808593749994E3,-4.890625],[0.14579287109375014E3,-5.17792969],[145.745215,-5.40244141],[145.852832,-5.47128906],[0.14620537109375016E3,-5.54511719],[146.403418,-5.61660156],[147.034277,-5.91923828],[0.14712089843750013E3,-5.94501953],[0.14737666015624998E3,-5.95078125],[0.14756669921874996E3,-6.05693359],[147.730078,-6.26113281],[0.14780205078124996E3,-6.31523437],[147.854492,-6.55117187],[0.14784550781250016E3,-6.66240234],[147.70957,-6.72363281],[0.14735576171875005E3,-6.74238281],[0.14711914062499994E3,-6.72167969],[146.953613,-6.83408203],[0.14696074218750005E3,-6.92880859],[0.14710488281249997E3,-7.16699219],[147.190039,-7.378125],[0.14772431640625007E3,-7.87626953],[0.14793613281250003E3,-7.97539062],[0.14812675781250016E3,-8.10361328],[0.14820644531250014E3,-8.33867188],[148.246875,-8.55429687],[148.451172,-8.69453125],[0.14852587890625009E3,-8.93857422],[148.583105,-9.05175781],[0.14879179687500002E3,-0.9089453124999933E1],[0.14909746093750005E3,-0.9016894531249989E1],[149.247656,-0.9070996093749997E1],[0.14926406250000014E3,-0.9180761718749977E1],[0.14920302734375014E3,-0.9406835937499935E1],[0.14926318359374994E3,-9.49785156],[0.14947578125000018E3,-9.58828125],[0.14975576171875014E3,-0.9610937499999949E1],[0.14997353515624997E3,-0.9660742187500063E1],[0.14998466796875005E3,-0.9737011718749969E1],[0.14976123046874997E3,-0.9805859374999967E1],[0.14976308593750002E3,-9.86865234],[0.14987441406250014E3,-10.0129883],[149.967578,-0.10060742187499926E2],[0.15036406250000016E3,-0.10189648437499898E2],[0.15053886718750016E3,-0.10206738281249926E2],[0.15066699218749991E3,-10.2571289],[0.15084951171875002E3,-0.10236035156250026E2],[150.636816,-10.3379883],[0.15044609375000016E3,-0.10307324218749981E2],[0.15041025390625003E3,-0.10339257812499923E2],[0.15048886718750006E3,-0.10425781249999957E2],[0.15064716796875018E3,-0.10517968749999909E2],[150.482422,-0.10636914062499983E2],[150.319922,-10.6548828],[0.15001679687500018E3,-10.5771484],[0.14994804687500005E3,-0.10482617187499898E2],[0.14975410156250007E3,-0.10353027343750055E2],[0.14954433593750014E3,-0.10338476562499935E2],[149.352637,-0.10289746093749955E2],[0.14893681640625016E3,-0.10255175781250017E2],[148.712891,-0.10166894531249978E2],[0.14838339843750003E3,-0.10185449218750023E2],[148.150488,-0.10107324218749923E2],[148.051367,-0.10128320312499937E2],[147.768652,-0.10070117187499974E2],[147.553125,-0.9912402343749903E1],[147.408301,-0.9674707031250065E1],[147.298926,-0.9579589843749957E1],[0.14701718750000003E3,-0.9387890624999983E1],[0.14692539062500018E3,-9.24716797],[146.96377,-0.9059570312499885E1],[0.14685625000000016E3,-9.08769531],[0.14669658203125005E3,-0.9025390624999943E1],[0.14663085937499994E3,-8.95117187],[146.455859,-8.64355469],[0.14629648437500003E3,-8.45556641],[146.184082,-8.24638672],[0.14603320312499994E3,-8.07636719],[145.728711,-7.95244141],[145.467773,-7.93007812],[145.2875,-7.86162109],[0.14497382812500007E3,-7.80214844],[0.14488535156250006E3,-7.73359375],[0.14486425781249994E3,-7.63154297],[144.773438,-7.64248047],[0.14450986328125003E3,-7.56738281],[144.43125,-7.67939453],[144.351855,-7.66699219],[144.225391,-7.76494141],[0.14389824218750016E3,-7.67382812],[143.72334,-7.49824219],[0.14394228515625014E3,-7.94423828],[143.840625,-7.94189453],[143.887988,-8.01767578],[143.779297,-8.02822266],[0.14355156250000005E3,-7.98466797],[143.61377,-8.20039062],[0.14309492187500018E3,-8.31123047],[142.905469,-8.31445313],[142.708594,-8.27226562],[142.447559,-8.31621094],[0.14234746093750005E3,-8.16748047],[142.391016,-8.31269531],[0.14247480468750007E3,-8.36943359],[0.14257597656250016E3,-8.33564453],[142.797949,-8.34501953],[0.14311181640624997E3,-8.47451172],[143.306738,-8.6609375],[143.392188,-8.80185547],[0.14336621093750009E3,-8.96103516],[0.14285917968750005E3,-9.20263672],[0.14264716796875018E3,-9.32783203],[142.22959,-9.16992187],[141.978906,-9.19814453],[0.14162158203124994E3,-0.9211328124999895E1],[0.14140566406250002E3,-9.15068359],[0.14113320312500014E3,-0.9221289062500063E1],[140.976172,-9.11875],[140.975195,-6.90537109],[140.862305,-6.74003906],[140.874609,-6.61152344],[0.14097500000000014E3,-6.34609375],[0.14097343750000013E3,-2.60976562],[0.14118564453125003E3,-2.62783203],[141.686816,-2.84501953],[141.8875,-2.95253906],[0.14198574218749997E3,-2.96357422],[142.211523,-3.08349609],[0.14290517578124997E3,-3.32070312],[143.37832,-3.3953125],[0.14350898437500007E3,-3.43115234],[0.14370058593750002E3,-3.57333984],[0.14379716796875016E3,-3.61728516],[144.01582,-3.78359375],[0.14412197265624997E3,-3.81523438]]],[[[0.15296582031249994E3,-4.75634766],[0.15289169921875003E3,-4.83242187],[152.739941,-4.63583984],[0.15268066406250009E3,-4.4984375],[152.696777,-4.28203125],[0.15266816406250007E3,-4.13183594],[0.15259843750000016E3,-3.99482422],[0.15235576171874996E3,-3.66816406],[152.192187,-3.50585937],[151.972949,-3.45341797],[0.15179316406250007E3,-3.33789062],[151.578516,-3.15351562],[0.15140507812500005E3,-3.03691406],[150.968066,-2.77988281],[150.746094,-2.73886719],[0.15082646484375005E3,-2.71289062],[0.15082539062500018E3,-2.57294922],[0.15117460937500016E3,-2.7890625],[0.15122646484374997E3,-2.8703125],[0.15131474609375005E3,-2.87529297],[0.15147539062500016E3,-2.94248047],[0.15168984374999997E3,-3.07285156],[0.15180712890624991E3,-3.17285156],[0.15203291015625007E3,-3.25136719],[0.15217939453125007E3,-3.41035156],[0.15301679687499998E3,-4.10566406],[0.15312421875000018E3,-4.25234375],[0.15313251953125018E3,-4.35244141],[153.044336,-4.47636719],[153.023242,-4.66630859],[0.15296582031249994E3,-4.75634766]]],[[[150.436621,-2.66181641],[0.15016572265625007E3,-2.66025391],[150.043457,-2.5125],[0.14996162109375004E3,-2.47382812],[150.102539,-2.40498047],[0.15022714843750003E3,-2.38417969],[0.15042949218750016E3,-2.47041016],[150.436621,-2.66181641]]],[[[147.876953,-2.28310547],[147.876953,-2.28310547],[147.876953,-2.28310547],[147.876953,-2.28310547]]],[[[147.067578,-1.96015625],[0.14740058593750018E3,-2.02509766],[0.14720634765625016E3,-2.18193359],[146.926367,-2.1890625],[0.14674785156249996E3,-2.14882812],[146.546484,-2.20859375],[0.14653242187500018E3,-2.12617187],[146.607031,-2.10253906],[0.14659589843749998E3,-2.01689453],[146.65625,-1.97402344],[0.14685712890625007E3,-1.94853516],[147.067578,-1.96015625]]],[[[0.14976542968750016E3,-1.55302734],[0.14967109375000018E3,-1.57626953],[149.545898,-1.47167969],[0.14958095703125014E3,-1.35322266],[149.725293,-1.43066406],[0.14976542968750016E3,-1.55302734]]]]}}],"_labels":{"PG":"Papua New Guinea"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/PH.json b/src/api-umbrella/admin-ui/public/maps/PH.json new file mode 100644 index 000000000..260667ea1 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/PH.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"PH"},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.250391,5.2565918],[0.12019160156250004E3,5.16831055],[0.12011835937500005E3,5.21538086],[0.11995810546875005E3,5.07954102],[0.11982148437500003E3,5.06953125],[0.11982734375000004E3,5.1331543],[0.12020800781249997E3,5.34008789],[120.250391,5.2565918]]],[[[121.159375,6.07563477],[0.12121386718750001E3,6.00351562],[0.12139150390625004E3,6.00209961],[0.12141103515625004E3,5.93984375],[0.12129443359374997E3,5.8699707],[121.218164,5.94272461],[0.12108300781249997E3,5.89301758],[0.12093066406249997E3,5.89619141],[0.12089824218750002E3,6.00693359],[0.12103769531250005E3,6.09599609],[121.159375,6.07563477]]],[[[0.12209287109375012E3,6.42832031],[0.12195917968750003E3,6.41582031],[0.12180869140625005E3,6.6137207],[0.12183203125000003E3,6.6640625],[0.12205830078125008E3,6.74072266],[0.12228808593750003E3,6.63891602],[0.12220097656250002E3,6.48291016],[0.12209287109375012E3,6.42832031]]],[[[125.78457,6.96274414],[0.12576894531250004E3,6.90576172],[125.683008,7.07319336],[125.714453,7.18554688],[0.12578339843750004E3,7.13066406],[125.78457,6.96274414]]],[[[0.12293710937500006E3,7.40913086],[0.12294365234375007E3,7.36103516],[0.12280468750000001E3,7.3159668],[122.822168,7.4284668],[0.12293710937500006E3,7.40913086]]],[[[0.11707988281250007E3,7.88339844],[0.11702832031249997E3,7.80751953],[0.11696953125000007E3,7.89492187],[0.11699355468750001E3,8.05053711],[0.11707705078124998E3,8.06914062],[0.11707988281250007E3,7.88339844]]],[[[0.11735527343750002E3,8.21464844],[0.11728701171874998E3,8.19101563],[0.11728085937500006E3,8.31499023],[0.11735527343750002E3,8.21464844]]],[[[0.12480664062500003E3,0.9142626953125003E1],[0.12477792968750012E3,0.9083105468749963E1],[0.12466582031250002E3,0.9132324218750043E1],[0.12465332031250003E3,9.22583008],[0.12473681640624996E3,9.24316406],[0.12480664062500003E3,0.9142626953125003E1]]],[[[0.12369765625000005E3,9.23730469],[123.70625,9.13354492],[0.12361445312500004E3,0.9103320312499989E1],[0.12349345703125002E3,9.19208984],[0.12365488281250013E3,9.27875977],[0.12369765625000005E3,9.23730469]]],[[[0.12597050781250006E3,0.9593554687500031E1],[0.12592207031250005E3,0.9621484375000037E1],[0.12596777343749997E3,0.9759082031250003E1],[0.12597050781250006E3,0.9593554687500031E1]]],[[[0.12600595703125005E3,0.9320947265625009E1],[0.12608759765625004E3,9.26074219],[0.12619335937499997E3,0.9276708984374961E1],[0.12619199218750005E3,0.9124902343750037E1],[126.30459,8.95205078],[0.12631953125000005E3,8.84472656],[0.12614160156250003E3,8.62729492],[0.12617304687500003E3,8.56005859],[126.365332,8.48388672],[0.12637978515625005E3,8.32675781],[0.12645869140625004E3,8.20283203],[0.12642529296874996E3,7.92744141],[126.435352,7.8328125],[0.12657011718750002E3,7.67724609],[0.12659335937500012E3,7.54677734],[0.12658154296875003E3,7.24775391],[0.12643906250000006E3,7.01235352],[0.12629404296875006E3,6.88232422],[0.12619208984375008E3,6.85253906],[0.12624023437500003E3,6.73388672],[126.189355,6.30966797],[0.12610976562499998E3,6.48964844],[0.12608007812500001E3,6.73334961],[0.12590117187500009E3,7.11699219],[0.12582441406250004E3,7.33330078],[0.12568925781250007E3,7.26303711],[0.12564072265625013E3,7.10507813],[0.12554218750000004E3,7.01660156],[0.12540097656250012E3,6.79575195],[0.12538066406250007E3,6.68994141],[0.12558847656250012E3,6.46577148],[0.12567070312500002E3,6.225],[0.12566796874999997E3,5.97866211],[125.455859,5.66425781],[0.12534648437500002E3,5.59897461],[125.287891,5.63227539],[125.233203,5.80830078],[0.12526845703125004E3,6.0331543],[0.12517402343750003E3,6.04697266],[0.12503535156250004E3,5.8706543],[0.12492734375000005E3,5.8753418],[124.636328,5.99819336],[0.12421279296874998E3,6.23325195],[124.078125,6.40444336],[0.12404814453125002E3,6.66655273],[123.987891,6.86298828],[123.985254,6.99370117],[0.12404511718750003E3,7.11411133],[0.12419072265625002E3,7.26733398],[0.12420664062500006E3,7.39643555],[0.12406796875000005E3,7.57788086],[0.12396845703125004E3,7.66464844],[0.12376474609375012E3,7.74262695],[123.66582,7.81777344],[123.493066,7.80791016],[0.12347636718750007E3,7.66538086],[0.12339091796875007E3,7.40751953],[0.12317822265624996E3,7.52944336],[0.12309667968749997E3,7.70043945],[122.989551,7.54628906],[0.12284296875000011E3,7.52929688],[0.12279179687500003E3,7.72246094],[0.12261621093749997E3,7.76313477],[0.12249794921875004E3,7.67275391],[0.12231972656249998E3,7.34023437],[0.12217617187500004E3,7.00419922],[0.12209814453124999E3,6.9137207],[0.12196425781250005E3,6.96821289],[0.12190419921875004E3,7.07519531],[0.12192460937500002E3,7.19951172],[0.12204716796875002E3,7.36357422],[0.12213183593749997E3,7.81049805],[0.12233710937500003E3,8.02841797],[0.12267294921875006E3,8.13310547],[0.12291113281250003E3,8.15644531],[0.12299628906250005E3,8.22050781],[0.12301757812500001E3,8.39833984],[0.12314716796875003E3,8.51601562],[123.341211,8.57041016],[0.12343457031249996E3,8.70332031],[0.12368007812499998E3,8.62060547],[0.12378339843750008E3,8.54770508],[0.12384921875000005E3,8.43271484],[0.12387744140624997E3,8.18881836],[123.753125,8.05825195],[0.12379941406250006E3,8.04912109],[123.996875,8.15898437],[124.159375,8.20146484],[0.12422578125000003E3,8.27138672],[0.12432519531249996E3,8.50844727],[0.12445126953125005E3,8.60634766],[0.12462177734375008E3,8.52265625],[124.731152,8.56298828],[0.12478681640625004E3,8.87412109],[0.12486894531250002E3,8.97226563],[125.141016,8.86875],[0.12520966796875004E3,0.9027148437500017E1],[0.12537558593750012E3,8.99179688],[0.12549873046875004E3,0.9014746093749977E1],[125.533398,0.9140917968750017E1],[125.413965,9.66918945],[0.12552089843750004E3,9.75913086],[0.12564248046875005E3,0.9654492187500011E1],[0.12587666015625004E3,0.9513134765624997E1],[0.12600595703125005E3,0.9320947265625009E1]]],[[[126.059375,9.76621094],[0.12599121093750001E3,0.9838525390625023E1],[0.12607382812500006E3,10.0592285],[126.172559,9.79995117],[126.059375,9.76621094]]],[[[0.12528076171874996E3,9.98217773],[0.12515898437500002E3,0.10062939453125011E2],[0.12513300781250003E3,0.10155029296875027E2],[0.12523095703125003E3,0.10115673828124997E2],[0.12528076171874996E3,9.98217773]]],[[[0.12459384765625006E3,0.9787207031249963E1],[0.12447753906250001E3,9.74790039],[0.12435986328125003E3,9.63022461],[0.12412246093749998E3,0.9599316406249969E1],[123.935645,0.9623974609375011E1],[0.12387167968750005E3,0.9675732421874997E1],[0.12381718750000002E3,9.81738281],[0.12390888671875008E3,9.91962891],[0.12405976562500008E3,0.10000195312500011E2],[0.12417285156250003E3,0.10135205078124981E2],[0.12433574218750002E3,0.10159912109375043E2],[0.12457714843749999E3,0.10026708984374991E2],[0.12455507812499998E3,9.87919922],[0.12459384765625006E3,0.9787207031249963E1]]],[[[0.12569023437500006E3,0.9914453125000037E1],[0.12549482421875004E3,0.10118701171875003E2],[125.524609,0.10309716796875009E2],[0.12566679687500002E3,0.10440136718750024E2],[0.12564667968750008E3,10.2454102],[125.70332,0.10071777343750028E2],[0.12569023437500006E3,0.9914453125000037E1]]],[[[0.11991621093750004E3,0.10485986328125037E2],[0.11979316406250003E3,0.10455273437499997E2],[0.11976445312500002E3,0.10551611328124991E2],[0.11985205078124996E3,10.6401367],[0.12000839843750012E3,0.10570117187500031E2],[0.11991621093750004E3,0.10485986328125037E2]]],[[[0.12431621093750002E3,0.10606005859374974E2],[0.12433466796875004E3,0.10706689453124964E2],[0.12438134765624996E3,0.10632568359374972E2],[0.12431621093750002E3,0.10606005859374974E2]]],[[[0.12264951171875012E3,0.10472705078125003E2],[122.538379,0.10424951171875037E2],[122.5375,0.10607568359375021E2],[0.12267255859375008E3,0.10738818359375031E2],[0.12273720703125004E3,0.10654589843750017E2],[0.12264951171875012E3,0.10472705078125003E2]]],[[[0.12313085937500003E3,9.06411133],[0.12299472656250006E3,9.05883789],[0.12294785156250006E3,9.10795898],[0.12286660156249998E3,0.9319824218750043E1],[122.5625,0.9482812500000035E1],[0.12241093750000007E3,9.69389648],[0.12239951171875006E3,0.9823046874999989E1],[0.12247148437500007E3,9.96152344],[0.12271298828125006E3,0.9990136718750009E1],[0.12285556640625005E3,10.0869141],[0.12286650390625007E3,10.2840332],[0.12281699218750012E3,0.10503808593750021E2],[0.12295839843750004E3,0.10698339843750048E2],[0.12298330078125001E3,0.10886621093750035E2],[0.12325664062500007E3,10.9939453],[0.12351064453125005E3,10.9230469],[0.12356757812500008E3,0.10780761718750055E2],[0.12349287109375003E3,0.10582324218750031E2],[0.12334355468750002E3,0.10325390625000011E2],[0.12329609375000004E3,0.10124511718750028E2],[123.162012,0.9864257812500027E1],[0.12314980468749998E3,9.60615234],[0.12330839843750002E3,9.35698242],[0.12332050781250003E3,9.27294922],[0.12322871093750004E3,0.9121386718750031E1],[0.12313085937500003E3,9.06411133]]],[[[0.12337031250000003E3,0.9449609375000021E1],[123.331738,9.42294922],[123.327051,0.9578076171874997E1],[0.12340371093749998E3,0.9889257812499977E1],[0.12338623046874997E3,0.9967089843750017E1],[0.12351435546875008E3,0.10140332031250054E2],[0.12371142578124997E3,0.10473681640625017E2],[0.12372646484375004E3,0.10562207031250026E2],[0.12383154296874997E3,0.10731005859375045E2],[0.12392988281250008E3,10.9638184],[0.12396718750000005E3,0.11186914062500023E2],[0.12403886718750002E3,0.11273535156249991E2],[0.12405332031250012E3,0.10925781250000014E2],[124.027539,0.10767871093750003E2],[0.12405126953124997E3,0.10585595703124994E2],[124.00498,10.4000977],[0.12395214843750001E3,0.10316601562499997E2],[0.12378867187500012E3,10.2208008],[0.12364335937500009E3,0.10020214843750011E2],[0.12363398437500004E3,9.92172852],[0.12349355468750001E3,0.9589306640624969E1],[0.12337031250000003E3,0.9449609375000021E1]]],[[[0.12375703125000004E3,11.2833008],[123.815625,11.1507324],[123.736719,0.11151464843749991E2],[0.12375703125000004E3,11.2833008]]],[[[0.11731113281250012E3,8.43959961],[0.11721855468750006E3,8.36728516],[0.11725585937500003E3,8.5409668],[0.11734990234375002E3,8.71357422],[0.11759326171875001E3,8.96831055],[0.11788476562499997E3,0.9240673828124997E1],[118.023828,9.26977539],[0.11811484375000005E3,9.34667969],[0.11853339843750003E3,9.79365234],[0.11872753906250001E3,0.10035009765625004E2],[118.845117,0.10131298828124983E2],[119.023828,0.10353564453124974E2],[0.11914306640625004E3,0.10409277343750048E2],[0.11928701171875004E3,0.10574023437500031E2],[0.11931269531250003E3,0.10687109374999975E2],[119.261133,0.10845166015625026E2],[0.11930566406250001E3,10.9736328],[0.11950126953125009E3,0.11346435546875014E2],[119.560254,0.11266796875000038E2],[119.52666,0.10953173828125003E2],[119.684375,0.10551708984375011E2],[0.11959521484375003E3,0.10407421875000026E2],[0.11942246093750012E3,0.10354394531249966E2],[119.284766,10.251709],[0.11919150390625013E3,0.10061083984374989E2],[0.11894863281249998E3,9.99345703],[0.11878212890625005E3,9.91611328],[0.11877382812499998E3,0.9766796874999983E1],[0.11856962890625007E3,9.42275391],[118.434961,0.9256005859375007E1],[0.11813408203125007E3,9.10136719],[0.11798955078125002E3,8.87709961],[117.679883,8.67783203],[117.572168,8.64199219],[0.11751660156249996E3,8.53833008],[0.11731113281250012E3,8.43959961]]],[[[0.11986142578125006E3,11.5253418],[0.11985488281249998E3,0.11393066406249998E2],[0.11972998046874997E3,0.11431933593750017E2],[0.11986142578125006E3,11.5253418]]],[[[0.12457460937499998E3,0.11343066406250031E2],[0.12472431640625003E3,0.11322070312500015E2],[0.12482109375000002E3,0.11401416015625017E2],[124.92998,0.11372851562499974E2],[0.12502656250000004E3,11.2117187],[0.12503974609375004E3,0.10951904296875014E2],[0.12501318359374996E3,0.10785693359374989E2],[125.187695,0.10584863281250023E2],[125.197168,10.4572266],[125.260059,0.10349609375000057E2],[0.12525332031250005E3,10.2638184],[0.12514843750000001E3,0.10272412109375052E2],[0.12514257812499996E3,0.10189453125000028E2],[124.9875,10.3675781],[0.12502656250000004E3,0.10033105468749964E2],[0.12478076171874997E3,10.1680664],[0.12478955078124997E3,0.10327539062499994E2],[124.737695,0.10439746093750031E2],[0.12479863281250007E3,0.10682226562499963E2],[124.786719,0.10781396484375009E2],[0.12466269531250005E3,0.10961962890625017E2],[0.12450283203124998E3,0.10904443359375023E2],[0.12444550781250003E3,0.10923583984375014E2],[0.12433066406250012E3,0.11535205078125003E2],[0.12454824218750004E3,0.11395019531250043E2],[0.12457460937499998E3,0.11343066406250031E2]]],[[[0.12460839843750003E3,0.11492187500000043E2],[0.12448349609375005E3,0.11485839843749986E2],[0.12436035156250003E3,0.11665917968749993E2],[124.510938,0.11687109375000047E2],[124.622266,11.5495605],[0.12460839843750003E3,0.11492187500000043E2]]],[[[0.12485439453125004E3,0.11594775390624974E2],[0.12478105468750002E3,0.11580761718750054E2],[124.730859,0.11715332031250028E2],[0.12485439453125004E3,0.11594775390624974E2]]],[[[0.12249619140625005E3,0.11615087890625034E2],[0.12261269531250001E3,11.5641602],[0.12272626953125004E3,0.11607910156249984E2],[0.12283808593750004E3,0.11595654296874983E2],[0.12293125000000012E3,0.11529296875000043E2],[0.12289453125000003E3,0.11441308593749978E2],[0.12310273437500004E3,0.11541455078125038E2],[0.12315830078125012E3,11.5355469],[0.12314414062500006E3,0.11363574218750031E2],[123.016504,0.11116503906249973E2],[122.80293,10.9900391],[0.12276992187500004E3,0.10823828125000034E2],[0.12267314453125002E3,0.10800927734374978E2],[0.12252207031250006E3,0.10691894531249972E2],[122.197656,0.10622900390625048E2],[0.12198837890625006E3,0.10458300781249989E2],[0.12193378906250003E3,10.4936523],[0.12198007812500006E3,0.10638574218750035E2],[0.12196435546874996E3,0.10871679687500006E2],[0.12205087890625005E3,0.11097363281249983E2],[122.059668,0.11325683593750043E2],[0.12210351562499997E3,11.6429199],[0.12206699218750006E3,0.11723730468750048E2],[0.12189121093750006E3,0.11790869140625047E2],[0.12196367187500002E3,11.8973633],[0.12229072265625008E3,0.11772021484375031E2],[0.12249619140625005E3,0.11615087890625034E2]]],[[[0.12003876953125004E3,0.11703320312499969E2],[0.11996386718749997E3,0.11669384765624983E2],[0.11986093750000005E3,0.11953955078124963E2],[0.11991601562500003E3,0.11981347656250037E2],[0.12003593750000002E3,0.11917236328125027E2],[0.12007314453125005E3,11.7834961],[0.12003876953125004E3,0.11703320312499969E2]]],[[[120.1,0.12167675781249983E2],[0.12022822265625004E3,0.12219824218750034E2],[0.12034140625000005E3,0.12077441406249989E2],[0.12031455078125012E3,0.12012402343749969E2],[0.12001054687500002E3,0.12008251953125011E2],[0.11986591796875004E3,0.12199023437499974E2],[119.89668,12.3134277],[120.1,0.12167675781249983E2]]],[[[0.12265449218750004E3,12.3090332],[122.60332,0.12285595703125024E2],[0.12242294921875005E3,12.4550781],[0.12260361328125005E3,12.4916016],[122.673633,12.4242676],[0.12265449218750004E3,12.3090332]]],[[[0.12523955078125002E3,0.12527880859375003E2],[0.12531035156250003E3,0.12446289062499984E2],[0.12532021484374998E3,12.3218262],[125.48125,0.12251953125000014E2],[0.12553564453125003E3,0.12191406250000028E2],[0.12545654296874997E3,0.11952539062500037E2],[125.505762,0.11544238281249987E2],[0.12560898437500006E3,0.11323046875000045E2],[0.12557353515625002E3,0.11238232421874997E2],[0.12570400390625004E3,0.11164794921875043E2],[0.12573564453125002E3,0.11049609375000017E2],[125.628125,0.11132031250000026E2],[125.431836,0.11112597656249974E2],[0.12523339843749997E3,0.11145068359375017E2],[0.12515585937500013E3,0.11267041015624997E2],[0.12503427734375012E3,0.11341259765625026E2],[0.12491699218750003E3,11.5583984],[124.978906,0.11638476562500001E2],[0.12499501953124998E3,0.11764941406250003E2],[0.12488427734375003E3,11.7754883],[0.12467675781250003E3,0.12020898437500009E2],[0.12452910156250002E3,0.12079199218749991E2],[0.12438486328125005E3,12.2439941],[0.12429472656250006E3,0.12569335937500012E2],[124.56582,12.5262207],[0.12484013671875006E3,0.12534570312500037E2],[125.150195,12.5725586],[0.12523955078125002E3,0.12527880859375003E2]]],[[[0.12371660156250007E3,0.12287353515625028E2],[0.12390830078125008E3,0.12169091796875009E2],[0.12404033203125002E3,11.9667969],[124.045508,0.11752441406250027E2],[0.12384775390625005E3,11.9135742],[0.12372519531250005E3,11.9515625],[0.12373603515625004E3,0.12002636718750026E2],[123.612012,0.12090234375000023E2],[0.12353105468750002E3,12.1966309],[0.12341884765625001E3,12.1942383],[0.12329267578125003E3,0.12036376953124972E2],[123.157813,0.11925634765624963E2],[0.12326718750000005E3,0.12395458984375026E2],[123.236426,0.12583496093750055E2],[0.12346298828125012E3,0.12501220703124986E2],[0.12371660156250007E3,0.12287353515625028E2]]],[[[0.12231083984375002E3,0.12528808593750014E2],[0.12231083984375002E3,0.12528808593750014E2],[0.12231083984375002E3,0.12528808593750014E2],[0.12231083984375002E3,0.12528808593750014E2]]],[[[0.12209404296875002E3,0.12354882812500023E2],[122.013965,0.12105615234375035E2],[121.923242,0.12331298828125014E2],[0.12198945312500008E3,0.12435302734374972E2],[0.12200156250000005E3,0.12598535156250009E2],[0.12214501953124996E3,0.12652636718750017E2],[0.12209404296875002E3,0.12354882812500023E2]]],[[[0.12377539062499996E3,0.12453906250000031E2],[0.12374150390625007E3,0.12398535156250034E2],[123.587207,0.12633300781249984E2],[0.12370869140625004E3,0.12610791015625026E2],[0.12377539062499996E3,0.12453906250000031E2]]],[[[0.12328183593750006E3,12.853418],[0.12336718750000001E3,0.12700830078124978E2],[0.12305419921875001E3,0.12993457031250003E2],[0.12294902343750002E3,0.13058691406249963E2],[0.12304355468750006E3,0.13113378906250004E2],[123.20625,0.12905419921875009E2],[0.12328183593750006E3,12.853418]]],[[[0.12070439453125002E3,0.13479492187499986E2],[0.12091533203125002E3,0.13501074218750034E2],[0.12112246093750004E3,13.38125],[0.12120273437500005E3,0.13432324218749969E2],[121.356836,0.13265478515624991E2],[0.12152275390625006E3,0.13131201171874991E2],[121.479688,0.12837109375000026E2],[121.540625,12.6381836],[0.12141230468750003E3,0.12423046875000054E2],[0.12139433593750002E3,0.12300585937499974E2],[0.12132236328125005E3,0.12303613281249966E2],[0.12123671875000005E3,0.12218798828125003E2],[0.12110761718750004E3,0.12303613281249966E2],[0.12092216796875002E3,0.12511621093749978E2],[0.12089941406249997E3,0.12645849609374961E2],[0.12079599609375006E3,0.12747998046874997E2],[0.12076367187499996E3,0.12969824218749975E2],[0.12065136718749997E3,13.1691406],[0.12050830078124997E3,0.13260058593750045E2],[0.12045546875000004E3,0.13393505859375052E2],[0.12033847656250012E3,0.13412353515624986E2],[120.40127,0.13517041015624997E2],[0.12070439453125002E3,0.13479492187499986E2]]],[[[0.12191484375000002E3,0.13540332031250031E2],[0.12199570312500006E3,0.13546777343750007E2],[0.12211455078125002E3,0.13463183593750031E2],[0.12212236328125003E3,13.3651367],[0.12200488281249997E3,0.13204980468750009E2],[0.12182919921875006E3,0.13328613281249972E2],[0.12181503906250012E3,0.13424462890624966E2],[0.12186621093749997E3,0.13566162109375055E2],[0.12191484375000002E3,0.13540332031250031E2]]],[[[0.12027128906250002E3,0.13750683593749983E2],[0.12027285156250005E3,0.13682958984375048E2],[120.104199,0.13782373046875051E2],[0.12012070312500006E3,0.13858056640625009E2],[0.12027128906250002E3,0.13750683593749983E2]]],[[[0.12435361328125008E3,0.13632226562500007E2],[124.175391,0.13531542968750017E2],[0.12403886718750002E3,0.13663134765625003E2],[0.12412373046875005E3,0.13790478515625011E2],[0.12412285156250006E3,0.13979687500000011E2],[0.12422490234375007E3,0.14077587890624969E2],[124.308301,0.13946972656250011E2],[0.12441718750000003E3,0.13871044921874995E2],[0.12440400390625004E3,0.13679443359375043E2],[0.12435361328125008E3,0.13632226562500007E2]]],[[[0.12217539062500006E3,14.0488281],[0.12217226562500004E3,14.0080078],[121.95625,0.14156054687499974E2],[0.12195917968750003E3,0.14228759765625043E2],[0.12217539062500006E3,14.0488281]]],[[[0.12203349609375002E3,0.15005029296875009E2],[0.12197031250000012E3,14.8929687],[0.12202167968750008E3,0.14759423828124966E2],[0.12198964843750005E3,0.14662158203125045E2],[0.12191064453125003E3,0.14666503906250043E2],[0.12192304687500008E3,14.8],[0.12182031250000003E3,0.14963574218749997E2],[0.12183984374999997E3,0.15038134765625003E2],[0.12197167968750001E3,0.15046386718749986E2],[0.12203349609375002E3,0.15005029296875009E2]]],[[[0.12110156249999997E3,0.18615283203125017E2],[0.12125449218750012E3,0.18563427734375008E2],[0.12159296875000003E3,18.3764648],[121.845605,18.2954102],[0.12203847656250004E3,0.18327929687499985E2],[0.12214667968750003E3,18.4865723],[0.12222119140624996E3,0.18500634765625023E2],[0.12229980468749996E3,0.18402783203124983E2],[0.12229384765625005E3,0.18234277343750023E2],[0.12217949218750002E3,0.18064257812500017E2],[0.12215097656250005E3,0.17756494140625023E2],[122.175195,0.17575683593750057E2],[0.12223681640624996E3,0.17434863281250045E2],[0.12236230468750001E3,0.17344873046874994E2],[122.40752,17.178125],[122.519141,0.17124853515625034E2],[0.12242578124999997E3,0.16822656250000023E2],[0.12222587890625002E3,16.4352051],[0.12213515625000005E3,16.1848145],[0.12197470703125012E3,0.16157910156249955E2],[0.12178867187500005E3,16.0774414],[0.12159531250000012E3,0.15933251953125023E2],[121.560937,0.15826757812499977E2],[0.12160703125000005E3,0.15669824218749994E2],[0.12148984375000012E3,0.15509521484375028E2],[0.12139228515625004E3,0.15324414062499969E2],[0.12154394531250003E3,0.14999169921874966E2],[0.12169541015625006E3,0.14737304687500002E2],[0.12162656250000008E3,14.6817383],[121.648535,0.14481494140625015E2],[0.12180048828125004E3,0.14113867187499991E2],[0.12191171875000005E3,0.14020410156250051E2],[0.12207958984374997E3,0.13947119140625034E2],[0.12221171875000002E3,0.13930175781250057E2],[122.2875,0.13996191406250006E2],[0.12219970703125003E3,0.14148046875000034E2],[0.12249082031250013E3,14.3223633],[122.627148,0.14317529296875009E2],[0.12285605468750005E3,14.2507812],[0.12301455078125005E3,0.14079833984374986E2],[123.070996,0.13959960937499986E2],[0.12305996093750004E3,0.13788769531250026E2],[0.12323144531249996E3,0.13747363281250017E2],[0.12329697265625013E3,13.8364258],[0.12325927734374997E3,0.13975439453125034E2],[0.12332031249999996E3,0.14061669921875023E2],[0.12343232421875003E3,0.13966259765625026E2],[0.12372597656250005E3,0.13884326171875031E2],[0.12385761718750003E3,13.7996094],[123.80625,0.13721728515625045E2],[0.12360712890625004E3,0.13704443359374975E2],[0.12354960937500007E3,0.13645751953125014E2],[123.608105,0.13528076171875028E2],[0.12381923828124998E3,0.13269482421875011E2],[0.12378515625000003E3,0.13110546875000054E2],[0.12395517578125005E3,0.13099707031249977E2],[0.12414277343750004E3,0.13035791015625007E2],[0.12413730468750006E3,0.12791162109374994E2],[0.12405976562500008E3,0.12567089843749997E2],[123.961719,0.12594970703124998E2],[0.12387783203125005E3,0.12689697265625014E2],[0.12394853515625007E3,0.12916406250000023E2],[0.12362675781250006E3,0.12911767578124966E2],[0.12340234374999996E3,0.13033105468749994E2],[0.12331093750000004E3,0.13044091796875009E2],[0.12329550781250005E3,0.13215576171875043E2],[0.12316328125000004E3,13.441748],[122.863477,0.13617236328124974E2],[0.12278134765625005E3,0.13737060546875055E2],[0.12259521484374997E3,13.9076172],[0.12246796875000003E3,0.13886718749999986E2],[0.12250800781250004E3,0.13656835937499963E2],[0.12259619140624996E3,0.13562011718750014E2],[0.12266787109374998E3,0.13395361328124991E2],[0.12267509765625007E3,0.13253173828124972E2],[0.12259990234375002E3,0.13194140625000031E2],[122.515234,0.13260009765625028E2],[0.12249794921875004E3,0.13363525390624984E2],[0.12240693359375004E3,13.4927734],[122.205273,0.13648242187499989E2],[0.12207275390625003E3,0.13788378906250031E2],[0.12177792968750006E3,13.9376465],[0.12164345703125004E3,0.13915966796874995E2],[0.12145078125000005E3,0.13790771484374986E2],[0.12144628906250001E3,0.13711865234374981E2],[121.344141,0.13649121093749997E2],[0.12120351562500005E3,0.13640283203124966E2],[0.12100615234375007E3,0.13758105468749989E2],[0.12093232421875004E3,13.7618652],[120.840723,0.13884716796875026E2],[0.12072910156250013E3,0.13900537109374964E2],[0.12063710937499998E3,0.13804492187500031E2],[0.12061679687500006E3,0.14188037109375003E2],[0.12068828125000006E3,0.14291210937499967E2],[0.12092207031250011E3,0.14493115234374983E2],[0.12094130859374998E3,0.14645068359375031E2],[0.12088808593749998E3,0.14715771484375056E2],[0.12070791015625004E3,0.14776611328125014E2],[0.12058369140625003E3,14.88125],[0.12054677734374998E3,14.7661133],[0.12058867187500002E3,0.14483105468749983E2],[0.12043876953125002E3,14.4533691],[0.12036523437499997E3,0.14608300781250009E2],[0.12028388671875008E3,14.684375],[0.12025078125000003E3,0.14793310546875034E2],[0.12008212890625012E3,0.14851074218749984E2],[0.12003662109374996E3,0.15114550781250017E2],[0.11993281250000003E3,0.15430908203124986E2],[0.11989160156250001E3,0.15837695312499989E2],[0.11976894531249998E3,0.16008447265624966E2],[119.772559,16.255127],[0.11983076171875004E3,0.16326562500000023E2],[0.12003339843750004E3,0.16184570312500057E2],[0.12015976562500013E3,0.16047656250000045E2],[0.12033701171875008E3,0.16066455078125074E2],[0.12038925781250005E3,16.2216309],[0.12030527343750006E3,16.529248],[0.12032119140625005E3,0.16761865234374994E2],[0.12040888671875003E3,0.16955615234375017E2],[0.12042451171875003E3,0.17438330078125034E2],[0.12035839843749997E3,17.6381836],[0.12050507812500003E3,18.1626465],[0.12058447265624999E3,18.36875],[120.599707,0.18507861328125074E2],[0.12081376953125002E3,0.18603417968749994E2],[120.925,0.18585107421874994E2],[0.12110156249999997E3,0.18615283203125017E2]]],[[[0.12192167968750006E3,18.8947266],[0.12182519531250001E3,0.18842724609374983E2],[0.12188886718750003E3,0.18991552734375006E2],[0.12198789062500005E3,18.9566406],[0.12192167968750006E3,18.8947266]]],[[[0.12125224609375002E3,0.19082421874999966E2],[0.12118486328125007E3,0.19101416015625002E2],[0.12121318359375007E3,19.1835937],[0.12125224609375002E3,0.19082421874999966E2]]],[[[0.12152089843750004E3,0.19361962890624994E2],[121.53125,0.19271337890625006E2],[0.12138291015625005E3,0.19328466796875006E2],[0.12139160156249997E3,19.3993652],[0.12152089843750004E3,0.19361962890624994E2]]],[[[0.12196005859375006E3,0.20365869140625048E2],[0.12194121093750002E3,0.20453710937500006E2],[0.12203115234374998E3,0.20469384765624994E2],[0.12196005859375006E3,0.20365869140625048E2]]],[[[121.878125,0.20781884765624966E2],[0.12179648437500006E3,20.7466309],[0.12184785156250003E3,0.20841259765624983E2],[121.878125,0.20781884765624966E2]]]]}}],"_labels":{"PH":"Philippines"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/PK.json b/src/api-umbrella/admin-ui/public/maps/PK.json new file mode 100644 index 000000000..481910666 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/PK.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"PK"},"geometry":{"type":"Polygon","coordinates":[[[76.7668945,35.6617187],[77.0486328,35.1099121],[77.0008789,0.34991992187499996E2],[76.7829102,0.34900195312499996E2],[76.6962891,0.34786914062499996E2],[76.5944336,34.7358398],[76.4567383,34.7561035],[76.1724609,34.6677246],[76.0410156,34.6699219],[75.8621094,34.5602539],[75.7091797,0.34503076171874994E2],[75.4525391,34.5367187],[75.1875,34.6390137],[74.9518555,34.6458496],[74.3003906,34.7653809],[73.9612305,0.34653466796874994E2],[73.8121094,34.4223633],[73.8099609,0.34325341796874994E2],[73.9246094,34.2878418],[73.9794922,0.34191308593749994E2],[73.9039063,34.1080078],[73.9499023,34.0187988],[74.2464844,33.9901855],[74.215625,33.8865723],[74.0009766,33.7881836],[74.0040039,33.6324219],[74.15,0.33506982421874994E2],[74.1177734,33.3841309],[73.9942383,33.2421875],[74.0038086,33.1894531],[74.1262695,33.0754395],[74.3036133,32.9917969],[74.3545898,0.32768701171874994E2],[74.6632813,32.757666],[74.6578125,0.32518945312499994E2],[74.7888672,32.4578125],[74.9873047,0.32462207031249996E2],[75.2336914,0.32372119140624996E2],[75.3334961,32.2791992],[75.2541016,32.140332],[75.0714844,32.0893555],[74.7394531,31.9488281],[74.5555664,0.31818554687499997E2],[74.5099609,0.31712939453124996E2],[74.5939453,0.31465380859374992E2],[74.5176758,0.31185595703124992E2],[74.6103516,0.31112841796874996E2],[74.6328125,31.034668],[74.3803711,30.8934082],[74.3393555,0.30893554687499996E2],[74.215625,0.30768994140624997E2],[74.0089844,30.5196777],[73.8993164,0.30435351562499996E2],[73.8827148,30.3521484],[73.9333984,0.30222070312499994E2],[73.8091797,30.0933594],[73.3816406,29.934375],[73.2311523,29.5506348],[73.1283203,0.29363916015624994E2],[72.9033203,0.29028759765624997E2],[72.3418945,0.28751904296874997E2],[72.2919922,28.6972656],[72.1791992,0.28421777343749994E2],[72.1285156,28.3463379],[71.9480469,0.28177294921874996E2],[71.8703125,27.9625],[71.5429688,27.869873],[71.1847656,27.8316406],[70.8749023,27.7144531],[70.7374023,27.7290039],[70.6491211,0.27835351562499994E2],[70.6291016,0.27937451171874994E2],[70.4885742,0.28023144531249997E2],[70.4037109,0.28025048828124994E2],[70.1445312,27.8490234],[69.8962891,0.27473632812499996E2],[69.5679688,27.1746094],[69.5370117,0.27122949218749994E2],[69.4700195,26.8044434],[69.5069336,26.7426758],[69.7359375,26.6270508],[70.059375,0.26578759765624994E2],[70.1568359,26.4714355],[70.1326172,0.26214794921874997E2],[70.0777344,0.26071972656249997E2],[70.1001953,0.25910058593749994E2],[70.2646484,25.706543],[70.6484375,0.25666943359374997E2],[70.6520508,0.25422900390625003E2],[70.8777344,25.0629883],[71.0478516,24.6877441],[70.9763672,24.61875],[70.9732422,24.4874023],[71.044043,0.24400097656249997E2],[70.8862305,24.34375],[70.8050781,24.2619629],[70.7163086,0.24237988281249997E2],[70.5792969,24.2790527],[70.5467773,24.4183105],[70.2890625,24.3562988],[70.0982422,24.2875],[70.0210938,24.1915527],[69.7162109,24.1726074],[69.5591797,0.24273095703124994E2],[69.1195313,24.2686523],[68.8,24.309082],[68.728125,24.265625],[68.7241211,23.9646973],[68.4886719,0.23967236328124997E2],[68.2825195,23.9279785],[68.1650391,0.23857324218749994E2],[68.1155273,0.23753369140624997E2],[68.0370117,23.8482422],[67.9509766,23.8286133],[67.8599609,23.9026855],[67.819043,0.23828076171874997E2],[67.668457,0.23810986328124997E2],[67.6458008,0.23919873046874997E2],[67.5630859,23.8818359],[67.4768555,0.24018261718749997E2],[67.3652344,0.24091601562500003E2],[67.309375,24.1748047],[67.2886719,24.3677734],[67.1714844,24.7561035],[67.1005859,0.24791943359374997E2],[66.7030273,24.8609375],[66.6822266,0.24928857421874994E2],[66.7098633,25.1113281],[66.6986328,25.2263184],[66.5699219,25.3785156],[66.5338867,25.484375],[66.4286133,0.25575341796874994E2],[66.219043,0.25589892578125003E2],[66.1311523,0.25493261718749988E2],[66.3564453,0.25507373046875003E2],[66.4676758,25.4453125],[66.234668,25.4643555],[65.8835938,0.25419628906249997E2],[65.6796875,0.25355273437500003E2],[65.40625,0.25374316406250003E2],[65.0613281,0.25311083984375003E2],[64.7766602,0.25307324218749997E2],[64.6589844,25.184082],[64.54375,25.2366699],[64.1520508,0.25333447265624997E2],[64.059375,25.4029297],[63.9355469,25.3425293],[0.63720898437500004E2,0.25385888671874994E2],[63.5566406,0.25353173828124994E2],[63.4914063,0.25210839843749994E2],[0.63170019531250006E2,25.2548828],[63.0150391,25.2246582],[62.6647461,25.2647949],[62.5724609,0.25254736328124988E2],[62.315332,0.25134912109374994E2],[0.62198632812500016E2,25.2248535],[62.0894531,0.25155322265625003E2],[61.9079102,0.25131298828124997E2],[61.7436523,25.1381836],[61.5668945,25.1863281],[61.6154297,0.25286132812499996E2],[0.61668652343750004E2,0.25768994140624994E2],[61.7543945,25.8433594],[61.8099609,26.1652832],[61.8698242,26.2424316],[62.0890625,26.3182617],[62.1259766,26.3689941],[62.2393555,26.3570312],[62.3123047,0.26490869140624994E2],[62.4392578,26.5610352],[62.7866211,26.6438965],[63.0929687,26.6323242],[0.63168066406250006E2,0.26665576171874996E2],[0.63186132812500006E2,0.26837597656249997E2],[63.2503906,26.879248],[63.2420898,0.27077685546874996E2],[63.3051758,0.27124560546874996E2],[63.25625,0.27207910156249994E2],[0.63166796875000024E2,0.27252490234374996E2],[0.62915429687500016E2,0.27218408203124994E2],[62.7527344,27.265625],[62.8120117,0.27497021484374997E2],[0.62782324218750006E2,27.8005371],[62.7397461,28.0020508],[62.7625,28.2020508],[62.7175781,28.2527832],[0.62564550781250006E2,28.2351562],[62.3530273,0.28414746093749997E2],[62.0330078,28.4910156],[61.8898438,0.28546533203124994E2],[61.6230469,28.7916016],[61.5085938,0.29006054687499994E2],[61.3378906,0.29264990234374995E2],[61.3183594,0.29372607421874996E2],[60.8433594,0.29858691406249992E2],[0.62373437500000016E2,29.4253906],[62.4765625,29.4083496],[63.5675781,0.29497998046874997E2],[63.9709961,29.4300781],[64.0987305,29.3919434],[64.2661133,29.5069336],[64.5210938,0.29564501953124992E2],[65.0955078,0.29559472656249994E2],[66.1770508,0.29835595703124994E2],[66.3133789,29.9685547],[66.2384766,0.30109619140624996E2],[66.3054688,30.3211426],[66.2869141,30.6079102],[66.397168,0.30912207031249995E2],[66.5667969,30.996582],[66.7313477,31.1945313],[66.9243164,0.31305615234374997E2],[67.0277344,0.31300244140624997E2],[67.115918,31.2429199],[67.2873047,0.31217822265624996E2],[67.452832,0.31234619140624996E2],[67.7378906,0.31343945312499997E2],[67.5782227,0.31506494140624994E2],[67.7398438,0.31548193359374995E2],[68.0171875,31.6779785],[68.1610352,0.31802978515624996E2],[68.4432617,31.7544922],[68.5976562,0.31802978515624996E2],[68.7823242,0.31646435546874994E2],[68.8689453,0.31634228515624997E2],[69.0831055,0.31738476562499994E2],[69.2792969,0.31936816406249992E2],[69.2414063,32.4335449],[69.4053711,32.6827148],[69.5015625,0.33020068359374996E2],[69.7037109,33.0947266],[69.9201172,33.1125],[70.2611328,33.2890137],[70.2841797,0.33369042968749994E2],[70.0566406,0.33719873046874994E2],[69.8680664,33.8976562],[69.8896484,34.0072754],[69.9947266,0.34051806640624996E2],[70.2536133,0.33975976562499994E2],[70.4157227,33.9504395],[70.6540039,0.33952294921874994E2],[70.8484375,33.9818848],[71.0515625,34.049707],[71.0913086,0.34120263671874994E2],[71.0957031,0.34369433593749996E2],[70.965625,34.5303711],[71.2941406,0.34867724609374996E2],[71.4550781,0.34966943359374994E2],[71.6205078,0.35183007812499994E2],[71.5455078,0.35288867187499996E2],[71.6005859,35.4079102],[71.5719727,35.5468262],[71.519043,35.5975098],[71.4275391,35.8337402],[71.3428711,0.35938525390624996E2],[71.1850586,36.0420898],[71.2329102,36.1217773],[71.4632813,0.36293261718749996E2],[71.6205078,36.4364746],[71.7726563,36.4318359],[71.8222656,36.486084],[72.0956055,36.6337402],[72.1567383,36.7008789],[72.4311523,36.7658203],[72.6228516,36.8295898],[73.1167969,0.36868554687499994E2],[73.7691406,0.36888476562499996E2],[74.0018555,36.8230957],[74.5414063,37.022168],[74.6921875,37.0357422],[74.8892578,0.36952441406249996E2],[75.0539063,36.9871582],[75.3466797,0.36913476562499994E2],[75.4242188,36.7382324],[75.6671875,0.36741992187499996E2],[75.8402344,0.36649707031249996E2],[75.9330078,36.521582],[75.9744141,36.3824219],[75.9686523,0.36168847656249994E2],[75.9048828,36.0884766],[75.9451172,36.0175781],[76.0708984,35.9830078],[76.1478516,35.8290039],[76.2516602,35.8109375],[76.5512695,35.8870605],[76.5634766,35.772998],[76.7668945,35.6617187]]]}}],"_labels":{"PK":"Pakistan"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/PL.json b/src/api-umbrella/admin-ui/public/maps/PL.json new file mode 100644 index 000000000..0b91c3368 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/PL.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"PL"},"geometry":{"type":"Polygon","coordinates":[[[0.19604394531250023E2,54.4591797],[19.6442383,0.54447070312499996E2],[20.2082031,54.420752],[22.168457,54.3598633],[0.22731835937500023E2,54.3500977],[22.8237305,54.3958008],[0.23015527343750023E2,54.3483398],[23.0421875,54.3041992],[23.1703125,54.2814453],[0.23370117187499996E2,0.54200488281249996E2],[0.23453613281249996E2,54.143457],[0.23481347656250023E2,54.0790039],[0.23477636718750006E2,53.9589355],[0.23598925781250017E2,53.5992187],[23.7892578,53.2709473],[0.23887109375000023E2,53.0275391],[0.23915429687500023E2,52.7702637],[0.23844726562499996E2,52.664209],[0.23479589843750006E2,52.5515625],[0.23410937500000017E2,52.5162109],[23.2041016,52.3378906],[23.1969727,52.2569336],[0.23458398437500023E2,52.1695312],[0.23597949218750017E2,0.52103076171874996E2],[0.23652441406250006E2,52.0403809],[23.6074219,0.51879785156249994E2],[23.6256836,51.8093262],[23.5448242,0.51710253906249996E2],[0.23539648437500006E2,51.6188965],[23.6588867,51.4489746],[23.6644531,51.3100586],[0.23863476562500008E2,51.1262207],[0.23938085937500006E2,50.9925293],[0.24105761718750017E2,50.8449707],[0.23978417968750023E2,50.7855957],[0.24046289062500023E2,0.50722802734374994E2],[24.0947266,50.617041],[0.24089941406250006E2,50.5304687],[23.9726562,0.50410058593749994E2],[0.23711718750000017E2,50.3773438],[0.23506152343750017E2,50.229834],[0.23264453125000017E2,50.0728516],[23.0363281,0.49899072265624994E2],[0.22706152343750006E2,49.6062012],[0.22649414062499996E2,49.5390137],[22.7324219,49.295166],[0.22705664062500006E2,0.49171191406249996E2],[0.22847070312500023E2,49.08125],[22.8097656,49.020752],[0.22579980468750023E2,0.49077197265624996E2],[0.22473046875000023E2,49.0812988],[0.22020117187500006E2,0.49209521484374996E2],[0.21967675781250023E2,49.2990723],[0.21890136718749996E2,49.343457],[21.6396484,49.4119629],[21.3504883,0.49428759765624996E2],[0.21079394531250017E2,0.49418261718749996E2],[20.9472656,49.3170898],[20.7995117,0.49328662109374996E2],[0.20616113281250023E2,49.3916992],[0.20362988281250008E2,49.3852539],[20.1636719,49.3164062],[0.20057617187499996E2,0.49181298828124994E2],[0.19916113281250006E2,49.2213867],[0.19756640625000014E2,0.49204394531249996E2],[0.19787988281250023E2,49.2699707],[19.7739258,49.372168],[0.19630273437500023E2,49.4066406],[19.4416016,49.5977051],[19.2501953,49.5114258],[19.1494141,49.4],[18.9683594,49.3962402],[18.9381836,49.498291],[18.8322266,0.49510791015624996E2],[0.18806933593750017E2,49.6137207],[0.18594628906250023E2,49.7578125],[0.18562402343750023E2,49.8793457],[0.18348437500000017E2,0.49929833984374994E2],[0.18305273437500006E2,49.9140625],[0.18028320312499996E2,50.0352539],[0.17874804687500014E2,49.9722656],[17.7916992,50.0065918],[17.5893555,50.1574707],[0.17709277343750017E2,50.1935547],[0.17720117187500023E2,0.50298632812499996E2],[0.17554589843750023E2,50.2640625],[17.4152344,50.2547852],[17.1519531,0.50378320312499994E2],[16.8800781,0.50427050781249996E2],[0.16989648437500023E2,50.2369141],[16.8417969,50.1867187],[0.16679101562500023E2,0.50097460937499996E2],[16.5966797,50.1219238],[0.16487597656250017E2,50.2483887],[0.16334179687500008E2,50.3668945],[0.16210351562500023E2,0.50423730468749994E2],[16.3566406,50.5004883],[0.16419726562500017E2,50.5736328],[16.2822266,50.6556152],[0.16007226562500023E2,0.50611621093749996E2],[0.15948535156250017E2,50.6702637],[0.15730566406250006E2,50.7396973],[0.15354394531250021E2,50.8117676],[0.15277050781250011E2,50.8830078],[0.15258593750000017E2,0.50958544921874996E2],[14.99375,51.0143555],[0.14982910156249998E2,50.8865723],[14.809375,50.8589844],[0.14963867187499998E2,51.0951172],[0.15016601562499998E2,51.2527344],[0.14905957031250013E2,51.4633301],[0.14724707031250004E2,51.523877],[0.14738671875000025E2,51.6271484],[0.14623925781250023E2,0.51770800781249996E2],[0.14601660156250006E2,51.832373],[0.14674902343750006E2,0.51904833984374996E2],[0.14752539062500004E2,0.52081835937499996E2],[0.14704589843749998E2,52.1102051],[0.14705371093750015E2,52.2074707],[0.14554589843750021E2,52.359668],[0.14619433593750015E2,52.5285156],[0.14514062500000021E2,52.6456055],[0.14253710937500015E2,0.52782519531249996E2],[0.14128613281250011E2,0.52878222656249996E2],[0.14193652343750017E2,52.9823242],[0.14293164062500011E2,53.0267578],[0.14368554687500021E2,53.1055664],[14.4145508,53.2834961],[0.14298730468750023E2,0.53556445312499996E2],[0.14258886718750006E2,53.7296387],[14.5834961,53.6393555],[0.14552148437500021E2,53.7073242],[0.14558398437500017E2,53.8231934],[0.14213671875000017E2,53.870752],[14.2114258,53.9503418],[0.14384179687500023E2,53.924707],[0.14715722656250023E2,54.0183105],[0.15288378906250017E2,54.1398926],[15.9,0.54253955078124996E2],[0.16186328125000017E2,54.2903809],[0.16375585937500006E2,54.4368652],[16.5597656,54.5538086],[16.8854492,54.5963867],[17.0070313,54.6518555],[17.2619141,0.54729541015624996E2],[17.8429688,0.54816699218749996E2],[0.18085644531250008E2,54.8358398],[18.3234375,0.54838183593749996E2],[18.7592773,54.6845703],[0.18799609375000017E2,0.54633349609374996E2],[0.18678320312500006E2,54.6652832],[18.5015625,0.54741503906249996E2],[0.18436230468750008E2,54.7447266],[18.5871094,54.5128906],[18.6696289,54.4309082],[0.18836425781249996E2,54.3695801],[18.9762695,54.3489258],[0.19407128906250023E2,54.386084],[0.19604394531250023E2,54.4591797]]]}}],"_labels":{"PL":"Poland"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/PM.json b/src/api-umbrella/admin-ui/public/maps/PM.json new file mode 100644 index 000000000..ff9764da2 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/PM.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"PM"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-56.1507324,46.7624023],[-56.2432617,46.7671875],[-56.1526367,0.46811083984375045E2],[-56.1507324,46.7624023]]],[[[-56.2670898,0.46838476562500034E2],[-56.3541992,46.7953125],[-56.3847656,46.8194336],[-56.3325684,46.9159668],[-0.56386914062499955E2,47.0679687],[-56.3646484,47.0989746],[-56.2873535,0.47070996093749976E2],[-0.56314892578124926E2,46.9538574],[-56.2554687,0.46860986328124994E2],[-56.2670898,0.46838476562500034E2]]]]}}],"_labels":{"PM":"St. Pierre and Miquelon"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/PN.json b/src/api-umbrella/admin-ui/public/maps/PN.json new file mode 100644 index 000000000..5b5328ede --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/PN.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"PN"},"geometry":{"type":"Polygon","coordinates":[[[-128.290088,-24.3973633],[-128.3,-24.4125977],[-128.342187,-24.3707031],[-128.350195,-24.3402344],[-128.303613,-24.3335937],[-128.290088,-24.3973633]]]}}],"_labels":{"PN":"Pitcairn Is."}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/PR.json b/src/api-umbrella/admin-ui/public/maps/PR.json new file mode 100644 index 000000000..70e2fb5d2 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/PR.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"PR"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-67.8724609,0.18059863281250017E2],[-67.9370605,0.18100634765625045E2],[-67.8433594,18.1039551],[-67.8724609,0.18059863281250017E2]]],[[[-65.4255859,0.18105615234374994E2],[-65.5550781,18.107666],[-65.5722168,0.18137304687499977E2],[-65.4771484,18.1650391],[-65.3662109,18.161084],[-65.294873,0.18133349609375045E2],[-65.4255859,0.18105615234374994E2]]],[[[-66.1293945,0.18444921875000034E2],[-66.0684082,0.18428027343750045E2],[-66.0926758,0.18468994140625057E2],[-65.8787598,18.4438477],[-65.7555664,18.4016113],[-65.6288086,0.18381396484375045E2],[-65.6208496,0.18242333984374966E2],[-65.7184082,18.1866699],[-65.8341309,18.0573242],[-65.9708008,17.9743652],[-66.135498,17.9494629],[-66.4085449,0.17950585937500048E2],[-66.510791,17.9870117],[-66.5984375,0.17977880859375006E2],[-66.7724121,0.17986572265624996E2],[-66.9,0.17947900390625023E2],[-67.0133301,0.17967871093750006E2],[-67.1423828,0.17966699218750023E2],[-67.196875,0.17994189453125045E2],[-67.1724609,18.2242187],[-67.2640625,0.18364599609375006E2],[-67.1717773,0.18435791015625025E2],[-67.1586426,0.18499218749999983E2],[-67.0596191,0.18522167968749955E2],[-66.8128906,0.18492529296875034E2],[-66.1885742,18.4757813],[-66.1293945,0.18444921875000034E2]]]]}}],"_labels":{"PR":"Puerto Rico"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/PT.json b/src/api-umbrella/admin-ui/public/maps/PT.json new file mode 100644 index 000000000..49e42e3e9 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/PT.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"PT"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-0.17190869140624926E2,32.8686035],[-0.17054492187499932E2,32.8158691],[-16.9291992,0.32841406250000084E2],[-0.16693261718749966E2,32.7580078],[-0.16837402343749943E2,0.32648291015625006E2],[-0.17018261718749926E2,32.662793],[-17.1711914,32.721875],[-0.17241015625000017E2,0.32807373046875085E2],[-0.17190869140624926E2,32.8686035]]],[[[-25.0273438,36.9599609],[-25.1599121,0.36943359375000085E2],[-0.25198388671874962E2,36.9965332],[-0.25082910156249966E2,0.37024023437500084E2],[-25.0273438,36.9599609]]],[[[-0.25648974609374985E2,0.37840917968750055E2],[-25.1819336,37.8378906],[-0.25251123046874937E2,37.7350098],[-0.25439013671874957E2,37.715332],[-25.7344727,37.7628906],[-0.25833691406249983E2,0.37826074218749966E2],[-0.25783740234375014E2,37.9111328],[-0.25648974609374985E2,0.37840917968750055E2]]],[[[-28.1472656,38.4526855],[-0.28064794921875034E2,38.4127441],[-0.28231152343749983E2,0.38384667968749994E2],[-28.4544922,38.4086426],[-28.5311523,38.4625488],[-28.5102539,38.5530273],[-0.28402148437500014E2,38.5533691],[-28.1472656,38.4526855]]],[[[-0.28641308593749983E2,38.525],[-28.7438477,38.5223633],[-28.842041,38.5984375],[-28.6977539,0.38638476562500095E2],[-0.28641308593749983E2,38.525]]],[[[-0.27778466796874966E2,38.5556152],[-0.27825878906249923E2,0.38543554687500034E2],[-28.1872559,38.6553711],[-28.3106445,0.38743896484375085E2],[-27.9626465,38.6363281],[-0.27778466796874966E2,38.5556152]]],[[[-0.27075244140624957E2,0.38643457031250044E2],[-27.302832,38.6610352],[-27.3859375,0.38765820312499926E2],[-0.27259667968749966E2,38.8026855],[-27.0419434,38.7412109],[-0.27075244140624957E2,0.38643457031250044E2]]],[[[-0.31137109374999962E2,39.4069336],[-31.1813477,0.39358935546875045E2],[-31.282959,39.3940918],[-31.2608398,0.39496777343749976E2],[-31.138623,39.4794434],[-0.31137109374999962E2,39.4069336]]],[[[-8.17353516,0.41819970703124966E2],[-8.09443359,41.814209],[-7.92084961,41.8836426],[-7.69306641,0.41888476562500074E2],[-7.40361328,0.41833691406249926E2],[-7.20961914,0.41895263671874936E2],[-7.14711914,41.9811523],[-7.03046875,41.9506348],[-6.83320312,0.41964160156250045E2],[-6.61826172,41.9423828],[-6.55751953,41.8741211],[-6.5421875,0.41672509765625044E2],[-6.39169922,0.41665380859375006E2],[-6.24311523,41.6018066],[-6.2125,41.5320312],[-6.403125,41.3753906],[-6.69013672,41.214502],[-6.77578125,41.1077148],[-6.9284668,41.0091309],[-6.85771484,40.8783203],[-6.81835938,40.6540527],[-6.84794922,40.4109863],[-6.81015625,0.40343115234375006E2],[-7.01469727,40.2083496],[-7.02783203,40.142627],[-6.89609375,40.0218262],[-6.91118164,39.9371094],[-7.03671875,39.7139648],[-7.11767578,0.39681689453125074E2],[-7.45410156,39.6806641],[-7.53569336,39.6615723],[-7.44511719,39.5361816],[-7.33544922,0.39465136718749925E2],[-7.30576172,39.3381348],[-7.17241211,0.39135205078124955E2],[-6.99794922,0.39056445312500074E2],[-7.04604492,38.9070313],[-7.28154297,38.7145508],[-7.34301758,38.4574219],[-7.10639648,38.1810059],[-6.95756836,0.38187890625000044E2],[-7.02285156,38.0447266],[-7.18544922,0.38006347656250114E2],[-7.44394531,37.7282715],[-7.50351562,0.37585498046875074E2],[-7.40615234,37.1794434],[-7.49360352,37.1683105],[-7.83413086,37.0057129],[-7.93969727,37.0054199],[-8.13676758,37.0770508],[-8.59765625,0.37121337890625114E2],[-8.73911133,37.0746094],[-8.99780273,37.0322754],[-8.81416016,0.37430810546874994E2],[-8.7918457,37.7328125],[-8.87895508,37.9586914],[-8.80224609,38.1838379],[-8.8109375,0.38299755859374926E2],[-8.88110352,38.4466797],[-8.66831055,0.38424316406250085E2],[-8.79887695,0.38518164062500006E2],[-9.21328125,38.4480957],[-9.25039062,38.6567383],[-9.09331055,0.38696679687499966E2],[-8.97705078,38.8029297],[-9.00048828,38.9030273],[-8.95429687,0.39016064453124926E2],[-0.9135791015624989E1,0.38742773437500034E2],[-9.35673828,0.38697900390625016E2],[-9.47412109,38.7308594],[-0.9474755859374937E1,0.38852929687499994E2],[-9.41435547,0.39112109375000045E2],[-9.35283203,0.39248144531250034E2],[-9.37475586,39.3382812],[-0.9148291015624949E1,39.5425781],[-8.8378418,40.1156738],[-8.88662109,40.1794434],[-8.77241211,40.6056641],[-8.68461914,40.7525391],[-8.65556641,0.41029492187499955E2],[-8.73837891,0.41284667968750085E2],[-8.81083984,41.6519531],[-8.87822266,41.8320801],[-8.68295898,42.0084961],[-8.53808594,42.0693359],[-8.21308594,42.1336914],[-8.12998047,42.0181641],[-8.22475586,41.8958496],[-8.17353516,0.41819970703124966E2]]]]}}],"_labels":{"PT":"Portugal"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/PW.json b/src/api-umbrella/admin-ui/public/maps/PW.json new file mode 100644 index 000000000..2622cc117 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/PW.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"PW"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.13117236328124997E3,3.0262207],[0.13117236328124997E3,3.0262207],[0.13117236328124997E3,3.0262207],[0.13117236328124997E3,3.0262207]]],[[[134.59541,7.38203125],[0.13453466796874997E3,7.36064453],[134.50625,7.43710938],[0.13451572265625012E3,7.52578125],[0.13455595703125007E3,7.59394531],[0.13460869140625007E3,7.62358398],[0.13465117187500002E3,7.71210937],[0.13465957031250005E3,7.66328125],[134.632715,7.50131836],[0.13459824218750003E3,7.43828125],[134.59541,7.38203125]]]]}}],"_labels":{"PW":"Palau"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/PY.json b/src/api-umbrella/admin-ui/public/maps/PY.json new file mode 100644 index 000000000..bd6702cb8 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/PY.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"PY"},"geometry":{"type":"Polygon","coordinates":[[[-58.1597656,-0.20164648437500006E2],[-58.1246094,-20.293457],[-58.0022461,-0.20465429687500006E2],[-57.9790527,-0.20657324218750002E2],[-57.9151367,-20.690332],[-57.9004883,-20.8730469],[-57.8302246,-20.9979492],[-57.8269531,-21.1335937],[-57.8864746,-21.2658203],[-57.8732422,-21.3550781],[-57.9459961,-21.494043],[-57.9162109,-21.6991211],[-0.57949316406249984E2,-21.8511719],[-0.57932763671874994E2,-0.21910742187500006E2],[-57.9856934,-0.22046386718749996E2],[-57.9559082,-0.22109179687500003E2],[-57.8203125,-0.22142285156250008E2],[-57.7210937,-22.0992187],[-0.57568945312499984E2,-0.22181933593750003E2],[-57.3308594,-0.22215039062500008E2],[-57.2382324,-22.1952148],[-56.9372559,-0.22271289062500003E2],[-56.6330078,-22.2348633],[-56.5238281,-22.1025391],[-56.394873,-22.0926758],[-56.3518555,-22.1786133],[-56.1898438,-22.2811523],[-55.9914062,-22.2811523],[-55.8491699,-22.3076172],[-55.7532715,-22.4101562],[-55.7466309,-0.22512695312499996E2],[-55.6176758,-22.6714844],[-55.6540527,-0.22810351562500003E2],[-55.601123,-23.0947266],[-0.55561425781249994E2,-23.1542969],[-0.55554833984374994E2,-0.23319628906250003E2],[-0.55518457031249994E2,-23.415625],[-55.5382812,-23.580957],[-0.55458886718749994E2,-23.6867188],[-55.4423828,-0.23865332031250006E2],[-55.3663086,-23.9910156],[-55.1943359,-24.0174805],[-54.982666,-23.9745117],[-54.6254883,-23.8125],[-54.4402344,-23.9017578],[-0.54241796874999984E2,-24.0472656],[-54.3182617,-24.128125],[-54.2810059,-24.3060547],[-54.3129395,-24.528125],[-0.54412988281249994E2,-0.24867480468750003E2],[-54.4731445,-25.2202148],[-54.6105469,-0.25432714843750006E2],[-54.6319336,-26.0057617],[-54.6777344,-26.3087891],[-54.7550781,-26.5329102],[-54.8254883,-26.6522461],[-54.888916,-26.6667969],[-54.9621582,-26.759375],[-55.1296387,-0.26886035156250003E2],[-55.1359375,-26.9311523],[-55.3458008,-0.26973144531249996E2],[-0.55426660156249994E2,-27.0092773],[-0.55496728515624994E2,-0.27115332031250002E2],[-55.5648926,-27.15],[-55.5937988,-27.2880859],[-55.7146484,-27.4148437],[-55.7899902,-27.4164063],[-55.9514648,-27.3256836],[-56.1640625,-27.3214844],[-56.3105469,-27.4387695],[-0.56370507812499994E2,-27.5374023],[-0.56437158203124994E2,-0.27553808593750002E2],[-56.5105469,-27.4878906],[-56.6033691,-0.27467871093750006E2],[-56.8051758,-0.27484667968750003E2],[-56.9739746,-27.4357422],[-57.1118164,-27.4701172],[-57.3912598,-27.4304687],[-57.812207,-27.3166016],[-58.1682617,-27.2734375],[-0.58604833984374984E2,-27.3143555],[-0.58641748046874994E2,-27.1960937],[-58.6186035,-0.27132128906250003E2],[-58.5032227,-27.0294922],[-0.58485253906249994E2,-0.26968457031250008E2],[-58.3564453,-0.26890039062500005E2],[-0.58191308593749994E2,-0.26629980468750002E2],[-58.2030273,-0.26381445312500006E2],[-58.0824219,-26.1385742],[-57.890625,-0.26006542968750008E2],[-57.8652344,-25.9069336],[-57.7547852,-0.25697070312500003E2],[-57.5716797,-0.25534179687499996E2],[-57.5871582,-25.4050781],[-57.8216797,-25.1364258],[-57.9598145,-25.0492188],[-58.1364746,-0.24977148437500006E2],[-0.58365380859374994E2,-0.24959277343750003E2],[-58.5196289,-0.24842871093750006E2],[-0.58724023437499994E2,-24.7866211],[-59.1872559,-0.24562304687500003E2],[-59.3729492,-24.4539062],[-59.6085937,-24.2667969],[-0.59892480468749994E2,-0.24093554687500003E2],[-60.1103027,-24.0091797],[-60.262207,-0.24013964843750003E2],[-60.5053711,-23.9635742],[-60.8398438,-23.8581055],[-0.61032910156250004E2,-0.23755664062500003E2],[-61.0847168,-23.6564453],[-61.2083984,-23.5570313],[-0.61505517578124994E2,-23.3919922],[-0.61513037109374984E2,-0.23360449218750006E2],[-61.6794922,-23.26875],[-61.9280273,-23.0592773],[-62.0666016,-0.22869433593750003E2],[-62.2141602,-0.22612402343750006E2],[-0.62372509765625004E2,-22.4391602],[-62.6259766,-0.22290429687500005E2],[-0.62628515624999984E2,-22.1839844],[-62.2766602,-21.0660156],[-62.2763184,-20.5625],[-61.9169434,-20.0553711],[-61.7568359,-19.6453125],[-61.5118164,-0.19606445312499996E2],[-60.007373,-19.2975586],[-59.0905273,-0.19286230468750006E2],[-58.1801758,-19.8178711],[-58.1399414,-19.9988281],[-58.1597656,-0.20164648437500006E2]]]}}],"_labels":{"PY":"Paraguay"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/QA.json b/src/api-umbrella/admin-ui/public/maps/QA.json new file mode 100644 index 000000000..a211f1566 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/QA.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"QA"},"geometry":{"type":"Polygon","coordinates":[[[51.2679688,0.24607226562500003E2],[50.9660156,0.24573925781249997E2],[50.8043945,0.24789257812499997E2],[50.8467773,0.24888574218749994E2],[50.7773438,0.25177441406249997E2],[50.7628906,0.25444726562499994E2],[50.8686523,0.25612695312499994E2],[51.003125,25.9814453],[51.1081055,26.0805664],[0.51262304687500006E2,0.26153271484374997E2],[51.3890625,0.26011132812499994E2],[0.51543066406250006E2,25.9023926],[51.5722656,0.25781005859374996E2],[51.4853516,0.25524707031250003E2],[0.51601953125000016E2,25.1479492],[51.5869141,24.9648438],[51.4279297,0.24668261718750003E2],[51.2679688,0.24607226562500003E2]]]}}],"_labels":{"QA":"Qatar"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/RE.json b/src/api-umbrella/admin-ui/public/maps/RE.json new file mode 100644 index 000000000..8dce663dc --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/RE.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"RE"},"geometry":{"type":"Polygon","coordinates":[[[55.7973633,-21.3393555],[55.5576172,-21.3583008],[55.3626953,-21.2736328],[0.55232812500000016E2,-0.21058398437500003E2],[55.3113281,-0.20904101562500003E2],[55.4504883,-20.8651367],[55.6619141,-20.90625],[55.8390625,-21.1385742],[55.7973633,-21.3393555]]]}}],"_labels":{"RE":"Reunion"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/RO.json b/src/api-umbrella/admin-ui/public/maps/RO.json new file mode 100644 index 000000000..89f959945 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/RO.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"RO"},"geometry":{"type":"Polygon","coordinates":[[[28.2125,45.4504395],[0.28317675781250017E2,45.3471191],[0.28451269531250006E2,45.2921875],[28.7607422,45.2341309],[28.7817383,0.45309863281249996E2],[0.28894335937500017E2,0.45289941406249994E2],[0.29027441406250006E2,45.3205566],[0.29223535156250026E2,45.4029297],[0.29403710937500023E2,45.4196777],[0.29567675781250017E2,45.3708008],[0.29705859375000014E2,0.45259912109374994E2],[0.29635351562500002E2,0.44979638671874994E2],[0.29557519531250023E2,0.44843408203124994E2],[0.29048242187500023E2,44.7575684],[0.29081054687500004E2,44.7988281],[29.0477539,44.9256836],[29.0953125,44.9750488],[28.9806641,44.9929199],[0.28891503906250023E2,44.9186523],[28.9261719,44.8100098],[28.8490234,44.7163086],[0.28807031250000023E2,44.5650391],[28.8881836,44.5747559],[0.28851757812500008E2,44.5061035],[28.6992188,44.3742187],[0.28645410156250023E2,44.2956543],[0.28658593750000023E2,43.9838379],[0.28585351562500023E2,0.43742236328124996E2],[28.4234375,43.7404785],[0.28221972656250017E2,43.7728516],[28.05,0.43822412109374994E2],[0.27884277343749996E2,0.43987353515624996E2],[0.27738574218750017E2,43.9562988],[27.6708984,43.9978027],[27.4253906,44.0205078],[27.0869141,0.44167382812499994E2],[0.26847753906250006E2,44.1461914],[26.4892578,44.0839844],[26.2158203,44.0072754],[0.25933398437500017E2,43.8705566],[25.8188477,43.7668457],[0.25686132812500006E2,43.7117676],[25.4970703,0.43670800781249994E2],[25.159668,43.6863281],[0.24430566406250023E2,43.7943848],[24.2267578,0.43763476562499996E2],[23.9507812,0.43786669921874996E2],[0.23534570312500023E2,0.43853564453124996E2],[23.2246094,43.873877],[0.22919042968750006E2,43.8344727],[0.22867675781249996E2,0.43864550781249996E2],[0.22868261718750002E2,0.43947900390624994E2],[23.0244141,44.0472168],[23.0285156,44.0779785],[0.22775195312500017E2,0.44195214843749994E2],[0.22683300781250008E2,44.2864746],[0.22530664062500023E2,0.44377978515624996E2],[0.22502343750000023E2,44.4895996],[22.7208984,0.44605517578124996E2],[22.4976562,44.70625],[0.22350683593750006E2,44.676123],[0.22200976562500014E2,0.44560693359374994E2],[0.22093066406250017E2,44.5419434],[22.0269531,44.619873],[0.21909277343750006E2,44.6661133],[0.21636132812500023E2,44.7104492],[21.5231445,0.44790087890624996E2],[21.3600586,44.8266602],[0.21357910156249996E2,44.8618164],[0.21519921875000023E2,44.8808105],[21.5332031,0.44918847656249994E2],[21.3570312,0.44990771484374996E2],[21.4917969,45.1222656],[0.21431445312500017E2,0.45192529296874994E2],[21.2264648,45.2413086],[0.20941796875000023E2,45.365332],[0.20774218750000017E2,0.45484423828124996E2],[20.775,45.7498047],[0.20709277343750017E2,0.45735253906249994E2],[0.20581152343750006E2,45.8694824],[20.3585938,0.45975488281249994E2],[20.2417969,46.1085937],[0.20508105468750017E2,46.1669434],[0.20613671875000023E2,46.1334961],[0.20837011718750002E2,46.2597168],[0.21039843750000017E2,0.46242236328124996E2],[21.1519531,46.3043457],[0.21191796875000023E2,46.3915527],[0.21264550781250023E2,46.4123047],[0.21252246093750017E2,0.46486376953124996E2],[0.21320214843750023E2,46.6078125],[21.4970703,46.7042969],[0.21494433593750017E2,46.7897461],[0.21652636718750017E2,0.46963769531249994E2],[0.21661425781250017E2,47.0438965],[0.21785449218750017E2,47.1381348],[21.8693359,0.47304589843749994E2],[21.9953125,47.3957031],[21.999707,0.47505029296874994E2],[0.22111914062500006E2,47.5720215],[22.290625,47.727832],[22.4914063,47.7725586],[0.22562890625000023E2,0.47759570312499996E2],[22.6767578,47.7990234],[0.22912890625000014E2,47.9642578],[0.23054785156250006E2,48.006543],[0.23139453125000014E2,48.0874023],[23.2026367,0.48084521484374996E2],[23.4082031,47.9899902],[0.23628710937500017E2,47.9958496],[24.1777344,0.47906054687499996E2],[24.484082,47.9471191],[0.24578906250000014E2,0.47931054687499994E2],[0.24893359375000017E2,47.7177734],[25.0738281,47.7457031],[25.1696289,47.8230957],[0.25464257812500023E2,0.47910791015624994E2],[0.26162695312500006E2,47.9925293],[26.2769531,48.1132324],[26.3056641,0.48203759765624994E2],[0.26618945312500014E2,48.2598633],[26.7873047,48.2558105],[0.26980761718750017E2,48.1550293],[27.1520508,0.47959277343749996E2],[0.27336914062499996E2,47.6397461],[27.4492188,47.553125],[0.27614062500000017E2,47.3405273],[27.7679688,0.47227587890624996E2],[0.27853808593750017E2,47.114502],[28.0717773,46.978418],[28.15,46.7920898],[28.2394531,46.6408203],[28.2443359,46.4512695],[28.1191406,46.1386719],[0.28099707031250006E2,45.9726074],[28.1597656,0.45647119140624994E2],[0.28074707031249996E2,45.5989746],[28.2125,45.4504395]]]}}],"_labels":{"RO":"Romania"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/RS.json b/src/api-umbrella/admin-ui/public/maps/RS.json new file mode 100644 index 000000000..1c8f6c67d --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/RS.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"RS"},"geometry":{"type":"Polygon","coordinates":[[[0.20241796875000034E2,46.1085938],[20.3585938,45.9754883],[0.20581152343750063E2,45.8694824],[0.20709277343750074E2,45.7352539],[20.775,0.45749804687500074E2],[0.20774218750000045E2,0.45484423828125095E2],[20.9417969,45.365332],[21.2264648,0.45241308593750034E2],[0.21431445312500017E2,45.1925293],[0.21491796875000063E2,45.1222656],[0.21420703125000045E2,45.032959],[0.21357031250000034E2,0.44990771484375074E2],[0.21533203125000057E2,44.9188477],[0.21519921875000023E2,44.8808105],[0.21357910156250053E2,0.44861816406250085E2],[21.3600586,44.8266602],[21.5231445,0.44790087890625045E2],[21.6361328,44.7104492],[21.7402344,44.6806641],[0.21909277343750006E2,0.44666113281250006E2],[22.0269531,44.619873],[0.22093066406250074E2,44.5419434],[0.22200976562500014E2,44.5606934],[0.22350683593750063E2,44.676123],[0.22497656250000063E2,44.70625],[0.22720898437500068E2,44.6055176],[0.22700781250000063E2,0.44555517578125034E2],[0.22620117187500057E2,0.44562353515625006E2],[22.5023438,44.4895996],[22.5306641,44.3779785],[0.22647949218750057E2,44.3164551],[0.22705078125000053E2,44.237793],[0.22626562500000034E2,44.1940918],[0.22597460937500074E2,44.075293],[22.4208008,44.0074219],[22.3654297,43.8621094],[0.22394824218750074E2,43.7066406],[22.4741211,0.43602246093749976E2],[0.22499121093750006E2,0.43518847656250045E2],[22.5545898,43.4544922],[22.7675781,43.3541504],[0.22859570312499983E2,43.2523438],[0.22976855468749985E2,43.1879883],[22.9422852,43.0970703],[0.22799902343750002E2,0.42985742187499966E2],[0.22706152343750006E2,42.8839355],[22.5581055,42.8784668],[22.4667969,42.8424805],[22.465625,42.7507813],[0.22436230468749983E2,42.6291016],[0.22472070312500023E2,42.5433105],[0.22524218750000074E2,42.5039063],[0.22523535156250006E2,42.4409668],[22.4220703,0.42328857421875085E2],[0.22344042968750045E2,42.3139648],[22.2397461,42.3581543],[0.22052050781250074E2,42.3046387],[0.21904101562500017E2,0.42322070312500045E2],[21.7392578,42.2677246],[21.5625,42.2475098],[21.5189453,42.328418],[21.6098633,42.3874512],[21.7306641,42.595459],[0.21752929687500057E2,42.6698242],[21.6625,42.6814941],[21.390625,42.751416],[21.4030273,42.831543],[0.21237109375000045E2,42.9132324],[21.2226563,0.42956201171874994E2],[0.21057031250000023E2,43.0916992],[0.20844433593750065E2,43.1734375],[0.20823828125000034E2,43.2379395],[0.20763378906250068E2,43.2585937],[0.20609667968750014E2,43.178418],[20.6576172,43.0998535],[20.6240234,43.0341797],[0.20475097656250057E2,0.42953027343749966E2],[0.20468847656250006E2,42.8579102],[0.20344335937500063E2,42.8279297],[0.20339941406250034E2,0.42892871093750045E2],[0.19944042968750036E2,43.0816406],[0.19781152343750076E2,43.1097656],[0.19551562500000017E2,43.2122559],[0.19414648437500006E2,0.43342822265625074E2],[19.21875,43.4499512],[19.1943359,0.43533300781250055E2],[0.19254492187500063E2,43.584375],[0.19360351562500057E2,43.593457],[0.19451269531250002E2,43.5620605],[0.19495117187500057E2,0.43642871093750074E2],[0.19488183593750076E2,0.43703564453124926E2],[0.19245019531249994E2,43.9650391],[0.19305273437500034E2,43.9933594],[0.19449414062499983E2,43.9780273],[19.5495117,43.9871094],[0.19583789062500017E2,0.44043457031250085E2],[19.3388672,0.44225830078125114E2],[19.1518555,44.3025391],[0.19118457031250074E2,44.3599609],[19.1513672,44.5273437],[19.2918945,44.6967773],[19.3344727,44.7806641],[0.19348632812500057E2,0.44880908203125074E2],[19.2368164,0.44914257812499926E2],[0.19007128906250045E2,44.8691895],[19.0095703,44.9193848],[19.0605469,44.9109863],[19.1,44.9737793],[0.19062890625000023E2,45.137207],[0.19129687500000045E2,0.45151708984375084E2],[19.1369141,45.1962402],[0.19205957031250048E2,0.45167773437500074E2],[0.19388085937500023E2,0.45172998046875044E2],[19.4,45.2125],[0.19330273437500036E2,45.2680664],[0.19093066406250045E2,45.3369141],[0.19004687500000074E2,45.3995117],[0.19007617187500045E2,45.4658203],[0.19055078125000023E2,45.5272461],[0.18953710937499977E2,45.5580078],[18.9178711,45.6008301],[18.9472656,45.6558105],[0.18839062499999983E2,45.8357422],[18.8935547,45.8655273],[0.18905371093750006E2,0.45931738281250006E2],[0.19015722656250006E2,45.9597168],[0.19087304687500023E2,0.46016162109375074E2],[0.19208398437499994E2,45.9844238],[0.19392871093750017E2,46.0498047],[19.5307617,46.1551758],[19.6134766,46.1691895],[0.19844433593749983E2,46.1458984],[0.19934082031250057E2,0.46161474609375006E2],[0.20161425781250017E2,46.1418945],[0.20241796875000034E2,46.1085938]]]}}],"_labels":{"RS":"Serbia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/RU.json b/src/api-umbrella/admin-ui/public/maps/RU.json new file mode 100644 index 000000000..c1e33e17b --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/RU.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"RU"},"geometry":{"type":"MultiPolygon","coordinates":[[[[146.045605,0.43409326171874966E2],[146.045605,0.43409326171874966E2],[146.045605,0.43409326171874966E2],[146.045605,0.43409326171874966E2]]],[[[145.881543,43.4595215],[145.881543,43.4595215],[145.881543,43.4595215],[145.881543,43.4595215]]],[[[0.14635878906250005E3,43.6253906],[0.14635878906250005E3,43.6253906],[0.14635878906250005E3,43.6253906],[0.14635878906250005E3,43.6253906]]],[[[0.14671396484375012E3,0.43743798828124994E2],[146.621973,43.8129883],[146.824609,43.860498],[0.14689902343750006E3,43.8041504],[0.14671396484375012E3,0.43743798828124994E2]]],[[[0.14620761718750006E3,44.4976562],[0.14635595703125003E3,44.4246094],[146.567773,44.4404297],[0.14629619140625002E3,44.280957],[0.14611230468750003E3,44.2459473],[0.14591406249999997E3,44.1037109],[0.14576699218749997E3,43.9407227],[145.586816,43.8451172],[145.555859,43.6645996],[0.14543925781250002E3,43.7370605],[0.14546171875000005E3,0.43870898437500045E2],[0.14566630859375002E3,0.43999072265625045E2],[0.14594042968749997E3,44.2726562],[0.14611210937500007E3,0.44500146484374966E2],[0.14620761718750006E3,44.4976562]]],[[[148.599512,45.317627],[0.14826230468750006E3,45.2168457],[147.91377,44.9903809],[0.14765781250000012E3,44.9771484],[0.14756308593750006E3,44.8355469],[0.14731015625000006E3,44.6776367],[0.14720742187499997E3,0.44553564453125034E2],[146.897461,44.4042969],[146.974219,44.5657227],[0.14714091796875007E3,44.6633301],[0.14724658203124997E3,0.44856054687500006E2],[0.14743046875000005E3,44.9452148],[147.557813,0.45062451171874955E2],[0.14788554687500007E3,45.2256348],[147.964551,45.3777344],[0.14805605468750002E3,0.45262109375000044E2],[0.14832421874999997E3,45.2824219],[0.14861230468749994E3,45.484668],[148.812207,45.5100098],[0.14879072265625007E3,45.3239746],[148.599512,45.317627]]],[[[0.47983007812500006E2,45.4882324],[0.47983007812500006E2,45.4882324],[0.47983007812500006E2,45.4882324],[0.47983007812500006E2,45.4882324]]],[[[0.14968769531250004E3,45.642041],[0.14944707031250002E3,0.45593359375000034E2],[0.14966591796875005E3,0.45839794921874955E2],[0.14979628906250005E3,45.8760742],[149.962305,46.0219238],[0.15034863281250003E3,46.2134277],[150.553125,0.46208544921875045E2],[0.15023457031250004E3,0.46012304687500034E2],[150.19502,45.9332031],[0.14988339843750012E3,45.7831543],[0.14968769531250004E3,45.642041]]],[[[0.15200205078125006E3,46.897168],[151.815625,46.7871094],[0.15171533203125003E3,0.46852685546874994E2],[0.15186435546875003E3,0.46868994140625034E2],[0.15216582031250002E3,0.47110449218750006E2],[0.15228886718750007E3,47.1421875],[0.15200205078125006E3,46.897168]]],[[[0.15310107421874994E3,0.47762939453124964E2],[0.15310107421874994E3,0.47762939453124964E2],[0.15310107421874994E3,0.47762939453124964E2],[0.15310107421874994E3,0.47762939453124964E2]]],[[[154.08125,48.7902832],[0.15412636718750005E3,0.48904443359375016E2],[0.15422841796875005E3,48.8920898],[154.08125,48.7902832]]],[[[0.15481044921875005E3,49.3120117],[0.15461093750000006E3,49.294043],[0.15461298828125004E3,49.3806152],[0.15482490234375004E3,49.6469238],[154.899609,49.6303711],[0.15480234375000006E3,49.4682617],[0.15481044921875005E3,49.3120117]]],[[[155.921094,50.3021973],[155.792383,50.2020508],[0.15551640625000007E3,50.1456055],[0.15539716796875004E3,50.0412598],[155.243066,0.50094628906250016E2],[0.15521835937500012E3,50.2978516],[0.15543388671875007E3,0.50368945312500045E2],[0.15568017578124997E3,0.50400732421875034E2],[0.15588476562499997E3,50.6841309],[156.096875,50.771875],[0.15612285156250002E3,0.50671289062499994E2],[0.15604443359375003E3,0.50451757812500034E2],[155.921094,50.3021973]]],[[[0.15640507812500002E3,50.6576172],[0.15632578125000012E3,50.6390625],[0.15616796874999994E3,50.7318848],[0.15637646484374994E3,50.8621094],[156.4875,50.8429687],[0.15640507812500002E3,50.6576172]]],[[[0.15564482421875002E3,50.8219238],[0.15555351562500002E3,0.50810595703125045E2],[0.15546738281250006E3,50.9135742],[0.15563964843749997E3,0.50910498046875055E2],[0.15564482421875002E3,50.8219238]]],[[[142.761035,0.54393945312499966E2],[0.14297617187500006E3,54.1409668],[0.14291796875000003E3,53.7942383],[0.14322363281250003E3,53.2960449],[0.14332470703125003E3,52.9630859],[0.14332363281250005E3,52.6135742],[0.14317226562500005E3,52.3493652],[143.155566,52.0837402],[0.14329472656250002E3,51.7443359],[0.14332050781250004E3,51.583252],[143.455469,51.4714844],[0.14353417968749997E3,51.2462891],[0.14373603515625004E3,50.5067383],[0.14381601562500006E3,50.2826172],[0.14404794921875003E3,49.895752],[144.199609,49.5497559],[0.14427207031250012E3,0.49311328125000045E2],[144.431738,0.49051074218750045E2],[0.14468554687499997E3,0.48871240234374994E2],[144.71377,48.6402832],[0.14462099609375005E3,0.48814843749999966E2],[0.14412548828124997E3,49.2085449],[0.14396777343750003E3,49.2763184],[143.732324,49.3120117],[143.382227,0.49290673828124994E2],[143.10498,0.49198828125000034E2],[0.14257421874999997E3,48.072168],[0.14255693359375002E3,47.7378906],[0.14267011718750004E3,0.47536914062500045E2],[142.863965,47.3917969],[143.005566,47.2227051],[0.14308925781249997E3,47.0007813],[0.14321767578125005E3,46.794873],[0.14348564453125002E3,0.46752050781250006E2],[0.14358066406250012E3,0.46360693359375034E2],[0.14343164062500003E3,46.0286621],[0.14335214843750006E3,46.4762207],[0.14328232421875006E3,46.5589844],[0.14282929687500004E3,0.46605273437500045E2],[0.14269189453124997E3,46.7108398],[0.14257802734375002E3,0.46700781250000034E2],[142.406445,46.5546875],[0.14220859375000006E3,46.0888672],[0.14207714843749994E3,45.917041],[0.14196162109375004E3,46.0134766],[0.14183037109375002E3,0.46451074218749966E2],[0.14186650390625002E3,0.46694189453125034E2],[142.038672,47.1402832],[141.964063,47.5874512],[0.14218173828125012E3,48.0133789],[0.14213535156250006E3,48.2900879],[0.14189726562500007E3,48.6546875],[0.14186630859375003E3,0.48750097656250006E2],[0.14202011718750006E3,0.49078466796875034E2],[142.142285,49.5691406],[142.153125,50.216748],[0.14207109375000007E3,0.50514990234375034E2],[142.100488,0.50776464843750006E2],[0.14220791015625005E3,50.9984863],[0.14220673828125004E3,51.2225586],[0.14200595703125012E3,51.5205078],[0.14172236328125004E3,51.7363281],[0.14180810546875003E3,51.789209],[0.14166845703125003E3,51.9333496],[0.14166083984375004E3,52.2729492],[141.80332,0.52555615234375004E2],[0.14187363281250006E3,53.038916],[0.14182353515625007E3,53.339502],[0.14196445312500006E3,0.53456396484375034E2],[142.141992,53.4956055],[0.14231894531250012E3,53.4054687],[0.14252617187500002E3,53.4474609],[0.14255253906250007E3,0.53652636718750045E2],[0.14270595703124997E3,53.8957031],[0.14267021484375007E3,0.53968408203124966E2],[0.14233496093749997E3,0.54280712890625004E2],[142.55166,0.54278955078124994E2],[0.14269277343750005E3,54.4161133],[142.761035,0.54393945312499966E2]]],[[[0.16803906249999997E3,54.5649902],[0.16808134765625007E3,54.5127441],[167.488086,54.7949707],[0.16744150390625012E3,54.8558594],[167.882617,54.6904785],[0.16803906249999997E3,54.5649902]]],[[[0.13717861328125005E3,0.55100439453125034E2],[0.13705527343750006E3,54.9267578],[0.13671464843750002E3,0.54956152343750034E2],[0.13699570312500006E3,0.55092724609374955E2],[0.13717861328125005E3,0.55100439453125034E2]]],[[[0.13794052734375012E3,55.092627],[0.13820615234375012E3,55.0335449],[0.13809648437500007E3,54.990918],[0.13799121093750003E3,0.54820703124999966E2],[0.13766113281250003E3,0.54653271484374955E2],[0.13746269531250002E3,0.54873388671875034E2],[0.13723291015624997E3,54.7905762],[0.13727519531250002E3,54.8910156],[0.13743554687499997E3,0.55016015624999966E2],[137.577344,55.1970215],[0.13794052734375012E3,55.092627]]],[[[0.20677734375000025E2,0.54955664062500006E2],[0.20995898437500017E2,54.9026855],[21.1888672,54.9352051],[0.21235742187500023E2,55.2641113],[0.21389257812500034E2,0.55275537109374994E2],[21.5546875,55.1953125],[0.22072363281250034E2,55.0636719],[22.5672852,55.0591309],[0.22627441406250057E2,0.54970703124999964E2],[22.83125,0.54838476562500034E2],[22.709668,54.6326172],[0.22679882812500068E2,0.54493017578125006E2],[0.22766210937499977E2,0.54356787109375034E2],[0.22168457031250053E2,54.3598633],[20.2082031,0.54420751953125034E2],[0.19644238281250068E2,54.4470703],[0.19944140625000074E2,54.75],[0.19974511718750023E2,54.9211914],[0.20107617187500068E2,0.54956494140625004E2],[0.20396679687500068E2,0.54951269531250006E2],[0.20520312500000017E2,54.994873],[0.20899804687500076E2,0.55286669921875045E2],[0.20957812500000074E2,55.2789063],[0.20594824218750006E2,0.54982373046874955E2],[0.20677734375000025E2,0.54955664062500006E2]]],[[[0.16665029296875005E3,54.8390625],[0.16664511718750006E3,54.6940918],[0.16646367187500002E3,54.8268555],[0.16632480468750006E3,54.8645508],[0.16611972656250012E3,55.0303711],[0.16599189453125007E3,55.1904785],[0.16575107421875006E3,55.2945313],[165.93125,0.55351464843749994E2],[0.16627578125000005E3,0.55311962890624955E2],[0.16624804687499997E3,55.1654297],[166.404297,55.0056152],[0.16665029296875005E3,54.8390625]]],[[[0.15058994140625006E3,59.01875],[150.470215,59.0540527],[150.666211,59.1601563],[150.727734,59.0952148],[0.15058994140625006E3,59.01875]]],[[[0.16363515625000002E3,58.6033691],[0.16347138671875004E3,58.509375],[0.16342724609374997E3,0.58578955078125006E2],[0.16357675781250012E3,58.6408691],[163.726562,0.58798535156249976E2],[163.760938,0.59015039062500016E2],[0.16420214843749997E3,59.0961914],[164.572656,59.2211426],[0.16466162109374997E3,58.970752],[0.16461572265624997E3,0.58885595703125034E2],[0.16427880859374994E3,0.58838085937499955E2],[0.16396005859375006E3,58.74375],[0.16363515625000002E3,58.6033691]]],[[[35.8161133,65.1820801],[35.8583984,65.0779297],[35.7787109,64.9766602],[35.5289063,65.1510742],[35.8161133,65.1820801]]],[[[70.0207031,66.5021973],[69.8447266,66.4897461],[69.6513672,66.565332],[69.4693359,66.7159668],[69.5027344,66.7510742],[70.0766602,66.6958984],[70.1100586,66.5690918],[70.0207031,66.5021973]]],[[[0.42713671875000074E2,66.701709],[42.4773438,66.7350586],[0.42631445312500006E2,66.7822266],[0.42713671875000074E2,66.701709]]],[[[-179.798535,68.9404297],[-0.17947084960937502E3,68.9124023],[-179.279297,68.8251953],[-178.873877,68.7541016],[-0.17853852539062498E3,68.5856445],[-0.17875146484375003E3,68.6604492],[-0.17869262695312503E3,68.5459961],[-0.17809746093750002E3,68.4248047],[-0.17805581054687494E3,68.2648926],[-0.17779677734374997E3,68.3379883],[-178.284521,68.5185547],[-0.17824985351562498E3,68.5414062],[-0.17768320312499998E3,68.362793],[-0.17752724609375002E3,68.2943848],[-0.17763935546875004E3,68.2412109],[-0.17740751953124996E3,68.245166],[-0.17690727539062502E3,68.1191406],[-0.17534521484374997E3,67.6780762],[-0.17523251953124998E3,67.4466797],[-0.17537470703124995E3,67.357373],[-175.155078,67.3653809],[-0.17500268554687494E3,67.4375],[-174.849854,67.348877],[-0.17493813476562497E3,67.0930176],[-0.17478364257812498E3,66.9167969],[-0.17477119140625004E3,66.7843262],[-174.924902,66.6231445],[-174.674658,66.603418],[-174.50376,66.5379395],[-0.17439409179687496E3,66.3442383],[-174.084766,66.4730957],[-0.17401772460937502E3,66.3825195],[-0.17406503906249998E3,66.2295898],[-0.17399448242187498E3,66.2458008],[-0.17377397460937502E3,66.434668],[-0.17392094726562502E3,66.5217773],[-0.17410185546875002E3,66.540625],[-0.17423159179687497E3,66.6318848],[-0.17406059570312496E3,66.6897949],[-0.17400551757812502E3,66.7786133],[-174.086426,66.9428711],[-174.341846,67.0397461],[-0.17455449218749996E3,67.0630371],[-0.17444760742187503E3,67.103125],[-0.17388403320312497E3,67.1064453],[-173.679688,67.1447754],[-0.17315781249999998E3,67.0690918],[-173.323535,66.954834],[-0.17334736328124995E3,66.8513672],[-173.175391,66.8645996],[-0.17322827148437503E3,66.9685547],[-0.17264057617187504E3,66.925],[-172.582959,66.977832],[-173.001904,67.0339844],[-173.00752,67.0648926],[-0.17262104492187495E3,67.0268066],[-0.17227392578125003E3,66.9655762],[-0.17203149414062503E3,66.973291],[-0.17179555664062502E3,66.9317383],[-0.17136049804687502E3,66.6767578],[-0.17092666015625002E3,66.5297363],[-0.17047309570312498E3,66.3202637],[-170.604443,66.2489258],[-170.361133,66.2979004],[-170.246973,66.271875],[-0.17024394531250002E3,66.1692871],[-169.777881,66.1431152],[-0.16972915039062502E3,66.0581055],[-0.16983168945312497E3,65.9989258],[-170.003809,66.0334961],[-0.17015942382812503E3,66.0080566],[-0.17054067382812497E3,65.8654297],[-170.560986,65.65625],[-170.666309,65.6215332],[-0.17111899414062503E3,65.6950195],[-0.17137685546874997E3,65.8039551],[-0.17145117187499997E3,65.7942383],[-0.17113442382812494E3,65.6280762],[-0.17105424804687496E3,65.5499512],[-0.17121601562499998E3,65.5027832],[-0.17146625976562498E3,65.5331055],[-171.907129,65.4959473],[-171.957178,65.5420898],[-0.17228227539062496E3,65.5823242],[-0.17243569335937497E3,65.6696289],[-0.17278330078124998E3,65.6810547],[-0.17255654296874997E3,65.6120117],[-172.353955,65.4959961],[-0.17241777343749993E3,65.4495605],[-172.211572,65.4251953],[-0.17230927734375004E3,65.2756348],[-0.17266191406249993E3,65.2485352],[-0.17228603515625002E3,65.2057129],[-172.213184,65.0481445],[-172.592822,64.907959],[-0.17299912109374998E3,64.8766113],[-0.17280107421874993E3,64.7905273],[-172.924023,64.7049316],[-0.17290087890624991E3,64.6288574],[-172.487402,64.5441895],[-0.17240146484374998E3,64.413916],[-0.17273916015624997E3,64.4122559],[-0.17279150390624997E3,64.4989258],[-172.949023,64.507373],[-0.17291586914062495E3,64.3694336],[-0.17300913085937498E3,64.2974609],[-0.17327548828124998E3,64.2896484],[-0.17337568359375004E3,64.3548828],[-173.32749,64.5395508],[-0.17360361328125003E3,64.3654785],[-0.17372973632812497E3,64.364502],[-0.17400136718749997E3,64.4489746],[-174.318018,64.6376465],[-0.17457055664062503E3,64.7177734],[-175.036035,64.8136719],[-0.17539511718749998E3,64.8023926],[-0.17585385742187498E3,65.0108398],[-0.17583022460937497E3,65.1055176],[-0.17592294921875003E3,65.3524902],[-176.093262,65.4710449],[-177.05625,65.613623],[-0.17748876953124997E3,65.5037109],[-0.17831020507812502E3,65.4848633],[-178.504639,65.537207],[-178.502344,65.7404297],[-178.67915,65.7953613],[-0.17887934570312495E3,65.9364746],[-0.17893906249999998E3,66.0327637],[-0.17874672851562497E3,66.0136719],[-178.586523,66.1984375],[-0.17852656250000004E3,66.4015625],[-0.17875278320312503E3,66.2372559],[-0.17891552734374997E3,66.1799316],[-0.17910507812500003E3,66.2319336],[-0.17910688476562504E3,66.3460937],[-0.17934013671874996E3,66.2875],[-0.17932719726562496E3,66.1625977],[-0.17961616210937495E3,66.1278809],[-0.17968330078124998E3,66.1841309],[-0.17978364257812498E3,66.0179688],[-179.72832,65.8038086],[-179.365967,65.638623],[-179.3521,65.516748],[-0.17970458984374994E3,65.187207],[-180,65.0672363],[-179.999951,68.9834473],[-179.798535,68.9404297]]],[[[50.2652344,69.1855957],[0.50283007812500074E2,69.0888672],[50.1644531,69.0375488],[50.0939453,69.1255371],[49.9208008,69.0532715],[49.6262695,68.8597168],[0.49180468750000074E2,68.778418],[48.6669922,68.7331543],[48.4390625,68.8048828],[48.2788086,69.040332],[48.3199219,69.2692383],[48.6313477,69.4360352],[48.9533203,69.5092773],[49.2251953,69.5112305],[50.1672852,69.2570801],[50.2652344,69.1855957]]],[[[67.3449219,69.529834],[67.2639648,69.4425293],[67.0258789,69.4832031],[67.2161133,69.5753906],[67.3449219,69.529834]]],[[[0.16146708984375002E3,68.9009766],[0.16146113281250004E3,68.9956055],[0.16113652343750002E3,69.1102539],[0.16116455078125003E3,69.3335937],[161.110742,69.4698242],[0.16150517578125007E3,69.6394531],[0.16161777343750006E3,69.5924316],[0.16154033203125002E3,69.4365234],[0.16135087890625007E3,69.3693359],[161.394238,69.1064453],[161.516992,68.9695801],[0.16146708984375002E3,68.9009766]]],[[[0.16920078125000003E3,69.5804687],[0.16891572265625004E3,69.5714355],[0.16834804687500002E3,69.6643555],[0.16778886718750002E3,69.8368652],[0.16786474609375003E3,69.9010742],[0.16819628906249997E3,70.0083984],[0.16835791015625003E3,70.0156738],[0.16937480468750007E3,69.8826172],[0.16920078125000003E3,69.5804687]]],[[[0.60450488281250074E2,69.9348633],[60.4402344,69.7259277],[0.60215917968750055E2,69.6876953],[60.0261719,69.717041],[0.59812792968750074E2,69.6956543],[0.59578222656250055E2,69.738623],[59.5026367,69.8662109],[59.1442383,69.9219238],[58.9527344,69.8927734],[58.6800781,70.0510254],[58.4730469,70.2668457],[58.7942383,70.432959],[0.59005273437500044E2,70.4651855],[59.3098633,70.3616699],[59.6363281,70.1970215],[59.9558594,70.1083496],[0.60450488281250074E2,69.9348633]]],[[[66.5609375,70.541748],[66.4486328,70.5610352],[66.3948242,70.7272949],[66.5609375,70.541748]]],[[[0.16071894531250004E3,70.8227051],[160.504785,70.8197266],[0.16044853515625002E3,70.9340332],[160.56582,70.9237793],[0.16071894531250004E3,70.8227051]]],[[[52.9033203,71.3649902],[53.2051758,71.1597168],[53.0226563,70.9687012],[52.7383789,71.1806641],[52.546582,71.2504395],[52.2496094,71.2849121],[52.296582,71.3568359],[52.5125977,71.3850586],[52.9033203,71.3649902]]],[[[178.861523,70.826416],[0.17879257812500006E3,70.8220703],[178.62832,71.0473633],[0.17889111328125009E3,71.2311035],[0.17923505859375015E3,71.3245117],[0.17954765625000007E3,71.4476562],[180,71.5377441],[180,70.9930176],[0.17964765625000004E3,70.8989258],[0.17915253906250004E3,70.8802734],[178.861523,70.826416]]],[[[0.13795986328125005E3,71.507666],[0.13771181640625005E3,71.4232422],[0.13745781250000007E3,71.4834961],[137.265527,71.4559082],[0.13707871093750012E3,71.5021973],[0.13728183593750012E3,71.5799316],[0.13781679687499997E3,71.5878906],[0.13795986328125005E3,71.507666]]],[[[-178.876465,71.5770508],[-0.17835356445312496E3,71.5291992],[-0.17797480468749995E3,71.3905273],[-0.17753217773437504E3,71.2630859],[-177.523584,71.1668945],[-177.821777,71.0675781],[-0.17852797851562494E3,71.0147949],[-179.156885,70.9398437],[-0.17950668945312498E3,70.9234375],[-179.999951,70.9930176],[-179.999951,71.5377441],[-0.17969101562500003E3,71.5779785],[-0.17940205078125007E3,71.5666504],[-0.17911157226562503E3,71.5961914],[-178.876465,71.5770508]]],[[[77.6325195,72.2912598],[77.1456055,72.2818848],[76.905957,72.2976563],[76.903125,72.3655762],[77.1495117,72.439209],[77.377832,72.5652832],[77.5787109,72.6308594],[77.7485352,72.6312012],[78.2791016,72.5532227],[78.3651367,72.4824219],[77.6325195,72.2912598]]],[[[79.5014648,72.7219238],[78.8805664,72.7516113],[78.6902344,72.803418],[78.6568359,72.8922852],[79.1642578,73.0943359],[79.356543,73.038623],[79.5413086,72.9186523],[79.5014648,72.7219238]]],[[[74.6605469,72.8734375],[74.4347656,72.907666],[74.1001953,73.0215332],[74.1985352,73.109082],[74.4087891,73.1304687],[74.9615234,73.0625],[74.7425781,73.0327148],[74.6472656,72.969043],[74.6605469,72.8734375]]],[[[120.261328,73.0898437],[0.12000791015625006E3,73.044873],[0.11979208984375005E3,73.0454102],[0.11964042968750002E3,73.1243164],[0.11976191406250003E3,73.1554688],[120.078516,73.1567383],[120.261328,73.0898437]]],[[[55.3198242,73.3083008],[56.1376953,73.2561523],[56.4295898,73.2011719],[56.1889648,73.0330078],[0.56170507812500006E2,72.8480957],[56.0837891,72.7894043],[0.55723437500000074E2,72.7664063],[55.6164062,72.5990723],[55.4413086,72.5753906],[55.355957,72.4650879],[55.3991211,72.313623],[55.5180664,72.2206543],[55.2978516,71.9353516],[55.4710938,71.8692383],[55.6136719,71.6898926],[56.0431641,71.3456055],[56.4543945,71.107373],[0.56894824218750074E2,70.927002],[57.4835938,70.7922852],[57.6253906,70.7288086],[57.1458984,70.5891113],[56.6488281,70.6465332],[56.5100586,70.7288086],[0.56260058593750074E2,70.7147461],[0.56561328125000074E2,70.5935547],[56.4345703,70.5629883],[0.56142480468749994E2,70.6578613],[55.796875,70.6155762],[0.55687304687500074E2,70.6921875],[55.2369141,70.6660156],[54.8670898,70.678125],[54.6451172,70.7418457],[54.6011719,70.6800781],[54.3326172,70.7446777],[53.7223633,70.8144531],[0.53383593750000074E2,70.8735352],[53.6135742,70.9146484],[0.53587792968749994E2,71.0522949],[53.8570313,71.0704102],[53.8342773,71.126709],[0.54155664062499994E2,71.1254883],[53.4099609,71.3401367],[53.319043,71.3991699],[0.53363867187500055E2,71.5416504],[52.9089844,71.4950195],[52.4188477,71.5368652],[52.1799805,71.4902344],[0.51812597656250006E2,71.4913086],[51.5904297,71.5711426],[51.4386719,71.7768066],[51.4435547,71.934375],[51.5825195,72.0711914],[51.8854492,72.1532227],[0.52252050781250006E2,72.1297363],[52.6220703,72.3009766],[52.7487305,72.482959],[52.8636719,72.5498535],[52.9166016,72.6688965],[52.6831055,72.6823242],[52.5285156,72.7373535],[52.812207,72.8752441],[53.0242188,72.9135742],[53.3698242,72.916748],[53.2472656,72.9731445],[53.1979492,73.1475586],[53.3576172,73.2245605],[53.7532227,73.2932617],[54.0910156,73.2764648],[54.3276367,73.2994629],[54.8039062,73.3876465],[55.3198242,73.3083008]]],[[[70.6739258,73.0950195],[70.3803711,73.0480957],[70.0407227,73.0371582],[69.9201172,73.0845215],[70.01875,73.2243164],[69.9958984,73.359375],[70.1496094,73.4447266],[70.35,73.4776367],[70.9402344,73.5144043],[71.2316406,73.4477539],[71.5895508,73.2831543],[71.6261719,73.1739746],[71.3556641,73.1624512],[70.6739258,73.0950195]]],[[[76.7560547,73.4458008],[76.2344727,73.4762207],[76.0831055,73.5234863],[76.2506836,73.5552734],[76.7560547,73.4458008]]],[[[75.5037109,73.4566406],[75.375,73.4773926],[75.5697266,73.540625],[75.9301758,73.5736328],[76.0515625,73.5492676],[75.8271484,73.4591309],[75.5037109,73.4566406]]],[[[0.14218486328125005E3,73.8958984],[0.14263916015624997E3,73.8030762],[143.34375,73.56875],[0.14346396484375006E3,73.4588867],[0.14349130859375012E3,73.2464355],[0.14319326171875005E3,73.220752],[0.14234218750000005E3,73.2528809],[0.14159667968750003E3,73.3108398],[0.14118271484375006E3,73.389209],[0.14066279296875004E3,73.452002],[140.39248,73.4353516],[0.14002695312500006E3,73.3614258],[139.785547,73.3552246],[0.13968554687499994E3,73.4257324],[140.380664,73.4830078],[0.14059355468750002E3,73.5645508],[140.883789,73.7775391],[0.14108476562500002E3,73.8658691],[141.931836,73.9149414],[0.14218486328125005E3,73.8958984]]],[[[0.12454296875000003E3,73.8500977],[0.12433652343750006E3,73.9283691],[0.12454765625000002E3,73.9338379],[0.12454296875000003E3,73.8500977]]],[[[83.5490234,74.0717773],[83.4106445,74.0395508],[82.8177734,74.0916016],[83.1498047,74.1516113],[83.5134766,74.1223633],[83.5490234,74.0717773]]],[[[82.7099609,74.0908691],[82.612793,74.0564453],[82.3293945,74.1311035],[82.5255859,74.1614258],[82.7099609,74.0908691]]],[[[136.197461,73.913623],[136.051465,73.9291016],[0.13540244140625012E3,74.201709],[0.13538701171875007E3,74.2533691],[0.13562832031250005E3,74.2199219],[0.13603681640625004E3,74.090332],[0.13625917968750005E3,73.9849609],[136.197461,73.913623]]],[[[0.14101025390625003E3,73.9994629],[0.14050722656250005E3,73.9186523],[0.14018320312500012E3,74.0045898],[0.14010156249999997E3,74.1842773],[0.14040742187500004E3,74.2664551],[0.14084921875000006E3,74.2737793],[0.14103857421875003E3,74.2427246],[0.14109746093750002E3,74.1678223],[0.14101025390625003E3,73.9994629]]],[[[84.7589844,74.4594238],[84.7104492,74.3998047],[84.3894531,74.4544434],[84.6798828,74.5123535],[84.8728516,74.5155273],[84.7589844,74.4594238]]],[[[0.11338720703124997E3,74.4004395],[0.11325888671875012E3,74.2727051],[0.11297763671875012E3,74.1968262],[0.11278242187500003E3,74.0950684],[0.11219580078124996E3,74.1462402],[111.642969,74.2729492],[0.11150341796874997E3,74.3530762],[111.879785,74.3638184],[0.11200761718750002E3,74.5267578],[0.11208447265624996E3,74.5489746],[0.11295175781250005E3,74.4795898],[0.11328623046875012E3,74.4410156],[0.11338720703124997E3,74.4004395]]],[[[86.653125,74.9812988],[87.0005859,74.9919434],[87.1243164,74.9398926],[86.9271484,74.8307617],[86.3905273,74.8508789],[86.3306641,74.9389648],[86.653125,74.9812988]]],[[[82.1723633,75.4193848],[82.221582,75.3505371],[82.0500977,75.3409668],[81.9785156,75.2471191],[81.8605469,75.3165039],[81.6976563,75.2805176],[81.5005859,75.3679199],[81.7121094,75.451416],[81.9265625,75.4099609],[81.912793,75.4977051],[82.165625,75.515625],[82.1723633,75.4193848]]],[[[0.14679521484375007E3,75.370752],[0.14706035156250007E3,75.3643066],[147.496973,75.4405273],[0.14843242187500002E3,75.4135254],[148.508887,75.3874512],[148.475,75.2724121],[0.14859013671875007E3,75.236377],[0.14889218750000006E3,75.228125],[0.14908320312500004E3,75.2620605],[150.103906,75.2192383],[0.15053056640625007E3,75.0998535],[0.15082236328125006E3,75.156543],[150.646289,74.9445801],[150.33125,74.8667969],[149.596875,74.7726074],[149.050195,74.7724609],[148.296875,74.8004395],[0.14809238281250006E3,74.8256836],[147.626855,74.9589355],[0.14714404296874997E3,74.9984375],[146.70332,75.114209],[0.14614853515625012E3,75.198291],[146.257617,75.39375],[0.14643847656250003E3,75.5582031],[146.5375,75.5817871],[146.750977,75.5104492],[0.14679521484375007E3,75.370752]]],[[[135.948633,75.4095703],[0.13574589843750002E3,75.3819824],[0.13545195312500007E3,75.3895508],[0.13559267578125005E3,75.5764648],[0.13556123046875004E3,75.6364746],[0.13569863281249997E3,75.8452637],[0.13590478515624997E3,75.6943848],[0.13616894531249997E3,75.6055664],[0.13598339843749997E3,75.5219238],[135.948633,75.4095703]]],[[[152.885938,76.1217285],[0.15278632812500004E3,76.085791],[0.15255859375000003E3,76.1436035],[0.15279941406250006E3,76.1948242],[152.885938,76.1217285]]],[[[140.04873,75.8289551],[0.14038906250000005E3,75.7958496],[140.496289,75.6897949],[0.14081591796874994E3,75.6307129],[0.14094414062500007E3,75.7004883],[0.14092578124999994E3,75.8668457],[0.14103261718750005E3,75.9889648],[0.14148544921875012E3,76.1371582],[0.14174228515625012E3,76.1080566],[0.14246035156250005E3,75.9036133],[0.14292675781250003E3,75.8269043],[0.14318515625000006E3,75.813623],[0.14368583984375002E3,75.8636719],[0.14525527343750005E3,75.5855957],[0.14535996093750006E3,75.5304687],[0.14502343749999997E3,75.4897461],[144.726758,75.3655762],[0.14488349609375004E3,75.2689453],[0.14440781250000006E3,75.1022949],[144.019727,75.0446777],[143.170312,75.1168945],[0.14282011718750007E3,75.2678223],[0.14272949218749997E3,75.3376465],[0.14273447265625012E3,75.5445801],[0.14300244140624997E3,75.6598633],[142.941797,75.7132813],[0.14255156250000007E3,75.7208984],[0.14208623046875002E3,75.6606445],[142.151074,75.4575684],[0.14226474609375006E3,75.3461426],[0.14261679687500012E3,75.133252],[0.14292968749999997E3,75.0624023],[0.14312792968749997E3,74.9703125],[0.14277822265625005E3,74.8677734],[0.14247275390625006E3,74.8204102],[0.14228740234375007E3,74.8499023],[141.987305,74.9912598],[0.14174843750000005E3,74.9825684],[141.310449,74.9231934],[140.267871,74.8469238],[0.13975820312500005E3,74.9637695],[139.605859,74.9456055],[139.325586,74.6868164],[0.13909912109374997E3,74.656543],[138.865625,74.7009277],[0.13809228515625003E3,74.7974609],[0.13768300781250005E3,75.0085449],[0.13721796875000004E3,75.1237305],[137.00625,75.2350098],[0.13698242187500003E3,75.365332],[0.13728974609375004E3,75.3486328],[0.13721523437500005E3,75.5543945],[0.13726884765625002E3,75.7494141],[0.13735849609375006E3,75.7816406],[0.13770654296875003E3,75.7595703],[0.13750117187500004E3,75.909668],[137.625391,75.9881836],[0.13797705078124997E3,76.0277832],[0.13820761718750003E3,76.1149414],[0.13891953125000006E3,76.1967285],[0.13910917968750007E3,76.1083496],[0.13974335937500004E3,75.9530762],[140.04873,75.8289551]]],[[[96.5324219,76.278125],[96.5896484,76.2212402],[96.3507813,76.2121582],[96.3005859,76.1217285],[95.3111328,76.2147461],[0.9537988281250003E2,76.2890625],[95.5944336,76.2496094],[95.7862305,76.2938965],[96.1509766,76.271875],[96.2707031,76.3053711],[96.5324219,76.278125]]],[[[96.8539062,76.1991699],[0.9674023437499997E2,76.2578613],[0.9687792968750001E2,76.3552246],[97.0530273,76.3025879],[96.8539062,76.1991699]]],[[[0.11247802734375001E3,76.6208984],[0.11266083984375004E3,76.5095703],[112.531641,76.4500488],[112.296875,76.5379883],[0.11215380859374997E3,76.5493164],[0.11201113281250005E3,76.6328613],[0.11247802734375001E3,76.6208984]]],[[[0.9758837890624997E2,76.5993652],[0.9743037109375003E2,76.5907227],[0.9738164062500007E2,76.7066895],[0.9758837890624997E2,76.5993652]]],[[[0.14915019531250002E3,76.6599121],[148.398633,76.6482422],[0.14871962890624997E3,76.746582],[149.406445,76.7820801],[0.14915019531250002E3,76.6599121]]],[[[67.765332,76.2375977],[67.1269531,76.1081543],[66.2824219,75.9836914],[65.6191406,75.9046387],[65.2015625,75.8394531],[64.2625977,75.7196777],[63.6594727,75.66875],[62.0661133,75.4277344],[61.6162109,75.3196289],[61.355957,75.3148438],[0.61147265625000074E2,75.2225586],[60.6553711,75.0550293],[60.4755859,75.0547363],[60.2411133,74.970752],[0.60501367187499994E2,74.9046387],[60.2224609,74.796582],[59.9823242,74.7446289],[59.7472656,74.7458984],[59.7527344,74.6370117],[59.5959961,74.6137207],[59.2401367,74.6929687],[0.59100976562499994E2,74.5075195],[58.9282227,74.4626953],[58.534668,74.4989258],[58.6650391,74.2892578],[58.4414063,74.1288574],[57.7673828,74.0138184],[57.8722656,73.8504395],[0.57755957031250006E2,73.7691895],[0.57448535156250074E2,73.8256348],[0.57290917968749994E2,73.8145508],[0.57464257812499994E2,73.7460449],[0.57542578125000055E2,73.6582031],[57.134375,73.5043945],[56.9638672,73.3665527],[56.6341797,73.3042969],[56.4303711,73.2972168],[56.0345703,73.3458984],[55.5492188,73.3568359],[55.0068359,73.4538574],[0.54768652343750055E2,73.4494141],[54.2999023,73.3509766],[54.131543,73.4810059],[54.2045898,73.542041],[0.53838671875000074E2,73.6971191],[53.7628906,73.7661621],[0.54386328125000055E2,73.9356445],[54.6426758,73.9595703],[0.55022851562499994E2,74.1866211],[55.340918,74.4196289],[56.0783203,74.4812988],[55.9474609,74.5421875],[0.55661523437499994E2,74.5561035],[55.5822266,74.6276855],[55.9136719,74.7960937],[0.56217871093750006E2,74.8975098],[56.4987305,74.9570801],[56.3400391,75.0134766],[55.9980469,75.0033691],[55.8100586,75.1249023],[56.0355469,75.1942383],[56.5703125,75.0977539],[56.8762695,75.2443848],[0.56809472656249994E2,75.328418],[57.0875,75.3838379],[57.6068359,75.3412598],[57.7833984,75.5066895],[58.0936523,75.5925293],[58.0583008,75.6630859],[0.58418359375000044E2,75.7197754],[58.88125,75.8547852],[59.7819336,75.9458496],[60.0361328,75.9838379],[60.1181641,76.0665527],[60.2792969,76.0962402],[0.60730566406250006E2,76.1040527],[60.9421875,76.0712891],[61.0539062,76.119873],[61.034375,76.232959],[61.2016602,76.2820313],[0.61787109375000036E2,76.2910156],[62.4710938,76.2304688],[62.9714844,76.2366699],[0.63526171875000024E2,76.3095215],[64.4634766,76.3781738],[64.95,76.4843262],[65.197168,76.4996582],[65.8628906,76.6133301],[66.0629883,76.7460938],[66.8288086,76.9238281],[67.5349609,77.0077637],[68.0172852,76.990625],[68.4857422,76.9336914],[68.8733398,76.7895996],[68.9416992,76.707666],[68.8998047,76.5729492],[68.1654297,76.2848633],[67.765332,76.2375977]]],[[[96.2854492,77.0266602],[95.8546875,76.9749512],[95.6808594,77.0213379],[0.9527031250000007E2,77.0188477],[0.9542070312500007E2,77.0564941],[95.8541016,77.0975586],[96.528418,77.2055176],[96.5613281,77.1295898],[96.2854492,77.0266602]]],[[[89.5142578,77.1888184],[89.2995117,77.1839844],[89.1416992,77.2268066],[89.281543,77.3014648],[89.6162109,77.3110352],[89.6658203,77.2544922],[89.5142578,77.1888184]]],[[[0.10741474609375004E3,77.2426758],[0.10726953125000003E3,77.2890137],[0.10736640625000003E3,77.3466309],[0.10759365234375005E3,77.3300293],[0.10767949218750006E3,77.2682617],[0.10741474609375004E3,77.2426758]]],[[[0.10481425781250002E3,77.6520996],[0.10496523437500005E3,77.5947266],[105.308984,77.5492188],[0.10571025390625007E3,77.5252441],[0.10589453125000003E3,77.4888672],[0.10605957031249997E3,77.3905273],[105.73418,77.352002],[0.10538457031250007E3,77.2378418],[0.10491191406250002E3,77.174707],[104.323633,77.132666],[0.10420244140625002E3,77.1018066],[105.320215,77.092334],[105.645898,77.1006836],[0.10571201171875006E3,77.0014648],[0.10633867187500002E3,77.0478516],[0.10670507812499997E3,77.0137695],[106.941602,77.034375],[0.10727890625000006E3,76.9909668],[0.10742978515625006E3,76.9265625],[0.10694091796875003E3,76.7304688],[0.10663876953125012E3,76.5733887],[0.10638466796875005E3,76.5894531],[0.10641357421874997E3,76.5122559],[0.10668320312500012E3,76.5146973],[0.10682539062500004E3,76.4800781],[0.10715771484374997E3,76.5240723],[0.10762421875000003E3,76.5101074],[0.10790224609375005E3,76.5696777],[0.10802792968750006E3,76.718457],[0.10818164062500001E3,76.7378418],[108.638379,76.7201172],[0.10936933593750004E3,76.7492187],[109.981152,76.7118652],[0.11047148437500007E3,76.7583984],[0.11111484375000012E3,76.7230469],[0.11178613281250003E3,76.6035645],[0.11209394531250004E3,76.4803223],[0.11194267578125002E3,76.3804688],[112.29707,76.434668],[112.619531,76.3835449],[0.11268417968750012E3,76.2188477],[112.798438,76.1296387],[112.65625,76.0535645],[0.11304667968750007E3,76.1141113],[0.11315039062499997E3,76.1745117],[112.987988,76.2397461],[113.272656,76.2516602],[0.11342773437499997E3,76.1121094],[113.563867,75.8916504],[0.11385722656250007E3,75.9212891],[0.11387099609375005E3,75.8560059],[0.11361992187500002E3,75.5926758],[0.11339160156249996E3,75.6778809],[0.11312636718750005E3,75.6986816],[0.11262919921875002E3,75.8354004],[112.453027,75.8301758],[0.11272958984375012E3,75.7376465],[0.11295566406250006E3,75.5719238],[113.161523,75.6205078],[113.35625,75.5342773],[0.11372617187500012E3,75.4506348],[0.11361357421875006E3,75.2929688],[0.11292490234375012E3,75.0150391],[0.11219199218750012E3,74.8531738],[0.11186826171875006E3,74.7400391],[111.299023,74.6584473],[110.892773,74.5480957],[0.11037353515625003E3,74.4660645],[0.11022587890625002E3,74.3786621],[0.10984033203124997E3,74.3219727],[0.10991132812500008E3,74.2613281],[109.810254,74.1691895],[0.10951083984375012E3,74.0888184],[109.075,74.0323242],[0.10819951171875002E3,73.6940918],[0.10776542968750006E3,73.625],[0.10727109375000006E3,73.6210449],[0.10716699218749997E3,73.5894043],[0.10667939453125004E3,73.3306641],[106.188672,73.3080078],[0.10567714843750005E3,72.9592773],[0.10539277343750004E3,72.8410156],[0.10514394531250004E3,72.7770508],[105.708203,72.8366699],[0.10606669921875002E3,72.9498535],[0.10620878906250002E3,73.0605469],[0.10647792968750005E3,73.1394043],[0.10710878906250005E3,73.1772949],[107.750391,73.1731445],[0.10800126953125007E3,73.2355957],[0.10828535156250004E3,73.2658691],[108.351465,73.3102051],[0.10908994140625006E3,73.378418],[0.10933105468749997E3,73.4874512],[109.637109,73.4540039],[0.10985527343750002E3,73.4724609],[0.11042871093749997E3,73.6289062],[0.11086816406249996E3,73.7307129],[0.11072236328125008E3,73.7799316],[0.11038828125000006E3,73.7260254],[0.11009121093750005E3,73.7085449],[0.10975273437500002E3,73.7225586],[0.10966562500000012E3,73.8002441],[0.10986914062500003E3,73.9306152],[0.11026142578125008E3,74.0174316],[111.05625,73.9393555],[0.11113085937500003E3,74.052832],[0.11155058593750007E3,74.0285156],[0.11122812500000012E3,73.9685547],[0.11140039062500003E3,73.8277344],[0.11180371093749997E3,73.7452637],[0.11214726562500007E3,73.7089355],[0.11279541015625003E3,73.7460937],[112.939648,73.8356445],[0.11283593750000001E3,73.9620605],[113.181543,73.8374023],[113.416211,73.6476074],[0.11315693359375004E3,73.4595703],[0.11349091796875004E3,73.3460938],[0.11347460937500003E3,73.0478516],[0.11336933593750004E3,72.9418945],[113.127832,72.8306641],[0.11331220703125004E3,72.657373],[0.11366455078124997E3,72.6345215],[0.11363007812500004E3,72.6770996],[113.298145,72.7388672],[0.11321552734375008E3,72.8058594],[113.542773,73.0543457],[113.558887,73.2326172],[0.11388623046875003E3,73.3458008],[113.539453,73.4336426],[0.11351035156250012E3,73.5049805],[0.11385693359375003E3,73.5333984],[0.11406054687500003E3,73.584668],[0.11481601562500006E3,73.6071777],[0.11533769531250007E3,73.7025879],[0.11649550781250004E3,73.6760742],[0.11730859375000001E3,73.5991699],[0.11845019531249997E3,73.5897949],[0.11887089843750007E3,73.5378906],[118.936426,73.4812012],[0.11845703124999997E3,73.4644043],[0.11837656250000008E3,73.3672363],[0.11843027343750012E3,73.2465332],[118.960352,73.1172852],[0.11942529296874997E3,73.0639648],[0.11975039062499998E3,72.9791016],[120.597949,72.9811035],[120.997168,72.9367187],[0.12135429687500003E3,72.9708496],[0.12188603515625006E3,72.9608887],[0.12202978515624997E3,72.8972168],[122.5375,72.8777832],[0.12275195312500003E3,72.9064941],[0.12250195312499997E3,72.9706543],[0.12261523437499997E3,73.0279297],[0.12316035156250008E3,72.9548828],[123.301172,73.0018066],[123.461621,73.1441895],[0.12362226562500003E3,73.1932617],[0.12338388671875006E3,73.3473145],[0.12330507812499998E3,73.5329102],[0.12349111328125004E3,73.6663574],[123.796875,73.6267578],[0.12401904296874999E3,73.7123047],[124.388086,73.754834],[0.12479628906250004E3,73.7117676],[125.61709,73.5206055],[0.12559853515625004E3,73.4474121],[0.12625449218750012E3,73.5481934],[0.12634492187500005E3,73.5062988],[0.12625742187500006E3,73.4197754],[0.12655253906250006E3,73.3349121],[0.12683847656250005E3,73.4341797],[0.12703134765625008E3,73.5474609],[0.12774033203125012E3,73.481543],[128.281445,73.3305664],[0.12825781250000003E3,73.2674805],[0.12858701171875012E3,73.2624023],[0.12888867187500003E3,73.1902344],[0.12891337890625002E3,73.1105957],[0.12910058593750003E3,73.1123535],[0.12905371093749997E3,73.0454102],[128.599023,72.895166],[0.12901728515625004E3,72.8724609],[0.12922910156250012E3,72.7757324],[129.250391,72.7051758],[0.12881533203124997E3,72.5858887],[0.12841826171875002E3,72.5351563],[0.12854941406250012E3,72.4958496],[129.116602,72.4857422],[0.12928134765625006E3,72.4376953],[0.12941171875000006E3,72.3154785],[0.12941064453124997E3,72.1663086],[0.12928349609375007E3,72.092041],[0.12893496093750005E3,72.0794922],[0.12847519531250006E3,72.2455566],[127.803418,72.4340332],[0.12772607421874996E3,72.4131836],[0.12784140625000012E3,72.308252],[128.026563,72.25],[128.358789,72.0883301],[0.12891142578125002E3,71.7553223],[0.12904013671875006E3,71.7824219],[0.12921025390625007E3,71.9169434],[0.12946083984374997E3,71.7393066],[0.12923417968750007E3,71.7448242],[0.12884326171875003E3,71.6634766],[128.922656,71.6017578],[0.12913427734374997E3,71.5928711],[0.12976191406250004E3,71.1195313],[0.13002597656250006E3,71.0653809],[130.28125,70.9473145],[0.13066845703124994E3,70.8883301],[0.13083193359375005E3,70.9358887],[0.13089804687500012E3,70.8035645],[0.13115742187500004E3,70.7421875],[0.13156201171875003E3,70.9010254],[0.13190644531250004E3,71.2026367],[132.035352,71.244043],[0.13200371093750002E3,71.3501953],[0.13222763671875012E3,71.6427734],[0.13256230468750007E3,71.8953125],[0.13265390625000006E3,71.9259766],[0.13276855468749997E3,71.7987305],[0.13313085937499997E3,71.6066895],[133.426172,71.4909668],[0.13410283203125002E3,71.3789551],[0.13470273437500012E3,71.3868164],[0.13502236328125005E3,71.5150391],[135.359375,71.5435059],[0.13555917968750006E3,71.6103516],[0.13588476562499997E3,71.6305664],[0.13640615234375005E3,71.570752],[0.13731542968750003E3,71.3594238],[137.650586,71.2081543],[137.939648,71.1333984],[0.13784404296875005E3,71.2268066],[138.090625,71.3074219],[0.13831406250000006E3,71.3255371],[0.13791835937499997E3,71.384082],[0.13811845703125002E3,71.5661621],[138.318066,71.602832],[0.13852519531250002E3,71.5627441],[0.13867001953125012E3,71.6348145],[0.13900488281249994E3,71.5560547],[139.209375,71.4447754],[0.13963212890625002E3,71.4892578],[0.13998417968750007E3,71.4915039],[0.13993876953125007E3,71.557666],[0.13969511718750007E3,71.7004395],[0.13972294921875002E3,71.8849609],[0.13935927734375005E3,71.9513672],[0.13964023437500006E3,71.9983398],[139.84707,72.148584],[0.14013437500000012E3,72.2096191],[0.13961699218750002E3,72.2256836],[0.13943046875000007E3,72.1634766],[0.13917636718750006E3,72.1634766],[0.13914082031250004E3,72.3297363],[0.13960117187500012E3,72.4960937],[0.14045058593750005E3,72.4931152],[0.14107929687500004E3,72.5869141],[0.14097285156250004E3,72.7169922],[0.14065234375000003E3,72.8428223],[140.708105,72.8900391],[0.14130976562500004E3,72.8577148],[0.14151835937500005E3,72.7886719],[0.14206142578125005E3,72.7208008],[0.14351582031250004E3,72.6982422],[0.14368095703125002E3,72.6731934],[144.303906,72.6430176],[0.14456865234375002E3,72.6099121],[145.485742,72.5420898],[0.14571416015625007E3,72.4973633],[0.14625292968749997E3,72.4422363],[146.234766,72.349707],[0.14546708984375002E3,72.3620605],[0.14521289062500003E3,72.3926758],[0.14477636718749997E3,72.3822754],[144.587598,72.3055176],[0.14416923828125002E3,72.2587891],[0.14447070312499997E3,72.1747559],[0.14503916015625006E3,72.2598633],[0.14659414062500005E3,72.3024414],[0.14683183593750007E3,72.2954102],[146.807031,72.2365723],[0.14640166015625005E3,72.035498],[0.14611328125000003E3,71.9449707],[0.14600585937499997E3,71.945459],[0.14623027343750007E3,72.1375],[0.14605146484375004E3,72.1422852],[0.14579941406250006E3,72.221875],[0.14570966796875004E3,72.2063477],[0.14566406249999994E3,72.0669922],[0.14575673828125005E3,71.9413086],[0.14540722656249997E3,71.8901367],[0.14512578125000002E3,71.9271484],[144.989648,71.7533691],[145.188574,71.6958008],[0.14580478515625006E3,71.7464844],[0.14607324218749997E3,71.8083496],[0.14636796875000007E3,71.9220703],[146.894727,72.1975098],[0.14726181640625006E3,72.3278809],[147.433984,72.340918],[0.14840205078125004E3,72.3119629],[0.14896484375000003E3,72.2523437],[0.14950156250000012E3,72.1643066],[0.14976621093750012E3,72.0912598],[149.963086,71.9921875],[0.15001689453125002E3,71.8956543],[0.14988105468750004E3,71.8430176],[0.14927968750000005E3,71.8255371],[0.14904873046875005E3,71.795752],[148.968164,71.6904785],[0.14949804687500003E3,71.6640137],[149.857129,71.6014648],[0.15006083984375002E3,71.5108398],[0.15059980468750004E3,71.5201172],[0.15066777343750002E3,71.4552246],[0.15024296875000007E3,71.2671875],[0.15096777343749997E3,71.3804687],[0.15114531250000007E3,71.3737305],[0.15158242187500002E3,71.2869629],[151.759766,71.2178223],[0.15209277343749997E3,71.023291],[0.15176201171875002E3,70.9824707],[0.15250878906250003E3,70.8344727],[0.15279833984375003E3,70.8356445],[0.15346064453125004E3,70.8786133],[0.15379414062500004E3,70.8799805],[154.413965,70.9744629],[155.029492,71.0342285],[0.15559589843750004E3,71.038623],[0.15589521484375007E3,71.0955078],[0.15668457031250003E3,71.09375],[0.15744736328125012E3,71.0745117],[0.15803701171875005E3,71.0392578],[0.15870214843750003E3,70.9350098],[0.15935068359375003E3,70.7907227],[159.72793,70.6496582],[0.15991181640625007E3,70.5061035],[0.16000644531250006E3,70.309668],[159.983398,70.2213867],[0.15983144531250005E3,70.0814453],[0.15983916015625002E3,69.9899902],[0.15972939453125005E3,69.8702148],[159.83252,69.7849609],[0.16011914062499997E3,69.7297852],[0.16073945312500004E3,69.6551758],[0.16091074218750012E3,69.6063477],[0.16103554687500005E3,69.0981934],[0.16130986328125005E3,68.9822754],[161.340625,68.9051758],[0.16112900390625006E3,68.6538574],[0.16085605468750006E3,68.5383301],[0.16110449218749997E3,68.5625],[0.16136513671875005E3,68.822998],[161.565625,68.9051758],[161.565625,69.0639648],[0.16148007812500012E3,69.201709],[0.16153691406250002E3,69.379541],[0.16194511718750007E3,69.5451172],[0.16237568359375004E3,69.6490723],[0.16320136718750004E3,69.7147461],[0.16349804687499997E3,69.6932617],[0.16394599609375004E3,69.7351563],[164.15957,69.7192871],[0.16451328125000003E3,69.6091309],[0.16576074218749997E3,69.5844238],[0.16598046874999997E3,69.5459961],[0.16688437500000012E3,69.4999023],[167.628125,69.740332],[167.950098,69.6991699],[0.16815000000000012E3,69.5773926],[0.16830302734375002E3,69.2714844],[0.16894619140625005E3,69.1633301],[0.16931064453125003E3,69.079541],[0.16941464843750012E3,68.9196289],[0.16960986328124997E3,68.7860352],[0.17053759765624994E3,68.8253906],[0.17099541015625002E3,69.0453125],[0.17099667968750006E3,69.1347168],[0.17071416015625007E3,69.3882324],[0.17058222656250004E3,69.5833496],[0.17016093750000007E3,69.6265625],[170.503125,69.856543],[0.17048681640625003E3,70.1075684],[0.17124667968750012E3,70.076123],[0.17197050781250007E3,70.0003418],[0.17255957031249997E3,69.9683594],[0.17286923828125012E3,69.9197754],[0.17327744140625006E3,69.8238281],[0.17343867187500004E3,69.9468262],[0.17394804687500007E3,69.8741211],[0.17431943359375003E3,69.8816406],[0.17478554687499997E3,69.8556641],[0.17529560546875015E3,69.8600586],[175.751172,69.9041504],[0.17610751953125018E3,69.8603027],[0.17641044921875007E3,69.7685059],[0.17692441406250018E3,69.6459961],[177.394531,69.6116211],[0.17793369140625006E3,69.4956055],[0.17844277343750005E3,69.4529785],[0.17884833984375004E3,69.387207],[0.17895068359374997E3,69.2958008],[0.17927265624999998E3,69.259668],[179.868262,69.0126953],[180,68.9834473],[180,65.0672363],[0.17982734375000004E3,65.0341797],[0.17944824218750006E3,64.8220215],[179.15,64.7815918],[0.17869843750000007E3,64.6311035],[0.17851953125000003E3,64.6029785],[178.285352,64.6722656],[177.748633,64.717041],[0.17758164062500012E3,64.7778809],[0.17717919921875003E3,65.0141113],[0.17688085937499997E3,65.0819336],[0.17664550781249997E3,65.0071777],[0.17703730468750004E3,64.9996582],[0.17722285156250004E3,64.8616699],[177.06875,64.7866699],[0.17683105468749997E3,64.8492188],[0.17642949218750002E3,64.8551758],[0.17606113281250012E3,64.9608887],[0.17578115234375008E3,64.844043],[0.17539648437500009E3,64.7836914],[0.17509775390625018E3,64.7768555],[0.17454882812500009E3,64.6838867],[0.17469863281250005E3,64.6814453],[0.17509707031249997E3,64.7466309],[175.67793,64.7824707],[176.056543,64.9047363],[0.17624697265624997E3,64.8430176],[0.17635097656250005E3,64.705127],[0.17614091796875007E3,64.5858398],[0.17650761718749993E3,64.6824219],[0.17673095703124997E3,64.6248535],[0.17704980468749991E3,64.7192383],[177.3875,64.7740234],[0.17746718750000005E3,64.7368164],[177.409863,64.5728027],[0.17743291015625002E3,64.4444824],[177.6875,64.3047363],[0.17795332031250013E3,64.2222656],[0.17813056640625004E3,64.2352539],[178.229492,64.3644043],[0.17838144531250018E3,64.2608887],[0.17847714843750012E3,64.1278809],[0.17845136718750004E3,64.011377],[0.17865029296875002E3,0.63965283203125004E2],[0.17873144531250003E3,63.6670898],[0.17844042968750009E3,0.63605566406250006E2],[178.706445,63.5215332],[0.17867871093749997E3,63.4022949],[0.17878671875000012E3,0.63442431640625074E2],[0.17879296874999997E3,63.540332],[179.028125,0.63282421874999976E2],[0.17933232421875007E3,63.1901855],[0.17940507812499996E3,0.63077734375000034E2],[0.17925957031250002E3,63.0083008],[0.17938105468750004E3,0.62883691406250016E2],[0.17951093750000004E3,62.862793],[179.570508,62.6875],[0.17917695312500004E3,62.4691895],[0.17912070312500012E3,62.3203613],[0.17801923828125007E3,62.5469727],[177.292578,0.62599023437500016E2],[0.17733896484375006E3,0.62781347656250034E2],[0.17702353515625012E3,62.7772461],[0.17696347656250012E3,62.6932617],[0.17715947265625005E3,62.5609863],[0.17670253906250002E3,62.5057617],[0.17632841796875007E3,62.3460449],[0.17526787109375002E3,0.62102392578125006E2],[0.17519238281250009E3,62.0344238],[174.797559,0.61938867187499994E2],[0.17471503906249995E3,0.61947900390624966E2],[0.17451435546875015E3,61.8236328],[174.138867,61.795166],[173.822363,61.6793945],[173.623437,61.7160645],[0.17313183593749997E3,0.61406640625000016E2],[0.17285654296875003E3,0.61469189453124955E2],[0.17290800781250002E3,0.61311621093750006E2],[0.17273066406250004E3,0.61314404296874955E2],[0.17258476562500007E3,61.1904297],[0.17239609375000006E3,61.1673828],[172.392773,61.0617676],[0.17183056640624997E3,60.8373535],[0.17172949218749997E3,0.60843115234375055E2],[0.17148974609374997E3,60.7257324],[0.17094931640625012E3,60.5229492],[0.17060820312500007E3,60.4349121],[0.17042343750000012E3,60.0478027],[170.350977,0.59965527343749955E2],[0.17015410156250002E3,59.986084],[169.982617,0.60067089843749955E2],[0.16988701171875007E3,60.2179199],[0.16961835937500004E3,60.4380371],[169.226758,0.60595947265624964E2],[0.16867031249999997E3,60.5628906],[168.462793,60.5922363],[168.1375,60.5739258],[0.16762607421875006E3,60.4689453],[0.16722675781250004E3,60.4062988],[166.964063,60.3070313],[0.16633183593750007E3,59.8724121],[0.16618652343749997E3,59.8494629],[0.16613603515625007E3,0.59979345703125034E2],[0.16635214843750006E3,0.60484814453124976E2],[166.180176,60.4803711],[0.16594199218750006E3,60.3568848],[0.16528525390625012E3,60.1349121],[0.16508457031250006E3,0.60098583984374976E2],[0.16501894531250005E3,0.59860742187500016E2],[0.16485429687500005E3,0.59840966796874994E2],[0.16466972656250002E3,0.59997460937499994E2],[164.525293,60.0612793],[0.16437685546875005E3,60.0580566],[0.16411328125000003E3,0.59897558593749984E2],[0.16413505859375002E3,59.984375],[0.16378007812500007E3,0.60041113281250006E2],[0.16340996093750007E3,59.8349609],[163.321191,59.7054199],[0.16326904296874997E3,0.59520019531249964E2],[0.16327285156250002E3,0.59302587890625006E2],[163.084863,59.1313965],[0.16294003906250006E3,59.1143066],[0.16300429687500005E3,59.020166],[162.453027,58.7085938],[0.16214160156249997E3,58.4474121],[0.16196005859375012E3,58.0769043],[0.16203964843750006E3,57.9182617],[162.197461,57.8291504],[0.16246699218750007E3,57.7662109],[0.16252197265624997E3,57.9041016],[0.16271835937500012E3,57.9460938],[0.16314501953125003E3,57.8373047],[0.16321386718750003E3,57.6868164],[163.108789,57.5648438],[0.16277929687500003E3,57.3576172],[0.16276152343750002E3,57.2439453],[162.814844,57.0233887],[162.802637,56.8114746],[0.16292207031250004E3,56.7226563],[0.16304638671874997E3,0.56741308593750006E2],[163.256543,56.6880371],[0.16324326171875012E3,56.5645508],[0.16333554687500012E3,0.56232519531250006E2],[163.047363,56.0446777],[0.16284033203125003E3,56.065625],[162.628125,0.56232275390625034E2],[0.16271318359375007E3,56.3308594],[0.16289326171875004E3,56.3994629],[0.16303837890625002E3,56.521875],[162.877637,56.4763672],[0.16267148437500006E3,56.4900879],[0.16248867187500005E3,56.3991211],[0.16252822265625005E3,0.56260693359374955E2],[0.16208496093749997E3,56.0896484],[161.775586,55.654834],[0.16172939453124997E3,0.55358007812500006E2],[0.16182421874999997E3,55.138916],[162.080273,54.8861328],[0.16210556640625006E3,54.7521484],[0.16172568359375006E3,54.532959],[0.16129404296875012E3,54.5205566],[0.16112988281249997E3,0.54598242187500034E2],[160.772656,54.5413574],[0.16051718750000006E3,54.4308594],[160.074414,54.1891602],[159.921777,0.54008398437500034E2],[159.84375,53.7836426],[0.15995585937500007E3,53.5521973],[0.15989765625000004E3,0.53380761718749966E2],[0.16000214843750007E3,53.2749023],[0.16002509765625004E3,0.53129589843749955E2],[0.15977158203125012E3,53.2296875],[159.585938,0.53237695312499966E2],[0.15895205078125005E3,53.0475586],[0.15874541015625002E3,52.9089355],[158.564648,53.05],[0.15843232421875004E3,52.9574219],[158.608789,0.52873632812500034E2],[0.15848076171875002E3,52.6266602],[0.15846347656250006E3,52.3049805],[0.15833164062500012E3,52.0908691],[0.15810351562500003E3,51.8096191],[0.15782324218750003E3,0.51605322265625034E2],[157.530957,0.51479882812499966E2],[0.15748984375000006E3,51.4089355],[0.15720224609375006E3,51.2127441],[0.15674775390625004E3,50.9692871],[156.670801,51.2268555],[0.15654345703124997E3,51.3116211],[156.500391,51.4750977],[0.15648984375000003E3,51.9130371],[156.377344,52.3665527],[0.15636474609374997E3,52.509375],[0.15622861328125006E3,52.6262695],[0.15611035156250003E3,52.8661621],[156.098828,53.0064941],[0.15590488281250003E3,53.928125],[155.706445,54.5214844],[0.15562031250000004E3,54.8645508],[155.554883,0.55348486328125034E2],[0.15571660156250002E3,56.0722168],[0.15598251953125012E3,56.6952148],[0.15606748046875006E3,0.56781591796875034E2],[0.15652929687500003E3,0.57021191406250004E2],[156.728418,0.57152246093749966E2],[0.15697675781250004E3,57.4663086],[0.15694824218750003E3,57.6157715],[0.15679160156250006E3,57.7479492],[156.985742,57.8301758],[157.216797,0.57776806640625004E2],[157.450391,0.57799267578124976E2],[0.15766640625000005E3,58.0197754],[0.15797460937500003E3,57.9859375],[158.210449,58.025293],[0.15868701171874997E3,0.58281347656250034E2],[0.15903691406250002E3,58.4239258],[159.591504,0.58803662109374955E2],[159.847363,0.59127148437499955E2],[0.16035039062500007E3,59.394043],[0.16054746093750006E3,59.5473633],[0.16085527343750002E3,0.59626855468749966E2],[161.218945,59.8456055],[0.16144931640625003E3,60.0273438],[0.16175351562500012E3,0.60152294921875004E2],[162.003613,60.420166],[0.16226630859375004E3,0.60536718749999984E2],[0.16271318359375007E3,60.6594727],[0.16297314453124997E3,0.60782910156249955E2],[0.16335234375000007E3,60.8004395],[0.16370996093749997E3,0.60916796875000045E2],[0.16355351562500002E3,61.0256348],[0.16361962890624997E3,61.1113281],[0.16389335937500007E3,61.2404785],[0.16400546875000006E3,61.3437988],[0.16397275390625006E3,0.61419873046874955E2],[0.16380439453125004E3,0.61461376953124976E2],[163.882715,61.6401367],[0.16401953125000003E3,61.7106934],[0.16407421874999997E3,0.62045019531250034E2],[164.207227,62.2922363],[0.16459833984375004E3,0.62470556640625034E2],[0.16512412109375006E3,0.62411523437500016E2],[0.16541738281250005E3,62.4470703],[0.16539658203125006E3,62.4938965],[0.16504404296875006E3,62.5169922],[164.792383,62.5710938],[0.16456699218750006E3,62.6754883],[0.16425566406250007E3,62.696582],[0.16333173828125004E3,62.5509277],[0.16324423828125006E3,0.62455371093750074E2],[0.16330214843750005E3,62.372998],[0.16316347656250005E3,62.2595703],[163.131055,62.0499023],[0.16301767578125006E3,61.8910645],[0.16300927734374997E3,61.7915039],[0.16325781249999997E3,0.61699462890624964E2],[0.16299394531250005E3,61.5441895],[0.16285595703125003E3,61.7050293],[162.699023,61.6525879],[0.16239257812500003E3,61.6621094],[162.188379,0.61540673828124966E2],[0.16103710937500003E3,60.9628906],[0.16076660156249994E3,0.60753320312499966E2],[0.16048203125000006E3,60.7398437],[160.173633,60.6384277],[160.225781,60.831543],[0.16037890625000003E3,61.0254883],[160.184277,61.0476563],[0.15988310546875002E3,0.60943408203125045E2],[0.15979042968750002E3,60.9566406],[0.15994921874999994E3,61.1286133],[0.15988310546875002E3,0.61291796875000074E2],[0.16016269531250012E3,61.5375],[160.317383,61.7933594],[160.309375,0.61894384765625006E2],[160.18252,61.902832],[0.15955234375000012E3,61.7194824],[0.15929501953125012E3,61.9141602],[0.15907666015625003E3,61.9222656],[0.15882431640625012E3,61.8502441],[0.15854716796875007E3,0.61810888671875034E2],[158.333691,61.8256836],[0.15807011718750002E3,61.7536133],[0.15779931640625003E3,0.61795263671875055E2],[0.15746933593750012E3,0.61798925781250006E2],[157.08418,61.6756836],[0.15668027343750006E3,61.4806152],[0.15662968750000002E3,61.2724609],[0.15634414062500005E3,61.1550781],[0.15605595703125002E3,60.9956055],[0.15585332031250007E3,60.7771484],[0.15542783203125006E3,60.5498535],[154.970801,60.3766602],[0.15457822265625006E3,0.60095019531250045E2],[0.15444072265625005E3,59.8837891],[0.15429306640625006E3,59.8333496],[0.15426884765625002E3,0.59658398437500004E2],[0.15414980468749997E3,59.5285156],[0.15435761718750007E3,59.4814453],[0.15458251953124997E3,0.59540087890625074E2],[0.15497128906250006E3,59.4496094],[0.15516669921875004E3,59.3601562],[155.160449,59.1901367],[154.82373,59.1875488],[0.15470351562500005E3,59.1413086],[0.15445800781250003E3,59.2165527],[0.15424667968750006E3,59.1085937],[0.15401093750000004E3,59.0755371],[0.15369521484375005E3,59.2247559],[0.15336113281250002E3,59.2147949],[0.15327294921874997E3,59.0913086],[0.15307773437500012E3,59.0818848],[152.882227,58.9390625],[0.15257558593750005E3,0.58954101562499964E2],[0.15240068359375002E3,59.026416],[152.165234,58.9970215],[0.15208789062499994E3,0.58910449218750045E2],[0.15170458984374997E3,58.8666992],[0.15132675781250006E3,0.58875097656250034E2],[0.15112109375000003E3,59.0825195],[0.15150498046875003E3,59.1640137],[0.15199003906250002E3,59.1600586],[152.260645,59.223584],[0.15210449218749997E3,59.2905762],[151.798047,59.3232422],[0.15148574218750005E3,59.5241211],[151.170312,59.583252],[0.15098251953125012E3,0.59571337890625045E2],[0.15086328124999997E3,0.59475439453125034E2],[0.15061523437499997E3,0.59506542968749976E2],[0.15066728515625002E3,59.5563477],[0.15045722656250004E3,0.59590722656249994E2],[0.14964257812499994E3,59.7704102],[149.424512,59.7609863],[0.14906523437500002E3,59.6305176],[149.20498,59.4881836],[148.925,59.475],[0.14879707031250004E3,0.59532324218750006E2],[0.14874414062499997E3,0.59373535156249964E2],[0.14896464843750007E3,0.59369140624999964E2],[0.14891406249999994E3,0.59282714843750036E2],[0.14849121093749994E3,59.2623047],[0.14825742187500006E3,0.59414208984374994E2],[0.14787460937500006E3,0.59388037109375006E2],[0.14768789062499997E3,0.59290673828124966E2],[0.14751445312500002E3,59.2685547],[0.14704003906250003E3,0.59365722656249964E2],[0.14680371093750003E3,0.59372949218750016E2],[0.14653720703125006E3,59.4569824],[0.14644433593749997E3,59.4304688],[0.14627343749999997E3,59.2214844],[0.14604951171875007E3,59.1705566],[0.14593164062499997E3,0.59198388671874994E2],[0.14575644531250006E3,0.59373730468750004E2],[145.55459,59.4135254],[0.14448339843749997E3,59.3762695],[143.86875,59.411377],[143.523828,59.3436523],[0.14319218750000002E3,59.3701172],[0.14258027343750004E3,59.2401367],[0.14233037109375002E3,59.1526367],[0.14202539062499997E3,0.58999658203125016E2],[0.14175468750000007E3,0.58745263671874966E2],[141.34707,58.5280762],[0.14098769531250005E3,58.4168457],[0.14068496093749997E3,0.58212158203124964E2],[140.446875,57.8136719],[0.14000234375000005E3,57.6875],[0.13986152343750004E3,57.5493164],[0.13961923828125006E3,0.57455712890624966E2],[0.13944384765625003E3,0.57329687500000055E2],[0.13918164062499997E3,57.2615234],[0.13896572265625005E3,57.0881348],[0.13866210937500003E3,56.9655273],[0.13821777343749997E3,0.56629003906250034E2],[0.13807382812500003E3,56.4331055],[0.13769150390625006E3,56.1393555],[137.572949,56.1121094],[0.13738408203125007E3,0.55974755859374966E2],[0.13679355468750012E3,0.55694189453125006E2],[0.13646025390625007E3,55.576709],[136.175195,55.3522461],[0.13575078125000002E3,55.1606445],[0.13554062500000012E3,55.1137695],[135.2625,0.54943310546874976E2],[0.13521152343750012E3,54.8408203],[0.13525771484375005E3,54.7314941],[0.13585156249999997E3,0.54583935546874955E2],[136.237988,54.6140625],[136.797266,54.6209961],[0.13682041015625006E3,54.4523437],[136.77041,54.3533203],[0.13668300781250005E3,53.9312988],[0.13671884765625006E3,0.53804101562499994E2],[0.13688642578125004E3,0.53839355468749964E2],[0.13715537109375012E3,0.53821679687500016E2],[0.13725800781250004E3,54.0252441],[0.13709619140625003E3,0.54128564453124994E2],[0.13737773437500002E3,54.2823242],[0.13766601562500003E3,0.54283300781250006E2],[0.13751318359374997E3,0.54156396484374994E2],[137.339258,54.1005371],[137.622754,53.970459],[0.13783476562500002E3,53.9467285],[0.13764482421875007E3,0.53865820312500034E2],[0.13751699218750002E3,53.7070801],[0.13722148437500007E3,0.53579199218750006E2],[137.32832,0.53538964843749966E2],[137.738184,53.5603027],[0.13795048828125007E3,53.6035645],[0.13825292968749997E3,0.53726416015625055E2],[0.13837890624999997E3,53.9092773],[0.13856816406250007E3,0.53947167968749994E2],[0.13856914062500002E3,53.8187988],[0.13824970703125004E3,53.5240234],[0.13845068359375003E3,0.53537011718750016E2],[0.13866074218750012E3,0.53744775390624966E2],[0.13872167968749997E3,54.04375],[138.695703,54.3200195],[0.13910507812500012E3,54.2178223],[0.13931972656250005E3,54.1929687],[139.707422,54.2771484],[0.14017871093749997E3,0.54051562500000045E2],[140.34707,53.8125977],[0.14068759765625012E3,53.5964355],[0.14100566406250007E3,53.4945801],[0.14121767578124997E3,53.3344727],[141.37373,53.2927734],[141.402051,53.1839844],[141.18125,53.0152832],[0.14088730468750012E3,53.0915039],[0.14087451171874997E3,53.0398437],[141.086816,52.8975586],[0.14125585937499997E3,52.8401367],[141.24502,52.5501465],[0.14113242187500006E3,0.52435693359374994E2],[0.14116982421875005E3,52.3684082],[141.485254,52.1785156],[141.385547,52.0572266],[0.14136689453125004E3,51.9206543],[0.14112939453124997E3,51.7277832],[0.14093261718750003E3,51.6199219],[0.14083857421875004E3,51.4141602],[0.14068769531250004E3,51.2322754],[0.14067070312500002E3,51.0513184],[140.520898,0.50800195312500044E2],[0.14047636718750007E3,0.50545996093750034E2],[0.14053544921875002E3,50.1307617],[0.14062451171874997E3,50.0824219],[0.14046269531250002E3,0.49911474609375006E2],[0.14051718750000012E3,49.5961426],[140.308984,49.0539063],[140.37832,48.9641113],[0.14022421875000012E3,48.7728516],[0.14017060546875004E3,48.5236816],[0.13999843750000005E3,48.3237793],[0.13937265625000006E3,47.8873535],[0.13916699218750003E3,47.6348633],[0.13900136718750005E3,47.3833008],[0.13858681640625005E3,0.47057226562500006E2],[138.391797,46.7450684],[0.13833691406250003E3,46.5434082],[0.13821015625000004E3,46.4629395],[0.13810634765625005E3,46.2507324],[0.13776914062500006E3,45.9285156],[137.685449,45.8183594],[137.425195,0.45639990234375034E2],[0.13714697265624997E3,0.45393505859374976E2],[0.13680351562500002E3,45.1711426],[0.13646044921875003E3,0.44822119140625034E2],[136.251172,44.6667969],[0.13614228515625004E3,0.44489111328125034E2],[0.13587460937500012E3,44.3735352],[0.13553320312500003E3,43.9714844],[0.13548339843749997E3,43.8350098],[135.260156,43.6846191],[135.131055,43.5257324],[134.691797,43.2905762],[0.13415644531250004E3,43.0421387],[134.010449,42.9474609],[133.709375,42.8299316],[0.13358671875000002E3,42.8282227],[0.13315996093750007E3,42.6969727],[0.13299658203124997E3,42.8080078],[0.13286357421875007E3,42.79375],[0.13270898437500003E3,42.8758301],[132.481348,42.9097656],[0.13230380859375006E3,42.8833008],[132.334375,43.2386719],[0.13230957031249997E3,43.3135254],[0.13202871093749997E3,43.1189453],[0.13186660156249997E3,43.095166],[132.013086,43.2800293],[0.13179472656250002E3,43.2552734],[0.13151640625000007E3,42.9964355],[131.393262,42.8223145],[0.13115830078125012E3,42.6260254],[130.709375,0.42656396484374966E2],[0.13083417968750007E3,42.5229492],[0.13068730468750007E3,42.3025391],[130.526953,42.5354004],[0.13058447265625003E3,42.567334],[0.13042480468749997E3,42.7270508],[0.13057724609375006E3,42.8116211],[0.13106855468750004E3,42.9022461],[131.086133,43.0380859],[0.13117558593750007E3,43.1421875],[0.13126181640625006E3,43.4330566],[0.13118242187500007E3,43.5055664],[131.174219,43.7047363],[0.13121328125000005E3,44.0029297],[131.255273,44.071582],[0.13106064453125012E3,44.659668],[0.13096777343750003E3,44.7999512],[0.13108232421875002E3,44.9100098],[0.13144687500000012E3,0.44984033203124966E2],[131.654004,45.2053711],[0.13185185546875002E3,45.3268555],[0.13197753906250003E3,0.45243994140625006E2],[0.13293603515624997E3,0.45029931640624994E2],[133.113477,0.45130712890625006E2],[0.13311337890625006E3,0.45321435546874966E2],[0.13318603515625003E3,45.4948242],[133.436426,45.6046875],[0.13351308593750002E3,0.45878808593749994E2],[0.13368574218750004E3,46.0089355],[0.13370068359374997E3,46.1397461],[0.13386132812500003E3,46.2477539],[0.13390273437500005E3,0.46366943359374964E2],[0.13386660156250005E3,0.46499121093750006E2],[0.13402265625000004E3,46.7131836],[0.13403857421874997E3,46.8581543],[134.202148,0.47128076171874966E2],[134.167676,47.3021973],[134.29082,47.4135742],[0.13448349609375006E3,0.47447363281250006E2],[0.13459619140624997E3,0.47523876953124955E2],[134.752344,47.7154297],[0.13456601562500006E3,48.0225098],[134.669336,48.1533203],[0.13466523437500004E3,48.2539062],[0.13456357421875012E3,0.48321728515624955E2],[0.13429335937500005E3,0.48373437500000016E2],[0.13384218750000005E3,0.48273730468750045E2],[0.13346835937500006E3,48.097168],[0.13314404296875003E3,48.1056641],[132.877148,0.47979101562500055E2],[0.13270722656250007E3,47.9472656],[132.561914,0.47768505859374955E2],[0.13238017578125002E3,47.7294922],[0.13178525390625012E3,47.6805176],[0.13155673828125012E3,47.6820313],[0.13131933593749997E3,47.727832],[131.002734,47.6914551],[130.91543,47.8429199],[0.13073261718750007E3,48.0192383],[130.712109,48.1276367],[0.13080429687500012E3,0.48341503906249976E2],[130.552148,0.48602490234374955E2],[0.13061718750000003E3,48.7731934],[130.553125,0.48861181640625006E2],[130.195996,48.8916504],[0.13003710937499994E3,48.9722656],[0.12979257812500006E3,49.198877],[0.12953369140624997E3,49.3234375],[129.498145,49.3888184],[0.12912011718750003E3,49.3620605],[0.12877031250000007E3,0.49494726562500006E2],[0.12870400390624997E3,49.6001465],[0.12823710937500007E3,49.5592773],[0.12799960937500008E3,49.5686035],[0.12771113281250003E3,49.6715332],[0.12750244140624997E3,49.8734375],[0.12751230468750013E3,50.0716797],[127.590234,50.2089844],[0.12739531250000006E3,50.298584],[0.12730605468749998E3,50.4535156],[0.12734716796874997E3,50.5500977],[0.12730703125000005E3,0.50707958984375004E2],[0.12692480468749997E3,51.1001465],[0.12683378906250007E3,51.3148926],[0.12680546875000007E3,51.5056641],[0.12670917968750008E3,0.51566308593749994E2],[0.12670078125000006E3,51.7030273],[0.12651054687500002E3,0.51925830078125045E2],[0.12645556640625003E3,52.1264648],[126.312891,52.3997559],[0.12615664062500004E3,52.5466309],[126.016016,0.52610205078125034E2],[0.12604814453125006E3,52.7394531],[125.871875,0.52871533203124976E2],[125.728125,52.8907227],[0.12564902343750012E3,0.53042285156250045E2],[0.12554599609375005E3,53.0476074],[0.12522558593750003E3,53.1658203],[124.970898,53.1973145],[124.882129,0.53129736328125006E2],[0.12446591796875006E3,53.2296387],[0.12421992187500003E3,53.3701172],[0.12399472656250005E3,53.4056152],[123.607812,0.53546533203124994E2],[0.12330957031250001E3,53.5556152],[0.12295761718750006E3,53.4977051],[0.12251582031250003E3,53.4569824],[122.337793,53.4850098],[0.12208886718750001E3,53.4514648],[0.12140546875000003E3,0.53317041015624966E2],[0.12098544921875012E3,53.2845703],[0.12070410156249997E3,0.53171826171874955E2],[0.12004433593750005E3,52.7182129],[120.172754,0.52602490234374955E2],[0.12036005859375004E3,52.627002],[120.656152,52.5666504],[0.12069921874999997E3,52.4936035],[0.12066542968749998E3,0.52299902343750034E2],[0.12074453125000004E3,52.2054688],[0.12068144531250006E3,51.9730469],[0.12051054687500006E3,51.8485352],[0.12023701171875003E3,0.51722998046875034E2],[0.12006689453125003E3,51.6006836],[0.11996699218750008E3,51.4221191],[0.11981318359375004E3,51.267041],[119.745996,51.1077148],[0.11957343750000003E3,50.9467773],[0.11944570312500005E3,50.702832],[0.11916367187500006E3,50.4060059],[0.11934628906250012E3,0.50278955078124994E2],[0.11925986328125012E3,50.0664063],[0.11914746093750001E3,0.50013378906249976E2],[0.11875595703125013E3,49.9628418],[118.451562,49.8444824],[117.873437,49.5134766],[0.11747714843750006E3,49.6094238],[0.11724560546874997E3,0.49624853515625055E2],[116.683301,49.8237793],[0.11655117187499998E3,49.9203125],[116.13457,50.010791],[0.11571777343750003E3,49.8806152],[0.11542919921874996E3,49.8964844],[0.11527451171875006E3,0.49948876953124994E2],[0.11500332031250005E3,0.50138574218749994E2],[0.11474316406249996E3,50.2336914],[0.11429707031250004E3,50.2744141],[0.11407070312500004E3,0.50204736328124966E2],[0.11388115234375007E3,50.101123],[0.11357421874999996E3,50.0070313],[113.16416,49.797168],[113.055566,49.6162598],[0.11280644531250007E3,49.523584],[112.494922,0.49532324218750034E2],[0.11207968750000006E3,49.4242188],[111.336621,0.49355859374999966E2],[0.11082792968750002E3,49.1661621],[0.11063105468750003E3,0.49137597656249994E2],[0.11042783203125006E3,49.2199707],[0.11019990234375003E3,49.1704102],[0.10952871093749998E3,49.269873],[0.10923671875000005E3,0.49334912109374955E2],[0.10861367187500004E3,49.3228027],[108.406934,49.3963867],[0.10803378906250012E3,0.49593994140624964E2],[0.10793671875000004E3,0.49691015625000034E2],[0.10794785156250012E3,49.924707],[0.10763095703125012E3,49.9831055],[107.233301,0.49989404296874994E2],[0.10704023437500004E3,0.50086474609375045E2],[0.10694130859375005E3,50.1966797],[0.10671113281250004E3,0.50312597656250006E2],[0.10621787109375005E3,0.50304589843749966E2],[105.875195,0.50405371093750006E2],[0.10538359375000002E3,50.4737305],[0.10509472656249996E3,50.3899414],[0.10446630859375003E3,50.3061523],[0.10417968749999997E3,50.1694336],[103.802637,50.1760742],[0.10363291015625006E3,0.50138574218749994E2],[103.304395,0.50200292968750034E2],[0.10316171875000005E3,50.2907227],[0.10268330078125004E3,50.3871582],[102.469434,50.5256836],[0.10228837890625007E3,0.50585107421875016E2],[0.10231660156250003E3,50.718457],[0.10221503906250004E3,50.8294434],[102.111523,51.3534668],[0.10157089843750006E3,0.51467187500000044E2],[101.38125,51.4526367],[0.10122324218750012E3,51.5132812],[0.10053623046875006E3,0.51713476562500034E2],[99.9216797,0.51755517578124994E2],[0.9971923828124997E2,51.8716309],[99.4070313,0.51923535156250004E2],[98.8931641,0.52117285156250055E2],[0.9880253906250007E2,51.9574707],[0.9864052734375005E2,0.51801171875000044E2],[98.3527344,0.51717626953125006E2],[98.2199219,51.5056152],[0.9803759765625003E2,51.4499512],[97.946875,51.3484375],[97.825293,0.50985253906249994E2],[97.953125,50.8551758],[0.9802978515625003E2,50.6446289],[98.2794922,50.533252],[98.250293,50.3024414],[98.103418,0.50077832031249955E2],[97.8539062,49.9467773],[0.9758935546875003E2,0.49911474609375006E2],[0.9735976562500005E2,49.7414551],[0.9720859375000005E2,49.7308105],[0.9698574218750005E2,49.8828125],[0.9650576171875005E2,49.9187012],[96.3150391,49.901123],[96.0655273,0.49998730468750004E2],[95.9357422,0.49960009765625045E2],[95.8519531,0.50012939453124964E2],[0.9556718750000007E2,49.9438477],[95.1114258,0.49935449218749994E2],[94.9302734,50.04375],[0.9461474609375003E2,50.0237305],[94.3546875,0.50221826171874994E2],[0.9425107421875005E2,50.5563965],[0.9327050781249997E2,0.50615576171875006E2],[93.103125,50.6039063],[0.9294130859375005E2,50.7782227],[0.9277929687500003E2,0.50778662109375006E2],[92.6266602,50.6882812],[92.3547852,0.50864160156250016E2],[0.9219238281249997E2,0.50700585937499994E2],[91.8042969,50.6936035],[0.9134082031249997E2,0.50470068359375034E2],[91.021582,50.4154785],[0.9076074218749997E2,50.305957],[0.9065507812500007E2,50.2223633],[0.9051689453125007E2,50.2133301],[90.0049805,50.0692871],[89.9773438,49.9843262],[89.6438477,49.9030273],[89.6541016,49.7174805],[89.3956055,0.49611523437500004E2],[89.2439453,49.6270508],[89.1799805,49.5322266],[89.0083984,0.49472802734374994E2],[88.9001953,0.49539697265625016E2],[88.8316406,49.4484375],[88.6332031,0.49486132812500045E2],[88.1925781,0.49451708984375045E2],[88.1157227,49.2562988],[87.9347656,0.49164550781249964E2],[87.7625,49.1658203],[87.3228516,49.085791],[87.2336914,49.2161621],[86.9529297,49.3220703],[86.8121094,0.49487890625000034E2],[86.6142578,49.6097168],[86.7306641,49.6955566],[86.6101563,49.7691406],[86.1808594,49.4993164],[85.9744141,49.4993164],[85.9335937,49.5504395],[85.371582,49.6239258],[85.2918945,0.49599462890625034E2],[85.0007813,0.49894140625000034E2],[84.9894531,0.50061425781249994E2],[84.8389648,50.0913086],[84.6073242,50.2023926],[84.3232422,0.50239160156249966E2],[84.2578125,50.2882324],[84.1759766,50.5205566],[83.9451172,50.7746582],[83.7177734,50.8871582],[83.3573242,50.9945801],[83.1602539,50.989209],[83.0192383,50.8972656],[82.7608398,50.8933594],[82.4939453,50.7275879],[82.0980469,0.50710839843749966E2],[81.9336914,50.7663574],[81.465918,50.7398437],[81.3882813,50.9564941],[81.0714844,50.96875],[81.1272461,51.1910645],[80.965625,0.51189794921875006E2],[80.8773437,51.2814453],[80.6504883,51.2773438],[80.4480469,51.1833496],[80.4236328,0.50946289062499964E2],[80.2202148,50.9117676],[79.9862305,0.50774560546874966E2],[79.4688477,51.4931152],[78.4754883,52.6384277],[77.8599609,0.53269189453124994E2],[77.7043945,53.3791504],[76.5756836,0.53942529296875016E2],[76.4216797,0.54151513671874966E2],[76.6545898,54.1452637],[76.8373047,54.4423828],[76.4964844,54.3356934],[76.2666016,54.3119629],[75.6568359,54.1060059],[75.437207,54.0896484],[75.3770508,0.53970117187499966E2],[75.0521484,53.826709],[74.8341797,53.8256836],[74.4519531,53.6472656],[74.3515625,0.53487646484375006E2],[74.2099609,53.5764648],[73.8589844,53.6197266],[73.6429687,0.53576269531250006E2],[73.371875,53.4543945],[73.2857422,53.5983887],[73.3994141,53.8114746],[73.6789062,53.9294434],[73.7124023,54.0423828],[73.6179688,54.0673828],[73.3806641,53.9628418],[73.1193359,53.9807617],[72.9140625,54.1073242],[72.6222656,54.1343262],[72.5859375,53.9959473],[72.4042969,53.9644531],[72.3873047,54.1230469],[72.2691406,54.2721191],[72.1053711,0.54308447265625055E2],[72.0044922,54.2056641],[71.3364258,54.1583496],[71.0931641,54.212207],[71.1855469,54.5993164],[70.9101562,0.55127978515625045E2],[70.7380859,55.3051758],[70.4863281,0.55282373046874966E2],[70.1824219,0.55162451171875034E2],[69.9817383,0.55199072265625034E2],[69.7402344,55.307373],[69.4932617,0.55356884765624955E2],[68.9772461,0.55389599609374955E2],[68.7128906,55.3084961],[68.5248047,55.204834],[68.20625,55.1609375],[68.244043,55.0524414],[68.0738281,0.54959570312500006E2],[67.8298828,54.9435547],[67.6933594,54.8724121],[67.2573242,54.8288086],[67.0983398,0.54788183593750006E2],[66.2226562,0.54667382812499994E2],[65.9142578,54.6933105],[65.7078125,54.6187012],[65.4769531,0.54623291015624964E2],[65.2374023,54.5160645],[65.1578125,0.54364404296874994E2],[64.9267578,0.54396630859374994E2],[64.6499023,0.54352246093750004E2],[64.4612305,54.3841797],[64.1994141,54.3474121],[64.0039063,0.54267089843749964E2],[0.63721191406249964E2,54.2450195],[63.4136719,54.1832031],[63.1913086,54.1710449],[63.0739258,54.1052246],[62.6327148,0.54069287109375004E2],[62.4990234,54.0131836],[62.0402344,54.0026367],[61.9287109,53.9464844],[61.3336914,54.0492676],[61.14375,53.9638184],[61.1131836,53.7534668],[0.60979492187499964E2,0.53621728515625044E2],[61.2479492,0.53550976562500004E2],[61.4099609,0.53587060546874994E2],[61.5349609,53.523291],[61.4009766,53.4558105],[61.2289062,0.53445898437500006E2],[0.61199218749999964E2,53.2871582],[61.6598633,53.2284668],[62.0146484,53.1078613],[62.0827148,53.0054199],[0.61974218750000055E2,52.94375],[61.4007813,52.9959961],[0.61047460937500006E2,52.9724609],[0.60802343750000055E2,52.7447266],[60.8212891,52.5698242],[0.60979492187499964E2,52.3947754],[0.60937597656250006E2,52.2805664],[60.6703125,52.1508301],[60.4254883,52.1255859],[60.0655273,51.9764648],[0.60067480468750006E2,51.890625],[60.3875,51.772998],[0.60464746093749994E2,0.51651171875000045E2],[0.60973535156250044E2,51.5370605],[61.0148438,51.4923828],[0.61363085937500074E2,51.4418945],[61.5546875,51.3246094],[0.61585058593750006E2,51.2296875],[61.3894531,50.8610352],[61.2268555,50.7748047],[60.9422852,50.6955078],[0.60637988281250074E2,50.6637207],[60.2880859,50.7041504],[60.1121094,50.8341797],[0.59955175781250055E2,50.7992676],[59.8124023,50.5820312],[59.5230469,0.50492871093749955E2],[59.4523438,50.6204102],[58.8836914,0.50694433593750006E2],[0.58547460937500055E2,0.50971044921875034E2],[58.3591797,0.51063818359375034E2],[57.8388672,51.0916504],[57.6538086,0.50925146484375006E2],[57.4421875,50.8888672],[57.1790039,51.0360352],[57.0117187,51.0651855],[56.6202148,50.9808594],[56.4914063,51.0195312],[56.1439453,50.8446289],[56.049707,0.50713525390624966E2],[55.7976563,50.6020508],[55.5422852,50.6018066],[0.55195214843749994E2,0.50744726562500034E2],[55.0148437,0.50869775390625016E2],[54.7271484,0.50998095703125045E2],[54.5460937,50.9460449],[54.60625,50.8798828],[54.65,50.6601563],[54.5961914,50.5506836],[54.4714844,50.5837891],[54.4214844,50.7803223],[54.0415039,51.1151855],[0.53688085937500006E2,51.2518066],[53.534668,51.3995605],[53.3380859,51.482373],[53.0383789,0.51463720703125034E2],[52.8205078,51.4945801],[52.5711914,0.51481640624999955E2],[52.3310547,0.51681298828124966E2],[52.2191406,51.709375],[52.0071289,51.6727051],[51.609082,51.4839844],[0.51344531250000074E2,51.4753418],[51.1634766,51.6474609],[50.7939453,0.51729199218749955E2],[50.7561523,0.51675146484375034E2],[50.246875,0.51289501953124976E2],[49.9323242,51.197168],[49.8222656,0.51131884765625045E2],[49.4980469,51.0835938],[49.3234375,0.50851708984374966E2],[48.8083984,50.6013184],[0.48625097656250006E2,50.6126953],[0.48700488281250074E2,50.3537598],[48.8432617,50.0131348],[48.7589844,49.9283203],[48.4342773,0.49828515624999966E2],[48.2248047,49.9319336],[47.8496094,0.50282324218750055E2],[47.7057617,50.3779785],[47.5036133,50.4027344],[47.3264648,0.50273535156250034E2],[47.2952148,50.0584961],[46.9919922,49.8527344],[0.46889550781249994E2,49.6969727],[46.8020508,0.49367089843750016E2],[0.47018164062500006E2,49.1999023],[0.47014257812500006E2,0.49098339843749976E2],[46.7026367,48.8055664],[0.46609179687500074E2,0.48573876953124994E2],[0.46660937500000074E2,48.4122559],[47.0042969,48.2844727],[47.119043,48.127002],[47.0932617,0.47947705078124955E2],[0.47292382812499994E2,47.740918],[47.4819336,47.8039062],[0.48109960937500006E2,47.7454102],[48.5525391,0.47320996093750004E2],[48.959375,46.7746094],[48.7763672,46.7103516],[48.6052734,46.765918],[0.48509179687499994E2,46.6499512],[48.6101563,46.5664551],[0.49232226562500074E2,46.3371582],[49.0795898,46.189209],[0.48683691406250006E2,46.0861816],[0.48749609375000055E2,0.45920556640624994E2],[48.4870117,45.9348633],[48.1591797,45.7370117],[47.8301758,45.6630371],[47.7010742,0.45686181640625016E2],[47.6333008,45.5840332],[47.4793945,0.45687597656250034E2],[47.5294922,0.45530224609374955E2],[47.4130859,45.4210449],[47.3911133,45.2947754],[0.47083789062500074E2,0.44816992187500034E2],[47.0029297,44.8760742],[46.9574219,44.7825684],[0.46755273437499994E2,0.44656542968750045E2],[46.7072266,0.44503320312499994E2],[0.46753027343750006E2,44.4206543],[47.0236328,44.3432617],[47.2298828,44.1923828],[47.3615234,43.9933594],[0.47462792968749994E2,43.5550293],[0.47562597656250055E2,43.834668],[47.6464844,43.8846191],[47.5089844,43.5097168],[47.5128906,43.21875],[0.47463183593750074E2,43.0350586],[47.709082,42.8109375],[47.7277344,0.42680712890625045E2],[47.8223633,42.6134766],[48.2286133,42.180957],[48.3837891,41.953418],[0.48572851562500006E2,41.8444824],[48.3914063,41.6019043],[48.0560547,41.4586914],[47.8611328,0.41212744140625034E2],[47.5206055,41.2290527],[47.2611328,0.41315087890624994E2],[47.2052734,41.4556152],[46.7493164,0.41812597656250006E2],[0.46571289062499964E2,0.41800097656250045E2],[46.5376953,41.8704102],[46.2126953,0.41989892578124994E2],[0.45954003906249994E2,42.0354004],[45.6385742,42.2050781],[45.7275391,42.4750488],[45.5628906,42.5357422],[45.34375,42.5297852],[45.2082031,42.6482422],[0.44870996093749994E2,42.7563965],[44.7710938,42.6167969],[44.6443359,42.7347168],[44.5058594,42.7486328],[0.43957421875000044E2,42.5665527],[43.7383789,42.6169922],[43.7826172,0.42747021484374955E2],[43.5578125,42.8444824],[0.43089160156250074E2,42.9890625],[0.42991601562499994E2,43.0915039],[42.7606445,0.43169580078124966E2],[42.5660156,43.155127],[42.419043,43.2242187],[42.05,43.1901367],[41.5805664,43.2192383],[41.3582031,43.3333984],[0.41083105468750055E2,43.3744629],[40.6480469,43.5338867],[0.40518945312500044E2,43.5120117],[40.1501953,43.5697754],[39.9783203,0.43419824218749966E2],[39.5166992,0.43727880859375034E2],[0.39329394531250074E2,43.8972656],[38.7172852,44.2880859],[38.18125,44.4196777],[0.37851464843749994E2,0.44698828125000034E2],[37.5724609,44.6708496],[37.4113281,44.7353516],[37.2047852,44.9719727],[0.36944433593750006E2,45.0695801],[36.6507813,45.1264648],[36.6191406,45.185498],[0.36941210937500074E2,0.45289697265624994E2],[36.7204102,45.371875],[36.865918,45.4270508],[37.1035156,0.45302880859374994E2],[37.647168,45.3771973],[0.37609960937500006E2,45.4995117],[0.37669238281250074E2,45.6540527],[0.37840917968750055E2,45.7995605],[37.9331055,46.001709],[0.38014257812500006E2,0.46047753906249966E2],[38.0795898,45.9348145],[38.1835937,46.0948242],[38.4922852,46.0905273],[38.0777344,46.3943359],[0.37913867187500074E2,46.4064941],[37.7665039,46.6361328],[37.9679688,0.46618017578125055E2],[38.2299805,46.7012695],[38.5009766,0.46663671875000034E2],[38.4386719,0.46813085937500006E2],[38.8010742,0.46906152343750044E2],[39.293457,0.47105761718750045E2],[39.1957031,0.47268847656250045E2],[0.39023730468750074E2,47.2722168],[0.38928320312500006E2,47.1756836],[38.5524414,47.1503418],[38.7619141,0.47261621093749994E2],[38.5772461,0.47239111328125034E2],[38.2143555,0.47091455078124966E2],[38.2807617,0.47276660156250045E2],[38.2013672,47.3208008],[38.2874023,0.47559179687500034E2],[38.7189453,47.7141113],[38.900293,47.855127],[39.3910156,47.8337402],[39.7359375,0.47844824218750055E2],[39.7757813,47.9644531],[39.9579102,48.2688965],[39.8356445,48.5427734],[39.6447266,48.5912109],[0.39792871093749994E2,0.48807714843750034E2],[0.39989160156249994E2,0.48851416015625034E2],[0.39753320312499994E2,48.9144531],[39.6865234,0.49007910156250034E2],[0.39889746093750006E2,0.49064062500000034E2],[40.0700195,49.200293],[40.1261719,49.3688477],[40.0306641,49.5967285],[0.39780566406250074E2,49.5720215],[0.39462792968749994E2,49.7280273],[39.3029297,49.742041],[39.1748047,49.855957],[38.9183594,49.824707],[38.6477539,49.9528809],[38.4511719,0.49964062499999976E2],[0.38258593750000074E2,50.0523437],[38.046875,49.9200195],[0.37704199218750006E2,50.109082],[37.5823242,0.50291845703125034E2],[0.37422851562499964E2,0.50411474609375006E2],[36.759082,0.50291845703125034E2],[36.6194336,50.2092285],[36.4998047,50.2804687],[0.36306054687499994E2,50.2804687],[36.1164063,0.50408544921875006E2],[35.8902344,50.4371094],[35.6737305,50.3459961],[35.4116211,0.50539697265624994E2],[35.4401367,50.7276855],[35.3119141,0.51043896484374955E2],[0.35158105468749994E2,51.0609863],[35.0640625,0.51203417968750045E2],[34.7123047,51.1722168],[0.34491015625000074E2,51.2370605],[0.34234179687500074E2,51.2437988],[0.34280664062499994E2,0.51311669921874966E2],[34.1210938,51.6791504],[34.3792969,51.7165039],[0.34397851562499994E2,51.7804199],[0.34113085937500074E2,0.51979638671874994E2],[33.9220703,52.2514648],[0.33735253906249994E2,52.3447754],[33.1484375,0.52340429687500034E2],[0.32899707031250074E2,52.2563477],[0.32507910156250006E2,52.3085449],[32.3629883,0.52272119140624994E2],[32.2828125,52.1140137],[0.31973828125000097E2,52.0466309],[0.31763378906250093E2,52.1010742],[0.31577343750000036E2,52.3123047],[31.5855469,52.5324707],[0.31526171875000017E2,0.52633007812499955E2],[31.5351562,0.52798242187499966E2],[0.31258789062499968E2,53.0166992],[31.4178711,53.1960449],[0.31668261718750017E2,53.2009277],[0.31849707031250006E2,53.1062012],[32.1419922,0.53091162109375034E2],[32.4262695,53.2105957],[32.4693359,0.53270312500000045E2],[32.7042969,53.3363281],[32.6857422,53.4481445],[0.32469628906249994E2,0.53546972656250006E2],[32.4501953,53.6929199],[32.2003906,53.78125],[0.31754199218750017E2,53.8104492],[31.837793,54.0007812],[31.7919922,54.0559082],[0.31403613281250017E2,0.54195947265624966E2],[0.31184765625000093E2,54.4529785],[0.31074804687500063E2,54.4917969],[31.1212891,54.6484863],[30.7988281,54.783252],[0.30829882812500014E2,54.9149902],[0.30977734375000097E2,55.0504883],[0.30958886718749994E2,55.1375977],[0.30814453124999968E2,55.2787109],[0.30900585937500097E2,0.55397412109374955E2],[0.30906835937500063E2,55.5700195],[0.30625585937500006E2,55.6662598],[30.45625,55.7868164],[30.2335938,55.8452148],[29.9370117,55.8452637],[0.29482226562500074E2,55.6845703],[0.29353417968750048E2,55.784375],[29.375,55.9387207],[0.29087402343749996E2,56.0211426],[28.7947266,55.9425781],[0.28563964843750057E2,56.0919922],[0.28284277343750006E2,56.0559082],[28.1479492,56.1429199],[28.2020508,56.2604004],[28.103125,56.5457031],[28.0075195,56.5998535],[0.27806054687499994E2,0.56867089843750044E2],[0.27639453125000074E2,56.8456543],[0.27717382812500063E2,57.0546387],[27.8145508,57.1668945],[27.796875,57.3169434],[0.27538671875000063E2,0.57429785156250034E2],[27.5111328,0.57508154296875006E2],[27.3519531,57.528125],[27.4,57.6667969],[0.27542089843750063E2,57.7994141],[27.752832,0.57841015624999955E2],[27.487793,0.58270068359375045E2],[0.27531347656250006E2,58.4352539],[0.27427050781250074E2,0.58733056640624966E2],[0.27464453125000034E2,58.8413086],[0.27757617187500074E2,59.052002],[27.8976563,0.59277636718750074E2],[28.1510742,0.59374414062499966E2],[28.0125,0.59484277343749966E2],[0.28063964843750053E2,0.59554003906250045E2],[0.28013964843750074E2,0.59724755859375016E2],[28.1311523,59.7865234],[28.3345703,59.6925293],[28.5181641,59.8495605],[0.28747656249999974E2,59.8066895],[0.28947265625000053E2,59.8287598],[0.29147265625000042E2,59.9997559],[0.29669726562500074E2,59.9556641],[30.1225586,59.873584],[0.30172656250000017E2,59.9571289],[0.29976757812500097E2,60.0263672],[0.29721191406249968E2,60.1953125],[29.3704102,60.1759277],[0.29069140625000017E2,60.1914551],[0.28812695312500008E2,60.331543],[0.28643164062500006E2,60.375293],[28.4916016,0.60540136718750055E2],[28.6224609,60.4916016],[0.28650585937500008E2,60.6109863],[0.28512792968750006E2,60.6772949],[28.1792969,60.5709961],[0.27797656250000074E2,60.5361328],[28.4074219,60.8969238],[0.29251660156250097E2,61.287793],[0.29690136718750036E2,61.5460937],[30.565625,0.62127587890624994E2],[0.30935742187500093E2,62.3237793],[31.2856445,0.62567822265624955E2],[0.31533984375000017E2,0.62885400390624994E2],[0.31509277343750025E2,62.9553223],[0.31180859375000093E2,0.63208300781250074E2],[30.4185547,63.5040527],[30.0553711,0.63689013671875045E2],[0.30004101562500093E2,63.7473145],[0.30210253906250074E2,63.8033203],[30.5039063,64.0206055],[0.30487890625000063E2,64.2365234],[0.30108105468750036E2,64.3661133],[29.9855469,64.5577148],[30.1201172,64.6446289],[0.30072851562500063E2,64.7650391],[0.29783203125000025E2,64.8042969],[0.29604199218750036E2,64.9684082],[29.6224609,65.039502],[29.8108398,65.1079102],[29.8105469,65.2047363],[0.29629687500000017E2,65.223877],[0.29714843750000025E2,65.3369629],[29.7280273,65.4734375],[0.29819433593750006E2,65.56875],[0.29715917968750063E2,65.6245605],[30.0953125,65.6816895],[30.0875,65.7865234],[0.29903417968750006E2,66.0910645],[29.6708984,66.276123],[0.29464355468749968E2,66.5321777],[0.29093066406250017E2,66.8492188],[29.0870117,66.9709473],[29.5722656,67.3243652],[29.9412109,67.5474609],[29.9791992,67.6885742],[0.29821582031250017E2,67.7540039],[0.29343847656250006E2,68.0618652],[0.28685156250000034E2,68.1897949],[0.28470703125000053E2,68.4883789],[0.28479296875000014E2,68.5376465],[0.28752050781250002E2,68.7714355],[28.705957,68.8655273],[0.28414062500000057E2,68.9041504],[29.1185547,69.0499512],[29.2099609,69.0970215],[29.3882812,69.2981445],[29.994043,69.3924805],[30.1318359,69.4642578],[30.2275391,69.6337891],[0.30615429687500093E2,69.5325684],[30.8607422,69.5384277],[0.30922460937500002E2,69.6058105],[0.30869726562500006E2,69.7834473],[31.4527344,69.6895996],[31.6662109,69.7209961],[31.7885742,69.8157715],[32.0305664,69.8353027],[0.31984570312500036E2,69.9536621],[32.3916016,69.8687012],[32.5654297,69.8064941],[32.9416992,69.7518555],[32.9946289,69.6261719],[32.7542969,69.6057129],[32.1767578,69.6740234],[32.0915039,69.6325684],[32.3305664,69.554248],[32.3777344,69.4791016],[32.6368164,69.4894531],[33.0209961,69.4456055],[32.9789063,69.367334],[33.3848633,69.4442871],[33.4636719,69.3781738],[33.3277344,69.1518555],[33.1412109,69.0687012],[33.4356445,69.1303711],[33.684375,69.3102539],[0.34229394531250044E2,69.3131348],[34.8639648,69.2280762],[35.1758789,69.2308105],[35.2898438,69.2754395],[35.8579102,69.191748],[0.36618261718750006E2,69.0034668],[37.7305664,68.6921387],[38.3576172,68.4151367],[38.4301758,68.3556152],[38.831543,68.3249023],[0.39568945312500006E2,68.0717285],[39.8233398,68.0585937],[39.7462891,68.162207],[40.3806641,67.8318848],[40.9664063,67.7134766],[41.1338867,67.2669434],[0.41358789062499994E2,67.209668],[41.2755859,66.9143066],[41.1889648,66.8261719],[40.521582,66.4466309],[40.1033203,66.2999512],[39.2890625,66.1320313],[38.6539063,66.069043],[38.3975586,66.0644531],[0.37628222656250074E2,66.1295898],[0.37294824218749994E2,66.2250488],[36.7699219,66.2935547],[36.3734375,66.3022949],[35.5134766,66.3958008],[34.8246094,66.6111328],[34.4826172,66.5503418],[34.4515625,66.6512207],[34.1460938,66.7032715],[0.33893652343750055E2,66.7067383],[33.5954102,66.7846191],[33.4820312,66.7645508],[33.1501953,66.8439453],[0.32847558593749994E2,67.0215332],[32.9304688,67.0868164],[32.3999023,67.1526855],[31.8953125,67.1614258],[32.2015625,67.1132324],[32.5009766,67.0038574],[32.4636719,66.9163086],[32.9287109,66.7041016],[0.33180566406249994E2,66.6799316],[0.33217382812500006E2,66.5316406],[33.655957,66.442627],[33.5932617,66.3845703],[33.3605469,66.329541],[0.33566699218750074E2,66.3209961],[0.34112695312499994E2,66.2252441],[34.3998047,66.128418],[34.7863281,65.8645508],[34.7769531,65.7682617],[34.6157227,65.5099121],[34.4064453,65.395752],[34.6710938,65.1681152],[0.34803515625000074E2,64.9859863],[0.34832617187500006E2,64.8001953],[34.9522461,64.755957],[0.34858300781249994E2,64.7066895],[34.8695313,64.5600098],[35.0353516,64.4402344],[35.4320313,64.3467773],[35.6470703,64.3783203],[36.1464844,64.1890137],[36.3649414,64.002832],[0.36975195312500006E2,63.9095215],[37.4421875,63.8133789],[0.37635351562500006E2,63.8934082],[37.9679688,63.9491211],[0.38070800781249964E2,64.0258301],[0.37953710937500006E2,64.3201172],[37.740625,64.3969727],[0.37429589843749994E2,64.373584],[0.37183691406250006E2,64.4084961],[36.5282227,64.8473633],[0.36534570312499994E2,64.938623],[0.36785937500000074E2,64.9871582],[36.8828125,65.1723633],[37.1408203,65.1942871],[37.528125,65.108252],[38.009375,64.8787598],[38.4121094,64.8570801],[0.38540917968749994E2,64.7912598],[39.0535156,64.713916],[39.5673828,64.5705566],[39.7580078,64.5770508],[39.8486328,64.6905273],[40.0578125,64.770752],[40.4449219,64.7787109],[40.28125,64.9980957],[0.40142675781250006E2,65.0632813],[39.7980469,65.3498535],[39.7491211,65.4479492],[39.8165039,65.5979492],[40.327832,65.751709],[40.6916016,65.9634277],[41.0760742,66.0210938],[41.4757813,66.1234375],[41.7808594,66.2593262],[42.0835937,66.465918],[42.2105469,66.5196777],[42.6021484,66.4225098],[43.2332031,66.4155273],[0.43550878906250006E2,66.3212891],[43.653125,66.2509766],[43.5418945,66.1233887],[43.84375,66.1423828],[44.1043945,66.0085937],[44.1453125,66.1127441],[44.097168,66.2350586],[44.2207031,66.4070801],[44.4886719,66.6717773],[0.44403906250000055E2,67.0041992],[44.2917969,67.0996582],[44.0744141,67.167334],[43.8553711,67.188623],[43.7824219,67.2544922],[43.8563477,67.4393066],[0.44036425781250074E2,67.6706543],[44.2253906,67.9956055],[44.1691406,68.3270996],[43.4040039,68.6085449],[0.43471972656250074E2,68.679834],[44.0480469,68.5488281],[44.175293,68.541748],[45.078125,68.5781738],[45.5194336,68.5465332],[0.45891992187499994E2,68.4796875],[46.1583984,68.2913574],[46.6835937,67.970459],[46.6904297,67.8488281],[46.1742188,67.8181641],[45.5287109,67.7575684],[44.9394531,67.4774414],[44.9394531,67.3507812],[45.562207,67.1855957],[0.45752539062500006E2,66.9891602],[45.9860352,66.853125],[46.2977539,66.8428223],[46.4923828,66.8001953],[47.4964844,66.929834],[47.6558594,66.9759277],[47.7680664,67.2756348],[47.9082031,67.4546875],[47.874707,67.5841797],[48.8779297,67.7313477],[48.6957031,67.8742188],[49.1552734,67.8704102],[49.93125,68.0651367],[0.50233203125000074E2,68.1753418],[50.8388672,68.3499512],[51.3361328,68.4024414],[51.6166992,68.4763184],[51.9947266,68.5387695],[52.2853516,68.459375],[52.1834961,68.3742676],[52.3222656,68.3396973],[52.6697266,68.4267578],[52.7226562,68.4840332],[0.52550097656250074E2,68.5924316],[52.344043,68.6081543],[52.6835938,68.7312012],[53.4128906,68.9125488],[53.8019531,68.9958984],[54.4912109,68.992334],[53.8744141,68.9266113],[53.7982422,68.884668],[0.53970605468749994E2,68.8442871],[53.7588867,68.6339844],[53.9176758,68.5369629],[53.9308594,68.4355469],[0.53342578125000074E2,68.3432129],[0.53260546875000074E2,68.2674805],[0.53967871093750006E2,68.2273438],[54.0992187,68.2590332],[54.5612305,68.2730469],[54.7179687,68.1841797],[54.8613281,68.2018555],[54.9230469,68.3738281],[0.55418066406250006E2,68.5678223],[55.675293,68.5758789],[56.0436523,68.648877],[56.6202148,68.619043],[0.57126855468749994E2,68.5540039],[57.4443359,68.6415039],[58.1730469,68.8897461],[58.2370117,68.8339355],[58.3539063,68.9162109],[0.58918945312499964E2,69.0038086],[59.0573242,69.0060547],[59.1101563,68.8962891],[59.3705078,68.7383789],[59.1123047,68.6163086],[0.59099023437500044E2,68.4443359],[59.6042969,68.351123],[0.59897363281249994E2,68.4219238],[0.59941406249999964E2,68.510498],[0.59865136718749994E2,68.6049316],[59.8959961,68.7063477],[0.60160253906250055E2,68.6995117],[60.4891602,68.7289551],[0.60637695312499964E2,68.7870117],[0.60933593749999964E2,68.9867676],[60.8585938,69.1455078],[60.6645508,69.1102539],[0.60337304687499994E2,69.4570312],[60.1706055,69.590918],[0.60276464843750006E2,69.6526367],[60.5586914,69.692334],[60.8129883,69.8211426],[61.015918,69.8514648],[61.7705078,69.7630371],[62.63125,69.7431152],[63.3614258,69.675293],[64.1904297,69.534668],[64.5921875,69.4356445],[64.9285156,69.3253906],[64.8962891,69.2478027],[65.031543,69.2698242],[65.7357422,69.1323242],[65.8126953,69.077002],[66.0847656,69.0363281],[66.4161133,68.9478516],[67.0024414,68.873584],[67.1492188,68.7539551],[67.6396484,68.5792969],[67.7307617,68.5136719],[68.1569336,68.4036621],[68.3711914,68.3142578],[68.5041992,68.3484375],[68.8294922,68.5674316],[69.1405273,68.9506348],[68.7628906,68.9173828],[68.5427734,68.9670898],[68.1173828,69.2362305],[68.0730469,69.4208008],[68.0058594,69.4800293],[67.6241211,69.5844238],[67.0644531,69.6937012],[66.8966797,69.5538086],[66.8040039,69.6592285],[66.8322266,69.8421875],[66.9263672,70.0142578],[67.069043,70.0056152],[67.2392578,70.1080566],[67.1464844,70.2199219],[67.246875,70.5000977],[67.2847656,70.7387207],[67.1433594,70.8375488],[66.8224609,70.7973633],[66.6661133,70.9005859],[66.8470703,71.0637207],[66.6396484,71.0813965],[66.9175781,71.282373],[67.5417969,71.4120117],[67.959375,71.5483887],[68.2692383,71.6828125],[68.6074219,72.0127441],[68.8296875,72.3915527],[69.0390625,72.6699219],[69.3914063,72.9555176],[69.6118164,72.9819336],[69.6451172,72.8975586],[70.6553711,72.8903809],[71.5001953,72.9136719],[71.9295898,72.8196777],[72.1009766,72.8290039],[72.4463867,72.790332],[72.8121094,72.6914062],[72.7529297,72.3431641],[72.6244141,72.0794434],[72.2794922,71.6955078],[71.9120117,71.5479492],[71.8672852,71.457373],[72.0792969,71.3066895],[72.5813477,71.151123],[72.7044922,70.9632324],[72.7316406,70.8228516],[72.7,70.4573242],[72.4694336,70.2749512],[72.5296875,70.1725098],[72.5994141,69.7932129],[72.615625,69.4840332],[72.5573242,69.378418],[72.5273437,69.0805176],[72.5767578,68.9687012],[72.8119141,68.8152344],[73.1907227,68.7067871],[73.5480469,68.5745117],[73.5916992,68.4818848],[73.4652344,68.4307617],[73.1394531,68.1813477],[73.1521484,67.8650391],[72.9487305,67.6962402],[72.5943359,67.5869629],[71.8474609,67.0076172],[71.6681641,66.9396973],[71.3652344,66.9615234],[71.5511719,66.7604492],[71.5395508,66.6831055],[71.3419922,66.6867187],[70.9394531,66.5481445],[70.7249023,66.5194336],[70.3828125,66.6024902],[70.4425781,66.6682617],[70.6907227,66.7453125],[70.2833984,66.685791],[69.8771484,66.845459],[69.7404297,66.8145996],[69.2177734,66.8286133],[69.0134766,66.7883301],[69.1943359,66.5786621],[69.4120117,66.5107422],[69.7009766,66.4845703],[69.9824219,66.401416],[70.3394531,66.3423828],[71.1455078,66.3666504],[71.565625,66.3337402],[71.9169922,66.2467285],[72.0675781,66.2533203],[72.321582,66.3321289],[72.4173828,66.560791],[73.5135742,66.861084],[73.7920898,66.9953125],[73.8833008,67.0849609],[73.9862305,67.3276855],[74.0745117,67.4141113],[74.6760742,67.6946289],[74.7695312,67.7663574],[74.7426758,68.0735352],[74.6324219,68.2183105],[74.3914063,68.4206055],[74.480957,68.6588867],[74.5795898,68.7512207],[75.1246094,68.8617188],[75.5895508,68.9011719],[76.1075195,68.9757324],[76.4591797,68.9782715],[76.7350586,68.7769043],[77.1117188,68.5961914],[77.2384766,68.4695801],[77.2610352,68.3155762],[77.2484375,67.9410156],[77.1744141,67.7785156],[77.6750977,67.5895996],[77.9855469,67.5591797],[78.9224609,67.5891113],[78.8390625,67.6312012],[78.559082,67.6391113],[77.5882813,67.7519043],[77.5359375,68.007666],[77.6648438,68.1903809],[77.9951172,68.2594727],[77.9068359,68.4822754],[77.7852539,68.6304687],[77.6506836,68.9030273],[77.3283203,68.9586426],[76.6449219,69.1173828],[76.0009766,69.2350586],[75.4200195,69.238623],[75.0535156,69.1163086],[74.8148437,69.0905762],[74.3625977,69.1445801],[73.9774414,69.1146484],[73.7756836,69.1982422],[73.890918,69.4179688],[73.8327148,69.5039063],[73.5601563,69.7072266],[73.578125,69.8029785],[73.8301758,70.1756836],[74.2067383,70.445459],[74.3433594,70.5787109],[74.3109375,70.6536133],[73.731543,71.0687012],[73.5765625,71.2165039],[73.1504883,71.3852051],[73.0862305,71.4449219],[73.6717773,71.8450684],[73.9394531,71.9147461],[74.3112305,71.9578125],[74.8041016,72.0773926],[74.9921875,72.1448242],[75.0899414,72.2631348],[75.0970703,72.4206543],[75.0080078,72.6194336],[74.7868164,72.8118652],[75.1524414,72.8527344],[75.3693359,72.7966309],[75.6035156,72.5810547],[75.5914063,72.4572266],[75.7414062,72.2962402],[75.5501953,72.1708008],[75.3945312,71.9832031],[75.2738281,71.9589355],[75.2474609,71.8133789],[75.5032227,71.6546387],[75.4685547,71.534375],[75.2802734,71.4300781],[75.3320313,71.341748],[76.1104492,71.2185547],[76.7419922,71.2020508],[76.9290039,71.1278809],[76.9952148,71.1810547],[77.5896484,71.1679199],[78.0682617,70.9863281],[78.5257812,70.9118164],[78.9421875,70.9337891],[79.0838867,71.002002],[78.8035156,70.9735352],[78.5876953,70.9938965],[78.3865234,71.0871094],[78.2125977,71.2663086],[77.9083984,71.3240723],[77.4810547,71.3115723],[77.1136719,71.409375],[76.8711914,71.446582],[76.3121094,71.595459],[76.0324219,71.9104004],[76.4216797,72.0060059],[76.8713867,72.0330078],[77.0613281,72.0041992],[77.5507812,71.8420898],[77.7775391,71.8364258],[78.1869141,71.9070801],[78.2324219,71.9522949],[78.0164063,72.092041],[77.7806641,72.1143066],[77.4928711,72.0717285],[77.471582,72.1921387],[77.7332031,72.2291992],[77.9681641,72.3287109],[78.4826172,72.3949707],[79.4220703,72.3807617],[79.9539063,72.2230469],[80.4740234,72.153125],[80.7625,72.0891602],[80.8560547,71.9702148],[81.5112305,71.7461426],[81.6616211,71.7159668],[82.0798828,71.7068359],[82.5472656,71.7585938],[82.9861328,71.7486816],[83.2335937,71.6681641],[82.9179687,71.4199219],[82.3228516,71.2600098],[82.2391602,70.9977051],[82.3359375,70.807373],[82.1631836,70.5981445],[82.2211914,70.3957031],[82.2583984,70.5436035],[82.4516602,70.6900879],[82.5924805,70.8899414],[82.8691406,70.954834],[83.0510742,70.8152344],[83.0301758,70.5805176],[82.9198242,70.4074219],[82.6823242,70.2177246],[82.856543,70.104541],[83.0807617,70.0930176],[83.1320312,70.1571777],[83.0738281,70.276709],[83.4970703,70.3452637],[83.6598633,70.4183594],[83.7359375,70.5464844],[83.5789063,70.765918],[83.3338867,70.9885254],[83.1512695,71.1036133],[83.2660156,71.2758789],[83.5712891,71.5943848],[83.534375,71.6839355],[83.3404297,71.8275391],[83.200293,71.874707],[82.6454102,71.9252441],[82.3191406,72.0718262],[82.1835938,72.2375488],[81.7928711,72.3266113],[81.2827148,72.3588379],[81.0981445,72.3897461],[80.8270508,72.4882812],[80.65625,72.7120117],[80.8416016,72.9491699],[80.7574219,73.0252441],[80.509668,73.086084],[80.3980469,73.3568359],[80.5958984,73.4740234],[80.5832031,73.568457],[81.8169922,73.6588379],[83.5447266,73.6665039],[83.6669922,73.6864746],[84.4173828,73.7220215],[84.7378906,73.7628418],[85.0774414,73.7195312],[85.4483398,73.7346191],[85.6114258,73.821582],[86.5914063,73.8942871],[86.8929687,73.8871094],[87.0294922,73.8241699],[86.365918,73.6197754],[86.0941406,73.5783203],[85.8270508,73.4927734],[85.8181641,73.3269531],[86.0981445,73.2726074],[86.3079102,73.195752],[86.6770508,73.1067871],[86.7150391,73.1258301],[85.9708008,73.3470703],[85.9389648,73.4564941],[86.1550781,73.534668],[86.3762695,73.5688477],[87.1201172,73.6150391],[87.3695313,73.7559082],[87.5711914,73.8107422],[87.209668,73.8786621],[86.6970703,74.1953125],[86.5710938,74.24375],[86.0013672,74.3160156],[86.1829102,74.4230469],[86.3958008,74.4500977],[86.6647461,74.4142578],[86.8979492,74.3253418],[87.2296875,74.3638672],[86.7000977,74.5224609],[86.1161133,74.6285645],[85.7910156,74.6451172],[85.8807617,74.7402344],[86.0588867,74.7282227],[86.2012695,74.8162109],[86.6514648,74.6824219],[86.8628906,74.7178711],[87.4193359,74.940918],[87.4675781,75.0132324],[87.1407227,75.0722656],[86.9390625,75.0681152],[87.005957,75.1698242],[87.1708008,75.191748],[87.6713867,75.1295898],[88.5037109,75.2904785],[88.7331055,75.3691895],[89.3102539,75.4701172],[89.5951172,75.458252],[0.9018496093750005E2,75.5910645],[91.0046875,75.6495605],[0.9147949218749997E2,75.6496582],[91.8454102,75.7236816],[92.4075195,75.7496582],[0.9260253906249997E2,75.7791016],[0.9354980468750003E2,75.8541016],[0.9407519531249997E2,75.9128906],[94.1563477,75.9592285],[0.9368701171875003E2,75.921582],[93.5740234,75.9562988],[0.9340605468750007E2,75.9012695],[93.178125,75.9589844],[92.8904297,75.9099609],[92.8585938,75.9794922],[92.971582,76.0750977],[93.1048828,76.0258301],[0.9325927734375003E2,76.0987793],[0.9364843749999997E2,76.0541504],[0.9410234375000007E2,76.123584],[94.5067383,76.107959],[0.9457558593750005E2,76.1517578],[95.0384766,76.1135254],[95.3592773,76.1395996],[95.9199219,76.1131348],[96.0754883,76.0819824],[95.9860352,76.009668],[0.9565332031250003E2,75.8921875],[96.5085938,76.0055664],[0.9660058593750003E2,75.9898926],[96.4970703,75.8912109],[96.8791992,75.9310547],[97.3506836,76.0333984],[97.4992187,75.9802246],[97.6698242,76.0780273],[97.9183594,76.0886719],[0.9802001953125003E2,76.1336914],[0.9866201171875005E2,76.2426758],[99.1873047,76.1776367],[99.5626953,76.1093262],[99.7704102,76.0287598],[99.609375,75.8112793],[0.9985136718750007E2,75.9302734],[99.8253906,76.1359375],[0.9946064453125003E2,76.2750977],[0.9880566406250003E2,76.4806641],[98.8694336,76.5095703],[0.9957626953125005E2,76.4714355],[99.9357422,76.4898926],[0.10032236328125012E3,76.4791504],[100.84375,76.5251953],[0.10106074218750004E3,76.4772461],[0.10131074218750008E3,76.4789062],[0.10159775390625006E3,76.439209],[101.683789,76.485498],[0.10092802734375002E3,76.5567383],[0.10109931640625008E3,76.7040039],[0.10092041015624997E3,76.8225098],[0.10098994140625004E3,76.9904785],[0.10118574218750004E3,77.0285645],[0.10151767578125005E3,77.1980957],[0.10261015625000007E3,77.5085449],[0.10313144531250012E3,77.6264648],[0.10356074218750008E3,77.6319336],[104.014551,77.7304199],[0.10418486328125007E3,77.7304688],[0.10481425781250002E3,77.6520996]]],[[[0.10769550781250003E3,78.1309082],[0.10748164062500004E3,78.0577637],[0.10734384765625006E3,78.098584],[0.10700166015625004E3,78.0956543],[0.10641552734375003E3,78.1398438],[106.583301,78.1675781],[0.10750830078124996E3,78.1894043],[0.10769550781250003E3,78.1309082]]],[[[0.10627041015625005E3,78.2062012],[0.10602363281250004E3,78.2201172],[106.058398,78.2646484],[0.10635058593750003E3,78.2726074],[0.10645683593750002E3,78.3400391],[106.64043,78.3362305],[0.10671894531250004E3,78.2649902],[0.10650468750000006E3,78.2616699],[0.10627041015625005E3,78.2062012]]],[[[0.10288476562499997E3,79.2539551],[102.745801,79.1060547],[102.412305,78.8354492],[0.10258730468750004E3,78.8712891],[102.950391,79.0557617],[0.10319912109375005E3,79.0712891],[103.433398,79.126123],[0.10380078124999997E3,79.1492676],[0.10409111328125007E3,79.0131836],[104.404199,78.9770996],[0.10445205078125005E3,78.8800293],[104.633203,78.8351563],[0.10488105468750004E3,78.8548828],[0.10514599609375003E3,78.8188477],[0.10534267578125005E3,78.5939453],[0.10531259765625012E3,78.4999023],[0.10483261718750006E3,78.3527344],[0.10429746093750006E3,78.3350586],[0.10371933593750006E3,78.258252],[103.003125,78.2558594],[0.10279667968750006E3,78.1878906],[0.10261718749999996E3,78.2246094],[102.180469,78.2053223],[0.10120410156249997E3,78.1919434],[101.039941,78.1429688],[0.10008222656250004E3,77.975],[99.8450195,77.9568359],[99.500293,77.9760742],[0.9928710937500003E2,78.0380859],[99.5456055,78.1785645],[100.018945,78.338916],[0.10025722656250005E3,78.5738281],[0.10028398437500002E3,78.6791992],[0.10061962890624997E3,78.7974121],[0.10087558593750006E3,78.7835937],[0.10090136718750003E3,78.9800781],[0.10103085937500012E3,79.023291],[0.10105224609375003E3,79.1232422],[101.196094,79.2044434],[0.10154306640625012E3,79.2544434],[101.590625,79.3504395],[0.10182421874999997E3,79.3702148],[102.005273,79.2636719],[0.10225126953125002E3,79.2560547],[0.10218066406249997E3,79.3733887],[0.10228242187500008E3,79.4300781],[0.10278984375000007E3,79.3921387],[0.10309794921875007E3,79.2991211],[0.10288476562499997E3,79.2539551]]],[[[76.2489258,79.6510742],[76.4673828,79.6431641],[77.3601563,79.5568359],[77.5889648,79.5019043],[76.6495117,79.4934082],[76.6365234,79.5444336],[76.1537109,79.5787598],[76.0515625,79.6447266],[76.2489258,79.6510742]]],[[[0.10013593750000004E3,79.614209],[0.9991542968750005E2,79.6016113],[99.9557617,79.690332],[0.10030029296875003E3,79.6702637],[0.10013593750000004E3,79.614209]]],[[[0.9268349609375005E2,79.6852051],[92.1537109,79.684668],[0.9168359374999997E2,79.7905762],[0.9137626953125007E2,79.835498],[91.1260742,79.9049316],[0.9107031250000003E2,79.9814941],[91.4259766,80.0492187],[92.1734375,80.045459],[0.9259277343750001E2,79.9965332],[0.9348154296875005E2,79.9411133],[93.803125,79.904541],[0.9360351562499997E2,79.816748],[0.9292626953125003E2,79.7044922],[0.9268349609375005E2,79.6852051]]],[[[0.51409277343750006E2,79.9442383],[50.4541016,79.9244141],[50.0914062,79.9805664],[50.9363281,80.0942383],[51.2543945,80.0486328],[51.2427734,79.9912598],[0.51409277343750006E2,79.9442383]]],[[[0.59688867187500044E2,79.9558105],[59.3306641,79.9230469],[58.9192383,79.9846191],[0.58946093750000074E2,80.042334],[0.59544531250000055E2,80.1188477],[0.59801660156250044E2,80.082666],[0.59911035156249994E2,79.9942871],[0.59688867187500044E2,79.9558105]]],[[[97.6745117,80.158252],[98.0177734,80.0228516],[97.8079102,79.9562988],[0.9762695312500001E2,79.8504395],[97.6516602,79.7606445],[98.0645508,79.9010742],[0.9827324218750007E2,79.8741211],[98.4990234,79.953125],[98.5964844,80.0521973],[0.9929492187500001E2,80.0163574],[0.9972656250000003E2,79.9199219],[100.06123,79.7770996],[0.9991582031250007E2,79.7383301],[99.7816406,79.6282715],[0.9968066406250003E2,79.3233398],[99.5373047,79.2765625],[0.9904179687500007E2,79.2930176],[0.9931738281249997E2,79.2271973],[99.5172852,79.1301758],[99.8146484,79.0958496],[99.9292969,78.9614258],[99.4395508,78.8342285],[98.8195313,78.8182617],[0.9841113281250003E2,78.787793],[0.9805419921875003E2,78.8209961],[97.5554688,78.8265625],[96.9329102,78.9339355],[96.8078125,78.9849609],[0.9634736328125003E2,79.0158691],[0.9579648437500005E2,79.001416],[0.9553105468750007E2,79.0980957],[95.1332031,79.0496094],[94.7910156,79.0866211],[94.6197266,79.1923828],[94.4821289,79.2186035],[94.21875,79.4023438],[93.7585938,79.451416],[0.9327226562500007E2,79.4583984],[0.9307080078124997E2,79.4953125],[93.4046875,79.6315918],[0.9384726562500005E2,79.7016602],[0.9425712890625007E2,79.8297363],[94.3472656,79.9419434],[94.7194336,80.0112305],[0.9498730468749997E2,80.0968262],[95.2813477,80.0305176],[0.9549755859375003E2,80.1056152],[96.4166016,80.1043457],[97.1205078,80.1530273],[97.6745117,80.158252]]],[[[50.0517578,80.0743164],[49.9708984,80.0607422],[0.49556054687500044E2,80.1589355],[0.49883691406249994E2,80.2302246],[50.2509766,80.2194824],[0.50319140625000074E2,80.1723633],[50.0517578,80.0743164]]],[[[55.4796875,80.2738281],[55.1951172,80.2268066],[54.9796875,80.2564453],[55.2400391,80.3253906],[55.4796875,80.2738281]]],[[[57.0787109,80.3509277],[57.1226562,80.3169922],[0.57080175781250006E2,80.0946777],[0.56986914062500006E2,80.0714844],[56.2005859,80.0764648],[0.55724023437499994E2,80.1047363],[56.012207,80.2039063],[56.0244141,80.3413086],[56.6550781,80.3303223],[56.7072266,80.3632812],[57.0787109,80.3509277]]],[[[0.53521386718749994E2,80.1852051],[52.8563477,80.1732422],[52.3435547,80.2132324],[52.2133789,80.2637207],[0.52680566406249994E2,80.3185059],[52.8539063,80.4023926],[0.53329199218750006E2,80.4023926],[53.4861328,80.3233887],[53.8516602,80.2683594],[0.53521386718749994E2,80.1852051]]],[[[57.95625,80.1232422],[57.8000977,80.1040527],[57.3922852,80.1391602],[57.2814453,80.1938965],[57.1862305,80.3962402],[57.075,80.4939453],[57.5219727,80.4753906],[0.58480468749999964E2,80.4647461],[0.58971679687499964E2,80.4158691],[0.59255468750000055E2,80.3432129],[58.3979492,80.31875],[58.2838867,80.2978027],[58.2554688,80.2018066],[57.95625,80.1232422]]],[[[54.415332,80.4728027],[0.54275878906249964E2,80.4213379],[0.53811914062499994E2,80.4762207],[53.8772461,80.6052734],[54.4071289,80.5401367],[54.415332,80.4728027]]],[[[0.47441992187500006E2,80.8536621],[47.8995117,80.8126953],[48.4457031,80.8060059],[48.6865234,80.7177734],[48.6835938,80.633252],[0.48044335937499994E2,80.6681641],[47.7773438,80.75625],[47.6000977,80.7419434],[47.3039062,80.6062012],[0.47011035156250074E2,80.5621094],[0.46677539062500074E2,80.5613281],[46.5136719,80.4755371],[0.46141406250000074E2,80.4467285],[45.969043,80.5694824],[45.6408203,80.5369629],[44.9049805,80.6112793],[45.1245117,80.6522461],[0.46327441406250074E2,80.7351563],[0.46799121093750074E2,80.7552246],[47.0206055,80.8144043],[0.47441992187500006E2,80.8536621]]],[[[0.62167773437500074E2,80.8347656],[62.2277344,80.7943848],[0.62075781250000055E2,80.6169434],[61.68125,80.5863281],[61.5974609,80.5349609],[61.2851563,80.5047363],[0.61051269531249964E2,80.4186035],[60.7222656,80.434668],[0.60278320312499964E2,80.4944336],[59.6498047,80.43125],[59.3043945,80.5215332],[59.3865234,80.7125488],[59.5922852,80.8165039],[60.0945313,80.848584],[60.2780273,80.8014648],[60.481543,80.804248],[61.5974609,80.8929199],[0.62102929687499994E2,80.8666016],[0.62167773437500074E2,80.8347656]]],[[[50.278125,80.9272461],[50.8010742,80.9141602],[51.7036133,80.6876465],[51.1461914,80.6039551],[0.50960839843750044E2,80.5404785],[50.2796875,80.5273438],[49.8459961,80.4976563],[49.7941406,80.4253418],[0.49585937499999964E2,80.3765625],[48.8960938,80.3691895],[48.6889648,80.2902832],[48.9219727,80.2768066],[48.9775391,80.1625977],[48.5817383,80.1953613],[48.3862305,80.0958008],[48.1671875,80.1327637],[47.9399414,80.088623],[47.6324219,80.1119629],[47.9775391,80.2125488],[47.8929688,80.2392578],[47.4443359,80.230127],[47.3430664,80.1885254],[0.46991015625000074E2,80.1827637],[0.46644433593749994E2,80.3003418],[47.6560547,80.5005371],[48.4026367,80.5687988],[0.48625097656250006E2,80.5083008],[0.49087792968749994E2,80.5157715],[49.1852539,80.5586426],[49.1474609,80.7121094],[49.2443359,80.8213867],[49.5078125,80.865332],[50.278125,80.9272461]]],[[[80.0266602,80.8481445],[79.0985352,80.8120605],[78.9776367,80.8482422],[79.2173828,80.9603516],[79.8066406,80.9753906],[80.4279297,80.9276855],[80.3448242,80.8679199],[80.0266602,80.8481445]]],[[[61.1408203,80.9503418],[60.8267578,80.9296875],[0.60058203125000055E2,80.9846191],[60.5866211,81.0876953],[61.4574219,81.1039551],[61.5673828,81.050293],[61.1408203,80.9503418]]],[[[54.7189453,81.1159668],[55.4707031,81.019873],[56.1701172,81.0291504],[56.4722656,80.9982422],[56.909668,80.9128906],[57.6941406,80.7922852],[57.5803711,80.7554687],[56.8147461,80.663623],[0.56315527343750006E2,80.6328613],[55.7125,80.6373047],[55.540625,80.7033203],[55.1171875,80.7519043],[54.6681641,80.7386719],[54.5328125,80.7830078],[54.0666016,80.813623],[54.0454102,80.8719727],[0.54367285156250006E2,80.9038086],[0.54416796875000074E2,80.9865234],[54.6339844,81.1131836],[54.7189453,81.1159668]]],[[[0.58622363281250024E2,81.0416504],[0.58902539062500104E2,80.8976562],[58.8599609,80.7793945],[58.2856445,80.7648926],[57.9378906,80.7933594],[57.7498047,80.8890625],[57.4051758,80.9151367],[57.2109375,81.0170898],[57.4102539,81.0467773],[57.65625,81.031543],[58.0495117,81.118457],[0.58622363281250024E2,81.0416504]]],[[[50.7537109,81.0474121],[0.50518164062500006E2,81.0455566],[0.50368457031250074E2,81.1225098],[50.715918,81.1706543],[0.50946191406249994E2,81.1081543],[50.7537109,81.0474121]]],[[[63.3738281,80.7000977],[63.0021484,80.7128418],[62.5203125,80.821875],[0.63115820312500006E2,80.9667969],[64.0957031,80.9983398],[64.3101563,81.1751953],[64.8020508,81.1972656],[65.1719727,81.144043],[65.3820312,81.0567383],[65.4374023,80.9307129],[64.9974609,80.8188965],[64.5483398,80.7554199],[63.3738281,80.7000977]]],[[[0.9156718750000007E2,81.1412109],[91.2228516,81.0638184],[89.9757812,81.1131348],[89.9011719,81.1707031],[90.0699219,81.2137207],[91.1089844,81.1991211],[0.9147783203125007E2,81.1839355],[0.9156718750000007E2,81.1412109]]],[[[96.5265625,81.0755859],[96.7549805,80.9578613],[97.4136719,80.8418457],[97.8318359,80.798291],[0.9785644531249997E2,80.6980957],[97.2213867,80.6524414],[0.9702539062499997E2,80.5355469],[97.2501953,80.3629883],[0.9741699218749997E2,80.3231445],[97.1751953,80.2410156],[0.9585576171875007E2,80.1769531],[94.9613281,80.1503906],[94.5650391,80.1260742],[93.8723633,80.0101074],[93.6546875,80.0096191],[93.0023438,80.1020996],[92.2015625,80.1792969],[92.0921875,80.2233398],[91.6374023,80.2699219],[0.9152382812500005E2,80.3585449],[91.8966797,80.4775391],[92.5779297,80.533252],[92.9810547,80.7029785],[93.2625,80.7912598],[0.9277294921874997E2,80.7686523],[0.9259257812500007E2,80.7808594],[0.9276464843749997E2,80.8930664],[93.0651367,80.9884766],[93.3586914,81.0316895],[93.6367187,81.0381348],[0.9414013671874997E2,81.0894531],[94.6116211,81.1146484],[0.9506093750000005E2,81.1880859],[95.1595703,81.2709961],[0.9580068359375005E2,81.2804687],[96.5265625,81.0755859]]],[[[59.3130859,81.3052246],[58.719043,81.3135254],[58.6344727,81.3603516],[59.075,81.3977051],[0.59280859375000055E2,81.3661133],[59.3130859,81.3052246]]],[[[57.8102539,81.5460449],[58.0166016,81.4837891],[58.4360352,81.4641602],[58.5638672,81.4184082],[58.371875,81.3869629],[0.57858691406250074E2,81.3680664],[58.015332,81.254834],[0.57912890625000074E2,81.1975098],[57.4509766,81.1355469],[56.821875,81.2379395],[56.5125,81.1752441],[56.1919922,81.2239746],[0.55716699218750044E2,81.1884766],[55.4660156,81.3111816],[55.7819336,81.3294434],[56.1568359,81.3030762],[56.4046875,81.3870117],[56.71875,81.4233887],[57.0915039,81.5412109],[57.8102539,81.5460449]]],[[[63.6509766,81.6093262],[63.5285156,81.596582],[62.8849609,81.6088867],[62.5152344,81.6591309],[62.1064453,81.6793457],[62.2839844,81.706543],[62.7949219,81.7189453],[63.7095703,81.6873047],[63.6509766,81.6093262]]],[[[58.2954102,81.7151855],[57.9648438,81.6956543],[0.57984960937500006E2,81.7970215],[58.1345703,81.8279785],[0.59261816406250006E2,81.8541992],[59.4084961,81.8254395],[59.3564453,81.7589844],[58.2954102,81.7151855]]]]}}],"_labels":{"RU":"Russia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/RW.json b/src/api-umbrella/admin-ui/public/maps/RW.json new file mode 100644 index 000000000..9232e2b88 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/RW.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"RW"},"geometry":{"type":"Polygon","coordinates":[[[0.30509960937500008E2,-1.06728516],[30.4702148,-1.13115234],[0.30631933593750006E2,-1.36748047],[0.30710742187500014E2,-1.39677734],[0.30812597656250002E2,-1.56308594],[0.30827539062500023E2,-1.69365234],[0.30806738281250006E2,-1.85068359],[0.30819140625000017E2,-1.96748047],[0.30864648437500023E2,-2.04404297],[30.8765625,-2.14335938],[0.30828710937500002E2,-2.33847656],[30.5933594,-2.39677734],[0.30482226562500017E2,-2.37607422],[0.30408496093750014E2,-2.31298828],[30.2337891,-2.34707031],[30.1422852,-2.41396484],[0.29973437500000017E2,-2.33710938],[0.29930175781250004E2,-2.33955078],[0.29912402343750014E2,-2.54863281],[0.29868164062500004E2,-2.71640625],[0.29698046875000017E2,-2.79472656],[29.3902344,-2.80859375],[29.3498047,-2.79150391],[29.2970703,-2.67304688],[0.29197558593750014E2,-2.6203125],[0.29063183593750008E2,-2.60253906],[29.0143555,-2.72021484],[0.28921777343750023E2,-2.68203125],[28.8576172,-2.44667969],[0.28876367187500023E2,-2.40029297],[0.29106445312499996E2,-2.23320313],[29.1480469,-2.13183594],[0.29129394531249996E2,-1.86025391],[0.29196582031250017E2,-1.71992188],[0.29351660156250006E2,-1.51757812],[29.4019531,-1.50742187],[0.29537792968750008E2,-1.40976562],[29.8253906,-1.33554687],[0.29881640625000017E2,-1.45175781],[29.9300781,-1.46992188],[30.1015625,-1.36865234],[30.3602539,-1.07460938],[0.30509960937500008E2,-1.06728516]]]}}],"_labels":{"RW":"Rwanda"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/SA.json b/src/api-umbrella/admin-ui/public/maps/SA.json new file mode 100644 index 000000000..a38ea8bd9 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/SA.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"SA"},"geometry":{"type":"MultiPolygon","coordinates":[[[[41.9876953,16.715625],[42.0650391,0.16710058593750006E2],[42.0263672,0.16757666015625006E2],[0.42059960937499994E2,0.16803515625000017E2],[42.1704102,0.16708642578124966E2],[42.1578125,0.16570703125000023E2],[42.0717773,0.16671484375000034E2],[41.9641602,16.6534668],[0.41897265625000074E2,0.16684277343749983E2],[41.8015625,0.16778759765624955E2],[41.7760742,16.846875],[41.8582031,0.16892919921875034E2],[41.8849609,0.16946826171875017E2],[41.8604492,0.17002539062499974E2],[0.41917285156250074E2,16.9936523],[41.9479492,0.16936425781250023E2],[41.9466797,0.16748925781250023E2],[41.9876953,16.715625]]],[[[36.9016602,0.25383056640624968E2],[36.8751953,0.25383056640624968E2],[0.36722070312499994E2,0.25534033203125002E2],[36.5302734,25.6015625],[36.5335938,25.6887207],[36.5887695,0.25619824218749983E2],[36.7475586,0.25558740234374966E2],[0.36924414062500006E2,25.4255371],[36.9016602,0.25383056640624968E2]]],[[[0.36595507812500074E2,25.712793],[36.5439453,25.7342773],[36.5827148,0.25855517578125045E2],[0.36595507812500074E2,25.712793]]],[[[44.7165039,0.29193603515625032E2],[46.3564453,29.0636719],[46.5314453,0.29096240234374985E2],[47.4332031,28.9895508],[47.5212891,28.8378418],[0.47583105468750006E2,0.28627978515624985E2],[0.47671289062499994E2,0.28533154296875036E2],[0.48442480468750006E2,0.28542919921874983E2],[48.4985352,28.448877],[48.5230469,28.3550293],[0.48626367187499994E2,28.1325684],[0.48773730468750074E2,0.27959082031250034E2],[48.8328125,0.27800683593750023E2],[0.48797167968750074E2,27.7243164],[48.9064453,27.6290527],[49.2375,27.4927246],[49.1750977,0.27437646484375048E2],[49.4052734,0.27180957031249957E2],[0.49537695312500006E2,0.27151757812499962E2],[49.7165039,0.26955859375000045E2],[0.49986132812500074E2,0.26828906250000017E2],[50.1498047,0.26662646484374985E2],[50.0263672,26.6992187],[50.0081055,0.26678515625000014E2],[50.0273438,26.5268555],[0.50184960937499994E2,0.26404931640624966E2],[50.2138672,26.3084961],[50.1554687,0.26100537109374955E2],[50.0316406,26.1109863],[50.1302734,25.8466309],[50.1896484,0.25755810546874983E2],[50.2389648,0.25622851562500074E2],[50.28125,0.25566113281249955E2],[50.4551758,0.25424804687500057E2],[50.5084961,0.25306689453125045E2],[50.5579102,25.0866699],[50.6668945,0.24963818359375008E2],[50.7255859,0.24869384765625057E2],[50.8043945,24.7892578],[50.8556641,0.24679638671875008E2],[50.9660156,0.24573925781249983E2],[0.51093359375000055E2,24.5646484],[51.2679688,0.24607226562500017E2],[51.3384766,24.5643555],[0.51411230468750055E2,0.24570800781250057E2],[51.3098633,0.24340380859375014E2],[51.5683594,0.24286181640625074E2],[51.572168,0.24128320312499962E2],[0.51592578125000074E2,24.0788574],[52.5550781,0.22932812499999955E2],[0.55104296875000074E2,0.22621484375000023E2],[55.1858398,22.7041016],[55.6410156,0.22001855468749994E2],[54.9773438,0.19995947265625006E2],[0.51977636718750006E2,0.18996142578125074E2],[49.1923828,18.6213379],[49.0419922,18.5817871],[48.172168,0.18156933593749983E2],[47.5795898,0.17448339843750034E2],[47.4417969,0.17111865234375045E2],[0.47251269531250074E2,0.16993945312500017E2],[47.1435547,0.16946679687499966E2],[46.9756836,0.16953466796875034E2],[46.7785156,0.17212109374999955E2],[46.6820313,17.2685547],[46.3103516,0.17231298828125063E2],[45.5353516,17.3020508],[45.406543,0.17319775390624955E2],[0.45236621093750074E2,0.17406201171874983E2],[0.45148046875000055E2,0.17427441406249955E2],[44.7467773,0.17431689453125017E2],[44.5464844,0.17404345703125045E2],[44.3546875,0.17414355468750045E2],[44.155957,0.17398535156250006E2],[44.0082031,17.3674805],[43.9169922,17.324707],[0.43712988281250055E2,0.17365527343750045E2],[43.5972656,17.4714355],[43.4179688,0.17516259765625023E2],[43.3021484,17.4567871],[43.190918,17.359375],[43.2369141,0.17266455078125006E2],[43.155957,17.2050293],[43.1165039,0.16941992187500006E2],[43.1844727,0.16811816406250045E2],[43.1650391,0.16689404296874955E2],[0.43104785156250074E2,0.16664160156250063E2],[0.43033593750000044E2,0.16550390624999977E2],[42.7993164,16.3717773],[42.7898438,16.4515625],[42.7306641,0.16569824218750025E2],[42.6988281,0.16736962890624966E2],[42.5529297,0.16868457031250017E2],[42.5441406,0.16959667968749955E2],[42.475,0.17049853515625045E2],[42.3833008,0.17122460937499994E2],[42.3324219,0.17256640625000074E2],[0.42293945312499964E2,0.17434960937499966E2],[42.0522461,0.17669335937500023E2],[41.75,17.8857422],[41.6580078,0.18007666015625034E2],[41.5076172,0.18256103515625025E2],[0.41431738281250006E2,0.18452441406250045E2],[41.2294922,0.18678417968749983E2],[0.41220800781250006E2,18.7652344],[0.41116015625000074E2,0.19082177734374994E2],[40.9132813,19.4901367],[40.7916016,19.6463867],[40.7591797,0.19755468750000034E2],[40.615918,0.19822363281249977E2],[40.4822266,0.19993457031250017E2],[0.40080664062500006E2,0.20265917968750017E2],[39.884082,0.20292968750000025E2],[0.39728320312500074E2,0.20390332031249955E2],[39.6136719,0.20517675781249977E2],[39.4912109,20.7370117],[39.2760742,0.20973974609375034E2],[39.0935547,21.3103516],[0.39150683593750074E2,0.21432763671874962E2],[39.1470703,0.21518994140624955E2],[39.0910156,0.21663964843749994E2],[38.9878906,21.8817383],[39.0211914,0.22033447265625057E2],[39.0339844,22.2033691],[39.0958984,0.22392773437499983E2],[39.0620117,0.22592187500000023E2],[39.0013672,22.6989746],[39.0074219,0.22770068359375017E2],[0.38938769531250074E2,0.22804785156249977E2],[38.8829102,22.8820313],[38.9411133,0.22881835937500057E2],[38.796875,23.048584],[38.7570313,23.1942871],[38.7060547,0.23305517578125034E2],[38.5422852,0.23557910156250017E2],[38.4641602,23.7118652],[38.2888672,0.23910986328125002E2],[0.38098632812499964E2,24.0580078],[0.37977832031250074E2,0.24124560546875017E2],[37.9197266,0.24185400390625063E2],[37.8209961,24.1875],[37.7133789,0.24274414062499968E2],[37.5430664,0.24291650390625023E2],[37.3384766,0.24615820312499977E2],[37.1808594,24.8200195],[37.2663086,24.9600586],[37.2183594,0.25150683593750074E2],[37.1488281,0.25291113281249974E2],[0.36920703125000074E2,0.25641162109375074E2],[36.7626953,0.25751318359375034E2],[36.7025391,0.25902880859375017E2],[0.36675195312499994E2,26.0388672],[36.51875,26.1048828],[36.2496094,0.26594775390625017E2],[36.09375,0.26765820312499955E2],[36.0320313,0.26881005859374966E2],[35.8516602,0.27070458984375023E2],[35.7629883,27.2587891],[0.35581347656250074E2,0.27432470703125063E2],[35.4238281,0.27733789062499962E2],[35.1804688,28.0348633],[35.0783203,0.28087011718750006E2],[34.8275391,0.28108593749999955E2],[0.34722070312499994E2,0.28130664062500014E2],[34.625,0.28064501953125017E2],[34.6162109,0.28148339843749962E2],[34.6833008,28.2641113],[0.34779882812500006E2,28.5073242],[34.7991211,0.28720507812500017E2],[34.9507812,29.3535156],[36.0154297,0.29190478515625014E2],[0.36068457031250006E2,0.29200537109375002E2],[36.4760742,29.4951172],[0.36703906250000074E2,0.29831640624999977E2],[0.36755273437500044E2,29.8660156],[37.4692383,0.29995068359374955E2],[37.4907227,30.0117187],[37.6335938,0.30313281250000045E2],[37.6697266,30.3481445],[0.37980078125000055E2,30.5],[37.4790039,31.0077637],[36.9585938,0.31491503906250014E2],[0.38962304687499994E2,0.31994921874999985E2],[0.39145410156249994E2,32.1245117],[40.027832,0.31995019531249994E2],[40.3693359,31.9389648],[40.4789063,0.31893359374999985E2],[42.0744141,31.0803711],[0.42857714843750074E2,0.30495214843749974E2],[44.6908203,29.2023438],[44.7165039,0.29193603515625032E2]]]]}}],"_labels":{"SA":"Saudi Arabia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/SB.json b/src/api-umbrella/admin-ui/public/maps/SB.json new file mode 100644 index 000000000..be80b59f8 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/SB.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"SB"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.16692919921875003E3,-0.11665136718749991E2],[166.805957,-11.6773438],[166.747461,-0.11590820312499957E2],[0.16685546874999997E3,-0.11578808593749995E2],[0.16692919921875003E3,-0.11665136718749991E2]]],[[[0.16057626953125006E3,-0.11797851562500028E2],[0.16050654296875007E3,-11.8322266],[0.16039453125000003E3,-0.11788867187499974E2],[0.16035507812500006E3,-0.11711914062500014E2],[160.003516,-0.11579589843749972E2],[160,-0.11471972656249989E2],[0.16007734375000004E3,-0.11492871093749983E2],[0.16044873046874997E3,-0.11695898437499949E2],[0.16057626953125006E3,-0.11797851562500028E2]]],[[[0.16613320312500005E3,-10.7578125],[165.968164,-10.7794922],[165.904004,-0.10851464843749966E2],[0.16581933593750003E3,-10.844043],[0.16590917968750003E3,-0.10674316406250014E2],[0.16602382812500005E3,-10.6611328],[0.16616210937499997E3,-0.10693066406250026E2],[0.16613320312500005E3,-10.7578125]]],[[[0.16171533203124997E3,-0.10387304687499991E2],[0.16184111328125002E3,-0.10446093749999973E2],[162.022852,-0.10476855468750031E2],[0.16210537109375005E3,-10.4538086],[0.16228720703125006E3,-0.10709960937499998E2],[0.16228798828125005E3,-0.10776171874999989E2],[0.16237333984375002E3,-0.10823242187499986E2],[0.16212363281250012E3,-0.10824414062499955E2],[0.16178681640625004E3,-0.10716894531249991E2],[0.16153789062500007E3,-10.5664062],[161.487012,-0.10361425781249963E2],[0.16129394531250003E3,-0.10326464843750031E2],[0.16130478515625012E3,-0.10204394531250031E2],[0.16147568359375012E3,-10.2379883],[0.16171533203124997E3,-0.10387304687499991E2]]],[[[0.16154785156249997E3,-0.9625683593749997E1],[161.553809,-9.76972656],[0.16140976562500003E3,-9.68164063],[0.16141699218750003E3,-9.51376953],[161.36416,-0.9353417968750035E1],[0.16140683593750012E3,-0.9368457031249989E1],[0.16154785156249997E3,-0.9625683593749997E1]]],[[[0.15975039062500005E3,-0.9272656250000011E1],[159.970605,-0.9433300781249969E1],[0.16035458984375006E3,-0.9421582031249983E1],[0.16062548828124997E3,-0.9588867187499957E1],[160.681836,-9.69160156],[160.794336,-0.9767382812499989E1],[0.16081894531250006E3,-9.86279297],[0.16064921875000002E3,-9.92861328],[160.481641,-0.9894726562499995E1],[0.16032109375000007E3,-0.9821289062499957E1],[0.16000234375000005E3,-0.9812402343750023E1],[159.853711,-0.9791503906250027E1],[159.755469,-9.72607422],[159.621875,-0.9532128906250023E1],[0.15960742187499997E3,-0.9353808593750031E1],[0.15968632812500005E3,-0.9268652343749991E1],[0.15975039062500005E3,-0.9272656250000011E1]]],[[[160.168164,-8.99550781],[0.16025351562500006E3,-0.9007324218749957E1],[0.16040751953125007E3,-0.9140332031249969E1],[0.16037148437500005E3,-9.18125],[160.105371,-0.9080761718749997E1],[160.168164,-8.99550781]]],[[[0.15918857421875006E3,-9.12353516],[159.036328,-9.075],[159.129785,-8.99306641],[0.15922841796875005E3,-0.9029980468749955E1],[0.15918857421875006E3,-9.12353516]]],[[[0.15764541015625002E3,-8.75888672],[0.15764316406250012E3,-8.79404297],[157.45791,-8.73017578],[0.15757929687500004E3,-8.70371094],[0.15764541015625002E3,-8.75888672]]],[[[0.15820078125000012E3,-8.82197266],[0.15815537109375012E3,-8.7859375],[0.15820996093750003E3,-8.678125],[0.15825341796874997E3,-8.79736328],[0.15820078125000012E3,-8.82197266]]],[[[0.15810791015625003E3,-8.68417969],[0.15800947265625004E3,-8.76308594],[157.879297,-8.66875],[0.15790927734375006E3,-8.565625],[157.998437,-8.50820312],[158.132227,-8.55664062],[0.15806835937499997E3,-8.60664063],[0.15810791015625003E3,-8.68417969]]],[[[0.15738896484375002E3,-8.71347656],[157.333887,-8.7],[0.15721230468749997E3,-8.56503906],[157.379492,-8.42089844],[0.15741093750000002E3,-8.47509766],[157.332227,-8.65068359],[0.15738896484375002E3,-8.71347656]]],[[[0.15968769531250007E3,-8.50791016],[0.15953847656250005E3,-8.45136719],[0.15959462890625005E3,-8.37949219],[0.15968769531250007E3,-8.50791016]]],[[[160.749414,-8.31396484],[0.16099765625000006E3,-8.61201172],[0.16094433593750003E3,-8.79902344],[0.16115869140624997E3,-8.96181641],[0.16120878906250007E3,-0.9132617187499989E1],[0.16125664062500007E3,-9.19199219],[161.258496,-9.31689453],[0.16136796875000002E3,-0.9490332031249949E1],[161.367383,-9.61123047],[0.16132187500000012E3,-0.9589550781249997E1],[0.16119101562500012E3,-0.9392871093749989E1],[0.16104150390625003E3,-0.9308007812500023E1],[0.16087343750000005E3,-0.9156835937499949E1],[0.16077207031250012E3,-8.96386719],[160.662598,-8.62060547],[160.714063,-8.53925781],[0.16059042968750006E3,-8.37275391],[0.16059628906250006E3,-8.32822266],[160.749414,-8.31396484]]],[[[157.763477,-8.2421875],[0.15782626953125012E3,-8.32402344],[0.15789843749999997E3,-8.50634766],[0.15781933593750003E3,-8.61201172],[0.15774921875000004E3,-8.52363281],[0.15758789062500003E3,-8.44541016],[157.558008,-8.26992187],[0.15735136718750007E3,-8.27529297],[0.15723242187500003E3,-8.31484375],[0.15722851562500003E3,-8.21162109],[0.15732158203125007E3,-8.16123047],[0.15743339843750002E3,-7.98466797],[157.598828,-8.00595703],[0.15761230468750003E3,-8.16484375],[157.763477,-8.2421875]]],[[[0.15660390625000002E3,-8.17158203],[0.15653964843750006E3,-8.07294922],[0.15657031250000003E3,-7.95878906],[0.15660390625000002E3,-8.17158203]]],[[[157.171875,-8.10810547],[0.15704121093750004E3,-8.11748047],[0.15695830078125002E3,-8.01435547],[0.15695898437499997E3,-7.93798828],[157.102734,-7.85546875],[0.15718613281250006E3,-7.94121094],[157.171875,-8.10810547]]],[[[156.687891,-7.92304688],[156.510938,-7.7078125],[156.560937,-7.57402344],[0.15671767578125005E3,-7.69570312],[0.15680908203124994E3,-7.72285156],[156.687891,-7.92304688]]],[[[159.879102,-8.53427734],[0.15974648437500005E3,-8.47382812],[0.15964453124999997E3,-8.37167969],[0.15935410156250006E3,-8.26044922],[0.15909023437500005E3,-8.10332031],[158.944043,-8.04072266],[0.15859697265625002E3,-7.75908203],[0.15856542968749997E3,-7.65136719],[158.457422,-7.54472656],[158.734375,-7.60429688],[0.15886279296874997E3,-7.72236328],[159.109375,-7.90351562],[0.15919804687500007E3,-7.90957031],[0.15943144531250002E3,-8.02900391],[0.15984306640625002E3,-8.32695312],[0.15979394531249997E3,-8.40605469],[159.879102,-8.53427734]]],[[[0.15583984374999997E3,-7.09716797],[0.15567753906250002E3,-7.08896484],[0.15573896484375004E3,-6.97294922],[155.864648,-7.04326172],[0.15583984374999997E3,-7.09716797]]],[[[0.15748671875000005E3,-7.33037109],[157.441309,-7.42568359],[0.15731464843750004E3,-7.34150391],[0.15710156249999997E3,-7.32363281],[0.15690429687500003E3,-7.18046875],[0.15669580078125003E3,-6.9109375],[0.15645742187500005E3,-6.71523437],[156.479395,-6.60888672],[0.15660419921875007E3,-6.64101562],[0.15676542968750007E3,-6.7640625],[0.15703027343750003E3,-6.89199219],[0.15710253906250003E3,-6.95722656],[0.15714843750000003E3,-7.11376953],[157.336133,-7.28046875],[0.15748671875000005E3,-7.33037109]]]]}}],"_labels":{"SB":"Solomon Is."}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/SC.json b/src/api-umbrella/admin-ui/public/maps/SC.json new file mode 100644 index 000000000..325dc83d7 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/SC.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"SC"},"geometry":{"type":"Polygon","coordinates":[[[55.540332,-4.69306641],[55.5429688,-4.78554687],[0.55383398437500006E2,-4.60927734],[0.55455761718750004E2,-4.55878906],[55.540332,-4.69306641]]]}}],"_labels":{"SC":"Seychelles"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/SD.json b/src/api-umbrella/admin-ui/public/maps/SD.json new file mode 100644 index 000000000..ff5d87fd9 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/SD.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"SD"},"geometry":{"type":"Polygon","coordinates":[[[31.4664062,0.22084667968749997E2],[31.4344727,21.9958496],[36.8713867,0.21996728515624994E2],[36.8826172,21.7687988],[36.9269531,21.5865234],[0.37081152343750006E2,21.3260254],[37.2117188,0.21185839843750003E2],[37.2585938,0.21108544921874994E2],[0.37257226562500016E2,21.0394043],[37.1505859,21.1037598],[37.1411133,20.9817871],[37.1726563,0.20731982421875003E2],[37.2275391,20.5567383],[37.1878906,20.3949219],[37.1931641,20.1207031],[37.2625977,0.19791894531249994E2],[37.2484375,19.5818848],[37.3615234,0.19091992187499997E2],[0.37471289062500006E2,0.18820117187500003E2],[37.5994141,0.18717431640624994E2],[37.7297852,18.6943359],[37.921875,18.5559082],[38.0740234,18.4097656],[0.38201757812500006E2,0.18249414062499994E2],[38.2831055,0.18286718749999988E2],[0.38332910156250016E2,0.18219042968750003E2],[38.5740234,0.18072949218749997E2],[0.38609472656250006E2,18.0050781],[38.5228516,0.17938525390625003E2],[0.38422460937500006E2,0.17823925781249997E2],[38.3737305,0.17717333984375003E2],[38.2535156,17.5847656],[38.0989258,17.5264648],[0.38025292968750016E2,0.17537792968749997E2],[37.8629883,0.17470263671875003E2],[37.7824219,17.4580078],[37.6567383,17.3682617],[37.5101563,0.17288134765625003E2],[37.4529297,0.17108691406250003E2],[37.4110352,17.0617188],[37.1695312,17.0414063],[37.0089844,17.0588867],[36.9787109,0.16800585937500003E2],[0.36887792968750006E2,0.16624658203124994E2],[36.9137695,0.16296191406250003E2],[36.8134766,0.15993945312500001E2],[36.6791992,0.15726367187500001E2],[36.5660156,15.3621094],[36.5217773,0.15250146484374993E2],[36.4267578,15.1320801],[36.5243164,14.2568359],[0.36443945312500006E2,0.13988427734374994E2],[36.4470703,13.842041],[36.390625,0.13626074218749991E2],[36.212207,13.2710938],[36.1601562,0.13093310546874989E2],[0.36135351562500006E2,0.12805322265624994E2],[0.36107519531250006E2,0.12726464843749994E2],[35.8206055,0.12684863281249989E2],[35.6702148,0.12623730468749997E2],[35.5960938,0.12537304687499997E2],[35.4496094,0.12300585937499989E2],[35.2524414,11.9570312],[35.1123047,0.11816552734374994E2],[35.0827148,11.748291],[0.35007910156250006E2,0.11419873046874997E2],[34.9607422,0.11276757812499993E2],[0.34969140625000016E2,0.11161767578124994E2],[0.34924902343750006E2,10.9621094],[34.9314453,0.10864794921874989E2],[34.8162109,0.10759179687499993E2],[34.7712891,0.10746191406249991E2],[34.571875,0.10880175781249989E2],[34.4314453,10.7878418],[34.2756836,10.528125],[0.34314843750000016E2,10.2515625],[34.2915039,10.1247559],[34.1852539,0.9918554687499991E1],[34.1203125,9.7296875],[34.078125,0.9461523437499991E1],[33.890918,0.9462207031249989E1],[0.33867773437500006E2,0.9550341796874989E1],[33.8949219,0.9717626953124991E1],[33.9591797,0.9845263671874987E1],[33.9568359,10.0541992],[33.8921875,10.1989746],[0.33459082031250006E2,0.10550830078124989E2],[33.3607422,10.6578125],[33.1300781,10.7459473],[33.172168,0.10850146484374989E2],[33.0730469,0.11591503906249995E2],[33.1224609,0.11693164062499989E2],[33.1350586,0.11941601562499997E2],[33.1930664,12.1350098],[0.33199316406250006E2,12.2172852],[32.721875,0.12223095703124997E2],[0.32736718750000016E2,0.12009667968749994E2],[32.0722656,0.12006738281249994E2],[32.3353516,11.7160156],[32.3499023,0.11580419921874991E2],[32.3357422,11.4185547],[32.3541992,0.11246923828124991E2],[32.4253906,0.11113964843749997E2],[32.4041016,0.11057763671874994E2],[0.31933007812500026E2,10.6625],[0.31854296875000017E2,0.10479052734374989E2],[0.31791992187499996E2,0.10383154296874991E2],[0.31654882812500006E2,0.10221142578124997E2],[0.31224902343750014E2,0.9799267578124997E1],[31.1544922,0.9770947265624997E1],[30.8270508,0.9756298828124997E1],[0.30739355468750006E2,9.74267578],[30.4746094,0.9978955078124997E1],[0.30003027343750006E2,0.10277392578124989E2],[29.6910156,0.10121923828124991E2],[29.6054688,0.10065087890624994E2],[0.29603906250000023E2,9.92138672],[29.4731445,0.9768603515624989E1],[29.2423828,0.9718066406249987E1],[28.9996094,0.9610156249999989E1],[28.8394531,0.9459082031249991E1],[0.28844531250000017E2,9.32607422],[0.28048925781250006E2,9.32861328],[27.9962891,9.37880859],[0.27885839843750006E2,0.9599658203124989E1],[27.7998047,9.58789062],[27.0742188,0.9613818359374989E1],[0.26970507812500017E2,9.590625],[26.7631836,9.49921875],[26.6586914,9.48413086],[0.26551367187500006E2,0.9525830078124995E1],[26.1695312,0.9965917968749991E1],[0.26087011718750006E2,0.10018457031249994E2],[0.26000585937500006E2,10.1234375],[0.25891503906250023E2,10.2027344],[25.8852539,10.3460937],[0.25858203125000017E2,10.4064941],[25.7980469,0.10420507812499991E2],[25.2851562,0.10318505859374994E2],[0.25211718750000014E2,0.10329931640624991E2],[0.25066992187500006E2,0.10293798828124991E2],[25.0236328,0.10235791015624995E2],[25.0029297,10.0552734],[24.9638672,0.9988867187499991E1],[0.24817675781250017E2,9.83959961],[0.24785253906250006E2,9.7746582],[24.7826172,9.52734375],[0.24696679687500023E2,9.42568359],[0.24662890625000017E2,9.33813477],[24.6480469,9.17910156],[0.24549414062500006E2,9.00678711],[24.5319336,8.88691406],[0.24300195312500023E2,8.81425781],[24.2135742,8.76782227],[0.24147363281250023E2,8.665625],[0.23921972656250006E2,8.7097168],[23.6792969,8.7324707],[23.5832031,8.76582031],[23.5373047,8.81582031],[0.23551855468750006E2,8.94321289],[0.23489062500000017E2,8.99331055],[0.23468261718749996E2,9.11474609],[23.5960938,0.9261914062499997E1],[23.6226562,9.340625],[23.65625,0.9710351562499993E1],[0.23646289062500014E2,9.82290039],[0.23545019531250006E2,0.10030078124999989E2],[0.23312304687500017E2,10.3879395],[23.2558594,0.10457812499999989E2],[22.9643555,0.10751806640624991E2],[22.8600586,10.9196777],[0.22937695312500008E2,0.11192041015624994E2],[0.22922656250000017E2,0.11344873046874994E2],[0.22849023437500023E2,0.11403271484374997E2],[22.7833984,0.11409960937499989E2],[0.22641015625000023E2,0.11515917968749989E2],[22.5563477,11.6695313],[0.22580957031250023E2,0.11990136718749994E2],[22.4898437,0.12044726562499987E2],[0.22435253906250008E2,0.12311914062499994E2],[22.3902344,0.12462988281249991E2],[0.22414453125000023E2,12.5463867],[0.22352343750000017E2,0.12660449218749987E2],[22.2333984,12.7094727],[22.0006836,12.671875],[21.878125,0.12699365234374994E2],[0.21825292968750006E2,0.12790527343749998E2],[21.9077148,13.0009766],[21.9902344,0.13113085937499989E2],[0.22158007812500014E2,0.13215039062499997E2],[22.228125,0.13329589843749998E2],[22.2023438,0.13538085937499998E2],[22.1076172,0.13730322265624991E2],[22.1064453,13.7998047],[0.22173144531250014E2,0.13910595703124995E2],[0.22339355468749996E2,0.14028857421875003E2],[0.22509960937500008E2,14.1274414],[0.22528222656250023E2,0.14203222656249991E2],[0.22449316406250002E2,0.14284228515625003E2],[22.425,0.14441210937500001E2],[0.22381542968750008E2,0.14550488281249997E2],[0.22467773437499996E2,0.14633349609375003E2],[22.6318359,0.14688085937499991E2],[0.22670898437499996E2,0.14722460937500003E2],[0.22679199218749996E2,0.14851464843749993E2],[22.7632812,0.14998681640624994E2],[22.9323242,15.1621094],[0.22969531250000017E2,15.3113281],[0.22933886718750017E2,0.15533105468749994E2],[0.23009179687500023E2,0.15625830078124991E2],[23.1051758,0.15702539062499993E2],[0.23243457031250017E2,0.15697216796874997E2],[23.4580078,15.7139648],[23.6040039,0.15745996093749994E2],[23.7082031,15.7449707],[23.9459961,15.7035156],[23.9833984,0.15780175781249994E2],[0.23980273437500017E2,19.9959473],[0.24966992187500008E2,19.995459],[24.9794922,0.20002587890624994E2],[0.24980273437500017E2,21.9958496],[31.2091797,21.994873],[0.31260644531250023E2,0.22002294921874988E2],[0.31358496093750006E2,0.22188623046874994E2],[0.31464257812500023E2,0.22191503906249988E2],[31.4664062,0.22084667968749997E2]]]}}],"_labels":{"SD":"Sudan"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/SE.json b/src/api-umbrella/admin-ui/public/maps/SE.json new file mode 100644 index 000000000..f762cd652 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/SE.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"SE"},"geometry":{"type":"MultiPolygon","coordinates":[[[[16.5285156,56.2905273],[16.4316406,56.24375],[0.16401269531250023E2,56.3108887],[16.4123047,56.5689941],[0.16630371093750057E2,0.56876855468749994E2],[16.7277344,0.56902001953124966E2],[17.0253906,0.57345068359375006E2],[17.1176758,57.3198242],[0.16883691406250076E2,0.56985205078125034E2],[16.8382813,0.56840527343749955E2],[16.7780273,56.8052246],[16.5285156,56.2905273]]],[[[0.19076464843750045E2,57.8359375],[0.18945117187500017E2,57.7416016],[0.18813867187500023E2,57.7062012],[0.18790917968750048E2,0.57483105468749955E2],[0.18907910156250068E2,57.3983398],[0.18784863281250036E2,57.361084],[0.18699902343750068E2,57.2427246],[18.5384766,57.1969238],[18.387207,57.0876465],[18.3402344,56.9782227],[0.18146386718749994E2,0.56920507812500006E2],[0.18285351562500068E2,57.0832031],[0.18105078125000034E2,57.271875],[0.18151953124999977E2,57.3390625],[0.18136523437500045E2,57.5566406],[0.18537402343749985E2,57.8305664],[18.721875,0.57863720703124955E2],[18.8051758,57.8331543],[18.9005859,57.9154785],[0.19076464843750045E2,57.8359375]]],[[[19.1563477,0.57922607421874964E2],[19.1383789,0.57860253906249966E2],[0.19039257812500008E2,57.9110352],[19.1348633,0.57981347656250016E2],[0.19331445312500023E2,57.9628906],[19.1563477,0.57922607421874964E2]]],[[[18.4162109,59.0291016],[18.4162109,59.0291016],[18.4162109,59.0291016],[18.4162109,59.0291016]]],[[[18.5954102,0.59470361328124994E2],[18.5954102,0.59470361328124994E2],[18.5954102,0.59470361328124994E2],[18.5954102,0.59470361328124994E2]]],[[[0.22854101562500034E2,68.367334],[23.0978516,68.2575684],[23.1825195,68.1366211],[0.23318554687500065E2,68.1303223],[0.23474218749999977E2,68.017334],[23.6388672,67.9543945],[23.5018555,67.8751953],[23.5370117,67.5903809],[0.23468066406250074E2,67.4499512],[0.23733593750000065E2,67.4229004],[0.23774902343750057E2,67.3286133],[0.23656640625000023E2,67.2678223],[23.6230469,67.1841309],[0.23677343750000063E2,67.0681152],[0.23941796875000023E2,66.877832],[0.23988574218750042E2,66.8105469],[23.8941406,66.7068848],[0.23865527343750045E2,66.5766113],[23.7011719,66.4807617],[0.23673828125000053E2,66.3807129],[23.7514648,66.1911621],[0.23907324218750034E2,66.1482422],[24.0490234,65.9898438],[24.1554688,65.8052734],[23.8905273,65.7822266],[23.6914062,65.8285156],[0.23221093750000023E2,65.7861328],[0.23102343750000074E2,65.7353516],[22.746582,65.8709473],[0.22538574218750053E2,65.7943359],[0.22366308593750063E2,65.8426758],[22.275,65.725],[0.22254003906250006E2,65.5975586],[0.22086230468750017E2,65.6109375],[0.22147558593750063E2,65.5528809],[21.9201172,65.532373],[21.8795898,65.4240234],[0.21565527343750063E2,65.4081055],[21.5668945,65.254541],[0.21410351562500068E2,65.3174316],[0.21580664062500034E2,65.160791],[0.21424902343750002E2,65.0126953],[0.21195898437500006E2,64.8769043],[0.21138183593750057E2,64.8086914],[21.2792969,64.724707],[21.3938477,64.5443359],[0.21519628906250034E2,64.4630859],[21.4650391,64.3795898],[21.018457,64.1779785],[20.7626953,63.8678223],[0.20453710937500034E2,0.63773730468750074E2],[0.20204687500000034E2,63.6624512],[0.19913671875000063E2,63.6105469],[0.19722070312500023E2,0.63463330078124976E2],[0.19502343750000023E2,63.5090332],[0.19494628906250057E2,63.4243652],[0.19354296875000074E2,63.4774902],[19.2363281,63.3473633],[19.034375,63.2377441],[0.18816699218750045E2,0.63257470703125044E2],[18.8589844,63.2065918],[18.6064453,63.1782715],[18.5306641,63.0635254],[18.3128906,0.62996386718750045E2],[0.18502050781249977E2,62.9888672],[18.4630859,0.62895849609375006E2],[18.2480469,0.62849072265624976E2],[0.18170019531250034E2,0.62789355468750074E2],[0.18093554687500074E2,62.8360352],[0.17895605468749977E2,62.8305176],[0.17974414062500045E2,0.62721044921875006E2],[0.17903027343750068E2,62.6594727],[0.18037304687500068E2,62.6005371],[0.17834472656250057E2,62.5027344],[0.17570605468750045E2,62.4510254],[0.17410253906250063E2,0.62508398437500034E2],[0.17373339843750074E2,62.4265137],[0.17429003906250045E2,62.3347168],[0.17633691406249994E2,62.2330078],[0.17510156250000048E2,62.1663086],[0.17374511718750057E2,61.8663086],[0.17465429687500006E2,0.61684472656250044E2],[0.17196386718750006E2,61.7245605],[17.215625,0.61656347656250006E2],[17.1307617,61.5757324],[0.17137988281250017E2,0.61381689453125006E2],[17.2128906,60.9858398],[0.17278906250000034E2,60.8121582],[17.2509766,60.7007812],[17.3598633,0.60640820312499955E2],[0.17555468750000045E2,60.6427246],[17.6611328,60.5351563],[0.17955761718750068E2,0.60589794921874955E2],[0.18011328125000034E2,0.60511425781249976E2],[0.18250488281249996E2,0.60361523437499976E2],[18.4,60.3371094],[0.18557519531250023E2,60.2535645],[0.18535449218750045E2,0.60152880859375024E2],[18.7870117,60.0794922],[0.18933203124999977E2,0.59942285156250016E2],[0.18970507812500045E2,0.59757226562499994E2],[18.71875,59.657373],[18.578125,59.5657715],[0.18216894531250063E2,0.59420507812500034E2],[0.17964257812500023E2,59.359375],[0.18132617187500045E2,59.3162109],[0.18508886718750063E2,0.59407958984374964E2],[18.6175781,59.3270508],[18.4142578,59.290332],[18.3730469,0.59179736328125024E2],[0.18285351562500068E2,59.109375],[18.0981445,59.0623047],[0.17829003906249994E2,58.9545898],[17.4567383,58.8583984],[17.3476562,58.7805176],[16.978125,58.6541504],[0.16315820312500023E2,58.663623],[0.16214257812500023E2,0.58636669921874955E2],[0.16788476562500023E2,58.5852539],[16.9238281,58.4925781],[16.6519531,58.4343262],[16.7699219,58.2142578],[16.7000977,58.160791],[16.6949219,0.57917529296874996E2],[0.16596972656250017E2,57.9128906],[0.16555371093750068E2,57.8122559],[0.16583789062500074E2,0.57641748046875044E2],[16.6522461,57.5006836],[16.6308594,57.4301758],[16.4759766,57.2651367],[0.16527929687500063E2,57.0681641],[0.16348730468750063E2,56.7092773],[0.16150683593750045E2,0.56500830078125034E2],[0.15996679687500006E2,56.2226074],[0.15826660156250028E2,56.1249512],[15.6265625,56.1855957],[15.3265625,0.56150830078124955E2],[0.15051171875000023E2,56.1722168],[0.14782031250000015E2,56.1619141],[0.14713964843750004E2,56.1341309],[0.14754785156250051E2,56.0331543],[0.14558593750000057E2,56.0486328],[0.14401953125000032E2,55.9767578],[14.2150391,55.8326172],[0.14202929687500074E2,55.7291504],[0.14341699218749994E2,55.5277344],[0.14173730468750078E2,55.3966309],[0.13806347656250011E2,55.4285645],[0.13321386718750063E2,55.3463867],[12.8858398,55.411377],[12.940625,55.4815918],[12.9780273,55.6937988],[0.12941992187500034E2,0.55806054687499994E2],[0.12834570312500006E2,55.8818359],[0.12592578124999989E2,0.56137597656250016E2],[0.12507031250000068E2,56.2929687],[0.12706347656250074E2,0.56235009765624966E2],[12.8016602,56.263916],[12.6564453,0.56440576171875016E2],[0.12857421875000028E2,56.4523926],[12.9195313,0.56515576171875004E2],[0.12883691406250051E2,56.6177246],[0.12717578125000072E2,56.6628418],[0.12572656250000023E2,56.823291],[0.12421484375000034E2,56.9063965],[12.1518555,57.2269531],[0.12053222656249972E2,0.57446972656249976E2],[0.11961523437500034E2,57.4260742],[0.11878710937500045E2,57.6794434],[0.11734960937500063E2,0.57717675781249966E2],[0.11703222656250006E2,57.9731934],[0.11549023437500038E2,58.0012207],[0.11449316406250063E2,58.1183594],[11.431543,0.58339990234374994E2],[11.2482422,58.3691406],[0.11271582031250006E2,58.4756348],[11.2079102,0.58866406249999955E2],[11.147168,58.988623],[11.1958008,59.0782715],[0.11388281250000063E2,59.0365234],[0.11470703125000057E2,58.9095215],[11.6427734,0.58926074218750024E2],[0.11712207031250045E2,59.0186523],[0.11798144531250072E2,59.2898926],[0.11680761718750032E2,59.5922852],[0.11834277343750044E2,0.59697167968749994E2],[11.9321289,59.8636719],[0.12169238281250074E2,59.9128906],[0.12486132812500074E2,0.60106787109375055E2],[0.12515820312499983E2,0.60305224609375074E2],[0.12588671874999989E2,0.60450732421875045E2],[0.12553808593750006E2,60.5456543],[0.12314648437500038E2,60.8921387],[0.12294140625000038E2,61.0026855],[0.12467578125000017E2,0.61041503906249964E2],[0.12683007812500021E2,61.0468262],[0.12828222656250034E2,61.2218262],[12.8807617,61.3522949],[12.5960937,61.5413086],[0.12155371093750004E2,0.61720751953125045E2],[0.12291992187500057E2,62.1674316],[0.12303515625000074E2,62.2855957],[0.12114550781250045E2,62.5918945],[12.1398438,62.7213379],[0.12108593750000068E2,62.9194824],[0.12218164062500023E2,0.63000634765625016E2],[11.9999023,0.63291699218750004E2],[0.12212109375000011E2,63.4922363],[12.1751953,63.5959473],[12.3019531,0.63671191406250045E2],[12.6625,63.9404785],[0.12987597656250017E2,64.0504883],[0.13299609375000074E2,64.0748047],[0.13960546875000063E2,64.0140137],[0.14141210937500006E2,64.1735352],[0.14148046874999977E2,64.2603027],[0.14077636718750028E2,64.4640137],[0.13650292968750023E2,64.581543],[0.14115136718750023E2,64.9461426],[0.14479687500000038E2,65.3014648],[0.14549511718750068E2,65.6463867],[0.14635156250000023E2,65.8450195],[0.14543261718750044E2,66.1293457],[14.9179688,66.1537109],[0.15153320312500057E2,66.1910645],[0.15483789062500051E2,66.305957],[0.15422949218750006E2,66.4898437],[15.5570313,66.5520996],[0.15884179687500021E2,66.7688477],[16.4035156,67.0549805],[0.16434277343749983E2,67.1550781],[0.16360644531249985E2,67.252002],[16.1274414,67.4258301],[0.16193554687500068E2,67.5051758],[0.16457128906250034E2,67.5517578],[0.16585546874999974E2,67.6283203],[0.16783593750000023E2,67.8950195],[0.17170507812500063E2,68.030127],[0.17324609375000023E2,68.1038086],[0.17916699218750008E2,67.9648926],[18.1766602,68.2006348],[18.1625977,68.528418],[0.18378613281250068E2,68.5624023],[0.18769824218750017E2,68.5000488],[19.0526367,68.4927246],[19.8700195,68.3622559],[0.19969824218750063E2,68.3563965],[0.20240039062500042E2,68.4775391],[19.9688477,68.542041],[0.20147460937499996E2,68.6073242],[20.3194336,68.7540527],[20.3371094,68.8996582],[0.20116699218750057E2,69.0208984],[0.20622167968750006E2,69.0368652],[0.20895117187500006E2,68.979834],[20.9185547,68.9069336],[0.21183398437500017E2,68.8288086],[0.21616015625000045E2,68.6509766],[21.9974609,68.5206055],[22.7824219,68.3910156],[0.22854101562500034E2,68.367334]]]]}}],"_labels":{"SE":"Sweden"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/SG.json b/src/api-umbrella/admin-ui/public/maps/SG.json new file mode 100644 index 000000000..5318ccee6 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/SG.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"SG"},"geometry":{"type":"Polygon","coordinates":[[[103.969727,1.33144531],[0.10381992187500003E3,1.26538086],[0.10365019531249999E3,1.32553711],[0.10370527343750001E3,1.4234375],[0.10381796875000003E3,1.44707031],[103.969727,1.33144531]]]}}],"_labels":{"SG":"Singapore"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/SH.json b/src/api-umbrella/admin-ui/public/maps/SH.json new file mode 100644 index 000000000..790bdce57 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/SH.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"SH"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-5.69213867,-0.15997753906249997E2],[-5.78251953,-16.0040039],[-5.77504883,-0.15956738281249983E2],[-5.70786133,-15.9061523],[-5.6625,-0.15912792968749997E2],[-5.69213867,-0.15997753906249997E2]]],[[[-0.14364355468749977E2,-7.97431641],[-0.14414941406249993E2,-7.94375],[-0.14383642578125004E2,-7.88261719],[-0.14302539062499989E2,-7.93544922],[-0.14364355468749977E2,-7.97431641]]]]}}],"_labels":{"SH":"Saint Helena"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/SI.json b/src/api-umbrella/admin-ui/public/maps/SI.json new file mode 100644 index 000000000..891ae5872 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/SI.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"SI"},"geometry":{"type":"Polygon","coordinates":[[[0.16516210937500006E2,46.4999023],[0.16321191406250023E2,46.5346191],[0.16236718750000023E2,46.4838379],[0.16253320312500023E2,46.3891113],[0.16227441406250023E2,0.46372851562499996E2],[0.16066503906250006E2,46.3713379],[0.16000683593750008E2,46.3053711],[0.15784277343750006E2,46.2339844],[0.15635937500000011E2,0.46200732421874996E2],[15.596875,46.1092285],[0.15666210937500011E2,0.46048486328124994E2],[0.15668066406250004E2,45.9044434],[0.15624804687500015E2,45.8340332],[15.4541016,45.7976074],[0.15277050781250011E2,45.7326172],[0.15356933593749998E2,45.6455078],[0.15290136718750006E2,45.6126465],[0.15291210937500011E2,45.5415527],[15.3394531,45.467041],[0.15242089843750023E2,45.4414062],[0.15110449218750006E2,45.4507812],[0.14954589843749998E2,0.45499902343749994E2],[0.14847070312500021E2,0.45467333984374996E2],[0.14733593750000011E2,45.5084961],[0.14608593750000013E2,45.6101074],[0.14533984375000015E2,45.6452637],[14.4273438,0.45505761718749994E2],[0.14369921875000015E2,45.4814453],[14.0855469,0.45477832031249996E2],[0.13992773437500006E2,0.45509423828124994E2],[0.13878710937500017E2,0.45428369140624994E2],[13.6152344,45.4767578],[0.13577929687500017E2,45.5168945],[0.13719824218750006E2,45.5875977],[13.8447266,45.5928711],[0.13874707031250011E2,45.6148437],[0.13831152343750006E2,45.6804199],[13.7216797,0.45761279296874996E2],[0.13569628906250017E2,0.45834130859374994E2],[0.13613964843750011E2,45.9616699],[0.13509179687500023E2,0.45973779296874994E2],[0.13486425781250004E2,46.0395508],[0.13616601562500023E2,0.46133105468749996E2],[0.13632519531250011E2,0.46177050781249996E2],[0.13449804687500006E2,0.46223535156249994E2],[0.13378222656250017E2,0.46261621093749994E2],[0.13399511718750006E2,0.46317529296874994E2],[0.13563281250000017E2,0.46415087890624996E2],[13.6796875,46.4628906],[13.7,46.5202637],[0.13831347656250015E2,46.5112305],[0.14099511718750023E2,46.4619141],[14.5035156,0.46417041015624996E2],[0.14596972656250017E2,0.46436083984374996E2],[0.14756738281250023E2,46.4991211],[14.840625,46.5804688],[0.15000683593750011E2,46.6259766],[0.15216992187500011E2,46.6429687],[0.15439257812500019E2,46.6296387],[0.15632617187500017E2,46.6984375],[0.15766894531250017E2,46.7112793],[0.15957617187500006E2,0.46677636718749994E2],[0.15976855468750017E2,46.8013672],[0.16093066406250017E2,46.8632812],[0.16283593750000023E2,46.8572754],[16.38125,46.6386719],[0.16516210937500006E2,46.4999023]]]}}],"_labels":{"SI":"Slovenia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/SJ.json b/src/api-umbrella/admin-ui/public/maps/SJ.json new file mode 100644 index 000000000..ca522d8b8 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/SJ.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"SJ"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.19219335937500006E2,74.3910156],[0.19098535156249994E2,74.3521484],[0.18797460937500034E2,74.4856934],[0.19182910156250045E2,74.5179199],[0.19219335937500006E2,74.3910156]]],[[[21.6081055,78.5957031],[22.0431641,78.5769531],[0.22207324218750074E2,78.407666],[22.2995117,78.2281738],[0.22449316406250002E2,78.2152344],[0.22988867187500063E2,78.2519531],[23.4519531,78.1494629],[0.23151953125000063E2,78.0880859],[23.1166992,77.9915039],[0.23683984375000076E2,77.8754395],[0.23883007812500036E2,77.8647461],[0.24238281250000025E2,77.8985352],[0.24901855468750057E2,77.7565918],[24.1297852,77.658252],[23.8412109,77.4977539],[0.23380859375000053E2,77.3803223],[0.23101367187500042E2,77.3850586],[22.8017578,77.2757813],[22.5537109,77.2666504],[0.22426953125000065E2,77.315918],[0.22442480468750034E2,77.4293457],[0.22732617187500065E2,77.5393555],[0.22397265625000045E2,77.5701172],[22.2545898,77.5288574],[0.21049902343750006E2,77.4409668],[20.928125,77.459668],[0.20873144531250063E2,77.565332],[0.21201074218750076E2,77.6194824],[21.2514648,77.7109375],[21.653125,77.9235352],[0.21210449218750025E2,78.0057617],[0.20844921875000068E2,78.1658691],[0.20786425781250074E2,78.2521484],[0.20528320312500053E2,78.3255859],[0.20560253906249983E2,78.4193848],[0.20372753906250068E2,78.4120117],[0.20227929687500048E2,78.477832],[20.3626953,78.5147949],[21.6081055,78.5957031]]],[[[0.26875976562500057E2,78.6489258],[0.26729492187500057E2,78.6464844],[0.26459570312500034E2,78.7202637],[0.26407714843750057E2,78.7843262],[26.5859375,78.8114746],[0.26788769531250068E2,78.7239746],[0.27007617187500045E2,78.6975098],[0.26875976562500057E2,78.6489258]]],[[[0.11250292968750015E2,78.6106934],[0.11261718750000027E2,78.5416992],[11.4242187,78.548584],[11.8256836,78.436084],[0.12116406250000068E2,78.2325684],[11.9650391,78.2248535],[11.756543,78.3290039],[0.11372460937500023E2,78.4387695],[0.11121289062500011E2,78.4632812],[0.10788867187500074E2,78.6865234],[0.10628417968750057E2,78.7538574],[10.5582031,78.9029297],[0.10960839843750023E2,78.8463867],[0.11152929687500063E2,78.7244629],[0.11078222656250034E2,78.6860352],[0.11250292968750015E2,78.6106934]]],[[[0.29047070312500068E2,78.9120605],[29.6966797,78.9047363],[29.3105469,78.8520996],[0.28494531250000023E2,78.887207],[0.28037890625000074E2,78.8287109],[27.8890625,78.8521484],[28.4147461,78.9614258],[0.28845214843750057E2,78.9708496],[0.29047070312500068E2,78.9120605]]],[[[16.7867188,79.9067383],[16.9664063,79.9589355],[0.17578222656249977E2,79.884668],[0.17834570312499977E2,79.8000488],[0.17956152343750063E2,79.704248],[17.6875,79.5333496],[17.66875,79.3859375],[0.18272070312500034E2,79.6005859],[18.5814453,79.571582],[18.7484375,79.4881836],[0.18807421875000017E2,79.3031738],[0.18677832031250006E2,79.2617188],[0.19089453125000034E2,79.1570313],[0.19490234375000057E2,79.1756836],[0.19750878906250023E2,79.1468262],[0.19893554687500057E2,79.0562012],[20.1137695,79.076709],[0.20162695312500006E2,79.1456543],[0.20458203125000068E2,79.129248],[0.20767187500000063E2,79.0591309],[20.5006836,78.9813965],[20.7203125,78.9066895],[0.21089648437500017E2,78.8526367],[21.3887695,78.7404297],[0.21096289062500034E2,78.6762695],[19.76875,78.6227051],[0.19380664062500017E2,78.4797852],[0.19055664062500057E2,78.3189453],[0.18957617187499977E2,78.1824707],[18.9951172,78.0814941],[0.18822070312500074E2,78.0416992],[0.18439257812500074E2,78.0250488],[0.18361914062500034E2,77.6822754],[0.18227929687500023E2,77.5226074],[17.8470703,77.4967773],[0.17623339843750017E2,77.3993652],[0.17442480468750034E2,77.2252441],[17.1525391,77.0489258],[0.17249023437500057E2,76.9691895],[0.16976660156250006E2,76.8116211],[17.0626953,76.6589844],[0.16700488281250045E2,76.5792969],[16.4619141,76.6093262],[0.16238085937500074E2,76.7015137],[0.15546777343750021E2,76.8864258],[0.15124218749999983E2,77.0851074],[0.14486914062500006E2,77.1990234],[0.14145312500000045E2,77.3355957],[0.14004199218750074E2,77.4452148],[14.0712891,77.5641113],[0.14377636718750038E2,77.5796387],[14.6950195,77.5250488],[0.14920800781250023E2,77.6888184],[0.16205957031250023E2,77.7824707],[0.17033300781250006E2,77.7977051],[0.16852929687500023E2,77.9115723],[0.16060058593750057E2,77.8471191],[15.5853516,77.8691406],[14.6039063,77.7664551],[0.14089941406250063E2,77.7713867],[0.13791113281250004E2,77.8538086],[13.6805664,78.028125],[0.13936914062500051E2,78.0855469],[0.14307226562500006E2,78.0050781],[0.14248144531250034E2,78.0713867],[0.14994726562500004E2,78.1512207],[15.3414063,78.2209473],[0.15698046875000019E2,78.2275879],[0.15657128906250023E2,78.2990234],[16.150293,78.3528809],[16.7769531,78.3504395],[0.17171972656250006E2,78.4171387],[0.16811230468750036E2,78.3972656],[0.16535351562500068E2,78.448877],[16.4486328,78.5035645],[16.7826172,78.663623],[16.5304688,78.6562988],[15.944043,78.4930176],[0.15417382812500023E2,78.4732422],[0.15264941406250074E2,78.6083008],[0.15391601562500027E2,78.7211914],[0.15322753906250027E2,78.7812012],[0.15137304687500004E2,78.6642578],[0.14891796875000068E2,78.6394531],[0.14689257812500017E2,78.7209473],[0.14467187500000078E2,78.6753906],[0.14515429687500044E2,78.5805664],[0.14431835937500068E2,78.4924805],[0.14638281250000034E2,78.4145996],[0.14363281250000059E2,78.3599121],[0.14110449218750063E2,78.2708984],[0.13150195312499987E2,78.2375],[0.12664648437500034E2,78.3847656],[0.12257910156250034E2,78.5946777],[0.11961718750000072E2,78.6423828],[11.7738281,78.7164063],[0.11755175781250017E2,78.8116699],[11.8610352,78.8318848],[0.11365429687500011E2,78.9503906],[0.11547558593749981E2,78.982959],[0.12274902343750028E2,78.9044922],[12.375,78.9663574],[12.0458008,78.9831543],[0.11892773437500068E2,79.1523438],[0.12083984375000027E2,79.2675293],[0.11978320312499987E2,79.2926758],[0.11579785156250068E2,79.2834961],[0.11616406250000066E2,79.2052734],[0.11338867187500028E2,79.1091309],[0.11208105468750032E2,79.1296387],[0.10737597656250017E2,79.520166],[0.10810742187500068E2,79.640918],[0.10686230468750011E2,79.7335937],[10.865918,79.796582],[0.11185253906249981E2,79.720459],[0.11250585937500063E2,79.7848633],[0.11702343750000011E2,79.8206055],[0.12287792968750068E2,79.7131348],[0.12279980468749981E2,79.8159668],[12.7535156,79.7757812],[0.13107519531250006E2,79.8317383],[13.6928711,79.8609863],[0.13914160156250034E2,79.8169434],[0.13777539062500011E2,79.7152832],[13.0392578,79.6851562],[0.12555371093750068E2,79.5694824],[0.13215136718749989E2,79.5880859],[0.13333789062500017E2,79.5748047],[0.13383593750000044E2,79.4807617],[0.13716210937500023E2,79.4291504],[0.13957226562500011E2,79.3396484],[14.0558594,79.3831055],[0.14039843750000045E2,79.5856445],[14.5936523,79.7987305],[0.14831835937500015E2,79.7664063],[15.0523438,79.6753418],[0.15660156250000028E2,79.2348633],[0.16294531250000034E2,78.9810547],[0.16253515625000034E2,79.1121094],[0.15875097656250034E2,79.5192383],[15.8161133,79.6818359],[0.15955761718750038E2,79.8351074],[0.16100195312500063E2,79.8844238],[0.16093847656250002E2,80.0073242],[16.2457031,80.0494629],[0.16524023437500063E2,80.0205078],[16.7867188,79.9067383]]],[[[32.5259766,80.1191406],[0.31577636718750025E2,80.0814453],[31.4819336,80.1079102],[33.3839844,80.242334],[0.33556640624999964E2,80.1981445],[32.5259766,80.1191406]]],[[[18.7416016,80.3009277],[18.525,80.2456055],[0.18162207031250034E2,80.2881836],[18.2916992,80.3583496],[18.7416016,80.3009277]]],[[[0.20897851562500023E2,80.2499512],[0.21549218750000023E2,80.2429199],[21.6966797,80.1591797],[22.2897461,80.0492187],[22.4426758,80.1902832],[0.22450781250000034E2,80.4022461],[23.0080078,80.4739746],[0.23315429687500057E2,80.4252441],[0.23114550781250074E2,80.1869629],[23.6879883,80.206543],[0.23952929687500074E2,80.3045898],[0.24234082031250068E2,80.303125],[24.2975586,80.3604004],[0.24546679687500074E2,80.295166],[25.4712891,80.2331055],[25.8363281,80.1751465],[26.8608398,80.1600098],[0.27148339843750023E2,80.0592285],[27.1986328,79.9065918],[0.27079882812500045E2,79.8653809],[26.2210938,79.6774414],[26.0058594,79.617041],[0.25641210937500034E2,79.4030273],[0.25145117187500034E2,79.3388672],[0.24750585937500034E2,79.3645996],[0.24383398437500034E2,79.3016113],[0.24132910156250063E2,79.2154785],[23.9477539,79.1942871],[0.22903710937500023E2,79.2306641],[22.6957031,79.3290527],[0.22865527343750045E2,79.4118652],[0.21911425781250017E2,79.3810547],[0.20861132812500017E2,79.3978516],[0.20760839843750006E2,79.4415039],[0.20128222656250074E2,79.4895996],[0.19674609375000045E2,79.5911621],[0.19821093750000045E2,79.6336426],[0.20493457031250074E2,79.6327637],[0.20784082031250023E2,79.748584],[0.20123437500000076E2,79.7785645],[19.8986328,79.7441895],[19.4,79.7265625],[18.725,79.7607422],[18.324707,79.8597168],[18.2553711,79.9291992],[0.18594628906250023E2,79.9666992],[0.18855957031250053E2,80.0366211],[0.18343847656250006E2,80.0595703],[17.9168945,80.1431152],[0.18089453125000034E2,80.1711426],[18.7792969,80.1935059],[0.19343359375000063E2,80.1164062],[19.5371094,80.1632324],[0.19354687500000068E2,80.1854004],[19.1914062,80.2632324],[0.19327441406250017E2,80.3230957],[0.19751074218749977E2,80.2271973],[19.8103516,80.3268066],[0.19614355468750034E2,80.4625488],[19.8511719,80.4711914],[20.359375,80.4009277],[0.20897851562500023E2,80.2499512]]]]}}],"_labels":{"SJ":"Svalbard Is."}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/SK.json b/src/api-umbrella/admin-ui/public/maps/SK.json new file mode 100644 index 000000000..a5e61aa5b --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/SK.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"SK"},"geometry":{"type":"Polygon","coordinates":[[[22.5386719,49.0727051],[22.5241211,0.49031396484374994E2],[0.22389453125000017E2,48.8734863],[0.22295214843750017E2,48.6858398],[0.22142871093750017E2,48.5685059],[0.22131835937499996E2,0.48405322265624996E2],[0.21766992187500023E2,48.3380859],[0.21721484375000017E2,0.48346582031249994E2],[21.5631836,48.4957031],[0.21451367187500008E2,48.5522461],[0.21196386718750006E2,48.5105957],[0.21067285156250023E2,0.48505908203124996E2],[0.20866601562500023E2,48.5456543],[0.20643164062500006E2,0.48549707031249994E2],[0.20490039062500014E2,48.5269043],[0.20333789062500017E2,0.48295556640624994E2],[19.8986328,48.1313477],[0.19625390625000023E2,48.2230957],[0.19564257812500014E2,48.2128418],[0.19466992187500008E2,48.1106934],[19.2651367,48.0730469],[0.18914160156250006E2,0.48050830078124996E2],[0.18791894531250023E2,0.48000292968749996E2],[0.18750097656250006E2,47.9394531],[18.7780273,47.8528809],[18.7242187,0.47787158203124996E2],[0.18145605468750006E2,47.7634277],[17.7619141,0.47770166015624994E2],[17.6352539,47.8099121],[17.4806641,0.47887597656249994E2],[0.17317285156250023E2,47.990918],[0.17147363281250023E2,48.005957],[16.9726562,48.1980957],[16.8654297,48.3869141],[0.16862695312500023E2,48.4414062],[16.9433594,0.48550927734374994E2],[0.16985253906250023E2,0.48676904296874994E2],[0.17063281250000017E2,48.7807617],[17.1884766,48.8609375],[0.17482617187500008E2,0.48827783203124994E2],[17.6253906,0.48841845703124996E2],[0.17758496093750008E2,48.8881348],[0.17940722656250017E2,49.0119629],[18.0859375,49.0651367],[0.18109960937500006E2,49.1797852],[0.18160937500000017E2,0.49257373046874996E2],[18.3648437,49.3362305],[0.18415820312500014E2,0.49390917968749996E2],[0.18596484375000017E2,49.4914551],[18.8322266,0.49510791015624996E2],[18.9381836,49.498291],[18.9683594,49.3962402],[19.1494141,49.4],[19.2501953,49.5114258],[19.4416016,49.5977051],[0.19630273437500023E2,49.4066406],[19.7739258,49.372168],[0.19787988281250023E2,49.2699707],[0.19756640625000014E2,0.49204394531249996E2],[0.19916113281250006E2,49.2213867],[0.20057617187499996E2,0.49181298828124994E2],[20.1636719,49.3164062],[0.20362988281250008E2,49.3852539],[0.20616113281250023E2,49.3916992],[20.7995117,0.49328662109374996E2],[20.9472656,49.3170898],[0.21079394531250017E2,0.49418261718749996E2],[21.3504883,0.49428759765624996E2],[21.6396484,49.4119629],[0.21890136718749996E2,49.343457],[0.21967675781250023E2,49.2990723],[0.22020117187500006E2,0.49209521484374996E2],[0.22473046875000023E2,49.0812988],[22.5386719,49.0727051]]]}}],"_labels":{"SK":"Slovakia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/SL.json b/src/api-umbrella/admin-ui/public/maps/SL.json new file mode 100644 index 000000000..482c5956a --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/SL.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"SL"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-0.12526074218749926E2,7.43632813],[-0.12607177734375028E2,7.47451172],[-0.12951611328124926E2,7.57084961],[-0.12854394531249937E2,7.62202148],[-0.12615234374999972E2,7.63720703],[-12.5125,7.58242188],[-0.12526074218749926E2,7.43632813]]],[[[-0.11180859374999955E2,0.9925341796875045E1],[-0.11047460937499975E2,9.78632813],[-10.8647949,0.9516455078124963E1],[-0.10690527343749977E2,9.31425781],[-0.10749951171874926E2,9.12236328],[-10.6159668,0.9059179687499977E1],[-0.10605615234375023E2,8.86757813],[-0.10500537109375017E2,8.68754883],[-10.6284668,8.52998047],[-0.10712109374999955E2,8.33525391],[-10.5577148,8.31567383],[-0.10394433593749966E2,8.48095703],[-10.2832031,8.48515625],[-0.10314648437499983E2,8.31083984],[-0.10389550781249966E2,8.15761719],[-0.10516748046874937E2,8.12529297],[-0.10570849609374932E2,8.07114258],[-10.6474609,7.759375],[-0.10878076171874994E2,7.53823242],[-0.11085400390624955E2,7.39858398],[-0.11267675781249975E2,7.23261719],[-0.11507519531249983E2,6.90654297],[-0.11733447265625017E2,7.08857422],[-11.9291992,7.18354492],[-12.4856445,7.3862793],[-12.4327148,7.54501953],[-0.12510449218749955E2,7.66572266],[-0.12480273437499932E2,7.75327148],[-0.12570214843749936E2,7.70058594],[-0.12697607421874977E2,7.71586914],[-0.12880957031249919E2,7.85664063],[-0.12956933593749966E2,8.1453125],[-0.13020800781249987E2,8.20092773],[-0.13148974609374989E2,8.21459961],[-0.13272753906249989E2,8.42973633],[-0.13261230468749943E2,8.48759766],[-0.13085009765624932E2,8.42475586],[-0.12912939453124949E2,8.58154297],[-0.13088232421874977E2,8.62573242],[-0.13181835937499955E2,8.5769043],[-0.13228417968749937E2,8.69589844],[-0.13206933593749994E2,8.84311523],[-0.13071044921875028E2,8.85634766],[-0.13271630859374936E2,8.98740234],[-0.13292675781249955E2,9.04921875],[-0.13129882812500028E2,0.9047558593749997E1],[-0.13028027343749955E2,0.9103564453125045E1],[-0.12958789062499987E2,9.26333008],[-0.12831103515624989E2,9.30224609],[-0.12755859374999943E2,0.9373583984374989E1],[-12.5578613,0.9704980468749993E1],[-0.12501464843749972E2,9.8621582],[-0.12277734374999966E2,0.9929785156249963E1],[-12.142334,9.87539062],[-0.11922753906249937E2,0.9922753906250051E1],[-0.11911083984374953E2,0.9993017578124977E1],[-0.11273632812499955E2,0.9996533203124983E1],[-0.11180859374999955E2,0.9925341796875045E1]]]]}}],"_labels":{"SL":"Sierra Leone"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/SM.json b/src/api-umbrella/admin-ui/public/maps/SM.json new file mode 100644 index 000000000..84f69b6b9 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/SM.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"SM"},"geometry":{"type":"Polygon","coordinates":[[[0.12485253906250023E2,43.901416],[12.396875,43.9345703],[0.12441113281250011E2,43.9824219],[0.12503710937500017E2,43.9897461],[0.12485253906250023E2,43.901416]]]}}],"_labels":{"SM":"San Marino"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/SN.json b/src/api-umbrella/admin-ui/public/maps/SN.json new file mode 100644 index 000000000..0e9d00dd7 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/SN.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"SN"},"geometry":{"type":"Polygon","coordinates":[[[-0.12280615234374977E2,0.14809033203124995E2],[-0.12186523437499998E2,0.14648144531249999E2],[-0.12228417968749993E2,14.4585938],[-0.12019189453124994E2,0.14206494140624997E2],[-0.12020117187499977E2,0.13974658203125001E2],[-0.11960888671874983E2,0.13875292968750001E2],[-0.12044140624999983E2,13.7338867],[-12.0541992,0.13633056640624998E2],[-0.11894580078124989E2,0.13444433593749991E2],[-0.11831689453124993E2,0.13315820312499993E2],[-0.11758251953124981E2,13.3945312],[-0.11634960937499983E2,13.369873],[-0.11548779296874981E2,0.13170263671874991E2],[-11.3903809,0.12941992187499991E2],[-0.11448779296874989E2,0.12531933593749997E2],[-0.11382421874999977E2,12.479248],[-11.3894043,12.4043945],[-0.11573681640624983E2,0.12426318359374987E2],[-11.8081055,12.3873047],[-0.12042382812499993E2,12.3980469],[-0.12291210937499983E2,0.12328027343749994E2],[-0.12399072265624994E2,12.3400879],[-0.12797314453124983E2,12.4519043],[-0.12930712890624989E2,0.12532275390624987E2],[-0.13011914062499983E2,0.12477636718749991E2],[-13.079834,0.12536279296874993E2],[-0.13082910156249994E2,12.6335449],[-13.4057617,0.12662255859374994E2],[-13.729248,0.12673925781249991E2],[-0.15196093749999989E2,12.6799316],[-0.15574804687499977E2,0.12490380859374993E2],[-0.15839550781249981E2,12.4378906],[-0.16144189453124994E2,12.4574219],[-16.2415039,0.12443310546874997E2],[-16.4163086,12.3676758],[-0.16521337890624977E2,12.3486328],[-0.16711816406249994E2,0.12354833984374991E2],[-0.16784863281249983E2,0.12472509765624991E2],[-16.7603027,12.5257812],[-16.5532227,0.12604882812499994E2],[-16.4499512,0.12580712890624994E2],[-0.16455029296874983E2,0.12624804687499989E2],[-16.5976562,0.12715283203124995E2],[-16.7438965,12.5854492],[-0.16768945312499994E2,12.8833008],[-0.16763330078124994E2,0.13064160156249997E2],[-0.16648779296874977E2,0.13154150390624991E2],[-0.15834277343749987E2,0.13156445312499997E2],[-0.15814404296874983E2,0.13325146484374997E2],[-0.15657324218749975E2,0.13355810546874991E2],[-0.15286230468749977E2,13.3959961],[-0.15151123046875002E2,0.13556494140624991E2],[-0.14671923828124987E2,0.13351708984374994E2],[-0.14438574218749975E2,0.13268896484374991E2],[-0.14246777343749983E2,13.2358398],[-0.13847509765624977E2,0.13335302734374991E2],[-0.13852832031249989E2,0.13478564453125001E2],[-0.13977392578124977E2,13.543457],[-14.1469727,13.5361328],[-0.14325537109374977E2,0.13488574218750003E2],[-0.14405468749999983E2,0.13503710937500003E2],[-0.14570849609374989E2,0.13616162109374997E2],[-14.7660156,0.13669091796874994E2],[-14.935791,0.13785205078125003E2],[-0.15108349609374983E2,13.8121094],[-15.2695312,0.13789111328125003E2],[-0.15426855468749977E2,0.13727001953124997E2],[-0.15509667968749994E2,0.13586230468750003E2],[-0.16308740234374994E2,13.596875],[-16.5623047,0.13587304687499993E2],[-0.16587792968749994E2,13.6895508],[-0.16745410156249985E2,0.13840429687499991E2],[-16.7338867,13.9611816],[-0.16618115234374983E2,0.14040527343749998E2],[-16.791748,0.14004150390624998E2],[-16.7977539,14.0932617],[-0.16880517578124994E2,0.14208349609374991E2],[-0.16973828124999983E2,0.14403222656249994E2],[-17.0793945,0.14483056640624996E2],[-0.17168066406249977E2,14.640625],[-0.17345800781249977E2,14.7292969],[-17.418457,0.14723486328124991E2],[-0.17445019531249983E2,14.6516113],[-17.5356445,0.14755126953124998E2],[-17.4118164,14.7921875],[-0.17147167968749983E2,0.14922021484374994E2],[-0.16843408203124994E2,0.15293994140625003E2],[-0.16570751953124983E2,0.15734423828125003E2],[-0.16502050781249974E2,0.15917333984374991E2],[-0.16480078124999977E2,0.16097216796875003E2],[-0.16404345703124985E2,16.2249023],[-16.3022949,0.16451318359374994E2],[-16.2390137,0.16531298828125003E2],[-16.1132812,16.5401367],[-0.16074023437499985E2,0.16510449218749994E2],[-0.15768212890624996E2,16.4851074],[-0.15620800781249983E2,16.5065918],[-0.15516699218749977E2,0.16556591796874994E2],[-0.15121435546874975E2,16.6036133],[-0.15090576171874998E2,0.16657373046874994E2],[-14.990625,16.6769043],[-0.14786718749999975E2,16.6458984],[-0.14533740234374989E2,0.16655957031249994E2],[-0.14300097656249989E2,0.16580273437499997E2],[-0.14085644531249983E2,0.16418847656249994E2],[-0.13975048828124983E2,16.3111328],[-0.13968164062499994E2,0.16257226562499994E2],[-0.13868457031249989E2,0.16148144531249997E2],[-0.13756640624999989E2,0.16172509765624994E2],[-0.13684667968749977E2,0.16126904296874997E2],[-0.13555517578124977E2,16.144043],[-0.13409667968749998E2,16.0591797],[-0.13347558593749994E2,15.9734863],[-0.13258007812499983E2,15.7003906],[-0.13206445312499994E2,0.15616894531249999E2],[-0.13142382812499989E2,0.15603320312500003E2],[-0.13079296874999983E2,0.15510449218749997E2],[-0.12994335937499981E2,0.15504882812499998E2],[-0.12862695312499994E2,0.15340429687499991E2],[-0.12858496093749977E2,15.2425293],[-0.12735253906249993E2,15.13125],[-0.12543554687499977E2,0.15039013671874997E2],[-12.4086914,0.14889013671874991E2],[-0.12280615234374977E2,0.14809033203124995E2]]]}}],"_labels":{"SN":"Senegal"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/SO.json b/src/api-umbrella/admin-ui/public/maps/SO.json new file mode 100644 index 000000000..389acbac5 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/SO.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"SO"},"geometry":{"type":"Polygon","coordinates":[[[41.5327148,-1.6953125],[41.521875,-1.57226562],[40.9787109,-0.8703125],[40.9644531,2.81464844],[41.3417969,3.20166016],[41.8839844,3.97773437],[42.0241211,4.13793945],[42.228418,4.20166016],[0.42791601562500006E2,4.29199219],[42.8947266,4.36108398],[43.0160156,4.56333008],[0.43125683593750004E2,4.64448242],[43.5834961,4.85498047],[43.9888672,4.95053711],[44.9116211,4.89990234],[44.9405273,4.91201172],[0.45934960937500016E2,5.9972168],[0.46422949218750006E2,6.49726562],[47.9782227,7.99707031],[0.48938085937500006E2,0.9451757812499991E1],[0.48938574218750006E2,0.11258447265624994E2],[49.3882812,0.11342724609374997E2],[49.6420898,0.11450927734374998E2],[0.50110058593750004E2,11.5292969],[50.4662109,11.7275391],[50.6359375,0.11943798828124997E2],[50.7922852,0.11983691406249987E2],[51.2548828,0.11830712890624993E2],[51.2181641,0.11657666015624997E2],[51.0842773,0.11335644531249997E2],[51.1222656,0.11076757812499991E2],[51.140625,0.10656884765624994E2],[51.0631836,0.10433935546874991E2],[51.1882813,10.4797363],[51.1929687,0.10554638671874997E2],[51.3691406,0.10475244140624994E2],[51.3845703,0.10386523437499989E2],[51.2087891,0.10431054687499993E2],[50.9300781,10.3355469],[50.8984375,10.253125],[50.8737305,0.9924169921874991E1],[50.8328125,0.9710498046874987E1],[50.825,0.9428173828124997E1],[50.6851562,0.9241162109374997E1],[50.6379883,9.10927734],[0.50429785156250006E2,8.84526367],[0.50285742187500006E2,8.50942383],[50.102832,8.19980469],[49.8520508,7.96254883],[49.7612305,7.65952148],[49.5700195,7.29697266],[49.3485352,6.99052734],[0.49234960937500006E2,6.77734375],[49.0926758,6.40786133],[49.0493164,6.17363281],[0.48649023437500006E2,5.49438477],[48.2339844,4.95268555],[47.975293,4.49702148],[47.5114258,3.96826172],[46.8788086,3.28564453],[46.0511719,2.47514648],[0.45826269531250006E2,2.30986328],[44.9202148,1.81015625],[44.3327148,1.3909668],[44.0327148,1.1059082],[43.7175781,0.857861328],[43.4676758,0.621630859],[42.7121094,-0.175683594],[42.5607422,-0.321484375],[42.2189453,-0.737988281],[41.9798828,-0.973046875],[41.7322266,-1.43007813],[41.5327148,-1.6953125]]]}}],"_labels":{"SO":"Somalia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/SR.json b/src/api-umbrella/admin-ui/public/maps/SR.json new file mode 100644 index 000000000..7384524b3 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/SR.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"SR"},"geometry":{"type":"Polygon","coordinates":[[[-54.155957,5.35898437],[-0.54331640624999984E2,5.18740234],[-54.4521973,5.01347656],[-54.4733398,4.91469727],[-54.4711426,4.74931641],[-54.4260742,4.58300781],[-54.4496094,4.48500977],[-54.3962402,4.24140625],[-54.3421387,4.14003906],[-54.3507324,4.05410156],[-0.54255517578124994E2,3.90107422],[-54.112793,3.76943359],[-54.0342285,3.62939453],[-53.9904785,3.58955078],[-54.0095703,3.44853516],[-54.203125,3.13818359],[-54.1707031,2.99360352],[-54.1955078,2.81787109],[-0.54402001953124994E2,2.46152344],[-54.4855469,2.41611328],[-54.5359375,2.34331055],[-54.6618652,2.32753906],[-54.7222168,2.44165039],[-54.8516602,2.43955078],[-0.54968408203124994E2,2.54833984],[-0.54978662109374994E2,2.59765625],[-55.0703125,2.54833984],[-55.1876953,2.54750977],[-55.3439941,2.48876953],[-55.3853516,2.440625],[-55.7305664,2.40615234],[-55.9359375,2.51660156],[-55.9935059,2.49750977],[-56.0203613,2.39277344],[-56.1293945,2.29951172],[-56.1376953,2.2590332],[-56.0736328,2.23676758],[-55.915332,2.03955078],[-55.9296387,1.8875],[-56.0199219,1.84223633],[-56.4828125,1.94213867],[-56.5626953,2.00507812],[-56.7043457,2.03647461],[-0.56761132812499994E2,2.11489258],[-56.8405273,2.27714844],[-56.9314941,2.39536133],[-0.57028955078124994E2,2.6375],[-0.57105126953124994E2,2.76826172],[-57.2098145,2.8828125],[-57.2316406,3.10888672],[-0.57277929687499984E2,3.16430664],[-57.3036621,3.37709961],[-57.5496094,3.35283203],[-57.6467285,3.39453125],[-57.6494629,3.51738281],[-0.57832666015624994E2,3.67597656],[-57.9077148,3.85668945],[-58.0322266,4.00195312],[-58.0544922,4.17192383],[-57.9497559,4.34995117],[-57.924707,4.453125],[-57.8459961,4.66816406],[-57.917041,4.82041016],[-57.8449219,4.92304687],[-57.711084,4.99106445],[-57.4121582,5.00458984],[-57.3310059,5.02016602],[-57.3095703,5.10585937],[-57.2073242,5.21420898],[-57.2796387,5.24677734],[-0.57318554687500004E2,5.33535156],[-57.2479004,5.48525391],[-57.1821289,5.52890625],[-57.1408203,5.64379883],[-57.1360352,5.73720703],[-57.0566406,5.93867187],[-56.9698242,5.99287109],[-56.4660156,5.93774414],[-56.2355957,5.88535156],[-55.9395508,5.79545898],[-0.55897607421874994E2,5.69931641],[-55.9099121,5.89262695],[-55.8281738,5.96166992],[-55.6483398,5.98588867],[-55.3792969,5.95263672],[-55.148291,5.99345703],[-54.8336914,5.98833008],[-54.3561523,5.90986328],[-54.142334,5.85634766],[-54.0541992,5.80791016],[-54.0459473,5.60888672],[-54.0804687,5.50224609],[-54.155957,5.35898437]]]}}],"_labels":{"SR":"Suriname"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/SS.json b/src/api-umbrella/admin-ui/public/maps/SS.json new file mode 100644 index 000000000..fce433b2d --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/SS.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"SS"},"geometry":{"type":"Polygon","coordinates":[[[33.9591797,0.9845263671874987E1],[33.8949219,0.9717626953124991E1],[0.33867773437500006E2,0.9550341796874989E1],[33.890918,0.9462207031249989E1],[34.078125,0.9461523437499991E1],[34.1015625,8.75185547],[34.0945313,8.58222656],[33.9533203,8.44350586],[33.7850586,8.43110352],[33.409375,8.44775391],[33.2810547,8.43725586],[33.2342773,8.39638672],[33.0652344,8.04047852],[0.33012597656250016E2,7.95151367],[33.0146484,7.86855469],[33.2259766,7.76064453],[0.33666113281250006E2,7.67099609],[0.33902441406250006E2,7.50952148],[34.0204102,7.36796875],[34.0642578,7.22573242],[34.2792969,7.00283203],[34.484375,6.89838867],[34.562793,6.77983398],[34.7106445,6.66030273],[34.8380859,6.30014648],[34.9589844,6.04506836],[34.9835938,5.85830078],[35.0819336,5.67314453],[35.2683594,5.49228516],[34.3801758,4.6206543],[0.33568457031250006E2,3.81171875],[0.33489355468750006E2,3.75507812],[33.1541016,3.77470703],[32.9972656,3.88017578],[32.8380859,3.79848633],[32.5347656,3.74995117],[32.3357422,3.70620117],[32.1966797,3.6078125],[32.15625,3.52802734],[32.0994141,3.52919922],[0.31941796875000023E2,3.60756836],[31.8882812,3.70908203],[31.7980469,3.80263672],[31.6289062,3.70146484],[31.4799805,3.68046875],[0.31221972656250014E2,3.7859375],[31.1523438,3.7855957],[30.9293945,3.63408203],[0.30838574218750015E2,3.49072266],[0.30757226562500023E2,3.62421875],[0.30586718750000014E2,3.62421875],[30.5083008,3.83569336],[30.1949219,3.98193359],[0.30021386718750023E2,4.17763672],[0.29870214843750006E2,4.32714844],[0.29779882812500002E2,4.48095703],[0.29676855468750006E2,4.58691406],[0.29552050781250017E2,4.63603516],[0.29469628906250023E2,4.61181641],[0.29384863281250002E2,4.49838867],[29.2249023,4.39189453],[0.29151464843750006E2,4.38818359],[0.28939355468750023E2,4.48706055],[0.28727050781249996E2,4.50498047],[0.28427539062500017E2,4.32416992],[28.1920898,4.35024414],[28.0786133,4.42480469],[27.9806641,4.53208008],[0.27788085937499996E2,4.64467773],[0.27664160156250006E2,4.84599609],[0.27491015625000017E2,4.96757812],[0.27403320312499996E2,5.10917969],[0.27256738281250023E2,5.28964844],[27.2133789,5.61879883],[0.27083398437500023E2,5.77685547],[0.26726367187500017E2,5.99824219],[0.26593652343750023E2,6.0175293],[0.26514257812500002E2,6.06923828],[0.26420507812500002E2,6.27416992],[0.26353320312500017E2,6.34492187],[26.3085938,6.45532227],[0.26361816406249996E2,6.63530273],[0.26169335937500023E2,6.78173828],[0.26036523437500023E2,6.95522461],[0.25888964843750017E2,7.06494141],[0.25380664062500014E2,7.33339844],[25.1901367,7.51933594],[0.25247363281250017E2,7.72456055],[25.2003906,7.80791016],[25.0072266,7.96484375],[0.24853320312500017E2,8.13754883],[0.24736718750000023E2,8.19155273],[24.4560547,8.23945313],[0.24291406250000023E2,8.29140625],[0.24208398437500023E2,8.36914062],[0.24179980468750017E2,8.46113281],[0.24220898437500008E2,8.60825195],[0.24147363281250023E2,8.665625],[24.2135742,8.76782227],[0.24300195312500023E2,8.81425781],[24.5319336,8.88691406],[0.24549414062500006E2,9.00678711],[24.6480469,9.17910156],[0.24662890625000017E2,9.33813477],[0.24696679687500023E2,9.42568359],[24.7826172,9.52734375],[0.24785253906250006E2,9.7746582],[0.24817675781250017E2,9.83959961],[24.9638672,0.9988867187499991E1],[25.0029297,10.0552734],[25.0236328,0.10235791015624995E2],[0.25066992187500006E2,0.10293798828124991E2],[0.25211718750000014E2,0.10329931640624991E2],[25.2851562,0.10318505859374994E2],[25.7980469,0.10420507812499991E2],[25.8852539,10.3460937],[0.25891503906250023E2,10.2027344],[0.26000585937500006E2,10.1234375],[0.26087011718750006E2,0.10018457031249994E2],[26.1695312,0.9965917968749991E1],[0.26551367187500006E2,0.9525830078124995E1],[26.6586914,9.48413086],[26.7631836,9.49921875],[0.26970507812500017E2,9.590625],[27.0742188,0.9613818359374989E1],[27.7998047,9.58789062],[0.27885839843750006E2,0.9599658203124989E1],[27.9962891,9.37880859],[0.28048925781250006E2,9.32861328],[0.28844531250000017E2,9.32607422],[28.8394531,0.9459082031249991E1],[28.9996094,0.9610156249999989E1],[29.2423828,0.9718066406249987E1],[29.4731445,0.9768603515624989E1],[0.29603906250000023E2,9.92138672],[29.6054688,0.10065087890624994E2],[29.6910156,0.10121923828124991E2],[0.30003027343750006E2,0.10277392578124989E2],[30.4746094,0.9978955078124997E1],[0.30739355468750006E2,9.74267578],[31.1544922,0.9770947265624997E1],[0.31224902343750014E2,0.9799267578124997E1],[0.31654882812500006E2,0.10221142578124997E2],[0.31854296875000017E2,0.10479052734374989E2],[0.31933007812500026E2,10.6625],[32.4041016,0.11057763671874994E2],[32.4253906,0.11113964843749997E2],[32.3541992,0.11246923828124991E2],[32.3357422,11.4185547],[32.3499023,0.11580419921874991E2],[32.3353516,11.7160156],[32.0722656,0.12006738281249994E2],[0.32736718750000016E2,0.12009667968749994E2],[32.721875,0.12223095703124997E2],[0.33199316406250006E2,12.2172852],[33.1350586,0.11941601562499997E2],[33.1224609,0.11693164062499989E2],[33.0730469,0.11591503906249995E2],[33.172168,0.10850146484374989E2],[33.1300781,10.7459473],[33.3607422,10.6578125],[0.33459082031250006E2,0.10550830078124989E2],[33.8921875,10.1989746],[33.9568359,10.0541992],[33.9591797,0.9845263671874987E1]]]}}],"_labels":{"SS":"S. Sudan"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/ST.json b/src/api-umbrella/admin-ui/public/maps/ST.json new file mode 100644 index 000000000..2f5c9bee4 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/ST.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"ST"},"geometry":{"type":"MultiPolygon","coordinates":[[[[6.65996094,0.120654297],[6.55683594,0.0473632812],[6.51972656,0.0663085938],[6.46816406,0.22734375],[6.52431641,0.340283203],[6.68691406,0.404394531],[6.74980469,0.325634766],[6.75,0.243457031],[6.65996094,0.120654297]]],[[[7.42382812,1.56772461],[7.33066406,1.60336914],[7.41445313,1.69912109],[7.42382812,1.56772461]]]]}}],"_labels":{"ST":"São Tomé and Principe"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/SV.json b/src/api-umbrella/admin-ui/public/maps/SV.json new file mode 100644 index 000000000..d7b226ec9 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/SV.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"SV"},"geometry":{"type":"Polygon","coordinates":[[[-89.3625977,14.4160156],[-89.1701172,0.14360302734374995E2],[-89.1205078,0.14370214843749991E2],[-88.8459473,14.1247559],[-88.7076172,0.14032080078124991E2],[-88.5125488,0.13978955078124997E2],[-88.482666,13.854248],[-88.4491211,0.13850976562499994E2],[-88.2762207,0.13942675781250001E2],[-88.1510254,0.13987353515625003E2],[-87.9910156,13.8796387],[-87.8022461,0.13889990234374991E2],[-87.715332,0.13812695312499997E2],[-87.7818848,0.13521386718749994E2],[-87.7370117,0.13451367187499997E2],[-87.8383789,0.13385791015625003E2],[-87.8207031,13.2851562],[-87.9308594,13.1806641],[-88.1806641,0.13164013671874997E2],[-88.4171387,0.13213525390624994E2],[-88.5915527,0.13281054687500003E2],[-88.6856445,13.2814941],[-88.4838867,0.13197167968749993E2],[-88.5120117,0.13183935546874991E2],[-88.867041,0.13283251953125003E2],[-89.2776367,0.13478076171875003E2],[-89.5232422,0.13509130859374991E2],[-89.8041992,0.13560107421875003E2],[-89.970459,0.13683154296875003E2],[-0.9009521484374999E2,0.13736523437499995E2],[-90.1047363,13.8347656],[-90.0481445,13.9040527],[-89.8727051,0.14045605468749997E2],[-89.7493652,0.14077001953124991E2],[-89.6712891,0.14182714843749991E2],[-89.547168,0.14241259765625003E2],[-89.5769531,0.14347070312499993E2],[-89.5405273,14.4099121],[-89.3625977,14.4160156]]]}}],"_labels":{"SV":"El Salvador"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/SX.json b/src/api-umbrella/admin-ui/public/maps/SX.json new file mode 100644 index 000000000..bb85eaf84 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/SX.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"SX"},"geometry":{"type":"Polygon","coordinates":[[[-63.1230469,18.0689453],[-63.0111816,18.0689453],[-0.63023046874999984E2,0.18019189453124994E2],[-63.0904297,18.0414063],[-63.1230469,18.0689453]]]}}],"_labels":{"SX":"Sint Maarten"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/SY.json b/src/api-umbrella/admin-ui/public/maps/SY.json new file mode 100644 index 000000000..ec1e075e5 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/SY.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"SY"},"geometry":{"type":"Polygon","coordinates":[[[42.3589844,37.1085937],[42.3500977,0.37060595703124996E2],[42.0839844,36.8260254],[41.7885742,36.597168],[41.4167969,36.5146484],[0.41295996093750006E2,0.36383349609374996E2],[0.41261816406250006E2,36.2724609],[41.2456055,0.36073388671874994E2],[0.41352636718750006E2,0.35809960937499994E2],[41.3541016,0.35640429687499996E2],[41.2483398,35.4274902],[41.2164062,35.2881836],[41.1947266,34.7689941],[0.40987011718750004E2,34.4290527],[40.9350586,34.3865723],[40.6894531,34.3320312],[0.38773535156250006E2,0.33372216796874994E2],[0.38055761718750006E2,32.994873],[36.8183594,0.32317285156249994E2],[0.36479199218750004E2,32.3613281],[36.3720703,32.3869141],[36.2197266,32.4951172],[36.0594727,32.5337891],[35.8947266,0.32713769531249994E2],[35.7873047,0.32734912109374996E2],[35.9134766,32.9496094],[35.8680664,33.0885742],[35.9066406,33.1356934],[0.35837011718750006E2,0.33278222656249994E2],[35.8691406,33.4317383],[36.0222656,33.5625],[35.9423828,33.6675781],[35.968457,33.7324219],[36.0921875,0.33831591796874996E2],[0.36348535156250016E2,33.8270508],[36.2822266,0.33894189453124994E2],[36.2978516,0.33958642578124994E2],[36.4575195,34.0568359],[36.5849609,0.34221240234374996E2],[36.5043945,34.432373],[0.36326269531250006E2,0.34513330078124994E2],[36.4330078,34.6134766],[36.2962891,34.6787109],[36.2635742,0.34632861328124996E2],[35.9762695,0.34629199218749996E2],[0.35899316406250016E2,0.34852099609374996E2],[35.8899414,35.0603027],[35.9430664,35.2238281],[0.35902441406250006E2,35.4207031],[35.7644531,0.35571582031249996E2],[35.8396484,35.8492187],[0.35892675781250006E2,0.35916552734374996E2],[35.9675781,35.9100586],[36.1536133,0.35833886718749994E2],[36.2019531,35.9375488],[36.3475586,36.0035156],[36.3753906,36.1712402],[36.4770508,36.2207031],[36.6367188,36.2339844],[36.6414063,36.2635254],[36.5375,36.4574219],[36.596875,36.7013672],[0.36658593750000016E2,36.8025391],[36.9417969,36.7583984],[37.0662109,0.36652636718749996E2],[37.4363281,36.6433105],[37.7203125,36.7437012],[37.9066406,36.7946289],[38.1916992,36.9015625],[38.44375,36.8622559],[38.6888672,36.7150879],[38.7666016,36.6931152],[39.1083984,0.36680566406249994E2],[39.3566406,36.6815918],[39.6865234,36.738623],[40.0164063,0.36826074218749994E2],[40.4503906,37.0088867],[0.40705664062500006E2,0.37097705078124996E2],[0.40958886718750016E2,0.37109179687499996E2],[41.2646484,37.0693359],[41.5155273,0.37089160156249996E2],[41.8868164,0.37156396484374994E2],[42.0598633,37.2060547],[42.1678711,0.37288623046874996E2],[42.2685547,37.2765625],[42.3589844,37.1085937]]]}}],"_labels":{"SY":"Syria"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/SZ.json b/src/api-umbrella/admin-ui/public/maps/SZ.json new file mode 100644 index 000000000..d791154bf --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/SZ.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"SZ"},"geometry":{"type":"Polygon","coordinates":[[[31.9482422,-0.25957617187500006E2],[32.0605469,-26.0183594],[32.0414063,-26.28125],[32.105957,-0.26520019531249996E2],[32.1128906,-26.8394531],[0.31994726562500006E2,-0.26817480468750006E2],[0.31946093750000014E2,-27.1736328],[31.9583984,-27.3058594],[0.31469531250000017E2,-0.27295507812500006E2],[31.2740234,-0.27238378906250006E2],[0.31063378906250023E2,-0.27112304687499996E2],[0.30883300781249996E2,-26.7923828],[30.7943359,-0.26764257812500006E2],[0.30803320312500002E2,-0.26413476562500005E2],[0.31033300781250006E2,-0.26097753906250006E2],[0.31088085937500008E2,-0.25980664062500008E2],[0.31207324218750017E2,-25.8433594],[0.31415136718750006E2,-25.746582],[31.8714844,-25.9816406],[31.9482422,-0.25957617187500006E2]]]}}],"_labels":{"SZ":"Swaziland"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/TC.json b/src/api-umbrella/admin-ui/public/maps/TC.json new file mode 100644 index 000000000..955a298d9 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/TC.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"TC"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-72.3328125,21.8513672],[-72.2186523,21.7962891],[-72.1498047,0.21804492187500045E2],[-72.1906738,21.7697754],[-72.3354492,0.21758007812499983E2],[-72.3328125,21.8513672]]],[[[-71.6614258,21.7652344],[-71.7217773,0.21790234374999983E2],[-71.8304199,21.790625],[-71.8476562,0.21843457031249983E2],[-71.6683594,0.21833447265624983E2],[-71.6614258,21.7652344]]],[[[-71.8799316,0.21840429687499977E2],[-71.9554687,0.21864404296874994E2],[-72.019043,0.21918261718750017E2],[-72.0106445,21.9504395],[-71.931543,0.21951904296875057E2],[-71.8799316,0.21840429687499977E2]]]]}}],"_labels":{"TC":"Turks and Caicos Is."}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/TD.json b/src/api-umbrella/admin-ui/public/maps/TD.json new file mode 100644 index 000000000..4ab2d11fd --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/TD.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"TD"},"geometry":{"type":"Polygon","coordinates":[[[0.23980273437500017E2,0.19496630859375003E2],[23.9833984,0.15780175781249994E2],[23.9459961,15.7035156],[23.7082031,15.7449707],[23.4580078,15.7139648],[23.1051758,0.15702539062499993E2],[0.22933886718750017E2,0.15533105468749994E2],[0.22969531250000017E2,15.3113281],[22.9323242,15.1621094],[22.7632812,0.14998681640624994E2],[0.22679199218749996E2,0.14851464843749993E2],[0.22670898437499996E2,0.14722460937500003E2],[0.22467773437499996E2,0.14633349609375003E2],[0.22381542968750008E2,0.14550488281249997E2],[22.425,0.14441210937500001E2],[0.22449316406250002E2,0.14284228515625003E2],[0.22528222656250023E2,0.14203222656249991E2],[0.22509960937500008E2,14.1274414],[0.22173144531250014E2,0.13910595703124995E2],[22.1064453,13.7998047],[22.1076172,0.13730322265624991E2],[22.2023438,0.13538085937499998E2],[22.228125,0.13329589843749998E2],[0.22158007812500014E2,0.13215039062499997E2],[21.9902344,0.13113085937499989E2],[21.9077148,13.0009766],[0.21825292968750006E2,0.12790527343749998E2],[21.878125,0.12699365234374994E2],[22.0006836,12.671875],[22.2333984,12.7094727],[0.22352343750000017E2,0.12660449218749987E2],[0.22414453125000023E2,12.5463867],[22.3902344,0.12462988281249991E2],[22.4898437,0.12044726562499987E2],[0.22580957031250023E2,0.11990136718749994E2],[22.5563477,11.6695313],[0.22641015625000023E2,0.11515917968749989E2],[22.7833984,0.11409960937499989E2],[0.22922656250000017E2,0.11344873046874994E2],[0.22937695312500008E2,0.11192041015624994E2],[22.8600586,10.9196777],[22.4938477,0.10996240234374994E2],[22.2359375,10.8941406],[22.15625,0.10826074218749994E2],[22.0431641,0.10822705078124995E2],[21.9648438,0.10736669921874991E2],[21.7714844,10.6428223],[21.706543,0.10574804687499991E2],[21.7257813,0.10366552734374991E2],[21.6327148,10.2382812],[21.5280273,0.10207812499999989E2],[21.3959961,0.10001367187499994E2],[21.2638672,9.97460938],[21.0094727,0.9713232421874991E1],[0.20984179687500014E2,0.9636279296874989E1],[0.20773242187500017E2,0.9405664062499993E1],[0.20342089843750017E2,9.12709961],[0.20072656250000023E2,9.13320312],[0.19953515625000023E2,0.9075146484374997E1],[0.19668359375000023E2,9.02089844],[19.1455078,9.0159668],[19.0478516,8.99501953],[18.8882812,8.88974609],[0.18886035156250017E2,8.83603516],[19.0641602,8.71542969],[0.19108691406250014E2,8.65615234],[18.9064453,8.40507812],[0.18747460937500023E2,8.24379883],[0.18633593750000017E2,8.16772461],[0.18591601562500017E2,8.06079102],[18.4550781,8.03203125],[0.18238867187500006E2,8.02036133],[0.17760839843750006E2,7.97382812],[17.6494141,7.98359375],[17.2469727,7.81298828],[0.17117968750000017E2,7.7019043],[16.890332,7.63369141],[16.7847656,7.55097656],[0.16588964843750006E2,7.74335937],[0.16545312500000023E2,7.86547852],[0.16404394531250006E2,7.77236328],[16.3789062,7.68354492],[0.16030664062500023E2,7.57211914],[0.15957617187500006E2,7.50756836],[0.15845019531250015E2,7.47529297],[15.4800781,7.5237793],[0.15552636718750021E2,7.66450195],[0.15549804687499998E2,7.78789062],[15.4429688,7.85185547],[0.15252343750000023E2,8.32236328],[15.1162109,8.55732422],[0.14860742187500023E2,8.79863281],[0.14732812500000023E2,8.86567383],[0.14332324218750017E2,9.20351562],[0.14177929687500011E2,9.40649414],[0.14004980468750004E2,0.9588720703124991E1],[0.13977246093750011E2,9.69155273],[0.14139746093750004E2,0.9901806640624997E1],[0.14243261718750006E2,9.97973633],[0.14377246093750017E2,0.9985058593749997E1],[0.14597949218750017E2,0.9953076171874997E1],[0.14835839843750023E2,0.9941699218749989E1],[0.15193164062500015E2,0.9981494140624989E1],[15.3200195,9.95429688],[0.15540917968750023E2,0.9960302734374991E1],[0.15654882812500004E2,10.0078125],[15.5319336,10.0884766],[0.15276074218750011E2,0.10357373046874997E2],[0.15200976562500017E2,0.10484521484374993E2],[0.15068652343750015E2,0.10851074218749998E2],[0.15029882812500006E2,11.1136719],[0.15055468750000017E2,0.11368554687499994E2],[0.15121972656250023E2,11.5412598],[0.15078027343750021E2,11.6425781],[15.08125,0.11845507812499989E2],[14.9738281,0.12108349609374997E2],[0.14880664062500015E2,0.12269384765624991E2],[0.14847070312500021E2,0.12502099609374993E2],[14.7612305,12.6556152],[14.6232422,0.12729931640624997E2],[0.14544726562500015E2,0.12820214843749994E2],[0.14516210937500006E2,12.9797363],[0.14461718750000015E2,0.13021777343749989E2],[0.14244824218750011E2,13.0773438],[0.14063964843749998E2,13.0785156],[0.13606347656250023E2,13.7045898],[0.13448242187499998E2,0.14380664062500003E2],[0.13642382812500017E2,0.14630761718749994E2],[13.8071289,0.14966113281250003E2],[0.14367968750000017E2,0.15750146484374994E2],[15.4743164,0.16908398437499994E2],[0.15595507812500017E2,0.18337060546874994E2],[15.7350586,19.9040527],[0.15766210937500004E2,0.19982568359374994E2],[15.9488281,0.20303173828124994E2],[15.9292969,0.20399853515624997E2],[15.668457,20.6723633],[0.15587109375000011E2,0.20733300781249994E2],[0.15540332031250017E2,0.20874902343749994E2],[0.15607324218750023E2,0.20954394531250003E2],[0.15293652343750011E2,0.21411523437499994E2],[0.15181835937500011E2,0.21523388671874997E2],[0.15172265625000021E2,0.21922070312499997E2],[0.15088964843750007E2,22.4183594],[0.14979003906250002E2,22.9961914],[0.15984082031250011E2,0.23445214843749994E2],[0.23980273437500017E2,0.19496630859375003E2]]]}}],"_labels":{"TD":"Chad"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/TF.json b/src/api-umbrella/admin-ui/public/maps/TF.json new file mode 100644 index 000000000..7b2549462 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/TF.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"TF"},"geometry":{"type":"MultiPolygon","coordinates":[[[[69.2824219,-49.0588867],[69.2206055,-49.0667969],[69.1500977,-48.919043],[69.1671875,-48.8829102],[69.36875,-0.48890429687499974E2],[69.3947266,-0.48951171875000014E2],[69.2824219,-49.0588867]]],[[[69.1848633,-49.1095703],[69.3142578,-49.10625],[69.5349609,-48.9743164],[69.5927734,-48.9709961],[69.5873047,-49.0719727],[69.644043,-49.1173828],[69.4362305,-0.49124023437499964E2],[69.4050781,-49.1817383],[69.5423828,-49.2556641],[69.6666016,-49.2649414],[69.8543945,-0.49221582031249945E2],[70.0613281,-49.1360352],[70.2083984,-49.1349609],[70.3202148,-49.0585937],[70.4842773,-49.0838867],[70.5554688,-49.2014648],[70.4850586,-0.49327636718749964E2],[70.3898438,-49.365625],[70.3861328,-0.49433984374999966E2],[70.2976563,-49.4248047],[70.1658203,-49.3429687],[69.915625,-0.49348535156249966E2],[69.7802734,-0.49490136718749945E2],[69.855957,-0.49544042968750006E2],[70.0628906,-49.5893555],[70.0734375,-49.5177734],[70.2477539,-49.5306641],[70.3071289,-49.5834961],[70.2074219,-0.49665039062499964E2],[70.0750977,-0.49708593750000034E2],[69.9189453,-49.6893555],[69.7466797,-49.6017578],[69.6128906,-49.6509766],[69.3527344,-49.5631836],[69.153125,-49.5296875],[69.0859375,-49.6529297],[68.9929688,-0.49704980468750016E2],[68.8147461,-49.6996094],[68.7828125,-0.49651269531249994E2],[68.8720703,-49.4443359],[68.7988281,-49.2316406],[68.8833984,-49.1649414],[68.7695313,-49.065918],[68.8369141,-48.9261719],[68.8320312,-0.48848730468750006E2],[68.9586914,-48.6938477],[69.0572266,-48.6564453],[69.1361328,-48.8610352],[69.0327148,-49.0175781],[69.0521484,-49.0819336],[69.1848633,-49.1095703]]],[[[51.8345703,-46.4399414],[51.696582,-46.428125],[0.51659277343750055E2,-46.3736328],[51.7418945,-46.3268555],[51.8345703,-46.4399414]]]]}}],"_labels":{"TF":"Fr. S. Antarctic Lands"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/TG.json b/src/api-umbrella/admin-ui/public/maps/TG.json new file mode 100644 index 000000000..55b2708f1 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/TG.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"TG"},"geometry":{"type":"Polygon","coordinates":[[[0.900488281,0.10993261718749991E2],[0.821875,0.10752587890624994E2],[0.7875,0.10710253906249987E2],[0.763378906,0.10386669921874997E2],[0.779980469,0.10359570312499997E2],[1.33007812,0.9996972656249993E1],[1.34287109,0.9962939453124987E1],[1.34707031,9.5675293],[1.38574219,0.9361669921874991E1],[1.42431641,0.9285009765624991E1],[1.56630859,0.9137255859374989E1],[1.60019531,9.05004883],[1.60664063,8.55927734],[1.62460937,8.27099609],[1.62470703,6.99731445],[1.53095703,6.99243164],[1.58203125,6.87700195],[1.60292969,6.73808594],[1.57753906,6.68740234],[1.74316406,6.42626953],[1.77792969,6.29462891],[1.6109375,6.25083008],[1.62265625,6.21679688],[1.31064453,6.146875],[1.18720703,6.0894043],[1.18505859,6.14501953],[1.08447266,6.1737793],[0.984960938,6.3203125],[0.912207031,6.32856445],[0.736914063,6.45258789],[0.525585938,6.85092773],[0.523046875,6.93886719],[0.579492188,7.00410156],[0.634765625,7.35366211],[0.509570313,7.43510742],[0.5,7.546875],[0.605175781,7.72822266],[0.58359375,8.14580078],[0.688085938,8.30424805],[0.616210938,8.47963867],[0.415332031,8.65273437],[0.372558594,8.75927734],[0.488769531,8.85146484],[0.460351563,8.97421875],[0.466113281,0.9115332031249991E1],[0.529003906,9.35830078],[0.447558594,0.9480273437499989E1],[0.370996094,9.48554688],[0.259960938,9.42602539],[0.233398438,9.46352539],[0.272753906,0.9620947265624991E1],[0.323925781,0.9687597656249991E1],[0.351855469,0.9924902343749991E1],[0.362695313,0.10236474609374993E2],[0.380859375,0.10291845703124991E2],[0.216015625,0.10390527343749994E2],[0.0892578125,0.10520605468749991E2],[-0.0577148437,10.6306152],[-0.0901855469,0.10715527343749997E2],[-0.0138671875,10.8913574],[0.00942382813,0.11020996093749998E2],[-0.0686035156,11.115625],[0.484179688,0.10991992187499989E2],[0.492675781,0.10954980468749993E2],[0.64296875,0.10983056640624994E2],[0.900488281,0.10993261718749991E2]]]}}],"_labels":{"TG":"Togo"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/TH.json b/src/api-umbrella/admin-ui/public/maps/TH.json new file mode 100644 index 000000000..035b29f77 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/TH.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"TH"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.9966308593749997E2,6.52192383],[99.6066406,6.59682617],[99.6540039,6.71411133],[99.7013672,6.57055664],[0.9966308593749997E2,6.52192383]]],[[[0.9907841796875007E2,7.5918457],[0.9910439453125005E2,7.47128906],[99.0376953,7.54848633],[0.9907841796875007E2,7.5918457]]],[[[98.5919922,7.93393555],[98.5293945,8.10854492],[98.6042969,8.05732422],[98.5919922,7.93393555]]],[[[0.9840908203125005E2,7.90205078],[0.9839843750000003E2,7.82841797],[98.2962891,7.77607422],[98.2623047,7.92607422],[98.3013672,8.13623047],[98.4349609,8.08564453],[0.9840908203125005E2,7.90205078]]],[[[0.9830751953125005E2,0.9051464843749997E1],[0.9830751953125005E2,0.9051464843749997E1],[0.9830751953125005E2,0.9051464843749997E1],[0.9830751953125005E2,0.9051464843749997E1]]],[[[100.070703,9.58603516],[0.10005371093749997E3,9.46142578],[0.9996240234375003E2,9.42163086],[0.9995361328125003E2,0.9581005859374969E1],[100.070703,9.58603516]]],[[[0.10007412109375005E3,9.69667969],[0.10007412109375005E3,9.69667969],[0.10007412109375005E3,9.69667969],[0.10007412109375005E3,9.69667969]]],[[[0.10260644531250003E3,0.11676513671875012E2],[0.10258994140625012E3,0.11572167968749994E2],[102.532813,0.11614941406249997E2],[0.10260644531250003E3,0.11676513671875012E2]]],[[[0.10242675781250003E3,0.11988720703125026E2],[0.10230195312500004E3,11.9808105],[0.10227333984374998E3,0.12119335937499997E2],[0.10231884765624997E3,0.12141650390625017E2],[0.10242675781250003E3,0.11988720703125026E2]]],[[[100.003613,20.3795898],[0.10012246093750005E3,0.20316650390625057E2],[0.10013974609375012E3,0.20245410156250017E2],[0.10031796875000006E3,20.3858887],[0.10051953125000003E3,20.1779297],[0.10054306640625012E3,0.20088671875000074E2],[0.10039765625000004E3,19.7561035],[0.10042011718750004E3,0.19644482421874983E2],[0.10062548828125003E3,0.19499853515625006E2],[0.10074394531250002E3,0.19514746093750034E2],[0.10096650390625003E3,0.19610791015624955E2],[0.10121191406249997E3,19.5483398],[0.10119755859375007E3,0.19327929687500074E2],[101.279883,0.19088916015625045E2],[101.286328,0.18977148437500006E2],[0.10116552734375003E3,0.18618310546874994E2],[101.060449,0.18479003906250057E2],[0.10105058593750002E3,0.18407031250000045E2],[101.1375,18.2868652],[0.10111328125000003E3,0.18033544921874977E2],[0.10090849609375002E3,0.17583886718750023E2],[0.10110517578125004E3,17.479541],[0.10116748046874997E3,17.4990234],[101.413672,17.71875],[101.6875,17.8894043],[0.10177480468750004E3,18.0333984],[0.10194746093750003E3,0.18081494140624983E2],[0.10210146484374998E3,0.18210644531249983E2],[0.10235185546875002E3,0.18045947265625017E2],[102.598242,17.9267578],[0.10266064453124997E3,0.17817968750000034E2],[0.10271757812500002E3,0.17892236328124966E2],[0.10305136718750006E3,18.0285156],[0.10314853515625006E3,0.18221728515625045E2],[0.10327958984375002E3,0.18304980468750017E2],[0.10325175781250002E3,0.18373486328124955E2],[0.10336699218750007E3,18.4233398],[0.10348798828125004E3,0.18418164062499983E2],[0.10379228515625002E3,0.18316503906249977E2],[103.949609,18.3189941],[0.10404873046875005E3,0.18216699218749994E2],[0.10419619140625005E3,0.17988378906250002E2],[104.428125,17.6989746],[0.10465585937500012E3,0.17546728515625006E2],[104.739648,17.4616699],[0.10481601562500012E3,17.300293],[0.10475898437500004E3,17.0771484],[0.10475058593750012E3,0.16647558593750063E2],[0.10481933593750003E3,16.4660645],[0.10494990234375004E3,0.16339941406250006E2],[0.10504716796875007E3,0.16160253906249977E2],[0.10514873046875007E3,16.0935547],[105.40625,0.15987451171875051E2],[0.10539892578124997E3,0.15829882812500015E2],[0.10562207031250003E3,0.15699951171874998E2],[0.10563886718750008E3,0.15585937500000055E2],[0.10557373046875003E3,0.15413232421875037E2],[0.10551318359374997E3,0.15360888671875031E2],[0.10549042968750004E3,0.15127587890625007E2],[0.10554667968750002E3,0.14932470703124961E2],[0.10547558593750001E3,0.14530126953124977E2],[0.10534218750000005E3,0.14416699218750052E2],[0.10516914062500003E3,0.14336083984374966E2],[0.10507412109375004E3,0.14227441406250037E2],[0.10498242187500001E3,0.14289453124999966E2],[0.10496972656249997E3,14.3661133],[0.10477900390625004E3,0.14427832031250004E2],[0.10441162109374997E3,0.14369580078125038E2],[104.227734,14.3955078],[0.10405429687500012E3,0.14362744140624983E2],[0.10381835937500003E3,0.14362158203125034E2],[103.600391,0.14421093749999967E2],[0.10319941406250004E3,0.14332617187499977E2],[103.031055,0.14252539062500006E2],[0.10290927734375006E3,0.14136718750000028E2],[102.728906,0.13841894531250006E2],[0.10254472656250007E3,0.13659960937499974E2],[102.546875,0.13585693359375043E2],[0.10231972656250005E3,0.13539990234375052E2],[102.330762,0.13288232421875009E2],[102.461719,0.13015039062500037E2],[102.499609,0.12669970703125003E2],[0.10262968750000002E3,0.12569921875000048E2],[0.10275566406250002E3,12.4262695],[102.70625,0.12255664062499974E2],[0.10273662109375007E3,12.0897949],[0.10291806640625006E3,0.11732080078124964E2],[0.10279160156250006E3,0.11888623046874983E2],[0.10276298828125002E3,0.12012451171874986E2],[102.594141,0.12203027343749994E2],[0.10254023437500004E3,0.12109228515624975E2],[0.10234316406250005E3,0.12252587890624966E2],[0.10225908203125002E3,0.12394335937499974E2],[0.10222958984375006E3,12.3316406],[102.034375,0.12531884765625023E2],[0.10172363281250003E3,0.12689355468750035E2],[0.10144492187500006E3,0.12618945312499989E2],[0.10109023437500005E3,12.6736328],[0.10095371093750012E3,0.12621240234375023E2],[0.10086328124999996E3,0.12714501953125009E2],[100.896387,0.12818164062499989E2],[0.10090390625000005E3,13.0349121],[0.10094609375000007E3,0.13187255859375043E2],[0.10092626953125001E3,0.13303027343750003E2],[0.10096269531250007E3,13.4319824],[0.10065605468750002E3,0.13521289062499974E2],[100.235645,0.13484472656250018E2],[100.01748,0.13353173828125007E2],[0.9999052734375007E2,13.243457],[0.10008994140625006E3,0.13045654296874972E2],[99.9639648,0.12690039062500006E2],[0.10000566406250007E3,0.12354736328124986E2],[0.9998906250000007E2,0.12170800781249994E2],[99.8371094,0.11936621093749991E2],[99.7987305,11.7487793],[99.7254883,0.11661767578125037E2],[99.6273437,0.11462890625000014E2],[99.5143555,0.11100585937500014E2],[99.4869141,0.10889550781250009E2],[99.2847656,0.10569140625000017E2],[0.9923730468750003E2,0.10388134765624997E2],[0.9916503906250003E2,0.10319824218750027E2],[99.1946289,0.10175439453125009E2],[99.1607422,9.7340332],[99.2882813,0.9414599609374989E1],[0.9925390625000003E2,9.26523438],[99.3938477,9.2137207],[99.7238281,9.31420898],[99.8355469,9.28837891],[99.9046875,9.11289062],[99.9606445,8.67124023],[0.9998955078125007E2,8.58920898],[100.129297,8.42807617],[0.10016347656250005E3,8.50839844],[0.10027939453125006E3,8.26850586],[100.453516,7.44228516],[0.10054521484375002E3,7.2269043],[0.10043935546875005E3,7.28076172],[0.10038037109375003E3,7.54150391],[0.10028378906250005E3,7.55151367],[0.10031738281249997E3,7.7159668],[0.10025664062500002E3,7.77490234],[0.10015820312499997E3,7.728125],[0.10020488281250006E3,7.50053711],[0.10042353515625008E3,7.1878418],[0.10058623046875002E3,7.17597656],[0.10079257812500005E3,6.99467773],[101.017871,6.8609375],[101.301953,6.90830078],[0.10149794921875004E3,6.8652832],[0.10161425781250003E3,6.75395508],[0.10179921875000005E3,6.47460938],[0.10210107421874997E3,6.24223633],[0.10205517578124997E3,6.09667969],[0.10193613281250006E3,5.9793457],[0.10187363281250012E3,5.82529297],[101.790723,5.7793457],[0.10165000000000012E3,5.79599609],[0.10155605468749998E3,5.90776367],[101.257031,5.78935547],[101.190625,5.66875],[101.113965,5.63676758],[0.10098164062500004E3,5.77104492],[101.075586,5.95649414],[0.10105351562500002E3,6.24257812],[0.10087392578124998E3,6.24541016],[100.79375,6.42617188],[100.715625,6.48066406],[0.10062949218750006E3,6.44799805],[100.34541,6.54990234],[0.10026142578125004E3,6.68271484],[0.10017675781250003E3,6.67182617],[0.10011914062499996E3,6.44199219],[0.9986865234375003E2,6.74990234],[0.9969599609375003E2,6.87666016],[99.7203125,7.10620117],[99.5530273,7.21879883],[99.5969727,7.35561523],[99.4351563,7.334375],[99.3585937,7.3722168],[99.3003906,7.56132813],[0.9918339843750007E2,7.71806641],[0.9907763671874997E2,7.71806641],[99.0510742,7.8878418],[98.9739258,7.96279297],[98.7886719,8.05981445],[98.7035156,8.25673828],[0.9857919921875005E2,8.34428711],[0.9849980468750007E2,8.31782227],[98.4209961,8.17822266],[0.9830546875000007E2,8.2262207],[0.9823818359375005E2,8.4230957],[98.2417969,8.76787109],[0.9832597656250007E2,8.96894531],[98.3713867,9.29052734],[0.9849296875000007E2,9.56142578],[98.5619141,9.8375],[0.9870253906250005E2,10.1903809],[0.9876835937500007E2,10.4308594],[98.7572266,0.10660937499999973E2],[0.9902539062500003E2,0.10919970703124989E2],[99.1901367,0.11105273437499989E2],[99.4779297,11.6125],[0.9961474609374997E2,0.11781201171875026E2],[0.9952294921875003E2,0.12089648437499987E2],[0.9946289062499997E2,12.1902344],[99.3942383,0.12473632812500057E2],[99.4050781,0.12547900390625003E2],[99.2198242,12.7397461],[99.1735352,0.12961328125000023E2],[0.9910742187500003E2,0.13103515625000043E2],[99.1761719,0.13233056640625051E2],[0.9917167968750007E2,0.13496923828124975E2],[99.1368164,0.13716699218749993E2],[0.9901464843749997E2,0.13947167968750051E2],[0.9893359374999997E2,0.14049853515625003E2],[98.5700195,0.14359912109375031E2],[0.9824599609375005E2,0.14814746093750044E2],[98.1779297,0.15147412109374969E2],[98.1910156,0.15204101562499972E2],[0.9856523437500007E2,0.15403564453125014E2],[98.5582031,0.15768603515625045E2],[98.5923828,16.0506836],[98.8179688,16.1808105],[98.8882813,0.16351904296875034E2],[0.9883544921875001E2,16.4175781],[98.6892578,16.3054199],[98.478125,0.16732226562500074E2],[98.4388672,0.16975683593750034E2],[98.256543,0.17147656249999983E2],[0.9779296875000003E2,17.68125],[0.9769853515625007E2,17.8335449],[97.7399414,0.17935302734375025E2],[0.9771972656250003E2,0.18037402343750042E2],[97.5993164,0.18302978515624968E2],[97.4507813,0.18359667968750074E2],[97.3739258,18.5179688],[97.4849609,0.18494238281250034E2],[97.7277344,18.5720215],[0.9775400390625005E2,0.18620800781249983E2],[0.9770605468749997E2,0.18931787109374994E2],[0.9780390625000003E2,0.19130468749999977E2],[97.8167969,0.19459960937500057E2],[0.9799121093749997E2,0.19653710937499994E2],[0.9801503906250005E2,0.19749511718749968E2],[98.1110352,0.19762158203124983E2],[98.2390625,0.19690673828124968E2],[98.4938477,0.19701318359375023E2],[98.7606445,0.19771093750000034E2],[98.9166992,19.7729004],[98.9874023,0.19861376953125017E2],[99.0207031,0.20041796875000017E2],[0.9907421875000003E2,0.20099365234375025E2],[99.196875,0.20115136718750023E2],[0.9933789062499997E2,0.20078906250000017E2],[99.5016602,20.1877441],[0.9945888671875005E2,20.3630371],[0.9963867187499997E2,0.20320458984375023E2],[99.7733398,20.3413086],[99.890332,0.20424414062499977E2],[100.003613,20.3795898]]]]}}],"_labels":{"TH":"Thailand"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/TJ.json b/src/api-umbrella/admin-ui/public/maps/TJ.json new file mode 100644 index 000000000..de2a6f382 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/TJ.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"TJ"},"geometry":{"type":"MultiPolygon","coordinates":[[[[70.7016602,39.825293],[70.5595703,0.39790917968749994E2],[70.4828125,39.8827148],[70.6982422,0.39845849609374994E2],[70.7016602,39.825293]]],[[[70.6525391,40.9366211],[70.6525391,40.9366211],[70.6525391,40.9366211],[70.6525391,40.9366211]]],[[[70.6983398,40.6611816],[70.3826172,0.40453515624999966E2],[70.371582,40.3841309],[70.5335937,40.3245117],[70.6027344,40.2141602],[70.653125,40.2011719],[70.9580078,0.40238867187500034E2],[70.9463867,40.1875977],[70.7385742,40.1311523],[70.6443359,0.40083447265624976E2],[70.6241211,39.9989746],[70.5151367,0.39949902343749955E2],[70.4513672,40.0492188],[69.9667969,0.40202246093750034E2],[69.5302734,0.40097314453124966E2],[69.46875,40.020752],[69.4878906,39.9504395],[69.4319336,0.39909765625000034E2],[69.3072266,39.9685547],[69.2291016,0.39761083984375034E2],[69.2802734,0.39665869140625006E2],[69.2976563,39.5248047],[69.4632812,0.39532080078125006E2],[69.5988281,39.5737793],[69.7720703,39.5567383],[70.1368164,39.5575684],[70.2448242,39.542627],[70.3920898,0.39581884765625034E2],[70.6078125,39.5644043],[70.7331055,0.39413281249999976E2],[70.7993164,39.3947266],[71.0048828,39.4118652],[71.0650391,39.4934082],[71.2728516,0.39535302734374966E2],[71.4703125,39.6036621],[71.5173828,39.5538574],[71.5033203,39.4788086],[71.7322266,0.39422998046874994E2],[71.7256836,39.3065918],[71.805957,39.2755859],[72.0427734,0.39352148437500034E2],[72.2299805,39.2075195],[72.3577148,39.3368652],[72.6399414,39.3859863],[72.8724609,0.39360400390625045E2],[73.2349609,39.3745605],[73.4704102,39.4605957],[73.6316406,39.448877],[73.6073242,39.2291992],[73.6904297,39.104541],[73.7956055,39.0021484],[73.7945313,38.9413086],[73.6960938,38.8542969],[73.8016602,38.6068848],[73.8691406,38.5628906],[74.0255859,38.5398438],[74.1313477,38.6611816],[74.2774414,0.38659765625000034E2],[74.5140625,38.6],[74.7450195,38.5100098],[74.8359375,38.4042969],[74.7720703,0.38274755859375006E2],[74.7896484,38.1036133],[74.8908203,37.9257812],[74.9382813,37.7725098],[74.8942383,37.601416],[75.0974609,0.37451269531250034E2],[75.11875,37.3856934],[74.8913086,0.37231640624999955E2],[74.659375,37.3944824],[74.5242188,37.382373],[74.259668,37.4154297],[74.1670898,37.3294434],[73.7496094,37.2317871],[73.6275391,0.37261572265625006E2],[73.7172852,37.3294434],[73.7206055,37.41875],[73.4813477,37.4716797],[73.2111328,37.4084961],[72.8955078,0.37267529296874976E2],[72.7570313,37.1727051],[72.6574219,37.0290527],[72.3587891,36.9829102],[72.1535156,0.36900537109374994E2],[71.9419922,36.7664551],[71.7337891,0.36684033203124955E2],[71.5974609,36.7329102],[71.5308594,0.36845117187499994E2],[71.4329102,37.1275391],[71.5050781,37.6029297],[71.5803711,37.8642578],[71.5519531,37.9331543],[71.3896484,37.9062988],[71.2785156,37.9184082],[71.3327148,0.38170263671875034E2],[71.2558594,0.38306982421875006E2],[71.0521484,38.4178711],[70.8789062,38.4563965],[70.7359375,38.4225586],[70.6158203,38.3344238],[70.4177734,38.0754395],[70.2146484,0.37924414062500055E2],[70.2549805,37.7653809],[70.2514648,37.6641602],[70.1198242,37.5435059],[69.940625,37.600293],[69.6257813,37.594043],[69.4920898,37.5530762],[69.4201172,0.37486718749999966E2],[69.3992188,37.3993164],[69.4296875,0.37290869140625034E2],[69.4144531,37.2077637],[69.2648437,37.1083984],[68.9604492,37.3250488],[68.8553711,37.3168457],[68.8237305,37.2707031],[68.6691406,0.37258398437500006E2],[68.5464844,37.1834473],[68.2995117,37.0884277],[68.2609375,37.0130859],[68.2121094,37.0215332],[68.0677734,0.36949804687500006E2],[67.9580078,0.36972021484375006E2],[67.8344727,37.064209],[67.7589844,0.37172216796875034E2],[67.7980469,0.37244970703125006E2],[67.8143555,37.4870117],[67.8635742,37.5707031],[68.0109375,37.7209473],[68.1740234,37.928418],[68.2365234,0.37959667968749955E2],[68.3412109,38.1167969],[68.3331055,38.237793],[68.1441406,38.3831055],[68.087207,38.4735352],[68.0478516,38.6692871],[68.1485352,38.890625],[68.1035156,38.9620117],[67.9595703,38.9929199],[67.7685547,38.9822266],[67.6765625,39.0084961],[67.6672852,39.1091797],[67.6165039,39.150293],[67.4003906,39.1966797],[67.3496094,39.2420898],[67.4261719,39.4655762],[67.5424805,39.5576172],[67.719043,39.6213867],[68.0771484,39.5641602],[68.3990234,39.5288574],[68.4632812,39.5367187],[68.5861328,39.6349609],[68.6389648,39.8388672],[68.7352539,39.8362305],[68.777832,0.39904199218749966E2],[68.86875,39.9074707],[68.7894531,0.40013330078124994E2],[68.8046875,40.0503418],[68.9556641,40.0713379],[68.9268555,40.1363281],[68.6397461,40.1291992],[68.6525391,0.40182666015625045E2],[68.9517578,40.2226074],[69.2283203,40.1875977],[69.2749023,40.1980957],[69.2195313,40.2881348],[69.3041992,40.3273926],[69.20625,40.5665527],[69.3139648,40.6347656],[69.309375,40.7239258],[69.4138672,40.797168],[69.628418,0.40679052734375006E2],[69.7128906,40.6569824],[70.1363281,0.40820410156250034E2],[70.2920898,40.8916992],[70.3726563,41.0276367],[70.4415039,41.0234375],[70.6573242,0.40839648437500045E2],[70.6391602,40.7785645],[70.7509766,40.7395996],[70.6983398,40.6611816]]]]}}],"_labels":{"TJ":"Tajikistan"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/TK.json b/src/api-umbrella/admin-ui/public/maps/TK.json new file mode 100644 index 000000000..3b9b0a28a --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/TK.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"TK"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-171.186426,-9.35546875],[-171.188623,-9.35830078],[-171.200049,-0.9344726562499957E1],[-0.17120444335937503E3,-0.9333300781250015E1],[-0.17119443359375003E3,-9.33876953],[-171.186426,-9.35546875]]],[[[-0.17247915039062502E3,-8.58076172],[-0.17248369140624996E3,-8.58291016],[-172.498682,-8.54794922],[-0.17248725585937498E3,-8.55615234],[-0.17247915039062502E3,-8.58076172]]]]}}],"_labels":{"TK":"Tokelau"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/TL.json b/src/api-umbrella/admin-ui/public/maps/TL.json new file mode 100644 index 000000000..bf5a5eb03 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/TL.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"TL"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.12431933593750003E3,-0.9413769531249983E1],[0.12409013671875009E3,-9.41640625],[124.036328,-0.9341601562500031E1],[0.12419814453125005E3,-0.9256152343750031E1],[124.444434,-0.9190332031250023E1],[0.12441298828124998E3,-9.31435547],[0.12431933593750003E3,-0.9413769531249983E1]]],[[[0.12729609375000004E3,-8.42451172],[0.12711455078125007E3,-8.58359375],[0.12691523437500004E3,-8.71523437],[126.66543,-8.78203125],[0.12648691406250012E3,-8.91269531],[0.12638251953125004E3,-8.95761719],[126.164258,-8.99667969],[0.12594609375000007E3,-9.12392578],[0.12584033203125004E3,-9.13017578],[125.408008,-0.9275781250000023E1],[125.068164,-0.9511914062499995E1],[0.12496826171874997E3,-9.29423828],[0.12497753906250003E3,-9.19492187],[0.12510048828124998E3,-0.9189843750000021E1],[0.12514941406250003E3,-9.12294922],[0.12510039062500007E3,-9.00400391],[0.12497324218750012E3,-0.9064257812500017E1],[0.12492226562500005E3,-8.94248047],[0.12502695312500012E3,-8.85908203],[125.178027,-8.64785156],[0.12538183593749997E3,-8.57539062],[0.12580429687500005E3,-8.4921875],[0.12617285156249996E3,-8.48896484],[0.12661972656250006E3,-8.45947266],[0.12696640625000012E3,-8.31572266],[0.12721484374999997E3,-8.37294922],[0.12729609375000004E3,-8.42451172]]],[[[0.12564609375000005E3,-8.13994141],[0.12557949218749998E3,-8.31181641],[0.12550712890625007E3,-8.27509766],[0.12564609375000005E3,-8.13994141]]]]}}],"_labels":{"TL":"Timor-Leste"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/TM.json b/src/api-umbrella/admin-ui/public/maps/TM.json new file mode 100644 index 000000000..e6474919d --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/TM.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"TM"},"geometry":{"type":"MultiPolygon","coordinates":[[[[53.1095703,0.38803076171875006E2],[53.0458984,38.8972168],[53.0185547,39.0527344],[53.0551758,39.0379395],[53.1095703,0.38803076171875006E2]]],[[[58.7299805,42.6761719],[58.9308594,42.5402832],[0.59123144531250006E2,0.42523779296875034E2],[0.59199121093749994E2,42.4816895],[59.2765625,42.3561523],[59.4510742,42.2995117],[59.8583008,42.295166],[60.0060547,0.42190820312499966E2],[59.9625977,0.41954394531250045E2],[0.60106933593749964E2,41.9074219],[60.1920898,41.8344238],[60.1085937,0.41792675781249955E2],[60.0755859,0.41700537109375006E2],[60.1379883,41.5941406],[60.06875,0.41476220703124966E2],[0.60089648437500074E2,41.3994141],[0.60454980468749994E2,0.41221630859374955E2],[60.7548828,0.41245751953124994E2],[61.3289063,41.1951172],[61.3875,0.41252148437499955E2],[0.61496972656249994E2,0.41276074218749955E2],[61.6445313,0.41239843750000034E2],[61.7999023,0.41163427734375006E2],[61.9535156,0.41030615234375034E2],[0.62095019531250074E2,40.6833008],[62.1884766,40.5412109],[62.2980469,0.40467480468749976E2],[62.375,40.3320801],[62.4416016,40.0362305],[62.4832031,39.9756348],[62.6506836,0.39858496093750006E2],[63.5060547,0.39377099609374966E2],[63.7208008,39.1881348],[64.162793,38.9536133],[64.3099609,38.9772949],[64.6599609,38.7360352],[64.8207031,0.38672460937500034E2],[65.0766602,38.5394531],[65.3996094,38.3488281],[65.6128906,38.2385742],[65.7285156,38.2263672],[65.8571289,38.26875],[66.1731445,38.1666992],[66.3897461,0.38050927734374994E2],[66.5745117,38.010791],[66.6292969,37.9320313],[66.5255859,0.37785742187500034E2],[66.5113281,37.5991699],[66.5222656,37.3484863],[66.471875,37.3447266],[66.1083984,0.37414746093749955E2],[65.7650391,37.5691406],[65.6412109,37.4678223],[65.5549805,37.2511719],[65.0896484,0.37237939453124994E2],[64.8163086,37.1320801],[64.6025391,0.36554541015625034E2],[64.5110352,36.3406738],[64.3580078,36.2260742],[64.0921875,0.36112695312499994E2],[64.009668,36.0121094],[63.8625,0.36012353515624994E2],[0.63301660156250044E2,35.8583984],[63.1789063,35.8584473],[63.1085938,35.8187012],[0.63169726562500074E2,35.678125],[63.0841797,35.5680664],[63.0566406,35.4458008],[62.7226563,35.2713379],[0.62610546875000104E2,35.2331543],[62.4628906,0.35251367187500016E2],[62.3078125,35.1708008],[62.252832,35.2502441],[61.9838867,0.35443701171875034E2],[61.7197266,35.4194336],[61.5427734,0.35457861328125006E2],[61.3447266,35.6294922],[61.2620117,35.6195801],[61.2355469,35.7055664],[61.2521484,35.867627],[61.1529297,0.35976757812500004E2],[61.2124023,0.36099121093749964E2],[0.61160351562500104E2,0.36432714843750006E2],[61.1699219,36.5722656],[61.1196289,36.6425781],[60.3413086,36.6376465],[60.062793,36.9628906],[59.9486328,37.0416016],[59.562207,0.37178906249999955E2],[59.3673828,0.37333740234374964E2],[59.3017578,37.5106445],[58.8154297,0.37683496093749994E2],[58.6501953,37.6515625],[58.5504883,37.6881836],[58.4357422,37.6385254],[58.2616211,0.37665820312500045E2],[0.58108789062499994E2,0.37783056640625034E2],[57.7105469,37.9052734],[57.4238281,0.37947705078125004E2],[57.3357422,37.9899414],[57.3314453,38.0893066],[57.1935547,0.38216406250000034E2],[56.9066406,0.38213037109374966E2],[56.7746094,38.2500488],[56.440625,0.38249414062499994E2],[0.56324121093750044E2,38.1911133],[0.56296972656250006E2,0.38094824218750034E2],[56.2288086,38.0733887],[55.578418,0.38099755859374994E2],[55.3808594,0.38051123046875034E2],[0.55075585937499994E2,37.9024902],[54.8486328,37.7226562],[0.54745214843750006E2,0.37501904296874955E2],[54.2998047,0.37353613281250034E2],[54.1916016,37.3324707],[53.9141602,37.3435547],[53.8478516,0.37669580078124994E2],[0.53823535156250074E2,37.9279297],[0.53854101562500006E2,38.2856445],[53.8400391,38.5149414],[0.53885351562500055E2,38.8640625],[53.8686523,38.9492676],[0.53724121093749964E2,39.1030762],[53.7045898,39.2095703],[53.6175781,39.2159668],[53.475,39.3057129],[0.53336328125000044E2,39.3408203],[53.2033203,39.3167969],[53.1566406,39.2649902],[53.1248047,39.4320801],[53.2356445,0.39608544921874966E2],[53.3896484,39.5364258],[53.603125,0.39546972656250034E2],[53.5824219,39.6074219],[53.4722656,39.6687988],[53.4504883,39.7485352],[53.4873047,39.909375],[0.53404199218749994E2,39.9603516],[52.9875,39.9875977],[52.9521484,39.895459],[53.0355469,39.7744141],[52.8982422,39.9125],[52.8046875,0.40054003906250045E2],[0.52744433593750074E2,40.2197754],[52.7336914,40.3987305],[0.52849902343750074E2,0.40685644531250006E2],[0.52943457031250006E2,41.0380859],[53.0595703,0.40889746093750034E2],[53.1452148,40.8249512],[53.3329102,40.7827148],[53.5203125,40.8310547],[53.6152344,0.40818505859374994E2],[0.53763769531250055E2,40.6656738],[53.8700195,40.6486816],[54.1929687,40.7204102],[54.3773438,0.40693261718749966E2],[54.3194336,40.8345703],[54.3744141,40.8713867],[54.5470703,40.8322754],[0.54710058593750006E2,40.8911133],[54.7037109,0.41071142578125034E2],[54.5921875,41.1935547],[54.2845703,0.41363720703124955E2],[0.54094824218750006E2,41.5193848],[53.9538086,41.868457],[0.53846484375000074E2,42.0911621],[0.53624902343750044E2,0.42136376953124994E2],[0.53284960937500074E2,42.0818359],[53.1641602,42.0937988],[52.9700195,0.41976220703125044E2],[52.8148437,0.41711816406249994E2],[52.8834961,0.41652539062500004E2],[0.52830175781250006E2,0.41341894531250034E2],[52.8618164,0.41210058593750006E2],[52.609375,0.41529443359374966E2],[52.4938477,0.41780371093750034E2],[52.696875,0.41944384765625045E2],[52.8705078,42.0605957],[53.0558594,42.1477539],[53.2500977,42.2058594],[0.53685351562500074E2,42.296875],[53.9263672,42.3297852],[54.1209961,42.3352051],[54.271875,42.2799805],[54.6779297,0.42078222656250034E2],[54.9037109,41.9190918],[54.9523438,41.8100098],[55.2496094,0.41458105468750006E2],[55.434375,0.41296289062499994E2],[55.5452148,41.2627441],[0.55934960937499994E2,0.41324121093749966E2],[56.7736328,0.41287988281249994E2],[57.0179688,41.2634766],[57.1188477,41.350293],[57.0181641,41.4505859],[56.9640625,41.856543],[57.1135742,41.9571289],[0.57228808593750074E2,42.0844727],[0.57381738281250044E2,42.1562988],[0.57686132812500055E2,42.1647949],[0.57814257812500074E2,42.1898438],[57.9234375,42.3352051],[57.9457031,0.42420019531250034E2],[58.0289062,42.4876465],[58.234082,42.4477051],[58.3272461,42.3989258],[58.3970703,42.2924805],[58.4858398,42.3168457],[58.2886719,0.42527294921874955E2],[58.1515625,0.42628076171874966E2],[0.58259667968750044E2,0.42688085937500034E2],[58.4771484,42.6628418],[58.5890625,0.42778466796874966E2],[58.7299805,42.6761719]]]]}}],"_labels":{"TM":"Turkmenistan"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/TN.json b/src/api-umbrella/admin-ui/public/maps/TN.json new file mode 100644 index 000000000..f401e90c8 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/TN.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"TN"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.10957617187500063E2,33.7220703],[10.8574219,33.6871582],[10.7220703,0.33738916015624994E2],[10.7452148,33.8886719],[0.10921972656250006E2,33.8931152],[0.11037597656250028E2,0.33785058593749994E2],[0.10957617187500063E2,33.7220703]]],[[[0.11278027343750068E2,0.34753808593749994E2],[0.11123632812500063E2,34.6816895],[0.11254882812500057E2,34.8203125],[0.11278027343750068E2,0.34753808593749994E2]]],[[[9.78398438,37.2114258],[0.9830273437499983E1,37.1353516],[0.9875585937499975E1,37.2541504],[0.10087402343750057E2,37.2512695],[0.10196386718750063E2,0.37205859375000045E2],[0.10188769531250017E2,37.0338867],[0.10334082031250034E2,36.8653809],[0.10293261718750074E2,36.7814941],[0.10412304687499983E2,36.7318359],[0.10571289062500057E2,36.8794434],[0.10766210937500063E2,0.36930273437500034E2],[0.10951367187500038E2,37.0592773],[0.11053906250000068E2,37.0725098],[0.11126660156250038E2,0.36874072265625045E2],[0.10967187500000051E2,36.7430176],[0.10798144531249989E2,0.36493115234374955E2],[0.10642382812500074E2,0.36419628906250004E2],[0.10525683593749989E2,0.36323339843750006E2],[0.10476562500000028E2,0.36175146484375006E2],[0.10505761718750023E2,36.0324219],[0.10590820312500028E2,35.8872559],[11.0042969,35.6338379],[0.11043261718750017E2,35.3351074],[0.11120117187500057E2,35.2402832],[10.8662109,34.8843262],[10.690918,34.6784668],[0.10534863281250011E2,0.34544726562500045E2],[0.10200390625000068E2,34.3460449],[10.0648438,34.2116211],[0.10049023437500066E2,0.34056298828124994E2],[0.10158984375000072E2,0.33850048828125004E2],[0.10305273437500034E2,33.7282715],[0.10454296875000011E2,33.6625],[0.10713183593750017E2,33.6890137],[0.10722753906250006E2,33.5144043],[10.8984375,33.5336914],[0.10958007812500057E2,33.6263184],[0.11084570312500006E2,33.5628906],[0.11150292968750051E2,0.33369238281250006E2],[0.11269921875000023E2,33.2863281],[11.2026367,33.2492187],[11.5045898,0.33181933593750045E2],[0.11467187500000051E2,32.9657227],[0.11453906250000017E2,32.6425781],[0.11533789062500034E2,32.5249512],[0.11504980468750034E2,32.4136719],[0.10826367187500066E2,0.32080664062500034E2],[10.6088867,0.31929541015624977E2],[10.4757813,0.31736035156249983E2],[0.10306054687500021E2,0.31704833984375025E2],[0.10114941406250068E2,31.4637695],[10.2433594,31.0321289],[10.2560547,30.8649414],[0.10216406250000063E2,30.7832031],[9.89501953,0.30387304687500034E2],[9.51875,30.2293945],[9.04404297,0.32072363281250034E2],[8.33339844,32.5436035],[8.30419922,32.6962891],[8.2109375,32.926709],[8.07558594,0.33089062499999955E2],[7.87724609,33.1721191],[7.73134766,33.2685059],[7.50019531,33.8324707],[7.51386719,0.34080517578124955E2],[7.74853516,34.2544922],[7.83828125,0.34410302734374994E2],[8.1234375,34.563916],[8.24560547,34.734082],[8.27685547,34.9794922],[8.39423828,35.2038574],[8.31640625,35.403125],[8.31806641,0.35654931640624994E2],[8.24570313,0.35870556640624955E2],[8.34873047,0.36367968750000045E2],[8.20878906,36.4951172],[8.36962891,36.6325195],[8.44423828,36.7607422],[8.60126953,36.8339355],[8.5765625,0.36937207031250004E2],[8.82353516,36.9976074],[0.9141992187500023E1,37.1946289],[0.9687988281250055E1,37.3403809],[0.9838476562500063E1,37.3089844],[9.78398438,37.2114258]]]]}}],"_labels":{"TN":"Tunisia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/TO.json b/src/api-umbrella/admin-ui/public/maps/TO.json new file mode 100644 index 000000000..500e13b00 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/TO.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"TO"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-0.17491313476562502E3,-21.3004883],[-0.17491865234374998E3,-0.21450585937500037E2],[-0.17497294921875002E3,-0.21349804687500026E2],[-0.17491313476562502E3,-21.3004883]]],[[[-0.17516191406249996E3,-0.21169335937500023E2],[-0.17507817382812496E3,-0.21129003906249977E2],[-0.17515659179687492E3,-0.21263671874999968E2],[-0.17533544921874997E3,-21.1577148],[-0.17536235351562496E3,-21.1068359],[-0.17531806640624998E3,-0.21068261718750037E2],[-0.17530043945312494E3,-21.1133789],[-0.17522539062499993E3,-21.11875],[-0.17516191406249996E3,-0.21169335937500023E2]]],[[[-173.953516,-0.18639355468750008E2],[-0.17399130859374998E3,-18.6986328],[-0.17406914062500002E3,-18.6402344],[-174.002441,-0.18570703124999966E2],[-173.921875,-18.5885742],[-173.953516,-0.18639355468750008E2]]]]}}],"_labels":{"TO":"Tonga"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/TR.json b/src/api-umbrella/admin-ui/public/maps/TR.json new file mode 100644 index 000000000..8b906b75b --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/TR.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"TR"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.25970019531250045E2,40.1363281],[0.25740234375000057E2,40.1054688],[25.740918,40.1962891],[25.9183594,40.2379883],[0.25970019531250045E2,40.1363281]]],[[[0.35114062500000074E2,41.9569824],[35.1220703,41.8911133],[0.35297753906249994E2,41.7285156],[0.35558007812499994E2,41.6340332],[0.35919824218749994E2,0.41713720703125034E2],[36.0517578,41.6825684],[36.1791992,41.4265625],[36.278418,0.41336132812500004E2],[0.36509667968749994E2,41.2625],[0.36647070312500006E2,41.3525391],[36.7777344,41.3634766],[36.9919922,41.2753906],[0.37066210937500074E2,41.1844238],[37.430957,0.41114111328125006E2],[37.765625,41.0789063],[0.37910058593749994E2,0.41001904296874955E2],[38.3810547,40.9245117],[38.5569336,40.9365234],[38.8521484,41.0176758],[0.39426367187500006E2,41.1064453],[39.8079102,0.40982519531250006E2],[40.128418,40.9430176],[40.2652344,40.9613281],[40.6875,41.1074219],[40.8195313,41.1902344],[40.9594727,0.41211621093749976E2],[41.4143555,41.4236328],[0.41510058593750074E2,41.5174805],[0.41823535156250074E2,41.432373],[41.9257813,41.4956543],[42.2111328,0.41486718749999966E2],[42.4664062,41.4398438],[42.5673828,41.5592773],[0.42787890625000074E2,41.5637207],[0.43171289062499994E2,41.2879395],[43.2054688,41.1991699],[43.4333984,41.1555176],[43.4552734,41.0646973],[43.6316406,0.40929003906250045E2],[0.43722656249999964E2,40.7195312],[0.43667871093749994E2,0.40574072265625034E2],[43.5693359,40.482373],[43.7098633,40.1665039],[43.6662109,40.1263672],[44.0053711,40.0141113],[44.2892578,0.40040380859375006E2],[44.3996094,0.39995751953124966E2],[0.44733789062499994E2,39.7464844],[0.44782128906249994E2,39.6510742],[44.5871094,39.7685547],[0.44455957031249994E2,39.666748],[44.3893555,39.4221191],[44.0232422,39.3774414],[44.0791016,0.39218310546875045E2],[44.1780273,39.1448242],[44.1445312,38.9943848],[44.2716797,38.8360352],[44.2570312,38.7006348],[44.3196289,0.38374707031249955E2],[44.4308594,0.38356787109375034E2],[0.44329394531250074E2,0.38109277343749966E2],[44.2113281,0.37908056640625006E2],[44.3362305,37.8717773],[44.5612305,37.7446289],[0.44574023437500074E2,37.4354004],[44.7941406,37.2903809],[44.730957,37.1652832],[0.44605957031249964E2,37.1760254],[44.2818359,36.9780273],[44.2016602,37.0518066],[0.44208398437499994E2,37.2026367],[44.1144531,37.3018555],[44.0131836,0.37313525390625045E2],[43.8364258,0.37223535156249994E2],[43.5158203,0.37244531250000016E2],[43.0924805,37.3673828],[0.42936621093750006E2,37.3247559],[42.7746094,37.371875],[42.4558594,0.37128710937500045E2],[42.3589844,37.1085937],[0.42268554687499964E2,37.2765625],[42.1678711,37.288623],[42.0598633,37.2060547],[41.5155273,37.0891602],[41.2646484,37.0693359],[40.9588867,37.1091797],[40.7056641,37.0977051],[40.4503906,37.0088867],[0.40016406250000074E2,36.8260742],[39.6865234,36.738623],[39.3566406,0.36681591796874976E2],[38.7666016,36.6931152],[38.44375,36.8622559],[38.1916992,36.9015625],[0.37436328125000074E2,36.6433105],[0.37066210937500074E2,0.36652636718750045E2],[36.9417969,0.36758398437500006E2],[36.6585938,36.8025391],[36.596875,36.7013672],[36.5375,36.4574219],[36.6367187,36.2339844],[36.3753906,0.36171240234375034E2],[0.36347558593749994E2,0.36003515625000034E2],[36.2019531,35.9375488],[36.1536133,35.8338867],[35.8926758,35.9165527],[35.9569336,0.35998144531250006E2],[35.8109375,36.3098633],[35.8828125,0.36406347656250034E2],[36.1884766,36.6589844],[36.1800781,0.36807226562500006E2],[36.0489258,36.9105957],[35.6611328,36.7243164],[35.5374023,36.5970215],[0.35393164062500006E2,36.5751953],[35.1761719,0.36634863281250055E2],[34.8112305,0.36799267578124976E2],[0.34601367187500074E2,36.7844727],[34.2996094,36.6041992],[34.0234375,36.3407715],[0.33694726562499994E2,36.1819824],[0.33099511718749994E2,36.1029785],[32.9294922,36.0957031],[0.32794824218749994E2,36.0358887],[0.32533789062500006E2,36.1007324],[32.3777344,36.1836426],[32.1305664,0.36449121093749966E2],[32.0219727,36.5353027],[31.7779297,36.612793],[0.31352539062499968E2,36.8010742],[0.30950292968750002E2,36.8486816],[30.644043,0.36865673828125004E2],[30.5820312,36.797168],[30.5584961,0.36525830078124955E2],[0.30483593750000043E2,0.36310400390625034E2],[30.3873047,36.2432617],[30.2316406,36.3073242],[30.0832031,0.36249365234375034E2],[29.6890625,36.1566895],[0.29348339843750043E2,36.2588379],[0.29143261718750008E2,36.3972168],[0.29038281250000043E2,0.36693457031250006E2],[0.28895898437500076E2,36.673584],[0.28717675781249994E2,36.7008789],[28.4835938,0.36803808593750006E2],[0.28303710937500053E2,0.36811962890624976E2],[0.28195605468750045E2,36.6863281],[28.0194336,36.6344727],[0.28083984375000057E2,36.7514648],[0.27803808593749974E2,36.7364746],[0.27655859375000034E2,36.6746094],[0.27453906250000017E2,36.7121582],[27.6308594,36.7866699],[27.9344727,36.8092773],[0.28242382812500068E2,37.0290527],[0.27668359375000023E2,0.37007421875000034E2],[0.27348925781250045E2,37.0195801],[0.27262988281250045E2,36.9765625],[0.27249707031249983E2,37.0791504],[0.27535058593750048E2,37.1638672],[0.27520117187500006E2,37.2491211],[0.27376269531250017E2,37.3407227],[0.27219238281249996E2,37.3891602],[0.27203906250000074E2,37.4914062],[0.27077832031250065E2,0.37687695312499955E2],[27.2244141,0.37725439453125006E2],[0.27232421875000025E2,0.37978662109374994E2],[26.9438477,38.0628906],[26.6828125,0.38198339843750006E2],[0.26582421875000023E2,0.38149267578125034E2],[0.26290722656250008E2,38.2771973],[26.4296875,38.440625],[26.377832,0.38624169921874966E2],[0.26513574218750023E2,38.6294922],[0.26586523437500063E2,0.38557031249999966E2],[0.26595019531250017E2,38.4186035],[26.6742188,38.3357422],[26.6963867,38.4053711],[0.26861425781250034E2,38.3729492],[27.0986328,0.38415722656249955E2],[26.9704102,0.38447851562500034E2],[26.837793,38.5575684],[26.7636719,0.38709619140624966E2],[0.26909179687499968E2,38.7757813],[0.27013671875000057E2,38.8868652],[26.8662109,38.9229492],[0.26808300781250036E2,39.013916],[0.26853613281250034E2,39.115625],[26.6818359,39.2922363],[0.26910937500000074E2,39.517334],[26.8270508,39.5628906],[0.26113085937500074E2,39.4673828],[0.26154687500000023E2,39.6566406],[26.1498047,39.8728516],[26.1813477,39.9900879],[0.26313378906250023E2,40.025],[0.26475390625000074E2,40.1972656],[0.26738085937500045E2,40.4002441],[27.0121094,40.3963379],[27.1216797,40.4523438],[27.2845703,40.4556152],[0.27332617187500006E2,40.3759277],[27.4755859,0.40319921875000034E2],[0.27728027343749996E2,40.3288086],[27.8485352,0.40381738281250016E2],[0.27731835937500076E2,40.4814941],[0.27989550781250074E2,40.4894531],[27.9625977,40.369873],[28.2890625,40.4030273],[28.6302734,40.3764648],[0.29007128906249985E2,0.40389746093750034E2],[0.29055175781250025E2,0.40424169921875034E2],[0.28787890625000017E2,40.5340332],[0.28958007812500025E2,40.6305664],[0.29507617187500017E2,40.7083984],[0.29844921875000036E2,40.7380859],[0.29800585937500017E2,0.40760156250000016E2],[29.3647461,40.8092773],[0.29113867187499977E2,40.9378418],[0.29045507812500002E2,41.0075684],[29.1481445,0.41221044921875034E2],[0.29322265624999968E2,0.41227734374999955E2],[0.29919335937500048E2,0.41150830078125004E2],[30.3449219,0.41196923828124994E2],[30.8100586,41.0848633],[0.31254882812499968E2,41.1076172],[31.3466797,41.1579102],[31.4580078,41.3200195],[32.0864258,41.589209],[32.3064453,41.7295898],[32.5421875,41.8063965],[32.9466797,0.41891748046874966E2],[33.3813477,42.0175781],[34.1929687,41.9636719],[34.7504883,41.9568359],[0.35006445312500006E2,42.0632813],[35.1548828,42.0275391],[0.35114062500000074E2,41.9569824]]],[[[0.27362890625000034E2,42.0250488],[27.5348633,41.9208008],[0.27879199218750074E2,41.9866211],[0.28014453125000017E2,41.969043],[27.9873047,0.41854882812500016E2],[28.050293,0.41729150390624966E2],[28.1978516,41.5544922],[28.3463867,41.4663574],[28.9467773,41.2483887],[0.29057226562500002E2,41.2297363],[28.95625,41.0082031],[28.7803711,40.9741699],[0.28294921875000025E2,41.0714844],[0.28172167968750074E2,41.0807129],[0.27925195312500023E2,40.9905762],[0.27747363281250045E2,41.0132812],[27.4994141,40.9731445],[27.4301758,0.40839941406250006E2],[0.27258007812499983E2,0.40687353515625006E2],[0.26772070312500034E2,40.4980469],[0.26467968750000068E2,40.2614746],[0.26329980468750023E2,0.40123388671875034E2],[0.26202734375000034E2,40.0753906],[26.2538086,40.3146973],[0.26447460937500068E2,40.4450195],[0.26720312500000063E2,40.5442383],[0.26792089843750034E2,0.40626611328124994E2],[26.1054688,40.6113281],[26.0389648,0.40726757812499955E2],[0.26109179687500074E2,0.40749658203124994E2],[0.26331054687500057E2,40.9544922],[0.26330664062499977E2,41.2387695],[26.6249023,0.41401757812499994E2],[0.26581347656250074E2,41.6012695],[0.26320898437500034E2,41.7165527],[26.3603516,41.8015625],[26.5114258,41.8263672],[26.615332,0.41964892578125045E2],[0.26884863281250006E2,41.9918457],[27.0117188,42.0586426],[0.27294921875000057E2,0.42079541015624955E2],[0.27362890625000034E2,42.0250488]]]]}}],"_labels":{"TR":"Turkey"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/TT.json b/src/api-umbrella/admin-ui/public/maps/TT.json new file mode 100644 index 000000000..6bcd872a9 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/TT.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"TT"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-0.61012109374999966E2,0.10134326171874989E2],[-0.61174267578124955E2,0.10078027343749964E2],[-61.9061035,0.10069140625000031E2],[-0.61661474609375006E2,0.10191699218750031E2],[-61.6327148,10.2434082],[-61.4993164,0.10268554687499972E2],[-61.4647461,0.10538964843749993E2],[-61.4988281,10.6388672],[-61.6353027,0.10699365234374993E2],[-61.5918457,0.10747949218750023E2],[-61.3700195,10.7968262],[-0.60917626953124966E2,10.8402344],[-0.61033740234375024E2,0.10669873046875026E2],[-61.0375,0.10482275390624991E2],[-0.60968457031249955E2,0.10323388671875037E2],[-0.61012109374999966E2,0.10134326171874989E2]]],[[[-60.7562988,0.11178515624999987E2],[-0.60708935546875004E2,0.11277246093750037E2],[-0.60525488281250034E2,0.11325390624999983E2],[-60.5464844,0.11263720703125031E2],[-60.7562988,0.11178515624999987E2]]]]}}],"_labels":{"TT":"Trinidad and Tobago"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/TW.json b/src/api-umbrella/admin-ui/public/maps/TW.json new file mode 100644 index 000000000..36fe9040f --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/TW.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"TW"},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.407422,0.24522119140624994E2],[0.11843271484375006E3,24.4143555],[0.11829511718750003E3,0.24436328125000017E2],[118.407422,0.24522119140624994E2]]],[[[0.12100878906249996E3,0.22620361328124968E2],[120.897363,0.22379150390625053E2],[0.12083984375000003E3,21.925],[0.12074277343750006E3,0.21956005859374983E2],[120.690137,0.22033105468749966E2],[120.678027,0.22159667968749996E2],[120.58125,22.3563965],[0.12032558593750007E3,22.5424316],[120.232812,22.7179199],[0.12015009765625008E3,0.22974902343749985E2],[0.12007246093750008E3,0.23149755859375002E2],[120.142969,0.23399072265624994E2],[0.12012539062500005E3,0.23526611328125057E2],[0.12015898437500002E3,23.7090332],[0.12062968750000002E3,24.4785156],[0.12090156250000004E3,0.24813281250000074E2],[121.040625,25.0328125],[0.12136542968750004E3,25.1591797],[121.449609,25.2490234],[121.593652,0.25275341796874983E2],[0.12168710937500008E3,25.1815918],[0.12185283203125007E3,0.25104443359374983E2],[0.12192900390625002E3,0.24973730468749977E2],[0.12182011718750006E3,0.24824511718750045E2],[0.12182802734374998E3,24.534375],[0.12173701171875008E3,0.24285253906250063E2],[121.639355,0.24130078124999983E2],[0.12147714843750008E3,23.4240723],[0.12139746093750003E3,0.23172509765625023E2],[0.12129589843750003E3,22.9666016],[0.12116123046875012E3,0.22776367187500057E2],[0.12100878906249996E3,0.22620361328124968E2]]]]}}],"_labels":{"TW":"Taiwan"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/TZ.json b/src/api-umbrella/admin-ui/public/maps/TZ.json new file mode 100644 index 000000000..4a486876d --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/TZ.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"TZ"},"geometry":{"type":"MultiPolygon","coordinates":[[[[39.7113281,-7.97744141],[39.6029297,-7.93613281],[0.39846582031249994E2,-7.73027344],[0.39907128906249994E2,-7.64921875],[39.8977539,-7.728125],[39.8244141,-7.90068359],[39.7113281,-7.97744141]]],[[[30.8236328,-0.999023437],[0.30844726562500025E2,-1.00205078],[0.33979394531249994E2,-1.00205078],[34.0515625,-1.03984375],[0.37643847656250074E2,-3.04541016],[37.6879883,-3.24619141],[0.37608691406250074E2,-3.46025391],[37.6220703,-3.51152344],[37.7261719,-3.55976563],[37.7972656,-3.67441406],[39.1901367,-4.67724609],[0.39221777343750006E2,-4.69238281],[39.1232422,-4.98046875],[39.11875,-5.06542969],[39.0583008,-5.23154297],[38.9782227,-5.51855469],[0.38911035156249994E2,-5.62597656],[38.8192383,-5.87763672],[38.8046875,-6.07011719],[38.8552734,-6.20488281],[38.8740234,-6.33125],[38.9814453,-6.45507813],[39.0673828,-6.49931641],[0.39228417968749994E2,-6.68525391],[39.2873047,-6.81494141],[39.4723633,-6.87861328],[39.5460938,-7.02402344],[39.5192383,-7.12412109],[39.4333984,-7.20703125],[39.353125,-7.34140625],[0.39288476562499994E2,-7.51787109],[39.2870117,-7.78769531],[39.3304688,-7.74667969],[39.428418,-7.81279297],[39.4410156,-8.01152344],[39.3400391,-8.24287109],[0.39304003906250074E2,-8.44384766],[39.3773438,-8.72080078],[39.4883789,-8.86181641],[0.39451269531250006E2,-8.94296875],[39.6413086,-9.19248047],[39.6254883,-0.9409472656250003E1],[39.6966797,-9.57841797],[0.39783789062500006E2,-0.9914550781249957E1],[0.39725195312500055E2,-0.10000488281249972E2],[39.8637695,-0.10021972656249986E2],[39.9835937,-0.10159570312499952E2],[40.0836914,-10.1566406],[40.3887695,-0.10353515624999941E2],[40.4635742,-0.10464355468749972E2],[39.9886719,-0.10820800781250014E2],[39.8170898,-0.10912402343750031E2],[39.5634766,-10.9785156],[39.4391602,-0.11034570312499966E2],[0.39321582031250074E2,-0.11122558593749943E2],[0.39170996093750055E2,-0.11166894531250009E2],[38.9875,-0.11167285156250003E2],[38.7947266,-0.11228906250000023E2],[38.4917969,-0.11413281250000026E2],[38.3151367,-0.11311132812499991E2],[38.1765625,-0.11278710937499964E2],[37.9202148,-0.11294726562500031E2],[37.8853516,-0.11316699218749974E2],[37.8292969,-0.11481933593749972E2],[37.7248047,-11.5806641],[37.5416992,-0.11675097656249974E2],[37.3728516,-0.11710449218749986E2],[0.37113867187500006E2,-0.11647167968749969E2],[37.0591797,-0.11592187499999966E2],[36.8726563,-0.11571289062499972E2],[36.7710938,-0.11610351562500027E2],[36.6738281,-0.11684277343749983E2],[36.5186523,-0.11716210937500007E2],[36.3056641,-0.11706347656249946E2],[0.36191308593749994E2,-0.11670703124999974E2],[36.1754883,-0.11609277343749978E2],[36.0822266,-0.11537304687499969E2],[35.9113281,-11.4546875],[35.7854492,-0.11452929687500017E2],[35.630957,-0.11582031250000028E2],[35.5043945,-11.6047852],[0.35418261718750074E2,-11.5832031],[34.9594727,-11.578125],[34.9370117,-0.11463476562500034E2],[34.8505859,-0.11351953124999966E2],[34.7738281,-0.11341699218750009E2],[34.5976563,-11.0375],[34.6670898,-0.10792480468750028E2],[34.6365234,-0.10625585937499949E2],[34.5835937,-0.10525097656249997E2],[34.5699219,-0.10241113281249966E2],[0.34524218750000074E2,-10.0301758],[34.3208984,-0.9731542968749977E1],[34.0885742,-9.53779297],[33.9956055,-0.9495410156250003E1],[33.9496094,-9.56533203],[0.33943945312500006E2,-9.67216797],[33.8541992,-9.66298828],[33.6976563,-9.59814453],[33.4208984,-9.60800781],[0.33330859375000074E2,-0.9519140624999963E1],[33.1304687,-0.9495898437500017E1],[32.9740234,-9.39501953],[32.9199219,-9.40742188],[32.7566406,-9.32226562],[32.4871094,-9.21269531],[32.4332031,-9.15634766],[32.2208984,-0.9125585937499977E1],[0.32129785156250044E2,-0.9073339843749991E1],[31.9425781,-9.05400391],[0.31918652343750043E2,-8.9421875],[31.8180664,-8.90224609],[0.31673632812500017E2,-8.90878906],[31.55625,-8.80546875],[0.31534863281250097E2,-8.71328125],[31.3505859,-8.60703125],[31.0763672,-8.61191406],[0.30968359375000063E2,-8.55097656],[0.30830664062500063E2,-8.38554688],[0.30720898437500097E2,-8.10439453],[0.30406738281250025E2,-7.46064453],[0.30313183593750097E2,-7.20371094],[0.30212695312500017E2,-7.03789063],[30.10625,-6.91503906],[29.709668,-6.61689453],[0.29540820312500017E2,-6.31386719],[29.4800781,-6.025],[0.29490820312500066E2,-5.96542969],[0.29596386718750043E2,-5.77597656],[29.5941406,-5.65078125],[29.4764648,-5.31660156],[0.29342773437499968E2,-4.98310547],[29.3256836,-4.83564453],[29.4041992,-4.49667969],[29.4032227,-4.44931641],[29.7177734,-4.45585937],[29.9472656,-4.30732422],[0.30147167968750093E2,-4.08535156],[30.2685547,-3.85048828],[0.30379101562500097E2,-3.73076172],[30.425,-3.58886719],[0.30631933593750006E2,-3.41865234],[30.6109375,-3.36640625],[30.6818359,-3.309375],[0.30790234375000093E2,-3.27460938],[0.30811132812500002E2,-3.11640625],[0.30780273437500025E2,-2.98486328],[0.30515039062499998E2,-2.91757812],[0.30433496093749994E2,-2.87451172],[30.4240234,-2.82402344],[30.4733398,-2.69433594],[0.30424218750000048E2,-2.64160156],[30.5536133,-2.40009766],[0.30828710937500002E2,-2.33847656],[30.8765625,-2.14335938],[0.30819140625000017E2,-1.96748047],[0.30806738281250006E2,-1.85068359],[0.30827539062500055E2,-1.69365234],[0.30812597656250002E2,-1.56308594],[30.7107422,-1.39677734],[0.30631933593750006E2,-1.36748047],[0.30470214843749968E2,-1.13115234],[30.5199219,-1.0625],[0.30598730468750063E2,-1.06972656],[0.30741992187500017E2,-1.00751953],[30.8236328,-0.999023437]]]]}}],"_labels":{"TZ":"Tanzania"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/UA.json b/src/api-umbrella/admin-ui/public/maps/UA.json new file mode 100644 index 000000000..bc14a48b8 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/UA.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"UA"},"geometry":{"type":"MultiPolygon","coordinates":[[[[32.012207,46.2039062],[32.1500977,46.1546875],[0.31700195312500025E2,46.2140625],[31.5638672,46.2577637],[31.5087891,46.3731445],[31.6384766,46.2725586],[32.012207,46.2039062]]],[[[33.4518555,52.3337891],[0.33735253906249994E2,52.3447754],[33.9220703,52.2514648],[34.015332,52.155957],[0.34113085937500074E2,0.51979638671874994E2],[0.34397851562499994E2,51.7804199],[34.3792969,51.7165039],[34.1210938,51.6791504],[34.2008789,0.51553808593750006E2],[34.206543,51.4199219],[0.34280664062499994E2,0.51311669921874966E2],[0.34234179687500074E2,51.2437988],[0.34491015625000074E2,51.2370605],[34.7123047,51.1722168],[35.0640625,0.51203417968750045E2],[0.35158105468749994E2,51.0609863],[35.3119141,0.51043896484374955E2],[35.3832031,50.7989258],[35.4401367,50.7276855],[35.3916992,0.50610937500000034E2],[35.4116211,0.50539697265624994E2],[35.6737305,50.3459961],[35.8902344,50.4371094],[36.1164063,0.50408544921875006E2],[0.36306054687499994E2,50.2804687],[36.4998047,50.2804687],[36.6194336,50.2092285],[36.759082,0.50291845703125034E2],[37.13125,50.3515137],[0.37343164062499994E2,0.50417626953124994E2],[0.37422851562499964E2,0.50411474609375006E2],[37.5823242,0.50291845703125034E2],[37.6050781,0.50214941406250006E2],[0.37704199218750006E2,50.109082],[38.046875,49.9200195],[38.1626953,0.49954541015624976E2],[0.38177539062500074E2,50.0253906],[0.38258593750000074E2,50.0523437],[38.4511719,0.49964062499999976E2],[38.6477539,49.9528809],[38.9183594,49.824707],[39.1748047,49.855957],[39.3029297,49.742041],[0.39462792968749994E2,49.7280273],[0.39780566406250074E2,49.5720215],[40.0306641,49.5967285],[40.0949219,49.5426758],[40.0578125,0.49431542968750016E2],[40.1261719,49.3688477],[40.0700195,49.200293],[0.39889746093750006E2,0.49064062500000034E2],[39.6865234,0.49007910156250034E2],[0.39753320312499994E2,48.9144531],[0.39989160156249994E2,0.48851416015625034E2],[39.9844727,48.807373],[0.39792871093749994E2,0.48807714843750034E2],[39.7045898,0.48739355468750034E2],[39.6447266,48.5912109],[39.8356445,48.5427734],[39.8898437,0.48360449218750034E2],[0.39866308593750006E2,48.2884277],[39.9579102,48.2688965],[39.7757813,47.9644531],[39.7359375,0.47844824218750055E2],[39.3910156,47.8337402],[38.900293,47.855127],[38.8222656,47.8370117],[38.7189453,47.7141113],[38.5109375,0.47622412109375034E2],[38.3688477,0.47609960937500006E2],[38.2874023,0.47559179687500034E2],[38.256543,47.4089355],[38.2013672,47.3208008],[38.2807617,0.47276660156250045E2],[38.2013672,47.1752441],[38.1783203,47.0802246],[37.8287109,0.47095849609374966E2],[37.5433594,47.0745605],[37.3398438,0.46916894531250016E2],[37.2185547,0.46917333984375006E2],[36.9320313,46.8251465],[0.36794824218749994E2,46.7144043],[36.6886719,0.46764111328124976E2],[36.4320313,46.7325684],[36.2794922,0.46658593749999966E2],[36.0249023,46.6667969],[35.8271484,46.6243164],[35.4001953,46.3813965],[0.35256640625000074E2,46.2039062],[0.35132324218749964E2,0.46125878906249994E2],[35.0145508,46.1060059],[0.35280175781249994E2,46.2794922],[35.2919922,0.46370703125000034E2],[0.35230371093750044E2,46.440625],[35.0640625,0.46267236328124994E2],[34.8496094,0.46189892578124955E2],[0.34857324218749994E2,45.9873535],[0.35022851562500044E2,45.7009766],[35.2601563,45.4469238],[0.35373925781249994E2,0.45353613281250034E2],[0.35558007812499994E2,0.45310888671875034E2],[35.8334961,45.4016113],[36.0128906,45.3716797],[36.1705078,0.45453076171874955E2],[36.290332,45.4567383],[36.575,45.3935547],[36.4507812,45.2323242],[36.3933594,45.0653809],[36.2298828,45.0259766],[36.0547852,45.0308105],[35.8701172,0.45005322265624955E2],[35.6775391,45.102002],[0.35472558593749994E2,0.45098486328125006E2],[35.3578125,0.44978417968749994E2],[35.1547852,44.8963379],[35.0876953,0.44802636718749966E2],[0.34887792968750006E2,44.823584],[0.34716894531250006E2,44.8071289],[34.4699219,44.7216797],[34.2817383,44.5384277],[34.0744141,0.44423828124999964E2],[0.33909960937500074E2,0.44387597656249966E2],[33.6558594,44.4332031],[33.4506836,0.44553662109374955E2],[0.33530078125000074E2,0.44680517578125034E2],[0.33612207031249994E2,44.9078125],[33.5551758,45.0976563],[0.33392480468749994E2,0.45187841796875006E2],[33.1869141,45.1947754],[32.9186523,45.3481445],[32.7726562,45.3589844],[32.6113281,45.3280762],[32.5080078,45.4038086],[0.32828027343749994E2,45.5930176],[33.1422852,45.7492187],[33.2800781,45.7652344],[0.33466210937499994E2,45.8379395],[0.33664843750000074E2,45.9470703],[33.5941406,46.0962402],[33.4298828,46.0576172],[33.2022461,46.1757324],[32.9417969,46.1237793],[32.796875,0.46131494140624966E2],[32.4767578,46.0836914],[0.32329882812500074E2,46.1303711],[0.32035742187500006E2,46.2609863],[31.83125,46.2816895],[31.7799805,46.3246582],[31.9916992,0.46364404296874994E2],[32.0084961,46.4299805],[0.31713671875000017E2,46.4717773],[0.31554882812500097E2,0.46554296875000034E2],[31.7160156,46.5549805],[31.8779297,0.46521679687499976E2],[32.1314453,46.509375],[32.3613281,0.46474951171875034E2],[0.32578027343749994E2,46.615625],[0.32354101562500006E2,0.46564843749999966E2],[0.32127246093750074E2,46.5972168],[0.31974316406250093E2,46.7087891],[0.31939550781250006E2,0.46981982421875045E2],[31.8381836,47.1572266],[0.31759179687500048E2,47.2128418],[0.31912695312500063E2,46.926123],[0.31901660156250014E2,46.7216309],[0.31872851562500014E2,0.46649755859375034E2],[0.31779589843750017E2,46.6316406],[0.31532128906249994E2,0.46664746093749976E2],[31.5633789,0.46777294921875004E2],[0.31402929687500063E2,46.6288086],[0.31136816406250006E2,46.6244629],[30.7962891,46.552002],[30.7216797,46.3662109],[0.30511523437500074E2,0.46105371093749966E2],[0.30219042968750074E2,0.45866748046875045E2],[29.8211914,45.7320801],[29.6850586,45.7546875],[0.29601660156250063E2,45.6825195],[29.6011719,45.6],[29.6703125,45.5406738],[29.7269531,45.3433105],[29.7058594,45.2599121],[0.29567675781250074E2,45.3708008],[29.4037109,45.4196777],[29.2235352,0.45402929687500034E2],[0.28894335937500017E2,45.2899414],[28.7817383,45.3098633],[28.7607422,45.2341309],[0.28451269531250006E2,0.45292187499999955E2],[0.28317675781250045E2,0.45347119140624955E2],[28.2125,45.4504395],[0.28310351562500074E2,45.498584],[28.4713867,45.5071777],[0.28513769531250034E2,45.5724121],[28.4916016,45.6657715],[0.28729296875000074E2,0.45852001953124955E2],[0.28738769531250025E2,0.45937158203124994E2],[0.28947753906249968E2,0.46049951171874966E2],[29.00625,46.1764648],[28.94375,46.2884277],[28.9274414,46.4241211],[0.29146289062500017E2,46.5269043],[29.2007812,0.46504980468750034E2],[0.29204589843749968E2,46.3793457],[0.29304882812500097E2,46.4666016],[0.29458789062500017E2,46.4537598],[0.29614941406250097E2,46.3988281],[0.29706835937500017E2,46.4487305],[29.8378906,46.3505371],[30.0756836,46.377832],[0.30131054687500097E2,46.4230957],[29.9243164,46.5388672],[0.29942480468750063E2,46.7237793],[0.29877832031249994E2,0.46828906250000045E2],[29.5719727,46.9640137],[0.29515039062499994E2,47.0911133],[29.5493164,47.2468262],[0.29333789062500014E2,47.3757324],[29.1597656,0.47455664062500006E2],[0.29122949218750048E2,47.5303711],[0.29210742187500017E2,47.731543],[29.1948242,47.8824219],[29.0929687,0.47975439453125034E2],[28.9733398,0.47933007812499994E2],[0.28865820312499977E2,47.9956543],[28.7738281,0.48119580078124976E2],[0.28530468750000068E2,48.150293],[28.4630859,48.0905273],[0.28326953125000074E2,48.1614258],[28.2910156,48.2385742],[0.28088476562499977E2,48.2570313],[27.8200195,48.4162598],[27.5492188,48.4777344],[27.4038086,48.415625],[0.27336914062499996E2,0.48432714843750006E2],[27.2285156,48.3714355],[0.26847070312500023E2,48.3871582],[0.26640429687500042E2,48.2941406],[0.26618945312500014E2,0.48259863281250055E2],[0.26305664062500057E2,0.48203759765624994E2],[0.26276953125000063E2,48.1132324],[0.26162695312500063E2,0.47992529296875034E2],[25.4642578,0.47910791015624994E2],[0.25169628906250068E2,47.8230957],[25.0738281,0.47745703125000034E2],[24.8933594,47.7177734],[24.5789063,47.9310547],[24.484082,0.47947119140625034E2],[0.24177734375000057E2,47.9060547],[0.23628710937500017E2,47.9958496],[23.4082031,47.9899902],[23.2026367,0.48084521484375045E2],[0.23139453124999985E2,48.0874023],[23.0547852,0.48006542968749955E2],[22.8766602,47.9472656],[0.22836230468750042E2,48.0603027],[0.22769140625000063E2,48.1096191],[22.5824219,48.1340332],[22.5201172,48.2053711],[0.22350195312500063E2,48.2560547],[0.22253710937500017E2,0.48407373046874994E2],[0.22131835937500057E2,48.4053223],[0.22142871093750017E2,0.48568505859374966E2],[0.22295214843750042E2,48.6858398],[0.22389453125000045E2,48.8734863],[22.5799805,49.0771973],[0.22809765625000065E2,49.020752],[0.22847070312500023E2,49.08125],[0.22705664062500006E2,49.1711914],[22.7324219,49.295166],[0.22649414062499996E2,49.5390137],[0.22706152343750006E2,49.6062012],[0.23036328125000036E2,0.49899072265624966E2],[0.23264453125000074E2,0.50072851562500006E2],[0.23711718750000045E2,0.50377343749999966E2],[23.9726562,0.50410058593749966E2],[0.24089941406250006E2,50.5304687],[24.0947266,0.50617041015625034E2],[0.23978417968750023E2,50.7855957],[0.24105761718750045E2,50.8449707],[0.23938085937499977E2,50.9925293],[0.23863476562500068E2,51.1262207],[23.6644531,51.3100586],[23.6796875,0.51394921874999966E2],[0.23605273437500045E2,51.5179199],[23.6085938,51.610498],[0.23706835937500045E2,51.6413086],[23.9511719,51.5850586],[24.1268555,0.51664648437500034E2],[0.24280078125000017E2,51.774707],[0.24361914062500006E2,51.8675293],[24.8664063,51.8991211],[0.25267187500000034E2,0.51937744140624964E2],[0.25925292968749996E2,51.9135254],[0.26453417968750045E2,0.51813427734374976E2],[0.26952832031249983E2,0.51754003906250034E2],[0.27141992187500076E2,51.7520508],[0.27270117187500063E2,51.6135742],[0.27347656250000053E2,0.51594140624999966E2],[0.27601367187500045E2,51.6016113],[0.27689746093750017E2,0.51572412109374994E2],[27.6767578,51.4899414],[0.27741308593750034E2,0.51482568359374966E2],[0.27858593750000036E2,51.5923828],[0.28010742187500053E2,0.51559765624999976E2],[28.1837891,0.51607861328125004E2],[28.5990234,51.542627],[0.28647753906250074E2,51.456543],[28.73125,51.4333984],[0.28793261718750045E2,0.51510351562500034E2],[29.1356445,51.6172852],[0.29346484375000014E2,51.3825684],[29.553125,51.4345703],[0.30160742187500002E2,0.51477880859375006E2],[30.3089844,0.51399609374999955E2],[0.30333398437499994E2,51.3255371],[0.30544531250000063E2,0.51265039062499994E2],[30.6325195,51.3554199],[0.30533007812500017E2,51.5963379],[0.30667285156250017E2,51.8141113],[0.30980664062500097E2,52.0461914],[0.31079296875000097E2,52.0769531],[0.31217968750000093E2,0.52050244140624976E2],[31.3459961,52.1053711],[0.31782421875000097E2,52.0994141],[0.31973828125000097E2,52.0466309],[32.1222656,52.0505859],[32.2828125,52.1140137],[32.3629883,0.52272119140624994E2],[0.32507910156250006E2,52.3085449],[0.32806445312500074E2,0.52252636718750004E2],[0.32899707031250074E2,52.2563477],[33.1484375,0.52340429687500034E2],[33.4518555,52.3337891]]]]}}],"_labels":{"UA":"Ukraine"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/UG.json b/src/api-umbrella/admin-ui/public/maps/UG.json new file mode 100644 index 000000000..b8427c030 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/UG.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"UG"},"geometry":{"type":"Polygon","coordinates":[[[33.9032227,-1.00205078],[30.8447266,-1.00205078],[0.30741992187500017E2,-1.00751953],[0.30598730468750002E2,-1.06972656],[30.3602539,-1.07460938],[30.1015625,-1.36865234],[29.9300781,-1.46992188],[0.29881640625000017E2,-1.45175781],[29.8253906,-1.33554687],[0.29609667968750014E2,-1.38710938],[0.29579980468750023E2,-1.35673828],[0.29561914062500023E2,-0.97734375],[29.5900391,-0.887109375],[0.29608203125000017E2,-0.691308594],[29.6478516,-0.535253906],[0.29633203125000023E2,-0.441699219],[0.29717675781250023E2,0.0983398437],[29.777832,0.166357422],[29.8854492,0.418945312],[0.29934472656250023E2,0.499023438],[29.9238281,0.673925781],[0.29942871093750004E2,0.819238281],[30.0473633,0.863525391],[30.1829102,0.973486328],[30.2401367,1.1027832],[0.30321093750000014E2,1.18530273],[0.30477832031250014E2,1.23881836],[30.9425781,1.6828125],[0.31158789062500006E2,1.92202148],[0.31252734375000014E2,2.04458008],[31.2740234,2.14628906],[0.31176367187500006E2,2.27006836],[0.31082128906250002E2,2.28808594],[0.30961914062499996E2,2.40327148],[30.8300781,2.40043945],[30.7286133,2.45537109],[30.7695312,2.67797852],[0.30846679687499996E2,2.84702148],[0.30821386718750002E2,2.96757812],[0.30754003906250002E2,3.04179687],[30.827832,3.28261719],[30.9064453,3.40893555],[0.30838574218750015E2,3.49072266],[30.9293945,3.63408203],[31.1523438,3.7855957],[0.31221972656250014E2,3.7859375],[31.4799805,3.68046875],[31.6289062,3.70146484],[31.7980469,3.80263672],[31.8882812,3.70908203],[0.31941796875000023E2,3.60756836],[32.0994141,3.52919922],[32.15625,3.52802734],[32.1966797,3.6078125],[32.3357422,3.70620117],[32.8380859,3.79848633],[32.9972656,3.88017578],[33.1541016,3.77470703],[0.33489355468750006E2,3.75507812],[0.33568457031250006E2,3.81171875],[33.9760742,4.22021484],[34.1650391,3.81298828],[34.2670898,3.7331543],[34.3928711,3.69150391],[34.4417969,3.60625],[34.3994141,3.41269531],[0.34447851562500006E2,3.16347656],[0.34522558593750006E2,3.1199707],[34.5891602,2.92475586],[34.7424805,2.81811523],[34.8144531,2.61982422],[34.8662109,2.58969727],[34.9057617,2.4796875],[34.8830078,2.41791992],[34.9139648,2.23017578],[34.9640625,2.06240234],[34.9775391,1.86191406],[0.34965234375000016E2,1.64335937],[34.7835938,1.38115234],[34.7875977,1.23071289],[0.34649121093750004E2,1.18530273],[34.4817383,1.04213867],[34.4108398,0.867285156],[0.34272558593750006E2,0.686425781],[34.1609375,0.605175781],[0.34037207031250006E2,0.29453125],[33.9431641,0.173779297],[33.9214844,-0.0169921875],[0.33924414062500006E2,-0.397851563],[33.9,-0.831640625],[33.9032227,-1.00205078]]]}}],"_labels":{"UG":"Uganda"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-AK.json b/src/api-umbrella/admin-ui/public/maps/US-AK.json new file mode 100644 index 000000000..f4b8129e8 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-AK.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-AK"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-0.17628670197616884E3,51.7919817],[-0.17639610108922884E3,0.51759835729883456E2],[-0.17637858201507416E3,0.51861118692731445E2],[-0.17628670197616884E3,51.7919817]]],[[[-0.17600896690392864E3,0.51812372352981306E2],[-176.093355,51.7904876],[-0.17620443291480302E3,0.51834817422196885E2],[-0.17619365875972898E3,51.8862884],[-0.17600896690392864E3,0.51812372352981306E2]]],[[[-0.17787903365617422E3,51.6497198],[-0.17792536163035362E3,51.617365],[-0.17807847877791815E3,51.6912591],[-177.986365,0.51764285192943845E2],[-0.17819451843993755E3,51.8822124],[-178.116616,51.9158526],[-0.17795380935482746E3,51.9184344],[-0.17779960730731912E3,51.8400359],[-177.6445,0.51826292031246716E2],[-0.17777064185211267E3,51.7778973],[-0.17787903365617422E3,51.6497198]]],[[[-0.17714819973547284E3,0.51716736363004934E2],[-177.654887,51.6765923],[-0.17766762510929124E3,51.7211858],[-177.3347,0.51776216345742746E2],[-177.209747,51.8412774],[-0.17716638966231426E3,0.51909436565668436E2],[-0.17706303714982664E3,51.9018999],[-0.17713512531785983E3,51.8069121],[-0.17714819973547284E3,0.51716736363004934E2]]],[[[-0.17659329813349444E3,51.8666997],[-0.17643746736277947E3,51.8200957],[-176.437338,51.7543096],[-0.17677096148560872E3,0.51629944367506646E2],[-0.17683710742319056E3,51.6758672],[-0.17696162235103617E3,0.51603676055957685E2],[-0.17687441836821736E3,51.7904876],[-176.736416,51.8399371],[-0.17669835627348846E3,51.9860552],[-0.17654988977612567E3,51.9440655],[-0.17659329813349444E3,51.8666997]]],[[[-176.02155,0.52002435836794184E2],[-176.142861,52.0043145],[-0.17615567627536984E3,52.0994012],[-0.17603121353258484E3,52.0822955],[-176.02155,0.52002435836794184E2]]],[[[-0.17355330274775247E3,52.1363043],[-0.17335724210184566E3,0.52095632861833785E2],[-173.113304,0.52100389942093365E2],[-173.022896,52.0791424],[-0.17346100866159014E3,52.0415472],[-0.17367257170371826E3,52.0626629],[-0.17387894164567265E3,0.52053665086795306E2],[-0.17398958084056704E3,52.103587],[-0.17393891257996722E3,0.52131283497959295E2],[-0.17379411482969263E3,52.1043121],[-0.17355330274775247E3,52.1363043]]],[[[-0.17246479036186867E3,52.272293],[-0.17261984590977576E3,52.2728314],[-0.17247039750929932E3,0.52388012023377776E2],[-0.17231361024135555E3,0.52329575741851734E2],[-0.17246479036186867E3,52.272293]]],[[[-174.677394,0.52035010300927446E2],[-0.17521387326092724E3,0.51993910445843994E2],[-0.17529554837390623E3,52.0221453],[-174.667757,52.1349529],[-174.306151,0.52216141899633946E2],[-0.17425881524109627E3,52.269063],[-0.17443554818851192E3,52.3172161],[-174.168898,52.420191],[-0.17401833892882223E3,52.331795],[-0.17405490005692593E3,52.2460137],[-0.17417938889224126E3,52.2003326],[-0.17412063263389632E3,0.52135216603578094E2],[-0.17434353906024626E3,52.0777801],[-174.677394,0.52035010300927446E2]]],[[[-0.17073339716837978E3,52.5814923],[-0.17082703501985225E3,52.6007183],[-170.682083,52.6975628],[-0.17058462030723572E3,0.52667581125839284E2],[-170.614025,0.52609606270112145E2],[-0.17073339716837978E3,52.5814923]]],[[[-169.691962,0.52847372392463484E2],[-0.16972276205902637E3,52.7923309],[-0.16998054939185823E3,52.8060308],[-0.16998256400985503E3,0.52851041826197154E2],[-0.16975490393647323E3,52.8836492],[-169.691962,0.52847372392463484E2]]],[[[-0.16796436721655832E3,0.53345118993482195E2],[-0.16827067978927838E3,0.53238046235491495E2],[-168.505627,53.0431707],[-0.16906592792752485E3,52.8339361],[-0.16907311023981057E3,0.52864159502478806E2],[-0.16890916675211128E3,52.9511822],[-0.16879586749241818E3,0.53044928552343414E2],[-0.16875961535480474E3,0.53175050627619655E2],[-0.16863902941270476E3,53.2557672],[-0.16843663789497435E3,53.2569098],[-0.16839643342566728E3,53.4087848],[-0.16828770722523058E3,53.5001471],[-167.98571,53.5581769],[-167.804688,53.484953],[-167.865148,53.3873065],[-0.16796436721655832E3,0.53345118993482195E2]]],[[[-0.16620974617794516E3,53.7232794],[-0.16625075127594488E3,53.767774],[-0.16611373115963403E3,53.8430743],[-0.16620974617794516E3,53.7232794]]],[[[-0.16661535456133782E3,0.53900950313513626E2],[-0.16649748086909713E3,53.883537],[-166.37232,53.9989813],[-0.16623088112748187E3,53.9326019],[-0.16648874673790462E3,53.785506],[-0.16654920862375587E3,53.7009552],[-166.384723,53.7205218],[-0.16630945534922924E3,0.53697494495205504E2],[-0.16670219599531458E3,53.5366766],[-0.16677040873595382E3,0.53476010111756615E2],[-167.153642,53.4078509],[-0.16738130216135716E3,53.3420208],[-0.16752248197631306E3,53.2762347],[-0.16766942412059038E3,53.259953],[-167.808769,0.53323772557120996E2],[-0.16771009413556953E3,0.53370903906575236E2],[-0.16753018201933145E3,53.3936896],[-167.136097,0.53526448346102555E2],[-0.16709235348090104E3,53.6359491],[-0.16701574306538095E3,0.53698373401489086E2],[-0.16689414912763704E3,0.53697131946363626E2],[-0.16683833857863306E3,53.648045],[-0.16674126337961746E3,53.7129523],[-0.16702726635073265E3,0.53769125357313015E2],[-0.16711816585981538E3,53.8726276],[-166.978097,0.53962935179159466E2],[-0.16673405497480147E3,54.0021783],[-0.16662739420413104E3,53.9956744],[-0.16661535456133782E3,0.53900950313513626E2]]],[[[-0.16584155173640937E3,54.0706561],[-0.16603642311225138E3,54.0471893],[-0.16608773750629874E3,54.1691486],[-0.16589286613045672E3,54.2069745],[-165.704247,54.1198969],[-0.16584155173640937E3,54.0706561]]],[[[-0.16556115453943383E3,54.136695],[-0.16560482107552343E3,54.1291473],[-0.16565414694410424E3,54.2533038],[-0.16555061315719567E3,54.284538],[-0.16540785680409383E3,54.1968451],[-0.16556115453943383E3,54.136695]]],[[[-0.16255441339690375E3,54.4013556],[-0.16264112711481124E3,0.54379525771222944E2],[-0.16281171046482427E3,0.54444378068618796E2],[-0.16282054759284696E3,54.4945526],[-162.64539,0.54462055071246226E2],[-0.16255441339690375E3,54.4013556]]],[[[-0.16229815041715733E3,54.847038],[-162.433904,54.9315338],[-0.16226461190269436E3,54.9835212],[-162.233761,54.9320502],[-0.16229815041715733E3,54.847038]]],[[[-0.16347603727239294E3,54.9807306],[-0.16337896207337732E3,54.8155182],[-0.16318708859193677E3,54.7477655],[-163.083271,54.6690155],[-163.358085,54.7356806],[-0.16358303312608388E3,54.6256635],[-0.16407331314356583E3,54.6210053],[-0.16423462128570557E3,54.5713471],[-0.16446349534839152E3,54.4273273],[-0.16459080080368733E3,0.54404332901075485E2],[-0.16482342257769784E3,0.54419076553981675E2],[-0.16490393451314216E3,54.5447821],[-0.16488765552082197E3,0.54607832664697845E2],[-0.16470619433225917E3,54.6919879],[-0.16452979646786406E3,0.54880831942690016E2],[-0.16442429887472827E3,54.9131867],[-0.16427368867000837E3,54.900058],[-0.16386797728978559E3,55.039123],[-163.607476,55.0508564],[-0.16347603727239294E3,54.9807306]]],[[[-0.15936199780881418E3,54.972403],[-0.15936199780881418E3,54.972403],[-0.15936199780881418E3,54.972403],[-0.15936199780881418E3,54.972403]]],[[[-0.15951511701631534E3,0.55151875654201454E2],[-0.15952038496085223E3,55.0721479],[-0.15961771833858862E3,55.0573163],[-159.639655,55.1239704],[-0.15954508772058367E3,55.2259784],[-0.15951511701631534E3,0.55151875654201454E2]]],[[[-0.13133972714756413E3,55.0798383],[-0.13123203366201068E3,54.9037824],[-131.406183,54.8943012],[-0.13143132566180054E3,54.996485],[-0.13154002988958013E3,55.0484723],[-0.13156545225383118E3,0.55264122972936384E2],[-131.404634,0.55213322189748474E2],[-0.13133972714756413E3,55.0798383]]],[[[-0.15987297469598218E3,55.1287494],[-0.16022706131837617E3,0.54922689854443085E2],[-0.16016357681888417E3,55.0104377],[-0.16017207749059514E3,55.1230475],[-159.981651,0.55197765548530064E2],[-0.15992046584769616E3,55.2675287],[-0.15983941146227994E3,0.55182373702239836E2],[-0.15987297469598218E3,55.1287494]]],[[[-0.13286227298201186E3,54.894422],[-132.772306,0.54926051670977564E2],[-132.617223,54.8924115],[-0.13264696291520465E3,54.7561371],[-132.705822,54.6841547],[-0.13280728640764866E3,0.54709115627545835E2],[-0.13300892948174703E3,54.8548383],[-0.13312269840698536E3,54.9698212],[-0.13325116154665145E3,0.55175133711729266E2],[-0.13341797246610076E3,0.55210718429883606E2],[-133.429036,55.3038056],[-133.296563,55.3257233],[-0.13309740238551265E3,0.55213739670233245E2],[-0.13299575138065836E3,55.110589],[-132.982189,0.55033025552011416E2],[-0.13286227298201186E3,54.894422]]],[[[-0.16032927811915044E3,55.3377094],[-0.16034330766070124E3,55.2587946],[-0.16048074113762365E3,55.3089802],[-0.16049293870888974E3,55.3523322],[-0.16032927811915044E3,55.3377094]]],[[[-160.684914,55.3148139],[-0.16057396562848453E3,55.3782709],[-0.16058316393205808E3,0.55307628833971016E2],[-160.487539,55.1848456],[-0.16070178881451292E3,0.55177616621980164E2],[-0.16079509020967367E3,55.1452179],[-160.846534,55.3113532],[-0.16072393175969356E3,0.55404627128686904E2],[-160.684914,55.3148139]]],[[[-0.13330508794031016E3,55.543747],[-133.281704,55.4978571],[-0.13342647588439394E3,55.4314448],[-0.13346308782426706E3,0.55376666922542114E2],[-133.650185,55.2692865],[-0.13363499090699656E3,55.4133063],[-0.13373713080347102E3,55.4969233],[-0.13363423834349126E3,0.55539242612337695E2],[-133.454771,55.5222907],[-0.13330508794031016E3,55.543747]]],[[[-0.15556600157025838E3,0.55821195748093366E2],[-0.15560489042672236E3,0.55789566108214835E2],[-0.15573736082972493E3,0.55829798043343345E2],[-0.15557323881418682E3,0.55921083447216176E2],[-0.15556600157025838E3,0.55821195748093366E2]]],[[[-0.13097913387208993E3,0.55489166926833626E2],[-0.13108274044342497E3,55.2668036],[-0.13118787960759192E3,55.2062909],[-0.13131632077460102E3,55.2685175],[-0.13142067990944136E3,0.55275900317135736E2],[-0.13144757993488156E3,0.55408790947205055E2],[-0.13164128538660674E3,0.55298949634421206E2],[-0.13176251952209088E3,55.1658283],[-131.810991,55.223111],[-0.13184608153699725E3,55.4162507],[-131.647564,55.58555],[-0.13162495970239024E3,55.8316877],[-0.13126921689096815E3,0.55955393751259486E2],[-0.13112067074272346E3,55.8566376],[-0.13096595577100126E3,55.6695185],[-0.13097913387208993E3,0.55489166926833626E2]]],[[[-0.13356610662702508E3,56.3392011],[-0.13320300297547843E3,56.3198432],[-133.104478,56.2350947],[-133.096622,56.0900422],[-0.13275757327098668E3,0.55995010451989465E2],[-0.13259761232738464E3,55.8950349],[-0.13243015321455127E3,55.6869868],[-0.13217269959144897E3,0.55480597590569225E2],[-0.13251125978502802E3,0.55593921569501596E2],[-0.13259159181934248E3,0.55464370783309654E2],[-0.13241785401974613E3,55.4829157],[-0.13221528260088587E3,55.3835444],[-0.13215838989852026E3,55.2998285],[-0.13220670777145713E3,55.2244294],[-131.976434,55.2085981],[-0.13200038452139913E3,55.0338495],[-0.13198087829506903E3,54.8048175],[-132.021703,54.7263202],[-0.13213430786635155E3,0.54712554348380124E2],[-0.13226631409697316E3,54.8023346],[-0.13234132325510797E3,54.9072431],[-0.13254937135874752E3,0.54952594640740045E2],[-0.13262218325117348E3,55.1359675],[-132.701741,55.1305402],[-0.13270414126211244E3,0.55030081215961594E2],[-0.13278230349653938E3,55.0484723],[-0.13310300541307012E3,55.3602424],[-0.13295890872788578E3,55.3955634],[-0.13308246647185692E3,55.5041083],[-0.13303340152857896E3,55.5896808],[-133.298265,0.55606885437183614E2],[-0.13336901189294394E3,55.6889533],[-0.13355326360895702E3,55.6911725],[-0.13368018316946268E3,0.55785171576797225E2],[-0.13358406378103035E3,55.8365436],[-0.13344696538712867E3,55.7970039],[-0.13332213872221064E3,0.55844629586877836E2],[-0.13324152653651834E3,55.9208198],[-133.289224,56.018697],[-0.13337123113130994E3,56.0359126],[-0.13368420965887407E3,0.55942792432419346E2],[-0.13375518683443323E3,55.9994709],[-133.530862,56.145666],[-133.594424,0.56216362999495836E2],[-0.13356610662702508E3,56.3392011]]],[[[-132.779897,56.2472675],[-132.891442,56.2594074],[-133.035028,56.340904],[-0.13290203799817724E3,56.4537666],[-0.13264334291994948E3,0.56435155732451484E2],[-0.13266939150492743E3,56.2873127],[-132.779897,56.2472675]]],[[[-0.13211234619559187E3,56.1093891],[-0.13213293457528357E3,55.9432539],[-0.13228731995714952E3,55.9294001],[-0.13242059510871792E3,55.9795307],[-0.13245115907472757E3,0.56056369096908206E2],[-0.13265990481022965E3,56.078177],[-0.13269902712617514E3,56.1981696],[-0.13259872194656757E3,56.2416316],[-0.13237984681614788E3,0.56498777561050325E2],[-132.316494,56.4874836],[-132.066896,56.2442133],[-0.13211234619559187E3,56.1093891]]],[[[-0.15468279963227008E3,0.56435781953178484E2],[-0.15477393122754333E3,56.4202802],[-154.729362,56.5021284],[-0.15451754053172766E3,56.6005219],[-0.15444488244790125E3,56.573188],[-0.15468279963227008E3,0.56435781953178484E2]]],[[[-0.15420864342521753E3,56.5148945],[-154.332124,0.56539031468835965E2],[-0.15421675682884734E3,56.6087397],[-0.15411038170271917E3,0.56602927955648404E2],[-154.115963,56.5438874],[-0.15420864342521753E3,56.5148945]]],[[[-169.755214,56.635041],[-169.550498,56.6281196],[-0.16947432683836772E3,56.594062],[-0.16958687765442878E3,0.56542437230684584E2],[-0.16976616904310416E3,0.56607937721464545E2],[-169.755214,56.635041]]],[[[-0.13274687808014897E3,56.5256941],[-0.13293079471314144E3,56.5244526],[-0.13293624942526353E3,56.6068281],[-0.13284253054961817E3,56.7947712],[-0.13265587832081826E3,56.6847102],[-0.13256797670613696E3,56.5758247],[-0.13274687808014897E3,56.5256941]]],[[[-133.989597,56.8449568],[-133.924788,0.56775709944661386E2],[-0.13383087165177346E3,0.56781290999561755E2],[-0.13373836676543223E3,0.56650443826601645E2],[-0.13385526130114135E3,56.5821748],[-0.13388357856296375E3,0.56485495089840576E2],[-0.13388461127784697E3,56.2921247],[-133.9497,56.1277143],[-0.13406746773013487E3,56.1330097],[-0.13418958077190246E3,56.0769685],[-0.13424505623788588E3,56.2032673],[-0.13419546944400216E3,56.4135127],[-0.13408439766242134E3,56.4563484],[-134.290249,0.56580010474305446E2],[-0.13427838875868864E3,56.6171113],[-134.384401,0.56724030255189994E2],[-0.13437367867931587E3,0.56838650620890526E2],[-0.13427443368041276E3,56.9181807],[-0.13414327889025338E3,56.932342],[-133.989597,56.8449568]]],[[[-133.366221,57.0035005],[-0.13307078800461449E3,56.9742768],[-132.954152,0.56880277819744045E2],[-0.13295399783902656E3,0.56713076885631516E2],[-0.13303492313508232E3,56.6207258],[-0.13324400395360504E3,56.7958589],[-133.328961,0.56830070298297564E2],[-133.156619,56.6111238],[-0.13314473698204483E3,0.56528231907877114E2],[-133.212665,56.4646211],[-0.13360279547119805E3,56.4640937],[-133.649279,56.5168061],[-0.13368097967828209E3,56.7975178],[-0.13382306586534293E3,0.56924376942520105E2],[-0.13397946723849662E3,0.57009597893036634E2],[-0.13386598395780044E3,0.57068715326932384E2],[-0.13370772589512273E3,0.57062826654832755E2],[-133.366221,57.0035005]]],[[[-0.15300708789842486E3,57.1248335],[-0.15315682057015226E3,57.093929],[-0.15329539113207895E3,57.0004243],[-0.15337458608138905E3,57.0519172],[-0.15328521229868284E3,57.1850386],[-0.15293546527606375E3,57.1673066],[-0.15300708789842486E3,57.1248335]]],[[[-0.17016056450492647E3,0.57183950927031454E2],[-0.17026399529500486E3,0.57136775632263074E2],[-0.17038662194763188E3,0.57203023193383984E2],[-170.116174,57.241783],[-0.17016056450492647E3,0.57183950927031454E2]]],[[[-0.13496976390713283E3,0.57351437505686135E2],[-134.823184,57.156562],[-0.13462071726295844E3,0.56718295391689914E2],[-0.13461056589538362E3,56.6034223],[-0.13465709848993222E3,56.5232441],[-134.630045,56.3024519],[-134.654022,56.2274702],[-0.13475029551497175E3,56.2407526],[-0.13484799144155008E3,56.3234907],[-0.13498054149543455E3,56.5189265],[-0.13496664378982626E3,0.56596127418279615E2],[-134.875122,56.6704389],[-135.017796,56.6601557],[-0.13515903088212622E3,56.7253706],[-135.163112,0.56824126694555225E2],[-0.13533059888183507E3,0.56821852524546564E2],[-0.13531514661073783E3,56.9318257],[-0.13519959790027534E3,57.0273188],[-0.13534137097697257E3,57.0815803],[-135.375297,57.1884443],[-0.13550195264813738E3,57.2438484],[-0.13560892652917124E3,57.0714509],[-0.13581232741583656E3,0.57009542961393926E2],[-0.13576770094929051E3,57.1003889],[-0.13582113845132898E3,57.2304121],[-0.13578713576448496E3,57.317281],[-0.13558058180152744E3,57.3900105],[-135.48728,57.5164851],[-0.13534628186583177E3,0.57533129407148394E2],[-0.13496976390713283E3,0.57351437505686135E2]]],[[[-0.15324064076377948E3,57.850085],[-0.15326857075752076E3,0.57822366478728775E2],[-0.15351708425577027E3,0.57941886746959966E2],[-0.15348106557763847E3,57.9710335],[-153.346966,0.57932790066925484E2],[-0.15324064076377948E3,57.850085]]],[[[-0.15289805133420674E3,57.8239156],[-152.890817,57.7689839],[-0.15269625445150885E3,57.8322871],[-0.15251156328235407E3,57.8514583],[-152.428779,57.8256734],[-0.15248541582041918E3,0.57734409932404766E2],[-0.15241149156222804E3,0.57646090837238795E2],[-152.236515,57.6149116],[-0.15221623429159598E3,57.5769978],[-0.15241218919409062E3,57.4547859],[-152.912161,0.57508168468696226E2],[-0.15299745288829166E3,0.57468947275793795E2],[-0.15278136553873998E3,57.4533906],[-0.15267904711442668E3,0.57345131353101834E2],[-152.879034,57.3208186],[-0.15305160724826766E3,0.57237641114626385E2],[-0.15327436055266344E3,57.2263472],[-0.15350354360583964E3,0.57138006101059965E2],[-0.15358829489081097E3,57.0777021],[-153.732576,57.0523347],[-153.646533,0.57029593010986886E2],[-0.15364332815707047E3,56.9607637],[-0.15375725089090838E3,0.56858338121641516E2],[-0.15397271476631522E3,56.7742048],[-154.070847,56.820666],[-153.79319,0.56989492911800966E2],[-153.999381,0.57049950677779115E2],[-0.15410299065019112E3,57.0212214],[-0.15402542442408767E3,57.1084748],[-0.15424375847782656E3,57.1430269],[-0.15426954339091958E3,57.0994661],[-0.15418433068014943E3,57.0053022],[-0.15426094109566964E3,0.56911775623679965E2],[-0.15433894677491472E3,0.56920916249028686E2],[-0.15449878137573853E3,57.0365693],[-154.569319,0.57205912597791105E2],[-0.15470595057309453E3,57.3353645],[-0.15467321406061532E3,57.4461067],[-0.15453531641131195E3,57.5594307],[-0.15428143059840426E3,57.6380818],[-0.15402984367474454E3,0.57630698990948474E2],[-0.15380543967448506E3,57.3582051],[-153.687718,0.57305130130872776E2],[-153.797815,57.4432612],[-153.838149,0.57635862565364256E2],[-0.15369314566385373E3,57.6634053],[-0.15387943809039373E3,0.57757195577805206E2],[-0.15390442374808518E3,57.8198836],[-0.15376900626245063E3,57.8803963],[-0.15366265585556164E3,57.8578084],[-0.15352447256171615E3,57.7310261],[-0.15339042562056753E3,57.7983833],[-0.15325239613532165E3,0.57790473166965306E2],[-0.15316046528464676E3,57.9719673],[-0.15285040637389318E3,57.8967769],[-0.15289805133420674E3,57.8239156]]],[[[-0.13573036940489763E3,58.2442525],[-0.13558748121585316E3,58.1467818],[-135.613244,57.9918636],[-135.346617,58.124106],[-0.13500209117887388E3,58.0510799],[-134.927983,57.9527632],[-0.13497064281341642E3,0.57817246849627224E2],[-0.13510257763290244E3,57.7936592],[-0.13523122204698944E3,57.8157967],[-0.13533847607940123E3,57.7686653],[-135.249542,57.7325532],[-0.13497883861451032E3,57.7243574],[-0.13487310618860192E3,0.57589203628037474E2],[-0.13493149852481383E3,57.4811421],[-0.13508485119179653E3,57.5110139],[-135.220219,0.57573646986818964E2],[-0.13549784376126183E3,57.6622737],[-0.13560856398032928E3,57.650749],[-135.617814,57.4803731],[-0.13569194472081466E3,57.4199043],[-0.13591076491959163E3,57.4465681],[-0.13607659805580056E3,57.6745674],[-136.459906,57.8730794],[-0.13656860979331927E3,0.57972176054756105E2],[-136.512283,0.58095991977448065E2],[-0.13636952653377173E3,0.58143035436273834E2],[-0.13632198319699714E3,0.58218874062213736E2],[-0.13614372452320498E3,58.0984749],[-0.13609437393538482E3,0.58198153846579544E2],[-0.13594740432528624E3,58.2058003],[-135.787059,58.2684883],[-0.13573036940489763E3,58.2442525]]],[[[-134.312727,0.58228904580174486E2],[-134.45623,58.2065254],[-134.593999,0.58243109902981956E2],[-0.13464797434407632E3,58.3124117],[-0.13451997263020908E3,58.3325386],[-134.312727,0.58228904580174486E2]]],[[[-0.13468027414999594E3,58.1616682],[-0.13442612741178533E3,0.58138827672441444E2],[-134.240096,58.1439912],[-0.13407015938062818E3,57.9945442],[-133.904123,57.7891878],[-0.13382691657349756E3,57.6175703],[-133.925024,57.6707991],[-134.104728,57.8793636],[-0.13418028084478988E3,58.0111336],[-0.13430688729493198E3,58.0343916],[-0.13426709481294534E3,57.8845271],[-0.13393701606500227E3,0.57581579116027896E2],[-0.13392086616204247E3,57.4919636],[-0.13397375434765374E3,57.4513801],[-133.925305,57.3367598],[-0.13410002571477526E3,57.3001204],[-0.13426014596014116E3,57.1467952],[-0.13451601755193317E3,57.0425679],[-0.13459152109485245E3,57.0919624],[-0.13461953073947558E3,57.1955305],[-134.575888,57.2317524],[-0.13448677194534878E3,0.57482021006761286E2],[-134.659889,57.6380818],[-134.754091,57.9950166],[-0.13493312450143827E3,58.3289461],[-0.13483698314034893E3,58.320157],[-0.13468027414999594E3,58.1616682]]],[[[-0.15241694352776807E3,58.3602132],[-0.15231627854590067E3,58.4134859],[-0.15212523178568313E3,58.3742647],[-152.07854,58.3123567],[-151.974387,58.3098518],[-0.15198250015182037E3,58.2443514],[-0.15210910660196248E3,58.1611519],[-0.15225168442722565E3,58.2511189],[-0.15233436478926637E3,58.2080745],[-152.30925,58.1338728],[-0.15253766130581056E3,58.1010017],[-152.598226,58.1626021],[-0.15268305163118097E3,0.58063329622686396E2],[-152.781522,58.0159456],[-0.15298256915969654E3,57.9970491],[-0.15338132894053305E3,58.0872029],[-153.115817,58.2385176],[-152.976134,0.58297008830819316E2],[-0.15277185687138507E3,58.2785628],[-0.15284110370019852E3,58.4163863],[-152.674655,58.4505977],[-0.15254357744373152E3,58.4281856],[-0.15241694352776807E3,58.3602132]]],[[[-152.486089,0.58485006884865854E2],[-152.636621,58.5416963],[-0.15246316850511738E3,58.6184908],[-152.356846,58.59498],[-152.486089,0.58485006884865854E2]]],[[[-0.16091898303666542E3,0.58577094290722535E2],[-0.16107024006147842E3,58.5691402],[-161.131503,58.6682039],[-0.16098624134001238E3,0.58736418027268996E2],[-0.16071514544344038E3,58.7952278],[-0.16091898303666542E3,0.58577094290722535E2]]],[[[-0.14456564073803025E3,59.8184176],[-0.14461359606212523E3,59.8126278],[-0.14444492570656985E3,59.950704],[-144.235738,60.0152047],[-0.14456564073803025E3,59.8184176]]],[[[-0.14802176117016376E3,60.0653243],[-0.14807416046415474E3,60.0347054],[-0.14827187317921653E3,60.0532613],[-0.14823068818008684E3,60.1135433],[-148.079588,60.1516549],[-0.14791419677397067E3,0.60092350696181185E2],[-0.14802176117016376E3,60.0653243]]],[[[-0.14773588591511788E3,59.813254],[-0.14787246795157802E3,59.8283932],[-147.768081,59.9437276],[-0.14746582548001118E3,60.0970089],[-0.14733653012595786E3,60.1853719],[-0.14718088131630938E3,0.60358252805933965E2],[-147.019857,60.3322372],[-0.14698673366486022E3,60.2543551],[-0.14731847134841348E3,60.0752999],[-0.14737652860160475E3,0.59991166610290044E2],[-0.14754021391058328E3,59.8675045],[-0.14773588591511788E3,59.813254]]],[[[-0.16613543465167288E3,60.3835543],[-0.16604363151706735E3,0.60333940060865835E2],[-165.840931,0.60346244748835254E2],[-0.16572969717891982E3,60.3141976],[-0.16568936362025232E3,60.2241317],[-0.16571233465994698E3,60.0693563],[-0.16563058264266826E3,60.0283773],[-0.16559179952961654E3,0.59913141704969945E2],[-165.946739,59.8900375],[-0.16609983070744366E3,59.8496297],[-0.16610667656341764E3,59.77545],[-0.16634296777116194E3,0.59834435647279975E2],[-0.16662765375614293E3,59.86467],[-0.16698504726342875E3,59.9838827],[-167.138863,0.60008535995718304E2],[-167.436415,0.60206663444682555E2],[-0.16725172390934387E3,60.233536],[-166.836323,0.60217001579842474E2],[-0.16678438746573516E3,60.2964217],[-166.475699,60.3827743],[-0.16636387063450812E3,60.3647347],[-0.16613543465167288E3,60.3835543]]],[[[-0.14511852772201175E3,60.3370931],[-0.14528425374151735E3,60.3368295],[-0.14512813801290582E3,60.4011215],[-0.14511852772201175E3,60.3370931]]],[[[-146.393928,60.4496481],[-146.371681,60.4221493],[-146.102238,0.60411195923187925E2],[-0.14620238945769384E3,60.3679977],[-0.14661833185637326E3,60.273691],[-0.14670256403732085E3,60.4085592],[-146.560299,0.60480541628958214E2],[-146.393928,60.4496481]]],[[[-147.658268,0.60450472047733065E2],[-0.14765997313146033E3,60.352496],[-147.787821,60.1779342],[-0.14787135558581295E3,0.60229756707282164E2],[-0.14779453917663264E3,60.4598763],[-0.14768857603782482E3,0.60491396121559845E2],[-147.658268,0.60450472047733065E2]]],[[[-152.020741,60.3617465],[-0.15195973647907704E3,60.5037448],[-0.15188728713549295E3,60.4726864],[-152.020741,60.3617465]]],[[[-0.17274221438368195E3,60.4573934],[-0.17252605287641262E3,60.3917611],[-172.387508,0.60398484741062404E2],[-172.232066,60.2991354],[-0.17239717225626194E3,60.3311276],[-0.17263573626072372E3,60.3288534],[-0.17295837795088798E3,0.60462765749373915E2],[-0.17307402965818056E3,60.4932089],[-0.17304764873676407E3,0.60568289435039986E2],[-0.17292388362584163E3,60.6068405],[-0.17286021853857412E3,60.5056893],[-0.17274221438368195E3,60.4573934]]],[[[-0.14793070647919032E3,60.8261605],[-0.14812379669651702E3,60.8443539],[-0.14810167847057562E3,60.9161276],[-147.964399,60.9001644],[-0.14793070647919032E3,60.8261605]]],[[[-0.17146304319230737E3,0.63640022950654725E2],[-0.17144784909993086E3,63.6156772],[-0.17103487850312257E3,63.5854978],[-0.17087462916839632E3,0.63594001220383575E2],[-170.672522,0.63668829104097384E2],[-170.430419,63.6988547],[-170.121832,63.617512],[-0.17001736869868273E3,63.4917295],[-169.62411,63.4305466],[-169.554528,63.3734946],[-169.427586,63.3483249],[-0.16899603565190947E3,63.3472922],[-168.716001,63.3106089],[-0.16876134707484155E3,63.2137644],[-0.16885237567328474E3,0.63171236311678214E2],[-0.16910905201364258E3,63.1849253],[-0.16936472035835646E3,63.1711264],[-0.16955928274370814E3,63.0582199],[-0.16957129766726217E3,62.9967734],[-0.16967635580725616E3,0.62956102026127766E2],[-0.16977779669857702E3,0.63093749736456765E2],[-0.16998848152106706E3,63.173126],[-0.17018960686443273E3,0.63196351058730016E2],[-0.17027270196037603E3,63.2842746],[-0.17052710413072518E3,63.3792844],[-170.848377,63.4443674],[-0.17106123195871777E3,63.4458945],[-0.17140118604273096E3,63.3392392],[-0.17163181791798394E3,0.63351203359559086E2],[-0.17179098235276646E3,63.4247129],[-0.17180353972629237E3,63.58051],[-0.17174638472533277E3,63.7030845],[-171.646468,0.63726990727409834E2],[-0.17146304319230737E3,0.63640022950654725E2]]],[[[-0.16610985573224008E3,66.2274571],[-0.16603252159232719E3,66.2777086],[-0.16582987189587598E3,66.3171385],[-0.16610985573224008E3,66.2274571]]],[[[-0.15597352294810878E3,70.8419788],[-0.15587223723867862E3,70.8346399],[-0.15557938566500724E3,70.8943286],[-0.15516685452134072E3,71.0992237],[-0.15494381831898488E3,71.0830518],[-0.15467368097957848E3,70.9870862],[-0.15478522242670448E3,70.8943067],[-0.15459861963638303E3,70.8479773],[-0.15439219750936797E3,70.8383094],[-0.15419523461122947E3,70.8011096],[-0.15391822257673653E3,70.8773328],[-153.497704,70.8910767],[-0.15323291462823082E3,70.9325721],[-152.784906,70.8760364],[-0.15249123033480106E3,70.8809473],[-0.15223292527123658E3,70.8103601],[-0.15243725450266396E3,70.7332581],[-152.470584,70.6536182],[-152.269666,70.6147595],[-0.15217292893105727E3,70.5566529],[-0.15176902480188005E3,70.5601355],[-0.15194467422264302E3,70.452107],[-151.22482,70.4187525],[-0.15112803020955693E3,70.4516126],[-0.15066263285293627E3,70.509906],[-150.403218,70.4439221],[-0.15015251015281257E3,70.4437134],[-0.14987009833784012E3,70.5096533],[-0.14926943730418458E3,70.5007654],[-148.844785,70.4252124],[-0.14868835940115883E3,70.4163245],[-0.14847919893175424E3,70.3179309],[-148.248774,70.3567346],[-0.14786952086894607E3,70.3032532],[-147.705347,70.2172083],[-0.14706292934647786E3,70.1703955],[-0.14674488612145478E3,70.191742],[-146.281247,70.1861609],[-0.14605766929836466E3,70.1562341],[-0.14582313590318734E3,70.1600574],[-0.14544008382558684E3,70.0509192],[-0.14519738484171927E3,70.0086987],[-0.14461917711702566E3,69.9821338],[-144.416891,70.039032],[-0.14406409561391735E3,70.0541272],[-0.14374641493773626E3,70.1019727],[-0.14335703198831214E3,70.0895691],[-0.14321833233702512E3,70.1162329],[-0.14270787180729872E3,70.0338135],[-142.422128,69.9395068],[-142.296994,69.8698975],[-141.699201,69.7703723],[-0.14140790074940793E3,69.6533679],[-0.14100213718412465E3,69.6507861],[-0.14100213718412465E3,0.60300244991221064E2],[-0.14052542116252138E3,60.2183419],[-0.14045281801033778E3,0.60299728633779544E2],[-139.973284,60.1831527],[-0.13967630156225897E3,0.60328337033308344E2],[-0.13907925777727652E3,60.3437069],[-0.13907925777727652E3,60.2794479],[-0.13918516873102374E3,60.0835726],[-0.13904344509280486E3,59.993243],[-0.13870545618831005E3,0.59901331401785015E2],[-0.13863225702780295E3,59.7782845],[-0.13759329916346277E3,59.2262545],[-0.13748416097570572E3,58.9912349],[-0.13752087728570012E3,58.9153743],[-0.13743857869857632E3,58.9031246],[-0.13727755757426974E3,58.9882137],[-136.81327,0.59150031324297096E2],[-0.13657873918823694E3,59.1522506],[-136.466728,0.59279944659331015E2],[-136.466344,59.4590877],[-0.13634784501438997E3,59.4560335],[-0.13624713334062622E3,0.59532904874058794E2],[-0.13632182938839756E3,59.6048324],[-0.13593464370468223E3,0.59662642427836055E2],[-135.475937,0.59793280860553814E2],[-0.13505102977937355E3,59.5786629],[-135.071311,0.59441432702600665E2],[-0.13494377025379757E3,59.2882723],[-134.677225,59.199283],[-134.440756,59.0853328],[-0.13429699410607807E3,58.8984993],[-0.13421851876128764E3,0.58849895814800945E2],[-0.13382074225685588E3,58.7050521],[-0.13340110295862132E3,58.4108821],[-0.13342257573776072E3,58.337065],[-0.13327529851046285E3,0.58222851113146675E2],[-0.13291684207589046E3,57.8769795],[-0.13255048097793048E3,57.4999067],[-132.232158,57.1985298],[-0.13233798890439482E3,57.07946],[-0.13203151977649298E3,0.57026549797980145E2],[-0.13210428223044056E3,0.56856789049316795E2],[-0.13186615905241158E3,56.7928376],[-0.13182427367483723E3,56.5899861],[-0.13157511472978564E3,56.5988191],[-0.13108292171784595E3,0.56404822479341284E2],[-130.741681,0.56340827115571905E2],[-0.13064907160363958E3,0.56263670130206734E2],[-0.13047709710977466E3,56.2305683],[-0.13041314569131947E3,56.1225178],[-130.214705,56.0828352],[-130.097866,0.56109290241505136E2],[-0.13002288383561185E3,0.56014511185155236E2],[-0.13002508110132064E3,0.55888212352212285E2],[-0.13011197746694017E3,55.7797993],[-0.13014651848388286E3,55.6544892],[-130.036551,55.2979169],[-0.13017184197117697E3,55.1370002],[-0.13021408989759328E3,0.55025895424786235E2],[-130.575331,54.7696833],[-0.13084960505855503E3,54.8076081],[-0.13104785885029744E3,0.55157665449344144E2],[-0.13098393489766363E3,55.2439631],[-0.13075038752547326E3,55.2969831],[-130.835059,55.3320734],[-130.879812,55.4595038],[-0.13087965266712314E3,55.6118293],[-130.918566,55.7359748],[-131.140364,0.55997515334897486E2],[-0.13103276912804216E3,56.0880976],[-0.13128758603229394E3,56.0120832],[-131.635265,55.9322456],[-131.784201,0.55876533884969945E2],[-0.13186941100566065E3,0.55647150331297716E2],[-0.13198341064379844E3,55.5350129],[-0.13211900940385397E3,0.55569784605690224E2],[-0.13222342347033697E3,55.7210444],[-0.13200573486340005E3,0.55930070263965256E2],[-0.13184383483280993E3,56.160091],[-0.13155134580798057E3,0.56206804893662536E2],[-131.844247,0.56229645470705684E2],[-0.13202193420483835E3,56.3800703],[-132.182027,56.4206428],[-0.13230499146661265E3,56.5198603],[-0.13235765443248877E3,56.6259004],[-0.13247593873875874E3,0.56649663797275004E2],[-0.13248712831438098E3,0.56766404524384576E2],[-0.13263951967761608E3,56.7964302],[-0.13280219973753282E3,56.8951533],[-0.13282460086143413E3,57.0557954],[-132.913409,0.57047478753856666E2],[-0.13346585088589597E3,57.1721736],[-133.436655,57.3368586],[-0.13353894842286405E3,57.5541572],[-133.648713,0.57642300553891076E2],[-0.13355421941954035E3,0.57695078876216954E2],[-133.142825,57.555146],[-0.13311706242044227E3,57.5661983],[-0.13351546514560104E3,57.7751253],[-133.51112,0.57880110621556554E2],[-0.13319431828276439E3,57.8777046],[-133.559361,0.57924451443560535E2],[-0.13365726019495537E3,0.57840988305611056E2],[-133.744129,57.8546114],[-0.13389448249404376E3,57.9932588],[-0.13403109199632542E3,0.58072162630835855E2],[-0.13404524788065441E3,58.2892635],[-133.933627,58.4678572],[-0.13403615669378416E3,58.4153536],[-0.13413121040834767E3,58.2793318],[-0.13420882881951172E3,58.2329585],[-0.13448545358592352E3,58.3672115],[-0.13466360788959452E3,58.3847017],[-134.776135,58.4538497],[-134.942507,0.58646286187893175E2],[-134.964776,58.7421749],[-0.13513185070530815E3,58.8428646],[-0.13521737377985963E3,0.59076598704308296E2],[-0.13533031323729293E3,59.2390755],[-0.13536366773075284E3,59.4194271],[-0.13541273267403074E3,59.3184517],[-0.13548409986425318E3,59.3086849],[-135.400153,59.2079073],[-0.13550231519697934E3,59.2023043],[-0.13538614575895411E3,59.0875521],[-0.13533405957532648E3,58.9096065],[-135.207091,0.58670884577503465E2],[-135.049711,58.3067757],[-0.13514153515391985E3,58.233398],[-0.13530253979873345E3,58.2559309],[-135.449943,0.58376132368993886E2],[-0.13557179273869212E3,58.4120467],[-0.13587345534785595E3,58.3942159],[-0.13586172744213513E3,0.58577050345408296E2],[-0.13604549026652796E3,58.7891304],[-0.13604311172639814E3,0.58821627991456985E2],[-0.13582637893004448E3,58.897961],[-0.13601660171562122E3,0.58873977846969616E2],[-0.13615003067578925E3,59.0480782],[-0.13612352066501236E3,0.58893456607478264E2],[-0.13614682816101862E3,58.7888118],[-136.225842,58.7654549],[-0.13645114946169008E3,0.58846336244352656E2],[-136.566209,0.58940895574131694E2],[-0.13683096881211657E3,58.9838192],[-0.13698899616189482E3,59.0344881],[-136.948072,0.58934908025075124E2],[-0.13705901752687052E3,58.8737142],[-0.13687907794481114E3,58.8815255],[-0.13656819780599892E3,58.7863399],[-136.410116,0.58700657527857906E2],[-0.13648375688480894E3,0.58617666802035814E2],[-0.13622460038078225E3,58.602264],[-0.13610290481949934E3,0.58506298389584366E2],[-0.13605598221028754E3,0.58384163375159645E2],[-0.13612961807735434E3,58.3503914],[-136.462388,58.3279683],[-0.13658261186904872E3,0.58245208291733974E2],[-136.698913,0.58266466837466695E2],[-137.071937,58.3951936],[-0.13754400350728542E3,58.5811812],[-137.564625,0.58625884575786806E2],[-0.13774998618115868E3,58.7070626],[-138.026919,58.9414669],[-0.13835247918509899E3,59.0872994],[-0.13856032129507832E3,59.1291573],[-0.13851489831971276E3,59.1658956],[-0.13870421473318459E3,59.1875496],[-0.13934097134927177E3,59.3756576],[-139.799109,0.59546264249568374E2],[-0.13961162779270194E3,59.6103145],[-0.13950558774959438E3,0.59726330174406165E2],[-0.13958217344587524E3,59.8483114],[-0.13955411161619156E3,59.9333236],[-139.446882,59.9568563],[-139.330974,59.8770187],[-139.286713,59.6109408],[-0.13925873044037291E3,59.743326],[-0.13917886257843944E3,59.8398629],[-138.988074,0.59835006936364266E2],[-0.13924250363311324E3,59.892784],[-0.13940249204253664E3,0.60000988388008466E2],[-139.51892,60.0171163],[-0.13985019317045487E3,0.59830711281903504E2],[-140.216733,0.59726637791605334E2],[-0.14041984803837695E3,59.7107186],[-140.843154,59.7488631],[-141.408288,59.9028036],[-0.14129462620895404E3,59.9800045],[-141.32956,0.60082814563004916E2],[-0.14140872747063088E3,60.1176742],[-0.14140970800045346E3,0.60042275010677216E2],[-0.14167015814466623E3,59.9698751],[-0.14210411262899368E3,60.033442],[-0.14254860574897708E3,60.0860445],[-0.14294563518306785E3,60.096954],[-143.506119,60.0550411],[-0.14380506819925102E3,60.0128976],[-0.14414721542909982E3,60.0163912],[-0.14408853744834585E3,60.0843417],[-144.185484,60.150743],[-0.14433263169593852E3,60.1910079],[-0.14452998460874045E3,60.2052352],[-0.14485241961859884E3,0.60295081416805374E2],[-0.14490133075327716E3,60.3351815],[-144.786557,60.5846261],[-0.14469113756898946E3,0.60669110972089065E2],[-144.984014,60.5369235],[-0.14524828724844616E3,60.3801376],[-0.14538176564709266E3,0.60388564086387035E2],[-0.14556314993135564E3,60.4407052],[-145.898892,60.4781686],[-0.14567492758454537E3,60.6511264],[-0.14614903160653728E3,0.60660695444424306E2],[-0.14625104241365136E3,60.7490585],[-0.14650298913957099E3,60.7007955],[-0.14657047815581737E3,60.7291622],[-0.14639198876912573E3,60.8108676],[-146.638434,60.897319],[-0.14659910852800317E3,61.0535336],[-146.284889,61.112651],[-0.14638439172293744E3,61.1358542],[-0.14658272791214398E3,61.1278451],[-0.14698016933355512E3,60.9778048],[-147.105952,61.0025351],[-0.14725490719803952E3,60.9782992],[-147.390558,60.9180392],[-0.14756726499804097E3,0.60994932517721345E2],[-0.14765568571674595E3,60.9095138],[-0.14789112273744593E3,0.60889870257854106E2],[-0.14800511962900163E3,60.9685763],[-0.14775185454365672E3,61.2189547],[-0.14804940826594495E3,61.0826803],[-0.14827001374311044E3,0.61081801417519436E2],[-0.14839584565709012E3,61.0071273],[-0.14820867432426652E3,61.029924],[-0.14834442689292166E3,60.8535495],[-0.14855738588542044E3,60.8029025],[-148.267896,0.60699707897084394E2],[-0.14833843385070085E3,60.5698385],[-0.14850958711650722E3,0.60565246222033224E2],[-0.14864012117910391E3,0.60489429568750445E2],[-0.14843982393025217E3,0.60530002080063724E2],[-0.14805069915954886E3,60.5672128],[-0.14796408843847146E3,0.60484892215061684E2],[-148.203557,60.3649215],[-148.197617,0.60167771841636416E2],[-0.14833311097452128E3,60.1220138],[-0.14843070253097852E3,59.9891341],[-148.643582,59.9568563],[-0.14884274478302476E3,59.9512203],[-0.14900425754553368E3,0.59979982527832206E2],[-149.121589,0.60033518906827595E2],[-0.14926659459167377E3,0.59998274764858095E2],[-149.395269,60.105732],[-0.14943221624105814E3,60.0010433],[-149.54916,59.8943331],[-0.14959804663068488E3,0.59770462256167704E2],[-0.14971385351986828E3,59.9196017],[-0.14979477881592402E3,59.855826],[-149.801291,59.7379537],[-0.15001595283559158E3,59.7769771],[-0.14996652534347174E3,59.6900533],[-150.198062,59.566545],[-0.15033815713255072E3,0.59581321623952554E2],[-0.15048532998972735E3,59.5352779],[-0.15060739084643438E3,59.5633919],[-0.15067746439647078E3,59.4269637],[-0.15085277598763105E3,59.3418526],[-150.934503,59.249095],[-0.15118275585861727E3,59.3007747],[-0.15117071484253285E3,59.2369002],[-0.15136636212782824E3,59.2455794],[-0.15161936903445235E3,59.187297],[-0.15173819991056743E3,59.1885274],[-0.15196405135961265E3,59.2851192],[-151.84995,0.59406353355559375E2],[-0.15169259566078088E3,0.59462185877220456E2],[-151.39959,59.5163155],[-0.15118942181346137E3,59.6376815],[-0.15104648418593843E3,59.7718026],[-0.15108942974421728E3,59.7894247],[-151.403672,59.6622469],[-151.512607,59.6512936],[-0.15176383101506084E3,0.59700028903871605E2],[-0.15185320479776703E3,0.59782085791767415E2],[-151.734506,0.59988332137525724E2],[-151.451473,60.2026534],[-0.15131267194023326E3,60.4664352],[-0.15135504620942783E3,0.60659860483454956E2],[-0.15132179059292486E3,60.7429061],[-150.953779,60.8412008],[-150.779472,60.9148092],[-0.15044125009302633E3,61.0235629],[-0.15034913796793055E3,61.0226291],[-0.15011305275384646E3,60.9328158],[-0.14985627478994962E3,60.9622702],[-0.14963246405143144E3,0.60951986959442465E2],[-149.075081,60.876412],[-0.14914223484571895E3,0.60935683247882984E2],[-149.459114,0.60964753073210694E2],[-0.14959249029502368E3,0.60993822898538404E2],[-0.14996773933277584E3,61.1217477],[-0.15005326515390948E3,61.1710983],[-0.14992676032730634E3,0.61213263824878176E2],[-149.829196,61.3075265],[-149.595978,61.4172799],[-0.14932907109552195E3,61.4973813],[-0.14969525091906092E3,61.4707174],[-0.14982374427113047E3,0.61413357826651705E2],[-0.14994520911951403E3,61.2942441],[-0.15010891914773174E3,61.2679098],[-0.15047179208637894E3,61.2599777],[-0.15061224955023306E3,61.3011435],[-150.945484,61.1982235],[-151.150148,0.61085833400095154E2],[-151.281872,61.041954],[-151.593507,0.60979639548387965E2],[-0.15173396193433155E3,60.9107223],[-0.15178442488791677E3,60.8331369],[-0.15175047438613336E3,60.7548703],[-0.15199621932958982E3,60.6822396],[-0.15227072648117468E3,60.5281124],[-0.15226031418829706E3,0.60409438110620876E2],[-0.15236883439507346E3,60.3363461],[-152.653932,0.60238446893160535E2],[-152.797903,0.60247181024353125E2],[-152.923372,60.2928622],[-153.031274,0.60289236690019884E2],[-0.15275237536429424E3,0.60177494742397904E2],[-0.15263010851392704E3,60.0837704],[-0.15266010668401668E3,59.9972201],[-0.15275945605304088E3,59.9208871],[-0.15310604999936785E3,0.59875052103907564E2],[-0.15321121113619196E3,59.8427084],[-153.040085,59.8105074],[-0.15304814655477622E3,0.59730054539782614E2],[-0.15323617207464412E3,59.6709371],[-0.15338347402118126E3,59.6672127],[-0.15341440328261504E3,0.59740129003057504E2],[-0.15367071707413092E3,59.6348141],[-0.15360937765528706E3,59.6150167],[-153.814146,0.59473732508520264E2],[-0.15408831566183835E3,0.59363297933994986E2],[-0.15406748832950092E3,0.59336381429061994E2],[-0.15417833489134654E3,59.1555904],[-0.15412981102474942E3,59.1198519],[-0.15365637716879868E3,59.0386739],[-153.418279,0.58959967840484225E2],[-153.334409,58.8578829],[-0.15343760640850016E3,58.7548421],[-0.15361733725031723E3,58.6547127],[-153.861948,58.5878499],[-0.15401989555424785E3,58.492972],[-154.085888,0.58365838179148085E2],[-0.15428902764459255E3,58.3043477],[-0.15420805016347617E3,58.2887911],[-0.15424701317765783E3,58.159427],[-154.570585,58.1180525],[-0.15458492517785285E3,58.0556831],[-0.15500686336533516E3,58.0160445],[-0.15509926113497315E3,57.9133113],[-155.312736,57.8071175],[-0.15559024015760875E3,57.7336079],[-0.15577798003293452E3,57.5682197],[-0.15600018951406744E3,57.5449617],[-0.15605537933550863E3,0.57447578866775565E2],[-0.15624218811949038E3,0.57449204843400096E2],[-156.478402,0.57327871830959054E2],[-156.397631,57.2405855],[-0.15647514497652148E3,57.1052009],[-0.15662898653512445E3,57.0099824],[-0.15677988101109543E3,57.0056208],[-157.139137,56.8265547],[-157.390232,56.8098115],[-0.15748965825985098E3,56.7597358],[-0.15757838659575526E3,56.6344477],[-0.15786909034219622E3,56.6452253],[-0.15807830299666148E3,56.5520283],[-157.929993,56.5204756],[-0.15807096412919404E3,0.56510346165007334E2],[-158.414408,56.4358369],[-0.15853739694727997E3,0.56335421841928216E2],[-0.15838613992246698E3,0.56301572963683896E2],[-158.275656,56.196258],[-0.15850468790062212E3,0.56062103960408194E2],[-0.15859116678575688E3,56.1845246],[-158.704881,56.0431196],[-0.15878986277722328E3,55.9869135],[-159.429435,55.8427399],[-0.15952323041994518E3,55.8100007],[-0.15956762068042752E3,0.55695204532349685E2],[-0.15965965315464143E3,55.6259028],[-0.15966533857966303E3,0.55794894477558714E2],[-0.15974303389512684E3,55.8437727],[-159.962299,0.55794894477558714E2],[-0.16024380448307733E3,55.6605317],[-0.16037320420725186E3,55.6351093],[-160.499319,0.55537287045856765E2],[-160.625231,55.5523713],[-0.16077082690308401E3,55.4835419],[-0.16089673572136365E3,0.55513611507844274E2],[-161.099516,55.4057148],[-0.16138192632214754E3,55.3712946],[-0.16148052587424868E3,55.3978046],[-0.16144380956425437E3,55.5133039],[-0.16137272801857407E3,0.55556304380566594E2],[-0.16120209248350037E3,55.5435383],[-161.45877,0.55629132752485425E2],[-0.16159876074204027E3,55.5928339],[-0.16168356283878106E3,55.5299482],[-0.16174156928020287E3,55.3911359],[-0.16207397712979727E3,0.55139318280675454E2],[-0.16216658226638646E3,55.1437677],[-162.332928,55.0502301],[-0.16242790994359163E3,55.0615021],[-162.426824,55.1454157],[-0.16254188211590812E3,0.55242721604932484E2],[-162.64415,55.2180024],[-162.614307,0.55071466715587114E2],[-0.16267435389220168E3,54.9965949],[-162.865041,54.9545282],[-0.16299588527653754E3,55.0464618],[-0.16311962429492962E3,55.0646991],[-163.131123,54.9165485],[-0.16328863248008773E3,54.8375788],[-0.16327881344895147E3,55.121828],[-0.16311448269317097E3,55.1939423],[-0.16290658839813113E3,0.55195546310164175E2],[-0.16285713344018984E3,55.2530048],[-0.16265898127198642E3,0.55350783132492246E2],[-0.16234936181437462E3,55.5947455],[-162.157124,55.7194404],[-0.16193662193046578E3,55.824195],[-0.16169733420161106E3,55.9072077],[-0.16121563038684886E3,0.56021410599480866E2],[-0.16114514484949203E3,55.9513398],[-0.16089864734253035E3,0.55993637160921395E2],[-0.16100538501750052E3,55.8871577],[-160.851313,0.55771889105587384E2],[-0.16074550616237204E3,0.55771482611431274E2],[-0.16075839861891856E3,55.8546271],[-0.16053024828062547E3,0.55863460154002446E2],[-0.16043691941964335E3,55.8166914],[-0.16029170762211183E3,55.8050678],[-160.308506,55.8644709],[-160.527458,0.55965061720378266E2],[-160.514719,56.0591157],[-0.16030204575727177E3,56.3141303],[-0.15978507308130088E3,56.5616084],[-159.283089,0.56688577372978166E2],[-0.15899039348555652E3,56.860041],[-0.15891802104627226E3,56.8821565],[-0.15889489482468701E3,56.8164253],[-158.708836,56.7885749],[-0.15866591776517097E3,56.827928],[-158.660801,57.0394148],[-0.15858561319667785E3,57.1140889],[-158.320925,0.57297901126690746E2],[-0.15804569557354262E3,0.57409467293056075E2],[-0.15789433692519054E3,57.5113765],[-157.737188,0.57548169690925285E2],[-0.15764554052898103E3,57.4978084],[-157.46191,57.5062019],[-0.15757161627078997E3,57.540677],[-0.15768068030082935E3,57.6380818],[-0.15768398718572112E3,57.7439131],[-0.15762117285227018E3,57.8952278],[-0.15761086492951375E3,58.0508272],[-0.15755502966127048E3,0.58139970250610055E2],[-0.15744268346557857E3,58.1721822],[-0.15719370579494802E3,0.58194176795646605E2],[-0.15748839208548628E3,0.58253700723698465E2],[-157.523609,58.4213411],[-0.15746089879830473E3,58.5030135],[-0.15722884556679628E3,58.6409139],[-0.15697464939010734E3,58.7363411],[-0.15704048496390783E3,58.7725411],[-0.15680889865136254E3,59.1342769],[-0.15696336093752822E3,0.58988850898226616E2],[-0.15714203159864087E3,58.8776473],[-157.66572,58.748503],[-0.15802192665173743E3,0.58640188775551216E2],[-0.15819093483689556E3,58.6142501],[-0.15830257790756062E3,0.58641792779518724E2],[-0.15850318826677585E3,58.8503572],[-0.15842562204067232E3,58.9992879],[-0.15831449258086673E3,59.0093184],[-0.15808052772819167E3,58.9774361],[-0.15842280679398294E3,59.0898262],[-158.514427,59.0728304],[-0.15867826639845453E3,58.9293709],[-0.15880947337367454E3,58.9738655],[-0.15877555033771247E3,0.58902553287512745E2],[-158.861381,58.718763],[-0.15877211161687816E3,58.5203279],[-0.15878862406867998E3,58.4409517],[-0.15895070537369097E3,58.404554],[-0.15908268688507334E3,58.4697688],[-0.15935822675154142E3,58.7212789],[-0.15967027418776144E3,0.58911133610105715E2],[-0.15992020766897537E3,0.58819870178889914E2],[-0.16015259598350434E3,58.9059151],[-160.363124,59.0511763],[-0.16065664873710745E3,58.955057],[-160.817079,0.58871703676960955E2],[-0.16092427844702365E3,58.8724288],[-161.215916,58.8009627],[-0.16132810567190117E3,0.58743701963093734E2],[-161.361334,0.58669544245421065E2],[-0.16175544363986293E3,0.58612030815492744E2],[-0.16214492958611714E3,0.58644220758126934E2],[-0.16185647117057232E3,58.7170931],[-0.16172438666235982E3,58.794294],[-0.16178053366767546E3,58.8974117],[-0.16178867179054447E3,59.0163936],[-0.16164439108435707E3,59.1096785],[-161.89076,59.0760823],[-161.981037,0.59146153150321005E2],[-0.16202330955584287E3,0.59283976641906655E2],[-161.920137,59.3654732],[-0.16183169287983213E3,59.5145028],[-161.828695,59.5886165],[-0.16190863837837284E3,59.7141353],[-0.16213813454191256E3,59.9800375],[-0.16224249505004408E3,0.60178318717038785E2],[-0.16242134698557769E3,60.2839742],[-0.16213888298554465E3,60.6143331],[-0.16194659477020167E3,0.60684821421907124E2],[-0.16213803017179143E3,60.6855465],[-162.265025,60.5952169],[-0.16246870767464014E3,60.3946835],[-162.684974,0.60268955927527486E2],[-162.547721,60.2310531],[-162.500488,0.60126562123267476E2],[-162.570743,59.9897274],[-162.73262,59.9936495],[-162.877856,59.9227547],[-0.16321938565127425E3,0.59845597757080775E2],[-0.16368039122305947E3,59.8015206],[-0.16390688949219776E3,0.59806794044663114E2],[-0.16414284424363032E3,59.8967611],[-0.16413152695193887E3,59.9942208],[-164.470498,60.1493038],[-164.66227,60.3038155],[-0.16479996127309192E3,60.3072213],[-0.16506113376840645E3,0.60412536255270325E2],[-0.16502651035399964E3,0.60500646610193954E2],[-0.16535382878689612E3,60.5412191],[-0.16501599506429187E3,0.60740016736512636E2],[-0.16489979953373634E3,60.8731271],[-164.805155,60.8920456],[-0.16437006486387037E3,0.60795904189816504E2],[-0.16426565217067844E3,60.7246688],[-0.16437233903387903E3,60.5918551],[-0.16430968125560992E3,60.6067196],[-0.16399957015979575E3,60.7660543],[-0.16389492538041318E3,60.7451803],[-0.16372999998960032E3,0.60589976447585954E2],[-0.16352869474510476E3,60.6645626],[-0.16342094907449066E3,60.7574301],[-0.16362303022843972E3,60.8222274],[-163.906527,0.60853802141243904E2],[-163.586909,60.9029769],[-0.16374901732431016E3,0.60969718893712596E2],[-0.16399460983245808E3,60.8647116],[-0.16444155977016214E3,60.869985],[-164.75397,0.60931321675451045E2],[-165.065604,60.9206759],[-0.16517546848956485E3,60.9656869],[-0.16487556369296811E3,0.61086767238021444E2],[-0.16507707630441496E3,0.61094204982445795E2],[-165.12777,61.1924447],[-0.16520376103214798E3,61.152828],[-165.392043,0.61212308014294784E2],[-165.380778,61.1063009],[-0.16556588278058098E3,61.1023678],[-0.16569137961154019E3,61.299924],[-165.863953,61.3356845],[-0.16590627631773586E3,61.4037997],[-165.797109,61.491185],[-165.961311,61.5508737],[-166.09399,61.5067416],[-166.15272,61.5459628],[-0.16616809425985235E3,0.61650816331803775E2],[-0.16580891822076026E3,61.69608],[-166.019938,61.7482761],[-0.16607882347397623E3,61.8030978],[-0.16599138740496699E3,0.61834189141533265E2],[-165.612805,61.8693014],[-0.16570579779446322E3,0.61927430111887006E2],[-165.743934,62.0116953],[-165.70727,62.1004428],[-0.16544764791278948E3,62.3038986],[-0.16519451054351384E3,0.62473527544828386E2],[-0.16499971607197168E3,62.5338095],[-0.16477921359163636E3,62.4811521],[-164.844402,62.5810398],[-0.16468797762624192E3,62.6082749],[-164.589432,62.7093491],[-164.792701,62.6232053],[-0.16484541034098774E3,62.8009751],[-0.16476407168432047E3,62.970626],[-0.16467746233653415E3,63.0204709],[-164.375077,63.0539792],[-0.16452519731607725E3,0.63127620587358194E2],[-0.16440905534387338E3,63.2150608],[-0.16410760010166092E3,63.2617197],[-0.16394285598526903E3,63.2471958],[-0.16373622786459381E3,63.1928135],[-0.16361631208853498E3,63.1251706],[-0.16373785521450935E3,63.016417],[-0.16350435590750635E3,63.1058677],[-0.16335883511948455E3,63.0457615],[-163.062237,0.63079720194905946E2],[-0.16294772258549125E3,63.1150083],[-0.16280775675983946E3,0.63206579330604555E2],[-162.621489,63.2658066],[-0.16235980019978257E3,63.4525852],[-0.16228280251618128E3,0.63529192868301976E2],[-0.16211247597159783E3,0.63534180661461015E2],[-161.973984,63.4529477],[-0.16150543325434924E3,0.63468163813239535E2],[-0.16126601643613418E3,63.496981],[-161.099722,0.63557933103773316E2],[-0.16082650836272762E3,63.7293418],[-160.778553,63.8189463],[-160.90397,64.0311802],[-160.987532,64.2512693],[-0.16122010182256628E3,64.3965635],[-0.16138567403347218E3,64.4399375],[-0.16149070608093592E3,64.4337632],[-0.16141461202285728E3,64.526367],[-0.16119304798852642E3,64.5164244],[-160.931952,64.5791123],[-0.16083601703008256E3,64.6819444],[-0.16088696887528795E3,64.795554],[-0.16106323902361365E3,64.904],[-161.186901,64.9240501],[-0.16146636587004642E3,64.7948619],[-0.16175937125231744E3,64.8162522],[-161.868331,64.7426658],[-0.16217226631811698E3,64.6780662],[-162.334633,64.6128514],[-162.635726,64.450847],[-0.16271107020219608E3,64.3775132],[-162.807008,64.3742063],[-0.16287643504615073E3,64.5164244],[-0.16320388256840747E3,64.6520176],[-0.16330284329605948E3,64.605897],[-0.16317409176526917E3,64.5329588],[-0.16305174801060213E3,64.5197312],[-163.144352,64.4238206],[-163.486191,64.5498118],[-163.713103,64.588253],[-0.16430397111134909E3,64.5839134],[-0.16469182833439663E3,64.5074375],[-0.16476492449807367E3,64.5296519],[-164.899491,64.4606687],[-0.16513815754453802E3,64.4652171],[-165.446174,64.5128538],[-0.16614277351914038E3,64.5827818],[-0.16632511361398667E3,64.6257163],[-0.16648138315119792E3,64.728087],[-0.16640867425560197E3,64.8269529],[-0.16641523721361608E3,64.926533],[-166.550862,64.9529881],[-166.92841,65.1570591],[-0.16676252879180558E3,65.1349107],[-166.531018,65.15473],[-0.16645164315982908E3,65.2473338],[-0.16627966454609083E3,65.2737889],[-0.16612148201442187E3,65.2607152],[-0.16619739479807942E3,65.3055723],[-166.609385,65.3527586],[-0.16666537668849014E3,65.3382896],[-0.16740398755650966E3,65.4221043],[-0.16798723388613183E3,65.567783],[-168.088364,65.6577501],[-0.16793057052337457E3,65.7481566],[-0.16791436980864515E3,65.6811839],[-0.16758005033788407E3,65.7583079],[-0.16740530591593492E3,65.8593382],[-167.074215,65.8770592],[-0.16674767115574076E3,66.0518297],[-0.16639872613510533E3,66.1444334],[-0.16621457741592238E3,66.1702733],[-166.008931,66.1213402],[-165.723677,66.1125511],[-165.560225,66.1670763],[-0.16584025946951436E3,66.2450572],[-165.776154,66.3190502],[-0.16544940435206536E3,66.4098961],[-165.06395,66.4378343],[-164.674129,66.5550035],[-0.16446049882728116E3,66.5884459],[-163.727675,66.6164501],[-0.16363822294752507E3,66.5746691],[-163.89397,66.5758885],[-0.16377547652331756E3,66.5311083],[-163.902859,66.3783763],[-163.89397,66.2869151],[-164.033754,66.215548],[-163.695378,66.0838219],[-163.171456,66.0754503],[-0.16288648616347754E3,66.0992247],[-0.16258686563813188E3,66.0508519],[-0.16221427941176069E3,66.0710558],[-0.16193367622112484E3,66.0428978],[-0.16181631888632577E3,66.0536424],[-0.16155685201851776E3,66.2505284],[-161.455411,66.281411],[-0.16120108448785643E3,66.2193712],[-161.109231,66.2395201],[-0.16103430103422858E3,66.1888072],[-0.16112029102774318E3,66.3343211],[-0.16154442373435222E3,66.4070287],[-0.16182815253545883E3,66.3708287],[-0.16191690696389333E3,66.4118407],[-0.16188758033313596E3,66.4930736],[-0.16219117928270566E3,66.6931346],[-0.16231773492107823E3,66.7337072],[-0.16246744150027547E3,66.7356407],[-0.16260743341845753E3,66.8943932],[-162.361609,66.9473143],[-0.16225355278972364E3,66.918629],[-0.16213141640200794E3,66.80135],[-162.01765,66.7841124],[-0.16205072319214253E3,66.6672728],[-0.16190959556224726E3,66.5596068],[-161.591036,66.4595104],[-0.16133593480427984E3,66.4963585],[-0.16104812183553705E3,66.474232],[-0.16078449389579288E3,66.3843749],[-0.16065054857818328E3,66.3731029],[-0.16023171128193252E3,66.4202892],[-0.16026256363906646E3,66.5724498],[-0.16036087754662537E3,66.6125279],[-160.643781,66.6049803],[-0.16086402392812363E3,66.6708654],[-161.051456,66.6527819],[-161.39805,66.5518505],[-0.16157173437382178E3,66.591599],[-0.16185667853752358E3,66.7003197],[-161.878745,66.8039318],[-161.622196,66.9793175],[-0.16171994269246375E3,67.0205602],[-161.965431,67.0495531],[-0.16239152871661793E3,67.01989],[-0.16240940896632338E3,67.1039684],[-0.16258311930009842E3,67.0184948],[-0.16276140269312978E3,67.0364244],[-163.001698,67.0272838],[-0.16353182172886662E3,67.1025731],[-163.72057,67.1955394],[-0.16379978926838564E3,67.2709826],[-0.16394270080337833E3,67.4775915],[-0.16412516998758502E3,67.6067248],[-0.16538602284940345E3,68.0455846],[-165.959581,68.1558874],[-166.235946,68.2779565],[-0.16678630046019285E3,68.3595959],[-0.16654590036557312E3,68.4243493],[-166.647859,68.3738122],[-0.16657039575835324E3,68.3610681],[-0.16638053689490954E3,68.4251293],[-0.16628294533845235E3,68.573236],[-0.16618204689710336E3,68.7971923],[-0.16620907463861292E3,68.8853576],[-0.16550947896983558E3,68.8675817],[-0.16504395115056337E3,68.8824572],[-164.889698,68.9024633],[-0.16430236848067275E3,68.936488],[-0.16386792510472506E3,69.0366613],[-163.535671,69.1700903],[-0.16316145611415237E3,69.3879602],[-0.16309355373729446E3,69.610708],[-0.16295211574361784E3,69.7581225],[-0.16235039452925773E3,70.0941174],[-0.16188096656335244E3,70.3317517],[-0.16176107687982395E3,70.2576489],[-162.073874,70.161969],[-0.16176815619527957E3,70.196543],[-0.16163899130387762E3,70.2345227],[-0.16099626636480892E3,70.3045935],[-0.16064765642719402E3,70.4205652],[-0.16063411852384553E3,70.4463941],[-0.16011714584787467E3,70.5911939],[-0.15996315048067208E3,70.5681446],[-160.106396,70.4725745],[-160.005552,70.4475366],[-0.16009507980699385E3,70.3332788],[-159.907546,70.3314661],[-159.865688,70.2788416],[-0.15981499434709065E3,70.497096],[-159.683296,70.4771668],[-0.15938675275360606E3,70.5245288],[-0.15974621443724033E3,70.5304505],[-159.961832,70.6340625],[-160.081594,70.6348645],[-0.15968089522088144E3,70.7867945],[-0.15931450665710014E3,70.8785193],[-0.15918317059251976E3,70.8319593],[-0.15933985486363355E3,70.7812574],[-0.15925115399355064E3,70.7484522],[-158.996285,70.801593],[-158.620934,70.7990332],[-158.484377,70.8410559],[-157.998465,70.8452857],[-0.15760562170421608E3,70.9412513],[-0.15719530979891545E3,71.0932801],[-0.15697335849650335E3,71.2300159],[-156.783292,71.3189502],[-0.15647023683424445E3,71.4076868],[-0.15656723238237805E3,71.3415381],[-0.15646997865552362E3,71.2915613],[-0.15581115599855562E3,71.1884217],[-0.15564558378764963E3,71.1827857],[-155.579438,71.1210865],[-155.634578,71.0615845],[-0.15580433348852972E3,70.9954358],[-0.15614658783508173E3,70.927815],[-0.15597352294810878E3,70.8419788]]]]}}],"_labels":{"US-AK":"Alaska"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-AL.json b/src/api-umbrella/admin-ui/public/maps/US-AL.json new file mode 100644 index 000000000..95ef2ba10 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-AL.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-AL"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-88.0713356,30.2523398],[-88.1593141,30.2309165],[-88.2897218,0.30232937936041274E2],[-88.3162538,0.30240452584765354E2],[-88.2639369,0.30254712839215603E2],[-88.1093703,0.30273730173925447E2],[-88.0713356,30.2523398]]],[[[-87.5661952,0.30795635711412665E2],[-87.4216591,30.6715891],[-87.4082777,0.30641464562953395E2],[-87.4338099,30.5459384],[-87.4293825,30.4778562],[-87.4448073,0.30442557084662617E2],[-87.4801063,0.30411707474110717E2],[-87.4895106,0.30377682814609663E2],[-87.5132521,30.3681247],[-87.6222694,0.30264765329833487E2],[-88.005934,30.2309165],[-87.985016,0.30254383249359314E2],[-87.9039809,0.30259085397976186E2],[-87.7902943,0.30291791698051984E2],[-87.8132887,0.30346877149372098E2],[-87.8571132,0.30407389846992935E2],[-87.8976308,0.30414135452719034E2],[-87.9242836,0.30449643266573553E2],[-87.9229982,30.56155],[-87.948871,30.6269187],[-88.0113173,30.694177],[-88.032422,0.30681224085954547E2],[-88.0783669,30.5661972],[-88.1165553,30.415322],[-88.1354408,0.30366597609108673E2],[-88.2492152,0.30363180860931482E2],[-88.3499269,30.3734641],[-88.3995851,0.30370805372941057E2],[-88.4127577,0.30576579306571976E2],[-88.4861904,0.31890511241460107E2],[-88.089474,0.34893063846232856E2],[-88.0847719,34.933109],[-88.19079,0.35012045784365405E2],[-88.2031386,0.35024196663735104E2],[-88.1904274,35.0249987],[-85.6236036,0.35000861701907475E2],[-85.2009705,32.9562291],[-85.1763172,32.8982212],[-85.1565308,0.32804277145458194E2],[-85.0150379,0.32526158238364374E2],[-84.9739051,32.4092857],[-84.9859681,32.3609458],[-84.9684998,32.319813],[-84.9215332,32.2858872],[-84.9296961,32.2465562],[-84.9929773,32.2018308],[-85.0346265,32.1473716],[-85.0644104,32.0505271],[-85.1241321,31.8805357],[-85.1248243,0.31776769782043154E2],[-85.067201,0.31635386720009155E2],[-85.0548853,0.31572676756679474E2],[-85.0926014,0.31295711414082824E2],[-85.0674427,31.1175791],[-85.0072815,31.0016733],[-85.3300049,0.31001102027844407E2],[-87.593694,0.31000739479002437E2],[-87.6074379,30.9293283],[-87.6010548,0.30860597872093898E2],[-87.5661952,0.30795635711412665E2]]]]}}],"_labels":{"US-AL":"Alabama"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-AR.json b/src/api-umbrella/admin-ui/public/maps/US-AR.json new file mode 100644 index 000000000..03b149b03 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-AR.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-AR"},"geometry":{"type":"Polygon","coordinates":[[[-89.7047719,0.36001573410003466E2],[-89.6891714,35.9435986],[-89.7037722,35.9069042],[-89.7635927,35.8887658],[-89.7635927,35.8280444],[-89.7796548,35.8057421],[-89.8945608,35.7505028],[-89.9435049,35.6791357],[-89.92652,35.5916515],[-89.9673452,35.5033105],[-90.0660244,0.35414112450093604E2],[-0.9010788231297539E2,35.3142028],[-90.0929189,35.2035924],[-0.9014226952131835E2,35.1142955],[-90.255956,35.046389],[-0.9029376000561291E2,35.0044762],[-0.9028210351102763E2,34.9453038],[-90.3199404,0.34899161258574814E2],[-90.41595,34.8516234],[-0.9046757470950901E2,34.8052611],[-90.4747598,34.7600524],[-90.4972158,34.7380907],[-0.9053924951693075E2,0.34728170041114474E2],[-90.5638479,34.6611644],[-90.5840078,34.5037084],[-90.6354238,34.4138732],[-0.9071810694562859E2,34.3917027],[-90.7623379,34.3564256],[-0.9076811671316129E2,34.3081078],[-90.8172146,0.34252220315927225E2],[-90.9097195,0.34188763282256474E2],[-0.9094025050879017E2,34.1285582],[-90.9087857,34.0715611],[-0.9094310695421169E2,34.0296812],[-91.0431485,0.34002863616961854E2],[-91.0701748,33.9742003],[-0.9103818264143231E2,0.33901393886528645E2],[-0.9105270656776761E2,33.8275987],[-0.9110029934302057E2,0.33767448568918994E2],[-0.9118412502981201E2,0.33715670002490675E2],[-91.207482,33.6756688],[-91.1703701,33.6474559],[-0.9117272122078327E2,33.6166832],[-91.2145791,33.5834056],[-91.192958,0.33522530346685464E2],[-0.9115433010680043E2,0.33500206127083835E2],[-91.1410147,33.4385069],[-91.1684585,0.33359460272105494E2],[-0.9116333889620657E2,0.33294454166110036E2],[-91.1067813,33.2179234],[-0.9115285793877555E2,0.33040571099784536E2],[-91.1499575,33.0159178],[-91.3461734,33.0151927],[-0.9404130653528927E2,33.0119957],[-94.047327,0.33554434644777494E2],[-94.098798,33.5773302],[-94.1915336,33.5890086],[-94.2384562,33.5812083],[-0.9429467873733739E2,33.5874595],[-0.9433255959815743E2,33.5650365],[-94.3779551,33.5661131],[-94.3901225,33.5856029],[-94.4320078,33.5997313],[-94.484149,33.6484337],[-94.439138,35.3872509],[-0.9461837992156065E2,0.36500869083346984E2],[-90.1622427,0.36500869083346984E2],[-90.1180776,0.36422536560827545E2],[-0.9007447288787279E2,36.3718347],[-0.9007565941135553E2,36.2967211],[-90.1492788,36.2159277],[-0.9021616356710595E2,0.36178409354249204E2],[-90.2525503,36.137738],[-90.3030435,36.0993737],[-90.3810684,35.9927404],[-89.7047719,0.36001573410003466E2]]]}}],"_labels":{"US-AR":"Arkansas"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-AZ.json b/src/api-umbrella/admin-ui/public/maps/US-AZ.json new file mode 100644 index 000000000..9e7f3e4a7 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-AZ.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-AZ"},"geometry":{"type":"Polygon","coordinates":[[[-0.10904667026687814E3,0.37000845909060224E2],[-0.10904742283038343E3,31.6832322],[-0.10904780735188243E3,31.3278794],[-0.11104197429807103E3,0.31324209950326228E2],[-0.11483595454533896E3,32.5083274],[-114.787999,32.5648081],[-0.11472090021966095E3,32.7244834],[-0.11458217584913461E3,32.7347227],[-0.11451646661811242E3,32.7727574],[-0.11447753106975215E3,32.8420042],[-0.11446900018563763E3,32.9123057],[-0.11449086297944037E3,32.983618],[-0.11455054620925618E3,33.0367918],[-0.11464808832723492E3,33.0717503],[-0.11470438776785913E3,33.1697813],[-0.11471942805163604E3,33.3308629],[-0.11470170161053014E3,0.33417808663003164E2],[-0.11465115900606303E3,33.4306187],[-0.11460261042022667E3,33.4698948],[-0.11455600092137834E3,33.5356261],[-0.11449925653444811E3,33.6858751],[-114.495098,33.7846532],[-0.11450905084634518E3,33.9039207],[-0.11441828179991387E3,0.34051148530913174E2],[-114.32932,34.1420274],[-0.11416351433414056E3,34.2533629],[-0.11412561150066341E3,34.2865086],[-0.11415879021286656E3,0.34355217146028046E2],[-114.308028,34.4328905],[-0.11437102410768144E3,0.34488492297596544E2],[-0.11439800103742147E3,0.34589698356144716E2],[-0.11455747308940326E3,34.7945714],[-0.11461093256409882E3,34.907401],[-0.11461052057677838E3,34.9976097],[-0.11459098688462704E3,35.3527758],[-0.11464852778037671E3,35.4759215],[-0.11466206293714303E3,0.35545355130881354E2],[-0.11464516596384222E3,35.6305431],[-0.11467707575509849E3,35.7298046],[-114.687101,0.35917341229055914E2],[-0.11474136225657435E3,36.0135155],[-114.715759,36.0849816],[-0.11466914362588973E3,0.36121719898961665E2],[-0.11459297541009344E3,36.1475597],[-0.11450527704249025E3,0.36156425710832444E2],[-0.11440608697522985E3,0.36148306814038364E2],[-0.11433154473605819E3,36.1162927],[-114.281573,36.0603283],[-0.11423214592855547E3,36.0316979],[-0.11418320732805587E3,36.0303027],[-114.119437,36.076665],[-0.11406192375409329E3,36.1752123],[-0.11404287895356211E3,36.1817712],[-0.11404026970053292E3,37.0041528],[-0.10904667026687814E3,0.37000845909060224E2]]]}}],"_labels":{"US-AZ":"Arizona"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-CA.json b/src/api-umbrella/admin-ui/public/maps/US-CA.json new file mode 100644 index 000000000..81e34f237 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-CA.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-CA"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-0.11835039315596671E3,32.8276121],[-0.11847320382959677E3,0.32838928025686265E2],[-0.11859016977644157E3,33.0111607],[-0.11835039315596671E3,32.8276121]]],[[[-0.11943802869550358E3,33.2171983],[-119.543679,33.2246141],[-0.11957517652788373E3,33.2783262],[-0.11947879896073064E3,33.2746348],[-0.11943802869550358E3,33.2171983]]],[[[-118.347965,33.3857615],[-0.11829747750453397E3,0.33312131168737466E2],[-0.11844630380415656E3,33.317086],[-0.11855484873017227E3,33.4770799],[-118.347965,33.3857615]]],[[[-0.12004357315219701E3,33.9188621],[-0.12016713089616815E3,0.33918082119587105E2],[-0.12025190690037864E3,34.013839],[-0.12007184097554097E3,34.0265062],[-0.11998393936085964E3,0.33973332365835326E2],[-0.12004357315219701E3,33.9188621]]],[[[-0.12030660233703546E3,34.0248692],[-120.441558,34.0329332],[-0.12036773576221906E3,0.34073296969258045E2],[-0.12030660233703546E3,34.0248692]]],[[[-0.11988239272612653E3,0.34079680026142164E2],[-0.11967886549668292E3,34.0284618],[-0.11956912855402027E3,34.0529613],[-119.562207,34.00661],[-119.809581,33.9677953],[-0.11988551833659731E3,0.33994931487753014E2],[-0.11988239272612653E3,0.34079680026142164E2]]],[[[-0.12422840851691392E3,42.000768],[-120.000809,0.42000559234549776E2],[-0.12000006179799806E3,39.0002588],[-0.11812627205366707E3,37.6923804],[-0.11665959169986613E3,36.5899682],[-0.11461054254943551E3,34.9911168],[-0.11461093256409882E3,34.907401],[-0.11455747308940326E3,34.7945714],[-0.11439800103742147E3,0.34589698356144716E2],[-0.11437102410768144E3,0.34488492297596544E2],[-0.11415879021286656E3,0.34355217146028046E2],[-0.11412561150066341E3,34.2865086],[-114.32932,34.1420274],[-0.11441828179991387E3,0.34051148530913174E2],[-0.11450905084634518E3,33.9039207],[-0.11449925653444811E3,33.6858751],[-0.11455600092137834E3,33.5356261],[-0.11465115900606303E3,33.4306187],[-0.11470170161053014E3,0.33417808663003164E2],[-0.11471942805163604E3,33.3308629],[-0.11470438776785913E3,33.1697813],[-0.11464808832723492E3,33.0717503],[-0.11449086297944037E3,32.983618],[-0.11447753106975215E3,32.8420042],[-0.11458217584913461E3,32.7347227],[-0.11483905818315262E3,0.32704719036191584E2],[-0.11712827396872154E3,32.5333653],[-0.11713739262141314E3,0.32649172159072656E2],[-0.11724348210299917E3,32.6640257],[-0.11727068974563866E3,32.8062657],[-0.11726296635667214E3,32.9388707],[-0.11731882634415459E3,0.33100051082522334E2],[-0.11746742193087772E3,0.33295486880993245E2],[-0.11778851386207177E3,33.5384715],[-117.952095,0.33619605545701155E2],[-118.080514,33.7221519],[-118.264403,33.7586156],[-118.294171,0.33712308185956175E2],[-118.410439,33.7439378],[-0.11839294869958225E3,33.8582945],[-0.11850619577421475E3,34.0174095],[-118.598854,34.0350316],[-0.11883204478566836E3,34.0244627],[-0.11914373241962858E3,34.1120238],[-0.11923584179814226E3,34.1641209],[-0.11926764721927745E3,34.2574388],[-119.413688,0.34338572858283804E2],[-119.606054,34.418004],[-0.11971320326654751E3,0.34399656844988954E2],[-119.853301,34.4119615],[-0.12005297744943074E3,34.4692662],[-0.12039647050452618E3,0.34459554308211345E2],[-0.12048119157709397E3,0.34471639269609874E2],[-0.12064469561165139E3,34.5799864],[-0.12062490374077922E3,0.34811984741577355E2],[-0.12066301531449872E3,34.9492919],[-120.63361,35.0764586],[-120.707043,35.1576476],[-0.12085737445277228E3,35.2096898],[-0.12088488971261094E3,35.2749486],[-0.12086029132300074E3,35.365443],[-0.12089958942020299E3,35.4251208],[-0.12102283954697495E3,35.4807775],[-0.12113794880429563E3,35.6071313],[-0.12128383076786842E3,0.35676323153455506E2],[-0.12134385457386908E3,35.7922289],[-0.12166435324332171E3,0.36154041677538466E2],[-0.12187741111277737E3,36.3310644],[-121.910178,36.4329186],[-0.12191864829696756E3,36.5723461],[-0.12179000388288054E3,0.36732285107799804E2],[-0.12180744467944432E3,0.36851234086946675E2],[-121.880669,0.36938937947714216E2],[-0.12216421471258523E3,0.36990969199699016E2],[-0.12239490014618984E3,37.2075207],[-0.12240846826194185E3,37.3731726],[-0.12249923730837314E3,37.5426147],[-0.12251422266050727E3,37.7719873],[-0.12238410058523101E3,37.7885437],[-0.12236970849483824E3,0.37655861803187655E2],[-0.12216599999097365E3,37.5016687],[-0.12207052879592547E3,0.37478278788600946E2],[-0.12212414207922068E3,37.5438122],[-0.12222220055464092E3,37.732041],[-0.12229599023030737E3,37.7903564],[-0.12238544641047763E3,0.37960578611686735E2],[-122.217031,38.040647],[-0.12208672813736375E3,38.0496118],[-121.716857,38.0340662],[-0.12162572531216074E3,38.0839331],[-0.12188077292931186E3,38.0750122],[-0.12203151085010113E3,38.1235169],[-0.12215377770046837E3,38.065531],[-0.12239335107386513E3,38.1448084],[-0.12248388940739706E3,38.1088391],[-0.12249489221543395E3,37.9535803],[-0.12246691003663213E3,37.8382129],[-122.521325,0.37826402581177724E2],[-0.12268069849693596E3,0.37902340084074474E2],[-0.12293199977605359E3,38.0554565],[-0.12299879116043739E3,0.37988615722131236E2],[-0.12296815029012792E3,0.38097006839547284E2],[-0.12297760402584015E3,38.2273267],[-0.12287680995461233E3,38.123363],[-0.12290815394994861E3,38.1965869],[-0.12304618068861234E3,38.3050549],[-0.12312116238092578E3,38.4492835],[-0.12328973111294215E3,0.38535866719569704E2],[-0.12342478604973473E3,0.38675623804979146E2],[-0.12370112517160436E3,38.9072925],[-0.12371952177875143E3,39.1109681],[-0.12382029387732213E3,39.3683997],[-0.12377778777218505E3,39.5149573],[-0.12378350066302792E3,39.6187232],[-0.12383292815514787E3,39.7755091],[-0.12388447600867674E3,39.860796],[-0.12410851471351222E3,40.0945301],[-0.12432403352056173E3,40.2519642],[-0.12437165376163607E3,40.4912025],[-0.12428367524265502E3,0.40710533550573565E2],[-0.12422000946874195E3,0.40696482036365644E2],[-0.12422248688582863E3,0.40775034285455895E2],[-0.12413309113046537E3,40.9697779],[-0.12414001251744814E3,0.41155886350765506E2],[-0.12406851898444738E3,41.3841713],[-124.117688,41.6217506],[-0.12416324310915458E3,41.7190016],[-0.12424460785835214E3,41.7879408],[-0.12420874298881996E3,41.8885536],[-0.12422840851691392E3,42.000768]]]]}}],"_labels":{"US-CA":"California"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-CO.json b/src/api-umbrella/admin-ui/public/maps/US-CO.json new file mode 100644 index 000000000..052bbfe01 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-CO.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-CO"},"geometry":{"type":"Polygon","coordinates":[[[-0.10202448921287035E3,40.0011243],[-0.10202376960835073E3,39.8135877],[-0.10202231941298285E3,39.4385804],[-0.10202157234264189E3,39.2510437],[-102.02082,0.39063529093214015E2],[-0.10202010017461699E3,0.38876025423951965E2],[-0.10201937507693303E3,38.6884888],[-0.10201792488156525E3,38.3134705],[-0.10201717781122429E3,0.38125944828932376E2],[-0.10201643074088322E3,0.37938430173341864E2],[-0.10201570564319938E3,37.7509265],[-0.10201498054551544E3,37.5633899],[-0.10201426094099583E3,37.3758532],[-0.10201353584331189E3,37.1883716],[-0.10201278327980658E3,0.37000845909060224E2],[-0.10904667026687814E3,0.37000845909060224E2],[-0.10904664829422101E3,0.37250850801409634E2],[-0.10904664829422101E3,0.37500833721101934E2],[-0.10904659336257832E3,0.38000832519472276E2],[-0.10904659336257832E3,38.2508484],[-0.10904656589675697E3,0.38500853290499656E2],[-0.10904654392409985E3,0.38750869169177626E2],[-0.10904654392409985E3,39.0008191],[-0.10904648899245716E3,39.5008399],[-0.10904648899245716E3,39.7508558],[-0.10904646701980003E3,0.40000871658267734E2],[-0.10904643955397869E3,0.40250876550617136E2],[-0.10904643955397869E3,40.5008595],[-0.10904641208815734E3,0.40750842390001814E2],[-0.10904639011550022E3,0.41000858268679785E2],[-0.10402165542675148E3,0.41000858268679785E2],[-0.10377208449437953E3,41.0008363],[-0.10352248609618624E3,41.0008033],[-103.272915,41.0007814],[-0.10302334423144234E3,41.0007484],[-0.10252417490087718E3,41.0007045],[-0.10227460396850526E3,41.0006495],[-0.10202500557031196E3,0.41000627555780326E2],[-0.10202495613183349E3,0.40875691027576885E2],[-0.10202480232323386E3,40.625818],[-0.10202474739159116E3,0.40500892429295114E2],[-0.10202469795311269E3,0.40375933928434534E2],[-0.10202454414451304E3,40.1260828],[-0.10202448921287035E3,40.0011243]]]}}],"_labels":{"US-CO":"Colorado"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-CT.json b/src/api-umbrella/admin-ui/public/maps/US-CT.json new file mode 100644 index 000000000..d72ba1774 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-CT.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-CT"},"geometry":{"type":"Polygon","coordinates":[[[-71.8008357,42.011963],[-71.7995613,41.8830275],[-71.798968,41.8285023],[-71.795793,41.5199513],[-71.8045271,41.4167457],[-71.8298726,41.3927406],[-71.8423531,41.3355128],[-71.929947,41.3410389],[-72.0738899,41.3261085],[-72.2652718,41.2916664],[-72.3710591,0.41312155887976765E2],[-72.4794173,0.41275780154167215E2],[-72.8471517,41.2658485],[-72.9247152,41.2851515],[-73.0237239,0.41216475952686245E2],[-73.1822677,41.1758375],[-73.582994,0.41021886101513154E2],[-73.6304659,40.9918605],[-73.7230147,0.41104514278493376E2],[-73.484139,0.41218958862937164E2],[-73.5447286,41.2959511],[-73.5367196,41.3909059],[-73.5206466,41.5807936],[-73.4886104,0.41960612943963405E2],[-73.4805684,42.0555678],[-72.8076998,42.0340785],[-72.8064583,42.0080299],[-72.763326,0.42011237945894656E2],[-72.7576241,42.0340785],[-71.8016377,42.0227077],[-71.8008357,42.011963]]]}}],"_labels":{"US-CT":"Connecticut"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-DC.json b/src/api-umbrella/admin-ui/public/maps/US-DC.json new file mode 100644 index 000000000..d898da3af --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-DC.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-DC"},"geometry":{"type":"Polygon","coordinates":[[[-77.0303611,0.38889252963519105E2],[-77.122053,38.9435364],[-77.0421164,39.0117835],[-76.9312424,0.38888220248635896E2],[-77.0197373,38.8065259],[-77.0303611,0.38889252963519105E2]]]}}],"_labels":{"US-DC":"District of Columbia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-DE.json b/src/api-umbrella/admin-ui/public/maps/US-DE.json new file mode 100644 index 000000000..87eeb9bd5 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-DE.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-DE"},"geometry":{"type":"Polygon","coordinates":[[[-75.4210287,39.8154224],[-75.4644028,0.39780936347143474E2],[-75.5021298,39.7173914],[-75.5876034,39.6407838],[-75.5672677,39.552992],[-75.5738815,0.39476944636328334E2],[-75.4126571,39.281377],[-75.3921676,39.0927527],[-75.3104074,0.38966563757483904E2],[-75.1850644,38.8193909],[-75.0886923,38.777533],[-75.0839901,38.7228101],[-75.1284848,0.38632447533800814E2],[-75.1871078,38.591128],[-75.1108627,38.5993787],[-75.072883,38.5787354],[-75.035881,38.5033362],[-75.0376608,38.4555896],[-75.7070248,38.4550733],[-75.7847201,39.7223572],[-75.7091452,0.39802898017903125E2],[-75.634581,39.8394825],[-75.5104465,0.39843437570230826E2],[-75.4210287,39.8154224]]]}}],"_labels":{"US-DE":"Delaware"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-FL.json b/src/api-umbrella/admin-ui/public/maps/US-FL.json new file mode 100644 index 000000000..f647d7445 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-FL.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-FL"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-81.7838378,0.24544579564750713E2],[-81.7838378,0.24544579564750713E2],[-81.7838378,0.24544579564750713E2],[-81.7838378,0.24544579564750713E2]]],[[[-81.566693,24.5998957],[-81.566693,24.5998957],[-81.566693,24.5998957],[-81.566693,24.5998957]]],[[[-81.3347936,0.24650487771915756E2],[-81.3647973,0.24629943337538315E2],[-81.4200915,0.24749990949539672E2],[-81.3223131,0.24685083720501133E2],[-81.3347936,0.24650487771915756E2]]],[[[-81.0441942,24.7168122],[-81.0441942,24.7168122],[-81.0441942,24.7168122],[-81.0441942,24.7168122]]],[[[-80.8294005,0.24803681137134596E2],[-80.8294005,0.24803681137134596E2],[-80.8294005,0.24803681137134596E2],[-80.8294005,0.24803681137134596E2]]],[[[-80.6383043,0.24903184314758512E2],[-80.6383043,0.24903184314758512E2],[-80.6383043,0.24903184314758512E2],[-80.6383043,0.24903184314758512E2]]],[[[-80.3818285,0.25142290769192233E2],[-80.5805821,0.24954237783502982E2],[-80.4560192,0.25149322019460477E2],[-80.3549339,0.25233653077364952E2],[-80.3512865,25.2969563],[-80.2570567,0.25347603277024255E2],[-80.3818285,0.25142290769192233E2]]],[[[-82.0371825,26.4536299],[-82.0728442,0.26427537400251744E2],[-82.1843884,0.26480941943304607E2],[-82.2013842,0.26548046438051905E2],[-82.1160644,0.26460913866368678E2],[-82.0371825,26.4536299]]],[[[-82.0837646,0.26552331106184106E2],[-82.0852148,0.26493598193787353E2],[-82.1691393,0.26700723445829233E2],[-82.1211291,26.6655342],[-82.0837646,0.26552331106184106E2]]],[[[-80.1867552,0.27278439532320412E2],[-80.262462,0.27375569662978794E2],[-80.3760716,0.27643427339212316E2],[-80.436892,0.27850552591254193E2],[-80.1867552,0.27278439532320412E2]]],[[[-84.9078882,0.29642631517038435E2],[-85.0005469,29.6271847],[-84.7371717,29.7324448],[-84.9078882,0.29642631517038435E2]]],[[[-82.3992809,0.30575030234247258E2],[-82.2398803,30.5656809],[-82.1942321,30.3934372],[-82.061759,30.4045993],[-82.0218346,0.30559869100856396E2],[-82.0381933,0.30731969937499663E2],[-81.935592,30.819509],[-81.6733593,30.7402426],[-81.5039391,0.30731431607401042E2],[-81.4571923,0.30640761437926574E2],[-81.3857262,30.2699838],[-81.3371007,0.30141213079026574E2],[-81.2495067,0.29793792411476606E2],[-81.1045311,0.29456962564643252E2],[-80.9000206,0.29049853174113228E2],[-80.5241234,0.28486089724873047E2],[-80.567816,0.28426455933535696E2],[-80.5728588,0.28180867545261016E2],[-80.4568871,0.27900672222072394E2],[-80.499547,27.9344662],[-80.6100145,28.1776046],[-80.6228795,0.28320360958785336E2],[-80.6069383,0.28522882939167182E2],[-80.6328771,0.28518026981950673E2],[-80.6934886,28.3449593],[-80.731754,0.28462919557973528E2],[-80.6884569,28.5785397],[-80.7659435,0.28632823128907948E2],[-80.7710082,28.7324581],[-80.8381896,0.28757649793825994E2],[-80.7486071,0.28381005492348784E2],[-80.6501146,28.1809115],[-80.2261083,0.27207050369440914E2],[-80.1257701,27.0830037],[-80.0500414,26.8076973],[-80.0413072,26.5686128],[-80.110587,0.26131587681930846E2],[-80.1263744,25.8335176],[-80.1589269,0.25878341822660992E2],[-80.3008263,0.25618537125250192E2],[-80.3277538,0.25427078377712228E2],[-80.36692,0.25331266606479197E2],[-80.4846385,0.25229829835031573E2],[-80.5576317,0.25232411622239418E2],[-80.7365441,0.25156342283400072E2],[-80.8622167,25.1761946],[-81.0119713,0.25133249020800456E2],[-81.1104967,25.13805],[-81.1673949,0.25228533448263327E2],[-81.0976537,0.25319148686095083E2],[-80.9653673,0.25224303711773906E2],[-80.9803527,25.311656],[-81.1133092,0.25367235846132537E2],[-81.2271276,0.25583402846566194E2],[-81.3450768,0.25731817158868346E2],[-81.3649291,0.25831034691950087E2],[-81.5682421,0.25891547389570935E2],[-81.7155028,0.25983173369628695E2],[-81.8114904,26.1461006],[-81.8665758,0.26434997117333218E2],[-81.9589489,0.26489928760053694E2],[-81.8286401,26.6870565],[-81.9205517,26.6314217],[-81.9701879,26.5520455],[-82.0396105,26.5520455],[-82.0778759,26.7043379],[-82.0669225,26.891567],[-82.0132543,26.9615609],[-82.1811034,0.26936775700927647E2],[-82.180664,0.26840096009739604E2],[-82.2900659,0.26870813784348876E2],[-82.4413696,0.27059690744678992E2],[-82.6204577,27.4010689],[-82.7145886,0.27499583339584525E2],[-82.6358496,0.27524577237022378E2],[-82.4005444,27.8353805],[-82.4457092,27.9028475],[-82.4981359,27.867911],[-82.5796105,0.27958449323885752E2],[-82.6752026,0.27963766706901076E2],[-82.5965515,0.27873239359697784E2],[-82.6608874,0.27718409031525844E2],[-82.7428564,27.7093673],[-82.8435131,0.27846004251236955E2],[-82.7485363,0.28236798943878927E2],[-82.6606347,0.28485859011973595E2],[-82.6514831,0.28887486224560096E2],[-82.7693334,0.29051556055037597E2],[-83.2904699,0.29451897867184403E2],[-83.6943713,29.9259799],[-84.04422,0.30103793644005442E2],[-84.3096826,30.0647592],[-84.3753369,0.29982273863979177E2],[-84.3828296,29.9073691],[-84.5499756,29.8978659],[-84.8005518,29.7730722],[-84.8889258,0.29777609549531185E2],[-85.0292981,29.7210849],[-85.3189417,0.29680204760659286E2],[-85.3763563,29.6951901],[-85.4137977,0.29842472833255574E2],[-85.33641,0.29740124196538797E2],[-85.3068567,0.29797846366709454E2],[-85.3536255,0.29875750422415585E2],[-85.5042811,0.29975791930138126E2],[-85.6757996,0.30121932072431697E2],[-85.6102772,30.1483981],[-85.663418,0.30189454047663666E2],[-85.6035316,30.2867819],[-85.7408057,0.30244385690384142E2],[-85.7557911,0.30166997992119608E2],[-86.1751502,0.30332518017964908E2],[-86.4544337,0.30399128127927803E2],[-86.2400794,0.30429098832196022E2],[-86.1238331,0.30405796829354067E2],[-86.165691,0.30464244097208585E2],[-86.2573939,0.30493017291665574E2],[-86.4479518,30.4956101],[-86.6796424,30.4028964],[-87.2011525,0.30339230664705315E2],[-87.1237758,0.30396667190333908E2],[-86.9857985,30.4308566],[-86.9975758,0.30570328085630383E2],[-87.0720192,0.30500433063432897E2],[-87.1705885,30.5387863],[-87.184651,0.30453697221806298E2],[-87.281045,0.30339230664705315E2],[-87.4757667,0.30294274608302892E2],[-87.4895106,0.30377682814609663E2],[-87.4293825,30.4778562],[-87.4216591,30.6715891],[-87.5661952,0.30795635711412665E2],[-87.6010548,0.30860597872093898E2],[-87.593694,0.31000739479002437E2],[-85.0072815,31.0016733],[-84.883938,0.30720939663641378E2],[-82.3992809,0.30575030234247258E2]]]]}}],"_labels":{"US-FL":"Florida"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-GA.json b/src/api-umbrella/admin-ui/public/maps/US-GA.json new file mode 100644 index 000000000..d38c2fac1 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-GA.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-GA"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-81.4189818,0.30971438940775364E2],[-81.4634984,30.7277622],[-81.4846361,30.8978305],[-81.4189818,0.30971438940775364E2]]],[[[-83.1213574,0.35000554084708206E2],[-83.1704004,34.9329113],[-83.3167163,34.8056566],[-83.3555749,34.7083177],[-83.1665222,34.599597],[-83.0527807,0.34510860462512305E2],[-82.8477319,0.34436911485081986E2],[-82.8185852,34.3660167],[-82.5893444,34.0176183],[-82.3518969,33.8377281],[-82.2566235,0.33749233236192914E2],[-82.2083605,33.6635838],[-82.0057177,33.5228929],[-81.936394,0.33447284982486984E2],[-81.9328454,0.33389870429515504E2],[-81.8212792,33.2740965],[-81.7803222,0.33195291564671074E2],[-81.69932,0.33126758847213004E2],[-81.5782397,33.0685753],[-81.4897777,32.9356626],[-81.4338134,32.728032],[-81.3769701,0.32607468055919234E2],[-81.2903319,32.5572386],[-81.1715038,0.32380138945684855E2],[-81.1329528,32.2746702],[-81.1350182,32.1818577],[-81.0748131,32.1096995],[-80.8723461,32.0295652],[-80.9234325,0.31944893567753404E2],[-81.0455346,0.31892038341127808E2],[-81.1132872,0.31878624033975445E2],[-81.0650463,0.31813464119380434E2],[-81.0984008,31.7533799],[-81.1621215,31.7437229],[-81.1979039,0.31704216068337935E2],[-81.1699218,31.6103159],[-81.2423986,0.31574324705961125E2],[-81.2593505,31.5389268],[-81.1754259,0.31531302243382434E2],[-81.2579332,0.31436017815919463E2],[-81.2949791,31.3712095],[-81.3809472,0.31353257802996826E2],[-81.2884643,31.263906],[-81.3648742,0.31171895491390877E2],[-81.4417675,0.31199723861593036E2],[-81.4532152,31.0882785],[-81.5203966,30.8746494],[-81.5039391,0.30731431607401042E2],[-81.6733593,30.7402426],[-81.935592,30.819509],[-82.0129467,30.7780686],[-82.0381933,0.30731969937499663E2],[-82.0411596,0.30653219934495628E2],[-82.0218346,0.30559869100856396E2],[-82.0298217,0.30477702349675077E2],[-82.061759,30.4045993],[-82.1122741,0.30371354689368335E2],[-82.1942321,30.3934372],[-82.2398803,30.5656809],[-84.883938,0.30720939663641378E2],[-84.8868824,0.30759259977603204E2],[-85.0674427,31.1175791],[-85.0926014,0.31295711414082824E2],[-85.0548853,0.31572676756679474E2],[-85.067201,0.31635386720009155E2],[-85.1248243,0.31776769782043154E2],[-85.1241321,31.8805357],[-85.0346265,32.1473716],[-84.9296961,32.2465562],[-84.9215332,32.2858872],[-84.9859681,32.3609458],[-84.9739051,32.4092857],[-85.0150379,0.32526158238364374E2],[-85.1565308,0.32804277145458194E2],[-85.2009705,32.9562291],[-85.6236036,0.35000861701907475E2],[-84.32469,34.9880956],[-83.1213574,0.35000554084708206E2]]]]}}],"_labels":{"US-GA":"Georgia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-HI.json b/src/api-umbrella/admin-ui/public/maps/US-HI.json new file mode 100644 index 000000000..233f1e4a5 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-HI.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-HI"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-0.15558132475199528E3,19.0120183],[-155.680751,18.9676775],[-0.15588130645289172E3,19.0705205],[-155.905594,19.1258147],[-0.15589073821594684E3,0.19382543235022172E2],[-156.048686,0.19749959020522304E2],[-0.15582030211706856E3,20.0141802],[-155.892754,20.1673956],[-155.831621,0.20275819636285412E2],[-0.15562207304456533E3,0.20163418508950762E2],[-0.15519878903183624E3,0.19994382857971353E2],[-155.086083,0.19875631632738237E2],[-155.065929,19.7482012],[-0.15498903530069026E3,19.7319744],[-0.15495257716941666E3,0.19644644075098576E2],[-154.804188,19.5244427],[-0.15485028346434257E3,0.19454108179158418E2],[-0.15505347561076564E3,0.19319185078308358E2],[-155.309611,0.19260166521369463E2],[-0.15553522886400634E3,0.19109071544902527E2],[-0.15558132475199528E3,19.0120183]]],[[[-156.849595,0.20772632399377947E2],[-0.15697341068156396E3,0.20757548170286903E2],[-0.15705056492034697E3,0.20912466389087207E2],[-0.15694178378826768E3,0.20930044514757817E2],[-0.15680939028956493E3,0.20831134598875245E2],[-156.849595,0.20772632399377947E2]]],[[[-156.486826,20.9325714],[-156.277537,20.9512811],[-156.148346,0.20885494952511497E2],[-155.989854,20.7571307],[-156.107133,0.20644784494110358E2],[-156.309963,0.20598795722824725E2],[-156.438223,20.617868],[-156.480056,20.8012408],[-0.15661544863177596E3,0.20821829178598428E2],[-0.15668968050716626E3,0.20901414142571888E2],[-0.15665686709038727E3,0.21024504967579908E2],[-0.15658542299586495E3,0.21034326745298323E2],[-156.486826,20.9325714]]],[[[-0.15721360203594134E3,0.21215392426033567E2],[-156.712161,0.21155088468654974E2],[-156.85985,21.0563324],[-157.020874,21.0977838],[-0.15729031407500048E3,0.21112582363517866E2],[-0.15721360203594134E3,0.21215392426033567E2]]],[[[-0.15779935462176263E3,0.21456652200861903E2],[-0.15772088477013642E3,0.21457706888402136E2],[-0.15763541113406333E3,0.21307644626818337E2],[-0.15779878607926048E3,0.21268621187829687E2],[-0.15790175269695789E3,0.21340559667136453E2],[-0.15811034462386033E3,0.21318597996376802E2],[-158.239093,21.4893365],[-0.15827312356073392E3,21.5852472],[-0.15812310799104642E3,0.21600254501261766E2],[-0.15796249610747816E3,21.7013617],[-0.15779935462176263E3,0.21456652200861903E2]]],[[[-160.18001,0.21841074822948322E2],[-0.16022091172097367E3,21.8972699],[-0.16010063614265502E3,0.22015241089357833E2],[-160.048728,0.22004650268641335E2],[-160.080042,0.21907443233683203E2],[-160.18001,0.21841074822948322E2]]],[[[-0.15937277265053373E3,21.9323602],[-0.15946067426521506E3,0.21876132197332502E2],[-0.15960885786461785E3,0.21909519649778012E2],[-0.15978918196817634E3,0.22041806031777433E2],[-0.15972662581344625E3,0.22140199590218394E2],[-0.15957922224337014E3,22.2231354],[-0.15935205243489963E3,0.22219575813949525E2],[-159.300658,0.22105263065448174E2],[-0.15937277265053373E3,21.9323602]]]]}}],"_labels":{"US-HI":"Hawaii"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-IA.json b/src/api-umbrella/admin-ui/public/maps/US-IA.json new file mode 100644 index 000000000..0a5c8b47a --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-IA.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-IA"},"geometry":{"type":"Polygon","coordinates":[[[-90.650585,0.42512983570503415E2],[-90.5896328,0.42444802415558755E2],[-0.9048473535469495E2,0.42383257003054716E2],[-90.4104897,42.2720754],[-90.3465713,42.2148366],[-0.9016751610431275E2,42.1003041],[-0.9015244286155027E2,41.9815199],[-90.2177676,41.8131105],[-90.2760061,0.41770011130051884E2],[-90.3475271,41.6320338],[-0.9043667016731453E2,0.41560359022444956E2],[-0.9058673242889833E2,41.4947267],[-0.9075406519895337E2,0.41449825570962766E2],[-90.9387564,41.4255897],[-0.9104811428243613E2,41.369098],[-91.082106,41.2803175],[-91.0665054,41.2059071],[-0.9096382716984579E2,41.0825306],[-0.9095400539212739E2,41.0155799],[-91.000126,40.9046839],[-0.9110213405988745E2,40.7497877],[-91.2151284,0.40649559427153825E2],[-0.9133904324861233E2,40.6039772],[-0.9139418363157515E2,40.5366529],[-0.9139077786972643E2,40.3971266],[-91.4419522,40.3794496],[-0.9154548734828441E2,0.40469317721059376E2],[-91.6820474,40.551869],[-0.9173152983585013E2,40.6246534],[-95.7650285,40.6018678],[-95.8590001,40.7451075],[-95.838148,0.40777747908606266E2],[-95.8465965,41.0803334],[-0.9587088729355877E2,41.1878236],[-0.9591116866716567E2,41.2451832],[-95.8836259,0.41287557498366475E2],[-0.9594971969402695E2,0.41367428106882095E2],[-95.9435674,41.4609327],[-0.9599095687821715E2,41.5204896],[-0.9605862716888451E2,41.5457802],[-96.0777708,41.6112807],[-96.068806,41.7343275],[-0.9608663681350767E2,41.8213722],[-96.1312303,0.41872436671068506E2],[-0.9615420273405387E2,41.9652931],[-0.9629533311053129E2,42.1329115],[-96.356104,42.2601332],[-96.3837511,0.42417776047340276E2],[-96.4809526,42.5112587],[-96.5387023,0.42658585382698355E2],[-96.6217699,42.7295351],[-96.6160845,42.7913881],[-0.9656257555236645E2,42.8585695],[-0.9646268785324355E2,0.43099181102630716E2],[-0.9649028001738203E2,0.43205528762937554E2],[-96.5553905,0.43231676224872466E2],[-0.9654164659648993E2,43.3734548],[-96.5986217,43.4975014],[-96.4536186,0.43501170864059176E2],[-91.245253,0.43502412319184636E2],[-91.218688,43.3952846],[-91.1171963,43.3311574],[-91.106968,43.2780275],[-91.1475845,0.43199585159195216E2],[-0.9116132839808301E2,43.1023342],[-0.9111759182414903E2,42.8816518],[-91.0695816,42.7885536],[-90.959949,0.42720339535444644E2],[-0.9078874903816711E2,42.6769326],[-0.9068787256947525E2,42.6103224],[-90.650585,0.42512983570503415E2]]]}}],"_labels":{"US-IA":"Iowa"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-ID.json b/src/api-umbrella/admin-ui/public/maps/US-ID.json new file mode 100644 index 000000000..5c87a7ea0 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-ID.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-ID"},"geometry":{"type":"Polygon","coordinates":[[[-0.11105143352694748E3,44.4988833],[-111.050296,42.0008778],[-0.11385555106555672E3,42.0011086],[-0.11701667484337055E3,0.42000559234549776E2],[-0.11702023990698312E3,43.8084365],[-0.11695763431377463E3,0.43964134748907306E2],[-0.11694396732106578E3,44.0376772],[-0.11696068301994559E3,44.0791177],[-0.11691131045946844E3,44.1574062],[-0.11691242007865138E3,44.1994729],[-0.11695319034387853E3,44.2453079],[-0.11702895206551861E3,44.2755422],[-0.11713974369572155E3,44.2902639],[-0.11719731205729265E3,0.44343800290734144E2],[-0.11720170109554591E3,44.4362063],[-0.11711891910996617E3,44.5783145],[-116.948955,44.7701138],[-0.11685585696614214E3,0.44905740009436094E2],[-0.11683955325458265E3,44.9851602],[-116.737342,45.1688406],[-0.11654915712534087E3,0.45456737344908134E2],[-0.11647704286477743E3,45.6410879],[-0.11652091676781825E3,45.7219144],[-0.11661682741600822E3,45.7991702],[-0.11676472537086885E3,0.45872910456486956E2],[-0.11686919436899467E3,45.958483],[-0.11693019595823577E3,0.46055953676360154E2],[-0.11694784549504186E3,46.1243216],[-116.92211,46.1636417],[-116.942962,46.2321085],[-117.010396,46.3296231],[-117.038999,0.46396551833884196E2],[-0.11702504642572119E3,46.4291593],[-0.11703737308634761E3,0.48833660081149326E2],[-0.11703905399461487E3,48.9930827],[-0.11604849365409369E3,48.9930827],[-0.11604901001153519E3,48.0047196],[-0.11586214904249294E3,0.47842407601929786E2],[-0.11581124388918396E3,0.47775951300566625E2],[-0.11573375731396241E3,0.47706341922911214E2],[-115.690867,47.606652],[-0.11571086180527647E3,47.5525992],[-0.11566967955272898E3,47.4978544],[-0.11570246825026882E3,47.4375944],[-0.11559332456934757E3,0.47384914908696615E2],[-0.11548599363263598E3,47.3116361],[-0.11534946652781849E3,0.47261175890304486E2],[-0.11512663631912291E3,0.47084592631615244E2],[-0.11503351619838311E3,0.46990934180776826E2],[-0.11493569392902653E3,46.9228189],[-0.11488693660294786E3,46.8448709],[-114.786066,46.7767557],[-0.11475368891720079E3,46.7345682],[-0.11467803156568189E3,0.46750168790732964E2],[-0.11463064753067118E3,46.7185721],[-114.60155,0.46660333582227935E2],[-0.11451866388382125E3,0.46647743249716356E2],[-0.11435089715378867E3,46.6676395],[-0.11433012200651174E3,46.6376468],[-0.11434580499050846E3,46.5505911],[-0.11438704217469866E3,0.46499955158141226E2],[-0.11438021966467285E3,46.4530325],[-0.11444424798742781E3,46.2707144],[-0.11444659906173621E3,0.46199325263860565E2],[-0.11448535882883982E3,46.1582144],[-0.11446357843250115E3,46.1097647],[-0.11447830560591444E3,46.035585],[-0.11441590325978405E3,45.9821585],[-0.11440513116464655E3,45.8742508],[-114.492566,45.838732],[-0.11453369867443384E3,45.7820096],[-0.11449579584095669E3,45.6858462],[-0.11453261652107226E3,45.633024],[-0.11452923273188064E3,45.5757193],[-0.11444843377860307E3,0.45551252729372926E2],[-0.11435056207076804E3,45.4971451],[-114.297641,0.45487564982802816E2],[-0.11421023369627429E3,45.5424417],[-0.11411661919075009E3,45.5791031],[-0.11400639335646717E3,45.6584573],[-0.11399192436177456E3,45.6930203],[-0.11394265067825427E3,0.45681506640591785E2],[-0.11380227286528213E3,45.6010977],[-0.11379961417377447E3,0.45540189496529045E2],[-0.11376614981702915E3,45.5025174],[-0.11375609732641128E3,45.4408401],[-0.11369711172845805E3,0.45304983188728535E2],[-0.11355740408152707E3,0.45140418973466545E2],[-0.11347107900499184E3,0.45072853052920344E2],[-0.11343813649885236E3,0.44993971213973694E2],[-0.11346929372660342E3,44.9299759],[-0.11343213796346731E3,44.8741653],[-0.11333889149994934E3,0.44808071548679074E2],[-0.11318717030275532E3,44.7985794],[-0.11309327015268897E3,0.44715335949438376E2],[-0.11305427967268601E3,0.44605187019455265E2],[-0.11300637928023367E3,44.5391372],[-0.11299968860615037E3,44.4803604],[-0.11291039172774398E3,44.4193313],[-0.11281551379443714E3,0.44405971923965204E2],[-112.787142,0.44463078859737415E2],[-0.11271592821934918E3,0.44498037357164755E2],[-0.11264823595602478E3,44.4971035],[-0.11239284776268869E3,0.44467956789610945E2],[-0.11232003587026276E3,0.44533149663191644E2],[-0.11223131028094058E3,44.5606924],[-112.074211,0.44547618657884236E2],[-0.11189207992132036E3,0.44554924566366076E2],[-0.11179709761789235E3,44.5398953],[-0.11165930159212805E3,0.44559604742325824E2],[-0.11149985700596761E3,0.44544850103091086E2],[-0.11147450605285204E3,44.5646145],[-111.491046,44.6242263],[-0.11144810041219631E3,44.7111172],[-0.11133746259059303E3,0.44744812268922196E2],[-0.11126511761713014E3,44.6875515],[-0.11119757366924107E3,44.5905862],[-111.11722,0.44525349369925316E2],[-0.11105143352694748E3,44.4988833]]]}}],"_labels":{"US-ID":"Idaho"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-IL.json b/src/api-umbrella/admin-ui/public/maps/US-IL.json new file mode 100644 index 000000000..8ad2ad819 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-IL.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-IL"},"geometry":{"type":"Polygon","coordinates":[[[-87.8120849,42.4971127],[-87.7974609,42.2114258],[-87.651123,0.42000244140625036E2],[-87.6020508,41.8591309],[-87.5212449,41.7277806],[-87.5329176,39.3748597],[-87.6110524,0.39291352588232975E2],[-87.6472853,39.1687452],[-87.5302809,38.9088965],[-87.5294569,0.38742288846584664E2],[-87.6359584,0.38542612325295785E2],[-87.7840651,38.419104],[-87.8729555,0.38295024425226025E2],[-87.9804127,38.2491895],[-87.9485524,38.178009],[-88.044518,0.38013291016041244E2],[-88.0953188,0.37875566401412534E2],[-88.0419911,37.7888513],[-88.1289589,37.6995105],[-88.1075136,0.37534353009489955E2],[-88.1905043,0.37464556864249325E2],[-88.3893349,37.4112622],[-88.506603,0.37323591282700086E2],[-88.4532753,37.1781433],[-88.4716664,37.088385],[-88.6138075,37.110083],[-88.8726015,0.37185537078214985E2],[-89.0462075,37.1829773],[-89.1346035,37.1024694],[-89.1543129,36.9921118],[-89.272394,37.0799804],[-89.3008266,37.012052],[-89.4139419,0.37102414516450374E2],[-89.4869131,37.2127392],[-89.5029311,37.300509],[-89.4619741,37.4341247],[-89.5234206,0.37575947249357974E2],[-89.5234206,0.37644523912130175E2],[-89.6232863,0.37747257070346045E2],[-89.9698281,37.9685327],[-90.0638711,38.0005249],[-90.2990005,0.38173999029984266E2],[-0.9037399316297041E2,38.3097571],[-90.3166006,38.4578089],[-0.9012676781174271E2,38.8326184],[-0.9022007470006773E2,38.8976795],[-90.4779678,38.9481177],[-0.9057707544610801E2,38.9096106],[-90.6635269,0.38987492713360346E2],[-0.9073722315729525E2,39.1817969],[-0.9091937648455641E2,39.3869007],[-0.9120989895657641E2,0.39602804016129504E2],[-91.3787369,39.7494056],[-0.9142586820309627E2,39.8268153],[-0.9150165189739347E2,40.0975294],[-91.4997842,40.2260255],[-91.4419522,40.3794496],[-0.9139077786972643E2,40.3971266],[-0.9139418363157515E2,40.5366529],[-0.9133904324861233E2,40.6039772],[-91.2151284,0.40649559427153825E2],[-0.9110213405988745E2,40.7497877],[-0.9095400539212739E2,41.0155799],[-0.9096382716984579E2,41.0825306],[-91.0665054,41.2059071],[-0.9104811428243613E2,41.369098],[-90.9387564,41.4255897],[-0.9075406519895337E2,0.41449825570962766E2],[-0.9058673242889833E2,41.4947267],[-0.9043667016731453E2,0.41560359022444956E2],[-90.3475271,41.6320338],[-90.2760061,0.41770011130051884E2],[-90.2177676,41.8131105],[-0.9015244286155027E2,41.9815199],[-0.9016751610431275E2,42.1003041],[-90.3465713,42.2148366],[-0.9048473535469495E2,0.42383257003054716E2],[-90.650585,0.42512983570503415E2],[-87.8120849,42.4971127]]]}}],"_labels":{"US-IL":"Illinois"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-IN.json b/src/api-umbrella/admin-ui/public/maps/US-IN.json new file mode 100644 index 000000000..216632fa8 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-IN.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-IN"},"geometry":{"type":"Polygon","coordinates":[[[-84.7961133,41.7014345],[-84.8201404,0.39423825737817616E2],[-84.8217115,39.0919837],[-84.8606031,0.39039710732930466E2],[-84.8354883,0.38996040076967724E2],[-84.863888,0.38933231236681095E2],[-84.7896204,38.8683789],[-84.8007386,38.8193909],[-84.9012415,0.38769567900359725E2],[-85.1698902,38.6903784],[-85.3067469,38.7371912],[-85.4054261,38.7299622],[-85.4447791,38.6830945],[-85.4248279,38.5965882],[-85.4586768,0.38530208760369526E2],[-85.5463257,38.4840112],[-85.6089039,0.38423026139093345E2],[-85.6464222,38.3472974],[-85.7062867,38.3013526],[-85.7884534,38.2852136],[-85.8549317,38.215033],[-85.9056776,0.38090909427205325E2],[-85.9611585,38.0140161],[-86.0213306,0.37984353026656144E2],[-86.1034425,37.9918677],[-86.2676222,38.0825818],[-86.3145997,38.1637708],[-86.457378,38.120155],[-86.4483363,38.0859656],[-86.5198573,38.0148401],[-86.5221864,0.37963731687978886E2],[-86.5992335,37.8747974],[-86.6731275,37.8890356],[-86.7703346,37.9597766],[-86.8690797,0.37976135252905145E2],[-86.9694398,37.9380457],[-87.0442677,0.37886442866671196E2],[-87.0935634,0.37821282952076096E2],[-87.1410353,37.8052429],[-87.2094032,37.8548462],[-87.3723854,37.9234778],[-87.5184486,0.37921566159026646E2],[-87.5994069,0.37946472165836106E2],[-87.615392,0.37848935541021596E2],[-87.6794203,37.886366],[-87.769651,37.8852344],[-87.8744276,37.9157434],[-87.9060023,37.9018237],[-87.9124843,37.8176904],[-88.0419911,37.7888513],[-88.0953188,0.37875566401412534E2],[-88.0424965,37.9366504],[-88.044518,0.38013291016041244E2],[-87.9902565,0.38089305423237896E2],[-88.0060219,38.1132776],[-87.9485524,38.178009],[-87.9804127,38.2491895],[-87.9214272,38.2975073],[-87.8729555,0.38295024425226025E2],[-87.7840651,38.419104],[-87.6806618,38.4879883],[-87.6359584,0.38542612325295785E2],[-87.5837733,38.6793701],[-87.5294569,0.38742288846584664E2],[-87.5302809,38.9088965],[-87.5682936,0.39007180214111415E2],[-87.6316957,39.1067054],[-87.6472853,39.1687452],[-87.6149855,39.1932886],[-87.6110524,0.39291352588232975E2],[-87.5329176,39.3748597],[-87.5212449,41.7277806],[-87.4125,41.6564941],[-87.2532227,0.41637646484374976E2],[-87.0726074,41.6694824],[-86.8625968,41.7605867],[-84.796399,41.7597279],[-84.7961133,41.7014345]]]}}],"_labels":{"US-IN":"Indiana"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-KS.json b/src/api-umbrella/admin-ui/public/maps/US-KS.json new file mode 100644 index 000000000..a97e21f23 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-KS.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-KS"},"geometry":{"type":"Polygon","coordinates":[[[-94.6180668,0.37000845909060224E2],[-94.8491642,0.37000845909060224E2],[-95.0802397,0.37000845909060224E2],[-0.9531130963549377E2,0.37000845909060224E2],[-95.5424071,0.37000845909060224E2],[-95.7735045,0.37000845909060224E2],[-0.9600457443244761E2,0.37000845909060224E2],[-0.9623564438755123E2,0.37000845909060224E2],[-96.4667418,0.37000845909060224E2],[-0.9669783922940137E2,0.37000845909060224E2],[-0.9692890918450499E2,0.37000845909060224E2],[-0.9715997913960871E2,0.37000845909060224E2],[-97.3910766,0.37000845909060224E2],[-0.9762217398145883E2,0.37000845909060224E2],[-0.9785324393656245E2,0.37000845909060224E2],[-0.9808431938483041E2,0.37000845909060224E2],[-98.3154168,0.37000845909060224E2],[-0.9854651422668051E2,0.37000845909060224E2],[-0.9877758418178415E2,0.37000845909060224E2],[-0.9900865413688787E2,0.37000845909060224E2],[-99.2397516,0.37000845909060224E2],[-0.9947084897873789E2,0.37000845909060224E2],[-0.9970191893384163E2,0.37000845909060224E2],[-0.9993298888894533E2,0.37000845909060224E2],[-0.10016408630987038E3,0.37000845909060224E2],[-0.10039518373079537E3,0.37000845909060224E2],[-0.10062625368589907E3,0.37000845909060224E2],[-0.10085732913416703E3,0.37000845909060224E2],[-0.10108842106192776E3,0.37000845909060224E2],[-0.10131951848285284E3,0.37000845909060224E2],[-101.550616,0.37000845909060224E2],[-0.10178171332470296E3,0.37000845909060224E2],[-0.10201278327980658E3,0.37000845909060224E2],[-0.10201353584331189E3,37.1883716],[-0.10201426094099583E3,37.3758532],[-0.10201498054551544E3,37.5633899],[-0.10201570564319938E3,37.7509265],[-0.10201643074088322E3,0.37938430173341864E2],[-0.10201717781122429E3,0.38125944828932376E2],[-0.10201792488156525E3,38.3134705],[-0.10201864997924919E3,0.38500985126442174E2],[-0.10201937507693303E3,38.6884888],[-0.10202010017461699E3,0.38876025423951965E2],[-102.02082,0.39063529093214015E2],[-0.10202157234264189E3,39.2510437],[-0.10202231941298285E3,39.4385804],[-0.10202304451066678E3,0.39626084046314425E2],[-0.10202376960835073E3,39.8135877],[-0.10202448921287035E3,40.0011243],[-0.10181489203690612E3,40.0011243],[-0.10160528936777756E3,40.0011243],[-0.10139569219181335E3,40.0011243],[-101.18609,40.0011243],[-0.10097649234672058E3,40.0011243],[-0.10076689517075634E3,40.0011243],[-100.557293,40.0011243],[-0.10034769532566357E3,40.0011243],[-0.10013809265653501E3,40.0011243],[-0.9992849548057079E2,40.0011243],[-0.9971889281144225E2,40.0011243],[-0.9950929563547801E2,40.0011243],[-0.9929969296634947E2,40.0011243],[-0.9909009579038523E2,40.0011243],[-0.9888049861442101E2,40.0011243],[-98.6708959,40.0011243],[-98.4612988,40.0011243],[-98.2516961,40.0011243],[-98.0420989,40.0011243],[-97.8324963,40.0011243],[-97.6228991,40.0011243],[-0.9741329641001423E2,40.0011243],[-97.2036992,40.0011243],[-0.9699410205808567E2,40.0011243],[-96.7844994,40.0011243],[-96.5749022,40.0011243],[-96.3652995,40.0011243],[-96.1557024,40.0011243],[-95.9460997,40.0011243],[-95.7365025,40.0011243],[-95.5269053,40.0011243],[-95.3466801,0.40001486892666186E2],[-0.9511620342687925E2,39.8720899],[-95.0555369,39.8707935],[-0.9498401592183667E2,39.8911622],[-94.9299357,39.8614991],[-94.8932963,39.7818153],[-94.8985972,39.7411439],[-94.9458274,0.39739484929546606E2],[-95.0047636,39.6915516],[-95.0753563,39.5973768],[-95.0579374,0.39508958797705866E2],[-0.9495251811790075E2,0.39426374566039875E2],[-94.8822935,39.3431312],[-94.8472032,39.2591517],[-0.9477785197354241E2,39.1939917],[-94.6223844,39.1244043],[-94.6245268,39.0860621],[-94.6241148,38.9557642],[-94.6237303,38.8254334],[-94.6233402,38.6951026],[-94.6229283,38.5647827],[-0.9462251078109321E2,38.4344519],[-94.6220988,38.3041211],[-0.9462168680645243E2,38.1737903],[-94.6212968,38.0434705],[-94.6209123,0.37913139645033304E2],[-0.9462050028296967E2,37.7828088],[-94.6200828,37.652478],[-0.9461967081516457E2,0.37522158184806024E2],[-94.6192588,0.37391827369287434E2],[-94.6188688,37.2614966],[-0.9461848429168181E2,0.37131165738250246E2],[-94.6180668,0.37000845909060224E2]]]}}],"_labels":{"US-KS":"Kansas"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-KY.json b/src/api-umbrella/admin-ui/public/maps/US-KY.json new file mode 100644 index 000000000..c4bdc09aa --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-KY.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-KY"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-89.4872207,36.5030663],[-89.5573134,0.36501077823589334E2],[-89.5195205,0.36554822942826966E2],[-89.4872207,36.5030663]]],[[[-84.660542,39.0944666],[-84.5088648,39.1028382],[-84.3580225,39.049917],[-84.2272852,38.8652039],[-84.1132361,38.798385],[-83.9483862,0.38774226103662365E2],[-83.8280859,38.7312256],[-83.6898779,38.6495313],[-83.5383874,0.38699859645747374E2],[-83.3569702,38.6274048],[-83.2034692,38.6389075],[-83.0000683,38.7139991],[-82.8804382,38.7102527],[-82.8446228,38.6276685],[-82.7582263,38.5411621],[-82.5894982,38.4203455],[-82.578413,38.272085],[-82.6195458,0.38182008063492916E2],[-82.5887731,38.0997424],[-82.4821948,37.983551],[-82.4718896,0.37938408200684734E2],[-82.2802441,37.6871838],[-82.1034631,0.37570574934699856E2],[-81.965277,37.5397253],[-82.3432067,37.2969275],[-82.6815856,37.1381201],[-82.731892,37.0480761],[-82.8320214,0.36979268759799574E2],[-82.8945007,36.9063745],[-83.0438159,36.8455542],[-83.1502185,36.7623327],[-83.4168896,0.36681011912484514E2],[-83.5661828,0.36652623239526505E2],[-83.7303845,0.36586815131547375E2],[-86.5075855,36.66484],[-87.8391505,36.643966],[-87.8687147,36.6750463],[-88.0962965,36.693009],[-88.0567128,36.5903198],[-88.0591078,36.4996826],[-89.4503286,0.36500023136049094E2],[-89.3974624,36.5877929],[-89.3305337,36.6159069],[-89.2561232,36.5944067],[-89.2030483,0.36625519967008294E2],[-89.1563344,0.36715717724355294E2],[-89.1224855,36.911593],[-89.1650686,37.0415612],[-89.0462075,37.1829773],[-88.8726015,0.37185537078214985E2],[-88.6138075,37.110083],[-88.4716664,37.088385],[-88.4532753,37.1781433],[-88.506603,0.37323591282700086E2],[-88.4946718,37.3642846],[-88.3893349,37.4112622],[-88.1905043,0.37464556864249325E2],[-88.1075136,0.37534353009489955E2],[-88.1403847,0.37620650620203826E2],[-88.1289589,37.6995105],[-88.0217763,37.8004309],[-87.9124843,37.8176904],[-87.9060023,37.9018237],[-87.6794203,37.886366],[-87.615392,0.37848935541021596E2],[-87.5994069,0.37946472165836106E2],[-87.5184486,0.37921566159026646E2],[-87.3723854,37.9234778],[-87.2094032,37.8548462],[-87.1410353,37.8052429],[-86.9694398,37.9380457],[-86.8690797,0.37976135252905145E2],[-86.7703346,37.9597766],[-86.6731275,37.8890356],[-86.5992335,37.8747974],[-86.5221864,0.37963731687978886E2],[-86.5198573,38.0148401],[-86.4483363,38.0859656],[-86.457378,38.120155],[-86.3145997,38.1637708],[-86.2676222,38.0825818],[-86.1034425,37.9918677],[-85.9611585,38.0140161],[-85.9056776,0.38090909427205325E2],[-85.8549317,38.215033],[-85.7884534,38.2852136],[-85.6464222,38.3472974],[-85.5463257,38.4840112],[-85.4586768,0.38530208760369526E2],[-85.4248279,38.5965882],[-85.4447791,38.6830945],[-85.4054261,38.7299622],[-85.3067469,38.7371912],[-85.1698902,38.6903784],[-84.9012415,0.38769567900359725E2],[-84.8007386,38.8193909],[-84.7896204,38.8683789],[-84.863888,0.38933231236681095E2],[-84.8374219,39.0826783],[-84.7659009,39.1249976],[-84.660542,39.0944666]]]]}}],"_labels":{"US-KY":"Kentucky"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-LA.json b/src/api-umbrella/admin-ui/public/maps/US-LA.json new file mode 100644 index 000000000..867273d77 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-LA.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-LA"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-91.7936905,0.29500732097562924E2],[-91.8308462,29.4864718],[-91.9962344,0.29573110030011403E2],[-92.0066495,0.29610287765804692E2],[-91.875231,0.29640983567756855E2],[-0.9176767485676021E2,0.29584711592953983E2],[-91.7936905,0.29500732097562924E2]]],[[[-88.8893007,0.29712581470878696E2],[-88.8893007,0.29712581470878696E2],[-88.8893007,0.29712581470878696E2],[-88.8893007,0.29712581470878696E2]]],[[[-88.8274697,29.8076901],[-88.8556606,0.29775862723292686E2],[-88.827986,0.29928352963484702E2],[-88.8274697,29.8076901]]],[[[-89.2239553,30.0840512],[-89.2204397,0.30037601014527223E2],[-89.3420034,0.30062847597521532E2],[-89.1846792,30.1686789],[-89.2239553,30.0840512]]],[[[-0.9117688503930145E2,31.0012339],[-89.7353139,0.31001156959487112E2],[-89.7649331,0.30886075167987663E2],[-89.8353664,0.30730816373002504E2],[-89.8199966,0.30611208214142938E2],[-89.6857656,0.30462684038555384E2],[-89.5916567,0.30223017281365916E2],[-89.5208608,0.30192629096612922E2],[-89.5884817,30.1659653],[-89.9542495,30.2687424],[-90.0452163,0.30351403516732226E2],[-0.9022528221979755E2,0.30379286818577093E2],[-0.9033200341527493E2,0.30277586375244418E2],[-90.4130605,0.30140301213757418E2],[-90.2849819,30.0650888],[-90.1753384,0.30029097596234056E2],[-89.9941958,0.30059255068087683E2],[-89.8940444,0.30125865178050496E2],[-89.8122402,0.30123689884998765E2],[-89.7374343,0.30171985785278554E2],[-89.6650674,0.30117054142558064E2],[-89.8151845,0.30007267761417022E2],[-89.7438174,29.9298581],[-89.5895144,0.29915048519617837E2],[-89.5633889,30.0020932],[-89.4944497,30.0581674],[-89.4007363,0.30046049501177652E2],[-89.3578457,0.29921014096017277E2],[-89.3544619,0.29820225517953784E2],[-89.5306606,0.29772215262216044E2],[-89.559313,0.29698035571886287E2],[-89.662123,0.29683687426807733E2],[-89.7208779,0.29619307541539367E2],[-89.6748012,0.29538667890025657E2],[-89.5136757,29.4200705],[-89.2456862,0.29333201573594003E2],[-89.180779,0.29335706456502027E2],[-89.1168276,0.29248211335976926E2],[-89.0157534,0.29202870758075413E2],[-89.0213784,0.29142720609296536E2],[-89.1095107,0.29098665431834725E2],[-89.1555105,0.29016630516595928E2],[-89.2360952,0.29081120265149803E2],[-89.3761489,0.28981331442983738E2],[-89.353539,0.29070243799891134E2],[-89.4431435,0.29194136626882813E2],[-89.6202651,0.29302395908356353E2],[-89.7923769,0.29333201573594003E2],[-89.8182827,0.29416137367773395E2],[-89.8772463,0.29458017252183485E2],[-90.1590676,0.29537140790358045E2],[-90.1412588,0.29479748210043685E2],[-90.0523354,0.29431408364449663E2],[-90.0527969,29.336838],[-90.1013674,0.29181787993599336E2],[-0.9021280175057149E2,0.29104938625433356E2],[-0.9030161523052195E2,0.29255813875329387E2],[-90.3792007,0.29295111972531622E2],[-90.5025112,0.29299759189505796E2],[-0.9058624903044237E2,0.29271546297804555E2],[-90.6775015,0.29150619779519708E2],[-90.751022,29.1308883],[-0.9100276271820607E2,0.29193510406155802E2],[-0.9129013211393399E2,0.29288992587532537E2],[-91.2374966,0.29330971348899574E2],[-91.1507596,29.3178976],[-0.9124397854772027E2,29.4573251],[-91.2488455,0.29564189131233665E2],[-0.9133092435181815E2,0.29513575115630978E2],[-0.9151419828459083E2,29.5553781],[-0.9167246733359707E2,0.29746089772938237E2],[-0.9182438628470479E2,0.29750693044598187E2],[-91.8931717,0.29836012872071638E2],[-92.0173282,0.29800296317974773E2],[-92.1354752,0.29699474780925602E2],[-92.0588785,0.29617187180130337E2],[-92.2608237,0.29556850263766158E2],[-0.9267131685900483E2,0.29597082198894675E2],[-92.7913315,29.6346554],[-0.9295240756796971E2,0.29714185474846126E2],[-0.9317570469562855E2,29.7789609],[-93.6948417,0.29769919119550355E2],[-93.8264634,29.7251388],[-93.8838779,29.8100192],[-93.7730808,0.29914037777391837E2],[-0.9379400977292589E2,0.29977264098163037E2],[-93.710629,0.30112813419740096E2],[-93.7209672,30.2829038],[-93.750394,0.30344712842648836E2],[-93.7152048,0.30473252886614777E2],[-93.7202146,0.30558265096888967E2],[-93.6247214,30.7143479],[-93.5305906,31.0461899],[-0.9355774877758515E2,0.31180420882341146E2],[-93.6658817,31.322584],[-0.9366365698475019E2,0.31372198233406838E2],[-93.7375785,0.31513812008340203E2],[-93.8206516,0.31603965820373055E2],[-0.9382679847046573E2,31.7502598],[-93.9050651,31.8769981],[-0.9404330055391999E2,0.31999231948732465E2],[-0.9404130653528927E2,33.0119957],[-91.1499575,33.0159178],[-91.0960806,32.9376841],[-0.9113605984243159E2,0.32808847458132455E2],[-91.0943557,0.32694260051417594E2],[-91.1496499,32.6250132],[-91.0592764,32.4237547],[-0.9094469997185055E2,32.3307115],[-90.9477212,32.2400742],[-91.0886978,32.1041404],[-91.092543,32.0458469],[-91.1565274,31.9706895],[-91.2864956,31.8839744],[-91.3725296,31.7737156],[-91.4590909,31.5549778],[-91.5057278,31.5187009],[-0.9152895292382559E2,31.3451938],[-91.6182498,0.31276957751258028E2],[-91.596365,0.31109910625745126E2],[-91.6564493,0.31001805152871132E2],[-0.9117688503930145E2,31.0012339]]]]}}],"_labels":{"US-LA":"Louisiana"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-MA.json b/src/api-umbrella/admin-ui/public/maps/US-MA.json new file mode 100644 index 000000000..3d664bc20 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-MA.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-MA"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-69.9779401,41.2655958],[-70.0550971,41.2494679],[-70.2330756,41.286338],[-70.0626997,41.3284816],[-70.0411994,41.3974757],[-69.9779401,41.2655958]]],[[[-70.5098982,0.41376338019331364E2],[-70.7853144,41.3274489],[-70.8291828,41.3590016],[-70.7604853,0.41373602423523884E2],[-70.6737153,41.4485292],[-70.6159931,41.4572084],[-70.5253559,41.4147902],[-70.5098982,0.41376338019331364E2]]],[[[-70.7813374,42.7212404],[-70.7356782,42.6692861],[-70.6239802,42.671758],[-70.6129499,42.6232643],[-70.8311714,42.5525673],[-70.9304438,42.4319814],[-71.0461738,42.3311159],[-70.9967244,42.2999806],[-70.8179438,42.2649672],[-70.73826,42.2288661],[-70.617696,42.0404286],[-70.6561482,0.41987046050440476E2],[-70.5489216,41.9386293],[-70.5146772,0.41803310691869015E2],[-70.4266767,41.7572999],[-70.295467,41.7289552],[-70.1350117,41.7698573],[-70.0014069,41.8261842],[-70.0061091,0.41872326807783104E2],[-70.0900336,0.41979707182973044E2],[-70.1102375,42.0301454],[-70.1725849,42.0628078],[-70.1962275,42.0351112],[-70.2410847,42.0912294],[-70.1089411,42.0783095],[-69.9778962,41.9612611],[-69.9415864,41.807859],[-69.9486396,41.6771437],[-70.0595136,41.6773524],[-70.4046601,0.41626892228107955E2],[-70.4813557,41.5824525],[-70.657126,41.5342335],[-70.6664533,41.7101137],[-70.7011262,0.41714848774431964E2],[-70.9742463,0.41548526746602924E2],[-71.079792,41.5380897],[-71.1685395,41.4894093],[-71.1884138,41.5164027],[-71.2042781,41.6411305],[-71.1487312,0.41745720357640884E2],[-71.2337654,41.7065541],[-71.3407283,41.7979164],[-71.3376301,0.41891443019449774E2],[-71.3790706,0.41902407375336814E2],[-71.3871345,42.0168629],[-71.8008357,42.011963],[-71.8016377,42.0227077],[-72.8076998,42.0340785],[-73.4805684,42.0555678],[-73.5072872,42.0800124],[-73.2533272,0.42752221860879644E2],[-72.4668599,42.7303151],[-71.3296211,0.42702486751560535E2],[-71.2423347,42.7295351],[-71.1392939,0.42808131286840556E2],[-70.9740815,42.8716762],[-70.8061116,42.8767629],[-70.829051,42.8253469],[-70.7813374,42.7212404]]]]}}],"_labels":{"US-MA":"Massachusetts"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-MD.json b/src/api-umbrella/admin-ui/public/maps/US-MD.json new file mode 100644 index 000000000..104dd4204 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-MD.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-MD"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.2257907,38.0403394],[-75.2259994,38.0722986],[-75.0978878,0.38298078624561334E2],[-75.1362301,38.1805359],[-75.2257907,38.0403394]]],[[[-75.7847201,39.7223572],[-75.7070248,38.4550733],[-75.0376608,38.4555896],[-75.0743551,38.3657214],[-75.089747,38.4254102],[-75.1342416,0.38384321303632426E2],[-75.1600045,38.2550562],[-75.2254281,38.24229],[-75.2917856,0.38129196782181474E2],[-75.3759628,0.38024991455940786E2],[-75.6200021,37.9992065],[-75.6592563,0.37953964841903165E2],[-75.7351608,0.37973707274296935E2],[-75.8508139,37.971554],[-75.7953439,38.0866687],[-75.9280698,0.38169241949724686E2],[-75.8639206,38.2612305],[-75.8888266,38.3555152],[-75.9674008,38.291355],[-75.985715,38.3319495],[-76.0512155,38.2795447],[-76.2116708,38.3613269],[-76.2948703,38.494657],[-76.2641745,38.5999719],[-76.1983884,38.6186817],[-76.0009421,38.6017298],[-76.0569504,38.6212635],[-76.1749875,38.7066822],[-76.2129672,0.38758284940944954E2],[-76.2783139,38.7724683],[-76.3411777,38.7096485],[-76.3003195,0.38818204376824376E2],[-76.168132,0.38852745393767044E2],[-76.1910495,0.38915554234053666E2],[-76.2408176,38.943075],[-76.3306638,38.9086109],[-76.3127561,39.0093555],[-76.1857102,38.9907447],[-76.1329428,39.1229651],[-76.2168454,39.063639],[-76.2356979,39.1916187],[-76.1531247,0.39315039112574006E2],[-76.0743637,0.39368861136111555E2],[-75.8759836,39.3759913],[-76.0031064,39.4108509],[-75.8729294,39.5108924],[-75.9704001,39.5045643],[-75.9589194,0.39585050109202236E2],[-76.0630038,39.5611219],[-76.0972592,39.4330982],[-76.2158127,0.39379946341612545E2],[-76.2476621,39.4386023],[-76.2763693,39.3227405],[-76.3308176,39.4038965],[-76.3589755,39.3246851],[-76.4056894,39.303877],[-76.4208835,39.2249952],[-76.5704074,0.39269335985830615E2],[-76.4893833,0.39158692671063015E2],[-76.4276071,0.39126041302629936E2],[-76.4200595,39.0738892],[-76.4730795,39.0306141],[-76.5585532,39.06521],[-76.4937778,0.38945217321122705E2],[-76.5195078,0.38898327670896464E2],[-76.5368772,0.38742618436441035E2],[-76.5013144,38.5321753],[-76.3940878,0.38368973402656344E2],[-76.4387363,38.3615357],[-76.5724289,0.38435792252861575E2],[-76.6468943,0.38538525411077366E2],[-76.6419834,38.4543482],[-76.4087656,38.2682617],[-76.332905,38.1407764],[-76.3411777,0.38087031253229235E2],[-76.4544248,38.1735376],[-76.5935886,38.2283154],[-76.7691611,38.2629334],[-76.868115,0.38390297866360434E2],[-76.889747,38.2920801],[-76.9883933,38.3938794],[-77.0011814,38.4452515],[-77.0767124,38.4417578],[-77.1559018,0.38397109390057786E2],[-77.2325205,38.4077112],[-77.2415842,38.4948108],[-77.1349289,38.6501245],[-77.0538938,38.7058032],[-77.0197373,38.8065259],[-76.9312424,0.38888220248635896E2],[-77.0421164,39.0117835],[-77.122053,38.9435364],[-77.1903,0.38969046667734816E2],[-77.3010862,39.0533777],[-77.4809214,39.1129566],[-77.5064536,0.39142619672402994E2],[-77.478856,0.39220864304294075E2],[-77.5341501,39.2656116],[-77.6688206,39.309535],[-77.7390452,0.39354337209776254E2],[-77.7795847,39.4883375],[-77.8530723,39.5483338],[-77.8832517,39.6107142],[-77.9557066,0.39608802551514536E2],[-78.0977818,39.6778846],[-78.181135,0.39685739810308895E2],[-78.4067613,39.6278638],[-78.4955418,39.5333484],[-78.6776731,0.39549520322690675E2],[-78.7777696,0.39626622376413145E2],[-78.8147935,39.5700867],[-78.9714805,39.4536426],[-79.0753453,39.4759888],[-79.2935557,0.39311578419082586E2],[-79.4879808,39.2109107],[-79.4774998,0.39722796696488054E2],[-75.7847201,39.7223572]]]]}}],"_labels":{"US-MD":"Maryland"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-ME.json b/src/api-umbrella/admin-ui/public/maps/US-ME.json new file mode 100644 index 000000000..a83cf07cd --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-ME.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-ME"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-68.623194,44.1960671],[-68.7017133,0.44182674796306465E2],[-68.6767304,44.2562173],[-68.623194,44.1960671]]],[[[-68.1872565,44.3324844],[-68.3092597,44.321509],[-68.3151044,0.44249702386754024E2],[-68.4117072,44.2943508],[-68.4094879,44.3642678],[-68.2994379,44.456509],[-68.2380463,0.44438403565827386E2],[-68.1872565,44.3324844]]],[[[-68.9371833,47.211254],[-68.8287152,47.2033219],[-68.6685456,0.47253441515009435E2],[-68.4803827,47.2857963],[-68.3108856,47.3544718],[-68.2354974,47.3459464],[-68.096795,47.2748429],[-67.8067889,47.0828128],[-67.7846405,45.952803],[-67.7752582,45.8178799],[-67.8006976,45.7555028],[-67.8629883,45.7395996],[-67.7789551,45.6701172],[-67.6254883,45.6022461],[-67.5124023,45.5893555],[-67.4326495,45.6031082],[-67.4244317,45.5304007],[-67.4936566,45.4740738],[-67.4279474,45.3779544],[-67.4725409,45.2758914],[-67.3669403,45.1737845],[-67.3152936,45.1538333],[-67.2495843,45.2007779],[-67.1248346,45.1694449],[-67.0804498,44.9891702],[-67.1139361,44.9443899],[-67.1067291,44.8850418],[-67.0140155,44.8677493],[-66.9870221,0.44827704117787356E2],[-67.1912469,44.6755654],[-67.3640729,44.6968569],[-67.4577862,0.44656526132741895E2],[-67.556004,44.6447708],[-67.5990704,44.5767874],[-67.6529913,44.5623953],[-67.7904852,0.44585675299960926E2],[-67.8390558,44.576249],[-67.9070172,44.4536196],[-67.9626959,44.4643093],[-67.9848883,44.4201882],[-68.056618,44.3843179],[-68.1172846,44.4906436],[-68.1982648,44.5152419],[-68.2774323,44.5073648],[-68.3737494,44.4451382],[-68.4505988,44.5075955],[-68.5214166,44.3802419],[-68.5325348,44.2586453],[-68.6120319,44.3105227],[-68.7232904,44.3423062],[-68.8119171,44.3393618],[-68.7938886,44.3817361],[-68.7101178,0.44442556398017075E2],[-68.7949433,44.4544985],[-68.7627204,0.44570766852126646E2],[-68.84737,0.44485040530497066E2],[-68.961474,44.4338552],[-68.9561676,44.3480959],[-69.063559,44.1723476],[-69.06836,44.0975637],[-69.2260578,43.986459],[-69.3445453,44.000928],[-69.5207331,43.8973708],[-69.5567023,0.43982767562118134E2],[-69.5899799,43.8865713],[-69.6239387,43.8806277],[-69.6528766,0.43993874740276155E2],[-69.6991291,43.9550161],[-69.7298469,0.43851997293457764E2],[-69.7952924,43.9106313],[-69.8083442,43.7723135],[-69.8725263,43.8195437],[-69.9743256,43.7878701],[-69.965229,43.8551064],[-70.0623591,43.8346389],[-70.1788142,0.43766369848785125E2],[-70.2692426,43.6719094],[-70.2025776,43.6261184],[-70.3596821,0.43480241908182634E2],[-70.5206977,0.43348823446138226E2],[-70.6423274,43.1344252],[-70.7330964,0.43070034373003274E2],[-70.8128352,0.43163648878527454E2],[-70.829029,0.43239070023982684E2],[-70.9196992,43.3281032],[-70.9556355,43.389396],[-70.962436,43.5321523],[-71.0845491,45.2940078],[-70.9601838,45.3330972],[-70.8979902,45.2624551],[-70.8368293,45.3106961],[-70.7991902,45.404772],[-70.6897883,45.4283377],[-70.7022138,45.5513846],[-70.5963825,0.45643988328613624E2],[-70.4210957,45.73824],[-70.4078681,45.8019058],[-70.296247,45.9060892],[-70.3045197,46.0573929],[-70.2482917,46.2508731],[-70.1796601,46.3418179],[-70.067215,46.4410465],[-70.0076801,46.7089371],[-69.2428779,47.4629947],[-69.0502216,47.426619],[-69.0642841,47.3381461],[-69.0485736,0.47273656359530584E2],[-68.9371833,47.211254]]]]}}],"_labels":{"US-ME":"Maine"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-MI.json b/src/api-umbrella/admin-ui/public/maps/US-MI.json new file mode 100644 index 000000000..cfcce98cd --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-MI.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-MI"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-85.9762207,45.1021484],[-86.0379395,45.102832],[-86.0524414,45.1563965],[-85.9984863,0.45150146484374964E2],[-85.9762207,45.1021484]]],[[[-85.5516602,45.6025879],[-85.6120605,45.6092773],[-85.5728516,45.7378906],[-85.5385254,45.7753906],[-85.5014648,45.7502441],[-85.492334,45.6628906],[-85.5516602,45.6025879]]],[[[-84.690918,45.7737793],[-84.5629395,45.7121582],[-84.4414062,0.45676269531250036E2],[-84.3263184,0.45666162109375016E2],[-84.1892578,0.45611132812499996E2],[-84.1277344,45.5324707],[-84.0728027,45.5091309],[-83.9182617,45.4862793],[-83.86875,45.4564941],[-83.5936523,0.45379443359375045E2],[-83.4785156,0.45338818359375026E2],[-83.3972656,45.273584],[-83.3961914,0.45221386718750004E2],[-83.3311035,45.164209],[-83.2930664,0.45040380859374984E2],[-83.377832,0.45066894531249964E2],[-83.4481445,45.0245605],[-83.4361816,44.9614258],[-83.3277832,44.8692383],[-83.2995605,44.7852051],[-83.2942383,44.6833496],[-83.3192871,0.44556494140624984E2],[-83.3305664,0.44375097656249984E2],[-83.3662109,44.3300293],[-83.462793,44.2649414],[-83.5125,0.44270751953125036E2],[-83.5774902,44.1134277],[-83.6139648,0.44058251953124994E2],[-83.6915039,44.0144531],[-83.8214355,43.993457],[-83.8788086,43.9625488],[-83.921582,43.8754883],[-83.9382812,0.43737548828125036E2],[-83.847998,43.663623],[-83.7352051,43.6266602],[-83.621582,0.43636474609374964E2],[-83.5730957,43.6971191],[-83.4688965,43.7309082],[-83.3529785,43.8793457],[-83.3825684,43.9240723],[-83.2994629,0.43945117187500045E2],[-83.2092773,0.43993603515624976E2],[-83.0694824,44.0250488],[-82.9472168,44.0669922],[-82.7877441,0.44003515625000034E2],[-82.7161133,43.9390137],[-82.6633301,0.43854199218750004E2],[-82.5967285,43.6344238],[-82.5162109,0.43279638671875006E2],[-82.4612793,43.0810059],[-82.4172326,0.43017376900291374E2],[-82.4883471,42.7395107],[-82.5453222,42.6246816],[-82.6451155,42.5580612],[-82.6328125,0.42661035156250016E2],[-82.6867676,0.42696923828125044E2],[-82.7873535,0.42664550781250014E2],[-82.7837891,42.6127441],[-82.8701172,42.5189941],[-82.902002,42.3939941],[-83.0165039,0.42347119140625004E2],[-83.104834,0.42286425781249996E2],[-83.1421387,42.2276367],[-83.1884277,0.42083398437500016E2],[-83.1765625,0.42048925781250006E2],[-83.2555664,41.9855957],[-83.2618164,41.9463867],[-83.3620605,0.41879882812500036E2],[-83.4641968,0.41739447164042254E2],[-84.7961133,41.7014345],[-84.796399,41.7597279],[-86.8625968,41.7605867],[-86.6915527,0.41853369140625055E2],[-86.6324707,41.9113281],[-86.520166,0.42082275390624964E2],[-86.407373,42.2237305],[-86.2995605,42.417627],[-86.2327148,42.65],[-86.2215332,0.42900439453125024E2],[-86.2484863,43.0288086],[-86.3291504,43.2241211],[-86.4350098,43.4071289],[-86.5421387,43.6373047],[-86.4405762,0.43794287109375055E2],[-86.4486328,43.9239746],[-86.5191895,44.0737305],[-86.4154297,44.1694824],[-86.2958984,44.3306152],[-86.259082,44.4335938],[-86.2370117,0.44720214843750036E2],[-86.1258301,44.7477539],[-86.0884277,0.44794238281250024E2],[-86.057666,44.9163574],[-85.9529297,44.9666504],[-85.8578125,44.9615234],[-85.7841309,0.45012158203125004E2],[-85.6893555,45.1280762],[-85.6166016,45.1929199],[-85.5562012,0.45195996093749976E2],[-85.5877441,45.1613281],[-85.6046875,44.9699219],[-85.6453125,44.8816406],[-85.6225098,44.8039551],[-85.5932617,0.44815673828125036E2],[-85.5126465,0.44996777343749976E2],[-85.4971191,44.9238281],[-85.5509277,0.44814648437500004E2],[-85.5493652,44.771875],[-85.4847168,44.840332],[-85.3890137,0.45032763671875024E2],[-85.3939941,45.1956543],[-85.3756836,45.2769531],[-85.2228516,0.45356152343750004E2],[-85.1273437,0.45378466796875024E2],[-84.9671387,0.45392675781249984E2],[-84.9428711,0.45428564453125006E2],[-85.0063965,45.4404785],[-85.0876953,45.5068848],[-85.087793,45.6052734],[-84.9554687,0.45743408203125036E2],[-84.9813965,45.767041],[-84.805957,45.7750488],[-84.7719727,45.7947754],[-84.690918,45.7737793]]],[[[-84.5571777,0.45820458984375016E2],[-84.3802734,45.7876953],[-84.4412109,0.45734472656249984E2],[-84.5630859,45.8038574],[-84.5571777,0.45820458984375016E2]]],[[[-83.5034668,0.46013134765625004E2],[-83.5180176,45.9578613],[-83.5882812,45.9411133],[-83.8232422,45.9556641],[-83.8710937,46.0173828],[-83.775,46.011084],[-83.683252,46.0572266],[-83.6838867,46.10625],[-83.6082031,0.46096582031250044E2],[-83.5034668,0.46013134765625004E2]]],[[[-84.1206543,46.2458984],[-84.1955078,46.303418],[-84.16875,46.3244629],[-84.1206543,46.2458984]]],[[[-84.1328125,46.362207],[-84.1889648,46.3600586],[-84.2741699,46.4875],[-84.2155273,46.536084],[-84.1424316,46.5309082],[-84.1635742,0.46410009765625034E2],[-84.1328125,46.362207]]],[[[-88.4627441,46.8141602],[-88.3830078,46.8743164],[-88.2162598,46.9515625],[-87.8770996,46.9077148],[-87.7775879,46.8878906],[-87.6375,0.46826513671874984E2],[-87.5094727,0.46683447265625055E2],[-87.3944824,0.46590087890625036E2],[-87.3581055,46.5244141],[-87.1706543,0.46513525390624984E2],[-87.0341309,46.5432129],[-86.913623,46.4833008],[-86.8514648,46.4702148],[-86.7329102,0.46490136718750016E2],[-86.6375,46.4529785],[-86.5310059,46.5244141],[-86.4026855,0.46587744140625006E2],[-86.1320312,46.6868164],[-85.8044922,46.704248],[-85.6161133,0.46690576171874994E2],[-85.4415039,0.46706640624999984E2],[-85.2807129,46.7524414],[-85.1384277,46.7780273],[-84.9679199,0.46770703124999976E2],[-85.014502,46.6864746],[-85.0343262,46.5057617],[-84.7788086,46.4683594],[-84.6973145,46.4907227],[-84.6348633,46.4822754],[-84.5915039,0.46443115234375036E2],[-84.5283691,0.46436083984375024E2],[-84.4241699,46.4906738],[-84.3274414,46.4914551],[-84.2290527,46.3658203],[-84.2036621,0.46246972656250044E2],[-84.2270508,46.1836426],[-84.1088379,46.1781738],[-84.0347168,46.1374023],[-84.0119629,46.0614258],[-83.8941406,46.0013184],[-83.9788086,45.9615234],[-84.340918,45.9998047],[-84.5212891,45.9945801],[-84.5499023,46.029248],[-84.631543,46.0526367],[-84.6746582,46.0333008],[-84.7249023,45.9575195],[-84.7273926,0.45861474609375016E2],[-84.8018555,0.45874365234374984E2],[-84.9718262,45.9889648],[-85.1006348,0.46046191406249996E2],[-85.2598633,46.0881836],[-85.3859375,46.1086426],[-85.4788086,46.1075684],[-85.5550781,0.46078173828125024E2],[-85.6147949,46.020459],[-85.7078125,45.9875977],[-85.9028809,0.45964208984374984E2],[-85.9137207,45.9411621],[-86.1229492,0.45968945312499976E2],[-86.2717773,45.9366699],[-86.3995605,45.8006836],[-86.5274902,45.7531738],[-86.6011719,45.6816406],[-86.6219727,45.6227539],[-86.6896973,45.6573242],[-86.6495117,45.7568359],[-86.5592773,45.8062988],[-86.5633301,45.8825195],[-86.7985352,45.8317871],[-86.8838867,45.7209473],[-86.9378906,45.7002441],[-86.9742187,45.7231445],[-86.9929199,45.8418945],[-86.9710938,0.45904980468750004E2],[-87.0392578,45.8445801],[-87.0848633,45.7297852],[-87.2164062,0.45607324218750016E2],[-87.3987793,45.3646484],[-87.6022461,45.1570313],[-87.6058429,45.1085544],[-87.6536134,45.1217971],[-87.7188502,0.45201272247272236E2],[-87.7209157,45.2427676],[-87.6627101,45.3451932],[-87.6963942,45.3828323],[-87.7685634,45.3643643],[-87.8654298,45.367825],[-87.8740321,45.412814],[-87.8151784,0.45505824260843134E2],[-87.794557,45.596033],[-87.809081,45.686044],[-87.9225368,45.759971],[-88.1161159,45.8158035],[-88.0964833,0.45878414607087585E2],[-88.1517445,45.9454092],[-88.3547499,45.9922879],[-88.4929909,0.46013524475522864E2],[-88.62954,46.0140408],[-88.8373354,46.0366177],[-89.1192885,46.1491946],[-90.11855,46.3416641],[-90.2303799,0.46509765949531094E2],[-0.9034088036873851E2,46.5584464],[-90.3923403,0.46548965169776395E2],[-90.4076134,0.46592948966905375E2],[-90.1535645,46.6544922],[-89.9932617,0.46717919921874966E2],[-89.8605957,46.7927734],[-89.6951172,46.8385742],[-89.4968262,0.46855419921875004E2],[-89.3549805,0.46881933593749984E2],[-89.1547852,46.988623],[-89.0091309,0.47015722656249984E2],[-88.9480957,47.0429688],[-88.8296387,47.1458496],[-88.6504883,0.47231982421874974E2],[-88.6327148,47.1668945],[-88.5154297,47.0955078],[-88.5043945,0.47035449218749996E2],[-88.4558594,46.9628418],[-88.4760742,46.8367188],[-88.4627441,46.8141602]]],[[[-88.221875,47.2105957],[-88.2367676,0.47158935546875014E2],[-88.4390625,0.47010742187500036E2],[-88.468457,0.47077246093749984E2],[-88.434082,0.47122314453125014E2],[-88.5737305,0.47143310546875036E2],[-88.6157227,47.1741699],[-88.5619629,0.47272167968750004E2],[-88.3943359,0.47388720703125024E2],[-88.3203125,47.4210938],[-88.1102051,47.4725098],[-87.8779297,47.4841797],[-87.7410156,47.4336426],[-87.7904785,47.4114258],[-88.0206543,47.3923828],[-87.9749023,47.3549316],[-88.0155273,47.3208496],[-88.221875,47.2105957]]],[[[-88.9551758,47.9260254],[-88.9237305,47.904541],[-89.0816406,47.8505859],[-89.1952148,47.8518066],[-89.1466309,47.9526367],[-88.7555176,48.1035156],[-88.5882812,0.48158496093749996E2],[-88.4848633,48.1674316],[-88.5812988,48.1107422],[-88.6247559,0.48042041015624996E2],[-88.9551758,47.9260254]]]]}}],"_labels":{"US-MI":"Michigan"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-MN.json b/src/api-umbrella/admin-ui/public/maps/US-MN.json new file mode 100644 index 000000000..d2286cdb1 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-MN.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-MN"},"geometry":{"type":"Polygon","coordinates":[[[-89.577548,48.0017562],[-89.8287598,47.9008789],[-0.9019726562500003E2,47.7864258],[-90.5974609,47.6877441],[-0.9084672851562499E2,47.5852539],[-90.9571289,0.47523730468749996E2],[-91.3862793,47.2147461],[-91.645166,47.0500488],[-0.9206455078124993E2,46.8188477],[-92.224003,0.46671023279901284E2],[-92.2916458,46.6607181],[-92.2926291,46.0843753],[-92.6939487,45.9090115],[-0.9287471225250593E2,45.706094],[-92.8924881,45.5947586],[-0.9275746066111907E2,0.45543243695864355E2],[-92.7070224,0.45493761272101715E2],[-0.9268580782635445E2,45.3805362],[-0.9276613986066889E2,45.2364615],[-92.7590592,45.1105801],[-0.9279303988610911E2,45.0713589],[-0.9276340426486139E2,0.44934260518336615E2],[-0.9279921420275087E2,44.790032],[-0.9276980929440263E2,44.7258499],[-0.9264353792728113E2,44.6453421],[-92.3669406,44.5522659],[-0.9231309113733181E2,44.4977957],[-92.0551212,44.3998196],[-0.9191229888571465E2,44.2888686],[-0.9184097564080639E2,44.1941555],[-91.7164346,44.1264578],[-91.5148465,44.0542117],[-91.3199161,0.43936284406048024E2],[-0.9127843167403455E2,43.7974282],[-91.245253,0.43502412319184636E2],[-96.4536186,0.43501170864059176E2],[-96.4536681,45.2973367],[-96.5297594,45.3715494],[-0.9669610888265565E2,0.45431776406455874E2],[-0.9684545153971985E2,45.5958682],[-0.9681361865276331E2,0.45659182420990156E2],[-0.9661468920181531E2,45.7999722],[-96.5564012,0.45942772519698835E2],[-96.5608452,46.1382413],[-0.9661743029078711E2,46.3270963],[-96.7308586,0.46472774981323084E2],[-96.7866472,0.46648215661843736E2],[-96.7959966,0.46797091399944776E2],[-0.9677013476438579E2,46.9196659],[-96.8182988,46.9741361],[-0.9685870654510825E2,0.47588337768019066E2],[-0.9698800464574371E2,47.8203361],[-0.9700743396777389E2,47.9256071],[-0.9712592701428629E2,0.48173392721977756E2],[-97.1439611,48.5367546],[-97.1280474,48.6811149],[-97.2257378,48.9931816],[-0.9516204388272949E2,0.48991764335227465E2],[-95.1552983,49.3696721],[-94.93934,49.3494133],[-94.8543333,49.3045891],[-0.9484260539398133E2,49.1191728],[-94.8034611,49.0029484],[-94.7125602,0.48863015551019195E2],[-0.9470509501275919E2,0.48808523361440415E2],[-94.6208848,0.48742605390175875E2],[-0.9441415506025443E2,0.48704109294957384E2],[-0.9405518226824043E2,0.48659021402612446E2],[-0.9385162757297539E2,48.6072868],[-93.8035459,48.5489494],[-0.9370773962803345E2,48.5254606],[-0.9346361791461935E2,0.48561276037555594E2],[-0.9337788609982545E2,48.6165373],[-0.9325794285794535E2,48.6288639],[-0.9299625400518919E2,48.6118131],[-0.9273265353126655E2,48.5318217],[-0.9250057832710107E2,48.4353398],[-92.4145883,48.2765873],[-92.2986771,48.3288822],[-92.171785,0.48338396390381526E2],[-0.9200515533456931E2,48.3018339],[-91.8584,48.1975736],[-0.9151830717146629E2,0.48058310930478406E2],[-0.9138724027193527E2,48.0585416],[-91.2206546,0.48104607318963225E2],[-91.0434781,48.1936955],[-90.8403189,48.200518],[-0.9074440821616315E2,0.48104607318963225E2],[-0.9060710108201911E2,48.1125944],[-0.9032013818044729E2,48.0991801],[-90.0917764,48.1180985],[-89.9936465,0.48015310440556824E2],[-89.9010427,47.9954691],[-89.7753701,0.48015310440556824E2],[-89.577548,48.0017562]]]}}],"_labels":{"US-MN":"Minnesota"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-MO.json b/src/api-umbrella/admin-ui/public/maps/US-MO.json new file mode 100644 index 000000000..e6f7e23f0 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-MO.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-MO"},"geometry":{"type":"Polygon","coordinates":[[[-91.4419522,40.3794496],[-91.4997842,40.2260255],[-0.9150165189739347E2,40.0975294],[-91.4668142,0.39942863843554925E2],[-0.9142586820309627E2,39.8268153],[-91.3787369,39.7494056],[-0.9120989895657641E2,0.39602804016129504E2],[-0.9091937648455641E2,39.3869007],[-0.9073722315729525E2,39.1817969],[-90.6635269,0.38987492713360346E2],[-0.9057707544610801E2,38.9096106],[-90.4779678,38.9481177],[-0.9022007470006773E2,38.8976795],[-0.9012676781174271E2,38.8326184],[-90.3166006,38.4578089],[-0.9037399316297041E2,38.3097571],[-90.3657754,38.2542542],[-90.2990005,0.38173999029984266E2],[-90.1735806,38.0690466],[-90.0638711,38.0005249],[-89.9698281,37.9685327],[-89.8229629,37.8840918],[-89.6232863,0.37747257070346045E2],[-89.5234206,0.37644523912130175E2],[-89.5234206,0.37575947249357974E2],[-89.4619741,37.4341247],[-89.4619741,37.3656799],[-89.5029311,37.300509],[-89.4869131,37.2127392],[-89.4139419,0.37102414516450374E2],[-89.3518801,0.37035518761945326E2],[-89.3008266,37.012052],[-89.272394,37.0799804],[-89.1543129,36.9921118],[-89.1224855,36.911593],[-89.1295168,0.36811057083460945E2],[-89.1563344,0.36715717724355294E2],[-89.2030483,0.36625519967008294E2],[-89.2561232,36.5944067],[-89.3305337,36.6159069],[-89.3974624,36.5877929],[-89.4518227,0.36497518253140974E2],[-89.485386,36.4981335],[-89.5195205,0.36554822942826966E2],[-89.5600381,36.5130969],[-89.5406032,36.4266674],[-89.55527,0.36372922301122394E2],[-89.6040932,0.36351916440946134E2],[-89.594623,36.2594445],[-89.6745486,0.36220574883201444E2],[-89.6341299,36.1679174],[-89.6418862,36.1045153],[-89.7047719,0.36001573410003466E2],[-90.3810684,35.9927404],[-90.3030435,36.0993737],[-0.9021616356710595E2,0.36178409354249204E2],[-90.1492788,36.2159277],[-0.9007565941135553E2,36.2967211],[-0.9007447288787279E2,36.3718347],[-90.1622427,0.36500869083346984E2],[-0.9461837992156065E2,0.36500869083346984E2],[-94.6180668,0.37000845909060224E2],[-94.6245268,39.0860621],[-94.6223844,39.1244043],[-0.9477785197354241E2,39.1939917],[-94.8472032,39.2591517],[-94.8822935,39.3431312],[-0.9495251811790075E2,0.39426374566039875E2],[-95.0579374,0.39508958797705866E2],[-95.0753563,39.5973768],[-95.0047636,39.6915516],[-94.9458274,0.39739484929546606E2],[-94.8985972,39.7411439],[-94.8932963,39.7818153],[-94.9299357,39.8614991],[-0.9498401592183667E2,39.8911622],[-0.9511620342687925E2,39.8720899],[-95.3624675,0.40010319900815624E2],[-95.4342961,40.0959803],[-95.4636516,0.40198065269305694E2],[-95.5212199,40.2645765],[-0.9560710554521503E2,40.2954701],[-95.6615703,0.40362761320510195E2],[-0.9568469649055767E2,40.4663624],[-95.7650285,40.6018678],[-0.9173152983585013E2,40.6246534],[-91.6820474,40.551869],[-0.9154548734828441E2,0.40469317721059376E2],[-91.5299307,40.4323158],[-91.4419522,40.3794496]]]}}],"_labels":{"US-MO":"Missouri"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-MS.json b/src/api-umbrella/admin-ui/public/maps/US-MS.json new file mode 100644 index 000000000..559650b70 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-MS.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-MS"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-88.5581069,0.30215909126797857E2],[-88.713102,30.244924],[-88.7228469,0.30264248972391876E2],[-88.5581069,0.30215909126797857E2]]],[[[-88.4442336,0.31139705548756684E2],[-88.3995851,0.30370805372941057E2],[-88.6920961,0.30355358595008035E2],[-88.8198891,0.30406488968052333E2],[-88.9052089,0.30415146194945034E2],[-89.0540407,0.30368245558390317E2],[-89.2236367,30.3323642],[-89.3205361,0.30345328077047277E2],[-89.4434951,0.30223138130979866E2],[-89.5208608,0.30192629096612922E2],[-89.5916567,0.30223017281365916E2],[-89.6857656,0.30462684038555384E2],[-89.8199966,0.30611208214142938E2],[-89.8353664,0.30730816373002504E2],[-89.7649331,0.30886075167987663E2],[-89.7353139,0.31001156959487112E2],[-91.6564493,0.31001805152871132E2],[-91.596365,0.31109910625745126E2],[-0.9163080717575787E2,0.31217598618134264E2],[-91.6182498,0.31276957751258028E2],[-91.5586929,0.31287911120816496E2],[-0.9152895292382559E2,31.3451938],[-91.5290079,0.31448750970702026E2],[-91.5057278,31.5187009],[-91.4590909,31.5549778],[-91.4147061,0.31639979005340624E2],[-91.3725296,31.7737156],[-91.2864956,31.8839744],[-91.1565274,31.9706895],[-91.092543,32.0458469],[-91.0886978,32.1041404],[-90.9477212,32.2400742],[-0.9094469997185055E2,32.3307115],[-91.0592764,32.4237547],[-91.103815,0.32490496615910295E2],[-91.1008157,32.5413743],[-91.1496499,32.6250132],[-91.0943557,0.32694260051417594E2],[-0.9113558743030421E2,32.7557835],[-0.9113605984243159E2,0.32808847458132455E2],[-91.093378,32.8850267],[-91.0960806,32.9376841],[-91.1441787,32.9668748],[-0.9115285793877555E2,0.33040571099784536E2],[-91.1067813,33.2179234],[-0.9116333889620657E2,0.33294454166110036E2],[-91.1684585,0.33359460272105494E2],[-91.1410147,33.4385069],[-0.9115433010680043E2,0.33500206127083835E2],[-91.2145791,33.5834056],[-0.9117272122078327E2,33.6166832],[-91.207482,33.6756688],[-0.9118412502981201E2,0.33715670002490675E2],[-0.9110029934302057E2,0.33767448568918994E2],[-0.9105270656776761E2,33.8275987],[-0.9103818264143231E2,0.33901393886528645E2],[-91.0701748,33.9742003],[-91.0431485,0.34002863616961854E2],[-0.9094310695421169E2,34.0296812],[-90.9087857,34.0715611],[-0.9094025050879017E2,34.1285582],[-90.9097195,0.34188763282256474E2],[-90.8172146,0.34252220315927225E2],[-0.9071810694562859E2,34.3917027],[-90.6354238,34.4138732],[-90.5840078,34.5037084],[-90.5638479,34.6611644],[-0.9053924951693075E2,0.34728170041114474E2],[-90.4747598,34.7600524],[-0.9046757470950901E2,34.8052611],[-90.3199404,0.34899161258574814E2],[-0.9028210351102763E2,34.9453038],[-90.2937051,0.35001114387463964E2],[-88.1732668,0.34999005012383485E2],[-88.0847719,34.933109],[-88.4861904,0.31890511241460107E2],[-88.4442336,0.31139705548756684E2]]]]}}],"_labels":{"US-MS":"Mississippi"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-MT.json b/src/api-umbrella/admin-ui/public/maps/US-MT.json new file mode 100644 index 000000000..e501f45bc --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-MT.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-MT"},"geometry":{"type":"Polygon","coordinates":[[[-104.011087,45.9430582],[-0.10400478042610779E3,45.0134829],[-0.10403721206796999E3,45.0011343],[-0.11105086223786319E3,45.0010574],[-0.11105143352694748E3,44.4988833],[-111.11722,0.44525349369925316E2],[-0.11119757366924107E3,44.5905862],[-0.11126511761713014E3,44.6875515],[-0.11133746259059303E3,0.44744812268922196E2],[-0.11137252545814154E3,44.7462405],[-0.11141556989337727E3,44.7335513],[-0.11144810041219631E3,44.7111172],[-0.11145910871339748E3,44.6710171],[-111.491046,44.6242263],[-111.488821,44.5845437],[-0.11147450605285204E3,44.5646145],[-0.11149985700596761E3,0.44544850103091086E2],[-0.11165930159212805E3,0.44559604742325824E2],[-0.11179709761789235E3,44.5398953],[-0.11189207992132036E3,0.44554924566366076E2],[-112.074211,0.44547618657884236E2],[-0.11223131028094058E3,44.5606924],[-0.11228507737283542E3,44.5539468],[-0.11232003587026276E3,0.44533149663191644E2],[-0.11236386033482513E3,44.4795584],[-0.11239284776268869E3,0.44467956789610945E2],[-0.11264823595602478E3,44.4971035],[-0.11271592821934918E3,0.44498037357164755E2],[-112.787142,0.44463078859737415E2],[-0.11281016345243613E3,44.4381619],[-0.11281551379443714E3,0.44405971923965204E2],[-0.11285385608105608E3,44.3983254],[-0.11291039172774398E3,44.4193313],[-0.11299968860615037E3,44.4803604],[-0.11300637928023367E3,44.5391372],[-0.11305427967268601E3,0.44605187019455265E2],[-0.11306270618667925E3,44.6650735],[-0.11309327015268897E3,0.44715335949438376E2],[-113.140709,44.7654885],[-0.11318717030275532E3,44.7985794],[-0.11323426869322387E3,44.8098733],[-0.11332041798850237E3,44.8025344],[-0.11333889149994934E3,0.44808071548679074E2],[-0.11343213796346731E3,44.8741653],[-0.11346929372660342E3,44.9299759],[-0.11343813649885236E3,0.44993971213973694E2],[-0.11347107900499184E3,0.45072853052920344E2],[-0.11350358205798952E3,45.1092837],[-0.11355740408152707E3,0.45140418973466545E2],[-113.606573,45.2091055],[-0.11369711172845805E3,0.45304983188728535E2],[-113.721941,0.45379272742343694E2],[-0.11375609732641128E3,45.4408401],[-0.11376614981702915E3,45.5025174],[-0.11379961417377447E3,0.45540189496529045E2],[-0.11380227286528213E3,45.6010977],[-0.11387291495782067E3,0.45633540330168195E2],[-0.11394265067825427E3,0.45681506640591785E2],[-0.11399192436177456E3,45.6930203],[-0.11400639335646717E3,45.6584573],[-0.11411661919075009E3,45.5791031],[-0.11421023369627429E3,45.5424417],[-0.11425614556326009E3,45.5056485],[-114.297641,0.45487564982802816E2],[-0.11435056207076804E3,45.4971451],[-0.11444843377860307E3,0.45551252729372926E2],[-0.11452923273188064E3,45.5757193],[-0.11453261652107226E3,45.633024],[-0.11449579584095669E3,45.6858462],[-0.11453369867443384E3,45.7820096],[-0.11452253656463301E3,45.8151334],[-114.492566,45.838732],[-0.11440513116464655E3,45.8742508],[-0.11439678704811728E3,45.89095],[-0.11441590325978405E3,45.9821585],[-0.11447830560591444E3,46.035585],[-0.11446357843250115E3,46.1097647],[-0.11448535882883982E3,46.1582144],[-0.11444659906173621E3,0.46199325263860565E2],[-0.11444424798742781E3,46.2707144],[-114.41275,46.3436307],[-0.11438021966467285E3,46.4530325],[-0.11438704217469866E3,0.46499955158141226E2],[-0.11434580499050846E3,46.5505911],[-0.11433012200651174E3,46.6376468],[-0.11435089715378867E3,46.6676395],[-0.11438091729653534E3,46.6676395],[-0.11451866388382125E3,0.46647743249716356E2],[-114.60155,0.46660333582227935E2],[-0.11462400629506625E3,0.46677615077027745E2],[-0.11463064753067118E3,46.7185721],[-0.11467803156568189E3,0.46750168790732964E2],[-0.11475368891720079E3,46.7345682],[-114.786066,46.7767557],[-0.11488693660294786E3,46.8448709],[-0.11493569392902653E3,46.9228189],[-0.11503351619838311E3,0.46990934180776826E2],[-0.11512663631912291E3,0.47084592631615244E2],[-0.11530667477813924E3,47.2311722],[-0.11534946652781849E3,0.47261175890304486E2],[-0.11548599363263598E3,47.3116361],[-0.11559332456934757E3,0.47384914908696615E2],[-0.11570246825026882E3,47.4375944],[-0.11570802183934791E3,47.4567985],[-0.11567688658425388E3,0.47470564326026384E2],[-0.11566967955272898E3,47.4978544],[-0.11571086180527647E3,47.5525992],[-115.690867,47.606652],[-0.11573375731396241E3,0.47706341922911214E2],[-0.11581124388918396E3,0.47775951300566625E2],[-0.11586214904249294E3,0.47842407601929786E2],[-0.11594144286876002E3,47.9041068],[-0.11604901001153519E3,48.0047196],[-0.11604849365409369E3,48.9930827],[-0.10403392715573523E3,0.48993137626295436E2],[-0.10403191116444746E3,48.8033268],[-104.011087,45.9430582]]]}}],"_labels":{"US-MT":"Montana"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-NC.json b/src/api-umbrella/admin-ui/public/maps/US-NC.json new file mode 100644 index 000000000..462b79754 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-NC.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-NC"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.5462265,34.6548583],[-76.5462265,34.6548583],[-76.5462265,34.6548583],[-76.5462265,34.6548583]]],[[[-76.5036435,34.6429491],[-76.4370334,0.34756328001173024E2],[-76.2562204,34.9147179],[-76.5036435,34.6429491]]],[[[-75.7819626,35.1902001],[-75.7819626,35.1902001],[-75.7819626,35.1902001],[-75.7819626,35.1902001]]],[[[-75.5441196,0.35240099992283724E2],[-75.6901059,35.2215661],[-75.5363632,0.35278618060159324E2],[-75.4812778,0.35572117827214804E2],[-75.5043271,35.7353857],[-75.4784872,0.35716478184284206E2],[-75.4564706,0.35564163725348855E2],[-75.4647433,35.4486425],[-75.5093368,0.35280331927412156E2],[-75.5441196,0.35240099992283724E2]]],[[[-75.6356906,35.8558947],[-75.7171762,35.9461254],[-75.6488632,35.9103869],[-75.6356906,35.8558947]]],[[[-75.5586874,35.8793615],[-75.5804953,0.35872000651154416E2],[-75.7282394,36.1037133],[-75.8097909,36.2710461],[-75.8890573,36.5505053],[-75.8574277,36.5505822],[-75.7578805,36.2292321],[-75.5586874,35.8793615]]],[[[-75.9248727,36.3829968],[-75.8665793,36.26786],[-75.8200742,36.112832],[-75.8830148,36.1756957],[-76.1478293,0.36279285822941084E2],[-76.1500266,36.145758],[-76.2705795,0.36189912040234866E2],[-76.2273813,36.11604],[-76.3836838,0.36133530202146595E2],[-76.4788144,36.0281933],[-76.5593552,36.0153503],[-76.6789304,36.0753136],[-76.7336313,36.2291552],[-76.7262155,35.9575951],[-76.6111557,0.35943642499590474E2],[-76.3583273,35.952893],[-76.2065622,35.9912133],[-76.0697714,35.9703063],[-76.0600266,35.8786584],[-76.0835703,35.6905395],[-76.0011948,35.7221911],[-75.9789255,35.8959508],[-75.8538901,35.960155],[-75.7722177,0.35899872966670806E2],[-75.7447519,35.7654662],[-75.7739206,35.6470006],[-75.9659506,35.5083971],[-76.1035104,0.35380296530834876E2],[-76.1738449,35.3541491],[-76.3902207,35.4012475],[-76.4894821,35.3970177],[-76.5324826,35.5084301],[-76.6110568,35.5296667],[-76.6341281,35.4532128],[-76.7413877,35.4314818],[-76.8872422,0.35463111475400304E2],[-77.0399961,0.35527392483711736E2],[-76.9744736,35.4584093],[-76.5954453,0.35329704487889295E2],[-76.5129489,35.2704332],[-76.6075192,35.1530004],[-76.6280307,35.0733605],[-76.7791367,34.9903478],[-76.8610398,35.0049926],[-77.0702744,0.35154648328867744E2],[-76.974957,35.0251744],[-76.898657,34.9702428],[-76.7449692,34.9409642],[-76.4567539,0.34989337043264705E2],[-76.3622055,34.9365038],[-76.5168711,34.777257],[-76.7070664,0.34752142209997665E2],[-76.7331919,34.7069994],[-77.0494992,34.6973644],[-77.1339182,34.7079332],[-77.2517685,34.6156371],[-77.3583689,34.6202623],[-77.4122678,34.7307958],[-77.412949,0.34592126334752926E2],[-77.3797922,34.5266258],[-77.5176707,34.4513805],[-77.7507566,34.2849925],[-77.8608286,34.1491795],[-77.9278452,33.9397362],[-77.9260435,0.34073165133315534E2],[-77.9532676,0.34168976904548565E2],[-77.9705601,33.9934264],[-78.0133408,33.9118089],[-78.4058824,33.9175658],[-78.5642723,33.8766637],[-79.6535557,34.7967906],[-80.7840819,34.828629],[-80.7929698,34.9627721],[-80.9336827,35.1136693],[-81.0452489,35.0656151],[-81.0873156,35.155714],[-82.3560827,35.2016259],[-83.0965503,35.0016417],[-84.32469,34.9880956],[-84.2869739,35.2008458],[-84.2324707,0.35260589495018365E2],[-84.0622815,35.2860119],[-84.0037354,35.4140685],[-83.8713061,35.51489],[-83.7227161,0.35559901029873764E2],[-83.5111194,35.5840819],[-83.2842407,35.682058],[-83.1203686,35.7746178],[-82.9902026,35.8004467],[-82.8877221,35.9517284],[-82.8128173,35.9474438],[-82.7000866,36.0298412],[-82.6110974,0.36047364427375236E2],[-82.576842,0.35972272871776404E2],[-82.5211303,0.35981215743211244E2],[-82.3682446,0.36099549487959685E2],[-82.1824987,0.36153788991981884E2],[-82.1006176,36.1065258],[-82.0513659,0.36122862477130276E2],[-81.908247,36.3064111],[-81.7341247,36.355454],[-81.7044176,0.36533992863907365E2],[-81.6416308,36.5950769],[-75.966445,36.5513622],[-75.9927682,36.4737988],[-75.9248727,36.3829968]]]]}}],"_labels":{"US-NC":"North Carolina"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-ND.json b/src/api-umbrella/admin-ui/public/maps/US-ND.json new file mode 100644 index 000000000..2519dfd0d --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-ND.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-ND"},"geometry":{"type":"Polygon","coordinates":[[[-96.5564012,0.45942772519698835E2],[-0.9725527455340023E2,45.9428275],[-0.9818710198152475E2,45.9428275],[-98.6530157,0.45942882382984344E2],[-99.5848486,0.45942882382984344E2],[-0.10005076233093801E3,45.9429373],[-0.10098264469070523E3,45.9429373],[-0.10144855840476748E3,45.9429813],[-102.380386,45.9429813],[-0.10284629954695428E3,45.9430362],[-104.011087,45.9430582],[-0.10401527236986735E3,0.46515094318874965E2],[-0.10401801345883916E3,46.8964627],[-0.10402359451373952E3,47.6592106],[-104.02633,48.040579],[-0.10403191116444746E3,48.8033268],[-0.10403392715573523E3,0.48993137626295436E2],[-0.9923535702639523E2,0.48993137626295436E2],[-98.3825927,48.9931816],[-97.2257378,48.9931816],[-97.1280474,48.6811149],[-0.9712912952905691E2,48.5933671],[-97.1439611,48.5367546],[-0.9713101917756649E2,48.4374272],[-0.9713680347954495E2,48.3712126],[-97.1216094,0.48286046534868895E2],[-0.9712592701428629E2,0.48173392721977756E2],[-97.0785155,0.48043369523658434E2],[-0.9700743396777389E2,47.9256071],[-97.0090325,47.8915494],[-0.9698800464574371E2,47.8203361],[-0.9694634998106875E2,0.47761526251188165E2],[-0.9685870654510825E2,0.47588337768019066E2],[-0.9686294726792629E2,0.47423927361356725E2],[-96.847517,0.47373335318411144E2],[-96.8253246,0.47018861427935924E2],[-96.8182988,46.9741361],[-0.9677013476438579E2,46.9196659],[-96.7928215,0.46839026215997585E2],[-96.7959966,0.46797091399944776E2],[-96.7866472,0.46648215661843736E2],[-0.9675819811842257E2,0.46590339683073445E2],[-96.7308586,0.46472774981323084E2],[-0.9661743029078711E2,46.3270963],[-96.5985668,46.271857],[-96.5919036,0.46227538155561824E2],[-96.5608452,46.1382413],[-0.9657048021575395E2,46.0192374],[-96.5564012,0.45942772519698835E2]]]}}],"_labels":{"US-ND":"North Dakota"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-NE.json b/src/api-umbrella/admin-ui/public/maps/US-NE.json new file mode 100644 index 000000000..d2936b136 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-NE.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-NE"},"geometry":{"type":"Polygon","coordinates":[[[-96.4809526,42.5112587],[-96.4510039,0.42505985279220845E2],[-96.3837511,0.42417776047340276E2],[-96.356104,42.2601332],[-0.9629533311053129E2,42.1329115],[-0.9620138352198649E2,42.036122],[-0.9615420273405387E2,41.9652931],[-0.9615376328091207E2,41.9204359],[-96.1312303,0.41872436671068506E2],[-0.9608663681350767E2,41.8213722],[-96.068806,41.7343275],[-96.0777708,41.6112807],[-0.9605862716888451E2,41.5457802],[-0.9601139694247343E2,0.41537880994243714E2],[-0.9599095687821715E2,41.5204896],[-0.9599736740092263E2,0.41493639049196666E2],[-0.9598158004680475E2,0.41473797739845956E2],[-95.9435674,41.4609327],[-0.9593297652932569E2,41.4254579],[-0.9594971969402695E2,0.41367428106882095E2],[-0.9593602523549667E2,41.3309865],[-95.8919426,41.3161659],[-95.8836259,0.41287557498366475E2],[-0.9591116866716567E2,41.2451832],[-0.9590690597169059E2,41.2119496],[-0.9587088729355877E2,41.1878236],[-95.8465965,41.0803334],[-95.8340172,40.8894899],[-95.838148,0.40777747908606266E2],[-95.8590001,40.7451075],[-95.826107,0.40676179301216116E2],[-0.9573955122897833E2,0.40570853369463926E2],[-0.9568469649055767E2,40.4663624],[-95.6615703,0.40362761320510195E2],[-0.9560710554521503E2,40.2954701],[-95.5212199,40.2645765],[-95.4636516,0.40198065269305694E2],[-95.4342961,40.0959803],[-95.3624675,0.40010319900815624E2],[-95.3466801,0.40001486892666186E2],[-95.5269053,40.0011243],[-0.10202448921287035E3,40.0011243],[-0.10202500557031196E3,0.41000627555780326E2],[-0.10252417490087718E3,41.0007045],[-0.10402165542675148E3,0.41000858268679785E2],[-0.10402886245827648E3,43.0014028],[-102.298274,43.0013588],[-0.10160606390393998E3,43.0013039],[-0.10091380984921224E3,43.0013039],[-0.10022160523296296E3,0.43001248969988644E2],[-98.8371411,0.43001248969988644E2],[-98.4417651,43.0010952],[-98.143283,42.8522634],[-97.9649474,42.8058681],[-0.9788091849816507E2,42.8495827],[-0.9769813895017691E2,42.8746425],[-0.9741665822654869E2,42.8810036],[-97.2387896,0.42860536073995895E2],[-97.164478,0.42813195984299405E2],[-0.9701973316257909E2,42.760176],[-96.8045275,42.7014211],[-96.6755425,42.6376015],[-96.6327782,42.5686733],[-0.9655795030804939E2,0.42524793873688346E2],[-96.4809526,42.5112587]]]}}],"_labels":{"US-NE":"Nebraska"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-NH.json b/src/api-umbrella/admin-ui/public/maps/US-NH.json new file mode 100644 index 000000000..94103f350 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-NH.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-NH"},"geometry":{"type":"Polygon","coordinates":[[[-70.7330964,0.43070034373003274E2],[-70.8061116,42.8767629],[-70.9740815,42.8716762],[-71.1392939,0.42808131286840556E2],[-71.2423347,42.7295351],[-71.3296211,0.42702486751560535E2],[-72.4668599,42.7303151],[-72.5396224,42.8296315],[-72.5498067,42.8866835],[-72.5194185,0.42966674994060384E2],[-72.4737154,0.43038536569067354E2],[-72.4381856,43.224645],[-72.4070723,43.3320363],[-72.3849568,43.5292299],[-72.2966927,43.7149538],[-72.2223811,43.7908694],[-72.1738545,43.8840884],[-72.1149239,43.9654311],[-72.0622334,44.1163503],[-72.031208,44.3007339],[-72.0017757,44.3294961],[-71.8676765,44.3549185],[-71.6830073,44.4502798],[-71.6092891,44.5140554],[-71.5684419,0.44607636970720584E2],[-71.6182869,44.7277615],[-71.6206599,44.7718936],[-71.5102254,44.9083438],[-71.5334834,44.9879727],[-71.4190169,45.2003384],[-71.327292,45.2901077],[-71.2016194,0.45260334749525285E2],[-71.1346467,0.45262817659776275E2],[-71.0845491,45.2940078],[-70.962436,43.5321523],[-70.9556355,43.389396],[-70.9196992,43.3281032],[-70.829029,0.43239070023982684E2],[-70.8128352,0.43163648878527454E2],[-70.7330964,0.43070034373003274E2]]]}}],"_labels":{"US-NH":"New Hampshire"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-NJ.json b/src/api-umbrella/admin-ui/public/maps/US-NJ.json new file mode 100644 index 000000000..eb7c6c989 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-NJ.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-NJ"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.1332223,0.39680784976135534E2],[-74.25316,39.5584852],[-74.1067672,39.7464393],[-74.1332223,0.39680784976135534E2]]],[[[-74.2415145,40.456266],[-74.049836,40.4298329],[-73.998453,40.4521571],[-73.9575948,40.3283631],[-74.0283468,0.40073007891488196E2],[-74.0799166,39.7881104],[-74.0645907,0.39993115310315545E2],[-74.1176437,39.9381287],[-74.1761349,39.726598],[-74.3306027,0.39535886288967426E2],[-74.4070236,39.5488062],[-74.4288314,39.3871863],[-74.6029867,39.2925611],[-74.7944784,39.0019068],[-74.9543075,38.9499524],[-74.8970248,39.1454651],[-75.0502182,39.2108338],[-75.1361093,39.2078675],[-75.3534298,0.39339824269769515E2],[-75.5242453,0.39490172175895474E2],[-75.5235531,39.6018482],[-75.4219076,39.7897144],[-75.3531772,39.8297376],[-75.1538302,39.8704859],[-75.0741684,39.9834803],[-74.9092965,40.0795448],[-74.7348886,0.40154504476628354E2],[-74.9763791,40.4058277],[-75.0340463,0.40420373627395456E2],[-75.0974484,40.5431349],[-75.1890194,40.5958143],[-75.1747372,0.40775517683911836E2],[-75.0749264,0.40884458117755166E2],[-75.1230355,40.9990016],[-74.9122958,0.41155271116367054E2],[-74.84139,41.2685951],[-74.6990512,0.41357298711964404E2],[-73.910079,0.40992255973429785E2],[-73.9272176,40.9142421],[-74.0255013,40.7563795],[-74.2267049,40.6080091],[-74.2641903,40.5286329],[-74.2415145,40.456266]]]]}}],"_labels":{"US-NJ":"New Jersey"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-NM.json b/src/api-umbrella/admin-ui/public/maps/US-NM.json new file mode 100644 index 000000000..c301f0269 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-NM.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-NM"},"geometry":{"type":"Polygon","coordinates":[[[-0.10300029491415688E3,36.5012316],[-0.10304215282590985E3,36.5006164],[-103.045103,35.93838],[-0.10304654735732755E3,35.6572509],[-0.10304949169337736E3,35.0950145],[-0.10305094188874516E3,34.8138964],[-0.10306271923294442E3,32.5649839],[-103.064169,32.2838657],[-103.065642,32.0027476],[-0.10329040539885652E3,32.0026487],[-0.10373999342870229E3,32.0024949],[-0.10396478469704296E3,32.002385],[-0.10418957596538372E3,0.32002286148067775E2],[-0.10463916399522948E3,32.0021323],[-104.863928,32.0020225],[-0.10508869709343246E3,32.0019236],[-0.10553827963011398E3,0.32001769790626156E2],[-0.10598786765995965E3,0.32001561050383835E2],[-0.10643745019664118E3,0.32001407241784285E2],[-0.10666221949232481E3,32.0012974],[-106.668262,32.0009458],[-106.566281,31.8195286],[-0.10656635828261331E3,31.8195286],[-0.10644538232585002E3,31.7683982],[-0.10645321008493761E3,0.31770177984916707E2],[-0.10667304651910501E3,31.7713425],[-0.10733253934211416E3,0.31774748297590968E2],[-0.10799203216512342E3,31.778165],[-108.211841,0.31779329596593886E2],[-108.212484,31.6668516],[-0.10821315399973042E3,0.31554384519653574E2],[-108.21445,0.31329428456384623E2],[-0.10856789156209071E3,31.3287803],[-0.10892133273768282E3,31.3281101],[-0.10904780735188243E3,31.3278794],[-0.10904742283038343E3,31.6832322],[-0.10904726352861947E3,0.32746763715529774E2],[-0.10904716465166261E3,0.33455788400780136E2],[-0.10904700534989867E3,34.519287],[-0.10904690647294183E3,35.2282897],[-0.10904669773269949E3,0.36646339059599335E2],[-0.10904667026687814E3,0.37000845909060224E2],[-0.10300083873741983E3,0.37000845909060224E2],[-0.10300071239464155E3,0.36875942339842375E2],[-0.10300055309287768E3,36.7510388],[-0.10300029491415688E3,36.5012316]]]}}],"_labels":{"US-NM":"New Mexico"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-NV.json b/src/api-umbrella/admin-ui/public/maps/US-NV.json new file mode 100644 index 000000000..3662471d0 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-NV.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-NV"},"geometry":{"type":"Polygon","coordinates":[[[-0.11404026970053292E3,37.0041528],[-0.11404117057947352E3,36.6124902],[-0.11404287895356211E3,36.1817712],[-0.11406192375409329E3,36.1752123],[-114.119437,36.076665],[-0.11418320732805587E3,36.0303027],[-0.11423214592855547E3,36.0316979],[-114.281573,36.0603283],[-0.11433154473605819E3,36.1162927],[-0.11440608697522985E3,0.36148306814038364E2],[-0.11450527704249025E3,0.36156425710832444E2],[-0.11459297541009344E3,36.1475597],[-0.11466914362588973E3,0.36121719898961665E2],[-114.715759,36.0849816],[-0.11474136225657435E3,36.0135155],[-0.11473232050818248E3,35.9836657],[-114.687101,0.35917341229055914E2],[-0.11468368952488207E3,35.8135973],[-0.11467707575509849E3,35.7298046],[-0.11465012629117989E3,35.6835082],[-0.11464516596384222E3,35.6305431],[-0.11466206293714303E3,0.35545355130881354E2],[-0.11464852778037671E3,35.4759215],[-0.11459098688462704E3,35.3527758],[-0.11461052057677838E3,34.9976097],[-0.11461054254943551E3,34.9911168],[-0.11488217952268828E3,0.35202812393205015E2],[-0.11513609554799936E3,35.4009618],[-0.11564391661229305E3,35.7972936],[-115.897827,35.995476],[-0.11640568116771928E3,36.3917858],[-0.11665959169986613E3,36.5899682],[-0.11702626041502528E3,36.8655493],[-0.11775960333850792E3,37.4167883],[-0.11812627205366707E3,37.6923804],[-0.11859471811645881E3,38.0193335],[-118.828941,0.38182843024462265E2],[-119.297387,0.38509796161934595E2],[-0.12000006179799806E3,39.0002588],[-0.12000008377065515E3,39.1877845],[-0.12000060012809678E3,41.062975],[-0.12000065505973947E3,0.41438015267777914E2],[-120.000809,0.42000559234549776E2],[-0.11701667484337055E3,0.42000559234549776E2],[-0.11627315308649185E3,42.0006911],[-0.11552963682277738E3,42.0008449],[-0.11515787594433802E3,42.0008998],[-0.11441435418745931E3,0.42001053619334265E2],[-0.11404259330901996E3,42.0011086],[-0.11404246696624166E3,41.6888002],[-114.041846,40.4395777],[-0.11404163749843666E3,39.9710987],[-0.11404158805995819E3,39.814939],[-114.041275,39.1903223],[-0.11404122551111622E3,39.0341517],[-0.11404101677087388E3,38.5656836],[-0.11404039604331112E3,0.37316461155475004E2],[-0.11404026970053292E3,37.0041528]]]}}],"_labels":{"US-NV":"Nevada"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-NY.json b/src/api-umbrella/admin-ui/public/maps/US-NY.json new file mode 100644 index 000000000..1329ab1a1 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-NY.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-NY"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.1881319,0.40522854100054765E2],[-74.2358785,40.5187123],[-74.1881539,0.40614600929726485E2],[-74.100483,40.6584474],[-74.0687545,40.6493067],[-74.0797079,0.40586464942325044E2],[-74.1881319,0.40522854100054765E2]]],[[[-72.5097835,40.9860267],[-72.580887,0.40921328236349105E2],[-72.516573,0.40914813343522475E2],[-72.4090169,40.972151],[-72.2874422,41.0240834],[-72.1512447,0.41051472284282475E2],[-72.1018941,41.0150196],[-72.003951,0.41044265252757576E2],[-71.9032063,41.0607008],[-72.33899,40.8941481],[-72.4280782,40.8753834],[-72.5555416,40.8257801],[-72.6761055,0.40790634871988544E2],[-72.7628426,40.7778468],[-73.1942867,40.6542066],[-73.2655221,0.40663566996047514E2],[-73.6208968,40.5999012],[-73.7667293,40.5927162],[-73.899565,40.5705238],[-73.8013253,40.621786],[-73.8226717,40.6559645],[-73.8751754,40.6516249],[-73.9289974,40.5988136],[-74.0149105,40.5812135],[-74.0320382,0.40638682961895164E2],[-73.9645712,40.7253431],[-73.8792623,0.40791667586871675E2],[-73.7571932,40.8336793],[-73.6952083,0.40870033068376706E2],[-73.6522408,0.40838018906999274E2],[-73.6428365,40.8812281],[-73.5737984,40.9196254],[-73.487391,40.9199549],[-73.3727047,40.9438063],[-73.2781563,40.9241957],[-73.1858382,40.9298536],[-73.111296,0.40956879995517774E2],[-73.0337764,40.9659767],[-72.8287825,40.9720521],[-72.625118,0.40991838492945114E2],[-72.5436763,0.41027005730614796E2],[-72.3725752,0.41125553097655306E2],[-72.2741377,0.41153040891672624E2],[-72.427386,41.0385304],[-72.5097835,40.9860267]]],[[[-78.9299316,43.0224609],[-78.9605469,42.9882324],[-79.0120117,43.0026855],[-79.0141602,43.0515137],[-78.9162109,43.0531738],[-78.9299316,43.0224609]]],[[[-76.2620117,43.9901367],[-76.2620117,43.9901367],[-76.2620117,43.9901367],[-76.2620117,43.9901367]]],[[[-76.1112305,44.2772949],[-76.1452148,0.44292089843750034E2],[-76.0754395,0.44305761718749984E2],[-76.1112305,44.2772949]]],[[[-73.3521822,45.005419],[-73.3450521,44.9388638],[-73.3658053,44.8603665],[-73.3485677,0.44775299330632016E2],[-73.3720785,44.5973318],[-73.309753,0.44459640138903104E2],[-73.3246395,0.44367860350245714E2],[-73.3209151,44.2688735],[-73.4097506,44.1314126],[-73.4249447,0.44038292466579954E2],[-73.3830098,43.8758266],[-73.3758468,0.43762184057609765E2],[-73.4133651,43.6278542],[-73.3914364,43.5785256],[-73.3492379,43.6203835],[-73.3061605,43.6162527],[-73.247098,43.5530483],[-73.2665548,0.42864776796813864E2],[-73.2801998,42.813152],[-73.2533272,0.42752221860879644E2],[-73.5072872,42.0800124],[-73.4805684,42.0555678],[-73.5447286,41.2959511],[-73.484139,0.41218958862937164E2],[-73.7230147,0.41104514278493376E2],[-73.6304659,40.9918605],[-73.8512472,0.40831405137215704E2],[-73.9106722,40.8161122],[-73.9870821,40.7513917],[-73.9067501,0.40912462269213975E2],[-73.8719674,41.0551637],[-73.8822506,41.1705861],[-73.9699545,41.2497316],[-73.9176485,0.41135781369529845E2],[-73.910079,0.40992255973429785E2],[-74.6990512,0.41357298711964404E2],[-74.7566195,0.41423908821927306E2],[-74.9353671,41.474369],[-75.0227304,41.5528663],[-75.0513607,0.41608369278182614E2],[-75.0669064,41.7132118],[-75.0536789,41.7650453],[-75.121893,41.8533644],[-75.2388644,41.8922011],[-75.2739767,41.9466603],[-75.3513424,0.41998416900483626E2],[-79.7629576,42.0008998],[-79.7630029,0.42275685276580525E2],[-79.5122559,42.3910156],[-79.4163574,0.42456884765624984E2],[-79.3153809,42.5115723],[-79.2092285,0.42555175781250036E2],[-79.1249512,42.6112305],[-79.0625488,42.6797852],[-78.877832,0.42799121093749996E2],[-78.8862305,42.8856445],[-78.9197266,42.9481934],[-78.9081543,43.0703125],[-79.0660508,0.43106102489613455E2],[-79.0531738,43.2851074],[-78.6894531,43.3614746],[-78.4574707,0.43387548828125055E2],[-78.1749512,43.3946777],[-77.8382324,43.3570801],[-77.707373,43.3228516],[-77.6246094,0.43279101562499974E2],[-77.5290527,0.43267382812499996E2],[-77.4208008,43.2877441],[-77.2708008,43.2945312],[-77.0790039,0.43287695312500055E2],[-76.9630859,43.2637695],[-76.8853027,0.43314013671874996E2],[-76.6928711,43.3609375],[-76.5796875,43.4538086],[-76.4727051,43.5072754],[-76.3760254,0.43535058593749994E2],[-76.2317871,0.43550439453125016E2],[-76.2025879,43.5745117],[-76.1950195,43.6448242],[-76.2181152,43.7578125],[-76.2846191,43.8692383],[-76.2325195,43.8945312],[-76.1983398,43.8744629],[-76.1364746,43.9466309],[-76.0706543,43.9984863],[-76.1754395,0.43993798828125016E2],[-76.1541504,0.44045410156249964E2],[-76.1976074,44.0834961],[-76.2806152,44.0464844],[-76.3524414,44.1060547],[-76.237793,44.1832031],[-75.8321777,44.3972656],[-75.7756836,0.44458886718749994E2],[-75.7919601,44.4970486],[-75.4012533,44.7722781],[-75.1793844,44.8993789],[-74.9961435,0.44970119894704474E2],[-74.8566391,45.0039248],[-73.3521822,45.005419]]]]}}],"_labels":{"US-NY":"New York"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-OH.json b/src/api-umbrella/admin-ui/public/maps/US-OH.json new file mode 100644 index 000000000..03805399d --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-OH.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-OH"},"geometry":{"type":"Polygon","coordinates":[[[-80.5190807,40.6469557],[-80.6375243,0.40603263038669006E2],[-80.6590465,0.40562976171897795E2],[-80.6040929,40.4452027],[-80.6018187,0.40363892912350245E2],[-80.668275,40.1852442],[-80.8035167,39.9091358],[-80.8721923,39.7355079],[-80.8743126,39.6642945],[-80.9632909,39.5711304],[-81.2625036,0.39386538138739006E2],[-81.3333544,39.3628187],[-81.4396471,39.3925586],[-81.4927221,0.39373618216371135E2],[-81.6064635,39.274137],[-81.7005944,0.39229466599544075E2],[-81.7706652,0.39098828166826216E2],[-81.8026025,39.0860621],[-81.7801244,38.9469751],[-81.8824401,38.8942188],[-81.9185302,38.9523474],[-82.0010925,39.0111023],[-82.0722729,38.9629493],[-82.2035265,38.7682276],[-82.1800707,38.6375891],[-82.2908679,38.5520166],[-82.3181469,38.4796716],[-82.3870641,0.38433990494980286E2],[-82.4975427,38.4149732],[-82.6212817,38.4506787],[-82.7582263,38.5411621],[-82.8446228,38.6276685],[-82.8804382,38.7102527],[-83.0000683,38.7139991],[-83.2034692,38.6389075],[-83.3569702,38.6274048],[-83.5383874,0.38699859645747374E2],[-83.6898779,38.6495313],[-83.8280859,38.7312256],[-83.9483862,0.38774226103662365E2],[-84.1132361,38.798385],[-84.2272852,38.8652039],[-84.2904346,0.38974704626935086E2],[-84.4300598,39.090896],[-84.5945471,39.0857764],[-84.7069483,39.1289087],[-84.8217115,39.0919837],[-84.8201404,0.39423825737817616E2],[-84.7961133,41.7014345],[-83.4641968,0.41739447164042254E2],[-83.3522461,41.7140137],[-83.0690918,41.6006348],[-82.9632813,41.5419434],[-82.8555176,41.577832],[-82.7,0.41521289062499974E2],[-82.9707031,41.4757324],[-83.0274902,0.41454541015624976E2],[-82.8911133,0.41443310546875004E2],[-82.8222656,41.4652344],[-82.642627,0.41466894531250006E2],[-82.4802734,41.3980957],[-82.1213379,41.4929688],[-81.9663086,41.507666],[-81.7231934,41.5109375],[-81.637207,41.5484375],[-81.4470703,41.6714844],[-81.2286133,41.7704102],[-80.8692383,41.8933105],[-80.5202782,41.9895677],[-80.5190807,40.6469557]]]}}],"_labels":{"US-OH":"Ohio"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-OK.json b/src/api-umbrella/admin-ui/public/maps/US-OK.json new file mode 100644 index 000000000..3963028f2 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-OK.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-OK"},"geometry":{"type":"Polygon","coordinates":[[[-0.9461837992156065E2,0.36500869083346984E2],[-94.439138,35.3872509],[-94.484149,33.6484337],[-94.7091984,0.33699289386631385E2],[-0.9476573405315831E2,33.7316112],[-0.9486937358347903E2,0.33768195639259964E2],[-94.9623893,33.843408],[-0.9514607525419063E2,0.33936616055840915E2],[-95.2158604,33.9590392],[-95.2380308,33.9564793],[-95.2760161,0.33910622402505645E2],[-95.3738878,0.33874268641353204E2],[-0.9542711652467715E2,33.8727855],[-0.9552349409183017E2,33.8865623],[-0.9554183576733453E2,33.8981639],[-95.5557115,0.33926091153095776E2],[-95.5944713,33.9451634],[-0.9562278852921173E2,33.930255],[-95.7631663,33.8914732],[-0.9578391402363943E2,0.33864501795277484E2],[-0.9586308150712821E2,33.8633043],[-0.9594157882457577E2,33.882838],[-96.1393437,0.33821962731154805E2],[-96.2072722,33.7740623],[-0.9627856248000877E2,33.7576268],[-0.9631504807710373E2,0.33711121662473424E2],[-0.9633675156914255E2,0.33717713459599885E2],[-96.41114,33.7752049],[-0.9648720384538969E2,0.33792299644085766E2],[-0.9659159044605137E2,33.8492747],[-96.5953642,33.8994054],[-96.6251317,0.33911446377146426E2],[-0.9664853808005971E2,33.9063817],[-0.9669401598706797E2,33.8637987],[-0.9672021288748137E2,0.33852790369049494E2],[-0.9674628344511655E2,33.8541856],[-0.9684757190112877E2,33.8831786],[-0.9688999560880183E2,0.33934616544045944E2],[-0.9693405078626365E2,0.33953480070156154E2],[-96.977694,33.9380333],[-97.0021605,33.8815965],[-0.9702158985210299E2,33.8665123],[-0.9706383777851937E2,0.33856800378968096E2],[-97.0612285,33.8284996],[-97.0989501,0.33750441732332696E2],[-0.9711900013413921E2,33.7347642],[-0.9714507069177441E2,33.7376866],[-0.9717238270453497E2,33.7568797],[-97.2010131,33.8081639],[-97.1861815,0.33870082850177944E2],[-0.9719476185577929E2,0.33890616298226824E2],[-0.9721493824815053E2,33.8971092],[-97.2646789,33.8677757],[-97.3081627,33.8692259],[-97.3636107,33.8401781],[-97.3984923,33.8313231],[-97.4301714,33.8385081],[-97.4815655,33.8857054],[-0.9757124685549263E2,33.9159398],[-97.6059252,33.9716515],[-97.6217895,33.9877684],[-0.9766036245947805E2,33.9900426],[-0.9769193716771379E2,33.9721349],[-0.9779529105349235E2,0.33899064784877275E2],[-97.8424224,33.8757848],[-97.8828576,0.33871115565061054E2],[-97.9215899,33.8783665],[-97.9462377,33.8970763],[-97.9510717,33.971212],[-0.9797396171460495E2,0.33993733977941694E2],[-98.0693835,34.040305],[-0.9808958732936735E2,34.0840965],[-0.9809863457092337E2,34.1450267],[-98.2140789,34.1353368],[-0.9835597833074029E2,34.1415111],[-0.9842041864081567E2,34.0880516],[-0.9845367425731867E2,34.078131],[-98.4938513,34.0887767],[-98.6083947,34.1612755],[-0.9873011774930947E2,34.1465758],[-98.7989526,0.34154738622755424E2],[-0.9896883968224411E2,0.34208604591607106E2],[-0.9910229061506917E2,34.2134715],[-99.1575079,34.2232823],[-99.1865777,34.2354772],[-0.9919990963734773E2,0.34318314068448416E2],[-0.9927031552382257E2,34.4072264],[-0.9936038693839137E2,34.4560936],[-99.3846502,34.4467882],[-0.9940498593911607E2,34.3920653],[-99.432298,34.3892198],[-99.5361682,34.4047435],[-99.6320294,34.3884947],[-99.6856152,34.4158287],[-99.867027,0.34543369008674226E2],[-99.9406903,34.576339],[-0.9999934082018743E2,34.5867211],[-0.10000244445800111E3,36.500902],[-0.10300029491415688E3,36.5012316],[-0.10300083873741983E3,0.37000845909060224E2],[-94.6180668,0.37000845909060224E2],[-0.9461837992156065E2,0.36500869083346984E2]]]}}],"_labels":{"US-OK":"Oklahoma"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-OR.json b/src/api-umbrella/admin-ui/public/maps/US-OR.json new file mode 100644 index 000000000..58e1a38d3 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-OR.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-OR"},"geometry":{"type":"Polygon","coordinates":[[[-0.12322058865424987E3,0.46153622137117175E2],[-0.12312090420220507E3,0.46178780829483124E2],[-0.12294199733502867E3,46.1148624],[-0.12284337306368836E3,45.9780936],[-0.12272591273205917E3,45.6737503],[-0.12264984888638413E3,45.6274429],[-0.12220253502654705E3,45.5910672],[-0.12208512413339625E3,0.45602646774302244E2],[-121.882014,45.6894607],[-0.12166251852645485E3,0.45718135059957724E2],[-121.402121,45.7118399],[-0.12124269795379928E3,45.6870328],[-0.12118427815176614E3,0.45643779588371295E2],[-0.12104524067087628E3,0.45639044480768824E2],[-0.12071577715733171E3,45.6898233],[-120.351432,0.45725166310225966E2],[-0.12015604569066716E3,0.45762168264762515E2],[-0.11993427566267603E3,0.45837875054759884E2],[-119.429113,0.45934170224448856E2],[-0.11917734509180927E3,45.9450796],[-0.11900242076873018E3,46.0005496],[-116.896479,46.0020987],[-0.11676472537086885E3,0.45872910456486956E2],[-0.11661682741600822E3,45.7991702],[-0.11652091676781825E3,45.7219144],[-0.11647704286477743E3,45.6410879],[-0.11654915712534087E3,0.45456737344908134E2],[-116.737342,45.1688406],[-0.11683955325458265E3,44.9851602],[-0.11685585696614214E3,0.44905740009436094E2],[-116.948955,44.7701138],[-0.11711891910996617E3,44.5783145],[-0.11720170109554591E3,44.4362063],[-0.11719731205729265E3,0.44343800290734144E2],[-0.11713974369572155E3,44.2902639],[-0.11695319034387853E3,44.2453079],[-0.11691131045946844E3,44.1574062],[-0.11696068301994559E3,44.0791177],[-0.11695763431377463E3,0.43964134748907306E2],[-0.11702023990698312E3,43.8084365],[-0.11701667484337055E3,0.42000559234549776E2],[-0.12422840851691392E3,42.000768],[-0.12435527314577686E3,0.42122881016559695E2],[-0.12442051545783593E3,42.3810048],[-0.12440617280592161E3,0.42583680594684644E2],[-0.12453962923191101E3,42.8128664],[-0.12445444124038016E3,43.0123671],[-0.12434658845306272E3,43.3416494],[-0.12419693817879934E3,43.4233437],[-0.12428798737660848E3,43.4096987],[-0.12418435333945209E3,43.6515517],[-0.12414871918281928E3,43.6917287],[-0.12413066315185706E3,44.0556619],[-0.12409916534792114E3,44.3337808],[-0.12404746368579266E3,0.44425505616116645E2],[-0.12405919159151352E3,44.7777273],[-0.12394860320838863E3,45.4008499],[-0.12392935516077934E3,45.5769607],[-0.12396121551355724E3,45.8429947],[-0.12394713104036373E3,0.46140592351463816E2],[-0.12398930206248019E3,46.2193973],[-0.12391168365131621E3,0.46182197577660304E2],[-0.12367360991176562E3,46.1826041],[-0.12352163053585087E3,0.46222660225688195E2],[-0.12340228055571212E3,46.1549625],[-0.12322058865424987E3,0.46153622137117175E2]]]}}],"_labels":{"US-OR":"Oregon"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-PA.json b/src/api-umbrella/admin-ui/public/maps/US-PA.json new file mode 100644 index 000000000..e72eb2fb6 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-PA.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-PA"},"geometry":{"type":"Polygon","coordinates":[[[-74.6990512,0.41357298711964404E2],[-74.7777792,0.41325075810344636E2],[-74.812485,41.3015101],[-74.84139,41.2685951],[-74.9122958,0.41155271116367054E2],[-75.0315414,41.0517799],[-75.1230355,40.9990016],[-75.1227499,40.9717665],[-75.0749264,0.40884458117755166E2],[-75.0755636,40.8562672],[-75.1117965,40.8021046],[-75.1747372,0.40775517683911836E2],[-75.1856906,0.40743822126062135E2],[-75.1922824,0.40689868266582074E2],[-75.1890194,40.5958143],[-75.1705185,0.40576796973206264E2],[-75.0974484,40.5431349],[-75.0340463,0.40420373627395456E2],[-74.9763791,40.4058277],[-74.7348886,0.40154504476628354E2],[-74.9092965,40.0795448],[-75.0235324,0.40017450028040706E2],[-75.0741684,39.9834803],[-75.1729245,39.8947767],[-75.3208774,39.8646961],[-75.4006381,39.8315723],[-75.4210287,39.8154224],[-75.5104465,0.39843437570230826E2],[-75.634581,39.8394825],[-75.6768234,39.8272327],[-75.7091452,0.39802898017903125E2],[-75.7847201,39.7223572],[-76.2463217,0.39722434147646176E2],[-77.1694919,39.722533],[-78.0926951,39.7226429],[-79.4774998,0.39722796696488054E2],[-79.9984715,39.7226429],[-80.5194432,39.7225111],[-80.5201683,40.5321485],[-80.5190807,40.6469557],[-80.5202782,40.7526551],[-80.5202782,41.9895677],[-80.3344727,42.0408203],[-80.2519531,0.42075292968750055E2],[-80.1681641,0.42108984374999984E2],[-80.124707,0.42128320312500016E2],[-80.0761719,42.1459961],[-79.7630029,0.42275685276580525E2],[-79.7629576,42.0008998],[-78.935775,42.0004384],[-78.6600511,0.42000273590007616E2],[-76.3163925,41.9989662],[-75.3513424,0.41998416900483626E2],[-75.2739767,41.9466603],[-75.2388644,41.8922011],[-75.121893,41.8533644],[-75.0955368,0.41831710351155586E2],[-75.0947677,0.41799487449535725E2],[-75.0536789,41.7650453],[-75.0669064,41.7132118],[-75.0661923,0.41666607805794875E2],[-75.0513607,0.41608369278182614E2],[-75.0227304,41.5528663],[-74.981257,0.41507701549733056E2],[-74.9353671,41.474369],[-74.7566195,0.41423908821927306E2],[-74.7203646,0.41394860969256705E2],[-74.6990512,0.41357298711964404E2]]]}}],"_labels":{"US-PA":"Pennsylvania"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-RI.json b/src/api-umbrella/admin-ui/public/maps/US-RI.json new file mode 100644 index 000000000..3ca113fbb --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-RI.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-RI"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.3653596,41.4852675],[-71.3930781,41.4667445],[-71.3839815,41.5705324],[-71.3544722,41.5422975],[-71.3653596,41.4852675]]],[[[-71.2413789,0.41491969127257896E2],[-71.3462324,0.41469403208428346E2],[-71.3181514,41.5063063],[-71.2801936,41.6200477],[-71.2320515,41.6543031],[-71.2413789,0.41491969127257896E2]]],[[[-71.3407283,41.7979164],[-71.2337654,41.7065541],[-71.271075,41.6812306],[-71.3305989,41.7622548],[-71.3901558,0.41795334617346036E2],[-71.3636787,41.7027309],[-71.4265425,41.6332973],[-71.443802,41.4536928],[-71.5228596,41.3789747],[-71.769283,41.3309096],[-71.8423531,41.3355128],[-71.8045271,41.4167457],[-71.795793,41.5199513],[-71.8008357,42.011963],[-71.3871345,42.0168629],[-71.3790706,0.41902407375336814E2],[-71.3376301,0.41891443019449774E2],[-71.3407283,41.7979164]]]]}}],"_labels":{"US-RI":"Rhode Island"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-SC.json b/src/api-umbrella/admin-ui/public/maps/US-SC.json new file mode 100644 index 000000000..2d904472a --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-SC.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-SC"},"geometry":{"type":"Polygon","coordinates":[[[-78.5642723,33.8766637],[-78.8414353,33.7240965],[-78.9202952,0.33658694902660976E2],[-79.1381871,33.4059215],[-79.1938218,33.2441478],[-79.2383604,0.33312153141394596E2],[-79.2264732,33.4048887],[-79.2813279,33.3154381],[-79.2292418,33.1851292],[-79.4199315,33.0425267],[-79.5871214,33.0008775],[-79.6149278,32.9092625],[-79.8049913,32.7873802],[-79.9331029,32.810034],[-79.89364,0.32728702191403336E2],[-80.0217516,32.6198936],[-80.2296678,32.5765086],[-80.3628441,0.32500724887784834E2],[-80.5722325,32.5336949],[-80.6341954,32.5117332],[-80.4742784,0.32422776886764474E2],[-80.4857262,32.3518272],[-80.6082237,32.2928086],[-80.6472142,32.3959263],[-80.7093309,32.3370396],[-80.8025609,32.4480454],[-80.7978807,32.3633958],[-80.6942137,0.32215739525350976E2],[-80.7580114,32.1421751],[-80.8492418,32.1139292],[-80.8723461,32.0295652],[-81.0748131,32.1096995],[-81.1350182,32.1818577],[-81.1329528,32.2746702],[-81.1715038,0.32380138945684855E2],[-81.2903319,32.5572386],[-81.3769701,0.32607468055919234E2],[-81.4338134,32.728032],[-81.4897777,32.9356626],[-81.5782397,33.0685753],[-81.69932,0.33126758847213004E2],[-81.7803222,0.33195291564671074E2],[-81.8212792,33.2740965],[-81.9328454,0.33389870429515504E2],[-81.936394,0.33447284982486984E2],[-82.0057177,33.5228929],[-82.2083605,33.6635838],[-82.2566235,0.33749233236192914E2],[-82.3518969,33.8377281],[-82.5893444,34.0176183],[-82.8185852,34.3660167],[-82.8477319,0.34436911485081986E2],[-83.0527807,0.34510860462512305E2],[-83.1665222,34.599597],[-83.3555749,34.7083177],[-83.3167163,34.8056566],[-83.0965503,35.0016417],[-82.3560827,35.2016259],[-81.0873156,35.155714],[-81.0452489,35.0656151],[-80.9336827,35.1136693],[-80.7929698,34.9627721],[-80.7840819,34.828629],[-79.6535557,34.7967906],[-78.5642723,33.8766637]]]}}],"_labels":{"US-SC":"South Carolina"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-SD.json b/src/api-umbrella/admin-ui/public/maps/US-SD.json new file mode 100644 index 000000000..0bfbf4582 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-SD.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-SD"},"geometry":{"type":"Polygon","coordinates":[[[-96.5564012,0.45942772519698835E2],[-0.9659105211595273E2,0.45843269342075025E2],[-0.9661468920181531E2,45.7999722],[-0.9666267199173167E2,45.7556534],[-0.9681361865276331E2,0.45659182420990156E2],[-0.9685106006044155E2,45.6260037],[-0.9684545153971985E2,45.5958682],[-0.9681490954636723E2,45.557427],[-0.9673752734126683E2,45.4678445],[-0.9669610888265565E2,0.45431776406455874E2],[-96.5297594,45.3715494],[-96.4536681,45.2973367],[-96.4536186,0.43501170864059176E2],[-96.5986217,43.4975014],[-0.9658128526987701E2,43.4349233],[-0.9654164659648993E2,43.3734548],[-96.5349559,43.3380568],[-96.5425255,43.309031],[-0.9656994188565521E2,43.283323],[-0.9656345445864993E2,43.2426845],[-96.5553905,0.43231676224872466E2],[-0.9649028001738203E2,0.43205528762937554E2],[-0.9646813707220139E2,43.1702297],[-0.9646129258951845E2,43.129767],[-0.9646268785324355E2,0.43099181102630716E2],[-0.9650211229322399E2,0.43043293649326934E2],[-96.5132744,0.42969059027354454E2],[-0.9656257555236645E2,42.8585695],[-96.6160845,42.7913881],[-0.9662683458802087E2,0.42757000913796354E2],[-96.6217699,42.7295351],[-96.5387023,0.42658585382698355E2],[-0.9653361009715991E2,42.6301638],[-96.5063256,42.5935793],[-96.4809526,42.5112587],[-0.9655795030804939E2,0.42524793873688346E2],[-96.6327782,42.5686733],[-96.6755425,42.6376015],[-96.8045275,42.7014211],[-0.9701973316257909E2,42.760176],[-97.164478,0.42813195984299405E2],[-97.2387896,0.42860536073995895E2],[-0.9741665822654869E2,42.8810036],[-0.9769813895017691E2,42.8746425],[-0.9788091849816507E2,42.8495827],[-97.9649474,42.8058681],[-98.143283,42.8522634],[-98.4417651,43.0010952],[-98.8371411,0.43001248969988644E2],[-0.10022160523296296E3,0.43001248969988644E2],[-0.10091380984921224E3,43.0013039],[-0.10402886245827648E3,43.0014028],[-0.10403721206796999E3,45.0011343],[-104.005478,45.0009695],[-0.10400478042610779E3,45.0134829],[-104.011087,45.9430582],[-0.10284629954695428E3,45.9430362],[-102.380386,45.9429813],[-0.10005076233093801E3,45.9429373],[-99.5848486,0.45942882382984344E2],[-98.6530157,0.45942882382984344E2],[-0.9818710198152475E2,45.9428275],[-0.9725527455340023E2,45.9428275],[-96.5564012,0.45942772519698835E2]]]}}],"_labels":{"US-SD":"South Dakota"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-TN.json b/src/api-umbrella/admin-ui/public/maps/US-TN.json new file mode 100644 index 000000000..04809afbd --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-TN.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-TN"},"geometry":{"type":"Polygon","coordinates":[[[-83.6675207,36.6050305],[-81.9525109,0.36598021186662415E2],[-81.9053356,36.6185436],[-81.6588903,36.6105786],[-81.7044176,0.36533992863907365E2],[-81.7076476,0.36481961611922564E2],[-81.7333227,36.4059142],[-81.7341247,36.355454],[-81.8082604,36.3527184],[-81.851151,36.3396996],[-81.908247,36.3064111],[-82.0513659,0.36122862477130276E2],[-82.1006176,36.1065258],[-82.1824987,0.36153788991981884E2],[-82.2949438,36.1339697],[-82.3682446,0.36099549487959685E2],[-82.4784265,36.0100549],[-82.5211303,0.35981215743211244E2],[-82.576842,0.35972272871776404E2],[-82.6110974,0.36047364427375236E2],[-82.7000866,36.0298412],[-82.7555896,35.9998705],[-82.8128173,35.9474438],[-82.8877221,35.9517284],[-82.9202526,0.35878900065480124E2],[-82.9494763,35.8345263],[-82.9902026,35.8004467],[-83.1203686,35.7746178],[-83.2842407,35.682058],[-83.5111194,35.5840819],[-83.7227161,0.35559901029873764E2],[-83.8117053,0.35540290433422506E2],[-83.8713061,35.51489],[-84.0037354,35.4140685],[-84.0622815,35.2860119],[-84.128584,35.2614135],[-84.2324707,0.35260589495018365E2],[-84.2611011,0.35249581193817285E2],[-84.2869739,35.2008458],[-84.32469,34.9880956],[-85.6236036,0.35000861701907475E2],[-88.1904274,35.0249987],[-88.1732668,0.34999005012383485E2],[-90.2937051,0.35001114387463964E2],[-90.255956,35.046389],[-0.9014226952131835E2,35.1142955],[-90.0929189,35.2035924],[-0.9010788231297539E2,35.3142028],[-90.0660244,0.35414112450093604E2],[-89.9673452,35.5033105],[-89.92652,35.5916515],[-89.9435049,35.6791357],[-89.8945608,35.7505028],[-89.7796548,35.8057421],[-89.7635927,35.8280444],[-89.7635927,35.8887658],[-89.7037722,35.9069042],[-89.6891714,35.9435986],[-89.7093203,0.35983050460078125E2],[-89.6976968,36.0303027],[-89.6418862,36.1045153],[-89.6341299,36.1679174],[-89.6745486,0.36220574883201444E2],[-89.654081,36.2479638],[-89.594623,36.2594445],[-89.5835488,36.2876574],[-89.6117068,0.36321967709334935E2],[-89.6040932,0.36351916440946134E2],[-89.55527,0.36372922301122394E2],[-89.5406032,36.4266674],[-89.5573134,0.36501077823589334E2],[-89.4503286,0.36500023136049094E2],[-88.0591078,36.4996826],[-88.0567128,36.5903198],[-88.0962965,36.693009],[-87.8687147,36.6750463],[-87.8391505,36.643966],[-86.5075855,36.66484],[-83.7303845,0.36586815131547375E2],[-83.6675207,36.6050305]]]}}],"_labels":{"US-TN":"Tennessee"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-TX.json b/src/api-umbrella/admin-ui/public/maps/US-TX.json new file mode 100644 index 000000000..d510aacfe --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-TX.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-TX"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-97.1707018,26.1593831],[-97.1845006,26.1129329],[-97.2673156,0.26329759076209307E2],[-0.9740208486173495E2,0.26820507385945454E2],[-97.407177,0.27100208324349587E2],[-97.3859899,0.27196503494038545E2],[-0.9735123464006855E2,0.26801468078578587E2],[-0.9720222706602499E2,26.2997884],[-97.1707018,26.1593831]]],[[[-97.3536132,0.27300060626895206E2],[-97.376223,0.27328251545939345E2],[-97.2950396,27.5230721],[-0.9713000843534037E2,0.27779130469389024E2],[-97.0605584,0.27822021096025203E2],[-0.9725090748780387E2,27.5411886],[-97.3536132,0.27300060626895206E2]]],[[[-0.9701435535475673E2,27.901628],[-0.9697867175964545E2,0.28013842392405046E2],[-96.899301,0.28117454456904404E2],[-96.8397661,28.0888021],[-0.9701435535475673E2,27.901628]]],[[[-96.7643999,28.1525668],[-0.9675561083805049E2,28.2024337],[-96.5193224,0.28333467648738424E2],[-96.4133318,0.28337807248513336E2],[-96.7643999,28.1525668]]],[[[-0.9503969463489813E2,0.29145917630902833E2],[-0.9508966595028093E2,29.1363046],[-94.8716697,0.29290146152029713E2],[-94.7676182,29.3390353],[-0.9486495158624007E2,0.29252891511936685E2],[-0.9503969463489813E2,0.29145917630902833E2]]],[[[-0.10281291758767311E3,0.36501209659531845E2],[-0.10000244445800111E3,36.500902],[-0.9999934082018743E2,34.5867211],[-99.867027,0.34543369008674226E2],[-99.6320294,34.3884947],[-0.9940498593911607E2,34.3920653],[-0.9936038693839137E2,34.4560936],[-0.9927031552382257E2,34.4072264],[-0.9919990963734773E2,0.34318314068448416E2],[-99.1865777,34.2354772],[-0.9896883968224411E2,0.34208604591607106E2],[-98.7989526,0.34154738622755424E2],[-98.6083947,34.1612755],[-98.4938513,34.0887767],[-0.9835597833074029E2,34.1415111],[-0.9809863457092337E2,34.1450267],[-98.0693835,34.040305],[-97.9510717,33.971212],[-97.9462377,33.8970763],[-97.8424224,33.8757848],[-0.9766036245947805E2,33.9900426],[-0.9757124685549263E2,33.9159398],[-97.3984923,33.8313231],[-0.9721493824815053E2,33.8971092],[-97.2010131,33.8081639],[-0.9711900013413921E2,33.7347642],[-96.977694,33.9380333],[-0.9693405078626365E2,0.33953480070156154E2],[-0.9684757190112877E2,33.8831786],[-0.9674628344511655E2,33.8541856],[-0.9664853808005971E2,33.9063817],[-0.9659159044605137E2,33.8492747],[-96.41114,33.7752049],[-0.9631504807710373E2,0.33711121662473424E2],[-0.9627856248000877E2,33.7576268],[-96.1393437,0.33821962731154805E2],[-0.9594157882457577E2,33.882838],[-0.9578391402363943E2,0.33864501795277484E2],[-95.5944713,33.9451634],[-0.9552349409183017E2,33.8865623],[-95.3738878,0.33874268641353204E2],[-95.2380308,33.9564793],[-0.9514607525419063E2,0.33936616055840915E2],[-94.9623893,33.843408],[-0.9486937358347903E2,0.33768195639259964E2],[-94.7091984,0.33699289386631385E2],[-94.484149,33.6484337],[-94.3779551,33.5661131],[-0.9429467873733739E2,33.5874595],[-94.047327,0.33554434644777494E2],[-0.9404130653528927E2,33.0119957],[-0.9404330055391999E2,0.31999231948732465E2],[-93.9050651,31.8769981],[-0.9382679847046573E2,31.7502598],[-93.8206516,0.31603965820373055E2],[-93.7375785,0.31513812008340203E2],[-0.9366365698475019E2,0.31372198233406838E2],[-93.6658817,31.322584],[-0.9355774877758515E2,0.31180420882341146E2],[-93.5305906,31.0461899],[-93.6247214,30.7143479],[-93.7202146,0.30558265096888967E2],[-93.750394,0.30344712842648836E2],[-93.7209672,30.2829038],[-93.710629,0.30112813419740096E2],[-0.9379400977292589E2,0.29977264098163037E2],[-93.8414487,0.29979747008414027E2],[-0.9394630225920413E2,0.29815007011895297E2],[-93.8904642,29.6893564],[-0.9409967689884395E2,0.29670382982940872E2],[-94.5744566,0.29484527262960377E2],[-94.7596092,29.384255],[-94.750128,29.418027],[-94.526265,29.5479623],[-0.9460533365641457E2,0.29567803633324626E2],[-94.7782914,0.29547863447017072E2],[-94.724365,0.29655298753849824E2],[-94.7419377,29.7499899],[-94.8323222,0.29752604665764885E2],[-94.8899125,29.6769528],[-95.0228746,0.29702320240018572E2],[-94.992827,0.29530933514730595E2],[-94.8882865,29.3705551],[-95.139044,29.1678354],[-0.9515214520071125E2,0.29079230616640128E2],[-0.9527350567897355E2,28.9638632],[-95.853419,28.6403488],[-96.0204112,0.28586834357622326E2],[-96.2345348,0.28488990115608637E2],[-0.9601103439363155E2,0.28631944222624476E2],[-96.115031,28.6222323],[-96.3734404,28.657037],[-96.4487352,28.5944808],[-0.9657570421497665E2,0.28715714977773125E2],[-0.9664004015493089E2,0.28708760631804786E2],[-96.5246453,0.28488704471066477E2],[-96.4211101,0.28457338503073082E2],[-96.5616966,0.28367162718383188E2],[-0.9667633898444053E2,0.28341289914661864E2],[-0.9677354601939865E2,0.28421621948976302E2],[-96.8069005,0.28220187615120288E2],[-96.8915996,28.1575546],[-0.9693327625010133E2,0.28224274529338704E2],[-97.0154705,28.1634542],[-0.9715649098029593E2,28.14436],[-0.9714127491526237E2,0.28060765001616865E2],[-97.0343285,28.0938448],[-97.0730883,0.27986090926502705E2],[-97.1714544,27.8795675],[-97.2515777,0.27854419778901722E2],[-0.9737413014875449E2,0.27870031351762837E2],[-97.4315172,27.8372152],[-97.2887334,27.6706075],[-0.9738045827399591E2,27.4193612],[-97.4391088,0.27328284504925016E2],[-0.9752386282048191E2,0.27313969318832058E2],[-0.9776844595969483E2,0.27457494714932103E2],[-0.9769237662085557E2,27.2871407],[-97.4851031,27.2374056],[-0.9747567129032329E2,0.27117885326977024E2],[-97.5547124,0.26967350653265846E2],[-0.9746582753994775E2,0.26691758601737185E2],[-97.4350823,26.4858528],[-97.4023156,26.396534],[-0.9721393299908875E2,26.067867],[-0.9715037159529685E2,26.0653072],[-97.1462352,25.9614644],[-97.2817846,0.25941623075074908E2],[-0.9735816152021565E2,0.25870519556737555E2],[-97.4402733,0.25890822291887083E2],[-97.5872429,0.25984206084511904E2],[-0.9780141593165565E2,26.0420491],[-98.0827923,0.26064428255540854E2],[-98.2750311,26.1111971],[-98.3781213,26.1823555],[-0.9869141291384855E2,26.2764534],[-98.7652301,0.26340404828568516E2],[-99.0152679,0.26398961959708522E2],[-0.9910776729984843E2,26.4469173],[-99.1720813,26.5641414],[-0.9922992978009451E2,26.7619283],[-99.3024615,0.26884711489957162E2],[-99.443537,27.0366744],[-99.4402575,0.27170125319204168E2],[-99.5100702,0.27340325521009312E2],[-0.9948583433087211E2,0.27398047691179972E2],[-99.5053186,0.27548340665663222E2],[-0.9959531309481397E2,0.27635879731502563E2],[-99.7542688,27.7299337],[-0.9988963134334601E2,27.8672958],[-100.001412,0.28047845079249093E2],[-0.10011194519460008E3,28.1729574],[-100.221265,0.28242621698007305E2],[-0.10029604310201353E3,0.28327677853595738E2],[-0.10033172669712472E3,28.5025472],[-0.10054969545543958E3,0.28821337540396108E2],[-0.10063630617651695E3,0.28972806052033555E2],[-100.65863,29.0685409],[-0.10075459597595123E3,0.29182513091283187E2],[-0.10101633426718568E3,0.29400657630854802E2],[-0.10103897159715079E3,29.4604013],[-0.10130352788165696E3,29.6340842],[-0.10138034429083726E3,0.29742552175147004E2],[-101.568705,0.29809239189409627E2],[-0.10161159552036187E3,0.29786969901450792E2],[-0.10199089851334675E3,0.29795704032643304E2],[-102.163087,29.8252573],[-0.10226891854348364E3,0.29871169123412763E2],[-0.10234307626115628E3,0.29864972834113864E2],[-0.10247624704260352E3,0.29769084158581016E2],[-102.614944,29.752341],[-102.73419,0.29643949876463786E2],[-0.10283400035214919E3,0.29443965737975564E2],[-102.892008,29.2163839],[-0.10302282787400084E3,0.29132206692879766E2],[-0.10309000927304795E3,0.29041866113261694E2],[-0.10316829785025317E3,0.28998173484641846E2],[-0.10325769909878072E3,0.29001128807020216E2],[-0.10342293348008396E3,0.29070683253032833E2],[-0.10366397902150564E3,0.29206902740651135E2],[-0.10385290542031422E3,0.29291079989955996E2],[-0.10398974563549521E3,0.29323171055633246E2],[-0.10411061722213735E3,0.29386111731862375E2],[-0.10421552018024062E3,0.29479902018643322E2],[-0.10440062333671582E3,29.5737472],[-0.10450397722249438E3,29.6776669],[-0.10462221209028588E3,29.8542722],[-104.68133,29.9905246],[-104.68133,30.1343576],[-0.10483589618046854E3,0.30447654741107037E2],[-0.10497883380799149E3,0.30645935998670826E2],[-105.275816,0.30807270233340933E2],[-105.513994,0.30980766333709287E2],[-0.10581270713081692E3,0.31241043443247385E2],[-0.10602408958516956E3,0.31397774406257458E2],[-0.10614806480962538E3,31.4509263],[-0.10625570336353614E3,0.31544661618892004E2],[-0.10634696679475192E3,31.6789915],[-0.10643602746709465E3,31.7644651],[-106.566281,31.8195286],[-0.10666221949232481E3,32.0012974],[-103.065642,32.0027476],[-0.10304215282590985E3,36.5006164],[-0.10281291758767311E3,0.36501209659531845E2]]]]}}],"_labels":{"US-TX":"Texas"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-UT.json b/src/api-umbrella/admin-ui/public/maps/US-UT.json new file mode 100644 index 000000000..c5498dead --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-UT.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-UT"},"geometry":{"type":"Polygon","coordinates":[[[-111.050296,42.0008778],[-0.11105024700346473E3,0.41875897364559926E2],[-0.11105019207182204E3,0.41625881485881955E2],[-0.11105008770170086E3,0.41375876593532546E2],[-0.11105003826322239E3,41.1258607],[-0.11104998882474393E3,0.41000858268679785E2],[-0.10904639011550022E3,0.41000858268679785E2],[-0.10904643955397869E3,40.5008595],[-0.10904643955397869E3,0.40250876550617136E2],[-0.10904648899245716E3,39.7508558],[-0.10904648899245716E3,39.5008399],[-0.10904654392409985E3,39.0008191],[-0.10904654392409985E3,0.38750869169177626E2],[-0.10904659336257832E3,38.2508484],[-0.10904659336257832E3,0.38000832519472276E2],[-0.10904664829422101E3,0.37500833721101934E2],[-0.10904664829422101E3,0.37250850801409634E2],[-0.10904667026687814E3,0.37000845909060224E2],[-0.10935876988815879E3,37.0010546],[-0.10967086950943943E3,37.0012524],[-0.11091926799456202E3,37.0020874],[-111.231373,37.0022851],[-0.11247977159412959E3,37.0031201],[-0.11279187121541024E3,37.0033178],[-0.11404026970053292E3,37.0041528],[-0.11404034660483265E3,0.37160312467877695E2],[-0.11404039604331112E3,0.37316461155475004E2],[-0.11404055534507498E3,37.6287585],[-0.11404101677087388E3,38.5656836],[-0.11404107170251658E3,0.38721821316507025E2],[-0.11404122551111622E3,39.0341517],[-114.041275,39.1903223],[-0.11404158805995819E3,39.814939],[-0.11404163749843666E3,39.9710987],[-114.041791,0.40283429042093296E2],[-114.041846,40.4395777],[-114.042308,41.3764918],[-0.11404246696624166E3,41.6888002],[-0.11404251640472015E3,0.41844937890722626E2],[-0.11404259330901996E3,42.0011086],[-0.11385555106555672E3,42.0011086],[-113.481516,0.42001053619334265E2],[-0.11310748096866075E3,0.42001053619334265E2],[-0.11273345141337697E3,42.0009987],[-0.11235941636492906E3,42.0009987],[-0.11198538131648104E3,0.42000954742377324E2],[-0.11179836653883915E3,0.42000954742377324E2],[-0.11142433149039121E3,42.0008998],[-111.237311,42.0008998],[-111.050296,42.0008778]]]}}],"_labels":{"US-UT":"Utah"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-VA.json b/src/api-umbrella/admin-ui/public/maps/US-VA.json new file mode 100644 index 000000000..1cbe5708a --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-VA.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-VA"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.8539999,0.37296641818781396E2],[-75.9343759,37.1518969],[-75.9973715,37.2638257],[-75.9750473,0.37398441139071004E2],[-75.8881564,37.6191565],[-75.7193515,37.8213818],[-75.6200021,37.9992065],[-75.3759628,0.38024991455940786E2],[-75.5963595,37.6311865],[-75.5871091,37.5587207],[-75.69884,37.5163684],[-75.8120541,37.4252148],[-75.8539999,0.37296641818781396E2]]],[[[-75.3330502,37.8882776],[-75.3785446,0.37872050776278414E2],[-75.2524765,38.03745],[-75.3330502,37.8882776]]],[[[-77.9485984,39.216316],[-77.8357908,39.1452124],[-77.7266416,0.39346438039553085E2],[-77.478856,0.39220864304294075E2],[-77.4809214,39.1129566],[-77.3010862,39.0533777],[-77.1903,0.38969046667734816E2],[-77.0303611,0.38889252963519105E2],[-77.0455991,38.7757971],[-77.2603928,0.38599993919281594E2],[-77.3136985,0.38396625991601844E2],[-77.2319162,0.38340035413271245E2],[-77.0467637,38.3566797],[-76.9063364,38.1970483],[-76.5495114,0.38094501956639256E2],[-76.4717612,38.0111707],[-76.2642844,37.893551],[-76.3056259,37.721571],[-76.344144,37.6756811],[-76.4924814,0.37682218005364994E2],[-76.8286411,0.37961512449613004E2],[-76.9399765,38.0954578],[-77.1110996,0.38165682379276426E2],[-76.925123,0.38033022462106466E2],[-76.715416,37.8101758],[-76.6198349,37.7550903],[-76.4840549,0.37628868393954825E2],[-76.305571,37.5715088],[-76.3676328,37.5302881],[-76.268569,37.4951538],[-76.2634824,37.3570227],[-76.4009873,37.3861474],[-76.393132,37.2999487],[-76.4539304,37.2735376],[-76.5383933,0.37309353000906945E2],[-76.7576914,0.37505436992761965E2],[-76.7381028,37.4487695],[-76.610903,0.37322580540473986E2],[-76.4011191,37.2126953],[-76.3269394,37.1492602],[-76.2833017,37.0526794],[-76.4008884,36.9913317],[-76.6023007,37.1428442],[-76.6308982,37.2217041],[-76.7035068,37.2176721],[-77.0069712,0.37317669651614786E2],[-77.2508896,0.37329194310257556E2],[-77.1962107,0.37295707980855134E2],[-77.0019614,0.37271054659602235E2],[-76.925167,37.225011],[-76.6718552,37.1729467],[-76.6339194,37.0474279],[-76.5046323,36.9610205],[-76.4878562,36.8970251],[-76.399548,36.88984],[-76.2442563,36.9526269],[-75.999415,0.36912658649836764E2],[-75.8574277,36.5505822],[-81.6416308,36.5950769],[-81.9053356,36.6185436],[-81.9525109,0.36598021186662415E2],[-83.6675207,36.6050305],[-83.1502185,36.7623327],[-83.0438159,36.8455542],[-82.8945007,36.9063745],[-82.731892,37.0480761],[-82.6815856,37.1381201],[-82.3432067,37.2969275],[-81.965277,37.5397253],[-81.9713964,37.4730603],[-81.913059,0.37368964819587184E2],[-81.8292663,37.2985974],[-81.660769,37.221759],[-81.5648363,0.37209794891640335E2],[-81.3500426,37.3336877],[-81.2271276,37.2632763],[-80.9436803,37.3019043],[-80.8730712,37.3406201],[-80.8624254,37.4145691],[-80.7198448,37.4010229],[-80.5074022,0.37469061258952415E2],[-80.4645116,37.4327295],[-80.3160753,0.37509699688237056E2],[-80.2458177,0.37620782456146436E2],[-80.2853026,37.6770544],[-80.1880736,0.37824227288125904E2],[-79.9717308,38.0461511],[-79.9026927,38.1807446],[-79.715255,38.4040418],[-79.668651,38.5442603],[-79.5977452,0.38577131369581345E2],[-79.5048338,38.4913501],[-79.3958714,38.4543921],[-79.240272,38.4765186],[-79.0411888,0.38789672881595386E2],[-78.8687254,38.8179407],[-78.7567857,0.38908215366586155E2],[-78.5814768,38.9990174],[-78.4352378,39.1607581],[-78.3222215,0.39451851861933655E2],[-77.9485984,39.216316]]]]}}],"_labels":{"US-VA":"Virginia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-VT.json b/src/api-umbrella/admin-ui/public/maps/US-VT.json new file mode 100644 index 000000000..4b5b902d1 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-VT.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-VT"},"geometry":{"type":"Polygon","coordinates":[[[-72.4668599,42.7303151],[-73.2533272,0.42752221860879644E2],[-73.2801998,42.813152],[-73.2665548,0.42864776796813864E2],[-73.247098,43.5530483],[-73.3061605,43.6162527],[-73.3492379,43.6203835],[-73.3914364,43.5785256],[-73.4133651,43.6278542],[-73.3758468,0.43762184057609765E2],[-73.3830098,43.8758266],[-73.4249447,0.44038292466579954E2],[-73.4097506,44.1314126],[-73.3209151,44.2688735],[-73.309753,0.44459640138903104E2],[-73.3720785,44.5973318],[-73.3485677,0.44775299330632016E2],[-73.3658053,44.8603665],[-73.3450521,44.9388638],[-73.3521822,45.005419],[-71.5175203,45.0075613],[-71.5102254,44.9083438],[-71.6206599,44.7718936],[-71.6182869,44.7277615],[-71.5684419,0.44607636970720584E2],[-71.6092891,44.5140554],[-71.6830073,44.4502798],[-71.8676765,44.3549185],[-72.0017757,44.3294961],[-72.031208,44.3007339],[-72.0622334,44.1163503],[-72.1149239,43.9654311],[-72.2223811,43.7908694],[-72.2966927,43.7149538],[-72.3849568,43.5292299],[-72.4070723,43.3320363],[-72.4381856,43.224645],[-72.4737154,0.43038536569067354E2],[-72.5498067,42.8866835],[-72.5396224,42.8296315],[-72.4668599,42.7303151]]]}}],"_labels":{"US-VT":"Vermont"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-WA.json b/src/api-umbrella/admin-ui/public/maps/US-WA.json new file mode 100644 index 000000000..2ee80f411 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-WA.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-WA"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.85309,47.2047171],[-0.12291190028798216E3,47.2543204],[-0.12288510463266313E3,47.274711],[-122.85309,47.2047171]]],[[[-0.12239412561002753E3,47.3952421],[-0.12250993249921082E3,47.3579874],[-122.486471,47.4887797],[-0.12239412561002753E3,47.3952421]]],[[[-0.12249727075556378E3,47.594589],[-0.12257592188161094E3,0.47619473023113024E2],[-0.12254977441967594E3,47.7039579],[-122.507867,47.6826444],[-0.12249727075556378E3,47.594589]]],[[[-0.12257276880531879E3,48.1566496],[-0.12252383569798337E3,48.0254398],[-0.12250285181046412E3,48.0800639],[-0.12236673669296708E3,47.9854386],[-122.41144,47.9177518],[-0.12249226098974762E3,47.9813078],[-122.557525,47.9924699],[-0.12260318445589314E3,48.055048],[-0.12262266321640178E3,0.48151431051218104E2],[-0.12269038843871185E3,48.1738541],[-0.12274870387062396E3,0.48239025048700235E2],[-0.12266899256387218E3,0.48350997709221666E2],[-0.12260351953891367E3,0.48380616850976466E2],[-122.542436,48.2940006],[-0.12269214625127891E3,48.2410905],[-122.597625,48.2004191],[-0.12257276880531879E3,48.1566496]]],[[[-0.12282092250130854E3,48.4313627],[-0.12289003749417937E3,0.48434669587413474E2],[-0.12293228542059575E3,48.4847453],[-0.12286890529122482E3,48.5486088],[-0.12282092250130854E3,48.4313627]]],[[[-123.013134,48.5008622],[-122.98675,48.4680021],[-0.12313992153691481E3,48.5079484],[-0.12316958462398394E3,0.48586698401806665E2],[-0.12311418606230033E3,48.6132633],[-123.024164,48.5384794],[-123.013134,48.5008622]]],[[[-122.782141,48.6726884],[-0.12283761073436703E3,48.6265458],[-0.12290303432084707E3,0.48664679361812624E2],[-122.892542,48.5944987],[-0.12298566799099153E3,0.48626699624035744E2],[-0.12297667568107812E3,0.48679148356505216E2],[-0.12289771144466741E3,48.7103605],[-122.782141,48.6726884]]],[[[-0.12304920192896198E3,48.9930278],[-0.12304920192896198E3,48.9930278],[-0.12304920192896198E3,48.9930278],[-0.12304920192896198E3,48.9930278]]],[[[-0.11703737308634761E3,0.48833660081149326E2],[-0.11702504642572119E3,46.4291593],[-117.038999,0.46396551833884196E2],[-116.942962,46.2321085],[-116.92211,46.1636417],[-0.11694784549504186E3,46.1243216],[-116.896479,46.0020987],[-0.11900242076873018E3,46.0005496],[-0.11917734509180927E3,45.9450796],[-119.429113,0.45934170224448856E2],[-0.11993427566267603E3,0.45837875054759884E2],[-0.12015604569066716E3,0.45762168264762515E2],[-120.351432,0.45725166310225966E2],[-0.12071577715733171E3,45.6898233],[-0.12104524067087628E3,0.45639044480768824E2],[-0.12118427815176614E3,0.45643779588371295E2],[-0.12124269795379928E3,45.6870328],[-121.402121,45.7118399],[-0.12166251852645485E3,0.45718135059957724E2],[-121.882014,45.6894607],[-0.12208512413339625E3,0.45602646774302244E2],[-0.12220253502654705E3,45.5910672],[-0.12264984888638413E3,45.6274429],[-0.12272591273205917E3,45.6737503],[-0.12274642970061525E3,45.7496878],[-0.12284337306368836E3,45.9780936],[-0.12294199733502867E3,46.1148624],[-0.12312090420220507E3,0.46178780829483124E2],[-0.12322058865424987E3,0.46153622137117175E2],[-0.12340473600014175E3,46.2210013],[-0.12346485868309928E3,46.2710989],[-0.12365032988158069E3,46.2677152],[-0.12368836455100036E3,46.2998612],[-0.12389571502277735E3,0.46267770090690256E2],[-0.12395974334553233E3,0.46300740062651165E2],[-0.12407275970726542E3,46.2794486],[-0.12404513458414127E3,46.3728763],[-0.12404436004797897E3,46.6050614],[-0.12401640533499851E3,0.46521367512473596E2],[-0.12394612579130194E3,0.46432565018851676E2],[-0.12388915069147225E3,46.660015],[-0.12395772735424447E3,46.7086954],[-0.12407169952656096E3,0.46744796476074946E2],[-0.12411254669608785E3,46.8626688],[-0.12384287627564447E3,0.46963182714874385E2],[-0.12398601715024553E3,46.9844962],[-0.12404221771391283E3,47.029683],[-124.111695,0.47035187112152414E2],[-0.12413923798128572E3,46.9547013],[-0.12416355072635386E3,47.0153238],[-0.12419884979996604E3,47.2085404],[-0.12430927888132699E3,0.47404602409447605E2],[-0.12437602082723241E3,47.6586393],[-0.12446004426793762E3,47.784213],[-0.12462107088540837E3,47.9041288],[-0.12466308260576106E3,47.9741227],[-0.12470166109844361E3,48.1516398],[-0.12467997957906188E3,0.48285892726269346E2],[-0.12470997774915152E3,48.3803752],[-0.12463261751670825E3,48.3750358],[-0.12442904084878619E3,0.48300768215118055E2],[-0.12417551483813834E3,48.2424308],[-0.12409877533325783E3,0.48200001609711585E2],[-0.12397576141254964E3,48.1684818],[-0.12329443326155902E3,48.1195487],[-0.12312439236151775E3,48.1509147],[-123.024219,48.0816129],[-0.12286089076455193E3,0.48090039447313686E2],[-0.12277859767059243E3,48.1375773],[-0.12273973902653196E3,0.48013245010790484E2],[-122.656644,47.8811344],[-122.778444,0.47738432988588464E2],[-0.12282138392710735E3,47.7931559],[-0.12305064663116553E3,0.47551929075223946E2],[-0.12313103359712268E3,47.4377262],[-0.12313635647330233E3,47.3558231],[-0.12303090969193609E3,47.3601847],[-0.12291688258797687E3,47.4179838],[-0.12306677456146826E3,0.47399636588945704E2],[-0.12304863613304202E3,47.4793204],[-0.12298245998305666E3,47.5593668],[-0.12275715235727428E3,0.47700530155111394E2],[-0.12271787623272917E3,47.7620975],[-0.12258791345921678E3,47.8559428],[-122.585716,47.9278812],[-0.12253280054207532E3,47.9197074],[-0.12252391260228318E3,47.7693375],[-0.12263018335829018E3,47.6927958],[-0.12261362146801001E3,47.6156168],[-0.12267547999087746E3,47.6123429],[-0.12258582056362918E3,47.5284183],[-0.12255354822353087E3,47.40491],[-0.12257788843442033E3,0.47293190051681925E2],[-0.12264865686973708E3,47.2814567],[-0.12270769739933309E3,47.3163932],[-0.12276779810963357E3,47.2183622],[-0.12282846461585406E3,47.336597],[-0.12291951930682751E3,47.2896744],[-0.12302757534122297E3,47.138909],[-0.12281195765721651E3,47.1460062],[-0.12270193507001166E3,47.1108719],[-0.12260414026647642E3,0.47167023054681586E2],[-0.12254217737348772E3,47.275568],[-0.12242011926336284E3,47.3120975],[-0.12235381677059921E3,47.3715775],[-0.12237526208391733E3,0.47528363400496865E2],[-0.12236834069693448E3,47.6039164],[-0.12241050622588673E3,47.6526517],[-122.383634,0.47716471317828805E2],[-0.12239288415490199E3,0.47820544808127075E2],[-0.12231847375167287E3,47.9330448],[-122.242014,48.0107621],[-0.12242469506920142E3,0.48175919577542906E2],[-0.12239477380341158E3,48.0841508],[-0.12249401880231468E3,48.1304472],[-0.12252032007284923E3,48.2290934],[-0.12240337609866165E3,0.48269193506882324E2],[-0.12248841028159296E3,48.3743107],[-0.12266899256387218E3,48.4652555],[-122.627964,48.4979179],[-0.12249675439812216E3,48.5055424],[-0.12251272302666099E3,0.48669436442072204E2],[-0.12256202417600265E3,0.48777981368087886E2],[-0.12265302393533334E3,48.7638749],[-122.72248,48.85304],[-0.12278877650398849E3,48.9930278],[-0.11703905399461487E3,48.9930827],[-0.11703737308634761E3,0.48833660081149326E2]]]]}}],"_labels":{"US-WA":"Washington"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-WI.json b/src/api-umbrella/admin-ui/public/maps/US-WI.json new file mode 100644 index 000000000..e6775b796 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-WI.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-WI"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-86.9918945,45.2410156],[-87.0415039,45.2366699],[-87.0466309,45.171875],[-87.0841797,45.1539551],[-87.0589355,0.45102441406250016E2],[-87.1413574,0.45040673828125044E2],[-87.1880859,44.9219727],[-87.2802734,44.8348633],[-87.3545898,44.8388184],[-87.3982422,44.9029297],[-87.3964844,0.44954150390624996E2],[-87.3155273,45.0311035],[-87.2587891,45.1379883],[-87.1220215,0.45224511718750016E2],[-87.0491211,45.3028809],[-86.9859375,45.2751953],[-86.9918945,45.2410156]]],[[[-86.8618652,45.3522461],[-86.946875,45.3457031],[-86.9379883,45.4255859],[-86.8565918,0.45394384765624984E2],[-86.8618652,45.3522461]]],[[[-0.9071054687499995E2,46.7833496],[-0.9079160156249995E2,46.7723145],[-0.9075229492187495E2,46.813623],[-90.6191406,46.8699707],[-0.9058886718749993E2,0.46855419921875004E2],[-0.9071054687499995E2,46.7833496]]],[[[-0.9054667968749995E2,0.46919287109375055E2],[-0.9065180664062497E2,46.9222656],[-90.542627,46.9627441],[-0.9054667968749995E2,0.46919287109375055E2]]],[[[-0.9078769531249995E2,46.8684082],[-90.8398926,46.8099609],[-90.8864258,0.46677490234374986E2],[-90.9435059,0.46618994140624984E2],[-90.922998,0.46603076171875024E2],[-90.7699707,46.6454102],[-0.9073681640624997E2,46.6888672],[-90.5361328,46.5993652],[-90.4076134,0.46592948966905375E2],[-90.3923403,0.46548965169776395E2],[-0.9034088036873851E2,46.5584464],[-90.2303799,0.46509765949531094E2],[-90.11855,46.3416641],[-89.1192885,46.1491946],[-88.8373354,46.0366177],[-88.62954,46.0140408],[-88.4929909,0.46013524475522864E2],[-88.3547499,45.9922879],[-88.1517445,45.9454092],[-88.0964833,0.45878414607087585E2],[-88.1161159,45.8158035],[-87.9225368,45.759971],[-87.809081,45.686044],[-87.794557,45.596033],[-87.8151784,0.45505824260843134E2],[-87.8740321,45.412814],[-87.8654298,45.367825],[-87.6963942,45.3828323],[-87.6627101,45.3451932],[-87.7209157,45.2427676],[-87.7188502,0.45201272247272236E2],[-87.6536134,45.1217971],[-87.6058429,45.1085544],[-87.627002,45.0322754],[-87.6832031,44.992627],[-87.8302734,44.9424805],[-87.8567871,44.8803711],[-87.9515625,0.44763720703125024E2],[-88.0282715,44.6179199],[-88.01875,0.44571142578125034E2],[-87.9692383,44.552002],[-87.7875488,44.6515625],[-87.6766113,44.7902832],[-87.6043945,44.846875],[-87.4801758,44.8741211],[-87.4195801,44.865625],[-87.3373047,0.44775830078125004E2],[-87.3905273,0.44661962890624984E2],[-87.4865234,44.5085938],[-87.5274414,0.44385693359375004E2],[-87.5361328,0.44292968750000036E2],[-87.5125,44.2302734],[-87.5349121,44.1742676],[-87.6584961,44.0590332],[-87.7238281,43.9072754],[-87.7233887,43.809082],[-87.699707,43.7237305],[-87.7740234,0.43598876953125036E2],[-87.8239258,43.4430176],[-87.8807129,43.3470215],[-87.9016602,43.2449219],[-87.8790039,43.077832],[-87.8934082,43.0411133],[-87.8455566,0.42953076171875004E2],[-87.8187012,0.42847705078125024E2],[-87.7870605,42.8091797],[-87.8120849,42.4971127],[-90.650585,0.42512983570503415E2],[-0.9068787256947525E2,42.6103224],[-0.9078874903816711E2,42.6769326],[-90.959949,0.42720339535444644E2],[-91.0695816,42.7885536],[-0.9111759182414903E2,42.8816518],[-0.9114815579015867E2,42.9862087],[-0.9116132839808301E2,43.1023342],[-91.1475845,0.43199585159195216E2],[-91.106968,43.2780275],[-91.1171963,43.3311574],[-91.1783572,43.3589309],[-91.2382766,43.4402407],[-0.9127843167403455E2,43.7974282],[-91.3199161,0.43936284406048024E2],[-0.9138269193191803E2,43.9907986],[-91.5148465,44.0542117],[-91.7164346,44.1264578],[-0.9184097564080639E2,44.1941555],[-0.9191229888571465E2,44.2888686],[-92.0551212,44.3998196],[-92.1485819,44.445248],[-0.9231309113733181E2,44.4977957],[-92.3669406,44.5522659],[-92.4415872,44.5865762],[-0.9253703096521033E2,44.6007925],[-0.9264353792728113E2,44.6453421],[-0.9276980929440263E2,44.7258499],[-0.9279921420275087E2,44.790032],[-0.9276340426486139E2,0.44934260518336615E2],[-0.9279303988610911E2,45.0713589],[-92.7590592,45.1105801],[-0.9276613986066889E2,45.2364615],[-0.9268580782635445E2,45.3805362],[-92.7070224,0.45493761272101715E2],[-0.9275746066111907E2,0.45543243695864355E2],[-92.8924881,45.5947586],[-0.9287471225250593E2,45.706094],[-92.6939487,45.9090115],[-0.9242461335838289E2,0.46027806702630144E2],[-92.3672757,46.0359805],[-92.2926291,46.0843753],[-92.2916458,46.6607181],[-92.224003,0.46671023279901284E2],[-0.9212534576884171E2,46.7630118],[-0.9198730468749999E2,46.6989746],[-0.9183564453125001E2,46.7020996],[-91.4990723,0.46766113281250014E2],[-0.9135698242187493E2,46.8107422],[-91.217627,46.8856445],[-0.9112724609374993E2,46.8676758],[-0.9094604492187497E2,46.9537598],[-0.9083994140624995E2,46.9624512],[-90.7683594,46.9080078],[-0.9078769531249995E2,46.8684082]]],[[[-0.9070795898437495E2,46.9273437],[-0.9070795898437495E2,46.9273437],[-0.9070795898437495E2,46.9273437],[-0.9070795898437495E2,46.9273437]]],[[[-90.4266602,47.0258789],[-90.4266602,47.0258789],[-90.4266602,47.0258789],[-90.4266602,47.0258789]]]]}}],"_labels":{"US-WI":"Wisconsin"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-WV.json b/src/api-umbrella/admin-ui/public/maps/US-WV.json new file mode 100644 index 000000000..430acf653 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-WV.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-WV"},"geometry":{"type":"Polygon","coordinates":[[[-79.4774998,0.39722796696488054E2],[-79.4879808,39.2109107],[-79.2935557,0.39311578419082586E2],[-79.0753453,39.4759888],[-78.9714805,39.4536426],[-78.8147935,39.5700867],[-78.7777696,0.39626622376413145E2],[-78.6776731,0.39549520322690675E2],[-78.4955418,39.5333484],[-78.4067613,39.6278638],[-78.181135,0.39685739810308895E2],[-78.0977818,39.6778846],[-77.9557066,0.39608802551514536E2],[-77.8832517,39.6107142],[-77.8530723,39.5483338],[-77.7795847,39.4883375],[-77.7266416,0.39346438039553085E2],[-77.8357908,39.1452124],[-78.3222215,0.39451851861933655E2],[-78.4352378,39.1607581],[-78.5814768,38.9990174],[-78.6927574,0.38921651646395624E2],[-78.7567857,0.38908215366586155E2],[-78.8687254,38.8179407],[-78.991992,38.8196985],[-79.0411888,0.38789672881595386E2],[-79.1042393,0.38672932154485814E2],[-79.240272,38.4765186],[-79.3041685,38.4498987],[-79.3958714,38.4543921],[-79.5048338,38.4913501],[-79.5977452,0.38577131369581345E2],[-79.668651,38.5442603],[-79.715255,38.4040418],[-79.7834471,38.3360364],[-79.8128795,0.38267042246424225E2],[-79.9026927,38.1807446],[-79.9717308,38.0461511],[-80.1880736,0.37824227288125904E2],[-80.2853026,37.6770544],[-80.2458177,0.37620782456146436E2],[-80.3160753,0.37509699688237056E2],[-80.4645116,37.4327295],[-80.5074022,0.37469061258952415E2],[-80.7198448,37.4010229],[-80.8624254,37.4145691],[-80.8730712,37.3406201],[-80.9436803,37.3019043],[-81.2271276,37.2632763],[-81.3500426,37.3336877],[-81.4193664,37.2822717],[-81.5648363,0.37209794891640335E2],[-81.660769,37.221759],[-81.8292663,37.2985974],[-81.913059,0.37368964819587184E2],[-81.9713964,37.4730603],[-81.965277,37.5397253],[-82.1034631,0.37570574934699856E2],[-82.2802441,37.6871838],[-82.4718896,0.37938408200684734E2],[-82.4821948,37.983551],[-82.5887731,38.0997424],[-82.6195458,0.38182008063492916E2],[-82.578413,38.272085],[-82.5894982,38.4203455],[-82.6127783,0.38448217790444865E2],[-82.4975427,38.4149732],[-82.3870641,0.38433990494980286E2],[-82.3181469,38.4796716],[-82.2908679,38.5520166],[-82.1800707,38.6375891],[-82.2035265,38.7682276],[-82.0722729,38.9629493],[-82.0010925,39.0111023],[-81.9185302,38.9523474],[-81.8824401,38.8942188],[-81.7801244,38.9469751],[-81.8026025,39.0860621],[-81.7706652,0.39098828166826216E2],[-81.7005944,0.39229466599544075E2],[-81.6064635,39.274137],[-81.4927221,0.39373618216371135E2],[-81.4396471,39.3925586],[-81.3333544,39.3628187],[-81.2625036,0.39386538138739006E2],[-80.9632909,39.5711304],[-80.8743126,39.6642945],[-80.8721923,39.7355079],[-80.8035167,39.9091358],[-80.668275,40.1852442],[-80.6018187,0.40363892912350245E2],[-80.6040929,40.4452027],[-80.6590465,0.40562976171897795E2],[-80.6375243,0.40603263038669006E2],[-80.5190807,40.6469557],[-80.5194432,39.7225111],[-79.4774998,0.39722796696488054E2]]]}}],"_labels":{"US-WV":"West Virginia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US-WY.json b/src/api-umbrella/admin-ui/public/maps/US-WY.json new file mode 100644 index 000000000..e04d5a96a --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US-WY.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-WY"},"geometry":{"type":"Polygon","coordinates":[[[-0.10402886245827648E3,43.0014028],[-0.10402796157933578E3,0.42751342954596076E2],[-0.10402705520723093E3,42.5012831],[-0.10402614883512602E3,0.42251223306611855E2],[-0.10402524795618542E3,42.0011305],[-104.024342,0.41751048726984756E2],[-0.10402344070513988E3,41.5009779],[-0.10402256179885642E3,41.2509181],[-0.10402165542675148E3,0.41000858268679785E2],[-0.10433572160084152E3,0.41000858268679785E2],[-0.10464975481594598E3,0.41000858268679785E2],[-0.10496379352421468E3,0.41000858268679785E2],[-0.10527783223248338E3,0.41000858268679785E2],[-0.10559187094075207E3,0.41000858268679785E2],[-105.905932,0.41000858268679785E2],[-0.10621999779576782E3,0.41000858268679785E2],[-0.10653403650403651E3,0.41000858268679785E2],[-0.10684806971914098E3,0.41000858268679785E2],[-0.10716210842740966E3,0.41000858268679785E2],[-0.10747614713567836E3,0.41000858268679785E2],[-0.10779021330976842E3,0.41000858268679785E2],[-0.10810427399069414E3,0.41000858268679785E2],[-0.10841831269896284E3,0.41000858268679785E2],[-0.10873235140723152E3,0.41000858268679785E2],[-0.10904639011550022E3,0.41000858268679785E2],[-0.10929683995415574E3,0.41000858268679785E2],[-0.10954728979281116E3,0.41000858268679785E2],[-109.79774,0.41000858268679785E2],[-0.11004818947012213E3,0.41000858268679785E2],[-0.11029863930877754E3,0.41000858268679785E2],[-0.11054908914743298E3,0.41000858268679785E2],[-110.799539,0.41000858268679785E2],[-0.11104998882474393E3,0.41000858268679785E2],[-0.11105003826322239E3,41.1258607],[-0.11105006572904374E3,41.2508632],[-0.11105008770170086E3,0.41375876593532546E2],[-0.11105014263334355E3,41.500879],[-0.11105019207182204E3,0.41625881485881955E2],[-0.11105021953764339E3,41.7508839],[-0.11105024700346473E3,0.41875897364559926E2],[-111.050296,42.0008778],[-0.11105037334624302E3,42.1570155],[-0.11105045025054284E3,42.3131313],[-0.11105050518218553E3,42.469247],[-0.11105058208648535E3,42.6253847],[-0.11105065899078517E3,42.7815224],[-0.11105070842926364E3,42.9376381],[-0.11105078533356344E3,43.0937539],[-0.11105086223786319E3,43.2498916],[-0.11105094463532733E3,43.4060293],[-0.11105102153962714E3,43.562145],[-0.11105107097810551E3,43.7182607],[-0.11105114788240532E3,43.8743984],[-0.11105122478670513E3,44.0305471],[-0.11105127971834786E3,0.44186651847239396E2],[-0.11105135662264766E3,44.3427676],[-0.11105143352694748E3,44.4988833],[-0.11105127971834786E3,44.624457],[-0.11105114788240532E3,44.7499868],[-0.11105102153962714E3,44.8755056],[-0.11105086223786319E3,45.0010574],[-0.11083170695606557E3,45.0010794],[-0.11061251871528236E3,45.0010794],[-0.11039333596766342E3,45.0010794],[-0.11017417519270148E3,45.0010794],[-0.10995498695191829E3,45.0010794],[-0.10973580420429931E3,45.0010794],[-0.10951664342933738E3,45.0010794],[-0.10929745518855418E3,45.0010794],[-0.10907827244093522E3,45.0010794],[-0.10885911166597329E3,45.0010794],[-0.10863992891835433E3,45.0010794],[-0.10842074067757113E3,45.0010794],[-0.10820157990260918E3,45.0010794],[-0.10798239715499024E3,45.0010794],[-0.10776320891420704E3,45.0010794],[-107.544048,45.0010794],[-0.10732486539162613E3,45.0010794],[-0.10710567715084292E3,45.0010794],[-0.10688652186904532E3,45.0010794],[-0.10666733362826203E3,45.0010794],[-0.10644815088064308E3,45.0010794],[-0.10622899010568123E3,45.0010794],[-0.10600980186489795E3,45.0010794],[-0.10579061911727898E3,45.0011013],[-0.10557145834231714E3,45.0011343],[-0.10535227010153386E3,45.0011343],[-0.10513308735391489E3,45.0011343],[-0.10491392657895305E3,45.0011343],[-0.10469473833816976E3,45.0011343],[-104.475556,45.0011343],[-0.10425639481558895E3,45.0011343],[-0.10403721206796999E3,45.0011343],[-0.10403615188726543E3,44.7511734],[-104.035119,44.5012124],[-0.10403408096433486E3,44.2512515],[-0.10403304824945175E3,0.44001268539386366E2],[-0.10403201553456863E3,0.43751285619693995E2],[-0.10403095535386407E3,43.5013247],[-104.029895,43.2513637],[-0.10402886245827648E3,43.0014028]]]}}],"_labels":{"US-WY":"Wyoming"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/US.json b/src/api-umbrella/admin-ui/public/maps/US.json new file mode 100644 index 000000000..75d748c92 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/US.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"US-AK"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-0.17628670197616884E3,51.7919817],[-0.17628670197616884E3,51.7919817],[-0.17628670197616884E3,51.7919817],[-0.17628670197616884E3,51.7919817]]],[[[-0.17600896690392864E3,0.51812372352981306E2],[-0.17600896690392864E3,0.51812372352981306E2],[-0.17600896690392864E3,0.51812372352981306E2],[-0.17600896690392864E3,0.51812372352981306E2]]],[[[-0.17787903365617422E3,51.6497198],[-0.17819451843993755E3,51.8822124],[-0.17795380935482746E3,51.9184344],[-0.17777064185211267E3,51.7778973],[-0.17787903365617422E3,51.6497198]]],[[[-0.17714819973547284E3,0.51716736363004934E2],[-177.654887,51.6765923],[-0.17706303714982664E3,51.9018999],[-0.17714819973547284E3,0.51716736363004934E2]]],[[[-0.17659329813349444E3,51.8666997],[-176.437338,51.7543096],[-0.17696162235103617E3,0.51603676055957685E2],[-0.17669835627348846E3,51.9860552],[-0.17659329813349444E3,51.8666997]]],[[[-176.02155,0.52002435836794184E2],[-176.02155,0.52002435836794184E2],[-176.02155,0.52002435836794184E2],[-176.02155,0.52002435836794184E2]]],[[[-0.17355330274775247E3,52.1363043],[-173.022896,52.0791424],[-0.17346100866159014E3,52.0415472],[-0.17398958084056704E3,52.103587],[-0.17355330274775247E3,52.1363043]]],[[[-0.17246479036186867E3,52.272293],[-0.17246479036186867E3,52.272293],[-0.17246479036186867E3,52.272293],[-0.17246479036186867E3,52.272293]]],[[[-174.677394,0.52035010300927446E2],[-0.17529554837390623E3,52.0221453],[-174.306151,0.52216141899633946E2],[-0.17443554818851192E3,52.3172161],[-174.168898,52.420191],[-0.17401833892882223E3,52.331795],[-0.17412063263389632E3,0.52135216603578094E2],[-174.677394,0.52035010300927446E2]]],[[[-0.17073339716837978E3,52.5814923],[-0.17073339716837978E3,52.5814923],[-0.17073339716837978E3,52.5814923],[-0.17073339716837978E3,52.5814923]]],[[[-169.691962,0.52847372392463484E2],[-169.691962,0.52847372392463484E2],[-169.691962,0.52847372392463484E2],[-169.691962,0.52847372392463484E2]]],[[[-0.16796436721655832E3,0.53345118993482195E2],[-0.16827067978927838E3,0.53238046235491495E2],[-168.505627,53.0431707],[-0.16906592792752485E3,52.8339361],[-0.16879586749241818E3,0.53044928552343414E2],[-0.16863902941270476E3,53.2557672],[-0.16843663789497435E3,53.2569098],[-0.16828770722523058E3,53.5001471],[-167.98571,53.5581769],[-167.804688,53.484953],[-0.16796436721655832E3,0.53345118993482195E2]]],[[[-0.16620974617794516E3,53.7232794],[-0.16620974617794516E3,53.7232794],[-0.16620974617794516E3,53.7232794],[-0.16620974617794516E3,53.7232794]]],[[[-0.16661535456133782E3,0.53900950313513626E2],[-166.37232,53.9989813],[-0.16623088112748187E3,53.9326019],[-0.16654920862375587E3,53.7009552],[-0.16630945534922924E3,0.53697494495205504E2],[-0.16677040873595382E3,0.53476010111756615E2],[-167.153642,53.4078509],[-0.16752248197631306E3,53.2762347],[-167.808769,0.53323772557120996E2],[-167.136097,0.53526448346102555E2],[-0.16701574306538095E3,0.53698373401489086E2],[-0.16711816585981538E3,53.8726276],[-166.978097,0.53962935179159466E2],[-0.16662739420413104E3,53.9956744],[-0.16661535456133782E3,0.53900950313513626E2]]],[[[-0.16584155173640937E3,54.0706561],[-0.16603642311225138E3,54.0471893],[-0.16608773750629874E3,54.1691486],[-0.16589286613045672E3,54.2069745],[-165.704247,54.1198969],[-0.16584155173640937E3,54.0706561]]],[[[-0.16556115453943383E3,54.136695],[-0.16565414694410424E3,54.2533038],[-0.16540785680409383E3,54.1968451],[-0.16556115453943383E3,54.136695]]],[[[-0.16255441339690375E3,54.4013556],[-0.16255441339690375E3,54.4013556],[-0.16255441339690375E3,54.4013556],[-0.16255441339690375E3,54.4013556]]],[[[-0.16229815041715733E3,54.847038],[-162.433904,54.9315338],[-0.16226461190269436E3,54.9835212],[-0.16229815041715733E3,54.847038]]],[[[-0.16347603727239294E3,54.9807306],[-163.358085,54.7356806],[-0.16358303312608388E3,54.6256635],[-0.16407331314356583E3,54.6210053],[-0.16446349534839152E3,54.4273273],[-0.16482342257769784E3,0.54419076553981675E2],[-0.16488765552082197E3,0.54607832664697845E2],[-0.16452979646786406E3,0.54880831942690016E2],[-0.16427368867000837E3,54.900058],[-0.16386797728978559E3,55.039123],[-0.16347603727239294E3,54.9807306]]],[[[-0.15936199780881418E3,54.972403],[-0.15936199780881418E3,54.972403],[-0.15936199780881418E3,54.972403],[-0.15936199780881418E3,54.972403]]],[[[-0.15951511701631534E3,0.55151875654201454E2],[-0.15951511701631534E3,0.55151875654201454E2],[-0.15951511701631534E3,0.55151875654201454E2],[-0.15951511701631534E3,0.55151875654201454E2]]],[[[-0.13133972714756413E3,55.0798383],[-0.13123203366201068E3,54.9037824],[-131.406183,54.8943012],[-0.13154002988958013E3,55.0484723],[-0.13156545225383118E3,0.55264122972936384E2],[-0.13133972714756413E3,55.0798383]]],[[[-0.15987297469598218E3,55.1287494],[-0.16022706131837617E3,0.54922689854443085E2],[-0.16017207749059514E3,55.1230475],[-0.15992046584769616E3,55.2675287],[-0.15987297469598218E3,55.1287494]]],[[[-0.13286227298201186E3,54.894422],[-132.617223,54.8924115],[-132.705822,54.6841547],[-0.13312269840698536E3,54.9698212],[-0.13325116154665145E3,0.55175133711729266E2],[-0.13341797246610076E3,0.55210718429883606E2],[-133.296563,55.3257233],[-0.13309740238551265E3,0.55213739670233245E2],[-0.13286227298201186E3,54.894422]]],[[[-0.16032927811915044E3,55.3377094],[-0.16032927811915044E3,55.3377094],[-0.16032927811915044E3,55.3377094],[-0.16032927811915044E3,55.3377094]]],[[[-160.684914,55.3148139],[-160.487539,55.1848456],[-0.16079509020967367E3,55.1452179],[-160.846534,55.3113532],[-160.684914,55.3148139]]],[[[-0.13330508794031016E3,55.543747],[-133.281704,55.4978571],[-133.650185,55.2692865],[-0.13363423834349126E3,0.55539242612337695E2],[-0.13330508794031016E3,55.543747]]],[[[-0.15556600157025838E3,0.55821195748093366E2],[-0.15556600157025838E3,0.55821195748093366E2],[-0.15556600157025838E3,0.55821195748093366E2],[-0.15556600157025838E3,0.55821195748093366E2]]],[[[-0.13097913387208993E3,0.55489166926833626E2],[-0.13118787960759192E3,55.2062909],[-0.13142067990944136E3,0.55275900317135736E2],[-0.13144757993488156E3,0.55408790947205055E2],[-0.13176251952209088E3,55.1658283],[-0.13184608153699725E3,55.4162507],[-131.647564,55.58555],[-0.13162495970239024E3,55.8316877],[-0.13126921689096815E3,0.55955393751259486E2],[-0.13096595577100126E3,55.6695185],[-0.13097913387208993E3,0.55489166926833626E2]]],[[[-0.13356610662702508E3,56.3392011],[-0.13320300297547843E3,56.3198432],[-133.096622,56.0900422],[-0.13275757327098668E3,0.55995010451989465E2],[-0.13217269959144897E3,0.55480597590569225E2],[-0.13251125978502802E3,0.55593921569501596E2],[-0.13259159181934248E3,0.55464370783309654E2],[-0.13241785401974613E3,55.4829157],[-0.13221528260088587E3,55.3835444],[-0.13220670777145713E3,55.2244294],[-131.976434,55.2085981],[-0.13198087829506903E3,54.8048175],[-0.13213430786635155E3,0.54712554348380124E2],[-0.13234132325510797E3,54.9072431],[-0.13254937135874752E3,0.54952594640740045E2],[-0.13262218325117348E3,55.1359675],[-0.13278230349653938E3,55.0484723],[-0.13310300541307012E3,55.3602424],[-0.13295890872788578E3,55.3955634],[-0.13303340152857896E3,55.5896808],[-133.298265,0.55606885437183614E2],[-0.13368018316946268E3,0.55785171576797225E2],[-0.13344696538712867E3,55.7970039],[-0.13324152653651834E3,55.9208198],[-0.13337123113130994E3,56.0359126],[-0.13368420965887407E3,0.55942792432419346E2],[-0.13375518683443323E3,55.9994709],[-133.530862,56.145666],[-0.13356610662702508E3,56.3392011]]],[[[-132.779897,56.2472675],[-133.035028,56.340904],[-0.13290203799817724E3,56.4537666],[-0.13264334291994948E3,0.56435155732451484E2],[-132.779897,56.2472675]]],[[[-0.13211234619559187E3,56.1093891],[-0.13213293457528357E3,55.9432539],[-0.13228731995714952E3,55.9294001],[-0.13245115907472757E3,0.56056369096908206E2],[-0.13265990481022965E3,56.078177],[-0.13237984681614788E3,0.56498777561050325E2],[-132.066896,56.2442133],[-0.13211234619559187E3,56.1093891]]],[[[-0.15468279963227008E3,0.56435781953178484E2],[-154.729362,56.5021284],[-0.15444488244790125E3,56.573188],[-0.15468279963227008E3,0.56435781953178484E2]]],[[[-0.15420864342521753E3,56.5148945],[-0.15420864342521753E3,56.5148945],[-0.15420864342521753E3,56.5148945],[-0.15420864342521753E3,56.5148945]]],[[[-169.755214,56.635041],[-169.755214,56.635041],[-169.755214,56.635041],[-169.755214,56.635041]]],[[[-0.13274687808014897E3,56.5256941],[-0.13293079471314144E3,56.5244526],[-0.13284253054961817E3,56.7947712],[-0.13256797670613696E3,56.5758247],[-0.13274687808014897E3,56.5256941]]],[[[-133.989597,56.8449568],[-0.13373836676543223E3,0.56650443826601645E2],[-0.13385526130114135E3,56.5821748],[-133.9497,56.1277143],[-0.13418958077190246E3,56.0769685],[-0.13419546944400216E3,56.4135127],[-0.13408439766242134E3,56.4563484],[-134.290249,0.56580010474305446E2],[-0.13437367867931587E3,0.56838650620890526E2],[-0.13414327889025338E3,56.932342],[-133.989597,56.8449568]]],[[[-133.366221,57.0035005],[-0.13307078800461449E3,56.9742768],[-132.954152,0.56880277819744045E2],[-0.13303492313508232E3,56.6207258],[-133.328961,0.56830070298297564E2],[-133.156619,56.6111238],[-133.212665,56.4646211],[-0.13360279547119805E3,56.4640937],[-0.13368097967828209E3,56.7975178],[-0.13397946723849662E3,0.57009597893036634E2],[-0.13386598395780044E3,0.57068715326932384E2],[-133.366221,57.0035005]]],[[[-0.15300708789842486E3,57.1248335],[-0.15329539113207895E3,57.0004243],[-0.15328521229868284E3,57.1850386],[-0.15300708789842486E3,57.1248335]]],[[[-0.17016056450492647E3,0.57183950927031454E2],[-0.17016056450492647E3,0.57183950927031454E2],[-0.17016056450492647E3,0.57183950927031454E2],[-0.17016056450492647E3,0.57183950927031454E2]]],[[[-0.13496976390713283E3,0.57351437505686135E2],[-134.823184,57.156562],[-0.13462071726295844E3,0.56718295391689914E2],[-134.654022,56.2274702],[-0.13484799144155008E3,56.3234907],[-0.13498054149543455E3,56.5189265],[-134.875122,56.6704389],[-0.13533059888183507E3,0.56821852524546564E2],[-0.13519959790027534E3,57.0273188],[-0.13550195264813738E3,57.2438484],[-0.13560892652917124E3,57.0714509],[-0.13581232741583656E3,0.57009542961393926E2],[-0.13578713576448496E3,57.317281],[-0.13534628186583177E3,0.57533129407148394E2],[-0.13496976390713283E3,0.57351437505686135E2]]],[[[-0.15324064076377948E3,57.850085],[-0.15324064076377948E3,57.850085],[-0.15324064076377948E3,57.850085],[-0.15324064076377948E3,57.850085]]],[[[-0.15289805133420674E3,57.8239156],[-152.428779,57.8256734],[-0.15241149156222804E3,0.57646090837238795E2],[-0.15221623429159598E3,57.5769978],[-0.15241218919409062E3,57.4547859],[-152.912161,0.57508168468696226E2],[-0.15267904711442668E3,0.57345131353101834E2],[-0.15327436055266344E3,57.2263472],[-153.646533,0.57029593010986886E2],[-0.15375725089090838E3,0.56858338121641516E2],[-154.070847,56.820666],[-153.79319,0.56989492911800966E2],[-0.15424375847782656E3,57.1430269],[-0.15426094109566964E3,0.56911775623679965E2],[-0.15449878137573853E3,57.0365693],[-0.15470595057309453E3,57.3353645],[-0.15453531641131195E3,57.5594307],[-0.15428143059840426E3,57.6380818],[-0.15402984367474454E3,0.57630698990948474E2],[-0.15380543967448506E3,57.3582051],[-153.838149,0.57635862565364256E2],[-0.15369314566385373E3,57.6634053],[-0.15390442374808518E3,57.8198836],[-0.15366265585556164E3,57.8578084],[-0.15352447256171615E3,57.7310261],[-0.15325239613532165E3,0.57790473166965306E2],[-0.15316046528464676E3,57.9719673],[-0.15285040637389318E3,57.8967769],[-0.15289805133420674E3,57.8239156]]],[[[-0.13573036940489763E3,58.2442525],[-0.13558748121585316E3,58.1467818],[-135.613244,57.9918636],[-135.346617,58.124106],[-0.13500209117887388E3,58.0510799],[-0.13497064281341642E3,0.57817246849627224E2],[-0.13523122204698944E3,57.8157967],[-135.249542,57.7325532],[-0.13497883861451032E3,57.7243574],[-0.13493149852481383E3,57.4811421],[-0.13549784376126183E3,57.6622737],[-0.13560856398032928E3,57.650749],[-0.13569194472081466E3,57.4199043],[-0.13591076491959163E3,57.4465681],[-0.13607659805580056E3,57.6745674],[-0.13656860979331927E3,0.57972176054756105E2],[-0.13632198319699714E3,0.58218874062213736E2],[-0.13614372452320498E3,58.0984749],[-0.13609437393538482E3,0.58198153846579544E2],[-0.13573036940489763E3,58.2442525]]],[[[-134.312727,0.58228904580174486E2],[-134.312727,0.58228904580174486E2],[-134.312727,0.58228904580174486E2],[-134.312727,0.58228904580174486E2]]],[[[-0.13468027414999594E3,58.1616682],[-134.240096,58.1439912],[-133.904123,57.7891878],[-133.925024,57.6707991],[-0.13418028084478988E3,58.0111336],[-0.13426709481294534E3,57.8845271],[-0.13393701606500227E3,0.57581579116027896E2],[-133.925305,57.3367598],[-0.13410002571477526E3,57.3001204],[-0.13426014596014116E3,57.1467952],[-0.13459152109485245E3,57.0919624],[-0.13448677194534878E3,0.57482021006761286E2],[-134.659889,57.6380818],[-134.754091,57.9950166],[-0.13493312450143827E3,58.3289461],[-0.13468027414999594E3,58.1616682]]],[[[-0.15241694352776807E3,58.3602132],[-0.15231627854590067E3,58.4134859],[-151.974387,58.3098518],[-0.15210910660196248E3,58.1611519],[-0.15225168442722565E3,58.2511189],[-152.30925,58.1338728],[-152.598226,58.1626021],[-152.781522,58.0159456],[-0.15298256915969654E3,57.9970491],[-0.15338132894053305E3,58.0872029],[-152.976134,0.58297008830819316E2],[-0.15277185687138507E3,58.2785628],[-0.15284110370019852E3,58.4163863],[-152.674655,58.4505977],[-0.15241694352776807E3,58.3602132]]],[[[-152.486089,0.58485006884865854E2],[-152.636621,58.5416963],[-152.356846,58.59498],[-152.486089,0.58485006884865854E2]]],[[[-0.16091898303666542E3,0.58577094290722535E2],[-161.131503,58.6682039],[-0.16071514544344038E3,58.7952278],[-0.16091898303666542E3,0.58577094290722535E2]]],[[[-0.14456564073803025E3,59.8184176],[-0.14456564073803025E3,59.8184176],[-0.14456564073803025E3,59.8184176],[-0.14456564073803025E3,59.8184176]]],[[[-0.14802176117016376E3,60.0653243],[-0.14827187317921653E3,60.0532613],[-148.079588,60.1516549],[-0.14802176117016376E3,60.0653243]]],[[[-0.14773588591511788E3,59.813254],[-147.768081,59.9437276],[-0.14733653012595786E3,60.1853719],[-0.14718088131630938E3,0.60358252805933965E2],[-0.14698673366486022E3,60.2543551],[-0.14731847134841348E3,60.0752999],[-0.14754021391058328E3,59.8675045],[-0.14773588591511788E3,59.813254]]],[[[-0.16613543465167288E3,60.3835543],[-0.16572969717891982E3,60.3141976],[-0.16571233465994698E3,60.0693563],[-0.16559179952961654E3,0.59913141704969945E2],[-0.16609983070744366E3,59.8496297],[-0.16610667656341764E3,59.77545],[-0.16662765375614293E3,59.86467],[-167.138863,0.60008535995718304E2],[-167.436415,0.60206663444682555E2],[-166.836323,0.60217001579842474E2],[-166.475699,60.3827743],[-0.16613543465167288E3,60.3835543]]],[[[-0.14511852772201175E3,60.3370931],[-0.14511852772201175E3,60.3370931],[-0.14511852772201175E3,60.3370931],[-0.14511852772201175E3,60.3370931]]],[[[-146.393928,60.4496481],[-146.102238,0.60411195923187925E2],[-0.14661833185637326E3,60.273691],[-0.14670256403732085E3,60.4085592],[-146.393928,60.4496481]]],[[[-147.658268,0.60450472047733065E2],[-147.787821,60.1779342],[-0.14787135558581295E3,0.60229756707282164E2],[-0.14779453917663264E3,60.4598763],[-147.658268,0.60450472047733065E2]]],[[[-152.020741,60.3617465],[-152.020741,60.3617465],[-152.020741,60.3617465],[-152.020741,60.3617465]]],[[[-0.17274221438368195E3,60.4573934],[-172.387508,0.60398484741062404E2],[-172.232066,60.2991354],[-0.17263573626072372E3,60.3288534],[-0.17307402965818056E3,60.4932089],[-0.17292388362584163E3,60.6068405],[-0.17274221438368195E3,60.4573934]]],[[[-0.14793070647919032E3,60.8261605],[-0.14793070647919032E3,60.8261605],[-0.14793070647919032E3,60.8261605],[-0.14793070647919032E3,60.8261605]]],[[[-0.17146304319230737E3,0.63640022950654725E2],[-0.17087462916839632E3,0.63594001220383575E2],[-170.430419,63.6988547],[-170.121832,63.617512],[-0.17001736869868273E3,63.4917295],[-169.427586,63.3483249],[-168.716001,63.3106089],[-0.16885237567328474E3,0.63171236311678214E2],[-0.16936472035835646E3,63.1711264],[-0.16967635580725616E3,0.62956102026127766E2],[-0.16977779669857702E3,0.63093749736456765E2],[-0.17018960686443273E3,0.63196351058730016E2],[-0.17052710413072518E3,63.3792844],[-0.17106123195871777E3,63.4458945],[-0.17140118604273096E3,63.3392392],[-0.17179098235276646E3,63.4247129],[-0.17174638472533277E3,63.7030845],[-0.17146304319230737E3,0.63640022950654725E2]]],[[[-0.16610985573224008E3,66.2274571],[-0.16610985573224008E3,66.2274571],[-0.16610985573224008E3,66.2274571],[-0.16610985573224008E3,66.2274571]]],[[[-0.15597352294810878E3,70.8419788],[-0.15557938566500724E3,70.8943286],[-0.15516685452134072E3,71.0992237],[-0.15467368097957848E3,70.9870862],[-0.15478522242670448E3,70.8943067],[-0.15419523461122947E3,70.8011096],[-0.15391822257673653E3,70.8773328],[-0.15323291462823082E3,70.9325721],[-0.15249123033480106E3,70.8809473],[-0.15223292527123658E3,70.8103601],[-152.470584,70.6536182],[-0.15217292893105727E3,70.5566529],[-0.15176902480188005E3,70.5601355],[-0.15194467422264302E3,70.452107],[-151.22482,70.4187525],[-0.15066263285293627E3,70.509906],[-0.15015251015281257E3,70.4437134],[-0.14987009833784012E3,70.5096533],[-0.14926943730418458E3,70.5007654],[-0.14868835940115883E3,70.4163245],[-0.14847919893175424E3,70.3179309],[-148.248774,70.3567346],[-0.14786952086894607E3,70.3032532],[-147.705347,70.2172083],[-0.14706292934647786E3,70.1703955],[-0.14674488612145478E3,70.191742],[-0.14582313590318734E3,70.1600574],[-0.14519738484171927E3,70.0086987],[-0.14461917711702566E3,69.9821338],[-144.416891,70.039032],[-0.14374641493773626E3,70.1019727],[-0.14321833233702512E3,70.1162329],[-0.14270787180729872E3,70.0338135],[-142.296994,69.8698975],[-141.699201,69.7703723],[-0.14140790074940793E3,69.6533679],[-0.14100213718412465E3,69.6507861],[-0.14100213718412465E3,0.60300244991221064E2],[-0.14052542116252138E3,60.2183419],[-0.14045281801033778E3,0.60299728633779544E2],[-139.973284,60.1831527],[-0.13967630156225897E3,0.60328337033308344E2],[-0.13907925777727652E3,60.3437069],[-0.13918516873102374E3,60.0835726],[-0.13870545618831005E3,0.59901331401785015E2],[-0.13863225702780295E3,59.7782845],[-0.13759329916346277E3,59.2262545],[-0.13743857869857632E3,58.9031246],[-136.81327,0.59150031324297096E2],[-0.13657873918823694E3,59.1522506],[-136.466344,59.4590877],[-0.13624713334062622E3,0.59532904874058794E2],[-0.13632182938839756E3,59.6048324],[-0.13593464370468223E3,0.59662642427836055E2],[-135.475937,0.59793280860553814E2],[-0.13505102977937355E3,59.5786629],[-0.13494377025379757E3,59.2882723],[-134.440756,59.0853328],[-0.13421851876128764E3,0.58849895814800945E2],[-0.13382074225685588E3,58.7050521],[-0.13340110295862132E3,58.4108821],[-0.13327529851046285E3,0.58222851113146675E2],[-132.232158,57.1985298],[-0.13233798890439482E3,57.07946],[-0.13203151977649298E3,0.57026549797980145E2],[-0.13210428223044056E3,0.56856789049316795E2],[-0.13186615905241158E3,56.7928376],[-0.13182427367483723E3,56.5899861],[-0.13157511472978564E3,56.5988191],[-0.13108292171784595E3,0.56404822479341284E2],[-130.741681,0.56340827115571905E2],[-0.13047709710977466E3,56.2305683],[-0.13041314569131947E3,56.1225178],[-130.097866,0.56109290241505136E2],[-0.13002508110132064E3,0.55888212352212285E2],[-0.13014651848388286E3,55.6544892],[-130.036551,55.2979169],[-0.13021408989759328E3,0.55025895424786235E2],[-130.575331,54.7696833],[-0.13084960505855503E3,54.8076081],[-0.13104785885029744E3,0.55157665449344144E2],[-130.835059,55.3320734],[-130.918566,55.7359748],[-131.140364,0.55997515334897486E2],[-0.13103276912804216E3,56.0880976],[-131.784201,0.55876533884969945E2],[-0.13198341064379844E3,55.5350129],[-0.13222342347033697E3,55.7210444],[-0.13184383483280993E3,56.160091],[-131.844247,0.56229645470705684E2],[-132.182027,56.4206428],[-0.13248712831438098E3,0.56766404524384576E2],[-0.13280219973753282E3,56.8951533],[-132.913409,0.57047478753856666E2],[-0.13346585088589597E3,57.1721736],[-133.436655,57.3368586],[-0.13355421941954035E3,0.57695078876216954E2],[-0.13311706242044227E3,57.5661983],[-0.13351546514560104E3,57.7751253],[-133.559361,0.57924451443560535E2],[-133.744129,57.8546114],[-0.13403109199632542E3,0.58072162630835855E2],[-0.13404524788065441E3,58.2892635],[-133.933627,58.4678572],[-0.13420882881951172E3,58.2329585],[-0.13466360788959452E3,58.3847017],[-0.13513185070530815E3,58.8428646],[-0.13533031323729293E3,59.2390755],[-0.13536366773075284E3,59.4194271],[-0.13550231519697934E3,59.2023043],[-135.049711,58.3067757],[-0.13530253979873345E3,58.2559309],[-0.13557179273869212E3,58.4120467],[-0.13587345534785595E3,58.3942159],[-0.13586172744213513E3,0.58577050345408296E2],[-0.13615003067578925E3,59.0480782],[-0.13614682816101862E3,58.7888118],[-0.13645114946169008E3,0.58846336244352656E2],[-136.566209,0.58940895574131694E2],[-0.13698899616189482E3,59.0344881],[-0.13687907794481114E3,58.8815255],[-136.410116,0.58700657527857906E2],[-0.13648375688480894E3,0.58617666802035814E2],[-0.13622460038078225E3,58.602264],[-0.13605598221028754E3,0.58384163375159645E2],[-136.462388,58.3279683],[-0.13658261186904872E3,0.58245208291733974E2],[-0.13754400350728542E3,58.5811812],[-138.026919,58.9414669],[-0.13835247918509899E3,59.0872994],[-0.13934097134927177E3,59.3756576],[-139.799109,0.59546264249568374E2],[-0.13950558774959438E3,0.59726330174406165E2],[-0.13958217344587524E3,59.8483114],[-139.446882,59.9568563],[-139.330974,59.8770187],[-139.286713,59.6109408],[-0.13917886257843944E3,59.8398629],[-139.51892,60.0171163],[-0.13985019317045487E3,0.59830711281903504E2],[-140.216733,0.59726637791605334E2],[-140.843154,59.7488631],[-141.408288,59.9028036],[-141.32956,0.60082814563004916E2],[-0.14167015814466623E3,59.9698751],[-0.14254860574897708E3,60.0860445],[-0.14294563518306785E3,60.096954],[-0.14380506819925102E3,60.0128976],[-0.14414721542909982E3,60.0163912],[-144.185484,60.150743],[-0.14452998460874045E3,60.2052352],[-0.14490133075327716E3,60.3351815],[-0.14469113756898946E3,0.60669110972089065E2],[-0.14524828724844616E3,60.3801376],[-145.898892,60.4781686],[-0.14567492758454537E3,60.6511264],[-0.14614903160653728E3,0.60660695444424306E2],[-0.14625104241365136E3,60.7490585],[-0.14657047815581737E3,60.7291622],[-0.14639198876912573E3,60.8108676],[-146.638434,60.897319],[-0.14659910852800317E3,61.0535336],[-146.284889,61.112651],[-0.14658272791214398E3,61.1278451],[-0.14698016933355512E3,60.9778048],[-147.390558,60.9180392],[-0.14756726499804097E3,0.60994932517721345E2],[-0.14789112273744593E3,0.60889870257854106E2],[-0.14800511962900163E3,60.9685763],[-0.14775185454365672E3,61.2189547],[-0.14820867432426652E3,61.029924],[-0.14834442689292166E3,60.8535495],[-0.14855738588542044E3,60.8029025],[-148.267896,0.60699707897084394E2],[-0.14833843385070085E3,60.5698385],[-0.14864012117910391E3,0.60489429568750445E2],[-0.14805069915954886E3,60.5672128],[-0.14796408843847146E3,0.60484892215061684E2],[-148.203557,60.3649215],[-148.197617,0.60167771841636416E2],[-0.14843070253097852E3,59.9891341],[-0.14884274478302476E3,59.9512203],[-149.395269,60.105732],[-0.14959804663068488E3,0.59770462256167704E2],[-0.14971385351986828E3,59.9196017],[-149.801291,59.7379537],[-150.198062,59.566545],[-0.15060739084643438E3,59.5633919],[-0.15067746439647078E3,59.4269637],[-150.934503,59.249095],[-0.15118275585861727E3,59.3007747],[-0.15173819991056743E3,59.1885274],[-0.15196405135961265E3,59.2851192],[-151.84995,0.59406353355559375E2],[-151.39959,59.5163155],[-0.15108942974421728E3,59.7894247],[-151.403672,59.6622469],[-0.15176383101506084E3,0.59700028903871605E2],[-0.15185320479776703E3,0.59782085791767415E2],[-151.734506,0.59988332137525724E2],[-151.451473,60.2026534],[-0.15131267194023326E3,60.4664352],[-0.15132179059292486E3,60.7429061],[-0.15044125009302633E3,61.0235629],[-0.15011305275384646E3,60.9328158],[-0.14963246405143144E3,0.60951986959442465E2],[-149.075081,60.876412],[-0.14914223484571895E3,0.60935683247882984E2],[-0.14959249029502368E3,0.60993822898538404E2],[-0.15005326515390948E3,61.1710983],[-149.595978,61.4172799],[-0.14932907109552195E3,61.4973813],[-0.14969525091906092E3,61.4707174],[-0.14994520911951403E3,61.2942441],[-0.15047179208637894E3,61.2599777],[-0.15061224955023306E3,61.3011435],[-151.150148,0.61085833400095154E2],[-0.15173396193433155E3,60.9107223],[-0.15175047438613336E3,60.7548703],[-0.15227072648117468E3,60.5281124],[-0.15226031418829706E3,0.60409438110620876E2],[-152.653932,0.60238446893160535E2],[-153.031274,0.60289236690019884E2],[-0.15263010851392704E3,60.0837704],[-0.15275945605304088E3,59.9208871],[-0.15321121113619196E3,59.8427084],[-0.15304814655477622E3,0.59730054539782614E2],[-0.15338347402118126E3,59.6672127],[-0.15341440328261504E3,0.59740129003057504E2],[-153.814146,0.59473732508520264E2],[-0.15408831566183835E3,0.59363297933994986E2],[-0.15417833489134654E3,59.1555904],[-153.418279,0.58959967840484225E2],[-153.334409,58.8578829],[-0.15361733725031723E3,58.6547127],[-0.15401989555424785E3,58.492972],[-0.15424701317765783E3,58.159427],[-0.15458492517785285E3,58.0556831],[-0.15500686336533516E3,58.0160445],[-155.312736,57.8071175],[-0.15559024015760875E3,57.7336079],[-0.15577798003293452E3,57.5682197],[-0.15600018951406744E3,57.5449617],[-156.478402,0.57327871830959054E2],[-156.397631,57.2405855],[-0.15662898653512445E3,57.0099824],[-0.15677988101109543E3,57.0056208],[-157.139137,56.8265547],[-157.390232,56.8098115],[-0.15757838659575526E3,56.6344477],[-0.15786909034219622E3,56.6452253],[-0.15807096412919404E3,0.56510346165007334E2],[-158.414408,56.4358369],[-0.15853739694727997E3,0.56335421841928216E2],[-158.275656,56.196258],[-0.15850468790062212E3,0.56062103960408194E2],[-0.15859116678575688E3,56.1845246],[-0.15878986277722328E3,55.9869135],[-0.15952323041994518E3,55.8100007],[-0.15965965315464143E3,55.6259028],[-0.15974303389512684E3,55.8437727],[-159.962299,0.55794894477558714E2],[-160.499319,0.55537287045856765E2],[-0.16089673572136365E3,0.55513611507844274E2],[-161.099516,55.4057148],[-0.16148052587424868E3,55.3978046],[-0.16137272801857407E3,0.55556304380566594E2],[-161.45877,0.55629132752485425E2],[-0.16168356283878106E3,55.5299482],[-0.16174156928020287E3,55.3911359],[-0.16207397712979727E3,0.55139318280675454E2],[-162.332928,55.0502301],[-0.16254188211590812E3,0.55242721604932484E2],[-162.64415,55.2180024],[-0.16267435389220168E3,54.9965949],[-162.865041,54.9545282],[-0.16311962429492962E3,55.0646991],[-163.131123,54.9165485],[-0.16328863248008773E3,54.8375788],[-0.16327881344895147E3,55.121828],[-0.16290658839813113E3,0.55195546310164175E2],[-162.157124,55.7194404],[-0.16169733420161106E3,55.9072077],[-0.16121563038684886E3,0.56021410599480866E2],[-0.16089864734253035E3,0.55993637160921395E2],[-0.16100538501750052E3,55.8871577],[-160.851313,0.55771889105587384E2],[-0.16075839861891856E3,55.8546271],[-0.16029170762211183E3,55.8050678],[-160.527458,0.55965061720378266E2],[-0.16030204575727177E3,56.3141303],[-0.15978507308130088E3,56.5616084],[-159.283089,0.56688577372978166E2],[-0.15899039348555652E3,56.860041],[-158.708836,56.7885749],[-158.660801,57.0394148],[-158.320925,0.57297901126690746E2],[-157.737188,0.57548169690925285E2],[-157.46191,57.5062019],[-0.15768068030082935E3,57.6380818],[-0.15755502966127048E3,0.58139970250610055E2],[-0.15719370579494802E3,0.58194176795646605E2],[-0.15748839208548628E3,0.58253700723698465E2],[-157.523609,58.4213411],[-0.15704048496390783E3,58.7725411],[-0.15680889865136254E3,59.1342769],[-0.15714203159864087E3,58.8776473],[-0.15802192665173743E3,0.58640188775551216E2],[-0.15830257790756062E3,0.58641792779518724E2],[-0.15850318826677585E3,58.8503572],[-0.15842562204067232E3,58.9992879],[-0.15808052772819167E3,58.9774361],[-0.15842280679398294E3,59.0898262],[-0.15877555033771247E3,0.58902553287512745E2],[-158.861381,58.718763],[-0.15878862406867998E3,58.4409517],[-0.15895070537369097E3,58.404554],[-0.15935822675154142E3,58.7212789],[-0.15967027418776144E3,0.58911133610105715E2],[-0.15992020766897537E3,0.58819870178889914E2],[-160.363124,59.0511763],[-160.817079,0.58871703676960955E2],[-161.215916,58.8009627],[-161.361334,0.58669544245421065E2],[-0.16175544363986293E3,0.58612030815492744E2],[-0.16214492958611714E3,0.58644220758126934E2],[-0.16172438666235982E3,58.794294],[-0.16178867179054447E3,59.0163936],[-0.16202330955584287E3,0.59283976641906655E2],[-161.828695,59.5886165],[-0.16224249505004408E3,0.60178318717038785E2],[-0.16242134698557769E3,60.2839742],[-0.16213803017179143E3,60.6855465],[-0.16246870767464014E3,60.3946835],[-162.684974,0.60268955927527486E2],[-162.500488,0.60126562123267476E2],[-162.570743,59.9897274],[-0.16321938565127425E3,0.59845597757080775E2],[-0.16390688949219776E3,0.59806794044663114E2],[-0.16414284424363032E3,59.8967611],[-0.16413152695193887E3,59.9942208],[-164.470498,60.1493038],[-164.66227,60.3038155],[-0.16506113376840645E3,0.60412536255270325E2],[-0.16502651035399964E3,0.60500646610193954E2],[-0.16535382878689612E3,60.5412191],[-164.805155,60.8920456],[-0.16437006486387037E3,0.60795904189816504E2],[-0.16426565217067844E3,60.7246688],[-0.16437233903387903E3,60.5918551],[-0.16399957015979575E3,60.7660543],[-0.16372999998960032E3,0.60589976447585954E2],[-0.16342094907449066E3,60.7574301],[-163.906527,0.60853802141243904E2],[-163.586909,60.9029769],[-0.16374901732431016E3,0.60969718893712596E2],[-0.16399460983245808E3,60.8647116],[-0.16444155977016214E3,60.869985],[-0.16517546848956485E3,60.9656869],[-0.16487556369296811E3,0.61086767238021444E2],[-0.16507707630441496E3,0.61094204982445795E2],[-165.392043,0.61212308014294784E2],[-0.16556588278058098E3,61.1023678],[-0.16569137961154019E3,61.299924],[-0.16590627631773586E3,61.4037997],[-165.797109,61.491185],[-166.09399,61.5067416],[-0.16616809425985235E3,0.61650816331803775E2],[-0.16580891822076026E3,61.69608],[-0.16599138740496699E3,0.61834189141533265E2],[-165.612805,61.8693014],[-165.70727,62.1004428],[-0.16519451054351384E3,0.62473527544828386E2],[-0.16499971607197168E3,62.5338095],[-0.16477921359163636E3,62.4811521],[-0.16484541034098774E3,62.8009751],[-0.16467746233653415E3,63.0204709],[-164.375077,63.0539792],[-0.16452519731607725E3,0.63127620587358194E2],[-0.16440905534387338E3,63.2150608],[-0.16410760010166092E3,63.2617197],[-0.16373622786459381E3,63.1928135],[-0.16335883511948455E3,63.0457615],[-163.062237,0.63079720194905946E2],[-162.621489,63.2658066],[-0.16228280251618128E3,0.63529192868301976E2],[-161.973984,63.4529477],[-0.16150543325434924E3,0.63468163813239535E2],[-161.099722,0.63557933103773316E2],[-160.778553,63.8189463],[-160.987532,64.2512693],[-0.16122010182256628E3,64.3965635],[-0.16149070608093592E3,64.4337632],[-0.16141461202285728E3,64.526367],[-160.931952,64.5791123],[-0.16088696887528795E3,64.795554],[-161.186901,64.9240501],[-0.16146636587004642E3,64.7948619],[-0.16175937125231744E3,64.8162522],[-0.16217226631811698E3,64.6780662],[-162.807008,64.3742063],[-0.16287643504615073E3,64.5164244],[-0.16320388256840747E3,64.6520176],[-0.16305174801060213E3,64.5197312],[-163.144352,64.4238206],[-163.713103,64.588253],[-0.16430397111134909E3,64.5839134],[-164.899491,64.4606687],[-0.16614277351914038E3,64.5827818],[-0.16648138315119792E3,64.728087],[-0.16641523721361608E3,64.926533],[-166.92841,65.1570591],[-166.531018,65.15473],[-0.16619739479807942E3,65.3055723],[-0.16740398755650966E3,65.4221043],[-0.16798723388613183E3,65.567783],[-168.088364,65.6577501],[-0.16758005033788407E3,65.7583079],[-0.16740530591593492E3,65.8593382],[-167.074215,65.8770592],[-0.16674767115574076E3,66.0518297],[-0.16621457741592238E3,66.1702733],[-165.723677,66.1125511],[-165.560225,66.1670763],[-0.16584025946951436E3,66.2450572],[-0.16544940435206536E3,66.4098961],[-165.06395,66.4378343],[-0.16446049882728116E3,66.5884459],[-163.727675,66.6164501],[-164.033754,66.215548],[-163.695378,66.0838219],[-0.16288648616347754E3,66.0992247],[-0.16258686563813188E3,66.0508519],[-0.16181631888632577E3,66.0536424],[-161.455411,66.281411],[-0.16103430103422858E3,66.1888072],[-0.16112029102774318E3,66.3343211],[-0.16154442373435222E3,66.4070287],[-0.16182815253545883E3,66.3708287],[-0.16188758033313596E3,66.4930736],[-0.16219117928270566E3,66.6931346],[-0.16246744150027547E3,66.7356407],[-0.16260743341845753E3,66.8943932],[-162.361609,66.9473143],[-162.01765,66.7841124],[-0.16190959556224726E3,66.5596068],[-161.591036,66.4595104],[-0.16104812183553705E3,66.474232],[-0.16065054857818328E3,66.3731029],[-0.16023171128193252E3,66.4202892],[-0.16026256363906646E3,66.5724498],[-0.16086402392812363E3,66.6708654],[-161.39805,66.5518505],[-0.16185667853752358E3,66.7003197],[-161.878745,66.8039318],[-161.622196,66.9793175],[-161.965431,67.0495531],[-0.16239152871661793E3,67.01989],[-163.001698,67.0272838],[-0.16353182172886662E3,67.1025731],[-163.72057,67.1955394],[-0.16394270080337833E3,67.4775915],[-0.16412516998758502E3,67.6067248],[-0.16538602284940345E3,68.0455846],[-165.959581,68.1558874],[-166.235946,68.2779565],[-0.16678630046019285E3,68.3595959],[-0.16638053689490954E3,68.4251293],[-0.16618204689710336E3,68.7971923],[-0.16620907463861292E3,68.8853576],[-0.16550947896983558E3,68.8675817],[-0.16430236848067275E3,68.936488],[-0.16386792510472506E3,69.0366613],[-163.535671,69.1700903],[-0.16316145611415237E3,69.3879602],[-0.16309355373729446E3,69.610708],[-0.16295211574361784E3,69.7581225],[-0.16188096656335244E3,70.3317517],[-0.16176107687982395E3,70.2576489],[-162.073874,70.161969],[-0.16099626636480892E3,70.3045935],[-0.16063411852384553E3,70.4463941],[-0.16011714584787467E3,70.5911939],[-0.15996315048067208E3,70.5681446],[-0.16009507980699385E3,70.3332788],[-159.865688,70.2788416],[-0.15974621443724033E3,70.5304505],[-160.081594,70.6348645],[-0.15931450665710014E3,70.8785193],[-0.15925115399355064E3,70.7484522],[-158.996285,70.801593],[-157.998465,70.8452857],[-0.15719530979891545E3,71.0932801],[-156.783292,71.3189502],[-0.15647023683424445E3,71.4076868],[-0.15646997865552362E3,71.2915613],[-155.579438,71.1210865],[-0.15580433348852972E3,70.9954358],[-0.15614658783508173E3,70.927815],[-0.15597352294810878E3,70.8419788]]]]}},{"type":"Feature","properties":{"name":"US-AL"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-88.0713356,30.2523398],[-88.0713356,30.2523398],[-88.0713356,30.2523398],[-88.0713356,30.2523398]]],[[[-87.4895106,0.30377682814609663E2],[-87.6222694,0.30264765329833487E2],[-87.7902943,0.30291791698051984E2],[-88.0113173,30.694177],[-88.1354408,0.30366597609108673E2],[-88.3995851,0.30370805372941057E2],[-88.4861904,0.31890511241460107E2],[-88.0847719,34.933109],[-88.1732668,0.34999005012383485E2],[-88.1904274,35.0249987],[-85.6236036,0.35000861701907475E2],[-85.2009705,32.9562291],[-84.9296961,32.2465562],[-85.1241321,31.8805357],[-85.0548853,0.31572676756679474E2],[-85.0926014,0.31295711414082824E2],[-85.0072815,31.0016733],[-87.593694,0.31000739479002437E2],[-87.6010548,0.30860597872093898E2],[-87.4216591,30.6715891],[-87.4895106,0.30377682814609663E2]]]]}},{"type":"Feature","properties":{"name":"US-AR"},"geometry":{"type":"Polygon","coordinates":[[[-89.7047719,0.36001573410003466E2],[-89.7037722,35.9069042],[-89.9435049,35.6791357],[-90.0929189,35.2035924],[-90.2937051,0.35001114387463964E2],[-0.9053924951693075E2,0.34728170041114474E2],[-90.5840078,34.5037084],[-91.0701748,33.9742003],[-0.9105270656776761E2,33.8275987],[-91.207482,33.6756688],[-91.1067813,33.2179234],[-91.1499575,33.0159178],[-0.9404130653528927E2,33.0119957],[-94.047327,0.33554434644777494E2],[-94.3779551,33.5661131],[-94.484149,33.6484337],[-94.439138,35.3872509],[-0.9461837992156065E2,0.36500869083346984E2],[-90.1622427,0.36500869083346984E2],[-0.9007565941135553E2,36.2967211],[-90.3810684,35.9927404],[-89.7047719,0.36001573410003466E2]]]}},{"type":"Feature","properties":{"name":"US-AZ"},"geometry":{"type":"Polygon","coordinates":[[[-0.10904667026687814E3,0.37000845909060224E2],[-0.10904780735188243E3,31.3278794],[-0.11104197429807103E3,0.31324209950326228E2],[-0.11483595454533896E3,32.5083274],[-0.11472477290047271E3,32.7153428],[-0.11447753106975215E3,32.8420042],[-0.11449086297944037E3,32.983618],[-0.11470438776785913E3,33.1697813],[-0.11470170161053014E3,0.33417808663003164E2],[-0.11455600092137834E3,33.5356261],[-0.11450905084634518E3,33.9039207],[-114.32932,34.1420274],[-0.11412561150066341E3,34.2865086],[-0.11437102410768144E3,0.34488492297596544E2],[-0.11461054254943551E3,34.9911168],[-0.11459098688462704E3,35.3527758],[-0.11464852778037671E3,35.4759215],[-0.11466914362588973E3,0.36121719898961665E2],[-0.11450527704249025E3,0.36156425710832444E2],[-0.11418320732805587E3,36.0303027],[-0.11404287895356211E3,36.1817712],[-0.11404026970053292E3,37.0041528],[-0.10904667026687814E3,0.37000845909060224E2]]]}},{"type":"Feature","properties":{"name":"US-CA"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-0.11835039315596671E3,32.8276121],[-0.11835039315596671E3,32.8276121],[-0.11835039315596671E3,32.8276121],[-0.11835039315596671E3,32.8276121]]],[[[-0.11943802869550358E3,33.2171983],[-0.11943802869550358E3,33.2171983],[-0.11943802869550358E3,33.2171983],[-0.11943802869550358E3,33.2171983]]],[[[-118.347965,33.3857615],[-0.11844630380415656E3,33.317086],[-0.11855484873017227E3,33.4770799],[-118.347965,33.3857615]]],[[[-0.12004357315219701E3,33.9188621],[-0.12004357315219701E3,33.9188621],[-0.12004357315219701E3,33.9188621],[-0.12004357315219701E3,33.9188621]]],[[[-0.12030660233703546E3,34.0248692],[-0.12030660233703546E3,34.0248692],[-0.12030660233703546E3,34.0248692],[-0.12030660233703546E3,34.0248692]]],[[[-0.11988239272612653E3,0.34079680026142164E2],[-119.562207,34.00661],[-119.809581,33.9677953],[-0.11988239272612653E3,0.34079680026142164E2]]],[[[-0.12422840851691392E3,42.000768],[-120.000809,0.42000559234549776E2],[-0.12000006179799806E3,39.0002588],[-0.11812627205366707E3,37.6923804],[-0.11665959169986613E3,36.5899682],[-0.11461054254943551E3,34.9911168],[-0.11437102410768144E3,0.34488492297596544E2],[-0.11412561150066341E3,34.2865086],[-114.32932,34.1420274],[-0.11450905084634518E3,33.9039207],[-0.11455600092137834E3,33.5356261],[-0.11470170161053014E3,0.33417808663003164E2],[-0.11470438776785913E3,33.1697813],[-0.11449086297944037E3,32.983618],[-0.11447753106975215E3,32.8420042],[-0.11472477290047271E3,32.7153428],[-0.11712827396872154E3,32.5333653],[-0.11724348210299917E3,32.6640257],[-0.11731882634415459E3,0.33100051082522334E2],[-0.11746742193087772E3,0.33295486880993245E2],[-118.080514,33.7221519],[-118.410439,33.7439378],[-0.11850619577421475E3,34.0174095],[-0.11883204478566836E3,34.0244627],[-0.11914373241962858E3,34.1120238],[-0.11926764721927745E3,34.2574388],[-119.606054,34.418004],[-0.12005297744943074E3,34.4692662],[-0.12048119157709397E3,0.34471639269609874E2],[-0.12064469561165139E3,34.5799864],[-120.63361,35.0764586],[-0.12085737445277228E3,35.2096898],[-0.12086029132300074E3,35.365443],[-0.12134385457386908E3,35.7922289],[-0.12187741111277737E3,36.3310644],[-0.12191864829696756E3,36.5723461],[-0.12179000388288054E3,0.36732285107799804E2],[-121.880669,0.36938937947714216E2],[-0.12216421471258523E3,0.36990969199699016E2],[-0.12239490014618984E3,37.2075207],[-0.12251422266050727E3,37.7719873],[-0.12207052879592547E3,0.37478278788600946E2],[-0.12238544641047763E3,0.37960578611686735E2],[-122.217031,38.040647],[-121.716857,38.0340662],[-0.12203151085010113E3,38.1235169],[-0.12215377770046837E3,38.065531],[-0.12248388940739706E3,38.1088391],[-122.521325,0.37826402581177724E2],[-0.12293199977605359E3,38.0554565],[-0.12312116238092578E3,38.4492835],[-0.12328973111294215E3,0.38535866719569704E2],[-0.12370112517160436E3,38.9072925],[-0.12382029387732213E3,39.3683997],[-0.12378350066302792E3,39.6187232],[-0.12388447600867674E3,39.860796],[-0.12432403352056173E3,40.2519642],[-0.12437165376163607E3,40.4912025],[-0.12413309113046537E3,40.9697779],[-0.12406851898444738E3,41.3841713],[-124.117688,41.6217506],[-0.12424460785835214E3,41.7879408],[-0.12422840851691392E3,42.000768]]]]}},{"type":"Feature","properties":{"name":"US-CO"},"geometry":{"type":"Polygon","coordinates":[[[-0.10202448921287035E3,40.0011243],[-0.10201278327980658E3,0.37000845909060224E2],[-0.10300083873741983E3,0.37000845909060224E2],[-0.10904667026687814E3,0.37000845909060224E2],[-0.10904639011550022E3,0.41000858268679785E2],[-0.10402165542675148E3,0.41000858268679785E2],[-0.10202500557031196E3,0.41000627555780326E2],[-0.10202448921287035E3,40.0011243]]]}},{"type":"Feature","properties":{"name":"US-CT"},"geometry":{"type":"Polygon","coordinates":[[[-71.8008357,42.011963],[-71.795793,41.5199513],[-71.8423531,41.3355128],[-72.2652718,41.2916664],[-72.9247152,41.2851515],[-73.6304659,40.9918605],[-73.7230147,0.41104514278493376E2],[-73.484139,0.41218958862937164E2],[-73.5447286,41.2959511],[-73.4805684,42.0555678],[-71.8008357,42.011963]]]}},{"type":"Feature","properties":{"name":"US-DC"},"geometry":{"type":"Polygon","coordinates":[[[-77.0303611,0.38889252963519105E2],[-77.122053,38.9435364],[-77.0303611,0.38889252963519105E2],[-77.0303611,0.38889252963519105E2]]]}},{"type":"Feature","properties":{"name":"US-DE"},"geometry":{"type":"Polygon","coordinates":[[[-75.4210287,39.8154224],[-75.5876034,39.6407838],[-75.5738815,0.39476944636328334E2],[-75.4126571,39.281377],[-75.3921676,39.0927527],[-75.1850644,38.8193909],[-75.0376608,38.4555896],[-75.7070248,38.4550733],[-75.7847201,39.7223572],[-75.634581,39.8394825],[-75.4210287,39.8154224]]]}},{"type":"Feature","properties":{"name":"US-FL"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-81.7838378,0.24544579564750713E2],[-81.7838378,0.24544579564750713E2],[-81.7838378,0.24544579564750713E2],[-81.7838378,0.24544579564750713E2]]],[[[-81.566693,24.5998957],[-81.566693,24.5998957],[-81.566693,24.5998957],[-81.566693,24.5998957]]],[[[-81.3347936,0.24650487771915756E2],[-81.3347936,0.24650487771915756E2],[-81.3347936,0.24650487771915756E2],[-81.3347936,0.24650487771915756E2]]],[[[-81.0441942,24.7168122],[-81.0441942,24.7168122],[-81.0441942,24.7168122],[-81.0441942,24.7168122]]],[[[-80.8294005,0.24803681137134596E2],[-80.8294005,0.24803681137134596E2],[-80.8294005,0.24803681137134596E2],[-80.8294005,0.24803681137134596E2]]],[[[-80.6383043,0.24903184314758512E2],[-80.6383043,0.24903184314758512E2],[-80.6383043,0.24903184314758512E2],[-80.6383043,0.24903184314758512E2]]],[[[-80.3818285,0.25142290769192233E2],[-80.3818285,0.25142290769192233E2],[-80.3818285,0.25142290769192233E2],[-80.3818285,0.25142290769192233E2]]],[[[-82.0371825,26.4536299],[-82.0371825,26.4536299],[-82.0371825,26.4536299],[-82.0371825,26.4536299]]],[[[-82.0837646,0.26552331106184106E2],[-82.0837646,0.26552331106184106E2],[-82.0837646,0.26552331106184106E2],[-82.0837646,0.26552331106184106E2]]],[[[-80.1867552,0.27278439532320412E2],[-80.1867552,0.27278439532320412E2],[-80.1867552,0.27278439532320412E2],[-80.1867552,0.27278439532320412E2]]],[[[-84.9078882,0.29642631517038435E2],[-84.9078882,0.29642631517038435E2],[-84.9078882,0.29642631517038435E2],[-84.9078882,0.29642631517038435E2]]],[[[-81.5039391,0.30731431607401042E2],[-81.2495067,0.29793792411476606E2],[-80.9000206,0.29049853174113228E2],[-80.5241234,0.28486089724873047E2],[-80.6100145,28.1776046],[-80.6069383,0.28522882939167182E2],[-80.8381896,0.28757649793825994E2],[-80.7486071,0.28381005492348784E2],[-80.2261083,0.27207050369440914E2],[-80.1257701,27.0830037],[-80.0413072,26.5686128],[-80.1589269,0.25878341822660992E2],[-80.3008263,0.25618537125250192E2],[-80.36692,0.25331266606479197E2],[-80.7365441,0.25156342283400072E2],[-81.1104967,25.13805],[-81.1133092,0.25367235846132537E2],[-81.3649291,0.25831034691950087E2],[-81.7155028,0.25983173369628695E2],[-81.8665758,0.26434997117333218E2],[-81.9589489,0.26489928760053694E2],[-81.8286401,26.6870565],[-82.0396105,26.5520455],[-82.0669225,26.891567],[-82.2900659,0.26870813784348876E2],[-82.4413696,0.27059690744678992E2],[-82.6358496,0.27524577237022378E2],[-82.4005444,27.8353805],[-82.5796105,0.27958449323885752E2],[-82.6608874,0.27718409031525844E2],[-82.8435131,0.27846004251236955E2],[-82.6606347,0.28485859011973595E2],[-82.6514831,0.28887486224560096E2],[-82.7693334,0.29051556055037597E2],[-83.2904699,0.29451897867184403E2],[-83.6943713,29.9259799],[-84.04422,0.30103793644005442E2],[-84.3096826,30.0647592],[-84.3828296,29.9073691],[-84.8005518,29.7730722],[-85.3189417,0.29680204760659286E2],[-85.3536255,0.29875750422415585E2],[-85.7557911,0.30166997992119608E2],[-86.4544337,0.30399128127927803E2],[-86.4479518,30.4956101],[-86.6796424,30.4028964],[-87.2011525,0.30339230664705315E2],[-86.9857985,30.4308566],[-86.9975758,0.30570328085630383E2],[-87.1705885,30.5387863],[-87.281045,0.30339230664705315E2],[-87.4895106,0.30377682814609663E2],[-87.4216591,30.6715891],[-87.6010548,0.30860597872093898E2],[-87.593694,0.31000739479002437E2],[-85.0072815,31.0016733],[-84.883938,0.30720939663641378E2],[-82.2398803,30.5656809],[-82.1942321,30.3934372],[-82.061759,30.4045993],[-82.0381933,0.30731969937499663E2],[-81.935592,30.819509],[-81.5039391,0.30731431607401042E2]]]]}},{"type":"Feature","properties":{"name":"US-GA"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-81.4189818,0.30971438940775364E2],[-81.4189818,0.30971438940775364E2],[-81.4189818,0.30971438940775364E2],[-81.4189818,0.30971438940775364E2]]],[[[-80.8723461,32.0295652],[-81.1132872,0.31878624033975445E2],[-81.1754259,0.31531302243382434E2],[-81.2884643,31.263906],[-81.4417675,0.31199723861593036E2],[-81.5039391,0.30731431607401042E2],[-81.935592,30.819509],[-82.0381933,0.30731969937499663E2],[-82.061759,30.4045993],[-82.1942321,30.3934372],[-82.2398803,30.5656809],[-84.883938,0.30720939663641378E2],[-85.0072815,31.0016733],[-85.0926014,0.31295711414082824E2],[-85.0548853,0.31572676756679474E2],[-85.1241321,31.8805357],[-84.9296961,32.2465562],[-85.2009705,32.9562291],[-85.6236036,0.35000861701907475E2],[-84.32469,34.9880956],[-83.1148205,35.0014769],[-83.3555749,34.7083177],[-82.8477319,0.34436911485081986E2],[-82.5893444,34.0176183],[-82.0057177,33.5228929],[-81.9328454,0.33389870429515504E2],[-81.4897777,32.9356626],[-81.3769701,0.32607468055919234E2],[-81.1715038,0.32380138945684855E2],[-81.0748131,32.1096995],[-80.8723461,32.0295652]]]]}},{"type":"Feature","properties":{"name":"US-HI"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-0.15558132475199528E3,19.0120183],[-0.15588130645289172E3,19.0705205],[-0.15589073821594684E3,0.19382543235022172E2],[-156.048686,0.19749959020522304E2],[-0.15582030211706856E3,20.0141802],[-155.831621,0.20275819636285412E2],[-0.15519878903183624E3,0.19994382857971353E2],[-155.065929,19.7482012],[-154.804188,19.5244427],[-0.15505347561076564E3,0.19319185078308358E2],[-155.309611,0.19260166521369463E2],[-0.15558132475199528E3,19.0120183]]],[[[-156.849595,0.20772632399377947E2],[-0.15697341068156396E3,0.20757548170286903E2],[-0.15694178378826768E3,0.20930044514757817E2],[-156.849595,0.20772632399377947E2]]],[[[-156.486826,20.9325714],[-156.277537,20.9512811],[-155.989854,20.7571307],[-156.107133,0.20644784494110358E2],[-156.438223,20.617868],[-156.480056,20.8012408],[-0.15668968050716626E3,0.20901414142571888E2],[-0.15665686709038727E3,0.21024504967579908E2],[-156.486826,20.9325714]]],[[[-0.15721360203594134E3,0.21215392426033567E2],[-156.712161,0.21155088468654974E2],[-156.85985,21.0563324],[-0.15729031407500048E3,0.21112582363517866E2],[-0.15721360203594134E3,0.21215392426033567E2]]],[[[-0.15779935462176263E3,0.21456652200861903E2],[-0.15763541113406333E3,0.21307644626818337E2],[-0.15811034462386033E3,0.21318597996376802E2],[-0.15827312356073392E3,21.5852472],[-0.15796249610747816E3,21.7013617],[-0.15779935462176263E3,0.21456652200861903E2]]],[[[-160.18001,0.21841074822948322E2],[-160.18001,0.21841074822948322E2],[-160.18001,0.21841074822948322E2],[-160.18001,0.21841074822948322E2]]],[[[-0.15937277265053373E3,21.9323602],[-0.15960885786461785E3,0.21909519649778012E2],[-0.15978918196817634E3,0.22041806031777433E2],[-0.15957922224337014E3,22.2231354],[-0.15935205243489963E3,0.22219575813949525E2],[-0.15937277265053373E3,21.9323602]]]]}},{"type":"Feature","properties":{"name":"US-IA"},"geometry":{"type":"Polygon","coordinates":[[[-90.650585,0.42512983570503415E2],[-0.9016751610431275E2,42.1003041],[-0.9015244286155027E2,41.9815199],[-90.3475271,41.6320338],[-0.9058673242889833E2,41.4947267],[-0.9104811428243613E2,41.369098],[-91.0665054,41.2059071],[-0.9095400539212739E2,41.0155799],[-0.9110213405988745E2,40.7497877],[-0.9139418363157515E2,40.5366529],[-91.4419522,40.3794496],[-0.9173152983585013E2,40.6246534],[-95.7650285,40.6018678],[-95.8465965,41.0803334],[-0.9605862716888451E2,41.5457802],[-0.9608663681350767E2,41.8213722],[-0.9629533311053129E2,42.1329115],[-96.4809526,42.5112587],[-96.6217699,42.7295351],[-0.9646268785324355E2,0.43099181102630716E2],[-96.5986217,43.4975014],[-96.4536186,0.43501170864059176E2],[-91.245253,0.43502412319184636E2],[-91.1171963,43.3311574],[-0.9116132839808301E2,43.1023342],[-91.0695816,42.7885536],[-0.9078874903816711E2,42.6769326],[-90.650585,0.42512983570503415E2]]]}},{"type":"Feature","properties":{"name":"US-ID"},"geometry":{"type":"Polygon","coordinates":[[[-0.11105143352694748E3,44.4988833],[-111.050296,42.0008778],[-0.11404259330901996E3,42.0011086],[-0.11701667484337055E3,0.42000559234549776E2],[-0.11702023990698312E3,43.8084365],[-0.11691131045946844E3,44.1574062],[-0.11713974369572155E3,44.2902639],[-0.11720170109554591E3,44.4362063],[-0.11685585696614214E3,0.44905740009436094E2],[-0.11654915712534087E3,0.45456737344908134E2],[-0.11652091676781825E3,45.7219144],[-116.896479,46.0020987],[-0.11702504642572119E3,46.4291593],[-0.11703905399461487E3,48.9930827],[-0.11604849365409369E3,48.9930827],[-0.11604901001153519E3,48.0047196],[-0.11573375731396241E3,0.47706341922911214E2],[-0.11570246825026882E3,47.4375944],[-0.11534946652781849E3,0.47261175890304486E2],[-114.60155,0.46660333582227935E2],[-0.11435089715378867E3,46.6676395],[-0.11448535882883982E3,46.1582144],[-0.11440513116464655E3,45.8742508],[-0.11453369867443384E3,45.7820096],[-0.11452923273188064E3,45.5757193],[-114.297641,0.45487564982802816E2],[-0.11394265067825427E3,0.45681506640591785E2],[-0.11380227286528213E3,45.6010977],[-0.11369711172845805E3,0.45304983188728535E2],[-0.11347107900499184E3,0.45072853052920344E2],[-0.11346929372660342E3,44.9299759],[-0.11309327015268897E3,0.44715335949438376E2],[-0.11299968860615037E3,44.4803604],[-0.11281551379443714E3,0.44405971923965204E2],[-0.11271592821934918E3,0.44498037357164755E2],[-0.11239284776268869E3,0.44467956789610945E2],[-0.11223131028094058E3,44.5606924],[-0.11149985700596761E3,0.44544850103091086E2],[-0.11133746259059303E3,0.44744812268922196E2],[-0.11105143352694748E3,44.4988833]]]}},{"type":"Feature","properties":{"name":"US-IL"},"geometry":{"type":"Polygon","coordinates":[[[-87.8120849,42.4971127],[-87.7974609,42.2114258],[-87.5212449,41.7277806],[-87.5329176,39.3748597],[-87.6472853,39.1687452],[-87.5302809,38.9088965],[-87.6359584,0.38542612325295785E2],[-87.8729555,0.38295024425226025E2],[-88.0953188,0.37875566401412534E2],[-88.0419911,37.7888513],[-88.1075136,0.37534353009489955E2],[-88.506603,0.37323591282700086E2],[-88.4716664,37.088385],[-89.0462075,37.1829773],[-89.1543129,36.9921118],[-89.4139419,0.37102414516450374E2],[-89.4619741,37.4341247],[-89.6232863,0.37747257070346045E2],[-90.2990005,0.38173999029984266E2],[-0.9037399316297041E2,38.3097571],[-0.9012676781174271E2,38.8326184],[-90.6635269,0.38987492713360346E2],[-0.9091937648455641E2,39.3869007],[-91.3787369,39.7494056],[-0.9150165189739347E2,40.0975294],[-91.4419522,40.3794496],[-0.9139418363157515E2,40.5366529],[-0.9110213405988745E2,40.7497877],[-0.9095400539212739E2,41.0155799],[-91.0665054,41.2059071],[-0.9104811428243613E2,41.369098],[-0.9058673242889833E2,41.4947267],[-90.3475271,41.6320338],[-0.9015244286155027E2,41.9815199],[-0.9016751610431275E2,42.1003041],[-90.650585,0.42512983570503415E2],[-87.8120849,42.4971127]]]}},{"type":"Feature","properties":{"name":"US-IN"},"geometry":{"type":"Polygon","coordinates":[[[-84.7961133,41.7014345],[-84.8217115,39.0919837],[-84.8007386,38.8193909],[-85.1698902,38.6903784],[-85.4447791,38.6830945],[-85.4586768,0.38530208760369526E2],[-85.8549317,38.215033],[-85.9611585,38.0140161],[-86.1034425,37.9918677],[-86.3145997,38.1637708],[-86.457378,38.120155],[-86.5992335,37.8747974],[-86.9694398,37.9380457],[-87.1410353,37.8052429],[-87.3723854,37.9234778],[-87.9060023,37.9018237],[-88.0419911,37.7888513],[-88.0953188,0.37875566401412534E2],[-87.8729555,0.38295024425226025E2],[-87.6359584,0.38542612325295785E2],[-87.5302809,38.9088965],[-87.6472853,39.1687452],[-87.5329176,39.3748597],[-87.5212449,41.7277806],[-87.4125,41.6564941],[-87.0726074,41.6694824],[-86.8625968,41.7605867],[-84.796399,41.7597279],[-84.7961133,41.7014345]]]}},{"type":"Feature","properties":{"name":"US-KS"},"geometry":{"type":"Polygon","coordinates":[[[-94.6180668,0.37000845909060224E2],[-0.10201278327980658E3,0.37000845909060224E2],[-0.10202448921287035E3,40.0011243],[-95.3466801,0.40001486892666186E2],[-94.8932963,39.7818153],[-95.0753563,39.5973768],[-0.9477785197354241E2,39.1939917],[-94.6223844,39.1244043],[-94.6180668,0.37000845909060224E2]]]}},{"type":"Feature","properties":{"name":"US-KY"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-89.4872207,36.5030663],[-89.5573134,0.36501077823589334E2],[-89.4872207,36.5030663],[-89.4872207,36.5030663]]],[[[-82.6127783,0.38448217790444865E2],[-82.5887731,38.0997424],[-82.2802441,37.6871838],[-81.965277,37.5397253],[-82.3432067,37.2969275],[-82.6815856,37.1381201],[-82.8945007,36.9063745],[-83.1502185,36.7623327],[-83.6675207,36.6050305],[-83.7303845,0.36586815131547375E2],[-86.5075855,36.66484],[-87.8391505,36.643966],[-88.0962965,36.693009],[-88.0591078,36.4996826],[-89.4503286,0.36500023136049094E2],[-89.1563344,0.36715717724355294E2],[-89.1543129,36.9921118],[-89.0462075,37.1829773],[-88.4716664,37.088385],[-88.506603,0.37323591282700086E2],[-88.1075136,0.37534353009489955E2],[-88.0419911,37.7888513],[-87.9060023,37.9018237],[-87.3723854,37.9234778],[-87.1410353,37.8052429],[-86.9694398,37.9380457],[-86.5992335,37.8747974],[-86.457378,38.120155],[-86.3145997,38.1637708],[-86.1034425,37.9918677],[-85.9611585,38.0140161],[-85.8549317,38.215033],[-85.4586768,0.38530208760369526E2],[-85.4447791,38.6830945],[-85.1698902,38.6903784],[-84.8007386,38.8193909],[-84.8217115,39.0919837],[-84.4300598,39.090896],[-84.2272852,38.8652039],[-83.6898779,38.6495313],[-83.3569702,38.6274048],[-82.8804382,38.7102527],[-82.6127783,0.38448217790444865E2]]]]}},{"type":"Feature","properties":{"name":"US-LA"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-91.7936905,0.29500732097562924E2],[-91.9962344,0.29573110030011403E2],[-91.875231,0.29640983567756855E2],[-91.7936905,0.29500732097562924E2]]],[[[-88.8893007,0.29712581470878696E2],[-88.8893007,0.29712581470878696E2],[-88.8893007,0.29712581470878696E2],[-88.8893007,0.29712581470878696E2]]],[[[-88.8274697,29.8076901],[-88.8274697,29.8076901],[-88.8274697,29.8076901],[-88.8274697,29.8076901]]],[[[-89.2239553,30.0840512],[-89.2239553,30.0840512],[-89.2239553,30.0840512],[-89.2239553,30.0840512]]],[[[-89.5208608,0.30192629096612922E2],[-89.5884817,30.1659653],[-0.9022528221979755E2,0.30379286818577093E2],[-90.4130605,0.30140301213757418E2],[-90.1753384,0.30029097596234056E2],[-89.7374343,0.30171985785278554E2],[-89.8151845,0.30007267761417022E2],[-89.5895144,0.29915048519617837E2],[-89.4007363,0.30046049501177652E2],[-89.3544619,0.29820225517953784E2],[-89.7208779,0.29619307541539367E2],[-89.5136757,29.4200705],[-89.0157534,0.29202870758075413E2],[-89.1555105,0.29016630516595928E2],[-89.353539,0.29070243799891134E2],[-89.8772463,0.29458017252183485E2],[-90.1590676,0.29537140790358045E2],[-90.0523354,0.29431408364449663E2],[-90.1013674,0.29181787993599336E2],[-0.9021280175057149E2,0.29104938625433356E2],[-90.3792007,0.29295111972531622E2],[-0.9058624903044237E2,0.29271546297804555E2],[-90.751022,29.1308883],[-0.9129013211393399E2,0.29288992587532537E2],[-91.1507596,29.3178976],[-0.9124397854772027E2,29.4573251],[-0.9151419828459083E2,29.5553781],[-0.9167246733359707E2,0.29746089772938237E2],[-91.8931717,0.29836012872071638E2],[-92.1354752,0.29699474780925602E2],[-92.0588785,0.29617187180130337E2],[-92.2608237,0.29556850263766158E2],[-0.9267131685900483E2,0.29597082198894675E2],[-0.9317570469562855E2,29.7789609],[-93.6948417,0.29769919119550355E2],[-93.8838779,29.8100192],[-0.9379400977292589E2,0.29977264098163037E2],[-93.710629,0.30112813419740096E2],[-93.7202146,0.30558265096888967E2],[-93.5305906,31.0461899],[-0.9355774877758515E2,0.31180420882341146E2],[-93.8206516,0.31603965820373055E2],[-0.9382679847046573E2,31.7502598],[-0.9404330055391999E2,0.31999231948732465E2],[-0.9404130653528927E2,33.0119957],[-91.1499575,33.0159178],[-91.0960806,32.9376841],[-91.1496499,32.6250132],[-90.9477212,32.2400742],[-91.3725296,31.7737156],[-91.6182498,0.31276957751258028E2],[-91.6564493,0.31001805152871132E2],[-89.7353139,0.31001156959487112E2],[-89.8353664,0.30730816373002504E2],[-89.5916567,0.30223017281365916E2],[-89.5208608,0.30192629096612922E2]]]]}},{"type":"Feature","properties":{"name":"US-MA"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-69.9779401,41.2655958],[-69.9779401,41.2655958],[-69.9779401,41.2655958],[-69.9779401,41.2655958]]],[[[-70.5098982,0.41376338019331364E2],[-70.7853144,41.3274489],[-70.6737153,41.4485292],[-70.5098982,0.41376338019331364E2]]],[[[-71.2337654,41.7065541],[-71.3871345,42.0168629],[-71.8008357,42.011963],[-73.4805684,42.0555678],[-73.5072872,42.0800124],[-73.2533272,0.42752221860879644E2],[-72.4668599,42.7303151],[-71.3296211,0.42702486751560535E2],[-70.9740815,42.8716762],[-70.8061116,42.8767629],[-70.7356782,42.6692861],[-71.0461738,42.3311159],[-70.73826,42.2288661],[-70.5146772,0.41803310691869015E2],[-70.295467,41.7289552],[-70.0014069,41.8261842],[-69.9486396,41.6771437],[-70.4046601,0.41626892228107955E2],[-70.657126,41.5342335],[-70.7011262,0.41714848774431964E2],[-71.1685395,41.4894093],[-71.2337654,41.7065541]]]]}},{"type":"Feature","properties":{"name":"US-MD"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.2257907,38.0403394],[-75.2524765,38.03745],[-75.2257907,38.0403394],[-75.2257907,38.0403394]]],[[[-75.7847201,39.7223572],[-75.7070248,38.4550733],[-75.0376608,38.4555896],[-75.3759628,0.38024991455940786E2],[-75.6592563,0.37953964841903165E2],[-75.8508139,37.971554],[-75.9280698,0.38169241949724686E2],[-75.8888266,38.3555152],[-76.0512155,38.2795447],[-76.2116708,38.3613269],[-76.2641745,38.5999719],[-76.0009421,38.6017298],[-76.2783139,38.7724683],[-76.168132,0.38852745393767044E2],[-76.2356979,39.1916187],[-75.8729294,39.5108924],[-76.0630038,39.5611219],[-76.0972592,39.4330982],[-76.4208835,39.2249952],[-76.5704074,0.39269335985830615E2],[-76.4200595,39.0738892],[-76.4937778,0.38945217321122705E2],[-76.5013144,38.5321753],[-76.3940878,0.38368973402656344E2],[-76.6419834,38.4543482],[-76.4087656,38.2682617],[-76.4544248,38.1735376],[-76.889747,38.2920801],[-77.0011814,38.4452515],[-77.2415842,38.4948108],[-77.0181882,38.7777417],[-77.0303611,0.38889252963519105E2],[-77.122053,38.9435364],[-77.4809214,39.1129566],[-77.478856,0.39220864304294075E2],[-77.7266416,0.39346438039553085E2],[-77.8832517,39.6107142],[-78.181135,0.39685739810308895E2],[-78.4955418,39.5333484],[-78.7777696,0.39626622376413145E2],[-78.9714805,39.4536426],[-79.0753453,39.4759888],[-79.4879808,39.2109107],[-79.4774998,0.39722796696488054E2],[-75.7847201,39.7223572]]]]}},{"type":"Feature","properties":{"name":"US-ME"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-68.623194,44.1960671],[-68.623194,44.1960671],[-68.623194,44.1960671],[-68.623194,44.1960671]]],[[[-68.1872565,44.3324844],[-68.4094879,44.3642678],[-68.2994379,44.456509],[-68.1872565,44.3324844]]],[[[-70.7330964,0.43070034373003274E2],[-70.9556355,43.389396],[-71.0845491,45.2940078],[-70.8979902,45.2624551],[-70.6897883,45.4283377],[-70.7022138,45.5513846],[-70.4210957,45.73824],[-70.296247,45.9060892],[-70.2482917,46.2508731],[-70.067215,46.4410465],[-70.0076801,46.7089371],[-69.2428779,47.4629947],[-69.0502216,47.426619],[-69.0485736,0.47273656359530584E2],[-68.8287152,47.2033219],[-68.3108856,47.3544718],[-67.8067889,47.0828128],[-67.7752582,45.8178799],[-67.8629883,45.7395996],[-67.6254883,45.6022461],[-67.4326495,45.6031082],[-67.4725409,45.2758914],[-67.3152936,45.1538333],[-67.1248346,45.1694449],[-67.1067291,44.8850418],[-66.9870221,0.44827704117787356E2],[-67.1912469,44.6755654],[-67.3640729,44.6968569],[-67.6529913,44.5623953],[-67.8390558,44.576249],[-68.056618,44.3843179],[-68.1172846,44.4906436],[-68.4505988,44.5075955],[-68.5325348,44.2586453],[-68.8119171,44.3393618],[-68.7627204,0.44570766852126646E2],[-68.961474,44.4338552],[-69.06836,44.0975637],[-69.6239387,43.8806277],[-69.6528766,0.43993874740276155E2],[-69.8083442,43.7723135],[-69.965229,43.8551064],[-70.1788142,0.43766369848785125E2],[-70.2025776,43.6261184],[-70.5206977,0.43348823446138226E2],[-70.7330964,0.43070034373003274E2]]]]}},{"type":"Feature","properties":{"name":"US-MI"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-85.9762207,45.1021484],[-85.9762207,45.1021484],[-85.9762207,45.1021484],[-85.9762207,45.1021484]]],[[[-85.5516602,45.6025879],[-85.5516602,45.6025879],[-85.5516602,45.6025879],[-85.5516602,45.6025879]]],[[[-83.454257,41.7455483],[-84.7961133,41.7014345],[-84.796399,41.7597279],[-86.8625968,41.7605867],[-86.6324707,41.9113281],[-86.2995605,42.417627],[-86.2215332,0.42900439453125024E2],[-86.3291504,43.2241211],[-86.5421387,43.6373047],[-86.4405762,0.43794287109375055E2],[-86.5191895,44.0737305],[-86.2958984,44.3306152],[-86.2370117,0.44720214843750036E2],[-86.057666,44.9163574],[-85.8578125,44.9615234],[-85.6166016,45.1929199],[-85.5493652,44.771875],[-85.3890137,0.45032763671875024E2],[-85.3756836,45.2769531],[-84.9671387,0.45392675781249984E2],[-85.087793,45.6052734],[-84.7719727,45.7947754],[-84.1892578,0.45611132812499996E2],[-84.1277344,45.5324707],[-83.4785156,0.45338818359375026E2],[-83.2930664,0.45040380859374984E2],[-83.4361816,44.9614258],[-83.2942383,44.6833496],[-83.3305664,0.44375097656249984E2],[-83.5125,0.44270751953125036E2],[-83.6139648,0.44058251953124994E2],[-83.8788086,43.9625488],[-83.9382812,0.43737548828125036E2],[-83.7352051,43.6266602],[-83.4688965,43.7309082],[-83.3825684,43.9240723],[-82.9472168,44.0669922],[-82.6633301,0.43854199218750004E2],[-82.4612793,43.0810059],[-82.4883471,42.7395107],[-82.7873535,0.42664550781250014E2],[-82.902002,42.3939941],[-83.104834,0.42286425781249996E2],[-83.2618164,41.9463867],[-83.454257,41.7455483]]],[[[-84.5571777,0.45820458984375016E2],[-84.5571777,0.45820458984375016E2],[-84.5571777,0.45820458984375016E2],[-84.5571777,0.45820458984375016E2]]],[[[-83.5034668,0.46013134765625004E2],[-83.8232422,45.9556641],[-83.6082031,0.46096582031250044E2],[-83.5034668,0.46013134765625004E2]]],[[[-84.1206543,46.2458984],[-84.1206543,46.2458984],[-84.1206543,46.2458984],[-84.1206543,46.2458984]]],[[[-84.1328125,46.362207],[-84.2741699,46.4875],[-84.1424316,46.5309082],[-84.1328125,46.362207]]],[[[-87.6058429,45.1085544],[-87.6963942,45.3828323],[-87.8654298,45.367825],[-87.809081,45.686044],[-88.1161159,45.8158035],[-88.1517445,45.9454092],[-88.8373354,46.0366177],[-89.1192885,46.1491946],[-90.11855,46.3416641],[-90.4076134,0.46592948966905375E2],[-89.8605957,46.7927734],[-89.3549805,0.46881933593749984E2],[-88.9480957,47.0429688],[-88.6504883,0.47231982421874974E2],[-88.5154297,47.0955078],[-88.4491211,0.46801513671875036E2],[-88.2162598,46.9515625],[-87.6375,0.46826513671874984E2],[-87.3581055,46.5244141],[-87.0341309,46.5432129],[-86.6375,46.4529785],[-86.1320312,46.6868164],[-85.4415039,0.46706640624999984E2],[-84.9679199,0.46770703124999976E2],[-85.0343262,46.5057617],[-84.5283691,0.46436083984375024E2],[-84.3274414,46.4914551],[-84.2270508,46.1836426],[-84.0347168,46.1374023],[-83.9788086,45.9615234],[-84.5212891,45.9945801],[-84.631543,46.0526367],[-84.7273926,0.45861474609375016E2],[-85.2598633,46.0881836],[-85.4788086,46.1075684],[-85.9137207,45.9411621],[-86.2717773,45.9366699],[-86.6896973,45.6573242],[-86.5633301,45.8825195],[-86.9742187,45.7231445],[-86.9929199,45.8418945],[-87.6058429,45.1085544]]],[[[-88.221875,47.2105957],[-88.4390625,0.47010742187500036E2],[-88.6157227,47.1741699],[-88.3943359,0.47388720703125024E2],[-88.1102051,47.4725098],[-87.7410156,47.4336426],[-88.221875,47.2105957]]],[[[-88.9551758,47.9260254],[-89.1466309,47.9526367],[-88.5882812,0.48158496093749996E2],[-88.6247559,0.48042041015624996E2],[-88.9551758,47.9260254]]]]}},{"type":"Feature","properties":{"name":"US-MN"},"geometry":{"type":"Polygon","coordinates":[[[-92.1069796,0.46762376539785315E2],[-92.2916458,46.6607181],[-92.2926291,46.0843753],[-92.6939487,45.9090115],[-92.8924881,45.5947586],[-92.7070224,0.45493761272101715E2],[-0.9279921420275087E2,44.790032],[-0.9264353792728113E2,44.6453421],[-92.0551212,44.3998196],[-0.9184097564080639E2,44.1941555],[-91.3199161,0.43936284406048024E2],[-91.245253,0.43502412319184636E2],[-96.4536186,0.43501170864059176E2],[-96.4536681,45.2973367],[-0.9684545153971985E2,45.5958682],[-0.9661468920181531E2,45.7999722],[-96.5564012,0.45942772519698835E2],[-0.9661743029078711E2,46.3270963],[-96.7866472,0.46648215661843736E2],[-0.9685870654510825E2,0.47588337768019066E2],[-0.9712592701428629E2,0.48173392721977756E2],[-97.1280474,48.6811149],[-97.2257378,48.9931816],[-0.9516204388272949E2,0.48991764335227465E2],[-95.1552983,49.3696721],[-94.8543333,49.3045891],[-0.9484260539398133E2,49.1191728],[-94.6208848,0.48742605390175875E2],[-0.9405518226824043E2,0.48659021402612446E2],[-0.9370773962803345E2,48.5254606],[-0.9337788609982545E2,48.6165373],[-0.9299625400518919E2,48.6118131],[-0.9250057832710107E2,48.4353398],[-92.4145883,48.2765873],[-92.171785,0.48338396390381526E2],[-0.9151830717146629E2,0.48058310930478406E2],[-90.8403189,48.200518],[-0.9074440821616315E2,0.48104607318963225E2],[-90.0917764,48.1180985],[-89.9936465,0.48015310440556824E2],[-89.6338379,0.47993701171874996E2],[-89.8287598,47.9008789],[-90.5974609,47.6877441],[-90.9571289,0.47523730468749996E2],[-91.3862793,47.2147461],[-0.9206455078124993E2,46.8188477],[-92.1069796,0.46762376539785315E2]]]}},{"type":"Feature","properties":{"name":"US-MO"},"geometry":{"type":"Polygon","coordinates":[[[-91.4419522,40.3794496],[-0.9150165189739347E2,40.0975294],[-91.3787369,39.7494056],[-0.9091937648455641E2,39.3869007],[-90.6635269,0.38987492713360346E2],[-0.9012676781174271E2,38.8326184],[-0.9037399316297041E2,38.3097571],[-90.2990005,0.38173999029984266E2],[-89.6232863,0.37747257070346045E2],[-89.4619741,37.4341247],[-89.4139419,0.37102414516450374E2],[-89.1543129,36.9921118],[-89.1563344,0.36715717724355294E2],[-89.4503286,0.36500023136049094E2],[-89.4872207,36.5030663],[-89.5573134,0.36501077823589334E2],[-89.7047719,0.36001573410003466E2],[-90.3810684,35.9927404],[-0.9007565941135553E2,36.2967211],[-90.1622427,0.36500869083346984E2],[-0.9461837992156065E2,0.36500869083346984E2],[-94.6180668,0.37000845909060224E2],[-94.6223844,39.1244043],[-0.9477785197354241E2,39.1939917],[-95.0753563,39.5973768],[-94.8932963,39.7818153],[-95.3466801,0.40001486892666186E2],[-0.9560710554521503E2,40.2954701],[-95.7650285,40.6018678],[-0.9173152983585013E2,40.6246534],[-91.4419522,40.3794496]]]}},{"type":"Feature","properties":{"name":"US-MS"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-88.5581069,0.30215909126797857E2],[-88.5581069,0.30215909126797857E2],[-88.5581069,0.30215909126797857E2],[-88.5581069,0.30215909126797857E2]]],[[[-88.3995851,0.30370805372941057E2],[-88.6920961,0.30355358595008035E2],[-88.9052089,0.30415146194945034E2],[-89.3205361,0.30345328077047277E2],[-89.5208608,0.30192629096612922E2],[-89.5916567,0.30223017281365916E2],[-89.8353664,0.30730816373002504E2],[-89.7353139,0.31001156959487112E2],[-91.6564493,0.31001805152871132E2],[-91.6182498,0.31276957751258028E2],[-91.3725296,31.7737156],[-90.9477212,32.2400742],[-91.1496499,32.6250132],[-91.0960806,32.9376841],[-91.1499575,33.0159178],[-91.1067813,33.2179234],[-91.207482,33.6756688],[-0.9105270656776761E2,33.8275987],[-91.0701748,33.9742003],[-90.5840078,34.5037084],[-0.9053924951693075E2,0.34728170041114474E2],[-90.2937051,0.35001114387463964E2],[-88.1732668,0.34999005012383485E2],[-88.0847719,34.933109],[-88.4861904,0.31890511241460107E2],[-88.3995851,0.30370805372941057E2]]]]}},{"type":"Feature","properties":{"name":"US-MT"},"geometry":{"type":"Polygon","coordinates":[[[-104.011087,45.9430582],[-0.10400478042610779E3,45.0134829],[-0.10403721206796999E3,45.0011343],[-0.11105086223786319E3,45.0010574],[-0.11105143352694748E3,44.4988833],[-0.11133746259059303E3,0.44744812268922196E2],[-0.11149985700596761E3,0.44544850103091086E2],[-0.11223131028094058E3,44.5606924],[-0.11239284776268869E3,0.44467956789610945E2],[-0.11271592821934918E3,0.44498037357164755E2],[-0.11281551379443714E3,0.44405971923965204E2],[-0.11299968860615037E3,44.4803604],[-0.11309327015268897E3,0.44715335949438376E2],[-0.11346929372660342E3,44.9299759],[-0.11347107900499184E3,0.45072853052920344E2],[-0.11369711172845805E3,0.45304983188728535E2],[-0.11380227286528213E3,45.6010977],[-0.11394265067825427E3,0.45681506640591785E2],[-114.297641,0.45487564982802816E2],[-0.11452923273188064E3,45.5757193],[-0.11453369867443384E3,45.7820096],[-0.11440513116464655E3,45.8742508],[-0.11448535882883982E3,46.1582144],[-0.11435089715378867E3,46.6676395],[-114.60155,0.46660333582227935E2],[-0.11534946652781849E3,0.47261175890304486E2],[-0.11570246825026882E3,47.4375944],[-0.11573375731396241E3,0.47706341922911214E2],[-0.11604901001153519E3,48.0047196],[-0.11604849365409369E3,48.9930827],[-0.10403392715573523E3,0.48993137626295436E2],[-104.011087,45.9430582]]]}},{"type":"Feature","properties":{"name":"US-NC"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.5462265,34.6548583],[-76.5462265,34.6548583],[-76.5462265,34.6548583],[-76.5462265,34.6548583]]],[[[-76.5036435,34.6429491],[-76.5036435,34.6429491],[-76.5036435,34.6429491],[-76.5036435,34.6429491]]],[[[-75.7819626,35.1902001],[-75.7819626,35.1902001],[-75.7819626,35.1902001],[-75.7819626,35.1902001]]],[[[-75.5441196,0.35240099992283724E2],[-75.5441196,0.35240099992283724E2],[-75.5441196,0.35240099992283724E2],[-75.5441196,0.35240099992283724E2]]],[[[-75.6356906,35.8558947],[-75.6356906,35.8558947],[-75.6356906,35.8558947],[-75.6356906,35.8558947]]],[[[-75.8890573,36.5505053],[-75.8574277,36.5505822],[-75.8890573,36.5505053],[-75.8890573,36.5505053]]],[[[-78.5642723,33.8766637],[-79.6535557,34.7967906],[-80.7840819,34.828629],[-80.7929698,34.9627721],[-81.0873156,35.155714],[-82.3560827,35.2016259],[-83.1148205,35.0014769],[-84.32469,34.9880956],[-84.2869739,35.2008458],[-84.0622815,35.2860119],[-83.8713061,35.51489],[-83.5111194,35.5840819],[-82.9902026,35.8004467],[-82.8877221,35.9517284],[-82.6110974,0.36047364427375236E2],[-82.5211303,0.35981215743211244E2],[-82.3682446,0.36099549487959685E2],[-82.0513659,0.36122862477130276E2],[-81.908247,36.3064111],[-81.7341247,36.355454],[-81.6588903,36.6105786],[-81.6416308,36.5950769],[-75.966445,36.5513622],[-75.8830148,36.1756957],[-76.1478293,0.36279285822941084E2],[-76.1500266,36.145758],[-76.3836838,0.36133530202146595E2],[-76.4788144,36.0281933],[-76.6789304,36.0753136],[-76.7262155,35.9575951],[-76.0697714,35.9703063],[-76.0835703,35.6905395],[-75.9789255,35.8959508],[-75.7722177,0.35899872966670806E2],[-75.7739206,35.6470006],[-76.1738449,35.3541491],[-76.4894821,35.3970177],[-76.5324826,35.5084301],[-76.7413877,35.4314818],[-76.9744736,35.4584093],[-76.5129489,35.2704332],[-76.6280307,35.0733605],[-76.898657,34.9702428],[-76.4567539,0.34989337043264705E2],[-76.3622055,34.9365038],[-76.5168711,34.777257],[-76.7331919,34.7069994],[-77.1339182,34.7079332],[-77.7507566,34.2849925],[-77.9278452,33.9397362],[-78.5642723,33.8766637]]]]}},{"type":"Feature","properties":{"name":"US-ND"},"geometry":{"type":"Polygon","coordinates":[[[-96.5564012,0.45942772519698835E2],[-104.011087,45.9430582],[-0.10403392715573523E3,0.48993137626295436E2],[-97.2257378,48.9931816],[-97.1280474,48.6811149],[-0.9712592701428629E2,0.48173392721977756E2],[-0.9685870654510825E2,0.47588337768019066E2],[-96.7866472,0.46648215661843736E2],[-0.9661743029078711E2,46.3270963],[-96.5564012,0.45942772519698835E2]]]}},{"type":"Feature","properties":{"name":"US-NE"},"geometry":{"type":"Polygon","coordinates":[[[-96.4809526,42.5112587],[-0.9629533311053129E2,42.1329115],[-0.9608663681350767E2,41.8213722],[-0.9605862716888451E2,41.5457802],[-95.8465965,41.0803334],[-95.7650285,40.6018678],[-0.9560710554521503E2,40.2954701],[-95.3466801,0.40001486892666186E2],[-0.10202448921287035E3,40.0011243],[-0.10202500557031196E3,0.41000627555780326E2],[-0.10402165542675148E3,0.41000858268679785E2],[-0.10402886245827648E3,43.0014028],[-98.4417651,43.0010952],[-97.9649474,42.8058681],[-0.9769813895017691E2,42.8746425],[-97.2387896,0.42860536073995895E2],[-96.8045275,42.7014211],[-96.4809526,42.5112587]]]}},{"type":"Feature","properties":{"name":"US-NH"},"geometry":{"type":"Polygon","coordinates":[[[-70.7330964,0.43070034373003274E2],[-70.8061116,42.8767629],[-70.9740815,42.8716762],[-71.3296211,0.42702486751560535E2],[-72.4668599,42.7303151],[-72.5498067,42.8866835],[-72.4737154,0.43038536569067354E2],[-72.3849568,43.5292299],[-72.1149239,43.9654311],[-72.031208,44.3007339],[-71.6830073,44.4502798],[-71.5684419,0.44607636970720584E2],[-71.6206599,44.7718936],[-71.5175203,45.0075613],[-71.327292,45.2901077],[-71.0845491,45.2940078],[-70.9556355,43.389396],[-70.7330964,0.43070034373003274E2]]]}},{"type":"Feature","properties":{"name":"US-NJ"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.1332223,0.39680784976135534E2],[-74.1332223,0.39680784976135534E2],[-74.1332223,0.39680784976135534E2],[-74.1332223,0.39680784976135534E2]]],[[[-75.0741684,39.9834803],[-74.7348886,0.40154504476628354E2],[-75.1890194,40.5958143],[-75.0749264,0.40884458117755166E2],[-75.1230355,40.9990016],[-74.6990512,0.41357298711964404E2],[-73.910079,0.40992255973429785E2],[-74.0255013,40.7563795],[-74.2267049,40.6080091],[-74.2415145,40.456266],[-73.998453,40.4521571],[-73.9575948,40.3283631],[-74.1761349,39.726598],[-74.4288314,39.3871863],[-74.6029867,39.2925611],[-74.7944784,39.0019068],[-74.9543075,38.9499524],[-74.8970248,39.1454651],[-75.1361093,39.2078675],[-75.5242453,0.39490172175895474E2],[-75.4219076,39.7897144],[-75.1538302,39.8704859],[-75.0741684,39.9834803]]]]}},{"type":"Feature","properties":{"name":"US-NM"},"geometry":{"type":"Polygon","coordinates":[[[-0.10300029491415688E3,36.5012316],[-0.10304215282590985E3,36.5006164],[-103.065642,32.0027476],[-0.10666221949232481E3,32.0012974],[-0.10644538232585002E3,31.7683982],[-108.211841,0.31779329596593886E2],[-108.21445,0.31329428456384623E2],[-0.10904780735188243E3,31.3278794],[-0.10904667026687814E3,0.37000845909060224E2],[-0.10300083873741983E3,0.37000845909060224E2],[-0.10300029491415688E3,36.5012316]]]}},{"type":"Feature","properties":{"name":"US-NV"},"geometry":{"type":"Polygon","coordinates":[[[-0.11404026970053292E3,37.0041528],[-0.11404287895356211E3,36.1817712],[-0.11418320732805587E3,36.0303027],[-0.11450527704249025E3,0.36156425710832444E2],[-0.11466914362588973E3,0.36121719898961665E2],[-0.11464852778037671E3,35.4759215],[-0.11459098688462704E3,35.3527758],[-0.11461054254943551E3,34.9911168],[-0.11665959169986613E3,36.5899682],[-0.11812627205366707E3,37.6923804],[-0.12000006179799806E3,39.0002588],[-120.000809,0.42000559234549776E2],[-0.11701667484337055E3,0.42000559234549776E2],[-0.11404259330901996E3,42.0011086],[-0.11404026970053292E3,37.0041528]]]}},{"type":"Feature","properties":{"name":"US-NY"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.1881319,0.40522854100054765E2],[-74.1881319,0.40522854100054765E2],[-74.1881319,0.40522854100054765E2],[-74.1881319,0.40522854100054765E2]]],[[[-72.5097835,40.9860267],[-71.9032063,41.0607008],[-72.33899,40.8941481],[-73.1942867,40.6542066],[-73.899565,40.5705238],[-74.0320382,0.40638682961895164E2],[-73.8792623,0.40791667586871675E2],[-73.5737984,40.9196254],[-72.5097835,40.9860267]]],[[[-78.9299316,43.0224609],[-78.9299316,43.0224609],[-78.9299316,43.0224609],[-78.9299316,43.0224609]]],[[[-76.2620117,43.9901367],[-76.2620117,43.9901367],[-76.2620117,43.9901367],[-76.2620117,43.9901367]]],[[[-76.1112305,44.2772949],[-76.1112305,44.2772949],[-76.1112305,44.2772949],[-76.1112305,44.2772949]]],[[[-73.3521822,45.005419],[-73.3720785,44.5973318],[-73.3209151,44.2688735],[-73.4249447,0.44038292466579954E2],[-73.3914364,43.5785256],[-73.247098,43.5530483],[-73.2533272,0.42752221860879644E2],[-73.5072872,42.0800124],[-73.4805684,42.0555678],[-73.5447286,41.2959511],[-73.484139,0.41218958862937164E2],[-73.7230147,0.41104514278493376E2],[-73.6304659,40.9918605],[-73.9870821,40.7513917],[-73.910079,0.40992255973429785E2],[-74.6990512,0.41357298711964404E2],[-75.0227304,41.5528663],[-75.0536789,41.7650453],[-75.3513424,0.41998416900483626E2],[-79.7629576,42.0008998],[-79.7630029,0.42275685276580525E2],[-79.2092285,0.42555175781250036E2],[-78.877832,0.42799121093749996E2],[-78.9081543,43.0703125],[-79.0660508,0.43106102489613455E2],[-79.0531738,43.2851074],[-78.6894531,43.3614746],[-78.1749512,43.3946777],[-77.5290527,0.43267382812499996E2],[-76.9630859,43.2637695],[-76.5796875,43.4538086],[-76.2317871,0.43550439453125016E2],[-76.2846191,43.8692383],[-76.0706543,43.9984863],[-76.3524414,44.1060547],[-75.8321777,44.3972656],[-75.7919601,44.4970486],[-75.1793844,44.8993789],[-74.8566391,45.0039248],[-73.3521822,45.005419]]]]}},{"type":"Feature","properties":{"name":"US-OH"},"geometry":{"type":"Polygon","coordinates":[[[-80.5190807,40.6469557],[-80.6590465,0.40562976171897795E2],[-80.6018187,0.40363892912350245E2],[-80.9632909,39.5711304],[-81.2625036,0.39386538138739006E2],[-81.4396471,39.3925586],[-81.7005944,0.39229466599544075E2],[-81.8824401,38.8942188],[-82.0010925,39.0111023],[-82.2035265,38.7682276],[-82.1800707,38.6375891],[-82.3181469,38.4796716],[-82.6127783,0.38448217790444865E2],[-82.8804382,38.7102527],[-83.3569702,38.6274048],[-83.6898779,38.6495313],[-84.2272852,38.8652039],[-84.4300598,39.090896],[-84.8217115,39.0919837],[-84.7961133,41.7014345],[-83.454257,41.7455483],[-82.9632813,41.5419434],[-82.7,0.41521289062499974E2],[-83.0274902,0.41454541015624976E2],[-82.642627,0.41466894531250006E2],[-82.4802734,41.3980957],[-82.1213379,41.4929688],[-81.7231934,41.5109375],[-81.2286133,41.7704102],[-80.5202782,41.9895677],[-80.5190807,40.6469557]]]}},{"type":"Feature","properties":{"name":"US-OK"},"geometry":{"type":"Polygon","coordinates":[[[-0.9461837992156065E2,0.36500869083346984E2],[-94.439138,35.3872509],[-94.484149,33.6484337],[-94.7091984,0.33699289386631385E2],[-95.2380308,33.9564793],[-95.3738878,0.33874268641353204E2],[-95.5944713,33.9451634],[-0.9594157882457577E2,33.882838],[-0.9631504807710373E2,0.33711121662473424E2],[-0.9664853808005971E2,33.9063817],[-96.977694,33.9380333],[-0.9711900013413921E2,33.7347642],[-0.9721493824815053E2,33.8971092],[-97.3984923,33.8313231],[-0.9766036245947805E2,33.9900426],[-97.8424224,33.8757848],[-0.9809863457092337E2,34.1450267],[-98.4938513,34.0887767],[-99.1865777,34.2354772],[-0.9936038693839137E2,34.4560936],[-99.6320294,34.3884947],[-0.9999934082018743E2,34.5867211],[-0.10000244445800111E3,36.500902],[-0.10300029491415688E3,36.5012316],[-0.10300083873741983E3,0.37000845909060224E2],[-0.10201278327980658E3,0.37000845909060224E2],[-94.6180668,0.37000845909060224E2],[-0.9461837992156065E2,0.36500869083346984E2]]]}},{"type":"Feature","properties":{"name":"US-OR"},"geometry":{"type":"Polygon","coordinates":[[[-0.12322058865424987E3,0.46153622137117175E2],[-0.12294199733502867E3,46.1148624],[-0.12272591273205917E3,45.6737503],[-0.12220253502654705E3,45.5910672],[-121.882014,45.6894607],[-121.402121,45.7118399],[-0.12104524067087628E3,0.45639044480768824E2],[-0.12015604569066716E3,0.45762168264762515E2],[-0.11993427566267603E3,0.45837875054759884E2],[-0.11900242076873018E3,46.0005496],[-116.896479,46.0020987],[-0.11652091676781825E3,45.7219144],[-0.11654915712534087E3,0.45456737344908134E2],[-0.11685585696614214E3,0.44905740009436094E2],[-0.11720170109554591E3,44.4362063],[-0.11713974369572155E3,44.2902639],[-0.11691131045946844E3,44.1574062],[-0.11702023990698312E3,43.8084365],[-0.11701667484337055E3,0.42000559234549776E2],[-120.000809,0.42000559234549776E2],[-0.12422840851691392E3,42.000768],[-0.12435527314577686E3,0.42122881016559695E2],[-0.12440617280592161E3,0.42583680594684644E2],[-0.12453962923191101E3,42.8128664],[-0.12434658845306272E3,43.3416494],[-0.12414871918281928E3,43.6917287],[-0.12405919159151352E3,44.7777273],[-0.12392935516077934E3,45.5769607],[-0.12396121551355724E3,45.8429947],[-0.12391168365131621E3,0.46182197577660304E2],[-0.12352163053585087E3,0.46222660225688195E2],[-0.12322058865424987E3,0.46153622137117175E2]]]}},{"type":"Feature","properties":{"name":"US-PA"},"geometry":{"type":"Polygon","coordinates":[[[-74.6990512,0.41357298711964404E2],[-75.1230355,40.9990016],[-75.0749264,0.40884458117755166E2],[-75.1890194,40.5958143],[-74.7348886,0.40154504476628354E2],[-75.0741684,39.9834803],[-75.4210287,39.8154224],[-75.634581,39.8394825],[-75.7847201,39.7223572],[-79.4774998,0.39722796696488054E2],[-80.5194432,39.7225111],[-80.5190807,40.6469557],[-80.5202782,41.9895677],[-79.7630029,0.42275685276580525E2],[-79.7629576,42.0008998],[-75.3513424,0.41998416900483626E2],[-75.0536789,41.7650453],[-75.0227304,41.5528663],[-74.6990512,0.41357298711964404E2]]]}},{"type":"Feature","properties":{"name":"US-RI"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.3653596,41.4852675],[-71.3653596,41.4852675],[-71.3653596,41.4852675],[-71.3653596,41.4852675]]],[[[-71.2413789,0.41491969127257896E2],[-71.2413789,0.41491969127257896E2],[-71.2413789,0.41491969127257896E2],[-71.2413789,0.41491969127257896E2]]],[[[-71.2337654,41.7065541],[-71.3901558,0.41795334617346036E2],[-71.443802,41.4536928],[-71.8423531,41.3355128],[-71.795793,41.5199513],[-71.8008357,42.011963],[-71.3871345,42.0168629],[-71.2337654,41.7065541]]]]}},{"type":"Feature","properties":{"name":"US-SC"},"geometry":{"type":"Polygon","coordinates":[[[-78.5642723,33.8766637],[-78.8414353,33.7240965],[-79.1381871,33.4059215],[-79.2292418,33.1851292],[-80.0217516,32.6198936],[-80.3628441,0.32500724887784834E2],[-80.6341954,32.5117332],[-80.4742784,0.32422776886764474E2],[-80.8723461,32.0295652],[-81.0748131,32.1096995],[-81.1715038,0.32380138945684855E2],[-81.3769701,0.32607468055919234E2],[-81.4897777,32.9356626],[-81.9328454,0.33389870429515504E2],[-82.0057177,33.5228929],[-82.5893444,34.0176183],[-82.8477319,0.34436911485081986E2],[-83.3555749,34.7083177],[-83.1148205,35.0014769],[-82.3560827,35.2016259],[-81.0873156,35.155714],[-80.7929698,34.9627721],[-80.7840819,34.828629],[-79.6535557,34.7967906],[-78.5642723,33.8766637]]]}},{"type":"Feature","properties":{"name":"US-SD"},"geometry":{"type":"Polygon","coordinates":[[[-96.5564012,0.45942772519698835E2],[-0.9661468920181531E2,45.7999722],[-0.9684545153971985E2,45.5958682],[-96.4536681,45.2973367],[-96.4536186,0.43501170864059176E2],[-96.5986217,43.4975014],[-0.9646268785324355E2,0.43099181102630716E2],[-96.6217699,42.7295351],[-96.4809526,42.5112587],[-96.8045275,42.7014211],[-97.2387896,0.42860536073995895E2],[-0.9769813895017691E2,42.8746425],[-97.9649474,42.8058681],[-98.4417651,43.0010952],[-0.10402886245827648E3,43.0014028],[-0.10403721206796999E3,45.0011343],[-0.10400478042610779E3,45.0134829],[-104.011087,45.9430582],[-96.5564012,0.45942772519698835E2]]]}},{"type":"Feature","properties":{"name":"US-TN"},"geometry":{"type":"Polygon","coordinates":[[[-83.6675207,36.6050305],[-81.9525109,0.36598021186662415E2],[-81.6588903,36.6105786],[-81.7341247,36.355454],[-81.908247,36.3064111],[-82.0513659,0.36122862477130276E2],[-82.3682446,0.36099549487959685E2],[-82.5211303,0.35981215743211244E2],[-82.6110974,0.36047364427375236E2],[-82.8877221,35.9517284],[-82.9902026,35.8004467],[-83.5111194,35.5840819],[-83.8713061,35.51489],[-84.0622815,35.2860119],[-84.2869739,35.2008458],[-84.32469,34.9880956],[-85.6236036,0.35000861701907475E2],[-88.1904274,35.0249987],[-88.1732668,0.34999005012383485E2],[-90.2937051,0.35001114387463964E2],[-90.0929189,35.2035924],[-89.9435049,35.6791357],[-89.7037722,35.9069042],[-89.7047719,0.36001573410003466E2],[-89.5573134,0.36501077823589334E2],[-89.4872207,36.5030663],[-89.4503286,0.36500023136049094E2],[-88.0591078,36.4996826],[-88.0962965,36.693009],[-87.8391505,36.643966],[-86.5075855,36.66484],[-83.7303845,0.36586815131547375E2],[-83.6675207,36.6050305]]]}},{"type":"Feature","properties":{"name":"US-TX"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-97.1707018,26.1593831],[-97.2673156,0.26329759076209307E2],[-0.9740208486173495E2,0.26820507385945454E2],[-0.9735123464006855E2,0.26801468078578587E2],[-97.1707018,26.1593831]]],[[[-97.3536132,0.27300060626895206E2],[-97.3536132,0.27300060626895206E2],[-97.3536132,0.27300060626895206E2],[-97.3536132,0.27300060626895206E2]]],[[[-0.9701435535475673E2,27.901628],[-0.9701435535475673E2,27.901628],[-0.9701435535475673E2,27.901628],[-0.9701435535475673E2,27.901628]]],[[[-96.7643999,28.1525668],[-96.7643999,28.1525668],[-96.7643999,28.1525668],[-96.7643999,28.1525668]]],[[[-0.9503969463489813E2,0.29145917630902833E2],[-0.9503969463489813E2,0.29145917630902833E2],[-0.9503969463489813E2,0.29145917630902833E2],[-0.9503969463489813E2,0.29145917630902833E2]]],[[[-94.484149,33.6484337],[-94.3779551,33.5661131],[-94.047327,0.33554434644777494E2],[-0.9404130653528927E2,33.0119957],[-0.9404330055391999E2,0.31999231948732465E2],[-0.9382679847046573E2,31.7502598],[-93.8206516,0.31603965820373055E2],[-0.9355774877758515E2,0.31180420882341146E2],[-93.5305906,31.0461899],[-93.7202146,0.30558265096888967E2],[-93.710629,0.30112813419740096E2],[-0.9379400977292589E2,0.29977264098163037E2],[-0.9394630225920413E2,0.29815007011895297E2],[-93.8904642,29.6893564],[-0.9409967689884395E2,0.29670382982940872E2],[-94.750128,29.418027],[-94.526265,29.5479623],[-94.7782914,0.29547863447017072E2],[-94.7419377,29.7499899],[-95.0228746,0.29702320240018572E2],[-94.8882865,29.3705551],[-95.139044,29.1678354],[-0.9527350567897355E2,28.9638632],[-95.853419,28.6403488],[-0.9664004015493089E2,0.28708760631804786E2],[-96.4211101,0.28457338503073082E2],[-0.9667633898444053E2,0.28341289914661864E2],[-0.9677354601939865E2,0.28421621948976302E2],[-96.8069005,0.28220187615120288E2],[-0.9715649098029593E2,28.14436],[-97.0343285,28.0938448],[-97.1714544,27.8795675],[-97.4315172,27.8372152],[-97.2887334,27.6706075],[-97.4391088,0.27328284504925016E2],[-0.9776844595969483E2,0.27457494714932103E2],[-0.9769237662085557E2,27.2871407],[-97.4851031,27.2374056],[-97.5547124,0.26967350653265846E2],[-97.4023156,26.396534],[-97.1462352,25.9614644],[-0.9735816152021565E2,0.25870519556737555E2],[-0.9780141593165565E2,26.0420491],[-98.2750311,26.1111971],[-0.9910776729984843E2,26.4469173],[-0.9922992978009451E2,26.7619283],[-99.443537,27.0366744],[-99.5053186,0.27548340665663222E2],[-99.7542688,27.7299337],[-100.001412,0.28047845079249093E2],[-0.10029604310201353E3,0.28327677853595738E2],[-0.10033172669712472E3,28.5025472],[-100.65863,29.0685409],[-0.10130352788165696E3,29.6340842],[-0.10138034429083726E3,0.29742552175147004E2],[-0.10199089851334675E3,0.29795704032643304E2],[-0.10234307626115628E3,0.29864972834113864E2],[-102.73419,0.29643949876463786E2],[-102.892008,29.2163839],[-0.10316829785025317E3,0.28998173484641846E2],[-0.10342293348008396E3,0.29070683253032833E2],[-0.10398974563549521E3,0.29323171055633246E2],[-0.10440062333671582E3,29.5737472],[-104.68133,29.9905246],[-104.68133,30.1343576],[-0.10497883380799149E3,0.30645935998670826E2],[-105.275816,0.30807270233340933E2],[-0.10581270713081692E3,0.31241043443247385E2],[-0.10625570336353614E3,0.31544661618892004E2],[-0.10644538232585002E3,31.7683982],[-0.10666221949232481E3,32.0012974],[-103.065642,32.0027476],[-0.10304215282590985E3,36.5006164],[-0.10300029491415688E3,36.5012316],[-0.10000244445800111E3,36.500902],[-0.9999934082018743E2,34.5867211],[-99.6320294,34.3884947],[-0.9936038693839137E2,34.4560936],[-99.1865777,34.2354772],[-98.4938513,34.0887767],[-0.9809863457092337E2,34.1450267],[-97.8424224,33.8757848],[-0.9766036245947805E2,33.9900426],[-97.3984923,33.8313231],[-0.9721493824815053E2,33.8971092],[-0.9711900013413921E2,33.7347642],[-96.977694,33.9380333],[-0.9664853808005971E2,33.9063817],[-0.9631504807710373E2,0.33711121662473424E2],[-0.9594157882457577E2,33.882838],[-95.5944713,33.9451634],[-95.3738878,0.33874268641353204E2],[-95.2380308,33.9564793],[-94.7091984,0.33699289386631385E2],[-94.484149,33.6484337]]]]}},{"type":"Feature","properties":{"name":"US-UT"},"geometry":{"type":"Polygon","coordinates":[[[-111.050296,42.0008778],[-0.11104998882474393E3,0.41000858268679785E2],[-0.10904639011550022E3,0.41000858268679785E2],[-0.10904667026687814E3,0.37000845909060224E2],[-0.11404026970053292E3,37.0041528],[-0.11404259330901996E3,42.0011086],[-111.050296,42.0008778]]]}},{"type":"Feature","properties":{"name":"US-VA"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.6592563,0.37953964841903165E2],[-75.3759628,0.38024991455940786E2],[-75.5963595,37.6311865],[-75.8120541,37.4252148],[-75.9343759,37.1518969],[-75.9973715,37.2638257],[-75.8881564,37.6191565],[-75.6592563,0.37953964841903165E2]]],[[[-75.2524765,38.03745],[-75.2257907,38.0403394],[-75.2524765,38.03745],[-75.2524765,38.03745]]],[[[-77.7266416,0.39346438039553085E2],[-77.478856,0.39220864304294075E2],[-77.4809214,39.1129566],[-77.122053,38.9435364],[-77.0303611,0.38889252963519105E2],[-77.0455991,38.7757971],[-77.2603928,0.38599993919281594E2],[-77.3136985,0.38396625991601844E2],[-77.0467637,38.3566797],[-76.9063364,38.1970483],[-76.5495114,0.38094501956639256E2],[-76.2642844,37.893551],[-76.344144,37.6756811],[-76.2634824,37.3570227],[-76.610903,0.37322580540473986E2],[-76.2833017,37.0526794],[-76.4008884,36.9913317],[-76.7035068,37.2176721],[-77.0069712,0.37317669651614786E2],[-77.2508896,0.37329194310257556E2],[-76.6718552,37.1729467],[-76.6339194,37.0474279],[-76.399548,36.88984],[-76.2442563,36.9526269],[-75.999415,0.36912658649836764E2],[-75.8574277,36.5505822],[-75.8890573,36.5505053],[-75.966445,36.5513622],[-81.6416308,36.5950769],[-81.6588903,36.6105786],[-81.9525109,0.36598021186662415E2],[-83.6675207,36.6050305],[-83.1502185,36.7623327],[-82.8945007,36.9063745],[-82.6815856,37.1381201],[-82.3432067,37.2969275],[-81.965277,37.5397253],[-81.8292663,37.2985974],[-81.5648363,0.37209794891640335E2],[-81.3500426,37.3336877],[-81.2271276,37.2632763],[-80.9436803,37.3019043],[-80.3160753,0.37509699688237056E2],[-80.2853026,37.6770544],[-79.9717308,38.0461511],[-79.5977452,0.38577131369581345E2],[-79.3958714,38.4543921],[-79.240272,38.4765186],[-79.0411888,0.38789672881595386E2],[-78.8687254,38.8179407],[-78.4352378,39.1607581],[-78.3222215,0.39451851861933655E2],[-77.8357908,39.1452124],[-77.7266416,0.39346438039553085E2]]]]}},{"type":"Feature","properties":{"name":"US-VT"},"geometry":{"type":"Polygon","coordinates":[[[-72.4668599,42.7303151],[-73.2533272,0.42752221860879644E2],[-73.247098,43.5530483],[-73.3914364,43.5785256],[-73.4249447,0.44038292466579954E2],[-73.3209151,44.2688735],[-73.3720785,44.5973318],[-73.3521822,45.005419],[-71.5175203,45.0075613],[-71.6206599,44.7718936],[-71.5684419,0.44607636970720584E2],[-71.6830073,44.4502798],[-72.031208,44.3007339],[-72.1149239,43.9654311],[-72.3849568,43.5292299],[-72.4737154,0.43038536569067354E2],[-72.5498067,42.8866835],[-72.4668599,42.7303151]]]}},{"type":"Feature","properties":{"name":"US-WA"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.85309,47.2047171],[-122.85309,47.2047171],[-122.85309,47.2047171],[-122.85309,47.2047171]]],[[[-0.12239412561002753E3,47.3952421],[-0.12239412561002753E3,47.3952421],[-0.12239412561002753E3,47.3952421],[-0.12239412561002753E3,47.3952421]]],[[[-0.12249727075556378E3,47.594589],[-0.12249727075556378E3,47.594589],[-0.12249727075556378E3,47.594589],[-0.12249727075556378E3,47.594589]]],[[[-0.12257276880531879E3,48.1566496],[-0.12236673669296708E3,47.9854386],[-122.557525,47.9924699],[-0.12274870387062396E3,0.48239025048700235E2],[-0.12257276880531879E3,48.1566496]]],[[[-0.12282092250130854E3,48.4313627],[-0.12282092250130854E3,48.4313627],[-0.12282092250130854E3,48.4313627],[-0.12282092250130854E3,48.4313627]]],[[[-123.013134,48.5008622],[-123.013134,48.5008622],[-123.013134,48.5008622],[-123.013134,48.5008622]]],[[[-122.782141,48.6726884],[-122.782141,48.6726884],[-122.782141,48.6726884],[-122.782141,48.6726884]]],[[[-0.12304920192896198E3,48.9930278],[-0.12304920192896198E3,48.9930278],[-0.12304920192896198E3,48.9930278],[-0.12304920192896198E3,48.9930278]]],[[[-116.896479,46.0020987],[-0.11900242076873018E3,46.0005496],[-0.11993427566267603E3,0.45837875054759884E2],[-0.12015604569066716E3,0.45762168264762515E2],[-0.12104524067087628E3,0.45639044480768824E2],[-121.402121,45.7118399],[-121.882014,45.6894607],[-0.12220253502654705E3,45.5910672],[-0.12272591273205917E3,45.6737503],[-0.12294199733502867E3,46.1148624],[-0.12322058865424987E3,0.46153622137117175E2],[-0.12346485868309928E3,46.2710989],[-0.12407275970726542E3,46.2794486],[-0.12404436004797897E3,46.6050614],[-0.12394612579130194E3,0.46432565018851676E2],[-0.12388915069147225E3,46.660015],[-0.12411254669608785E3,46.8626688],[-0.12384287627564447E3,0.46963182714874385E2],[-124.111695,0.47035187112152414E2],[-0.12430927888132699E3,0.47404602409447605E2],[-0.12437602082723241E3,47.6586393],[-0.12462107088540837E3,47.9041288],[-0.12470997774915152E3,48.3803752],[-0.12397576141254964E3,48.1684818],[-123.024219,48.0816129],[-0.12277859767059243E3,48.1375773],[-122.656644,47.8811344],[-0.12282138392710735E3,47.7931559],[-0.12313103359712268E3,47.4377262],[-0.12275715235727428E3,0.47700530155111394E2],[-0.12253280054207532E3,47.9197074],[-0.12252391260228318E3,47.7693375],[-0.12267547999087746E3,47.6123429],[-0.12257788843442033E3,0.47293190051681925E2],[-0.12282846461585406E3,47.336597],[-0.12302757534122297E3,47.138909],[-0.12270193507001166E3,47.1108719],[-0.12235381677059921E3,47.3715775],[-0.12239288415490199E3,0.47820544808127075E2],[-122.242014,48.0107621],[-0.12252032007284923E3,48.2290934],[-0.12240337609866165E3,0.48269193506882324E2],[-0.12266899256387218E3,48.4652555],[-0.12249675439812216E3,48.5055424],[-0.12256202417600265E3,0.48777981368087886E2],[-0.12265302393533334E3,48.7638749],[-0.12278877650398849E3,48.9930278],[-0.11703905399461487E3,48.9930827],[-0.11702504642572119E3,46.4291593],[-116.896479,46.0020987]]]]}},{"type":"Feature","properties":{"name":"US-WI"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-86.9918945,45.2410156],[-87.1880859,44.9219727],[-87.3545898,44.8388184],[-87.3964844,0.44954150390624996E2],[-87.0491211,45.3028809],[-86.9918945,45.2410156]]],[[[-86.8618652,45.3522461],[-86.8618652,45.3522461],[-86.8618652,45.3522461],[-86.8618652,45.3522461]]],[[[-0.9071054687499995E2,46.7833496],[-0.9071054687499995E2,46.7833496],[-0.9071054687499995E2,46.7833496],[-0.9071054687499995E2,46.7833496]]],[[[-0.9054667968749995E2,0.46919287109375055E2],[-0.9054667968749995E2,0.46919287109375055E2],[-0.9054667968749995E2,0.46919287109375055E2],[-0.9054667968749995E2,0.46919287109375055E2]]],[[[-90.4076134,0.46592948966905375E2],[-90.11855,46.3416641],[-89.1192885,46.1491946],[-88.8373354,46.0366177],[-88.1517445,45.9454092],[-88.1161159,45.8158035],[-87.809081,45.686044],[-87.8654298,45.367825],[-87.6963942,45.3828323],[-87.6058429,45.1085544],[-87.8302734,44.9424805],[-88.0282715,44.6179199],[-87.9692383,44.552002],[-87.6043945,44.846875],[-87.3373047,0.44775830078125004E2],[-87.4865234,44.5085938],[-87.5349121,44.1742676],[-87.7238281,43.9072754],[-87.699707,43.7237305],[-87.9016602,43.2449219],[-87.7870605,42.8091797],[-87.8120849,42.4971127],[-90.650585,0.42512983570503415E2],[-0.9078874903816711E2,42.6769326],[-91.0695816,42.7885536],[-0.9116132839808301E2,43.1023342],[-91.1171963,43.3311574],[-91.245253,0.43502412319184636E2],[-91.3199161,0.43936284406048024E2],[-0.9184097564080639E2,44.1941555],[-92.0551212,44.3998196],[-0.9264353792728113E2,44.6453421],[-0.9279921420275087E2,44.790032],[-92.7070224,0.45493761272101715E2],[-92.8924881,45.5947586],[-92.6939487,45.9090115],[-92.2926291,46.0843753],[-92.2916458,46.6607181],[-92.1069796,0.46762376539785315E2],[-0.9198730468749999E2,46.6989746],[-91.4990723,0.46766113281250014E2],[-0.9094604492187497E2,46.9537598],[-90.7683594,46.9080078],[-90.922998,0.46603076171875024E2],[-0.9073681640624997E2,46.6888672],[-90.4076134,0.46592948966905375E2]]],[[[-0.9070795898437495E2,46.9273437],[-0.9070795898437495E2,46.9273437],[-0.9070795898437495E2,46.9273437],[-0.9070795898437495E2,46.9273437]]],[[[-90.4266602,47.0258789],[-90.4266602,47.0258789],[-90.4266602,47.0258789],[-90.4266602,47.0258789]]]]}},{"type":"Feature","properties":{"name":"US-WV"},"geometry":{"type":"Polygon","coordinates":[[[-79.4774998,0.39722796696488054E2],[-79.4879808,39.2109107],[-79.0753453,39.4759888],[-78.9714805,39.4536426],[-78.7777696,0.39626622376413145E2],[-78.4955418,39.5333484],[-78.181135,0.39685739810308895E2],[-77.8832517,39.6107142],[-77.7266416,0.39346438039553085E2],[-77.8357908,39.1452124],[-78.3222215,0.39451851861933655E2],[-78.4352378,39.1607581],[-78.8687254,38.8179407],[-79.0411888,0.38789672881595386E2],[-79.240272,38.4765186],[-79.3958714,38.4543921],[-79.5977452,0.38577131369581345E2],[-79.9717308,38.0461511],[-80.2853026,37.6770544],[-80.3160753,0.37509699688237056E2],[-80.9436803,37.3019043],[-81.2271276,37.2632763],[-81.3500426,37.3336877],[-81.5648363,0.37209794891640335E2],[-81.8292663,37.2985974],[-81.965277,37.5397253],[-82.2802441,37.6871838],[-82.5887731,38.0997424],[-82.6127783,0.38448217790444865E2],[-82.3181469,38.4796716],[-82.1800707,38.6375891],[-82.2035265,38.7682276],[-82.0010925,39.0111023],[-81.8824401,38.8942188],[-81.7005944,0.39229466599544075E2],[-81.4396471,39.3925586],[-81.2625036,0.39386538138739006E2],[-80.9632909,39.5711304],[-80.6018187,0.40363892912350245E2],[-80.6590465,0.40562976171897795E2],[-80.5190807,40.6469557],[-80.5194432,39.7225111],[-79.4774998,0.39722796696488054E2]]]}},{"type":"Feature","properties":{"name":"US-WY"},"geometry":{"type":"Polygon","coordinates":[[[-0.10402886245827648E3,43.0014028],[-0.10402165542675148E3,0.41000858268679785E2],[-0.10904639011550022E3,0.41000858268679785E2],[-0.11104998882474393E3,0.41000858268679785E2],[-111.050296,42.0008778],[-0.11105143352694748E3,44.4988833],[-0.11105086223786319E3,45.0010574],[-0.10403721206796999E3,45.0011343],[-0.10402886245827648E3,43.0014028]]]}}],"_labels":{"US-AK":"Alaska","US-AL":"Alabama","US-AR":"Arkansas","US-AZ":"Arizona","US-CA":"California","US-CO":"Colorado","US-CT":"Connecticut","US-DC":"District of Columbia","US-DE":"Delaware","US-FL":"Florida","US-GA":"Georgia","US-HI":"Hawaii","US-IA":"Iowa","US-ID":"Idaho","US-IL":"Illinois","US-IN":"Indiana","US-KS":"Kansas","US-KY":"Kentucky","US-LA":"Louisiana","US-MA":"Massachusetts","US-MD":"Maryland","US-ME":"Maine","US-MI":"Michigan","US-MN":"Minnesota","US-MO":"Missouri","US-MS":"Mississippi","US-MT":"Montana","US-NC":"North Carolina","US-ND":"North Dakota","US-NE":"Nebraska","US-NH":"New Hampshire","US-NJ":"New Jersey","US-NM":"New Mexico","US-NV":"Nevada","US-NY":"New York","US-OH":"Ohio","US-OK":"Oklahoma","US-OR":"Oregon","US-PA":"Pennsylvania","US-RI":"Rhode Island","US-SC":"South Carolina","US-SD":"South Dakota","US-TN":"Tennessee","US-TX":"Texas","US-UT":"Utah","US-VA":"Virginia","US-VT":"Vermont","US-WA":"Washington","US-WI":"Wisconsin","US-WV":"West Virginia","US-WY":"Wyoming"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/UY.json b/src/api-umbrella/admin-ui/public/maps/UY.json new file mode 100644 index 000000000..f4a2ba21a --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/UY.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"UY"},"geometry":{"type":"Polygon","coordinates":[[[-53.3706055,-33.7421875],[-53.4724609,-0.33849316406250004E2],[-53.5345215,-34.0174805],[-53.7429199,-34.2495117],[-0.53785302734374994E2,-34.3803711],[-54.0102539,-34.5169922],[-0.54168554687499984E2,-34.6707031],[-54.2721191,-34.6668945],[-54.365332,-34.7327148],[-54.9022949,-34.9328125],[-0.55237890624999984E2,-34.8958008],[-55.3706055,-34.8076172],[-55.6731445,-34.7756836],[-55.8629395,-34.8109375],[-56.1179199,-34.9079102],[-0.56387841796874994E2,-34.8610352],[-56.4630859,-34.7753906],[-56.8551758,-34.6766602],[-57.1707031,-34.4523438],[-57.543457,-34.4480469],[-57.8291016,-34.4773438],[-57.9612305,-34.3069336],[-58.2070312,-34.109082],[-0.58400195312499996E2,-33.9124023],[-0.58438134765624994E2,-33.7191406],[-58.3533691,-33.2600586],[-58.3635254,-33.1823242],[-0.58221582031249994E2,-33.1291016],[-0.58092675781249994E2,-32.9673828],[-58.0823242,-0.32893652343750006E2],[-58.2011719,-32.4716797],[-58.1230469,-32.321875],[-58.1647949,-32.1848633],[-58.1890137,-31.9242188],[-0.58042333984374984E2,-0.31769238281250008E2],[-57.9879883,-31.5761719],[-0.58053857421874994E2,-31.4949219],[-57.8684082,-31.1043945],[-57.8863281,-30.9374023],[-57.8105957,-30.8585938],[-57.8185547,-0.30712011718750006E2],[-57.8725098,-30.5910156],[-0.57831201171874994E2,-0.30495214843750006E2],[-57.7126953,-0.30384472656250008E2],[-57.6088867,-30.187793],[-57.5522949,-30.2612305],[-57.2144531,-0.30283398437500008E2],[-0.57120507812499994E2,-30.1444336],[-57.0327148,-0.30109960937500002E2],[-56.8327148,-0.30107226562500003E2],[-56.1761719,-30.628418],[-55.9989746,-30.837207],[-56.0046875,-0.31079199218750002E2],[-0.55873681640624994E2,-0.31069628906250003E2],[-55.5573242,-0.30875976562499996E2],[-55.3660645,-31.0461914],[-55.2546387,-31.2255859],[-55.0911621,-31.3139648],[-55.0360352,-0.31279003906250015E2],[-54.8959961,-0.31391210937500006E2],[-54.5876465,-31.4851562],[-54.3699219,-31.7450195],[-54.2205566,-0.31855175781250008E2],[-53.9206055,-31.9523438],[-53.7617188,-32.0568359],[-0.53601708984374994E2,-32.4030273],[-53.3627441,-0.32581152343750006E2],[-53.23125,-32.6253906],[-0.53125585937499984E2,-32.7367188],[-53.5313477,-33.1708984],[-53.5376465,-33.6228516],[-53.5188477,-33.6772461],[-53.3706055,-33.7421875]]]}}],"_labels":{"UY":"Uruguay"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/UZ.json b/src/api-umbrella/admin-ui/public/maps/UZ.json new file mode 100644 index 000000000..4a854ce31 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/UZ.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"UZ"},"geometry":{"type":"MultiPolygon","coordinates":[[[[71.7796875,39.9502441],[71.7529297,39.9071289],[71.6689453,39.9460937],[71.7899414,39.9953125],[71.7796875,39.9502441]]],[[[71.2061523,39.8925781],[71.0117187,0.39895117187500006E2],[71.0448242,0.39992529296875034E2],[70.9744141,40.0388672],[70.9762695,0.40133251953125004E2],[71.0241211,40.1491699],[71.0803711,40.0798828],[71.2287109,40.0481445],[71.1792969,0.39979833984375034E2],[71.2061523,39.8925781]]],[[[61.9902344,43.4921387],[62.0719727,0.43489355468750034E2],[0.63207031250000036E2,43.6279785],[64.4431641,43.5511719],[64.8118164,0.43693945312500034E2],[64.9054688,0.43714697265625006E2],[65.003125,0.43649072265624966E2],[65.1708984,43.4941895],[65.2705078,0.43417529296875045E2],[65.4961914,43.3105469],[65.8030273,42.8769531],[66.100293,42.9908203],[66.0498047,0.42472753906250034E2],[66.0155273,0.42314794921875006E2],[66.0095703,42.0048828],[66.4986328,41.994873],[66.5378906,41.7412598],[66.6686523,41.270752],[66.709668,41.1791504],[66.8142578,41.1423828],[67.7350586,0.41187255859374964E2],[67.8050781,0.41163916015625034E2],[67.9357422,41.196582],[68.0197266,41.0962402],[68.1130859,41.0286133],[68.0476563,40.8092773],[68.1602539,0.40721777343750006E2],[68.2918945,0.40656103515625034E2],[68.4957031,40.6086426],[68.6006836,40.6599609],[68.556543,40.7651367],[68.584082,0.40876269531250045E2],[68.7371094,41.0418945],[68.9869141,0.41205029296874955E2],[69.043457,41.2641113],[69.0649414,41.3669434],[69.1536133,41.4252441],[69.3683594,0.41490576171875034E2],[69.4009766,41.5418945],[69.6638672,41.6721191],[69.7880859,41.6973145],[69.9599609,0.41754052734374994E2],[70.0956055,41.8205078],[70.2258789,41.9459961],[70.4160156,42.0785645],[70.4890625,0.42080273437500004E2],[70.5401367,42.0394531],[70.6132812,42.0547363],[70.7152344,42.1686523],[70.8603516,42.2072266],[71.0360352,42.284668],[71.2126953,42.2064453],[71.2285156,42.1628906],[71.0322266,42.0777832],[70.8418945,0.42019628906250006E2],[70.8033203,41.9226563],[70.6308594,41.8754883],[70.4549805,41.7250488],[70.180957,41.5714355],[70.2008789,41.5144531],[70.2900391,41.4968262],[70.4713867,41.4126465],[70.6458984,41.4603516],[70.734375,41.4005371],[70.7824219,41.2625],[70.8604492,41.2249023],[71.1107422,0.41152636718750045E2],[71.2988281,41.1524902],[71.4083984,41.1360352],[71.4208984,0.41341894531250034E2],[71.5456055,41.3080566],[71.60625,41.3674316],[71.6022461,41.5032715],[71.6649414,41.5412109],[71.7006836,0.41454003906249966E2],[71.7924805,41.4131348],[71.8580078,0.41311376953125034E2],[71.8786133,0.41195019531249955E2],[72.0524414,41.1647461],[72.1642578,0.41173730468749966E2],[72.1873047,41.0259277],[72.3640625,41.043457],[72.505957,40.9816895],[72.6204102,40.8837891],[72.830957,0.40862158203125006E2],[72.8666016,40.842334],[72.9900391,40.8601074],[73.1321289,40.8285156],[73.1128906,0.40786035156250044E2],[72.7738281,40.6503906],[72.6795898,40.5556152],[72.5674805,0.40524365234375004E2],[72.4020508,0.40578076171874955E2],[72.3697266,0.40519726562499955E2],[72.405957,40.4630859],[72.3577148,40.4016602],[72.2540039,40.4242188],[72.2328125,40.4543945],[72.13125,0.40438623046874966E2],[72.0125977,40.3407227],[71.9556641,40.2585938],[71.8454102,40.2343262],[71.6924805,40.1523438],[71.6298828,40.2171387],[71.5204102,40.2089844],[71.3761719,40.2751953],[71.3046875,40.2869141],[71.0945313,40.2712402],[70.8994141,0.40234570312499955E2],[70.653125,40.2011719],[70.6027344,40.2141602],[70.5335937,40.3245117],[70.371582,40.3841309],[70.3826172,0.40453515624999966E2],[70.7120117,40.6690918],[70.7509766,40.7395996],[70.6391602,40.7785645],[70.6573242,0.40839648437500045E2],[70.4415039,41.0234375],[70.3726563,41.0276367],[70.2920898,40.8916992],[70.1363281,0.40820410156250034E2],[69.7128906,40.6569824],[69.628418,0.40679052734375006E2],[69.4982422,40.7670898],[69.4138672,40.797168],[69.309375,40.7239258],[69.3139648,40.6347656],[69.20625,40.5665527],[69.3041992,40.3273926],[69.2195313,40.2881348],[69.2749023,40.1980957],[69.2283203,40.1875977],[68.9517578,40.2226074],[68.6525391,0.40182666015625045E2],[68.6397461,40.1291992],[68.9268555,40.1363281],[68.9556641,40.0713379],[68.8046875,40.0503418],[68.7894531,0.40013330078124994E2],[68.86875,39.9074707],[68.777832,0.39904199218749966E2],[68.7352539,39.8362305],[68.6389648,39.8388672],[68.5861328,39.6349609],[68.4632812,39.5367187],[68.3990234,39.5288574],[68.0771484,39.5641602],[67.719043,39.6213867],[67.5424805,39.5576172],[67.4261719,39.4655762],[67.3496094,39.2420898],[67.4003906,39.1966797],[67.6165039,39.150293],[67.6672852,39.1091797],[67.6765625,39.0084961],[67.7685547,38.9822266],[67.9595703,38.9929199],[68.1035156,38.9620117],[68.1485352,38.890625],[68.0478516,38.6692871],[68.087207,38.4735352],[68.1441406,38.3831055],[68.3331055,38.237793],[68.3412109,38.1167969],[68.2365234,0.37959667968749955E2],[68.1740234,37.928418],[68.0875977,37.8354492],[68.0109375,37.7209473],[67.8635742,37.5707031],[67.8143555,37.4870117],[67.7980469,0.37244970703125006E2],[67.7589844,0.37172216796875034E2],[67.7,0.37227246093749955E2],[67.5464844,37.2356445],[67.5172852,37.2666504],[67.4416992,37.2580078],[67.3197266,0.37209570312500006E2],[67.1955078,37.2352051],[67.0688477,0.37334814453125006E2],[66.8277344,37.3712891],[66.5222656,37.3484863],[66.5113281,37.5991699],[66.5255859,0.37785742187500034E2],[66.6292969,37.9320313],[66.5745117,38.010791],[66.3897461,0.38050927734374994E2],[66.1731445,38.1666992],[65.9711914,0.38244238281250006E2],[65.8571289,38.26875],[65.7285156,38.2263672],[65.6128906,38.2385742],[65.3996094,38.3488281],[65.0766602,38.5394531],[64.8207031,0.38672460937500034E2],[64.6599609,38.7360352],[64.5316406,38.8162109],[64.3099609,38.9772949],[64.162793,38.9536133],[63.9525391,39.0583496],[63.7208008,39.1881348],[63.5060547,0.39377099609374966E2],[0.63058105468749964E2,0.39633154296875006E2],[62.6506836,0.39858496093750006E2],[62.4832031,39.9756348],[62.4416016,40.0362305],[62.375,40.3320801],[62.2980469,0.40467480468749976E2],[62.1884766,40.5412109],[0.62095019531250074E2,40.6833008],[62.0175781,40.8937988],[61.9535156,0.41030615234375034E2],[61.902832,41.0937012],[61.7999023,0.41163427734375006E2],[61.6445313,0.41239843750000034E2],[0.61496972656249994E2,0.41276074218749955E2],[61.3875,0.41252148437499955E2],[61.3289063,41.1951172],[61.1792969,41.1905762],[61.1199219,41.2108887],[60.7548828,0.41245751953124994E2],[60.5135742,0.41216162109375006E2],[0.60454980468749994E2,0.41221630859374955E2],[0.60089648437500074E2,41.3994141],[60.06875,0.41476220703124966E2],[60.1379883,41.5941406],[60.0755859,0.41700537109375006E2],[60.1085937,0.41792675781249955E2],[60.1763672,41.7822754],[60.1920898,41.8344238],[0.60106933593749964E2,41.9074219],[59.9625977,0.41954394531250045E2],[59.9816406,42.1317383],[60.0060547,0.42190820312499966E2],[59.8583008,42.295166],[59.4510742,42.2995117],[59.2765625,42.3561523],[0.59199121093749994E2,42.4816895],[0.59123144531250006E2,0.42523779296875034E2],[58.9308594,42.5402832],[58.8769531,42.5614746],[58.5890625,0.42778466796874966E2],[58.5323242,42.6819336],[58.4771484,42.6628418],[0.58259667968750044E2,0.42688085937500034E2],[58.1515625,0.42628076171874966E2],[58.2886719,0.42527294921874955E2],[58.4181641,42.4066895],[58.4858398,42.3168457],[58.3970703,42.2924805],[58.3272461,42.3989258],[58.234082,42.4477051],[58.0289062,42.4876465],[57.9457031,0.42420019531250034E2],[57.9234375,42.3352051],[0.57814257812500074E2,42.1898438],[0.57686132812500055E2,42.1647949],[0.57381738281250044E2,42.1562988],[0.57228808593750074E2,42.0844727],[57.1135742,41.9571289],[56.9640625,41.856543],[57.0181641,41.4505859],[57.1188477,41.350293],[57.0179688,41.2634766],[56.7736328,0.41287988281249994E2],[0.55977441406250044E2,41.3222168],[55.9756836,44.9949219],[0.57477343750000074E2,45.3374512],[58.4494141,0.45542919921874955E2],[0.58555273437500006E2,45.5553711],[0.58668945312500036E2,45.5075684],[0.61007910156250006E2,44.3937988],[61.065332,0.44348388671874964E2],[61.0970703,44.2482422],[61.1607422,44.1686035],[61.3850586,43.9939453],[61.9902344,43.4921387]],[[70.56875,0.40981835937499966E2],[70.6525391,40.9366211],[70.6183594,41.0016602],[70.56875,0.40981835937499966E2]]]]}}],"_labels":{"UZ":"Uzbekistan"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/VA.json b/src/api-umbrella/admin-ui/public/maps/VA.json new file mode 100644 index 000000000..988ce4efe --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/VA.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"VA"},"geometry":{"type":"Polygon","coordinates":[[[0.12439160156250011E2,41.8983887],[0.12430566406250021E2,41.8975586],[0.12430566406250021E2,41.9054687],[0.12439160156250011E2,41.8983887]]]}}],"_labels":{"VA":"Vatican"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/VC.json b/src/api-umbrella/admin-ui/public/maps/VC.json new file mode 100644 index 000000000..4ebc9f729 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/VC.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"VC"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-61.334375,0.12695214843749994E2],[-0.61353515624999964E2,0.12698144531249966E2],[-61.3344238,0.12710205078125028E2],[-0.61335839843749994E2,0.12728808593749989E2],[-61.319873,12.7354492],[-61.3148437,0.12722558593749966E2],[-61.334375,0.12695214843749994E2]]],[[[-0.61226220703124966E2,12.9946289],[-61.2422363,12.9836914],[-61.2769531,12.9898926],[-61.2769531,0.12997363281249987E2],[-61.2620605,0.12992773437500034E2],[-61.2393555,0.12997265624999969E2],[-61.2490234,0.13017822265624986E2],[-61.2011719,0.13052539062500045E2],[-61.19375,0.13038281249999983E2],[-61.2080566,0.13024707031249974E2],[-0.61226220703124966E2,12.9946289]]],[[[-61.1745117,0.13158105468749966E2],[-61.2039063,0.13142285156250026E2],[-61.2772949,0.13209570312499977E2],[-0.61268457031249966E2,0.13287695312499991E2],[-0.61224072265624976E2,0.13330664062500034E2],[-0.61182128906249936E2,0.13355957031250043E2],[-61.1389648,0.13358740234374991E2],[-0.61124023437500036E2,0.13294042968750032E2],[-61.1345215,0.13202880859375028E2],[-61.1745117,0.13158105468749966E2]]]]}}],"_labels":{"VC":"St. Vin. and Gren."}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/VE.json b/src/api-umbrella/admin-ui/public/maps/VE.json new file mode 100644 index 000000000..083b50f7d --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/VE.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"VE"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-60.9979004,8.86733398],[-61.0691895,8.94731445],[-60.9158203,9.0703125],[-60.8491699,8.99570313],[-60.9979004,8.86733398]]],[[[-0.60821191406249966E2,9.13837891],[-60.9414063,9.10556641],[-60.9072754,9.17871094],[-60.7358398,9.20332031],[-0.60821191406249966E2,9.13837891]]],[[[-65.2125,0.10906445312499983E2],[-65.4146484,10.9378906],[-65.3023438,0.10973828125000038E2],[-65.2125,0.10906445312499983E2]]],[[[-0.63849365234374936E2,0.11131005859374994E2],[-63.8172852,11.0003418],[-0.63917626953124994E2,0.10887548828125048E2],[-64.0546875,0.10884326171875017E2],[-64.1608887,0.10958789062499989E2],[-64.4023438,0.10981591796875023E2],[-64.3486328,0.11051904296875051E2],[-64.2136719,0.11086132812499997E2],[-64.0283203,0.11001855468749978E2],[-63.8931152,11.1672363],[-0.63849365234374936E2,0.11131005859374994E2]]],[[[-69.7624023,0.11676025390625014E2],[-69.6315918,0.11479931640625026E2],[-69.2325684,0.11518457031249966E2],[-69.0545898,0.11461035156249991E2],[-68.8279785,0.11431738281249977E2],[-68.3986328,0.11160986328124977E2],[-68.2720703,0.10880029296875023E2],[-68.324707,10.8087402],[-68.234082,0.10569140625000017E2],[-68.1399414,0.10492724609374989E2],[-67.8716309,0.10472070312500051E2],[-67.5813477,0.10523730468750003E2],[-67.1333008,0.10570410156250006E2],[-66.9890625,0.10610644531250031E2],[-66.2472168,0.10632226562499994E2],[-66.1058594,10.5746094],[-66.0904785,10.4729492],[-65.8517578,0.10257763671874997E2],[-65.6558594,0.10228466796874983E2],[-65.4893555,0.10159423828125027E2],[-65.1291016,0.10070068359375043E2],[-64.8504883,0.10098095703124969E2],[-64.1883301,0.10457812499999989E2],[-0.63833691406249955E2,10.4485352],[-63.7318848,0.10503417968750043E2],[-0.63862695312499994E2,0.10558154296875003E2],[-64.1579102,0.10579248046875037E2],[-64.2475098,10.5425781],[-64.2981934,0.10635156249999964E2],[-63.8734375,0.10663769531250026E2],[-63.4967773,10.6432617],[-0.63189892578124976E2,10.7091797],[-62.9467285,10.7070801],[-0.62702343749999955E2,10.7498047],[-62.2422852,0.10699560546875034E2],[-61.8794922,0.10741015625000031E2],[-62.0404297,0.10645361328125006E2],[-0.62232910156249964E2,10.6339844],[-0.62379980468750006E2,10.546875],[-62.6935547,10.5629883],[-62.9135742,0.10531494140624986E2],[-62.8430176,0.10417919921875026E2],[-62.7062988,0.10333056640624974E2],[-62.6616211,10.198584],[-62.7405762,0.10056152343750043E2],[-0.62600488281249994E2,10.1169434],[-0.62600488281249994E2,0.10217285156250014E2],[-62.5151367,0.10176123046874977E2],[-0.62320410156250034E2,9.78305664],[-62.1703125,9.87949219],[-62.1196289,9.98486328],[-61.9085938,0.9869921875000031E1],[-0.61831152343750006E2,0.9733056640625035E1],[-61.7317383,9.70249023],[-61.765918,0.9813818359374963E1],[-61.6253906,9.81645508],[-0.61588867187499936E2,9.89453125],[-61.5123047,0.9847509765624991E1],[-61.309375,9.63305664],[-0.61013378906249955E2,0.9556445312500031E1],[-60.7924805,0.9360742187500037E1],[-0.60840966796874994E2,9.26367187],[-0.60971044921875034E2,0.9215185546875047E1],[-0.61053076171874956E2,0.9095117187500009E1],[-61.1223633,8.84335937],[-0.61247265624999976E2,8.6003418],[-61.6187012,8.59746094],[-61.3040039,8.41040039],[-61.19375,8.48759766],[-61.0359863,8.49311523],[-0.60800976562499926E2,8.59213867],[-60.4814941,8.54726563],[-60.3402344,8.62875977],[-60.1674805,8.61699219],[-60.0175293,8.54931641],[-59.8316406,8.30595703],[-59.9648438,8.19160156],[-0.60032421874999926E2,8.05356445],[-60.1781738,7.99404297],[-60.3806152,7.82763672],[-60.513623,7.81318359],[-0.60719238281249964E2,7.49868164],[-0.60606542968750006E2,7.32084961],[-0.60633300781249964E2,7.21108398],[-60.5231934,7.14370117],[-60.3254883,7.13398437],[-60.3950195,6.94536133],[-60.7179199,6.76831055],[-60.8733398,6.78691406],[-60.9379883,6.73276367],[-61.1456055,6.69453125],[-61.2036133,6.58837891],[-0.61151025390625016E2,6.4465332],[-0.61128710937499996E2,6.21430664],[-61.303125,6.04951172],[-0.61376806640625006E2,5.90698242],[-0.60742138671874926E2,5.20205078],[-0.60671972656250034E2,5.16435547],[-60.6044922,4.99458008],[-60.6275879,4.8925293],[-0.60741748046874925E2,4.77412109],[-60.90625,4.68681641],[-0.61002832031250016E2,4.53525391],[-0.61102441406249966E2,4.5046875],[-61.2800781,4.51689453],[-0.61367529296874984E2,4.43300781],[-61.4793945,4.40224609],[-61.554248,4.28779297],[-62.153125,4.09838867],[-62.4106445,4.15673828],[-62.6097656,4.04228516],[-0.62712109374999976E2,4.01791992],[-62.7645996,3.67294922],[-62.8569824,3.59345703],[-62.9686523,3.59394531],[-0.63294726562499925E2,3.92226562],[-63.3797852,3.94287109],[-63.5268066,3.89370117],[-63.6529297,3.94082031],[-64.0214844,3.92910156],[-64.1217285,4.06699219],[-64.2556641,4.14033203],[-64.5763672,4.13989258],[-64.7222656,4.27441406],[-64.8178711,4.23227539],[-64.5679199,3.89980469],[-64.275293,3.66269531],[-64.2210937,3.58740234],[-64.2188477,3.2046875],[-64.037793,2.80151367],[-64.0090332,2.671875],[-64.0488281,2.52509766],[-0.63924169921875006E2,2.45244141],[-0.63389257812500006E2,2.41191406],[-0.63393945312499994E2,2.22250977],[-0.63463916015624925E2,2.13603516],[-63.5702637,2.12050781],[-63.8444824,1.97670898],[-64.0354492,1.90444336],[-64.1148438,1.61928711],[-64.3041992,1.45527344],[-64.4860352,1.4527832],[-64.731543,1.25332031],[-64.8179688,1.25712891],[-65.1037598,1.10810547],[-65.2639648,0.931884766],[-65.3608398,0.868652344],[-65.4733887,0.691259766],[-65.5560547,0.687988281],[-65.522998,0.843408203],[-65.5660156,0.926074219],[-65.6814453,0.983447266],[-65.8113281,0.937255859],[-66.0600586,0.785351563],[-66.3016602,0.751953125],[-66.429248,0.821679687],[-66.8760254,1.22304688],[-66.8844727,1.35825195],[-67.1138184,2.05058594],[-67.2152344,2.27548828],[-67.2108398,2.39013672],[-67.4864258,2.64365234],[-67.6187012,2.79360352],[-67.7664551,2.83330078],[-67.859082,2.79360352],[-67.8347656,2.89282227],[-67.3536133,3.32265625],[-67.3111328,3.41586914],[-67.4986816,3.69111328],[-67.6616211,3.86425781],[-67.7832031,4.19824219],[-67.7954102,4.38071289],[-67.8552734,4.50688477],[-67.8143066,4.93081055],[-67.8249023,5.27045898],[-67.7884277,5.37548828],[-67.6946289,5.44750977],[-67.6422852,5.55878906],[-67.6313477,5.709375],[-67.4393555,6.02553711],[-67.4819824,6.18027344],[-67.5680664,6.24179688],[-67.8591797,6.28989258],[-67.9388672,6.24194336],[-68.4717773,6.15654297],[-68.7364746,6.15678711],[-68.937207,6.19819336],[-69.0899414,6.184375],[-69.2681641,6.09970703],[-69.4392578,6.13491211],[-70.0950195,6.93793945],[-70.3875,6.97260742],[-70.6550781,7.08276367],[-70.8106934,7.07758789],[-71.0132812,6.99443359],[-71.2178223,6.98520508],[-71.6208984,7.03291016],[-71.8926758,6.99033203],[-72.0842773,7.096875],[-72.2077148,7.37026367],[-72.4429688,7.45488281],[-72.4789551,7.61323242],[-72.4460449,7.96611328],[-72.3576172,8.08730469],[-72.4165527,8.38198242],[-72.6654297,8.62758789],[-72.7963867,9.10898437],[-72.9601562,9.13515625],[-73.0583984,9.25957031],[-73.3367188,0.9167919921875011E1],[-73.3563477,0.9226855468750031E1],[-73.0640625,9.66821289],[-73.006543,9.78916016],[-72.9403809,0.10195751953124969E2],[-72.8693359,10.4912598],[-72.6900879,0.10835839843749994E2],[-72.4460937,11.1142578],[-72.2484863,0.11196435546875009E2],[-72.0123047,0.11601953125000021E2],[-71.9581055,11.6664062],[-71.536084,0.11774072265624994E2],[-71.3197266,0.11861914062500048E2],[-71.4883789,11.71875],[-71.8686523,0.11627343750000037E2],[-71.9569336,0.11569921874999977E2],[-71.9469727,11.4144531],[-71.8351074,0.11190332031250009E2],[-71.6416016,0.11013525390625047E2],[-71.7309082,0.10994677734375017E2],[-71.6904297,0.10835498046875015E2],[-71.5984375,0.10726220703125037E2],[-71.6648437,10.44375],[-71.9557129,0.10108056640625051E2],[-72.1128418,9.81557617],[-71.9932617,0.9641503906250037E1],[-71.9762695,9.55322266],[-71.7607422,0.9335742187500003E1],[-71.7813477,9.25],[-71.6867187,9.07250977],[-71.5366211,0.9048291015624969E1],[-71.2979492,0.9125634765625009E1],[-71.0858398,0.9348242187499977E1],[-71.0526855,9.70581055],[-71.0817383,0.9833203125000011E1],[-71.262207,0.10143603515625001E2],[-71.3866211,0.10263769531249975E2],[-71.5178711,10.6218262],[-71.5446289,0.10778710937499994E2],[-71.4611328,10.8356445],[-71.4695312,0.10964160156250017E2],[-71.2643555,0.10999511718750028E2],[-70.8205078,0.11208447265625054E2],[-70.5456055,0.11261376953124994E2],[-70.2325195,0.11372998046874997E2],[-70.0485352,0.11530322265624987E2],[-69.8853516,11.4443359],[-69.7729004,0.11541308593750003E2],[-69.817334,0.11672070312499997E2],[-70.1925781,11.6246094],[-70.2865234,0.11886035156249989E2],[-70.2027832,0.12098388671874986E2],[-70.0039551,0.12177880859375023E2],[-69.8306152,0.11995605468750014E2],[-69.7624023,0.11676025390625014E2]]]]}}],"_labels":{"VE":"Venezuela"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/VG.json b/src/api-umbrella/admin-ui/public/maps/VG.json new file mode 100644 index 000000000..098b11571 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/VG.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"VG"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-64.5936523,18.402832],[-64.6951172,0.18411669921875017E2],[-64.6509766,0.18442529296874994E2],[-64.545166,0.18438134765624966E2],[-64.5936523,18.402832]]],[[[-64.3952148,18.4645996],[-64.4380371,0.18458984375000057E2],[-64.4260742,0.18513085937499966E2],[-64.3246582,0.18517480468749966E2],[-64.3952148,18.4645996]]],[[[-64.2878906,0.18740576171875034E2],[-64.273584,0.18707128906249977E2],[-64.4114258,0.18751171874999983E2],[-64.3230957,18.7526855],[-64.2878906,0.18740576171875034E2]]]]}}],"_labels":{"VG":"British Virgin Is."}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/VI.json b/src/api-umbrella/admin-ui/public/maps/VI.json new file mode 100644 index 000000000..c322d5e0b --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/VI.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"VI"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-64.765625,17.7943359],[-64.6818359,0.17750195312499983E2],[-64.5804687,0.17750195312499983E2],[-64.6862793,0.17706103515625045E2],[-64.8891113,0.17701708984375045E2],[-64.8847168,0.17772265625000042E2],[-64.765625,17.7943359]]],[[[-64.6598145,0.18354345703125063E2],[-64.6598145,0.18354345703125063E2],[-64.6598145,0.18354345703125063E2],[-64.6598145,0.18354345703125063E2]]],[[[-64.8450195,18.3300781],[-65.0236328,18.3675781],[-64.8891113,18.3742188],[-64.8450195,18.3300781]]]]}}],"_labels":{"VI":"U.S. Virgin Is."}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/VN.json b/src/api-umbrella/admin-ui/public/maps/VN.json new file mode 100644 index 000000000..503b7ffdf --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/VN.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"VN"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.10661748046875006E3,8.6828125],[0.10661748046875006E3,8.6828125],[0.10661748046875006E3,8.6828125],[0.10661748046875006E3,8.6828125]]],[[[0.10406396484375003E3,10.3908203],[0.10407578125000006E3,0.10224853515625043E2],[104.018457,0.10029199218749966E2],[0.10395214843749997E3,0.10242919921874986E2],[0.10384951171875005E3,0.10371093749999986E2],[0.10398583984375003E3,10.4269531],[0.10406396484375003E3,10.3908203]]],[[[0.10716767578125003E3,0.10397167968749967E2],[0.10716767578125003E3,0.10397167968749967E2],[0.10716767578125003E3,0.10397167968749967E2],[0.10716767578125003E3,0.10397167968749967E2]]],[[[0.10703134765625006E3,0.20747021484374983E2],[0.10691064453124997E3,20.8242188],[0.10695341796875002E3,0.20867041015625006E2],[107.04375,0.20836816406249966E2],[0.10703134765625006E3,0.20747021484374983E2]]],[[[106.865625,0.20815722656250045E2],[106.769434,20.864209],[0.10679531250000005E3,0.20927929687499983E2],[106.865625,0.20815722656250045E2]]],[[[0.10752128906250007E3,0.20926611328124977E2],[0.10739921875000007E3,0.20903466796874966E2],[0.10755126953125003E3,0.21034033203125006E2],[0.10752128906250007E3,0.20926611328124977E2]]],[[[0.10760273437500004E3,0.21216796875000025E2],[107.458691,0.21091650390625034E2],[0.10740351562500004E3,0.21093652343749994E2],[0.10747626953125003E3,0.21268945312499994E2],[0.10760273437500004E3,0.21216796875000025E2]]],[[[0.10578232421875005E3,0.22969335937500034E2],[105.842969,0.22922802734374955E2],[0.10600097656250003E3,0.22974755859374966E2],[106.183984,0.22955126953125045E2],[0.10624941406250005E3,0.22869433593750017E2],[0.10633808593750004E3,22.8634766],[0.10654179687500007E3,22.9083496],[0.10678027343749997E3,0.22778906250000034E2],[0.10670156250000005E3,0.22637744140625045E2],[106.582422,22.5732422],[0.10653632812500004E3,0.22395410156249994E2],[106.654199,22.2414551],[0.10666357421875003E3,21.9789063],[0.10672949218749997E3,0.22000341796875063E2],[0.10700644531250005E3,0.21893408203125034E2],[0.10701982421875002E3,0.21834863281249994E2],[0.10717851562500002E3,21.7170898],[0.10727207031250005E3,21.7106445],[0.10735117187500012E3,21.6088867],[0.10743349609375005E3,21.6422852],[107.471387,0.21598339843749955E2],[0.10780205078125006E3,0.21645166015624994E2],[0.10797265624999996E3,0.21507958984375023E2],[0.10780908203124997E3,0.21497119140625017E2],[107.707227,21.4058594],[107.409961,0.21284814453125023E2],[0.10735429687500007E3,0.21055175781250057E2],[107.164746,20.9487305],[0.10707519531250001E3,20.9992676],[0.10688623046874997E3,20.95],[0.10668339843750007E3,0.21000292968750074E2],[0.10667548828125004E3,0.20960498046875045E2],[0.10675341796875003E3,20.7350586],[0.10655078124999997E3,20.5265625],[0.10657285156250012E3,0.20392187499999977E2],[0.10651796875000004E3,0.20288867187499985E2],[0.10639550781250003E3,0.20205908203125063E2],[0.10616572265625004E3,0.19992041015625006E2],[0.10598408203125004E3,0.19939062500000034E2],[0.10581396484374997E3,19.5874512],[105.791113,19.2941895],[0.10571640625000006E3,0.19127783203125063E2],[0.10563906250000005E3,0.19057177734375074E2],[0.10562177734375004E3,18.9663086],[0.10588828125000006E3,0.18502490234375042E2],[106.065625,18.3163574],[0.10623955078125007E3,18.2207031],[0.10649902343749997E3,0.17946435546874994E2],[106.459375,0.17873681640624994E2],[0.10647890625000005E3,0.17719580078125063E2],[0.10635585937500004E3,0.17765039062499994E2],[0.10651679687500004E3,17.662793],[106.735742,17.3671875],[0.10711992187500002E3,0.17055517578125034E2],[0.10718037109375003E3,16.8979492],[0.10735507812500012E3,16.79375],[0.10754931640624997E3,0.16642578125000025E2],[0.10754082031250002E3,16.6086426],[0.10772412109374997E3,0.16487841796875017E2],[0.10783378906250002E3,0.16322460937499983E2],[0.10802939453125012E3,0.16331103515625074E2],[0.10820898437500003E3,16.0910645],[0.10826738281250002E3,16.0897949],[108.286035,0.15989062500000017E2],[0.10839531250000002E3,0.15872460937499966E2],[108.447461,15.7626953],[108.674219,0.15483593749999983E2],[0.10882128906249997E3,0.15377929687500028E2],[108.898242,0.15180517578124961E2],[0.10893994140624997E3,0.15001464843749986E2],[0.10902246093749997E3,0.14802832031250018E2],[0.10908486328124998E3,0.14716162109375034E2],[0.10908701171875012E3,14.5525879],[0.10919140624999997E3,0.14270458984375011E2],[0.10920732421875002E3,0.14154296874999972E2],[109.30332,0.13856445312500043E2],[0.10928808593750003E3,13.7650391],[0.10924707031250001E3,13.8547363],[0.10925205078125006E3,13.5905273],[0.10928808593750003E3,13.4507813],[109.271875,0.13279345703124974E2],[0.10942392578125006E3,0.12955957031249994E2],[0.10942001953125006E3,12.719043],[0.10944492187500006E3,0.12599609375000057E2],[0.10933554687500012E3,0.12751904296874997E2],[0.10921894531250003E3,12.6458008],[0.10930468750000003E3,0.12391162109375045E2],[0.10920683593750007E3,0.12415380859375006E2],[0.10921455078125004E3,0.12010449218750011E2],[0.10915751953125007E3,0.11837109375000054E2],[109.198633,0.11724853515625014E2],[0.10913251953125004E3,0.11601074218750014E2],[109.039648,0.11592675781249994E2],[108.986719,0.11336376953124997E2],[0.10882080078125001E3,11.3154297],[0.10870029296875006E3,11.1992676],[0.10855126953125003E3,0.11155957031250011E2],[108.27168,0.10934277343749969E2],[0.10809492187500003E3,0.10897265624999989E2],[108.001367,0.10720361328125009E2],[0.10784511718750005E3,0.10700097656250051E2],[0.10756445312499997E3,0.10555468749999989E2],[0.10747031250000006E3,0.10485839843750014E2],[0.10726152343750006E3,10.3983887],[0.10719414062500002E3,0.10471582031250037E2],[0.10708779296875005E3,0.10498339843749974E2],[0.10700664062500002E3,10.6605469],[0.10696611328125002E3,0.10440722656249958E2],[0.10690205078125003E3,0.10382812499999986E2],[0.10672734375000007E3,0.10535644531250028E2],[106.605859,0.10464941406250018E2],[0.10674121093750001E3,0.10444384765625003E2],[0.10675742187500006E3,0.10295800781250023E2],[0.10646406250000004E3,0.10298291015624997E2],[0.10672900390625003E3,0.10193310546875011E2],[0.10678525390625012E3,0.10116455078124984E2],[0.10665917968750003E3,9.99140625],[0.10665683593750005E3,0.9901074218749981E1],[0.10659560546875005E3,9.85986328],[0.10644912109375005E3,9.93964844],[106.136426,0.10221679687500014E2],[0.10618359375000003E3,0.10142089843750057E2],[0.10650742187500012E3,0.9821240234374969E1],[0.10657246093750004E3,0.9641113281250043E1],[0.10648408203125003E3,9.55942383],[0.10637802734375012E3,9.55610352],[106.204004,0.9675439453125023E1],[0.10592568359374998E3,0.9961718749999989E1],[0.10583095703125004E3,0.10000732421875028E2],[106.1125,9.67358398],[106.206152,0.9502343750000023E1],[0.10616835937500005E3,9.39672852],[0.10550097656249997E3,0.9093212890624983E1],[0.10540136718750003E3,8.96240234],[0.10532226562499997E3,8.80112305],[0.10511435546875005E3,8.62919922],[0.10489189453125002E3,8.58325195],[104.77041,8.59765625],[0.10489628906250007E3,8.74663086],[0.10481855468750004E3,8.80185547],[0.10481464843750004E3,9.18549805],[0.10484521484375003E3,9.60615234],[0.10490322265625005E3,9.81625977],[0.10509257812500006E3,0.9900976562499963E1],[0.10502783203125003E3,0.10067431640625031E2],[0.10487324218750003E3,0.10114794921875001E2],[104.801953,0.10202734374999975E2],[0.10466347656250005E3,0.10169921875000043E2],[104.594043,0.10266894531249989E2],[0.10442636718750006E3,0.10411230468749991E2],[0.10456425781250007E3,10.5159668],[0.10485058593749997E3,0.10534472656249974E2],[0.10506113281250006E3,10.7337891],[0.10502226562500002E3,0.10886865234374994E2],[0.10515947265625002E3,0.10897558593750048E2],[0.10531464843750008E3,0.10845166015625026E2],[0.10538652343750002E3,0.10940087890625007E2],[0.10575507812500004E3,0.10989990234375043E2],[0.10585332031250007E3,10.8635742],[0.10593818359375004E3,10.8851562],[106.098828,0.10797265625000037E2],[0.10616396484375005E3,10.7949219],[106.131543,0.10921972656250048E2],[0.10616796874999996E3,0.11012304687499977E2],[0.10589160156249997E3,0.11244824218749997E2],[0.10585605468750006E3,0.11294287109375048E2],[0.10585146484375005E3,11.6350098],[0.10592656250000007E3,0.11652929687500006E2],[106.006055,0.11758007812500011E2],[0.10610292968750004E3,0.11751269531249974E2],[0.10633984374999997E3,11.6818359],[0.10639921875000007E3,0.11687011718750028E2],[0.10641386718750002E3,11.9484375],[106.700098,0.11979296874999973E2],[0.10676464843750003E3,12.0523438],[0.10693066406249997E3,0.12077490234374991E2],[0.10715898437500007E3,0.12277050781249969E2],[0.10733007812500003E3,0.12319042968749997E2],[0.10739335937500002E3,0.12260498046874972E2],[0.10750644531250006E3,12.3645508],[0.10755546875000002E3,0.12539990234374983E2],[0.10754355468750006E3,0.12705908203125034E2],[107.475391,0.13030371093749963E2],[0.10760546874999997E3,0.13437792968750017E2],[0.10752861328125002E3,0.13654199218750051E2],[107.331445,0.14126611328125009E2],[107.364453,0.14368701171875044E2],[0.10744843750000004E3,0.14451220703124974E2],[0.10753525390625006E3,0.14649951171875045E2],[0.10752451171875012E3,14.8718262],[107.480371,0.14979882812500037E2],[0.10755527343750005E3,0.15057031250000021E2],[107.653125,15.2552246],[107.564258,0.15391601562499973E2],[0.10727939453125006E3,0.15618701171875045E2],[0.10716591796875005E3,0.15802490234375028E2],[107.360645,0.15921728515624979E2],[0.10739638671874998E3,0.16043017578124985E2],[0.10721738281250006E3,16.1363281],[107.069727,0.16279833984375017E2],[0.10693066406249997E3,16.353125],[0.10683242187500005E3,16.5262695],[0.10669609375000007E3,16.4589844],[0.10654619140625002E3,0.16650732421874974E2],[106.502246,16.9541016],[0.10642597656250004E3,0.17002539062499974E2],[0.10626953125000003E3,17.2167969],[106.00625,0.17415283203125057E2],[0.10569140625000003E3,0.17737841796875045E2],[0.10562724609375002E3,0.17834423828125008E2],[0.10558847656250012E3,0.17983691406250045E2],[0.10545820312500004E3,0.18154296874999968E2],[0.10533349609375003E3,0.18189648437499983E2],[105.163281,0.18338720703124977E2],[0.10508583984375005E3,0.18450097656250023E2],[0.10514648437500003E3,0.18650976562500006E2],[0.10499316406249997E3,0.18728320312500045E2],[104.716504,0.18803417968749955E2],[0.10410859375000003E3,19.1955566],[0.10391835937500005E3,19.2685059],[103.896387,0.19339990234375023E2],[104.027539,19.420459],[104.062891,19.4825684],[0.10403203125000002E3,0.19675146484375006E2],[0.10425986328125006E3,0.19685498046874983E2],[104.546289,19.6105469],[0.10474316406250003E3,0.19754736328124977E2],[0.10481513671875004E3,19.9040039],[104.92793,20.0181152],[0.10488867187500001E3,20.1690918],[104.812695,0.20216845703125074E2],[0.10469873046875003E3,20.2053223],[104.618848,20.3745117],[104.367773,20.4414062],[0.10453271484374997E3,20.5548828],[0.10458320312500004E3,0.20646679687499955E2],[0.10434960937499997E3,0.20821093750000074E2],[0.10419531249999997E3,0.20913964843749962E2],[0.10405205078125002E3,0.20941210937500014E2],[0.10379052734375003E3,20.8095215],[0.10371445312500006E3,0.20716943359374994E2],[0.10363505859375007E3,0.20697070312500017E2],[0.10346357421875004E3,0.20779833984375014E2],[103.210742,20.840625],[0.10310449218749997E3,0.20891650390625045E2],[0.10285117187500006E3,21.265918],[102.8875,21.4399414],[102.948633,21.5697754],[0.10294960937500005E3,0.21681347656249983E2],[0.10284521484374997E3,21.7347656],[0.10281591796874996E3,21.807373],[0.10277109375000006E3,0.21709667968749983E2],[0.10269531250000003E3,21.6621094],[102.64082,21.7114258],[0.10258251953125003E3,21.9042969],[102.183008,0.22284033203125034E2],[0.10212744140624996E3,0.22379199218750045E2],[102.237012,0.22466015624999983E2],[0.10242792968750003E3,0.22732812499999966E2],[102.517188,0.22741015625000045E2],[0.10283007812500003E3,0.22587158203125057E2],[102.935156,0.22466162109375006E2],[0.10300537109375003E3,0.22452978515624977E2],[0.10313632812500005E3,0.22542236328125057E2],[0.10313759765625005E3,0.22592968749999983E2],[0.10330058593750002E3,22.7644043],[0.10335605468750006E3,0.22754687499999985E2],[0.10347099609375002E3,22.5974121],[0.10352539062500003E3,0.22611572265625057E2],[0.10362021484375006E3,0.22782031250000045E2],[0.10391503906249997E3,0.22538232421875023E2],[103.971387,22.5504883],[0.10405390625000004E3,0.22752294921875034E2],[0.10421250000000012E3,0.22809423828125034E2],[0.10429833984374997E3,0.22712011718750006E2],[0.10437177734375004E3,0.22704052734374983E2],[0.10452685546875003E3,0.22804101562500023E2],[0.10468730468750002E3,0.22822216796874983E2],[0.10479570312500007E3,22.9111328],[0.10482656250000005E3,0.23100195312500034E2],[0.10486474609375001E3,0.23136376953125023E2],[0.10518906250000012E3,0.23281054687500017E2],[0.10527539062500003E3,23.3452148],[105.494531,23.1808594],[0.10554814453125007E3,0.23072656250000023E2],[0.10578232421875005E3,0.22969335937500034E2]]]]}}],"_labels":{"VN":"Vietnam"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/VU.json b/src/api-umbrella/admin-ui/public/maps/VU.json new file mode 100644 index 000000000..9945077b4 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/VU.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"VU"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.16989628906250007E3,-20.1866211],[0.16986113281250002E3,-0.20241796874999977E2],[169.7375,-0.20202148437499986E2],[169.750684,-0.20153320312499986E2],[0.16989628906250007E3,-20.1866211]]],[[[0.16949130859375006E3,-19.5401367],[0.16943847656249997E3,-0.19648828124999966E2],[0.16934726562500003E3,-0.19623535156249957E2],[169.21748,-0.19476367187500003E2],[0.16924746093750005E3,-19.3447266],[0.16933671875000002E3,-19.3292969],[0.16935996093750003E3,-0.19457812500000045E2],[0.16949130859375006E3,-19.5401367]]],[[[169.334375,-0.18940234375000017E2],[0.16924804687499994E3,-18.9833008],[0.16898691406250006E3,-18.8712891],[0.16901582031250004E3,-18.64375],[0.16914384765625002E3,-18.6310547],[0.16920117187499997E3,-0.18795703124999974E2],[169.334375,-0.18940234375000017E2]]],[[[0.16844580078124997E3,-17.5421875],[0.16858496093750003E3,-0.17695898437500006E2],[0.16852460937500004E3,-0.17798046875000022E2],[0.16825166015625004E3,-17.7807617],[0.16827783203124997E3,-17.7060547],[0.16815820312500003E3,-0.17710546874999963E2],[168.273145,-0.17552246093749954E2],[0.16844580078124997E3,-17.5421875]]],[[[0.16844677734375003E3,-0.16778808593749957E2],[0.16846015625000004E3,-0.16835058593750045E2],[0.16832275390624997E3,-16.787793],[168.181445,-0.16804003906250017E2],[0.16812431640625002E3,-16.6900391],[0.16819921875000003E3,-16.5938477],[0.16836601562500007E3,-0.16758789062499954E2],[0.16844677734375003E3,-0.16778808593749957E2]]],[[[0.16829667968750007E3,-0.16336523437499988E2],[168.02168,-16.315625],[0.16792900390625002E3,-16.2287109],[0.16806425781250007E3,-16.18125],[0.16816386718750002E3,-0.16081640625000034E2],[0.16829667968750007E3,-0.16336523437499988E2]]],[[[167.4125,-0.16095898437499997E2],[0.16771445312500012E3,-0.16313671875000054E2],[0.16783662109375004E3,-0.16449707031249957E2],[0.16775976562500003E3,-16.5164062],[0.16761142578125006E3,-0.16498632812499977E2],[0.16752636718749997E3,-0.16574316406250034E2],[167.449316,-0.16554980468750003E2],[167.380273,-0.16245703124999963E2],[167.315625,-0.16115527343750003E2],[0.16721806640625007E3,-0.16155273437500014E2],[0.16715146484375003E3,-0.16080468749999966E2],[0.16719951171875002E3,-15.8850586],[0.16733574218750007E3,-0.15916699218749997E2],[167.4125,-0.16095898437499997E2]]],[[[167.218945,-0.15724121093750028E2],[0.16709472656249997E3,-0.15685253906250011E2],[0.16711904296875002E3,-0.15622558593750027E2],[167.234375,-0.15645019531249988E2],[167.218945,-0.15724121093750028E2]]],[[[0.16821289062499997E3,-15.9704102],[0.16812285156250002E3,-15.6808594],[0.16815996093750002E3,-0.15461816406249966E2],[0.16826777343750004E3,-0.15892285156249995E2],[0.16821289062499997E3,-15.9704102]]],[[[0.16791132812500007E3,-0.15435937500000023E2],[0.16784423828124997E3,-0.15481835937500051E2],[167.674219,-15.4515625],[0.16782626953125006E3,-0.15312011718749998E2],[0.16800253906250012E3,-0.15283203124999984E2],[0.16791132812500007E3,-0.15435937500000023E2]]],[[[168.18916,-0.15328710937500018E2],[0.16813046875000006E3,-0.15318945312499991E2],[168.104199,-0.15016601562500028E2],[168.136426,-14.9864258],[168.18916,-0.15328710937500018E2]]],[[[0.16674580078125004E3,-0.14826855468750011E2],[0.16681015625000012E3,-15.1574219],[0.16692343750000006E3,-0.15139160156249957E2],[0.16698730468750003E3,-0.14940039062499977E2],[167.075586,-0.14935644531249977E2],[0.16706855468750004E3,-15.0717773],[0.16713164062500002E3,-0.15135351562499975E2],[0.16719960937500005E3,-0.15485742187500035E2],[0.16709394531250007E3,-0.15580859374999973E2],[0.16693662109375012E3,-15.5780273],[0.16675830078125003E3,-0.15631152343750003E2],[0.16675898437500004E3,-0.15566796875000035E2],[0.16663105468750004E3,-0.15406054687499974E2],[166.647852,-0.15211523437500047E2],[166.527246,-0.14850097656249957E2],[0.16656738281250003E3,-0.14641796874999969E2],[166.607812,-0.14636523437499958E2],[0.16674580078125004E3,-0.14826855468750011E2]]],[[[167.584863,-0.14260937500000011E2],[0.16754326171875007E3,-0.14311621093750034E2],[167.403516,-0.14281542968750031E2],[0.16741074218750003E3,-0.14197460937500038E2],[0.16750644531250012E3,-0.14142187499999977E2],[0.16759892578125002E3,-0.14183789062500011E2],[167.584863,-0.14260937500000011E2]]],[[[0.16748886718750006E3,-0.13907226562499972E2],[167.391797,-0.13788378906250017E2],[0.16748105468750006E3,-0.13709472656250014E2],[167.547266,-0.13776660156250017E2],[0.16748886718750006E3,-0.13907226562499972E2]]]]}}],"_labels":{"VU":"Vanuatu"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/WF.json b/src/api-umbrella/admin-ui/public/maps/WF.json new file mode 100644 index 000000000..394acf056 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/WF.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"WF"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-0.17804667968749996E3,-0.14318359374999984E2],[-0.17815859375000002E3,-0.14311914062499994E2],[-0.17819438476562496E3,-0.14255468749999963E2],[-178.142236,-14.2425781],[-0.17804667968749996E3,-0.14318359374999984E2]]],[[[-176.160596,-0.13332812500000017E2],[-0.17619536132812502E3,-13.3016602],[-0.17614794921874994E3,-0.13221679687500027E2],[-0.17612807617187497E3,-0.13268164062499991E2],[-176.160596,-0.13332812500000017E2]]]]}}],"_labels":{"WF":"Wallis and Futuna Is."}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/WS.json b/src/api-umbrella/admin-ui/public/maps/WS.json new file mode 100644 index 000000000..bbf824795 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/WS.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"WS"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-171.454102,-14.0464844],[-0.17172822265624995E3,-14.0472656],[-0.17191191406249996E3,-0.14001660156250024E2],[-172.045898,-0.13857128906249981E2],[-0.17185815429687497E3,-0.13807128906250014E2],[-0.17160390624999997E3,-0.13879199218750045E2],[-0.17146137695312493E3,-13.9776367],[-171.454102,-14.0464844]]],[[[-172.333496,-13.4652344],[-172.221533,-0.13559570312500027E2],[-0.17217685546874995E3,-13.684668],[-172.224951,-0.13804296874999963E2],[-172.535693,-0.13791699218749983E2],[-0.17277851562499995E3,-0.13516796875000011E2],[-172.669629,-0.13523828125000023E2],[-172.333496,-13.4652344]]]]}}],"_labels":{"WS":"Samoa"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/YE.json b/src/api-umbrella/admin-ui/public/maps/YE.json new file mode 100644 index 000000000..b8588bc27 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/YE.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"YE"},"geometry":{"type":"MultiPolygon","coordinates":[[[[53.7631836,0.12636816406249991E2],[0.53918554687500006E2,0.12659423828124986E2],[54.1874023,0.12664013671875026E2],[0.54511132812499994E2,0.12552783203125017E2],[54.4137695,12.4833008],[0.54271289062500074E2,0.12446630859374977E2],[0.54129492187500055E2,0.12360644531250045E2],[53.7188477,0.12318994140624994E2],[53.5983398,0.12342285156250028E2],[53.3158203,0.12533154296875011E2],[53.430957,0.12663574218750027E2],[53.5349609,0.12715771484374997E2],[53.6384766,0.12707373046874977E2],[53.7631836,0.12636816406249991E2]]],[[[42.7558594,13.7042969],[42.7558594,13.7042969],[42.7558594,13.7042969],[42.7558594,13.7042969]]],[[[0.42787402343750074E2,13.9714844],[42.694043,0.14007910156249991E2],[42.7621094,0.14067480468750048E2],[0.42787402343750074E2,13.9714844]]],[[[42.5902344,0.15303417968750038E2],[42.5490234,0.15320068359374972E2],[42.6023438,0.15432519531249966E2],[42.5902344,0.15303417968750038E2]]],[[[0.52903710937499994E2,0.17043847656249966E2],[53.0856445,0.16648388671874955E2],[0.52581445312499994E2,0.16470361328125023E2],[52.3277344,0.16293554687500063E2],[52.2373047,16.1713867],[52.1740234,0.15956835937500017E2],[52.2220703,0.15760595703125004E2],[52.2174805,0.15655517578124998E2],[51.8307617,0.15459277343749989E2],[51.7486328,15.4401367],[51.6037109,0.15336816406250009E2],[51.3224609,0.15226269531250038E2],[51.0151367,0.15140771484375039E2],[50.5270508,0.15038183593750006E2],[50.1668945,0.14851025390624981E2],[0.49906347656250055E2,14.828125],[49.5486328,0.14722412109374986E2],[49.3499023,0.14637792968749977E2],[49.0480469,0.14456445312499978E2],[0.49004687500000074E2,0.14355029296875005E2],[48.7799805,0.14123876953124991E2],[48.6683594,0.14050146484374977E2],[48.4490234,14.0059082],[48.277832,0.13997656250000032E2],[47.9899414,0.14048095703124998E2],[0.47855078125000055E2,0.13956933593749994E2],[0.47633398437500006E2,0.13858447265625003E2],[47.4077148,0.13661621093750057E2],[46.9756836,0.13547460937499977E2],[46.7888672,0.13465576171874986E2],[46.5019531,0.13415576171875015E2],[46.203125,0.13423828125000014E2],[45.9197266,0.13394287109375028E2],[45.6573242,0.13338720703124991E2],[0.45533984375000074E2,0.13233496093749963E2],[45.3935547,13.067041],[0.45163867187500074E2,12.998291],[45.0386719,0.12815869140624969E2],[44.7552734,0.12763769531250004E2],[44.6177734,0.12817236328124977E2],[44.3584961,0.12669140625000011E2],[0.43929785156250006E2,0.12616503906250031E2],[43.634375,0.12744482421874991E2],[0.43487597656250074E2,12.6988281],[43.475293,12.8390137],[43.2319336,0.13267089843750057E2],[43.2826172,0.13639843749999969E2],[43.234082,0.13858935546875017E2],[43.0890625,14.0109863],[43.0933594,0.14203662109374989E2],[43.00625,0.14483105468749983E2],[43.0210938,0.14554882812500038E2],[0.42912988281249994E2,0.14863085937500045E2],[42.9364258,0.14938574218749963E2],[42.8556641,0.15132958984375037E2],[42.6578125,0.15232812500000053E2],[0.42697851562500006E2,0.15326318359374994E2],[0.42788476562499994E2,0.15265722656250004E2],[0.42799902343750006E2,0.15371630859374987E2],[0.42717187500000044E2,0.15654638671875006E2],[42.8396484,0.16032031250000074E2],[42.7993164,16.3717773],[0.43033593750000044E2,0.16550390624999977E2],[0.43104785156250074E2,0.16664160156250063E2],[43.1650391,0.16689404296874955E2],[43.1844727,0.16811816406250045E2],[43.1165039,0.16941992187500006E2],[43.155957,17.2050293],[43.2369141,0.17266455078125006E2],[43.190918,17.359375],[43.4179688,0.17516259765625023E2],[43.5972656,17.4714355],[0.43712988281250055E2,0.17365527343750045E2],[43.9169922,17.324707],[44.155957,0.17398535156250006E2],[44.3546875,0.17414355468750045E2],[44.5464844,0.17404345703125045E2],[44.7467773,0.17431689453125017E2],[0.45148046875000055E2,0.17427441406249955E2],[45.406543,0.17319775390624955E2],[46.3103516,0.17231298828125063E2],[46.6820313,17.2685547],[46.7785156,0.17212109374999955E2],[46.9756836,0.16953466796875034E2],[47.1435547,0.16946679687499966E2],[47.4417969,0.17111865234375045E2],[47.5795898,0.17448339843750034E2],[48.172168,0.18156933593749983E2],[49.0419922,18.5817871],[49.1923828,18.6213379],[0.51977636718750006E2,0.18996142578125074E2],[52.7291992,17.3003906],[52.8005859,0.17267919921875063E2],[0.52903710937499994E2,0.17043847656249966E2]]]]}}],"_labels":{"YE":"Yemen"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/YT.json b/src/api-umbrella/admin-ui/public/maps/YT.json new file mode 100644 index 000000000..648868347 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/YT.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"YT"},"geometry":{"type":"Polygon","coordinates":[[[0.45180273437500006E2,-0.12976757812500011E2],[45.1175781,-0.12984960937500004E2],[0.45069433593750006E2,-0.12895605468750006E2],[45.0935547,-12.7861328],[45.0425781,-0.12701269531250006E2],[45.0923828,-0.12653027343750011E2],[45.1347656,-0.12709179687500011E2],[45.2231445,-0.12752148437500011E2],[0.45180273437500006E2,-0.12976757812500011E2]]]}}],"_labels":{"YT":"Mayotte"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/ZA.json b/src/api-umbrella/admin-ui/public/maps/ZA.json new file mode 100644 index 000000000..ca31f0dc3 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/ZA.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"ZA"},"geometry":{"type":"MultiPolygon","coordinates":[[[[37.8569336,-46.9442383],[37.6118164,-46.9464844],[0.37684863281250074E2,-46.8240234],[37.8876953,-0.46901660156249996E2],[37.8569336,-46.9442383]]],[[[0.30190429687500025E2,-22.2911133],[0.30460156250000097E2,-0.22329003906250023E2],[30.9161133,-22.2907227],[0.31073437500000036E2,-0.22307812499999965E2],[31.2878906,-0.22402050781249983E2],[0.31419335937499994E2,-0.22825097656250023E2],[0.31531738281249975E2,-23.2794922],[0.31545605468750036E2,-23.4823242],[0.31799609375000017E2,-23.8921875],[31.9858398,-0.24460644531249983E2],[0.31984570312500036E2,-0.25631933593750034E2],[31.9203125,-0.25773925781250014E2],[0.31948242187500025E2,-0.25957617187500034E2],[31.8714844,-0.25981640625000054E2],[0.31415136718750063E2,-25.746582],[0.31207324218750074E2,-0.25843359375000034E2],[0.30803320312500002E2,-0.26413476562500005E2],[30.7943359,-0.26764257812499977E2],[30.8833008,-0.26792382812500023E2],[0.31063378906250048E2,-0.27112304687499996E2],[31.2740234,-0.27238378906250016E2],[0.31469531250000017E2,-27.2955078],[31.9583984,-27.3058594],[0.31946093750000014E2,-27.1736328],[0.31994726562500006E2,-0.26817480468749977E2],[32.3535156,-26.8616211],[32.8861328,-0.26849316406249983E2],[32.8491211,-0.27080175781250034E2],[32.6570313,-0.27607324218750037E2],[32.5347656,-28.199707],[32.3751953,-0.28498242187499997E2],[0.32285742187500006E2,-28.6214844],[32.0272461,-0.28839550781249997E2],[31.7782227,-0.28937109374999977E2],[31.3351563,-29.378125],[0.31169921874999968E2,-0.29590820312500014E2],[0.31023339843749994E2,-0.29900878906250025E2],[0.30877636718750036E2,-30.0710937],[0.30663574218749975E2,-30.4341797],[0.30288671875000063E2,-0.30970117187499994E2],[29.9711914,-0.31322070312500014E2],[29.7351563,-31.4704102],[0.29482910156250025E2,-0.31674707031250005E2],[29.127832,-32.003125],[28.855957,-32.2942383],[0.28449414062500068E2,-32.6246094],[0.28214062499999983E2,-32.7692383],[0.27860644531250017E2,-33.0539062],[0.27762109375000023E2,-33.0959961],[0.27363769531250057E2,-33.3605469],[0.27077441406250074E2,-33.5211914],[0.26613671875000076E2,-33.7074219],[0.26429492187500045E2,-33.7595703],[0.25989550781250045E2,-0.33711328124999966E2],[25.8058594,-0.33737109374999974E2],[0.25652441406250002E2,-0.33849609374999986E2],[25.6381836,-0.34011132812500016E2],[25.4772461,-34.028125],[0.25169726562500074E2,-0.33960742187499974E2],[25.0029297,-33.9736328],[24.8271484,-34.1689453],[0.24595507812500074E2,-34.1745117],[24.1830078,-0.34061523437499986E2],[23.5855469,-0.33985156249999974E2],[0.23268164062500002E2,-34.0811523],[0.22925585937500045E2,-34.0631836],[22.7355469,-34.0102539],[0.22553808593750063E2,-34.0100586],[22.2455078,-34.0691406],[21.7889648,-34.3726562],[0.21553222656250057E2,-34.3730469],[21.2489258,-34.4070313],[0.21060156250000063E2,-34.3646484],[0.20882421874999977E2,-34.3865234],[0.20774804687499994E2,-0.34439941406249986E2],[0.20529882812500034E2,-34.4630859],[0.20434667968749974E2,-34.5085938],[0.20020605468750006E2,-0.34785742187500006E2],[19.6349609,-0.34753320312499966E2],[0.19391503906249994E2,-34.6056641],[0.19298242187500023E2,-34.6150391],[0.19330761718750068E2,-34.4923828],[0.19098339843750068E2,-0.34350097656249986E2],[0.18831347656250017E2,-34.3640625],[18.8087891,-34.1082031],[0.18708691406250068E2,-34.071875],[0.18533886718749983E2,-34.0859375],[18.4621094,-34.1680664],[18.4616211,-34.346875],[18.3520508,-34.1884766],[0.18354394531250023E2,-0.33939062499999984E2],[18.4650391,-0.33887792968750034E2],[18.4330078,-33.7172852],[0.18261230468750057E2,-33.4216797],[0.18156347656250006E2,-33.3587891],[0.18074804687499977E2,-33.2073242],[0.17992578125000023E2,-33.1523438],[17.8782227,-32.9615234],[0.17851074218750053E2,-32.8274414],[17.9652344,-32.7085937],[0.18036523437499994E2,-32.7750977],[18.2508789,-32.6521484],[0.18325292968750034E2,-32.5049805],[18.3107422,-32.1224609],[18.2108398,-0.31742480468749957E2],[0.18163671875000063E2,-0.31655175781250023E2],[0.17938574218750034E2,-0.31383203125000033E2],[17.6774414,-31.019043],[17.3470703,-30.4448242],[17.1890625,-30.0998047],[16.95,-29.403418],[0.16739453124999983E2,-29.009375],[0.16480761718750045E2,-0.28641503906249966E2],[0.16487109375000017E2,-0.28572851562500016E2],[0.16755761718750023E2,-28.4521484],[16.8101562,-0.28264550781249994E2],[16.9333008,-28.0696289],[17.05625,-28.0310547],[0.17149414062500025E2,-0.28082226562499983E2],[17.2045898,-28.1988281],[0.17312011718750025E2,-0.28228613281249963E2],[17.3857422,-28.3532227],[0.17342578125000017E2,-0.28451660156250014E2],[17.4479492,-0.28698144531249966E2],[0.17699316406250063E2,-0.28768359374999957E2],[17.9760742,-0.28811328125000014E2],[0.18102734374999983E2,-28.8716797],[0.18310839843750017E2,-0.28886230468749996E2],[0.18600390625000045E2,-28.8552734],[0.18838769531250023E2,-0.28869140624999986E2],[19.1617187,-28.9387695],[0.19245800781250068E2,-0.28901660156250028E2],[0.19270996093750053E2,-0.28777734375000012E2],[0.19482910156250057E2,-0.28661621093749986E2],[0.19539843750000017E2,-0.28574609375000023E2],[19.6714844,-28.5039062],[19.9804688,-28.4512695],[19.9804688,-24.7767578],[0.20345214843750057E2,-0.25029882812500034E2],[0.20430664062500057E2,-0.25147070312500016E2],[0.20609277343750023E2,-0.25491210937499968E2],[20.7931641,-25.915625],[0.20815039062500034E2,-0.26164941406249994E2],[0.20626757812500045E2,-26.4438477],[0.20641406250000017E2,-26.7421875],[0.20739843749999977E2,-26.8488281],[0.20870898437500042E2,-0.26808789062499983E2],[0.21070996093750036E2,-26.8517578],[0.21454980468750023E2,-26.8328125],[21.6462891,-0.26854199218749994E2],[0.21738085937500045E2,-0.26806835937500026E2],[0.21833203125000068E2,-0.26678320312499963E2],[0.22090917968749977E2,-0.26580175781250034E2],[0.22217578125000045E2,-26.3888672],[0.22548632812500074E2,-0.26178417968749994E2],[0.22640234374999977E2,-0.26071191406249994E2],[0.22878808593750023E2,-0.25457910156250023E2],[0.23022070312500063E2,-0.25324121093750037E2],[0.23266015625000023E2,-0.25266601562500043E2],[23.5214844,-0.25344433593749994E2],[23.89375,-0.25600878906250014E2],[0.24192968750000034E2,-0.25632910156249963E2],[24.3305664,-0.25742871093749983E2],[0.24748144531250002E2,-0.25817382812499982E2],[0.24869238281250063E2,-0.25813476562499986E2],[24.9989258,-0.25754003906250034E2],[0.25213378906249996E2,-25.75625],[0.25443652343750017E2,-0.25714453124999974E2],[0.25583789062500074E2,-25.60625],[0.25852441406250076E2,-0.24935253906250036E2],[25.9121094,-0.24747460937499966E2],[0.26451757812500063E2,-0.24582714843749983E2],[0.26617773437500034E2,-24.3955078],[0.26835058593750063E2,-0.24240820312499963E2],[26.9870117,-0.23704589843749954E2],[27.1463867,-23.5244141],[0.27399218750000074E2,-0.23383593750000017E2],[27.4987305,-0.23368359375000026E2],[27.6438477,-0.23217675781249966E2],[0.27758300781250053E2,-0.23196777343749968E2],[27.8905273,-0.23073925781249997E2],[0.28027929687500006E2,-0.22873730468749983E2],[0.28210156249999983E2,-22.6936523],[0.28381738281250048E2,-22.5933594],[0.28542871093750023E2,-0.22572949218749983E2],[28.8398438,-0.22480859374999966E2],[0.29013476562500045E2,-22.278418],[0.29129882812500057E2,-0.22213281249999977E2],[29.6630859,-0.22146289062500017E2],[29.9023438,-0.22184179687500002E2],[0.30190429687500025E2,-22.2911133]],[[0.27830371093750074E2,-0.28909082031250033E2],[27.7355469,-28.9400391],[0.27527148437500017E2,-29.2361328],[0.27294531250000063E2,-0.29519335937500017E2],[0.27095214843750057E2,-29.5993164],[27.0517578,-0.29664062500000014E2],[27.1304688,-29.8402344],[27.3553711,-0.30158593750000037E2],[0.27388476562500014E2,-0.30315917968750025E2],[0.27491992187500045E2,-30.3639648],[27.753125,-30.6],[28.0181641,-0.30642285156249994E2],[0.28128710937500014E2,-0.30525097656250008E2],[28.1390625,-30.4499023],[28.3920898,-30.1475586],[28.634375,-30.1287109],[0.28901074218750065E2,-0.30038476562499994E2],[29.0980469,-0.29919042968750002E2],[0.29142187500000063E2,-29.7009766],[0.29293554687500002E2,-29.5668945],[0.29390722656250006E2,-0.29269726562499972E2],[0.29301367187500002E2,-29.0898438],[29.1780273,-0.29036914062499957E2],[0.28953710937500038E2,-0.28881445312500002E2],[0.28625781250000017E2,-0.28581738281250054E2],[0.28232617187500036E2,-0.28701269531249977E2],[27.9598633,-0.28873339843750035E2],[0.27830371093750074E2,-0.28909082031250033E2]]]]}}],"_labels":{"ZA":"South Africa"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/ZM.json b/src/api-umbrella/admin-ui/public/maps/ZM.json new file mode 100644 index 000000000..86a867a64 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/ZM.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"ZM"},"geometry":{"type":"Polygon","coordinates":[[[32.9199219,-0.9407421875000011E1],[32.9798828,-9.5203125],[32.9959961,-0.9622851562500003E1],[33.1044922,-9.60263672],[33.1957031,-0.9626171875000011E1],[33.25,-0.9759570312500003E1],[33.3509766,-0.9862207031250007E1],[33.3115234,-0.10037988281250009E2],[33.5289062,-0.10234667968750003E2],[33.5537109,-0.10391308593750011E2],[33.6615234,-10.553125],[33.659082,-0.10590527343750011E2],[33.4647461,-0.10783105468750009E2],[33.3449219,-0.10812695312500011E2],[33.2613281,-10.8933594],[33.3797852,-0.11157910156250011E2],[33.2683594,-11.4039063],[33.2327148,-0.11417675781250011E2],[33.2263672,-0.11534863281250011E2],[33.2882813,-0.11611132812500003E2],[33.3009766,-0.11888183593749998E2],[33.2523438,-0.12112597656250003E2],[33.3401367,-0.12308300781250011E2],[33.4914063,-12.3310547],[33.4832031,-0.12403417968750004E2],[33.3979492,-12.4898438],[0.33021582031250006E2,-12.6304688],[32.9456055,-0.12804394531250011E2],[33,-0.12899609375000011E2],[32.9675781,-13.225],[32.8518555,-13.4570312],[32.6720703,-13.6103516],[32.7717773,-0.13656542968750003E2],[32.8067383,-0.13710253906250003E2],[32.7651367,-0.13761035156250003E2],[32.8671875,-13.8173828],[32.9920898,-0.14022167968750011E2],[33.1480469,-13.940918],[0.33201757812500006E2,-14.0133789],[32.2728516,-14.3230469],[0.31728906250000023E2,-14.4960938],[0.31537890625000017E2,-14.5771484],[0.30673339843749996E2,-14.8191406],[0.30231835937500023E2,-0.14990332031250004E2],[30.2521484,-15.1832031],[0.30350585937499996E2,-0.15349707031250004E2],[30.3960937,-15.6430664],[0.29729589843750006E2,-0.15644628906250004E2],[0.29487304687500004E2,-0.15696777343749998E2],[0.29287890625000017E2,-0.15776464843750006E2],[0.28913085937499996E2,-0.15987792968749998E2],[0.28856738281250014E2,-16.1422852],[0.28856738281250014E2,-16.3061523],[0.28832714843750015E2,-0.16424121093750003E2],[28.7606445,-16.5319336],[0.28399804687500023E2,-16.662793],[28.1637695,-16.7697266],[0.27932226562500002E2,-16.8961914],[27.756543,-0.17060351562500003E2],[27.6367188,-17.2621094],[0.27437890625000023E2,-17.5119141],[0.27020800781250014E2,-17.9583984],[0.26779882812500006E2,-18.0415039],[0.26577539062500023E2,-0.18022558593750002E2],[0.26333398437500023E2,-17.9292969],[0.26139550781250023E2,-17.9117187],[0.25995898437500017E2,-0.17969824218750006E2],[25.8632812,-17.9519531],[0.25741601562500023E2,-17.8582031],[25.6396484,-17.8241211],[0.25451757812500002E2,-17.8451172],[25.2587891,-0.17793554687500006E2],[0.25092187500000023E2,-17.634375],[0.24932421875000017E2,-17.543457],[24.7329102,-17.5177734],[24.2749023,-0.17481054687500006E2],[23.7992188,-17.5601562],[0.23380664062500017E2,-17.640625],[0.22955859375000014E2,-0.17285742187500006E2],[0.22545996093750006E2,-0.16910253906250006E2],[22.4594727,-16.8151367],[0.22305078125000023E2,-0.16689550781250006E2],[0.22150683593750017E2,-16.597168],[22.0402344,-0.16262792968750002E2],[0.21979785156250017E2,-0.15955566406249998E2],[0.21978906250000023E2,-13.0009766],[0.23843164062500023E2,-13.0009766],[0.23962988281250006E2,-0.12988476562500011E2],[23.8824219,-0.12799023437500011E2],[23.909375,-0.12636132812500009E2],[0.23991308593750006E2,-0.12422167968750001E2],[0.23996484375000023E2,-0.12350683593750006E2],[0.23958886718750023E2,-0.12117773437500004E2],[0.23983886718749996E2,-11.725],[0.23970996093750017E2,-0.11635839843750006E2],[0.24046679687500017E2,-0.11405371093750006E2],[24.0255859,-11.315625],[23.9665039,-0.10871777343750011E2],[0.24078417968750014E2,-0.10891503906250009E2],[0.24136523437500017E2,-0.11025976562500006E2],[24.3199219,-11.0717773],[24.3657227,-11.1298828],[0.24396289062500017E2,-0.11255175781250003E2],[24.3351563,-11.3712891],[24.3779297,-0.11417089843750006E2],[0.24518554687499996E2,-11.4384766],[0.24668261718750017E2,-0.11352929687500009E2],[24.8768555,-0.11299121093750003E2],[0.25184863281250017E2,-11.2429687],[0.25245996093750023E2,-0.11212402343749998E2],[25.3193359,-0.11236914062500004E2],[0.25282617187500023E2,-0.11404980468750011E2],[0.25349414062500017E2,-11.6230469],[25.5119141,-0.11753417968749998E2],[25.6188477,-11.7441406],[0.25854882812500023E2,-0.11820117187500001E2],[0.26025976562500006E2,-11.8901367],[0.26596386718750008E2,-0.11972070312500009E2],[26.7296875,-0.11975976562500009E2],[0.26890429687500014E2,-0.11943554687500011E2],[0.26949609375000023E2,-11.8988281],[27.0460938,-0.11615917968750011E2],[0.27159179687499996E2,-0.11579199218750006E2],[0.27196386718750002E2,-11.6050781],[0.27238085937500017E2,-0.11783496093750003E2],[0.27423632812500017E2,-11.9445313],[0.27533398437500008E2,-12.1953125],[0.27644335937500017E2,-0.12266796875000011E2],[27.8574219,-0.12284863281250011E2],[0.28357714843750017E2,-12.4820313],[0.28412890625000014E2,-12.5180664],[0.28474414062500017E2,-0.12623339843750003E2],[0.28550878906250006E2,-12.8361328],[0.28672949218750006E2,-12.8613281],[28.7731445,-0.12981933593749998E2],[0.28921679687500017E2,-0.13214648437500003E2],[0.28942285156250023E2,-0.13307128906249998E2],[0.29014257812500002E2,-0.13368847656250011E2],[29.2018555,-0.13398339843750009E2],[29.5541992,-0.13248925781250009E2],[0.29630273437500023E2,-0.13298535156250011E2],[0.29651757812500023E2,-0.13414355468750001E2],[0.29775195312500017E2,-0.13438085937500006E2],[29.7964844,-0.13369726562500006E2],[29.7951172,-0.12155468750000011E2],[0.29691992187500006E2,-0.12198339843750006E2],[29.5597656,-0.12202441406250003E2],[0.29491992187500014E2,-0.12266894531250003E2],[29.5048828,-0.12386132812500009E2],[0.29427539062500014E2,-12.43125],[29.0643555,-0.12348828125000011E2],[28.85,-0.12120507812500007E2],[0.28574609375000023E2,-0.11908105468750009E2],[0.28482519531250006E2,-11.8121094],[0.28357226562500014E2,-0.11483007812500006E2],[0.28404199218750023E2,-0.11354394531250009E2],[0.28517968750000023E2,-10.9332031],[0.28544238281250017E2,-10.8023438],[0.28638867187500008E2,-0.10669238281250003E2],[0.28645507812499996E2,-0.10550195312500009E2],[28.6074219,-0.10397363281250009E2],[28.6171875,-10.3129883],[28.6300781,-9.83125],[28.6041992,-9.67880859],[28.5405273,-0.9510058593750003E1],[0.28400195312500014E2,-9.275],[0.28400683593750017E2,-0.9224804687500011E1],[0.28616503906250017E2,-9.07226562],[0.28793554687500006E2,-8.89101562],[0.28917773437500014E2,-8.70058594],[0.28934472656250023E2,-8.59023437],[28.8981445,-8.48544922],[28.9722656,-8.46494141],[30.7511719,-8.19365234],[0.30830664062500006E2,-8.38554687],[30.9683594,-8.55097656],[31.0763672,-8.61191406],[0.31350585937499996E2,-8.60703125],[0.31534863281250008E2,-8.71328125],[31.55625,-8.80546875],[0.31673632812500017E2,-8.90878906],[0.31818066406250015E2,-8.90224609],[31.9186523,-8.9421875],[31.9425781,-0.9054003906250003E1],[32.1297852,-9.07333984],[32.2208984,-9.12558594],[32.4332031,-9.15634766],[32.4871094,-0.9212695312500003E1],[32.7566406,-9.32226562],[32.9199219,-0.9407421875000011E1]]]}}],"_labels":{"ZM":"Zambia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/ZW.json b/src/api-umbrella/admin-ui/public/maps/ZW.json new file mode 100644 index 000000000..887b58ce0 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/ZW.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"ZW"},"geometry":{"type":"Polygon","coordinates":[[[0.31287890625000014E2,-22.4020508],[31.0734375,-22.3078125],[0.30916113281250002E2,-22.2907227],[0.30460156250000015E2,-0.22329003906250005E2],[30.1904297,-0.22291113281250002E2],[29.9023438,-0.22184179687500002E2],[29.6630859,-22.1462891],[29.3648437,-0.22193945312500006E2],[0.29237207031250023E2,-22.0794922],[0.29106835937500023E2,-0.22065722656250003E2],[29.0158203,-21.9399414],[29.0373047,-21.8113281],[0.28532031250000017E2,-21.6512695],[28.0456055,-21.5730469],[0.27844140625000023E2,-0.21261523437500003E2],[27.6694336,-21.0642578],[27.7042969,-20.7664062],[27.6996094,-20.5306641],[27.6246094,-20.4835938],[27.2807617,-20.4787109],[0.27221484375000017E2,-0.20145800781250003E2],[27.0917969,-20.0541992],[0.26678222656249996E2,-19.8927734],[0.26241015625000017E2,-19.5693359],[0.26168066406250002E2,-19.5382813],[25.9506836,-19.0817383],[0.25939355468750023E2,-18.9386719],[0.25811914062500023E2,-18.7970703],[25.7612305,-18.6492187],[0.25489257812499996E2,-18.3512695],[25.384375,-18.1419922],[0.25224023437500023E2,-17.9152344],[25.2587891,-0.17793554687500006E2],[0.25451757812500002E2,-17.8451172],[25.6396484,-17.8241211],[25.8632812,-17.9519531],[0.25995898437500017E2,-0.17969824218750006E2],[0.26139550781250023E2,-17.9117187],[0.26333398437500023E2,-17.9292969],[0.26577539062500023E2,-0.18022558593750002E2],[0.26779882812500006E2,-18.0415039],[0.27020800781250014E2,-17.9583984],[0.27437890625000023E2,-17.5119141],[27.6367188,-17.2621094],[27.756543,-0.17060351562500003E2],[0.27932226562500002E2,-16.8961914],[0.28399804687500023E2,-16.662793],[28.7606445,-16.5319336],[0.28832714843750015E2,-0.16424121093750003E2],[0.28856738281250014E2,-16.1422852],[0.28913085937499996E2,-0.15987792968749998E2],[0.29287890625000017E2,-0.15776464843750006E2],[0.29729589843750006E2,-0.15644628906250004E2],[30.3960937,-15.6430664],[0.30437792968750017E2,-0.15995312500000011E2],[0.31236230468750023E2,-16.0236328],[31.4898437,-16.1796875],[0.31687597656250006E2,-16.2141602],[0.31939843750000023E2,-0.16428808593750006E2],[0.32243261718750006E2,-16.4487305],[32.6358398,-16.5894531],[32.7417969,-16.6776367],[32.9480469,-16.7123047],[32.8762695,-16.8835937],[32.884375,-0.17037792968750008E2],[0.32969335937500006E2,-17.2515625],[32.9807617,-17.4375],[32.9555664,-18.0829102],[32.9930664,-18.3595703],[32.8544922,-18.7636719],[32.7219727,-0.18828417968750003E2],[32.7165039,-19.0018555],[32.8498047,-19.1043945],[32.7776367,-0.19388769531250006E2],[32.8307617,-19.5582031],[33.0067383,-19.8738281],[32.9927734,-0.19984863281249996E2],[32.6725586,-20.5161133],[32.5292969,-20.6130859],[32.4776367,-0.20712988281250002E2],[32.4761719,-20.9500977],[32.3536133,-0.21136523437500003E2],[0.32429785156250006E2,-21.2970703],[32.3710938,-21.3348633],[0.31429492187500014E2,-22.2988281],[0.31287890625000014E2,-22.4020508]]]}}],"_labels":{"ZW":"Zimbabwe"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/public/maps/world.json b/src/api-umbrella/admin-ui/public/maps/world.json new file mode 100644 index 000000000..16e9a1db7 --- /dev/null +++ b/src/api-umbrella/admin-ui/public/maps/world.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"AF"},"geometry":{"type":"Polygon","coordinates":[[[61.2108171,0.35650072333309225E2],[0.62230651483005886E2,0.35270663967422294E2],[64.5464791,36.3120733],[64.7461052,0.37111817735333304E2],[65.7456307,37.661164],[66.5186068,37.3627843],[67.8299996,37.144994],[70.1165784,37.5882228],[70.8068205,0.38486281643216415E2],[71.5419178,0.37905774441065645E2],[71.8446383,36.7381713],[73.2600558,37.4952569],[74.9800025,0.37419990139305895E2],[75.1580278,37.1330309],[71.8462919,36.5099423],[71.2623483,0.36074387518857804E2],[71.6130762,0.35153203436822864E2],[70.881803,33.9888559],[69.9305432,34.0201201],[70.3235942,33.3585326],[69.6871473,0.33105498969041236E2],[68.9266769,0.31620189113892064E2],[66.9388912,0.31304911200479353E2],[66.3814576,30.7388992],[66.3464726,0.29887943427036177E2],[65.046862,0.29472180691031905E2],[62.5498568,29.3185725],[0.60874248488208785E2,0.29829238999952604E2],[0.61781221551363444E2,0.30735850328081234E2],[0.61699314406180825E2,31.3795061],[60.9419446,0.31548074652628753E2],[60.5284298,0.33676446031218006E2],[61.2108171,0.35650072333309225E2]]]}},{"type":"Feature","properties":{"name":"AO"},"geometry":{"type":"MultiPolygon","coordinates":[[[[16.57318,-6.62264455],[0.17472970004962292E2,-8.06855112],[19.0167517,-7.98824594],[0.19417502475673217E2,-7.15542856],[0.21728110792739756E2,-7.29087249],[0.22155268182064333E2,-0.11084801120653779E2],[0.23912215203555746E2,-0.10926826267137542E2],[0.24016136508894704E2,-0.12911046237848552E2],[0.21933886346125945E2,-0.12898437188369357E2],[0.21887842644953878E2,-0.16080310153876894E2],[0.23215048455506093E2,-0.17523116143465952E2],[0.21377176141045595E2,-17.9306365],[18.956187,-0.17789094740472237E2],[18.2633094,-0.17309950860262006E2],[0.14209706658595051E2,-0.17353100681225712E2],[0.12814081251688407E2,-0.16941342868724078E2],[0.11734198846085148E2,-17.3018893],[11.6400961,-16.6731422],[0.12175618930722266E2,-0.14449143568583892E2],[0.12738478631245442E2,-0.13137905775609935E2],[0.13633721144269828E2,-0.12038644707897191E2],[0.13686379428775297E2,-0.10731075941615842E2],[0.12875369500386569E2,-9.16693369],[0.13236432732809874E2,-8.56262949],[0.12322431674863566E2,-6.10009246],[0.13375597364971895E2,-5.86424122],[0.16326528354567046E2,-5.87747039],[16.57318,-6.62264455]]],[[[0.12436688266660923E2,-5.68430389],[0.11914963006242116E2,-5.03798675],[12.6207597,-4.43802337],[0.12995517205465205E2,-4.7811032],[0.12436688266660923E2,-5.68430389]]]]}},{"type":"Feature","properties":{"name":"AL"},"geometry":{"type":"Polygon","coordinates":[[[21.0200403,40.842727],[20.1500159,39.6249977],[0.19406081984136733E2,0.40250773423822466E2],[0.19738051385179627E2,0.42688247382165564E2],[20.0707,42.58863],[20.52295,42.21787],[0.20605181919037364E2,41.0862263],[21.0200403,40.842727]]]}},{"type":"Feature","properties":{"name":"AE"},"geometry":{"type":"Polygon","coordinates":[[[51.5795187,0.24245497137951105E2],[54.0080009,0.24121757920828212E2],[56.0708208,0.26055464178973978E2],[0.56396847365144005E2,0.24924732163995486E2],[55.8862325,0.24920830593357444E2],[55.2083411,0.22708329982997046E2],[55.006803,0.22496947536707136E2],[0.52000733270074335E2,23.0011545],[51.5795187,0.24245497137951105E2]]]}},{"type":"Feature","properties":{"name":"AR"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-66.95992,-54.89681],[-67.56244,-54.87001],[-68.63335,-54.8695],[-68.6340102,-52.6363705],[-67.75,-53.85],[-66.45,-54.45],[-65.05,-54.7],[-65.5,-55.2],[-66.95992,-54.89681]]],[[[-68.5715454,-52.2994439],[-71.9148038,-0.52009022305865926E2],[-72.3099735,-0.50677009779666356E2],[-73.3280509,-50.3787851],[-73.4154358,-49.3184364],[-72.6482474,-48.8786183],[-72.4473553,-47.7385328],[-71.9172585,-46.8848381],[-71.2227789,-0.44784242852559416E2],[-71.7936226,-44.2071721],[-72.1488981,-42.2548882],[-71.7468038,-0.42051386407235995E2],[-71.915734,-40.8323394],[-71.4135166,-0.38916022230791114E2],[-70.8146643,-38.5529953],[-71.1218807,-36.6581239],[-70.3647693,-0.36005088799789945E2],[-70.3880495,-35.1696876],[-69.8173091,-0.34193571465798286E2],[-70.5350689,-0.31365010267870286E2],[-69.9190083,-0.30336339206668313E2],[-70.0135504,-29.3679229],[-69.6561303,-0.28459141127233693E2],[-68.2955416,-26.8993397],[-68.417653,-0.24518554782816878E2],[-67.328443,-24.0253032],[-67.1066736,-22.7359246],[-66.2733394,-0.21832310479420684E2],[-64.9648921,-0.22075861504812348E2],[-64.377021,-0.22798091322523547E2],[-63.9868381,-0.21993644301035957E2],[-0.62846468471921554E2,-0.22034985446869456E2],[-60.8465647,-23.8807126],[-60.028966,-0.24032796319273245E2],[-57.7772172,-25.1623398],[-57.63366,-25.6036565],[-58.6181736,-27.1237188],[-56.4867016,-27.548499],[-55.6958455,-27.387837],[-54.7887949,-0.26621785577096087E2],[-0.54625290696823555E2,-0.25739255466415486E2],[-53.628349,-0.26124865004177437E2],[-0.53648735317587885E2,-26.9234726],[-55.1622863,-27.8819154],[-57.6251334,-0.30216294854454244E2],[-58.1424404,-32.0445037],[-58.4954421,-34.4314898],[-0.57225829637263644E2,-35.2880266],[-0.57362358771378744E2,-0.35977390232081504E2],[-56.7882853,-0.36901571547189334E2],[-57.7491569,-0.38183870538079915E2],[-0.59231857062401865E2,-0.38720220228837206E2],[-61.2374452,-0.38928424574541154E2],[-62.335957,-38.8277072],[-62.1459944,-40.6768967],[-63.7704948,-0.41166789239263665E2],[-65.1180352,-41.0643149],[-64.9785606,-42.058001],[-63.7559478,-42.0436866],[-63.458059,-0.42563138116222355E2],[-65.181804,-0.43495380954767796E2],[-65.5652689,-45.0367856],[-66.5099658,-45.0396278],[-67.2937939,-45.5518963],[-67.5805464,-46.301773],[-66.5970664,-47.0339247],[-65.6410266,-0.47236134535511894E2],[-65.9850883,-48.1332891],[-67.166179,-0.48697337334996945E2],[-67.8160876,-49.8696689],[-69.1385392,-50.7325103],[-68.5715454,-52.2994439]]]]}},{"type":"Feature","properties":{"name":"AM"},"geometry":{"type":"Polygon","coordinates":[[[0.43582745802592726E2,41.0921433],[44.9724801,0.41248128567055595E2],[45.8919072,40.2184757],[45.6100122,39.8999938],[46.483499,0.39464154771475535E2],[46.5057198,0.38770605373686294E2],[46.1436231,38.7412015],[45.7399785,39.4739991],[44.7939897,39.7130026],[43.6564364,0.40253563951166186E2],[0.43582745802592726E2,41.0921433]]]}},{"type":"Feature","properties":{"name":"TF"},"geometry":{"type":"Polygon","coordinates":[[[68.935,-48.625],[70.525,-49.065],[70.28,-49.71],[68.745,-49.775],[68.935,-48.625]]]}},{"type":"Feature","properties":{"name":"AU"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.14539797814349484E3,-40.7925485],[0.14636412072162372E3,-41.1376954],[0.14828906782449602E3,-40.8754375],[0.14835986453673584E3,-42.0624452],[147.914052,-0.43211522312188485E2],[147.564564,-42.9376889],[0.14687034305235494E3,-0.43634597263362096E2],[0.14604837772032042E3,-43.5497446],[0.14471807132383063E3,-0.41162551771815714E2],[0.14539797814349484E3,-40.7925485]]],[[[0.14356181115129996E3,-0.13763655694232213E2],[0.14392209923723894E3,-0.14548310642152003E2],[0.14456371382057486E3,-0.14171176039285882E2],[0.14537472374896348E3,-0.14984976495018286E2],[0.14563703331927695E3,-0.16784918308176614E2],[146.387478,-18.958274],[0.14884841352762322E3,-20.3912098],[0.14967833703023067E3,-0.22342511895438392E2],[0.15072726525289121E3,-22.4024049],[0.15089955447815228E3,-0.23462236830338682E2],[0.15285519738180594E3,-0.25267501316023015E2],[153.092909,-27.2602996],[153.569469,-28.1100668],[152.891578,-0.31640445651985956E2],[0.15245000247620536E3,-0.32550002536755244E2],[0.15170911746643682E3,-0.33041342054986345E2],[0.15007521203023228E3,-36.4202056],[0.14999728397033616E3,-37.4252605],[0.14830462243061592E3,-37.8090614],[146.317922,-39.0357565],[0.14487697635312816E3,-38.417448],[0.14503221235573298E3,-0.37896187839510986E2],[143.609974,-38.8094654],[0.14063857872941324E3,-0.38019332777662555E2],[0.13999215823787435E3,-37.4029363],[0.13957414757706525E3,-36.1383623],[0.13812074791885632E3,-0.35612296237939404E2],[138.207564,-34.3847226],[0.13771917036351616E3,-35.076825],[0.13682940555231474E3,-35.2605348],[0.13789011600153768E3,-0.33640478610978334E2],[0.13781032759007914E3,-32.900007],[0.13637206912653167E3,-34.0947661],[0.13598904341038437E3,-34.8901181],[0.13520821251845413E3,-34.4786703],[0.13523921837782916E3,-33.9479534],[0.13408590376193914E3,-0.32848072198214766E2],[0.13427390262261704E3,-32.6172336],[0.13132633060112093E3,-0.31495803318001048E2],[129.535794,-0.31590422865527483E2],[0.12710286746633831E3,-32.2822669],[0.12614871382050116E3,-32.2159661],[0.12422164798390494E3,-32.9594866],[0.12365966678273072E3,-33.8901791],[121.299191,-33.8210361],[0.11989369510302824E3,-0.33976065362281815E2],[0.11802497195848953E3,-0.35064732761374714E2],[0.11662510908413495E3,-35.0250969],[0.11502680870977954E3,-0.34196517022438925E2],[0.11571467370001668E3,-33.2595716],[0.11568961063035513E3,-31.612437],[0.11516090905157697E3,-30.6015943],[0.11504003787644628E3,-0.29461095472940798E2],[0.11417357913620847E3,-28.1180767],[0.11344096235560662E3,-0.25621278171493156E2],[0.11421616051641703E3,-0.25786281019801105E2],[0.11339352339076267E3,-24.3847645],[114.149756,-0.21755881036061012E2],[0.11464776207891869E3,-0.21829519952076904E2],[0.11671161543179156E3,-20.7016818],[0.11744154503791427E3,-0.20746898695562162E2],[0.12085622033089666E3,-19.6837078],[0.12224166548064177E3,-18.1976486],[0.12231277225147544E3,-17.2549671],[0.12301257449757193E3,-0.16405199883695857E2],[0.12343378909718304E3,-0.17268558037996225E2],[0.12381707319549193E3,-0.16111316013251994E2],[125.685796,-0.14230655612853838E2],[0.12706586714081735E3,-0.13817967624570926E2],[0.12835968997610897E3,-0.14869169610252257E2],[0.12962147342337963E3,-0.14969783623924556E2],[129.4096,-0.14420669854391035E2],[130.617795,-0.12536392103732467E2],[0.13122349450086003E3,-0.12183648776908115E2],[0.13257529829318312E3,-0.12114040622611014E2],[0.13235722374891142E3,-0.11128519382372644E2],[0.13355084598198906E3,-0.11786515394745138E2],[0.13529849124566803E3,-0.12248606052299051E2],[0.13649247521377166E3,-0.11857208754120393E2],[0.13695162031468502E3,-0.12351958916882737E2],[0.13542866417861123E3,-14.7154322],[0.13926057498591823E3,-0.17371600843986187E2],[140.215245,-0.17710804945550066E2],[0.14087546349503927E3,-0.17369068698803943E2],[0.14170218305884467E3,-15.0449212],[0.14151986860571898E3,-0.13698078301653808E2],[141.68699,-0.12407614434461138E2],[0.14251526004452498E3,-0.10668185723516643E2],[143.522124,-0.12834358412327433E2],[0.14356181115129996E3,-0.13763655694232213E2]]]]}},{"type":"Feature","properties":{"name":"AT"},"geometry":{"type":"Polygon","coordinates":[[[0.16979666782304037E2,0.48123497015976305E2],[0.16202298211337364E2,46.852386],[14.6324716,46.4318173],[0.13806475457421527E2,0.46509306138691215E2],[0.12376485223040817E2,46.7675591],[0.12153088006243054E2,47.1153932],[10.4427015,46.8935463],[0.9479969516649021E1,47.10281],[9.59422611,47.5250581],[9.89606815,0.47580196845075704E2],[13.0258513,0.47637583523135824E2],[0.12884102817443903E2,48.2891458],[0.13595945672264437E2,48.8771719],[14.3388977,48.5553053],[0.15253415561593982E2,0.49039074205107575E2],[0.16960288120194576E2,48.5969823],[0.16979666782304037E2,0.48123497015976305E2]]]}},{"type":"Feature","properties":{"name":"AZ"},"geometry":{"type":"MultiPolygon","coordinates":[[[[46.1436231,38.7412015],[0.45457721795438744E2,0.38874139105783115E2],[0.44793989699082005E2,0.39713002631177034E2],[0.45739978468617004E2,0.39473999131827156E2],[46.1436231,38.7412015]]],[[[46.483499,0.39464154771475535E2],[45.6100122,39.8999938],[45.8919072,0.40218475653639985E2],[45.2174264,41.4114519],[0.46501637404166985E2,41.0644447],[46.1454318,41.7228024],[46.6860706,0.41827137152669906E2],[47.8156657,0.41151416124021345E2],[48.5843527,0.41808869533854676E2],[49.6189148,40.5729243],[0.49223228387250714E2,39.0492189],[0.48634375441284845E2,38.2703775],[0.47685079380083124E2,39.508364],[46.5057198,0.38770605373686266E2],[46.483499,0.39464154771475535E2]]]]}},{"type":"Feature","properties":{"name":"BI"},"geometry":{"type":"Polygon","coordinates":[[[0.29339997592900346E2,-4.49998341],[0.29024926385216787E2,-2.83925791],[0.30469696079232985E2,-2.41385752],[30.7522628,-3.35932952],[0.29339997592900346E2,-4.49998341]]]}},{"type":"Feature","properties":{"name":"BE"},"geometry":{"type":"Polygon","coordinates":[[[4.04707116,51.2672586],[4.97399133,0.51475023708698124E2],[6.15665816,50.803721],[6.04307336,0.50128051662794235E2],[5.67405195,0.49529483547557504E2],[3.58818444,50.3789924],[2.51357303,51.1485062],[4.04707116,51.2672586]]]}},{"type":"Feature","properties":{"name":"BJ"},"geometry":{"type":"Polygon","coordinates":[[[2.69170169,6.25881725],[1.86524051,6.1421577],[1.61895064,6.83203807],[1.66447757,9.1285904],[0.772335646,0.10470808213742359E2],[0.899563022,10.9973394],[2.1544735,0.11940150051313337E2],[2.84864302,0.12235635891158267E2],[3.61118045,0.11660167141155966E2],[3.70543827,0.10063210354040208E2],[2.72379276,8.5068454],[2.69170169,6.25881725]]]}},{"type":"Feature","properties":{"name":"BF"},"geometry":{"type":"Polygon","coordinates":[[[-2.8274963,9.64246084],[-4.33024695,9.61083487],[-5.4043416,0.10370736802609146E2],[-5.22094194,0.11713858954307227E2],[-4.00639075,0.13472485459848116E2],[-3.5228027,0.13337661647998615E2],[-2.00103512,0.14559008287000891E2],[-0.515854458,0.15116157741755726E2],[0.374892205,0.14928908189346132E2],[0.429927606,0.13988733018443924E2],[1.02410322,0.12851825669806574E2],[2.17710778,0.12625017808477534E2],[2.1544735,0.11940150051313337E2],[0.899563022,10.9973394],[0.0238025244,0.11018681748900804E2],[-2.94040931,0.10962690334512558E2],[-2.8274963,9.64246084]]]}},{"type":"Feature","properties":{"name":"BD"},"geometry":{"type":"Polygon","coordinates":[[[92.672721,0.22041238918541254E2],[92.3685535,0.20670883287025347E2],[91.417087,22.765019],[90.4960063,22.8050166],[90.2729708,21.8363677],[89.0319613,0.22055708319582976E2],[88.0844222,0.24501657212821925E2],[88.931554,0.25238692328384776E2],[88.2097893,25.7680657],[88.5630494,26.4465256],[89.8324809,25.9650821],[89.9206926,25.2697499],[0.9237620161333481E2,0.24976692816664965E2],[0.9115896325069971E2,23.5035269],[0.9170647505083211E2,0.22985263983649183E2],[0.9214603478390681E2,0.23627498684172593E2],[92.672721,0.22041238918541254E2]]]}},{"type":"Feature","properties":{"name":"BG"},"geometry":{"type":"Polygon","coordinates":[[[22.6571497,44.234923],[0.22944832391051847E2,43.8237853],[0.25569271681426926E2,43.6884447],[0.27242399529740908E2,0.44175986029632405E2],[0.28558081495891997E2,43.7074617],[27.6738977,0.42577892361006214E2],[27.9967204,42.0073587],[0.26117041863720797E2,41.8269046],[0.26106138136507212E2,41.3288988],[24.4926449,0.41583896185872035E2],[0.22952377150166452E2,41.3379939],[0.22380525750424592E2,42.3202595],[0.22986018507588483E2,0.43211161200526966E2],[22.6571497,44.234923]]]}},{"type":"Feature","properties":{"name":"BS"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.53466,23.75975],[-78.40848,24.57564],[-77.89,25.17],[-77.53466,23.75975]]],[[[-77.82,26.58],[-77.82,26.58],[-77.82,26.58],[-77.82,26.58]]],[[[-77,26.59],[-77,26.59],[-77,26.59],[-77,26.59]]]]}},{"type":"Feature","properties":{"name":"BA"},"geometry":{"type":"Polygon","coordinates":[[[19.0054863,44.8602337],[19.36803,44.863],[19.59976,44.03847],[19.21852,43.52384],[18.56,42.65],[0.17674921502358984E2,43.0285625],[0.15750026075918981E2,44.8187117],[0.17002146030351014E2,0.45233776760430935E2],[0.18553214145591653E2,45.0815897],[19.0054863,44.8602337]]]}},{"type":"Feature","properties":{"name":"BY"},"geometry":{"type":"Polygon","coordinates":[[[23.4841276,53.9124977],[0.25536353794056993E2,54.2824234],[26.5882792,55.1671756],[0.26494331495883753E2,0.55615106919977634E2],[0.28176709425577993E2,56.16913],[0.30873909132620007E2,55.5509765],[0.30757533807098717E2,54.8117709],[0.31731272820774507E2,53.7940294],[32.693643,53.3514208],[0.31305200636528014E2,53.0739959],[0.31785998162571587E2,0.52101677964885454E2],[0.30927549269338982E2,52.0423534],[0.30555117221811457E2,51.3195035],[28.6176127,51.4277139],[0.26337958611768556E2,51.8322887],[0.24553106316839518E2,0.51888461005249184E2],[23.5270708,51.5784541],[0.23199493849386187E2,0.52486977444053664E2],[0.23799198846133375E2,52.6910994],[23.4841276,53.9124977]]]}},{"type":"Feature","properties":{"name":"BZ"},"geometry":{"type":"Polygon","coordinates":[[[-89.1430804,17.808319],[-88.1068129,0.18348673610909287E2],[-88.3554282,0.16530774237529627E2],[-88.9306128,0.15887273464415074E2],[-89.2291217,15.8869376],[-89.1430804,17.808319]]]}},{"type":"Feature","properties":{"name":"BO"},"geometry":{"type":"Polygon","coordinates":[[[-69.5904238,-0.17580011895419332E2],[-68.9596354,-16.5006979],[-69.3897642,-0.15660129082911654E2],[-68.9488867,-0.14453639418193283E2],[-68.6650797,-0.12561300144097173E2],[-69.5296781,-0.10951734307502194E2],[-68.2712536,-11.0145212],[-66.6469083,-9.93133148],[-65.3384352,-9.76198781],[-65.4022815,-0.11566270440317153E2],[-64.3163529,-0.12461978041232191E2],[-63.1964988,-0.12627032565972433E2],[-61.7132043,-0.13489202162330052E2],[-0.60503304002511136E2,-0.13775954685117659E2],[-0.60158389655179036E2,-0.16258283786690082E2],[-58.2412199,-0.16299573256091293E2],[-58.280804,-0.17271710300366017E2],[-0.57498371141170985E2,-0.18174187513911292E2],[-0.58166392381408045E2,-0.20176700941653678E2],[-0.59115042487206104E2,-0.19356906019775398E2],[-0.61786326463453776E2,-0.19633736667562964E2],[-62.2659613,-0.20513734633061276E2],[-0.62685057135657885E2,-0.22249029229422387E2],[-63.9868381,-21.9936443],[-64.377021,-22.7980913],[-64.9648921,-0.22075861504812327E2],[-66.2733394,-21.8323105],[-67.1066736,-0.22735924574476414E2],[-67.8281799,-0.22872918796482175E2],[-68.7571671,-0.20372657972904463E2],[-68.4422251,-19.4050685],[-68.9668184,-0.18981683444904107E2],[-69.5904238,-0.17580011895419332E2]]]}},{"type":"Feature","properties":{"name":"BR"},"geometry":{"type":"Polygon","coordinates":[[[-57.6251334,-0.30216294854454258E2],[-55.1622863,-0.27881915378533463E2],[-0.53648735317587885E2,-0.26923472588816086E2],[-53.628349,-0.26124865004177472E2],[-0.54625290696823576E2,-25.7392555],[-54.2929596,-24.0210141],[-55.4007472,-0.23956935316668805E2],[-0.55610682745981144E2,-0.22655619398694842E2],[-56.4733174,-0.22086300144135283E2],[-0.57937155727761294E2,-0.22090175876557172E2],[-57.870674,-20.7326877],[-0.58166392381408045E2,-0.20176700941653678E2],[-0.57498371141170985E2,-0.18174187513911292E2],[-58.280804,-0.17271710300366017E2],[-58.2412199,-0.16299573256091293E2],[-0.60158389655179036E2,-0.16258283786690082E2],[-0.60503304002511136E2,-0.13775954685117659E2],[-61.7132043,-0.13489202162330052E2],[-63.1964988,-0.12627032565972433E2],[-64.3163529,-0.12461978041232191E2],[-65.4022815,-0.11566270440317153E2],[-65.3384352,-9.76198781],[-66.6469083,-9.93133148],[-68.2712536,-11.0145212],[-69.5296781,-0.10951734307502194E2],[-70.5486857,-0.11009146823778465E2],[-70.4818939,-0.9490118096558845E1],[-71.3024123,-0.10079436130415374E2],[-72.1848907,-0.10053597914269432E2],[-73.9872355,-7.52382985],[-73.1200274,-6.62993092],[-72.8919277,-5.27456146],[-70.7947688,-4.25126474],[-69.8936352,-4.29818694],[-69.4441019,-1.55628712],[-70.0155658,0.541414293],[-69.8169732,1.7148052],[-67.868565,1.69245515],[-67.53781,2.03716279],[-66.8763259,1.2533605],[-66.3257651,0.724452216],[-64.1993058,1.49285493],[-63.4228674,2.41106761],[-64.2699992,2.49700552],[-64.6286594,4.14848094],[-63.0931976,3.77057119],[-60.9668933,4.5364676],[-60.7335742,5.20027721],[-59.9809586,5.01406118],[-59.5380399,3.9588026],[-59.9745249,2.75523265],[-59.6460437,1.78689383],[-59.0308616,1.31769766],[-0.56539385748914555E2,1.89952261],[-0.55973322109589375E2,2.51036388],[-54.5247542,2.31184886],[-53.4184651,2.05338919],[-52.5564247,2.50470531],[-51.6577974,4.15623241],[-51.3171464,4.20349051],[-0.50508875291533656E2,1.90156383],[-0.49947100796088705E2,1.04618968],[-0.50699251268096916E2,0.222984117],[-50.3882108,-0.0784445125],[-48.6205668,-0.23548919],[-48.5844966,-1.23780527],[-0.47824956427590635E2,-0.581617934],[-0.44905703090990414E2,-1.5517396],[-44.5815885,-2.69130828],[-0.43418791266440195E2,-2.38311004],[-41.4726568,-2.91201832],[-39.9786653,-2.87305429],[-38.5003835,-3.70065236],[-37.2232521,-4.82094573],[-35.235389,-5.46493743],[-0.34729993455533034E2,-7.34322072],[-35.128212,-8.99640146],[-37.0465187,-0.11040721123908801E2],[-0.38953275722802545E2,-0.13793369642800023E2],[-38.8822981,-0.15667053724838768E2],[-39.7608233,-19.5991135],[-40.7747408,-0.20904511814052423E2],[-40.9447562,-0.21937316989837807E2],[-41.9882843,-0.22970070489190892E2],[-44.6478119,-0.23351959323827842E2],[-46.4720933,-24.0889686],[-47.6489723,-0.24885199069927722E2],[-48.4954581,-0.25877024834905654E2],[-48.4747359,-27.175912],[-48.8884574,-0.28674115085567884E2],[-0.49587329474472675E2,-0.29224469089476337E2],[-0.50696874152211485E2,-0.30984465020472957E2],[-0.52256081305538046E2,-32.24537],[-0.53373661668498244E2,-0.33768377780900764E2],[-0.53209588995971544E2,-0.32727666110974724E2],[-0.53787951626182185E2,-0.32047242526987624E2],[-56.9760258,-0.30109686374636127E2],[-57.6251334,-0.30216294854454258E2]]]}},{"type":"Feature","properties":{"name":"BN"},"geometry":{"type":"Polygon","coordinates":[[[0.11420401655482837E3,4.52587393],[0.11545071048386981E3,5.4477298],[0.11534746097215067E3,4.31663605],[0.11465959598191353E3,4.00763683],[0.11420401655482837E3,4.52587393]]]}},{"type":"Feature","properties":{"name":"BT"},"geometry":{"type":"Polygon","coordinates":[[[91.6966565,27.7717418],[0.9203348351437509E2,26.8383105],[89.7445276,0.26719402981059957E2],[88.8142485,27.2993159],[90.0158289,0.28296438503527217E2],[91.6966565,27.7717418]]]}},{"type":"Feature","properties":{"name":"BW"},"geometry":{"type":"Polygon","coordinates":[[[29.4321883,-0.22091312758067588E2],[0.27119409620886245E2,-0.23574323011979775E2],[25.6646664,-0.25486816094669713E2],[0.24211266717228792E2,-0.25670215752873574E2],[0.23312096795350186E2,-25.2686899],[21.605896,-0.26726533705351756E2],[20.889609,-0.26828542982695915E2],[0.20758609246511835E2,-25.8681365],[0.19895767856534434E2,-0.24767790215760588E2],[19.8954578,-21.849157],[0.20881134067475866E2,-0.21814327080983148E2],[0.20910641310314535E2,-0.18252218926672022E2],[23.1968584,-0.17869038181227786E2],[0.23579005568137717E2,-18.2812611],[25.0844434,-0.17661815687737374E2],[0.25264225701608012E2,-0.17736539808831417E2],[0.26164790887158485E2,-19.2930856],[0.27724747348753255E2,-0.20499058526290387E2],[0.28021370070108617E2,-0.21485975030200585E2],[29.4321883,-0.22091312758067588E2]]]}},{"type":"Feature","properties":{"name":"CF"},"geometry":{"type":"Polygon","coordinates":[[[0.15279460483469109E2,7.42192455],[0.16705988396886255E2,7.50832754],[0.17964929640380888E2,7.89091401],[18.8120097,8.98291454],[20.0596855,9.012706],[0.21000868361096167E2,0.9475985215691509E1],[0.21723821648859452E2,0.10567055568885976E2],[0.22864165480244225E2,0.11142395127807546E2],[0.23554304233502194E2,0.10089255275915308E2],[0.23459012892355986E2,8.95428579],[25.1149325,7.82510407],[26.4659095,5.94671743],[27.3742261,5.2339444],[0.24410531040146253E2,5.10878408],[22.7041236,4.63305085],[0.22405123732195538E2,4.02916006],[0.20927591180106276E2,4.32278555],[0.19467783644293146E2,5.03152782],[18.5429822,4.20178518],[18.4530652,3.50438589],[0.17133042433346304E2,3.72819652],[0.16012852410555354E2,2.26763968],[0.14478372430080467E2,4.7326055],[0.14536560092841112E2,6.22695873],[0.15279460483469109E2,7.42192455]]]}},{"type":"Feature","properties":{"name":"CA"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-63.6645,46.55001],[-62.01208,46.44314],[-62.87433,45.96818],[-63.6645,46.55001]]],[[[-61.806305,49.10506],[-63.58926,49.40069],[-64.51912,49.87304],[-62.85829,49.70641],[-61.806305,49.10506]]],[[[-0.12351000158755114E3,48.5100109],[-124.012891,0.48370846259141416E2],[-0.12565501277733837E3,48.8250046],[-127.029993,49.8149958],[-0.12805933630436624E3,49.994959],[-0.12835841365625544E3,0.50770648098343685E2],[-0.12575500667382319E3,50.2950182],[-0.12351000158755114E3,48.5100109]]],[[[-56.1340358,50.6870098],[-55.8224011,49.5871286],[-0.53476549445191324E2,49.2491389],[-53.7860138,48.5167805],[-0.53086133999226256E2,0.48687803656603535E2],[-52.6480987,47.5355484],[-0.53069158291218336E2,46.6554988],[-54.1789355,46.8070657],[-54.2404821,47.7522794],[-55.4007731,0.46884993801453135E2],[-55.291219,47.3895625],[-56.2507987,47.6325451],[-59.2660152,0.47603347886742505E2],[-0.59231624518456535E2,48.5231884],[-58.391805,49.1255806],[-56.7386501,51.2874383],[-0.55406974249886616E2,51.5882726],[-56.1340358,50.6870098]]],[[[-133.180004,54.1699755],[-0.13174998958400326E3,54.1200044],[-132.04948,0.52984621487024526E2],[-0.13157782954982292E3,52.1823707],[-0.13305461117875552E3,53.4114688],[-133.180004,54.1699755]]],[[[-79.26582,62.158675],[-79.65752,61.63308],[-80.36215,62.01649],[-79.26582,62.158675]]],[[[-81.89825,62.7108],[-83.06857,62.15922],[-83.99367,62.4528],[-83.25048,62.91409],[-81.89825,62.7108]]],[[[-85.1613079,65.6572847],[-81.6420137,64.4551358],[-81.5534403,0.63979609280037145E2],[-80.1034513,0.63725981350348604E2],[-80.9910199,63.411246],[-82.5471781,63.6517223],[-83.1087976,64.1018757],[-85.5234047,63.0523791],[-85.8667688,0.63637252916103556E2],[-87.2219832,0.63541238104905226E2],[-86.3527598,64.0358332],[-85.8838478,65.7387784],[-85.1613079,65.6572847]]],[[[-75.86588,67.14886],[-76.98687,67.09873],[-76.81166,68.14856],[-75.1145,68.01036],[-75.86588,67.14886]]],[[[-95.6476812,69.1076904],[-96.2695212,68.7570404],[-98.4318012,68.9507004],[-0.9979740120380053E2,69.4000304],[-98.2182612,70.1435404],[-96.5574012,69.6800304],[-95.6476812,69.1076904]]],[[[-67.13741,45.13753],[-67.79134,45.70281],[-67.79046,47.06636],[-69.237216,47.447781],[-70.305,45.915],[-71.50506,45.0082],[-73.34783,45.00738],[-74.867,45.00048],[-76.375,44.09631],[-76.8200341,0.43628784288093755E2],[-78.7202799,0.43625089423184875E2],[-78.92,42.965],[-82.4392777,0.41675105088867156E2],[-83.12,42.08],[-82.1376424,0.43571087551439916E2],[-82.3377631,44.44],[-82.5509246,0.45347516587905375E2],[-83.4695507,45.9946864],[-84.6049,46.4396],[-84.8760799,46.9000833],[-87.4397926,47.94],[-88.3781142,0.48302917588893735E2],[-89.6,48.01],[-91.64,48.14],[-93.63087,48.60926],[-94.64,48.84],[-94.81758,49.38905],[-95.15609,49.38425],[-95.1590695,49],[-104.04826,48.99986],[-122.97421,49.0025378],[-125.62461,50.41656],[-127.43561,50.83061],[-127.99276,51.71583],[-127.85032,52.32961],[-129.12979,52.75538],[-129.30523,53.56159],[-130.51497,54.28757],[-130.00778,55.91583],[-131.70781,56.55212],[-133.35556,58.41028],[-134.27111,58.86111],[-135.47583,59.78778],[-136.47972,59.46389],[-137.4525,58.905],[-139.039,60],[-140.99778,60.30639],[-140.986,69.712],[-139.12052,69.47102],[-136.50358,68.89804],[-134.41464,69.62743],[-132.92925,69.50534],[-129.79471,70.19369],[-129.10773,69.77927],[-128.13817,70.48384],[-127.44712,70.37721],[-125.75632,69.48058],[-124.42483,70.1584],[-124.28968,69.39969],[-122.6835,69.85553],[-116.22643,68.84151],[-115.2469,68.90591],[-113.89794,68.3989],[-115.30489,67.90261],[-113.49727,67.68815],[-109.94619,67.98104],[-108.8802,67.38144],[-107.79239,67.88736],[-108.81299,68.31164],[-108.16721,68.65392],[-106.15,68.8],[-104.33791,68.018],[-103.22115,68.09775],[-101.45433,67.64689],[-98.4432,67.78165],[-98.5586,68.40394],[-97.66948,68.57864],[-96.11991,68.23939],[-96.12588,67.29338],[-95.48943,68.0907],[-94.685,68.06383],[-94.23282,69.06903],[-96.47131,70.08976],[-96.39115,71.19482],[-95.2088,71.92053],[-92.87818,71.31869],[-91.51964,70.19129],[-92.40692,69.69997],[-90.5471,69.49766],[-90.55151,68.47499],[-89.21515,69.25873],[-88.01966,68.61508],[-88.31749,67.87338],[-87.35017,67.19872],[-85.57664,68.78456],[-85.52197,69.88211],[-82.62258,69.65826],[-81.28043,69.16202],[-81.96436,68.13253],[-81.38653,67.11078],[-83.34456,66.41154],[-84.73542,66.2573],[-85.76943,66.55833],[-87.32324,64.77563],[-88.48296,64.09897],[-89.91444,64.03273],[-90.70398,63.61017],[-90.77004,62.96021],[-91.93342,62.83508],[-93.15698,62.02469],[-94.24153,60.89865],[-94.6846,58.94882],[-93.21502,58.78212],[-92.29703,57.08709],[-90.89769,57.28468],[-89.03953,56.85172],[-87.32421,55.99914],[-85.01181,55.3026],[-82.27285,55.14832],[-82.4362,54.28227],[-81.40075,52.15788],[-79.91289,51.20842],[-79.14301,51.53393],[-78.60191,52.56208],[-79.12421,54.14145],[-79.82958,54.66772],[-78.22874,55.13645],[-76.54137,56.53423],[-77.30226,58.05209],[-78.51688,58.80458],[-77.33676,59.85261],[-78.10687,62.31964],[-77.41067,62.55053],[-74.6682,62.18111],[-73.83988,62.4438],[-71.67708,61.52535],[-71.37369,61.13717],[-69.59042,61.06141],[-69.2879,58.95736],[-68.37455,58.80106],[-67.64976,58.21206],[-66.20178,58.76731],[-64.58352,60.33558],[-61.39655,56.96745],[-61.79866,56.33945],[-59.56962,55.20407],[-57.3332,54.6265],[-56.93689,53.78032],[-55.75632,53.27036],[-55.68338,52.14664],[-57.12691,51.41972],[-58.77482,51.0643],[-60.03309,50.24277],[-61.72366,50.08046],[-63.86251,50.29099],[-66.39905,50.22897],[-67.23631,49.51156],[-68.51114,49.06836],[-71.10458,46.82171],[-70.25522,46.98606],[-68.65,48.3],[-66.55243,49.1331],[-65.05626,49.23278],[-64.17099,48.74248],[-65.11545,48.07085],[-64.47219,46.23849],[-63.17329,45.73902],[-61.52072,45.88377],[-60.51815,47.00793],[-60.4486,46.28264],[-59.80287,45.9204],[-61.03988,45.26525],[-63.25471,44.67014],[-65.36406,43.54523],[-66.1234,43.61867],[-66.16173,44.46512],[-64.42549,45.29204],[-67.13741,45.13753]]],[[[-114.16717,73.12145],[-114.66634,72.65277],[-0.11244101999999988E3,72.9554],[-111.05039,72.4504],[-0.10992034999999989E3,72.96113],[-109.00654,72.63335],[-108.18835,71.65089],[-107.68599,72.06548],[-108.39639,73.08953],[-107.51645,73.23598],[-105.40246,72.67259],[-0.10446475999999984E3,70.99297],[-100.98078,70.02432],[-101.08929,69.58447],[-102.73116,69.50402],[-102.43024,68.75282],[-105.96,69.18],[-109,68.78],[-113.3132,68.53554],[-0.11385495999999983E3,69.00744],[-116.10794,69.16821],[-117.34,69.96],[-115.13112,70.2373],[-112.4161,70.36638],[-114.35,70.6],[-117.9048,70.54056],[-118.43238,70.9092],[-116.11311,71.30918],[-117.65568,71.2952],[-119.40199,71.55859],[-117.86642,72.70594],[-115.18909,73.31459],[-114.16717,73.12145]]],[[[-104.5,73.42],[-105.38,72.76],[-106.94,73.46],[-105.26,73.64],[-104.5,73.42]]],[[[-76.34,73.102685],[-76.2514038,72.8263855],[-79.4862518,72.7422028],[-80.8760986,73.3331833],[-80.3530579,73.7597198],[-78.0644379,73.6519318],[-76.34,73.102685]]],[[[-86.5621785,73.157447],[-85.7743713,72.5341259],[-84.8501125,73.3402782],[-82.3155902,73.7509508],[-80.6000877,72.7165437],[-80.7489416,72.0619066],[-78.7706386,72.3521732],[-77.824624,72.7496166],[-74.2286161,71.7671443],[-74.0991408,71.3308402],[-72.2422257,71.5569245],[-71.2000154,70.9200125],[-68.7860542,70.5250237],[-67.9149705,70.1219475],[-66.9690334,69.1860873],[-68.8051229,68.7201985],[-66.4498661,68.0671634],[-64.8623144,67.8475386],[-63.4249345,66.9284732],[-61.8519814,66.8621207],[-62.1631768,66.1602514],[-0.63918444383384184E2,64.9986685],[-65.1488602,65.4260326],[-66.721219,66.3880411],[-68.015016,66.2627257],[-68.1412874,65.6897891],[-65.3201676,64.3827371],[-64.6694063,63.3929267],[-65.0138039,62.6741851],[-68.7831862,63.7456701],[-66.3282973,0.62280074774822054E2],[-66.1655682,61.9308971],[-68.8773665,62.3301492],[-72.2353786,63.397836],[-71.8862784,63.6799893],[-74.8344189,64.6790756],[-74.8185026,64.3890933],[-77.7099798,64.2295423],[-78.5559489,64.5729064],[-77.8972811,65.3091922],[-73.9597953,65.4547647],[-73.9449125,66.3105781],[-72.6511672,67.2845755],[-73.3116178,68.0694372],[-74.8433073,68.5546272],[-76.8691009,68.8947356],[-76.2286491,69.1477693],[-77.28737,69.7695401],[-78.9572422,70.1668802],[-79.492455,69.8718078],[-81.305471,69.7431851],[-84.9447062,69.966634],[-88.6817132,70.4107413],[-89.5134196,70.7620377],[-88.4677211,71.2181855],[-89.8881512,71.2225522],[-90.2051603,72.2350744],[-89.4365767,73.1294642],[-88.4082415,73.5378889],[-85.8261511,73.8038158],[-86.5621785,73.157447]]],[[[-100.35642,73.84389],[-99.16387,73.63339],[-97.38,73.76],[-98.05359,72.99052],[-96.54,72.56],[-96.72,71.66],[-98.35966,71.27285],[-102.5,72.51],[-102.48,72.83],[-100.43836,72.70588],[-101.54,73.36],[-100.35642,73.84389]]],[[[-93.1962955,72.7719925],[-94.2690466,72.0245963],[-95.4098555,72.0618808],[-96.0337451,72.9402768],[-0.9549579342322403E2,73.8624169],[-94.5036576,74.1349067],[-0.9242001217321177E2,74.1000251],[-0.9050979285354259E2,73.8567325],[-92.0039652,72.9662442],[-93.1962955,72.7719925]]],[[[-120.46,71.3836018],[-123.09219,70.90164],[-123.62,71.34],[-0.12592894873747335E3,71.8686885],[-123.94,73.68],[-124.91775,74.29275],[-121.53788,74.44893],[-120.10978,74.24135],[-0.11755563999999987E3,74.18577],[-115.51081,73.47519],[-119.22,72.52],[-120.46,71.82],[-120.46,71.3836018]]],[[[-0.9361275590694049E2,74.9799973],[-94.1569087,74.5923465],[-96.8209322,74.9276232],[-96.2885874,75.3778283],[-0.9485081987178913E2,75.6472175],[-0.9361275590694049E2,74.9799973]]],[[[-98.5,76.72],[-97.735585,76.25656],[-98.16,75],[-100.88366,75.05736],[-100.86292,75.64075],[-102.50209,75.5638],[-102.56552,76.3366],[-101.48973,76.30537],[-98.5,76.72]]],[[[-108.21141,76.20168],[-107.81943,75.84552],[-105.881,75.9694],[-106.31347,75.00527],[-109.7,74.85],[-112.22307,74.41696],[-113.74381,74.39427],[-113.87135,74.72029],[-111.79421,75.1625],[-116.31221,75.04343],[-117.7104,75.2222],[-116.34602,76.19903],[-115.40487,76.47887],[-112.59056,76.14134],[-110.81422,75.54919],[-109.0671,75.47321],[-110.49726,76.42982],[-109.5811,76.79417],[-108.54859,76.67832],[-108.21141,76.20168]]],[[[-0.9468408586299947E2,77.0978783],[-0.9357392106807313E2,76.7762959],[-0.9160502315953661E2,76.778518],[-0.9096966142450799E2,76.0740132],[-89.1870829,75.6101655],[-86.3791923,75.4824214],[-84.7896252,75.699204],[-81.1285308,75.7139835],[-79.8339329,74.9231273],[-81.9488425,74.442459],[-83.2288936,74.5640278],[-88.1503503,74.392307],[-0.9242244096552943E2,74.8377579],[-0.9288990597204173E2,75.8826553],[-93.893824,76.3192437],[-95.9624574,76.4413809],[-0.9712137895382949E2,76.7510778],[-96.7451229,77.1613887],[-0.9468408586299947E2,77.0978783]]],[[[-0.11619858659550734E3,77.6452868],[-0.11633581336145838E3,76.8769616],[-0.11989931758688569E3,76.0532134],[-121.499995,75.9000186],[-122.854925,76.1165429],[-0.12115753536032825E3,76.8645076],[-0.11910393897182104E3,77.51222],[-0.11619858659550734E3,77.6452868]]],[[[-0.9384000301794399E2,77.5199973],[-96.1696541,77.5551114],[-96.4363045,77.8346292],[-94.4225773,77.8200048],[-0.9384000301794399E2,77.5199973]]],[[[-0.11018693803591297E3,77.6970149],[-0.11205119116905848E3,77.4092288],[-0.11353427893761906E3,77.7322065],[-0.11272458675825384E3,78.0510501],[-109.854452,77.9963248],[-0.11018693803591297E3,77.6970149]]],[[[-0.10966314571820259E3,78.6019726],[-0.11254209143761517E3,78.4079017],[-111.50001,78.8499936],[-0.10966314571820259E3,78.6019726]]],[[[-95.830295,78.0569412],[-0.9730984290239799E2,77.8505972],[-98.1242893,78.082857],[-98.6319844,78.8719302],[-0.9675439876990879E2,78.7658127],[-95.5592779,78.4183145],[-95.830295,78.0569412]]],[[[-0.10006019182005214E3,78.3247543],[-99.6709391,77.9075447],[-0.10294980872273305E3,78.3432287],[-0.10517613277873154E3,78.3803323],[-0.10421042945027716E3,78.6774202],[-0.10541958045125854E3,78.9183357],[-0.10549228919149316E3,79.3015939],[-0.10082515804726881E3,78.8004617],[-0.10006019182005214E3,78.3247543]]],[[[-87.02,79.66],[-85.81435,79.3369],[-87.18756,79.0393],[-89.03535,78.28723],[-92.87669,78.34333],[-93.95116,78.75099],[-93.14524,79.3801],[-94.974,79.37248],[-96.70972,80.15777],[-94.73542,81.20646],[-92.40984,81.25739],[-91.13289,80.72345],[-87.81,80.32],[-87.02,79.66]]],[[[-68.5,83.1063215],[-63.68,82.9],[-61.85,82.6286],[-61.89388,82.36165],[-67.65755,81.50141],[-65.48031,81.50657],[-69.4697,80.61683],[-71.18,79.8],[-73.88,79.4301622],[-76.90773,79.32309],[-75.39345,78.52581],[-77.88851,77.89991],[-79.61965,76.98336],[-77.88911,76.777955],[-80.56125,76.17812],[-83.17439,76.45403],[-86.11184,76.29901],[-89.49068,76.47239],[-89.6161,76.95213],[-87.76739,77.17833],[-88.26,77.9],[-87.65,77.9702222],[-84.97634,77.53873],[-86.34,78.18],[-87.96192,78.37181],[-87.15198,78.75867],[-85.37868,78.9969],[-85.09495,79.34543],[-86.50734,79.73624],[-86.93179,80.25145],[-83.4086957,80.1],[-81.84823,80.46442],[-84.1,80.58],[-87.59895,80.51627],[-89.36663,80.85569],[-91.36786,81.5531],[-91.58702,81.89429],[-86.97024,82.27961],[-85.5,82.6522735],[-83.18,82.32],[-82.42,82.86],[-79.30664,83.13056],[-75.71878,83.06404],[-72.83153,83.23324],[-68.5,83.1063215]]]]}},{"type":"Feature","properties":{"name":"CH"},"geometry":{"type":"Polygon","coordinates":[[[9.59422611,47.5250581],[0.9479969516649021E1,47.10281],[10.4427015,46.8935463],[9.92283654,46.3148994],[0.9182881707403055E1,46.4402147],[7.27385095,0.45776947740250776E2],[6.03738895,0.46725778713561866E2],[6.73657108,0.47541801255882845E2],[9.59422611,47.5250581]]]}},{"type":"Feature","properties":{"name":"CL"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-67.56244,-54.87001],[-66.95992,-54.89681],[-68.14863,-55.61183],[-71.00568,-55.05383],[-73.2852,-53.95752],[-74.66253,-52.83749],[-71.10773,-54.07433],[-70.26748,-52.93123],[-68.6340102,-52.6363705],[-68.63335,-54.8695],[-67.56244,-54.87001]]],[[[-67.1066736,-22.7359246],[-67.328443,-24.0253032],[-68.417653,-0.24518554782816878E2],[-68.2955416,-26.8993397],[-69.6561303,-0.28459141127233693E2],[-70.0135504,-29.3679229],[-69.9190083,-0.30336339206668313E2],[-70.5350689,-0.31365010267870286E2],[-69.8173091,-0.34193571465798286E2],[-70.3880495,-35.1696876],[-70.3647693,-0.36005088799789945E2],[-71.1218807,-36.6581239],[-70.8146643,-38.5529953],[-71.4135166,-0.38916022230791114E2],[-71.915734,-40.8323394],[-71.7468038,-0.42051386407235995E2],[-72.1488981,-42.2548882],[-71.7936226,-44.2071721],[-71.2227789,-0.44784242852559416E2],[-71.9172585,-46.8848381],[-72.4473553,-47.7385328],[-72.6482474,-48.8786183],[-73.4154358,-49.3184364],[-73.3280509,-50.3787851],[-72.3099735,-0.50677009779666356E2],[-71.9148038,-0.52009022305865926E2],[-68.5715454,-52.2994439],[-69.4612843,-52.2919508],[-70.8451017,-0.52899200528525725E2],[-71.0063322,-53.833252],[-72.5579429,-0.53531410001184454E2],[-74.9467635,-52.2627536],[-74.9766325,-51.0433957],[-75.4797542,-50.3783717],[-75.6080151,-48.6737729],[-75.1827697,-47.7119194],[-74.126581,-46.9392534],[-75.6443953,-46.6476433],[-74.6921537,-45.7639763],[-74.3517094,-0.44103044122087894E2],[-73.240356,-0.44454960625995625E2],[-72.7178039,-0.42383355808278985E2],[-73.3888999,-42.1175322],[-73.7013356,-0.43365776462579745E2],[-74.3319431,-43.2249582],[-73.6770994,-0.39942212823243125E2],[-73.2175925,-0.39258688653318515E2],[-73.5880609,-0.37156284681956016E2],[-73.1667171,-37.1237802],[-71.8617321,-33.9090927],[-71.4384505,-32.4188994],[-71.6687207,-30.9206446],[-71.3700826,-0.30095682061485004E2],[-71.4898944,-0.28861442152625912E2],[-70.9051239,-27.6403797],[-70.724954,-25.7059242],[-70.0912459,-0.21393319187101223E2],[-70.3725724,-0.18347975355708883E2],[-69.5904238,-17.5800119],[-68.9668184,-0.18981683444904093E2],[-68.4422251,-0.19405068454671422E2],[-68.7571671,-0.20372657972904477E2],[-67.8281799,-22.8729188],[-67.1066736,-22.7359246]]]]}},{"type":"Feature","properties":{"name":"CN"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.11033918786015154E3,0.18678395087147607E2],[109.47521,0.18197700913968614E2],[0.10865520796105616E3,18.507682],[0.10862621748254045E3,0.19367887885001977E2],[0.10911905561730802E3,0.19821038519769385E2],[0.11078655073450223E3,20.0775345],[0.11101005130416465E3,0.19695929877190736E2],[0.11033918786015154E3,0.18678395087147607E2]]],[[[130.633866,42.9030146],[0.12805221520397234E3,41.9942846],[0.12820843305879075E3,41.4667716],[0.12686908328664988E3,41.8165693],[0.12618204511932946E3,41.1073361],[0.12426562462778534E3,39.9284934],[0.12286757042856104E3,39.6377876],[0.12105455447803288E3,38.897471],[0.12137675703337267E3,0.39750261338859524E2],[0.12216859500538104E3,0.40422442531896046E2],[0.12164035851449356E3,40.9463899],[0.11963960208544907E3,39.8980559],[0.11902346398323304E3,39.2523331],[0.11804274865119793E3,39.204274],[0.11753270226447708E3,38.7376358],[118.059699,38.0614755],[0.11887814985562838E3,37.8973253],[0.11970280236214207E3,37.1563887],[0.12082345747282366E3,37.8704278],[0.12235793745329848E3,37.4544842],[0.12251999474496584E3,0.36930614325501836E2],[0.12110416385303303E3,36.651329],[119.664562,0.35609790554337735E2],[119.151208,0.34909859117160465E2],[0.12022752485563375E3,34.3603319],[120.620369,33.3767227],[0.12190814578663006E3,31.6921744],[0.12189191938689035E3,0.30949351508095102E2],[0.12126425744027331E3,30.6762674],[0.12209211388558911E3,0.29832520453403163E2],[0.12168443851123847E3,0.28225512600206685E2],[0.12112566124886645E3,0.28135673122667185E2],[0.11865687137255453E3,0.24547390855400238E2],[0.11589073530483515E3,0.22782873236578098E2],[0.11380677981980075E3,22.5483397],[0.11324107791550162E3,22.0513675],[0.11078546552942414E3,0.21397143866455334E2],[0.11044403934127169E3,0.20341032619706397E2],[0.10988986128137357E3,0.20282457383703445E2],[0.10986448815311834E3,0.21395050970947523E2],[108.05018,0.21552379869060104E2],[0.10656727339073537E3,0.22218204860924743E2],[106.725403,22.7942679],[0.10581124718630521E3,0.22976892401617903E2],[0.10532920942588666E3,0.23352063300056983E2],[104.476858,22.8191501],[0.10270699222210018E3,0.22708795070887703E2],[0.10165201785686158E3,22.3181988],[0.10180311974488292E3,0.21174366766845054E2],[0.10115003299357826E3,21.8499844],[0.10041653771362738E3,0.21558839423096657E2],[99.2408989,0.22118314317304566E2],[99.5319922,0.22949038804612595E2],[0.9889874922078283E2,0.23142722072842588E2],[98.6602625,0.24063286037690006E2],[0.9760471967976203E2,0.23897404690033056E2],[97.724609,0.25083637193293043E2],[98.671838,0.25918702500913497E2],[98.6826901,27.5088122],[97.9119877,0.28335945136014374E2],[97.3271139,28.2615827],[96.2488334,0.28411030992134467E2],[0.9611767866413103E2,0.29452802028922516E2],[0.9540480228066465E2,0.29031716620392164E2],[94.5659904,0.29277438055939964E2],[92.5031189,27.8968763],[91.6966565,0.27771741848251622E2],[90.0158289,0.28296438503527185E2],[88.8142485,0.27299315904239393E2],[88.730326,28.0868647],[88.1204407,0.27876541652939576E2],[85.8233199,28.203576],[83.3371151,0.29463731594352193E2],[81.5258045,0.30422716986608663E2],[81.1112561,30.1834809],[78.7388945,31.5159061],[78.4584465,32.6181644],[79.1761288,0.32483779812137755E2],[78.9122689,34.3219363],[77.8374508,35.4940095],[76.1928483,35.8984034],[75.8968974,36.6668061],[74.9800025,0.37419990139305895E2],[74.8648157,38.3788463],[73.9288522,38.5058153],[73.8222437,39.8939735],[74.7768624,40.3664253],[76.526368,40.4279461],[76.9044845,41.0664859],[78.1871969,0.41185315863604814E2],[78.5436609,41.5822425],[80.1194304,0.42123940741538235E2],[80.1801502,42.9200679],[80.8662065,0.43180362046881015E2],[79.9661064,44.917517],[82.4589258,0.45539649563166506E2],[83.1804838,47.3300312],[85.1642904,47.0009557],[85.7204838,47.4529695],[85.7682329,48.4557506],[86.5987765,48.5491816],[87.3599703,49.2149808],[88.8542977,0.48069081732773014E2],[90.2808256,0.47693549099307916E2],[0.9097080936072499E2,0.46888146063822944E2],[90.5857683,45.7197161],[0.9094553958533433E2,45.2860733],[0.9348073367714133E2,0.44975472113620015E2],[0.9530687544147153E2,44.2413309],[96.3493958,42.7256353],[99.5158175,0.42524691473961695E2],[0.10183304039917995E3,42.514873],[0.10331227827353482E3,41.9074682],[0.10496499393109346E3,41.5974096],[0.10612931562706169E3,42.1343277],[107.744773,0.42481515814781915E2],[0.10924359581913146E3,42.5194463],[110.412103,42.8712336],[111.829588,43.7431184],[0.11166773725794323E3,44.0731758],[0.11187330610560028E3,45.1020794],[0.11346390669154422E3,44.8088931],[0.11446033165899607E3,45.3398168],[0.11598509647020013E3,45.727235],[0.11742170128791425E3,46.6727329],[0.11887432579963873E3,46.8054121],[0.11977282392789756E3,47.0480588],[0.11806414269416675E3,48.0667305],[0.11729550744025747E3,47.6977091],[0.11574283735561575E3,47.7265445],[0.11548528201707305E3,0.48135382595403456E2],[0.11667880089728621E3,0.49888531399121405E2],[0.11787924441942639E3,49.5109834],[0.11928846072802585E3,50.1428828],[0.11927936567594239E3,0.50582907619827296E2],[120.738191,0.51964115302124554E2],[120.177089,52.7538862],[0.12100308475147024E3,53.2514011],[0.12357150678924087E3,53.4588044],[0.12594634891164618E3,52.7927986],[0.12656439904185699E3,51.7842555],[0.12728745568248493E3,50.7397973],[127.657407,49.7602705],[0.12939781782442046E3,49.4406001],[130.582293,48.7296874],[0.13098728152885386E3,0.47790132351261406E2],[0.13250667199109952E3,47.7889696],[0.13502631147678673E3,48.4782299],[0.13411236209527263E3,47.2124674],[0.13309712690646646E3,45.1440665],[131.883454,45.3211616],[131.025212,44.9679532],[0.13128855512911557E3,0.44111519680348266E2],[0.13114468794161488E3,42.9299897],[130.633866,42.9030146]]]]}},{"type":"Feature","properties":{"name":"CI"},"geometry":{"type":"Polygon","coordinates":[[[-2.85612505,4.99447582],[-4.00881955,5.17981334],[-5.83449622,4.99370067],[-7.71215939,4.36456594],[-7.57015255,5.7073522],[-8.60288021,6.4675642],[-8.43929847,7.68604279],[-7.83210039,8.57570425],[-8.30961646,0.9789531968622441E1],[-8.02994361,0.10206534939001713E2],[-5.4043416,0.10370736802609146E2],[-4.33024695,9.61083487],[-2.8274963,9.64246084],[-2.5621895,8.21962779],[-3.24437008,6.2504715],[-2.85612505,4.99447582]]]}},{"type":"Feature","properties":{"name":"CM"},"geometry":{"type":"Polygon","coordinates":[[[0.13075822381246752E2,2.26709707],[0.11276449008843713E2,2.26105093],[9.64915816,2.28386608],[0.9795195753629457E1,3.07340445],[8.50028771,4.77198294],[9.23316288,6.44449067],[0.10118276808318257E2,7.03876964],[11.0587879,6.64442678],[11.7457744,6.98138296],[0.12218872104550599E2,8.30582408],[0.12753671502339214E2,8.71776276],[0.13572949659894562E2,0.10798565985553566E2],[0.14415378859116686E2,0.11572368882692075E2],[0.14181336297266792E2,0.12483656927943116E2],[0.14893385857816526E2,0.12219047756392584E2],[0.14923564894274959E2,0.10891325181517473E2],[0.15467872755605269E2,9.98233674],[0.14171466098699028E2,0.10021378282099931E2],[0.13954218377344006E2,0.9549494940626685E1],[14.9799956,8.79610423],[0.15279460483469109E2,7.42192455],[0.14536560092841112E2,6.22695873],[0.14478372430080467E2,4.7326055],[0.16012852410555354E2,2.26763968],[0.15940918816805064E2,1.72767263],[14.3378125,2.22787466],[0.13075822381246752E2,2.26709707]]]}},{"type":"Feature","properties":{"name":"CD"},"geometry":{"type":"Polygon","coordinates":[[[0.29579466180140884E2,-1.34131316],[0.29024926385216787E2,-2.83925791],[0.29339997592900346E2,-4.49998341],[29.6200322,-6.52001515],[0.30199996779101696E2,-7.07998097],[0.30740015496551788E2,-8.34000742],[28.7348666,-8.52655934],[0.28372253045370428E2,-0.11793646742401393E2],[29.3415479,-0.12360743910372413E2],[29.6996139,-0.13257226657771831E2],[0.28934285922976837E2,-0.13248958428605135E2],[0.28155108676879987E2,-0.12272480564017897E2],[0.27164419793412463E2,-0.11608748467661075E2],[0.26553087599399618E2,-0.11924439792532127E2],[0.25418118116973204E2,-0.11330935967659961E2],[0.23912215203555718E2,-0.10926826267137514E2],[0.22155268182064308E2,-0.11084801120653772E2],[21.7281108,-7.29087249],[0.19417502475673157E2,-7.15542856],[19.0167517,-7.98824594],[0.17472970004962235E2,-8.06855112],[16.57318,-6.62264455],[0.16326528354567046E2,-5.87747039],[0.13375597364971895E2,-5.86424122],[12.3224317,-6.10009246],[0.12995517205465177E2,-4.7811032],[0.14144956088933299E2,-4.51000864],[14.5826038,-4.97023895],[16.0062895,-3.53513274],[0.16407091912510054E2,-1.74092702],[0.17523716261472856E2,-0.743830255],[0.17898835483479587E2,1.74183198],[18.4530652,3.50438589],[18.5429822,4.20178518],[0.19467783644293146E2,5.03152782],[0.20927591180106276E2,4.32278555],[0.22405123732195538E2,4.02916006],[22.7041236,4.63305085],[0.24410531040146253E2,5.10878408],[27.3742261,5.2339444],[0.27979977247842807E2,4.4084134],[29.7159953,4.60080476],[0.30833859897593808E2,3.50916596],[0.30773346795380043E2,2.33988333],[0.31174149204235814E2,2.20446524],[0.29875778842902495E2,0.597379869],[0.29579466180140884E2,-1.34131316]]]}},{"type":"Feature","properties":{"name":"CG"},"geometry":{"type":"Polygon","coordinates":[[[0.12995517205465177E2,-4.7811032],[0.12620759718484491E2,-4.43802337],[11.914963,-5.03798675],[0.11093772820691925E2,-3.97882659],[0.11855121697648114E2,-3.42687062],[0.11478038771214303E2,-2.76561899],[0.12495702752338161E2,-2.39168833],[13.9924073,-2.47080495],[0.14425455763413593E2,-1.33340667],[0.13843320753645655E2,0.0387576359],[0.14276265903386957E2,1.19692984],[0.13282631463278818E2,1.31418366],[0.13075822381246752E2,2.26709707],[14.3378125,2.22787466],[0.15940918816805064E2,1.72767263],[0.16012852410555354E2,2.26763968],[0.17133042433346304E2,3.72819652],[18.4530652,3.50438589],[0.17898835483479587E2,1.74183198],[0.17523716261472856E2,-0.743830255],[0.16407091912510054E2,-1.74092702],[16.0062895,-3.53513274],[14.5826038,-4.97023895],[0.14144956088933299E2,-4.51000864],[0.12995517205465177E2,-4.7811032]]]}},{"type":"Feature","properties":{"name":"CO"},"geometry":{"type":"Polygon","coordinates":[[[-75.3732232,-0.152031752],[-76.2923144,0.416047268],[-77.4249843,0.395686754],[-78.8552588,1.38092377],[-78.4276104,2.62955557],[-77.9315425,2.69660574],[-77.1276898,3.84963614],[-77.5332206,5.582812],[-77.4766607,6.69111644],[-77.8815714,7.22377127],[-77.2425665,7.93527823],[-77.3533608,8.67050467],[-76.836674,8.6387495],[-75.6746002,0.9443248195834599E1],[-75.480426,0.10618990383339309E2],[-74.1972227,0.11310472723836865E2],[-73.414764,11.2270153],[-71.7540901,0.12437303168177309E2],[-71.3315836,0.11776284084515808E2],[-71.9739217,11.6086716],[-72.905286,0.10450344346554772E2],[-73.3049515,9.15199982],[-72.7887298,9.08502717],[-71.9601757,6.9916149],[-70.093313,6.96037649],[-69.3894799,6.09986054],[-67.3414396,6.09546804],[-67.8230123,4.50393728],[-67.3031732,3.31845409],[-67.8099381,2.82065502],[-67.1812943,2.25063813],[-66.8763259,1.2533605],[-67.53781,2.03716279],[-67.868565,1.69245515],[-69.8169732,1.7148052],[-70.0155658,0.541414293],[-69.4441019,-1.55628712],[-69.8936352,-4.29818694],[-70.6926821,-3.742872],[-70.0477085,-2.72515635],[-70.8134757,-2.25686452],[-73.0703922,-2.30895436],[-73.6595035,-1.26049122],[-75.1066245,-0.0572054989],[-75.3732232,-0.152031752]]]}},{"type":"Feature","properties":{"name":"CR"},"geometry":{"type":"Polygon","coordinates":[[[-82.965783,8.22502798],[-83.6326416,0.9051385809765321E1],[-85.7974448,0.10134885565629034E2],[-85.7125405,0.11088444932494824E2],[-83.6556117,0.10938764146361422E2],[-82.5461963,0.9566134751824677E1],[-82.965783,8.22502798]]]}},{"type":"Feature","properties":{"name":"CU"},"geometry":{"type":"Polygon","coordinates":[[[-82.2681512,0.23188610744717703E2],[-80.6187687,23.1059801],[-79.281486,0.22399201565027056E2],[-78.3474345,0.22512166246017088E2],[-76.5238248,0.21206819566324373E2],[-74.1780249,20.2846278],[-75.6346801,0.19873774318923196E2],[-77.7554809,0.19855480861891873E2],[-77.0851084,0.20413353786698792E2],[-78.1372922,20.7399488],[-78.7198665,0.21598113511638434E2],[-81.8209434,22.1920566],[-81.7950018,0.22636964830001958E2],[-82.775898,0.22688150336187064E2],[-84.0521508,0.21910575059491254E2],[-84.9749111,21.8960281],[-84.230357,0.22565754706303764E2],[-82.2681512,0.23188610744717703E2]]]}},{"type":"Feature","properties":{"name":"CY"},"geometry":{"type":"Polygon","coordinates":[[[33.9736166,35.0585064],[32.9798271,34.5718694],[32.2566671,35.1032323],[33.9736166,35.0585064]]]}},{"type":"Feature","properties":{"name":"CZ"},"geometry":{"type":"Polygon","coordinates":[[[0.16960288120194576E2,48.5969823],[0.15253415561593982E2,0.49039074205107575E2],[14.3388977,48.5553053],[0.13595945672264437E2,48.8771719],[0.12521024204161192E2,0.49547415269562734E2],[0.12240111118222558E2,0.50266337795607285E2],[0.14307013380600637E2,0.51117267767941414E2],[15.0169959,51.1066741],[0.16719475945714436E2,50.2157466],[17.5545671,50.3621459],[0.18853144158613617E2,49.4962298],[0.16960288120194576E2,48.5969823]]]}},{"type":"Feature","properties":{"name":"DE"},"geometry":{"type":"Polygon","coordinates":[[[9.89606815,0.47580196845075704E2],[8.52261193,47.8308275],[7.46675907,47.620582],[7.59367639,48.3330191],[8.0992786,49.0177835],[6.18632043,0.49463802802114515E2],[6.04307336,0.50128051662794235E2],[6.15665816,50.803721],[5.98865807,0.51851615709025054E2],[6.5893966,0.51852029120483394E2],[6.9051396,53.4821622],[8.80073449,0.54020785630908904E2],[8.52622928,54.9627436],[9.92190637,0.54983104153048025E2],[0.10939466993868448E2,54.0086933],[0.12518440382546714E2,54.4703706],[0.13647467075259499E2,54.075511],[0.15016995883858781E2,51.1066741],[0.14307013380600665E2,51.1172678],[0.12240111118222671E2,50.2663378],[0.12521024204161336E2,49.5474153],[0.13595945672264577E2,0.48877171942737164E2],[0.12884102817443873E2,48.2891458],[0.13025851271220517E2,47.6375835],[9.89606815,0.47580196845075704E2]]]}},{"type":"Feature","properties":{"name":"DJ"},"geometry":{"type":"Polygon","coordinates":[[[43.081226,0.12699638576707116E2],[0.43286381463398925E2,0.11974928290245884E2],[42.7768518,10.9268786],[0.41755570000000205E2,0.11050910000000101E2],[41.66176,11.6312],[42.35156,0.12542230000000131E2],[43.081226,0.12699638576707116E2]]]}},{"type":"Feature","properties":{"name":"DK"},"geometry":{"type":"MultiPolygon","coordinates":[[[[12.6900061,0.55609990953180784E2],[0.12089991082414741E2,54.8000146],[0.10903913608451631E2,55.7799547],[0.12370904168353292E2,0.56111407375708836E2],[12.6900061,0.55609990953180784E2]]],[[[0.10912181837618363E2,0.56458621324277914E2],[0.9649984978889307E1,0.55469999498102055E2],[0.9921906365609175E1,54.9831042],[8.52622928,54.9627436],[8.08997684,0.56540011705137594E2],[8.54343753,0.57110002753316905E2],[0.10580005730846153E2,57.7300166],[0.10369992710011985E2,0.56609981594460834E2],[0.10912181837618363E2,0.56458621324277914E2]]]]}},{"type":"Feature","properties":{"name":"DO"},"geometry":{"type":"Polygon","coordinates":[[[-71.7123614,0.19714455878167357E2],[-70.8067061,0.19880285549391985E2],[-69.2221258,0.19313214219637103E2],[-68.3179433,0.18612197577381693E2],[-68.689316,0.18205142320218613E2],[-69.9529339,18.428307],[-71.7083048,18.0449971],[-71.7123614,0.19714455878167357E2]]]}},{"type":"Feature","properties":{"name":"DZ"},"geometry":{"type":"Polygon","coordinates":[[[4.26741947,19.1552652],[3.15813317,0.19057364203360038E2],[3.146661,19.6935786],[-4.92333737,24.9745741],[-8.68439979,0.27395744126896005E2],[-8.66558957,0.27656425889592356E2],[-8.67411618,28.841289],[-7.05922767,29.5792284],[-5.24212928,0.30000443020135588E2],[-4.85964617,0.30501187649043842E2],[-3.69044105,0.30896951605751152E2],[-3.64749793,31.637294],[-2.61660478,32.0943462],[-1.30789914,32.2628889],[-1.79298581,0.34527918606091205E2],[-2.1699137,35.1683963],[-1.20860287,35.7148487],[-0.127454393,0.35888662421200806E2],[1.46691857,0.36605647081034405E2],[4.81575809,36.8650369],[6.2618197,37.110655],[8.42096439,36.9464273],[8.14098148,34.655146],[7.52448164,34.0973764],[7.61264164,33.3441149],[9.05560265,32.102692],[9.48213993,0.30307556057246188E2],[0.9859997999723447E1,0.28959989732371014E2],[0.9716285841519749E1,0.26512206325785698E2],[0.9319410841518163E1,0.26094324856057455E2],[0.10303846876678362E2,0.24379313259370917E2],[0.10771363559622927E2,24.5625321],[0.11999505649471613E2,23.4716684],[8.5728931,0.21565660712159143E2],[5.67756595,0.19601206976799716E2],[4.26741947,19.1552652]]]}},{"type":"Feature","properties":{"name":"EC"},"geometry":{"type":"Polygon","coordinates":[[[-80.3025606,-3.40485646],[-79.7702933,-2.6575119],[-80.9677655,-2.24694264],[-80.0906097,0.76842886],[-78.8552588,1.38092377],[-77.4249843,0.395686754],[-76.2923144,0.416047268],[-75.3732232,-0.152031752],[-75.5449957,-1.5616098],[-76.6353943,-2.60867767],[-77.8379048,-3.00302052],[-78.6398972,-4.54778411],[-79.2052891,-4.95912851],[-80.442242,-4.42572438],[-80.3025606,-3.40485646]]]}},{"type":"Feature","properties":{"name":"EG"},"geometry":{"type":"Polygon","coordinates":[[[36.86623,22],[29.02,22],[25,22],[25,29.2386545],[24.70007,30.04419],[25.16482,31.56915],[26.49533,31.58568],[28.91353,30.87005],[30.09503,31.4734],[31.68796,31.4296],[33.7734,30.96746],[34.26544,31.21936],[34.9226,29.50133],[33.92136,27.6487],[32.73482,28.70523],[34.10455,26.14227],[35.69241,23.92671],[35.52598,23.10244],[36.86623,22]]]}},{"type":"Feature","properties":{"name":"ER"},"geometry":{"type":"Polygon","coordinates":[[[42.35156,0.12542230000000131E2],[41.59856,0.13452090000000112E2],[40.8966,0.14118640000000141E2],[39.34061,14.53155],[37.90607,0.14959430000000168E2],[37.59377,14.2131],[36.42951,14.42211],[36.3231889,14.8224806],[0.36852530000000115E2,16.95655],[0.38410089959473225E2,17.9983074],[39.2661101,0.15922723496967249E2],[41.1792749,0.14491079616753211E2],[43.081226,0.12699638576707116E2],[42.35156,0.12542230000000131E2]]]}},{"type":"Feature","properties":{"name":"ES"},"geometry":{"type":"Polygon","coordinates":[[[-9.03481767,41.8805706],[-9.39288367,43.0266247],[-7.97818966,0.43748337714200986E2],[-4.34784278,43.4034492],[-1.90135128,43.422802],[-1.50277096,43.0340144],[1.82679325,42.3433847],[2.98599898,42.473015],[3.03948408,0.41892120266276905E2],[2.09184167,41.2260886],[0.81052453,41.014732],[-0.27871131,39.3099781],[0.111290724,38.7385143],[-0.683389451,0.37642353827457825E2],[-1.43838213,0.37443063666324214E2],[-2.1464526,36.6741442],[-4.36890093,0.36677839056946155E2],[-5.3771598,0.35946850083961465E2],[-6.5201908,36.9429133],[-7.45372555,37.0977876],[-7.02928118,38.0757641],[-7.09803667,39.0300727],[-6.66860552,0.41883386949219584E2],[-8.01317461,0.41790886135417125E2],[-8.26385698,42.2804687],[-9.03481767,41.8805706]]]}},{"type":"Feature","properties":{"name":"EE"},"geometry":{"type":"Polygon","coordinates":[[[0.24312862583114622E2,57.7934236],[23.4265601,0.58612753404364625E2],[0.23339795363058645E2,59.1872403],[25.8641891,59.6110904],[28.1316993,59.3008251],[27.4201665,58.7245812],[27.7166858,57.7918991],[27.2881848,57.4745283],[25.1645935,57.970157],[0.24312862583114622E2,57.7934236]]]}},{"type":"Feature","properties":{"name":"ET"},"geometry":{"type":"Polygon","coordinates":[[[39.34061,14.53155],[40.8966,0.14118640000000141E2],[41.59856,0.13452090000000112E2],[42.35156,0.12542230000000131E2],[41.66176,11.6312],[0.41755570000000205E2,0.11050910000000101E2],[42.7768518,10.9268786],[42.55876,10.57258],[43.67875,9.18358],[46.94834,7.99688],[47.78942,8.003],[44.9636,5.00162],[43.66087,4.95755],[42.76967,4.25259],[41.1718,3.91909],[40.76848,4.25702],[39.5593843,3.42206],[38.89251,3.50074],[38.67114,3.61607],[38.120915,3.598605],[36.8550932,4.44786413],[36.1590786,4.44786413],[0.35298007118233095E2,5.506],[34.25032,6.82607],[0.33568290000000104E2,7.71334],[33.2948,8.35458],[33.8255,8.37916],[33.96162,9.58358],[34.25745,10.63009],[35.26049,12.08286],[36.27022,0.13563330000000121E2],[36.42951,14.42211],[37.59377,14.2131],[37.90607,0.14959430000000168E2],[39.34061,14.53155]]]}},{"type":"Feature","properties":{"name":"FI"},"geometry":{"type":"Polygon","coordinates":[[[0.28591929559043194E2,69.0647769],[0.28445943637818658E2,68.3646129],[0.29977426385220607E2,67.698297],[0.29054588657352326E2,66.9442862],[30.21765,65.80598],[0.29544429559046986E2,64.9486716],[30.4446847,64.2044534],[0.30035872430142714E2,63.5528136],[31.5160922,62.8676875],[0.31139991082490894E2,62.3576928],[0.28069997592895277E2,0.60503516547275844E2],[26.255173,60.4239607],[0.22869694858499457E2,0.59846373196036225E2],[0.21322244093519316E2,60.72017],[0.21544866163832694E2,61.7053295],[21.0592111,62.6073933],[0.22442744174903993E2,63.8178104],[0.25398067661243942E2,65.1114265],[0.25294043003040404E2,65.5343464],[0.23903378533633802E2,66.0069274],[0.23565879754335583E2,66.3960509],[23.5394731,67.9360086],[0.20645592889089528E2,69.1062473],[0.21244936150810673E2,69.370443],[0.22356237827247412E2,68.8417414],[0.24735679152126725E2,68.6495568],[25.6892127,69.0921138],[26.179622,69.825299],[0.27732292107867863E2,70.164193],[29.015573,69.7664912],[0.28591929559043194E2,69.0647769]]]}},{"type":"Feature","properties":{"name":"FJ"},"geometry":{"type":"MultiPolygon","coordinates":[[[[178.3736,-17.33992],[178.55271,-18.15059],[177.38146,-18.16432],[177.67087,-17.38114],[178.3736,-17.33992]]],[[[0.17936414266196428E3,-16.8013541],[0.17859683859511708E3,-16.63915],[0.18000000000000014E3,-16.0671327],[0.17936414266196428E3,-16.8013541]]],[[[-0.17991736938476524E3,-16.5017831],[-0.17991736938476524E3,-16.5017831],[-0.17991736938476524E3,-16.5017831],[-0.17991736938476524E3,-16.5017831]]]]}},{"type":"Feature","properties":{"name":"FK"},"geometry":{"type":"Polygon","coordinates":[[[-61.2,-51.85],[-60,-51.25],[-59.15,-51.5],[-58.55,-51.1],[-57.75,-51.55],[-59.4,-52.2],[-59.85,-51.85],[-60.7,-52.3],[-61.2,-51.85]]]}},{"type":"Feature","properties":{"name":"FR"},"geometry":{"type":"MultiPolygon","coordinates":[[[[9.56001631,42.152492],[0.9229752231491773E1,41.3800068],[8.54421268,42.2565166],[0.9390000848028905E1,43.0099848],[9.56001631,42.152492]]],[[[7.59367639,48.3330191],[7.46675907,0.47620581976911865E2],[6.03738895,46.7257787],[6.84359297,45.9911466],[6.74995528,45.028518],[7.43518477,43.6938449],[6.52924523,43.1288923],[4.55696252,43.399651],[3.1004106,0.43075200507167125E2],[2.98599898,42.473015],[1.82679325,42.3433847],[-1.50277096,43.0340144],[-1.90135128,43.422802],[-1.38422523,44.0226104],[-1.19379757,0.46014917710954876E2],[-2.96327613,0.47570326646507965E2],[-4.49155494,47.9549543],[-4.59234982,48.6841605],[-3.29581397,0.48901692409859635E2],[-1.61651079,0.48644421291694584E2],[-1.93349403,0.49776341864615766E2],[-0.98946896,0.49347375800160876E2],[1.33876102,50.1271732],[1.63900109,0.50946606350297515E2],[2.51357303,51.1485062],[4.28602298,0.49907496649772554E2],[4.79922163,49.985373],[6.65822961,49.2019583],[8.0992786,49.0177835],[7.59367639,48.3330191]]]]}},{"type":"Feature","properties":{"name":"GA"},"geometry":{"type":"Polygon","coordinates":[[[0.11093772820691925E2,-3.97882659],[9.4052454,-2.14431325],[8.79799564,-1.11130136],[0.9492888624721985E1,1.01011953],[0.11285078973036462E2,1.05766185],[0.11276449008843713E2,2.26105093],[0.13075822381246752E2,2.26709707],[0.13282631463278818E2,1.31418366],[0.14276265903386957E2,1.19692984],[0.13843320753645655E2,0.0387576359],[0.14425455763413593E2,-1.33340667],[13.9924073,-2.47080495],[0.12495702752338161E2,-2.39168833],[0.11478038771214303E2,-2.76561899],[0.11855121697648114E2,-3.42687062],[0.11093772820691925E2,-3.97882659]]]}},{"type":"Feature","properties":{"name":"GE"},"geometry":{"type":"Polygon","coordinates":[[[44.9724801,0.41248128567055595E2],[0.43582745802592726E2,41.0921433],[42.6195488,41.5831727],[41.5540841,41.5356562],[41.4534701,42.6451234],[40.076965,43.5531042],[42.3943946,43.2203079],[43.7560169,42.7408282],[45.4702792,42.5027807],[46.6379082,0.41181672675128226E2],[44.9724801,0.41248128567055595E2]]]}},{"type":"Feature","properties":{"name":"GH"},"geometry":{"type":"Polygon","coordinates":[[[1.0601217,5.92883739],[-1.96470659,4.71046214],[-2.85612505,4.99447582],[-3.24437008,6.2504715],[-2.5621895,8.21962779],[-2.8274963,9.64246084],[-2.94040931,0.10962690334512558E2],[0.0238025244,0.11018681748900804E2],[0.36757999,10.1912129],[0.490957472,7.41174429],[1.0601217,5.92883739]]]}},{"type":"Feature","properties":{"name":"GN"},"geometry":{"type":"Polygon","coordinates":[[[-8.43929847,7.68604279],[-8.92606462,7.30903738],[-9.75534217,8.5410552],[-10.2300936,8.40620555],[-0.11117481248407328E2,0.10045872911006285E2],[-0.12425928514037565E2,9.83583405],[-0.13246550258832515E2,8.90304861],[-0.15130311245168171E2,0.11040411688679526E2],[-0.13743160773157411E2,0.11811269029177412E2],[-0.13700476040084325E2,0.12586182969610194E2],[-11.5139428,0.12442987575729418E2],[-0.10165213792348837E2,0.11844083563682744E2],[-0.9127473517279583E1,0.12308060411015331E2],[-8.3763049,0.11393645941610629E2],[-8.62032101,0.10810890814655183E2],[-8.02994361,0.10206534939001713E2],[-8.30961646,0.9789531968622441E1],[-7.83210039,8.57570425],[-8.43929847,7.68604279]]]}},{"type":"Feature","properties":{"name":"GM"},"geometry":{"type":"Polygon","coordinates":[[[-0.16841524624081273E2,13.1513939],[-0.16713728807023468E2,0.13594958604379853E2],[-15.0817354,0.13876491807505984E2],[-0.14046992356817482E2,13.7940679],[-0.14277701788784553E2,0.13280585028532242E2],[-0.15141163295949466E2,0.13509511623585238E2],[-0.16841524624081273E2,13.1513939]]]}},{"type":"Feature","properties":{"name":"GW"},"geometry":{"type":"Polygon","coordinates":[[[-0.15130311245168171E2,0.11040411688679526E2],[-0.16085214199273565E2,11.524594],[-0.16677451951554573E2,0.12384851589401052E2],[-0.15548476935274008E2,0.12628170070847347E2],[-0.13700476040084325E2,0.12586182969610194E2],[-0.13743160773157411E2,0.11811269029177412E2],[-0.15130311245168171E2,0.11040411688679526E2]]]}},{"type":"Feature","properties":{"name":"GQ"},"geometry":{"type":"Polygon","coordinates":[[[0.9492888624721985E1,1.01011953],[9.64915816,2.28386608],[0.11276449008843713E2,2.26105093],[0.11285078973036462E2,1.05766185],[0.9492888624721985E1,1.01011953]]]}},{"type":"Feature","properties":{"name":"GR"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.23699980096133004E2,35.7050044],[24.2466651,0.35368022365860156E2],[0.26290002882601723E2,35.2999903],[0.24724982130642303E2,34.9199877],[23.5149785,35.2799916],[0.23699980096133004E2,35.7050044]]],[[[22.0553776,41.1498658],[22.76177,41.3048],[24.4926449,41.5838962],[0.25197201368925533E2,41.234486],[0.26604195590936282E2,0.41562114569661105E2],[0.26056942172965506E2,0.40824123440100834E2],[24.9258484,40.9470617],[0.23714811232200816E2,0.40687129218095116E2],[0.24407998894964066E2,40.124993],[23.3429993,39.9609978],[22.8139877,0.40476005153966554E2],[0.22973099399515547E2,38.9709032],[0.24025024855248944E2,38.219993],[0.24040011020613605E2,0.37655014553369426E2],[0.23115002882589152E2,37.9200113],[0.22774971958108633E2,37.3050101],[23.1542253,0.36422505804992056E2],[0.21670026482843696E2,36.8449865],[0.21120034213961333E2,38.3103234],[20.1500159,39.6249977],[21.0200403,40.842727],[22.0553776,41.1498658]]]]}},{"type":"Feature","properties":{"name":"GL"},"geometry":{"type":"Polygon","coordinates":[[[-46.76379,82.62796],[-43.40644,83.22516],[-39.89753,83.18018],[-38.62214,83.54905],[-35.08787,83.64513],[-27.10046,83.51966],[-20.84539,82.72669],[-22.69182,82.34165],[-31.9,82.2],[-31.39646,82.02154],[-27.85666,82.13178],[-24.84448,81.78697],[-22.90328,82.09317],[-22.07175,81.73449],[-23.16961,81.15271],[-20.62363,81.52462],[-15.76818,81.91245],[-12.77018,81.71885],[-12.20855,81.29154],[-16.28533,80.58004],[-16.85,80.35],[-20.04624,80.17708],[-17.73035,80.12912],[-19.70499,78.75128],[-19.67353,77.63859],[-18.47285,76.98565],[-20.03503,76.94434],[-21.67944,76.62795],[-19.83407,76.09808],[-19.59896,75.24838],[-20.66818,75.15585],[-19.37281,74.29561],[-21.59422,74.22382],[-20.43454,73.81713],[-20.76234,73.46436],[-23.56593,73.30663],[-22.31311,72.62928],[-22.29954,72.18409],[-24.27834,72.59788],[-24.79296,72.3302],[-23.44296,72.08016],[-22.13281,71.46898],[-21.75356,70.66369],[-23.53603,70.471],[-25.54341,71.43094],[-25.20135,70.75226],[-26.36276,70.22646],[-22.34902,70.12946],[-27.74737,68.47046],[-31.77665,68.12078],[-32.81105,67.73547],[-34.20196,66.67974],[-36.35284,65.9789],[-39.81222,65.45848],[-40.66899,64.83997],[-41.1887,63.48246],[-42.81938,62.68233],[-42.41666,61.90093],[-43.3784,60.09772],[-44.7875,60.03676],[-46.26364,60.85328],[-48.26294,60.85843],[-49.23308,61.40681],[-49.90039,62.38336],[-51.63325,63.62691],[-52.27659,65.1767],[-53.66166,66.09957],[-53.30161,66.8365],[-53.96911,67.18899],[-52.9804,68.35759],[-51.47536,68.72958],[-50.87122,69.9291],[-53.45629,69.283625],[-54.68336,69.61003],[-54.35884,70.821315],[-51.39014,70.56978],[-54.00422,71.54719],[-55.83468,71.65444],[-54.71819,72.58625],[-57.32363,74.71026],[-58.59679,75.09861],[-58.58516,75.51727],[-61.26861,76.10238],[-63.39165,76.1752],[-68.50438,76.06141],[-71.40257,77.00857],[-68.77671,77.32312],[-66.76397,77.37595],[-71.04293,77.63595],[-73.297,78.04419],[-73.15938,78.43271],[-65.7107,79.39436],[-65.3239,79.75814],[-68.02298,80.11721],[-67.15129,80.51582],[-63.68925,81.21396],[-62.23444,81.3211],[-62.65116,81.77042],[-60.28249,82.03363],[-57.20744,82.19074],[-54.13442,82.19962],[-53.04328,81.88833],[-50.39061,82.43883],[-44.523,81.6607],[-46.9007,82.19979],[-46.76379,82.62796]]]}},{"type":"Feature","properties":{"name":"GT"},"geometry":{"type":"Polygon","coordinates":[[[-90.0955546,0.13735337632700734E2],[-0.9123241024449605E2,0.13927832342987957E2],[-0.9222775000686983E2,0.14538828640190928E2],[-0.9174796017125591E2,0.16066564846251723E2],[-0.9046447262242265E2,0.16069562079324655E2],[-91.4539213,0.17252177232324172E2],[-91.0015199,17.8175949],[-89.1430804,17.808319],[-89.2291217,15.8869376],[-88.9306128,0.15887273464415074E2],[-88.2250228,0.15727722479713902E2],[-89.154811,15.0664192],[-89.353326,0.14424132798719116E2],[-90.0955546,0.13735337632700734E2]]]}},{"type":"Feature","properties":{"name":"GF"},"geometry":{"type":"Polygon","coordinates":[[[-0.53958044603070896E2,5.75654816],[-52.8821413,5.40985098],[-51.6577974,4.15623241],[-52.5564247,2.50470531],[-53.4184651,2.05338919],[-54.5247542,2.31184886],[-54.0115039,3.62256989],[-0.54399542202356514E2,4.2126114],[-54.478633,4.89675568],[-0.53958044603070896E2,5.75654816]]]}},{"type":"Feature","properties":{"name":"GY"},"geometry":{"type":"Polygon","coordinates":[[[-0.59758284878159195E2,8.36703482],[-0.59101684129458654E2,7.99920197],[-57.1474365,5.97314993],[-0.57307245856339506E2,5.0735666],[-58.0446944,4.06086355],[-0.56539385748914555E2,1.89952261],[-59.0308616,1.31769766],[-59.6460437,1.78689383],[-59.9745249,2.75523265],[-59.5380399,3.9588026],[-59.9809586,5.01406118],[-60.7335742,5.20027721],[-0.61410302903881956E2,5.9590681],[-61.1593363,6.69607738],[-60.2956681,7.04391144],[-60.5505879,7.77960297],[-0.59758284878159195E2,8.36703482]]]}},{"type":"Feature","properties":{"name":"HN"},"geometry":{"type":"Polygon","coordinates":[[[-87.3166544,0.12984685777229004E2],[-87.723503,0.13785050360565606E2],[-89.353326,0.14424132798719086E2],[-89.154811,0.15066419175674866E2],[-88.2250228,15.7277225],[-86.0019543,16.0054058],[-84.3682556,0.15835157782448732E2],[-83.4103812,0.15270902818253774E2],[-84.4493359,0.14621614284722511E2],[-84.9245007,0.14790492865452336E2],[-85.8012947,0.13836054999237604E2],[-86.7550866,13.7548455],[-87.3166544,0.12984685777229004E2]]]}},{"type":"Feature","properties":{"name":"HR"},"geometry":{"type":"Polygon","coordinates":[[[19.0054863,44.8602337],[0.18553214145591653E2,45.0815897],[0.17002146030351014E2,0.45233776760430935E2],[0.15750026075918981E2,44.8187117],[0.17674921502358984E2,43.0285625],[18.56,42.65],[0.18450016310304818E2,42.4799914],[0.16015384555737683E2,43.5072155],[0.15174453973052096E2,0.44243191229827914E2],[0.14901602410550877E2,45.0760603],[0.13715059848697251E2,0.45500323798192426E2],[0.15327674594797427E2,0.45452316392593325E2],[0.15768732944408612E2,46.2381082],[0.16564808383864943E2,46.5037509],[0.17630066359129557E2,45.9517691],[0.18829838087650046E2,0.45908877671891844E2],[19.3904757,0.45236515611342384E2],[19.0054863,44.8602337]]]}},{"type":"Feature","properties":{"name":"HT"},"geometry":{"type":"Polygon","coordinates":[[[-71.7123614,0.19714455878167357E2],[-71.7083048,18.0449971],[-73.4545548,0.18217906398994696E2],[-74.3699253,18.6649075],[-72.6949371,0.18445799465401862E2],[-72.3348816,0.18668421535715254E2],[-73.1897906,0.19915683905511912E2],[-71.7123614,0.19714455878167357E2]]]}},{"type":"Feature","properties":{"name":"HU"},"geometry":{"type":"Polygon","coordinates":[[[0.16202298211337364E2,46.852386],[0.16979666782304037E2,0.48123497015976305E2],[0.17857132602620027E2,0.47758428860050365E2],[0.20801293979584926E2,0.48623854071642384E2],[22.0856084,48.4222643],[0.22710531447040495E2,47.8821939],[0.22099767693782834E2,47.6724393],[21.0219523,46.316088],[0.20220192498462836E2,0.46127468980486555E2],[18.4560625,0.45759481106136136E2],[0.16564808383864857E2,46.5037509],[0.16202298211337364E2,46.852386]]]}},{"type":"Feature","properties":{"name":"ID"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.12071560875863044E3,-0.10239581394087864E2],[0.11896780846565471E3,-0.9557969252158031E1],[0.11990030968636161E3,-9.36134043],[0.12071560875863044E3,-0.10239581394087864E2]]],[[[0.12443595014861941E3,-0.10140000909061442E2],[0.12357998172413673E3,-0.10359987481327963E2],[0.12398000898650811E3,-0.9290026950724695E1],[0.12496868248911622E3,-8.89279022],[0.12443595014861941E3,-0.10140000909061442E2]]],[[[0.11790001834520777E3,-8.09568125],[0.11912650678922309E3,-8.70582488],[0.11674014082241663E3,-9.0329367],[0.11790001834520777E3,-8.09568125]]],[[[0.12290353722543611E3,-8.09423431],[0.12275698286345632E3,-8.64980763],[0.12125449059457013E3,-8.93366627],[119.924391,-8.81041798],[0.12071509199430757E3,-8.23696461],[0.12134166873584658E3,-8.5367396],[0.12290353722543611E3,-8.09423431]]],[[[0.10862347863162894E3,-6.77767384],[0.11053922732955331E3,-6.87735768],[0.11075957563684594E3,-6.46518646],[0.11261481123255638E3,-6.94603566],[0.11297876834518812E3,-7.59421315],[0.11447893517462117E3,-7.7765276],[0.11570552697150109E3,-8.37080657],[0.11456451134649652E3,-8.75181691],[113.464734,-8.34894744],[0.11152206139531248E3,-8.30212859],[109.427667,-7.74066416],[0.10827776329959632E3,-7.7666574],[0.10645410200401615E3,-7.35489959],[0.10536548628135554E3,-6.85141611],[0.10605164594932707E3,-5.89591888],[107.265009,-5.95498504],[0.10862347863162894E3,-6.77767384]]],[[[0.13472462446506668E3,-6.21440073],[0.13421013390516893E3,-6.89523773],[0.13449962527886788E3,-5.44504201],[0.13472462446506668E3,-6.21440073]]],[[[0.12724921512258892E3,-3.45906504],[0.12687492272349888E3,-3.79098276],[0.12598903364471929E3,-3.17727345],[0.12724921512258892E3,-3.45906504]]],[[[130.471344,-3.09376434],[130.834836,-3.85847218],[0.12999054650280814E3,-3.44630096],[0.12789889122936236E3,-3.39343597],[128.135879,-2.8436504],[130.471344,-3.09376434]]],[[[134.143368,-1.15186736],[0.13442262739475305E3,-2.76918467],[135.457603,-3.36775278],[136.293314,-2.30704233],[0.13744073774632753E3,-1.70351328],[138.329727,-1.70268646],[0.13992668419816042E3,-2.40905161],[0.14100021040259188E3,-2.60015106],[141.033852,-0.9117892754760419E1],[0.14014341515519257E3,-8.29716766],[0.13761447391169284E3,-8.41168263],[138.668621,-7.3202247],[0.13792783979711086E3,-5.39336557],[0.13598925011611348E3,-4.54654388],[0.13516459760959972E3,-4.46293141],[133.66288,-3.53885345],[0.13298395551974735E3,-4.11297861],[0.13275378869031923E3,-3.3117872],[131.989804,-2.82055104],[0.13369621178602614E3,-2.21454152],[0.13223237348849423E3,-2.21252614],[131.836222,-1.61716196],[0.13051955814018007E3,-0.937720229],[132.380116,-0.369537856],[0.13398554813042844E3,-0.780210463],[134.143368,-1.15186736]]],[[[0.12524050052297159E3,1.41983613],[0.12443703535369737E3,0.427881171],[0.12018308312386276E3,0.237246812],[0.12004086958219548E3,-0.519657891],[0.12093590538949073E3,-1.40890594],[121.475821,-0.955962009],[0.12334056481332848E3,-0.615672703],[0.12238852990121539E3,-1.51685801],[0.12150827355355548E3,-1.90448292],[122.454572,-3.18605844],[0.12227189619353257E3,-3.52950001],[0.12317096276254657E3,-4.68369313],[0.12316233279835379E3,-5.34060394],[0.12223639448454806E3,-5.28293304],[0.12271956912647707E3,-4.46417164],[0.12173823367725439E3,-4.85133148],[0.12089818159391771E3,-3.6021054],[0.12097238895068877E3,-2.62764292],[0.12030545291552991E3,-2.93160369],[0.12043071658740539E3,-5.52824106],[0.11936690555224496E3,-5.37987802],[0.11949883548388597E3,-3.49441172],[118.767769,-2.8019992],[0.12003570193896637E3,0.566477362],[120.885779,1.30922272],[121.666817,1.01394359],[0.12407752241424285E3,0.917101956],[0.12524050052297159E3,1.41983613]]],[[[0.12868824873262074E3,1.13238597],[0.12863595218314137E3,0.258485826],[0.12769647464407504E3,-0.266598403],[0.12739949018769377E3,1.0117215],[0.12793237755748751E3,2.17459626],[0.12868824873262074E3,1.13238597]]],[[[0.10966326012577375E3,2.00646699],[0.11051406090702713E3,0.773131415],[0.11179754845586044E3,0.90444123],[112.859809,1.49779003],[0.11380584964401956E3,1.21754873],[114.621355,1.43068818],[0.11586551720587677E3,4.30655915],[0.11788203494677019E3,4.13755138],[0.11731323245653354E3,3.23442821],[0.11804832970588538E3,2.28769013],[0.11787562706916603E3,1.82764069],[0.11899674726773819E3,0.902219143],[0.11781185835171779E3,0.784241848],[0.11752164350796662E3,-0.80372324],[0.11656004845587952E3,-1.48766082],[0.11614808393764864E3,-4.01272633],[116.000858,-3.65703745],[0.11486480309454454E3,-4.10698414],[0.11446865156459509E3,-3.49570363],[0.11325699425664757E3,-3.11877573],[0.11206812625534067E3,-3.47839202],[0.11170329064336002E3,-2.99444223],[110.223846,-2.93403248],[0.11007093550012436E3,-1.59287404],[0.10909187381392253E3,-0.459506524],[0.10906913618371404E3,1.34193391],[0.10966326012577375E3,2.00646699]]],[[[0.10581765506390936E3,-5.85235565],[0.10471038414919151E3,-5.8732846],[0.10258426069540693E3,-4.22025888],[0.10139911339722508E3,-2.79977711],[0.10014198082886062E3,-0.650347589],[0.9926373986206025E2,0.183141588],[0.9860135135294311E2,1.82350658],[97.6995976,2.45318391],[97.1769422,3.30879059],[0.9538087609251347E2,4.97078217],[0.9529302615761733E2,5.47982087],[97.484882,5.24632091],[0.10064143354696168E3,2.09938121],[0.10165801232300734E3,2.08369741],[0.10307684044801303E3,0.561361396],[0.10383839603069835E3,0.104541734],[0.10343764529827497E3,-0.711945896],[104.369991,-1.08484303],[0.10488789269411402E3,-2.34042531],[0.10610859337771271E3,-3.06177663],[0.10581765506390936E3,-5.85235565]]]]}},{"type":"Feature","properties":{"name":"IN"},"geometry":{"type":"Polygon","coordinates":[[[77.8374508,0.35494009507787766E2],[78.9122689,34.3219363],[79.1761288,32.4837798],[78.4584465,32.6181644],[78.7388945,0.31515906073527063E2],[81.1112561,0.30183480943313402E2],[80.0884245,28.7944701],[83.3042489,27.3645057],[84.6750179,0.27234901231387536E2],[85.2517786,26.7261984],[88.0602377,26.4146154],[88.1204407,0.27876541652939594E2],[88.730326,0.28086864732367516E2],[88.8142485,27.2993159],[89.7445276,0.26719402981059957E2],[0.9203348351437509E2,26.8383105],[91.6966565,27.7717418],[92.5031189,27.8968763],[94.5659904,0.29277438055939985E2],[95.4048023,29.0317166],[0.9611767866413103E2,0.29452802028922466E2],[0.9624883344928779E2,28.411031],[97.3271139,28.2615827],[97.1339991,0.27083773505149964E2],[0.9641936567585097E2,0.27264589341739224E2],[95.1247677,26.5735721],[95.1551534,0.26001307277932085E2],[0.9410674197792505E2,23.8507409],[93.3251876,0.24078556423432204E2],[93.1661276,0.22278459580977103E2],[92.672721,0.22041238918541254E2],[0.9214603478390681E2,0.23627498684172593E2],[0.9170647505083211E2,0.22985263983649183E2],[0.9115896325069971E2,23.5035269],[0.9237620161333481E2,0.24976692816664965E2],[89.9206926,25.2697499],[89.8324809,25.9650821],[88.5630494,26.4465256],[88.2097893,25.7680657],[88.931554,0.25238692328384776E2],[88.0844222,0.24501657212821925E2],[89.0319613,0.22055708319582976E2],[88.8887659,0.21690588487224748E2],[86.9757044,21.4955616],[87.0331686,0.20743307806882413E2],[86.499351,0.20151638495356607E2],[85.0602657,19.4785788],[83.9410059,0.18302009792549725E2],[82.1927922,0.17016636053937813E2],[82.1912419,0.16556664130107848E2],[80.3248959,0.15899184882058348E2],[80.0250692,0.15136414903214147E2],[80.2862936,0.13006260687710833E2],[79.8625468,0.12056215318240888E2],[79.8579993,10.3572751],[78.2779407,8.93304678],[77.5398979,7.96553478],[76.592979,8.89927623],[75.7464673,0.11308250637248307E2],[74.8648157,0.12741935736537897E2],[74.4438595,0.14617221787977696E2],[73.5341993,15.9906522],[72.8209095,0.19208233547436166E2],[72.6305335,0.21356009426351008E2],[71.1752735,0.20757441311114235E2],[70.4704586,0.20877330634031384E2],[69.1641301,22.089298],[69.6449276,0.22450774644454338E2],[68.1766451,23.691965],[68.8425993,24.3591336],[71.0432402,24.356524],[70.1689266,0.26491871649678842E2],[69.5143929,0.26940965684511372E2],[70.6164962,0.27989196275335868E2],[71.7776656,0.27913180243434525E2],[72.8237517,0.28961591701772054E2],[74.4213802,0.30979814764931177E2],[74.405929,31.6926395],[75.2586418,32.2711055],[74.4515593,32.7648996],[73.7499484,34.3176989],[74.2402027,34.748887],[75.757061,34.5049226],[76.8717216,34.653544],[77.8374508,0.35494009507787766E2]]]}},{"type":"Feature","properties":{"name":"IE"},"geometry":{"type":"Polygon","coordinates":[[[-6.19788489,53.867565],[-6.0329854,53.1531642],[-6.78885657,0.52260117906292336E2],[-8.56161658,0.51669301255899356E2],[-0.9977085740590269E1,51.8204548],[-9.16628252,52.8646288],[-9.68852454,53.8813626],[-7.57216793,55.1316222],[-7.57216793,54.0599564],[-6.19788489,53.867565]]]}},{"type":"Feature","properties":{"name":"IR"},"geometry":{"type":"Polygon","coordinates":[[[53.9215979,37.1989184],[55.5115784,37.9641171],[57.3304338,38.0292294],[59.234762,0.37412987982730336E2],[60.377638,36.5273831],[0.61123070509694145E2,36.4915972],[61.2108171,0.35650072333309225E2],[60.5284298,0.33676446031218006E2],[60.9419446,0.31548074652628753E2],[0.61699314406180825E2,31.3795061],[0.61781221551363444E2,0.30735850328081234E2],[0.60874248488208785E2,0.29829238999952604E2],[61.7718681,0.28699333807890795E2],[62.7278304,28.2596449],[0.62755425652929866E2,0.27378923448184985E2],[63.3166317,0.26756532497661667E2],[61.8741875,0.26239974880472104E2],[61.4973629,25.078237],[0.57397251417882394E2,25.739902],[0.56970765822177555E2,26.9661063],[0.56492138706290206E2,0.27143304755150197E2],[54.7150896,0.26480657863871514E2],[53.493097,26.8123689],[52.4835979,0.27580849107365495E2],[51.5207626,0.27865689602158298E2],[0.50115008579311585E2,0.30147772528599717E2],[48.9413334,0.30317090359004037E2],[0.48567971225789755E2,0.29926778265903522E2],[47.6852861,30.9848532],[47.8492037,31.7091759],[47.3346615,0.32469155381799105E2],[46.1093616,0.33017287299119005E2],[45.4166907,0.33967797756479584E2],[46.151788,35.0932588],[45.4206181,35.9775459],[44.2257556,37.9715844],[44.1092253,39.4281363],[44.7939897,39.7130026],[45.4577218,38.8741391],[46.1436231,38.7412015],[46.5057198,0.38770605373686294E2],[0.47685079380083096E2,0.39508363959301214E2],[48.0107443,38.7940148],[48.8832491,38.3202453],[49.1996123,37.5828743],[50.8423544,36.8728142],[0.52264024692601424E2,36.7004217],[53.9215979,37.1989184]]]}},{"type":"Feature","properties":{"name":"IQ"},"geometry":{"type":"Polygon","coordinates":[[[45.4206181,35.9775459],[46.151788,35.0932588],[45.4166907,0.33967797756479584E2],[46.1093616,0.33017287299119005E2],[47.3346615,0.32469155381799105E2],[47.8492037,31.7091759],[47.6852861,30.9848532],[0.48567971225789755E2,0.29926778265903522E2],[0.47974519077349896E2,29.9758192],[47.3026221,30.0590699],[0.46568713413281756E2,29.0990252],[44.7094987,0.29178891099559383E2],[0.41889980910007836E2,0.31190008653278365E2],[0.40399994337736246E2,0.31889991766887935E2],[39.1954684,32.1610088],[0.38792340529136084E2,0.33378686428352225E2],[0.41006158888519934E2,34.4193723],[0.41289707472505455E2,36.3588146],[42.3495911,37.2298725],[0.44772699008977696E2,0.37170444647768434E2],[45.4206181,35.9775459]]]}},{"type":"Feature","properties":{"name":"IS"},"geometry":{"type":"Polygon","coordinates":[[[-0.14508695441129236E2,66.4558922],[-0.14739637417041605E2,65.8087483],[-13.6097322,65.126671],[-0.14909833746794902E2,64.3640819],[-0.18656245896874992E2,63.496383],[-0.22762971971110158E2,0.63960178941495386E2],[-0.21778484259517683E2,64.4021158],[-23.9550439,64.8911299],[-0.22184402635170358E2,65.0849682],[-0.22227423265053332E2,65.3785937],[-0.24326184047939336E2,65.6111893],[-23.6505147,66.262519],[-0.22134922451250883E2,66.4104687],[-20.5762837,65.7321121],[-19.0568416,66.2766009],[-17.7986238,65.9938533],[-0.16167818976292125E2,66.5267923],[-0.14508695441129236E2,66.4558922]]]}},{"type":"Feature","properties":{"name":"IL"},"geometry":{"type":"Polygon","coordinates":[[[35.7199182,0.32709192409794866E2],[35.5456653,0.32393992011030576E2],[0.35183930291491436E2,32.5325107],[34.9274085,0.31353435370401414E2],[0.35397560662586045E2,31.489086],[34.9226026,0.29501326198844524E2],[34.2654334,0.31219360866820153E2],[0.35126052687324545E2,33.0909004],[35.8211007,33.2774265],[35.7199182,0.32709192409794866E2]]]}},{"type":"Feature","properties":{"name":"IT"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.15520376010813834E2,38.2311551],[0.15099988234119449E2,36.6199873],[0.12431003859108813E2,37.6129499],[0.12570943637755136E2,38.1263811],[0.15520376010813834E2,38.2311551]]],[[[9.21001183,41.2099914],[0.9809975213264977E1,40.5000089],[0.9669518670295673E1,0.39177376410471794E2],[8.42830244,39.171847],[8.15999841,40.9500072],[9.21001183,41.2099914]]],[[[7.43518477,43.6938449],[6.74995528,45.028518],[6.84359297,45.9911466],[7.75599206,45.8244901],[9.18288171,46.4402147],[0.9922836541390353E1,46.3148994],[0.10442701450246602E2,0.46893546250997446E2],[0.12153088006243081E2,47.1153932],[0.12376485223040843E2,46.7675591],[0.13806475457421556E2,46.5093061],[0.13937630242578335E2,0.45591015936864665E2],[0.12328581170306306E2,45.3817781],[0.12589237094786483E2,0.44091365871754476E2],[0.13526905958722494E2,43.5877274],[0.14029820997787027E2,42.7610078],[0.15889345737377797E2,41.5410823],[0.18376687452882575E2,40.3556249],[0.18293385044028096E2,39.8107744],[0.16869595981522338E2,40.4422346],[0.16448743116937322E2,39.7954007],[17.1714897,39.4246998],[0.16100960727613057E2,37.9858987],[0.16109332309644312E2,38.964547],[0.15413612501698822E2,40.0483568],[0.13627985060285397E2,0.41188287258461656E2],[12.8880819,41.2530895],[0.10511947869517797E2,0.42931462510747224E2],[0.10200028924204048E2,0.43920006822274615E2],[8.88894616,44.3663362],[7.43518477,43.6938449]]]]}},{"type":"Feature","properties":{"name":"JM"},"geometry":{"type":"Polygon","coordinates":[[[-77.5696008,0.18490525417550487E2],[-76.1996586,0.17886867173732966E2],[-77.2063413,17.7011162],[-78.3377193,0.18225967922432233E2],[-77.5696008,0.18490525417550487E2]]]}},{"type":"Feature","properties":{"name":"JO"},"geometry":{"type":"Polygon","coordinates":[[[35.5456653,0.32393992011030576E2],[35.7199182,0.32709192409794866E2],[0.36834062127435544E2,0.32312937526980775E2],[0.38792340529136084E2,0.33378686428352225E2],[39.1954684,32.1610088],[37.0021656,0.31508412990844743E2],[0.37998848911294374E2,30.5084999],[36.0689409,0.29197494615184457E2],[34.9560372,29.3565547],[34.9226026,0.29501326198844524E2],[0.35397560662586045E2,31.489086],[35.5456653,0.32393992011030576E2]]]}},{"type":"Feature","properties":{"name":"JP"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.13463842817600388E3,34.1492337],[0.13420341596897086E3,33.2011779],[133.79295,33.5219852],[0.13301485802625788E3,32.7045674],[132.363115,32.989382],[132.924373,34.0602986],[0.13390410607313638E3,34.3649311],[0.13463842817600388E3,34.1492337]]],[[[140.976388,37.1420743],[0.14077407433488264E3,35.8428771],[0.14025327925024513E3,35.1381139],[0.13897552778539622E3,34.6676],[0.13721759891169123E3,34.6062859],[135.792983,33.4648052],[0.13512098270074543E3,33.8490712],[0.13507943484918272E3,34.5965449],[133.340316,34.3759382],[0.13215677086805132E3,33.9049334],[0.13098614464734348E3,33.8857614],[0.13200003624891005E3,0.33149992377244615E2],[0.13133279015515737E3,0.31450354519164843E2],[0.13068631798718596E3,0.31029579169228242E2],[0.13020241987520498E3,0.31418237616495418E2],[0.13044767622286216E3,0.32319474595665724E2],[0.12940846316947258E3,33.2960558],[0.13035393517468466E3,33.6041507],[0.13087845096244715E3,0.34232742824840045E2],[0.13261767296766251E3,35.4333931],[134.608301,35.7316177],[0.13567753787652893E3,0.35527134100886826E2],[0.13672383060114245E3,37.3049842],[137.390612,0.36827390651998826E2],[139.426405,38.2159622],[140.05479,0.39438807481436385E2],[0.13988337934789988E3,0.40563312486323696E2],[0.14030578250545372E3,41.1950052],[141.368973,41.3785599],[0.14191426313697048E3,39.9916161],[141.884601,0.39180864569651504E2],[140.959489,38.174001],[140.976388,37.1420743]]],[[[143.910162,44.1740998],[0.14461342654843963E3,0.43960882880217525E2],[145.320825,44.384733],[0.14554313724180278E3,0.43262088324550604E2],[144.059662,42.9883583],[0.14318384972551732E3,41.9952147],[0.14161149092017249E3,42.6787906],[0.14106728641170665E3,41.5845938],[0.13995510623592108E3,0.41569555975911044E2],[0.13981754357315995E3,42.5637589],[0.14031208703019323E3,43.3332726],[0.14138054894426003E3,0.43388824774746496E2],[141.967645,45.5514835],[143.910162,44.1740998]]]]}},{"type":"Feature","properties":{"name":"KZ"},"geometry":{"type":"Polygon","coordinates":[[[70.9623149,42.2661543],[69.0700273,41.3842443],[68.6324829,40.6686807],[67.9858557,0.41135990708982206E2],[66.7140471,0.41168443508461564E2],[66.0233916,41.9946463],[66.0980123,42.99766],[64.9008244,0.43728080552742654E2],[62.0133004,43.5044766],[61.0583199,44.405817],[58.5031271,0.45586804307632974E2],[55.9289173,44.9958585],[0.55968191359283026E2,41.3086417],[55.4552511,41.2598591],[54.0794178,42.3241094],[52.5024598,41.7833155],[52.5014262,42.7922979],[0.51342427199108215E2,0.43132974758469345E2],[0.50305642938036264E2,0.44609835516938915E2],[0.51278503452363225E2,44.5148542],[0.51316899041556034E2,45.2459982],[53.0408765,45.2590465],[0.53042736850807785E2,0.46853006089864486E2],[0.51191945428274266E2,0.47048704738953916E2],[49.10116,0.46399330000000134E2],[48.057253,47.7437528],[47.3152312,0.47715847479841955E2],[46.4664458,48.3941523],[46.7515963,49.3560058],[47.5494804,0.50454698391311126E2],[48.5778414,49.8747596],[48.7023816,50.6051285],[50.7666484,51.6927624],[52.3287236,0.51718652248738124E2],[0.55716940545479815E2,50.6217166],[0.56777961053296565E2,51.0435513],[58.3632906,51.0636535],[59.6422823,0.50545442206415714E2],[59.9328072,0.50842194118851864E2],[0.61337424350840934E2,50.7990701],[61.5880034,0.51272658799843214E2],[59.9675338,51.9604204],[61.6999862,52.9799964],[60.9780664,53.6649934],[0.61436591424409066E2,54.0062646],[65.1785336,54.3542278],[65.6668758,54.601267],[68.1691004,54.9703918],[69.0681669,55.3852501],[70.8652666,0.55169733588270105E2],[71.1801311,0.54133285224008254E2],[72.22415,0.54376655381886735E2],[73.5085161,0.54035616766976595E2],[73.4256787,0.53489810289109755E2],[74.384845,53.5468611],[76.8911003,54.4905244],[76.5251795,0.54177003485727134E2],[77.8009156,0.53404414984747575E2],[80.0355595,50.8647509],[80.5684469,51.3883365],[81.9459855,50.8121959],[83.3830038,0.51069182847693924E2],[85.54127,49.6928586],[86.8293567,49.8266747],[87.3599703,49.2149808],[86.5987765,48.5491816],[85.7682329,48.4557506],[85.7204838,47.4529695],[85.1642904,47.0009557],[83.1804838,0.47330031236350855E2],[82.4589258,0.45539649563166506E2],[79.9661064,44.917517],[80.8662065,43.180362],[80.2599903,0.42349999294599115E2],[79.1421774,0.42856092434249604E2],[76.0003536,42.9880224],[74.2128658,43.2983393],[73.4897575,42.5008945],[71.8446383,0.42845395412765185E2],[70.9623149,42.2661543]]]}},{"type":"Feature","properties":{"name":"KE"},"geometry":{"type":"Polygon","coordinates":[[[41.58513,-1.68325],[40.26304,-2.57309],[39.60489,-4.34653],[39.20222,-4.67677],[37.7669,-3.67712],[37.69869,-3.09699],[34.07262,-1.05982],[34.18,0.515],[35.03599,1.90584],[34.47913,3.5556],[34.005,4.24988495],[0.35298007118232974E2,5.506],[0.36159078632855646E2,4.44786413],[36.8550932,4.44786413],[38.120915,3.598605],[38.67114,3.61607],[38.89251,3.50074],[39.5593843,3.42206],[40.76848,4.25702],[41.8550831,3.91891192],[40.98105,2.78452],[40.993,-0.85829],[41.58513,-1.68325]]]}},{"type":"Feature","properties":{"name":"KG"},"geometry":{"type":"Polygon","coordinates":[[[70.9623149,42.2661543],[71.8446383,42.8453954],[73.4897575,42.5008945],[74.2128658,43.2983393],[76.0003536,42.9880224],[79.1421774,42.8560924],[80.2599903,42.3499993],[78.1871969,41.1853159],[76.9044845,41.0664859],[76.526368,40.4279461],[74.7768624,40.3664253],[73.6753793,39.4312369],[71.7846936,39.2794632],[70.5491618,39.6041979],[69.4648869,39.5266833],[69.5596098,40.1032114],[71.014198,40.2443655],[71.7748751,40.1458444],[73.0554171,0.40866033026689465E2],[71.8701148,0.41392900092121266E2],[71.1578585,41.1435871],[70.4200224,41.5199983],[70.9623149,42.2661543]]]}},{"type":"Feature","properties":{"name":"KH"},"geometry":{"type":"Polygon","coordinates":[[[102.584932,0.12186594956913282E2],[102.348099,0.13394247341358223E2],[0.10298842207236163E3,0.14225721136934467E2],[0.10521877689007887E3,0.14273211778210694E2],[0.10604394616091552E3,0.13881091009979954E2],[0.10649637332563087E3,0.14570583807834282E2],[0.10738272749230109E3,0.14202440904186972E2],[0.10749140302941089E3,0.12337205918827946E2],[0.10581052371625313E3,0.11567614650921227E2],[0.10624967003786946E3,0.10961811835163587E2],[0.10433433475140347E3,10.4865437],[103.49728,0.10632555446815928E2],[102.584932,0.12186594956913282E2]]]}},{"type":"Feature","properties":{"name":"KR"},"geometry":{"type":"Polygon","coordinates":[[[0.12834971642467661E3,38.6122429],[0.12946044966035817E3,36.7841892],[129.468304,35.6321406],[129.091377,0.35082484239231434E2],[0.12648574751190874E3,34.3900459],[126.559231,35.6845405],[0.12611739790253229E3,36.7254847],[0.12686014326386339E3,0.36893924058574626E2],[0.12617475874237624E3,37.7496858],[0.12834971642467661E3,38.6122429]]]}},{"type":"Feature","properties":{"name":"KW"},"geometry":{"type":"Polygon","coordinates":[[[0.47974519077349896E2,29.9758192],[0.48416094191283946E2,28.5520043],[0.46568713413281756E2,29.0990252],[47.3026221,30.0590699],[0.47974519077349896E2,29.9758192]]]}},{"type":"Feature","properties":{"name":"LA"},"geometry":{"type":"Polygon","coordinates":[[[0.10521877689007887E3,0.14273211778210694E2],[0.10558903852745016E3,0.15570316066952858E2],[104.779321,16.4418649],[104.716947,17.428859],[0.10395647667848529E3,18.2409541],[0.10211359175009248E3,0.18109101670804165E2],[0.10105954756063517E3,17.5124973],[101.282015,0.19462584947176765E2],[0.10060629357300316E3,0.19508344427971224E2],[0.10011598758341783E3,0.20417849636308187E2],[0.10118000532430754E3,0.21436572984294024E2],[0.10180311974488292E3,21.1743668],[0.10165201785686152E3,0.22318198757409547E2],[0.10217043582561358E3,0.22464753119389304E2],[0.10320386111858645E3,0.20766562201413745E2],[0.10443500044150805E3,20.7587332],[104.822574,0.19886641750563882E2],[103.896532,0.19265180975821806E2],[0.10509459842328152E3,18.6669746],[107.564525,0.15202173163305558E2],[0.10738272749230109E3,0.14202440904186972E2],[0.10649637332563087E3,0.14570583807834282E2],[0.10604394616091552E3,0.13881091009979954E2],[0.10521877689007887E3,0.14273211778210694E2]]]}},{"type":"Feature","properties":{"name":"LB"},"geometry":{"type":"Polygon","coordinates":[[[35.8211007,33.2774265],[0.35126052687324545E2,33.0909004],[35.9984025,0.34644914048800004E2],[36.6117501,0.34201788641897174E2],[35.8211007,33.2774265]]]}},{"type":"Feature","properties":{"name":"LR"},"geometry":{"type":"Polygon","coordinates":[[[-7.71215939,4.36456594],[-9.00479367,4.83241852],[-0.11438779466182055E2,6.78591686],[-10.2300936,8.40620555],[-9.75534217,8.5410552],[-8.92606462,7.30903738],[-8.43929847,7.68604279],[-8.60288021,6.4675642],[-7.57015255,5.7073522],[-7.71215939,4.36456594]]]}},{"type":"Feature","properties":{"name":"LY"},"geometry":{"type":"Polygon","coordinates":[[[14.8513,0.22862950000000126E2],[0.14143870883855243E2,22.491289],[0.13581424594790462E2,23.0405061],[11.9995056,0.23471668402596432E2],[0.10771363559622955E2,0.24562532050061748E2],[0.10303846876678449E2,0.24379313259370974E2],[9.31941084,0.26094324856057483E2],[9.71628584,26.5122063],[0.9859997999723475E1,28.9599897],[0.9482139926805417E1,0.30307556057246188E2],[9.95022505,0.31376069647745283E2],[0.11432253452203781E2,32.3689031],[11.4887875,33.1369958],[13.91868,32.71196],[15.24563,32.26508],[15.71394,31.37626],[18.02109,30.76357],[19.08641,30.26639],[20.05335,30.98576],[19.82033,31.75179],[20.85452,32.7068],[22.89576,32.63858],[23.2368,32.19149],[24.92114,31.89936],[25.16482,31.56915],[24.70007,30.04419],[25,29.2386545],[25,22],[25,20.00304],[0.23850000000000136E2,20],[0.23837660000000138E2,0.19580470000000105E2],[15.86085,23.40972],[14.8513,0.22862950000000126E2]]]}},{"type":"Feature","properties":{"name":"LK"},"geometry":{"type":"Polygon","coordinates":[[[81.787959,7.52305532],[81.6373222,6.48177521],[80.348357,5.96836986],[79.8724687,6.76346345],[79.6951669,8.20084341],[80.1478007,0.9824077663609557E1],[80.838818,9.26842683],[81.787959,7.52305532]]]}},{"type":"Feature","properties":{"name":"LS"},"geometry":{"type":"Polygon","coordinates":[[[28.9782626,-0.28955596612261715E2],[0.29325166456832587E2,-0.29257386976846252E2],[28.8483997,-0.30070050551068253E2],[0.27749397006956485E2,-30.6451059],[0.26999261915807637E2,-0.29875953871379984E2],[0.28541700066855498E2,-28.6475017],[28.9782626,-0.28955596612261715E2]]]}},{"type":"Feature","properties":{"name":"LT"},"geometry":{"type":"Polygon","coordinates":[[[0.22731098667092652E2,0.54327536932993326E2],[22.7577637,54.8565744],[0.21268448927503467E2,0.55190481675835315E2],[0.21055800408622414E2,56.0310764],[0.22201156853939494E2,56.3378018],[0.24860684441840757E2,56.3725284],[0.26494331495883753E2,0.55615106919977634E2],[26.5882792,55.1671756],[0.25536353794056993E2,54.2824234],[23.4841276,53.9124977],[0.22731098667092652E2,0.54327536932993326E2]]]}},{"type":"Feature","properties":{"name":"LU"},"geometry":{"type":"Polygon","coordinates":[[[6.04307336,0.50128051662794235E2],[6.18632043,0.49463802802114515E2],[5.67405195,0.49529483547557504E2],[6.04307336,0.50128051662794235E2]]]}},{"type":"Feature","properties":{"name":"LV"},"geometry":{"type":"Polygon","coordinates":[[[0.21055800408622414E2,56.0310764],[0.21581866489353672E2,57.4118706],[0.22524341261492875E2,57.7533743],[0.23318452996522097E2,57.0062365],[24.1207296,57.0256927],[0.24312862583114622E2,57.7934236],[25.1645935,57.970157],[27.2881848,57.4745283],[27.7700159,57.2442581],[0.28176709425577993E2,56.16913],[0.26494331495883753E2,0.55615106919977634E2],[0.24860684441840757E2,56.3725284],[0.22201156853939494E2,56.3378018],[0.21055800408622414E2,56.0310764]]]}},{"type":"Feature","properties":{"name":"MA"},"geometry":{"type":"Polygon","coordinates":[[[-5.19386349,35.7551822],[-4.59100623,35.330712],[-2.1699137,35.1683963],[-1.79298581,0.34527918606091305E2],[-1.30789914,32.2628889],[-2.61660478,0.32094346218386164E2],[-3.64749793,31.637294],[-3.69044105,0.30896951605751152E2],[-4.85964617,30.5011876],[-5.24212928,0.30000443020135574E2],[-7.05922767,0.29579228420524657E2],[-8.67411618,28.841289],[-8.794884,27.1206963],[-0.9735343390328751E1,0.26860944729107416E2],[-0.11392554897496948E2,0.26883423977154393E2],[-12.5009627,0.24770116278578143E2],[-0.13891110398809047E2,0.23691009019459386E2],[-0.14221167771857154E2,0.22310163072188345E2],[-0.14750954555713404E2,0.21500600083903805E2],[-0.17020428432675768E2,0.21422310288981635E2],[-0.16261921759495664E2,0.22679339504481277E2],[-0.15982610642958063E2,0.23723358466074103E2],[-0.15089331834360733E2,24.5202607],[-0.14439939947964831E2,0.26254418443297652E2],[-0.13773804897506464E2,0.26618892320252286E2],[-0.12618836635783111E2,0.28038185533148663E2],[-0.11688919236690765E2,0.28148643907172584E2],[-9.56481116,0.29933573716749862E2],[-9.81471839,31.1777355],[-0.9300692918321829E1,0.32564679266890636E2],[-8.65747637,33.2402453],[-6.91254411,34.1104764],[-5.92999427,35.7599881],[-5.19386349,35.7551822]]]}},{"type":"Feature","properties":{"name":"MD"},"geometry":{"type":"Polygon","coordinates":[[[0.26619336785597795E2,48.2207262],[0.27522537469195154E2,0.48467119452501116E2],[29.1226982,47.8490952],[30.0246586,46.4239367],[0.28862972446414062E2,46.4378893],[0.28233553501099042E2,45.4882832],[0.28128030226359044E2,0.46810476386088254E2],[0.26619336785597795E2,48.2207262]]]}},{"type":"Feature","properties":{"name":"MG"},"geometry":{"type":"Polygon","coordinates":[[[49.5435189,-0.12469832858940554E2],[50.4765369,-0.15226512139550541E2],[0.49435618523970305E2,-0.17953064060134366E2],[0.47095761346226595E2,-0.24941629733990453E2],[0.45409507684110444E2,-25.6014344],[44.0397205,-0.24988345228782308E2],[43.254187,-0.22057413018484123E2],[43.4332976,-0.21336475111580185E2],[44.3743254,-20.0723662],[44.4643974,-0.19435454196859048E2],[43.9630843,-0.17409944756746782E2],[44.4465174,-0.16216219170804507E2],[46.3122433,-0.15780018405828798E2],[47.7051298,-0.14594302666891764E2],[48.8450603,-0.13089174899958664E2],[0.49194651320193316E2,-12.0405567],[49.5435189,-0.12469832858940554E2]]]}},{"type":"Feature","properties":{"name":"MX"},"geometry":{"type":"Polygon","coordinates":[[[-114.815,32.52528],[-111.02361,31.33472],[-108.24194,31.34222],[-108.24,31.7548537],[-106.50759,31.75452],[-106.1429,31.39995],[-105.03737,30.64402],[-104.70575,30.12173],[-103.94,29.27],[-103.11,28.97],[-102.48,29.76],[-100.9576,0.29380710000000132E2],[-100.11,0.28110000000000127E2],[-99.3,26.84],[-99.02,26.37],[-0.9714000830767071E2,0.25869997463478395E2],[-0.9770294552284223E2,0.24272343044526735E2],[-0.9787236670611111E2,22.4442117],[-0.9718933346229329E2,0.20635433254473128E2],[-0.9590088497595995E2,18.8280242],[-94.4257295,0.18144370835843347E2],[-91.4079034,18.8760833],[-0.9077186987991087E2,19.2841204],[-0.9027861833368489E2,20.9998555],[-88.5438663,21.4936754],[-87.0518902,0.21543543199138295E2],[-86.845908,0.20849864610268355E2],[-87.3832912,20.2554048],[-87.8371911,18.259816],[-88.4901229,18.4868306],[-88.8483439,0.17883198147040332E2],[-91.0015199,0.17817594916245696E2],[-0.9145392127151511E2,0.17252177232324186E2],[-0.9046447262242265E2,0.16069562079324726E2],[-0.9174796017125595E2,0.16066564846251765E2],[-0.9222775000686983E2,0.14538828640190957E2],[-93.3594639,0.15615429592343672E2],[-94.6916565,0.16200975246642884E2],[-0.9655743404822829E2,15.6535151],[-0.10082949886758131E3,17.1710711],[-0.10191852800170022E3,0.17916090196193977E2],[-0.10350098954955808E3,18.2922946],[-104.99201,0.19316133938061682E2],[-0.10573139604370766E3,0.20434101874264115E2],[-0.10526581722697402E3,21.4221036],[-0.10602871639689897E3,0.22773752346278627E2],[-0.10840190487347098E3,25.172314],[-0.10944408932171734E3,0.25824883938087677E2],[-0.10929164384645627E3,0.26442934068298428E2],[-110.391732,27.162115],[-112.228235,28.9544087],[-0.11314866939985717E3,31.1709659],[-0.11477645117883503E3,0.31799532172161147E2],[-0.11467389929895177E3,0.30162681179315992E2],[-112.962298,28.4251903],[-0.11276158708377488E3,0.27780216783147523E2],[-111.616489,0.26662817287700477E2],[-0.11071000688357134E3,24.8260043],[-109.409104,23.3646723],[-0.11003139197471444E3,0.22823077500901206E2],[-0.11029507097048366E3,23.4309732],[-0.11218203589562147E3,0.24738412787367167E2],[-112.300711,0.26012004299416613E2],[-0.11446574662968003E3,0.27142090358991368E2],[-0.11416201839888463E3,0.28566111965442303E2],[-115.518654,0.29556361599235398E2],[-0.11712775999999985E3,32.53534],[-114.72139,32.72083],[-114.815,32.52528]]]}},{"type":"Feature","properties":{"name":"MK"},"geometry":{"type":"Polygon","coordinates":[[[22.76177,41.3048],[22.0553776,41.1498658],[21.0200403,40.842727],[20.46315,41.51509],[20.76216,42.05186],[22.3805258,42.3202595],[22.76177,41.3048]]]}},{"type":"Feature","properties":{"name":"ML"},"geometry":{"type":"Polygon","coordinates":[[[-0.12170750291380301E2,0.14616834214735505E2],[-0.11666078253617854E2,0.15388208319556298E2],[-0.10650791388379417E2,0.15132745876521426E2],[-9.55023841,0.15486496893775437E2],[-5.53774431,0.15501689764869257E2],[-5.48852251,0.16325102037007966E2],[-6.45378659,0.24956590684503425E2],[-4.92333737,24.9745741],[3.146661,19.6935786],[3.15813317,0.19057364203360038E2],[4.26741947,19.1552652],[4.27021,0.16852227484601215E2],[3.6382589,0.15568119818580454E2],[1.38552819,0.15323561102759172E2],[0.374892205,0.14928908189346132E2],[-0.515854458,0.15116157741755726E2],[-2.00103512,0.14559008287000891E2],[-3.5228027,0.13337661647998615E2],[-4.00639075,0.13472485459848116E2],[-5.22094194,0.11713858954307227E2],[-5.4043416,0.10370736802609146E2],[-8.02994361,0.10206534939001713E2],[-8.62032101,0.10810890814655183E2],[-8.3763049,0.11393645941610629E2],[-0.9127473517279583E1,0.12308060411015331E2],[-0.10165213792348837E2,0.11844083563682744E2],[-11.5139428,0.12442987575729418E2],[-0.12170750291380301E2,0.14616834214735505E2]]]}},{"type":"Feature","properties":{"name":"MM"},"geometry":{"type":"Polygon","coordinates":[[[0.9855355065307305E2,0.9932959906448545E1],[0.9876454552612077E2,0.11441291612183749E2],[98.509574,0.13122377631070677E2],[98.103604,0.13640459703012851E2],[97.5970716,16.1005679],[97.1645398,0.16928734442609336E2],[95.3693522,15.71439],[94.1888042,0.16037936102762018E2],[0.9453348595579135E2,0.17277240301985728E2],[94.3248165,18.2135139],[92.3685535,0.20670883287025347E2],[92.672721,0.22041238918541254E2],[93.1661276,0.22278459580977103E2],[93.3251876,0.24078556423432204E2],[0.9410674197792505E2,23.8507409],[95.1551534,0.26001307277932085E2],[95.1247677,26.5735721],[0.9641936567585097E2,0.27264589341739224E2],[97.1339991,0.27083773505149964E2],[97.3271139,28.2615827],[97.9119877,0.28335945136014345E2],[98.6826901,27.5088122],[98.671838,0.25918702500913525E2],[97.724609,25.0836372],[97.6047197,0.23897404690033042E2],[0.9866026248575577E2,0.24063286037689966E2],[98.8987492,23.1427221],[99.5319922,22.9490388],[0.9924089887898725E2,22.1183143],[0.10118000532430754E3,0.21436572984294024E2],[0.10011598758341783E3,0.20417849636308187E2],[0.9825372399291561E2,0.19708203029860044E2],[97.3758964,0.18445437730375815E2],[98.9033484,0.16177824204976115E2],[98.192074,15.1237025],[99.0977552,0.13827502549693278E2],[99.587286,0.11892762762901697E2],[0.9855355065307305E2,0.9932959906448545E1]]]}},{"type":"Feature","properties":{"name":"ME"},"geometry":{"type":"Polygon","coordinates":[[[0.19738051385179627E2,0.42688247382165564E2],[19.37177,41.87755],[18.56,42.65],[19.21852,43.52384],[19.48389,43.35229],[19.95857,43.10604],[20.3398,42.89852],[20.0707,42.58863],[0.19738051385179627E2,0.42688247382165564E2]]]}},{"type":"Feature","properties":{"name":"MN"},"geometry":{"type":"Polygon","coordinates":[[[0.11289773969935439E3,49.5435654],[0.11436245649623527E3,50.2483027],[0.11548569542853141E3,0.49805177313834605E2],[0.11667880089728618E3,49.8885314],[0.11548528201707305E3,48.1353826],[0.11574283735561578E3,47.7265445],[0.11729550744025741E3,47.6977091],[0.11806414269416672E3,48.0667305],[119.772824,0.47048058783550125E2],[0.11887432579963873E3,46.8054121],[0.11742170128791419E3,46.6727329],[0.11598509647020008E3,0.45727235012386004E2],[0.11346390669154417E3,44.8088931],[0.11187330610560029E3,45.1020794],[0.11166773725794323E3,44.0731758],[0.11182958784388137E3,0.43743118394539515E2],[0.11041210330611528E3,42.8712336],[0.10924359581913146E3,42.5194463],[0.10774477257693795E3,42.4815158],[0.10612931562706169E3,42.1343277],[0.10496499393109347E3,41.5974096],[0.10331227827353482E3,41.9074682],[0.10183304039917994E3,42.514873],[99.5158175,42.5246915],[0.9634939578652781E2,0.42725635280928685E2],[0.9530687544147153E2,44.2413309],[93.4807337,0.44975472113619965E2],[90.9455396,45.2860733],[90.5857683,45.7197161],[0.9097080936072501E2,46.8881461],[90.2808256,47.6935491],[88.8542977,48.0690817],[88.0138322,0.48599462795600616E2],[87.7512643,49.297198],[88.8055668,49.4705207],[92.2347115,50.8021707],[0.9414756635943561E2,50.4805366],[0.9481594933469873E2,50.0134333],[0.9725972781778141E2,49.7260607],[98.2317615,0.50422400621128745E2],[97.8257398,51.0109952],[98.8614905,0.52047366034546684E2],[99.9817322,51.6340063],[0.10206522260946733E3,0.51259920559283124E2],[0.10225590864462431E3,50.5105606],[0.10367654544476022E3,0.50089966132195116E2],[0.10588659142458675E3,0.50406019192092224E2],[0.10688880415245534E3,50.274296],[0.10847516727095127E3,49.2825477],[0.11066201053267876E3,49.1301281],[0.11289773969935439E3,49.5435654]]]}},{"type":"Feature","properties":{"name":"MZ"},"geometry":{"type":"Polygon","coordinates":[[[34.559989,-0.11520020033415925E2],[36.5140817,-0.11720938002166733E2],[0.39521029900883775E2,-0.10896853936408226E2],[40.3165886,-0.10317096042525698E2],[40.5996204,-0.14201975192931862E2],[0.40775475294768995E2,-0.14691764418194241E2],[40.089264,-16.100774],[39.4525586,-16.7208912],[37.4111328,-0.17586368096591237E2],[34.7863835,-0.19784011732667736E2],[34.7018925,-20.4970431],[0.35562545536369086E2,-22.09],[35.6074703,-0.23706563002214683E2],[35.0407349,-0.24478350518493805E2],[0.32574632195777866E2,-25.7273182],[0.32830120477028885E2,-0.26742191664336197E2],[32.0716655,-26.7338201],[0.31837777947728064E2,-25.8433318],[31.9305888,-0.24369416599222536E2],[0.31191409132621285E2,-22.2515097],[0.32244988234188014E2,-0.21116488539313693E2],[0.32772707960752626E2,-0.19715592136313298E2],[0.32847638787575846E2,-0.16713398125884616E2],[0.30274255812305107E2,-0.15507786960515212E2],[30.1794812,-0.14796099134991527E2],[0.33214024692525214E2,-0.13971860039936153E2],[34.4596334,-0.14613009535381424E2],[34.3812919,-0.16183559665596043E2],[0.35033810255683534E2,-0.16801299737213093E2],[35.7719047,-0.15896858819240725E2],[35.6868453,-0.14611045830954332E2],[34.559989,-0.13579997653866876E2],[34.2800061,-0.12280025323132504E2],[34.559989,-0.11520020033415925E2]]]}},{"type":"Feature","properties":{"name":"MR"},"geometry":{"type":"Polygon","coordinates":[[[-0.12170750291380301E2,0.14616834214735505E2],[-13.4357377,16.039383],[-0.14577347581428981E2,16.5982637],[-0.16463098110407884E2,16.1350361],[-16.1463474,0.18108481553616656E2],[-0.16277838100641517E2,20.0925207],[-0.17063423224342568E2,0.20999752102130827E2],[-0.16845193650773993E2,21.3333235],[-0.12929101935263532E2,21.3270706],[-0.13118754441774712E2,0.22771220201096256E2],[-0.12874221564169575E2,0.23284832261645178E2],[-0.11937224493853321E2,0.23374594224536168E2],[-11.9694189,0.25933352769468268E2],[-8.68729367,0.25881056219988906E2],[-8.68439979,0.27395744126896005E2],[-4.92333737,24.9745741],[-6.45378659,0.24956590684503425E2],[-5.48852251,0.16325102037007966E2],[-5.53774431,0.15501689764869257E2],[-9.55023841,0.15486496893775437E2],[-0.10650791388379417E2,0.15132745876521426E2],[-0.11666078253617854E2,0.15388208319556298E2],[-0.12170750291380301E2,0.14616834214735505E2]]]}},{"type":"Feature","properties":{"name":"MW"},"geometry":{"type":"Polygon","coordinates":[[[34.559989,-0.11520020033415925E2],[34.2800061,-0.12280025323132504E2],[34.559989,-0.13579997653866876E2],[35.6868453,-0.14611045830954332E2],[35.7719047,-0.15896858819240725E2],[0.35033810255683534E2,-0.16801299737213093E2],[34.3812919,-0.16183559665596043E2],[34.4596334,-0.14613009535381424E2],[0.33214024692525214E2,-0.13971860039936153E2],[32.6881653,-0.13712857761289275E2],[0.33306422153463075E2,-0.12435778090060218E2],[33.1142892,-0.11607198174692314E2],[33.4856877,-0.10525558770391115E2],[32.7593754,-9.23059905],[33.739729,-0.9417150974162723E1],[34.2800061,-0.10159999688358404E2],[34.559989,-0.11520020033415925E2]]]}},{"type":"Feature","properties":{"name":"MY"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.10107551557821333E3,6.20486705],[0.10115421878459384E3,5.69138418],[0.10214118696493645E3,6.22163605],[0.10338121463421217E3,4.85500113],[0.10350244754436889E3,2.79101858],[0.10422881147666354E3,1.293048],[0.10351970747275443E3,1.22633373],[0.10139063846232918E3,2.76081371],[0.10019670617065773E3,5.31249258],[0.10025959638875692E3,6.64282482],[0.10107551557821333E3,6.20486705]]],[[[0.11788203494677019E3,4.13755138],[0.11586551720587677E3,4.30655915],[114.621355,1.43068818],[0.11380584964401956E3,1.21754873],[112.859809,1.49779003],[0.11179754845586044E3,0.90444123],[0.11051406090702713E3,0.773131415],[0.10966326012577375E3,2.00646699],[111.168853,1.8506367],[111.370081,2.69730337],[0.11299561486211527E3,3.10239492],[0.11420401655482843E3,4.52587393],[0.11465959598191355E3,4.00763683],[0.11534746097215069E3,4.31663605],[0.11545071048386981E3,5.4477298],[0.11672510298061978E3,6.92477143],[0.11768907514859237E3,5.98749014],[0.11918190392463994E3,5.4078356],[0.11788203494677019E3,4.13755138]]]]}},{"type":"Feature","properties":{"name":"NA"},"geometry":{"type":"Polygon","coordinates":[[[0.16344976840895242E2,-0.28576705010697697E2],[15.2104724,-0.27090955905874047E2],[0.14408144158595833E2,-0.23853014011329847E2],[0.14257714064194175E2,-0.22111208184499954E2],[13.352498,-0.20872834161057504E2],[0.12608564080463621E2,-19.0453488],[0.11794918654028066E2,-0.18069129327061916E2],[0.11734198846085121E2,-0.17301889336824473E2],[0.12814081251688407E2,-16.9413429],[0.14209706658595024E2,-17.3531007],[18.2633094,-0.17309950860262006E2],[0.18956186964603603E2,-0.17789094740472258E2],[0.21377176141045567E2,-0.17930636488519696E2],[0.23215048455506064E2,-17.5231161],[0.24033861525170778E2,-0.17295843194246324E2],[25.0844434,-0.17661815687737374E2],[0.23579005568137717E2,-18.2812611],[23.1968584,-0.17869038181227786E2],[0.20910641310314535E2,-0.18252218926672022E2],[0.20881134067475866E2,-0.21814327080983148E2],[19.8954578,-21.849157],[0.19895767856534434E2,-0.24767790215760588E2],[0.19894734327888614E2,-0.28461104831660776E2],[0.18464899122804752E2,-29.0454619],[0.17387497185951503E2,-28.7835141],[0.16824017368240902E2,-0.28082161553664466E2],[0.16344976840895242E2,-0.28576705010697697E2]]]}},{"type":"Feature","properties":{"name":"NC"},"geometry":{"type":"Polygon","coordinates":[[[0.16577998986232637E3,-21.080005],[167.120011,-0.22159990736583488E2],[0.16674003462144478E3,-22.3999761],[0.16547437544175222E3,-0.21679606621998232E2],[0.16416799523341365E3,-0.20444746595951628E2],[0.16445996707586272E3,-20.1200119],[0.16577998986232637E3,-21.080005]]]}},{"type":"Feature","properties":{"name":"NE"},"geometry":{"type":"Polygon","coordinates":[[[11.9995056,0.23471668402596432E2],[0.13581424594790462E2,23.0405061],[0.14143870883855243E2,22.491289],[14.8513,0.22862950000000126E2],[0.15096887648181848E2,21.3085188],[0.15487148064850146E2,0.20730414537025638E2],[0.15685740594147774E2,0.19957180080642384E2],[0.15247731154041846E2,0.16627305813050782E2],[0.13972201775781684E2,0.15684365953021143E2],[0.13540393507550789E2,0.14367133693901222E2],[0.14495787387762903E2,0.12859396267137356E2],[0.13995352817448293E2,0.12461565253138303E2],[0.13318701613018561E2,0.13556356309457954E2],[12.3020712,0.13037189032437539E2],[0.11527803175511508E2,13.32898],[0.10114814487354748E2,0.13277251898649467E2],[9.0149333,0.12826659247280418E2],[7.80467126,0.13343526923063735E2],[6.82044193,0.13115091254117601E2],[5.4430583,0.13865923977102225E2],[4.36834354,0.13747481594289411E2],[3.68063358,12.5529033],[3.61118045,0.11660167141155966E2],[2.84864302,12.2356359],[2.1544735,0.11940150051313424E2],[2.17710778,0.12625017808477537E2],[1.02410322,0.12851825669806601E2],[0.429927606,0.13988733018443893E2],[0.374892205,0.14928908189346147E2],[1.38552819,15.3235611],[3.6382589,0.15568119818580442E2],[4.27021,0.16852227484601315E2],[4.26741947,0.19155265204337127E2],[5.67756595,19.601207],[8.5728931,0.21565660712159225E2],[11.9995056,0.23471668402596432E2]]]}},{"type":"Feature","properties":{"name":"NG"},"geometry":{"type":"Polygon","coordinates":[[[8.50028771,4.77198294],[6.69807214,4.24059418],[5.89817264,4.26245331],[4.32560713,6.27065115],[2.69170169,6.25881725],[2.72379276,8.5068454],[3.70543827,0.10063210354040208E2],[3.61118045,0.11660167141155966E2],[3.68063358,0.12552903347214226E2],[4.36834354,0.13747481594289324E2],[5.4430583,0.13865923977102298E2],[6.82044193,0.13115091254117518E2],[7.80467126,0.13343526923063745E2],[9.0149333,12.8266592],[0.10114814487354693E2,13.2772519],[0.11527803175511394E2,0.13328980007373588E2],[0.12302071160540523E2,0.13037189032437524E2],[0.13318701613018561E2,0.13556356309457826E2],[0.14181336297266792E2,0.12483656927943116E2],[0.14415378859116686E2,0.11572368882692075E2],[0.13572949659894562E2,0.10798565985553566E2],[0.12753671502339214E2,8.71776276],[0.12218872104550599E2,8.30582408],[11.7457744,6.98138296],[11.0587879,6.64442678],[0.10118276808318257E2,7.03876964],[9.23316288,6.44449067],[8.50028771,4.77198294]]]}},{"type":"Feature","properties":{"name":"NI"},"geometry":{"type":"Polygon","coordinates":[[[-85.7125405,0.11088444932494824E2],[-87.6684934,0.12909909979702633E2],[-86.7338218,0.13263092556201443E2],[-86.7550866,0.13754845485890913E2],[-85.8012947,13.836055],[-84.9245007,0.14790492865452352E2],[-83.147219,14.9958292],[-83.8554703,0.11373311265503787E2],[-83.6556117,0.10938764146361422E2],[-85.7125405,0.11088444932494824E2]]]}},{"type":"Feature","properties":{"name":"NL"},"geometry":{"type":"Polygon","coordinates":[[[6.9051396,53.4821622],[6.5893966,0.51852029120483394E2],[5.98865807,0.51851615709025054E2],[6.15665816,50.803721],[4.97399133,0.51475023708698124E2],[4.04707116,51.2672586],[3.83028853,51.6205445],[4.70599735,53.0917984],[6.9051396,53.4821622]]]}},{"type":"Feature","properties":{"name":"NO"},"geometry":{"type":"Polygon","coordinates":[[[0.11027368605196866E2,58.8561494],[0.10356556837616067E2,59.469807],[8.38200036,0.58313288479233215E2],[7.04874841,58.0788842],[5.6658354,58.5881554],[5.30823449,59.6632319],[4.99207808,61.970998],[5.91290042,0.62614472968182724E2],[8.55341109,63.4540083],[0.10527709181366758E2,64.4860383],[0.14761145867581604E2,67.8106416],[19.1840284,69.8174442],[0.21378416375420585E2,70.2551694],[0.23023742303161526E2,70.2020718],[0.24546543409938465E2,71.0304967],[0.26370049676221807E2,70.9862617],[0.28165547316202943E2,71.1854744],[0.31293418409965454E2,70.4537877],[0.30005435011522792E2,70.1862589],[0.31101078728975097E2,69.5580801],[0.28591929559043194E2,69.0647769],[29.015573,69.7664912],[0.27732292107867863E2,70.164193],[26.179622,69.825299],[25.6892127,69.0921138],[0.24735679152126725E2,68.6495568],[0.22356237827247412E2,68.8417414],[0.21244936150810673E2,69.370443],[0.20645592889089528E2,69.1062473],[0.19878559604581255E2,68.4071943],[0.17993868442464333E2,68.5673913],[0.17729181756265348E2,68.0105519],[0.16768878614985482E2,68.0139367],[0.15108411492583002E2,66.1938669],[13.5556897,64.7870277],[0.13571916131248711E2,64.0491141],[0.12579935336973932E2,64.066219],[11.9305693,63.1283176],[0.11992064243221563E2,61.8003625],[0.12631146681375183E2,0.61293571682370136E2],[12.3003658,60.1179328],[0.11027368605196866E2,58.8561494]]]}},{"type":"Feature","properties":{"name":"NP"},"geometry":{"type":"Polygon","coordinates":[[[88.1204407,0.27876541652939594E2],[88.0602377,26.4146154],[85.2517786,26.7261984],[84.6750179,0.27234901231387536E2],[83.3042489,27.3645057],[80.0884245,28.7944701],[81.1112561,0.30183480943313402E2],[81.5258045,30.422717],[83.3371151,0.29463731594352193E2],[85.8233199,0.28203575954698703E2],[88.1204407,0.27876541652939594E2]]]}},{"type":"Feature","properties":{"name":"SJ"},"geometry":{"type":"MultiPolygon","coordinates":[[[[24.72412,77.85385],[22.49032,77.44493],[20.72601,77.67704],[20.8119,78.25463],[22.88426,78.45494],[23.28134,78.07954],[24.72412,77.85385]]],[[[18.25183,79.70175],[21.54383,78.95611],[19.02737,78.5626],[18.47172,77.82669],[17.59441,77.63796],[17.1182,76.80941],[15.91315,76.77045],[13.76259,77.38035],[14.66956,77.73565],[13.1706,78.02493],[11.22231,78.8693],[10.44453,79.65239],[13.17077,80.01046],[13.71852,79.66039],[15.14282,79.67431],[15.52255,80.01608],[16.99085,80.05086],[18.25183,79.70175]]],[[[0.25447625359811894E2,80.4073404],[27.4075057,80.0564057],[25.9246505,79.517834],[23.0244658,79.4000117],[0.20075188429451885E2,79.5668232],[0.17368015170977458E2,80.3188962],[0.20455992059010697E2,80.5981556],[21.9079448,80.3576793],[0.22919252557067438E2,80.6571443],[0.25447625359811894E2,80.4073404]]]]}},{"type":"Feature","properties":{"name":"NZ"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.17302037479074076E3,-0.40919052422856424E2],[0.17395840538970288E3,-40.9267005],[174.248517,-0.41770008233406756E2],[0.17271124637277077E3,-0.43372287693048506E2],[173.080113,-43.8533436],[0.17145292524646365E3,-44.2425188],[0.17061669721911662E3,-45.9089287],[0.16933233117093428E3,-0.46641235446967855E2],[0.16667688602118423E3,-46.2199175],[0.16704642418850327E3,-45.1109413],[168.303763,-44.1239731],[0.17052491987536618E3,-43.0316883],[172.79858,-0.40493962090823466E2],[0.17302037479074076E3,-0.40919052422856424E2]]],[[[0.17461200890533055E3,-0.36156397393540544E2],[175.336616,-37.209098],[0.17535759647043753E3,-36.5261939],[175.95849,-37.5553818],[177.438813,-0.37961248467766495E2],[0.17851709354076283E3,-37.6953732],[0.17797046023997936E3,-0.39166342868812976E2],[0.17720699262929915E3,-0.39145775648760846E2],[177.032946,-39.8799427],[176.01244,-41.2896241],[175.239567,-41.6883078],[0.17465097293527847E3,-41.281821],[0.17522763024322367E3,-0.40459235528323404E2],[174.900157,-39.9089332],[0.17382404666574402E3,-39.5088543],[174.574802,-0.38797683200842755E2],[0.17469701663645063E3,-37.3811288],[0.17431900353423555E3,-36.5348239],[0.17263600548735374E3,-34.5291065],[174.32939,-35.2654957],[0.17461200890533055E3,-0.36156397393540544E2]]]]}},{"type":"Feature","properties":{"name":"OM"},"geometry":{"type":"MultiPolygon","coordinates":[[[[58.8611414,0.21114034532144302E2],[0.58034318475176605E2,20.4814375],[0.57788700392493375E2,19.0675703],[0.56609650913321985E2,18.5742671],[56.2835209,17.8760668],[0.55274900343655105E2,0.17228354397037663E2],[53.1085726,16.6510511],[52.0000098,0.19000003363516072E2],[54.9999817,19.999994],[55.6666594,22.0000011],[55.2083411,22.70833],[0.55886232537668064E2,0.24920830593357493E2],[56.3968474,0.24924732163995515E2],[57.4034526,23.8785945],[58.7292115,0.23565667832935418E2],[59.8061483,22.3105248],[58.8611414,0.21114034532144302E2]]],[[[56.3914213,25.8959907],[56.3914213,25.8959907],[56.3914213,25.8959907],[56.3914213,25.8959907]]]]}},{"type":"Feature","properties":{"name":"PK"},"geometry":{"type":"Polygon","coordinates":[[[75.1580278,37.1330309],[75.8968974,0.36666806138651836E2],[76.1928483,35.8984034],[77.8374508,0.35494009507787766E2],[76.8717216,34.653544],[75.757061,34.5049226],[74.2402027,34.748887],[73.7499484,34.3176989],[74.4515593,32.7648996],[75.2586418,32.2711055],[74.405929,31.6926395],[74.4213802,0.30979814764931177E2],[72.8237517,0.28961591701772054E2],[71.7776656,0.27913180243434525E2],[70.6164962,0.27989196275335868E2],[69.5143929,0.26940965684511372E2],[70.1689266,0.26491871649678842E2],[71.0432402,24.356524],[68.8425993,24.3591336],[68.1766451,23.691965],[67.4436666,23.9448437],[66.3728276,0.25425140896093847E2],[61.4973629,25.078237],[61.8741875,0.26239974880472104E2],[63.3166317,0.26756532497661667E2],[0.62755425652929866E2,0.27378923448184985E2],[62.7278304,28.2596449],[61.7718681,0.28699333807890795E2],[0.60874248488208785E2,0.29829238999952604E2],[62.5498568,29.3185725],[65.046862,0.29472180691031905E2],[66.3464726,0.29887943427036177E2],[66.3814576,30.7388992],[66.9388912,0.31304911200479353E2],[68.9266769,0.31620189113892064E2],[69.6871473,0.33105498969041236E2],[70.3235942,33.3585326],[69.9305432,34.0201201],[70.881803,33.9888559],[71.6130762,0.35153203436822864E2],[71.2623483,0.36074387518857804E2],[71.8462919,36.5099423],[75.1580278,37.1330309]]]}},{"type":"Feature","properties":{"name":"PA"},"geometry":{"type":"Polygon","coordinates":[[[-77.8815714,7.22377127],[-78.1820957,8.31918244],[-79.1203072,8.99609203],[-80.4806893,8.09030752],[-80.0036899,7.54752412],[-80.8864009,7.22054149],[-81.0595428,7.81792105],[-82.965783,8.22502798],[-82.5461963,0.9566134751824677E1],[-81.4392871,8.78623404],[-79.5733028,9.61161001],[-78.0559277,9.24773041],[-77.3533608,8.67050467],[-77.2425665,7.93527823],[-77.8815714,7.22377127]]]}},{"type":"Feature","properties":{"name":"PE"},"geometry":{"type":"Polygon","coordinates":[[[-69.5904238,-0.17580011895419332E2],[-70.3725724,-18.3479754],[-71.4620408,-0.17363487644116383E2],[-73.4445296,-0.16359362888252996E2],[-76.0092051,-0.14649286390850321E2],[-76.2592415,-0.13535039157772943E2],[-77.1061924,-12.2227162],[-79.0369531,-8.38656788],[-79.7605782,-7.19434092],[-81.2499963,-6.13683441],[-80.9263468,-5.69055674],[-81.4109426,-4.73676483],[-80.3025606,-3.40485646],[-80.442242,-4.42572438],[-79.2052891,-4.95912851],[-78.6398972,-4.54778411],[-77.8379048,-3.00302052],[-76.6353943,-2.60867767],[-75.5449957,-1.5616098],[-75.3732232,-0.152031752],[-75.1066245,-0.0572054989],[-73.6595035,-1.26049122],[-73.0703922,-2.30895436],[-70.8134757,-2.25686452],[-70.0477085,-2.72515635],[-70.6926821,-3.742872],[-69.8936352,-4.29818694],[-70.7947688,-4.25126474],[-72.8919277,-5.27456146],[-73.1200274,-6.62993092],[-73.9872355,-7.52382985],[-72.1848907,-0.10053597914269432E2],[-71.3024123,-0.10079436130415374E2],[-70.4818939,-0.9490118096558845E1],[-70.5486857,-0.11009146823778465E2],[-69.5296781,-0.10951734307502194E2],[-68.6650797,-0.12561300144097173E2],[-68.9488867,-0.14453639418193283E2],[-69.3897642,-0.15660129082911654E2],[-68.9596354,-16.5006979],[-69.5904238,-0.17580011895419332E2]]]}},{"type":"Feature","properties":{"name":"PH"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.12637681359263748E3,8.41470633],[0.12653742394420063E3,7.1893806],[0.12619677290253256E3,6.27429434],[0.12583142052622911E3,7.29371532],[125.363852,6.7864853],[0.12539651167206064E3,5.58100332],[0.12421978763234236E3,6.1613555],[0.12424366214406135E3,7.36061046],[0.12361021243702757E3,7.83352733],[0.12208549930225577E3,6.89942414],[0.12231235884001714E3,8.03496206],[0.12348768761606352E3,8.69300975],[0.12384115441293984E3,8.2403242],[0.12476461225799564E3,8.96040945],[0.12547139082245157E3,8.98699698],[0.12541211795461278E3,9.76033478],[0.12622271447154318E3,9.28607433],[0.12637681359263748E3,8.41470633]]],[[[0.12398243777882583E3,0.10278778591345812E2],[0.12299588300994164E3,9.02218863],[0.12238005496631948E3,0.9713360907424203E1],[0.12294741051645192E3,0.10881868394408029E2],[0.12407793582570125E3,11.2327255],[0.12398243777882583E3,0.10278778591345812E2]]],[[[0.11850458092659035E3,9.31638255],[117.174275,8.3674999],[0.11898734215706108E3,0.10376292019080509E2],[0.11951149620979756E3,0.11369668077027214E2],[0.11968967654833992E3,0.10554291490109875E2],[0.11850458092659035E3,9.31638255]]],[[[0.12188354780485913E3,11.8917551],[0.12312021650603597E3,11.5836602],[0.12310083784392647E3,11.1659337],[0.12200261030485957E3,0.10441016750526087E2],[0.12188354780485913E3,11.8917551]]],[[[0.12550255171112352E3,0.12162694606978349E2],[0.12578346479706218E3,0.11046121934447768E2],[0.12501188398651229E3,11.3114546],[0.12527744917206027E3,0.10358722032101312E2],[0.12480181928924573E3,0.10134678859899893E2],[0.12430252160044172E3,0.11495370998577227E2],[124.891013,0.11415582587118593E2],[0.12426676150929572E3,0.12557760931849685E2],[0.12550255171112352E3,0.12162694606978349E2]]],[[[0.12152739383350351E3,13.0695902],[0.12126219038298157E3,0.12205560207564403E2],[120.323436,13.4664135],[0.12152739383350351E3,13.0695902]]],[[[0.12132130822152358E3,0.18504064642811016E2],[121.937601,0.18218552354398383E2],[0.12251565392465336E3,0.17093504746971973E2],[0.12166278608610828E3,0.15931017564350128E2],[0.12172882856657728E3,0.14328376369682246E2],[0.12270127566944566E3,14.3365412],[0.12395029503794026E3,13.7821306],[0.12407741906137825E3,0.12536676947474575E2],[0.12292865197152993E3,0.13552919826710408E2],[0.12062863732308331E3,0.13857655747935652E2],[120.070429,0.14970869452367097E2],[0.11988377322802826E3,0.16363704331929966E2],[0.12028648766487882E3,16.0346288],[0.12071586714079191E3,18.5052274],[0.12132130822152358E3,0.18504064642811016E2]]]]}},{"type":"Feature","properties":{"name":"PL"},"geometry":{"type":"Polygon","coordinates":[[[15.0169959,51.1066741],[0.14074521111719491E2,52.9812625],[0.14119686313542587E2,53.7570291],[0.17622831658608675E2,54.851536],[0.18696254510175464E2,54.4387188],[0.22731098667092652E2,0.54327536932993326E2],[23.4841276,53.9124977],[0.23799198846133375E2,52.6910994],[0.23199493849386187E2,0.52486977444053664E2],[23.5270708,51.5784541],[0.24029985792748903E2,50.7054066],[0.22518450148211603E2,49.4767736],[0.22558137648211755E2,0.49085738023467144E2],[0.21607808058364213E2,49.4701073],[0.19825022820726872E2,49.2171254],[0.18853144158613617E2,49.4962298],[17.5545671,50.3621459],[0.16719475945714436E2,50.2157466],[15.0169959,51.1066741]]]}},{"type":"Feature","properties":{"name":"PR"},"geometry":{"type":"Polygon","coordinates":[[[-66.2824345,0.18514761664295364E2],[-65.8471639,17.9759057],[-67.1841624,0.17946553453030077E2],[-67.1006791,18.5206011],[-66.2824345,0.18514761664295364E2]]]}},{"type":"Feature","properties":{"name":"KP"},"geometry":{"type":"Polygon","coordinates":[[[0.12834971642467661E3,38.6122429],[0.12617475874237624E3,37.7496858],[0.12471216067921938E3,38.1083461],[125.38659,0.39387957872061165E2],[0.12426562462778531E3,0.39928493353834156E2],[0.12618204511932943E3,41.1073361],[0.12686908328664985E3,41.8165693],[0.12820843305879066E3,41.4667716],[128.052215,41.9942846],[0.12959666873587952E3,42.4249818],[0.12999426720593323E3,0.42985386867843786E2],[0.13040003055228902E3,42.2800036],[0.12966736209525482E3,41.6011044],[0.12970518924369247E3,40.8828279],[0.12753343550019417E3,39.7568501],[0.12738543419811029E3,0.39213472398427655E2],[0.12834971642467661E3,38.6122429]]]}},{"type":"Feature","properties":{"name":"PT"},"geometry":{"type":"Polygon","coordinates":[[[-9.03481767,41.8805706],[-8.26385698,42.2804687],[-8.01317461,0.41790886135417125E2],[-6.66860552,0.41883386949219584E2],[-7.09803667,39.0300727],[-7.02928118,38.0757641],[-7.45372555,37.0977876],[-8.89885698,36.8688093],[-8.83999752,38.2662434],[-0.9526570603869715E1,38.7374291],[-8.76868405,40.7606389],[-9.03481767,41.8805706]]]}},{"type":"Feature","properties":{"name":"PY"},"geometry":{"type":"Polygon","coordinates":[[[-0.62685057135657885E2,-0.22249029229422387E2],[-62.2659613,-0.20513734633061276E2],[-0.61786326463453776E2,-0.19633736667562964E2],[-0.59115042487206104E2,-0.19356906019775398E2],[-0.58166392381408045E2,-0.20176700941653678E2],[-57.870674,-20.7326877],[-0.57937155727761294E2,-0.22090175876557172E2],[-56.4733174,-0.22086300144135283E2],[-0.55610682745981144E2,-0.22655619398694842E2],[-55.4007472,-0.23956935316668805E2],[-54.2929596,-24.0210141],[-0.54625290696823576E2,-25.7392555],[-54.7887949,-0.26621785577096134E2],[-55.6958455,-27.387837],[-56.4867016,-0.27548499037386293E2],[-58.6181736,-0.27123718763947096E2],[-0.57633660040911124E2,-25.6036565],[-57.7772172,-25.1623398],[-60.028966,-0.24032796319273274E2],[-60.8465647,-0.23880712579038292E2],[-0.62685057135657885E2,-0.22249029229422387E2]]]}},{"type":"Feature","properties":{"name":"QA"},"geometry":{"type":"Polygon","coordinates":[[[50.8101083,0.24754742539971378E2],[50.7439108,0.25482424221289396E2],[51.5890788,25.8011128],[51.3896078,24.627386],[50.8101083,0.24754742539971378E2]]]}},{"type":"Feature","properties":{"name":"RO"},"geometry":{"type":"Polygon","coordinates":[[[0.22710531447040495E2,47.8821939],[0.23142236362406802E2,48.0963411],[0.24866317172960578E2,47.7375257],[0.26619336785597795E2,48.2207262],[0.28128030226359044E2,0.46810476386088254E2],[0.28233553501099042E2,45.4882832],[0.29603289015427432E2,0.45293308010431126E2],[0.28837857700320203E2,0.44913873806328056E2],[0.28558081495891997E2,43.7074617],[0.27242399529740908E2,0.44175986029632405E2],[0.25569271681426926E2,43.6884447],[0.22944832391051847E2,43.8237853],[22.6571497,44.234923],[0.21562022739353605E2,44.7689473],[0.20220192498462836E2,0.46127468980486555E2],[21.0219523,46.316088],[0.22099767693782834E2,47.6724393],[0.22710531447040495E2,47.8821939]]]}},{"type":"Feature","properties":{"name":"RU"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.14364800744036287E3,50.7476004],[0.14465414757708564E3,0.48976390692737596E2],[0.14317392785051723E3,49.3065514],[142.558668,0.47861575018904915E2],[0.14353349246640406E3,46.836728],[143.505277,46.1379076],[0.14274770063697392E3,46.7407649],[142.09203,45.9667553],[0.14190444461483506E3,48.8591885],[142.179983,50.9523424],[0.14159407596249002E3,51.9354349],[0.14168254601457366E3,53.3019665],[0.14260693403541075E3,0.53762145087287905E2],[142.654786,54.3658808],[0.14326084760963207E3,52.7407604],[0.14323526777564766E3,51.7566603],[0.14364800744036287E3,50.7476004]]],[[[0.22731098667092652E2,0.54327536932993326E2],[0.19660640089606403E2,0.54426083889373984E2],[0.19888481479581344E2,54.8661604],[21.2684489,55.1904817],[0.22757763706155288E2,54.8565744],[0.22731098667092652E2,0.54327536932993326E2]]],[[[-175.01425,66.58435],[-174.33983,66.33556],[-174.57182,67.06219],[-171.85731,66.91308],[-169.89958,65.97724],[-170.89107,65.54139],[-172.53025,65.43791],[-172.555,64.46079],[-173.89184,64.2826],[-175.98353,64.92288],[-176.20716,65.35667],[-178.35993,65.39052],[-178.68611,66.11211],[-179.88377,65.87456],[-179.43268,65.40411],[-180,64.9797087],[-180,68.9636364],[-177.55,68.2],[-174.92825,67.20589],[-175.01425,66.58435]]],[[[0.18000000000000014E3,70.8321992],[178.7253,71.0988],[0.18000000000000014E3,71.5157143],[0.18000000000000014E3,70.8321992]]],[[[-178.69378,70.89302],[-180,70.8321992],[-180,71.5157143],[-177.577945,71.26948],[-178.69378,70.89302]]],[[[143.60385,73.21244],[139.86312,73.36983],[142.06207,73.85758],[143.60385,73.21244]]],[[[150.73167,75.08406],[149.575925,74.68892],[147.977465,74.778355],[146.11919,75.17298],[146.358485,75.49682],[150.73167,75.08406]]],[[[145.086285,75.562625],[144.3,74.82],[140.61381,74.84768],[138.95544,74.61148],[136.97439,75.26167],[137.51176,75.94917],[138.831075,76.13676],[141.471615,76.09289],[145.086285,75.562625]]],[[[57.5356926,70.720464],[53.6773751,70.7626578],[53.4120166,71.2066617],[51.6018946,71.474759],[51.4557536,72.0148811],[52.4782752,72.2294416],[0.52444168735570855E2,72.7747314],[54.4276136,73.6275475],[53.5082898,73.749814],[55.9024589,74.6274865],[0.55631932814359715E2,75.0814123],[0.61170044386647504E2,76.2518835],[64.4983684,76.4390555],[66.210977,76.8097822],[68.1570598,76.9396968],[68.8522111,76.5448113],[68.1805725,76.2336417],[61.5835075,75.2608845],[58.4770821,74.3090563],[0.55419335971910954E2,72.3712676],[0.55622837762276305E2,71.5405948],[57.5356926,70.720464]]],[[[130.633866,42.9030146],[131.144688,42.9299897],[0.13128855512911562E3,0.44111519680348266E2],[0.13102519000000026E3,44.96796],[131.883454,45.3211616],[0.13309712000000022E3,45.14409],[134.11235,47.21248],[135.026311,48.4782299],[0.13250669000000013E3,47.78896],[0.13098726000000013E3,47.79013],[0.13058229332898267E3,0.48729687404976204E2],[129.397818,0.49440600084015614E2],[0.12765740000000038E3,49.76027],[0.12728745568248493E3,50.7397973],[0.12656439904185699E3,51.7842555],[0.12594634891164647E3,52.7927986],[123.57147,53.4588],[0.12100308475147037E3,53.2514011],[120.177089,52.7538862],[120.7382,51.96411],[119.27939,50.58292],[0.11928846072802585E3,50.1428828],[117.879244,49.5109834],[0.11667880089728621E3,0.49888531399121405E2],[0.11548569542853144E3,49.8051773],[0.11436245649623534E3,0.50248302720737485E2],[0.11289773969935439E3,49.5435654],[0.11066201053267886E3,49.1301281],[0.10847516727095127E3,49.2825477],[0.10688880415245532E3,50.274296],[105.886591,0.50406019192092174E2],[0.10367654544476036E3,0.50089966132195144E2],[0.10225589000000011E3,50.51056],[102.06521,51.25991],[99.9817322,51.6340063],[98.8614905,52.047366],[97.8257398,51.0109952],[0.9823176150919173E2,50.4224006],[0.9725976000000023E2,49.72605],[0.9481594933469879E2,50.0134333],[0.9414756635943561E2,50.4805366],[0.9223471154171969E2,50.8021707],[88.8055668,49.4705207],[87.3599703,49.2149808],[86.8293567,49.8266747],[85.54127,49.6928586],[83.3830038,0.51069182847693895E2],[81.9459855,50.8121959],[80.5684469,51.3883365],[80.0355595,0.50864750881547224E2],[77.8009156,53.404415],[76.5251795,0.54177003485727134E2],[76.8911003,54.4905244],[74.38482,53.54685],[73.4256787,0.53489810289109755E2],[73.5085161,0.54035616766976595E2],[72.22415,54.3766554],[71.1801311,0.54133285224008254E2],[70.8652666,0.55169733588270105E2],[69.0681669,55.3852501],[68.1691004,54.9703918],[65.66687,0.54601250000000164E2],[65.1785336,54.3542278],[61.4366,54.00625],[60.9780664,53.6649934],[0.61699986199800634E2,52.9799964],[59.9675338,0.51960420437215674E2],[61.5880034,0.51272658799843185E2],[61.3374244,50.7990701],[59.9328072,0.50842194118851836E2],[59.6422823,0.50545442206415714E2],[58.36332,51.06364],[56.77798,51.04355],[55.71694,50.62171],[52.3287236,0.51718652248738096E2],[50.7666484,51.6927624],[0.48702381626181044E2,50.6051285],[0.48577841424357615E2,0.49874759629915644E2],[0.47549480421749394E2,0.50454698391311126E2],[46.7515963,49.3560058],[46.4664458,48.3941523],[47.31524,47.71585],[48.05725,47.74377],[0.49101160000000135E2,46.39933],[48.64541,45.80629],[47.67591,45.64149],[46.68201,44.6092],[47.59094,43.66016],[47.49252,42.98658],[48.58437,41.80888],[47.8156657,0.41151416124021345E2],[0.45470279168485916E2,42.5027807],[44.5376229,0.42711992702803684E2],[42.3944,43.2203],[40.076965,0.43553104153002494E2],[37.53912,44.65721],[36.67546,45.24469],[37.40317,45.40451],[38.23295,46.24087],[37.67372,46.63657],[39.14767,47.04475],[38.223538,47.1021898],[38.77057,47.82562],[0.39738277622238996E2,47.8989371],[0.40069040000000115E2,49.60105],[0.38010631137857075E2,49.9156615],[37.3934595,50.3839534],[0.36626167840325394E2,0.50225590928745135E2],[35.3561162,50.5771974],[35.0221831,51.2075723],[33.7526998,52.3350746],[31.78597,52.10168],[31.3052006,53.0739959],[0.32693643019346126E2,53.3514208],[0.31731272820774592E2,53.7940294],[30.7575338,0.54811770941784395E2],[30.8739091,55.5509765],[28.1767094,56.16913],[0.27420150000000202E2,58.72457],[27.98112,59.47537],[29.1177,60.02805],[28.07,60.50352],[0.31139991082491036E2,0.62357692776124445E2],[31.5160922,0.62867687486412905E2],[0.30035872430142803E2,0.63552813625738565E2],[0.30444684686003736E2,64.2044534],[0.29544429559047018E2,64.9486716],[30.21765,65.80598],[0.29054588657352383E2,66.9442862],[0.29977426385220696E2,67.698297],[28.4459436,68.3646129],[0.28591929559043365E2,69.0647769],[32.13272,69.90595],[33.77547,69.30142],[36.51396,69.06342],[0.40292340000000166E2,67.9324],[0.41059870000000124E2,67.45713],[41.12595,66.79158],[40.01583,66.26618],[38.38295,65.99953],[0.33918710000000175E2,66.75961],[33.18444,66.63253],[34.81477,65.90015],[34.94391,64.41437],[37.01273,63.84983],[0.36539579035089815E2,64.76446],[37.17604,65.14322],[39.59345,64.52079],[40.4356,64.76446],[39.7626,65.49682],[42.09309,66.47623],[43.94975,66.06908],[44.53226,66.75634],[43.69839,67.35245],[44.18795,67.95051],[43.45282,68.57079],[46.25,68.25],[46.82134,67.68997],[45.55517,67.56652],[45.56202,67.01005],[46.34915,66.66767],[0.47894160000000255E2,66.88455],[48.13876,67.52238],[53.71743,68.85738],[54.47171,68.80815],[53.48582,68.20131],[54.72628,68.09702],[55.44268,68.43866],[0.57317020000000156E2,68.46628],[58.802,68.88082],[59.94142,68.27844],[61.07784,68.94069],[60.03,69.52],[60.55,69.85],[63.504,69.54739],[64.888115,69.234835],[68.51216,68.09233],[69.18068,68.61563],[68.13522,69.35649],[66.93008,69.45461],[67.25976,69.92873],[66.69466,71.02897],[68.54006,71.9345],[69.19636,72.84336],[69.94,73.04],[72.58754,72.77629],[72.79603,72.22006],[71.84811,71.40898],[72.79188,70.39114],[72.5647,69.02085],[73.66787,68.4079],[73.2387,67.7404],[71.28,66.32],[72.42301,66.17267],[73.92099,66.78946],[75.052,67.76047],[74.46926,68.32899],[74.93584,68.98918],[73.84236,69.07146],[73.60187,69.62763],[74.3998,70.63175],[73.1011,71.44717],[74.89082,72.12119],[74.65926,72.83227],[75.68351,72.30056],[75.28898,71.33556],[76.35911,71.15287],[75.90313,71.87401],[77.57665,72.26717],[79.65202,72.32011],[81.5,71.75],[80.61071,72.58285],[80.51109,73.6482],[82.25,73.85],[86.8223,73.93688],[86.00956,74.45967],[87.16682,75.11643],[88.31571,75.14393],[90.26,75.64],[92.90058,75.77333],[93.23421,76.0472],[95.86,76.14],[96.67821,75.91548],[0.9892254000000023E2,76.44689],[0.10075967000000023E3,76.43028],[0.10199084000000013E3,77.28754],[104.3516,77.69792],[0.10606664000000013E3,77.37389],[0.10470500000000024E3,77.1274],[0.10697013000000013E3,76.97419],[0.10724000000000015E3,76.48],[108.1538,76.72335],[0.11107726000000017E3,76.71],[113.33151,76.22224],[114.13417,75.84764],[113.88539,75.32779],[110.15125,74.47673],[109.4,74.18],[112.11919,73.78774],[0.11301954000000026E3,73.97693],[0.11352958000000032E3,73.33505],[115.56782,73.75285],[0.11877633000000023E3,73.58772],[119.02,73.12],[0.12320066000000011E3,72.97122],[0.12325777000000018E3,73.73503],[126.97644,73.56549],[128.59126,73.03871],[129.05157,72.39872],[0.12846000000000012E3,71.98],[129.71599,71.19304],[0.13128858000000028E3,70.78699],[0.13225350000000017E3,71.8363],[0.13385766000000032E3,71.38642],[135.56193,71.65525],[137.49755,71.34763],[0.13823409000000018E3,71.62803],[0.13986983000000012E3,71.48783],[139.14791,72.41619],[140.46817,72.84941],[149.5,72.2],[150.35118,71.60643],[0.15296890000000022E3,70.84222],[157.00688,71.03141],[158.99779,70.86672],[0.15983031000000025E3,70.45324],[159.70866,69.72198],[0.16094053000000034E3,69.43728],[0.16405248000000014E3,69.66823],[0.16594037000000023E3,69.47199],[167.83567,69.58269],[169.57763,68.6938],[0.17081688000000028E3,69.01363],[170.0082,69.65276],[170.45345,70.09703],[0.17364391000000026E3,69.81743],[0.17572403000000023E3,69.87725],[178.6,69.4],[0.18000000000000014E3,68.9636364],[0.18000000000000014E3,64.9797087],[0.17870720000000026E3,64.53493],[0.17741128000000018E3,64.60821],[179.37034,0.62982620000000104E2],[0.17922825000000014E3,62.3041],[177.3643,62.5219],[173.68013,61.65261],[170.6985,60.33618],[170.33085,59.88177],[168.90046,60.57355],[0.16629498000000032E3,0.59788550000000214E2],[0.16584000000000023E3,60.16],[164.87674,59.7316],[0.16353929000000014E3,59.86871],[0.16321711000000025E3,59.21101],[162.01733,58.24328],[162.05297,57.83912],[163.19191,57.61503],[0.16305794000000017E3,0.56159240000000125E2],[0.16212958000000023E3,56.12219],[161.70146,0.55285680000000156E2],[0.16211749000000017E3,54.85514],[0.16036877000000032E3,54.34433],[0.16002173000000022E3,53.20257],[158.53094,0.52958680000000236E2],[158.23118,51.94269],[156.78979,51.01105],[0.15642000000000016E3,51.7],[0.15543366000000012E3,55.38103],[0.15591442000000032E3,0.56767920000000146E2],[156.81035,57.83204],[158.36433,58.05575],[161.87204,60.343],[163.66969,61.1409],[0.16447355000000013E3,62.55061],[163.25842,62.46627],[162.65791,61.6425],[160.12148,60.54423],[159.30232,61.77396],[156.72068,61.43442],[0.15421806000000035E3,59.75818],[155.04375,59.14495],[0.15126573000000025E3,58.78089],[0.15133815000000013E3,59.50396],[149.78371,59.65573],[148.54481,59.16448],[145.48722,59.33637],[0.14219782000000018E3,59.03998],[135.12619,54.72959],[136.70171,0.54603550000000126E2],[137.19342,53.97732],[138.1647,0.53755010000000254E2],[138.80463,54.25455],[139.90151,54.18968],[141.34531,53.08957],[141.37923,52.23877],[140.59742,51.23967],[0.14006193000000022E3,48.44671],[138.55472,46.99965],[138.21971,46.30795],[0.13486939000000027E3,43.39821],[0.13353687000000028E3,42.81147],[0.13227807000000027E3,43.28456],[0.13093587000000014E3,42.55274],[130.633866,42.9030146]]],[[[105.07547,78.30689],[99.43814,77.921],[101.2649,79.23399],[102.837815,79.28129],[105.37243,78.71334],[105.07547,78.30689]]],[[[51.1361866,80.5472802],[48.8944112,80.3395668],[0.47586119012244154E2,80.0101812],[0.46502825962109654E2,80.2472468],[47.0724553,80.5594241],[0.44846958042181114E2,80.5898099],[0.48318477410684665E2,80.7840099],[0.48522806023966695E2,80.514569],[50.0397677,80.9188854],[51.1361866,80.5472802]]],[[[99.93976,78.88094],[97.75794,78.7562],[94.97259,79.044745],[93.31288,79.4265],[92.5454,80.14379],[91.18107,80.34146],[93.77766,81.0246],[95.940895,81.2504],[97.88385,80.746975],[100.186655,79.780135],[99.93976,78.88094]]]]}},{"type":"Feature","properties":{"name":"RW"},"geometry":{"type":"Polygon","coordinates":[[[0.30469696079232985E2,-2.41385752],[0.29024926385216787E2,-2.83925791],[0.29579466180140884E2,-1.34131316],[30.4191049,-1.13465911],[30.8161349,-1.69891408],[0.30469696079232985E2,-2.41385752]]]}},{"type":"Feature","properties":{"name":"EH"},"geometry":{"type":"Polygon","coordinates":[[[-8.66558957,0.27656425889592356E2],[-8.68439979,0.27395744126896005E2],[-8.68729367,0.25881056219988906E2],[-11.9694189,0.25933352769468268E2],[-0.11937224493853321E2,0.23374594224536168E2],[-0.12874221564169575E2,0.23284832261645178E2],[-0.13118754441774712E2,0.22771220201096256E2],[-0.12929101935263532E2,21.3270706],[-0.16845193650773993E2,21.3333235],[-0.17063423224342568E2,0.20999752102130827E2],[-0.17020428432675743E2,21.4223103],[-0.14750954555713534E2,0.21500600083903663E2],[-0.14221167771857251E2,22.3101631],[-0.13891110398809047E2,0.23691009019459305E2],[-12.5009627,24.7701163],[-0.11392554897496979E2,0.26883423977154365E2],[-0.9735343390328879E1,0.26860944729107405E2],[-8.794884,0.27120696316022503E2],[-8.66558957,0.27656425889592356E2]]]}},{"type":"Feature","properties":{"name":"SA"},"geometry":{"type":"Polygon","coordinates":[[[42.7793323,0.16347891343648683E2],[41.754382,0.17833046169500975E2],[40.9393413,0.19486485297111756E2],[39.8016846,0.20338862209550054E2],[0.39139399448408284E2,21.2919048],[39.066329,22.5796557],[38.4927723,0.23688451036060854E2],[0.37483634881344386E2,0.24285494696545015E2],[37.2094914,0.25084541530858104E2],[35.1301868,28.063352],[34.6323361,0.28058546047471566E2],[34.9560372,29.3565547],[36.0689409,0.29197494615184457E2],[0.37998848911294374E2,30.5084999],[37.0021656,0.31508412990844743E2],[39.1954684,32.1610088],[0.40399994337736246E2,0.31889991766887935E2],[0.41889980910007836E2,0.31190008653278365E2],[44.7094987,0.29178891099559383E2],[0.46568713413281756E2,29.0990252],[0.48416094191283946E2,28.5520043],[48.8075948,0.27689627997339883E2],[50.1524223,0.26689663194275997E2],[50.1133033,0.25943972276304248E2],[50.8101083,0.24754742539971378E2],[51.3896078,24.627386],[51.5795187,0.24245497137951105E2],[0.52000733270074335E2,23.0011545],[55.006803,0.22496947536707136E2],[55.2083411,0.22708329982997046E2],[0.55666659376859826E2,22.0000011],[54.9999817,0.19999994004796108E2],[52.0000098,0.19000003363516058E2],[49.1166716,0.18616667588774945E2],[48.1833435,0.18166669216377315E2],[47.4666948,0.17116681626854884E2],[0.43380794305196105E2,17.5799867],[42.7793323,0.16347891343648683E2]]]}},{"type":"Feature","properties":{"name":"SD"},"geometry":{"type":"Polygon","coordinates":[[[0.33963392794971185E2,0.9464285229420625E1],[33.2069381,0.10720111638406593E2],[33.2069381,0.12179338268667093E2],[0.32073891524594785E2,0.11973329803218519E2],[0.32400071594888345E2,0.11080626452941488E2],[31.3528619,0.9810240916008695E1],[29.9966395,0.10290927335388687E2],[0.28966597170745782E2,9.39822399],[0.26477328213242515E2,9.55273033],[0.25790633328413946E2,0.10411098940233728E2],[0.25069603699343986E2,0.10273759963267992E2],[24.5374152,8.91753757],[0.23886979580860665E2,8.61972971],[0.23459012892355986E2,8.95428579],[0.23554304233502194E2,10.0892553],[0.22864165480244253E2,0.11142395127807617E2],[22.28801,12.64605],[22.30351,14.32682],[0.23024590000000103E2,15.68072],[0.23886890000000108E2,15.61084],[0.23837660000000138E2,0.19580470000000105E2],[0.23850000000000136E2,20],[25,20.00304],[25,22],[29.02,22],[36.86623,22],[37.48179,18.61409],[0.38410089959473225E2,17.9983074],[0.36852530000000115E2,16.95655],[36.32322,14.82249],[36.42951,14.42211],[36.27022,0.13563330000000121E2],[35.26049,12.08286],[34.25745,10.63009],[33.96162,9.58358],[0.33963392794971185E2,0.9464285229420625E1]]]}},{"type":"Feature","properties":{"name":"SS"},"geometry":{"type":"Polygon","coordinates":[[[0.33963392794971185E2,0.9464285229420625E1],[33.8255,8.37916],[33.2948,8.35458],[0.33568290000000104E2,7.71334],[34.25032,6.82607],[0.35298007118233095E2,5.506],[34.005,4.24988495],[32.68642,3.79232],[31.24556,3.7819],[30.83385,3.50917],[29.7159953,4.60080476],[0.27979977247842953E2,4.4084134],[0.27213409051225256E2,5.55095348],[0.26465909458123292E2,5.94671743],[0.25114932488716875E2,7.82510407],[0.23886979580860665E2,8.61972971],[24.5374152,8.91753757],[0.25069603699343986E2,0.10273759963267992E2],[0.25790633328413946E2,0.10411098940233728E2],[0.26477328213242515E2,9.55273033],[0.28966597170745782E2,9.39822399],[29.9966395,0.10290927335388687E2],[31.3528619,0.9810240916008695E1],[0.32400071594888345E2,0.11080626452941488E2],[0.32073891524594785E2,0.11973329803218519E2],[33.2069381,0.12179338268667093E2],[33.2069381,0.10720111638406593E2],[0.33963392794971185E2,0.9464285229420625E1]]]}},{"type":"Feature","properties":{"name":"SN"},"geometry":{"type":"Polygon","coordinates":[[[-0.16713728807023468E2,0.13594958604379853E2],[-17.6250427,0.14729540513564071E2],[-0.16463098110407884E2,16.1350361],[-0.14577347581428981E2,16.5982637],[-13.4357377,16.039383],[-0.12170750291380301E2,0.14616834214735505E2],[-11.5139428,0.12442987575729418E2],[-0.13700476040084325E2,0.12586182969610194E2],[-0.15548476935274008E2,0.12628170070847347E2],[-0.16677451951554573E2,0.12384851589401052E2],[-0.16841524624081273E2,13.1513939],[-0.15141163295949466E2,0.13509511623585238E2],[-0.14277701788784553E2,0.13280585028532242E2],[-0.14046992356817482E2,13.7940679],[-15.0817354,0.13876491807505984E2],[-0.16713728807023468E2,0.13594958604379853E2]]]}},{"type":"Feature","properties":{"name":"SB"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.16211902469304087E3,-0.10482719008021135E2],[0.16211902469304087E3,-0.10482719008021135E2],[0.16211902469304087E3,-0.10482719008021135E2],[0.16211902469304087E3,-0.10482719008021135E2]]],[[[0.16085222863183796E3,-0.9872937106977005E1],[159.849447,-9.79402719],[0.15970294477766666E3,-0.9242949720906779E1],[0.16085222863183796E3,-0.9872937106977005E1]]],[[[0.16167998172428915E3,-0.9599982191611375E1],[0.16078825320866056E3,-8.91754323],[0.16092002811100494E3,-8.32000864],[0.16167998172428915E3,-0.9599982191611375E1]]],[[[159.875027,-8.33732024],[159.875027,-8.33732024],[159.875027,-8.33732024],[159.875027,-8.33732024]]],[[[157.538426,-7.34781992],[157.538426,-7.34781992],[157.538426,-7.34781992],[157.538426,-7.34781992]]]]}},{"type":"Feature","properties":{"name":"SL"},"geometry":{"type":"Polygon","coordinates":[[[-0.11438779466182055E2,6.78591686],[-0.12949049038128194E2,7.79864574],[-0.13246550258832515E2,8.90304861],[-0.12425928514037565E2,9.83583405],[-0.11117481248407328E2,0.10045872911006285E2],[-10.2300936,8.40620555],[-0.11438779466182055E2,6.78591686]]]}},{"type":"Feature","properties":{"name":"SV"},"geometry":{"type":"Polygon","coordinates":[[[-90.0955546,0.13735337632700734E2],[-89.353326,0.14424132798719116E2],[-87.723503,0.13785050360565506E2],[-87.9041121,0.13149016831917137E2],[-90.0955546,0.13735337632700734E2]]]}},{"type":"Feature","properties":{"name":"SO"},"geometry":{"type":"Polygon","coordinates":[[[41.58513,-1.68325],[40.993,-0.85829],[40.98105,2.78452],[41.8550831,3.91891192],[43.66087,4.95755],[44.9636,5.00162],[47.78942,8.003],[48.9381295,0.9451748968946617E1],[48.9482048,0.11410617281697963E2],[51.1112,12.02464],[51.04531,10.6409],[49.4527,6.80466],[48.59455,5.33911],[46.56476,2.85529],[43.13597,0.2922],[41.58513,-1.68325]]]}},{"type":"Feature","properties":{"name":"SR"},"geometry":{"type":"Polygon","coordinates":[[[-57.1474365,5.97314993],[-55.9493184,5.77287792],[-0.55033250291551774E2,6.02529145],[-0.53958044603070896E2,5.75654816],[-54.478633,4.89675568],[-0.54399542202356514E2,4.2126114],[-54.0069305,3.62003775],[-54.5247542,2.31184886],[-0.55973322109589375E2,2.51036388],[-0.56539385748914555E2,1.89952261],[-58.0446944,4.06086355],[-0.57307245856339506E2,5.0735666],[-57.1474365,5.97314993]]]}},{"type":"Feature","properties":{"name":"SK"},"geometry":{"type":"Polygon","coordinates":[[[0.18853144158613617E2,49.4962298],[0.19825022820726872E2,49.2171254],[0.21607808058364213E2,49.4701073],[0.22558137648211755E2,0.49085738023467144E2],[22.0856084,48.4222643],[0.20801293979584926E2,0.48623854071642384E2],[0.17857132602620027E2,0.47758428860050365E2],[0.16979666782304037E2,0.48123497015976305E2],[0.16960288120194576E2,48.5969823],[0.18853144158613617E2,49.4962298]]]}},{"type":"Feature","properties":{"name":"SI"},"geometry":{"type":"Polygon","coordinates":[[[0.13806475457421527E2,0.46509306138691215E2],[14.6324716,46.4318173],[0.16202298211337364E2,46.852386],[0.16564808383864857E2,46.5037509],[0.15768732944408551E2,46.2381082],[0.15327674594797427E2,45.4523164],[0.13937630242578306E2,45.5910159],[0.13806475457421527E2,0.46509306138691215E2]]]}},{"type":"Feature","properties":{"name":"SE"},"geometry":{"type":"Polygon","coordinates":[[[0.11027368605196866E2,58.8561494],[12.3003658,60.1179328],[0.12631146681375183E2,0.61293571682370136E2],[0.11992064243221563E2,61.8003625],[11.9305693,63.1283176],[0.12579935336973932E2,64.066219],[0.13571916131248711E2,64.0491141],[13.5556897,64.7870277],[0.15108411492583002E2,66.1938669],[0.16768878614985482E2,68.0139367],[0.17729181756265348E2,68.0105519],[0.17993868442464333E2,68.5673913],[0.19878559604581255E2,68.4071943],[0.20645592889089528E2,69.1062473],[23.5394731,67.9360086],[0.23565879754335583E2,66.3960509],[0.23903378533633802E2,66.0069274],[0.22183173455501926E2,65.7237405],[21.2135169,65.0260054],[0.21369631381930958E2,64.413588],[17.8477792,62.7494001],[0.17119554884518124E2,61.3411657],[18.7877218,0.60081914374422595E2],[17.8692249,58.9537662],[0.16829185011470088E2,58.719827],[0.16447709588291474E2,0.57041118069071885E2],[0.15879785597403783E2,56.1043019],[0.14666681349352075E2,0.56200885118222175E2],[0.14100721062891465E2,55.4077811],[0.12942910597392057E2,55.3617374],[0.12625100538797028E2,56.3070802],[0.11027368605196866E2,58.8561494]]]}},{"type":"Feature","properties":{"name":"SZ"},"geometry":{"type":"Polygon","coordinates":[[[32.0716655,-26.7338201],[0.31282773064913325E2,-0.27285879408478998E2],[30.6859619,-26.7438453],[31.0440796,-0.25731452325139443E2],[0.31837777947728064E2,-25.8433318],[32.0716655,-26.7338201]]]}},{"type":"Feature","properties":{"name":"SY"},"geometry":{"type":"Polygon","coordinates":[[[0.38792340529136084E2,0.33378686428352225E2],[0.36834062127435544E2,0.32312937526980775E2],[35.7199182,0.32709192409794866E2],[35.8211007,33.2774265],[36.6117501,0.34201788641897174E2],[35.9984025,0.34644914048800004E2],[0.35905023227692226E2,0.35410009467097325E2],[37.0667611,36.6230362],[38.1677275,36.9012104],[39.5225802,36.7160538],[40.6732593,37.0912764],[42.3495911,37.2298725],[0.41289707472505455E2,36.3588146],[0.41006158888519934E2,34.4193723],[0.38792340529136084E2,0.33378686428352225E2]]]}},{"type":"Feature","properties":{"name":"TD"},"geometry":{"type":"Polygon","coordinates":[[[0.14495787387762903E2,0.12859396267137356E2],[0.13540393507550789E2,0.14367133693901222E2],[13.97217,15.68437],[0.15247731154041846E2,0.16627305813050782E2],[0.15685740594147774E2,0.19957180080642384E2],[0.15487148064850146E2,0.20730414537025638E2],[0.15096887648181848E2,21.3085188],[14.8513,0.22862950000000126E2],[15.86085,23.40972],[0.23837660000000138E2,0.19580470000000105E2],[0.23886890000000108E2,15.61084],[0.23024590000000103E2,15.68072],[22.30351,14.32682],[22.28801,12.64605],[0.22864165480244253E2,0.11142395127807617E2],[21.7238216,0.10567055568885962E2],[21.0008684,9.47598522],[20.0596855,9.012706],[18.8120097,8.98291454],[0.17964929640380888E2,7.89091401],[16.7059884,7.50832754],[0.15279460483469164E2,7.42192455],[14.9799956,8.79610423],[0.13954218377344091E2,0.9549494940626685E1],[0.14171466098699113E2,0.10021378282100045E2],[0.15467872755605244E2,0.9982336737503543E1],[0.14923564894275046E2,0.10891325181517516E2],[14.89336,12.21905],[0.14495787387762903E2,0.12859396267137356E2]]]}},{"type":"Feature","properties":{"name":"TG"},"geometry":{"type":"Polygon","coordinates":[[[1.86524051,6.1421577],[1.0601217,5.92883739],[0.490957472,7.41174429],[0.36757999,10.1912129],[0.0238025244,0.11018681748900804E2],[0.899563022,10.9973394],[0.772335646,0.10470808213742359E2],[1.66447757,9.1285904],[1.61895064,6.83203807],[1.86524051,6.1421577]]]}},{"type":"Feature","properties":{"name":"TH"},"geometry":{"type":"Polygon","coordinates":[[[102.584932,0.12186594956913282E2],[0.10083180952352487E3,0.12627084865769206E2],[100.978467,0.13412721665902566E2],[100.097797,0.13406856390837433E2],[0.10001873253784456E3,0.12307001044153354E2],[99.1537724,9.96306143],[99.2223987,0.9239255479362427E1],[0.9987383182169813E2,9.20786205],[0.10045927412313276E3,7.42957266],[0.10214118696493638E3,6.22163605],[0.10115421878459387E3,5.69138418],[0.10107551557821336E3,6.20486705],[100.085757,6.46448945],[98.5037862,8.3823052],[0.9815000939330581E2,8.35000743],[0.9855355065307305E2,0.9932959906448545E1],[99.587286,0.11892762762901697E2],[99.0977552,0.13827502549693278E2],[98.192074,15.1237025],[98.9033484,0.16177824204976115E2],[97.3758964,0.18445437730375815E2],[0.9825372399291561E2,0.19708203029860044E2],[0.10011598758341783E3,0.20417849636308187E2],[0.10060629357300316E3,0.19508344427971224E2],[101.282015,0.19462584947176765E2],[0.10105954756063517E3,17.5124973],[0.10211359175009248E3,0.18109101670804165E2],[0.10395647667848529E3,18.2409541],[104.716947,17.428859],[104.779321,16.4418649],[0.10558903852745016E3,0.15570316066952858E2],[0.10521877689007887E3,0.14273211778210694E2],[0.10298842207236163E3,0.14225721136934467E2],[102.348099,0.13394247341358223E2],[102.584932,0.12186594956913282E2]]]}},{"type":"Feature","properties":{"name":"TJ"},"geometry":{"type":"Polygon","coordinates":[[[71.014198,40.2443655],[69.5596098,40.1032114],[69.4648869,39.5266833],[70.5491618,39.6041979],[71.7846936,39.2794632],[73.6753793,39.4312369],[73.9288522,38.5058153],[74.8648157,38.3788463],[74.9800025,0.37419990139305895E2],[73.2600558,37.4952569],[71.8446383,36.7381713],[71.5419178,0.37905774441065645E2],[70.8068205,0.38486281643216415E2],[70.1165784,37.5882228],[67.8299996,37.144994],[68.3920325,0.38157025254868735E2],[68.176025,0.38901553453113905E2],[67.4422197,0.39140143541005486E2],[68.5364165,39.5334529],[69.3294947,40.7278244],[70.6666223,40.9602133],[71.014198,40.2443655]]]}},{"type":"Feature","properties":{"name":"TM"},"geometry":{"type":"Polygon","coordinates":[[[61.2108171,0.35650072333309225E2],[0.61123070509694145E2,36.4915972],[60.377638,36.5273831],[59.234762,0.37412987982730336E2],[57.3304338,38.0292294],[55.5115784,37.9641171],[53.9215979,37.1989184],[0.53880928582581845E2,38.952093],[0.53101027866432894E2,39.2905736],[53.3578081,39.9752864],[52.6939726,40.0336291],[0.52915251092343624E2,40.8765233],[0.53858139275941134E2,40.6310345],[54.7368453,40.9510149],[53.7217135,42.1231914],[54.7553455,0.42043971462566574E2],[55.4552511,41.2598591],[55.9681914,41.3086417],[57.0963912,41.3223101],[0.56932215203687804E2,0.41826026109375604E2],[58.6290109,42.751551],[59.9764222,42.223082],[60.0833407,0.41425146185871405E2],[61.8827141,0.41084856879229406E2],[62.3742603,40.0538862],[64.170223,0.38892406724598246E2],[66.5461503,37.974685],[66.5186068,37.3627843],[65.7456307,37.661164],[64.7461052,0.37111817735333304E2],[64.5464791,36.3120733],[0.62230651483005886E2,0.35270663967422294E2],[61.2108171,0.35650072333309225E2]]]}},{"type":"Feature","properties":{"name":"TL"},"geometry":{"type":"Polygon","coordinates":[[[0.12496868248911622E3,-8.89279022],[0.12695724328013982E3,-8.27334482],[0.12696799197805655E3,-8.66825612],[0.12508852013560109E3,-9.39317311],[0.12496868248911622E3,-8.89279022]]]}},{"type":"Feature","properties":{"name":"TT"},"geometry":{"type":"Polygon","coordinates":[[[-61.68,10.76],[-60.895,10.855],[-60.935,10.11],[-61.77,10],[-61.68,10.76]]]}},{"type":"Feature","properties":{"name":"TN"},"geometry":{"type":"Polygon","coordinates":[[[9.48213993,0.30307556057246188E2],[9.05560265,32.102692],[7.61264164,33.3441149],[7.52448164,34.0973764],[8.14098148,34.655146],[8.42096439,36.9464273],[0.9509993523810607E1,0.37349994411766545E2],[0.10600004510143094E2,0.36410000108377375E2],[0.10807847120821009E2,34.8335072],[0.10149592726287125E2,34.330773],[11.4887875,33.1369958],[0.11432253452203696E2,0.32368903103152874E2],[9.95022505,0.31376069647745254E2],[9.48213993,0.30307556057246188E2]]]}},{"type":"Feature","properties":{"name":"TR"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.42619548781104555E2,41.5831727],[43.5827458,41.0921433],[43.6564364,40.253564],[0.44793989699082005E2,0.39713002631177034E2],[0.44109225294782355E2,0.39428136298168056E2],[44.2257556,37.9715844],[44.772699,37.1704446],[42.7791256,37.3852636],[0.40673259311695716E2,37.0912764],[39.5225802,36.7160538],[38.1677275,36.9012104],[37.0667611,36.6230362],[36.1497628,35.8215347],[35.5509363,36.5654428],[0.34714553256984374E2,0.36795532131490916E2],[34.026895,36.21996],[32.5091582,36.1075638],[0.31699595167779567E2,36.6442752],[30.6216248,0.36677864895162315E2],[0.29699975620245567E2,36.1443574],[28.7329029,36.6768314],[27.6411866,0.36658822129862756E2],[0.26318218214633045E2,0.38208133246405396E2],[0.26804700148228733E2,38.9857602],[26.1707854,0.39463612168936464E2],[0.27280019972449395E2,40.4200137],[0.28819977654747216E2,40.4600113],[29.2400037,41.2199907],[0.31145933872204434E2,41.0876216],[33.5132829,0.42018960069337304E2],[35.1677039,42.0402249],[38.3476648,40.9485861],[0.40373432651538245E2,41.0136726],[0.41554084100110714E2,41.5356562],[0.42619548781104555E2,41.5831727]]],[[[0.27192376743282406E2,0.40690565700842455E2],[26.3580091,40.1519939],[26.0433513,40.6177536],[0.26604195590936282E2,41.5621146],[0.26117041863720825E2,41.8269046],[0.27996720411905414E2,42.0073587],[28.8064384,41.0549621],[0.27192376743282406E2,0.40690565700842455E2]]]]}},{"type":"Feature","properties":{"name":"TW"},"geometry":{"type":"Polygon","coordinates":[[[0.12177781782438993E3,24.3942736],[0.12074707970589621E3,0.21970571397382113E2],[120.106189,0.23556262722258236E2],[0.12149504438688876E3,0.25295458889257386E2],[0.12177781782438993E3,24.3942736]]]}},{"type":"Feature","properties":{"name":"TZ"},"geometry":{"type":"Polygon","coordinates":[[[33.9037112,-0.95],[34.07262,-1.05982],[37.69869,-3.09699],[37.7669,-3.67712],[39.20222,-4.67677],[38.79977,-6.47566],[39.44,-6.84],[39.18652,-8.48551],[39.9496,-10.0984],[39.521,-10.89688],[0.36514081658684404E2,-0.11720938002166747E2],[0.34559989047999466E2,-0.11520020033415847E2],[34.28,-10.16],[33.73972,-9.41715],[32.7593754,-0.9230599053589003E1],[30.74,-8.34],[30.2,-7.08],[29.62,-6.52],[29.3399976,-4.49998341],[30.75224,-3.35931],[30.46967,-2.41383],[30.8161349,-1.69891408],[30.4191049,-1.13465911],[33.9037112,-0.95]]]}},{"type":"Feature","properties":{"name":"UG"},"geometry":{"type":"Polygon","coordinates":[[[30.4191049,-1.13465911],[0.29579466180141022E2,-1.34131316],[0.29875778842902434E2,0.597379869],[31.1741492,2.20446524],[30.77332,2.33989],[30.83385,3.50917],[31.24556,3.7819],[32.68642,3.79232],[34.005,4.24988495],[34.47913,3.5556],[35.03599,1.90584],[34.18,0.515],[33.9037112,-0.95],[30.4191049,-1.13465911]]]}},{"type":"Feature","properties":{"name":"UA"},"geometry":{"type":"Polygon","coordinates":[[[0.31785998162571587E2,0.52101677964885454E2],[33.7526998,0.52335074571331695E2],[35.0221831,51.2075723],[35.3561162,0.50577197374059054E2],[36.6261678,0.50225590928745135E2],[37.3934595,50.3839534],[0.38010631137856905E2,49.9156615],[40.0690585,49.6010554],[0.39738277622238826E2,47.8989371],[38.7705848,0.47825608222029814E2],[38.223538,47.1021898],[35.8236845,46.6459645],[34.9623417,46.2731965],[0.35020787794745985E2,45.651219],[36.529998,45.4699897],[0.33882511020652885E2,44.3614786],[33.5469243,45.0347708],[32.4541744,45.3274661],[33.5881621,45.8515685],[0.30748748813609097E2,46.5831001],[0.29603289015427432E2,0.45293308010431126E2],[0.28233553501099042E2,45.4882832],[0.28862972446414062E2,46.4378893],[30.0246586,46.4239367],[29.1226982,47.8490952],[0.27522537469195154E2,0.48467119452501116E2],[0.26619336785597795E2,48.2207262],[0.24866317172960578E2,47.7375257],[0.23142236362406802E2,48.0963411],[0.22710531447040495E2,47.8821939],[22.0856084,48.4222643],[0.22558137648211755E2,0.49085738023467144E2],[0.22518450148211603E2,49.4767736],[0.24029985792748903E2,50.7054066],[23.5270708,51.5784541],[0.24553106316839518E2,0.51888461005249184E2],[0.26337958611768556E2,51.8322887],[28.6176127,51.4277139],[0.30555117221811457E2,51.3195035],[0.30927549269338982E2,52.0423534],[0.31785998162571587E2,0.52101677964885454E2]]]}},{"type":"Feature","properties":{"name":"UY"},"geometry":{"type":"Polygon","coordinates":[[[-57.6251334,-0.30216294854454258E2],[-56.9760258,-0.30109686374636127E2],[-0.53787951626182185E2,-0.32047242526987624E2],[-0.53209588995971544E2,-0.32727666110974724E2],[-0.53373661668498244E2,-0.33768377780900764E2],[-0.53806425950726535E2,-0.34396814874002224E2],[-54.9358661,-0.34952646579733624E2],[-57.8178607,-34.4625473],[-58.4270741,-33.9094544],[-58.1424404,-0.32044503676076154E2],[-57.6251334,-0.30216294854454258E2]]]}},{"type":"Feature","properties":{"name":"US"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-155.54211,19.08348],[-156.07347,19.70294],[-155.78505,20.2487],[-154.83147,19.45328],[-155.54211,19.08348]]],[[[-156.07926,20.64397],[-156.07926,20.64397],[-156.07926,20.64397],[-156.07926,20.64397]]],[[[-156.75824,21.17684],[-156.75824,21.17684],[-156.75824,21.17684],[-156.75824,21.17684]]],[[[-157.65283,21.32217],[-157.65283,21.32217],[-157.65283,21.32217],[-157.65283,21.32217]]],[[[-159.34512,21.982],[-159.34512,21.982],[-159.34512,21.982],[-159.34512,21.982]]],[[[-94.81758,49.38905],[-0.9463999999999987E2,48.84],[-93.63087,48.60926],[-91.64,48.14],[-89.6,0.48010000000000105E2],[-88.3781142,48.3029176],[-87.4397926,47.94],[-84.8760799,46.9000833],[-84.6049,46.4396],[-83.4695507,45.9946864],[-82.5509246,45.3475166],[-82.3377631,44.44],[-82.1376424,43.5710876],[-83.12,42.08],[-82.4392777,0.41675105088867326E2],[-78.92,42.965],[-78.7202799,43.6250894],[-76.8200341,0.43628784288093755E2],[-76.375,44.09631],[-74.867,0.45000480000000124E2],[-73.34783,45.00738],[-71.50506,45.0082],[-70.305,45.915],[-69.237216,47.447781],[-67.79046,47.06636],[-67.79134,45.70281],[-67.13741,45.13753],[-66.96466,44.8097],[-70.11617,0.43684050000000155E2],[-70.81489,42.8653],[-70.495,41.805],[-69.96503,41.63717],[-72.87643,41.22065],[-71.945,40.93],[-73.982,40.628],[-74.17838,39.70926],[-75.05673,38.40412],[-75.72205,37.93705],[-76.542725,38.717615],[-76.25874,36.9664],[-75.72749,35.55074],[-76.36318,34.80854],[-78.55435,33.86133],[-80.301325,32.509355],[-81.33629,31.44049],[-81.49042,30.72999],[-80.0565393,0.26880000000000138E2],[-80.38103,25.20616],[-81.17213,0.25201260000000133E2],[-82.85526,27.88624],[-82.65,0.28550000000000153E2],[-83.70959,29.93656],[-85.10882,29.63615],[-86.4,30.4],[-88.41782,30.3849],[-89.5938312,30.159994],[-89.40823,29.15961],[-90.880225,0.29148535000000123E2],[-0.9162678499999987E2,29.677],[-93.22637,29.78375],[-94.69,0.29480000000000132E2],[-96.59404,28.30748],[-97.37,27.38],[-0.9752999999999989E2,25.84],[-99.02,26.37],[-99.3,26.84],[-100.11,0.28110000000000127E2],[-100.9576,0.29380710000000132E2],[-102.48,29.76],[-103.11,28.97],[-103.94,29.27],[-104.70575,30.12173],[-105.03737,30.64402],[-106.1429,31.39995],[-0.10650758999999982E3,31.75452],[-108.24,31.7548537],[-108.24194,31.34222],[-111.02361,31.33472],[-114.815,32.52528],[-0.11472138999999986E3,32.72083],[-0.11712775999999978E3,32.53534],[-0.11729593769127388E3,33.0462246],[-0.11851989482279971E3,34.0277816],[-120.36778,34.44711],[-0.12171456999999988E3,36.16153],[-122.54747,0.37551760000000115E2],[-123.7272,38.95166],[-124.39807,40.3132],[-124.2137,41.99964],[-124.53284,42.76599],[-124.14214,43.70838],[-123.89893,45.52341],[-0.12456610107421876E3,48.379715],[-123.12,48.04],[-122.34,47.36],[-122.84,0.49000000000000114E2],[-104.04826,48.99986],[-95.1590695,0.49000000000000114E2],[-95.15609,49.38425],[-94.81758,49.38905]]],[[[-153.006314,57.1158422],[-154.00509,56.7346768],[-0.15467099280497115E3,57.4611958],[-153.228729,0.57968968410872435E2],[-152.141147,57.5910587],[-153.006314,57.1158422]]],[[[-0.16557916419173358E3,59.9099869],[-0.16619277014876727E3,0.59754440822988975E2],[-0.16745527706609008E3,60.2130692],[-0.16567442969466367E3,0.60293606879306246E2],[-0.16557916419173358E3,59.9099869]]],[[[-171.731657,63.7825154],[-168.689439,63.2975062],[-0.16952943986720504E3,62.9769315],[-171.791111,0.63405845852300494E2],[-171.731657,63.7825154]]],[[[-136.47972,59.46389],[-135.47583,59.78778],[-134.27111,58.86111],[-0.13335554888220722E3,0.58410285142645165E2],[-0.13170780999999988E3,56.55212],[-130.00778,55.91583],[-0.13053611018946725E3,54.8027534],[-131.967211,55.4977756],[-0.13225001074285947E3,56.3699962],[-0.13353918108435641E3,57.1788874],[-0.13407806292029605E3,58.1230675],[-0.13662806230995466E3,58.2122094],[-0.13780000627968604E3,58.4999954],[-139.867787,59.5377615],[-0.14257444353556446E3,60.0844465],[-143.958881,59.9991804],[-0.14711437394914668E3,60.8846561],[-0.14822430620012767E3,0.60672989406977166E2],[-0.14801806555885076E3,59.978329],[-0.15171639278868332E3,59.155821],[-151.409719,60.7258027],[-0.15401917212625762E3,59.3502794],[-0.15328751135965317E3,58.8647277],[-154.232492,58.1463736],[-156.308335,57.4227744],[-0.15655609737854633E3,0.56979984849670636E2],[-0.15811721655986776E3,56.4636081],[-0.15843332129619716E3,55.9941536],[-160.28972,0.55643580634170576E2],[-0.16306944658104638E3,54.689737],[-0.16494222632552004E3,54.5722248],[-0.16180417497459604E3,55.8949865],[-0.16056360470278116E3,56.0080545],[-157.72277,57.5700005],[-157.041675,58.9188846],[-0.15905860612692874E3,0.58424186102931685E2],[-0.16035527116599653E3,59.0711234],[-0.16196889360252635E3,58.6716645],[-0.16187417070213536E3,59.6336213],[-162.518059,59.9897236],[-0.16381834143782015E3,59.7980557],[-0.16534638770247483E3,60.5074956],[-0.16535083187565186E3,61.0738952],[-0.16612137915755596E3,0.61500019029376226E2],[-0.16456250790103934E3,63.1463785],[-163.067224,63.0594587],[-0.16226055538638172E3,63.5419357],[-0.16077250668032113E3,0.63766108100023274E2],[-161.518068,64.4027876],[-0.16077777767641476E3,64.7886038],[-0.16496082984114517E3,64.4469451],[-0.16642528825586447E3,64.6866721],[-0.16811056006576717E3,65.6699971],[-164.47471,66.5766601],[-0.16378860165103617E3,66.0772073],[-0.16167777442121016E3,66.1161197],[-162.489715,66.7355651],[-0.16371971696679108E3,67.1163946],[-0.16539028683170676E3,68.0427721],[-0.16676444068099602E3,68.3588769],[-0.16620470740462662E3,68.8830309],[-164.430811,68.9155354],[-0.16316861365461452E3,69.3711148],[-0.16190889726463553E3,70.33333],[-0.15903917578838715E3,70.8916422],[-0.15811972286683397E3,70.8247212],[-0.15658082455139805E3,71.3577636],[-0.15227000240782615E3,70.6000062],[-0.14972000301816752E3,70.5300105],[-0.14492001095907642E3,69.9899918],[-143.589446,70.1525141],[-140.985988,69.7119984],[-0.14099776974812312E3,60.3063968],[-0.13903900042031586E3,0.60000007229240026E2],[-137.4525,0.58905000000000115E2],[-136.47972,59.46389]]]]}},{"type":"Feature","properties":{"name":"UZ"},"geometry":{"type":"Polygon","coordinates":[[[66.5186068,37.3627843],[66.5461503,37.974685],[64.170223,0.38892406724598246E2],[62.3742603,40.0538862],[61.8827141,0.41084856879229406E2],[60.0833407,0.41425146185871405E2],[59.9764222,42.223082],[58.6290109,42.751551],[0.56932215203687804E2,0.41826026109375604E2],[57.0963912,41.3223101],[55.9681914,41.3086417],[0.55928917270741096E2,44.9958585],[58.5031271,0.45586804307632825E2],[61.0583199,44.405817],[62.0133004,43.5044766],[64.9008244,43.7280806],[66.0980123,42.99766],[66.0233916,41.9946463],[66.7140471,41.1684435],[67.9858557,41.1359907],[68.6324829,40.6686807],[69.0700273,41.3842443],[70.9623149,42.2661543],[70.4200224,41.5199983],[71.1578585,41.1435871],[71.8701148,0.41392900092121266E2],[73.0554171,0.40866033026689465E2],[71.7748751,40.1458444],[71.014198,40.2443655],[70.6666223,40.9602133],[69.3294947,40.7278244],[68.5364165,39.5334529],[67.4422197,0.39140143541005486E2],[68.176025,0.38901553453113905E2],[68.3920325,0.38157025254868735E2],[67.8299996,37.144994],[66.5186068,37.3627843]]]}},{"type":"Feature","properties":{"name":"VE"},"geometry":{"type":"Polygon","coordinates":[[[-71.3315836,0.11776284084515808E2],[-71.9470499,0.11423282375530022E2],[-71.6330639,0.10446494452349027E2],[-72.074174,0.9865651353388373E1],[-71.6956441,9.07226309],[-71.0399994,0.9859992784052407E1],[-71.4006233,0.10968969021036015E2],[-70.1552988,11.3754817],[-69.9432446,0.12162307033736099E2],[-69.5843001,0.11459610907431212E2],[-68.8829992,0.11443384507691563E2],[-68.1941266,0.10554653225135922E2],[-66.2278641,0.10648626817258688E2],[-64.8904522,10.0772147],[-64.3180066,10.641418],[-0.61880946010980196E2,0.10715625311725104E2],[-62.730119,0.10420268662960906E2],[-0.62388511928950976E2,9.94820445],[-60.8305967,9.38133983],[-60.6712524,8.58017426],[-0.59758284878159195E2,8.36703482],[-60.5505879,7.77960297],[-60.2956681,7.04391144],[-61.1593363,6.69607738],[-0.61410302903881956E2,5.9590681],[-60.7335742,5.20027721],[-60.9668933,4.5364676],[-63.0931976,3.77057119],[-64.6286594,4.14848094],[-64.2699992,2.49700552],[-63.4228674,2.41106761],[-64.1993058,1.49285493],[-66.3257651,0.724452216],[-66.8763259,1.2533605],[-67.1812943,2.25063813],[-67.8099381,2.82065502],[-67.3031732,3.31845409],[-67.8230123,4.50393728],[-67.3414396,6.09546804],[-69.3894799,6.09986054],[-70.093313,6.96037649],[-71.9601757,6.9916149],[-72.7887298,9.08502717],[-73.3049515,9.15199982],[-72.905286,0.10450344346554772E2],[-71.9739217,11.6086716],[-71.3315836,0.11776284084515808E2]]]}},{"type":"Feature","properties":{"name":"VN"},"geometry":{"type":"Polygon","coordinates":[[[0.10433433475140347E3,10.4865437],[0.10624967003786946E3,0.10961811835163587E2],[0.10581052371625313E3,0.11567614650921227E2],[0.10749140302941089E3,0.12337205918827946E2],[0.10738272749230109E3,0.14202440904186972E2],[107.564525,0.15202173163305558E2],[0.10509459842328152E3,18.6669746],[103.896532,0.19265180975821806E2],[104.822574,0.19886641750563882E2],[0.10443500044150805E3,20.7587332],[0.10320386111858645E3,0.20766562201413745E2],[0.10217043582561358E3,0.22464753119389304E2],[0.10447685835166448E3,0.22819150092046968E2],[0.10532920942588663E3,0.23352063300056912E2],[0.10581124718630521E3,0.22976892401617903E2],[0.10672540327354845E3,22.7942679],[0.10656727339073532E3,22.2182049],[0.10805018029178294E3,21.5523799],[106.715068,20.6968507],[0.10566200564984631E3,19.0581652],[0.10736195356651974E3,16.6974566],[0.10887710656131748E3,15.2766906],[0.10933526981001721E3,0.13426028347217722E2],[0.10920013593957398E3,0.11666859239137764E2],[0.10722092858279524E3,0.10364483954301832E2],[0.10515826378786511E3,8.59975963],[0.10479518517458237E3,9.24103832],[105.076202,9.91849051],[0.10433433475140347E3,10.4865437]]]}},{"type":"Feature","properties":{"name":"VU"},"geometry":{"type":"MultiPolygon","coordinates":[[[[167.844877,-0.16466333103097156E2],[167.844877,-0.16466333103097156E2],[167.844877,-0.16466333103097156E2],[167.844877,-0.16466333103097156E2]]],[[[0.16710771243720149E3,-0.14933920179913954E2],[0.16679315799384088E3,-0.15668810723536723E2],[0.16662913699774649E3,-0.14626497084209603E2],[0.16710771243720149E3,-0.14933920179913954E2]]]]}},{"type":"Feature","properties":{"name":"YE"},"geometry":{"type":"Polygon","coordinates":[[[42.7793323,0.16347891343648683E2],[0.43380794305196105E2,17.5799867],[47.4666948,0.17116681626854884E2],[48.1833435,0.18166669216377315E2],[49.1166716,0.18616667588774945E2],[52.0000098,0.19000003363516058E2],[53.1085726,16.6510511],[52.3852059,0.16382411200419654E2],[52.1681649,0.15597420355689948E2],[49.5745765,14.7087666],[48.6792306,14.0032024],[45.6250501,0.13290946153206763E2],[44.9895333,0.12699586900274708E2],[43.4829586,0.12636800035040084E2],[42.7024378,0.15718885809791999E2],[42.7793323,0.16347891343648683E2]]]}},{"type":"Feature","properties":{"name":"ZA"},"geometry":{"type":"Polygon","coordinates":[[[0.16344976840895242E2,-0.28576705010697697E2],[0.16824017368240902E2,-0.28082161553664466E2],[0.17387497185951503E2,-28.7835141],[0.18464899122804752E2,-29.0454619],[0.19894734327888614E2,-0.28461104831660776E2],[0.19895767856534434E2,-0.24767790215760588E2],[0.20758609246511835E2,-25.8681365],[20.889609,-0.26828542982695915E2],[21.605896,-0.26726533705351756E2],[0.23312096795350186E2,-25.2686899],[0.24211266717228792E2,-0.25670215752873574E2],[25.6646664,-0.25486816094669713E2],[0.27119409620886245E2,-0.23574323011979775E2],[29.4321883,-0.22091312758067588E2],[0.31191409132621285E2,-22.2515097],[31.9305888,-0.24369416599222536E2],[0.31837777947728064E2,-25.8433318],[31.0440796,-0.25731452325139443E2],[30.6859619,-26.7438453],[0.31282773064913325E2,-0.27285879408478998E2],[32.0716655,-26.7338201],[0.32830120477028885E2,-0.26742191664336197E2],[32.4621326,-0.28301011244420557E2],[31.3255612,-0.29401977634398914E2],[30.0557162,-0.31140269463832958E2],[28.2197559,-0.32771952813448856E2],[0.25780628289500697E2,-0.33944646091448334E2],[0.22574157342222236E2,-0.33864082533505304E2],[19.6164051,-34.8191664],[0.18244499139079917E2,-33.8677516],[17.9251905,-32.6112908],[18.2217615,-31.661633],[0.16344976840895242E2,-0.28576705010697697E2]],[[28.9782626,-0.28955596612261715E2],[0.28541700066855498E2,-28.6475017],[0.26999261915807637E2,-0.29875953871379984E2],[0.27749397006956485E2,-30.6451059],[28.8483997,-0.30070050551068253E2],[0.29325166456832587E2,-0.29257386976846252E2],[28.9782626,-0.28955596612261715E2]]]}},{"type":"Feature","properties":{"name":"ZM"},"geometry":{"type":"Polygon","coordinates":[[[32.7593754,-9.23059905],[33.4856877,-0.10525558770391115E2],[33.1142892,-0.11607198174692314E2],[0.33306422153463075E2,-0.12435778090060218E2],[32.6881653,-0.13712857761289275E2],[0.33214024692525214E2,-0.13971860039936153E2],[30.1794812,-0.14796099134991527E2],[0.30274255812305107E2,-0.15507786960515212E2],[0.29516834344203147E2,-0.15644677829656388E2],[27.0444271,-0.17938026218337434E2],[0.25264225701608012E2,-0.17736539808831417E2],[25.0844434,-0.17661815687737374E2],[0.24033861525170778E2,-0.17295843194246324E2],[0.23215048455506064E2,-17.5231161],[0.21887842644953874E2,-16.0803102],[0.21933886346125917E2,-0.12898437188369359E2],[0.24016136508894675E2,-0.12911046237848574E2],[0.23912215203555718E2,-0.10926826267137514E2],[0.25418118116973204E2,-0.11330935967659961E2],[0.26553087599399618E2,-0.11924439792532127E2],[0.27164419793412463E2,-0.11608748467661075E2],[0.28155108676879987E2,-0.12272480564017897E2],[0.28934285922976837E2,-0.13248958428605135E2],[29.6996139,-0.13257226657771831E2],[29.3415479,-0.12360743910372413E2],[0.28372253045370428E2,-0.11793646742401393E2],[28.7348666,-8.52655934],[0.30740015496551788E2,-8.34000742],[32.7593754,-9.23059905]]]}},{"type":"Feature","properties":{"name":"ZW"},"geometry":{"type":"Polygon","coordinates":[[[0.31191409132621285E2,-22.2515097],[29.4321883,-0.22091312758067588E2],[0.28021370070108617E2,-0.21485975030200585E2],[0.27724747348753255E2,-0.20499058526290387E2],[0.26164790887158485E2,-19.2930856],[0.25264225701608012E2,-0.17736539808831417E2],[27.0444271,-0.17938026218337434E2],[0.29516834344203147E2,-0.15644677829656388E2],[0.30274255812305107E2,-0.15507786960515212E2],[0.32847638787575846E2,-0.16713398125884616E2],[0.32772707960752626E2,-0.19715592136313298E2],[0.32244988234188014E2,-0.21116488539313693E2],[0.31191409132621285E2,-22.2515097]]]}},{"type":"Feature","properties":{"name":"BE"},"geometry":{"type":"Polygon","coordinates":[[[3.58818444,50.3789924],[2.51357303,51.1485062],[4.04707116,51.2672586],[4.97399133,0.51475023708698124E2],[6.15665816,50.803721],[5.67405195,0.49529483547557525E2],[3.58818444,50.3789924]]]}},{"type":"Feature","properties":{"name":"BA"},"geometry":{"type":"Polygon","coordinates":[[[0.18553214145591653E2,45.0815897],[0.19005484597557654E2,0.44860234493542976E2],[19.36803,44.863],[19.59976,44.03847],[19.21852,43.52384],[18.56,42.65],[0.17674921502359012E2,43.0285625],[0.15750026075918981E2,0.44818711656262614E2],[0.17002146030351014E2,45.2337768],[0.18553214145591653E2,45.0815897]]]}},{"type":"Feature","properties":{"name":"GB"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-5.66194861,54.5546032],[-6.19788489,53.867565],[-7.57216793,54.0599564],[-7.57216793,55.1316222],[-6.73384701,55.17286],[-5.66194861,54.5546032]]],[[[-3.00500485,58.6350001],[-4.0738285,57.5530248],[-1.95928056,57.6847997],[-2.21998817,56.8700174],[-3.11900306,0.55973793036515474E2],[-2.08500932,55.9099985],[-1.11499101,54.6249865],[-0.430484992,54.4643761],[0.469976841,52.9299995],[1.6815308,52.7395202],[1.05056156,0.51806760565795685E2],[1.44986535,51.2894278],[0.550333693,0.50765738837275876E2],[-0.787517463,50.7749889],[-3.61744809,50.2283556],[-5.77656694,50.1596776],[-4.30998979,51.2100011],[-3.41485063,51.4260086],[-4.98436723,0.51593466091510976E2],[-5.2672957,51.9914005],[-4.22234656,0.52301355699261364E2],[-4.77001339,0.52840004991255626E2],[-4.57999915,53.4950038],[-3.09207964,0.53404440822963544E2],[-2.94500851,0.53984999701546684E2],[-3.63000546,0.54615012925833014E2],[-4.84416907,0.54790971177786844E2],[-5.04798092,55.7839855],[-5.58639767,55.3111461],[-5.64499875,0.56275014960344805E2],[-6.14998084,56.7850097],[-5.78682471,57.8188484],[-5.00999875,58.6300133],[-3.00500485,58.6350001]]]]}},{"type":"Feature","properties":{"name":"GE"},"geometry":{"type":"Polygon","coordinates":[[[44.5376229,0.42711992702803684E2],[45.4702792,42.5027807],[46.1454318,41.7228024],[0.46501637404166985E2,41.0644447],[45.2174264,41.4114519],[43.5827458,41.0921433],[0.42619548781104555E2,41.5831727],[41.5540841,41.5356562],[41.4534701,42.6451234],[40.076965,43.5531042],[0.42394394565608906E2,0.43220307929042605E2],[44.5376229,0.42711992702803684E2]]]}},{"type":"Feature","properties":{"name":"PG"},"geometry":{"type":"MultiPolygon","coordinates":[[[[0.15588002566957843E3,-6.81999684],[0.15472919152243836E3,-5.90082814],[0.15451411421123967E3,-5.13911753],[0.15601996544822478E3,-6.54001393],[0.15588002566957843E3,-6.81999684]]],[[[151.982796,-5.47806325],[0.15024119673075384E3,-6.31775359],[0.14831893680236075E3,-5.74714243],[148.401826,-5.43775563],[0.15080746707580815E3,-5.45584238],[0.15164788089417092E3,-4.75707366],[0.15153786176982155E3,-4.16780731],[0.15233874311748102E3,-4.3129664],[151.982796,-5.47806325]]],[[[0.14719187381407494E3,-7.38802418],[148.084636,-8.04410817],[148.734105,-0.9104663588093771E1],[0.15080162763895916E3,-0.10293686618697436E2],[149.78231,-0.10393267103723943E2],[0.14791301842670802E3,-0.10130440769087471E2],[146.567881,-8.94255462],[0.14604848107318494E3,-8.06741424],[0.14474416792213808E3,-7.63012827],[0.14328637576718435E3,-8.24549122],[0.14341391320208075E3,-8.98306894],[0.14262843143124422E3,-0.9326820570516503E1],[141.033852,-0.9117892754760433E1],[0.14100021040259188E3,-2.60015106],[0.14458397098203326E3,-3.86141774],[0.14582978641172568E3,-4.8764979],[0.14598192182839298E3,-5.46560923],[147.648073,-6.08365936],[147.891108,-6.61401458],[146.970905,-6.72165659],[0.14719187381407494E3,-7.38802418]]],[[[0.15314003787659877E3,-4.49998341],[152.406026,-3.78974253],[150.66205,-2.7414861],[0.15093996544820456E3,-2.50000213],[152.239989,-3.24000864],[0.15314003787659877E3,-4.49998341]]]]}},{"type":"Feature","properties":{"name":"PT"},"geometry":{"type":"Polygon","coordinates":[[[-7.45372555,0.37097787583966124E2],[-8.89885698,0.36868809312480806E2],[-8.83999752,38.2662434],[-0.9526570603869743E1,38.7374291],[-8.76868405,40.7606389],[-9.03481767,0.41880570583659704E2],[-8.26385698,42.2804687],[-8.01317461,41.7908861],[-6.66860552,0.41883386949219584E2],[-7.09803667,39.0300727],[-7.02928118,38.0757641],[-7.45372555,0.37097787583966124E2]]]}},{"type":"Feature","properties":{"name":"RS"},"geometry":{"type":"Polygon","coordinates":[[[20.3398,42.89852],[19.95857,43.10604],[19.48389,43.35229],[19.21852,43.52384],[19.59976,44.03847],[19.36803,44.863],[0.19005484597557654E2,0.44860234493542976E2],[19.3904757,0.45236515611342384E2],[18.82982,45.90888],[0.20220192498462893E2,46.127469],[0.22145087924902896E2,44.4784223],[0.22986018507588483E2,0.43211161200527044E2],[22.3805258,42.3202595],[20.81448,43.27205],[20.3398,42.89852]]]}}],"_labels":{"AF":"Afghanistan","AO":"Angola","AL":"Albania","AE":"United Arab Emirates","AR":"Argentina","AM":"Armenia","TF":"Fr. S. Antarctic Lands","AU":"Australia","AT":"Austria","AZ":"Azerbaijan","BI":"Burundi","BE":"Belgium","BJ":"Benin","BF":"Burkina Faso","BD":"Bangladesh","BG":"Bulgaria","BS":"Bahamas","BA":"Bosnia and Herz.","BY":"Belarus","BZ":"Belize","BO":"Bolivia","BR":"Brazil","BN":"Brunei","BT":"Bhutan","BW":"Botswana","CF":"Central African Rep.","CA":"Canada","CH":"Switzerland","CL":"Chile","CN":"China","CI":"Côte d'Ivoire","CM":"Cameroon","CD":"Dem. Rep. Congo","CG":"Congo","CO":"Colombia","CR":"Costa Rica","CU":"Cuba","CY":"Cyprus","CZ":"Czech Rep.","DE":"Germany","DJ":"Djibouti","DK":"Denmark","DO":"Dominican Rep.","DZ":"Algeria","EC":"Ecuador","EG":"Egypt","ER":"Eritrea","ES":"Spain","EE":"Estonia","ET":"Ethiopia","FI":"Finland","FJ":"Fiji","FK":"Falkland Is.","FR":"France","GA":"Gabon","GE":"Georgia","GH":"Ghana","GN":"Guinea","GM":"Gambia","GW":"Guinea-Bissau","GQ":"Eq. Guinea","GR":"Greece","GL":"Greenland","GT":"Guatemala","GF":"French Guiana","GY":"Guyana","HN":"Honduras","HR":"Croatia","HT":"Haiti","HU":"Hungary","ID":"Indonesia","IN":"India","IE":"Ireland","IR":"Iran","IQ":"Iraq","IS":"Iceland","IL":"Israel","IT":"Italy","JM":"Jamaica","JO":"Jordan","JP":"Japan","KZ":"Kazakhstan","KE":"Kenya","KG":"Kyrgyzstan","KH":"Cambodia","KR":"Korea","KW":"Kuwait","LA":"Lao PDR","LB":"Lebanon","LR":"Liberia","LY":"Libya","LK":"Sri Lanka","LS":"Lesotho","LT":"Lithuania","LU":"Luxembourg","LV":"Latvia","MA":"Morocco","MD":"Moldova","MG":"Madagascar","MX":"Mexico","MK":"Macedonia","ML":"Mali","MM":"Myanmar","ME":"Montenegro","MN":"Mongolia","MZ":"Mozambique","MR":"Mauritania","MW":"Malawi","MY":"Malaysia","NA":"Namibia","NC":"New Caledonia","NE":"Niger","NG":"Nigeria","NI":"Nicaragua","NL":"Netherlands","NO":"Norway","NP":"Nepal","SJ":"Svalbard Is.","NZ":"New Zealand","OM":"Oman","PK":"Pakistan","PA":"Panama","PE":"Peru","PH":"Philippines","PL":"Poland","PR":"Puerto Rico","KP":"Dem. Rep. Korea","PT":"Portugal","PY":"Paraguay","QA":"Qatar","RO":"Romania","RU":"Russia","RW":"Rwanda","EH":"W. Sahara","SA":"Saudi Arabia","SD":"Sudan","SS":"S. Sudan","SN":"Senegal","SB":"Solomon Is.","SL":"Sierra Leone","SV":"El Salvador","SO":"Somalia","SR":"Suriname","SK":"Slovakia","SI":"Slovenia","SE":"Sweden","SZ":"Swaziland","SY":"Syria","TD":"Chad","TG":"Togo","TH":"Thailand","TJ":"Tajikistan","TM":"Turkmenistan","TL":"Timor-Leste","TT":"Trinidad and Tobago","TN":"Tunisia","TR":"Turkey","TW":"Taiwan","TZ":"Tanzania","UG":"Uganda","UA":"Ukraine","UY":"Uruguay","US":"United States","UZ":"Uzbekistan","VE":"Venezuela","VN":"Vietnam","VU":"Vanuatu","YE":"Yemen","ZA":"South Africa","ZM":"Zambia","ZW":"Zimbabwe","GB":"United Kingdom","PG":"Papua New Guinea","RS":"Serbia"}} \ No newline at end of file diff --git a/src/api-umbrella/admin-ui/yarn.lock b/src/api-umbrella/admin-ui/yarn.lock index d2b5cddc1..532960bf3 100644 --- a/src/api-umbrella/admin-ui/yarn.lock +++ b/src/api-umbrella/admin-ui/yarn.lock @@ -2,6 +2,13 @@ # yarn lockfile v1 +JSONStream@^1.0.3: + version "1.3.0" + resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.0.tgz#680ab9ac6572a8a1a207e0b38721db1c77b215e5" + dependencies: + jsonparse "^1.2.0" + through ">=2.2.7 <3" + abbrev@1, abbrev@~1.0.7: version "1.0.9" resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" @@ -19,11 +26,19 @@ acorn-jsx@^3.0.0: dependencies: acorn "^3.0.4" +acorn@^1.0.3: + version "1.2.2" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-1.2.2.tgz#c8ce27de0acc76d896d2b1fad3df588d9e82f014" + +acorn@^2.6.4, acorn@^2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-2.7.0.tgz#ab6e7d9d886aaca8b085bc3312b79a198433f0e7" + acorn@^3.0.4, acorn@^3.1.0: version "3.3.0" resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" -acorn@^4.0.1: +acorn@^4.0.1, acorn@^4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.3.tgz#1a3e850b428e73ba6b09d1cc527f5aaad4d03ef1" @@ -70,14 +85,14 @@ ansi-escapes@^1.1.0: version "1.4.0" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" -ansi-regex@*, ansi-regex@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107" - ansi-regex@^0.2.0, ansi-regex@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-0.2.1.tgz#0d8e946967a3d8143f93e24e298525fc1b2235f9" +ansi-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107" + ansi-styles@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.1.0.tgz#eaecbf66cd706882760b2f4691582b8f55d7a7de" @@ -131,6 +146,10 @@ array-equal@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" +array-filter@~0.0.0: + version "0.0.1" + resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" + array-find-index@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" @@ -146,6 +165,14 @@ array-index@^1.0.0: debug "^2.2.0" es6-symbol "^3.0.2" +array-map@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" + +array-reduce@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" + array-to-error@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/array-to-error/-/array-to-error-1.1.1.tgz#d68812926d14097a205579a667eeaf1856a44c07" @@ -178,6 +205,14 @@ asap@^2.0.0: version "2.0.5" resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" +asn1.js@^4.0.0: + version "4.9.1" + resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40" + dependencies: + bn.js "^4.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + asn1@~0.2.3: version "0.2.3" resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" @@ -190,6 +225,12 @@ assert-plus@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" +assert@^1.4.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" + dependencies: + util "0.10.3" + ast-traverse@~0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/ast-traverse/-/ast-traverse-0.1.1.tgz#69cf2b8386f19dcda1bb1e05d68fe359d8897de6" @@ -198,14 +239,16 @@ ast-types@0.8.12: version "0.8.12" resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.8.12.tgz#a0d90e4351bb887716c83fd637ebf818af4adfcc" -ast-types@0.8.15: - version "0.8.15" - resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.8.15.tgz#8eef0827f04dff0ec8857ba925abe3fea6194e52" - ast-types@0.9.2: version "0.9.2" resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.9.2.tgz#2cc19979d15c655108bf565323b8e7ee38751f6b" +astw@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/astw/-/astw-2.0.0.tgz#08121ac8288d35611c0ceec663f6cd545604897d" + dependencies: + acorn "^1.0.3" + async-disk-cache@^1.0.0: version "1.0.9" resolved "https://registry.yarnpkg.com/async-disk-cache/-/async-disk-cache-1.0.9.tgz#23bafb823184f463407e474e8d5f87899f72ca63" @@ -413,6 +456,10 @@ base64-arraybuffer@0.1.5: version "0.1.5" resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8" +base64-js@^1.0.2: + version "1.2.0" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" + base64id@0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/base64id/-/base64id-0.1.0.tgz#02ce0fdeee0cef4f40080e1e73e834f0b1bfce3f" @@ -469,6 +516,10 @@ bluebird@^3.1.1, bluebird@^3.4.6: version "3.4.6" resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.4.6.tgz#01da8d821d87813d158967e743d5fe6c62cf8c0f" +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: + version "4.11.6" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215" + body-parser@~1.14.0: version "1.14.2" resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.14.2.tgz#1015cb1fe2c443858259581db53332f8d0cf50f9" @@ -821,6 +872,129 @@ broccoli-writer@~0.1.1: quick-temp "^0.1.0" rsvp "^3.0.6" +brorand@^1.0.1: + version "1.0.6" + resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.0.6.tgz#4028706b915f91f7b349a2e0bf3c376039d216e5" + +browser-pack@^6.0.1: + version "6.0.2" + resolved "https://registry.yarnpkg.com/browser-pack/-/browser-pack-6.0.2.tgz#f86cd6cef4f5300c8e63e07a4d512f65fbff4531" + dependencies: + JSONStream "^1.0.3" + combine-source-map "~0.7.1" + defined "^1.0.0" + through2 "^2.0.0" + umd "^3.0.0" + +browser-resolve@^1.11.0, browser-resolve@^1.7.0: + version "1.11.2" + resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" + dependencies: + resolve "1.1.7" + +browserify-aes@^1.0.0, browserify-aes@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" + dependencies: + buffer-xor "^1.0.2" + cipher-base "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.0" + inherits "^2.0.1" + +browserify-cipher@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" + dependencies: + browserify-aes "^1.0.4" + browserify-des "^1.0.0" + evp_bytestokey "^1.0.0" + +browserify-des@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" + dependencies: + cipher-base "^1.0.1" + des.js "^1.0.0" + inherits "^2.0.1" + +browserify-rsa@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" + dependencies: + bn.js "^4.1.0" + randombytes "^2.0.1" + +browserify-sign@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.0.tgz#10773910c3c206d5420a46aad8694f820b85968f" + dependencies: + bn.js "^4.1.1" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.2" + elliptic "^6.0.0" + inherits "^2.0.1" + parse-asn1 "^5.0.0" + +browserify-zlib@~0.1.2: + version "0.1.4" + resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" + dependencies: + pako "~0.2.0" + +browserify@^13.0.0: + version "13.3.0" + resolved "https://registry.yarnpkg.com/browserify/-/browserify-13.3.0.tgz#b5a9c9020243f0c70e4675bec8223bc627e415ce" + dependencies: + JSONStream "^1.0.3" + assert "^1.4.0" + browser-pack "^6.0.1" + browser-resolve "^1.11.0" + browserify-zlib "~0.1.2" + buffer "^4.1.0" + cached-path-relative "^1.0.0" + concat-stream "~1.5.1" + console-browserify "^1.1.0" + constants-browserify "~1.0.0" + crypto-browserify "^3.0.0" + defined "^1.0.0" + deps-sort "^2.0.0" + domain-browser "~1.1.0" + duplexer2 "~0.1.2" + events "~1.1.0" + glob "^7.1.0" + has "^1.0.0" + htmlescape "^1.1.0" + https-browserify "~0.0.0" + inherits "~2.0.1" + insert-module-globals "^7.0.0" + labeled-stream-splicer "^2.0.0" + module-deps "^4.0.8" + os-browserify "~0.1.1" + parents "^1.0.1" + path-browserify "~0.0.0" + process "~0.11.0" + punycode "^1.3.2" + querystring-es3 "~0.2.0" + read-only-stream "^2.0.0" + readable-stream "^2.0.2" + resolve "^1.1.4" + shasum "^1.0.0" + shell-quote "^1.6.1" + stream-browserify "^2.0.0" + stream-http "^2.0.0" + string_decoder "~0.10.0" + subarg "^1.0.0" + syntax-error "^1.1.1" + through2 "^2.0.0" + timers-browserify "^1.0.1" + tty-browserify "~0.0.0" + url "~0.11.0" + util "~0.10.1" + vm-browserify "~0.0.1" + xtend "^4.0.0" + bser@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" @@ -831,10 +1005,26 @@ buffer-shims@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" +buffer-xor@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" + +buffer@^4.1.0: + version "4.9.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" + dependencies: + base64-js "^1.0.2" + ieee754 "^1.1.4" + isarray "^1.0.0" + builtin-modules@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" +builtin-status-codes@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" + builtins@0.0.7: version "0.0.7" resolved "https://registry.yarnpkg.com/builtins/-/builtins-0.0.7.tgz#355219cd6cf18dbe7c01cc7fd2dce765cfdc549a" @@ -851,6 +1041,10 @@ bytes@2.4.0: version "2.4.0" resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.4.0.tgz#7d97196f9d5baf7f6935e25985549edd2a6c2339" +cached-path-relative@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/cached-path-relative/-/cached-path-relative-1.0.0.tgz#d1094c577fbd9a8b8bd43c96af6188aa205d05f4" + caller-path@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" @@ -961,6 +1155,12 @@ chownr@^1.0.1, chownr@~1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" +cipher-base@^1.0.0, cipher-base@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07" + dependencies: + inherits "^2.0.1" + circular-json@^0.3.0: version "0.3.1" resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" @@ -1089,6 +1289,15 @@ columnify@~1.5.4: strip-ansi "^3.0.0" wcwidth "^1.0.0" +combine-source-map@~0.7.1: + version "0.7.2" + resolved "https://registry.yarnpkg.com/combine-source-map/-/combine-source-map-0.7.2.tgz#0870312856b307a87cc4ac486f3a9a62aeccc09e" + dependencies: + convert-source-map "~1.1.0" + inline-source-map "~0.6.0" + lodash.memoize "~3.0.3" + source-map "~0.5.3" + combined-stream@^1.0.5, combined-stream@~1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" @@ -1162,7 +1371,7 @@ concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" -concat-stream@^1.4.6, concat-stream@^1.4.7: +concat-stream@^1.4.6, concat-stream@^1.4.7, concat-stream@~1.5.0, concat-stream@~1.5.1: version "1.5.2" resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" dependencies: @@ -1200,7 +1409,7 @@ connect@^3.3.3: parseurl "~1.3.1" utils-merge "1.0.0" -console-browserify@1.1.x: +console-browserify@1.1.x, console-browserify@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" dependencies: @@ -1216,6 +1425,10 @@ consolidate@^0.14.0: dependencies: bluebird "^3.1.1" +constants-browserify@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" + content-disposition@0.5.1: version "0.5.1" resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.1.tgz#87476c6a67c8daa87e32e87616df883ba7fb071b" @@ -1228,6 +1441,10 @@ convert-source-map@^1.1.0: version "1.3.0" resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" +convert-source-map@~1.1.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.1.3.tgz#4829c877e9fe49b3161f3bf3673888e204699860" + cookie-signature@1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" @@ -1258,6 +1475,29 @@ core-util-is@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" +create-ecdh@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" + dependencies: + bn.js "^4.1.0" + elliptic "^6.0.0" + +create-hash@^1.1.0, create-hash@^1.1.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.2.tgz#51210062d7bb7479f6c65bb41a92208b1d61abad" + dependencies: + cipher-base "^1.0.1" + inherits "^2.0.1" + ripemd160 "^1.0.0" + sha.js "^2.3.6" + +create-hmac@^1.1.0, create-hmac@^1.1.2: + version "1.1.4" + resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.4.tgz#d3fb4ba253eb8b3f56e39ea2fbcb8af747bd3170" + dependencies: + create-hash "^1.1.0" + inherits "^2.0.1" + cross-spawn@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" @@ -1278,6 +1518,21 @@ cryptiles@2.x.x: dependencies: boom "2.x.x" +crypto-browserify@^3.0.0: + version "3.11.0" + resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522" + dependencies: + browserify-cipher "^1.0.0" + browserify-sign "^4.0.0" + create-ecdh "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.0" + diffie-hellman "^5.0.0" + inherits "^2.0.1" + pbkdf2 "^3.0.3" + public-encrypt "^4.0.0" + randombytes "^2.0.0" + currently-unhandled@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" @@ -1377,6 +1632,32 @@ depd@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" +deps-sort@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/deps-sort/-/deps-sort-2.0.0.tgz#091724902e84658260eb910748cccd1af6e21fb5" + dependencies: + JSONStream "^1.0.3" + shasum "^1.0.0" + subarg "^1.0.0" + through2 "^2.0.0" + +derequire@^2.0.3: + version "2.0.6" + resolved "https://registry.yarnpkg.com/derequire/-/derequire-2.0.6.tgz#31a414bb7ca176239fa78b116636ef77d517e768" + dependencies: + acorn "^4.0.3" + concat-stream "^1.4.6" + escope "^3.6.0" + through2 "^2.0.0" + yargs "^6.5.0" + +des.js@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" + dependencies: + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + destroy@~1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" @@ -1389,7 +1670,7 @@ detect-indent@^3.0.0: minimist "^1.1.0" repeating "^1.1.0" -detective@^4.3.1: +detective@^4.0.0, detective@^4.3.1: version "4.3.2" resolved "https://registry.yarnpkg.com/detective/-/detective-4.3.2.tgz#77697e2e7947ac3fe7c8e26a6d6f115235afa91c" dependencies: @@ -1411,6 +1692,14 @@ diff@^1.3.1: version "1.4.0" resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" +diffie-hellman@^5.0.0: + version "5.0.2" + resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" + dependencies: + bn.js "^4.1.0" + miller-rabin "^4.0.0" + randombytes "^2.0.0" + doctrine@^1.2.2: version "1.5.0" resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" @@ -1425,6 +1714,10 @@ dom-serializer@0: domelementtype "~1.1.1" entities "~1.1.1" +domain-browser@~1.1.0: + version "1.1.7" + resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" + domelementtype@1: version "1.3.0" resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" @@ -1452,12 +1745,24 @@ dot-prop@^3.0.0: dependencies: is-obj "^1.0.0" +duplexer2@^0.1.2, duplexer2@~0.1.0, duplexer2@~0.1.2: + version "0.1.4" + resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" + dependencies: + readable-stream "^2.0.2" + ecc-jsbn@~0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" dependencies: jsbn "~0.1.0" +echarts@~3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/echarts/-/echarts-3.4.0.tgz#425e83be18a70170d2e1a9daf22c75bcd2da58d4" + dependencies: + zrender "^3.3.0" + editions@^1.1.1: version "1.3.3" resolved "https://registry.yarnpkg.com/editions/-/editions-1.3.3.tgz#0907101bdda20fac3cbe334c27cbd0688dc99a5b" @@ -1470,6 +1775,15 @@ ee-first@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" +elliptic@^6.0.0: + version "6.3.2" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.3.2.tgz#e4c81e0829cf0a65ab70e998b8232723b5c1bc48" + dependencies: + bn.js "^4.4.0" + brorand "^1.0.1" + hash.js "^1.0.0" + inherits "^2.0.1" + ember-bootstrap@~0.11.2: version "0.11.3" resolved "https://registry.yarnpkg.com/ember-bootstrap/-/ember-bootstrap-0.11.3.tgz#810d9e7202cfb5439d731360589a62144087e96c" @@ -1481,6 +1795,33 @@ ember-bootstrap@~0.11.2: ember-runtime-enumerable-includes-polyfill "^1.0.1" ember-wormhole "^0.4.1" +ember-browserify@~1.1.13: + version "1.1.13" + resolved "https://registry.yarnpkg.com/ember-browserify/-/ember-browserify-1.1.13.tgz#df74eea4adf4694e8c364222f9c5fd605000930b" + dependencies: + acorn "^2.6.4" + broccoli-caching-writer "^3.0.3" + broccoli-kitchen-sink-helpers "^0.3.1" + broccoli-merge-trees "^1.1.2" + broccoli-plugin "^1.2.1" + browserify "^13.0.0" + core-object "^1.1.0" + debug "^2.2.0" + derequire "^2.0.3" + ember-cli-version-checker "^1.1.4" + fs-tree "^1.0.0" + fs-tree-diff "^0.5.0" + lodash "^4.5.1" + md5-hex "^1.3.0" + mkdirp "^0.5.0" + promise-map-series "^0.2.0" + quick-temp "^0.1.2" + rimraf "^2.2.8" + rsvp "^3.0.14" + symlink-or-copy "^1.0.0" + through2 "^2.0.0" + walk-sync "^0.2.7" + ember-buffered-proxy@~0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/ember-buffered-proxy/-/ember-buffered-proxy-0.6.0.tgz#4575bf8a16e4ac28711e3f577789844f65a14409" @@ -2254,6 +2595,16 @@ events-to-array@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/events-to-array/-/events-to-array-1.0.2.tgz#b3484465534fe4ff66fbdd1a83b777713ba404aa" +events@~1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" + +evp_bytestokey@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53" + dependencies: + create-hash "^1.1.1" + exec-sh@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" @@ -2505,6 +2856,13 @@ fs-tree-diff@^0.5.0, fs-tree-diff@^0.5.2, fs-tree-diff@^0.5.3, fs-tree-diff@^0.5 path-posix "^1.0.0" symlink-or-copy "^1.1.8" +fs-tree@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs-tree/-/fs-tree-1.0.0.tgz#ef64da3e6dd32cc0df27c3b3e0c299ffa575c026" + dependencies: + mkdirp "~0.5.0" + rimraf "~2.2.8" + fs-vacuum@~1.2.9: version "1.2.9" resolved "https://registry.yarnpkg.com/fs-vacuum/-/fs-vacuum-1.2.9.tgz#4f90193ab8ea02890995bcd4e804659a5d366b2d" @@ -2550,6 +2908,10 @@ fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.8: mkdirp ">=0.5 0" rimraf "2" +function-bind@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" + gauge@~1.2.5: version "1.2.7" resolved "https://registry.yarnpkg.com/gauge/-/gauge-1.2.7.tgz#e9cec5483d3d4ee0ef44b60a7d99e4935e136d93" @@ -2560,20 +2922,6 @@ gauge@~1.2.5: lodash.padend "^4.1.0" lodash.padstart "^4.1.0" -gauge@~2.6.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.6.0.tgz#d35301ad18e96902b4751dcbbe40f4218b942a46" - dependencies: - aproba "^1.0.3" - console-control-strings "^1.0.0" - has-color "^0.1.7" - has-unicode "^2.0.0" - object-assign "^4.1.0" - signal-exit "^3.0.0" - string-width "^1.0.1" - strip-ansi "^3.0.1" - wide-align "^1.1.0" - gauge@~2.7.1: version "2.7.2" resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.2.tgz#15cecc31b02d05345a5d6b0e171cdb3ad2307774" @@ -2670,7 +3018,7 @@ glob@^6.0.0: once "^1.3.0" path-is-absolute "^1.0.0" -glob@^7.1.1, glob@~7.1.1: +glob@^7.1.0, glob@^7.1.1, glob@~7.1.1: version "7.1.1" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" dependencies: @@ -2763,7 +3111,7 @@ has-binary@0.1.7: dependencies: isarray "0.0.1" -has-color@^0.1.7, has-color@~0.1.0: +has-color@~0.1.0: version "0.1.7" resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" @@ -2775,6 +3123,12 @@ has-unicode@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" +has@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" + dependencies: + function-bind "^1.0.2" + hash-for-dep@^1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/hash-for-dep/-/hash-for-dep-1.0.3.tgz#b57f18a0ace56380951638a3b36a6b73d8619b8b" @@ -2782,6 +3136,12 @@ hash-for-dep@^1.0.2: broccoli-kitchen-sink-helpers "^0.3.1" resolve "^1.1.6" +hash.js@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573" + dependencies: + inherits "^2.0.1" + hawk@~3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" @@ -2819,6 +3179,10 @@ hosted-git-info@^2.1.4, hosted-git-info@^2.1.5, hosted-git-info@~2.1.4: version "2.1.5" resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b" +htmlescape@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/htmlescape/-/htmlescape-1.1.1.tgz#3a03edc2214bca3b66424a3e7959349509cb0351" + htmlparser2@3.8.x: version "3.8.3" resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.8.3.tgz#996c28b191516a8be86501a7d79757e5c70c1068" @@ -2859,10 +3223,18 @@ http-signature@~1.1.0: jsprim "^1.2.2" sshpk "^1.7.0" +https-browserify@~0.0.0: + version "0.0.1" + resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" + iconv-lite@0.4.13, iconv-lite@^0.4.5, iconv-lite@~0.4.13: version "0.4.13" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" +ieee754@^1.1.4: + version "1.1.8" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" + iferr@^0.1.5: version "0.1.5" resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" @@ -2871,7 +3243,7 @@ ignore@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.0.tgz#8d88f03c3002a0ac52114db25d2c673b0bf1e435" -imurmurhash@*, imurmurhash@^0.1.4: +imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" @@ -2908,6 +3280,10 @@ inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: version "2.0.3" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" +inherits@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" + ini@^1.3.4, ini@~1.3.4: version "1.3.4" resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" @@ -2935,6 +3311,12 @@ inline-source-map-comment@^1.0.5: sum-up "^1.0.1" xtend "^4.0.0" +inline-source-map@~0.6.0: + version "0.6.2" + resolved "https://registry.yarnpkg.com/inline-source-map/-/inline-source-map-0.6.2.tgz#f9393471c18a79d1724f863fa38b586370ade2a5" + dependencies: + source-map "~0.5.3" + inquirer@^0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" @@ -2972,6 +3354,19 @@ inquirer@^1.0.2: strip-ansi "^3.0.0" through "^2.3.6" +insert-module-globals@^7.0.0: + version "7.0.1" + resolved "https://registry.yarnpkg.com/insert-module-globals/-/insert-module-globals-7.0.1.tgz#c03bf4e01cb086d5b5e5ace8ad0afe7889d638c3" + dependencies: + JSONStream "^1.0.3" + combine-source-map "~0.7.1" + concat-stream "~1.5.1" + is-buffer "^1.1.0" + lexical-scope "^1.2.0" + process "~0.11.0" + through2 "^2.0.0" + xtend "^4.0.0" + interpret@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c" @@ -2988,7 +3383,7 @@ is-arrayish@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" -is-buffer@^1.0.2: +is-buffer@^1.0.2, is-buffer@^1.1.0: version "1.1.4" resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" @@ -3085,7 +3480,7 @@ is-utf8@^0.2.0: version "0.2.1" resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" -isarray@0.0.1: +isarray@0.0.1, isarray@~0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" @@ -3179,6 +3574,12 @@ json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: dependencies: jsonify "~0.0.0" +json-stable-stringify@~0.0.0: + version "0.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz#611c23e814db375527df851193db59dd2af27f45" + dependencies: + jsonify "~0.0.0" + json-stringify-safe@~5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" @@ -3205,6 +3606,10 @@ jsonify@~0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" +jsonparse@^1.2.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.0.tgz#85fc245b1d9259acc6941960b905adf64e7de0e8" + jsonpointer@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.0.tgz#6661e161d2fc445f19f98430231343722e1fcbd5" @@ -3233,6 +3638,14 @@ klaw@^1.0.0: optionalDependencies: graceful-fs "^4.1.9" +labeled-stream-splicer@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/labeled-stream-splicer/-/labeled-stream-splicer-2.0.0.tgz#a52e1d138024c00b86b1c0c91f677918b8ae0a59" + dependencies: + inherits "^2.0.1" + isarray "~0.0.1" + stream-splicer "^2.0.0" + lazy-cache@^1.0.3: version "1.0.4" resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" @@ -3263,6 +3676,12 @@ levn@^0.3.0, levn@~0.3.0: prelude-ls "~1.1.2" type-check "~0.3.2" +lexical-scope@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/lexical-scope/-/lexical-scope-1.2.0.tgz#fcea5edc704a4b3a8796cdca419c3a0afaf22df4" + dependencies: + astw "^2.0.0" + linkify-it@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-2.0.2.tgz#994629a4adfa5a7d34e08c075611575ab9b6fcfc" @@ -3441,6 +3860,10 @@ lodash.keysin@^3.0.0: lodash.isarguments "^3.0.0" lodash.isarray "^3.0.0" +lodash.memoize@~3.0.3: + version "3.0.4" + resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-3.0.4.tgz#2dcbd2c287cbc0a55cc42328bd0c736150d53e3f" + lodash.merge@^3.3.2: version "3.3.2" resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-3.3.2.tgz#0d90d93ed637b1878437bb3e21601260d7afe994" @@ -3603,7 +4026,7 @@ matcher-collection@^1.0.0, matcher-collection@^1.0.1: dependencies: minimatch "^3.0.2" -md5-hex@^1.0.2, md5-hex@^1.2.1: +md5-hex@^1.0.2, md5-hex@^1.2.1, md5-hex@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" dependencies: @@ -3654,6 +4077,13 @@ methods@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" +miller-rabin@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" + dependencies: + bn.js "^4.0.0" + brorand "^1.0.1" + "mime-db@>= 1.24.0 < 2", mime-db@~1.25.0: version "1.25.0" resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.25.0.tgz#c18dbd7c73a5dbf6f44a024dc0d165a1e7b1c392" @@ -3668,6 +4098,10 @@ mime@1.3.4, mime@^1.2.11: version "1.3.4" resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" +minimalistic-assert@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" + minimatch@1: version "1.0.0" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-1.0.0.tgz#e0dd2120b49e1b724ce8d714c520822a9438576d" @@ -3715,6 +4149,26 @@ mktemp@~0.3.4: version "0.3.5" resolved "https://registry.yarnpkg.com/mktemp/-/mktemp-0.3.5.tgz#a1504c706d0d2b198c6a0eb645f7fdaf8181f7de" +module-deps@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/module-deps/-/module-deps-4.0.8.tgz#55fd70623399706c3288bef7a609ff1e8c0ed2bb" + dependencies: + JSONStream "^1.0.3" + browser-resolve "^1.7.0" + cached-path-relative "^1.0.0" + concat-stream "~1.5.0" + defined "^1.0.0" + detective "^4.0.0" + duplexer2 "^0.1.2" + inherits "^2.0.1" + parents "^1.0.0" + readable-stream "^2.0.2" + resolve "^1.1.3" + stream-combiner2 "^1.1.1" + subarg "^1.0.0" + through2 "^2.0.0" + xtend "^4.0.0" + morgan@^1.5.2: version "1.7.0" resolved "https://registry.yarnpkg.com/morgan/-/morgan-1.7.0.tgz#eb10ca8e50d1abe0f8d3dad5c0201d052d981c62" @@ -3774,26 +4228,7 @@ node-fetch@^1.3.3: encoding "^0.1.11" is-stream "^1.0.1" -node-gyp@^3.3.1: - version "3.4.0" - resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.4.0.tgz#dda558393b3ecbbe24c9e6b8703c71194c63fa36" - dependencies: - fstream "^1.0.0" - glob "^7.0.3" - graceful-fs "^4.1.2" - minimatch "^3.0.2" - mkdirp "^0.5.0" - nopt "2 || 3" - npmlog "0 || 1 || 2 || 3" - osenv "0" - path-array "^1.0.0" - request "2" - rimraf "2" - semver "2.x || 3.x || 4 || 5" - tar "^2.0.0" - which "1" - -node-gyp@~3.3.1: +node-gyp@^3.3.1, node-gyp@~3.3.1: version "3.3.1" resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.3.1.tgz#80f7b6d7c2f9c0495ba42c518a670c99bdf6e4a0" dependencies: @@ -4002,7 +4437,7 @@ npm@2.15.5: wrappy "~1.0.1" write-file-atomic "~1.1.4" -"npmlog@0 || 1 || 2", "npmlog@0.1 || 1 || 2", npmlog@~2.0.3: +"npmlog@0 || 1 || 2", "npmlog@0.1 || 1 || 2", "npmlog@~2.0.0 || ~3.1.0", npmlog@~2.0.3: version "2.0.4" resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-2.0.4.tgz#98b52530f2514ca90d09ec5b22c8846722375692" dependencies: @@ -4010,15 +4445,6 @@ npm@2.15.5: are-we-there-yet "~1.1.2" gauge "~1.2.5" -"npmlog@0 || 1 || 2 || 3", "npmlog@~2.0.0 || ~3.1.0": - version "3.1.2" - resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-3.1.2.tgz#2d46fa874337af9498a2f12bb43d8d0be4a36873" - dependencies: - are-we-there-yet "~1.1.2" - console-control-strings "~1.1.0" - gauge "~2.6.0" - set-blocking "~2.0.0" - npmlog@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.1.tgz#d14f503b4cd79710375553004ba96e6662fbc0b8" @@ -4113,6 +4539,10 @@ ora@^0.2.0: cli-spinners "^0.1.2" object-assign "^4.0.1" +os-browserify@~0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.1.2.tgz#49ca0293e0b19590a5f5de10c7f265a617d8fe54" + os-homedir@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" @@ -4146,6 +4576,26 @@ output-file-sync@^1.1.0: mkdirp "^0.5.1" object-assign "^4.1.0" +pako@~0.2.0: + version "0.2.9" + resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" + +parents@^1.0.0, parents@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parents/-/parents-1.0.1.tgz#fedd4d2bf193a77745fe71e371d73c3307d9c751" + dependencies: + path-platform "~0.11.15" + +parse-asn1@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.0.0.tgz#35060f6d5015d37628c770f4e091a0b5a278bc23" + dependencies: + asn1.js "^4.0.0" + browserify-aes "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.0" + pbkdf2 "^3.0.3" + parse-json@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" @@ -4180,6 +4630,10 @@ path-array@^1.0.0: dependencies: array-index "^1.0.0" +path-browserify@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" + path-exists@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-1.0.0.tgz#d5a8998eb71ef37a74c34eb0d9eba6e878eea081" @@ -4198,6 +4652,10 @@ path-is-inside@^1.0.1, path-is-inside@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" +path-platform@~0.11.15: + version "0.11.15" + resolved "https://registry.yarnpkg.com/path-platform/-/path-platform-0.11.15.tgz#e864217f74c36850f0852b78dc7bf7d4a5721bf2" + path-posix@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/path-posix/-/path-posix-1.0.0.tgz#06b26113f56beab042545a23bfa88003ccac260f" @@ -4214,6 +4672,12 @@ path-type@^1.0.0: pify "^2.0.0" pinkie-promise "^2.0.0" +pbkdf2@^3.0.3: + version "3.0.9" + resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.9.tgz#f2c4b25a600058b3c3773c086c37dbbee1ffe693" + dependencies: + create-hmac "^1.1.2" + pify@^2.0.0: version "2.3.0" resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" @@ -4262,11 +4726,15 @@ process-relative-require@^1.0.0: dependencies: node-modules-path "^1.0.0" +process@~0.11.0: + version "0.11.9" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1" + progress@^1.1.8: version "1.1.8" resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" -promise-map-series@^0.2.1: +promise-map-series@^0.2.0, promise-map-series@^0.2.1: version "0.2.3" resolved "https://registry.yarnpkg.com/promise-map-series/-/promise-map-series-0.2.3.tgz#c2d377afc93253f6bd03dbb77755eb88ab20a847" dependencies: @@ -4293,7 +4761,21 @@ pseudomap@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" -punycode@^1.4.1: +public-encrypt@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" + dependencies: + bn.js "^4.1.0" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + parse-asn1 "^5.0.0" + randombytes "^2.0.1" + +punycode@1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" + +punycode@^1.3.2, punycode@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" @@ -4321,6 +4803,14 @@ qs@~6.3.0: version "6.3.0" resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" +querystring-es3@~0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" + +querystring@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" + quick-temp@0.1.5, quick-temp@^0.1.0, quick-temp@^0.1.2, quick-temp@^0.1.3, quick-temp@^0.1.5: version "0.1.5" resolved "https://registry.yarnpkg.com/quick-temp/-/quick-temp-0.1.5.tgz#0d0d67f0fb6a589a0e142f90985f76cdbaf403f7" @@ -4333,6 +4823,10 @@ qunitjs@^1.20.0: version "1.23.1" resolved "https://registry.yarnpkg.com/qunitjs/-/qunitjs-1.23.1.tgz#1971cf97ac9be01a64d2315508d2e48e6fd4e719" +randombytes@^2.0.0, randombytes@^2.0.1: + version "2.0.3" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec" + range-parser@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" @@ -4358,6 +4852,12 @@ read-installed@~4.0.3: optionalDependencies: graceful-fs "^4.1.2" +read-only-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-only-stream/-/read-only-stream-2.0.0.tgz#2724fd6a8113d73764ac288d4386270c1dbf17f0" + dependencies: + readable-stream "^2.0.2" + "read-package-json@1 || 2", read-package-json@^2.0.0, read-package-json@~2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-2.0.4.tgz#61ed1b2256ea438d8008895090be84b8e799c853" @@ -4389,9 +4889,9 @@ read@1, read@~1.0.1, read@~1.0.7: dependencies: mute-stream "~0.0.4" -"readable-stream@1 || 2", readable-stream@^2, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2: - version "2.2.2" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" +"readable-stream@1 || 2", readable-stream@^2, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.1.0, readable-stream@^2.1.5, readable-stream@~2.1.2: + version "2.1.5" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" dependencies: buffer-shims "^1.0.0" core-util-is "~1.0.0" @@ -4430,18 +4930,6 @@ readable-stream@~2.0.0, readable-stream@~2.0.5: string_decoder "~0.10.x" util-deprecate "~1.0.1" -readable-stream@~2.1.2: - version "2.1.5" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" - dependencies: - buffer-shims "^1.0.0" - core-util-is "~1.0.0" - inherits "~2.0.1" - isarray "~1.0.0" - process-nextick-args "~1.0.6" - string_decoder "~0.10.x" - util-deprecate "~1.0.1" - readdir-scoped-modules@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/readdir-scoped-modules/-/readdir-scoped-modules-1.0.2.tgz#9fafa37d286be5d92cbaebdee030dc9b5f406747" @@ -4466,7 +4954,7 @@ realize-package-specifier@~3.0.3: dezalgo "^1.0.1" npm-package-arg "^4.1.1" -recast@0.10.33: +recast@0.10.33, recast@^0.10.10: version "0.10.33" resolved "https://registry.yarnpkg.com/recast/-/recast-0.10.33.tgz#942808f7aa016f1fa7142c461d7e5704aaa8d697" dependencies: @@ -4475,15 +4963,6 @@ recast@0.10.33: private "~0.1.5" source-map "~0.5.0" -recast@^0.10.10: - version "0.10.43" - resolved "https://registry.yarnpkg.com/recast/-/recast-0.10.43.tgz#b95d50f6d60761a5f6252e15d80678168491ce7f" - dependencies: - ast-types "0.8.15" - esprima-fb "~15001.1001.0-dev-harmony-fb" - private "~0.1.5" - source-map "~0.5.0" - recast@^0.11.17, recast@^0.11.3: version "0.11.18" resolved "https://registry.yarnpkg.com/recast/-/recast-0.11.18.tgz#07af6257ca769868815209401d4d60eef1b5b947" @@ -4643,7 +5122,7 @@ resolve-from@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" -resolve@^1.1.2, resolve@^1.1.6, resolve@^1.1.7: +resolve@1.1.7, resolve@^1.1.2, resolve@^1.1.3, resolve@^1.1.4, resolve@^1.1.6, resolve@^1.1.7: version "1.1.7" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" @@ -4674,10 +5153,14 @@ rimraf@2, rimraf@^2.2.8, rimraf@^2.3.2, rimraf@^2.3.4, rimraf@^2.4.3, rimraf@^2. dependencies: glob "^7.0.5" -rimraf@~2.2.6: +rimraf@~2.2.6, rimraf@~2.2.8: version "2.2.8" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.2.8.tgz#e439be2aaee327321952730f99a8929e4fc50582" +ripemd160@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-1.0.1.tgz#93a4bbd4942bc574b69a8fa57c71de10ecca7d6e" + rsvp@^3.0.14, rsvp@^3.0.16, rsvp@^3.0.17, rsvp@^3.0.18, rsvp@^3.0.21, rsvp@^3.0.6, rsvp@^3.1.0, rsvp@^3.2.1: version "3.3.3" resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-3.3.3.tgz#34633caaf8bc66ceff4be3c2e1dffd032538a813" @@ -4776,6 +5259,12 @@ setprototypeof@1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.2.tgz#81a552141ec104b88e89ce383103ad5c66564d08" +sha.js@^2.3.6, sha.js@~2.4.4: + version "2.4.8" + resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" + dependencies: + inherits "^2.0.1" + sha@~2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/sha/-/sha-2.0.1.tgz#6030822fbd2c9823949f8f72ed6411ee5cf25aae" @@ -4783,10 +5272,26 @@ sha@~2.0.1: graceful-fs "^4.1.2" readable-stream "^2.0.2" +shasum@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/shasum/-/shasum-1.0.2.tgz#e7012310d8f417f4deb5712150e5678b87ae565f" + dependencies: + json-stable-stringify "~0.0.0" + sha.js "~2.4.4" + shebang-regex@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" +shell-quote@^1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" + dependencies: + array-filter "~0.0.0" + array-map "~0.0.0" + array-reduce "~0.0.0" + jsonify "~0.0.0" + shelljs@0.3.x: version "0.3.0" resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.3.0.tgz#3596e6307a781544f591f37da618360f31db57b1" @@ -4923,7 +5428,7 @@ source-map@0.4.x, source-map@^0.4.2, source-map@^0.4.4: dependencies: amdefine ">=0.0.4" -source-map@^0.5.0, source-map@~0.5.0, source-map@~0.5.1: +source-map@^0.5.0, source-map@~0.5.0, source-map@~0.5.1, source-map@~0.5.3: version "0.5.6" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" @@ -4983,7 +5488,38 @@ statuses@1, "statuses@>= 1.3.1 < 2", statuses@~1.3.0: version "1.3.1" resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" -string-width@^1.0.1: +stream-browserify@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" + dependencies: + inherits "~2.0.1" + readable-stream "^2.0.2" + +stream-combiner2@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe" + dependencies: + duplexer2 "~0.1.0" + readable-stream "^2.0.2" + +stream-http@^2.0.0: + version "2.6.3" + resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.6.3.tgz#4c3ddbf9635968ea2cfd4e48d43de5def2625ac3" + dependencies: + builtin-status-codes "^3.0.0" + inherits "^2.0.1" + readable-stream "^2.1.0" + to-arraybuffer "^1.0.0" + xtend "^4.0.0" + +stream-splicer@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/stream-splicer/-/stream-splicer-2.0.0.tgz#1b63be438a133e4b671cc1935197600175910d83" + dependencies: + inherits "^2.0.1" + readable-stream "^2.0.2" + +string-width@^1.0.1, string-width@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" dependencies: @@ -5002,7 +5538,7 @@ string.prototype.codepointat@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/string.prototype.codepointat/-/string.prototype.codepointat-0.2.0.tgz#6b26e9bd3afcaa7be3b4269b526de1b82000ac78" -string_decoder@~0.10.x: +string_decoder@~0.10.0, string_decoder@~0.10.x: version "0.10.31" resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" @@ -5058,6 +5594,12 @@ styled_string@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/styled_string/-/styled_string-0.0.1.tgz#d22782bd81295459bc4f1df18c4bad8e94dd124a" +subarg@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" + dependencies: + minimist "^1.1.0" + sum-up@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/sum-up/-/sum-up-1.0.3.tgz#1c661f667057f63bcb7875aa1438bc162525156e" @@ -5080,6 +5622,12 @@ sync-exec@^0.6.2: version "0.6.2" resolved "https://registry.yarnpkg.com/sync-exec/-/sync-exec-0.6.2.tgz#717d22cc53f0ce1def5594362f3a89a2ebb91105" +syntax-error@^1.1.1: + version "1.1.6" + resolved "https://registry.yarnpkg.com/syntax-error/-/syntax-error-1.1.6.tgz#b4549706d386cc1c1dc7c2423f18579b6cade710" + dependencies: + acorn "^2.7.0" + table@^3.7.8: version "3.8.3" resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" @@ -5155,10 +5703,23 @@ text-table@~0.2.0: version "2.0.1" resolved "https://registry.yarnpkg.com/textextensions/-/textextensions-2.0.1.tgz#be8cf22d65379c151319f88f0335ad8f667abdca" -through@^2.3.6, through@~2.3.8: +through2@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" + dependencies: + readable-stream "^2.1.5" + xtend "~4.0.1" + +"through@>=2.2.7 <3", through@^2.3.6, through@~2.3.8: version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" +timers-browserify@^1.0.1: + version "1.4.2" + resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d" + dependencies: + process "~0.11.0" + tiny-lr@0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/tiny-lr/-/tiny-lr-0.2.1.tgz#b3fdba802e5d56a33c2f6f10794b32e477ac729d" @@ -5190,6 +5751,10 @@ to-array@0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890" +to-arraybuffer@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" + to-fast-properties@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" @@ -5234,6 +5799,10 @@ tryor@~0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/tryor/-/tryor-0.1.2.tgz#8145e4ca7caff40acde3ccf946e8b8bb75b4172b" +tty-browserify@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" + tunnel-agent@~0.4.1: version "0.4.3" resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" @@ -5288,6 +5857,10 @@ umask@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/umask/-/umask-1.1.0.tgz#f29cebf01df517912bb58ff9c4e50fde8e33320d" +umd@^3.0.0: + version "3.0.1" + resolved "http://registry.npmjs.org/umd/-/umd-3.0.1.tgz#8ae556e11011f63c2596708a8837259f01b3d60e" + underscore.string@~2.3.3: version "2.3.3" resolved "https://registry.yarnpkg.com/underscore.string/-/underscore.string-2.3.3.tgz#71c08bf6b428b1133f37e78fa3a21c82f7329b0d" @@ -5306,6 +5879,13 @@ untildify@^2.1.0: dependencies: os-homedir "^1.0.0" +url@~0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" + dependencies: + punycode "1.3.2" + querystring "0.2.0" + user-home@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" @@ -5324,6 +5904,12 @@ util-extend@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/util-extend/-/util-extend-1.0.3.tgz#a7c216d267545169637b3b6edc6ca9119e2ff93f" +util@0.10.3, util@~0.10.1: + version "0.10.3" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" + dependencies: + inherits "2.0.1" + utils-merge@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" @@ -5359,6 +5945,12 @@ verror@1.3.6: dependencies: extsprintf "1.0.2" +vm-browserify@~0.0.1: + version "0.0.4" + resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" + dependencies: + indexof "0.0.1" + walk-sync@^0.1.3: version "0.1.3" resolved "https://registry.yarnpkg.com/walk-sync/-/walk-sync-0.1.3.tgz#8a07261a00bda6cfb1be25e9f100fad57546f583" @@ -5501,7 +6093,7 @@ xmlhttprequest-ssl@1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.1.tgz#3b7741fea4a86675976e908d296d4445961faa67" -xtend@^4.0.0: +xtend@^4.0.0, xtend@~4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" @@ -5528,6 +6120,12 @@ yargs-parser@^2.4.1: camelcase "^3.0.0" lodash.assign "^4.0.6" +yargs-parser@^4.2.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" + dependencies: + camelcase "^3.0.0" + yargs@^4.7.1: version "4.8.1" resolved "https://registry.yarnpkg.com/yargs/-/yargs-4.8.1.tgz#c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0" @@ -5547,6 +6145,24 @@ yargs@^4.7.1: y18n "^3.2.1" yargs-parser "^2.4.1" +yargs@^6.5.0: + version "6.6.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" + dependencies: + camelcase "^3.0.0" + cliui "^3.2.0" + decamelize "^1.1.1" + get-caller-file "^1.0.1" + os-locale "^1.4.0" + read-pkg-up "^1.0.1" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^1.0.2" + which-module "^1.0.0" + y18n "^3.2.1" + yargs-parser "^4.2.0" + yargs@~3.10.0: version "3.10.0" resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" @@ -5570,3 +6186,7 @@ yargs@~3.27.0: yeast@0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" + +zrender@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/zrender/-/zrender-3.3.0.tgz#efb5280b248aa48e3bba8d8f8e5469033a355d26" diff --git a/test/support/capybara.rb b/test/support/capybara.rb index 87adfdaf9..681dac5de 100644 --- a/test/support/capybara.rb +++ b/test/support/capybara.rb @@ -42,7 +42,6 @@ def write(msg) ], :extensions => [ File.join(API_UMBRELLA_SRC_ROOT, "test/support/capybara/disable_animations.js"), - File.join(API_UMBRELLA_SRC_ROOT, "test/support/capybara/disable_google_charts.js"), File.join(API_UMBRELLA_SRC_ROOT, "test/support/capybara/disable_fixed_header.js"), ], }) diff --git a/test/support/capybara/disable_google_charts.js b/test/support/capybara/disable_google_charts.js deleted file mode 100644 index 039081a58..000000000 --- a/test/support/capybara/disable_google_charts.js +++ /dev/null @@ -1,20 +0,0 @@ -// Disable Google Charts loading when running tests. -// -// While this isn't ideal, we continue to get weird and sporadic Google Charts -// loading failures like this from Capybara: -// -// ReferenceError: Can't find variable: gvjs_Wa -// at https://www.gstatic.com/charts/45/js/jsapi_compiled_default_module.js:8 in global code -// -// We should try to resolve this at some point, although moving to an offline -// charting library might be a better option regardless -// (https://github.com/NREL/api-umbrella/issues/124#issuecomment-84169398). -window.DISABLE_GOOGLE_CHARTS = true; -window.google = { - charts: { - // Mock the Google Charts ready function, but never actually trigger the - // callback (since we haven't loaded Google Charts). - setOnLoadCallback: function() { - }, - }, -}; From 8f93ec74bdb76eaa381fe2e16d98b236b27686ea Mon Sep 17 00:00:00 2001 From: Nick Muerdter Date: Sun, 29 Jan 2017 22:36:50 -0700 Subject: [PATCH 2/2] Fix test failures due to new charts. Something about setting styles on the element the Capybara environment didn't like (said it was a readonly attribute). Not sure why this wasn't happening in a real browser, but in any case, using CSS is better. --- .../app/components/stats/drilldown/results-chart.js | 3 ++- .../app/components/stats/logs/results-chart.js | 3 ++- .../app/components/stats/map/results-map.js | 2 +- src/api-umbrella/admin-ui/app/styles/_stats.scss | 13 +++++++++++++ 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/src/api-umbrella/admin-ui/app/components/stats/drilldown/results-chart.js b/src/api-umbrella/admin-ui/app/components/stats/drilldown/results-chart.js index 2c694da25..c2a8349fd 100644 --- a/src/api-umbrella/admin-ui/app/components/stats/drilldown/results-chart.js +++ b/src/api-umbrella/admin-ui/app/components/stats/drilldown/results-chart.js @@ -2,12 +2,13 @@ import Ember from 'ember'; import echarts from 'npm:echarts'; export default Ember.Component.extend({ + classNames: ['stats-drilldown-results-chart'], + didInsertElement() { this.renderChart(); }, renderChart() { - this.$()[0].style = "width: 100%; height: 220px; margin-top: 15px" this.chart = echarts.init(this.$()[0], 'api-umbrella-theme'); this.draw(); diff --git a/src/api-umbrella/admin-ui/app/components/stats/logs/results-chart.js b/src/api-umbrella/admin-ui/app/components/stats/logs/results-chart.js index 1143c012b..414f40a14 100644 --- a/src/api-umbrella/admin-ui/app/components/stats/logs/results-chart.js +++ b/src/api-umbrella/admin-ui/app/components/stats/logs/results-chart.js @@ -2,12 +2,13 @@ import Ember from 'ember'; import echarts from 'npm:echarts'; export default Ember.Component.extend({ + classNames: ['stats-logs-results-chart'], + didInsertElement() { this.renderChart(); }, renderChart() { - this.$()[0].style = "width: 100%; height: 220px; margin-top: 15px" this.chart = echarts.init(this.$()[0], 'api-umbrella-theme'); this.draw(); diff --git a/src/api-umbrella/admin-ui/app/components/stats/map/results-map.js b/src/api-umbrella/admin-ui/app/components/stats/map/results-map.js index bf27450d9..528c7eee1 100644 --- a/src/api-umbrella/admin-ui/app/components/stats/map/results-map.js +++ b/src/api-umbrella/admin-ui/app/components/stats/map/results-map.js @@ -2,6 +2,7 @@ import Ember from 'ember'; import echarts from 'npm:echarts'; export default Ember.Component.extend({ + classNames: ['stats-map-results-map'], routing: Ember.inject.service('-routing'), didInsertElement() { @@ -9,7 +10,6 @@ export default Ember.Component.extend({ }, renderChart() { - this.$()[0].style = "width: 100%; height: 400px; margin-top: 15px" this.chart = echarts.init(this.$()[0], 'api-umbrella-theme'); this.chart.showLoading(); this.chart.on('mapselectchanged', this.handleRegionClick.bind(this)); diff --git a/src/api-umbrella/admin-ui/app/styles/_stats.scss b/src/api-umbrella/admin-ui/app/styles/_stats.scss index c34399c0f..e3eb7dd0d 100644 --- a/src/api-umbrella/admin-ui/app/styles/_stats.scss +++ b/src/api-umbrella/admin-ui/app/styles/_stats.scss @@ -1,3 +1,16 @@ +.stats-drilldown-results-chart, +.stats-logs-results-chart { + width: 100%; + height: 220px; + margin-top: 15px; +} + +.stats-map-results-map { + width: 100%; + height: 400px; + margin-top: 15px; +} + .toggle-facet-table { font-size: 11px; }