diff --git a/coastlines/continental.py b/coastlines/continental.py index f6a9757..873f5c6 100644 --- a/coastlines/continental.py +++ b/coastlines/continental.py @@ -136,6 +136,8 @@ def continental_cli( baseline_year, include_styles, ): + + print(hotspots) ################# # Merge vectors # diff --git a/coastlines/vector.py b/coastlines/vector.py index 2fee707..786314e 100644 --- a/coastlines/vector.py +++ b/coastlines/vector.py @@ -483,7 +483,7 @@ def contours_preprocess( gapfill_ds, water_index, index_threshold, - buffer_pixels=33, + buffer_pixels=50, mask_temporal=True, mask_modifications=None, debug=False, @@ -577,27 +577,34 @@ def contours_preprocess( temporal_mask = temporal_masking(thresholded_ds == 1) thresholded_ds = thresholded_ds.where(temporal_mask) - # Create all time layer by identifying pixels that are land in at - # least 15% of valid observations; this is used to generate an - # all-of-time buffered coastal study area that constrains the Coastlines - # analysis to the coastal zone - all_time = thresholded_ds.mean(dim="year") > 0.5 # 0.15 - - # Remove narrow river and stream features from all time layer using - # the `black_tophat` transform. So narrow channels between islands - # and the mainland aren't mistaken for rivers, first apply `sieve` - # to any connected land pixels (i.e. islands) smaller than 5 km^2 + # Create all time layers by identifying pixels that are land in at + # least 15% and 50% of valid observations; the 15% layer is used to + # identify pixels that contain land for even a small period of time; + # this is used for producing an all-time buffered "coastal" study area. + # The 50% layer is used to more conservatively identify pixels that + # are land for a majority of years; this is used for extracting + # rivers. + all_time_15 = thresholded_ds.mean(dim="year") > 0.15 + all_time_50 = thresholded_ds.mean(dim="year") > 0.5 + + # Identify narrow river and stream features using the `black_tophat` + # transform. To avoid narrow channels between islands and the + # mainland being mistaken for rivers, first apply `sieve` to any + # connected land pixels (i.e. islands) smaller than 5 km^2. + # Use a disk of size 8 to identify any rivers/streams smaller than + # approximately 240 m (e.g. 8 * 30 m = 240 m). island_size = int(5000000 / (30 * 30)) # 5 km^2 - sieved = xr.apply_ufunc(sieve, all_time.astype(np.int16), island_size) - rivers = xr.apply_ufunc(black_tophat, (sieved & all_time), disk(5)) == 1 - all_time_clean = all_time.where(~rivers, True) + sieved = xr.apply_ufunc(sieve, all_time_50.astype(np.int16), island_size) + rivers = xr.apply_ufunc(black_tophat, (sieved & all_time_50), disk(8)) == 1 # Create a river mask by eroding the all time layer to clip out river - # and estuary mouths, then expanding river features to include stream - # banks and account for migrating rivers - all_time_eroded = xr.apply_ufunc(binary_erosion, all_time_clean, disk(10)) - rivers = rivers.where(all_time_eroded, False) - river_mask = ~xr.apply_ufunc(binary_dilation, rivers, disk(5)) + # mouths, then expanding river features to include stream banks and + # account for migrating rivers + river_mouth_mask = xr.apply_ufunc( + binary_erosion, all_time_50.where(~rivers, True), disk(12) + ) + rivers = rivers.where(river_mouth_mask, False) + river_mask = ~xr.apply_ufunc(binary_dilation, rivers, disk(4)) # Load Geodata 100K coastal layer to use to separate ocean waters from # other inland waters. This product has values of 0 for ocean waters, @@ -613,24 +620,46 @@ def contours_preprocess( ocean_da = xr.apply_ufunc(binary_erosion, geodata_da == 0, disk(10)) # Use all time and Geodata 100K data to produce the buffered coastal - # study area. Morphological closing helps to "close" the entrances of - # estuaries and rivers, removing them from the analysis. + # study area. The output has values of 0 representing non-coastal + # "ocean", values of 1 representing "coastal", and values of 2 + # representing non-coastal "inland" pixels. coastal_mask = coastal_masking( - ds=all_time_clean, ocean_da=ocean_da, buffer=buffer_pixels + ds=all_time_15.where(~rivers, True), ocean_da=ocean_da, buffer=buffer_pixels ) - # The output of `coastal_masking` contains values of 2 that represent - # pixels inland of the coastal buffer. Use this to create - # a mask of inland regions: - inland_mask = coastal_mask != 2 + # Add rivers as "inland" pixels in the coastal mask + coastal_mask = xr.where(river_mask, coastal_mask, 2) + + # Optionally modify the coastal mask using manually supplied + # polygons to add missing areas of shoreline, or remove unwanted + # areas from the mask. + if mask_modifications is not None: + + # Only proceed if there are polygons available + if len(mask_modifications.index) > 0: + + # Convert type column to integer, with 1 representing pixels + # to add to the coastal mask (by setting them as "coastal" + # pixels, and 2 representing pixels to remove from the mask + # (by setting them as "inland data") + mask_modifications = mask_modifications.replace({"add": 1, "remove": 2}) + + # Rasterise polygons into extent of satellite data + modifications_da = xr_rasterize( + mask_modifications, da=yearly_ds, attribute_col="type" + ) + + # Where `modifications_da` has a value other than 0, + # replace values from `coastal_mask` with `modifications_da` + coastal_mask = coastal_mask.where(modifications_da == 0, modifications_da) # Generate individual annual masks by selecting only water pixels that # are directly connected to the ocean in each yearly timestep annual_mask = ( # Treat both 1s and NaN pixels as land (i.e. True) (thresholded_ds != 0) - # Mask out rivers and inland regions - .where(river_mask & inland_mask) + # Mask out inland regions (i.e. values of 2 in `coastal_mask`) + .where(coastal_mask != 2) # Keep pixels directly connected to ocean in each timestep .groupby("year").map( func=ocean_masking, @@ -641,9 +670,9 @@ def contours_preprocess( ) # Finally, apply temporal and annual masks to our surface water - # index data, then clip to the all-of-time coastal study area + # index data, then clip to "coastal" pixels in `coastal_mask` masked_ds = combined_ds[water_index].where( - temporal_mask & annual_mask & coastal_mask + temporal_mask & annual_mask & (coastal_mask == 1) ) # Generate annual vector polygon masks containing information @@ -655,14 +684,14 @@ def contours_preprocess( return ( masked_ds, certainty_masks, - all_time, - all_time_clean, + all_time_15, + all_time_50, river_mask, ocean_da, - coastal_mask, - inland_mask, thresholded_ds, + temporal_mask, annual_mask, + coastal_mask, ) else: @@ -1391,10 +1420,10 @@ def generate_vectors( gridcell_gdf.index = gridcell_gdf.index.astype(int).astype(str) gridcell_gdf = gridcell_gdf.loc[[str(study_area)]] - # # Coastal mask modifications - # modifications_gdf = gpd.read_file( - # config["Input files"]["modifications_path"], bbox=bbox - # ).to_crs(str(yearly_ds.odc.crs)) + # Coastal mask modifications + modifications_gdf = gpd.read_file( + config["Input files"]["modifications_path"], bbox=bbox + ).to_crs(str(yearly_ds.odc.crs)) # Geomorphology dataset geomorphology_gdf = gpd.read_file( @@ -1417,7 +1446,7 @@ def generate_vectors( water_index, index_threshold, buffer_pixels=33, - mask_modifications=None, + mask_modifications=modifications_gdf, ) # Extract annual shorelines diff --git a/configs/dea_coastlines_config.yaml b/configs/dea_coastlines_config.yaml index 73feb8c..972272b 100644 --- a/configs/dea_coastlines_config.yaml +++ b/configs/dea_coastlines_config.yaml @@ -3,6 +3,6 @@ Virtual product: virtual_product_name: ls_nbart_ndwi Input files: grid_path: https://dea-public-data.s3.ap-southeast-2.amazonaws.com/derivative/dea_coastlines/supplementary/albers_grids/ga_summary_grid_c3_48km_coastal_clipped.geojson - modifications_path: https://dea-public-data.s3.ap-southeast-2.amazonaws.com/derivative/dea_coastlines/supplementary/estuary_mask_modifications.geojson + modifications_path: https://dea-public-data.s3.ap-southeast-2.amazonaws.com/derivative/dea_coastlines/supplementary/modifications_deacoastlines.geojson geomorphology_path: https://dea-public-data.s3.ap-southeast-2.amazonaws.com/derivative/dea_coastlines/supplementary/Smartline.gpkg region_attributes_path: https://dea-public-data.s3.ap-southeast-2.amazonaws.com/derivative/dea_coastlines/supplementary/Primary_compartments.geojson diff --git a/configs/dea_coastlines_config_development.yaml b/configs/dea_coastlines_config_development.yaml index 84a83a7..ec4ae21 100644 --- a/configs/dea_coastlines_config_development.yaml +++ b/configs/dea_coastlines_config_development.yaml @@ -3,6 +3,6 @@ Virtual product: virtual_product_name: ls_nbart_ndwi Input files: grid_path: data/raw/coastlines_development.geojson - modifications_path: https://dea-public-data.s3.ap-southeast-2.amazonaws.com/derivative/dea_coastlines/supplementary/estuary_mask_modifications.geojson + modifications_path: data/raw/modifications_deacoastlines.geojson geomorphology_path: https://dea-public-data.s3.ap-southeast-2.amazonaws.com/derivative/dea_coastlines/supplementary/Smartline.gpkg region_attributes_path: https://dea-public-data.s3.ap-southeast-2.amazonaws.com/derivative/dea_coastlines/supplementary/Primary_compartments.geojson \ No newline at end of file diff --git a/configs/dea_coastlines_config_tests.yaml b/configs/dea_coastlines_config_tests.yaml index e9f354f..f7c8820 100644 --- a/configs/dea_coastlines_config_tests.yaml +++ b/configs/dea_coastlines_config_tests.yaml @@ -3,6 +3,6 @@ Virtual product: virtual_product_name: ls_nbart_ndwi Input files: grid_path: https://dea-public-data.s3.ap-southeast-2.amazonaws.com/derivative/dea_coastlines/supplementary/albers_grids/ga_summary_grid_tests.geojson - modifications_path: https://dea-public-data.s3.ap-southeast-2.amazonaws.com/derivative/dea_coastlines/supplementary/estuary_mask_modifications.geojson + modifications_path: https://dea-public-data.s3.ap-southeast-2.amazonaws.com/derivative/dea_coastlines/supplementary/modifications_deacoastlines.geojson geomorphology_path: https://dea-public-data.s3.ap-southeast-2.amazonaws.com/derivative/dea_coastlines/supplementary/Smartline.gpkg region_attributes_path: https://dea-public-data.s3.ap-southeast-2.amazonaws.com/derivative/dea_coastlines/supplementary/Primary_compartments.geojson \ No newline at end of file diff --git a/data/raw/estuary_mask_modifications.geojson b/data/raw/estuary_mask_modifications.geojson deleted file mode 100644 index 50c8270..0000000 --- a/data/raw/estuary_mask_modifications.geojson +++ /dev/null @@ -1,501 +0,0 @@ -{ -"type": "FeatureCollection", -"name": "estuary_mask_modifications", -"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, -"features": [ -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.153196620333006, -37.77721436183073 ], [ 149.147866691759731, -37.777164993432436 ], [ 149.143369564526012, -37.777082712695368 ], [ 149.1394345781965, -37.777263730196054 ], [ 149.136311573173145, -37.777082712695368 ], [ 149.133022007881806, -37.776852326144343 ], [ 149.135457951800106, -37.775075034332211 ], [ 149.137914715751833, -37.774021804207663 ], [ 149.136956994211317, -37.771849469690451 ], [ 149.13599927267083, -37.770993684023395 ], [ 149.129045381485383, -37.770763278497668 ], [ 149.124340053916768, -37.76911750386364 ], [ 149.120883928357529, -37.769051672116369 ], [ 149.119551446214217, -37.766945025260242 ], [ 149.120717368089572, -37.765266248081559 ], [ 149.118885205142533, -37.762698632804479 ], [ 149.12313249197436, -37.758287393332111 ], [ 149.121716729697084, -37.758221551944558 ], [ 149.119051765410461, -37.759472528287532 ], [ 149.114554638176742, -37.7576948187344 ], [ 149.112056234158018, -37.75413927146932 ], [ 149.11114015268447, -37.751044489395127 ], [ 149.115220879248369, -37.745710625034057 ], [ 149.117719283267121, -37.739586084460456 ], [ 149.126546977466631, -37.738203053551345 ], [ 149.13362578885301, -37.740771518959974 ], [ 149.137789795550901, -37.743735022154702 ], [ 149.139871798899861, -37.747488622537205 ], [ 149.142536763186484, -37.751373727683436 ], [ 149.141620681712936, -37.755917066461436 ], [ 149.139955079033797, -37.757299766365541 ], [ 149.139038997560249, -37.76065764425605 ], [ 149.140704600239417, -37.765661257904952 ], [ 149.141620681712936, -37.771981128144716 ], [ 149.14245348305252, -37.77362683904277 ], [ 149.146617489750412, -37.774614247998933 ], [ 149.150531656046383, -37.774614247998933 ], [ 149.153196620333006, -37.77721436183073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.023092231057774, -37.779584006177195 ], [ 149.017574922183087, -37.780094128009701 ], [ 149.01361911582012, -37.779847295304528 ], [ 149.009704949524121, -37.779189070727845 ], [ 149.004864291737846, -37.779616917369395 ], [ 148.999513543131087, -37.779402994358179 ], [ 148.987604483975133, -37.779337171768617 ], [ 148.972947180398592, -37.779139703648305 ], [ 148.953501269119499, -37.77904096939033 ], [ 148.94704705873778, -37.779402994358179 ], [ 148.943299452709681, -37.775651013210265 ], [ 148.942966332173853, -37.770318922956314 ], [ 148.948504461082052, -37.770187261542375 ], [ 148.947796579943343, -37.765578964365744 ], [ 148.952626827712891, -37.761760443449475 ], [ 148.961454521912401, -37.759653588900427 ], [ 148.967950372361088, -37.758073408608283 ], [ 148.972447499594807, -37.748855017515872 ], [ 148.985605760760109, -37.743850267104385 ], [ 148.995099696031275, -37.747274606580632 ], [ 148.994766575495419, -37.754254500217201 ], [ 149.003094588891202, -37.756624880355119 ], [ 149.006259233981552, -37.761365412792507 ], [ 149.008091396928648, -37.76966061354225 ], [ 149.005926113445753, -37.774795271543823 ], [ 149.016419410324403, -37.775486448274428 ], [ 149.026579586667225, -37.7753877091371 ], [ 149.029161270819912, -37.776375094576117 ], [ 149.029660951623669, -37.779008057941702 ], [ 149.023092231057774, -37.779584006177195 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.511629873182358, -34.974534777266783 ], [ 138.512254474187046, -34.973579407276382 ], [ 138.512462674521942, -34.971839240445973 ], [ 138.511796433450286, -34.970030792606721 ], [ 138.512254474187046, -34.96750572317584 ], [ 138.511796433450286, -34.9649123276129 ], [ 138.51187971358425, -34.962557726334033 ], [ 138.512962355325669, -34.960783199500376 ], [ 138.515127638808593, -34.959895921673073 ], [ 138.518084083564077, -34.95999830037421 ], [ 138.518167363698012, -34.961056206129882 ], [ 138.517168002090528, -34.962011722170459 ], [ 138.515169278875561, -34.961499839962926 ], [ 138.513920076866185, -34.962523601180393 ], [ 138.513961716933153, -34.9649123276129 ], [ 138.514211557335045, -34.968256427622919 ], [ 138.514586317937869, -34.971941604224071 ], [ 138.514211557335045, -34.975114817895573 ], [ 138.512129553986085, -34.976001930911536 ], [ 138.511629873182358, -34.974534777266783 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.470114726404489, -35.163852770771264 ], [ 138.470281286672417, -35.163546400253445 ], [ 138.470198006538425, -35.161299647859423 ], [ 138.470822607543113, -35.160176248389043 ], [ 138.471946889351557, -35.158916660835665 ], [ 138.472571490356245, -35.158133664147677 ], [ 138.472030169485521, -35.156976176977544 ], [ 138.470780967476145, -35.154695198174068 ], [ 138.470739327409149, -35.153095070399694 ], [ 138.471988529418525, -35.152856750804609 ], [ 138.472946250959041, -35.155137781151389 ], [ 138.47473677383914, -35.156295294478355 ], [ 138.47444529337028, -35.158337924879824 ], [ 138.472613130423213, -35.16044858907933 ], [ 138.471905249284589, -35.1621166559108 ], [ 138.472321649954381, -35.16415914013502 ], [ 138.470281286672417, -35.165520767788593 ], [ 138.470114726404489, -35.163852770771264 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 146.555658012145813, -41.163135938828283 ], [ 146.563736185139675, -41.16000103907183 ], [ 146.566984110364018, -41.162571667938792 ], [ 146.572147478669393, -41.161317715234027 ], [ 146.588720225326966, -41.166521462134789 ], [ 146.58538901996863, -41.169969500517418 ], [ 146.583640137155527, -41.177241131996951 ], [ 146.583973257691355, -41.18206754509734 ], [ 146.581474853672631, -41.184762659983143 ], [ 146.585971980906351, -41.190528579767062 ], [ 146.583307016619699, -41.196293991795351 ], [ 146.58747102331759, -41.199301831282483 ], [ 146.58971958693445, -41.201933577448017 ], [ 146.587887423987354, -41.205693031247755 ], [ 146.585055899432803, -41.208199213792568 ], [ 146.586554941844042, -41.212334205128577 ], [ 146.586055261040286, -41.217721832006745 ], [ 146.585555580236559, -41.224111232813399 ], [ 146.580725332467011, -41.227744143111337 ], [ 146.576228205233321, -41.232253681989249 ], [ 146.578726609252044, -41.23500935817971 ], [ 146.578560048984116, -41.24089609540902 ], [ 146.575895084697464, -41.244027122602418 ], [ 146.570731716392118, -41.245029019621803 ], [ 146.567067390497954, -41.242524248270982 ], [ 146.560071859245511, -41.240019380912955 ], [ 146.561071220853023, -41.236512405321726 ], [ 146.562736823532163, -41.232128421220523 ], [ 146.563819465273639, -41.226428802347925 ], [ 146.567483791167774, -41.225301346347848 ], [ 146.570981556793981, -41.225113435124506 ], [ 146.574146201884361, -41.22104189268692 ], [ 146.568649713043158, -41.217596543398166 ], [ 146.566401149426298, -41.211394457318725 ], [ 146.565984748756534, -41.206068964748901 ], [ 146.56665098982819, -41.204251932818543 ], [ 146.563153224201983, -41.200241752775867 ], [ 146.561237781120951, -41.19729662031569 ], [ 146.562736823532163, -41.193912687508245 ], [ 146.561820742058643, -41.191844642453113 ], [ 146.568399872641294, -41.188711116374563 ], [ 146.569732354784605, -41.188084393161915 ], [ 146.56773363156961, -41.183947869506035 ], [ 146.56681755009609, -41.179309638304808 ], [ 146.56798347197153, -41.176488931688674 ], [ 146.563319784469883, -41.177429180724353 ], [ 146.560321699647403, -41.175736722742421 ], [ 146.557240334690988, -41.173918848794045 ], [ 146.557240334690988, -41.170847154042555 ], [ 146.559822018843676, -41.168464924264448 ], [ 146.560071859245511, -41.167148391700707 ], [ 146.555658012145813, -41.163135938828283 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.557808176353745, -12.098508315990056 ], [ 132.558765897894261, -12.09903761289311 ], [ 132.560847901243221, -12.099444763643749 ], [ 132.561472502247881, -12.100890143799244 ], [ 132.560535600740849, -12.102844448198228 ], [ 132.561514142314877, -12.103333022064637 ], [ 132.562180383386533, -12.104615524213223 ], [ 132.564324846835945, -12.104798738303304 ], [ 132.565886349347636, -12.105348379819638 ], [ 132.565990449515084, -12.106854798918963 ], [ 132.565823889247156, -12.108686918806008 ], [ 132.566094549682504, -12.110335815958173 ], [ 132.5671147313235, -12.111251865532076 ], [ 132.567510311959808, -12.112554686179287 ], [ 132.566864890921636, -12.113755718331467 ], [ 132.5653242084434, -12.113022885796489 ], [ 132.56574060911322, -12.112269694705951 ], [ 132.5649910879076, -12.111027942593116 ], [ 132.564595507271292, -12.109664044273352 ], [ 132.564595507271292, -12.108300138987536 ], [ 132.564824527639672, -12.106590158340962 ], [ 132.56342958539588, -12.105898020205096 ], [ 132.562138743319565, -12.106020162359389 ], [ 132.561139381712024, -12.105999805337543 ], [ 132.560743801075745, -12.104880166747456 ], [ 132.559494599066397, -12.104595167084346 ], [ 132.558911638128677, -12.103109092486765 ], [ 132.557683256152814, -12.102742661863621 ], [ 132.557350135616986, -12.101561937548528 ], [ 132.558245397057021, -12.100462637806801 ], [ 132.55685045481323, -12.099587266259938 ], [ 132.557808176353745, -12.098508315990056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.064498302855952, -12.304345633656951 ], [ 132.066372105870016, -12.305362720944069 ], [ 132.069245270491535, -12.309024202565984 ], [ 132.071577114242359, -12.310244685095048 ], [ 132.07515816000253, -12.308942836862345 ], [ 132.079155606432494, -12.306095021352185 ], [ 132.079322166700393, -12.307437566797429 ], [ 132.07815624482501, -12.308820788259602 ], [ 132.075408000404394, -12.311790621487422 ], [ 132.071702034443291, -12.313011091156181 ], [ 132.068662309553844, -12.312766997676386 ], [ 132.066830146606776, -12.311831303901133 ], [ 132.065747504865328, -12.310366733035943 ], [ 132.062874340243781, -12.309797175493106 ], [ 132.062957620377745, -12.308780105379418 ], [ 132.065039623726676, -12.308454642111032 ], [ 132.063956981985228, -12.305810238102742 ], [ 132.064498302855952, -12.304345633656951 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.993217271163473, -13.537415300762186 ], [ 129.993279731263954, -13.53784037390043 ], [ 129.993081940945785, -13.538548827443456 ], [ 129.992249139606201, -13.539692469426349 ], [ 129.990552306876822, -13.539894883364024 ], [ 129.990458616726102, -13.539500176026035 ], [ 129.990718867144722, -13.539378727482617 ], [ 129.991572488517789, -13.538963777824856 ], [ 129.992363649790377, -13.537992185551495 ], [ 129.992332419740166, -13.537283730351222 ], [ 129.993217271163473, -13.537415300762186 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.583843362678124, -14.097761657887892 ], [ 129.584592883883744, -14.098327060234453 ], [ 129.582302680199916, -14.103092538613513 ], [ 129.578804914573681, -14.102809843521676 ], [ 129.581261678525436, -14.097398184210874 ], [ 129.583843362678124, -14.097761657887892 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.627565433005856, -14.570669352702124 ], [ 129.626940832001196, -14.571394766674576 ], [ 129.609805944439387, -14.567344508117049 ], [ 129.609535284004039, -14.565268973653257 ], [ 129.612866489362347, -14.564865954987456 ], [ 129.620111861016653, -14.559304222189473 ], [ 129.627273952536996, -14.552291402717303 ], [ 129.63860005075523, -14.544875305241574 ], [ 129.645012621069952, -14.547132404757102 ], [ 129.640265653434398, -14.553379613450362 ], [ 129.630688438029267, -14.561722384116722 ], [ 129.628481514479404, -14.566719834751119 ], [ 129.629813996622715, -14.568654301363923 ], [ 129.627565433005856, -14.570669352702124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.752922854645561, -14.595311939594851 ], [ 129.755962579535009, -14.595070161461843 ], [ 129.763790912127035, -14.594183639368012 ], [ 129.770828083446418, -14.594506011451729 ], [ 129.771910725187894, -14.600187741902886 ], [ 129.764498793265659, -14.600751877343402 ], [ 129.757419981879252, -14.601880143883637 ], [ 129.746010603527054, -14.603129289373086 ], [ 129.747468005871326, -14.600389219012023 ], [ 129.751090691698494, -14.596279049470095 ], [ 129.752922854645561, -14.595311939594851 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.304989978583848, -14.232106152375744 ], [ 126.30496915855035, -14.233438095739924 ], [ 126.304552757880543, -14.235153465774077 ], [ 126.305239818985712, -14.238846512332065 ], [ 126.305656219655503, -14.24183319433123 ], [ 126.304781778248937, -14.245647210512065 ], [ 126.302637314799554, -14.245324333332551 ], [ 126.303116175569812, -14.243003640013473 ], [ 126.303261915804214, -14.241792834027036 ], [ 126.302470754531612, -14.239028136014351 ], [ 126.301221552522264, -14.237817308706175 ], [ 126.300305471048716, -14.235718525991464 ], [ 126.29986825034544, -14.234023341098087 ], [ 126.304989978583848, -14.232106152375744 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.908451620744742, -14.659696045272968 ], [ 125.912761367677092, -14.661387988447865 ], [ 125.915009931293937, -14.668276479267142 ], [ 125.91140806550024, -14.667470819018606 ], [ 125.909992303222964, -14.666141473125981 ], [ 125.90870146114662, -14.663120202442025 ], [ 125.906952578333502, -14.662233955133591 ], [ 125.903121692171482, -14.662193671079798 ], [ 125.89987376694711, -14.66094486173686 ], [ 125.896001240718093, -14.65893063811434 ], [ 125.893752677101219, -14.660340596595102 ], [ 125.892211994623011, -14.662475659300698 ], [ 125.892211994623011, -14.660864293147613 ], [ 125.892836595627685, -14.658165228281055 ], [ 125.894710398641749, -14.656916395969297 ], [ 125.90024852754992, -14.657883234510379 ], [ 125.908451620744742, -14.659696045272968 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.335109538513819, -15.162868582421128 ], [ 125.335921519819905, -15.162366201595136 ], [ 125.337337282097181, -15.162768106351427 ], [ 125.340189626685245, -15.165983316896657 ], [ 125.341209808326198, -15.169761126795732 ], [ 125.339856506149403, -15.173418303958462 ], [ 125.338440743872127, -15.173257550248415 ], [ 125.337836962900923, -15.169198478537322 ], [ 125.337170721829267, -15.167148818642669 ], [ 125.333485575901648, -15.16455657325236 ], [ 125.335109538513819, -15.162868582421128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.073641147937195, -15.068701605468043 ], [ 125.073537047769747, -15.067193790206634 ], [ 125.073599507870227, -15.065605546579294 ], [ 125.07718055363037, -15.066449930742747 ], [ 125.077347113898313, -15.067394832858705 ], [ 125.076972353295503, -15.069385144867322 ], [ 125.073641147937195, -15.068701605468043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.678750954231347, -17.058970716707762 ], [ 123.690660013387287, -17.060164954170393 ], [ 123.689410811377925, -17.062692731602741 ], [ 123.689743931913753, -17.067290412251122 ], [ 123.692637916568827, -17.072903011709414 ], [ 123.695677641458289, -17.077639755043347 ], [ 123.698925566682618, -17.082495787187117 ], [ 123.68697486745971, -17.083291845965071 ], [ 123.682102979623195, -17.072664181129262 ], [ 123.67947965540354, -17.064543759509135 ], [ 123.678688494130924, -17.061359183994234 ], [ 123.678750954231347, -17.058970716707762 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.792112389539511, -18.504167332381293 ], [ 121.795526875031754, -18.493426450077511 ], [ 121.799940722131524, -18.495716841781366 ], [ 121.801023363872972, -18.48458051186827 ], [ 121.806353292446261, -18.479209540899337 ], [ 121.814264905172223, -18.47984142857112 ], [ 121.822259798032135, -18.490346219847385 ], [ 121.821177156290702, -18.500692414768892 ], [ 121.811100260081844, -18.511669754854136 ], [ 121.806686412982074, -18.516486926416285 ], [ 121.800190562533373, -18.519961523340047 ], [ 121.802106005614405, -18.523357083957034 ], [ 121.803771608293559, -18.529437337987197 ], [ 121.79735903797885, -18.538517834170531 ], [ 121.791446148467827, -18.544123812626488 ], [ 121.782202053598567, -18.544439636924267 ], [ 121.783284695340001, -18.53441193043648 ], [ 121.790446786860358, -18.527068433556487 ], [ 121.787865102707656, -18.520435326543002 ], [ 121.788031662975584, -18.513880932410206 ], [ 121.791196308065992, -18.505983738518029 ], [ 121.792112389539511, -18.504167332381293 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.738127335113973, -35.030771063382254 ], [ 116.736763622920421, -35.031964439665032 ], [ 116.734535879337045, -35.032441785299199 ], [ 116.732120755452272, -35.031214319464198 ], [ 116.73234977582068, -35.029390134793879 ], [ 116.733390777495146, -35.026457715235928 ], [ 116.731850095016938, -35.02182018587208 ], [ 116.728393969457699, -35.013021797012371 ], [ 116.745924437655773, -35.005689083192991 ], [ 116.74388407437381, -35.010191106320498 ], [ 116.74176043095791, -35.013601564945922 ], [ 116.737232073673923, -35.018529426441766 ], [ 116.737377813908367, -35.023337641715528 ], [ 116.737148793539987, -35.028026231806145 ], [ 116.738127335113973, -35.030771063382254 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.138181162679786, -33.853845505105916 ], [ 121.132476473503701, -33.85239311325256 ], [ 121.13435027651775, -33.850421970522312 ], [ 121.132767953972561, -33.84744787961867 ], [ 121.131893512566009, -33.842882794491189 ], [ 121.135516198393162, -33.83925130260517 ], [ 121.140013325626867, -33.837106920646171 ], [ 121.140554646497577, -33.825657777594159 ], [ 121.144801933329418, -33.817355325221726 ], [ 121.148549539357532, -33.816870990619705 ], [ 121.151797464581875, -33.80794490485259 ], [ 121.157627073958892, -33.806837728519 ], [ 121.165372126416969, -33.808636882785784 ], [ 121.171035175526043, -33.805730537858864 ], [ 121.177031345171002, -33.805315337667793 ], [ 121.183360635351804, -33.801440038736359 ], [ 121.190356166604218, -33.799779142616252 ], [ 121.197684818392489, -33.800055960874602 ], [ 121.193354251426683, -33.80794490485259 ], [ 121.188690563925078, -33.817493706032828 ], [ 121.186025599638427, -33.825519409993113 ], [ 121.179862869725568, -33.835619656399196 ], [ 121.171201735793986, -33.84115353188745 ], [ 121.158709715700326, -33.838801678587984 ], [ 121.15787691436077, -33.83395942388065 ], [ 121.153046666591237, -33.839216716226296 ], [ 121.142719929980487, -33.845857044308751 ], [ 121.143177970717232, -33.849211597183761 ], [ 121.141762208439957, -33.8527735039821 ], [ 121.138181162679786, -33.853845505105916 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.333418973009941, -35.167035551764798 ], [ 137.332544531603389, -35.165673949473089 ], [ 137.332461251469454, -35.164142119645156 ], [ 137.334501614751389, -35.163120883730855 ], [ 137.338124300578556, -35.162031551288436 ], [ 137.340955825133108, -35.161180500166353 ], [ 137.341288945668936, -35.159886885406614 ], [ 137.344453590759343, -35.161010288873371 ], [ 137.345036551697035, -35.161589005816268 ], [ 137.344453590759343, -35.162406010961128 ], [ 137.340331224128448, -35.164448487918953 ], [ 137.335542616425897, -35.166422833554705 ], [ 137.333418973009941, -35.167035551764798 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.035096272777906, -14.487029269465394 ], [ 144.034076091136939, -14.486847846978177 ], [ 144.032535408658703, -14.486747056643365 ], [ 144.028038281424983, -14.482775880995552 ], [ 144.028579602295736, -14.481163200535164 ], [ 144.032681148893118, -14.478925586979166 ], [ 144.033118369596423, -14.481425261907738 ], [ 144.035595953581662, -14.482856514710816 ], [ 144.035096272777906, -14.487029269465394 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.339360242191987, -14.308175762946213 ], [ 144.34046370396689, -14.306581995021538 ], [ 144.342358327014438, -14.306299553956812 ], [ 144.344336230195921, -14.307207398972748 ], [ 144.344273770095469, -14.307691581481238 ], [ 144.347417595152365, -14.308175762946213 ], [ 144.347584155420293, -14.309688823298043 ], [ 144.346709714013741, -14.310596654617061 ], [ 144.346688893980257, -14.311565003979604 ], [ 144.347230214850953, -14.313723601072841 ], [ 144.346355773444401, -14.316144432941359 ], [ 144.343753269258229, -14.31606373896625 ], [ 144.343336868588466, -14.313158736548139 ], [ 144.344877551066674, -14.313521863905702 ], [ 144.345023291301089, -14.312129872512987 ], [ 144.344211309994989, -14.310132652401318 ], [ 144.34283718778471, -14.309688823298043 ], [ 144.342004386445126, -14.308680117529203 ], [ 144.340942564737162, -14.308599420872021 ], [ 144.339360242191987, -14.308175762946213 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 148.812107216685547, -20.338277658396994 ], [ 148.811732456082751, -20.338199570181065 ], [ 148.811316055412959, -20.338824274803908 ], [ 148.810774734542235, -20.340268894573992 ], [ 148.809941933202651, -20.342455320434198 ], [ 148.808567810992372, -20.342299148184281 ], [ 148.808859291461232, -20.341284024712994 ], [ 148.808817651394236, -20.340346981744474 ], [ 148.809358972264931, -20.33964419578982 ], [ 148.809775372934752, -20.338472878764225 ], [ 148.810025213336615, -20.337262508512943 ], [ 148.811357695479927, -20.336286396568251 ], [ 148.812606897489303, -20.33718441978419 ], [ 148.812107216685547, -20.338277658396994 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 150.804584421620802, -35.092139135352411 ], [ 150.805729523462816, -35.09469442734148 ], [ 150.773958152358006, -35.112204540085756 ], [ 150.76954430525825, -35.114657018163257 ], [ 150.766462940301835, -35.118267476555452 ], [ 150.767129181373491, -35.12112848089324 ], [ 150.765192918258947, -35.124295904204921 ], [ 150.763777155981643, -35.124806767397594 ], [ 150.760695791025199, -35.126782074927689 ], [ 150.756906544930132, -35.125453856175156 ], [ 150.754241580643509, -35.12627122412475 ], [ 150.751368416021961, -35.130051444187664 ], [ 150.749577893141861, -35.133627166527731 ], [ 150.748078850730622, -35.136691946412462 ], [ 150.742957122492214, -35.137543253683951 ], [ 150.73671111244542, -35.138258344912487 ], [ 150.732005784876833, -35.13764540995831 ], [ 150.72696733677239, -35.136964365707868 ], [ 150.723927611882942, -35.136555736422928 ], [ 150.72188724860095, -35.136385473615519 ], [ 150.718056362438915, -35.135023358337691 ], [ 150.71422547627688, -35.131481751966135 ], [ 150.711727072258128, -35.127667542062099 ], [ 150.710228029846917, -35.126407451318819 ], [ 150.707167484923957, -35.12327416820694 ], [ 150.705085481575026, -35.124738652490372 ], [ 150.702711997757234, -35.124364019482407 ], [ 150.699755553001722, -35.123001703109566 ], [ 150.696882388380203, -35.120106705164233 ], [ 150.693801023423788, -35.112681416604033 ], [ 150.692676741615344, -35.10770813856837 ], [ 150.691989680510176, -35.103858749271197 ], [ 150.692447721246964, -35.102257622314198 ], [ 150.692406081179968, -35.100792733932643 ], [ 150.692614281514864, -35.098919001123328 ], [ 150.691948040443208, -35.094796637355486 ], [ 150.691698200041316, -35.0931953324164 ], [ 150.692739201715796, -35.091832494932781 ], [ 150.691406719572484, -35.090367419235385 ], [ 150.690782118567796, -35.087948283150162 ], [ 150.691115239103624, -35.08617647598858 ], [ 150.692197880845072, -35.085222410036266 ], [ 150.690823758634764, -35.084540927523754 ], [ 150.689866037094276, -35.082871271306004 ], [ 150.69086539870176, -35.081644563327956 ], [ 150.691614919907352, -35.079429627202622 ], [ 150.692447721246964, -35.076192304696264 ], [ 150.693696923256311, -35.073193407144522 ], [ 150.68936635629052, -35.073397880933193 ], [ 150.686618111869933, -35.072477744849472 ], [ 150.683744947248385, -35.070944161654744 ], [ 150.679872421019354, -35.069819515662829 ], [ 150.677707137536459, -35.069989917566886 ], [ 150.676041534857291, -35.069887676467133 ], [ 150.674459212312115, -35.067842827575745 ], [ 150.673376570570667, -35.062730481215212 ], [ 150.673834611307427, -35.059628835050852 ], [ 150.674875612981907, -35.056833844171884 ], [ 150.676208095125219, -35.052232126383032 ], [ 150.677415657067598, -35.050084569340719 ], [ 150.676124814991255, -35.04930052650807 ], [ 150.675125453383771, -35.048414208156082 ], [ 150.675229553551219, -35.045618833432634 ], [ 150.675937434689843, -35.043437011083149 ], [ 150.673480670738115, -35.041357407418097 ], [ 150.671252927154683, -35.038391323718848 ], [ 150.671502767556547, -35.037146900219078 ], [ 150.671669327824446, -35.035339895371102 ], [ 150.672939349867306, -35.03237359323645 ], [ 150.674001171575298, -35.030191417186415 ], [ 150.675292013651642, -35.027276075462353 ], [ 150.679851600985813, -35.022502191982916 ], [ 150.689595376658872, -35.014113121474253 ], [ 150.70117131527897, -35.008247081274391 ], [ 150.710915090952, -35.005996047186052 ], [ 150.715162377783827, -35.007292104680673 ], [ 150.717577501668615, -35.005723190360236 ], [ 150.720409026223166, -35.006541758107524 ], [ 150.723323830911681, -35.005109259174731 ], [ 150.723698591514534, -35.000879830265987 ], [ 150.724448112720154, -34.997673504601003 ], [ 150.726946516738877, -34.995353956657119 ], [ 150.729278360489701, -34.994876394507635 ], [ 150.733692207589428, -34.992897893059215 ], [ 150.742270061387046, -34.990919343783823 ], [ 150.747766550228249, -34.991192249975562 ], [ 150.749931833711173, -34.990237074323744 ], [ 150.755928003356104, -34.990100619749299 ], [ 150.76419355665135, -34.993034342970432 ], [ 150.768940524286933, -34.996650182729987 ], [ 150.77227172964524, -34.999242573283141 ], [ 150.774145532659276, -35.000913939438107 ], [ 150.776227536008236, -35.000129424882019 ], [ 150.780100062237267, -35.004461215703024 ], [ 150.780766303308923, -35.009236152422169 ], [ 150.775436374735648, -35.01346514933131 ], [ 150.771772048841513, -35.01660265090014 ], [ 150.77210516937734, -35.019330815289678 ], [ 150.775936055539404, -35.021513281266181 ], [ 150.777435097950615, -35.025059664229929 ], [ 150.786262792150126, -35.027378369914615 ], [ 150.791093039919645, -35.037743543988043 ], [ 150.785429990810542, -35.044971111004507 ], [ 150.778434459558156, -35.057515558086308 ], [ 150.776269176075203, -35.065286694418283 ], [ 150.775769495271504, -35.075510746748684 ], [ 150.778267899290199, -35.07442024219138 ], [ 150.781432544380607, -35.071284960410743 ], [ 150.789094316704677, -35.071421279514652 ], [ 150.79442424527798, -35.073466038748897 ], [ 150.798088571172116, -35.077419094655752 ], [ 150.802252577870007, -35.080963050925057 ], [ 150.802252577870007, -35.089140823990974 ], [ 150.804584421620802, -35.092139135352411 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 150.194745277118159, -35.71803376747156 ], [ 150.194038574052769, -35.717793605908334 ], [ 150.193663262442129, -35.717780477940479 ], [ 150.193299372364123, -35.717766015828374 ], [ 150.192845707081631, -35.717705092171599 ], [ 150.192545433493592, -35.717654732407382 ], [ 150.192122799346805, -35.717637634649257 ], [ 150.19091523963138, -35.717531841687141 ], [ 150.189689358331748, -35.716792350075721 ], [ 150.188417462926822, -35.71546035729186 ], [ 150.18597852781599, -35.71339148012914 ], [ 150.183840328142935, -35.711762784638779 ], [ 150.180941870354332, -35.71019663011959 ], [ 150.178544034711337, -35.708646966944556 ], [ 150.17602386051513, -35.703838845867729 ], [ 150.177075972072771, -35.703083827310948 ], [ 150.180232306745722, -35.70175258742303 ], [ 150.182434400703556, -35.703163301490868 ], [ 150.185245680403455, -35.703495756365363 ], [ 150.187952284757074, -35.70344503575442 ], [ 150.189742807637174, -35.704070587700734 ], [ 150.190971189613066, -35.704121307913702 ], [ 150.192345311823345, -35.704814480923474 ], [ 150.194427315172305, -35.703106897523561 ], [ 150.197727290480344, -35.701247111619011 ], [ 150.200371434733484, -35.700925871478098 ], [ 150.202453438082443, -35.700401740048612 ], [ 150.204181500862063, -35.700570815079736 ], [ 150.206638264813819, -35.701162574865315 ], [ 150.207023435433399, -35.701449999462184 ], [ 150.210895961662402, -35.702278452797017 ], [ 150.210208900557262, -35.703461942628309 ], [ 150.21002152025585, -35.70567671210965 ], [ 150.209584299552574, -35.70875361796714 ], [ 150.209459379351642, -35.710393458835007 ], [ 150.20950101941861, -35.711035861524266 ], [ 150.210625301227054, -35.710748471487534 ], [ 150.212290903906194, -35.710968240432379 ], [ 150.212228443805742, -35.708449313888856 ], [ 150.216205070202221, -35.706741808346678 ], [ 150.222732150701148, -35.703816986151914 ], [ 150.227010667583215, -35.702515152168715 ], [ 150.230321052908039, -35.702143195697694 ], [ 150.235026380476654, -35.702870199908666 ], [ 150.236275582486002, -35.703664824835407 ], [ 150.238024465299105, -35.704290375057177 ], [ 150.238472096019109, -35.706437496588222 ], [ 150.240512459301073, -35.707485676643465 ], [ 150.242157241946757, -35.708500031315907 ], [ 150.24257364261652, -35.709041015196632 ], [ 150.248299151826103, -35.709666523231725 ], [ 150.250714275710891, -35.710816092765874 ], [ 150.252171678055163, -35.711948740649625 ], [ 150.251713637318375, -35.713892800239073 ], [ 150.251734457351859, -35.715346587722877 ], [ 150.252213318122131, -35.716529883537994 ], [ 150.251838557519307, -35.718051238053292 ], [ 150.252754638992855, -35.718423120294723 ], [ 150.253275139830095, -35.717003196944219 ], [ 150.25439942163851, -35.715431109435222 ], [ 150.255211402944582, -35.715160639640146 ], [ 150.25742873651123, -35.715397300761047 ], [ 150.258782038688054, -35.716107279906794 ], [ 150.25944827975971, -35.716851060798803 ], [ 150.260572561568125, -35.716512979435777 ], [ 150.262134064079845, -35.716682020296595 ], [ 150.263154245720813, -35.7175272192218 ], [ 150.263529006323637, -35.718372409182194 ], [ 150.262529644716125, -35.71945423924987 ], [ 150.264111967261329, -35.720705086955427 ], [ 150.264653288132052, -35.721837594290641 ], [ 150.264507547897637, -35.722530613227782 ], [ 150.265860850074432, -35.721820691314413 ], [ 150.266964311849392, -35.719961342037834 ], [ 150.26844253422712, -35.719183783109955 ], [ 150.270170597006768, -35.718220275650914 ], [ 150.271242828731459, -35.718811904418658 ], [ 150.273512212381803, -35.718828808033187 ], [ 150.274240913553939, -35.719572563522391 ], [ 150.274678134257215, -35.720400828510087 ], [ 150.275156995027459, -35.721820691314413 ], [ 150.276572757304763, -35.723054599153713 ], [ 150.276801777673143, -35.723865925400965 ], [ 150.262082013996149, -35.747069737899125 ], [ 150.259958370580222, -35.750482983865162 ], [ 150.255086482743707, -35.754301590508319 ], [ 150.234766130058063, -35.772310777792221 ], [ 150.232309366106307, -35.772749975327571 ], [ 150.231101804163899, -35.77237834680168 ], [ 150.228270279609347, -35.772614837882749 ], [ 150.224647593782208, -35.772040501180193 ], [ 150.224439393447312, -35.770283680811765 ], [ 150.221441308624833, -35.769101183711939 ], [ 150.220358666883385, -35.76619554473465 ], [ 150.219400945342869, -35.764371019498554 ], [ 150.215361858845938, -35.763188434492875 ], [ 150.214195936970498, -35.76247887505086 ], [ 150.211739173018799, -35.761701731257403 ], [ 150.211364412415946, -35.759437834329745 ], [ 150.210323410741523, -35.756498051139005 ], [ 150.210885551645703, -35.755518099271448 ], [ 150.211759993052254, -35.75112506328297 ], [ 150.214133476870018, -35.75007745735337 ], [ 150.21259279439181, -35.748286357209935 ], [ 150.214799717941702, -35.745041997723717 ], [ 150.213758716267222, -35.743521158694129 ], [ 150.211177032114534, -35.742473452682802 ], [ 150.211010471846635, -35.739904824768352 ], [ 150.208137307225087, -35.738552882053398 ], [ 150.206638264813847, -35.735747527684751 ], [ 150.206055303876155, -35.733313887213427 ], [ 150.202765738584816, -35.732705465474943 ], [ 150.198185331217161, -35.730778765971422 ], [ 150.197102689475713, -35.72601251957834 ], [ 150.197685650413433, -35.724220878035943 ], [ 150.197414989978057, -35.721415018809459 ], [ 150.196998589308265, -35.719234493706118 ], [ 150.196313854285592, -35.718733218336041 ], [ 150.195434096797527, -35.718370914815765 ], [ 150.194745277118159, -35.71803376747156 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.773185987598083, -37.557636229675353 ], [ 149.761984809580781, -37.559187672715098 ], [ 149.757654242614962, -37.5562167960449 ], [ 149.756654881007449, -37.556282816813294 ], [ 149.754489597524554, -37.557801278342694 ], [ 149.750242310692727, -37.555292499145423 ], [ 149.752324314041658, -37.55053879114427 ], [ 149.755988639935794, -37.546577136190649 ], [ 149.753573516051034, -37.542945434183139 ], [ 149.746203224195796, -37.541162533908384 ], [ 149.742622178435624, -37.537332455821542 ], [ 149.739624093613145, -37.53020006204958 ], [ 149.730005238141018, -37.52445402657596 ], [ 149.725174990371499, -37.52075519489275 ], [ 149.735168606446393, -37.519434139137239 ], [ 149.742663818502564, -37.522736734670914 ], [ 149.748077027209831, -37.517254346006425 ], [ 149.750991831898318, -37.512828509529463 ], [ 149.754156476988726, -37.511639434104879 ], [ 149.758736884356409, -37.513423040137766 ], [ 149.761318568509068, -37.516527734146003 ], [ 149.764483213599448, -37.516791957459283 ], [ 149.769396741502931, -37.517320401279285 ], [ 149.771312184583962, -37.515470831537456 ], [ 149.774893230344134, -37.510648523446811 ], [ 149.774976510478126, -37.508204220911026 ], [ 149.772311546191503, -37.505495575964567 ], [ 149.774893230344134, -37.502126148750513 ], [ 149.771770225320751, -37.497302978527088 ], [ 149.770437743177411, -37.491620487885157 ], [ 149.774185349205482, -37.489572042221347 ], [ 149.778349355903401, -37.490893626499251 ], [ 149.784345525548304, -37.496510098812095 ], [ 149.786510809031228, -37.498492282315219 ], [ 149.790341695193263, -37.496510098812095 ], [ 149.79667098537405, -37.492611651103104 ], [ 149.80474915836794, -37.485474982365226 ], [ 149.810745328012899, -37.484351555733042 ], [ 149.813576852567451, -37.488382596379189 ], [ 149.811494849218519, -37.491752643740845 ], [ 149.808580044530004, -37.494990389161543 ], [ 149.805831800109388, -37.495056464137228 ], [ 149.805915080243381, -37.497567269894702 ], [ 149.804915718635868, -37.499549425336575 ], [ 149.805665239841488, -37.506156230135623 ], [ 149.803833076894421, -37.511177010768222 ], [ 149.800418591402178, -37.513158804896563 ], [ 149.799002829124873, -37.515404774627427 ], [ 149.799335949660701, -37.518377277692679 ], [ 149.79350634028367, -37.521878073895103 ], [ 149.791507617068703, -37.523463286070296 ], [ 149.792590258810151, -37.526501515261195 ], [ 149.798919548990938, -37.527690353871037 ], [ 149.804665878234005, -37.528548947750529 ], [ 149.806414761047108, -37.531058627040927 ], [ 149.804166197430277, -37.534162587245966 ], [ 149.797004105909906, -37.537794717064358 ], [ 149.794505701891183, -37.538455085297393 ], [ 149.793089939613907, -37.541426669972743 ], [ 149.792756819078079, -37.544398136216685 ], [ 149.794339141623254, -37.546775223939065 ], [ 149.793173219747842, -37.548161823439102 ], [ 149.788676092514152, -37.546709194748082 ], [ 149.785927848093564, -37.54611492939727 ], [ 149.780514639386297, -37.547237426638326 ], [ 149.778682476439229, -37.547765654785344 ], [ 149.779640197979745, -37.550703855531204 ], [ 149.77747491449685, -37.553443870953174 ], [ 149.774768310143202, -37.556447868478422 ], [ 149.773185987598083, -37.557636229675353 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.514392971324781, -37.747134672736024 ], [ 149.51081192556461, -37.747595630283499 ], [ 149.507439080139335, -37.747891958619306 ], [ 149.503733114178203, -37.748715086659629 ], [ 149.497362183930449, -37.749110184866929 ], [ 149.496279542189001, -37.745883487777064 ], [ 149.497903504801172, -37.741800526571424 ], [ 149.496737582925761, -37.738639369663893 ], [ 149.494655579576829, -37.736531856729464 ], [ 149.496862503126721, -37.733535133475698 ], [ 149.494738859710793, -37.73258010827162 ], [ 149.494114258706105, -37.73027482426938 ], [ 149.495113620313617, -37.729122155355171 ], [ 149.496112981921073, -37.726750894314087 ], [ 149.498777946207724, -37.727738928974965 ], [ 149.500818309489688, -37.728331743444365 ], [ 149.502983592972583, -37.730966417005753 ], [ 149.503025233039551, -37.735115837780356 ], [ 149.504024594647063, -37.737618550578482 ], [ 149.505023956254547, -37.73936381337851 ], [ 149.505523637058303, -37.741405389340507 ], [ 149.506772839067651, -37.743578618007568 ], [ 149.510603725229714, -37.74397374363712 ], [ 149.513185409382373, -37.744533501334836 ], [ 149.514601171659649, -37.746377379103563 ], [ 149.514392971324781, -37.747134672736024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.218235698656855, -42.223352191619099 ], [ 145.228002665882457, -42.218063515328907 ], [ 145.245121113815571, -42.217519067622902 ], [ 145.263709857890177, -42.222807789512601 ], [ 145.26959104245617, -42.229651360280982 ], [ 145.279252988528839, -42.229107012492662 ], [ 145.282508644270706, -42.22342996296539 ], [ 145.280933326976253, -42.214018934574192 ], [ 145.265101388166983, -42.206629127769013 ], [ 145.263421049719568, -42.201339050960065 ], [ 145.270142403509226, -42.194492411698221 ], [ 145.281012092840967, -42.18313157848398 ], [ 145.29035897545478, -42.17768387951471 ], [ 145.295898841273612, -42.174804191884455 ], [ 145.309131506547033, -42.170834677782985 ], [ 145.313332352665583, -42.16974496366479 ], [ 145.308606400782224, -42.160403786867917 ], [ 145.304720618122559, -42.154720562941627 ], [ 145.300834835462894, -42.152306984691471 ], [ 145.307241125793695, -42.147245957285605 ], [ 145.315012691113026, -42.151528391428485 ], [ 145.322364171820482, -42.152696277731401 ], [ 145.334861689023199, -42.14958186636968 ], [ 145.339167556294711, -42.154253425947331 ], [ 145.331290969822419, -42.159547443319774 ], [ 145.330975906363534, -42.164218267334334 ], [ 145.332971308269862, -42.166164342242332 ], [ 145.341057937048078, -42.164529643342341 ], [ 145.351560052344439, -42.16904442324693 ], [ 145.355655877310056, -42.17262488165084 ], [ 145.364477654159003, -42.176749941137189 ], [ 145.361327019570098, -42.184298881486093 ], [ 145.355445835004133, -42.189823823261477 ], [ 145.35796634267524, -42.190991002699114 ], [ 145.35796634267524, -42.196359750518035 ], [ 145.358911533051923, -42.201339050960065 ], [ 145.366368034912341, -42.201961435927601 ], [ 145.374559684843547, -42.200638860543549 ], [ 145.375294832914278, -42.205228856426032 ], [ 145.370673902183881, -42.211763190487666 ], [ 145.376135002138, -42.223896589031455 ], [ 145.373299431007979, -42.232373028809093 ], [ 145.366788119524216, -42.235405606927785 ], [ 145.369203606042362, -42.242170063790681 ], [ 145.3758987045438, -42.248078651086615 ], [ 145.384510439086853, -42.251343685606003 ], [ 145.395852723606964, -42.263158588412196 ], [ 145.41307619269304, -42.281964589617154 ], [ 145.433030211756147, -42.289112506389181 ], [ 145.437808674216001, -42.308842761703808 ], [ 145.450201170265757, -42.312259972985252 ], [ 145.470785316246662, -42.324529338823325 ], [ 145.471625485470383, -42.33819366385903 ], [ 145.48737865841494, -42.337883143984001 ], [ 145.486328446885324, -42.3242187514821 ], [ 145.488008785332738, -42.319249145496123 ], [ 145.505442296724738, -42.323286980258636 ], [ 145.520775385057476, -42.331206595792949 ], [ 145.527916823459009, -42.340833020887239 ], [ 145.52912456671811, -42.352631144619522 ], [ 145.532065159001093, -42.35713247659708 ], [ 145.540676893544116, -42.348284725066719 ], [ 145.552229220370151, -42.348284725066719 ], [ 145.561050997219127, -42.355114677993861 ], [ 145.563571504890234, -42.368151618076659 ], [ 145.553279431899767, -42.374048392787195 ], [ 145.552439262676074, -42.379944613891396 ], [ 145.554539685735335, -42.384133697724529 ], [ 145.558740531853914, -42.390494364645129 ], [ 145.553489474205691, -42.397940180136672 ], [ 145.54382752813305, -42.401507653670841 ], [ 145.540256808932241, -42.414069749843009 ], [ 145.531855116695141, -42.423683481728816 ], [ 145.526394016741051, -42.43391583471135 ], [ 145.510010716878668, -42.443061524140141 ], [ 145.49404750162816, -42.438876374294559 ], [ 145.485645809391059, -42.432830664335484 ], [ 145.477664201765805, -42.434845965793016 ], [ 145.486485978614752, -42.444301514853528 ], [ 145.461070859597527, -42.451276005326548 ], [ 145.445317686652913, -42.452825786642627 ], [ 145.439646544392872, -42.439806431751876 ], [ 145.439436502086949, -42.424458718461018 ], [ 145.441957009758084, -42.409882663969825 ], [ 145.434185444438782, -42.40259336622686 ], [ 145.420952779165333, -42.385064567286896 ], [ 145.40940045233927, -42.379479142879482 ], [ 145.394697490924329, -42.382116766323335 ], [ 145.377053937226407, -42.37078971730157 ], [ 145.368704755565773, -42.363340681317318 ], [ 145.354001794150861, -42.354338584356761 ], [ 145.344759932690039, -42.348905660546684 ], [ 145.331947352028436, -42.347042835705878 ], [ 145.326486252074318, -42.340833020887239 ], [ 145.325015955932827, -42.331982975022584 ], [ 145.307844997423246, -42.329498527754694 ], [ 145.303014024386897, -42.320025672305434 ], [ 145.302173855163176, -42.312259972985252 ], [ 145.304064235916542, -42.302163131262809 ], [ 145.290201443725323, -42.302007782587452 ], [ 145.282429878405992, -42.295016695490418 ], [ 145.28221983610004, -42.288801744263161 ], [ 145.272767932333295, -42.29594888528144 ], [ 145.262265817036905, -42.296725699566935 ], [ 145.249033151763456, -42.294550595420539 ], [ 145.243151967197491, -42.283052368399119 ], [ 145.243151967197491, -42.276370002090097 ], [ 145.247142771010118, -42.274194195020861 ], [ 145.24735281331607, -42.268754348704618 ], [ 145.232912404783519, -42.268909779400396 ], [ 145.223880585628621, -42.256629573650358 ], [ 145.219049612592272, -42.247923169036859 ], [ 145.211488089578864, -42.236571944327473 ], [ 145.213168428026307, -42.225840827184726 ], [ 145.218235698656855, -42.223352191619099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.286416166437334, -27.516022066087871 ], [ 153.284311975909247, -27.516140177924601 ], [ 153.279850559283233, -27.516305534282946 ], [ 153.277040532691956, -27.516317345441887 ], [ 153.273424787575635, -27.516541757220789 ], [ 153.268620441164188, -27.516671679620323 ], [ 153.265171166817481, -27.516529946085946 ], [ 153.263120246935671, -27.51657719061771 ], [ 153.262254598933652, -27.520439362444865 ], [ 153.261828433763384, -27.522683375517751 ], [ 153.262041516348546, -27.523935278699597 ], [ 153.267954558085705, -27.52483286088663 ], [ 153.275572260503822, -27.525328890004278 ], [ 153.282883656705877, -27.523982520050016 ], [ 153.286719143238088, -27.520061418895292 ], [ 153.287305120347185, -27.516423645815287 ], [ 153.286416166437334, -27.516022066087871 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.403981153363446, -27.900226011784234 ], [ 153.403341905608102, -27.898672404589643 ], [ 153.40185032751225, -27.899249125014961 ], [ 153.401770421542807, -27.900049466635423 ], [ 153.40215663372831, -27.90219152832001 ], [ 153.402556163575412, -27.902732921812767 ], [ 153.403554988193207, -27.902368069974003 ], [ 153.403901247394003, -27.901591284541915 ], [ 153.403728117793605, -27.900755645502507 ], [ 153.403981153363446, -27.900226011784234 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.409095135406375, -27.824167268227562 ], [ 153.409095135406375, -27.825274387921862 ], [ 153.40958788888446, -27.827394372845738 ], [ 153.413676410986511, -27.827995027713403 ], [ 153.415887142807179, -27.827724144557109 ], [ 153.417085732348482, -27.826357940944707 ], [ 153.416832696778698, -27.823802151810057 ], [ 153.415234577390208, -27.821646762131554 ], [ 153.413676410986511, -27.820834063111228 ], [ 153.410879702056775, -27.822188558098826 ], [ 153.410147230670447, -27.823001246980258 ], [ 153.409095135406375, -27.824167268227562 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.952904548984009, -42.651096724510182 ], [ 147.951306429595604, -42.655563106426833 ], [ 147.951626053473262, -42.657326063623259 ], [ 147.956367140992285, -42.658266287025171 ], [ 147.960468980755934, -42.65313406131073 ], [ 147.959829733000561, -42.651762784268335 ], [ 147.953863420617068, -42.650704921320518 ], [ 147.952904548984009, -42.651096724510182 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 146.593515107840176, -43.537493399886841 ], [ 146.586748270744209, -43.538548991884525 ], [ 146.570216630750195, -43.529731126522563 ], [ 146.562850200493841, -43.526874358436295 ], [ 146.561137077178387, -43.523023717805607 ], [ 146.535782852109833, -43.505071520811953 ], [ 146.535782852109833, -43.487176129494983 ], [ 146.549145213970291, -43.457587398518079 ], [ 146.573814189712607, -43.460323098942631 ], [ 146.594371669497889, -43.497367210793996 ], [ 146.587861800899219, -43.520228744052169 ], [ 146.590945422867009, -43.530911056464795 ], [ 146.593515107840176, -43.537493399886841 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 148.155951110214204, -42.086506919597873 ], [ 148.200090611439919, -42.088678644518531 ], [ 148.230085963101629, -42.094288589784284 ], [ 148.23551195151191, -42.093836193236797 ], [ 148.238377361121906, -42.09668623761268 ], [ 148.242340161646268, -42.096143381891665 ], [ 148.243254654075002, -42.092795668931394 ], [ 148.242827890941612, -42.089085834664289 ], [ 148.239840549007823, -42.086959368420658 ], [ 148.216947755209105, -42.079584050243568 ], [ 148.215850364294681, -42.076597481245742 ], [ 148.22792166435363, -42.076778489428577 ], [ 148.22792166435363, -42.071257507595419 ], [ 148.221093454219272, -42.065555005833048 ], [ 148.204998387473978, -42.064649799714765 ], [ 148.189269117700178, -42.068270546749723 ], [ 148.180977719679873, -42.074606357160739 ], [ 148.169272216592361, -42.077050000734801 ], [ 148.165126517582195, -42.076778489428577 ], [ 148.160188258467173, -42.071619553904661 ], [ 148.14945821397032, -42.076687985401726 ], [ 148.155951110214204, -42.086506919597873 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.631114903968239, -33.922372356375824 ], [ 137.630139445377637, -33.923864730075707 ], [ 137.632547608773223, -33.925382371432946 ], [ 137.634803356764024, -33.925685896459861 ], [ 137.635900747678505, -33.923712964452903 ], [ 137.636388476973821, -33.922827659597942 ], [ 137.638583258802697, -33.923156488189484 ], [ 137.641174320684058, -33.922954132283365 ], [ 137.643521517917748, -33.921891755890421 ], [ 137.64278992397476, -33.918527476580657 ], [ 137.640107412850568, -33.916933824225772 ], [ 137.636662824702398, -33.916807342603498 ], [ 137.634955772168809, -33.917363860337197 ], [ 137.633827898173422, -33.918856321769447 ], [ 137.633980313578206, -33.920323461764283 ], [ 137.63209036255887, -33.922094114320011 ], [ 137.631114903968239, -33.922372356375824 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.016576025028513, -37.47607594800904 ], [ 140.02059979171483, -37.475205045316649 ], [ 140.028098629630279, -37.473559979207941 ], [ 140.03645099381248, -37.472398734271657 ], [ 140.039011572612878, -37.464317905387112 ], [ 140.037060655431617, -37.458849543647389 ], [ 140.038158046346069, -37.455510258855135 ], [ 140.031451768535561, -37.451057647195263 ], [ 140.001700281521522, -37.458220414434159 ], [ 139.997310717863712, -37.467705185506738 ], [ 140.002919604759825, -37.4729309737737 ], [ 140.008528491655881, -37.4758340316125 ], [ 140.016576025028513, -37.47607594800904 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.882252361945064, -38.60718355562809 ], [ 142.878716324554034, -38.608041098125049 ], [ 142.878960189201678, -38.604706153067681 ], [ 142.882374294268885, -38.601561634339475 ], [ 142.877375068991938, -38.597749911767217 ], [ 142.873351302305593, -38.59031647052624 ], [ 142.869937197238414, -38.583168205023156 ], [ 142.867742415409509, -38.578211656561564 ], [ 142.874570625543896, -38.574589347144006 ], [ 142.880423377087624, -38.580689973549255 ], [ 142.883715549830981, -38.586599461271675 ], [ 142.895421052918465, -38.591460126969871 ], [ 142.898103564042657, -38.596892246291283 ], [ 142.898591293338001, -38.601656924810136 ], [ 142.89493332362315, -38.605849580262138 ], [ 142.89054375996534, -38.60718355562809 ], [ 142.882252361945064, -38.60718355562809 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.529809575433092, -38.111130527734488 ], [ 147.547977491683469, -38.097697945116096 ], [ 147.552976716960416, -38.091268621128229 ], [ 147.550781935131511, -38.087238010238067 ], [ 147.538710635072533, -38.09712220781573 ], [ 147.530906966347544, -38.102399629954547 ], [ 147.526273538042091, -38.102399629954547 ], [ 147.52359102691787, -38.105565900285789 ], [ 147.520542718822156, -38.110267078846164 ], [ 147.51932339558391, -38.114392353642984 ], [ 147.521640109736609, -38.114296419666061 ], [ 147.529809575433092, -38.111130527734488 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.636561324944523, -38.037652924294513 ], [ 147.64338953507891, -38.033715398673785 ], [ 147.639609633040237, -38.027856737093394 ], [ 147.633269152201166, -38.028817205528235 ], [ 147.63235465977246, -38.035396075747364 ], [ 147.63406171230605, -38.036980678808199 ], [ 147.636561324944523, -38.037652924294513 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 148.324930259115519, -40.198605360142473 ], [ 148.323345138905779, -40.194879924188221 ], [ 148.318041082819263, -40.191759714087681 ], [ 148.311944466627835, -40.190781708237829 ], [ 148.30932292166554, -40.184168155725672 ], [ 148.303653068607559, -40.176389420282661 ], [ 148.304018865579081, -40.165022478883962 ], [ 148.300970557483367, -40.155890278337594 ], [ 148.294264279672831, -40.151789707122163 ], [ 148.287070272566979, -40.15216249655483 ], [ 148.279510468489633, -40.151789707122163 ], [ 148.270975205821685, -40.157288143750549 ], [ 148.266585642163847, -40.166047445127674 ], [ 148.271097138145507, -40.176203092329715 ], [ 148.284265829118937, -40.178532154967655 ], [ 148.2871922048908, -40.182351644630934 ], [ 148.289996648338843, -40.187195566128956 ], [ 148.299507369597421, -40.190921424222687 ], [ 148.303409203959916, -40.192784276518097 ], [ 148.307067173674767, -40.202377155511826 ], [ 148.30462852719819, -40.206754037702559 ], [ 148.296946790797023, -40.211782447094556 ], [ 148.294142347348981, -40.215600064331348 ], [ 148.293044956434557, -40.221186433609219 ], [ 148.298044181711475, -40.222303652194149 ], [ 148.307067173674767, -40.215506954274552 ], [ 148.309993549446631, -40.210758171733985 ], [ 148.317309488876333, -40.203029049492905 ], [ 148.321820984857936, -40.199396988914295 ], [ 148.324930259115519, -40.198605360142473 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.603945221346493, -35.569382678715996 ], [ 138.605778009046503, -35.56783141442785 ], [ 138.607115448719441, -35.566340560706529 ], [ 138.606496263685671, -35.565796593658135 ], [ 138.606099985264052, -35.565333211407925 ], [ 138.60634765927756, -35.564708648483133 ], [ 138.607363122732949, -35.564507175533478 ], [ 138.608180446977542, -35.564769090269259 ], [ 138.609616956255934, -35.564104228114594 ], [ 138.60964172365729, -35.562794635010114 ], [ 138.608898701616738, -35.561847685125755 ], [ 138.607561261943772, -35.561867833112132 ], [ 138.606322891876204, -35.562754339498284 ], [ 138.606099985264052, -35.563620688537384 ], [ 138.606322891876204, -35.564084080690463 ], [ 138.605877078651901, -35.564386291520577 ], [ 138.604812080393799, -35.563822163715798 ], [ 138.603326036312694, -35.563963196039289 ], [ 138.602285805455949, -35.56456761747156 ], [ 138.601641853020823, -35.565192181495576 ], [ 138.601567550816782, -35.56573615264702 ], [ 138.600997900585668, -35.566199532567097 ], [ 138.600453017755967, -35.566884524062182 ], [ 138.600081506735677, -35.568032879019391 ], [ 138.599660460912702, -35.568959609616009 ], [ 138.599313717293796, -35.569443116976487 ], [ 138.601418946408643, -35.571780028084973 ], [ 138.602830688285678, -35.570692164152511 ], [ 138.603672779931628, -35.569946767374226 ], [ 138.603945221346493, -35.569382678715996 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.87717801992423, -35.551529764829702 ], [ 138.878168240449241, -35.552002033060795 ], [ 138.879397479721689, -35.553252141420366 ], [ 138.881446211842388, -35.554252214072797 ], [ 138.885099784124293, -35.554585568851188 ], [ 138.886226586790684, -35.55486336344093 ], [ 138.887271909104896, -35.555420218946999 ], [ 138.88831213996167, -35.557032171112411 ], [ 138.890095392858967, -35.558603793263494 ], [ 138.890289905496758, -35.559057944728643 ], [ 138.889811868001914, -35.560030167333906 ], [ 138.894107711877837, -35.562029016820816 ], [ 138.89891258774, -35.560860427588189 ], [ 138.902082815112976, -35.562915521423974 ], [ 138.904906298867047, -35.565494388146696 ], [ 138.909983616144018, -35.569030121287788 ], [ 138.917512906154826, -35.57056121657196 ], [ 138.922961734452116, -35.571608791223355 ], [ 138.927865679919677, -35.570118007788224 ], [ 138.931184511700764, -35.568909244098144 ], [ 138.928113353933185, -35.565363432071138 ], [ 138.925190800573745, -35.566693129969224 ], [ 138.923556152084558, -35.566491662009071 ], [ 138.922070108003481, -35.564678427572957 ], [ 138.919494298262947, -35.563469581821138 ], [ 138.91617546648186, -35.563630762308328 ], [ 138.912509891081868, -35.564759016641368 ], [ 138.910875242592709, -35.562703970079994 ], [ 138.909983616144018, -35.559923529086547 ], [ 138.908002224035926, -35.557304184843737 ], [ 138.905575018703502, -35.554926552112683 ], [ 138.900720608038654, -35.552307044577702 ], [ 138.901339793072452, -35.550503564641694 ], [ 138.901414095276436, -35.549435562984677 ], [ 138.899705144583208, -35.549032539794368 ], [ 138.897921891685883, -35.548951934913212 ], [ 138.896014801781831, -35.548710119783571 ], [ 138.893860037864357, -35.548367547101542 ], [ 138.891977715361662, -35.548810876176233 ], [ 138.888807487988686, -35.549737829047992 ], [ 138.884151216534633, -35.549979641078167 ], [ 138.880485641134641, -35.549254202799752 ], [ 138.877464018169775, -35.547924215575641 ], [ 138.873303094742766, -35.546432991545366 ], [ 138.870392925083962, -35.545757901277568 ], [ 138.868163858962362, -35.544669684105472 ], [ 138.864399213956972, -35.543742672644534 ], [ 138.861179451781283, -35.543823282762183 ], [ 138.86088224296509, -35.543138094179497 ], [ 138.862863635073182, -35.542936567011665 ], [ 138.865092701194811, -35.542452899742692 ], [ 138.863458052705596, -35.541284025133727 ], [ 138.858157828816417, -35.53842222573455 ], [ 138.854789462232645, -35.535560324228449 ], [ 138.853080511539417, -35.5344417363806 ], [ 138.850058888574551, -35.53367584741725 ], [ 138.847730752847554, -35.532950261654683 ], [ 138.84669052199078, -35.532990572146971 ], [ 138.845650291134035, -35.531176579942162 ], [ 138.844907269093483, -35.528878797605834 ], [ 138.842034250536727, -35.526903458438966 ], [ 138.839507975598906, -35.525814985465828 ], [ 138.837427513885387, -35.525774671368488 ], [ 138.836040539409709, -35.526419694495836 ], [ 138.834009612498903, -35.525895613599765 ], [ 138.833217055655666, -35.526097183580234 ], [ 138.832226359601606, -35.525250586259965 ], [ 138.830765082921914, -35.524696261747614 ], [ 138.829873456473251, -35.524857520182465 ], [ 138.828238807984064, -35.525059092770398 ], [ 138.82665369429759, -35.523003028618191 ], [ 138.825167650216514, -35.521390392425261 ], [ 138.822641375278693, -35.520180894016804 ], [ 138.820362774354351, -35.51961645518891 ], [ 138.818331847443545, -35.520140577089307 ], [ 138.815954176913834, -35.52058406217806 ], [ 138.813477436778697, -35.521511341263697 ], [ 138.811842788289511, -35.521874186685366 ], [ 138.809836628780062, -35.522085845757154 ], [ 138.807112214631445, -35.520513507896034 ], [ 138.80562617055034, -35.518618598264482 ], [ 138.800672690280095, -35.515433436608312 ], [ 138.796462232050374, -35.513135203507467 ], [ 138.792846191453094, -35.510554652849258 ], [ 138.792202239017911, -35.508820798793913 ], [ 138.791261077766563, -35.506411485946145 ], [ 138.785366436244971, -35.503306490822332 ], [ 138.78338504413685, -35.506169542586825 ], [ 138.783087835320629, -35.509234104612624 ], [ 138.783880392163894, -35.512379191396768 ], [ 138.784573879401734, -35.514435527685428 ], [ 138.784623414204418, -35.516128941552438 ], [ 138.785415971047684, -35.517217545889963 ], [ 138.787496432761174, -35.518225499706546 ], [ 138.788090850393615, -35.519435027579874 ], [ 138.787100154339583, -35.519999467683569 ], [ 138.786604806312511, -35.520765487189941 ], [ 138.787001084734158, -35.522257188406464 ], [ 138.788883407236852, -35.523103817304396 ], [ 138.79066666013415, -35.523547286020012 ], [ 138.792449913031419, -35.524837362895838 ], [ 138.794926653166584, -35.525643650412214 ], [ 138.798443624158494, -35.526651498415809 ], [ 138.803979138360489, -35.528495827485656 ], [ 138.80789238777399, -35.529221453532443 ], [ 138.811062615146966, -35.529423015158663 ], [ 138.815074934165892, -35.53063237428308 ], [ 138.816709582655051, -35.530108320900489 ], [ 138.819384462001011, -35.531398292300594 ], [ 138.822059341346971, -35.531357981008277 ], [ 138.825873521155074, -35.531801404109906 ], [ 138.827904448065851, -35.533010727385552 ], [ 138.830480257806414, -35.533736312601214 ], [ 138.831768162676667, -35.533736312601214 ], [ 138.832511184717191, -35.535832410806002 ], [ 138.834282053913824, -35.535983569617009 ], [ 138.838244838130009, -35.536467275898133 ], [ 138.840424369448925, -35.536668819321122 ], [ 138.843099248794857, -35.537716836957856 ], [ 138.846418080575944, -35.538764840902147 ], [ 138.848449007486721, -35.540860807712619 ], [ 138.850863829118509, -35.54185838806174 ], [ 138.85324149964822, -35.544599151001407 ], [ 138.856560331429307, -35.547017393456308 ], [ 138.861687183508991, -35.548468303924672 ], [ 138.866046246146851, -35.549354958508694 ], [ 138.869216473519799, -35.550201301465194 ], [ 138.870132867369819, -35.551682380141919 ], [ 138.875026851197504, -35.553835518650445 ], [ 138.875812198510431, -35.551779789533882 ], [ 138.876358527075951, -35.551363081260398 ], [ 138.87717801992423, -35.551529764829702 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.390631525157772, -33.631564575460679 ], [ 115.389292538276436, -33.63240071807688 ], [ 115.3885226208197, -33.633069626325636 ], [ 115.389794658356948, -33.635550115729067 ], [ 115.389627284996777, -33.637194445730785 ], [ 115.389962031717104, -33.638086272599374 ], [ 115.392070936055191, -33.638643659702026 ], [ 115.393778144328891, -33.637055096948274 ], [ 115.394313739081426, -33.635745207370803 ], [ 115.39715908620424, -33.63541076428583 ], [ 115.397594256940678, -33.634351685948445 ], [ 115.39675739013984, -33.633431949457965 ], [ 115.397092136860181, -33.63240071807688 ], [ 115.396054422027134, -33.631731804633283 ], [ 115.395920523339029, -33.630951399050062 ], [ 115.39545187793054, -33.629780777417757 ], [ 115.393711194984817, -33.629864393776224 ], [ 115.392037461383183, -33.630644809207837 ], [ 115.390631525157772, -33.631564575460679 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.296221424804571, -12.922055571862415 ], [ 130.296886465191221, -12.921029255682051 ], [ 130.301357014457011, -12.924270239774637 ], [ 130.304017176003583, -12.927133074063399 ], [ 130.302724041918452, -12.928105349938287 ], [ 130.297163565352321, -12.923333959801962 ], [ 130.296221424804571, -12.922055571862415 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 151.285675748738214, -33.785250165832828 ], [ 151.286533855287246, -33.785335007759464 ], [ 151.287391141084214, -33.785345045257792 ], [ 151.288068842735271, -33.785998258751171 ], [ 151.288559302265526, -33.786268371492923 ], [ 151.288828644340924, -33.786041933629889 ], [ 151.288230518278198, -33.785539234673038 ], [ 151.287984890930886, -33.785120667056134 ], [ 151.287524450609851, -33.784943087409864 ], [ 151.286949717049112, -33.784918966140992 ], [ 151.286356534656051, -33.784865058518825 ], [ 151.285475023137082, -33.784793855797162 ], [ 151.285322436470096, -33.785091227742399 ], [ 151.285675748738214, -33.785250165832828 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 152.068038293943232, -32.686539144855729 ], [ 152.065989742417088, -32.695738511084585 ], [ 152.064156939764757, -32.701374945046247 ], [ 152.066891376083021, -32.707525507511235 ], [ 152.071666073913576, -32.709128341030279 ], [ 152.076195271785423, -32.72118142669072 ], [ 152.079638626722499, -32.721657453470776 ], [ 152.083406282784466, -32.726183497000221 ], [ 152.090306787592539, -32.72955194631065 ], [ 152.099603276482441, -32.729068978601923 ], [ 152.10466343367267, -32.727470559478277 ], [ 152.106920179881314, -32.722893453927185 ], [ 152.10614853814775, -32.720018668347478 ], [ 152.113859064789324, -32.718255839521888 ], [ 152.131066345157478, -32.721748613074531 ], [ 152.138043117476457, -32.720825770862838 ], [ 152.143206291721526, -32.719770501349132 ], [ 152.147660655804231, -32.720855455409534 ], [ 152.151054887472441, -32.718731664171656 ], [ 152.154092253584793, -32.715910824630299 ], [ 152.158819021150691, -32.714912770143428 ], [ 152.161202078075974, -32.712178424281305 ], [ 152.166157200852638, -32.718220001595718 ], [ 152.172945936272981, -32.722157958218475 ], [ 152.182389952911649, -32.721278171029645 ], [ 152.18638722699805, -32.716468680993486 ], [ 152.186981336988538, -32.714901396468562 ], [ 152.207600936562613, -32.701187425850591 ], [ 152.2033835644622, -32.697840090997346 ], [ 152.193148952938003, -32.698082110824821 ], [ 152.191007494520051, -32.693900890430164 ], [ 152.185591079675675, -32.686619135410858 ], [ 152.181403892089833, -32.679918541186126 ], [ 152.172324502005466, -32.676843373171671 ], [ 152.161636297646481, -32.679376205258144 ], [ 152.157817546227335, -32.680440263548583 ], [ 152.156862846435018, -32.680706263551272 ], [ 152.155456177510672, -32.679776329779969 ], [ 152.152739515341636, -32.677252486682093 ], [ 152.150533029963555, -32.676521470805127 ], [ 152.14794785178168, -32.673515070566104 ], [ 152.144935227018209, -32.674704615301664 ], [ 152.140402874631093, -32.678467250372883 ], [ 152.137908544089868, -32.681494941335451 ], [ 152.137235956588114, -32.682653676691267 ], [ 152.134511644581892, -32.683014163310055 ], [ 152.13190136677963, -32.68280139677325 ], [ 152.13026319921525, -32.682413485368265 ], [ 152.133576091454813, -32.680161325492378 ], [ 152.138452639292893, -32.678492815656249 ], [ 152.13881451195752, -32.676584535855476 ], [ 152.136867202623279, -32.67428422672586 ], [ 152.137501493278108, -32.672339912645228 ], [ 152.13741490001641, -32.671886280540022 ], [ 152.138875344488667, -32.667832735041451 ], [ 152.129748325526492, -32.666249975200707 ], [ 152.127240872252401, -32.662768022914456 ], [ 152.125580207999462, -32.659918183296178 ], [ 152.123486748920811, -32.659776517165874 ], [ 152.118871982747351, -32.66164250600751 ], [ 152.115587111032056, -32.665797417374186 ], [ 152.111845397337163, -32.672245003333721 ], [ 152.112581417886076, -32.676984547668937 ], [ 152.112385998467118, -32.679475312219751 ], [ 152.10838170618635, -32.678981321574604 ], [ 152.103547088524692, -32.679992162328908 ], [ 152.100603717958649, -32.682427320539325 ], [ 152.095574204832928, -32.683882196616558 ], [ 152.09083748852504, -32.682182244283929 ], [ 152.085311466667434, -32.68337676599964 ], [ 152.083290634756594, -32.685085185629021 ], [ 152.081808691639765, -32.686396916164036 ], [ 152.076711760018611, -32.686325295859021 ], [ 152.069802546890713, -32.68700408665422 ], [ 152.068038293943232, -32.686539144855729 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.708187774212135, -32.527344924989571 ], [ 115.706759347886717, -32.526840102755926 ], [ 115.707803256891694, -32.525068497884547 ], [ 115.708673827226875, -32.525498377535321 ], [ 115.709379464924666, -32.525328828167453 ], [ 115.712069492446844, -32.525034509458457 ], [ 115.712628249988711, -32.524864561017402 ], [ 115.712722722283743, -32.523175207808571 ], [ 115.712822776285151, -32.522405073209832 ], [ 115.713707219911768, -32.522147441993809 ], [ 115.71611731391873, -32.521761911355 ], [ 115.716985080448808, -32.521732134515979 ], [ 115.717435441201445, -32.522147690694041 ], [ 115.717613859540251, -32.522779159469401 ], [ 115.717766810087753, -32.523576320673889 ], [ 115.717585662538596, -32.523679452062346 ], [ 115.717680229218544, -32.524378515952804 ], [ 115.718177366059138, -32.524370379222248 ], [ 115.718238020218138, -32.523856309369997 ], [ 115.719492658185715, -32.523699428519279 ], [ 115.719824796726726, -32.523091874853826 ], [ 115.72052204277918, -32.522737659764012 ], [ 115.721101158935042, -32.522554547969392 ], [ 115.721797564527776, -32.523042297807322 ], [ 115.72044994306097, -32.524521254274447 ], [ 115.719883746545648, -32.524261748273432 ], [ 115.718972020375276, -32.52517484353853 ], [ 115.718165381410998, -32.52516523340762 ], [ 115.71768354054916, -32.525312797097641 ], [ 115.717396784477003, -32.525863956851147 ], [ 115.716935819316433, -32.526473058687849 ], [ 115.715855875047183, -32.527643760071008 ], [ 115.713669372140373, -32.526215946171824 ], [ 115.713219468405697, -32.525677942444709 ], [ 115.712472602431774, -32.525996207628943 ], [ 115.710233833120427, -32.527655461602663 ], [ 115.709683862884148, -32.526693368723784 ], [ 115.709525871258791, -32.52604875527885 ], [ 115.709264558549691, -32.525837102044463 ], [ 115.708825791726184, -32.525943311934626 ], [ 115.70836755915353, -32.526414891201306 ], [ 115.708295271580425, -32.5270042733965 ], [ 115.708187774212135, -32.527344924989571 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 151.191000715552605, -34.008183946902498 ], [ 151.191233357106512, -34.008790045163011 ], [ 151.193484050840823, -34.009248290100174 ], [ 151.193405079130855, -34.010393891624055 ], [ 151.192931248870991, -34.011997707791409 ], [ 151.194234282085631, -34.01360149366441 ], [ 151.195339886025295, -34.014616118060644 ], [ 151.195774230430175, -34.016023480212581 ], [ 151.194234282085631, -34.017398090488825 ], [ 151.192575876176107, -34.018510853933392 ], [ 151.19099644197658, -34.018674494386104 ], [ 151.190127753166848, -34.019918151517331 ], [ 151.188548318967321, -34.020278154128256 ], [ 151.188409285527001, -34.020530232101677 ], [ 151.187903557138952, -34.020571045243699 ], [ 151.184512027765123, -34.023159285183098 ], [ 151.18160785184449, -34.025972670415861 ], [ 151.178736517302667, -34.026534885828696 ], [ 151.175743835069596, -34.025355419767493 ], [ 151.174005837373443, -34.023988910881265 ], [ 151.173700859676757, -34.022597017704754 ], [ 151.173298960831289, -34.021217207238898 ], [ 151.171773405588652, -34.02046767181416 ], [ 151.170596760965054, -34.021349659791461 ], [ 151.169597098890989, -34.024007165783644 ], [ 151.164435490732018, -34.024327316298617 ], [ 151.163360290557307, -34.025760916531574 ], [ 151.163360290557307, -34.030420117288685 ], [ 151.161261090216186, -34.035437718104042 ], [ 151.156192289392493, -34.039175318711401 ], [ 151.151174688577157, -34.039584918777962 ], [ 151.133254685665207, -34.03538651809572 ], [ 151.130848285274112, -34.031290517430129 ], [ 151.130541085224195, -34.028013716897647 ], [ 151.13095068529077, -34.023706516197741 ], [ 151.123782684125985, -34.017357715166064 ], [ 151.126702378903161, -34.010376693602481 ], [ 151.127595089558184, -34.009900977820948 ], [ 151.129284863298039, -34.006121585533194 ], [ 151.128487800213207, -34.005566555718218 ], [ 151.130177573953063, -34.004350763448343 ], [ 151.13840028650128, -34.00241371273767 ], [ 151.141267486967195, -33.996064911705993 ], [ 151.147451491317526, -33.995135062370302 ], [ 151.148202839416911, -33.993284962492787 ], [ 151.147486517709865, -33.986940219019871 ], [ 151.147874751716216, -33.983378806656191 ], [ 151.149972238526175, -33.978869327218632 ], [ 151.151132459809133, -33.972760888455589 ], [ 151.15303319118533, -33.969072471795592 ], [ 151.155321145511209, -33.964253329435309 ], [ 151.156915174875394, -33.959163196792929 ], [ 151.159923009719051, -33.95503046432173 ], [ 151.163933057092095, -33.950691088091865 ], [ 151.167072721473147, -33.949441976490846 ], [ 151.16852903908989, -33.94819840462123 ], [ 151.168981242717564, -33.947692709173431 ], [ 151.170682491688268, -33.94670451603205 ], [ 151.174044499838686, -33.946938897574022 ], [ 151.175067122200602, -33.94981371156436 ], [ 151.178668501377899, -33.964315295831035 ], [ 151.179786258109942, -33.966626881011287 ], [ 151.18305204433841, -33.966873158582523 ], [ 151.185703119152549, -33.965929704061992 ], [ 151.18555112113313, -33.963211721816201 ], [ 151.182361944586461, -33.962302362855304 ], [ 151.181735492123579, -33.96131841439378 ], [ 151.18001532974057, -33.956263418342573 ], [ 151.180823591636795, -33.952567909014839 ], [ 151.182718536382595, -33.951555409261481 ], [ 151.185813713508793, -33.951414357955521 ], [ 151.187616877815287, -33.95368116088197 ], [ 151.190674707863252, -33.964941750098895 ], [ 151.191013264853609, -33.967595623453811 ], [ 151.191963528677036, -33.972501674002167 ], [ 151.192936566556767, -33.973483223682535 ], [ 151.194460250814018, -33.973415623355415 ], [ 151.194557341734139, -33.972055421951552 ], [ 151.193530305136733, -33.969160638163274 ], [ 151.191322158442858, -33.960101928399702 ], [ 151.190494824473433, -33.957754192201875 ], [ 151.192074528088028, -33.955024378164403 ], [ 151.193109398397411, -33.953914831335865 ], [ 151.192026575955197, -33.952334307770968 ], [ 151.190077526387313, -33.949003264134312 ], [ 151.192228414923591, -33.952084446076945 ], [ 151.196569138758974, -33.955219079179635 ], [ 151.202841225254275, -33.958347369065422 ], [ 151.208780881053372, -33.961282103632875 ], [ 151.21213609997514, -33.96147573133559 ], [ 151.213555459048507, -33.964076277846125 ], [ 151.206857998813547, -33.965648214436619 ], [ 151.208061481359863, -33.969501325924433 ], [ 151.21617264191039, -33.967262495406985 ], [ 151.220301518404682, -33.96654226546741 ], [ 151.221623564938568, -33.969420499045974 ], [ 151.212192745219653, -33.972028737999246 ], [ 151.212878267649216, -33.973332064687213 ], [ 151.210318224512747, -33.981781447093013 ], [ 151.212490916365738, -33.984165489692792 ], [ 151.214544597783174, -33.981049247679451 ], [ 151.218290675414011, -33.977435548205818 ], [ 151.222795593146685, -33.975524419734398 ], [ 151.225528907931562, -33.975836405638013 ], [ 151.229355720671748, -33.977512977732601 ], [ 151.229527924222452, -33.980065200735503 ], [ 151.228836874294586, -33.982235123838258 ], [ 151.230556056595049, -33.982959810531902 ], [ 151.232302211573938, -33.986254904323566 ], [ 151.231593488867873, -33.988059392003414 ], [ 151.230869788742041, -33.988435856794325 ], [ 151.229572073478607, -33.988924936946987 ], [ 151.231173797007614, -33.989010658548239 ], [ 151.23222519466114, -33.990145679344678 ], [ 151.233693005748734, -33.988695657081635 ], [ 151.235857036276968, -33.988874431060154 ], [ 151.237928870111432, -33.990167780279968 ], [ 151.239172815273406, -33.991809796425834 ], [ 151.237760835342385, -33.993293755882327 ], [ 151.238915268935358, -33.9949878391309 ], [ 151.238912616031655, -33.996050403389717 ], [ 151.238167182978003, -33.997655278673292 ], [ 151.239998286317189, -33.998447635978145 ], [ 151.228033154996155, -34.004805525958332 ], [ 151.226375640104067, -34.003878966590591 ], [ 151.222541702604985, -34.002437922071699 ], [ 151.218295545984773, -34.004684370716916 ], [ 151.217474860015301, -34.00642109434402 ], [ 151.214090362747612, -34.008232930112555 ], [ 151.206106754853039, -34.009025601567949 ], [ 151.198220103955094, -34.008457557635722 ], [ 151.192345182162427, -34.008046697131441 ], [ 151.190556704856931, -34.008024689347131 ], [ 151.191000715552605, -34.008183946902498 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 151.342886124351736, -33.515426509381342 ], [ 151.350382830912082, -33.514336543231998 ], [ 151.353900868191886, -33.521962411295227 ], [ 151.352331282328578, -33.527467057977077 ], [ 151.345241084118499, -33.529181548495131 ], [ 151.343996240157963, -33.529407136822073 ], [ 151.343292632702003, -33.529813194327446 ], [ 151.343288766867175, -33.531822136427721 ], [ 151.339955136108728, -33.533549144437934 ], [ 151.338874415866911, -33.536788044544871 ], [ 151.340875698459854, -33.538005161797763 ], [ 151.343879295703289, -33.538769184808565 ], [ 151.344633155267644, -33.540715219795771 ], [ 151.344059322893344, -33.542420583607573 ], [ 151.345732201883521, -33.545067128521239 ], [ 151.346626781874164, -33.5472403721527 ], [ 151.344664682756218, -33.549447558986813 ], [ 151.344025352257177, -33.550263075376627 ], [ 151.333746769395049, -33.581790740759196 ], [ 151.329638027205874, -33.579859209422708 ], [ 151.327121262272414, -33.582987387361619 ], [ 151.323608051549144, -33.592409757200919 ], [ 151.322665482818508, -33.605042683419519 ], [ 151.31563906137194, -33.609395974963554 ], [ 151.307841447327576, -33.59697780851485 ], [ 151.312748850946093, -33.578805874470866 ], [ 151.308108484806979, -33.573214529589514 ], [ 151.309225778771719, -33.554282987852673 ], [ 151.307503217845124, -33.550825904015483 ], [ 151.308675146241541, -33.547004275541795 ], [ 151.307143717748914, -33.544584549016534 ], [ 151.30832390824105, -33.540272059074127 ], [ 151.312106743389847, -33.536693051577153 ], [ 151.311235003368779, -33.534639338993678 ], [ 151.311137894337804, -33.530896010926767 ], [ 151.314289162046833, -33.527641459090049 ], [ 151.321772534086733, -33.52433061148303 ], [ 151.329897740090217, -33.522897840207861 ], [ 151.331653752357397, -33.519573925666435 ], [ 151.334434649248493, -33.515385920889145 ], [ 151.337715484928623, -33.513910619165294 ], [ 151.341712258452418, -33.514712519793314 ], [ 151.342886124351736, -33.515426509381342 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.400826438007812, -11.275157544447715 ], [ 131.400121251813999, -11.274098567105845 ], [ 131.402126625052603, -11.273039585862147 ], [ 131.402787737109293, -11.271829316806329 ], [ 131.403977738811335, -11.271245792405262 ], [ 131.404969406896384, -11.271245792405262 ], [ 131.405586444815924, -11.271072896058969 ], [ 131.406467927558197, -11.271742868821656 ], [ 131.40653403876388, -11.273147645351465 ], [ 131.407305336163319, -11.273536659176699 ], [ 131.406732372380901, -11.2750062622092 ], [ 131.405828852570096, -11.27463886215557 ], [ 131.405255888787593, -11.274055343457988 ], [ 131.405101629307723, -11.273190869135831 ], [ 131.405145703444845, -11.272758630999773 ], [ 131.40439644311391, -11.272650571364187 ], [ 131.403977738811335, -11.272866690594723 ], [ 131.402919959520631, -11.274120178927337 ], [ 131.401575698338718, -11.274876591655678 ], [ 131.400826438007812, -11.275157544447715 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.381753355172378, -11.300831147037183 ], [ 131.380508260798933, -11.300280096357344 ], [ 131.380497242264653, -11.29918879678759 ], [ 131.380596409073149, -11.298551303038026 ], [ 131.380761687087329, -11.298097493064718 ], [ 131.382855208600176, -11.297838172757537 ], [ 131.38341715384837, -11.298789012737451 ], [ 131.382811134463083, -11.299977558278853 ], [ 131.381753355172378, -11.300831147037183 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.099987396611851, -11.304277890983185 ], [ 131.097320911316558, -11.302397853968165 ], [ 131.100362026777304, -11.298853842621289 ], [ 131.101970732781922, -11.29846486309849 ], [ 131.103028512072626, -11.298011052988391 ], [ 131.105364441339589, -11.29738436165578 ], [ 131.107590185263774, -11.297665292422501 ], [ 131.10851574214314, -11.29844325310952 ], [ 131.102565733632957, -11.30112287932128 ], [ 131.100141656091751, -11.303694432539455 ], [ 131.099987396611851, -11.304277890983185 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.586501662182286, -11.401396314492855 ], [ 130.587669626815739, -11.400921065763127 ], [ 130.589564814711593, -11.403729342180844 ], [ 130.591063335373406, -11.405759924757344 ], [ 130.592760189652239, -11.407617679078214 ], [ 130.594545192205317, -11.409777843238222 ], [ 130.596286120621244, -11.410793114715771 ], [ 130.593862043080065, -11.411160339675183 ], [ 130.591173520716183, -11.409000186033893 ], [ 130.588727406106443, -11.40636477633559 ], [ 130.585796475988474, -11.402001175362772 ], [ 130.586501662182286, -11.401396314492855 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.405401032786813, -11.301252538018939 ], [ 130.405687514678078, -11.300733902876532 ], [ 130.405533255198179, -11.30023687665139 ], [ 130.406546960351761, -11.298745792806773 ], [ 130.407869184465113, -11.298335203140301 ], [ 130.409544001675386, -11.298897062535696 ], [ 130.410094928389327, -11.299977558278865 ], [ 130.411064559405787, -11.30040975543611 ], [ 130.411791782668132, -11.30023687665139 ], [ 130.412563080067599, -11.301879220897636 ], [ 130.411835856805254, -11.302095318124371 ], [ 130.409676224086752, -11.301403806425412 ], [ 130.407758999122336, -11.30040975543611 ], [ 130.406436775008984, -11.30112287932128 ], [ 130.405401032786813, -11.301252538018939 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.365954680071098, -11.783969797360021 ], [ 130.3648528266433, -11.783538344466425 ], [ 130.364610418889157, -11.782373418268321 ], [ 130.365800420591199, -11.781359497000469 ], [ 130.36729894125304, -11.781467361143019 ], [ 130.367673571418493, -11.78036714490179 ], [ 130.367188755910263, -11.779482654140425 ], [ 130.368356720543716, -11.779137486241625 ], [ 130.368995795531873, -11.780388717811613 ], [ 130.368885610189096, -11.781467361143019 ], [ 130.368599128297831, -11.78233027275869 ], [ 130.367453200732911, -11.78308531819871 ], [ 130.366703940402004, -11.783430481137129 ], [ 130.365954680071098, -11.783969797360021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.433032466987441, -38.085262502656995 ], [ 144.433483917100318, -38.086076237860162 ], [ 144.438413428218354, -38.086792176402589 ], [ 144.442961489071308, -38.086769081720327 ], [ 144.443568237328236, -38.085615786440833 ], [ 144.44423495172353, -38.086590341975608 ], [ 144.446139849995774, -38.087240038448172 ], [ 144.447473278786362, -38.086465399684315 ], [ 144.446679571172922, -38.085940639729209 ], [ 144.44617159830031, -38.085490842484027 ], [ 144.447917755049872, -38.084241391172014 ], [ 144.447695516918117, -38.0820922849677 ], [ 144.447187544045505, -38.079993096995771 ], [ 144.445758870341336, -38.079018453523872 ], [ 144.440393406874506, -38.079693208080315 ], [ 144.437917039120606, -38.081592483773825 ], [ 144.435726406107534, -38.082017315006418 ], [ 144.434075494271582, -38.082192244796516 ], [ 144.426969920265805, -38.082357863637341 ], [ 144.425814254278919, -38.084731312005225 ], [ 144.429951522538687, -38.085008455435485 ], [ 144.433032466987441, -38.085262502656995 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.800228690500774, -37.892335359517539 ], [ 144.801419251920919, -37.892347886861721 ], [ 144.803625759086259, -37.891245472412564 ], [ 144.804895691267745, -37.89117030718991 ], [ 144.805800517947091, -37.889666986621329 ], [ 144.80616562344926, -37.889028066084684 ], [ 144.806673596321843, -37.888050882775069 ], [ 144.807483178087551, -37.886459800151073 ], [ 144.807800661132916, -37.886083948842071 ], [ 144.807102198433114, -37.885069140725349 ], [ 144.806356113276479, -37.884567995756278 ], [ 144.805181426008573, -37.885144312176578 ], [ 144.804832194658673, -37.886347044959805 ], [ 144.804895691267745, -37.887123799441916 ], [ 144.803562262477186, -37.888389140003689 ], [ 144.802435197666114, -37.889203456588 ], [ 144.801324007007281, -37.890318429303122 ], [ 144.800720789221117, -37.891120196998813 ], [ 144.800228690500774, -37.892335359517539 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.514974523842312, -34.810602354586926 ], [ 138.511408018047746, -34.808650160323772 ], [ 138.511160344034238, -34.81239182536838 ], [ 138.511160344034238, -34.816336657776482 ], [ 138.510466856796398, -34.819183326719298 ], [ 138.508237790674769, -34.822721192448462 ], [ 138.506008724553169, -34.826055593457937 ], [ 138.505761050539604, -34.828983248894787 ], [ 138.505661980934235, -34.835712395626537 ], [ 138.505117098104506, -34.838029859625273 ], [ 138.50363105402343, -34.839371519490861 ], [ 138.502491753561259, -34.840713157489503 ], [ 138.501154313888264, -34.840469224934417 ], [ 138.499618735004503, -34.840550535866427 ], [ 138.495457811577467, -34.840306602829415 ], [ 138.494813859142369, -34.842705246297811 ], [ 138.494813859142369, -34.844981860184269 ], [ 138.496151298815306, -34.850093848491639 ], [ 138.497191529672079, -34.851597911822559 ], [ 138.497587808093698, -34.852288958729517 ], [ 138.500213152636945, -34.852532856252097 ], [ 138.499470130596393, -34.850581655827604 ], [ 138.498925247766664, -34.846028674897788 ], [ 138.499717804609929, -34.844321242104542 ], [ 138.504918958893654, -34.842654428305025 ], [ 138.506949885804488, -34.841963300488345 ], [ 138.511110809231496, -34.842613773888239 ], [ 138.511606157258541, -34.840946925509783 ], [ 138.508237790674769, -34.839564635398517 ], [ 138.508931277912609, -34.837491156708573 ], [ 138.511903366074762, -34.838466917891985 ], [ 138.512596853312601, -34.836678013554142 ], [ 138.509129417123376, -34.835173677545086 ], [ 138.509723834755818, -34.831880305461567 ], [ 138.512101505285557, -34.832002284554555 ], [ 138.512646388115286, -34.830375881790594 ], [ 138.510417321993657, -34.828017540722811 ], [ 138.513736153774744, -34.821979066541822 ], [ 138.516163359107196, -34.817668504419373 ], [ 138.517302659569339, -34.815594474351158 ], [ 138.516212893909881, -34.814130421691111 ], [ 138.516460567923389, -34.81136491791014 ], [ 138.514974523842312, -34.810602354586926 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 122.200949708357513, -18.236711144458017 ], [ 122.201164274274376, -18.235080827672178 ], [ 122.200449054551456, -18.234899680419161 ], [ 122.199662312856248, -18.234899680419161 ], [ 122.199328543652214, -18.235171401227916 ], [ 122.199137818392785, -18.235692198257993 ], [ 122.198994774448195, -18.236665858087015 ], [ 122.198899411818459, -18.23720929376055 ], [ 122.198804049188738, -18.237843299899811 ], [ 122.198756367873898, -18.238409374856388 ], [ 122.198136510780685, -18.238545232571735 ], [ 122.197421291057765, -18.238432017816304 ], [ 122.19680143396458, -18.238069730103586 ], [ 122.196229258186236, -18.237481010960444 ], [ 122.195156428601848, -18.237277223100332 ], [ 122.19436968690664, -18.237843299899811 ], [ 122.193392219951988, -18.238613161389598 ], [ 122.192700840886488, -18.239360376634554 ], [ 122.192367071682483, -18.239813232795875 ], [ 122.192557796941912, -18.240220802332541 ], [ 122.192843884831078, -18.240311373210922 ], [ 122.193439901266856, -18.239677376071334 ], [ 122.194560412166098, -18.238998090856214 ], [ 122.195394835176174, -18.238432017816304 ], [ 122.195919329639636, -18.238749018945711 ], [ 122.196896796594288, -18.23938301947063 ], [ 122.19842259866985, -18.239654733273579 ], [ 122.198970933790761, -18.239835875572972 ], [ 122.199781516143403, -18.239179233839746 ], [ 122.20018680731971, -18.238228231070785 ], [ 122.200234488634592, -18.237526297119146 ], [ 122.200520576523729, -18.236779073992395 ], [ 122.200949708357513, -18.236711144458017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 136.334658189322425, -12.202275252005759 ], [ 136.333930205026121, -12.201864749392188 ], [ 136.334322196570298, -12.200838490075867 ], [ 136.334644189624413, -12.200031163287159 ], [ 136.335316175128725, -12.199305935430754 ], [ 136.335876163048937, -12.19914173262168 ], [ 136.335946161538999, -12.198471236762121 ], [ 136.336142157311059, -12.19770495370274 ], [ 136.336366152479172, -12.197308127676303 ], [ 136.337052137681468, -12.197007086846179 ], [ 136.337304132245578, -12.196637627178275 ], [ 136.337556126809687, -12.196131329760009 ], [ 136.337598125903696, -12.19584397133568 ], [ 136.337892119561815, -12.195748185125023 ], [ 136.338144114125924, -12.196418687872823 ], [ 136.337934118655824, -12.197143923629536 ], [ 136.337360131037599, -12.197718637348236 ], [ 136.337080137077464, -12.197773371923113 ], [ 136.336842142211367, -12.198142830007942 ], [ 136.3367021452313, -12.198895428217325 ], [ 136.3367021452313, -12.199360669677828 ], [ 136.336520149157224, -12.199743809090879 ], [ 136.336030159727017, -12.200085897384454 ], [ 136.335596169088831, -12.200469035748991 ], [ 136.335260176336703, -12.200756389158846 ], [ 136.335162178450673, -12.200934274446904 ], [ 136.334658189322425, -12.202275252005759 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 136.342456021111758, -12.204765620894136 ], [ 136.341616039231411, -12.204259339005032 ], [ 136.342246025641685, -12.203520439376229 ], [ 136.342750014769905, -12.202904688111287 ], [ 136.343505998462234, -12.202179468119478 ], [ 136.344107985476484, -12.201700548168684 ], [ 136.344877968866825, -12.200797439620544 ], [ 136.34570395104916, -12.200085897384454 ], [ 136.346109942291321, -12.199429087470799 ], [ 136.346389936251455, -12.198567021988765 ], [ 136.346795927493616, -12.198047044627996 ], [ 136.347495912393924, -12.197869157401962 ], [ 136.348251896086254, -12.197458647963176 ], [ 136.348839883402491, -12.196870249992177 ], [ 136.349203875550671, -12.197308127676315 ], [ 136.3483358942743, -12.198101779135076 ], [ 136.347425913903891, -12.198744908746416 ], [ 136.346991923265705, -12.19960697364982 ], [ 136.346459934741489, -12.200578503751402 ], [ 136.345619952861114, -12.201385828872548 ], [ 136.344625974302716, -12.202439452873104 ], [ 136.343827991516349, -12.203123622058342 ], [ 136.342960010239977, -12.204259339005032 ], [ 136.342456021111758, -12.204765620894136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 136.351779819983733, -12.212496561947793 ], [ 136.351163833271471, -12.211689270693196 ], [ 136.352941794918252, -12.210909342905877 ], [ 136.353683778912568, -12.210334657802944 ], [ 136.354411763208844, -12.209718922379912 ], [ 136.355377742371303, -12.209281065207971 ], [ 136.356147725761616, -12.208487447238417 ], [ 136.356721713379869, -12.20804958803021 ], [ 136.357628193825747, -12.208200102214681 ], [ 136.358174182047975, -12.208118003579198 ], [ 136.358594172988148, -12.208008538692317 ], [ 136.359098162116396, -12.208555862674304 ], [ 136.358090183859957, -12.208952671853865 ], [ 136.357054206207494, -12.208884256520493 ], [ 136.356746212851363, -12.208952671853865 ], [ 136.355962229763037, -12.209759971452673 ], [ 136.355206246070736, -12.210238876831182 ], [ 136.354632258452483, -12.210608317531328 ], [ 136.35370827838409, -12.211415612082101 ], [ 136.352182311301419, -12.212277635749155 ], [ 136.351779819983733, -12.212496561947793 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.828036760819231, -11.834623372364584 ], [ 133.826720789206661, -11.835171456427743 ], [ 133.826916784978749, -11.83410269148699 ], [ 133.826580792226622, -11.83336277485018 ], [ 133.826048803702406, -11.832184384962201 ], [ 133.825852807930318, -11.830622325424248 ], [ 133.826244799474466, -11.82949873322298 ], [ 133.826832786790732, -11.828923232991144 ], [ 133.827308776522926, -11.828484755811429 ], [ 133.827588770483032, -11.827772228895535 ], [ 133.827588770483032, -11.82711451009539 ], [ 133.827616769879057, -11.826374574555388 ], [ 133.828092759611252, -11.825689447271307 ], [ 133.828680746927517, -11.825250964909273 ], [ 133.828960740887624, -11.824976913076217 ], [ 133.828456751759404, -11.824209566483663 ], [ 133.829156736659712, -11.823387407032717 ], [ 133.829828722163995, -11.824675455742879 ], [ 133.829800722767999, -11.825387990722879 ], [ 133.829352732431801, -11.825908688188848 ], [ 133.828708746323514, -11.826210144163644 ], [ 133.82828875538334, -11.826401979611067 ], [ 133.828260755987316, -11.82692267514752 ], [ 133.828428752363408, -11.827580394408818 ], [ 133.828260755987316, -11.828046277928953 ], [ 133.827966762329197, -11.829142471317448 ], [ 133.827378775012932, -11.829622054543711 ], [ 133.82677678799871, -11.830060529900521 ], [ 133.826622791320631, -11.830827860083653 ], [ 133.826734788904673, -11.831403356308371 ], [ 133.82712678044885, -11.832691367280525 ], [ 133.827588770483032, -11.833266859584013 ], [ 133.827882764141151, -11.833773839895585 ], [ 133.827980762027209, -11.834253415000886 ], [ 133.828036760819231, -11.834623372364584 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.824746831787849, -11.845954786853612 ], [ 133.824676833297843, -11.847831892371889 ], [ 133.825194822124047, -11.848681381140004 ], [ 133.82702878256282, -11.849476061788994 ], [ 133.827238778032921, -11.847749683641203 ], [ 133.827084781354841, -11.846776878449282 ], [ 133.826902785280765, -11.846379534486969 ], [ 133.824746831787849, -11.845954786853612 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.82338886108127, -11.854764739606601 ], [ 133.824018847491544, -11.853778258252825 ], [ 133.825908806722339, -11.852846578145348 ], [ 133.827014782864836, -11.851764181086628 ], [ 133.827658768973095, -11.850626974491034 ], [ 133.827812765651146, -11.849297943913562 ], [ 133.827714767765116, -11.84953086726575 ], [ 133.82693078467679, -11.849407554927568 ], [ 133.826748788602714, -11.849366450802471 ], [ 133.826062803400418, -11.850695481046518 ], [ 133.825194822124047, -11.851558662173003 ], [ 133.823906849907473, -11.852545151547464 ], [ 133.823052868329142, -11.853326119774254 ], [ 133.823010869235105, -11.854024878925495 ], [ 133.823164865913185, -11.854572924067021 ], [ 133.82338886108127, -11.854764739606601 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.309431947884917, -11.759292491289003 ], [ 133.309095955132761, -11.758497549194269 ], [ 133.308500967967518, -11.758757961512648 ], [ 133.30805297763132, -11.758942991168096 ], [ 133.307674985785184, -11.759141726585396 ], [ 133.307275994392029, -11.759203403065039 ], [ 133.306751005716762, -11.75915543247096 ], [ 133.306415012964635, -11.759292491289003 ], [ 133.306226017041553, -11.75973107904813 ], [ 133.306170018249503, -11.760402665199798 ], [ 133.306219017192547, -11.761190748900075 ], [ 133.306289015682552, -11.761567657698054 ], [ 133.306408013115629, -11.76195827172578 ], [ 133.306394013417645, -11.762287209424313 ], [ 133.30631001522957, -11.762472236706939 ], [ 133.306122769268768, -11.762614433515505 ], [ 133.305681778781548, -11.762676109216866 ], [ 133.305184789502363, -11.762799460578089 ], [ 133.304911795391234, -11.763053015980308 ], [ 133.304666800676131, -11.76329971830952 ], [ 133.304505804149073, -11.763464186406116 ], [ 133.304276559094205, -11.763887348661088 ], [ 133.304059563775127, -11.764319076282842 ], [ 133.304045564077114, -11.764689127990836 ], [ 133.304290558792218, -11.765038620813566 ], [ 133.304528553658344, -11.765196235078541 ], [ 133.305018543088551, -11.765257910201118 ], [ 133.305424534330683, -11.76507288479189 ], [ 133.305613530253794, -11.764764508833295 ], [ 133.305368535538662, -11.764360193163871 ], [ 133.305298537048657, -11.763921612782791 ], [ 133.305389535085709, -11.763483031702574 ], [ 133.305746527384855, -11.763256888059905 ], [ 133.306439512436157, -11.763106125528196 ], [ 133.306803504584309, -11.762818305920078 ], [ 133.306971500960373, -11.76233860590418 ], [ 133.306936501715342, -11.761118793525416 ], [ 133.306796504735303, -11.760611678922823 ], [ 133.306719506396263, -11.759979497586038 ], [ 133.307006500205404, -11.759629998337493 ], [ 133.307338993033028, -11.759753351064127 ], [ 133.308136975819366, -11.759636851268214 ], [ 133.308864960115699, -11.759362733906812 ], [ 133.309207952716832, -11.759253086885812 ], [ 133.309431947884917, -11.759292491289003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.390209215061958, -12.236147676911353 ], [ 132.385975168679153, -12.238817249815375 ], [ 132.388843393648131, -12.255234529766701 ], [ 132.388843393648131, -12.261907928782644 ], [ 132.385565422255013, -12.263109122668014 ], [ 132.387750736517091, -12.268581158871978 ], [ 132.393623768596456, -12.27538767944546 ], [ 132.398404143544781, -12.285930765908835 ], [ 132.414247671944906, -12.301944772401272 ], [ 132.425720571820847, -12.313020555971423 ], [ 132.423262093276008, -12.31875842878028 ], [ 132.429818036062272, -12.317957802896791 ], [ 132.431457021758831, -12.309017314613115 ], [ 132.418481718327683, -12.294738590188032 ], [ 132.406325907744844, -12.281927111925837 ], [ 132.39908705425168, -12.263642984860097 ], [ 132.393214022172316, -12.236548114566743 ], [ 132.390209215061958, -12.236147676911353 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.417252479055264, -12.201440776446937 ], [ 132.417525643338024, -12.205579145856602 ], [ 132.42770101287087, -12.203109481567394 ], [ 132.43917391274681, -12.203376473411341 ], [ 132.444295743048571, -12.202041511501013 ], [ 132.445183526967554, -12.19710209395479 ], [ 132.429339998567428, -12.198303582371464 ], [ 132.422374309357025, -12.198704077300032 ], [ 132.417252479055264, -12.201440776446937 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.941081179355052, -13.255076872695374 ], [ 135.940311195964711, -13.255110939521215 ], [ 135.940283196568714, -13.25405486570153 ], [ 135.940304196115733, -13.252351511169829 ], [ 135.940423193548781, -13.251438508231329 ], [ 135.94087118388498, -13.251438508231329 ], [ 135.940997181167035, -13.251935890854011 ], [ 135.940773185998921, -13.252371951494906 ], [ 135.940766186149915, -13.253264510681968 ], [ 135.940857184186967, -13.254095746063742 ], [ 135.940885183582964, -13.254518176070842 ], [ 135.941081179355052, -13.255076872695374 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.869332727074351, -13.651948334836973 ], [ 135.869178730396271, -13.651132083212369 ], [ 135.868604742778018, -13.650737560581405 ], [ 135.86805875455579, -13.650778373297952 ], [ 135.867470767239524, -13.650982436774843 ], [ 135.866826781131266, -13.65132254217739 ], [ 135.866518787775107, -13.651948334836973 ], [ 135.865692805592772, -13.652288438846973 ], [ 135.864768825524379, -13.652506105156034 ], [ 135.863970842738041, -13.652832604243031 ], [ 135.865090818578523, -13.653948139380319 ], [ 135.866168795324995, -13.653403976557801 ], [ 135.867876758481714, -13.652601334103093 ], [ 135.868520744589972, -13.652166001459868 ], [ 135.869178730396271, -13.651921126494988 ], [ 135.869332727074351, -13.651948334836973 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.870592699894843, -13.656818577489805 ], [ 135.870200708350694, -13.655947926967949 ], [ 135.868576743381965, -13.657036239617991 ], [ 135.86835274821388, -13.657852470809287 ], [ 135.868520744589972, -13.658859152053829 ], [ 135.86810075364977, -13.659104019814777 ], [ 135.867344769957469, -13.658940774669075 ], [ 135.866532787473119, -13.659430509767079 ], [ 135.865412811632638, -13.659702584381945 ], [ 135.866336791701031, -13.661824755601502 ], [ 135.868016755461753, -13.663566010025001 ], [ 135.869752718014496, -13.66264097021417 ], [ 135.870284706538712, -13.662232863261126 ], [ 135.871040690231041, -13.661607097894111 ], [ 135.870816695062928, -13.66038276954542 ], [ 135.870956692043023, -13.660001866095657 ], [ 135.872160666071522, -13.659539339650696 ], [ 135.871068689627037, -13.658777529410351 ], [ 135.870648698686864, -13.657117862864272 ], [ 135.870592699894843, -13.656818577489805 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.441193962654751, -14.694082775762016 ], [ 135.440605975338485, -14.694082775762016 ], [ 135.438226026677484, -14.69367652068695 ], [ 135.440381980170429, -14.69234941551119 ], [ 135.4412499614468, -14.691022302275551 ], [ 135.442677930643413, -14.689749349354608 ], [ 135.444385893800131, -14.687934701521932 ], [ 135.444609888968216, -14.687257590262231 ], [ 135.444497891384145, -14.686770068856557 ], [ 135.445281874472499, -14.686688815183237 ], [ 135.445589867828659, -14.686715899744369 ], [ 135.446765842461133, -14.684738717963526 ], [ 135.4469058394412, -14.683384473549415 ], [ 135.446625845481094, -14.682490667641366 ], [ 135.445981859372807, -14.681217665041064 ], [ 135.447129834609285, -14.681326005976407 ], [ 135.448249810449767, -14.684251190940738 ], [ 135.448165812261749, -14.685822107455328 ], [ 135.447577824945483, -14.686905491578303 ], [ 135.445197876284482, -14.689749349354608 ], [ 135.44432989500811, -14.691157722362716 ], [ 135.443097921583558, -14.692620253956763 ], [ 135.442285939099236, -14.694028608462324 ], [ 135.441193962654751, -14.694082775762016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.437890033925385, -14.702586875226283 ], [ 135.437750036945317, -14.704103495113529 ], [ 135.436658060500832, -14.703020196268985 ], [ 135.435790079224461, -14.702966031185682 ], [ 135.435118093720178, -14.704103495113529 ], [ 135.43391411969165, -14.704807636480213 ], [ 135.432710145663123, -14.704563895494895 ], [ 135.431618169218666, -14.703778506024523 ], [ 135.430638190358223, -14.702884783535504 ], [ 135.430078202438011, -14.702478544831234 ], [ 135.430554192170206, -14.702126470676189 ], [ 135.432178157138907, -14.703101443868757 ], [ 135.433522128147473, -14.703697258676677 ], [ 135.43441810881987, -14.702938948638973 ], [ 135.435062094928156, -14.702288966510599 ], [ 135.436014074392546, -14.701747313259002 ], [ 135.437218048421073, -14.702153553323658 ], [ 135.437638039361246, -14.702316049137915 ], [ 135.437890033925385, -14.702586875226283 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.398215987793805, -14.722775431070328 ], [ 135.393351, -14.719148999535774 ], [ 135.39266, -14.718469999535799 ], [ 135.391381, -14.718009999535761 ], [ 135.389291, -14.716769999535806 ], [ 135.38708, -14.714618999535888 ], [ 135.392643509363751, -14.716819261566455 ], [ 135.397681439928647, -14.719850483495637 ], [ 135.398940922569835, -14.719822154513761 ], [ 135.400370843269258, -14.718835825627632 ], [ 135.399922852933059, -14.716831853825568 ], [ 135.400762834813406, -14.715206998308675 ], [ 135.403730770790702, -14.714123754574086 ], [ 135.405298736967353, -14.71423207918957 ], [ 135.405001, -14.715648999535826 ], [ 135.403058785286419, -14.71612775125417 ], [ 135.402543628729575, -14.717130884455161 ], [ 135.401928532555985, -14.718887296047024 ], [ 135.40154681790176, -14.719919045962639 ], [ 135.401254855794406, -14.721805174359025 ], [ 135.398215987793805, -14.722775431070328 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.413600557884934, -14.869744088850076 ], [ 135.41186459533219, -14.86963584184449 ], [ 135.411444604392017, -14.871367787417634 ], [ 135.410660621303663, -14.87212550923442 ], [ 135.409148653919004, -14.871773710150411 ], [ 135.407580687742353, -14.871340725874965 ], [ 135.404752748745153, -14.870231199703225 ], [ 135.403744770488714, -14.869771150592982 ], [ 135.40346477652858, -14.870772432694849 ], [ 135.405452733645433, -14.871773710150411 ], [ 135.408000678682527, -14.872883228390153 ], [ 135.40998863579938, -14.873532699834101 ], [ 135.41186459533219, -14.873803312358691 ], [ 135.412088590500275, -14.874966942346251 ], [ 135.411472603788013, -14.876076444162956 ], [ 135.411136611035857, -14.876834149441112 ], [ 135.411332606807946, -14.877375365867264 ], [ 135.412536580836473, -14.876563540718761 ], [ 135.41318056694476, -14.8746151478957 ], [ 135.412928572380622, -14.872964412427569 ], [ 135.412844574192604, -14.872450246341298 ], [ 135.41368455607298, -14.870095891243212 ], [ 135.413600557884934, -14.869744088850076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.431128179788402, -14.91081990377476 ], [ 135.430036203343946, -14.910414054594931 ], [ 135.428412238375245, -14.912822081858014 ], [ 135.426144287298285, -14.915230082168684 ], [ 135.423008354944955, -14.917854501245522 ], [ 135.419396432859401, -14.920100112762153 ], [ 135.418080461246831, -14.920614165112019 ], [ 135.416820488426282, -14.921534045197156 ], [ 135.418024462454781, -14.922643307124265 ], [ 135.426312283674349, -14.918206225080024 ], [ 135.431296176164494, -14.912984419804918 ], [ 135.431772165896689, -14.911604543351798 ], [ 135.431128179788402, -14.91081990377476 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.531842007243625, -15.014097101542605 ], [ 135.530106044690882, -15.015827882108846 ], [ 135.529882049522769, -15.017720907294684 ], [ 135.529378060394549, -15.019830258450559 ], [ 135.530386038651017, -15.021885503637442 ], [ 135.53251399274788, -15.022750864113277 ], [ 135.534921940804935, -15.021128310343897 ], [ 135.536545905773636, -15.022264099277214 ], [ 135.539401844166861, -15.022588609291239 ], [ 135.541753793431894, -15.023075373387428 ], [ 135.54248177772817, -15.024481574541939 ], [ 135.541417800679739, -15.025076503011098 ], [ 135.539233847790769, -15.025401008749951 ], [ 135.537833877990181, -15.026374523006425 ], [ 135.5367139021497, -15.027456200305862 ], [ 135.537945875574252, -15.028159287610695 ], [ 135.54096981034354, -15.027131697691638 ], [ 135.543489755984609, -15.026536774950811 ], [ 135.544497734241048, -15.025455092991784 ], [ 135.544497734241048, -15.022804949026565 ], [ 135.542817770480326, -15.021398736828429 ], [ 135.540913811551519, -15.020425199881192 ], [ 135.538225869534358, -15.020425199881192 ], [ 135.536433908189593, -15.019343486956183 ], [ 135.53357796979634, -15.018802628438831 ], [ 135.532177999995753, -15.019884344103657 ], [ 135.53150601449147, -15.019776172783747 ], [ 135.532010003619689, -15.018099510318393 ], [ 135.532625990331951, -15.016639180671561 ], [ 135.53256999153993, -15.015395188282035 ], [ 135.531842007243625, -15.014097101542605 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.626843957912342, -15.048547811449417 ], [ 135.625695982675865, -15.049980883684272 ], [ 135.626927956100388, -15.051332829787919 ], [ 135.627039953684431, -15.052495496576183 ], [ 135.628103930732891, -15.05382038820481 ], [ 135.629839893285634, -15.054820811117452 ], [ 135.631099866106183, -15.054685619106515 ], [ 135.63219184255064, -15.055199348291618 ], [ 135.632723831074884, -15.054334119476536 ], [ 135.631183864294229, -15.053604079930285 ], [ 135.629979890265702, -15.053604079930285 ], [ 135.628663918653132, -15.052819960594007 ], [ 135.628439923485047, -15.052035838371721 ], [ 135.628215928316934, -15.050710935645617 ], [ 135.62804793194087, -15.049629376292279 ], [ 135.628887913821245, -15.049250829221702 ], [ 135.629559899325528, -15.048872281478655 ], [ 135.629587898721525, -15.048547811449417 ], [ 135.629335904157386, -15.048115183975288 ], [ 135.628327925900976, -15.048385576249546 ], [ 135.627291948248541, -15.048520772258019 ], [ 135.626843957912342, -15.048547811449417 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.737693566723863, -15.114999762039654 ], [ 135.736657589071427, -15.11537819206317 ], [ 135.737917561891976, -15.116459416981693 ], [ 135.739849520216779, -15.117378453828961 ], [ 135.740773500285172, -15.117837970759217 ], [ 135.74021351236496, -15.119216515576188 ], [ 135.739317531692564, -15.120432871208102 ], [ 135.73940152988061, -15.121324860903744 ], [ 135.740017516592872, -15.121730309524951 ], [ 135.73934553108856, -15.122189817025038 ], [ 135.739009538336433, -15.123325066579206 ], [ 135.740521505721063, -15.123325066579206 ], [ 135.740493506325066, -15.122487144876771 ], [ 135.741305488809417, -15.121730309524951 ], [ 135.741389486997463, -15.121000501448577 ], [ 135.740325509948974, -15.120865351529151 ], [ 135.740633503305133, -15.120432871208102 ], [ 135.741529483977502, -15.119135424952642 ], [ 135.742033473105721, -15.118081244025115 ], [ 135.742509462837944, -15.117892031509093 ], [ 135.74234146646188, -15.117513605970615 ], [ 135.741753479145615, -15.117162210223164 ], [ 135.740941496661264, -15.116783783382516 ], [ 135.739681523840716, -15.116162080678526 ], [ 135.738281554040128, -15.1155133454794 ], [ 135.737693566723863, -15.114999762039654 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.760429076285618, -15.126838895716846 ], [ 135.760093083533462, -15.125865841171892 ], [ 135.759029106485031, -15.125379312224313 ], [ 135.75734914272428, -15.124784664216314 ], [ 135.756705156616022, -15.124811693707414 ], [ 135.756537160239958, -15.125406341639577 ], [ 135.75760113728839, -15.12605504657215 ], [ 135.759029106485031, -15.126514544698201 ], [ 135.759057105880999, -15.127568683693996 ], [ 135.758833110712942, -15.128406585309586 ], [ 135.758077127020613, -15.128244411061875 ], [ 135.75740514151633, -15.127649771091887 ], [ 135.75760113728839, -15.1265956324994 ], [ 135.757377142120305, -15.126109105226906 ], [ 135.756705156616022, -15.126109105226906 ], [ 135.756537160239958, -15.126676720269558 ], [ 135.756481161447908, -15.128001149457633 ], [ 135.756817154200064, -15.12886607833749 ], [ 135.758385120376715, -15.129352599281127 ], [ 135.759589094405243, -15.129190425757349 ], [ 135.759953086553423, -15.128109265760653 ], [ 135.75998108594942, -15.127244333792147 ], [ 135.760289079305551, -15.126919983393952 ], [ 135.760429076285618, -15.126838895716846 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 136.126605177330674, -15.365452985857113 ], [ 136.125597199074235, -15.364697024600671 ], [ 136.124421224441733, -15.366613921021388 ], [ 136.124225228669644, -15.368395808929989 ], [ 136.123805237729442, -15.369421737483316 ], [ 136.123077253433138, -15.369799709888042 ], [ 136.122741260680982, -15.370609648447342 ], [ 136.124337226253687, -15.370744637901234 ], [ 136.125597199074235, -15.370663644239377 ], [ 136.125541200282214, -15.372877459668965 ], [ 136.125961191222359, -15.373444408618496 ], [ 136.126633176726642, -15.372850462061463 ], [ 136.126941170082802, -15.372391502198898 ], [ 136.126661176122695, -15.371473579441489 ], [ 136.126661176122695, -15.370744637901234 ], [ 136.127053167666872, -15.369988695833383 ], [ 136.126521179142628, -15.369367741369551 ], [ 136.125317205114101, -15.369151756774617 ], [ 136.125317205114101, -15.368962770070457 ], [ 136.125485201490164, -15.367747851452702 ], [ 136.126017190014409, -15.366667917848451 ], [ 136.126801173102734, -15.365479984422725 ], [ 136.126605177330674, -15.365452985857113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 136.185067916203735, -15.393799553344907 ], [ 136.184059937947325, -15.394636393360923 ], [ 136.186299889628259, -15.395527219357279 ], [ 136.188147849765073, -15.396391046984236 ], [ 136.188483842517201, -15.39741683763309 ], [ 136.188679838289289, -15.398955514123115 ], [ 136.18898783164542, -15.399198462002264 ], [ 136.189659817149703, -15.398469617513621 ], [ 136.189883812317817, -15.396795964949803 ], [ 136.188427843725208, -15.395041314741146 ], [ 136.186103893856171, -15.394312455689429 ], [ 136.185571905331983, -15.393880538009661 ], [ 136.185067916203735, -15.393799553344907 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 136.750907710210413, -15.716675977181556 ], [ 136.749535739805822, -15.717349790594461 ], [ 136.748555760945408, -15.718535696784963 ], [ 136.747575782084994, -15.719856356912373 ], [ 136.747911774837149, -15.720799680329188 ], [ 136.747379786312905, -15.721527383978033 ], [ 136.747071792956774, -15.722147277626846 ], [ 136.746735800204618, -15.723656576007567 ], [ 136.746875797184686, -15.724411221000549 ], [ 136.747379786312905, -15.724492075655247 ], [ 136.748023772421163, -15.723440962638451 ], [ 136.747911774837149, -15.722443747834985 ], [ 136.748359765173348, -15.722093373906246 ], [ 136.74917174765767, -15.721365672280896 ], [ 136.748975751885581, -15.720206734691773 ], [ 136.749059750073627, -15.719613787327201 ], [ 136.750123727122059, -15.718886076837428 ], [ 136.750767713230346, -15.717969696964831 ], [ 136.751439698734629, -15.717538457950473 ], [ 136.752503675783117, -15.718104458969483 ], [ 136.752979665515312, -15.717484553009458 ], [ 136.752139683634937, -15.716675977181556 ], [ 136.751159704774523, -15.716487309026336 ], [ 136.750963709002434, -15.716568166828546 ], [ 136.750907710210413, -15.716675977181556 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 136.782757023174071, -15.704883881567786 ], [ 136.781833043105678, -15.703967438695473 ], [ 136.780125079948931, -15.703967438695473 ], [ 136.779649090216736, -15.703738327333413 ], [ 136.779201099880567, -15.703064468893269 ], [ 136.778221121020124, -15.702943174137417 ], [ 136.777899127966009, -15.70310490046251 ], [ 136.778347118302207, -15.703563124353334 ], [ 136.778767109242381, -15.704075255717891 ], [ 136.780013082364917, -15.704816496202852 ], [ 136.78109105911139, -15.704829973277633 ], [ 136.782015039179782, -15.705099514585809 ], [ 136.78260302649602, -15.7050186522308 ], [ 136.782757023174071, -15.704883881567786 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.886943352906854, -17.38055483548079 ], [ 140.886149923423346, -17.38232163370148 ], [ 140.88683756230904, -17.383179786683623 ], [ 140.886520190515654, -17.384037935642024 ], [ 140.887207829401348, -17.38529991209446 ], [ 140.888477316574978, -17.387117142896738 ], [ 140.890540233232088, -17.388429576140989 ], [ 140.891174976818888, -17.388076229655169 ], [ 140.889112060161779, -17.386107572456815 ], [ 140.88890047896615, -17.385552306340614 ], [ 140.891069186221102, -17.387167621272511 ], [ 140.893026312280426, -17.38736953463636 ], [ 140.894242904155135, -17.387016186103395 ], [ 140.893608160568334, -17.385602785148091 ], [ 140.889746803748579, -17.384643685425271 ], [ 140.888953374265071, -17.383028348214456 ], [ 140.888636002471657, -17.38222067426258 ], [ 140.892867626383719, -17.381564436552313 ], [ 140.893661055867227, -17.380504355281044 ], [ 140.893343684073812, -17.37979763102285 ], [ 140.890540233232088, -17.380201473790201 ], [ 140.888424421276056, -17.380352914598273 ], [ 140.886943352906854, -17.38055483548079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.898421632768304, -17.334965550013326 ], [ 140.898421632768304, -17.336278356797237 ], [ 140.900696130621014, -17.336530818563823 ], [ 140.903922743853968, -17.337742630209561 ], [ 140.906779089994586, -17.338348533031969 ], [ 140.906144346407785, -17.336833772225354 ], [ 140.901595350702308, -17.33541998419339 ], [ 140.899479538746277, -17.334713086093839 ], [ 140.899320852849598, -17.33466259326827 ], [ 140.898421632768304, -17.334965550013326 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.89498343833975, -17.345720190460785 ], [ 140.894613171247471, -17.347436835287198 ], [ 140.898368737469383, -17.348345640749965 ], [ 140.9005903400232, -17.348850530727937 ], [ 140.901912722495723, -17.349456396866842 ], [ 140.901754036599016, -17.34753781389432 ], [ 140.897152145594674, -17.346073618650106 ], [ 140.895247914834272, -17.345720190460785 ], [ 140.89498343833975, -17.345720190460785 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.901013502414429, -17.321332001590115 ], [ 140.900749025919907, -17.323250858491672 ], [ 140.902547466082524, -17.323351850404965 ], [ 140.904345906245169, -17.324058792243228 ], [ 140.906144346407785, -17.324260775125847 ], [ 140.908577530157203, -17.324109287984701 ], [ 140.909212273744032, -17.323856809138491 ], [ 140.908577530157203, -17.322745898092418 ], [ 140.904821963935291, -17.3224429211866 ], [ 140.901912722495723, -17.321382498081146 ], [ 140.901013502414429, -17.321332001590115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.90207140839243, -17.308959943110107 ], [ 140.902124303691323, -17.310727431023825 ], [ 140.905721184016556, -17.310070937496661 ], [ 140.907889891271481, -17.309111442739979 ], [ 140.908048577168188, -17.308454943442296 ], [ 140.906831985293479, -17.307848942010001 ], [ 140.903869848555047, -17.308454943442296 ], [ 140.90207140839243, -17.308959943110107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.085036247289622, -16.805551988685245 ], [ 141.084454399001714, -16.80684320788227 ], [ 141.08768101223464, -16.808590137511889 ], [ 141.090537358375258, -16.809121808553442 ], [ 141.092732513279657, -16.809805383416911 ], [ 141.095112801730153, -16.809324349510579 ], [ 141.096752555996119, -16.808007829423019 ], [ 141.097122823088426, -16.807349565952503 ], [ 141.099556006837844, -16.806184940370212 ], [ 141.102756172421323, -16.806159622343358 ], [ 141.103946316646585, -16.803678439320933 ], [ 141.100322988671877, -16.802564428225235 ], [ 141.095879783564243, -16.802463154164926 ], [ 141.094107791051044, -16.802918887010616 ], [ 141.085036247289622, -16.805551988685245 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.23298439831467, -16.617269445271702 ], [ 141.232032282934455, -16.618536596138739 ], [ 141.233724932499285, -16.620564020128203 ], [ 141.23483573377618, -16.621374983728003 ], [ 141.236634173938796, -16.621374983728003 ], [ 141.237956556411291, -16.620462649437311 ], [ 141.239543415378336, -16.62051333478945 ], [ 141.240336844861844, -16.621172243149282 ], [ 141.240971588448673, -16.619955795179798 ], [ 141.239754996573936, -16.61909413987048 ], [ 141.237374708123383, -16.619448939583918 ], [ 141.236475488042089, -16.619246196970828 ], [ 141.235682058558581, -16.619955795179798 ], [ 141.234518361982765, -16.618536596138739 ], [ 141.23298439831467, -16.617269445271702 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.270592955833024, -16.560746020124995 ], [ 141.266414227219883, -16.560036203414338 ], [ 141.263081823389143, -16.566424459664216 ], [ 141.261283383226498, -16.571899939246563 ], [ 141.256893073417757, -16.577425959836273 ], [ 141.255041737956248, -16.580974696742238 ], [ 141.255835167439756, -16.587007399281461 ], [ 141.256945968716678, -16.59096150502549 ], [ 141.256417015727664, -16.593141297788108 ], [ 141.254248308472739, -16.59278644948737 ], [ 141.250545637549664, -16.59096150502549 ], [ 141.249963789261784, -16.594357915561812 ], [ 141.253137507195817, -16.595422449798612 ], [ 141.25800387469468, -16.595219681826993 ], [ 141.26048995374299, -16.591316356693927 ], [ 141.259802314857296, -16.586753928192095 ], [ 141.258638618281481, -16.582444868574402 ], [ 141.259484943063882, -16.580315650550578 ], [ 141.263504985780344, -16.57671620460286 ], [ 141.266255541323176, -16.570581782464817 ], [ 141.267789504991299, -16.566576558421406 ], [ 141.270592955833024, -16.560746020124995 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.299791160826175, -16.497105644658088 ], [ 141.299632474929467, -16.498056601357895 ], [ 141.301576377164054, -16.49884272203364 ], [ 141.303678965295347, -16.499020232711832 ], [ 141.304564961551961, -16.498728607940205 ], [ 141.305093914540976, -16.498335547769795 ], [ 141.304776542747561, -16.497232439154807 ], [ 141.30110031947396, -16.496737940147668 ], [ 141.300095308794852, -16.496382914439991 ], [ 141.299791160826175, -16.497105644658088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.299632474929467, -16.498056601357895 ], [ 141.299791160826175, -16.497105644658088 ], [ 141.300095308794852, -16.496382914439991 ], [ 141.300020927079828, -16.496159698207965 ], [ 141.298338802812964, -16.495542533771282 ], [ 141.297877307022446, -16.495142365955441 ], [ 141.296665575907184, -16.493811617094511 ], [ 141.296327334861559, -16.496367262018449 ], [ 141.297206761580185, -16.49627645287876 ], [ 141.298622760031606, -16.497407750573686 ], [ 141.299632474929467, -16.498056601357895 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.290211936756606, -16.424978145787936 ], [ 141.290022521771078, -16.423784211392601 ], [ 141.291889612342914, -16.423965897534544 ], [ 141.293080220823526, -16.424433089691178 ], [ 141.295353200650169, -16.424433089691178 ], [ 141.298032069731505, -16.42453691001792 ], [ 141.297815595462339, -16.425341515669942 ], [ 141.293323754376388, -16.425652975028086 ], [ 141.291808434491969, -16.425211740790068 ], [ 141.290211936756606, -16.424978145787936 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.298059129015201, -16.399384816122332 ], [ 141.29356728792925, -16.401669144645719 ], [ 141.298329721851729, -16.4057704854002 ], [ 141.302767444370375, -16.407587507472496 ], [ 141.309802858119411, -16.407120274845834 ], [ 141.314132343503474, -16.404524517602066 ], [ 141.321005401550678, -16.396840873266665 ], [ 141.326254902578796, -16.389572281979998 ], [ 141.328744356674633, -16.385159076370172 ], [ 141.330476150828275, -16.385159076370172 ], [ 141.332316182116472, -16.387703171807431 ], [ 141.333452672029807, -16.390506830341344 ], [ 141.33807980953398, -16.394712242479514 ], [ 141.343166954860237, -16.394971832845684 ], [ 141.348416455888412, -16.391908644476519 ], [ 141.350040012907385, -16.388274290707169 ], [ 141.351934162762916, -16.386768609996654 ], [ 141.355018921099088, -16.389001166885414 ], [ 141.357508375194868, -16.393518122338282 ], [ 141.362893172641265, -16.396373614843274 ], [ 141.367114420890744, -16.395906355298624 ], [ 141.372147447649695, -16.392843181628432 ], [ 141.375394561687727, -16.38952036249513 ], [ 141.376585170168312, -16.389728040351574 ], [ 141.379778165639067, -16.396114026345781 ], [ 141.38259233113871, -16.397723469451513 ], [ 141.387043583299146, -16.39746388275362 ], [ 141.389911867366067, -16.394400733583339 ], [ 141.393429574240599, -16.397931138560633 ], [ 141.395486079798019, -16.40042315059231 ], [ 141.398354363864996, -16.399229065474177 ], [ 141.399599090912886, -16.395075668895242 ], [ 141.397650822490078, -16.3940892241889 ], [ 141.395053131259658, -16.393414285458228 ], [ 141.392076610058098, -16.390247234024027 ], [ 141.391102475846708, -16.388430050116522 ], [ 141.391427187250514, -16.384536027526106 ], [ 141.392888388567599, -16.382199576619556 ], [ 141.394295471317434, -16.381524596698377 ], [ 141.396784925413272, -16.381991890738938 ], [ 141.399112023807191, -16.383030317928878 ], [ 141.399815565182081, -16.383497608359207 ], [ 141.401980307874112, -16.380693848971102 ], [ 141.396906692189702, -16.376747748916394 ], [ 141.392739562507529, -16.376903517538082 ], [ 141.391386598325028, -16.376020827036299 ], [ 141.38970892273872, -16.37477466893661 ], [ 141.387002994373688, -16.37565736507992 ], [ 141.384675895979768, -16.373009264662635 ], [ 141.381266426239819, -16.374566975145701 ], [ 141.381266426239819, -16.377215054408111 ], [ 141.383539406066433, -16.379291954152556 ], [ 141.386137097296853, -16.379240031928632 ], [ 141.388193602854273, -16.379291954152556 ], [ 141.388680669959996, -16.379966941805232 ], [ 141.386137097296853, -16.383757213669682 ], [ 141.384838251681657, -16.386560928985478 ], [ 141.383918236037545, -16.389883798598611 ], [ 141.383864117470239, -16.391908644476519 ], [ 141.382186441883931, -16.38640516808184 ], [ 141.377856956499897, -16.384276423253141 ], [ 141.373256878279307, -16.38448410669918 ], [ 141.368710918626078, -16.387443571754094 ], [ 141.366059108828352, -16.389312684417291 ], [ 141.3637590697181, -16.390870264604356 ], [ 141.361107259920374, -16.38702821094931 ], [ 141.356182470296005, -16.382666869041767 ], [ 141.350445902162136, -16.381005379783765 ], [ 141.34681995815302, -16.383134160343555 ], [ 141.343951674086071, -16.386353247752965 ], [ 141.342003405663263, -16.389468442996428 ], [ 141.338769821267022, -16.386768609996654 ], [ 141.335468588661683, -16.382563026378101 ], [ 141.330814391873844, -16.379499642910023 ], [ 141.326904325386437, -16.380122707854706 ], [ 141.320897164416039, -16.385574441159491 ], [ 141.315052359147586, -16.393933469304816 ], [ 141.309424028148356, -16.399903984049583 ], [ 141.3054192541681, -16.402967046636942 ], [ 141.299520330332342, -16.400111650832823 ], [ 141.298275603284424, -16.399125231639516 ], [ 141.298059129015201, -16.399384816122332 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.327391392492075, -16.327181052511698 ], [ 141.327053151446449, -16.328284691005869 ], [ 141.329326131273092, -16.328972838914741 ], [ 141.331382636830512, -16.329076710086884 ], [ 141.33223500426547, -16.329128645652272 ], [ 141.333033253133181, -16.329128645652272 ], [ 141.333019723491333, -16.328414530419302 ], [ 141.334548573017571, -16.32671362727217 ], [ 141.335062699406933, -16.325869662204987 ], [ 141.335617414721781, -16.325103598452827 ], [ 141.33564447400542, -16.324545278912975 ], [ 141.335333292243433, -16.324467373734215 ], [ 141.334183272688307, -16.324727057542766 ], [ 141.333222668118708, -16.326025471414535 ], [ 141.332532656385609, -16.327258956609679 ], [ 141.331396166472331, -16.327804284426758 ], [ 141.329204364496661, -16.327713396562835 ], [ 141.327391392492075, -16.327181052511698 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.338742761983411, -16.292705446336679 ], [ 141.338431580221425, -16.29370538928427 ], [ 141.33766039063741, -16.294549492996804 ], [ 141.337268031024479, -16.295406579200847 ], [ 141.338607465565161, -16.296718173559629 ], [ 141.339243358730954, -16.296003940096291 ], [ 141.338188046668591, -16.29470532713086 ], [ 141.338986295536273, -16.293614485590723 ], [ 141.341056330735512, -16.29313399393881 ], [ 141.340988682526387, -16.292549610612703 ], [ 141.339026884461731, -16.292653501109111 ], [ 141.338742761983411, -16.292705446336679 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.641434673716589, -15.098532216463246 ], [ 141.639865235264864, -15.101980712004041 ], [ 141.646142989071762, -15.105063410603893 ], [ 141.649227747407878, -15.108146064436434 ], [ 141.651987794340215, -15.113266305742691 ], [ 141.651176015830714, -15.118752141441915 ], [ 141.654856078407107, -15.119117858776933 ], [ 141.656371398291554, -15.115042687120637 ], [ 141.654693722705218, -15.107728080099916 ], [ 141.649931288782795, -15.102503206442618 ], [ 141.641597029418506, -15.097905211257329 ], [ 141.641434673716589, -15.098532216463246 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.644884732381996, -15.073150089828244 ], [ 141.651419549383547, -15.07338524438239 ], [ 141.651460138309034, -15.079851892748863 ], [ 141.65438254094326, -15.083614215858058 ], [ 141.659686160538712, -15.089414333529975 ], [ 141.664394475893857, -15.095736803983346 ], [ 141.670618111133422, -15.101797838646771 ], [ 141.672349905287064, -15.104723793460789 ], [ 141.668994554114448, -15.106552494740122 ], [ 141.664232120191969, -15.101327592147664 ], [ 141.6590367377311, -15.095214292896665 ], [ 141.654707252347038, -15.091086410130755 ], [ 141.649241277049725, -15.089571091270226 ], [ 141.643612946050439, -15.083196183244803 ], [ 141.643342353213939, -15.077448151466488 ], [ 141.644884732381996, -15.073150089828244 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.669238087667225, -15.03425456573205 ], [ 141.667993360619334, -15.035900942737873 ], [ 141.672404023854313, -15.040238954623888 ], [ 141.675109952219373, -15.042904436227756 ], [ 141.676544094252819, -15.042120474509286 ], [ 141.672404023854313, -15.037677970324671 ], [ 141.670293399729587, -15.03524762004999 ], [ 141.669238087667225, -15.03425456573205 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.62002, -14.918038999530074 ], [ 141.619733128229058, -14.917022164086083 ], [ 141.622773915229288, -14.917433984866445 ], [ 141.624816891144889, -14.918205329603213 ], [ 141.625818084639945, -14.918375286546146 ], [ 141.626533464451427, -14.918649832093308 ], [ 141.626459051421421, -14.919225069246073 ], [ 141.622839872233186, -14.918519096162186 ], [ 141.621305949091266, -14.918519096162186 ], [ 141.62002, -14.918038999530074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.592711051093801, -14.849080567755708 ], [ 141.592575754675551, -14.850336033754562 ], [ 141.594726967725762, -14.851787657222857 ], [ 141.597838785345544, -14.853631597295598 ], [ 141.600274120874104, -14.854782417166025 ], [ 141.600260591232257, -14.853409279114079 ], [ 141.595592864802569, -14.850676054540667 ], [ 141.593143999632247, -14.849276734798833 ], [ 141.592711051093801, -14.849080567755708 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.574324267853427, -14.76702792791035 ], [ 141.573093070447328, -14.765876641904915 ], [ 141.574446034629858, -14.764777681393504 ], [ 141.575447228124915, -14.764424442906435 ], [ 141.576299595559902, -14.765196333671975 ], [ 141.577679619026071, -14.76670085864253 ], [ 141.578734931088434, -14.769016498465778 ], [ 141.578383160400989, -14.770494831890124 ], [ 141.577395496547751, -14.771227453577085 ], [ 141.577097844427584, -14.771999320182344 ], [ 141.577625500458765, -14.772391793675869 ], [ 141.576854310874751, -14.772718854378912 ], [ 141.575961354514277, -14.771214371068623 ], [ 141.57675960338193, -14.76995844658888 ], [ 141.577314318696779, -14.769526720872584 ], [ 141.57713843335307, -14.768519357532622 ], [ 141.576042532365221, -14.767328831202081 ], [ 141.575027809228317, -14.766609279159344 ], [ 141.574608390331775, -14.766596196372877 ], [ 141.574324267853427, -14.76702792791035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.566132758623723, -14.33978436773349 ], [ 141.565418386700628, -14.340020254645692 ], [ 141.564948226068566, -14.340102062748281 ], [ 141.564812929650287, -14.341675028458248 ], [ 141.566328249534735, -14.342435291260347 ], [ 141.567329443029791, -14.342907177219507 ], [ 141.568489003835168, -14.344137623201366 ], [ 141.56870946649596, -14.346184135633163 ], [ 141.570738912769713, -14.346629798274877 ], [ 141.571577750562881, -14.347023029281301 ], [ 141.572064817668604, -14.345581178883204 ], [ 141.570793031337018, -14.345345238843652 ], [ 141.569873015692906, -14.345345238843652 ], [ 141.569521245005433, -14.344165534918885 ], [ 141.568520051510404, -14.3424090753446 ], [ 141.568114162255625, -14.341334220157963 ], [ 141.566355308818373, -14.34096719525497 ], [ 141.566132758623723, -14.33978436773349 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.469658958693941, -13.893265617443546 ], [ 141.468711883766161, -13.895314485586931 ], [ 141.468522468780606, -13.898098815805646 ], [ 141.468583352168849, -13.900732078438846 ], [ 141.468617176273426, -13.903358744492939 ], [ 141.468833650542621, -13.905991947292984 ], [ 141.469171891588275, -13.907022893843793 ], [ 141.469821314395887, -13.907732077339615 ], [ 141.470159555441484, -13.907909372873945 ], [ 141.471096483137842, -13.910398062517844 ], [ 141.470184958571963, -13.911963015014368 ], [ 141.469689400388035, -13.912604371845699 ], [ 141.469770578239007, -13.914548007865276 ], [ 141.470284704628369, -13.915441024343661 ], [ 141.471285898123426, -13.912052796486574 ], [ 141.471556490959898, -13.910135405243823 ], [ 141.47051, -13.904719999559315 ], [ 141.47096118671962, -13.896214143115602 ], [ 141.470880008868647, -13.893928874819974 ], [ 141.469658958693941, -13.893265617443546 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.553579944525012, -13.522499327031166 ], [ 141.546977479314336, -13.523341218372664 ], [ 141.542539756795662, -13.535443077536167 ], [ 141.541673859718856, -13.544177080567229 ], [ 141.543730365276275, -13.550490617991711 ], [ 141.542106808257273, -13.551963752601294 ], [ 141.537452611469433, -13.552910762886588 ], [ 141.533123126085371, -13.558697965970241 ], [ 141.529145411388754, -13.568167630560181 ], [ 141.530768968407784, -13.576058729203336 ], [ 141.536505536541625, -13.5803724188573 ], [ 141.542242104675523, -13.579530729474675 ], [ 141.550359889770618, -13.576795218355429 ], [ 141.557178829250489, -13.577952553832406 ], [ 141.568110779845227, -13.575217024515908 ], [ 141.579150967574549, -13.566589379351532 ], [ 141.57557914213271, -13.55996060972983 ], [ 141.570600233941036, -13.555120438878571 ], [ 141.566378985691614, -13.554594327410593 ], [ 141.566054274287808, -13.557961420678202 ], [ 141.564971902941778, -13.559118847969078 ], [ 141.557828252058101, -13.553226432143241 ], [ 141.552308158193455, -13.545334574976854 ], [ 141.547545724270975, -13.540494106335336 ], [ 141.549926941232201, -13.535232615676291 ], [ 141.553607003808651, -13.53112857221468 ], [ 141.555014086558458, -13.524498814109188 ], [ 141.553579944525012, -13.522499327031166 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.915687278333451, -12.082149465428897 ], [ 141.93138166285064, -12.084266247444187 ], [ 141.932139322792864, -12.100459075698595 ], [ 141.931229756169841, -12.110632575624143 ], [ 141.933762879811837, -12.116968400266069 ], [ 141.937334705253704, -12.128291513283646 ], [ 141.948699604386832, -12.138661793040427 ], [ 141.950647872809668, -12.141095575729047 ], [ 141.956925626616538, -12.135804715424397 ], [ 141.959306843577764, -12.142682813326802 ], [ 141.952920852636282, -12.152417663592262 ], [ 141.932261780184717, -12.168137489007325 ], [ 141.920368534404957, -12.172626921695278 ], [ 141.907704789656634, -12.175589406289991 ], [ 141.902834118599543, -12.18352447004075 ], [ 141.900452901638317, -12.189766553460224 ], [ 141.916039049020924, -12.18849698906976 ], [ 141.921667380020182, -12.192199868222396 ], [ 141.92361564844299, -12.198230160736751 ], [ 141.921775617154765, -12.20859771131976 ], [ 141.914523729136477, -12.210078756848844 ], [ 141.904349438483962, -12.209761390647126 ], [ 141.900885850176735, -12.231235645161993 ], [ 141.902401170061125, -12.235572598198852 ], [ 141.920909720077958, -12.241178797848418 ], [ 141.933032279153281, -12.250169624250949 ], [ 141.944938363959437, -12.251861980853008 ], [ 141.950566694958695, -12.258313990804547 ], [ 141.950350220689501, -12.265083143026795 ], [ 141.946237209574633, -12.271111772855301 ], [ 141.940500641440764, -12.264131241498651 ], [ 141.94136653851757, -12.259054375293902 ], [ 141.936820578864342, -12.259688988915899 ], [ 141.926970999615605, -12.262967801628976 ], [ 141.92533, -12.258969999607951 ], [ 141.925996865404215, -12.256515905533446 ], [ 141.911384852233027, -12.250804259248691 ], [ 141.892551590812417, -12.239380595828505 ], [ 141.891252745197221, -12.229543156378003 ], [ 141.893525725023835, -12.213781334425954 ], [ 141.895582230581283, -12.206693497753976 ], [ 141.898612870350092, -12.201086567202983 ], [ 141.889737425312774, -12.19399839086989 ], [ 141.892443353677834, -12.182360675534611 ], [ 141.898504633215509, -12.169558599246745 ], [ 141.906405944041381, -12.163421848051954 ], [ 141.919286163058928, -12.160776652976791 ], [ 141.931192247865056, -12.154533888269794 ], [ 141.940500641440764, -12.146386330928093 ], [ 141.929135742307636, -12.137815254718863 ], [ 141.921667380020182, -12.124693566857339 ], [ 141.920043823001123, -12.109666324891714 ], [ 141.911384852233027, -12.110512952561928 ], [ 141.910086006617831, -12.103104869451219 ], [ 141.909653058079414, -12.094849906321715 ], [ 141.9152813890787, -12.088182250031888 ], [ 141.915687278333451, -12.082149465428897 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.01301952162359, -11.751516281220862 ], [ 142.008257087701139, -11.762324855378512 ], [ 142.01139596460456, -11.764550097368554 ], [ 142.00879827337414, -11.771755519341259 ], [ 142.011287727469977, -11.775040281405783 ], [ 142.018431378353682, -11.772179361813077 ], [ 142.021786729526298, -11.766139544913333 ], [ 142.030770411698171, -11.764762024238454 ], [ 142.044191816388746, -11.753529675232807 ], [ 142.055232004118096, -11.749502872490559 ], [ 142.065839243309028, -11.752046123177418 ], [ 142.068869883077838, -11.755860955171521 ], [ 142.078502988057352, -11.752681932179762 ], [ 142.084997216133416, -11.747807358987718 ], [ 142.090896139969175, -11.750562563130542 ], [ 142.093385594065012, -11.743568529583683 ], [ 142.108805319125707, -11.751347763707287 ], [ 142.109404689986007, -11.760523455824973 ], [ 142.113192989697069, -11.76486798761219 ], [ 142.119903692042328, -11.761053280447175 ], [ 142.117197763677297, -11.753105804032488 ], [ 142.115574206658295, -11.747913328887355 ], [ 142.116548340869684, -11.740707282880649 ], [ 142.111677669812622, -11.738269901154771 ], [ 142.10431754465975, -11.738481848247146 ], [ 142.095875048160849, -11.734454825636893 ], [ 142.079964189374465, -11.73625639565239 ], [ 142.071629930010175, -11.741343118047928 ], [ 142.065027464799499, -11.739859500376449 ], [ 142.055177885550791, -11.735832497883905 ], [ 142.039104671062489, -11.739011715265327 ], [ 142.029688040352198, -11.746005864458095 ], [ 142.018864326892043, -11.748867056149848 ], [ 142.015400738584816, -11.749290933873382 ], [ 142.01301952162359, -11.751516281220862 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.026332689179526, -11.662170389089257 ], [ 142.033016500000031, -11.664458499625924 ], [ 142.036615216966652, -11.665032448313328 ], [ 142.04430005352333, -11.660368336660623 ], [ 142.046464796215361, -11.650403835662058 ], [ 142.049820147388004, -11.640226955193727 ], [ 142.048737776042003, -11.633442161314118 ], [ 142.050686044464811, -11.621568374051455 ], [ 142.059886200905908, -11.615843331477246 ], [ 142.072658182788871, -11.610224193863433 ], [ 142.073524079865678, -11.595168587992585 ], [ 142.078178276653546, -11.591775663285876 ], [ 142.07936888513413, -11.589230942708761 ], [ 142.076446482499904, -11.586262072741532 ], [ 142.065731006174389, -11.585201754394935 ], [ 142.061401520790355, -11.595274616225453 ], [ 142.05387327128247, -11.5991361509264 ], [ 142.049711910253393, -11.603862769356656 ], [ 142.042135310831327, -11.612026571095232 ], [ 142.037156402639653, -11.621992446599778 ], [ 142.035316371351428, -11.638636783974251 ], [ 142.031528071640395, -11.649661784054572 ], [ 142.02763153479475, -11.657400224810637 ], [ 142.026332689179526, -11.662170389089257 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.06924871304895, -11.532843540354794 ], [ 142.075580585423126, -11.537602577014249 ], [ 142.081425390691606, -11.536727662678356 ], [ 142.083752489085526, -11.538689587996053 ], [ 142.089110227248284, -11.536780687867248 ], [ 142.096795063804962, -11.533015874566328 ], [ 142.101259845607274, -11.53275074496629 ], [ 142.108619970760145, -11.532538641106028 ], [ 142.116683637287935, -11.532061406834636 ], [ 142.123800228887973, -11.530735751825395 ], [ 142.130619168367872, -11.531690224062837 ], [ 142.132675673925263, -11.5302585144902 ], [ 142.131322709742761, -11.528349557040547 ], [ 142.125477904474309, -11.525910314754261 ], [ 142.118821320696327, -11.524796740582772 ], [ 142.112489448322151, -11.525963341985682 ], [ 142.110162349928203, -11.526175450811271 ], [ 142.108159962938117, -11.525008850289019 ], [ 142.105345797438446, -11.525167932463642 ], [ 142.100853956352523, -11.524213438065036 ], [ 142.099230399333493, -11.521562047725332 ], [ 142.095496218189766, -11.521031766655927 ], [ 142.092736171257428, -11.522728662556441 ], [ 142.090842021401926, -11.523311968156083 ], [ 142.078881818028492, -11.526069396418494 ], [ 142.071900522846676, -11.528296530259533 ], [ 142.070168728693062, -11.530749008406453 ], [ 142.071359337173675, -11.529237754134508 ], [ 142.06924871304895, -11.532843540354794 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.12419, -11.368638999634852 ], [ 142.121432541568595, -11.372619983333788 ], [ 142.120241933087982, -11.378933574643991 ], [ 142.122839624318431, -11.38174546520856 ], [ 142.12489612987585, -11.381798519480506 ], [ 142.125762026952657, -11.377766366629778 ], [ 142.124192588500932, -11.375962490287293 ], [ 142.127060872567853, -11.372142479138439 ], [ 142.127764413942742, -11.370550792706771 ], [ 142.1266, -11.369428999634884 ], [ 142.12419, -11.368638999634852 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 152.610407057043005, -31.944800847152592 ], [ 152.60762629776201, -31.944145390321921 ], [ 152.607334735931317, -31.944884417306664 ], [ 152.607431674642157, -31.945989013269383 ], [ 152.606998685438498, -31.947229019732326 ], [ 152.606430387108674, -31.947860498073954 ], [ 152.605645594176991, -31.94843456552741 ], [ 152.604793146682283, -31.949031591874029 ], [ 152.603602426372191, -31.949869718468282 ], [ 152.603358869945168, -31.95065043225302 ], [ 152.603264153556836, -31.95197074193813 ], [ 152.603047658955006, -31.952728476317525 ], [ 152.602330520586406, -31.953933949948659 ], [ 152.60107214571326, -31.954863875940752 ], [ 152.599556683500396, -31.95659741654497 ], [ 152.597824726685786, -31.959203406087514 ], [ 152.596945217365771, -31.961143500063102 ], [ 152.596845338169032, -31.961340220574829 ], [ 152.599802653594764, -31.963736848458542 ], [ 152.609469102523548, -31.95130366196603 ], [ 152.613673345722162, -31.945549934948353 ], [ 152.610407057043005, -31.944800847152592 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 152.67781840008638, -31.879328075167692 ], [ 152.673448635502155, -31.882251562770293 ], [ 152.678966015027697, -31.888098259622506 ], [ 152.68655792925486, -31.883113599093956 ], [ 152.693267062757968, -31.878962632693817 ], [ 152.700020335297268, -31.876620016307385 ], [ 152.70158727108236, -31.877126028055123 ], [ 152.702690746987486, -31.875823515785793 ], [ 152.698607886138603, -31.87344333804144 ], [ 152.699534805898992, -31.872028321311422 ], [ 152.70019689144209, -31.870416487703526 ], [ 152.698475469030086, -31.869816728466649 ], [ 152.694591233844108, -31.870304033143931 ], [ 152.690044913114974, -31.872918566159942 ], [ 152.688146934558233, -31.873115355965723 ], [ 152.684704089734282, -31.874614693067496 ], [ 152.681305383946523, -31.876451347768175 ], [ 152.677950817194983, -31.879187520541606 ], [ 152.67781840008638, -31.879328075167692 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 146.184237219938524, -38.859266350898267 ], [ 146.193558951087766, -38.854985430690455 ], [ 146.192773603774782, -38.85413453636815 ], [ 146.191646801108419, -38.853682490782774 ], [ 146.190656580583436, -38.853336808841739 ], [ 146.189154177028229, -38.85299112522064 ], [ 146.188706377058907, -38.853098601787231 ], [ 146.187417259419391, -38.851725275190674 ], [ 146.184303466185497, -38.848769085660059 ], [ 146.179827529859637, -38.846111637123329 ], [ 146.177924208948951, -38.845448133909215 ], [ 146.17574784750235, -38.844147561988684 ], [ 146.173296945355361, -38.84258358347779 ], [ 146.171436955921763, -38.840250625447709 ], [ 146.171739322023512, -38.838019364949041 ], [ 146.170190563437586, -38.834397403015252 ], [ 146.170055536582282, -38.833429703788731 ], [ 146.170532580726672, -38.829811414098984 ], [ 146.15928443208648, -38.829684340372253 ], [ 146.155519796965308, -38.832173997175907 ], [ 146.153789104482229, -38.834287051967635 ], [ 146.152301155825029, -38.838582876596504 ], [ 146.152262759542964, -38.840839618520739 ], [ 146.152786818121484, -38.842948474158483 ], [ 146.153268660467432, -38.844203831977289 ], [ 146.154818097642448, -38.844641851758993 ], [ 146.1560661010258, -38.845118872964534 ], [ 146.156340836360272, -38.846319147466211 ], [ 146.156488356492815, -38.847157197596424 ], [ 146.15752772773277, -38.848448787215169 ], [ 146.159222359506117, -38.850147565612346 ], [ 146.161359129373039, -38.851742770813551 ], [ 146.16460926434948, -38.853398257938011 ], [ 146.168865280727488, -38.854563204642318 ], [ 146.171514681607306, -38.854744120910631 ], [ 146.173434666654117, -38.854536693293241 ], [ 146.175487440561653, -38.854758339490104 ], [ 146.1775759738901, -38.854878801059151 ], [ 146.180274836421319, -38.855468527060374 ], [ 146.180822666404026, -38.856660604069951 ], [ 146.181949469070389, -38.857697596388412 ], [ 146.182973835130781, -38.858255970604397 ], [ 146.184032346726468, -38.859080229291223 ], [ 146.184237219938524, -38.859266350898267 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.557535165187005, -14.551145757624672 ], [ 129.555514134902239, -14.550635443153366 ], [ 129.557476584599044, -14.547800341275058 ], [ 129.558845905842674, -14.546482006500971 ], [ 129.559146131355988, -14.545333773026391 ], [ 129.559907678999508, -14.543944544297746 ], [ 129.559526905177762, -14.542470251191146 ], [ 129.558706776946252, -14.541619692999332 ], [ 129.559556195471743, -14.541166060624455 ], [ 129.561137871346745, -14.543377509652178 ], [ 129.561284322816647, -14.544766741947814 ], [ 129.560786387818951, -14.545985856966759 ], [ 129.560464194585165, -14.547034857525874 ], [ 129.56005413046941, -14.547573531551977 ], [ 129.562133741342137, -14.548282311162977 ], [ 129.564037610450953, -14.548679226751238 ], [ 129.564857738682463, -14.549869969234386 ], [ 129.565941479559768, -14.551769473709621 ], [ 129.566263672793553, -14.552393188032084 ], [ 129.56752315543477, -14.551939577790536 ], [ 129.569156089324281, -14.551996279121715 ], [ 129.570884216669185, -14.552393188032084 ], [ 129.571821506076645, -14.551854525766466 ], [ 129.572202279898391, -14.551145757624672 ], [ 129.573286020775697, -14.551684421619994 ], [ 129.572612344014146, -14.553073601646419 ], [ 129.570825636081253, -14.553640611389302 ], [ 129.569185379618261, -14.553498859090148 ], [ 129.568013767858986, -14.55355556002073 ], [ 129.566607833747867, -14.553980816535798 ], [ 129.565406931694611, -14.553924115714462 ], [ 129.564586803463101, -14.552676693959635 ], [ 129.563913126701522, -14.551032354510777 ], [ 129.562946547000109, -14.55009677659822 ], [ 129.562009257592734, -14.549983372945425 ], [ 129.560310420541782, -14.549643161637531 ], [ 129.559138808782507, -14.549359651813763 ], [ 129.558553002902869, -14.549756565465092 ], [ 129.557535165187005, -14.551145757624672 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.586232330715632, -14.562315678773285 ], [ 129.584167364989923, -14.561989661168376 ], [ 129.584987493221405, -14.560912382177362 ], [ 129.586232330715632, -14.560175293520455 ], [ 129.587023168653161, -14.559452377253052 ], [ 129.587770071149691, -14.558190811817999 ], [ 129.588077619236486, -14.556631563671893 ], [ 129.588516973646222, -14.555058129373055 ], [ 129.588502328499231, -14.553583910480564 ], [ 129.589761811140448, -14.553541384789451 ], [ 129.589937552904331, -14.554958903410576 ], [ 129.589542133935566, -14.555880285631511 ], [ 129.589615359670546, -14.556234662384371 ], [ 129.590757681135841, -14.556560688494336 ], [ 129.590303681579115, -14.557099339272748 ], [ 129.58986432716938, -14.557453714067721 ], [ 129.589337101877732, -14.558701108817909 ], [ 129.588868457174016, -14.559835097925024 ], [ 129.588238715853379, -14.560969081202792 ], [ 129.587140329829055, -14.561706167207179 ], [ 129.586232330715632, -14.562315678773285 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.602920475711784, -14.675527961651332 ], [ 129.600460091017339, -14.674932931535958 ], [ 129.602041766892341, -14.672411119275592 ], [ 129.603154798063656, -14.670569327912835 ], [ 129.603623442767372, -14.670002619759755 ], [ 129.605117247760433, -14.669549252180776 ], [ 129.605878795403981, -14.668415829124839 ], [ 129.606728213929443, -14.667849115395992 ], [ 129.607987696570632, -14.667735772474156 ], [ 129.606845375105365, -14.669152554778819 ], [ 129.605966666285923, -14.671221040474743 ], [ 129.604590022468784, -14.671419387390991 ], [ 129.6033891204155, -14.673006156248992 ], [ 129.602832604829871, -14.674337899802293 ], [ 129.602920475711784, -14.675527961651332 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.684391428422174, -14.643408190582559 ], [ 129.684904008566861, -14.642359649355143 ], [ 129.683864203130526, -14.641906224568887 ], [ 129.682516849607339, -14.64136778141757 ], [ 129.681433108730033, -14.640956863386396 ], [ 129.680451883881631, -14.640050007075958 ], [ 129.679807497414032, -14.639894140769995 ], [ 129.679236336681385, -14.640290891149128 ], [ 129.679939303736944, -14.640928524183449 ], [ 129.681315947554083, -14.641962902718442 ], [ 129.682751171959211, -14.642458835902165 ], [ 129.683512719602732, -14.643039784776677 ], [ 129.684391428422174, -14.643408190582559 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.692241227209308, -14.633794013358809 ], [ 129.691494324712778, -14.634304135041685 ], [ 129.691033002582571, -14.633602717421981 ], [ 129.690827970524708, -14.632695830711484 ], [ 129.690571680452337, -14.632313236756412 ], [ 129.689971229425737, -14.632143194784502 ], [ 129.689919971411257, -14.631739344573177 ], [ 129.690740099642738, -14.631930642134337 ], [ 129.691069615450033, -14.632008578129966 ], [ 129.691340550669395, -14.631661408481941 ], [ 129.691706679344151, -14.631852706111028 ], [ 129.691479679565788, -14.632369917384445 ], [ 129.691523615006787, -14.633050083778842 ], [ 129.69166274390318, -14.63341850636224 ], [ 129.692153356327367, -14.633595632384074 ], [ 129.692241227209308, -14.633794013358809 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.706571503539948, -14.777417110857114 ], [ 129.705092343693877, -14.776227605099372 ], [ 129.705443827221671, -14.77525050621116 ], [ 129.705063053399869, -14.774726552823209 ], [ 129.705033763105916, -14.773862735019165 ], [ 129.704652989284114, -14.773013074812157 ], [ 129.704169699433436, -14.772163411282436 ], [ 129.705048408252878, -14.772021800371126 ], [ 129.705707439867496, -14.772389988548573 ], [ 129.705883181631378, -14.772446632828183 ], [ 129.706527568098977, -14.772474954962455 ], [ 129.706849761332791, -14.773452066334 ], [ 129.706586148686938, -14.77438669049047 ], [ 129.706879051626771, -14.775165540882751 ], [ 129.706893696773733, -14.776298409195855 ], [ 129.706908341920723, -14.776765715653788 ], [ 129.706571503539948, -14.777417110857114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.305347591466273, -16.477143286816332 ], [ 141.306050558521832, -16.475345683065473 ], [ 141.304711, -16.474929999486235 ], [ 141.303765915591242, -16.476693887442419 ], [ 141.305347591466273, -16.477143286816332 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.585635331784459, -14.644152031030417 ], [ 129.584551590907125, -14.642621731127399 ], [ 129.586016105606234, -14.641516507889285 ], [ 129.587509910599323, -14.640836367743521 ], [ 129.589618811766002, -14.6407230108475 ], [ 129.592957905279945, -14.640808028525015 ], [ 129.595066806446653, -14.641601525259205 ], [ 129.594422419979054, -14.642593392139599 ], [ 129.591757003226661, -14.641856577171202 ], [ 129.589911714705835, -14.642196645925772 ], [ 129.587422039717381, -14.642621731127399 ], [ 129.585635331784459, -14.644152031030417 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.51764844261001, -14.822635751784103 ], [ 129.516857604672509, -14.821474809763034 ], [ 129.518029216431756, -14.820823546879511 ], [ 129.519230118485012, -14.820228913840385 ], [ 129.521075407005895, -14.819747543041341 ], [ 129.521954115825338, -14.819322803212405 ], [ 129.523213598466583, -14.818728166052374 ], [ 129.523535791700368, -14.819181223084296 ], [ 129.522393470235102, -14.82003070246448 ], [ 129.521251148769778, -14.820681967732579 ], [ 129.520167407892444, -14.821304915286614 ], [ 129.520343149656327, -14.822267648890394 ], [ 129.519640182600767, -14.82204112372168 ], [ 129.518849344663266, -14.821814598315964 ], [ 129.518585732017414, -14.821899545370878 ], [ 129.51764844261001, -14.822635751784103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.597513803024981, -15.196535491113581 ], [ 141.598123613823333, -15.198475899263093 ], [ 141.597348989295682, -15.198762187478838 ], [ 141.59721713831226, -15.199557430483496 ], [ 141.590039500401701, -15.207283060172292 ], [ 141.593269849495755, -15.211163660790465 ], [ 141.599334994733567, -15.217207076812578 ], [ 141.611531210700946, -15.221023881809378 ], [ 141.623595575684874, -15.220705817368378 ], [ 141.62768295617127, -15.218733807111866 ], [ 141.627485179696095, -15.224967840962044 ], [ 141.628012583629811, -15.229865880917067 ], [ 141.632759219033346, -15.233809674398268 ], [ 141.639022140746334, -15.234891024213978 ], [ 141.650180030219218, -15.231201690212856 ], [ 141.657893312749934, -15.229293388623233 ], [ 141.66343105405403, -15.23304636529976 ], [ 141.668968795358126, -15.239916047481348 ], [ 141.672594697402474, -15.248948065894966 ], [ 141.676220599446822, -15.25518120436627 ], [ 141.68076945837521, -15.257788891106818 ], [ 141.691416425287258, -15.258106899470288 ], [ 141.68950458602751, -15.263576567954432 ], [ 141.691152723320386, -15.266883740243067 ], [ 141.701305249044566, -15.264339766183511 ], [ 141.699459335276543, -15.258424907352298 ], [ 141.703151162812588, -15.256771261108284 ], [ 141.702689684370597, -15.254099958907409 ], [ 141.708491127641565, -15.24869364815266 ], [ 141.708029649199574, -15.242714742561455 ], [ 141.706513362890121, -15.232028615527517 ], [ 141.702030429453458, -15.234763806877078 ], [ 141.696558613641059, -15.241887859255549 ], [ 141.691811978237524, -15.24805760244953 ], [ 141.685021652590876, -15.249838525567693 ], [ 141.682055005463667, -15.246276664241378 ], [ 141.686340162425182, -15.244114076132684 ], [ 141.681132048579627, -15.237880609483696 ], [ 141.688252001684901, -15.23864390104124 ], [ 141.688581629143499, -15.234382154404816 ], [ 141.685021652590876, -15.23113808043866 ], [ 141.682846111364256, -15.228084788666649 ], [ 141.683505366281395, -15.222995870620363 ], [ 141.681593527021647, -15.218415739212141 ], [ 141.677506146535279, -15.215934793109742 ], [ 141.676912817109837, -15.211863433624977 ], [ 141.671111373838869, -15.210273037458352 ], [ 141.66405734622532, -15.215298648376685 ], [ 141.664452899175586, -15.21714346280995 ], [ 141.667551397286246, -15.21790682957349 ], [ 141.671506926789164, -15.217970443345566 ], [ 141.67717651907671, -15.224140887906218 ], [ 141.6742098719495, -15.226685348467669 ], [ 141.671375075805742, -15.22267780915808 ], [ 141.663068463849584, -15.221850847107605 ], [ 141.656442951932206, -15.221660009250115 ], [ 141.64609264973285, -15.222995870620363 ], [ 141.639566026052989, -15.226367292579422 ], [ 141.637258633842976, -15.227257847855475 ], [ 141.635017167124658, -15.223950052124358 ], [ 141.639170473102723, -15.223186707267104 ], [ 141.638247516218684, -15.217970443345566 ], [ 141.635412720074925, -15.212754050235075 ], [ 141.629314612091207, -15.209382410362196 ], [ 141.623579094311964, -15.210400269593395 ], [ 141.619623564809046, -15.212817665563167 ], [ 141.614481376455217, -15.206583272128915 ], [ 141.612635462687166, -15.204293040471438 ], [ 141.605985228710466, -15.203533600522485 ], [ 141.601016094772348, -15.198949069854471 ], [ 141.600917206534803, -15.190201206674914 ], [ 141.599796473175616, -15.189596795459654 ], [ 141.599326754047183, -15.189982505448205 ], [ 141.598523287116905, -15.191278803954875 ], [ 141.597979401810193, -15.191775848816171 ], [ 141.59739431307122, -15.192738124339989 ], [ 141.596590846140941, -15.194276960788098 ], [ 141.597513803024981, -15.196535491113581 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.54655520536636, -15.360273275047355 ], [ 141.545531552807319, -15.362200874274212 ], [ 141.549618933293658, -15.363599409571584 ], [ 141.552420766691597, -15.364044396108351 ], [ 141.556475184432088, -15.361724098733713 ], [ 141.55706851385753, -15.35756021269118 ], [ 141.556046668735945, -15.354127328104973 ], [ 141.554233717713771, -15.351806920422542 ], [ 141.553442611813182, -15.348818960201553 ], [ 141.550805592144542, -15.348723599064638 ], [ 141.550805592144542, -15.351266547806391 ], [ 141.551563735299283, -15.355208057122134 ], [ 141.553376686321485, -15.357655569790037 ], [ 141.554332605951345, -15.359213062901109 ], [ 141.553871127509325, -15.360611618233863 ], [ 141.55238780394572, -15.361151966646363 ], [ 141.54863005091795, -15.360452691963784 ], [ 141.546784137149928, -15.359848771033038 ], [ 141.54655520536636, -15.360273275047355 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.990966716007534, -11.355882082270398 ], [ 130.9896482061732, -11.355389240932849 ], [ 130.989458670384522, -11.356649620362916 ], [ 130.989227931163498, -11.358071580214137 ], [ 130.9893268194011, -11.35920267957915 ], [ 130.988436825262909, -11.360721577384151 ], [ 130.986722762478337, -11.362240467098928 ], [ 130.98451425850584, -11.363759348722475 ], [ 130.982371680025068, -11.364534944728307 ], [ 130.981152058428307, -11.365310538623943 ], [ 130.979800585848153, -11.366409293030232 ], [ 130.979503921135404, -11.36951163554731 ], [ 130.980327989781898, -11.370190268470678 ], [ 130.98497573694786, -11.370157952653837 ], [ 130.987414980141324, -11.370578057986894 ], [ 130.989096080180076, -11.371450582468515 ], [ 130.992194578290736, -11.372807837461634 ], [ 130.993842715583639, -11.372355419849113 ], [ 130.995161225417974, -11.370028689349823 ], [ 130.996776399964972, -11.366603190426954 ], [ 130.998004262248202, -11.364349125044132 ], [ 130.99786417057831, -11.363048383863482 ], [ 130.998226760782728, -11.3623697339351 ], [ 130.997040101931873, -11.360947795513999 ], [ 130.995004652375115, -11.360325695225088 ], [ 130.993348274395771, -11.359590484043096 ], [ 130.991766062594593, -11.358459386216033 ], [ 130.990620607175998, -11.35672233439092 ], [ 130.990966716007534, -11.355882082270398 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.840301996431151, -16.391199294024958 ], [ 137.840659590831478, -16.390089388243712 ], [ 137.840309405724213, -16.388642042515972 ], [ 137.840299130666779, -16.387933477776901 ], [ 137.836282, -16.388768999488672 ], [ 137.83452, -16.389438999488611 ], [ 137.83253, -16.390679999488558 ], [ 137.831121, -16.391238999488564 ], [ 137.830641, -16.395078999488497 ], [ 137.83363391261355, -16.392490812790847 ], [ 137.836095003486292, -16.392188113848448 ], [ 137.838408849605969, -16.391179113976289 ], [ 137.840028541889751, -16.391118573817753 ], [ 137.840301996431151, -16.391199294024958 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.633867075623925, -16.771863697778851 ], [ 138.633025677034965, -16.77153138476536 ], [ 138.632710152564101, -16.772860633334005 ], [ 138.632026516210573, -16.774844418835002 ], [ 138.63127977496282, -16.776445530105008 ], [ 138.630953733009619, -16.777379505450245 ], [ 138.631300809927552, -16.777973622149219 ], [ 138.631626851880782, -16.777772226866134 ], [ 138.632215830893074, -16.777439924182424 ], [ 138.632121173551781, -16.776604130015457 ], [ 138.632762739975902, -16.775587074324505 ], [ 138.63298360710553, -16.774640502752163 ], [ 138.633698795906156, -16.772636575040956 ], [ 138.633814488212124, -16.772032371586182 ], [ 138.633867075623925, -16.771863697778851 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.757805087780071, -16.833510286447417 ], [ 138.756521954931912, -16.833953225625958 ], [ 138.756711269614414, -16.835241770072486 ], [ 138.755617451448728, -16.836087372600243 ], [ 138.754544668247803, -16.836731638658073 ], [ 138.753976724200271, -16.838020164196724 ], [ 138.75403982909441, -16.839328813970518 ], [ 138.753534989941016, -16.840778384697931 ], [ 138.753261535399616, -16.841865555458575 ], [ 138.754439493424172, -16.842026617262402 ], [ 138.755112612295363, -16.839993201931833 ], [ 138.755301926977864, -16.838865754315499 ], [ 138.755238822083726, -16.837758433156434 ], [ 138.756290570319919, -16.837053770864877 ], [ 138.757805087780071, -16.835886039007594 ], [ 138.758057507356796, -16.834617632451156 ], [ 138.758078542321499, -16.833953225625958 ], [ 138.757805087780071, -16.833510286447417 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.830186401396759, -16.860245848812664 ], [ 138.829134653160537, -16.859561401124498 ], [ 138.828903268548572, -16.860708856137812 ], [ 138.828671883936607, -16.861896565395107 ], [ 138.828545674148273, -16.862862831828124 ], [ 138.828251184642113, -16.863426484966364 ], [ 138.827388751088421, -16.863688180494897 ], [ 138.826841842005592, -16.864251831171895 ], [ 138.826904946899759, -16.865097304035682 ], [ 138.827599100735654, -16.865962903287421 ], [ 138.827725310523988, -16.866768108334313 ], [ 138.828777058760238, -16.866687587984003 ], [ 138.82823014967741, -16.865379127483148 ], [ 138.827599100735654, -16.864654437769204 ], [ 138.828293254571577, -16.86455378620029 ], [ 138.8295343174903, -16.863668050082499 ], [ 138.829891911890627, -16.861393299671729 ], [ 138.830060191608425, -16.860527679493451 ], [ 138.830186401396759, -16.860245848812664 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.266306548025966, -17.6970870523473 ], [ 140.264918240354149, -17.69748784241537 ], [ 140.264876170424714, -17.697928710456992 ], [ 140.264707890706887, -17.698469774301337 ], [ 140.265359974613347, -17.699271347369965 ], [ 140.266012058519806, -17.699872524822929 ], [ 140.266580002567366, -17.701074873689556 ], [ 140.267211051509094, -17.702838304127255 ], [ 140.267947275274452, -17.704080710624215 ], [ 140.268010380168619, -17.705182838221674 ], [ 140.269209373157935, -17.705303069913789 ], [ 140.269209373157935, -17.70394043935358 ], [ 140.268641429110346, -17.702597837360365 ], [ 140.267947275274452, -17.701255225325017 ], [ 140.267211051509094, -17.699291386650824 ], [ 140.267295191367992, -17.698770364621438 ], [ 140.266727247320432, -17.697968789316192 ], [ 140.266264478096502, -17.69748784241537 ], [ 140.266306548025966, -17.6970870523473 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.306157288696312, -17.69305906249355 ], [ 140.304758463542157, -17.692888722623156 ], [ 140.304295694318228, -17.693449841585778 ], [ 140.302444617422481, -17.694932790405208 ], [ 140.301866155892554, -17.695654220538373 ], [ 140.301645288762955, -17.696556004129175 ], [ 140.302036480557121, -17.698171687467084 ], [ 140.301760981068952, -17.69950680877886 ], [ 140.301760981068952, -17.700228220534704 ], [ 140.302833764269906, -17.700428612174647 ], [ 140.303170323705473, -17.698845512122833 ], [ 140.303149288740741, -17.697703266707315 ], [ 140.303149288740741, -17.697062002938342 ], [ 140.303338603423271, -17.696120142625723 ], [ 140.304642771236189, -17.694757442365589 ], [ 140.305967974013811, -17.693434811636422 ], [ 140.306157288696312, -17.69305906249355 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.322249036710502, -17.689857647917524 ], [ 140.323058882852393, -17.688625163245735 ], [ 140.324920477230506, -17.689146214707797 ], [ 140.329640335070337, -17.690835592352546 ], [ 140.331204672941908, -17.691490927584887 ], [ 140.33226430928994, -17.693079102467681 ], [ 140.332800700890402, -17.69488269098278 ], [ 140.332937428161102, -17.696596083294764 ], [ 140.332832253337472, -17.698063976570925 ], [ 140.331654295312887, -17.697993838598645 ], [ 140.33191723237195, -17.695919746177175 ], [ 140.331664812795253, -17.694617163810619 ], [ 140.331391358253853, -17.693414771701985 ], [ 140.32964019744054, -17.691814074716333 ], [ 140.327013456220584, -17.691095134182191 ], [ 140.323269232499626, -17.690113161974196 ], [ 140.322249036710502, -17.689857647917524 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.351371945371426, -17.685223261271915 ], [ 140.350025707629101, -17.685563955388023 ], [ 140.350635721606096, -17.68718725377548 ], [ 140.350572616711901, -17.688550011467857 ], [ 140.351161595724221, -17.690313564901597 ], [ 140.352823357937439, -17.692257461694812 ], [ 140.354400980291757, -17.693580101094263 ], [ 140.355242378880746, -17.692978902574666 ], [ 140.353370267020239, -17.690994933182409 ], [ 140.352108169136784, -17.689051022726598 ], [ 140.352045064242617, -17.686666196632061 ], [ 140.351371945371426, -17.685223261271915 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 148.717461220455277, -20.66019280306962 ], [ 148.717327061782214, -20.660912801678862 ], [ 148.716830171513578, -20.661117863336941 ], [ 148.71533668901813, -20.6612556377885 ], [ 148.714390115605511, -20.661078499184978 ], [ 148.713885276452146, -20.660369942705717 ], [ 148.714263905817177, -20.65926773717052 ], [ 148.714369080640807, -20.658736313787994 ], [ 148.713822171557979, -20.65934646640245 ], [ 148.712854563180656, -20.659995981009541 ], [ 148.711802814944434, -20.659917252114138 ], [ 148.710856241531815, -20.660094392071457 ], [ 148.71016208769592, -20.660291214004062 ], [ 148.709404828965859, -20.660074709864169 ], [ 148.709404828965859, -20.65924805485615 ], [ 148.708963094706661, -20.658736313787994 ], [ 148.70828997583547, -20.65787028651593 ], [ 148.708479290517971, -20.657220762823066 ], [ 148.709236549248061, -20.657181397661532 ], [ 148.709909668119224, -20.657712826481674 ], [ 148.709573108683657, -20.658126158723629 ], [ 148.709678283507287, -20.658401712927045 ], [ 148.710246227554848, -20.658775678546739 ], [ 148.710225192590116, -20.659405513299646 ], [ 148.710456577202052, -20.659543289303837 ], [ 148.712160409344733, -20.65924805485615 ], [ 148.713212157580983, -20.658992184537496 ], [ 148.713822171557979, -20.657968698954491 ], [ 148.714747710005838, -20.657889969008753 ], [ 148.715357723982862, -20.658263935887785 ], [ 148.715547038665392, -20.658952819834855 ], [ 148.715420828877029, -20.660074709864169 ], [ 148.717250870808044, -20.660114074276187 ], [ 148.717461220455277, -20.66019280306962 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 152.010540924876324, -24.445143973631602 ], [ 152.009412164859896, -24.444838511994384 ], [ 152.008675941094566, -24.444532121342295 ], [ 152.008765659227009, -24.444861422038223 ], [ 152.008465591447305, -24.445336395215584 ], [ 152.009138710318467, -24.447634292288932 ], [ 152.010190458554717, -24.449108754177367 ], [ 152.011263241755671, -24.449951296082496 ], [ 152.012336024956596, -24.450678941376314 ], [ 152.013345703263354, -24.451617214631948 ], [ 152.013556052910587, -24.452593777335011 ], [ 152.01321949347502, -24.453340555471581 ], [ 152.013619157804754, -24.453474592104502 ], [ 152.014776080864635, -24.452095922785048 ], [ 152.015007465476572, -24.451100207783885 ], [ 152.01443952142904, -24.450238524989881 ], [ 152.013850542416748, -24.449070456684197 ], [ 152.012840864109961, -24.448572588213903 ], [ 152.011683941050137, -24.448036419969334 ], [ 152.010505983025581, -24.446964076636966 ], [ 152.010737367637518, -24.445585336088659 ], [ 152.010540924876324, -24.445143973631602 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.022056401657409, -25.846546163133095 ], [ 153.02157259746869, -25.845107418908984 ], [ 153.020520849232497, -25.845467106605689 ], [ 153.019069436666513, -25.844406971308082 ], [ 153.018185968148089, -25.84327110151705 ], [ 153.018185968148089, -25.841131850463949 ], [ 153.017512849276898, -25.840223130345912 ], [ 153.016776625511568, -25.83961731305623 ], [ 153.016482136005408, -25.838803241188327 ], [ 153.01528314301612, -25.837156148418089 ], [ 153.014357604568261, -25.837250809543111 ], [ 153.014315534638826, -25.838045960003512 ], [ 153.014967618545256, -25.837629453285921 ], [ 153.015745912240078, -25.838386737136474 ], [ 153.016419031111269, -25.839882358502162 ], [ 153.016776625511568, -25.840753217929695 ], [ 153.016986975158829, -25.8416808654862 ], [ 153.01688180033517, -25.842741025215304 ], [ 153.017344569559128, -25.844444833446605 ], [ 153.018795982125113, -25.846356855682426 ], [ 153.021846052010119, -25.846697608875477 ], [ 153.022056401657409, -25.846546163133095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.35141019438683, -27.753392625456467 ], [ 153.351085319876518, -27.752753236914707 ], [ 153.348077319920918, -27.75135708698382 ], [ 153.347635585661692, -27.749867840660741 ], [ 153.345868648624844, -27.750165691554642 ], [ 153.345889683589576, -27.75135708698382 ], [ 153.345784508765945, -27.75213893315048 ], [ 153.346983501755233, -27.752287855593369 ], [ 153.347130746508327, -27.753311691874856 ], [ 153.345721403871806, -27.753162770832198 ], [ 153.345258634647848, -27.754056294032928 ], [ 153.344774830459187, -27.752883543328256 ], [ 153.343491697611, -27.753051079916531 ], [ 153.343070998316506, -27.75602946512554 ], [ 153.348392844391782, -27.756736819639805 ], [ 153.350349096111159, -27.755992235813277 ], [ 153.351379809382649, -27.754484437968131 ], [ 153.351379809382649, -27.753777068820362 ], [ 153.35141019438683, -27.753392625456467 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.432154073924295, -27.734713601592034 ], [ 153.431207500511675, -27.735849311738356 ], [ 153.430490713858063, -27.735660117752882 ], [ 153.428851584462564, -27.734937020916711 ], [ 153.42777880126161, -27.734546036797941 ], [ 153.426285318766162, -27.734546036797941 ], [ 153.424581486623481, -27.734155051276339 ], [ 153.423782157963956, -27.73337307602473 ], [ 153.424728731376575, -27.732777281590657 ], [ 153.426285318766162, -27.732702807057358 ], [ 153.428472955097504, -27.733168272055398 ], [ 153.43108129072337, -27.734210906436747 ], [ 153.431417850158965, -27.734285379939397 ], [ 153.432154073924295, -27.734713601592034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.377768172629288, -27.787111496419655 ], [ 153.380713067690692, -27.787437159311281 ], [ 153.381470326420811, -27.788125700499453 ], [ 153.381323081667716, -27.789716772240737 ], [ 153.380997039714515, -27.791596253889129 ], [ 153.380555305455317, -27.792859303127276 ], [ 153.380113571196063, -27.792961649015801 ], [ 153.3793037250542, -27.792301051130078 ], [ 153.380134606160794, -27.790561147347624 ], [ 153.380397543219885, -27.788793302150111 ], [ 153.379514074701433, -27.788048937677537 ], [ 153.379135445336402, -27.788207115554371 ], [ 153.38000839637246, -27.788858433799 ], [ 153.379356312465973, -27.790291320202758 ], [ 153.378283529265047, -27.790133145358212 ], [ 153.377431613193721, -27.789891230444955 ], [ 153.376214214610286, -27.789435312414419 ], [ 153.375856620209959, -27.788458338768116 ], [ 153.376256284539721, -27.787285958804343 ], [ 153.376866298516745, -27.786950990778486 ], [ 153.377297515293606, -27.787071951573537 ], [ 153.377768172629288, -27.787111496419655 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 148.400598399958767, -40.47428186280839 ], [ 148.401197896453425, -40.473649810732603 ], [ 148.402765001325406, -40.472601711266485 ], [ 148.405663511109708, -40.470688395160813 ], [ 148.407941539156383, -40.469309368801696 ], [ 148.410808604206181, -40.467652849201464 ], [ 148.413916161999907, -40.465800668429608 ], [ 148.415378092048286, -40.464920483141896 ], [ 148.416887350767269, -40.464170316121972 ], [ 148.419653448628509, -40.463098062849021 ], [ 148.421607070977274, -40.462465905511301 ], [ 148.423285167374502, -40.462250145257251 ], [ 148.4223222597779, -40.461985782039299 ], [ 148.420481700364519, -40.461321605579428 ], [ 148.41824410599196, -40.460859478927532 ], [ 148.416634931190572, -40.460835472261351 ], [ 148.414384189965062, -40.4613636169356 ], [ 148.412890707469614, -40.462363879560648 ], [ 148.411933616574629, -40.463636192097539 ], [ 148.410274483731996, -40.465392583957652 ], [ 148.407787099153353, -40.467294956583821 ], [ 148.405999127151773, -40.468423152119648 ], [ 148.403267211108187, -40.47011741016798 ], [ 148.40172377057155, -40.471363572690237 ], [ 148.400756162194199, -40.472683719639072 ], [ 148.400440637723335, -40.473387787399751 ], [ 148.400598399958767, -40.47428186280839 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.099031058660756, -32.455164002271758 ], [ 134.098274386749893, -32.454289784034593 ], [ 134.098021380353998, -32.454045773798072 ], [ 134.099262443272721, -32.453460029534689 ], [ 134.100055874742964, -32.45240818415747 ], [ 134.099367618096352, -32.451844775624679 ], [ 134.100293156544211, -32.450744256375565 ], [ 134.102291478193052, -32.450051987380498 ], [ 134.103574611041239, -32.449714726199822 ], [ 134.106140876737612, -32.449714726199822 ], [ 134.107676429162495, -32.44992773340816 ], [ 134.107676429162495, -32.450708755530833 ], [ 134.105909492125647, -32.451010512265213 ], [ 134.104437044594931, -32.451454270332917 ], [ 134.10216526840469, -32.452164278695491 ], [ 134.101534219462962, -32.452270779467327 ], [ 134.101008345344866, -32.453744027228865 ], [ 134.100019702002783, -32.454667013552516 ], [ 134.099031058660756, -32.455164002271758 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.541238437544862, -21.43811194430269 ], [ 115.539671332672881, -21.437886778538644 ], [ 115.539124423590053, -21.438562274788413 ], [ 115.538114745283281, -21.438953865385379 ], [ 115.536421430622966, -21.439257347375172 ], [ 115.53520140266896, -21.440030734108042 ], [ 115.534181206879794, -21.440892223363555 ], [ 115.533318773326101, -21.442536870543684 ], [ 115.533234633467217, -21.443848659168943 ], [ 115.534433626456519, -21.444827598217799 ], [ 115.536405654399402, -21.445111489313078 ], [ 115.537226018023688, -21.446149155512284 ], [ 115.536468759293584, -21.446599461188587 ], [ 115.53672117887028, -21.447147657526749 ], [ 115.538298801224627, -21.446266626692303 ], [ 115.537646717318154, -21.444915702409951 ], [ 115.536447724328852, -21.444230446179468 ], [ 115.534575612468387, -21.443173187394812 ], [ 115.535206661410129, -21.441939709128071 ], [ 115.536552899152497, -21.440471269021945 ], [ 115.537962241789018, -21.440510427616591 ], [ 115.539455724284451, -21.440373372489365 ], [ 115.541369906074365, -21.438395848466463 ], [ 115.541238437544862, -21.43811194430269 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.881736670279906, -21.133577734102357 ], [ 115.880621817149489, -21.134244819520582 ], [ 115.88144218077376, -21.134970762005565 ], [ 115.883040838092796, -21.135853660236027 ], [ 115.884702600306042, -21.136481495777865 ], [ 115.885796418471699, -21.136540355223548 ], [ 115.886069873013128, -21.136677693839236 ], [ 115.88665885202542, -21.136246057761351 ], [ 115.885838488401163, -21.135618221222156 ], [ 115.884197761152663, -21.13524544201864 ], [ 115.882094264680219, -21.13400937795107 ], [ 115.881736670279906, -21.133577734102357 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.889687886945708, -21.11564378356081 ], [ 115.888762348497835, -21.116742643769562 ], [ 115.889772026804607, -21.117684517470458 ], [ 115.890280242264183, -21.118639149542389 ], [ 115.889835131698774, -21.119489758682196 ], [ 115.889309257580663, -21.120431614940969 ], [ 115.889077872968713, -21.122060227276574 ], [ 115.889793061769339, -21.123080553604204 ], [ 115.891244474335309, -21.123708443239888 ], [ 115.89210690788903, -21.123806550755326 ], [ 115.892085872924298, -21.122648877937639 ], [ 115.890760670146662, -21.122158335882329 ], [ 115.891559998806173, -21.121157625058654 ], [ 115.892527607183496, -21.120647456157961 ], [ 115.893221761019419, -21.11947013661322 ], [ 115.892443467324611, -21.119175805266973 ], [ 115.891623103700354, -21.119529002812378 ], [ 115.891917593206486, -21.118292807724149 ], [ 115.892317257536249, -21.117704139775636 ], [ 115.89238036243043, -21.11697811275539 ], [ 115.89402108967893, -21.117036979943457 ], [ 115.894000054714198, -21.116232459684813 ], [ 115.892611747042409, -21.115879254290689 ], [ 115.891118264546975, -21.116232459684813 ], [ 115.890508250569965, -21.116330572145046 ], [ 115.890087551275471, -21.115781141531993 ], [ 115.889687886945708, -21.11564378356081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.927245816461152, -21.078405274953575 ], [ 115.924763690623678, -21.077894959145862 ], [ 115.924385061258633, -21.080721301601123 ], [ 115.924553340976431, -21.082762515506762 ], [ 115.923404734729544, -21.083889895239309 ], [ 115.922996753586816, -21.08562801849326 ], [ 115.922407774574538, -21.088257952055624 ], [ 115.922744334010147, -21.090927090758921 ], [ 115.922491914433436, -21.094027941678966 ], [ 115.920977396973285, -21.094734455618571 ], [ 115.920009788595962, -21.093085917865153 ], [ 115.917864222194083, -21.090966342440883 ], [ 115.915550376074393, -21.090691580449366 ], [ 115.913783439037516, -21.091947631119233 ], [ 115.91205857193016, -21.094224195888184 ], [ 115.912521341154061, -21.096696976705836 ], [ 115.912437201295177, -21.098070726036475 ], [ 115.911301313200056, -21.100033203035288 ], [ 115.911090963552809, -21.101053680824499 ], [ 115.912268921577379, -21.101681663670242 ], [ 115.914035858614241, -21.099601460320876 ], [ 115.915340026427145, -21.096539975973194 ], [ 115.914624837626505, -21.094381199068863 ], [ 115.916223494945569, -21.093282173319047 ], [ 115.91735938304069, -21.095597968091869 ], [ 115.919631159230917, -21.097481977879411 ], [ 115.922491914433436, -21.096853977272509 ], [ 115.925016110200374, -21.094184945067081 ], [ 115.925436809494869, -21.090887839066589 ], [ 115.924679550764765, -21.087826175112401 ], [ 115.925731299001001, -21.087080375618651 ], [ 115.927540305967312, -21.087119628316906 ], [ 115.928507914344621, -21.088100942403269 ], [ 115.929181033215812, -21.08660934243068 ], [ 115.928297564697388, -21.084685941416325 ], [ 115.926825117166672, -21.084528927989513 ], [ 115.927918935332329, -21.081663403810282 ], [ 115.927624445826197, -21.079033353542741 ], [ 115.927245816461152, -21.078405274953575 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.812018502698933, -20.694529427493208 ], [ 116.813196460723503, -20.696693963669826 ], [ 116.810966754462726, -20.696536543898645 ], [ 116.809893971261786, -20.696871060717086 ], [ 116.809893971261786, -20.697835252124058 ], [ 116.810567090132963, -20.698504279293562 ], [ 116.811618838369171, -20.699448783213718 ], [ 116.81199746773423, -20.700471989154913 ], [ 116.812586446746522, -20.701180358454003 ], [ 116.812628516675957, -20.701928078012632 ], [ 116.811934362840049, -20.702085492186661 ], [ 116.810314670556266, -20.701022943340195 ], [ 116.80987293629704, -20.699862001828819 ], [ 116.808800153096101, -20.698720728628206 ], [ 116.808400488766338, -20.697697510869816 ], [ 116.808169104154388, -20.696615253804659 ], [ 116.804340740574517, -20.696930093020228 ], [ 116.803267957373578, -20.696871060717086 ], [ 116.802615873467147, -20.695769120174177 ], [ 116.805266279022405, -20.695178791589846 ], [ 116.807916684577663, -20.695218146900288 ], [ 116.810125355873765, -20.69468684934769 ], [ 116.811976432769484, -20.694509749749919 ], [ 116.812018502698933, -20.694529427493208 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.790962503009837, -20.66447854020679 ], [ 116.792014251246073, -20.665757841294159 ], [ 116.790618585492567, -20.667784204791264 ], [ 116.791151817692381, -20.668395135689295 ], [ 116.790836293221503, -20.670186108013301 ], [ 116.791551482022129, -20.671740891036194 ], [ 116.793633943529841, -20.672429713869249 ], [ 116.794875006448592, -20.673925432690545 ], [ 116.794559481977743, -20.67618866341806 ], [ 116.793528768706224, -20.677635145384706 ], [ 116.791803901598826, -20.679111133184247 ], [ 116.79047869882119, -20.679681844619267 ], [ 116.789321775761351, -20.678501059967108 ], [ 116.791572516986847, -20.676749545816573 ], [ 116.792498055434748, -20.674919290338522 ], [ 116.791383202304331, -20.673895912066858 ], [ 116.789153496043554, -20.672380512341935 ], [ 116.788522447101812, -20.67025499114245 ], [ 116.789174531008257, -20.667174900691009 ], [ 116.790289384138646, -20.666446691263275 ], [ 116.788038642913165, -20.665915292991087 ], [ 116.786040321264323, -20.666131788807871 ], [ 116.784609943663057, -20.66479344608943 ], [ 116.783431985638515, -20.66469503807123 ], [ 116.783347845779602, -20.663769999584169 ], [ 116.785367202393161, -20.663317319122974 ], [ 116.786292740841034, -20.664281723698661 ], [ 116.787702083477555, -20.664498221843587 ], [ 116.790057999526695, -20.664380131984601 ], [ 116.790962503009837, -20.66447854020679 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.927037689811996, -20.713989465482886 ], [ 116.924008654891679, -20.714737121852927 ], [ 116.926238361152485, -20.71776705989414 ], [ 116.926490780729168, -20.71819990323884 ], [ 116.924807983551219, -20.718790142170256 ], [ 116.924134864680042, -20.720678891295417 ], [ 116.924555563974536, -20.722882402173727 ], [ 116.92548110242241, -20.723590666718884 ], [ 116.927037689811996, -20.722961098397864 ], [ 116.925901801716876, -20.721151074896724 ], [ 116.927163899600359, -20.720246055034426 ], [ 116.929217605514438, -20.719241408316186 ], [ 116.931076403039086, -20.720993680526508 ], [ 116.933600598806024, -20.720914983280078 ], [ 116.933937158241605, -20.718947538830218 ], [ 116.931286752686333, -20.718239252572484 ], [ 116.929057046425555, -20.716468522439513 ], [ 116.927458389106491, -20.71402881591013 ], [ 116.927037689811996, -20.713989465482886 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.948240934254187, -20.699232334918314 ], [ 116.947273325876864, -20.701987108347062 ], [ 116.949355787384604, -20.702774177276446 ], [ 116.951732738398448, -20.702400320044458 ], [ 116.953941409694494, -20.701672279631232 ], [ 116.955077297789643, -20.70035392728332 ], [ 116.954930053036549, -20.699133949227353 ], [ 116.954362108989002, -20.698169766077786 ], [ 116.954530388706786, -20.697638478865429 ], [ 116.956865269791209, -20.698740405825156 ], [ 116.955981801272785, -20.700196511311539 ], [ 116.95575041666082, -20.701377127116423 ], [ 116.956486640426164, -20.702439673480708 ], [ 116.95663388517923, -20.703797360775951 ], [ 116.95659181524978, -20.704879566577919 ], [ 116.95720182922679, -20.705056654064506 ], [ 116.958169437604113, -20.70456474386873 ], [ 116.9578118432038, -20.703305446493875 ], [ 116.957391143909305, -20.701632925995785 ], [ 116.957138724332609, -20.700786820363092 ], [ 116.958358752286628, -20.699881678877663 ], [ 116.958716346686941, -20.698523956518589 ], [ 116.958400822216063, -20.697520414787689 ], [ 116.9575383886624, -20.696713641129751 ], [ 116.956255255814185, -20.696516866415767 ], [ 116.954551423671518, -20.695808475331454 ], [ 116.953478640470578, -20.695788797754101 ], [ 116.952553102022705, -20.697126867198037 ], [ 116.952721381740503, -20.698464924835907 ], [ 116.951964123010399, -20.699999741116969 ], [ 116.950786164985857, -20.699999741116969 ], [ 116.949376822349308, -20.699586522877226 ], [ 116.948240934254187, -20.699232334918314 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.976848486279437, -20.669339827019705 ], [ 116.976448821949674, -20.670835576275216 ], [ 116.975775703078497, -20.673000450421011 ], [ 116.976974696067771, -20.675086572669336 ], [ 116.979919591129175, -20.675952501788249 ], [ 116.978741633104633, -20.678294421708671 ], [ 116.978278863880703, -20.682067985567326 ], [ 116.978783703034082, -20.68252061013288 ], [ 116.979667171552506, -20.681792474301307 ], [ 116.980108905811719, -20.678879896043707 ], [ 116.981392038659905, -20.676518305078776 ], [ 116.981833772919103, -20.674688046813056 ], [ 116.981917912778016, -20.67384179090854 ], [ 116.980697884824011, -20.673861471331982 ], [ 116.979751311411405, -20.673920512586999 ], [ 116.978846807928235, -20.673389140465371 ], [ 116.979162332399099, -20.671381717891027 ], [ 116.982675171508092, -20.67065352863348 ], [ 116.985283507133929, -20.67041735839468 ], [ 116.984547283368556, -20.671716290162962 ], [ 116.984210723932975, -20.67376306918927 ], [ 116.984946947698347, -20.674707727126808 ], [ 116.985935591040374, -20.673605625628277 ], [ 116.986503535087934, -20.671972139050006 ], [ 116.987113549064944, -20.670476400988811 ], [ 116.987365968641626, -20.669531716728176 ], [ 116.988449269324946, -20.671681848933698 ], [ 116.989080318266687, -20.672016420544384 ], [ 116.989963786785097, -20.670796214641427 ], [ 116.989543087490603, -20.668847801018352 ], [ 116.987376486123992, -20.667785019415565 ], [ 116.983527087579432, -20.668139280776117 ], [ 116.981002891812494, -20.668218005410711 ], [ 116.979530444281792, -20.668906844222683 ], [ 116.977390136621096, -20.668887163157112 ], [ 116.976848486279437, -20.669339827019705 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.775856362594737, -20.66556102644353 ], [ 117.76845205501175, -20.669418551032003 ], [ 117.770218992048598, -20.672095143169198 ], [ 117.766011999103711, -20.674771688128892 ], [ 117.763824362772368, -20.677841784540604 ], [ 117.76963001303632, -20.68169899715101 ], [ 117.77282732767442, -20.68036079163512 ], [ 117.773837005981179, -20.67610994291562 ], [ 117.775856362594737, -20.673669587094636 ], [ 117.781746152717574, -20.674929130480741 ], [ 117.788309061711601, -20.677212026235562 ], [ 117.7872993834048, -20.680990536877026 ], [ 117.790412558184016, -20.68398179109354 ], [ 117.795376809858979, -20.685398680407584 ], [ 117.799752082521664, -20.686028404745052 ], [ 117.800256921675043, -20.682879756925509 ], [ 117.796218208447968, -20.679809762405185 ], [ 117.8013507398407, -20.677763064895345 ], [ 117.807577089399146, -20.674850409325227 ], [ 117.805473592926703, -20.672567478060927 ], [ 117.796975467178044, -20.672803644955845 ], [ 117.794451271411106, -20.667765338204642 ], [ 117.788309061711601, -20.667607888425447 ], [ 117.785616586226851, -20.668473860191284 ], [ 117.77930609680952, -20.665009943505094 ], [ 117.775856362594737, -20.66556102644353 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.862983186483234, -20.606977605456759 ], [ 117.860795550151906, -20.607824233452749 ], [ 117.859891046668764, -20.609123699830011 ], [ 117.857913759984669, -20.609517475332016 ], [ 117.859344137585936, -20.610639729929105 ], [ 117.859091718009239, -20.611427272078551 ], [ 117.858397564173345, -20.612332940517295 ], [ 117.858313424314431, -20.613568381716004 ], [ 117.857051326430977, -20.613686511026895 ], [ 117.8563782075598, -20.614434661201724 ], [ 117.857093396360426, -20.615458439696514 ], [ 117.857997899843568, -20.615064679551349 ], [ 117.859470347374298, -20.614434661201724 ], [ 117.859848976739315, -20.61327305803799 ], [ 117.860753480222456, -20.61167830028301 ], [ 117.861321424270017, -20.610181969183845 ], [ 117.860353815892694, -20.609256599175716 ], [ 117.861721088599779, -20.608803756485251 ], [ 117.863088361306879, -20.609079400022356 ], [ 117.864308389260898, -20.609551930640016 ], [ 117.864708053590661, -20.608685623388126 ], [ 117.864855298343727, -20.607366464248322 ], [ 117.865086682955678, -20.605811023127966 ], [ 117.866411885733342, -20.605299102324643 ], [ 117.867274319287006, -20.604098050612762 ], [ 117.868957116464983, -20.603861777030655 ], [ 117.868725731853033, -20.602975747835398 ], [ 117.866958794816171, -20.602956058239212 ], [ 117.865949116509398, -20.603389228767536 ], [ 117.865633592038535, -20.604373702662254 ], [ 117.864161144507833, -20.604235876699828 ], [ 117.863445955707192, -20.604688732965432 ], [ 117.863235606059945, -20.60655921197781 ], [ 117.863046291377444, -20.606854548670434 ], [ 117.862983186483234, -20.606977605456759 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 122.372560879516001, -18.115633603755157 ], [ 122.372558588983622, -18.116276804567196 ], [ 122.376981441516548, -18.118989940750737 ], [ 122.3801366862252, -18.1208691690615 ], [ 122.381567063826466, -18.121948716628864 ], [ 122.381440854038132, -18.120549301837247 ], [ 122.378622168765062, -18.117910374940347 ], [ 122.373868266737347, -18.115431346779928 ], [ 122.372560879516001, -18.115633603755157 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 122.376939371587113, -18.103435553617068 ], [ 122.376140042927588, -18.104875092160562 ], [ 122.378874588341745, -18.106954404736154 ], [ 122.381567063826466, -18.10883376218101 ], [ 122.382282252627093, -18.107994051771364 ], [ 122.380389105801925, -18.105794791150487 ], [ 122.377421714341764, -18.104210359169876 ], [ 122.376939371587113, -18.103435553617068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 122.37881148344762, -18.092858581516548 ], [ 122.378895623306505, -18.094298206914729 ], [ 122.3822401826977, -18.094458164562766 ], [ 122.384238504346527, -18.095038009813706 ], [ 122.38590026655973, -18.096517606247794 ], [ 122.386426140677855, -18.095777809591429 ], [ 122.384974728111885, -18.094078264910436 ], [ 122.386384070748406, -18.093818333095168 ], [ 122.386952014795966, -18.093458426868722 ], [ 122.386699595219284, -18.092618642801185 ], [ 122.384112294558165, -18.093058530195247 ], [ 122.381819483403206, -18.092998545615572 ], [ 122.379316322600999, -18.092818591753449 ], [ 122.37881148344762, -18.092858581516548 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 122.374814840150009, -17.992375583415839 ], [ 122.374394140855514, -17.990815084718314 ], [ 122.376686952010473, -17.990354935031462 ], [ 122.377612490458347, -17.9895946850935 ], [ 122.378327679258973, -17.989234565558522 ], [ 122.377906979964479, -17.98841429054076 ], [ 122.379021833094868, -17.987734059585108 ], [ 122.37988426664856, -17.986453617731843 ], [ 122.380515315590301, -17.98583340036933 ], [ 122.3819667281563, -17.986713708235197 ], [ 122.380893944955361, -17.987914120975599 ], [ 122.380073581331104, -17.989094518874207 ], [ 122.380262896013619, -17.989754737984239 ], [ 122.381104294602608, -17.990575006770559 ], [ 122.380809805096447, -17.991155194585115 ], [ 122.379568742177696, -17.990955130036991 ], [ 122.379042868059599, -17.990675039288487 ], [ 122.377906979964479, -17.991715374112935 ], [ 122.376897301657721, -17.992255545544538 ], [ 122.374814840150009, -17.992375583415839 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.408538334599427, -16.373740248195315 ], [ 124.407633831116271, -16.373276064967015 ], [ 124.405845859114692, -16.375274063178793 ], [ 124.40376339760698, -16.377372948340863 ], [ 124.402711649370772, -16.378422382448576 ], [ 124.403616152853914, -16.379209454322034 ], [ 124.404857215772665, -16.377554581571456 ], [ 124.407823145798801, -16.374971337492944 ], [ 124.408601439493609, -16.374143884887012 ], [ 124.408538334599427, -16.373740248195315 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.406434838127012, -16.297861916925271 ], [ 124.404604796195997, -16.297155276474793 ], [ 124.406350698268099, -16.294914199906493 ], [ 124.408811789140856, -16.293904697585571 ], [ 124.411357019872526, -16.292854809656571 ], [ 124.41299774712104, -16.292430814860495 ], [ 124.414322949898647, -16.293561465612076 ], [ 124.413628796062753, -16.294207548827774 ], [ 124.412808432438496, -16.294328689193637 ], [ 124.411693579308107, -16.294490209564977 ], [ 124.410873215683864, -16.295398759173736 ], [ 124.410031817094875, -16.295398759173736 ], [ 124.409526977941482, -16.296085216084933 ], [ 124.408475229705275, -16.295822747549835 ], [ 124.407423481469067, -16.296852429787439 ], [ 124.406434838127012, -16.297861916925271 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.692374043879042, -15.749194711823346 ], [ 124.69176914240802, -15.749199409112981 ], [ 124.691185155601289, -15.748527692054479 ], [ 124.689859952823653, -15.747211739479933 ], [ 124.688766134657982, -15.746300690397268 ], [ 124.688366470328219, -15.74585528713691 ], [ 124.687419896915628, -15.745450374234888 ], [ 124.68641021860887, -15.744721528978141 ], [ 124.68584227456131, -15.743891452029825 ], [ 124.686662638185538, -15.743122109391964 ], [ 124.688156120681001, -15.744093910134717 ], [ 124.689186833952476, -15.74462030026352 ], [ 124.691795169578299, -15.747231984968707 ], [ 124.692194833908061, -15.748001312047423 ], [ 124.692678638096737, -15.74873014554024 ], [ 124.692374043879042, -15.749194711823346 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.513516634222469, -34.778003905146235 ], [ 138.512983647073554, -34.779966589731977 ], [ 138.512264114422464, -34.779251565066417 ], [ 138.512441776805474, -34.778354127379487 ], [ 138.512335179375668, -34.777223196067261 ], [ 138.512113101396977, -34.776967822335202 ], [ 138.511100425813993, -34.776778115622562 ], [ 138.511144841409731, -34.776478961843367 ], [ 138.51205091956291, -34.776281957542757 ], [ 138.511775542869287, -34.77484636570555 ], [ 138.511713361035248, -34.773773759822667 ], [ 138.512201932588425, -34.773693496236703 ], [ 138.512601672950154, -34.774839069113987 ], [ 138.513063595145866, -34.774882848653682 ], [ 138.513010296430991, -34.774167779930394 ], [ 138.513463335507566, -34.773956176773083 ], [ 138.51375647843949, -34.774612874455663 ], [ 138.513587699175645, -34.775182008219758 ], [ 138.513090244503331, -34.775583318129428 ], [ 138.513099127622439, -34.776152445199997 ], [ 138.513321205601187, -34.776699679065857 ], [ 138.513498867984168, -34.777538763944307 ], [ 138.513516634222469, -34.778003905146235 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.487293666495248, -34.79223960553896 ], [ 138.485996731099561, -34.790547135907161 ], [ 138.485890133669784, -34.789423667056624 ], [ 138.48425563974638, -34.787001591237711 ], [ 138.483118600495345, -34.784988004182964 ], [ 138.483562756452756, -34.783981192221802 ], [ 138.485428211474016, -34.783309977420437 ], [ 138.48706270539742, -34.78415629083694 ], [ 138.486405354580398, -34.78535278809251 ], [ 138.487240367780373, -34.785615431508461 ], [ 138.488661666844166, -34.785790526654452 ], [ 138.489372316376091, -34.786753543313324 ], [ 138.488643900605865, -34.787512275791883 ], [ 138.48889262794205, -34.787935412027046 ], [ 138.489265718946314, -34.789102673145351 ], [ 138.488643900605865, -34.789511210633762 ], [ 138.488910394180351, -34.790474183849028 ], [ 138.489905303525006, -34.790663859065909 ], [ 138.49102457653774, -34.793129597185278 ], [ 138.489887537286705, -34.793990399639135 ], [ 138.488821562988875, -34.794004989433802 ], [ 138.487862186120765, -34.792589767332871 ], [ 138.487293666495248, -34.79223960553896 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.509670243631064, -34.975607823117805 ], [ 138.51100271150338, -34.974537833458086 ], [ 138.511926555894831, -34.974690689979568 ], [ 138.512512841758678, -34.974508717897805 ], [ 138.512663854784165, -34.973533340648466 ], [ 138.512797101571408, -34.972634381927747 ], [ 138.512761569094835, -34.971222232517562 ], [ 138.512388478090571, -34.97021769904687 ], [ 138.512441776805474, -34.969868293213018 ], [ 138.512490633960795, -34.968197675972583 ], [ 138.512934789918205, -34.966931041501979 ], [ 138.512206374148008, -34.964477791460858 ], [ 138.512384036531017, -34.962381187219876 ], [ 138.513378945875644, -34.961012541622964 ], [ 138.514942374845845, -34.960371891148753 ], [ 138.516470271339443, -34.961536706467385 ], [ 138.514906842369243, -34.961361985225132 ], [ 138.513663205688431, -34.962381187219876 ], [ 138.513272348445867, -34.963575093433654 ], [ 138.513414478352246, -34.965176647619501 ], [ 138.513556608258654, -34.965700785826648 ], [ 138.513840868071384, -34.967506125096861 ], [ 138.513592140735227, -34.969748184613422 ], [ 138.513982997977791, -34.972135764942209 ], [ 138.514231725313948, -34.973009252553069 ], [ 138.513734270641606, -34.975192930827376 ], [ 138.512668296343747, -34.975833465410943 ], [ 138.511791334124098, -34.975730641717668 ], [ 138.511833283143773, -34.976605011780748 ], [ 138.511406893424635, -34.977056290250651 ], [ 138.510181022982096, -34.977070847579256 ], [ 138.509785724179949, -34.976233796981795 ], [ 138.509670243631064, -34.975607823117805 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.973577403041418, -37.889287198845523 ], [ 147.971426809431591, -37.889846516480823 ], [ 147.969325092949248, -37.888380709516802 ], [ 147.968078726198115, -37.888110689261609 ], [ 147.968665251728055, -37.887397059534742 ], [ 147.970742529646628, -37.886586984976837 ], [ 147.971964457834048, -37.887049885815465 ], [ 147.972770930437747, -37.888457857979269 ], [ 147.973577403041418, -37.889287198845523 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.324632, -26.202289999251903 ], [ 113.32471658176398, -26.201829537746054 ], [ 113.327269014918656, -26.1992528983345 ], [ 113.338605332653231, -26.198027389327851 ], [ 113.341815012975687, -26.197659734110882 ], [ 113.344819820086059, -26.197721010060985 ], [ 113.347141716489517, -26.196434208337934 ], [ 113.351034307518859, -26.195086115092042 ], [ 113.356702466386153, -26.193921840185624 ], [ 113.364692521656906, -26.195392501290893 ], [ 113.370292389453496, -26.196985696531744 ], [ 113.374389853694936, -26.19906907280572 ], [ 113.374806037683555, -26.204101915069074 ], [ 113.374226534604901, -26.205122544686475 ], [ 113.367594443815747, -26.202907959632423 ], [ 113.359781883792309, -26.203139048737057 ], [ 113.356261939166345, -26.200982199256472 ], [ 113.348964492990604, -26.202368749937847 ], [ 113.341752899122795, -26.20437151621497 ], [ 113.326642892923601, -26.204294487379858 ], [ 113.324632, -26.202289999251903 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.367113396405927, -42.877360688686444 ], [ 147.346745611749526, -42.903117569762877 ], [ 147.344513525759766, -42.907613699977318 ], [ 147.342002429021306, -42.91333557325008 ], [ 147.35232582672387, -42.916196310689607 ], [ 147.355673955708482, -42.930498005880274 ], [ 147.351488794477689, -42.944183661564793 ], [ 147.353999891216176, -42.95745788333349 ], [ 147.412804906150853, -42.939779405475448 ], [ 147.420683460159808, -42.918648265654788 ], [ 147.423752578395664, -42.903730697737991 ], [ 147.416777309677741, -42.883698696725816 ], [ 147.400315675503379, -42.876338368351824 ], [ 147.377994815605945, -42.873475781310567 ], [ 147.367113396405927, -42.877360688686444 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.879154144429407, -40.873271005286803 ], [ 147.884741127986047, -40.873888450807378 ], [ 147.885342803138315, -40.875383295062669 ], [ 147.885514710324685, -40.876780618952246 ], [ 147.88620233907011, -40.878177913347493 ], [ 147.886889967815534, -40.878697829314255 ], [ 147.888007364526885, -40.878242903066642 ], [ 147.890427, -40.87709099906629 ], [ 147.890905, -40.877964999066315 ], [ 147.889855366780239, -40.879477695607584 ], [ 147.889597506000712, -40.880614984148536 ], [ 147.887534619764381, -40.881524800911784 ], [ 147.884182429630414, -40.881199867789142 ], [ 147.882033589800898, -40.880972413654163 ], [ 147.879798796378253, -40.880127577166604 ], [ 147.878914499999951, -40.879101499066287 ], [ 147.878788500000013, -40.878367499066314 ], [ 147.877868499999977, -40.877963499066318 ], [ 147.877856314195014, -40.877235237578184 ], [ 147.877392095769238, -40.875935728962887 ], [ 147.878423538887375, -40.874310910214135 ], [ 147.879154144429407, -40.873271005286803 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 148.037588105057495, -40.764185410548713 ], [ 148.035364055833952, -40.762696196151381 ], [ 148.035965730986192, -40.762386956191072 ], [ 148.036298801159774, -40.761906817612022 ], [ 148.037448430468544, -40.761687092020765 ], [ 148.037910431031918, -40.762020749114143 ], [ 148.03763661119163, -40.76252904082785 ], [ 148.037588105057495, -40.764185410548713 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.88006740135674, -42.555890853752125 ], [ 147.87761772395109, -42.555526791666644 ], [ 147.876242466460241, -42.553785595802069 ], [ 147.877961538323831, -42.552250137323391 ], [ 147.880862472093639, -42.551078731226426 ], [ 147.882710474346993, -42.550841281364711 ], [ 147.884558476600375, -42.550999581372885 ], [ 147.882903869931653, -42.553769766525932 ], [ 147.88006740135674, -42.555890853752125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.880914500000046, -42.845404499059285 ], [ 147.882860893134989, -42.850886792278942 ], [ 147.885783315303087, -42.851453923105005 ], [ 147.889006575047318, -42.851768993535948 ], [ 147.892014950808601, -42.849374417950152 ], [ 147.89222983479155, -42.846759183293756 ], [ 147.890811600504094, -42.844805562267638 ], [ 147.889236207476529, -42.844225578672784 ], [ 147.883131752651053, -42.844813142919627 ], [ 147.880626099712316, -42.844332902737484 ], [ 147.880914500000046, -42.845404499059285 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.110691260518877, -40.797925287991717 ], [ 145.105816229865809, -40.797549403743311 ], [ 145.1027467661213, -40.79672928526815 ], [ 145.099587024031337, -40.794713117614563 ], [ 145.09195850384279, -40.794542253134651 ], [ 145.084014009445184, -40.794371388214984 ], [ 145.079725788037422, -40.793790444198869 ], [ 145.074489644002654, -40.792218452550308 ], [ 145.065461809459947, -40.787160487776632 ], [ 145.060496500461454, -40.784357936023412 ], [ 145.05408673793616, -40.783469297358181 ], [ 145.046954748647408, -40.782170496382697 ], [ 145.043637019452973, -40.785639605464347 ], [ 145.05158151385055, -40.793021539890574 ], [ 145.058442668102998, -40.798899160007018 ], [ 145.061873245229236, -40.809149577613361 ], [ 145.068547500000051, -40.817323999066552 ], [ 145.072345533298773, -40.820218250385302 ], [ 145.075369857870584, -40.817417094165862 ], [ 145.077355981469964, -40.813864238081713 ], [ 145.078980991687672, -40.81119947115436 ], [ 145.085751867594695, -40.814479169096764 ], [ 145.088793952615049, -40.815016603095934 ], [ 145.08728659946695, -40.819193450855963 ], [ 145.084849084140416, -40.822950971725092 ], [ 145.086835207739824, -40.825683580474418 ], [ 145.097126939118482, -40.82718646729429 ], [ 145.101731134735275, -40.826639966936888 ], [ 145.103053, -40.823092999066517 ], [ 145.101731134735275, -40.819193450855963 ], [ 145.099564454445016, -40.817007158943667 ], [ 145.100376959553842, -40.815162419095365 ], [ 145.103356144952954, -40.814410843709879 ], [ 145.106606165388342, -40.816733867388187 ], [ 145.109314515751123, -40.820833122503153 ], [ 145.110939525968803, -40.823565818510232 ], [ 145.109585350787427, -40.826571654075558 ], [ 145.110307499999976, -40.828655499066564 ], [ 145.112232, -40.831222499066534 ], [ 145.117529845185004, -40.831421692358994 ], [ 145.118432628639255, -40.835178520429857 ], [ 145.11870346367553, -40.836339678765206 ], [ 145.12536149165075, -40.836134769948607 ], [ 145.133937934466331, -40.827254779522285 ], [ 145.134569882884335, -40.821174715661279 ], [ 145.145583841026422, -40.821038078609149 ], [ 145.151948464379046, -40.820969759977508 ], [ 145.164685, -40.824604999066565 ], [ 145.167059, -40.818909499066599 ], [ 145.162511030794008, -40.813454280905212 ], [ 145.155559598196135, -40.809081246738032 ], [ 145.147976217180258, -40.807099620744744 ], [ 145.141385897964085, -40.806142952534088 ], [ 145.137413650765296, -40.802384479622042 ], [ 145.129559434713144, -40.800676012481979 ], [ 145.120531600170466, -40.798352426599536 ], [ 145.111543262403842, -40.798318255612045 ], [ 145.111165221832351, -40.798147400410777 ], [ 145.110691260518877, -40.797925287991717 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.952946779074978, -40.63108035144657 ], [ 144.942925882732567, -40.623132268681715 ], [ 144.946356459858805, -40.62210443029273 ], [ 144.946988408276809, -40.619706079210573 ], [ 144.950960655475598, -40.61847260798087 ], [ 144.957821809728046, -40.628339740103101 ], [ 144.952946779074978, -40.63108035144657 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.586672499999963, -19.652202999401734 ], [ 147.592156499999959, -19.655342499401691 ], [ 147.59661531122228, -19.649814070614511 ], [ 147.60428636674817, -19.643996581434997 ], [ 147.602209964803336, -19.635408916802252 ], [ 147.593994635369484, -19.638725000158708 ], [ 147.588515016815137, -19.647877763611131 ], [ 147.586672499999963, -19.652202999401734 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.60018988837831, -19.678267599351727 ], [ 147.599050222713373, -19.688883028892498 ], [ 147.599862727822227, -19.69143301777191 ], [ 147.6040211147224, -19.691809681397825 ], [ 147.609793345819185, -19.690243028015576 ], [ 147.60888343967224, -19.682633123144299 ], [ 147.605487920433035, -19.679876410085228 ], [ 147.60018988837831, -19.678267599351727 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.571796652934495, -19.602180835009577 ], [ 147.571425049012731, -19.60713440093906 ], [ 147.574737116477763, -19.607864622592679 ], [ 147.575290529418879, -19.604609633159974 ], [ 147.571796652934495, -19.602180835009577 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 148.216589, -19.966565499393784 ], [ 148.218133976479095, -19.9654039026993 ], [ 148.220255517596627, -19.963621989638252 ], [ 148.221722540709834, -19.96260374456493 ], [ 148.224845, -19.965241499393805 ], [ 148.224361640254813, -19.96554383737196 ], [ 148.224416, -19.965808999393772 ], [ 148.223866651413715, -19.966400916699897 ], [ 148.222173932436959, -19.967652478544167 ], [ 148.221068022705481, -19.968352500328873 ], [ 148.218833633656175, -19.970791945900146 ], [ 148.217975989374622, -19.971513166057761 ], [ 148.217946500000039, -19.971799499393605 ], [ 148.217999500000019, -19.971954499393618 ], [ 148.2169175, -19.972694999393607 ], [ 148.2160715, -19.972400999393628 ], [ 148.215919, -19.971542999393645 ], [ 148.217344040956618, -19.969688896924936 ], [ 148.217682584751969, -19.969052519006038 ], [ 148.217975989374622, -19.968267649368947 ], [ 148.217805, -19.967853499393737 ], [ 148.217872499999942, -19.967847499393752 ], [ 148.216589, -19.966565499393784 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.135234338507018, -27.051956439425965 ], [ 153.135911426097749, -27.053705156151892 ], [ 153.138281232665207, -27.052800650903567 ], [ 153.140177077919134, -27.051072020588709 ], [ 153.141350696409745, -27.050690110299296 ], [ 153.142750010763848, -27.051011719050489 ], [ 153.144758703949577, -27.050227796104444 ], [ 153.1438107813226, -27.052016740456466 ], [ 153.143562515872702, -27.053162453877956 ], [ 153.144149325117951, -27.053705156151892 ], [ 153.147805598107709, -27.055272947974096 ], [ 153.149853788069606, -27.054770452981014 ], [ 153.151952759600789, -27.057081911312277 ], [ 153.153442352300345, -27.0565392253738 ], [ 153.153481849076456, -27.055494045057994 ], [ 153.155693668539442, -27.056338229915525 ], [ 153.156099921093841, -27.055272947974096 ], [ 153.155264846398637, -27.054770452981014 ], [ 153.155287415985015, -27.05278055070411 ], [ 153.154000949562658, -27.050790613133074 ], [ 153.152691913554008, -27.049283061174215 ], [ 153.15018668946837, -27.048217712242799 ], [ 153.149238766841421, -27.048117207104521 ], [ 153.148042578764489, -27.047333263936686 ], [ 153.145988746406033, -27.048318217291055 ], [ 153.14319011769777, -27.048418722249288 ], [ 153.140526906507688, -27.048720236583904 ], [ 153.139838534123783, -27.048820741182073 ], [ 153.139477420742082, -27.047494073238084 ], [ 153.138348941424226, -27.04751417438456 ], [ 153.137874980110723, -27.049725278514764 ], [ 153.136001704443117, -27.051453929578216 ], [ 153.135911426097692, -27.051654933787393 ], [ 153.135234338507018, -27.051956439425965 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.09228441567015, -27.204810671489465 ], [ 153.093593451678856, -27.204630015302666 ], [ 153.093412894988006, -27.206697507496308 ], [ 153.095421588173735, -27.20627598307415 ], [ 153.098536191091, -27.205332565495475 ], [ 153.100883428072052, -27.207962071197322 ], [ 153.098852165299974, -27.208845250034038 ], [ 153.098175077709271, -27.209286836827765 ], [ 153.097994521018421, -27.209808709873514 ], [ 153.096143814937165, -27.210812305015441 ], [ 153.095399018587386, -27.210109789365109 ], [ 153.095241031482857, -27.21043093992623 ], [ 153.095782701555436, -27.211253884014518 ], [ 153.094044843405953, -27.212638824979027 ], [ 153.093164629538052, -27.212177179903463 ], [ 153.092036150220224, -27.212397966917351 ], [ 153.090817392556971, -27.210792233201182 ], [ 153.092352124429226, -27.209708349862215 ], [ 153.092397263601924, -27.208845250034038 ], [ 153.091697606424901, -27.207901854203588 ], [ 153.092148998151998, -27.206958450387273 ], [ 153.09228441567015, -27.204810671489465 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.219870287344975, -27.482793101890845 ], [ 153.218538681749948, -27.482713011475962 ], [ 153.217613328709291, -27.483313688168085 ], [ 153.214995256691964, -27.484014473501936 ], [ 153.217116797809439, -27.489420381912982 ], [ 153.219983135276806, -27.489580552929088 ], [ 153.220592514108404, -27.49104210268807 ], [ 153.222872042330437, -27.489860851646647 ], [ 153.222420650603283, -27.488979910417395 ], [ 153.220885918731028, -27.488859781521889 ], [ 153.22066022286748, -27.48667741710495 ], [ 153.220773070799254, -27.484955521078998 ], [ 153.220208831140326, -27.483233598131761 ], [ 153.219870287344975, -27.482793101890845 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.741728539063303, -35.513321636892037 ], [ 138.74262740348297, -35.51336228455348 ], [ 138.743559559177442, -35.512589975467151 ], [ 138.744325258497923, -35.511831208428355 ], [ 138.745074312181004, -35.511614416528801 ], [ 138.74502437526877, -35.5114247231365 ], [ 138.743892471925477, -35.511248578870926 ], [ 138.742693986032577, -35.511384074494117 ], [ 138.74161201960149, -35.511749911534608 ], [ 138.740979485380223, -35.511695713559725 ], [ 138.741478854502247, -35.510991136556939 ], [ 138.741495500139678, -35.510367851746771 ], [ 138.740746446456626, -35.509961359046585 ], [ 138.739731062575117, -35.509771661748921 ], [ 138.739814290762126, -35.510340752297466 ], [ 138.740380242433787, -35.510855640270648 ], [ 138.740180494784966, -35.511180830973586 ], [ 138.739714416937716, -35.511221479718863 ], [ 138.739165110903485, -35.511587317500187 ], [ 138.739081882716476, -35.511939604158641 ], [ 138.739531314926296, -35.512711919501015 ], [ 138.740080620960526, -35.512915159145827 ], [ 138.740796383368803, -35.512928708437215 ], [ 138.741728539063303, -35.513321636892037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 146.892052656690481, -43.582461772980963 ], [ 146.893324485951752, -43.58261280416756 ], [ 146.893282786631715, -43.583292439818528 ], [ 146.892792819621235, -43.583685114697474 ], [ 146.892094356010517, -43.583632254766805 ], [ 146.891781611110218, -43.5835642919306 ], [ 146.891698212470118, -43.583345300047583 ], [ 146.890361500000012, -43.583047999057875 ], [ 146.8905475, -43.582500999057821 ], [ 146.890812101919238, -43.582454221411687 ], [ 146.891187395799619, -43.582522185501077 ], [ 146.891614813830046, -43.582597701065957 ], [ 146.891885859410337, -43.582567494851368 ], [ 146.892052656690481, -43.582461772980963 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.182015632927886, -20.656020264134519 ], [ 117.175928203232928, -20.651537156541643 ], [ 117.174631806168279, -20.654174294668689 ], [ 117.17604093341248, -20.657233317575663 ], [ 117.175533647604581, -20.65897376864373 ], [ 117.173617234552466, -20.660239538718219 ], [ 117.173448139283138, -20.662982004373234 ], [ 117.174349980719441, -20.663773091035829 ], [ 117.178070076644133, -20.663614874032852 ], [ 117.180662870773446, -20.664933344022728 ], [ 117.18291747436416, -20.666410016825886 ], [ 117.184439331787914, -20.666620968911641 ], [ 117.185792093942354, -20.664775128228122 ], [ 117.183199299812998, -20.662718307903642 ], [ 117.182692014005099, -20.659237471612087 ], [ 117.182297458376723, -20.656864128422903 ], [ 117.182015632927886, -20.656020264134519 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.102373001204413, -20.394065171459566 ], [ 118.10282392192255, -20.395623708118578 ], [ 118.104035771352585, -20.395491629351987 ], [ 118.104317596801422, -20.396891658517919 ], [ 118.104430326980932, -20.398001106558656 ], [ 118.103584850634419, -20.39895205566399 ], [ 118.10417668407699, -20.399744508768265 ], [ 118.105698541500729, -20.399797338830293 ], [ 118.108122240360757, -20.399506773264974 ], [ 118.108770438893089, -20.397842614470488 ], [ 118.109249542156121, -20.396865242991019 ], [ 118.109897740688453, -20.396865242991019 ], [ 118.1102922963168, -20.398053937218489 ], [ 118.111165955208236, -20.398925640490319 ], [ 118.111532328291716, -20.397921860534961 ], [ 118.111729606105911, -20.39636334711944 ], [ 118.11094049484916, -20.395068976538163 ], [ 118.109193177066331, -20.394963313153582 ], [ 118.107558589463054, -20.395940696696513 ], [ 118.106684930571646, -20.397552045218767 ], [ 118.106938573475617, -20.395253887286845 ], [ 118.106121279673971, -20.393959507386736 ], [ 118.10536035096213, -20.393431185935896 ], [ 118.104514874615589, -20.392559451582478 ], [ 118.103105747371387, -20.393484018162471 ], [ 118.102373001204413, -20.394065171459566 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.178924939246613, -20.977441744556607 ], [ 116.178195657977056, -20.977191930948667 ], [ 116.177420637992753, -20.978507659688521 ], [ 116.177237451451006, -20.979454977207801 ], [ 116.177321999085649, -20.980928570300094 ], [ 116.177279725268349, -20.982217952333762 ], [ 116.177589733262053, -20.983152089508813 ], [ 116.178068836525085, -20.9825995020264 ], [ 116.178012471435295, -20.981086454412271 ], [ 116.178125201614861, -20.979454977207801 ], [ 116.178843856509388, -20.977928740470208 ], [ 116.178924939246613, -20.977441744556607 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.084119681078874, -26.945112525036997 ], [ 153.083781922139451, -26.944579161915748 ], [ 153.084681643344283, -26.944303186631942 ], [ 153.085474945911983, -26.94391509524592 ], [ 153.086084434470052, -26.943820228259447 ], [ 153.086771318400622, -26.944191071479899 ], [ 153.08707122546889, -26.944725773510424 ], [ 153.086771318400622, -26.945156982977785 ], [ 153.085765178558688, -26.945415707866378 ], [ 153.085097643471215, -26.945122486281115 ], [ 153.084391410697577, -26.945062117036517 ], [ 153.084119681078874, -26.945112525036997 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.407061458258539, -27.036795919670283 ], [ 153.41934543057468, -27.034601744004355 ], [ 153.421250431629005, -27.034660255911934 ], [ 153.428668499999958, -27.035444999235473 ], [ 153.428115004393902, -27.030798404609683 ], [ 153.413104909879308, -27.031149487488946 ], [ 153.406273181960188, -27.032495295024656 ], [ 153.404006887602407, -27.033255961714566 ], [ 153.405813354119459, -27.037000707211263 ], [ 153.407061458258539, -27.036795919670283 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.039062019409357, -14.536357263261568 ], [ 126.038231556810928, -14.535716671812999 ], [ 126.0375697819278, -14.536407505649573 ], [ 126.036843127154185, -14.537173700651316 ], [ 126.036557655635974, -14.538279026464416 ], [ 126.036648487482694, -14.53918337983483 ], [ 126.036609559548396, -14.539974685997146 ], [ 126.036466823789283, -14.541340624488837 ], [ 126.03664848748268, -14.541591830648246 ], [ 126.037089670738084, -14.539883623130731 ], [ 126.037375142256309, -14.539029514418552 ], [ 126.037556805949706, -14.538100039421034 ], [ 126.038491076372935, -14.536894228192097 ], [ 126.039062019409357, -14.536357263261568 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.881507693314674, -14.624461677779205 ], [ 125.880832942453452, -14.623407006911554 ], [ 125.880106287679837, -14.624537011218765 ], [ 125.879301777037611, -14.62569212072221 ], [ 125.879016305519414, -14.626596115225052 ], [ 125.879223921169, -14.62757543840263 ], [ 125.879094161387997, -14.628504535840356 ], [ 125.878237746833378, -14.629408518762087 ], [ 125.878056083139981, -14.629885619358747 ], [ 125.880106287679837, -14.628404093063697 ], [ 125.880443663110441, -14.6263701169483 ], [ 125.881429837446063, -14.624737900264574 ], [ 125.881507693314674, -14.624461677779205 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.829123669723529, -14.580663467455659 ], [ 125.829175573635922, -14.579583470258802 ], [ 125.82735893670187, -14.579583470258802 ], [ 125.82664525790635, -14.579847190993176 ], [ 125.825957531067019, -14.579947655951798 ], [ 125.825775867373636, -14.580198818147888 ], [ 125.826035386935629, -14.580437421968904 ], [ 125.827514648439077, -14.580198818147888 ], [ 125.828825222227209, -14.580475096232814 ], [ 125.829123669723529, -14.580663467455659 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.827112393117943, -14.586829396532259 ], [ 125.8285008227747, -14.58676660790058 ], [ 125.829409141241726, -14.586088489537616 ], [ 125.830019012212446, -14.585561062700299 ], [ 125.829551877000853, -14.584543878803501 ], [ 125.828280231146991, -14.585724313999227 ], [ 125.827436792570467, -14.586025700694659 ], [ 125.826878825512154, -14.586276855959047 ], [ 125.826230026607135, -14.586038258464676 ], [ 125.825451467921127, -14.586389875734554 ], [ 125.824919452819003, -14.586352202482507 ], [ 125.824945404775193, -14.58666614605268 ], [ 125.826268954541447, -14.586829396532259 ], [ 125.826956681380778, -14.587017762319819 ], [ 125.827177273008445, -14.586892185146013 ], [ 125.827112393117943, -14.586829396532259 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.834534652591344, -14.588185626605576 ], [ 125.833509550321423, -14.588235857188584 ], [ 125.833055391087896, -14.58934092711503 ], [ 125.832458496095299, -14.590144610849896 ], [ 125.832484448051488, -14.590646911694098 ], [ 125.833214346819631, -14.591745690794417 ], [ 125.833564698228344, -14.590916897924203 ], [ 125.834148617242874, -14.589523011968305 ], [ 125.834615752454468, -14.588643980250653 ], [ 125.834534652591344, -14.588185626605576 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.740955142526076, -14.48642639051071 ], [ 125.740098727971429, -14.485974106500707 ], [ 125.739579688847414, -14.486602278487714 ], [ 125.739398025154017, -14.487167631754641 ], [ 125.739475881022628, -14.487607349965749 ], [ 125.73951480895694, -14.488310897289855 ], [ 125.73921636146062, -14.488964189234826 ], [ 125.740072776015239, -14.488235517326183 ], [ 125.740319319599138, -14.488310897289855 ], [ 125.740669671007865, -14.489843617659551 ], [ 125.74108490230708, -14.488964189234826 ], [ 125.740890262635546, -14.488059630644642 ], [ 125.740565863183065, -14.487205321921184 ], [ 125.740929190569858, -14.486627405330179 ], [ 125.740955142526076, -14.48642639051071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.708891, -14.496058999542155 ], [ 125.709202924114479, -14.497984446583089 ], [ 125.710241002362523, -14.497645251348183 ], [ 125.710760041486537, -14.497821130423693 ], [ 125.711162296807643, -14.497306055594045 ], [ 125.712070615274669, -14.496363842441607 ], [ 125.712407990705302, -14.495936704492774 ], [ 125.713965108077332, -14.496012081837691 ], [ 125.714808546653842, -14.495999518948647 ], [ 125.716158048376272, -14.494818604199294 ], [ 125.71698851097473, -14.493775876370513 ], [ 125.717494574120636, -14.493537178948609 ], [ 125.717767069660724, -14.493436674694054 ], [ 125.717559454011109, -14.492758269783888 ], [ 125.716573279675487, -14.492984404984639 ], [ 125.715197825996853, -14.493524615919279 ], [ 125.714107843836416, -14.494542218987561 ], [ 125.71258965439867, -14.494730663487488 ], [ 125.711668359953578, -14.494718100525814 ], [ 125.710798969420821, -14.495283433096272 ], [ 125.709760891172806, -14.496125147806977 ], [ 125.709086140311584, -14.496238213718579 ], [ 125.708891, -14.496058999542155 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.709073164333475, -14.497067361974329 ], [ 125.707658782720529, -14.497419120903112 ], [ 125.707295455333735, -14.496464345368725 ], [ 125.707386287180441, -14.495748261018335 ], [ 125.708112941954056, -14.495672883583687 ], [ 125.708891, -14.496058999542155 ], [ 125.709073164333475, -14.497067361974329 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.445663636359257, -21.661718154638582 ], [ 149.446312144544095, -21.66097996253459 ], [ 149.44484752359034, -21.660255101107346 ], [ 149.443504179067531, -21.659726546629997 ], [ 149.442033536389232, -21.660039559778788 ], [ 149.440524455399043, -21.660865402603207 ], [ 149.439839213107803, -21.661819868709209 ], [ 149.439082790120409, -21.66337597555583 ], [ 149.43858696376401, -21.664983782939917 ], [ 149.437433619196753, -21.666653553853465 ], [ 149.436419126618119, -21.667713112244023 ], [ 149.437056299761451, -21.667823044476503 ], [ 149.439474201260282, -21.665845218649373 ], [ 149.440100448315633, -21.663416611330149 ], [ 149.440786064220049, -21.66184828631172 ], [ 149.442249162257724, -21.661176421878562 ], [ 149.444581744200633, -21.661093035480317 ], [ 149.445663636359257, -21.661718154638582 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.157913, -30.201532499179159 ], [ 153.158494420632735, -30.202105561095092 ], [ 153.159098315895932, -30.202767147978619 ], [ 153.159098315895932, -30.203318466984832 ], [ 153.158715565377008, -30.203994747415258 ], [ 153.158417870528922, -30.204149115123023 ], [ 153.15789052536951, -30.2042005709718 ], [ 153.157150541032877, -30.204744531156535 ], [ 153.156248950921622, -30.205626622363166 ], [ 153.155587643080594, -30.206490329009444 ], [ 153.155511092976809, -30.206982822171913 ], [ 153.155791776690705, -30.20747531286991 ], [ 153.15671675711144, -30.208978496848601 ], [ 153.15739720247845, -30.209544481931875 ], [ 153.158247759187162, -30.209919353376815 ], [ 153.158171209083463, -30.210373239930693 ], [ 153.158086153412597, -30.211012720267661 ], [ 153.157839491967025, -30.21173304946316 ], [ 153.157618347222751, -30.212335769839978 ], [ 153.158690048675794, -30.212453373385475 ], [ 153.15946405528075, -30.212115262813324 ], [ 153.159350167066606, -30.211852415749064 ], [ 153.159580055768174, -30.21125853660331 ], [ 153.160212249697537, -30.21071255093705 ], [ 153.160432559703224, -30.210070778311799 ], [ 153.160314611989492, -30.209711704174431 ], [ 153.159693705592076, -30.2092412760421 ], [ 153.159557616518697, -30.208168103448493 ], [ 153.159140843731421, -30.20718680182717 ], [ 153.158715565377037, -30.20682662124922 ], [ 153.158247759187248, -30.206731062915445 ], [ 153.158349825992303, -30.206495842006241 ], [ 153.159098315895989, -30.2059959957076 ], [ 153.159982894873082, -30.205400587244799 ], [ 153.160008411574353, -30.205010997041878 ], [ 153.160153006214813, -30.204110523218773 ], [ 153.159999906007243, -30.202971136370834 ], [ 153.159965883738892, -30.202287497931344 ], [ 153.159523594250345, -30.201409052321274 ], [ 153.1591735, -30.201167499179164 ], [ 153.158758093212469, -30.201467860640442 ], [ 153.157913, -30.201532499179159 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.415204145962974, -19.317447076619658 ], [ 147.417073892558193, -19.319022374932167 ], [ 147.419267532264399, -19.320406281860915 ], [ 147.420725051263815, -19.320582950830541 ], [ 147.421358115071655, -19.319920442194441 ], [ 147.419944763314618, -19.3185807025081 ], [ 147.418266408103165, -19.317564855932744 ], [ 147.417000280487514, -19.316769845569421 ], [ 147.415366092518468, -19.316284005902947 ], [ 147.414173576973468, -19.316166226589861 ], [ 147.414011630417974, -19.316416507630166 ], [ 147.415204145962974, -19.317447076619658 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.616589947273496, -13.051970403276124 ], [ 141.620682778403193, -13.051204837741073 ], [ 141.62118334048381, -13.048083685944325 ], [ 141.622508357756004, -13.047112006611377 ], [ 141.621831126705757, -13.043961409986359 ], [ 141.619769988726773, -13.044697530693139 ], [ 141.617473292121645, -13.045168647945477 ], [ 141.615824381738435, -13.045580875541274 ], [ 141.615824381738435, -13.045580875541274 ], [ 141.616589947273496, -13.051970403276124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.625546498159281, -38.36059898567521 ], [ 141.62380666541128, -38.358148721221781 ], [ 141.622878754612344, -38.357090322966748 ], [ 141.621820356357318, -38.355712955374585 ], [ 141.620631470646174, -38.356379891261312 ], [ 141.621315842211033, -38.357547773008548 ], [ 141.623656706058568, -38.360448088593266 ], [ 141.624260325038136, -38.361036985158691 ], [ 141.624952278502519, -38.360757259290111 ], [ 141.625546498159281, -38.36059898567521 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.627933567364948, -38.402075714561683 ], [ 141.627153279415779, -38.401641403344684 ], [ 141.62652021560794, -38.401575152481072 ], [ 141.626262573360577, -38.402083075768751 ], [ 141.626012292320269, -38.403584762010581 ], [ 141.626211044911088, -38.404541718929394 ], [ 141.626056459562676, -38.405182143944295 ], [ 141.626240489739359, -38.405616455161294 ], [ 141.626704245784623, -38.405388257742189 ], [ 141.626998694067339, -38.405174782737227 ], [ 141.627587590632771, -38.405336729292713 ], [ 141.628021901849763, -38.404298799096154 ], [ 141.627859955294269, -38.403128367172378 ], [ 141.627911483743759, -38.402473219743342 ], [ 141.627933567364948, -38.402075714561683 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.949165591346187, -35.00189961018912 ], [ 117.948389716978355, -35.001842138013721 ], [ 117.94595672821994, -35.000204181014951 ], [ 117.945362849074186, -34.999131367074227 ], [ 117.947039120856559, -34.997704141385235 ], [ 117.947939518271085, -34.997292257461567 ], [ 117.94832266610706, -34.996487647006028 ], [ 117.948993174820004, -34.996200286129053 ], [ 117.94929011439288, -34.995960818731568 ], [ 117.951799732718499, -34.996928267017395 ], [ 117.95118669618094, -34.998805691413651 ], [ 117.95029587746231, -35.000702273201711 ], [ 117.949615790053457, -35.001765508446532 ], [ 117.949165591346187, -35.00189961018912 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.36257177926575, -29.42997220557865 ], [ 153.361249919231653, -29.427654161171027 ], [ 153.361192447056254, -29.423209646273762 ], [ 153.362705881008338, -29.421849471456063 ], [ 153.364659934971797, -29.42160042536268 ], [ 153.373721381292512, -29.42466560805045 ], [ 153.371978058638859, -29.429569900350881 ], [ 153.364315101919431, -29.428880234246133 ], [ 153.36257177926575, -29.42997220557865 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.328758982741277, -29.673711701431696 ], [ 153.328758982741277, -29.672830461408964 ], [ 153.32950612102141, -29.672159952696013 ], [ 153.329544435805019, -29.670895564837309 ], [ 153.330770508880136, -29.670569889176733 ], [ 153.331632591511067, -29.671144610930689 ], [ 153.33328012720574, -29.673481812730113 ], [ 153.333567488082707, -29.674152321443064 ], [ 153.3323222576158, -29.674688728413422 ], [ 153.331690063686466, -29.675110191032992 ], [ 153.329850954073805, -29.674324737969251 ], [ 153.328758982741277, -29.673711701431696 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.140799513693736, -30.296479271537571 ], [ 153.140383128632635, -30.297870944600604 ], [ 153.138287771550949, -30.297465042195043 ], [ 153.138784747269028, -30.296038571842345 ], [ 153.139268291210982, -30.296003779623302 ], [ 153.140799513693736, -30.296479271537571 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.095112827100735, -30.380342934932155 ], [ 153.096452387449602, -30.379409094830397 ], [ 153.097047747604677, -30.379128941059992 ], [ 153.097074809429898, -30.378416879945974 ], [ 153.097575453196612, -30.377331268592275 ], [ 153.097778416885831, -30.375626951177136 ], [ 153.097873133274163, -30.375101641873382 ], [ 153.098509086167013, -30.374401225077246 ], [ 153.099483311875304, -30.373969298884784 ], [ 153.101012305000751, -30.373420633131829 ], [ 153.101705575144734, -30.374268783417236 ], [ 153.1021653525479, -30.375475699100548 ], [ 153.102337769074069, -30.376452726082274 ], [ 153.100594446420416, -30.37850256700472 ], [ 153.096648023709918, -30.38166353665148 ], [ 153.095112827100735, -30.380342934932155 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.028677597608635, -30.498427839663687 ], [ 153.026493654943607, -30.501588809310451 ], [ 153.031148901150658, -30.50319803022153 ], [ 153.032355816833956, -30.501742068444841 ], [ 153.031512891594815, -30.49865772836527 ], [ 153.028677597608635, -30.498427839663687 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.010516390183597, -30.602529106697048 ], [ 153.00930947450027, -30.60116893187935 ], [ 153.009845881470625, -30.600575052733596 ], [ 153.009845881470625, -30.599463924009278 ], [ 153.010133242347621, -30.598984989214316 ], [ 153.013064323292781, -30.600364321423811 ], [ 153.012163925878269, -30.602644051047839 ], [ 153.010516390183597, -30.602529106697048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.007815197940005, -30.655595081979055 ], [ 153.00739373532042, -30.653027991478048 ], [ 153.008160030992372, -30.652376640156898 ], [ 153.007067178716966, -30.650174109009232 ], [ 153.007851971648677, -30.649312701584567 ], [ 153.009340372036291, -30.648637539049243 ], [ 153.011570046732515, -30.648736735715172 ], [ 153.014213766800708, -30.650882363596608 ], [ 153.01218308327006, -30.654522268038335 ], [ 153.011033639762161, -30.656093174165818 ], [ 153.007815197940005, -30.655595081979055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 152.834000182151641, -31.635610616826057 ], [ 152.833808608233682, -31.637813716882892 ], [ 152.836337383951076, -31.638963160390805 ], [ 152.836912105705039, -31.639001475174403 ], [ 152.838042391821148, -31.638407596028646 ], [ 152.838463854440704, -31.635993764662029 ], [ 152.837908290078559, -31.634978422896705 ], [ 152.83687379092143, -31.634748534195122 ], [ 152.834000182151641, -31.635610616826057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.396615281863433, -38.151120053424926 ], [ 144.394620003553712, -38.151812280419414 ], [ 144.401251369700617, -38.156196232151494 ], [ 144.415100948556017, -38.157534438599974 ], [ 144.421277508617607, -38.156447147731171 ], [ 144.421923039835434, -38.145556040350812 ], [ 144.419634338244919, -38.145313740869604 ], [ 144.41912084750345, -38.147878036234886 ], [ 144.418504658613699, -38.151396945011093 ], [ 144.417976496708206, -38.155134878541027 ], [ 144.416127930038925, -38.155942431606405 ], [ 144.415893191414256, -38.155515583243144 ], [ 144.407941420503647, -38.154119656285793 ], [ 144.396615281863433, -38.151120053424926 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.232645999107859, -29.978803061038043 ], [ 153.231692343000162, -29.979570951118621 ], [ 153.231464002805382, -29.980106143724552 ], [ 153.231705774776344, -29.980839120222626 ], [ 153.230577505578509, -29.981281230415533 ], [ 153.230228279398204, -29.980397008061654 ], [ 153.231087913072741, -29.979128833312437 ], [ 153.231880387866454, -29.977709389159248 ], [ 153.232162455165934, -29.977779198362366 ], [ 153.232645999107859, -29.978803061038043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.484385489477262, -28.126157031231976 ], [ 153.483412624965666, -28.127519177405386 ], [ 153.48261026248187, -28.128934375873094 ], [ 153.484385489477262, -28.128660182629503 ], [ 153.48506749758846, -28.128837081576634 ], [ 153.486301129907332, -28.127722613335138 ], [ 153.486190805065775, -28.12613049574502 ], [ 153.484385489477262, -28.126157031231976 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.331665800602124, -35.025472696844602 ], [ 117.329148404394445, -35.026164872402028 ], [ 117.330122287598883, -35.028286504443344 ], [ 117.33201492854333, -35.028662674589867 ], [ 117.333154188140966, -35.026721618053962 ], [ 117.333337939688974, -35.026210014082622 ], [ 117.331665800602124, -35.025472696844602 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 119.398870715657637, -34.389386995675387 ], [ 119.396812698319962, -34.389659938427634 ], [ 119.397419078428385, -34.393860111888735 ], [ 119.39984459886206, -34.394982144215909 ], [ 119.401535113103691, -34.394360479514539 ], [ 119.399789473397632, -34.390979149184467 ], [ 119.398870715657637, -34.389386995675387 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.899719478660472, -34.471322228385837 ], [ 118.905985348684823, -34.464744383383724 ], [ 118.908199289426776, -34.466707459458178 ], [ 118.902977731073136, -34.472699721897179 ], [ 118.899844796060961, -34.47118447778417 ], [ 118.899719478660472, -34.471322228385837 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.16537116803849, -27.402268572795442 ], [ 153.163616724431677, -27.392032507073445 ], [ 153.165204078171143, -27.389362073193443 ], [ 153.176148464480292, -27.391068191167147 ], [ 153.187009305855753, -27.399820904175023 ], [ 153.189265019064521, -27.402861938843479 ], [ 153.188513114661617, -27.40501286406263 ], [ 153.171637038062784, -27.406496236374245 ], [ 153.16537116803849, -27.402268572795442 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.492587078835996, -17.404720711926132 ], [ 123.527710575561244, -17.392999635691183 ], [ 123.534004381332807, -17.391062195367148 ], [ 123.541516343060167, -17.389899721323086 ], [ 123.554814545577514, -17.38815599640704 ], [ 123.555835278270962, -17.390230729684557 ], [ 123.559678345219211, -17.404979482627279 ], [ 123.569703737258067, -17.409364017568333 ], [ 123.584741825316428, -17.421480730564017 ], [ 123.584407645581777, -17.436466079126657 ], [ 123.580063309031559, -17.446030208220474 ], [ 123.589086161866618, -17.465795538181244 ], [ 123.584073465847155, -17.482052225635922 ], [ 123.593764678151445, -17.491933031782999 ], [ 123.603455890455706, -17.513605177020128 ], [ 123.612478743290737, -17.526989621834794 ], [ 123.603121710721069, -17.532088198273204 ], [ 123.586746903724205, -17.530494908531118 ], [ 123.578058230623824, -17.513286487733737 ], [ 123.551658031588033, -17.499582319387972 ], [ 123.535730102270179, -17.482099674121525 ], [ 123.51766078892598, -17.466026147513332 ], [ 123.513803295066012, -17.441816351871157 ], [ 123.510960931169166, -17.427010477802035 ], [ 123.492587078835996, -17.404720711926132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.813989123272677, -17.164945908841851 ], [ 123.828358851861779, -17.147703174044803 ], [ 123.835710806023641, -17.135249091884504 ], [ 123.843564029787444, -17.138761866258836 ], [ 123.843229850052822, -17.145946879700553 ], [ 123.856095769836074, -17.154887841553858 ], [ 123.864617353069136, -17.162551180370421 ], [ 123.870465498425162, -17.167979187190952 ], [ 123.870799678159813, -17.174045595051851 ], [ 123.877149093117765, -17.17707872454827 ], [ 123.88366559794305, -17.181708142296376 ], [ 123.873473116036834, -17.197191905949243 ], [ 123.853255242091706, -17.191924379063153 ], [ 123.841893131114304, -17.186497073433838 ], [ 123.828191761994475, -17.179792535184696 ], [ 123.823179065975012, -17.172928113780191 ], [ 123.818834729424793, -17.167819542198796 ], [ 123.813654943538054, -17.165903791574301 ], [ 123.813989123272677, -17.164945908841851 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.820923352766201, -17.001235208605337 ], [ 123.824599329847132, -17.001554783895969 ], [ 123.84214376591521, -17.009543989010272 ], [ 123.853986260261095, -17.014856623462325 ], [ 123.859374908482039, -17.018831009617486 ], [ 123.860753399887329, -17.023883757266468 ], [ 123.861254669489256, -17.025641202038148 ], [ 123.86242429856047, -17.026879391851818 ], [ 123.871405378928642, -17.020788217814001 ], [ 123.874287679139826, -17.013418630783214 ], [ 123.871739558663322, -16.999637323977332 ], [ 123.856847674238949, -16.984616542692624 ], [ 123.861192010789139, -16.983817531263533 ], [ 123.867374335879802, -16.983497925738995 ], [ 123.86887814468561, -16.978863584449549 ], [ 123.86286290946228, -16.975187991007807 ], [ 123.853338787025322, -16.975028180964404 ], [ 123.844650113924942, -16.967197322179523 ], [ 123.832786733345586, -16.958567017932896 ], [ 123.825017054515413, -16.956649118702629 ], [ 123.811065050594607, -16.979343004373767 ], [ 123.818249914889151, -16.986534156236619 ], [ 123.822092981837386, -16.987972353528878 ], [ 123.818249914889151, -17.000755844647507 ], [ 123.820923352766201, -17.001235208605337 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.64650140108094, -17.181733891589374 ], [ 123.631858151362678, -17.195344312146883 ], [ 123.637517500907208, -17.200959720764377 ], [ 123.641552642510689, -17.208859794015538 ], [ 123.647135857307944, -17.21375663975504 ], [ 123.646780561820847, -17.218265464187496 ], [ 123.643075337455386, -17.224761948532912 ], [ 123.645054840883489, -17.230797621576585 ], [ 123.638253470130493, -17.237923825041875 ], [ 123.63698455767657, -17.245982890441521 ], [ 123.640182217060442, -17.251218064693447 ], [ 123.658251530404286, -17.240044665833604 ], [ 123.672666375880823, -17.222350048153569 ], [ 123.687487273342668, -17.220023131494553 ], [ 123.687994838324215, -17.219319977946732 ], [ 123.686167604390576, -17.215586863169172 ], [ 123.680178337608055, -17.210205227419625 ], [ 123.674290583821858, -17.206859807358168 ], [ 123.670636115954565, -17.201514282367381 ], [ 123.668605856028279, -17.193853306174685 ], [ 123.665306683648097, -17.189998454602854 ], [ 123.661093894301047, -17.187283039292211 ], [ 123.657693208924528, -17.185088857664418 ], [ 123.653277393584887, -17.183597769131012 ], [ 123.64650140108094, -17.181733891589374 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.780907512895595, -12.274910865387998 ], [ 131.778648848727585, -12.274960461525215 ], [ 131.77670784513262, -12.28078856170071 ], [ 131.779268760283514, -12.280988746712534 ], [ 131.780361417414525, -12.278619880980726 ], [ 131.780831378148349, -12.27620036191972 ], [ 131.780907512895595, -12.274910865387998 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.704633185288856, -12.287086436646625 ], [ 131.702831329604265, -12.287929530705568 ], [ 131.704319310201015, -12.29363345796709 ], [ 131.706368042321685, -12.292866118145401 ], [ 131.705514403938082, -12.288662390693327 ], [ 131.704633185288856, -12.287086436646625 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.167277695822847, -27.701463154953906 ], [ 114.163674970679381, -27.701858349101464 ], [ 114.162909790117951, -27.701463154953906 ], [ 114.162559082360616, -27.700192878357726 ], [ 114.163451793015625, -27.697511134765307 ], [ 114.164472033764213, -27.696819516518939 ], [ 114.166926988065526, -27.697017122179385 ], [ 114.168042876384305, -27.695436266878737 ], [ 114.169031234609506, -27.69337547469992 ], [ 114.169700767600759, -27.691794566658832 ], [ 114.172952784986919, -27.695520956135987 ], [ 114.170274653021835, -27.699077845604251 ], [ 114.169286294796649, -27.699275447175928 ], [ 114.167277695822847, -27.701463154953906 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.621106158198444, -24.833023717060026 ], [ 113.621680043619534, -24.831808461090276 ], [ 113.623561112499743, -24.831490177793821 ], [ 113.624230645491011, -24.832416090566127 ], [ 113.625123356146034, -24.833631340571923 ], [ 113.625250886239584, -24.835251655357855 ], [ 113.623816172686901, -24.836958749780258 ], [ 113.623688642593322, -24.83817395519495 ], [ 113.622700284368108, -24.841768868028737 ], [ 113.622030751376855, -24.843996648929103 ], [ 113.621010510628267, -24.843996648929103 ], [ 113.620117799973244, -24.842492177912384 ], [ 113.619798974739297, -24.84046689958544 ], [ 113.621106158198444, -24.838354788314316 ], [ 113.621680043619534, -24.836734514144059 ], [ 113.621680043619534, -24.835316756848076 ], [ 113.623242287265796, -24.834709141607991 ], [ 113.623019109602055, -24.834390865768253 ], [ 113.621680043619534, -24.83358070539316 ], [ 113.621106158198444, -24.833023717060026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.130807405930682, -21.647677660884415 ], [ 115.132752239857695, -21.647322054321059 ], [ 115.13281600490447, -21.650115023958566 ], [ 115.132369649576958, -21.652085627844269 ], [ 115.130791464669002, -21.652041178429151 ], [ 115.131413173875174, -21.649759423399452 ], [ 115.131030583594452, -21.648766700535528 ], [ 115.130743640883907, -21.648144393169474 ], [ 115.130807405930682, -21.647677660884415 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.187175707290493, -21.613335362245547 ], [ 115.184912048129547, -21.613750334083285 ], [ 115.185932288878135, -21.616951505376569 ], [ 115.18838724317942, -21.618729903249495 ], [ 115.190619019817007, -21.61552877132873 ], [ 115.18838724317942, -21.614906320780808 ], [ 115.18784524028176, -21.614372789607156 ], [ 115.187175707290493, -21.613335362245547 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.21975964619871, -21.61669223040699 ], [ 115.217081514233655, -21.614824809201114 ], [ 115.216411981242373, -21.608237039634833 ], [ 115.217304691897411, -21.60473183859839 ], [ 115.217145279280444, -21.602301120784382 ], [ 115.21953646853494, -21.601619326747304 ], [ 115.220078471432643, -21.607407063131411 ], [ 115.21975964619871, -21.61669223040699 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.228750517795703, -21.594423239472555 ], [ 115.230344643965367, -21.593000283864786 ], [ 115.234170546772617, -21.594008212198506 ], [ 115.23767762434592, -21.599996347581857 ], [ 115.238570335000929, -21.603316395081333 ], [ 115.237039973878041, -21.603553538416328 ], [ 115.233277836117608, -21.597743414825846 ], [ 115.230599704152525, -21.596083336669246 ], [ 115.228750517795703, -21.594423239472555 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.245775785287876, -21.60711064179754 ], [ 115.245775785287876, -21.603375680951519 ], [ 115.246413435755755, -21.599818485744692 ], [ 115.24526566491356, -21.597743414825846 ], [ 115.251960994826234, -21.596320491857362 ], [ 115.248900272580443, -21.594660397380615 ], [ 115.247306146410764, -21.593593183734544 ], [ 115.245775785287876, -21.590510077895345 ], [ 115.244628014445709, -21.588019829094577 ], [ 115.241503527153142, -21.586952566497903 ], [ 115.240865876685262, -21.590687951170775 ], [ 115.242587532948534, -21.593771053221943 ], [ 115.243544008650318, -21.595431157898346 ], [ 115.241949882480654, -21.597743414825846 ], [ 115.242396237808151, -21.600233496358026 ], [ 115.243926598931054, -21.601241374321006 ], [ 115.243735303790672, -21.604383537027914 ], [ 115.244372954258552, -21.605806380712789 ], [ 115.245775785287876, -21.60711064179754 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.385389355228241, -21.546598343997282 ], [ 115.384719822236974, -21.548466568414621 ], [ 115.386824068780953, -21.551254033140314 ], [ 115.390267381307453, -21.55386352604663 ], [ 115.393965754021124, -21.55386352604663 ], [ 115.396962711220112, -21.554367627220685 ], [ 115.398429307296198, -21.554604850696389 ], [ 115.398429307296198, -21.553359423120682 ], [ 115.401872619822726, -21.553537342000471 ], [ 115.404455104217618, -21.552944278219194 ], [ 115.400437906269985, -21.551076111460084 ], [ 115.395751175331171, -21.550749921146259 ], [ 115.392977395795924, -21.550957496885367 ], [ 115.389629730839587, -21.54825898911167 ], [ 115.387716779435962, -21.547843829614862 ], [ 115.385389355228241, -21.546598343997282 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.435795624713492, -21.530635906521535 ], [ 115.433468200505743, -21.529419931315047 ], [ 115.432352312186964, -21.529212324774502 ], [ 115.432129134523223, -21.532000159267941 ], [ 115.431013246204458, -21.533542342591545 ], [ 115.429100294800833, -21.53449137034201 ], [ 115.428335114239388, -21.536152153979415 ], [ 115.42865393947335, -21.537071508181107 ], [ 115.431778426765916, -21.537101164671327 ], [ 115.434552206301134, -21.534698969335576 ], [ 115.434679736394713, -21.531703583674172 ], [ 115.435795624713492, -21.530635906521535 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.445950208414359, -21.53284539638716 ], [ 115.442825721121793, -21.531362520992563 ], [ 115.447990689911535, -21.526379948758883 ], [ 115.452199182999479, -21.525371550248611 ], [ 115.455132375151692, -21.524956325297961 ], [ 115.456025085806729, -21.528871256242233 ], [ 115.456025085806729, -21.531540466839431 ], [ 115.457810507116761, -21.533438542305028 ], [ 115.462274060391863, -21.532192933079092 ], [ 115.46603619815231, -21.527862875027523 ], [ 115.468076679649485, -21.523888598546495 ], [ 115.471201166942052, -21.522227674668514 ], [ 115.478342852182223, -21.519321012193519 ], [ 115.48146733947479, -21.527803558267461 ], [ 115.488003256770483, -21.532919539759398 ], [ 115.49049009359517, -21.534758283279224 ], [ 115.489151027612621, -21.537486698492934 ], [ 115.479586270594581, -21.533749942941991 ], [ 115.476908138629511, -21.532267076784468 ], [ 115.476844373582722, -21.535825930121373 ], [ 115.477099433769865, -21.538910199118728 ], [ 115.476206723114856, -21.541223357863664 ], [ 115.476015427974474, -21.548043995949126 ], [ 115.473082235822289, -21.545790255348749 ], [ 115.470659164044392, -21.536656316681899 ], [ 115.470149043670077, -21.53025035450958 ], [ 115.472827175635132, -21.526691364531125 ], [ 115.465047839927081, -21.534995538811501 ], [ 115.466578201049984, -21.54098611250938 ], [ 115.467470911704993, -21.544959921040746 ], [ 115.464601484599584, -21.548281229765486 ], [ 115.462816063289566, -21.545612326968421 ], [ 115.460839346839137, -21.539147447865933 ], [ 115.456822148891561, -21.536063183909015 ], [ 115.452103535429316, -21.531495980398155 ], [ 115.449871758791772, -21.53108077295575 ], [ 115.447639982154215, -21.533334741944302 ], [ 115.445950208414359, -21.53284539638716 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.49406093621522, -21.509755309396766 ], [ 115.498779549677479, -21.504356712443091 ], [ 115.513062920157807, -21.507441649532357 ], [ 115.515741052122848, -21.513907939875605 ], [ 115.514210690999946, -21.51782316852324 ], [ 115.511723854175273, -21.517467243004663 ], [ 115.509747137724872, -21.510585844982561 ], [ 115.501266386502181, -21.510407873470754 ], [ 115.498779549677479, -21.515984210627501 ], [ 115.49386964107488, -21.519484142750045 ], [ 115.490745153782299, -21.518475696376516 ], [ 115.493168225560225, -21.514738451735585 ], [ 115.495400002197755, -21.511238405328459 ], [ 115.49406093621522, -21.509755309396766 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.58824191031978, -21.400810285269284 ], [ 115.58725355209458, -21.399385434599218 ], [ 115.586137663775816, -21.399058904364903 ], [ 115.585563778354725, -21.398346472231506 ], [ 115.582439291062158, -21.399979124065986 ], [ 115.581227755173202, -21.400721232509234 ], [ 115.5802075144246, -21.401344600690422 ], [ 115.580526339658533, -21.402799116109506 ], [ 115.5836508269511, -21.40247259349967 ], [ 115.583778357044679, -21.404966020402529 ], [ 115.584543537606137, -21.405797153251502 ], [ 115.586552136579925, -21.405826836480127 ], [ 115.586010133682237, -21.404164566393678 ], [ 115.586456489009734, -21.402294489950538 ], [ 115.58824191031978, -21.400810285269284 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.746969053034647, -21.280328065809897 ], [ 115.748371884063971, -21.280372628766077 ], [ 115.746984994296355, -21.284056453123736 ], [ 115.746203872473217, -21.285051664035574 ], [ 115.74586910597759, -21.286447918738762 ], [ 115.745247396771404, -21.286254820473957 ], [ 115.744864806490682, -21.285111079399364 ], [ 115.743414151676291, -21.28478429460144 ], [ 115.741899731815082, -21.28546757107808 ], [ 115.740401253215566, -21.285259617703844 ], [ 115.739062187233046, -21.285616109022495 ], [ 115.738281065409907, -21.285616109022495 ], [ 115.73859989064384, -21.284903125521065 ], [ 115.740273723121987, -21.284487216882326 ], [ 115.74268085363822, -21.284115868889579 ], [ 115.744689452612008, -21.283284045983471 ], [ 115.746140107426413, -21.281783782062771 ], [ 115.746698051585824, -21.280684569081362 ], [ 115.746969053034647, -21.280328065809897 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.761762543889276, -21.269781119903691 ], [ 115.757840993511877, -21.270820993231311 ], [ 115.757298990614188, -21.272989848243018 ], [ 115.754748388742712, -21.27435650758709 ], [ 115.752516612105154, -21.27714920677624 ], [ 115.752070256777642, -21.279228841950768 ], [ 115.751719549020322, -21.28080340331319 ], [ 115.752612259675345, -21.281308447727465 ], [ 115.754174503321622, -21.280298357164941 ], [ 115.755736746967912, -21.277178916057142 ], [ 115.759211942017785, -21.275396348585261 ], [ 115.75717146052061, -21.279644765458006 ], [ 115.757522168277958, -21.28101136298789 ], [ 115.759626414821909, -21.28050631755363 ], [ 115.760965480804444, -21.277683972914502 ], [ 115.761316188561793, -21.278931753011364 ], [ 115.761762543889276, -21.280684569081366 ], [ 115.763771142863078, -21.28050631755363 ], [ 115.763771142863078, -21.277268043863828 ], [ 115.765429034079531, -21.27530721964478 ], [ 115.76555656417311, -21.273019558363714 ], [ 115.763452317629159, -21.271355782367511 ], [ 115.761762543889276, -21.269781119903691 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.76904770048472, -21.270405044781896 ], [ 115.76962158590581, -21.268741239229261 ], [ 115.772395365441028, -21.266037515094723 ], [ 115.775743030397379, -21.265621553127975 ], [ 115.778006689558296, -21.268117307298255 ], [ 115.77666762357579, -21.270613019153544 ], [ 115.77622126824825, -21.272692746706106 ], [ 115.773861961517142, -21.271652886603494 ], [ 115.773638783853386, -21.269899962941551 ], [ 115.773861961517142, -21.267909329400204 ], [ 115.772427247964444, -21.270286202151869 ], [ 115.770737474224575, -21.271118098546886 ], [ 115.76904770048472, -21.270405044781896 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.928327439796107, -16.869994742244195 ], [ 123.925649307831051, -16.854250678300286 ], [ 123.92705213886039, -16.854250678300286 ], [ 123.931515692135477, -16.850833188929816 ], [ 123.939039967656342, -16.849978806939614 ], [ 123.943631051025037, -16.847415637817587 ], [ 123.944396231586495, -16.841434774838316 ], [ 123.956511590476026, -16.84302155282564 ], [ 123.955618879821017, -16.854128626171761 ], [ 123.947584483925837, -16.861817756418109 ], [ 123.937382076439903, -16.868652276309927 ], [ 123.93368370372626, -16.869994742244195 ], [ 123.928327439796107, -16.869994742244195 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.995208901818103, -42.312948018223189 ], [ 147.994316191163051, -42.312287873992148 ], [ 147.994539368826821, -42.310472441655115 ], [ 147.995304549388266, -42.310142357422691 ], [ 147.99642043770703, -42.309411450462328 ], [ 147.996005964902935, -42.308491910295913 ], [ 147.99409301349931, -42.308987048977755 ], [ 147.990522170879217, -42.309482183764899 ], [ 147.989756990317801, -42.309152094339545 ], [ 147.988417924335266, -42.307996767719409 ], [ 147.987302036016473, -42.308892737148149 ], [ 147.985962970033967, -42.309317139268593 ], [ 147.982392127413874, -42.309812271459279 ], [ 147.980479176010249, -42.30924640578057 ], [ 147.979140110027743, -42.308326863203163 ], [ 147.978024221708949, -42.308822003183217 ], [ 147.979586465355254, -42.311038296312091 ], [ 147.979809643018996, -42.311792761275001 ], [ 147.97842275325138, -42.312924441762732 ], [ 147.978677813438537, -42.313773188775151 ], [ 147.990729407281293, -42.321364250234076 ], [ 147.993407539246363, -42.318393943934979 ], [ 147.991175762608805, -42.315753553959361 ], [ 147.994045189714228, -42.314621924341793 ], [ 147.994746605228897, -42.313773188775151 ], [ 147.995208901818103, -42.312948018223189 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 150.593116467388597, -35.186520669481304 ], [ 150.592000579069804, -35.186051642771652 ], [ 150.590215157759786, -35.183315599679126 ], [ 150.592446934397316, -35.182690205467367 ], [ 150.594455533371104, -35.18295078697377 ], [ 150.595125066362385, -35.184227624278179 ], [ 150.593116467388597, -35.186520669481304 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 150.899072771561578, -34.460944435850983 ], [ 150.899093044396267, -34.458671890831354 ], [ 150.897922643989602, -34.447519417202081 ], [ 150.899627538979075, -34.447340885896637 ], [ 150.899898157231348, -34.447921111244199 ], [ 150.900060528182735, -34.451223855682642 ], [ 150.900209368221425, -34.452096941127657 ], [ 150.900239812774799, -34.454052284683499 ], [ 150.900172158211689, -34.454819347041891 ], [ 150.900412331910701, -34.455831859366818 ], [ 150.900584851046489, -34.45725437467771 ], [ 150.900689715619251, -34.458777276830816 ], [ 150.900757370182305, -34.459466199632246 ], [ 150.90103475389094, -34.460885865522776 ], [ 150.901291841230631, -34.461544090251067 ], [ 150.901603052220764, -34.462369653913221 ], [ 150.901711299521622, -34.462589988780699 ], [ 150.903003501676295, -34.462344552435731 ], [ 150.904369602018193, -34.462243729230771 ], [ 150.909856908915657, -34.462065646622392 ], [ 150.913104327943159, -34.462489583090431 ], [ 150.917163601727594, -34.465077780096067 ], [ 150.916324685145469, -34.474314311673204 ], [ 150.914253184270194, -34.474545193383001 ], [ 150.90992456347854, -34.476071144897745 ], [ 150.906595958975345, -34.475937292239514 ], [ 150.903943900102888, -34.475044935697383 ], [ 150.900019935444647, -34.469980631575488 ], [ 150.89823385497948, -34.465897730943475 ], [ 150.899072771561578, -34.460944435850983 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 146.283938370560634, -38.693226605620481 ], [ 146.282280479344195, -38.693823829858772 ], [ 146.281515298782722, -38.692952876178218 ], [ 146.279729877472676, -38.693301258922951 ], [ 146.277498100835118, -38.692778684169596 ], [ 146.276159034852611, -38.692181451205563 ], [ 146.274150435878823, -38.691733523210402 ], [ 146.271025948586242, -38.691658868271865 ], [ 146.270898418492663, -38.690439493247545 ], [ 146.273895375691666, -38.69016575314059 ], [ 146.277147393077797, -38.691036740754328 ], [ 146.280048702706608, -38.691459788054878 ], [ 146.280271880370378, -38.69061369095207 ], [ 146.279155992051585, -38.689817355125989 ], [ 146.277721278498888, -38.689045896341618 ], [ 146.277816926069079, -38.687129656271843 ], [ 146.278805284294265, -38.68660703643657 ], [ 146.279379169715355, -38.686084412783977 ], [ 146.279697994949288, -38.685910204051503 ], [ 146.279697994949288, -38.684634734339653 ], [ 146.281164591025373, -38.684808946177476 ], [ 146.281387768689143, -38.687073661472084 ], [ 146.279825525042867, -38.688118890508605 ], [ 146.280813883268053, -38.688541955063272 ], [ 146.282152949250616, -38.689164104275648 ], [ 146.282822482241841, -38.690731896295723 ], [ 146.283842722990443, -38.692025920969542 ], [ 146.283938370560634, -38.693226605620481 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.567637041097896, -38.02414414036263 ], [ 144.566169924693696, -38.02412102590344 ], [ 144.567020852208145, -38.021994464464285 ], [ 144.569691004063714, -38.020723121084011 ], [ 144.572625236872085, -38.020029651761696 ], [ 144.574327091900926, -38.019983420240209 ], [ 144.576703820475672, -38.01457413089733 ], [ 144.577261324709269, -38.013845926842706 ], [ 144.578435017832589, -38.015209858680876 ], [ 144.576087631585921, -38.020728899967459 ], [ 144.567637041097896, -38.02414414036263 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.601586114690434, -38.002002926475434 ], [ 144.602260988236338, -38.002950899328162 ], [ 144.609537885601043, -38.00174859021039 ], [ 144.617372287199316, -38.001147428259095 ], [ 144.617122877410623, -37.999898845382482 ], [ 144.608613602266388, -38.000291920062345 ], [ 144.602481055696956, -38.001309280038491 ], [ 144.601586114690434, -38.002002926475434 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.468184576031376, -38.077317335331642 ], [ 144.4666881172991, -38.078333625812846 ], [ 144.46683482893954, -38.079742550617176 ], [ 144.466482721002535, -38.081012869382029 ], [ 144.468419314656046, -38.082075300856502 ], [ 144.470003800372552, -38.083530345001009 ], [ 144.471030781855461, -38.084361785797348 ], [ 144.473994356991881, -38.080504744524276 ], [ 144.476400427894703, -38.078356723159629 ], [ 144.477045959112559, -38.077779287301198 ], [ 144.476840562815994, -38.076832282623059 ], [ 144.475637527364569, -38.076508912363387 ], [ 144.474522518897373, -38.0770863582526 ], [ 144.472175132650705, -38.077756189772025 ], [ 144.470385250637634, -38.077455921228903 ], [ 144.468184576031376, -38.077317335331642 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 146.976797387842566, -43.488627933359382 ], [ 146.977913705254423, -43.487505429196951 ], [ 146.98004841749821, -43.485885576293306 ], [ 146.978599163314385, -43.484947746863298 ], [ 146.977502430418468, -43.485388244317953 ], [ 146.976581958166577, -43.486567624915615 ], [ 146.975837746558653, -43.48764751948459 ], [ 146.975700654946678, -43.487988534811194 ], [ 146.976797387842566, -43.488627933359382 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 146.960052626664321, -43.448659625273933 ], [ 146.958877555704447, -43.44530404169236 ], [ 146.950417044793312, -43.4452471657901 ], [ 146.950730397049313, -43.442630816479678 ], [ 146.947126846105647, -43.441151960295038 ], [ 146.946813493849703, -43.439559305515345 ], [ 146.949555326089438, -43.435691255080613 ], [ 146.948145240937549, -43.432164287712084 ], [ 146.942818252586108, -43.431310958273919 ], [ 146.939136363578513, -43.429490481926848 ], [ 146.937334588106694, -43.427783735620935 ], [ 146.936786221658735, -43.424939051497468 ], [ 146.935376136506903, -43.423687348132312 ], [ 146.929735795899461, -43.419832508150755 ], [ 146.925348864315936, -43.41567867892266 ], [ 146.918768466940605, -43.415451063606916 ], [ 146.918533452748619, -43.419206606912169 ], [ 146.919865199836494, -43.423929156481165 ], [ 146.921588637244326, -43.429049577074913 ], [ 146.923860441100061, -43.434510881628832 ], [ 146.925897230763866, -43.437184465616966 ], [ 146.922998722396159, -43.436843163600081 ], [ 146.919865199836494, -43.436217438235936 ], [ 146.916261648892856, -43.438435889875379 ], [ 146.914538211485024, -43.441223059977254 ], [ 146.917593395980731, -43.44327069497028 ], [ 146.914538211485024, -43.445147632832487 ], [ 146.91508657793301, -43.446853889445812 ], [ 146.919473509516536, -43.448361042754534 ], [ 146.92777734429967, -43.445289822721811 ], [ 146.932320952011196, -43.44227532550493 ], [ 146.937804616490638, -43.442673475256271 ], [ 146.935297798442917, -43.446370454958348 ], [ 146.936081179082805, -43.450237822677025 ], [ 146.940938139050303, -43.452683236408653 ], [ 146.94775355061762, -43.454048075496729 ], [ 146.950730397049284, -43.454446147761914 ], [ 146.95558735701681, -43.452342021823803 ], [ 146.960365978920294, -43.450635920022457 ], [ 146.960052626664321, -43.448659625273933 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.26847087952018, -29.888519202285128 ], [ 153.26832880493771, -29.888008891366152 ], [ 153.267902581190356, -29.887475115080957 ], [ 153.267313986491615, -29.887944369109913 ], [ 153.267273393753754, -29.888736230275029 ], [ 153.267266628297477, -29.889815497585715 ], [ 153.267949939384494, -29.890161564520948 ], [ 153.268362632219237, -29.889017779395665 ], [ 153.26847087952018, -29.888519202285128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 152.517491698492137, -32.396757090734603 ], [ 152.51682868377398, -32.396254392075669 ], [ 152.517518760317358, -32.394986208023298 ], [ 152.518154713210237, -32.393021058814682 ], [ 152.518560640588646, -32.391387210346586 ], [ 152.519291309869885, -32.390416027670199 ], [ 152.519169531656331, -32.388793558020701 ], [ 152.520360251966423, -32.388953521112221 ], [ 152.522254579732476, -32.389810461421305 ], [ 152.5200625718889, -32.393797983380601 ], [ 152.519210124394164, -32.397316910947382 ], [ 152.517491698492137, -32.396757090734603 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 151.502253794099346, -33.33626923701879 ], [ 151.498573385868184, -33.339095324059507 ], [ 151.498979313246622, -33.341921319401322 ], [ 151.500819517362203, -33.34461158176093 ], [ 151.501956114021851, -33.346600966015608 ], [ 151.502551474176897, -33.348228610234521 ], [ 151.504391678292507, -33.347844308093485 ], [ 151.505420027651212, -33.344001193388955 ], [ 151.505230594874604, -33.340474421242305 ], [ 151.506421315184696, -33.337784031075323 ], [ 151.502253794099346, -33.33626923701879 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 150.746389953617495, -34.858831403571955 ], [ 150.746633510044575, -34.863272468913479 ], [ 150.750638660178538, -34.863894198925642 ], [ 150.750746907479453, -34.858564932026148 ], [ 150.746389953617495, -34.858831403571955 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 150.504565483367742, -35.269740238092126 ], [ 150.506216254706743, -35.267409242338907 ], [ 150.507921149696188, -35.266160861586663 ], [ 150.509869601112683, -35.267398194805992 ], [ 150.51005903388932, -35.270226314063493 ], [ 150.505269090823703, -35.271441491232189 ], [ 150.504430174241577, -35.270115842507913 ], [ 150.504565483367742, -35.269740238092126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 150.185493033000824, -35.833597956496888 ], [ 150.18654844418478, -35.832994615728218 ], [ 150.18721145890288, -35.832325450600798 ], [ 150.187590324456096, -35.831787920427566 ], [ 150.187644448106568, -35.831184565895647 ], [ 150.187346768029016, -35.830833521147802 ], [ 150.18652138235953, -35.832226720841966 ], [ 150.18535772387466, -35.832830067449621 ], [ 150.184572930943006, -35.833126254105402 ], [ 150.184884141933168, -35.833597956496888 ], [ 150.185100636534997, -35.833718624100094 ], [ 150.185493033000824, -35.833597956496888 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.918663436239171, -36.89429181862247 ], [ 149.919312920044661, -36.891326732348531 ], [ 149.918230447035484, -36.88929222696602 ], [ 149.91839281798687, -36.887928645138288 ], [ 149.921964978917146, -36.888556328687415 ], [ 149.924995903342847, -36.889681817300485 ], [ 149.924508790488716, -36.892192462873808 ], [ 149.924535852313966, -36.894854522721829 ], [ 149.924995903342847, -36.896239622830784 ], [ 149.923318070178624, -36.898057528576757 ], [ 149.919827094724042, -36.896845596224139 ], [ 149.918663436239171, -36.89429181862247 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.225633050197985, -12.233657441619419 ], [ 131.223652609147962, -12.233457220677124 ], [ 131.21839419670485, -12.230320406110266 ], [ 131.209311484303043, -12.23672747706974 ], [ 131.206033512909897, -12.237728567873056 ], [ 131.205077437920238, -12.240131170321693 ], [ 131.2081505361013, -12.241465940015956 ], [ 131.212726037837541, -12.241866369608699 ], [ 131.214569896746212, -12.238262481416928 ], [ 131.222218496663515, -12.235392683430996 ], [ 131.223447735935906, -12.235459423273094 ], [ 131.226862289470404, -12.238062263964441 ], [ 131.230208551934226, -12.239263566402943 ], [ 131.22973051443941, -12.236593998009337 ], [ 131.226793998399728, -12.235058983967637 ], [ 131.225633050197985, -12.233657441619419 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.440198278807173, -12.155246852109121 ], [ 132.439925114524414, -12.158317795758505 ], [ 132.442929921634772, -12.159652977589319 ], [ 132.444090869836515, -12.163524966984198 ], [ 132.449759028703824, -12.166262028911358 ], [ 132.453173582238293, -12.162657112195525 ], [ 132.455836933995215, -12.160120289646283 ], [ 132.458910032176277, -12.158050758587905 ], [ 132.457885666115942, -12.154312210048037 ], [ 132.450919976905539, -12.156114731082537 ], [ 132.448393207289996, -12.158918628411966 ], [ 132.445729855533074, -12.156114731082537 ], [ 132.443134794846856, -12.153911648159495 ], [ 132.440198278807173, -12.155246852109121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.583609527256613, -12.108477345324133 ], [ 132.580194973722115, -12.112350078474215 ], [ 132.594058061072218, -12.120228913875053 ], [ 132.603413937756784, -12.123300261265758 ], [ 132.60238957169642, -12.126838943759303 ], [ 132.604848050241259, -12.127039245137773 ], [ 132.607647984139561, -12.124835921699615 ], [ 132.612701523370646, -12.124769154038525 ], [ 132.611472284098227, -12.120763063787406 ], [ 132.593648314648107, -12.114820585791266 ], [ 132.583609527256613, -12.108477345324133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.627793849993168, -12.086074485744788 ], [ 132.631413276739778, -12.084338269236051 ], [ 132.633974191890644, -12.088478459235253 ], [ 132.638617984697589, -12.090715470718429 ], [ 132.637320454354466, -12.092752136544144 ], [ 132.628579197306124, -12.089446720233161 ], [ 132.627793849993168, -12.086074485744788 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.656066353258922, -11.891581979064004 ], [ 132.655144423804586, -11.888942359228425 ], [ 132.661632075520174, -11.885300310082473 ], [ 132.670236750427136, -11.879820437912999 ], [ 132.679114589616859, -11.876245096023784 ], [ 132.680616993172038, -11.877548263455662 ], [ 132.667300234387454, -11.885333723598876 ], [ 132.661632075520174, -11.888975772297737 ], [ 132.656066353258922, -11.891581979064004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.658422395197732, -11.682873240295189 ], [ 132.640939881101076, -11.678726878007348 ], [ 132.649407973866658, -11.655586363045979 ], [ 132.631652295487186, -11.657057782706314 ], [ 132.618676992056038, -11.657592842468167 ], [ 132.607477256462857, -11.656388956554355 ], [ 132.606384599331818, -11.63552077200155 ], [ 132.632881534759605, -11.623079378661108 ], [ 132.657739484490861, -11.629367034033869 ], [ 132.676587820001345, -11.643680953746424 ], [ 132.68150477709105, -11.657459077624351 ], [ 132.68150477709105, -11.668962618623773 ], [ 132.666344159397823, -11.673777912794467 ], [ 132.658422395197732, -11.682873240295189 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.545810419629589, -11.577255481280162 ], [ 132.544376307145086, -11.579597030572531 ], [ 132.552639526698613, -11.586889158450409 ], [ 132.564112426574553, -11.595719737455896 ], [ 132.576609692510885, -11.597927338581233 ], [ 132.58494120313506, -11.59558594288732 ], [ 132.586238733478211, -11.59183966894191 ], [ 132.568141599745275, -11.591973465305244 ], [ 132.561312492676251, -11.583477269086821 ], [ 132.550522503507239, -11.573575864214682 ], [ 132.545810419629589, -11.577255481280162 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.55410778471844, -11.558656193822358 ], [ 132.554756549889987, -11.561131709838021 ], [ 132.563292933726274, -11.560663370648163 ], [ 132.567731853321135, -11.561332426393946 ], [ 132.567185524755644, -11.558990724292061 ], [ 132.559400342696932, -11.55678281581017 ], [ 132.556019934697758, -11.55684972238344 ], [ 132.55410778471844, -11.558656193822358 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.529454708199268, -11.532561587288527 ], [ 132.529181543916508, -11.534669318684193 ], [ 132.536113087591588, -11.538182169178318 ], [ 132.541712955388164, -11.539955305587947 ], [ 132.542873903589907, -11.539486931021385 ], [ 132.543932415185623, -11.537513058187891 ], [ 132.537444763470035, -11.534669318684193 ], [ 132.532561951915682, -11.532293937725207 ], [ 132.529454708199268, -11.532561587288527 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.532015623350134, -11.52028290106718 ], [ 132.533074134945849, -11.521688118504246 ], [ 132.541337354499376, -11.517472445120347 ], [ 132.54400070625627, -11.516100664753532 ], [ 132.548712790133891, -11.517873940547076 ], [ 132.550078611547718, -11.519513374255888 ], [ 132.551000541002026, -11.520349816342522 ], [ 132.550420066901154, -11.517639734951157 ], [ 132.548439625851131, -11.51546495938763 ], [ 132.543932415185594, -11.512687913835176 ], [ 132.541473936640728, -11.512721372378508 ], [ 132.539288622378649, -11.512821747984614 ], [ 132.537205744722598, -11.514795794292151 ], [ 132.532015623350134, -11.52028290106718 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.499270054954167, -11.488228654631573 ], [ 132.501045622792134, -11.490336718195636 ], [ 132.510435645012024, -11.483744784473553 ], [ 132.514737982465505, -11.488027885850913 ], [ 132.517162315475019, -11.490972480303157 ], [ 132.516547695838824, -11.486020190180941 ], [ 132.515318456566376, -11.482372839807766 ], [ 132.512347794991342, -11.479193917987624 ], [ 132.509616152163744, -11.478892755115581 ], [ 132.501557805822301, -11.484280175703489 ], [ 132.499987111196447, -11.485585187568152 ], [ 132.499270054954167, -11.488228654631573 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.681934817167388, -11.790055168770737 ], [ 133.682890892157047, -11.787514844667548 ], [ 133.687193229610529, -11.788651308356325 ], [ 133.690710219751111, -11.788450756282499 ], [ 133.693168698295921, -11.791191621942875 ], [ 133.69371502686144, -11.79259546936483 ], [ 133.696002777729575, -11.792796018410337 ], [ 133.695729613446815, -11.794834925386784 ], [ 133.693066261689893, -11.795536840676354 ], [ 133.692554078659725, -11.797508878784615 ], [ 133.693305280437301, -11.799414054679582 ], [ 133.695456449164055, -11.801887421186185 ], [ 133.696514960759743, -11.803190943206161 ], [ 133.694534519709748, -11.803692296179126 ], [ 133.691632149205418, -11.801787150004904 ], [ 133.690027309044183, -11.79974829470021 ], [ 133.689549271549339, -11.796907241542394 ], [ 133.69040290993297, -11.793698487301446 ], [ 133.689583417084691, -11.792227795734098 ], [ 133.685724971590702, -11.791926971488033 ], [ 133.682412854662203, -11.790890796561106 ], [ 133.681934817167388, -11.790055168770737 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.802297829258833, -11.730785968487792 ], [ 133.801171026592471, -11.734664095192089 ], [ 133.804141688167476, -11.734630663298297 ], [ 133.803731941743365, -11.736502843110008 ], [ 133.80502947208646, -11.74008000847852 ], [ 133.805507509581275, -11.741216668131482 ], [ 133.801785646228666, -11.741985582298025 ], [ 133.800453970350219, -11.743489973376906 ], [ 133.799839350713995, -11.746799604845211 ], [ 133.798951566795012, -11.747702224710398 ], [ 133.79837109269414, -11.748872283097436 ], [ 133.799156440007096, -11.750944945755611 ], [ 133.801512481945906, -11.750744366179971 ], [ 133.803561214066605, -11.747301060690928 ], [ 133.803595359601985, -11.744793772336596 ], [ 133.807248931883862, -11.743657127434371 ], [ 133.808887917580449, -11.741116374821209 ], [ 133.807658678308002, -11.738207852952227 ], [ 133.807624532772707, -11.736502843110008 ], [ 133.808444025620958, -11.734864686469731 ], [ 133.809775701499433, -11.7371714756771 ], [ 133.810663485418388, -11.737973832617659 ], [ 133.812200034508948, -11.736636569753115 ], [ 133.811790288084808, -11.733694568627069 ], [ 133.809263518469237, -11.731855801989191 ], [ 133.806941622065807, -11.731254021155079 ], [ 133.803834378349364, -11.730953130245826 ], [ 133.802297829258833, -11.730785968487792 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.915012241433061, -11.922887920524476 ], [ 133.911802561110619, -11.920682924309764 ], [ 133.908729462929557, -11.922754284900272 ], [ 133.906817312950238, -11.918745185574444 ], [ 133.899919914810539, -11.919547010177212 ], [ 133.898895548750176, -11.924224273146672 ], [ 133.896300488063929, -11.926496057498294 ], [ 133.890359164913917, -11.928500557303098 ], [ 133.890564038125973, -11.93043822636572 ], [ 133.893637136307035, -11.932509512466728 ], [ 133.899237004103639, -11.930170962490534 ], [ 133.902719848708841, -11.933311296386824 ], [ 133.906612439738183, -11.934981671937591 ], [ 133.91043673969682, -11.935516189939991 ], [ 133.913851293231346, -11.938255578157495 ], [ 133.913168382524418, -11.941796697500422 ], [ 133.914739077150301, -11.948544740164467 ], [ 133.919997489593442, -11.949146042737338 ], [ 133.921226728865889, -11.942063949912134 ], [ 133.919519452098626, -11.937253366167942 ], [ 133.918085339614123, -11.934313522952385 ], [ 133.918153630684827, -11.93124001641079 ], [ 133.921158437795185, -11.931039569121783 ], [ 133.921431602077945, -11.928166475031022 ], [ 133.915353696786525, -11.925226533293904 ], [ 133.915012241433061, -11.922887920524476 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.877930190048261, -11.912798245855365 ], [ 133.873901016877539, -11.906851175913451 ], [ 133.874515636513763, -11.904712871758321 ], [ 133.875949748998266, -11.901438560917034 ], [ 133.869188932999919, -11.898498329820155 ], [ 133.866047543748181, -11.898164210638267 ], [ 133.864954886617141, -11.900837152597619 ], [ 133.861130586658476, -11.902374082324936 ], [ 133.857716033123978, -11.903510068277518 ], [ 133.857647742053274, -11.90751939251124 ], [ 133.855803883144631, -11.910860450848451 ], [ 133.856623375992939, -11.915871961299237 ], [ 133.859969638456761, -11.915471043866638 ], [ 133.862632990213655, -11.91186276033674 ], [ 133.863179318779174, -11.908321250259382 ], [ 133.865842670536097, -11.910459526017549 ], [ 133.866115834818856, -11.914268288017078 ], [ 133.865569506253337, -11.916339697555722 ], [ 133.863793938415398, -11.919346554248577 ], [ 133.865774379465421, -11.920950197532402 ], [ 133.871374247262025, -11.920348832411332 ], [ 133.87321810617064, -11.917475625109534 ], [ 133.876427786493082, -11.917208348465637 ], [ 133.877042406129306, -11.915604683076612 ], [ 133.877930190048261, -11.912798245855365 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.075769421837862, -11.937153144765142 ], [ 134.070613446000777, -11.932643143284739 ], [ 134.06689158264814, -11.932609735586409 ], [ 134.063408738042938, -11.93478122741495 ], [ 134.05972102022568, -11.940794498608435 ], [ 134.062486808588631, -11.943667458845551 ], [ 134.065833071052452, -11.945037115209141 ], [ 134.070818319212833, -11.945003709038776 ], [ 134.071057337960241, -11.941329005145521 ], [ 134.073481670969755, -11.943199769720495 ], [ 134.071535375455085, -11.945404582811177 ], [ 134.067881803173151, -11.945972486306337 ], [ 134.066618418365408, -11.947542566242122 ], [ 134.067301329072279, -11.950081399640634 ], [ 134.068974460304219, -11.951684861098762 ], [ 134.063340446972234, -11.952453183014688 ], [ 134.060813677356691, -11.954791540642466 ], [ 134.057740579175629, -11.961338834492038 ], [ 134.060608804144607, -11.962474573417929 ], [ 134.063886775537753, -11.957263496735022 ], [ 134.068052530849855, -11.955526448866767 ], [ 134.072218286161956, -11.953856200015874 ], [ 134.071467084384381, -11.949112637073879 ], [ 134.075018220060258, -11.946707418473403 ], [ 134.076725496827493, -11.943767677838714 ], [ 134.07809131824132, -11.941362411769076 ], [ 134.07809131824132, -11.938756682762358 ], [ 134.075769421837862, -11.937153144765142 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.154782190626435, -11.965013266710077 ], [ 134.151709092445373, -11.966817060616345 ], [ 134.148567703193635, -11.963944346123785 ], [ 134.147884792486735, -11.96922210043498 ], [ 134.144197074669449, -11.968754455479573 ], [ 134.14269467111427, -11.967885969844307 ], [ 134.138255751519409, -11.967217902072161 ], [ 134.13675334796423, -11.965347303526634 ], [ 134.138255751519409, -11.963677115316933 ], [ 134.142011760407371, -11.962875421311793 ], [ 134.145221440729813, -11.963543499814469 ], [ 134.144675112164293, -11.960203090796707 ], [ 134.147748210345355, -11.956795831098315 ], [ 134.149387196041914, -11.955660068329474 ], [ 134.149933524607434, -11.953121287255678 ], [ 134.152870040647144, -11.951918698434485 ], [ 134.153894406707479, -11.954390680769786 ], [ 134.15348466028334, -11.957998398245113 ], [ 134.153689533495395, -11.960871175900962 ], [ 134.154782190626435, -11.965013266710077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.843856166658327, -12.148896228468834 ], [ 134.848977996960087, -12.146826610099085 ], [ 134.854782737968748, -12.137346217103355 ], [ 134.857104634372234, -12.132739425455068 ], [ 134.855670521887731, -12.13046938289091 ], [ 134.853553498696328, -12.131938236169432 ], [ 134.850207236232507, -12.138614739947705 ], [ 134.846792682698009, -12.143688770912503 ], [ 134.843924457729031, -12.145958700832576 ], [ 134.843856166658327, -12.148896228468834 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.644637261571773, -12.056348571951327 ], [ 135.646549411551092, -12.055012873608906 ], [ 135.651295640964037, -12.058151754163928 ], [ 135.654437030215803, -12.056515533776523 ], [ 135.657510128396865, -12.057517302545387 ], [ 135.661675883708966, -12.056281787192153 ], [ 135.663280723870173, -12.057717655850212 ], [ 135.663041705122794, -12.059520828858879 ], [ 135.664680690819353, -12.059888140392854 ], [ 135.667036732758135, -12.058852988417334 ], [ 135.66891473720213, -12.061190422686641 ], [ 135.666456258657263, -12.063394270621455 ], [ 135.662222212274486, -12.062091999031264 ], [ 135.660753954254659, -12.060389018946593 ], [ 135.660344207830519, -12.059120124793514 ], [ 135.656963799831345, -12.060155275737936 ], [ 135.655154086458055, -12.059120124793514 ], [ 135.651910260600289, -12.060789721116 ], [ 135.647471341005399, -12.059754572620527 ], [ 135.645900646379516, -12.058251930598093 ], [ 135.644637261571773, -12.056348571951327 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.891714355329015, -11.80532168700957 ], [ 135.890894862480735, -11.802580962519519 ], [ 135.893558214237629, -11.800408417544274 ], [ 135.897450805266971, -11.79933885061881 ], [ 135.898441025791982, -11.801377708967468 ], [ 135.899123936498881, -11.798436400281167 ], [ 135.898919063286826, -11.796965734109962 ], [ 135.896528875812663, -11.795628758021781 ], [ 135.898236152579898, -11.793990953434946 ], [ 135.900967795407524, -11.792252864406386 ], [ 135.903153109669603, -11.792887936673884 ], [ 135.905065259648921, -11.79178491547944 ], [ 135.906431081062749, -11.792219439509493 ], [ 135.905611588214441, -11.794559172460316 ], [ 135.904689658760134, -11.796698339413568 ], [ 135.902265325750648, -11.796731763764869 ], [ 135.901548269508396, -11.798870913777343 ], [ 135.902436053427351, -11.801244013802435 ], [ 135.902572635568731, -11.803115740181147 ], [ 135.9010360864782, -11.805455380186268 ], [ 135.900660485589412, -11.807093116308986 ], [ 135.902128743609239, -11.808430036501449 ], [ 135.90089950433682, -11.810268291117096 ], [ 135.898475171327334, -11.81113727991546 ], [ 135.896460584741959, -11.810769631144801 ], [ 135.897348368660943, -11.808998225608409 ], [ 135.898236152579898, -11.807193385549628 ], [ 135.898577607933362, -11.805488803470254 ], [ 135.895675237429003, -11.804753490281225 ], [ 135.893967960661797, -11.80371736380371 ], [ 135.891714355329015, -11.80532168700957 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.956659163555372, -12.279683370874045 ], [ 135.956249417131232, -12.276213458579084 ], [ 135.950171511839812, -12.275279243609292 ], [ 135.946347211881147, -12.27754804564322 ], [ 135.947849615436354, -12.279683370874045 ], [ 135.942522911922481, -12.280951212034402 ], [ 135.943342404770789, -12.285021608162891 ], [ 135.943888733336308, -12.286289423605004 ], [ 135.939449813741447, -12.285488698773396 ], [ 135.937401081620749, -12.289692476948861 ], [ 135.935830386994866, -12.292494958406351 ], [ 135.935079185217262, -12.295964655970758 ], [ 135.939791269094911, -12.302503576886391 ], [ 135.942864367275973, -12.300568607034764 ], [ 135.942181456569045, -12.296765348905462 ], [ 135.943000949417353, -12.292561683791323 ], [ 135.946142338669063, -12.293295661908457 ], [ 135.950171511839812, -12.289559024705978 ], [ 135.95358606537431, -12.287490506282843 ], [ 135.952834863596735, -12.281151396922521 ], [ 135.954747013576053, -12.279750099508414 ], [ 135.956659163555372, -12.279683370874045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.977897686540018, -12.397432998498374 ], [ 135.974073386581381, -12.394231443516009 ], [ 135.970249086622715, -12.402502046793968 ], [ 135.968746683067508, -12.41010543431228 ], [ 135.960415172443334, -12.418108760259587 ], [ 135.951537333253583, -12.421576791733115 ], [ 135.955361633212249, -12.431580469587127 ], [ 135.959322515312266, -12.429713145605717 ], [ 135.961098083150233, -12.424511243790914 ], [ 135.968200354501988, -12.424111093187106 ], [ 135.9746197151469, -12.421976946235874 ], [ 135.982404897205583, -12.418508920096544 ], [ 135.975439207995151, -12.414507294036445 ], [ 135.976395282984811, -12.405303320649939 ], [ 135.977897686540018, -12.397432998498374 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 136.003301964836766, -12.458388426861765 ], [ 136.000843486291899, -12.456654662629575 ], [ 135.995380200636703, -12.461055733816224 ], [ 135.990599825688406, -12.46078900435546 ], [ 135.984863375750393, -12.459655401086138 ], [ 135.985273122174561, -12.462456058983314 ], [ 135.989302295345283, -12.464923280159432 ], [ 135.991419318536686, -12.467923922912107 ], [ 135.995858238131547, -12.468057284005836 ], [ 135.997565514898781, -12.466256903449745 ], [ 135.996814313121206, -12.464789917452988 ], [ 136.000706904150519, -12.462256012993944 ], [ 136.003301964836766, -12.458388426861765 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 136.494246472028721, -12.023722239022986 ], [ 136.487075909606261, -12.025993186764975 ], [ 136.481680915021713, -12.030735398158205 ], [ 136.480929713244137, -12.038549845692526 ], [ 136.480861422173433, -12.043692563229552 ], [ 136.478676107911355, -12.052641992674021 ], [ 136.485163759626914, -12.053977702819587 ], [ 136.485232050697618, -12.049770193347802 ], [ 136.486871036394177, -12.04362577532121 ], [ 136.490968500635603, -12.040687090911426 ], [ 136.494451345240776, -12.035878265260241 ], [ 136.496568368432207, -12.031136144584162 ], [ 136.50141703445118, -12.026995069379089 ], [ 136.494246472028721, -12.023722239022986 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 136.743508880048012, -12.555793970315033 ], [ 136.735040787282429, -12.552994324350838 ], [ 136.731899398030663, -12.5524610549991 ], [ 136.721382573144354, -12.548861457971578 ], [ 136.711412076823592, -12.555660654531362 ], [ 136.705675626885608, -12.560060038911148 ], [ 136.692563741313108, -12.561126545003711 ], [ 136.684915141395805, -12.570858208719299 ], [ 136.687100455657884, -12.579523078548002 ], [ 136.664291238047355, -12.579523078548002 ], [ 136.666476552309433, -12.595252402554392 ], [ 136.678359198609542, -12.613379918131139 ], [ 136.676037302206083, -12.62390928291124 ], [ 136.681500587861279, -12.628307496861515 ], [ 136.687510202082024, -12.620577252302933 ], [ 136.688466277071683, -12.60884815947904 ], [ 136.686690709233744, -12.600050987351636 ], [ 136.692563741313108, -12.594852516434083 ], [ 136.704309805471809, -12.584321957567202 ], [ 136.70294398405801, -12.574590803868054 ], [ 136.717285108902956, -12.575390638629477 ], [ 136.726709276658227, -12.57232459185254 ], [ 136.734631040858289, -12.57325774039777 ], [ 136.743782044330771, -12.567658798290076 ], [ 136.745011283603162, -12.558460271479403 ], [ 136.743508880048012, -12.555793970315033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.977009902621063, -13.224287074650475 ], [ 135.980014709731392, -13.220165271789183 ], [ 135.972366109814089, -13.212586291199461 ], [ 135.969224720562352, -13.205007075227925 ], [ 135.956522581413992, -13.200619000551264 ], [ 135.951605624324287, -13.197294649072235 ], [ 135.941498545862146, -13.193172390422561 ], [ 135.932347542389635, -13.200220080762328 ], [ 135.933849945944814, -13.205405987197906 ], [ 135.943957024406984, -13.203677363954846 ], [ 135.955566506424304, -13.209395071051301 ], [ 135.963215106341607, -13.211389588533603 ], [ 135.97181978124857, -13.222691546323698 ], [ 135.977009902621063, -13.224287074650475 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.094258260881901, -17.004054177189651 ], [ 139.092721711791398, -17.003041936682958 ], [ 139.091116871630163, -17.003205201650701 ], [ 139.089307158256872, -17.006339861442417 ], [ 139.086165769005106, -17.010062201818307 ], [ 139.08664380649995, -17.011760086895482 ], [ 139.087941336843045, -17.01133561706931 ], [ 139.092004655549118, -17.007515345342 ], [ 139.094258260881901, -17.004054177189651 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.23835242003824, -17.321593165891098 ], [ 139.233333026342507, -17.317127324048879 ], [ 139.233162298665775, -17.319441751984353 ], [ 139.235586631675261, -17.322375491974395 ], [ 139.235962232564077, -17.326515245367915 ], [ 139.233469608483887, -17.328992533480758 ], [ 139.235450049533881, -17.329840019110453 ], [ 139.23835242003824, -17.326580437588486 ], [ 139.238284128967535, -17.322831847317758 ], [ 139.23835242003824, -17.321593165891098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.834635903769851, -17.581271773442996 ], [ 139.8325530261138, -17.580197601155888 ], [ 139.8318701154069, -17.582671442909302 ], [ 139.827704360094799, -17.581955334303387 ], [ 139.828284834195671, -17.584722101863246 ], [ 139.82978723775085, -17.589441784091228 ], [ 139.831631096659493, -17.590222960986683 ], [ 139.833611537709515, -17.587000584531321 ], [ 139.834806631446583, -17.582834194469648 ], [ 139.834635903769851, -17.581271773442996 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.124838808667903, -17.719493642238593 ], [ 140.122790076547233, -17.720209204062837 ], [ 140.122858367617908, -17.723364147145091 ], [ 140.124941245273959, -17.724860286313348 ], [ 140.126921686323982, -17.728535531690337 ], [ 140.128116780061049, -17.729153485901431 ], [ 140.129243582727469, -17.727527286034917 ], [ 140.129550892545524, -17.725998644707023 ], [ 140.12897041844468, -17.724339891497134 ], [ 140.126819249717954, -17.7220956715481 ], [ 140.125521719374802, -17.721542743479294 ], [ 140.124838808667903, -17.719493642238593 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.16065747524496, -17.713443778158705 ], [ 140.158335578841474, -17.713703991566121 ], [ 140.158984344013021, -17.71718430960162 ], [ 140.157959977952686, -17.719493642238593 ], [ 140.157959977952686, -17.720566983904153 ], [ 140.157994123488038, -17.722876272977572 ], [ 140.159701400255273, -17.723656871008334 ], [ 140.161101367204424, -17.721575268707014 ], [ 140.161135512739776, -17.718647974583167 ], [ 140.161989151123407, -17.716533787997708 ], [ 140.161374531487184, -17.714777367881737 ], [ 140.16065747524496, -17.713443778158705 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.218226847836803, -17.711036786246762 ], [ 140.211397740767779, -17.711427111453336 ], [ 140.215768369291965, -17.726258839896246 ], [ 140.217817101412663, -17.734064519922178 ], [ 140.219319504967842, -17.743560972049096 ], [ 140.225329119188558, -17.750065100727053 ], [ 140.225602283471318, -17.756048690380226 ], [ 140.22068532638167, -17.763332790317289 ], [ 140.22095849066443, -17.770356462879295 ], [ 140.226694940602385, -17.766194319849387 ], [ 140.233114301247241, -17.757349444264204 ], [ 140.23284113696451, -17.749284617762775 ], [ 140.225192537047207, -17.737446875667505 ], [ 140.225329119188558, -17.723917069596627 ], [ 140.22054874424029, -17.71624105250616 ], [ 140.218226847836803, -17.711036786246762 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.593759445562284, -17.597871806336027 ], [ 140.59232533307781, -17.598815683954271 ], [ 140.597344726773514, -17.605845789642206 ], [ 140.596081341965743, -17.608937647614226 ], [ 140.596217924107123, -17.6107276464476 ], [ 140.600417824954576, -17.60971874019706 ], [ 140.602808012428738, -17.611508731284797 ], [ 140.602022665115811, -17.614633036830991 ], [ 140.603456777600286, -17.619384481161351 ], [ 140.605266490973577, -17.6182454476901 ], [ 140.605573800791689, -17.614144867654719 ], [ 140.60987613824517, -17.613168525340594 ], [ 140.611651706083137, -17.612875621616379 ], [ 140.60973955610379, -17.611085644084223 ], [ 140.603456777600286, -17.608547100055414 ], [ 140.600554407095956, -17.603990649444217 ], [ 140.596115487501095, -17.598620399334454 ], [ 140.593759445562284, -17.597871806336027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.986228228819044, -16.986714721692337 ], [ 140.98465753419319, -16.984069579046675 ], [ 140.983530731526798, -16.976133927340534 ], [ 140.9876964868389, -16.973129395498287 ], [ 140.98950620021219, -16.978256665408438 ], [ 140.989164744858726, -16.982371443121806 ], [ 140.988311106475123, -16.985310514809221 ], [ 140.986228228819044, -16.986714721692337 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.603852672141386, -14.163556888918647 ], [ 141.599891790041369, -14.172959238787991 ], [ 141.601803940020687, -14.182626037328918 ], [ 141.606857479251772, -14.186730991502074 ], [ 141.60986228636213, -14.18779032244684 ], [ 141.61040861492765, -14.197456488539435 ], [ 141.619286454117372, -14.207916669226384 ], [ 141.619696200541512, -14.212021165026394 ], [ 141.619149871975992, -14.217449577353673 ], [ 141.625022904055356, -14.218905958493474 ], [ 141.630213025427821, -14.212418370345773 ], [ 141.627344800458815, -14.205400973711804 ], [ 141.622018096944998, -14.199442635965838 ], [ 141.615871900582874, -14.194411028655818 ], [ 141.616964557713914, -14.187128241186594 ], [ 141.613959750603556, -14.179977640352533 ], [ 141.60958912207937, -14.179183115227783 ], [ 141.607950136382811, -14.168986462421016 ], [ 141.603852672141386, -14.163556888918647 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.671119376771173, -13.341479907176375 ], [ 141.658280655481406, -13.355832256498759 ], [ 141.643256619929559, -13.372309827186617 ], [ 141.634515362881189, -13.380016691408818 ], [ 141.632876377184658, -13.397024070755863 ], [ 141.657461162633126, -13.40021282057268 ], [ 141.683958098060913, -13.393303809212966 ], [ 141.68614341232302, -13.4047301437712 ], [ 141.682865440929874, -13.436083340545284 ], [ 141.712640347750835, -13.446976288980064 ], [ 141.727664383302653, -13.430769527597967 ], [ 141.73094235469577, -13.421735775514282 ], [ 141.737771461764822, -13.431566607043793 ], [ 141.75033701877183, -13.441131353796518 ], [ 141.760444097233972, -13.435020587373014 ], [ 141.754707647295987, -13.418547311260145 ], [ 141.748971197358003, -13.410575965441103 ], [ 141.738317790330342, -13.410841681229501 ], [ 141.735859311785504, -13.393569544087999 ], [ 141.748698033075243, -13.385065882556255 ], [ 141.763722068627089, -13.390114967824038 ], [ 141.783389896985881, -13.385065882556255 ], [ 141.801145575365354, -13.383471412578043 ], [ 141.795682289710129, -13.366463076134734 ], [ 141.773009654240951, -13.370183752302053 ], [ 141.770551175696113, -13.369917991622955 ], [ 141.745146897399366, -13.366463076134734 ], [ 141.727664383302653, -13.35981886876243 ], [ 141.701986940723145, -13.343606234974137 ], [ 141.696250490785189, -13.340948322302724 ], [ 141.74104943315794, -13.325531852366518 ], [ 141.746239554530405, -13.307987777624403 ], [ 141.74050310459242, -13.296822704682864 ], [ 141.719196290537099, -13.298151907004929 ], [ 141.69761631219896, -13.315430873714575 ], [ 141.67549000529533, -13.333240210222892 ], [ 141.669480391074615, -13.338024584592207 ], [ 141.671119376771173, -13.341479907176375 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.658007491198617, -12.531612690634754 ], [ 141.653363698391701, -12.525612848743426 ], [ 141.646807755605437, -12.532812642257261 ], [ 141.642573709222631, -12.544811851146635 ], [ 141.640115230677793, -12.560409986710312 ], [ 141.642710291364011, -12.562809615932588 ], [ 141.651041801988214, -12.555344029268246 ], [ 141.650768637705454, -12.546944985315067 ], [ 141.659646476895205, -12.54881146321395 ], [ 141.659783059036585, -12.540278882366795 ], [ 141.659100148329685, -12.534812549213589 ], [ 141.658007491198617, -12.531612690634754 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.652407623402041, -12.506279075660748 ], [ 141.652680787684801, -12.500011955785494 ], [ 141.650495473422694, -12.498811851661261 ], [ 141.645988262757157, -12.500278644834106 ], [ 141.642846873505391, -12.496011587035762 ], [ 141.640251812819173, -12.498811851661261 ], [ 141.638612827122614, -12.509745927721969 ], [ 141.640524977101933, -12.513346070985175 ], [ 141.646807755605437, -12.512412705329741 ], [ 141.651997876977902, -12.510812642070157 ], [ 141.652407623402041, -12.506279075660748 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.754024736589088, -12.484010109455921 ], [ 141.751702840185629, -12.477609093791274 ], [ 141.756210050851138, -12.468540717395225 ], [ 141.761263590082251, -12.460538945236777 ], [ 141.771780414968532, -12.462939502820323 ], [ 141.779292432744455, -12.463739683741908 ], [ 141.779429014885864, -12.47254151082357 ], [ 141.760034350809804, -12.480542912285742 ], [ 141.754024736589088, -12.484010109455921 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.733400833240609, -12.227446350510704 ], [ 141.73189842968543, -12.234654372802984 ], [ 141.740776268875152, -12.245599512111683 ], [ 141.760990425799463, -12.248002042942817 ], [ 141.777107118482377, -12.242796531839998 ], [ 141.791311661185915, -12.247601622656243 ], [ 141.808521010999868, -12.254408684896891 ], [ 141.819311000168909, -12.238124831934618 ], [ 141.803057725344644, -12.235188292559675 ], [ 141.792131154034195, -12.23078342230459 ], [ 141.789262929065188, -12.227579834191243 ], [ 141.783526479127232, -12.22103905460418 ], [ 141.772873072099543, -12.219837669341747 ], [ 141.765770800747788, -12.225978025577058 ], [ 141.741186015299292, -12.221439515145882 ], [ 141.733400833240609, -12.227446350510704 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.207887192396214, -10.936831095589952 ], [ 142.219360092272126, -10.934953670133812 ], [ 142.218813763706606, -10.942999695523744 ], [ 142.229194006451536, -10.943536089450694 ], [ 142.246539938406841, -10.953191014056037 ], [ 142.252822716910345, -10.961772904943521 ], [ 142.25951524183796, -10.96499104985071 ], [ 142.254734866889663, -10.969013681736548 ], [ 142.242852220589555, -10.964320605882662 ], [ 142.233154888551582, -10.957481990608477 ], [ 142.221955152958373, -10.952252354643846 ], [ 142.209389595951365, -10.94849768723903 ], [ 142.207340863830666, -10.943267892608587 ], [ 142.207887192396214, -10.936831095589952 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.320704041176441, -10.908266124035295 ], [ 142.316879741217775, -10.906656748124723 ], [ 142.311416455562579, -10.915508207804891 ], [ 142.313328605541898, -10.923957082416102 ], [ 142.319065055479882, -10.925700471064792 ], [ 142.322479609014408, -10.925566364609193 ], [ 142.319338219762642, -10.9192632928617 ], [ 142.318791891197122, -10.916044651433467 ], [ 142.32179669830748, -10.911484849719379 ], [ 142.320704041176441, -10.908266124035295 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.619955512940948, -10.947022626306451 ], [ 142.604931477389073, -10.93495367013381 ], [ 142.610667927327086, -10.92073849185955 ], [ 142.612853241589136, -10.912691862864719 ], [ 142.61695070583059, -10.906254402785981 ], [ 142.601107177430436, -10.885063446050914 ], [ 142.594004906078652, -10.876747595405158 ], [ 142.581439349071672, -10.884795196425999 ], [ 142.569693284912944, -10.884526946559586 ], [ 142.561498356430121, -10.890160143031109 ], [ 142.5519376065335, -10.89337906460673 ], [ 142.548932799423113, -10.91403298283206 ], [ 142.553849756512818, -10.926371002433903 ], [ 142.544015842333437, -10.936831095589952 ], [ 142.536094078133345, -10.937367500679809 ], [ 142.520796878298768, -10.940854110107139 ], [ 142.527899149650551, -10.967940985251692 ], [ 142.558220385036975, -10.982958381692493 ], [ 142.571605434892263, -10.987785239804552 ], [ 142.600834013147676, -10.993416474481155 ], [ 142.621321334354718, -10.985908137696223 ], [ 142.639350177016951, -10.961772904943521 ], [ 142.656832691113664, -10.95614106711826 ], [ 142.647818269782533, -10.947290819749645 ], [ 142.636345369906593, -10.943536089450694 ], [ 142.624326141465133, -10.948631783323188 ], [ 142.619955512940948, -10.947022626306451 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.171269326622991, -11.980553892358083 ], [ 143.167035280240214, -11.981422337268132 ], [ 143.167103571310889, -11.984829286476037 ], [ 143.161981741009129, -11.989104612871715 ], [ 143.159454971393586, -11.993780673546821 ], [ 143.163689017776392, -11.996185473184454 ], [ 143.167923064159197, -11.994381875466651 ], [ 143.170244960562655, -11.989705825213466 ], [ 143.173044894460929, -11.985296903599458 ], [ 143.17249856589541, -11.980821106474075 ], [ 143.171269326622991, -11.980553892358083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.08249093472574, -12.158659936741442 ], [ 143.076891066929136, -12.157658547257432 ], [ 143.078393470484315, -12.151249565286603 ], [ 143.077437395494655, -12.148245301845289 ], [ 143.072247274122191, -12.145508054520468 ], [ 143.06767177238595, -12.138431138330919 ], [ 143.064325509922128, -12.135827319962274 ], [ 143.060364627822111, -12.134291722842018 ], [ 143.064257218851452, -12.130886671577208 ], [ 143.076413029434292, -12.137296143709237 ], [ 143.08249093472574, -12.142169909939144 ], [ 143.088637131087836, -12.148579110569031 ], [ 143.088227384663696, -12.153185628199275 ], [ 143.084676248987819, -12.157925584821855 ], [ 143.08249093472574, -12.158659936741442 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.135894552005453, -12.350389534293686 ], [ 143.130158102067497, -12.351456902806227 ], [ 143.124831398553681, -12.351056640124254 ], [ 143.114451155808752, -12.347320825569463 ], [ 143.109534198719075, -12.346520286941418 ], [ 143.103524584498302, -12.349055317530555 ], [ 143.085905488260238, -12.350522955595858 ], [ 143.09532965601548, -12.364264985233749 ], [ 143.100656359529324, -12.374137453791572 ], [ 143.104070913063822, -12.380807829405983 ], [ 143.114724320091511, -12.378139699610832 ], [ 143.124694816412301, -12.374270862973832 ], [ 143.135075059157202, -12.372803358220835 ], [ 143.141767584084846, -12.368801030625301 ], [ 143.148869855436629, -12.37146925583575 ], [ 143.147230869740042, -12.377872885131461 ], [ 143.151738080405607, -12.381741668391111 ], [ 143.15938668032291, -12.38014079951391 ], [ 143.164713383836755, -12.372403128220784 ], [ 143.156245291071173, -12.363731327658664 ], [ 143.14777719830559, -12.358127857347373 ], [ 143.140538344812427, -12.353725046437864 ], [ 143.135894552005453, -12.350389534293686 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.269437740740187, -12.498311806631543 ], [ 143.267423154154841, -12.492844584541166 ], [ 143.263598854196204, -12.495244842622325 ], [ 143.256394146238364, -12.500945366251599 ], [ 143.241609129433897, -12.511345997591748 ], [ 143.235121477718337, -12.514679444639098 ], [ 143.236214134849405, -12.518812859193291 ], [ 143.242087166928741, -12.516079479563061 ], [ 143.251306461471899, -12.513279402121686 ], [ 143.258886770318526, -12.507345804328315 ], [ 143.265784168458254, -12.502212132205903 ], [ 143.269437740740187, -12.498311806631543 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.390620245679969, -12.889414870285112 ], [ 143.399498084869691, -12.887617465703967 ], [ 143.403595549111117, -12.883223755751596 ], [ 143.406941811574939, -12.880094854712963 ], [ 143.411585604381884, -12.877032488202889 ], [ 143.418961040016399, -12.87636675140114 ], [ 143.419507368581947, -12.882225174559311 ], [ 143.42053173464231, -12.88701832797654 ], [ 143.427975461347501, -12.888416313777331 ], [ 143.43241438094239, -12.893875040728396 ], [ 143.428931536337188, -12.898734538945439 ], [ 143.41998540607679, -12.902528876043412 ], [ 143.41110756688704, -12.894274455099971 ], [ 143.410492947250816, -12.898135427827144 ], [ 143.413292881149147, -12.901130969071687 ], [ 143.412609970442247, -12.902994843297826 ], [ 143.40086390628349, -12.905324666547342 ], [ 143.393966508143791, -12.902861709885148 ], [ 143.389186133195466, -12.894873575462181 ], [ 143.390620245679969, -12.889414870285112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.362689197767651, -12.897136906108745 ], [ 143.358591733526254, -12.895073281930872 ], [ 143.352923574658973, -12.894807006603875 ], [ 143.349304147912392, -12.893342487241474 ], [ 143.347596871145129, -12.893875040728396 ], [ 143.347323706862369, -12.896471222749449 ], [ 143.348552946134816, -12.900398728968684 ], [ 143.349987058619291, -12.905324666547342 ], [ 143.349509021124447, -12.90925203374298 ], [ 143.352445537164158, -12.912713390965147 ], [ 143.35579179962798, -12.911182411951996 ], [ 143.355860090698656, -12.906922247087232 ], [ 143.358660024596929, -12.907721033529308 ], [ 143.359684390657321, -12.905457798648856 ], [ 143.362689197767651, -12.897136906108745 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.580196257915958, -13.54246760319368 ], [ 143.580606004340126, -13.546517501964521 ], [ 143.578967018643567, -13.553090141685029 ], [ 143.574664681190086, -13.557737353017956 ], [ 143.572274493715895, -13.553023752293331 ], [ 143.568040447333146, -13.547978104271477 ], [ 143.565377095576224, -13.543994622304417 ], [ 143.562986908102062, -13.540011073621212 ], [ 143.565513677717576, -13.538218454952458 ], [ 143.571045254443504, -13.540675003034041 ], [ 143.578079234724584, -13.540011073621212 ], [ 143.580196257915958, -13.54246760319368 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.634385222508655, -13.982038732837713 ], [ 143.63267794574142, -13.981475456614435 ], [ 143.631482852004353, -13.980116961227028 ], [ 143.630629213620722, -13.978327711163681 ], [ 143.629024373459487, -13.979189203671254 ], [ 143.628546335964671, -13.977499349942537 ], [ 143.627180514550872, -13.977035466356581 ], [ 143.625848838672397, -13.977598753446472 ], [ 143.624687890470653, -13.979156069403667 ], [ 143.625575674389637, -13.981309786874599 ], [ 143.627521969904308, -13.982105000538036 ], [ 143.628102444005179, -13.981309786874599 ], [ 143.631448706468973, -13.981641126234999 ], [ 143.63267794574142, -13.983463484188906 ], [ 143.633531584125024, -13.985385227849594 ], [ 143.632746236812096, -13.987306955457013 ], [ 143.633975476084544, -13.98879793995391 ], [ 143.636331518023354, -13.98869854128815 ], [ 143.636297372488002, -13.987141289916313 ], [ 143.63571689838713, -13.986279827181322 ], [ 143.635443734104371, -13.983861087642595 ], [ 143.634385222508655, -13.982038732837713 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.619975806593033, -13.967757598364472 ], [ 143.618951440532697, -13.964443983505307 ], [ 143.618029511078362, -13.965073573995925 ], [ 143.617346600371462, -13.963847527769385 ], [ 143.615980778957663, -13.964344574323212 ], [ 143.615571032533524, -13.966995471167264 ], [ 143.613249136130037, -13.96924870950085 ], [ 143.61219062453435, -13.970640404518821 ], [ 143.613112553988657, -13.973059282990604 ], [ 143.614341793261104, -13.975047383257495 ], [ 143.615810051280931, -13.977035466356577 ], [ 143.616288088775775, -13.977863829247106 ], [ 143.61775634679563, -13.977665022425246 ], [ 143.617380745906814, -13.97541186644426 ], [ 143.616595398593859, -13.974219010232524 ], [ 143.616800271805943, -13.972429714327438 ], [ 143.615810051280931, -13.971800143943019 ], [ 143.615332013786116, -13.971236842666428 ], [ 143.615536886998171, -13.97054099801071 ], [ 143.616834417341295, -13.968088957228957 ], [ 143.618575839643881, -13.967823870175501 ], [ 143.619975806593033, -13.967757598364472 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.035048934248096, -14.487033592500815 ], [ 144.035595262813644, -14.482801890892997 ], [ 144.040034182408505, -14.482537406861793 ], [ 144.044677975215393, -14.48283495137472 ], [ 144.04659012519474, -14.485149172850507 ], [ 144.046112087699925, -14.486868293172188 ], [ 144.042117060064527, -14.487628669063604 ], [ 144.038907379742085, -14.486901353047775 ], [ 144.035048934248096, -14.487033592500815 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.17139205688116, -14.380654597402888 ], [ 144.169001869406998, -14.383631386597022 ], [ 144.170845728315641, -14.389981737642781 ], [ 144.168387249770774, -14.395868880951815 ], [ 144.171870094375976, -14.401689723927998 ], [ 144.177606544313988, -14.400763690883052 ], [ 144.181294262131246, -14.403343344806055 ], [ 144.179108947869139, -14.409560849614493 ], [ 144.179177238939815, -14.417630118629535 ], [ 144.173782244355294, -14.423516532224713 ], [ 144.172143258658735, -14.429601200767507 ], [ 144.175967558617401, -14.433966186653251 ], [ 144.183274703181269, -14.435024352161099 ], [ 144.185050271019179, -14.432511200866845 ], [ 144.189830645967504, -14.433833915611087 ], [ 144.189420899543364, -14.437537475080608 ], [ 144.197274372672723, -14.447060630675375 ], [ 144.203830315459015, -14.448118733908004 ], [ 144.203147404752116, -14.445076673545579 ], [ 144.197820701238243, -14.442232970799632 ], [ 144.193586654855466, -14.436082512638517 ], [ 144.194542729845153, -14.431056205571302 ], [ 144.187918495988185, -14.428278460877465 ], [ 144.182523501403637, -14.427617087986146 ], [ 144.178699201444999, -14.430130294523508 ], [ 144.176377305041541, -14.428212323676719 ], [ 144.178426037162239, -14.426095922882535 ], [ 144.182386919262257, -14.424707023932086 ], [ 144.183957613888168, -14.415050629968192 ], [ 144.182864956757101, -14.410949842959353 ], [ 144.185938054938163, -14.404930809317937 ], [ 144.183821031746788, -14.398382445407021 ], [ 144.175216356839798, -14.395868880951815 ], [ 144.176035849688077, -14.388394166807739 ], [ 144.173304206860479, -14.381051504920078 ], [ 144.17139205688116, -14.380654597402888 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.409044982883074, -14.271941622487045 ], [ 144.406176757914125, -14.274853672127833 ], [ 144.411025423933097, -14.276375864908418 ], [ 144.414576559608975, -14.276442046969811 ], [ 144.414576559608975, -14.278427499765616 ], [ 144.410683968579661, -14.279354038411659 ], [ 144.410615677508957, -14.281339465526123 ], [ 144.415600925669338, -14.282133631468463 ], [ 144.419903263122819, -14.281935090245575 ], [ 144.421951995243518, -14.278824588223708 ], [ 144.420381300617663, -14.276111136468355 ], [ 144.41922035241592, -14.273066737038979 ], [ 144.416215545305562, -14.270220848184007 ], [ 144.412800991771036, -14.270353215904777 ], [ 144.409044982883074, -14.271941622487045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.717686476867527, -14.56137271867429 ], [ 144.715808472423561, -14.562430275908946 ], [ 144.712837810848526, -14.563586973328 ], [ 144.709798858202817, -14.565569869074482 ], [ 144.710174459091604, -14.56771798601123 ], [ 144.712359773353683, -14.569238179196654 ], [ 144.715091416181281, -14.568841608071942 ], [ 144.7169011295546, -14.56646216634314 ], [ 144.718403533109779, -14.567090077071301 ], [ 144.718471824180483, -14.568940750920005 ], [ 144.717618185796823, -14.570890551203714 ], [ 144.719052298281326, -14.571981109942959 ], [ 144.721169321472729, -14.570460935673442 ], [ 144.723252199128751, -14.569932176948253 ], [ 144.724310710724495, -14.570659219868384 ], [ 144.72629115177449, -14.572014157093246 ], [ 144.727247226764177, -14.569833034546079 ], [ 144.725642386602942, -14.567850177139135 ], [ 144.723388781270131, -14.566858741747916 ], [ 144.721374194684785, -14.567123124954826 ], [ 144.72021324648307, -14.564677568195027 ], [ 144.717993786685639, -14.56385136045769 ], [ 144.717959641150287, -14.562000643893933 ], [ 144.717686476867527, -14.56137271867429 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.881243591170573, -14.616127679828301 ], [ 144.878033910848131, -14.616259841883172 ], [ 144.878443657272271, -14.622140972830826 ], [ 144.882472830442993, -14.624651969532085 ], [ 144.887184914320585, -14.621810576390567 ], [ 144.887594660744753, -14.62002642702438 ], [ 144.893262819612033, -14.622867843249722 ], [ 144.888619026805117, -14.624057262381946 ], [ 144.886638585755065, -14.625180596757763 ], [ 144.888892191087876, -14.627162937518575 ], [ 144.891214087491335, -14.626303925386461 ], [ 144.895789589227576, -14.629211337499964 ], [ 144.898726105267258, -14.626964704247948 ], [ 144.898862687408638, -14.622537447903012 ], [ 144.896199335651716, -14.619629947419289 ], [ 144.892375035693078, -14.618638745275609 ], [ 144.887116623249909, -14.615532949597577 ], [ 144.883292323291244, -14.618110102303506 ], [ 144.882336248301613, -14.620092506888986 ], [ 144.882063084018853, -14.618242263165797 ], [ 144.881243591170573, -14.616127679828301 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.920442665746776, -14.66066178716695 ], [ 144.917847605060558, -14.660727854789942 ], [ 144.919076844332977, -14.668127302426857 ], [ 144.922218233584715, -14.670505643197009 ], [ 144.923788928210598, -14.672157253525997 ], [ 144.920920703241592, -14.683850298034555 ], [ 144.923584054998514, -14.684114540404551 ], [ 144.926247406755436, -14.676583507735419 ], [ 144.926930317462336, -14.671562675243491 ], [ 144.9265888621089, -14.668061237036564 ], [ 144.922218233584715, -14.667334516427394 ], [ 144.922149942514039, -14.66482400848823 ], [ 144.920442665746776, -14.66066178716695 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.03831305375806, -14.804113535134075 ], [ 145.045278742968492, -14.805037871288285 ], [ 145.051698103613376, -14.806490391567456 ], [ 145.056751642844432, -14.804905823507552 ], [ 145.077375546192883, -14.813752846943258 ], [ 145.084887563968806, -14.817185922929543 ], [ 145.097453120975814, -14.822335434877864 ], [ 145.10059451022758, -14.819694674816208 ], [ 145.106467542306916, -14.827880926163397 ], [ 145.107560199437955, -14.83065361852675 ], [ 145.1135698136587, -14.831049714535721 ], [ 145.125589042100188, -14.836462953982592 ], [ 145.132964477734731, -14.840159722586629 ], [ 145.13460346343129, -14.846100825437544 ], [ 145.132964477734731, -14.850193490191469 ], [ 145.132964477734731, -14.855342216394167 ], [ 145.127501192079507, -14.856662382834081 ], [ 145.125452459958808, -14.850853590151125 ], [ 145.123676892120841, -14.843724403888848 ], [ 145.122584234989802, -14.837387152057547 ], [ 145.119989174303555, -14.840291748868035 ], [ 145.120945249293243, -14.846232848090887 ], [ 145.118623352889784, -14.850721570320513 ], [ 145.114116142224219, -14.848741263182427 ], [ 145.110701588689722, -14.84649689315567 ], [ 145.107013870872436, -14.843196306663682 ], [ 145.104282228044838, -14.837123095867662 ], [ 145.105374885175877, -14.83263409132072 ], [ 145.101960331641379, -14.838443373593213 ], [ 145.094175149582696, -14.837123095867662 ], [ 145.088848446068823, -14.830785650610302 ], [ 145.092809328168897, -14.828937194109683 ], [ 145.093219074593037, -14.824315983787754 ], [ 145.085024146110186, -14.82273154610928 ], [ 145.080107189020481, -14.826428549320068 ], [ 145.073824410516977, -14.828805160898327 ], [ 145.076965799768743, -14.833426275362438 ], [ 145.072458589103206, -14.835934839023899 ], [ 145.063717332054836, -14.834218456503441 ], [ 145.062624674923796, -14.829597358958155 ], [ 145.065083153468663, -14.824051911646617 ], [ 145.066995303447982, -14.819298558029327 ], [ 145.071365931972139, -14.816657760934683 ], [ 145.060029614237578, -14.8115081139983 ], [ 145.053746835734074, -14.820750982705523 ], [ 145.053337089309935, -14.829993456900572 ], [ 145.049785953634029, -14.833030183704158 ], [ 145.043230010847793, -14.829201260290738 ], [ 145.034488753799423, -14.834746575652536 ], [ 145.026840153882148, -14.833426275362438 ], [ 145.028888886002818, -14.831181746377586 ], [ 145.03517166450635, -14.828541094233957 ], [ 145.03612773949601, -14.818374282708936 ], [ 145.03817647161668, -14.8115081139983 ], [ 145.03831305375806, -14.804113535134075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.969495948154446, -17.230690314632586 ], [ 145.970144713326022, -17.230543555723688 ], [ 145.970332513770416, -17.228260624351627 ], [ 145.970332513770416, -17.227526818991453 ], [ 145.968898401285912, -17.226841931359409 ], [ 145.967993544599295, -17.225211236304208 ], [ 145.966610650417778, -17.223205461652405 ], [ 145.966132612922991, -17.223515298182775 ], [ 145.967481361569099, -17.226385338194454 ], [ 145.967583798175156, -17.22786926185552 ], [ 145.969495948154446, -17.230690314632586 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 146.089876033013638, -17.796855334432227 ], [ 146.090695525861918, -17.79708291507189 ], [ 146.090832108003298, -17.800756676673021 ], [ 146.090285779437778, -17.8020083392374 ], [ 146.089978469619666, -17.801423147442996 ], [ 146.090012615155018, -17.799976415047709 ], [ 146.089876033013638, -17.796855334432227 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 150.014239482994185, -22.640701502221962 ], [ 149.980913440497375, -22.600357435012342 ], [ 149.964523583531729, -22.553947135543105 ], [ 149.943216769476379, -22.530231496919821 ], [ 150.014239482994185, -22.640701502221962 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.685622850832885, -22.418410472749688 ], [ 149.706110172039956, -22.418410472749688 ], [ 149.739709378819555, -22.425985850911424 ], [ 149.770030614206007, -22.430783376636928 ], [ 149.77822554268883, -22.437095657848239 ], [ 149.758284550047279, -22.459565047804499 ], [ 149.742441021647153, -22.478749509218726 ], [ 149.718675729046964, -22.485059606518959 ], [ 149.697915243557162, -22.49944555275766 ], [ 149.705563843474465, -22.513325310810146 ], [ 149.686442343681193, -22.522409488831777 ], [ 149.669506158150028, -22.511054173013353 ], [ 149.653935794032662, -22.531240756023248 ], [ 149.636999608501469, -22.524175787434782 ], [ 149.649565165508477, -22.501716881222233 ], [ 149.668959829584509, -22.481525987462739 ], [ 149.691359300770898, -22.463856539561778 ], [ 149.691359300770898, -22.449466896006985 ], [ 149.682344879439796, -22.435075759099185 ], [ 149.685622850832885, -22.418410472749688 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.939249235692358, -22.477068917285791 ], [ 149.982622468355942, -22.450497620816893 ], [ 150.018063782952822, -22.520643167649204 ], [ 150.056306782539338, -22.632633635868004 ], [ 150.054121468277259, -22.66994354493966 ], [ 149.962338269269623, -22.597331152922454 ], [ 149.924095269683079, -22.535782330716927 ], [ 149.883205171014708, -22.517591583291065 ], [ 149.893926644257391, -22.508587572313665 ], [ 149.939249235692358, -22.477068917285791 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 150.572382403745308, -22.579109006946815 ], [ 150.59191364996272, -22.581505136112632 ], [ 150.59478187493167, -22.581000691330253 ], [ 150.603045094485196, -22.590080414792258 ], [ 150.607005976585214, -22.594620052054974 ], [ 150.61151318725075, -22.60596849032363 ], [ 150.614654576502517, -22.611138024171574 ], [ 150.622849504985368, -22.614920486847097 ], [ 150.620117862157741, -22.622611173500729 ], [ 150.625854312095697, -22.632444539568816 ], [ 150.627766462075044, -22.640008188564636 ], [ 150.621073937147401, -22.644294071490314 ], [ 150.616156980057696, -22.644294071490314 ], [ 150.614244830078377, -22.641142700000174 ], [ 150.608371797999013, -22.641520868396508 ], [ 150.607415723009325, -22.637487018496557 ], [ 150.603045094485196, -22.634209428242176 ], [ 150.606186483736963, -22.629292896277118 ], [ 150.602089019495509, -22.627527944466202 ], [ 150.59976712309205, -22.623619756239723 ], [ 150.60031345165757, -22.618828922337624 ], [ 150.597035480264452, -22.611516275119431 ], [ 150.595259912426513, -22.606346755483894 ], [ 150.593484344588546, -22.601050948620411 ], [ 150.584469923257444, -22.593863456238118 ], [ 150.577367651905661, -22.586675588633902 ], [ 150.572723859098744, -22.584279549399341 ], [ 150.569445887705598, -22.579361233031896 ], [ 150.572382403745308, -22.579109006946815 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 150.773704480139884, -22.967742107772978 ], [ 150.771382583736454, -22.962460313505808 ], [ 150.772065494443325, -22.960070862607278 ], [ 150.771382583736454, -22.957681369491382 ], [ 150.767558283777817, -22.953656864614882 ], [ 150.763597401677771, -22.95177033673864 ], [ 150.760729176708793, -22.960699669568548 ], [ 150.756768294608747, -22.970634431482129 ], [ 150.757178041032887, -22.9874841301346 ], [ 150.75526589105354, -23.00282307266648 ], [ 150.75458298034664, -23.012000458873526 ], [ 150.763187655253631, -23.010869034035547 ], [ 150.769333851615727, -22.999805713473194 ], [ 150.771928912301945, -22.9874841301346 ], [ 150.772884987291604, -22.977550606793876 ], [ 150.77493371941236, -22.972772196187439 ], [ 150.773704480139884, -22.967742107772978 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 152.057849773398573, -24.526089384442326 ], [ 152.047810986007107, -24.52347992556669 ], [ 152.0463085824519, -24.522485831732723 ], [ 152.040162386089833, -24.522734355928897 ], [ 152.040981878938084, -24.516272567009501 ], [ 152.039752639665693, -24.510245406613006 ], [ 152.036269795060463, -24.506703538329297 ], [ 152.031147964758674, -24.506330704282345 ], [ 152.030943091546646, -24.51036968088043 ], [ 152.035655175424296, -24.514843472652782 ], [ 152.0345625182932, -24.521429598412627 ], [ 152.035108846858719, -24.525716607922725 ], [ 152.03442593615182, -24.531867278978481 ], [ 152.039069728958737, -24.534290187874813 ], [ 152.048835352067471, -24.532923424503323 ], [ 152.05573275020717, -24.52907155675949 ], [ 152.05976192337792, -24.527456222212944 ], [ 152.057849773398573, -24.526089384442326 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 152.199348871868693, -24.66933982333844 ], [ 152.209455950330863, -24.67095332760664 ], [ 152.204812157523918, -24.681378544324723 ], [ 152.194295332637637, -24.68956917454711 ], [ 152.174764086420254, -24.693912472180802 ], [ 152.166705740078811, -24.697138823852598 ], [ 152.168754472199481, -24.69850379363989 ], [ 152.177359147106444, -24.695525658459836 ], [ 152.184734582740987, -24.697759266518943 ], [ 152.193202675506598, -24.705328418233094 ], [ 152.192792929082458, -24.712276742687163 ], [ 152.191290525527251, -24.721457862377981 ], [ 152.188012554134133, -24.725551927131679 ], [ 152.175446997127125, -24.721954119825114 ], [ 152.17012029361328, -24.719348746150576 ], [ 152.18009078993407, -24.713765618909726 ], [ 152.185554075589295, -24.714013763215672 ], [ 152.182276104196148, -24.705700659729075 ], [ 152.17940787922717, -24.703094945892808 ], [ 152.172169025734007, -24.705700659729075 ], [ 152.163564350827045, -24.705576579354037 ], [ 152.159193722302888, -24.700985518573589 ], [ 152.158920558020071, -24.692919731782034 ], [ 152.167115486502951, -24.687831813109614 ], [ 152.18036395421683, -24.684605220476044 ], [ 152.195114825485916, -24.674304385166749 ], [ 152.199348871868693, -24.66933982333844 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 153.099630056777698, -26.653252009497582 ], [ 153.09744474251562, -26.650261289426876 ], [ 153.097513033586267, -26.645683504933313 ], [ 153.097239869303507, -26.64226530616715 ], [ 153.097786197869027, -26.639823672980782 ], [ 153.098264235363899, -26.637504073107603 ], [ 153.094439935405234, -26.637076773256354 ], [ 153.091776583648311, -26.63799241383753 ], [ 153.08788399261897, -26.637870328850774 ], [ 153.080098810560287, -26.63732094479565 ], [ 153.071767299936084, -26.639091172846598 ], [ 153.072040464218844, -26.64226530616715 ], [ 153.077708623086124, -26.644645848266205 ], [ 153.082762162317181, -26.645256235682911 ], [ 153.085766969427567, -26.645744543267142 ], [ 153.088635194396545, -26.649589892520094 ], [ 153.091981456860395, -26.653679248825927 ], [ 153.09355215148625, -26.655083023931681 ], [ 153.098947146070799, -26.654838890370801 ], [ 153.099630056777698, -26.653801316911746 ], [ 153.099630056777698, -26.653252009497582 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.101201088052633, -21.005957343494551 ], [ 116.096420713104294, -21.004809791167112 ], [ 116.095191473831875, -21.011822473109696 ], [ 116.094781727407749, -21.01692239837551 ], [ 116.091230591731843, -21.02444446979495 ], [ 116.094918309549129, -21.029798933451531 ], [ 116.102703491607812, -21.033240987076695 ], [ 116.102566909466432, -21.039232520374973 ], [ 116.099288938073286, -21.045988641159326 ], [ 116.099425520214666, -21.048538041044594 ], [ 116.103522984456077, -21.047008406351612 ], [ 116.106527791566464, -21.040762234940015 ], [ 116.108030195121628, -21.035918084925566 ], [ 116.106664373707844, -21.029926418336913 ], [ 116.102293745183673, -21.026101824338436 ], [ 116.097103623811194, -21.023042078481154 ], [ 116.100245013062946, -21.018069857526804 ], [ 116.101474252335393, -21.013352468999567 ], [ 116.101201088052633, -21.009017439887227 ], [ 116.101201088052633, -21.005957343494551 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.139717251921894, -20.999199408315739 ], [ 116.136575862670156, -21.002514660037775 ], [ 116.140126998346034, -21.008507428180287 ], [ 116.141902566183987, -21.01322496994149 ], [ 116.142039148325367, -21.01615742070291 ], [ 116.145590284001258, -21.014882449195465 ], [ 116.147912180404745, -21.008124918255945 ], [ 116.143404969739166, -21.001749608484154 ], [ 116.139717251921894, -20.999199408315739 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.522010665645738, -20.779655805294883 ], [ 116.523239904918142, -20.776910279652988 ], [ 116.529181228068211, -20.781252018184404 ], [ 116.530820213764756, -20.784125158858757 ], [ 116.531025086976825, -20.785849017016137 ], [ 116.528430026290593, -20.786934399089308 ], [ 116.52494718168542, -20.782720519138412 ], [ 116.522352120999173, -20.781124321774239 ], [ 116.522010665645738, -20.779655805294883 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.526927622735414, -20.757498628290232 ], [ 116.525356928109559, -20.760691505451295 ], [ 116.527132495947484, -20.762862623395577 ], [ 116.528771481644071, -20.767077057423787 ], [ 116.53034217626994, -20.769120377064635 ], [ 116.533278692309622, -20.770078173633223 ], [ 116.537717611904455, -20.767843305527499 ], [ 116.540312672590716, -20.766374659915041 ], [ 116.541200456509657, -20.76471443464208 ], [ 116.538400522611383, -20.763373470143861 ], [ 116.534098185157873, -20.765544549558708 ], [ 116.532527490532033, -20.764842144926071 ], [ 116.530751922694066, -20.760052935414574 ], [ 116.529317810209591, -20.758137209117805 ], [ 116.526927622735414, -20.757498628290232 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.641417602747609, -20.708359733368624 ], [ 116.638831078445207, -20.709789018174121 ], [ 116.636910392082058, -20.710938824099863 ], [ 116.63423850394129, -20.712360099923362 ], [ 116.632189771820578, -20.713477947946988 ], [ 116.62951788367981, -20.714308343997391 ], [ 116.628834972972911, -20.720440358541882 ], [ 116.626649658710789, -20.71858800531378 ], [ 116.619410805217626, -20.719354499052081 ], [ 116.615040176693483, -20.725997282300597 ], [ 116.611625623158957, -20.731745609527213 ], [ 116.613264608855516, -20.742858423179591 ], [ 116.612718280289997, -20.755119890968864 ], [ 116.6203668802073, -20.763549073314746 ], [ 116.62979104796257, -20.770062210406827 ], [ 116.637303065738465, -20.77082844337049 ], [ 116.655741654824837, -20.780406027454713 ], [ 116.668853540397365, -20.783853809022208 ], [ 116.680872768838825, -20.782449166777095 ], [ 116.698491865076903, -20.771722376915982 ], [ 116.710511093518377, -20.76520931139131 ], [ 116.718159693435695, -20.758951395760555 ], [ 116.709418436387324, -20.747712039711935 ], [ 116.714881722042549, -20.741836589329331 ], [ 116.699721104349322, -20.725997282300597 ], [ 116.693574907987227, -20.72331465490889 ], [ 116.688931115180267, -20.703001791596456 ], [ 116.674453408193955, -20.702362978153904 ], [ 116.65355634056273, -20.702362978153904 ], [ 116.641417602747609, -20.708359733368624 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.437947578510531, -20.739665169482947 ], [ 117.43344036784498, -20.745285250912637 ], [ 117.433986696410471, -20.748350661871878 ], [ 117.430435560734594, -20.752820941483758 ], [ 117.425928350069057, -20.758185102571119 ], [ 117.424972275079398, -20.764059917742596 ], [ 117.432347710713941, -20.7594622557287 ], [ 117.436718339238112, -20.753076382041602 ], [ 117.442045042751943, -20.748606109980827 ], [ 117.445049849862286, -20.751926896133046 ], [ 117.45146921050717, -20.755247609359767 ], [ 117.454474017617557, -20.753842701125933 ], [ 117.45201553907269, -20.748606109980827 ], [ 117.446279089134734, -20.742858423179591 ], [ 117.442318207034702, -20.740176094603314 ], [ 117.437947578510531, -20.739665169482947 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.39041699331014, -20.739281974510497 ], [ 117.375256375616914, -20.739409706275808 ], [ 117.378261182727286, -20.759589970450964 ], [ 117.380719661272124, -20.76329365045326 ], [ 117.378807511292806, -20.768146610994993 ], [ 117.38140257197901, -20.772999415661282 ], [ 117.39082673973428, -20.76980679855529 ], [ 117.391509650441179, -20.76176110421866 ], [ 117.38973408260324, -20.756524787334598 ], [ 117.392602307572218, -20.751543732221709 ], [ 117.39041699331014, -20.739281974510497 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.654293690457109, -20.691886053698124 ], [ 117.644323194136334, -20.693674848134368 ], [ 117.639269654905263, -20.68907504839477 ], [ 117.622196887232718, -20.682430647009785 ], [ 117.614548287315415, -20.682558426703078 ], [ 117.598977923198049, -20.688819499875365 ], [ 117.592148816129011, -20.692652682468104 ], [ 117.584636798353088, -20.699679932302914 ], [ 117.580812498394465, -20.703001791596453 ], [ 117.588870844735908, -20.705301497701548 ], [ 117.596109698229071, -20.700829814909884 ], [ 117.598704758915289, -20.697635675026358 ], [ 117.602802223156715, -20.696230232163042 ], [ 117.604441208853245, -20.690480557557226 ], [ 117.611816644487789, -20.690736103278685 ], [ 117.610450823074018, -20.701085343193849 ], [ 117.612499555194717, -20.705301497701548 ], [ 117.615094615880935, -20.709389777965036 ], [ 117.606763105256746, -20.716032998175404 ], [ 117.611543480205029, -20.722037196591277 ], [ 117.624655365777571, -20.717310507131121 ], [ 117.638313579915632, -20.713350194304518 ], [ 117.650605972639838, -20.716927255575552 ], [ 117.656752169001962, -20.719993240871176 ], [ 117.665083679626164, -20.714116714543536 ], [ 117.664400768919279, -20.705429258128905 ], [ 117.66877139744345, -20.701340871047169 ], [ 117.677376072350398, -20.706068058650484 ], [ 117.689122136509127, -20.709262020876011 ], [ 117.694722004305703, -20.703001791596453 ], [ 117.709336293433452, -20.696485768197896 ], [ 117.705921739898926, -20.689202822493055 ], [ 117.699502379254042, -20.691630509913807 ], [ 117.692946436467793, -20.687925076667799 ], [ 117.685434418691869, -20.687925076667799 ], [ 117.672868861684876, -20.684986220434407 ], [ 117.668771397443464, -20.682302867208911 ], [ 117.661805708233061, -20.683580660376428 ], [ 117.659756976112362, -20.695208083718089 ], [ 117.654293690457109, -20.691886053698124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.558617900420103, -20.70983692692851 ], [ 117.552608286199359, -20.711050610321767 ], [ 117.549603479088987, -20.718204756990186 ], [ 117.546871836261388, -20.723442400147995 ], [ 117.549330314806227, -20.724719846612398 ], [ 117.553974107613186, -20.719418373355197 ], [ 117.55677404151146, -20.715713619253247 ], [ 117.558822773632173, -20.712519793003043 ], [ 117.558617900420103, -20.70983692692851 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.904375591324637, -20.558433763420474 ], [ 117.913936341221287, -20.555236633849098 ], [ 117.921175194714422, -20.556131836872868 ], [ 117.918306969745458, -20.561375063533585 ], [ 117.918716716169598, -20.563549031563412 ], [ 117.923770255400669, -20.564572064634923 ], [ 117.921038612573042, -20.569559252716044 ], [ 117.914346087645427, -20.572244594212055 ], [ 117.909838876979848, -20.568152626415877 ], [ 117.903419516334992, -20.564699943287014 ], [ 117.90014154494186, -20.561375063533585 ], [ 117.902463441345333, -20.558817414473019 ], [ 117.904375591324637, -20.558433763420474 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.945486815880159, -20.537203570644188 ], [ 117.938657708811135, -20.54781903561663 ], [ 117.941252769497368, -20.554469312797078 ], [ 117.938521126669755, -20.558433763420474 ], [ 117.941116187355988, -20.560863537147405 ], [ 117.945759980162919, -20.564188428036182 ], [ 117.951086683676778, -20.565211456824585 ], [ 117.952179340807788, -20.553318323994212 ], [ 117.957369462180267, -20.557538573884401 ], [ 117.963105912118223, -20.557027034651568 ], [ 117.967749704925154, -20.552678882024324 ], [ 117.970617929894146, -20.551272100272229 ], [ 117.971574004883806, -20.545133264730378 ], [ 117.968705779914842, -20.541296367328584 ], [ 117.964335151390671, -20.539249982678538 ], [ 117.959827940725091, -20.538866282507943 ], [ 117.95013060868709, -20.534261805373301 ], [ 117.945486815880159, -20.537203570644188 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.948389186384503, -20.526267592272898 ], [ 117.944325867678444, -20.524604743475379 ], [ 117.941594224850846, -20.524125072195414 ], [ 117.942925900729293, -20.521215034206115 ], [ 117.945794125698271, -20.518336920241207 ], [ 117.949174533697459, -20.515810531168217 ], [ 117.951257411353495, -20.520159732035264 ], [ 117.948730641737953, -20.522750006194357 ], [ 117.948389186384503, -20.526267592272898 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.956618260402692, -20.482419906019942 ], [ 117.95334028900956, -20.483379508245957 ], [ 117.95388661757508, -20.486897998375575 ], [ 117.956140222907877, -20.490032585221794 ], [ 117.960715724644103, -20.489136995518649 ], [ 117.96378882282518, -20.490608318697159 ], [ 117.965222935309654, -20.488305371824705 ], [ 117.961466926421693, -20.485170749671411 ], [ 117.958188955028561, -20.485426639595843 ], [ 117.957642626463041, -20.483251561629359 ], [ 117.956618260402692, -20.482419906019942 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.209431804097818, -20.380732087068939 ], [ 118.206905034482304, -20.377979374842841 ], [ 118.203422189877102, -20.38118019836271 ], [ 118.201441748827065, -20.383804824077831 ], [ 118.201168584544305, -20.385277155529401 ], [ 118.197549157797752, -20.386237364119015 ], [ 118.197890613151174, -20.38809375043515 ], [ 118.201236875614995, -20.389502028591139 ], [ 118.205266048785717, -20.386877499856492 ], [ 118.209431804097818, -20.380732087068939 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.19515897032359, -20.37573875885651 ], [ 118.194612641758042, -20.36991300499113 ], [ 118.188671318608002, -20.372409783583269 ], [ 118.187510370406287, -20.376058848847151 ], [ 118.183686070447621, -20.376891079714412 ], [ 118.181295882973458, -20.377723306091653 ], [ 118.183959234730381, -20.380476022887908 ], [ 118.187168915052837, -20.380924134925706 ], [ 118.190788341799419, -20.378427494134513 ], [ 118.191812707859768, -20.387133553407278 ], [ 118.195500425677039, -20.386109336652581 ], [ 118.19502238818221, -20.37925971222208 ], [ 118.19427118640462, -20.376763044488612 ], [ 118.19515897032359, -20.37573875885651 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.253735636208162, -20.376570991450659 ], [ 118.251686904087421, -20.377275184754147 ], [ 118.252540542471067, -20.378587536423161 ], [ 118.254316110309006, -20.379515778422547 ], [ 118.257269699116364, -20.378523519527629 ], [ 118.257508717863772, -20.380123933944791 ], [ 118.257969682590954, -20.381372245661453 ], [ 118.258720884368515, -20.381052166697351 ], [ 118.259147703560359, -20.379275716372064 ], [ 118.25991597810561, -20.378171426127256 ], [ 118.259198921863344, -20.377051123597202 ], [ 118.257713591075841, -20.376474964842025 ], [ 118.256125823682311, -20.37645896040144 ], [ 118.254572201824118, -20.376875075316992 ], [ 118.25409416432926, -20.376923088504252 ], [ 118.253735636208162, -20.376570991450659 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.30007112767143, -20.349921315049055 ], [ 118.30020770981281, -20.354851451817236 ], [ 118.3058075776094, -20.357540550994564 ], [ 118.307378272235283, -20.361510087999523 ], [ 118.30519295797319, -20.365543545247764 ], [ 118.30539783118526, -20.369000710428036 ], [ 118.30608074189216, -20.372329759255098 ], [ 118.308470929366322, -20.373802200249131 ], [ 118.311544027547384, -20.370409162927817 ], [ 118.310861116840485, -20.36650387667704 ], [ 118.310929407911175, -20.362214350033945 ], [ 118.312158647183594, -20.359397282620144 ], [ 118.313934215021533, -20.363174702175879 ], [ 118.314821998940516, -20.367208115927529 ], [ 118.319875538171587, -20.368744626774223 ], [ 118.323085218494029, -20.36842452160937 ], [ 118.324792495261278, -20.365031366042327 ], [ 118.320899904231936, -20.36266251511033 ], [ 118.319329209606067, -20.360677774180434 ], [ 118.318441425687098, -20.357668602168296 ], [ 118.317143895343975, -20.354403264068502 ], [ 118.314480543587067, -20.353122720476751 ], [ 118.311065990052555, -20.35267452771134 ], [ 118.309222131143912, -20.351009800339131 ], [ 118.309563586497362, -20.347168053315876 ], [ 118.303553972276632, -20.347808351120872 ], [ 118.301368658014539, -20.348896851299102 ], [ 118.30007112767143, -20.349921315049055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.358938030606367, -20.364519185137333 ], [ 118.36194283771674, -20.364199071208681 ], [ 118.368703653715059, -20.362662515110326 ], [ 118.376420544703052, -20.361253991917724 ], [ 118.376966873268586, -20.357220422595649 ], [ 118.381542375004827, -20.359461307450385 ], [ 118.381474083934137, -20.366311810869199 ], [ 118.379835098237564, -20.371049364359788 ], [ 118.376557126844432, -20.370793284105741 ], [ 118.375874216137532, -20.367080072666454 ], [ 118.375737633996152, -20.363430795071373 ], [ 118.372937700097864, -20.363110678885615 ], [ 118.370547512623702, -20.365095388535948 ], [ 118.36665492159436, -20.370409162927817 ], [ 118.368635362644369, -20.373866219104006 ], [ 118.366245175170221, -20.376619004732564 ], [ 118.362216001999499, -20.376747040077916 ], [ 118.358664866323608, -20.372905933491509 ], [ 118.359757523454647, -20.367592245073357 ], [ 118.358938030606367, -20.364519185137333 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.411795319320603, -20.356067954864386 ], [ 118.408039310432642, -20.358372881725675 ], [ 118.40469304796882, -20.361638135881115 ], [ 118.403258935484303, -20.36272653858645 ], [ 118.403532099767062, -20.364967343522139 ], [ 118.407219817584334, -20.365735612011633 ], [ 118.412546521098193, -20.360677774180434 ], [ 118.414185506794738, -20.357284448328524 ], [ 118.411795319320603, -20.356067954864386 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.495929918410923, -20.34454280457259 ], [ 118.491149543462626, -20.345823419287953 ], [ 118.486710623867765, -20.348256558005421 ], [ 118.481110756071175, -20.349409084023311 ], [ 118.481179047141865, -20.352162305815483 ], [ 118.478515695384942, -20.356003928627132 ], [ 118.480222972152205, -20.357604576594706 ], [ 118.484525309605658, -20.354659371512756 ], [ 118.485139929241868, -20.359141183033703 ], [ 118.488827647059139, -20.358500932209168 ], [ 118.490808088109176, -20.354019102105799 ], [ 118.495315298774727, -20.351778138278842 ], [ 118.498388396955789, -20.346271631930829 ], [ 118.498729852309239, -20.344798928364749 ], [ 118.495929918410923, -20.34454280457259 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.514436798567985, -20.328534225308296 ], [ 118.509383259336914, -20.331479928338435 ], [ 118.503851682611, -20.338075538139304 ], [ 118.50289560762134, -20.344991020930266 ], [ 118.504944339742053, -20.348128499028235 ], [ 118.506515034367922, -20.349152967873511 ], [ 118.512797812871426, -20.349985343807845 ], [ 118.513549014649016, -20.344926990101627 ], [ 118.510271043255884, -20.342301703282676 ], [ 118.514163634285225, -20.337050995853996 ], [ 118.516212366405938, -20.335001890912249 ], [ 118.521402487778388, -20.332376435514167 ], [ 118.523041473474947, -20.32949478680953 ], [ 118.519080591374916, -20.328021923401469 ], [ 118.514436798567985, -20.328534225308296 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.730646328373183, -20.308809377187465 ], [ 118.727163483767981, -20.305991336518527 ], [ 118.716168621386856, -20.309834106531685 ], [ 118.712822358923034, -20.315085737953982 ], [ 118.714939382114437, -20.317327233691479 ], [ 118.707427364338514, -20.320401232191998 ], [ 118.705105467935041, -20.326613084407676 ], [ 118.707085908985064, -20.32975093553555 ], [ 118.713027232135133, -20.328149999037269 ], [ 118.716373494598926, -20.3223864904325 ], [ 118.721495324900687, -20.319440614220795 ], [ 118.72245139989036, -20.322514570734512 ], [ 118.726617155202462, -20.326997314496868 ], [ 118.72948538017144, -20.325460388413134 ], [ 118.728187849828331, -20.32155396588475 ], [ 118.732080440857672, -20.318351906643727 ], [ 118.733036515847331, -20.314253174125685 ], [ 118.732217022999052, -20.311819500333563 ], [ 118.72873417839385, -20.311243098304619 ], [ 118.730646328373183, -20.308809377187465 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.752909217418207, -20.293117362166409 ], [ 118.747650804975066, -20.293629779600217 ], [ 118.748743462106106, -20.299330309248944 ], [ 118.755162822750989, -20.301059641939368 ], [ 118.760011488769962, -20.304133963490244 ], [ 118.757757883437208, -20.309065560159407 ], [ 118.754206747761316, -20.311499277249126 ], [ 118.751679978145788, -20.313100386046681 ], [ 118.753865292407866, -20.314637434910654 ], [ 118.75967003341654, -20.314061043375442 ], [ 118.764723572647611, -20.309321742707429 ], [ 118.770323440444201, -20.307912733447349 ], [ 118.772781918989054, -20.304582296950645 ], [ 118.769162492242472, -20.302148471134888 ], [ 118.765269901213131, -20.299266259519246 ], [ 118.761718765537239, -20.298369560522637 ], [ 118.761445601254479, -20.295999688187685 ], [ 118.756050606669959, -20.294526506031673 ], [ 118.752909217418207, -20.293117362166409 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.834721920105082, -20.275309803985898 ], [ 118.83185369513609, -20.280178260461021 ], [ 118.840253496830954, -20.282164034345023 ], [ 118.843872923577536, -20.290042821978499 ], [ 118.848380134243115, -20.292861152814041 ], [ 118.850633739575869, -20.288953907701003 ], [ 118.847150894970667, -20.284790341385374 ], [ 118.844214378931014, -20.279217392999865 ], [ 118.839434003982674, -20.276270695659168 ], [ 118.835746286165403, -20.274605146308552 ], [ 118.834721920105082, -20.275309803985898 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.836224323660232, -20.262497346238597 ], [ 118.838682802205085, -20.26102384576933 ], [ 118.841346153961993, -20.26480366671441 ], [ 118.844965580708575, -20.265572432589675 ], [ 118.843736341436156, -20.267686519108505 ], [ 118.838477928993015, -20.266533384577979 ], [ 118.836497487942992, -20.263650510760769 ], [ 118.836224323660232, -20.262497346238597 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 119.170440823618151, -19.978944656478788 ], [ 119.149065718492125, -19.983501455382125 ], [ 119.150909577400739, -19.992743009011548 ], [ 119.151114450612837, -19.99941712716123 ], [ 119.152548563097326, -20.004422530096477 ], [ 119.156236280914598, -20.008657746706405 ], [ 119.178840625313043, -20.003203279943197 ], [ 119.175084616425082, -19.996080103449344 ], [ 119.172899302163003, -19.985747716208188 ], [ 119.170440823618151, -19.978944656478788 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 119.379001753506103, -20.005705941106051 ], [ 119.377704223162965, -20.002401136533432 ], [ 119.372753120537936, -20.002465308156648 ], [ 119.371011698235321, -20.005609685643382 ], [ 119.36746056255943, -20.006668492494558 ], [ 119.364694774196465, -20.00917109854965 ], [ 119.363875281348186, -20.010646975769145 ], [ 119.364728919731832, -20.012507844703499 ], [ 119.367597144700824, -20.010518639169224 ], [ 119.369201984862045, -20.009427773843182 ], [ 119.371933627689629, -20.010454470829998 ], [ 119.375314035688817, -20.007855631098352 ], [ 119.37541647229483, -20.006475982687864 ], [ 119.377977387445725, -20.0061551324867 ], [ 119.379001753506103, -20.005705941106051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 119.573494722831825, -20.077913011374822 ], [ 119.570899662145621, -20.077047108261212 ], [ 119.567997291641277, -20.078233715017888 ], [ 119.564651029177455, -20.077880940974424 ], [ 119.5606560015421, -20.078073363278371 ], [ 119.557958504249825, -20.080318272704201 ], [ 119.55676341051273, -20.080959669491719 ], [ 119.555636607846353, -20.082114177094628 ], [ 119.555158570351523, -20.085096615703328 ], [ 119.55580733552307, -20.087437629898929 ], [ 119.55655853730066, -20.08984274504045 ], [ 119.556968283724828, -20.090548238477815 ], [ 119.558026795320515, -20.089522065154956 ], [ 119.557992649785177, -20.086347298871772 ], [ 119.559734072087764, -20.084647650079681 ], [ 119.561748658673139, -20.08262728885488 ], [ 119.562841315804178, -20.081152088016132 ], [ 119.56652903362145, -20.081440715359818 ], [ 119.571343554105098, -20.080382412501073 ], [ 119.573494722831825, -20.077913011374822 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 119.709086643687257, -20.027907294280411 ], [ 119.704681869627734, -20.024442549620741 ], [ 119.700242950032873, -20.026110769545141 ], [ 119.696828396498361, -20.029094272572479 ], [ 119.696589377750954, -20.031885240262937 ], [ 119.694813809913015, -20.032302277155541 ], [ 119.692423622438852, -20.032270197433864 ], [ 119.690750491206927, -20.033906254889395 ], [ 119.690545617994857, -20.036408427459719 ], [ 119.68907735997503, -20.038172755956865 ], [ 119.68894077783365, -20.039648360937832 ], [ 119.689418815328466, -20.04070693858084 ], [ 119.693106533145752, -20.039808751948371 ], [ 119.695906467044054, -20.038397305435083 ], [ 119.696486941144911, -20.036440506336522 ], [ 119.7017112080527, -20.036312190790017 ], [ 119.702120954476868, -20.039359656706157 ], [ 119.705262343728606, -20.040739016579867 ], [ 119.707208639243291, -20.039648360937832 ], [ 119.707515949061388, -20.037082082497047 ], [ 119.70567209015276, -20.036793373549045 ], [ 119.705262343728606, -20.033842096094403 ], [ 119.702667283042388, -20.032462675665695 ], [ 119.70283801071912, -20.030890763206674 ], [ 119.708164714232936, -20.028869709799348 ], [ 119.709086643687257, -20.027907294280411 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 119.747773535233264, -20.013406187345279 ], [ 119.74439312723409, -20.013053267633545 ], [ 119.743437052244403, -20.016646594958434 ], [ 119.741900503153886, -20.018186567252826 ], [ 119.740944428164227, -20.019983182537114 ], [ 119.741900503153886, -20.020849400429316 ], [ 119.744837019193582, -20.018956547745184 ], [ 119.747124770061689, -20.019437783638434 ], [ 119.748627173616882, -20.021073974659469 ], [ 119.747875971839264, -20.022870556953638 ], [ 119.748866192364304, -20.023704677469105 ], [ 119.751768562868634, -20.022453495036412 ], [ 119.753305111959151, -20.021362712484084 ], [ 119.752827074464335, -20.019116959873237 ], [ 119.750505178060848, -20.018122402041623 ], [ 119.748558882546192, -20.016486180310597 ], [ 119.748217427192742, -20.01523494044228 ], [ 119.747773535233264, -20.013406187345279 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.574559676196387, -18.948134500607978 ], [ 121.57459382173171, -18.950459745131113 ], [ 121.579237614538656, -18.950459745131113 ], [ 121.582652168073182, -18.948199091171102 ], [ 121.582618022537801, -18.945163307682229 ], [ 121.581183910053326, -18.943387025780932 ], [ 121.579818088639527, -18.943516210556549 ], [ 121.577769356518829, -18.946099885073881 ], [ 121.574559676196387, -18.948134500607978 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.656850416378091, -18.809691936429935 ], [ 121.649099379854732, -18.813344280959129 ], [ 121.650533492339235, -18.818450965984049 ], [ 121.651728586076302, -18.823331260520856 ], [ 121.656167505671164, -18.823977646522106 ], [ 121.658079655650482, -18.819776093082151 ], [ 121.657669909226371, -18.813829099491201 ], [ 121.656850416378091, -18.809691936429935 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.631958321111526, -18.712439352750405 ], [ 121.627655983658045, -18.714121056862787 ], [ 121.627655983658045, -18.717549094230776 ], [ 121.62847547650631, -18.720588993760646 ], [ 121.62820231222355, -18.722982067707285 ], [ 121.631070537192556, -18.723046744911379 ], [ 121.63393876216152, -18.720977062107178 ], [ 121.634621672868448, -18.718972032729269 ], [ 121.633529015737381, -18.716578902025802 ], [ 121.631958321111526, -18.712439352750405 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.66624043859801, -18.717549094230776 ], [ 121.664191706477297, -18.716643581679303 ], [ 121.662347847568668, -18.720912384111276 ], [ 121.66166493686174, -18.724728343532096 ], [ 121.662894176134188, -18.728414866582842 ], [ 121.663850251123847, -18.729773039015267 ], [ 121.665420945749716, -18.728026815311562 ], [ 121.665147781466956, -18.7242109303536 ], [ 121.667469677870429, -18.721300451715532 ], [ 121.66624043859801, -18.717549094230776 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.68099130986711, -18.717161018016725 ], [ 121.679488906311903, -18.720394959253355 ], [ 121.683108333058485, -18.722917390478443 ], [ 121.687478961582656, -18.723822869430375 ], [ 121.689322820491313, -18.723564161653307 ], [ 121.689254529420623, -18.720847706090634 ], [ 121.687069215158516, -18.719748175954162 ], [ 121.690688641905098, -18.719812854395418 ], [ 121.689391111562003, -18.717355056235075 ], [ 121.685771684815407, -18.715996784031116 ], [ 121.682562004492965, -18.71644954264459 ], [ 121.68099130986711, -18.717161018016725 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.741565489569311, -18.697012171605287 ], [ 121.738799701206347, -18.698079506145127 ], [ 121.738287518176179, -18.701798952711709 ], [ 121.735043692318385, -18.701572553952353 ], [ 121.734258345005458, -18.703222023693218 ], [ 121.734360781611485, -18.705712369117673 ], [ 121.735863185166693, -18.706779648794896 ], [ 121.738697264600333, -18.705550659488431 ], [ 121.742282545811548, -18.704871477358118 ], [ 121.745321498457272, -18.703933554696846 ], [ 121.747131211830578, -18.699114490787661 ], [ 121.747336085042647, -18.695944830336586 ], [ 121.746653174335719, -18.694974514253499 ], [ 121.746277573446932, -18.692419321967762 ], [ 121.744741024356415, -18.692322288589434 ], [ 121.743716658296066, -18.69426294559187 ], [ 121.742555710094308, -18.696753422824692 ], [ 121.741565489569311, -18.697012171605287 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.784469354730405, -18.609192808761172 ], [ 121.782796223498508, -18.606943752220509 ], [ 121.781806002973511, -18.60644216001743 ], [ 121.782403549842044, -18.604516679444014 ], [ 121.78366693464983, -18.604176886493377 ], [ 121.784964464992939, -18.604888832849714 ], [ 121.786159558730006, -18.606134731807416 ], [ 121.788293654689056, -18.606684866106747 ], [ 121.789164365840378, -18.606717226892503 ], [ 121.78885705602228, -18.605131541154169 ], [ 121.790922860910641, -18.604225428384996 ], [ 121.793466703293859, -18.604176886493377 ], [ 121.792869156425326, -18.605714039672744 ], [ 121.791622844385245, -18.606183273140655 ], [ 121.791913081435652, -18.607817489946896 ], [ 121.792561846607228, -18.608820664767194 ], [ 121.791691135455935, -18.609775293378689 ], [ 121.789864349314954, -18.610050354866065 ], [ 121.787200997558031, -18.609467871190141 ], [ 121.786944906042962, -18.609128088125033 ], [ 121.785066901598967, -18.609791473478488 ], [ 121.784469354730405, -18.609192808761172 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.741855726619718, -18.568381565592887 ], [ 121.741702071710662, -18.56666604952153 ], [ 121.741838653852042, -18.566390917980137 ], [ 121.742897165447758, -18.566099601746735 ], [ 121.744911752033104, -18.566633681127925 ], [ 121.747967777446476, -18.567604730264147 ], [ 121.749897000193485, -18.567701834873727 ], [ 121.752509133647393, -18.566374733757996 ], [ 121.754967612192246, -18.565678810753532 ], [ 121.755752959505188, -18.567523809713936 ], [ 121.749828709122795, -18.569482076251994 ], [ 121.745184916315864, -18.571310850318504 ], [ 121.741855726619718, -18.568381565592887 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 122.172789455442597, -18.27064463563821 ], [ 122.173096765260695, -18.266397022624233 ], [ 122.176101572371081, -18.264192113819 ], [ 122.178764924128004, -18.264094837785535 ], [ 122.18030147321852, -18.265035170492496 ], [ 122.183306280328893, -18.264224539151375 ], [ 122.185798904409069, -18.266623996940812 ], [ 122.186072068691828, -18.269153119246514 ], [ 122.187301307964276, -18.27152008494155 ], [ 122.188359819559963, -18.273530359219539 ], [ 122.189213457943595, -18.27485972135235 ], [ 122.188393965095315, -18.276318765627298 ], [ 122.186993998146178, -18.277842643213674 ], [ 122.184945266025451, -18.275248801025416 ], [ 122.184228209783214, -18.272427953628345 ], [ 122.182896533904753, -18.269704333319279 ], [ 122.181872167844389, -18.2683749316929 ], [ 122.178969797340073, -18.268764025905842 ], [ 122.176033281300391, -18.271325541033576 ], [ 122.173779675967594, -18.271163420943672 ], [ 122.172789455442597, -18.27064463563821 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 122.211237328241197, -18.228942198363722 ], [ 122.207617901494615, -18.231082691447781 ], [ 122.204749676525608, -18.235039291136964 ], [ 122.203452146182485, -18.236012211698466 ], [ 122.201949742627335, -18.234196088914203 ], [ 122.199832719435904, -18.234974429572667 ], [ 122.199491264082454, -18.237763454991999 ], [ 122.198808353375554, -18.240811873465365 ], [ 122.198057151597993, -18.243600805246249 ], [ 122.197374240891065, -18.244443961859517 ], [ 122.195462090911747, -18.24379538021233 ], [ 122.192798739154824, -18.243471088481186 ], [ 122.189179312408243, -18.245222256641483 ], [ 122.1866525427927, -18.245805975440806 ], [ 122.186857416004798, -18.248270544312536 ], [ 122.191706082023785, -18.248465114050621 ], [ 122.194437724851412, -18.248335400916105 ], [ 122.197305949820375, -18.248919109258924 ], [ 122.199491264082454, -18.24989195213967 ], [ 122.202700944404896, -18.247427406263412 ], [ 122.206866699716997, -18.244184529491058 ], [ 122.210622708604959, -18.241265888664806 ], [ 122.213217769291191, -18.244119671338442 ], [ 122.216222576401563, -18.242563068415329 ], [ 122.218407890663642, -18.239903839509434 ], [ 122.219295674582639, -18.235882489271429 ], [ 122.219910294218849, -18.232315084608775 ], [ 122.220115167430919, -18.229331380883455 ], [ 122.218134726380882, -18.22803410243192 ], [ 122.216017703189507, -18.228163830712383 ], [ 122.21396897106878, -18.225828706864529 ], [ 122.211988530018786, -18.227320595160322 ], [ 122.211237328241197, -18.228942198363722 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 122.762619432993915, -16.748192483415036 ], [ 122.767946136507746, -16.747538540348565 ], [ 122.768355882931886, -16.741522158764962 ], [ 122.77013145076981, -16.737729124875724 ], [ 122.778189797111281, -16.732104832182465 ], [ 122.793213832663142, -16.728704016541862 ], [ 122.80741837536668, -16.741914537270414 ], [ 122.815340139566743, -16.751200592590241 ], [ 122.826949621584077, -16.748584848176815 ], [ 122.831593414391008, -16.75826292295805 ], [ 122.830091010835844, -16.771732937323549 ], [ 122.823261903766806, -16.778794505329042 ], [ 122.815340139566743, -16.779840641237467 ], [ 122.803457493266649, -16.772648340568264 ], [ 122.797174714763173, -16.770294437605031 ], [ 122.789252950563082, -16.772779112100537 ], [ 122.782833589918212, -16.769117475194562 ], [ 122.781331186363019, -16.763624887625195 ], [ 122.772316765031917, -16.7679405054988 ], [ 122.757565893762816, -16.769117475194562 ], [ 122.748688054573094, -16.7679405054988 ], [ 122.75237577239038, -16.759832294113238 ], [ 122.755790325924892, -16.754993358144944 ], [ 122.762619432993915, -16.748192483415036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 122.866148696160266, -16.518324643731351 ], [ 122.864099964039553, -16.521860132843692 ], [ 122.86860717470509, -16.527687001453259 ], [ 122.874138751431019, -16.53154966013178 ], [ 122.880694694217283, -16.530240292967083 ], [ 122.88410924775178, -16.530567635590849 ], [ 122.88492874060006, -16.525199146475725 ], [ 122.876938685329321, -16.523889736245263 ], [ 122.87488995320858, -16.523562382300479 ], [ 122.870929071108577, -16.520812587259886 ], [ 122.866148696160266, -16.518324643731351 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 122.993921289421664, -16.383010973723639 ], [ 122.990984773381982, -16.384583406406687 ], [ 122.990028698392322, -16.388907530858262 ], [ 122.98675072699919, -16.389431660634013 ], [ 122.98176547883881, -16.395393537571596 ], [ 122.98162889669743, -16.40011049768275 ], [ 122.978624089587058, -16.406072047643683 ], [ 122.981219150273262, -16.40751327406975 ], [ 122.984906868090533, -16.405678984038559 ], [ 122.988526294837115, -16.401420744098591 ], [ 122.989550660897493, -16.397293438027265 ], [ 122.995287110835463, -16.39572110793819 ], [ 122.996584641178586, -16.391462650195177 ], [ 122.996243185825108, -16.387400649898247 ], [ 122.995901730471658, -16.384779959599953 ], [ 122.993921289421664, -16.383010973723639 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.906822470525142, -16.409937130803197 ], [ 124.91037360620102, -16.412819515718351 ], [ 124.907915127656182, -16.418584157406727 ], [ 124.908324874080321, -16.42172843538961 ], [ 124.921436759652835, -16.423169545803141 ], [ 124.924441566763207, -16.415177798880151 ], [ 124.922392834642508, -16.401420744098587 ], [ 124.924578148904587, -16.392641924738609 ], [ 124.940968005870261, -16.394214279689415 ], [ 124.953943309301394, -16.38844891614773 ], [ 124.954899384291053, -16.380062628247998 ], [ 124.948206859363424, -16.374296846002927 ], [ 124.940694841587501, -16.374821015071078 ], [ 124.933865734518477, -16.379407434308018 ], [ 124.921163595370075, -16.3811109339712 ], [ 124.911602845473453, -16.389235112133353 ], [ 124.906685888383763, -16.403124051254242 ], [ 124.905593231252723, -16.407709804118962 ], [ 124.906822470525142, -16.409937130803197 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.638711726995354, -16.340157303401853 ], [ 124.635980084167741, -16.338256846406534 ], [ 124.627921737826327, -16.336028700879329 ], [ 124.623687691443507, -16.334980153019469 ], [ 124.627375409260779, -16.328885357245124 ], [ 124.630243634229785, -16.322200524119495 ], [ 124.63167774671426, -16.318792482069714 ], [ 124.630311925300461, -16.316760736455155 ], [ 124.634887427036702, -16.315908707823667 ], [ 124.635775210955671, -16.319710037691372 ], [ 124.633043568128059, -16.326657104920042 ], [ 124.628468066391818, -16.334390342376786 ], [ 124.637209323440189, -16.336552972700144 ], [ 124.645335960852321, -16.322659294477646 ], [ 124.650662664366152, -16.320299892604847 ], [ 124.654555255395493, -16.32587065686214 ], [ 124.655784494667927, -16.328688747767025 ], [ 124.652028485779965, -16.329671793180985 ], [ 124.648204185821314, -16.326722642115467 ], [ 124.644448176933324, -16.332489829312859 ], [ 124.647111528690246, -16.3336694602859 ], [ 124.645404251923011, -16.336421904876765 ], [ 124.64192140731781, -16.33747044500306 ], [ 124.638711726995354, -16.340157303401853 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.478910621580283, -16.345301551162795 ], [ 124.477100908206978, -16.344220287397828 ], [ 124.478056983196666, -16.339665807674731 ], [ 124.479286222469085, -16.335504427652427 ], [ 124.482222738508767, -16.333014110623989 ], [ 124.483827578669974, -16.332129385095978 ], [ 124.484476343841521, -16.332719202559463 ], [ 124.483383686710496, -16.335602728989574 ], [ 124.4811300813777, -16.337601512123367 ], [ 124.480344734064772, -16.341828379627898 ], [ 124.480071569782012, -16.34330284678332 ], [ 124.478910621580283, -16.345301551162795 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.507148979310657, -16.178782230403016 ], [ 124.506466068603757, -16.179602060389211 ], [ 124.505100247189958, -16.179208542420593 ], [ 124.503153951675301, -16.17822474406838 ], [ 124.502675914180472, -16.176880211728161 ], [ 124.502300313291656, -16.175273319608369 ], [ 124.503666134705483, -16.175010968633178 ], [ 124.503802716846863, -16.176158751577145 ], [ 124.504485627553763, -16.177208147289264 ], [ 124.50554413914945, -16.177503288828717 ], [ 124.507148979310657, -16.178782230403016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.504144172200313, -16.183242064421798 ], [ 124.50499781058393, -16.181372881543552 ], [ 124.502846641857175, -16.181012160003792 ], [ 124.500968637413209, -16.180389093973901 ], [ 124.499295506181284, -16.180126749794198 ], [ 124.498851614221806, -16.180979367103866 ], [ 124.496495572282996, -16.180421886971853 ], [ 124.496563863353686, -16.181340088703532 ], [ 124.4989881963632, -16.182651798056185 ], [ 124.501890566867516, -16.183307649464595 ], [ 124.504144172200313, -16.183242064421798 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.504349045412383, -16.186455705895845 ], [ 124.502232022220966, -16.185963825387741 ], [ 124.500968637413209, -16.186455705895845 ], [ 124.500114999029591, -16.18691479326419 ], [ 124.501241801695969, -16.187931340065592 ], [ 124.498441867797666, -16.187964131810723 ], [ 124.497417501737317, -16.189046256343651 ], [ 124.497929684767485, -16.189997209368329 ], [ 124.499910125817522, -16.19134165237724 ], [ 124.501753984726136, -16.19114490519199 ], [ 124.503222242745991, -16.18980046084263 ], [ 124.504246608806312, -16.188324840647617 ], [ 124.504280754341693, -16.187177128423833 ], [ 124.504349045412383, -16.186455705895845 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.509983058744282, -16.205277412128176 ], [ 124.508446509653737, -16.204785578548734 ], [ 124.507012397169248, -16.205736455695284 ], [ 124.50677337842184, -16.206556173692235 ], [ 124.506295340927011, -16.2067201168826 ], [ 124.505475848078731, -16.205998765825157 ], [ 124.502402749897669, -16.206326652996673 ], [ 124.504861228442493, -16.207441465300398 ], [ 124.506261195391659, -16.208162811078449 ], [ 124.50731970698736, -16.209474342093383 ], [ 124.506807523957178, -16.21121210724511 ], [ 124.506192904320969, -16.21209737794036 ], [ 124.508207490906329, -16.212458042639 ], [ 124.509436730178763, -16.209736647249098 ], [ 124.509129420360637, -16.207670984697934 ], [ 124.509231856966693, -16.206425019041781 ], [ 124.509983058744282, -16.205277412128176 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.540372585201382, -16.156120783044809 ], [ 124.539177491464315, -16.157334269356554 ], [ 124.541226223585028, -16.15949884807381 ], [ 124.542762772675545, -16.162319324181723 ], [ 124.544913941402299, -16.1625816920067 ], [ 124.545562706573861, -16.164155891644246 ], [ 124.546109035139366, -16.165106964517076 ], [ 124.547645584229898, -16.164319870052235 ], [ 124.548772386896303, -16.163040834862556 ], [ 124.547474856553166, -16.16133544173703 ], [ 124.545801725321269, -16.159990794477789 ], [ 124.54443590390747, -16.159367662159369 ], [ 124.543445683382444, -16.158252578372732 ], [ 124.542284735180715, -16.156809519432766 ], [ 124.54132866019107, -16.155694421221757 ], [ 124.540372585201382, -16.156120783044809 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.612385519244199, -16.096962507864323 ], [ 124.611275789345498, -16.095929090328703 ], [ 124.609312421063137, -16.096798473693983 ], [ 124.608629510356238, -16.096273563438206 ], [ 124.607724653669592, -16.097060928301477 ], [ 124.606119813508357, -16.098077936628542 ], [ 124.602688187206184, -16.098537229004073 ], [ 124.600673600620823, -16.098258373045649 ], [ 124.598351704217379, -16.098783278053869 ], [ 124.598522431894082, -16.099816680732864 ], [ 124.601015055974273, -16.099931502920679 ], [ 124.602722332741521, -16.100374387880098 ], [ 124.604463755044137, -16.100029921885948 ], [ 124.607127106801059, -16.09994790608495 ], [ 124.608475855447182, -16.100325178488962 ], [ 124.610148986679079, -16.098980117074138 ], [ 124.611105061668766, -16.098291179649319 ], [ 124.612146500496792, -16.097881096713756 ], [ 124.612385519244199, -16.096962507864323 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.620324356211967, -16.11398851739774 ], [ 124.621485304413682, -16.11313561141403 ], [ 124.623568182069747, -16.114775811973274 ], [ 124.625036440089588, -16.115792729507472 ], [ 124.624763275806828, -16.11726889084219 ], [ 124.624216947241308, -16.118154582368071 ], [ 124.621929196373173, -16.116809641826769 ], [ 124.621075557989556, -16.115497495921851 ], [ 124.620665811565416, -16.114677400322254 ], [ 124.620324356211967, -16.11398851739774 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.613392812536901, -16.118252992293396 ], [ 124.615202525910178, -16.117400104651228 ], [ 124.616943948212793, -16.117760942178343 ], [ 124.616704929465385, -16.118417008727047 ], [ 124.61537325358691, -16.119138679423205 ], [ 124.616261037505893, -16.119630726118995 ], [ 124.616192746435203, -16.121369281329898 ], [ 124.616704929465385, -16.122845401143621 ], [ 124.615612272334317, -16.123763870146369 ], [ 124.614144014314491, -16.121926927884818 ], [ 124.613324521466211, -16.120483604165397 ], [ 124.613187939324831, -16.119433907587222 ], [ 124.613392812536901, -16.118252992293396 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.631489946269795, -16.1057545410569 ], [ 124.630192415926686, -16.107296387332873 ], [ 124.631148490916345, -16.108641392384559 ], [ 124.630943617704276, -16.110019192982815 ], [ 124.632685040006891, -16.111495397290479 ], [ 124.635109373016377, -16.11238111460181 ], [ 124.637465414955201, -16.112348310327473 ], [ 124.638967818510395, -16.111200157307799 ], [ 124.638284907803467, -16.109723950803033 ], [ 124.636031302470712, -16.109822364911782 ], [ 124.634187443562055, -16.10900224584708 ], [ 124.63370940606724, -16.107197971971104 ], [ 124.632821622148271, -16.105852957134605 ], [ 124.631489946269795, -16.1057545410569 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.648904169295804, -16.086956175515695 ], [ 124.647504202346639, -16.085611023551852 ], [ 124.650201699638913, -16.085414171281073 ], [ 124.651430938911361, -16.085611023551852 ], [ 124.653889417456185, -16.084003390966718 ], [ 124.655733276364842, -16.084626760247708 ], [ 124.661264853090756, -16.085118892509229 ], [ 124.664474533413198, -16.085775066961855 ], [ 124.663689186100243, -16.087087409366031 ], [ 124.66075267006056, -16.087776385658103 ], [ 124.658157609374342, -16.086988983986402 ], [ 124.655767421900208, -16.087776385658103 ], [ 124.654367454951043, -16.088530975998331 ], [ 124.652284577295006, -16.08803885218849 ], [ 124.649450497861352, -16.087677960619807 ], [ 124.648904169295804, -16.086956175515695 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.629031467724928, -16.078228929943844 ], [ 124.627938810593903, -16.079967847791636 ], [ 124.629577796290476, -16.081313037954786 ], [ 124.631797256087893, -16.082067652840546 ], [ 124.633197223037058, -16.079935038161725 ], [ 124.634597189986195, -16.080230324635931 ], [ 124.636577631036232, -16.080492801133612 ], [ 124.636680067642232, -16.078852317336583 ], [ 124.635245955157757, -16.077736780621315 ], [ 124.633470387319818, -16.07747430048444 ], [ 124.631148490916345, -16.077671160619587 ], [ 124.630158270391334, -16.077736780621315 ], [ 124.629031467724928, -16.078228929943844 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.398207648791995, -15.725014295181573 ], [ 124.398207648791995, -15.727183544426534 ], [ 124.404968464790301, -15.726789137193027 ], [ 124.40968054866795, -15.727315013334474 ], [ 124.413299975414532, -15.726066055279318 ], [ 124.416919402161113, -15.729352770544279 ], [ 124.421358321755946, -15.732376501690947 ], [ 124.425592368138737, -15.733691153386696 ], [ 124.424772875290458, -15.727972356599924 ], [ 124.422860725311153, -15.724817089558055 ], [ 124.424977748502528, -15.722253399062241 ], [ 124.428870339531869, -15.717125921197685 ], [ 124.429416668097389, -15.713707530878761 ], [ 124.426411860987045, -15.714101963459626 ], [ 124.422792434240463, -15.716205590987954 ], [ 124.420811993190455, -15.71561394794216 ], [ 124.419036425352502, -15.71377326969529 ], [ 124.419309589635262, -15.711538138028907 ], [ 124.415826745030046, -15.709302981834352 ], [ 124.41036345937485, -15.708316875716363 ], [ 124.406948905840338, -15.710026123287081 ], [ 124.405036755860991, -15.713444575400439 ], [ 124.404558718366161, -15.716468542900937 ], [ 124.401144164831649, -15.719755413158982 ], [ 124.40025638091268, -15.721793246067724 ], [ 124.398207648791995, -15.725014295181573 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 128.28697437817533, -14.975922534910671 ], [ 128.293325447749538, -14.967148141649695 ], [ 128.301247211949601, -14.976582249201245 ], [ 128.30869093865482, -14.984960443887683 ], [ 128.313949351097989, -14.993338310661965 ], [ 128.313334731461765, -14.996900453831064 ], [ 128.289706021002957, -14.983773003163925 ], [ 128.28697437817533, -14.975922534910671 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.040941944130651, -14.907499147254839 ], [ 129.04620035657382, -14.905981313062808 ], [ 129.058083002873872, -14.903473563556469 ], [ 129.063273124246365, -14.902549648479567 ], [ 129.068804700972265, -14.906707235098805 ], [ 129.061019518913582, -14.906179292042705 ], [ 129.056785472530777, -14.909544906837498 ], [ 129.052551426148, -14.914692215880503 ], [ 129.048727126189334, -14.91759577177732 ], [ 129.043195549463405, -14.9207632425941 ], [ 129.039029794151332, -14.92333677827642 ], [ 129.035751822758215, -14.923666716520597 ], [ 129.033703090637488, -14.919971379263885 ], [ 129.034795747768555, -14.916341968357553 ], [ 129.03677618881855, -14.911656638265111 ], [ 129.040941944130651, -14.907499147254839 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.195074890678455, -15.120351317913205 ], [ 129.206820954837184, -15.11639567083062 ], [ 129.233044725982211, -15.096880065869051 ], [ 129.257902675713439, -15.09582511719613 ], [ 129.270195068437687, -15.111385078624894 ], [ 129.25599052573412, -15.12087873194942 ], [ 129.245337118706459, -15.131163043398718 ], [ 129.231405740285652, -15.157794452172878 ], [ 129.214469554754459, -15.174404425334917 ], [ 129.208459940533714, -15.173877144662553 ], [ 129.18851894789222, -15.170186143110058 ], [ 129.180870347974917, -15.150939162249466 ], [ 129.177865540864531, -15.14197421724036 ], [ 129.185787305064594, -15.125889099859119 ], [ 129.195074890678455, -15.120351317913205 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.177455794440363, -15.08962718793985 ], [ 129.174109531976541, -15.088506266535033 ], [ 129.171173015936859, -15.093253657855831 ], [ 129.169943776664439, -15.098594346286763 ], [ 129.16926086595754, -15.102286595569455 ], [ 129.167485298119573, -15.104923877174848 ], [ 129.167417007048897, -15.108616016376233 ], [ 129.169055992745484, -15.111253219337197 ], [ 129.171104724866154, -15.10657216154013 ], [ 129.174314405188596, -15.097275670270507 ], [ 129.175953390885155, -15.092396497825423 ], [ 129.177455794440363, -15.08962718793985 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.193026158557728, -15.0419498434632 ], [ 129.187289708619772, -15.034431279796225 ], [ 129.186197051488705, -15.030078306014019 ], [ 129.189065276457711, -15.022295495228439 ], [ 129.19105878528606, -15.011423482695989 ], [ 129.199830899757359, -15.012482574956774 ], [ 129.203973287146539, -15.031545337546021 ], [ 129.198978055294873, -15.043546944118871 ], [ 129.193026158557728, -15.0419498434632 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.558929715315941, -15.056854282260645 ], [ 129.554695668933135, -15.054216404423164 ], [ 129.547183651157212, -15.058173208928302 ], [ 129.544178844046826, -15.058700777308291 ], [ 129.542403276208887, -15.063316944878535 ], [ 129.544178844046826, -15.067273580274696 ], [ 129.541447201219228, -15.075186630385952 ], [ 129.541720365501988, -15.082044369051095 ], [ 129.544998336895105, -15.083758769160513 ], [ 129.550734786833118, -15.076109800394123 ], [ 129.552510354671028, -15.069251870390922 ], [ 129.552646936812408, -15.063185055765429 ], [ 129.558929715315941, -15.056854282260645 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.517545326477631, -15.026120980061053 ], [ 129.519935513951793, -15.031265489489668 ], [ 129.534276638796712, -15.029616621767458 ], [ 129.530315756696695, -15.022295495228439 ], [ 129.519798931810413, -15.023350808236344 ], [ 129.517545326477631, -15.026120980061053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.590275316762671, -15.101429471993873 ], [ 129.649551966121777, -15.083231262907018 ], [ 129.643815516183821, -15.046038775562531 ], [ 129.638625394811356, -15.032320758144841 ], [ 129.63534742341821, -15.028099652210187 ], [ 129.562139395638326, -15.062129939919178 ], [ 129.590275316762671, -15.101429471993873 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.74300829636141, -14.609668162512845 ], [ 129.742154657977807, -14.61138631352979 ], [ 129.744715573128673, -14.615648591712848 ], [ 129.748471582016634, -14.617234534582487 ], [ 129.75560799890377, -14.618423984221502 ], [ 129.759193280114999, -14.617003251960371 ], [ 129.762129796154682, -14.6162102811218 ], [ 129.764690711305548, -14.6162102811218 ], [ 129.763632199709861, -14.61442608627098 ], [ 129.758407932802072, -14.614657371605986 ], [ 129.752978792682171, -14.615384266788245 ], [ 129.74908620165283, -14.614095678227244 ], [ 129.745944812401092, -14.612443630556598 ], [ 129.743759498139013, -14.609569038005938 ], [ 129.74300829636141, -14.609668162512845 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.701453179846396, -14.561058755394003 ], [ 129.703775076249855, -14.559736799838594 ], [ 129.699404447725669, -14.553060803278493 ], [ 129.697219133463562, -14.547442233834916 ], [ 129.695853312049763, -14.545393072923716 ], [ 129.694419199565289, -14.547111725296803 ], [ 129.695443565625652, -14.552994703292875 ], [ 129.698926410230854, -14.559406309711902 ], [ 129.700087358432569, -14.560001191583458 ], [ 129.701453179846396, -14.561058755394003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.8012264341248, -14.536469085980942 ], [ 129.799041119862693, -14.529527958057511 ], [ 129.799724030569593, -14.5235121375667 ], [ 129.803753203740314, -14.522520503093554 ], [ 129.809899400102466, -14.526751445860361 ], [ 129.810172564385226, -14.531907797901646 ], [ 129.810035982243846, -14.5369979248851 ], [ 129.810035982243846, -14.540435346908355 ], [ 129.806006809073125, -14.542154037862673 ], [ 129.805460480507605, -14.542154037862673 ], [ 129.8012264341248, -14.536469085980942 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.416645269532864, -14.288172509974634 ], [ 129.415552612401825, -14.290422571203896 ], [ 129.417089161492328, -14.291911569936103 ], [ 129.417464762381144, -14.293830709316914 ], [ 129.419718367713926, -14.294194682179514 ], [ 129.421050043592373, -14.293268204643278 ], [ 129.421903681976005, -14.294657919516258 ], [ 129.423132921248424, -14.293466735865218 ], [ 129.422484156076848, -14.290918905209862 ], [ 129.421084189127725, -14.289363721664188 ], [ 129.418557419512183, -14.287609991150942 ], [ 129.417840363269931, -14.287609991150942 ], [ 129.416645269532864, -14.288172509974634 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.064181201817519, -13.502545857415441 ], [ 130.062576361656284, -13.50344230263765 ], [ 130.062405633979552, -13.504537953335181 ], [ 130.060049592040741, -13.505235182977399 ], [ 130.059571554545897, -13.507625669136807 ], [ 130.058342315273478, -13.508123684071244 ], [ 130.057454531354523, -13.508854104094036 ], [ 130.057078930465735, -13.511974964445709 ], [ 130.057454531354523, -13.514929783940437 ], [ 130.059025225980378, -13.516423779856808 ], [ 130.060903230424373, -13.515228583872808 ], [ 130.060766648282993, -13.512506170650392 ], [ 130.060117883111417, -13.511344155540529 ], [ 130.062269051838172, -13.510846147331321 ], [ 130.062781234868339, -13.508024081167546 ], [ 130.063293417898535, -13.506994848727093 ], [ 130.065786041978726, -13.504969571925404 ], [ 130.065103131271826, -13.502678664327551 ], [ 130.064181201817519, -13.502545857415441 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.517565620129716, -12.744099833694516 ], [ 130.514355939807274, -12.745098962569855 ], [ 130.516063216574537, -12.750161154966261 ], [ 130.51722416477628, -12.751426687253915 ], [ 130.513263282676235, -12.753957732851381 ], [ 130.511077968414156, -12.757421227920114 ], [ 130.509234109505513, -12.761883738217616 ], [ 130.510599930919312, -12.765879949283571 ], [ 130.517702202271096, -12.762083550270416 ], [ 130.519955807603878, -12.755955908867728 ], [ 130.520843591522862, -12.752492393747668 ], [ 130.522072830795253, -12.74796311017062 ], [ 130.519068023684895, -12.745898262832753 ], [ 130.517565620129716, -12.744099833694516 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.528423900369461, -12.739170740243203 ], [ 130.526238586107354, -12.741302251880866 ], [ 130.528355609298757, -12.743633572204134 ], [ 130.533135984247082, -12.743100700878646 ], [ 130.539896800245401, -12.741635298954661 ], [ 130.542286987719564, -12.743700181041014 ], [ 130.542423569860944, -12.747829894721345 ], [ 130.543994264486827, -12.749228653443714 ], [ 130.546247869819609, -12.743766789860379 ], [ 130.544199137698882, -12.740636156420051 ], [ 130.541399203800609, -12.738637859532536 ], [ 130.539896800245401, -12.738038367393793 ], [ 130.534092059236741, -12.739104130215646 ], [ 130.531018961055679, -12.738504639179803 ], [ 130.528423900369461, -12.739170740243203 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.626148422527166, -12.772806565527604 ], [ 130.622392413639204, -12.774471589213164 ], [ 130.620685136871941, -12.778068002932949 ], [ 130.616109635135729, -12.779599793230611 ], [ 130.613104828025342, -12.781264772149171 ], [ 130.617134001196064, -12.782996338581443 ], [ 130.623553361840948, -12.780731980089321 ], [ 130.62635329573925, -12.776536203347629 ], [ 130.629836140344452, -12.777402004254387 ], [ 130.629631267132368, -12.78226375423206 ], [ 130.633523858161709, -12.78226375423206 ], [ 130.636733538484151, -12.776003401314988 ], [ 130.640079800947973, -12.771407937154899 ], [ 130.640216383089353, -12.768877066142519 ], [ 130.636938411696235, -12.769076872669949 ], [ 130.629699558203072, -12.77287316668564 ], [ 130.626421586809954, -12.772540160719965 ], [ 130.626148422527166, -12.772806565527604 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.625875258244406, -12.752692213215814 ], [ 130.624987474325451, -12.75662196403422 ], [ 130.621163174366785, -12.756022514463254 ], [ 130.61692912798398, -12.757487833129989 ], [ 130.615699888711589, -12.758753328786753 ], [ 130.616519381559868, -12.762416570007687 ], [ 130.614402358368466, -12.762549777779839 ], [ 130.612695081601203, -12.759286167169833 ], [ 130.611943879823627, -12.756089120041256 ], [ 130.615290142287449, -12.753957732851381 ], [ 130.621026592225405, -12.752092754338218 ], [ 130.624031399335763, -12.751626507563198 ], [ 130.625875258244406, -12.752692213215814 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.636392083130687, -12.624042563232827 ], [ 130.637006702766911, -12.624175843485116 ], [ 130.639874927735889, -12.62777438404707 ], [ 130.635026261716888, -12.633771839124009 ], [ 130.636870120625531, -12.637037061065602 ], [ 130.640284674160029, -12.648431692361044 ], [ 130.643972391977314, -12.646765842320494 ], [ 130.644382138401454, -12.64136841354696 ], [ 130.642128533068671, -12.633305375441521 ], [ 130.645201631249734, -12.628307496861376 ], [ 130.64472359375489, -12.621576866041435 ], [ 130.642948025916951, -12.619977482185265 ], [ 130.63174829032377, -12.607715207286798 ], [ 130.627104497516825, -12.607115407038837 ], [ 130.627923990365105, -12.61278013114938 ], [ 130.6223241225685, -12.615978978815031 ], [ 130.619046151175354, -12.622643116391643 ], [ 130.619933935094366, -12.624775603761108 ], [ 130.624441145759903, -12.622509835340866 ], [ 130.627514243940965, -12.618044880022524 ], [ 130.630860506404787, -12.620577252302796 ], [ 130.634821388504832, -12.623709362298317 ], [ 130.636392083130687, -12.624042563232827 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.946433544064234, -12.637836700896134 ], [ 130.941653169115909, -12.638902883444352 ], [ 130.94124342269177, -12.643434109637212 ], [ 130.948755440467693, -12.647432183640927 ], [ 130.95039442616428, -12.656760779499404 ], [ 130.961320997474701, -12.6572938318205 ], [ 130.965281879574718, -12.661025166881229 ], [ 130.966374536705786, -12.671952334055259 ], [ 130.970745165229943, -12.663024073924158 ], [ 130.975798704461027, -12.657027305799165 ], [ 130.968150104543724, -12.647298915515952 ], [ 130.955174801112577, -12.638769610869115 ], [ 130.946433544064234, -12.637836700896134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.898971249934505, -12.676482973294043 ], [ 130.895829860682738, -12.675750081232687 ], [ 130.89296163571376, -12.681546533553686 ], [ 130.889751955391318, -12.685943754193779 ], [ 130.887839805412028, -12.693005798057055 ], [ 130.889615373249939, -12.696869852289499 ], [ 130.891390941087906, -12.694005128055139 ], [ 130.893712837491364, -12.68514426518141 ], [ 130.897878592803465, -12.681813033936262 ], [ 130.899380996358644, -12.679347894754969 ], [ 130.898971249934505, -12.676482973294043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.946450616831783, -12.349272128217319 ], [ 130.943992138286916, -12.347003945988503 ], [ 130.942148279378273, -12.346303473974865 ], [ 130.941226349923966, -12.347804483137303 ], [ 130.942284861519653, -12.350039303051703 ], [ 130.942831190085201, -12.353975208134278 ], [ 130.942865335620525, -12.356576875596099 ], [ 130.940201983863631, -12.356543521048808 ], [ 130.938460561561016, -12.358444723455142 ], [ 130.938836162449803, -12.360212495747406 ], [ 130.94143122313605, -12.361313178118191 ], [ 130.943582391862805, -12.362714039888015 ], [ 130.944401884711084, -12.36484867195877 ], [ 130.947679856104173, -12.364815318466736 ], [ 130.949387132871465, -12.362480563447679 ], [ 130.949796879295576, -12.357644218863392 ], [ 130.947748147174877, -12.355242690386655 ], [ 130.946757926649866, -12.352807784837159 ], [ 130.946587198973162, -12.350172724532445 ], [ 130.946450616831783, -12.349272128217319 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.042331280080845, -12.348438239976954 ], [ 131.040692294384286, -12.344769100157148 ], [ 131.049501842503304, -12.344702388048027 ], [ 131.054760254946473, -12.34530279641813 ], [ 131.058243099551646, -12.347570993388493 ], [ 131.063706385206899, -12.355709655984095 ], [ 131.061247906662032, -12.358778266311809 ], [ 131.055374874582697, -12.35417533731926 ], [ 131.051072537129215, -12.352507589433026 ], [ 131.047862856806745, -12.350172724532445 ], [ 131.042331280080845, -12.348438239976954 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.028365756124714, -12.315447491320388 ], [ 131.023039052610869, -12.31344589677796 ], [ 131.023312216893629, -12.309442661905468 ], [ 131.018668424086712, -12.306373473834876 ], [ 131.017029438390125, -12.302903913697067 ], [ 131.017439184814293, -12.30090222354289 ], [ 131.023312216893629, -12.303571140359447 ], [ 131.032463220366111, -12.305572810178351 ], [ 131.030824234669552, -12.310243313763335 ], [ 131.029048666831613, -12.311310845775855 ], [ 131.028365756124714, -12.315447491320388 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.877315254563186, -20.583800614021904 ], [ 117.874925067089023, -20.584104287388829 ], [ 117.876154306361443, -20.585926314896451 ], [ 117.880285916138192, -20.586661512816303 ], [ 117.883768760743393, -20.587045092933067 ], [ 117.88578334732874, -20.588867085315034 ], [ 117.887149168742567, -20.591136554157874 ], [ 117.889539356216702, -20.590816912702159 ], [ 117.891963689226216, -20.58899494361231 ], [ 117.891963689226216, -20.586437757302754 ], [ 117.888822299974464, -20.586917233001323 ], [ 117.888241825873607, -20.58630989686193 ], [ 117.884946781712813, -20.584008390601415 ], [ 117.88754184239906, -20.581099492738726 ], [ 117.88638089419733, -20.578893807941999 ], [ 117.886619912944724, -20.57448234270915 ], [ 117.884776054036095, -20.573651182811048 ], [ 117.881276136663217, -20.577119647035964 ], [ 117.878800585350717, -20.578542174085968 ], [ 117.878715221512351, -20.58108350963024 ], [ 117.877315254563186, -20.583800614021904 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.746930527847965, -20.677287425050721 ], [ 117.74512081447466, -20.677351317075686 ], [ 117.744267176091029, -20.679587521008173 ], [ 117.74512081447466, -20.682302867208858 ], [ 117.746554926959163, -20.68447510919226 ], [ 117.74788660283761, -20.686136214434828 ], [ 117.749696316210915, -20.685944549373307 ], [ 117.749457297463479, -20.684411220165948 ], [ 117.747408565342781, -20.682111197305822 ], [ 117.746384199282417, -20.679938921488208 ], [ 117.746657363565177, -20.678405531605282 ], [ 117.746930527847965, -20.677287425050721 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.737540505628033, -20.687477863086706 ], [ 117.738359998476312, -20.686104270274718 ], [ 117.737199050274597, -20.685241775409839 ], [ 117.737506360092723, -20.682686206288736 ], [ 117.737677087769413, -20.681057008512447 ], [ 117.735594210113362, -20.680737555917375 ], [ 117.735013736012519, -20.685145942344462 ], [ 117.735662501184066, -20.687190367945693 ], [ 117.737540505628033, -20.687477863086706 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.196333770408089, -20.679651412065041 ], [ 117.194148456145996, -20.674476149332207 ], [ 117.191007066894244, -20.675881793698473 ], [ 117.185543781239033, -20.680545884037592 ], [ 117.182197518775212, -20.68463483164032 ], [ 117.179056129523445, -20.688532007276475 ], [ 117.176461068837213, -20.692620739679974 ], [ 117.173797717080319, -20.696006637779295 ], [ 117.171202656394073, -20.699200811976283 ], [ 117.172773351019941, -20.701564457565492 ], [ 117.17850980095794, -20.701053402181838 ], [ 117.183017011623491, -20.703033732197859 ], [ 117.185134034814894, -20.706036118688271 ], [ 117.186909602652833, -20.708974567031877 ], [ 117.190529029399414, -20.708655173232355 ], [ 117.195514277559795, -20.705525078378692 ], [ 117.196470352549468, -20.701756102890247 ], [ 117.192168015095987, -20.698306449982926 ], [ 117.187319349076972, -20.696262174190881 ], [ 117.190665611540794, -20.691343022641831 ], [ 117.191553395459763, -20.685848716751753 ], [ 117.193192381156337, -20.681568131266065 ], [ 117.196333770408089, -20.679651412065041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.872374782936959, -21.16068427938076 ], [ 115.874389369522333, -21.158741833828437 ], [ 115.874218641845601, -21.156449078412141 ], [ 115.874594242734403, -21.155430064607494 ], [ 115.875686899865457, -21.155016088245993 ], [ 115.878008796268915, -21.156066949057298 ], [ 115.878520979299083, -21.156831206780687 ], [ 115.880603856955119, -21.156321702070112 ], [ 115.883267208712056, -21.155589285976781 ], [ 115.883096481035324, -21.157690992003687 ], [ 115.878179523945633, -21.15934686058613 ], [ 115.876881993602538, -21.159633451345091 ], [ 115.879442908753404, -21.160142944657661 ], [ 115.879477054288742, -21.162276428856487 ], [ 115.881559931944807, -21.163231710320996 ], [ 115.88070629356119, -21.165588044903384 ], [ 115.878179523945633, -21.164791990119337 ], [ 115.876711265925778, -21.16434619756981 ], [ 115.874184496310264, -21.164696463257489 ], [ 115.872647947219747, -21.163104339815309 ], [ 115.872443074007649, -21.1616077281627 ], [ 115.872374782936959, -21.16068427938076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.859570207182571, -21.193128902142341 ], [ 115.85554103401185, -21.194561523111929 ], [ 115.853287428679067, -21.198445447862756 ], [ 115.853321574214434, -21.201374241618133 ], [ 115.854755686698923, -21.204748649379141 ], [ 115.856667836678255, -21.205958323953599 ], [ 115.858614132192912, -21.204939651286502 ], [ 115.859979953606711, -21.201883591126055 ], [ 115.862301850010198, -21.198349942740929 ], [ 115.863838399100715, -21.196089636836188 ], [ 115.862779887505013, -21.193065229776874 ], [ 115.861106756273117, -21.191791776706125 ], [ 115.859775080394641, -21.192110141002619 ], [ 115.859570207182571, -21.193128902142341 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.837614627955659, -21.223847617011771 ], [ 115.84198525647983, -21.221810511548316 ], [ 115.844102279671219, -21.225757377838644 ], [ 115.846902213569521, -21.228112715475991 ], [ 115.846629049286761, -21.232568656767967 ], [ 115.841438927914311, -21.23237769061673 ], [ 115.839048740440148, -21.228049058196493 ], [ 115.838092665450489, -21.225884694348093 ], [ 115.837614627955659, -21.223847617011771 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.823478376322782, -21.251218492410992 ], [ 115.821088188848606, -21.254782697472372 ], [ 115.825185653090045, -21.256501122670731 ], [ 115.83618051547117, -21.255419153587145 ], [ 115.840141397571216, -21.252300492348851 ], [ 115.840346270783272, -21.248863523901122 ], [ 115.838297538662559, -21.247463254510816 ], [ 115.83645367975393, -21.247717849935171 ], [ 115.835429313693567, -21.251218492410992 ], [ 115.828395333412473, -21.251727669842232 ], [ 115.825663690584875, -21.25166402275957 ], [ 115.823478376322782, -21.251218492410992 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.80824946755888, -21.250772960715082 ], [ 115.803332510469176, -21.251473081346589 ], [ 115.80893237826578, -21.260637989988485 ], [ 115.81480541034513, -21.266620331010593 ], [ 115.819995531717581, -21.266302127502847 ], [ 115.820200404929651, -21.262483631763132 ], [ 115.816512687112393, -21.262738201226881 ], [ 115.81473711927444, -21.258219527820046 ], [ 115.810571363962339, -21.25446446838372 ], [ 115.80824946755888, -21.250772960715082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.779498926798269, -21.283611399071518 ], [ 115.786669489220742, -21.273493358881414 ], [ 115.788581639200075, -21.269802328256713 ], [ 115.787693855281105, -21.266874893321564 ], [ 115.7834598088983, -21.267447656911727 ], [ 115.781479367848291, -21.27508429180644 ], [ 115.77751848574826, -21.278966095952331 ], [ 115.77765506788964, -21.282975064850007 ], [ 115.77765506788964, -21.283802298801131 ], [ 115.779498926798269, -21.283611399071518 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.798552135520865, -21.262038134142507 ], [ 115.794454671279425, -21.263565548944321 ], [ 115.794522962350115, -21.27228423835502 ], [ 115.793976633784595, -21.277375204999522 ], [ 115.796298530188068, -21.278202470441915 ], [ 115.797596060531177, -21.274638832321248 ], [ 115.799166755157074, -21.270884191650424 ], [ 115.79978137479327, -21.268211338231897 ], [ 115.801010614065689, -21.264138325409885 ], [ 115.798552135520865, -21.262038134142507 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.707588429361536, -21.287429346584247 ], [ 115.70410558475632, -21.288383817974843 ], [ 115.699530083020065, -21.291438084789991 ], [ 115.699666665161445, -21.296019366043311 ], [ 115.70390071154425, -21.29302882362763 ], [ 115.706495772230468, -21.293856001020803 ], [ 115.702944636554577, -21.297101036614631 ], [ 115.701920270494227, -21.298691714170264 ], [ 115.705881152594259, -21.301109511081613 ], [ 115.711481020390877, -21.296082993944321 ], [ 115.71059323647188, -21.290929044726788 ], [ 115.708339631139111, -21.288129292876455 ], [ 115.707588429361536, -21.287429346584247 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.64455577111444, -21.334381988702926 ], [ 115.648584944285162, -21.331201389525702 ], [ 115.65466284957661, -21.333745874383929 ], [ 115.658009112040432, -21.333618651189131 ], [ 115.663062651271503, -21.329483837299804 ], [ 115.665657711957735, -21.329674677428862 ], [ 115.665452838745665, -21.333173369138485 ], [ 115.661833411999083, -21.336417535987231 ], [ 115.656779872767984, -21.338707492917077 ], [ 115.662926069130123, -21.34067937162321 ], [ 115.661765120928393, -21.34360533632443 ], [ 115.65466284957661, -21.342587616093873 ], [ 115.651589751395534, -21.341569888799732 ], [ 115.654867722788666, -21.346276818320419 ], [ 115.651384878183464, -21.346912878287554 ], [ 115.646809376447223, -21.343350906929018 ], [ 115.64489722646789, -21.340106893439867 ], [ 115.64530697289203, -21.336799197958335 ], [ 115.64455577111444, -21.334381988702926 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.680681747509553, -21.3142794429614 ], [ 115.678086686823349, -21.316824221193531 ], [ 115.679315926095768, -21.317714883155343 ], [ 115.675423335066426, -21.318478303393722 ], [ 115.677335485045731, -21.320514071288624 ], [ 115.680681747509553, -21.321595561500413 ], [ 115.681501240357861, -21.32420382864133 ], [ 115.684369465326824, -21.321913645340466 ], [ 115.684847502821654, -21.319305337505668 ], [ 115.686418197447551, -21.318541921567739 ], [ 115.685803577811342, -21.314788402135971 ], [ 115.684028009973375, -21.313770482022829 ], [ 115.68177440464062, -21.313388760161288 ], [ 115.680681747509553, -21.3142794429614 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.626322055240124, -21.354354574856018 ], [ 115.624409905260805, -21.357852677723201 ], [ 115.625502562391844, -21.360905499251412 ], [ 115.625707435603914, -21.366502173488719 ], [ 115.627414712371177, -21.369300430410124 ], [ 115.628165914148767, -21.374960377526161 ], [ 115.630282937340183, -21.373879280937722 ], [ 115.631239012329829, -21.367456130718928 ], [ 115.630282937340183, -21.363258672427747 ], [ 115.631239012329829, -21.360778299624474 ], [ 115.630351228410873, -21.358043480932334 ], [ 115.633560908733287, -21.353146119913607 ], [ 115.63513160335917, -21.352891707077024 ], [ 115.638204701540246, -21.356580649979197 ], [ 115.64100463543852, -21.354799792585979 ], [ 115.64093634436783, -21.351937655006459 ], [ 115.643599696124753, -21.35098359672547 ], [ 115.642097292569588, -21.348439410949101 ], [ 115.638341283681626, -21.34875743658608 ], [ 115.63506331228848, -21.347358118622548 ], [ 115.632468251602248, -21.345513542717203 ], [ 115.629463444491876, -21.349584300013177 ], [ 115.628439078431526, -21.351428824696104 ], [ 115.626322055240124, -21.354354574856018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.61368820716244, -21.361732294134413 ], [ 115.610546817910688, -21.364276249120309 ], [ 115.60802004829516, -21.367074548572518 ], [ 115.609795616133127, -21.369491218707623 ], [ 115.611776057183121, -21.369300430410124 ], [ 115.613483333950398, -21.376550210946636 ], [ 115.616966178555572, -21.375405532624374 ], [ 115.616897887484882, -21.370508752095937 ], [ 115.619834403524564, -21.368982449361898 ], [ 115.622088008857332, -21.372543797659151 ], [ 115.622292882069402, -21.366947354302773 ], [ 115.620722187443533, -21.363513067263632 ], [ 115.617922253545231, -21.363004277150054 ], [ 115.615190610717619, -21.363640264515887 ], [ 115.614849155364169, -21.361732294134413 ], [ 115.61368820716244, -21.361732294134413 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.593815505591593, -21.386979089964974 ], [ 115.587122980663935, -21.389522606240085 ], [ 115.586781525310485, -21.395118186364602 ], [ 115.583981591412183, -21.399632646095796 ], [ 115.587737600300144, -21.401858032699106 ], [ 115.593200885955383, -21.400967882122757 ], [ 115.595932528782967, -21.40567290234652 ], [ 115.594976453793308, -21.40897904216817 ], [ 115.598322716257144, -21.40796177634294 ], [ 115.600576321589898, -21.402938922540685 ], [ 115.596547148419205, -21.39696213745934 ], [ 115.597912969832976, -21.392892697182376 ], [ 115.600986068014038, -21.394355165317258 ], [ 115.60399087512441, -21.393464969063768 ], [ 115.602966509064061, -21.388632380574268 ], [ 115.602829926922681, -21.385452958973293 ], [ 115.606244480457207, -21.384053991579972 ], [ 115.611571183971023, -21.38577090424268 ], [ 115.614234535727959, -21.385389369836506 ], [ 115.61348333395037, -21.381446789383645 ], [ 115.609863907203788, -21.379729825984825 ], [ 115.604742076901999, -21.378775948726105 ], [ 115.599551955529549, -21.379030316602961 ], [ 115.597161768055415, -21.381701152618426 ], [ 115.596342275207135, -21.384181170986629 ], [ 115.593815505591593, -21.386979089964974 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.554548139944714, -21.425381475691346 ], [ 115.551543332834342, -21.422457145727186 ], [ 115.554001811379194, -21.416481158920405 ], [ 115.560967500589612, -21.413683804493125 ], [ 115.566294204103428, -21.414573877621091 ], [ 115.563699143417224, -21.420295646810374 ], [ 115.558099275620606, -21.424491468423682 ], [ 115.560148007741333, -21.430467127430013 ], [ 115.564655218406855, -21.431611374655326 ], [ 115.574215968303491, -21.42830574708783 ], [ 115.572986729031086, -21.438858065431297 ], [ 115.570391668344868, -21.447629893791305 ], [ 115.565747875537909, -21.459451958147277 ], [ 115.560830918448232, -21.452460530527986 ], [ 115.557143200630946, -21.44140067866126 ], [ 115.55222624354127, -21.43656967564085 ], [ 115.554548139944714, -21.425381475691346 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.506266352966747, -21.478009393732325 ], [ 115.505924897613298, -21.473815111642978 ], [ 115.510227235066779, -21.470002023109693 ], [ 115.51466615466164, -21.469938470788485 ], [ 115.517807543913392, -21.467078587640049 ], [ 115.522109881366873, -21.472798297794082 ], [ 115.520197731387555, -21.481250347151111 ], [ 115.515827102863383, -21.485444415071285 ], [ 115.511115018985748, -21.482203555015637 ], [ 115.50920286900643, -21.479788749638008 ], [ 115.506266352966747, -21.478009393732325 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.494656870949413, -21.494848855315119 ], [ 115.494247124525273, -21.491544661781642 ], [ 115.496227565575268, -21.488367481859051 ], [ 115.495817819151128, -21.486651775860427 ], [ 115.497388513777025, -21.485063141162538 ], [ 115.500051865533919, -21.485253778241749 ], [ 115.500325029816679, -21.487668492967675 ], [ 115.501964015513266, -21.490210254662735 ], [ 115.503261545856375, -21.492116546801039 ], [ 115.505310277977088, -21.495293644868148 ], [ 115.502100597654646, -21.496818627297788 ], [ 115.498071424483925, -21.495293644868148 ], [ 115.497798260201165, -21.494149897555904 ], [ 115.494656870949413, -21.494848855315119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.439682559043789, -21.530618298307026 ], [ 115.435789968014447, -21.531698233362725 ], [ 115.435653385873067, -21.536780172856869 ], [ 115.433570508217031, -21.540591510743273 ], [ 115.43432170999462, -21.54376754920402 ], [ 115.436404587650685, -21.544085149227513 ], [ 115.43804357334723, -21.542624183364566 ], [ 115.441697145629163, -21.53960692470897 ], [ 115.444292206315367, -21.53795534604204 ], [ 115.445316572375745, -21.541290245167648 ], [ 115.447843341991273, -21.54160785061223 ], [ 115.449789637505944, -21.537701255348601 ], [ 115.448833562516299, -21.53487446639047 ], [ 115.444155624173987, -21.533985128146011 ], [ 115.440638634033476, -21.533286358561181 ], [ 115.439682559043789, -21.530618298307026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.055306267663909, -21.678367526362027 ], [ 115.052438042694945, -21.680398263642783 ], [ 115.042262673162085, -21.684205818919864 ], [ 115.037687171425844, -21.685030775969572 ], [ 115.035228692880992, -21.687569075728032 ], [ 115.034477491103402, -21.692455176856878 ], [ 115.035433566093062, -21.695120253068435 ], [ 115.039394448193093, -21.69391462946226 ], [ 115.041989508879325, -21.69163026232091 ], [ 115.040691978536202, -21.688330556935238 ], [ 115.052916080189775, -21.683253939532129 ], [ 115.054691648027699, -21.689472771199188 ], [ 115.058311074774281, -21.689472771199188 ], [ 115.05906227655187, -21.685982643619425 ], [ 115.056945253360468, -21.680334803535864 ], [ 115.055306267663909, -21.678367526362027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.920158238767996, -21.693787721127141 ], [ 114.916811976304174, -21.697277659594135 ], [ 114.923641083373198, -21.701528924905908 ], [ 114.928284876180157, -21.70457453033562 ], [ 114.920158238767996, -21.707239382227442 ], [ 114.917358304869708, -21.712505492053882 ], [ 114.923845956585268, -21.714789527959546 ], [ 114.928489749392227, -21.710855888017523 ], [ 114.93613834930953, -21.708952475246353 ], [ 114.938938283207804, -21.702734484759876 ], [ 114.938187081430215, -21.698039089474491 ], [ 114.925280069069771, -21.696770037437048 ], [ 114.920158238767996, -21.693787721127141 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.860608425126131, -21.736232318471334 ], [ 114.859584059065782, -21.738579411981426 ], [ 114.866822912558931, -21.739277189145838 ], [ 114.86730095005376, -21.744098102423969 ], [ 114.870920376800342, -21.746191343343806 ], [ 114.872627653567605, -21.741687666005397 ], [ 114.869964301810683, -21.737818196664929 ], [ 114.867027785771, -21.735724833753245 ], [ 114.864227851872698, -21.735597962293724 ], [ 114.860608425126131, -21.736232318471334 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.688583218057488, -21.83642538002827 ], [ 114.690563659107497, -21.830529881061008 ], [ 114.69766593045928, -21.825838665253965 ], [ 114.704290164316234, -21.824697535444415 ], [ 114.707704717850746, -21.827360157507822 ], [ 114.698690296519658, -21.830403093467513 ], [ 114.696846437611001, -21.834523632723364 ], [ 114.700534155428272, -21.842067081536111 ], [ 114.698758587590348, -21.848279034615853 ], [ 114.69151973409717, -21.856962638862836 ], [ 114.687695434138519, -21.861779593149279 ], [ 114.687900307350588, -21.867356916178878 ], [ 114.682983350260884, -21.87128626294049 ], [ 114.681754110988464, -21.868180820429277 ], [ 114.683256514543658, -21.860638750237797 ], [ 114.683188223472968, -21.853920268243808 ], [ 114.678476139595332, -21.852652594696046 ], [ 114.685236955593666, -21.849610132289921 ], [ 114.688924673410938, -21.848088876793085 ], [ 114.690358785895427, -21.839911851060219 ], [ 114.688583218057488, -21.83642538002827 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.647950030996768, -21.917923143739255 ], [ 114.645901298876083, -21.92311815569478 ], [ 114.650135345258875, -21.928186277353372 ], [ 114.6512280023899, -21.935534733196089 ], [ 114.656827870186518, -21.930720270509855 ], [ 114.66051558800379, -21.920964149350546 ], [ 114.667481277214193, -21.912727942251959 ], [ 114.674583548565963, -21.9072791127155 ], [ 114.673354309293543, -21.89321256629788 ], [ 114.671851905738365, -21.888016463869164 ], [ 114.667481277214193, -21.89321256629788 ], [ 114.664339887962441, -21.906392074229153 ], [ 114.658057109458937, -21.909306608517586 ], [ 114.654505973783046, -21.912981371111439 ], [ 114.647950030996768, -21.917923143739255 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.621896987528473, -21.944371382173582 ], [ 114.620360438437956, -21.942059337082981 ], [ 114.621077494680193, -21.940412377931551 ], [ 114.624218883931945, -21.941172515294255 ], [ 114.625038376780225, -21.940412377931551 ], [ 114.627291982112993, -21.94215435337523 ], [ 114.631799192778558, -21.943389559398053 ], [ 114.635657638272562, -21.943357887582764 ], [ 114.640028266796733, -21.943959650867168 ], [ 114.639311210554496, -21.945194841210213 ], [ 114.63603323916135, -21.945891610516792 ], [ 114.63313086865702, -21.946081637916969 ], [ 114.631730901707883, -21.949122041781902 ], [ 114.633472324010469, -21.952004031252986 ], [ 114.635452765060492, -21.953144142827149 ], [ 114.636750295403601, -21.953935881595811 ], [ 114.63623811237342, -21.955392669407505 ], [ 114.631560174031151, -21.953967551054827 ], [ 114.630808972253561, -21.952320729829712 ], [ 114.629613878516494, -21.950325517017248 ], [ 114.628999258880256, -21.94779187309074 ], [ 114.628896822274228, -21.945828267993637 ], [ 114.624150592861255, -21.944656426225869 ], [ 114.622067715205191, -21.945733254156 ], [ 114.621862841993135, -21.949502087693638 ], [ 114.621418950033643, -21.95149731206266 ], [ 114.619472654518987, -21.950420527786154 ], [ 114.619370217912945, -21.947760202255946 ], [ 114.619575091125014, -21.94601829547846 ], [ 114.621896987528473, -21.944371382173582 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.617116612580162, -21.959572934139381 ], [ 114.615682500095673, -21.962518046817017 ], [ 114.621145785750912, -21.965589765965746 ], [ 114.623433536619018, -21.968629752511834 ], [ 114.6232628089423, -21.976387756586629 ], [ 114.625550559810407, -21.979839140530586 ], [ 114.629784606193212, -21.981833938857093 ], [ 114.629613878516494, -21.979965795226004 ], [ 114.627326127648359, -21.977242694372219 ], [ 114.626404198194052, -21.971511346356973 ], [ 114.627428564254402, -21.967489765181273 ], [ 114.625823724093181, -21.966286435295544 ], [ 114.62725783657767, -21.963373068095791 ], [ 114.62698467229491, -21.960934660491517 ], [ 114.629613878516494, -21.960396305121353 ], [ 114.628794385668215, -21.958686221592561 ], [ 114.623911574113848, -21.958337868721088 ], [ 114.62292135358885, -21.960396305121353 ], [ 114.624082301790565, -21.962549714363544 ], [ 114.622818916982808, -21.962739719494483 ], [ 114.620599457185364, -21.961251339168221 ], [ 114.617116612580162, -21.959572934139381 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.615887373307729, -21.979712485722157 ], [ 114.616399556337896, -21.978255947303392 ], [ 114.618038542034469, -21.977369351384091 ], [ 114.621009203609475, -21.977401015619407 ], [ 114.622443316093992, -21.978129291082478 ], [ 114.621282367892235, -21.979015882255936 ], [ 114.618072687569793, -21.979490839535512 ], [ 114.617321485792203, -21.980219104277825 ], [ 114.615887373307729, -21.979712485722157 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.614419115287888, -21.983005474013819 ], [ 114.613463040298214, -21.98405034856285 ], [ 114.614282533146508, -21.984873577638133 ], [ 114.616126392055136, -21.985158540436238 ], [ 114.616741011691346, -21.984335313013908 ], [ 114.615238608136167, -21.983607069390601 ], [ 114.614419115287888, -21.983005474013819 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.610663106399926, -21.987089939874711 ], [ 114.609160702844733, -21.986551683656867 ], [ 114.608887538561973, -21.987343236211949 ], [ 114.610185068905096, -21.988641372843819 ], [ 114.611994782278387, -21.988894666411667 ], [ 114.612950857268061, -21.988768019684265 ], [ 114.612131364419753, -21.987754841795645 ], [ 114.61069725193525, -21.987374898222317 ], [ 114.610663106399926, -21.987089939874711 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.605609567168855, -21.98864137284383 ], [ 114.601477957392106, -21.989337929067403 ], [ 114.600965774361939, -21.99063604745032 ], [ 114.601648685068824, -21.992757337293519 ], [ 114.599804826160209, -21.994530331334769 ], [ 114.599941408301589, -21.996841522437425 ], [ 114.602673051129202, -22.000165772364802 ], [ 114.60451691003783, -21.999342632022092 ], [ 114.605643712704207, -21.99984918049072 ], [ 114.60444861896714, -22.001875356271363 ], [ 114.604892510926618, -22.008713485772748 ], [ 114.606599787693867, -22.009979769854493 ], [ 114.60741928054216, -22.008396912984779 ], [ 114.606394914481797, -22.004344718859464 ], [ 114.607726590360244, -22.002318578364147 ], [ 114.609092411774071, -22.001273838358088 ], [ 114.611346017106825, -22.004059794601829 ], [ 114.612780129591343, -22.005516068125132 ], [ 114.614521551893958, -22.008650171271714 ], [ 114.616775157226712, -22.010897818739871 ], [ 114.618072687569821, -22.010517937163662 ], [ 114.617082467044824, -22.007985367303451 ], [ 114.615170317065477, -22.005136172126363 ], [ 114.613872786722368, -22.002286919689176 ], [ 114.611721617995642, -22.001147202682791 ], [ 114.611072852824066, -21.99801293368359 ], [ 114.611721617995642, -21.995638441357336 ], [ 114.608614374279242, -21.990002820454556 ], [ 114.605609567168855, -21.98864137284383 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.587409996829919, -22.007827080184786 ], [ 114.584336898648857, -22.008840114689971 ], [ 114.582561330810918, -22.014158427058412 ], [ 114.58597588434543, -22.017577236761888 ], [ 114.587546578971299, -22.019729778329108 ], [ 114.591029423576501, -22.024667838343074 ], [ 114.594785432464462, -22.025933979848038 ], [ 114.593761066404113, -22.022705296642151 ], [ 114.591370878929951, -22.020362872566032 ], [ 114.590278221798926, -22.016500953714704 ], [ 114.588844109314422, -22.013525305098597 ], [ 114.588024616466129, -22.012259052693487 ], [ 114.587409996829919, -22.007827080184786 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.562756920310775, -22.029795641526185 ], [ 114.565488563138388, -22.028339617522818 ], [ 114.568220205966, -22.022641988392625 ], [ 114.570610393440148, -22.022578680114805 ], [ 114.571839632712582, -22.023781532554995 ], [ 114.57416152911604, -22.021945595780405 ], [ 114.576893171943667, -22.02739002858543 ], [ 114.578805321922985, -22.031188346128719 ], [ 114.576483425519527, -22.033214073823718 ], [ 114.57347861840914, -22.031314954958773 ], [ 114.571498177359132, -22.027706558938721 ], [ 114.56815191489531, -22.027706558938721 ], [ 114.571020139864302, -22.034226926802127 ], [ 114.575459059459163, -22.039607586738729 ], [ 114.577029754085046, -22.044861445522589 ], [ 114.575732223741923, -22.048279513964417 ], [ 114.571771341641892, -22.041823093142472 ], [ 114.56876653453152, -22.037392045653046 ], [ 114.565147107784938, -22.037455347308189 ], [ 114.562210591745256, -22.033657197893405 ], [ 114.562415464957326, -22.032011301500379 ], [ 114.562756920310775, -22.029795641526185 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.546264626739088, -22.063723089742378 ], [ 114.548415795465814, -22.063121834537657 ], [ 114.550601109727893, -22.059957291312006 ], [ 114.550635255263259, -22.058058531377032 ], [ 114.553093733808083, -22.059672478947299 ], [ 114.554527846292586, -22.060210457376765 ], [ 114.558078981968478, -22.060178811643457 ], [ 114.561595972109032, -22.060969952851053 ], [ 114.560469169442626, -22.062457286336137 ], [ 114.556235123059835, -22.062267414847621 ], [ 114.552581550777916, -22.062172479007735 ], [ 114.551079147222737, -22.061476280900568 ], [ 114.549849907950303, -22.063818024540925 ], [ 114.551284020434807, -22.065590129077322 ], [ 114.553435189161533, -22.065590129077322 ], [ 114.553640062373631, -22.067235634824808 ], [ 114.552274240959818, -22.068912765199588 ], [ 114.550396236515823, -22.067900160561475 ], [ 114.547220701728747, -22.065716707122647 ], [ 114.546264626739088, -22.063723089742378 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.525674868925975, -22.130794437722511 ], [ 114.528406511753573, -22.128074239454833 ], [ 114.531479609934635, -22.131173996096116 ], [ 114.529226004601867, -22.135665359201269 ], [ 114.528338220682883, -22.141358430545818 ], [ 114.52656265284493, -22.146228986667435 ], [ 114.523079808239757, -22.150150610692794 ], [ 114.521782277896634, -22.149328343740137 ], [ 114.521645695755254, -22.14426813368577 ], [ 114.524035883229416, -22.139334253768212 ], [ 114.524172465370796, -22.13598164698012 ], [ 114.525674868925975, -22.130794437722511 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.497743821013671, -22.219456751416622 ], [ 114.495080469256763, -22.22141655547906 ], [ 114.490573258591226, -22.223692422603694 ], [ 114.49330490141881, -22.227738317404079 ], [ 114.494875596044707, -22.233174804693547 ], [ 114.497743821013671, -22.232542665841247 ], [ 114.497060910306772, -22.228307261997472 ], [ 114.496377999599886, -22.225083212108746 ], [ 114.499246224568864, -22.222997022678538 ], [ 114.502251031679236, -22.223629204571171 ], [ 114.50368514416374, -22.221100459901876 ], [ 114.501772994184407, -22.218761330489489 ], [ 114.498631604932655, -22.219203871478403 ], [ 114.497743821013671, -22.219456751416622 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.469403026677199, -22.245753774917805 ], [ 114.46837866061685, -22.249862239095599 ], [ 114.466398219566827, -22.259090042303761 ], [ 114.464076323163368, -22.263830115700085 ], [ 114.472544415928951, -22.265283706045235 ], [ 114.474593148049649, -22.262439710807971 ], [ 114.4742516926962, -22.259658859586736 ], [ 114.469539608818579, -22.257825995622088 ], [ 114.471383467727222, -22.251189563302955 ], [ 114.475822387322083, -22.252327259753457 ], [ 114.481627128330743, -22.254223399963891 ], [ 114.487636742551487, -22.255297868018836 ], [ 114.487158705056657, -22.250557505725535 ], [ 114.479510105139354, -22.248850936017803 ], [ 114.47404681948413, -22.245121692809857 ], [ 114.468788407040989, -22.241455560342754 ], [ 114.469403026677199, -22.245753774917805 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.446935264420134, -22.306736271191589 ], [ 114.454037535771917, -22.303766755408375 ], [ 114.458066708942638, -22.312359223832807 ], [ 114.457178925023669, -22.318045125433709 ], [ 114.46134468033577, -22.322909546289409 ], [ 114.463325121385793, -22.327900139508198 ], [ 114.465168980294422, -22.333080060105949 ], [ 114.46134468033577, -22.333206397229645 ], [ 114.457383798235739, -22.328215993831876 ], [ 114.452944878640878, -22.322909546289409 ], [ 114.446935264420134, -22.318740053079335 ], [ 114.444203621592521, -22.315328556894166 ], [ 114.444271912663211, -22.312043333620249 ], [ 114.446935264420134, -22.306736271191589 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.423852882526845, -22.307368074914379 ], [ 114.422691934325115, -22.311222015722766 ], [ 114.422828516466495, -22.315075850156262 ], [ 114.420643202204403, -22.318045125433713 ], [ 114.42467237537511, -22.32069846691936 ], [ 114.426652816425133, -22.325057418415955 ], [ 114.428564966404451, -22.324678384560801 ], [ 114.427950346768242, -22.31880322814828 ], [ 114.425423577152728, -22.313938664174614 ], [ 114.429725914606195, -22.312422401789558 ], [ 114.427335727132046, -22.309389827618656 ], [ 114.425901614647557, -22.308568494112777 ], [ 114.423852882526845, -22.307368074914379 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.445091405511505, -22.356071531176646 ], [ 114.445910898359784, -22.3589767768058 ], [ 114.449735198318436, -22.361755650708467 ], [ 114.453559498277087, -22.365102857020251 ], [ 114.454583864337451, -22.364408160439485 ], [ 114.450691273308109, -22.358408363950392 ], [ 114.448983996540846, -22.356261005564573 ], [ 114.445091405511505, -22.356071531176646 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.411150743378471, -22.363081911889118 ], [ 114.411014161237091, -22.366302779314871 ], [ 114.412584855862974, -22.368639440424218 ], [ 114.415179916549192, -22.370849759434108 ], [ 114.416682320104385, -22.370091939726851 ], [ 114.415521371902642, -22.366176472191839 ], [ 114.419413962931984, -22.364787086276802 ], [ 114.424126046809619, -22.3628292916856 ], [ 114.424057755738929, -22.361124093326257 ], [ 114.421052948628557, -22.35903993364655 ], [ 114.416477446892316, -22.360429376898121 ], [ 114.411150743378471, -22.363081911889118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.401180247057738, -22.425023169527009 ], [ 114.399268097078419, -22.428431978495556 ], [ 114.398790059583575, -22.437269241524866 ], [ 114.398585186371506, -22.441372065200401 ], [ 114.405619166652599, -22.441182706778417 ], [ 114.410399541600924, -22.440046550818728 ], [ 114.413336057640592, -22.438152936876023 ], [ 114.407872771985382, -22.436574905514938 ], [ 114.400907082774978, -22.436322418831718 ], [ 114.403433852390521, -22.431461960640089 ], [ 114.408419100550915, -22.431209464654344 ], [ 114.412584855863017, -22.429946977835584 ], [ 114.417296939740623, -22.429883853193214 ], [ 114.419140798649266, -22.428242602415441 ], [ 114.417638395094087, -22.424644407808302 ], [ 114.414292132630266, -22.423571243994072 ], [ 114.410945870166444, -22.421172377240683 ], [ 114.409033720187111, -22.422498071885233 ], [ 114.407804480914692, -22.424391899421789 ], [ 114.405687457723289, -22.425212549998875 ], [ 114.401180247057738, -22.425023169527009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.400838791704274, -22.462389242992646 ], [ 114.402409486330143, -22.465292266326696 ], [ 114.400292463138754, -22.46832144322207 ], [ 114.401658284552539, -22.471539871103623 ], [ 114.400360754209444, -22.474253389450649 ], [ 114.401726575623229, -22.477345473457174 ], [ 114.403365561319788, -22.473748552853081 ], [ 114.404936255945671, -22.468700085677263 ], [ 114.403092397037042, -22.465481591822886 ], [ 114.405004547016361, -22.462199913271437 ], [ 114.404799673804305, -22.459927936441925 ], [ 114.402341195259453, -22.460622155535852 ], [ 114.400838791704274, -22.462389242992646 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.375024766983358, -22.492426281180929 ], [ 114.377346663386817, -22.489902411107234 ], [ 114.380488052638583, -22.484602134134466 ], [ 114.382605075829971, -22.481951919540155 ], [ 114.386087920435173, -22.48094230063559 ], [ 114.388887854333476, -22.47873373361498 ], [ 114.391141459666258, -22.480185081625677 ], [ 114.395512088190429, -22.481699515504239 ], [ 114.394556013200756, -22.485296229572707 ], [ 114.393463356069716, -22.487820183645404 ], [ 114.389707347181755, -22.487126100863374 ], [ 114.389229309686925, -22.489271436396692 ], [ 114.390185384676585, -22.492867953711215 ], [ 114.389502473969685, -22.497473883226501 ], [ 114.385200136516204, -22.504224763072905 ], [ 114.3789173580127, -22.50681146148743 ], [ 114.36689812957124, -22.507189998660266 ], [ 114.356517886826325, -22.512237061938322 ], [ 114.354127699352176, -22.511290751607962 ], [ 114.357610543957378, -22.499934522452332 ], [ 114.362254336764309, -22.499808336890123 ], [ 114.365873763510891, -22.496969131308735 ], [ 114.369015152762643, -22.493435816321504 ], [ 114.375024766983358, -22.492426281180929 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.335962274548564, -22.525295482890254 ], [ 114.340537776284805, -22.517851703316545 ], [ 114.34490840480899, -22.516085323877029 ], [ 114.347913211919348, -22.5125524972756 ], [ 114.349893652969371, -22.509461199935199 ], [ 114.346410808364183, -22.505738933870322 ], [ 114.34572789765727, -22.50075472580086 ], [ 114.342996254829671, -22.499808336890105 ], [ 114.340469485214115, -22.502584392667274 ], [ 114.338147588810656, -22.502584392667274 ], [ 114.336167147760634, -22.49911431424033 ], [ 114.335757401336508, -22.497158413493704 ], [ 114.331591646024407, -22.49741078933749 ], [ 114.326128360369196, -22.496842943041536 ], [ 114.322713806834685, -22.497284601473147 ], [ 114.321894313986391, -22.501259463905622 ], [ 114.320801656855352, -22.503846217783106 ], [ 114.321416276491561, -22.507694713278731 ], [ 114.324421083601933, -22.507947069897114 ], [ 114.326264942510576, -22.504224763072898 ], [ 114.327289308570911, -22.499997615190267 ], [ 114.330498988893368, -22.499303593490144 ], [ 114.330977026388197, -22.502458209522509 ], [ 114.331591646024407, -22.506748371857864 ], [ 114.335074490629594, -22.506811461487416 ], [ 114.335757401336508, -22.506180563896574 ], [ 114.336372020972703, -22.510155170661111 ], [ 114.337464678103771, -22.513751144992955 ], [ 114.335006199558904, -22.517347025780296 ], [ 114.332411138872686, -22.521573643229168 ], [ 114.332137974589926, -22.524286180347602 ], [ 114.335962274548564, -22.525295482890254 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.218604069567434, -22.499051221099506 ], [ 114.219150398132953, -22.497820899101676 ], [ 114.221779604354523, -22.496716754659246 ], [ 114.221438149001074, -22.495644148762707 ], [ 114.225160012353712, -22.495328674857635 ], [ 114.225569758777851, -22.496906037189522 ], [ 114.225364885565781, -22.497978633302637 ], [ 114.225569758777851, -22.499366686515867 ], [ 114.223589317727829, -22.4993351400066 ], [ 114.220550365082104, -22.499524418954252 ], [ 114.218604069567434, -22.499051221099506 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.161102988046309, -22.526620181287313 ], [ 114.158234763077317, -22.527440226310173 ], [ 114.154273880977286, -22.526998664210463 ], [ 114.150312998877254, -22.524916995300835 ], [ 114.147513064978952, -22.522204470566962 ], [ 114.14471313108065, -22.519996562284938 ], [ 114.143074145384091, -22.515959153053217 ], [ 114.136518202597813, -22.505928204054271 ], [ 114.134879216901268, -22.503278397905643 ], [ 114.131669536578812, -22.502458209522494 ], [ 114.12880131160982, -22.507947069897106 ], [ 114.122381950964964, -22.511353839164833 ], [ 114.117806449228709, -22.516274579896773 ], [ 114.11616746353215, -22.522015222668024 ], [ 114.11678208316836, -22.52472775111729 ], [ 114.122723406318414, -22.522456800695682 ], [ 114.125045302721858, -22.517473195337125 ], [ 114.129552513387424, -22.513624972038468 ], [ 114.136381620456433, -22.50914575754463 ], [ 114.13870351685992, -22.513751144992952 ], [ 114.140069338273705, -22.518861052860196 ], [ 114.139454718637509, -22.523781526311225 ], [ 114.141844906111658, -22.526115535776718 ], [ 114.142937563242711, -22.535577332300196 ], [ 114.142732690030641, -22.538794195444311 ], [ 114.14423509358582, -22.540244913123868 ], [ 114.148127684615162, -22.539740317399172 ], [ 114.150859327442774, -22.535892714353526 ], [ 114.147649647120332, -22.530404963852952 ], [ 114.148400848897921, -22.526430939436871 ], [ 114.151951984573813, -22.529584936430922 ], [ 114.154000716694526, -22.532486550058277 ], [ 114.159190838066991, -22.534631181818185 ], [ 114.163220011237712, -22.534946566032517 ], [ 114.162741973742882, -22.530089569266796 ], [ 114.161102988046309, -22.526620181287313 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.687094666385519, -24.933040092452405 ], [ 113.689143398506218, -24.93232793661149 ], [ 113.69221649668728, -24.934557280304528 ], [ 113.692899407394179, -24.935857712168907 ], [ 113.692182351151942, -24.936538885287799 ], [ 113.690201910101905, -24.935579049353205 ], [ 113.68938241725364, -24.935733862106385 ], [ 113.690167764566581, -24.936910432674694 ], [ 113.68856292440536, -24.937715448169769 ], [ 113.687948304769137, -24.93675562139963 ], [ 113.687743431557067, -24.935052684537631 ], [ 113.687811722627757, -24.934495354635366 ], [ 113.687094666385519, -24.933040092452405 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.680402141457876, -24.938365649153326 ], [ 113.679616794144948, -24.939139693469734 ], [ 113.680914324488072, -24.940501999656124 ], [ 113.682655746790658, -24.941152185934889 ], [ 113.683645967315655, -24.941461797242582 ], [ 113.684875206588103, -24.943350409369973 ], [ 113.685967863719114, -24.944031541065854 ], [ 113.685523971759636, -24.941864290779353 ], [ 113.684567896769977, -24.940285270134034 ], [ 113.6834410941036, -24.939727963898065 ], [ 113.680402141457876, -24.938365649153326 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.622252294765076, -26.540267484017473 ], [ 113.628125326844426, -26.530491932309086 ], [ 113.628535073268566, -26.519371229882704 ], [ 113.624983937592674, -26.514238234665775 ], [ 113.621023055492643, -26.499082338890531 ], [ 113.620886473351263, -26.493215003805162 ], [ 113.615286605554658, -26.492481565860338 ], [ 113.615013441271913, -26.496759887900804 ], [ 113.614603694847773, -26.500426894328022 ], [ 113.614330530564999, -26.507149435529712 ], [ 113.616925591251231, -26.511304991531691 ], [ 113.613237873433974, -26.52022670677793 ], [ 113.613647619858099, -26.532447109277161 ], [ 113.616106098402938, -26.54002310537555 ], [ 113.622252294765076, -26.540267484017473 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.415227913967641, -26.123982745883882 ], [ 113.417447373765071, -26.123308282417849 ], [ 113.418505885360773, -26.121806054341018 ], [ 113.416491298775398, -26.11711529951171 ], [ 113.411676778291749, -26.113834725101746 ], [ 113.403789159627038, -26.106721387699505 ], [ 113.40180871857703, -26.105402919860616 ], [ 113.399077075749403, -26.106353444681918 ], [ 113.397574672194224, -26.108285132606362 ], [ 113.415227913967641, -26.123982745883882 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.017905622964548, -33.165632470010308 ], [ 138.011759426602424, -33.165518138035118 ], [ 138.009164365916178, -33.168033407047098 ], [ 138.010257023047217, -33.17672196289697 ], [ 138.012169173026564, -33.181751785760959 ], [ 138.020500683650766, -33.184037973435423 ], [ 138.02732979071979, -33.182666267989376 ], [ 138.032383329950875, -33.174092622407336 ], [ 138.039622183444038, -33.173978301466171 ], [ 138.043856229826815, -33.170319952616019 ], [ 138.039758765585418, -33.167576090776237 ], [ 138.02760295500255, -33.168090571413217 ], [ 138.020500683650766, -33.175464462070039 ], [ 138.018247078317984, -33.175978896407429 ], [ 138.018861697954179, -33.170605766618472 ], [ 138.017905622964548, -33.165632470010308 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.948931641567441, -33.153683972343686 ], [ 137.944356139831172, -33.156599784617583 ], [ 137.947634111224289, -33.159744179409238 ], [ 137.95316568795019, -33.162774125901471 ], [ 137.952004739748503, -33.166489955071711 ], [ 137.948180439789809, -33.169348178036842 ], [ 137.949136514779468, -33.171749013308826 ], [ 137.951731575465715, -33.171005904656234 ], [ 137.957946062898543, -33.166775781561753 ], [ 137.959858212877833, -33.164546310226143 ], [ 137.958082645039923, -33.162088109449599 ], [ 137.955965621848492, -33.158429264393739 ], [ 137.95248277724329, -33.156771299967851 ], [ 137.948931641567441, -33.153683972343686 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.970443328834847, -33.145336209114653 ], [ 137.970579910976227, -33.143220553918724 ], [ 137.973038389521065, -33.143163373340585 ], [ 137.975838323419367, -33.146079535316289 ], [ 137.978979712671105, -33.148080766865256 ], [ 137.983213759053911, -33.149567366465071 ], [ 137.980482116226312, -33.15254049008955 ], [ 137.975155412712468, -33.150310656818192 ], [ 137.97256035202625, -33.146880033413709 ], [ 137.970443328834847, -33.145336209114653 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.922024959715486, -33.175178663911105 ], [ 137.917995786544765, -33.172663599924988 ], [ 137.912600791960244, -33.172777922580998 ], [ 137.912942247313708, -33.177922287763039 ], [ 137.911713008041289, -33.183409277771851 ], [ 137.908776492001607, -33.186038338713793 ], [ 137.910688641980897, -33.191924862962082 ], [ 137.913830031232663, -33.195582309822932 ], [ 137.917108002625781, -33.193982195615881 ], [ 137.914854397292999, -33.18889592416329 ], [ 137.917927495474089, -33.185638269312136 ], [ 137.920932302584447, -33.189181677581203 ], [ 137.92899064892589, -33.191810565286509 ], [ 137.932200329248332, -33.188210112156924 ], [ 137.926190715027587, -33.1825519582328 ], [ 137.922571288281006, -33.177693655722777 ], [ 137.922024959715486, -33.175178663911105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.89136226897557, -33.177465023086029 ], [ 137.887879424370368, -33.179637009051071 ], [ 137.893615874308352, -33.185981186053986 ], [ 137.899215742104957, -33.191810565286509 ], [ 137.902971750992918, -33.191067626759597 ], [ 137.900240108165292, -33.187295687796009 ], [ 137.894093911803196, -33.179236910418425 ], [ 137.89136226897557, -33.177465023086029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.85373388902525, -33.193696457859531 ], [ 137.855372874721809, -33.190781879494295 ], [ 137.861723944296017, -33.192382052172754 ], [ 137.864319004982235, -33.194725109419338 ], [ 137.86534337104257, -33.197010958516294 ], [ 137.867801849587437, -33.199182459890778 ], [ 137.866094572820174, -33.20055390669657 ], [ 137.85926546575115, -33.195468016920579 ], [ 137.856124076499441, -33.194953697014057 ], [ 137.85373388902525, -33.193696457859531 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.873333426313366, -33.18106591782594 ], [ 137.872377351323678, -33.183523586409876 ], [ 137.87490412093922, -33.184095127362951 ], [ 137.876952853059947, -33.184780971584971 ], [ 137.878455256615098, -33.183294968984676 ], [ 137.87517728522198, -33.181866096561485 ], [ 137.873333426313366, -33.18106591782594 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.82580284111296, -33.252881399545139 ], [ 137.82566625897158, -33.247627214155621 ], [ 137.839324473109627, -33.251967650865531 ], [ 137.849568133713149, -33.260076836483009 ], [ 137.857626480054591, -33.268870454600233 ], [ 137.860084958599458, -33.274808501042806 ], [ 137.859811794316698, -33.279261770860586 ], [ 137.849158387289009, -33.273438218474922 ], [ 137.837822069554448, -33.269784026490392 ], [ 137.842192698078605, -33.265672877721464 ], [ 137.830446633919905, -33.256878937670436 ], [ 137.82580284111296, -33.252881399545139 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.013978886399855, -34.28531818614254 ], [ 138.011827717673128, -34.285148910982578 ], [ 138.011759426602424, -34.288816463109583 ], [ 138.009266802522234, -34.291242601929348 ], [ 138.005647375775652, -34.291919651422695 ], [ 138.00284744187735, -34.293442992834585 ], [ 138.002232822241126, -34.295389444443188 ], [ 138.002369404382506, -34.297448684730341 ], [ 138.003393770442869, -34.297194808518945 ], [ 138.004657155250641, -34.294148234134447 ], [ 138.007661962360999, -34.293527622103149 ], [ 138.010496041794653, -34.292371014720558 ], [ 138.013500848905011, -34.290114173983035 ], [ 138.01418375961191, -34.287434096873106 ], [ 138.013978886399855, -34.28531818614254 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.14340753812553, -34.19373290600376 ], [ 138.142058789479393, -34.193139796547257 ], [ 138.143424610893192, -34.190767317006653 ], [ 138.144602631862597, -34.188818444598233 ], [ 138.144687995700963, -34.187109613621992 ], [ 138.144466049721217, -34.186205755140257 ], [ 138.145353833640172, -34.186403475010735 ], [ 138.145848943902678, -34.188295913180944 ], [ 138.145148960428116, -34.190795561203245 ], [ 138.144278249276823, -34.191784102125204 ], [ 138.144124594367753, -34.192292490087418 ], [ 138.14340753812553, -34.19373290600376 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.40993051426176, -34.61280211938822 ], [ 138.409145166948804, -34.610778743607732 ], [ 138.411193899069531, -34.60968272780277 ], [ 138.410306115150547, -34.608671008063801 ], [ 138.410989025857447, -34.606703739946731 ], [ 138.412115828523838, -34.605944924073746 ], [ 138.413686523149721, -34.607968417658441 ], [ 138.414574307068705, -34.610272891957187 ], [ 138.414608452604028, -34.612324382331792 ], [ 138.412184119594542, -34.612408689070939 ], [ 138.411432917816938, -34.612211973213086 ], [ 138.40993051426176, -34.61280211938822 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.633722605452675, -37.999963576131769 ], [ 144.633859187594055, -38.001201290557376 ], [ 144.635771337573374, -38.001174383944168 ], [ 144.637871287997115, -38.001268557047219 ], [ 144.639356618784632, -38.001389636573428 ], [ 144.640637076360065, -38.001672154690461 ], [ 144.643112627672593, -38.001564528869459 ], [ 144.645485742379066, -38.001403089841773 ], [ 144.647141800843286, -38.001470356146513 ], [ 144.650266117327362, -38.00108021072019 ], [ 144.647824711550214, -38.000407541317557 ], [ 144.637017649613483, -37.999977029661736 ], [ 144.634081133573829, -37.999654144261314 ], [ 144.633722605452675, -37.999963576131769 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.797245574220398, -37.906812797803425 ], [ 144.797621175109214, -37.905849643447617 ], [ 144.798116285371719, -37.904771973280113 ], [ 144.798577250098845, -37.904017594772235 ], [ 144.798619932018028, -37.903411392152982 ], [ 144.798210185593916, -37.903620195841178 ], [ 144.797373619977947, -37.904441933634494 ], [ 144.796963873553807, -37.905351222956881 ], [ 144.796750463957892, -37.905997821861398 ], [ 144.796861436947751, -37.906711768218095 ], [ 144.796955337169948, -37.906981180137379 ], [ 144.797245574220398, -37.906812797803425 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.946569042132353, -14.501325963607673 ], [ 143.935915635104692, -14.499210259321902 ], [ 143.934276649408105, -14.507937409253749 ], [ 143.936735127952971, -14.521688583767467 ], [ 143.945476385001314, -14.524332942428728 ], [ 143.955310299180695, -14.521424146162563 ], [ 143.956949284877254, -14.532794677647457 ], [ 143.954490806332416, -14.543371391112705 ], [ 143.956402956311734, -14.561350641430234 ], [ 143.964324720511826, -14.584615731015997 ], [ 143.975251291822246, -14.600212540003056 ], [ 143.996284941594837, -14.599948196518168 ], [ 143.990002163091333, -14.591489037295686 ], [ 143.98262672745679, -14.59016726429301 ], [ 143.977709770367085, -14.579328426342046 ], [ 143.973885470408419, -14.574569743627977 ], [ 143.971973320429129, -14.563994525273385 ], [ 143.988636341677534, -14.555005190916161 ], [ 143.985631534567148, -14.541520502808993 ], [ 143.975524456105006, -14.530150420181556 ], [ 143.969788006167022, -14.528299421135658 ], [ 143.967875856187703, -14.51719310149541 ], [ 143.961593077684199, -14.509259674696704 ], [ 143.946569042132353, -14.501325963607673 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.231397246098027, -15.139595541980189 ], [ 145.230236297896283, -15.137288299673472 ], [ 145.22689003543249, -15.137222378095371 ], [ 145.224568139029003, -15.132607816646541 ], [ 145.221085294423801, -15.127531682966062 ], [ 145.218148778384148, -15.124499129507303 ], [ 145.212275746304783, -15.122982836509031 ], [ 145.214187896284102, -15.119422801633998 ], [ 145.213436694506498, -15.116126419756519 ], [ 145.21125138024442, -15.112698128259819 ], [ 145.209270939194397, -15.114873781210148 ], [ 145.209748976689241, -15.118961311255546 ], [ 145.208383155275442, -15.122389501514141 ], [ 145.207631953497838, -15.124499129507303 ], [ 145.208178282063358, -15.128784246732794 ], [ 145.210909924890984, -15.129377563827884 ], [ 145.215963464122041, -15.128190927976609 ], [ 145.218421942666907, -15.131948585376962 ], [ 145.220402383716902, -15.137354221231051 ], [ 145.224773012241087, -15.14170499866262 ], [ 145.229280222906652, -15.14256195943697 ], [ 145.230168006825608, -15.140979875298326 ], [ 145.231397246098027, -15.139595541980189 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "remove" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 150.879546829673416, -23.551269526781933 ], [ 150.856054701355959, -23.550267881007372 ], [ 150.853869387093908, -23.525224256810272 ], [ 150.853323058528389, -23.499674849941584 ], [ 150.863430136990502, -23.484643472328745 ], [ 150.882551636783774, -23.493411984239348 ], [ 150.884463786763121, -23.517710239951438 ], [ 150.882551636783774, -23.544007422008264 ], [ 150.879546829673416, -23.551269526781933 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.001884509080668, -16.89470150999281 ], [ 139.000270196348112, -16.893885472137516 ], [ 138.997681204229849, -16.897965626112647 ], [ 138.998199002653536, -16.902133120836577 ], [ 138.998412213769143, -16.906883369622214 ], [ 138.999265058231629, -16.909156452463634 ], [ 139.002493683696741, -16.910526117350084 ], [ 139.003194234505202, -16.912770014906226 ], [ 139.00365111546725, -16.915159590716158 ], [ 139.005844144085074, -16.915975536490642 ], [ 139.006910199663196, -16.914314500295852 ], [ 139.005174052007419, -16.913556829799866 ], [ 139.004960840891783, -16.911225516857083 ], [ 139.005387263123055, -16.909855857053586 ], [ 139.004138455160103, -16.9090690267074 ], [ 139.001153499541402, -16.907728493367074 ], [ 138.999965609040117, -16.906621089068899 ], [ 139.000239737617335, -16.904027406172489 ], [ 139.000056985232476, -16.899510232800708 ], [ 139.000026526501699, -16.897965626112647 ], [ 139.001884509080668, -16.89470150999281 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.284745333044242, -17.695077808874732 ], [ 140.282430469503225, -17.696238511325621 ], [ 140.284623498121022, -17.699430404380042 ], [ 140.285293590198705, -17.702216010128474 ], [ 140.284257993351389, -17.704595347475127 ], [ 140.286511939430824, -17.705001572650406 ], [ 140.287973958509355, -17.70128747968165 ], [ 140.290106069665569, -17.70105534631951 ], [ 140.288948637895061, -17.696992963895568 ], [ 140.287486618816502, -17.695367985190781 ], [ 140.28584184735314, -17.694845667484305 ], [ 140.284745333044242, -17.695077808874732 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.283574073601756, -20.365884117354909 ], [ 118.282294806908027, -20.363742497259359 ], [ 118.280710952906276, -20.362657398402938 ], [ 118.278396089365231, -20.361800736023259 ], [ 118.276964529017491, -20.362828730308411 ], [ 118.277269116325513, -20.364056603399487 ], [ 118.276355354401431, -20.363685386983388 ], [ 118.27602030836259, -20.365227357017929 ], [ 118.277604162364355, -20.366026890971412 ], [ 118.280345448136629, -20.364827588488087 ], [ 118.281015540214298, -20.366483765656717 ], [ 118.281563797368733, -20.368910889744807 ], [ 118.284761964103083, -20.369853174692345 ], [ 118.284883799026289, -20.37170917366948 ], [ 118.286650405412871, -20.371109545671864 ], [ 118.286772240336077, -20.36839691371194 ], [ 118.285188386334312, -20.367054857111484 ], [ 118.283574073601756, -20.367140520647432 ], [ 118.283574073601756, -20.365884117354909 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.56310146086372, -20.337055420075259 ], [ 118.559141825859328, -20.333913780851848 ], [ 118.557557971857548, -20.334999081619664 ], [ 118.555852282932591, -20.333171202252686 ], [ 118.55426842893084, -20.335627410160878 ], [ 118.555791365470981, -20.338369177545729 ], [ 118.552379987621052, -20.33888325351645 ], [ 118.550186959003213, -20.343281389151311 ], [ 118.55061338123447, -20.348536140330104 ], [ 118.554085676546009, -20.351049219020528 ], [ 118.557740724242379, -20.351563252806947 ], [ 118.558776321089695, -20.348022096470682 ], [ 118.558593568704865, -20.346308604586692 ], [ 118.56316237832533, -20.344138154253979 ], [ 118.564076140249426, -20.338769014559595 ], [ 118.56310146086372, -20.337055420075259 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.573944769029566, -20.342824445820916 ], [ 118.580341102498238, -20.34448085896496 ], [ 118.584239820041006, -20.350021146315932 ], [ 118.582168626346402, -20.354019168397166 ], [ 118.580523854883026, -20.357046173415604 ], [ 118.578269908803634, -20.357674412304917 ], [ 118.576259632570611, -20.356646383700706 ], [ 118.578148073880399, -20.351449023224465 ], [ 118.577721651649171, -20.34893595103825 ], [ 118.574858530953662, -20.347450934620877 ], [ 118.571995410258197, -20.348536140330104 ], [ 118.570289721333211, -20.345623202512186 ], [ 118.570228803871615, -20.342995799728147 ], [ 118.571751740411756, -20.341739199996208 ], [ 118.573944769029566, -20.342824445820916 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.592159090049805, -20.344880680167147 ], [ 118.595387715514931, -20.341510726219916 ], [ 118.601296709290722, -20.343966801613465 ], [ 118.604951756987091, -20.347450934620877 ], [ 118.608180382452218, -20.345280500334781 ], [ 118.613784788919972, -20.344709328350032 ], [ 118.618414516002034, -20.34636572128899 ], [ 118.618719103310056, -20.348364792567004 ], [ 118.614333046074435, -20.3492786451074 ], [ 118.611165338070933, -20.350763643955592 ], [ 118.609337814222741, -20.352934001207551 ], [ 118.601844966445185, -20.352362857519001 ], [ 118.598981845749677, -20.353904940630994 ], [ 118.593560191666739, -20.355618348252563 ], [ 118.591184410664113, -20.353847826716226 ], [ 118.591062575740906, -20.351163448898674 ], [ 118.592159090049805, -20.344880680167147 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.620912131927867, -20.328430039433766 ], [ 118.618780020771652, -20.331628912228069 ], [ 118.620485709696638, -20.334941960716559 ], [ 118.62359250023853, -20.337398140491835 ], [ 118.6272475479349, -20.336484217692448 ], [ 118.628831401936679, -20.331971644674098 ], [ 118.629623328937527, -20.329058394669225 ], [ 118.628709567013445, -20.326487834383641 ], [ 118.625846446317965, -20.326773454302973 ], [ 118.623166078007301, -20.328544286030109 ], [ 118.623105160545691, -20.328658532542047 ], [ 118.620912131927867, -20.328430039433766 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.611591760302133, -20.334085144637481 ], [ 118.608363134837006, -20.336541338025711 ], [ 118.61110442060928, -20.338597655966012 ], [ 118.612383687303009, -20.341510726219916 ], [ 118.616221487384195, -20.343338506972607 ], [ 118.620059287465381, -20.343167153445378 ], [ 118.621947728775169, -20.340539708902501 ], [ 118.618780020771652, -20.339283089200517 ], [ 118.616465157230635, -20.338426297182458 ], [ 118.61475946830565, -20.335570289489926 ], [ 118.611591760302133, -20.334085144637481 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.730904821856427, -17.515020402868281 ], [ 140.729290509123871, -17.515368961802732 ], [ 140.732915098089421, -17.527480969014729 ], [ 140.732793263166229, -17.535555191302407 ], [ 140.734407575898786, -17.536019883803519 ], [ 140.736082806092952, -17.531024377010787 ], [ 140.734438034629591, -17.516385588205821 ], [ 140.730904821856427, -17.515020402868281 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.862319060659061, -17.027042233462684 ], [ 123.871822184669625, -17.020576677495402 ], [ 123.873984754556659, -17.021537787787704 ], [ 123.877883472099455, -17.02203290328481 ], [ 123.881112097564554, -17.023722111005025 ], [ 123.883091915066757, -17.024770577093008 ], [ 123.887599807225584, -17.026110275211643 ], [ 123.871822184669625, -17.035429648788579 ], [ 123.86731429251077, -17.031119496223912 ], [ 123.865121263892959, -17.028644025859979 ], [ 123.862319060659061, -17.027042233462684 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.307635988789514, -11.704286759506973 ], [ 131.306874520519443, -11.703123565611657 ], [ 131.306021676056929, -11.702765658813561 ], [ 131.304376904593596, -11.703093740062839 ], [ 131.30276259186104, -11.702377925926349 ], [ 131.301544242628921, -11.701065595198502 ], [ 131.29895525051063, -11.700439253338256 ], [ 131.297097267931662, -11.701304201248448 ], [ 131.295269744083498, -11.701125246730282 ], [ 131.294965156775447, -11.70264635644461 ], [ 131.29539157900669, -11.703451646436408 ], [ 131.298406993356195, -11.703391995406307 ], [ 131.300204058473582, -11.702974437835399 ], [ 131.301970664860136, -11.704376235757826 ], [ 131.303310849015503, -11.704913092655051 ], [ 131.304590115709203, -11.705151695385965 ], [ 131.305930299864542, -11.70512187005586 ], [ 131.30702681417344, -11.705181520712854 ], [ 131.307635988789514, -11.704286759506973 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.697060271111724, -11.792794410868147 ], [ 130.696542472688066, -11.791840302285534 ], [ 130.697182106034916, -11.789902259016047 ], [ 130.696664307611286, -11.788441263505792 ], [ 130.695445958379139, -11.787516956208323 ], [ 130.694562655185877, -11.78695044374601 ], [ 130.694440820262656, -11.786175214271863 ], [ 130.694349444070241, -11.784773832360665 ], [ 130.695476417109973, -11.783104091385518 ], [ 130.698705042575085, -11.782299034074097 ], [ 130.700258437846031, -11.782627020670994 ], [ 130.699771098153178, -11.78405823032864 ], [ 130.696572931418871, -11.785161449349449 ], [ 130.696237885380043, -11.786354113575547 ], [ 130.698583207651893, -11.78709952608626 ], [ 130.69937513465274, -11.788232549226755 ], [ 130.699832015614788, -11.790528397568684 ], [ 130.698826877498306, -11.792168277484938 ], [ 130.698400455267034, -11.79261551576157 ], [ 130.697060271111724, -11.792794410868147 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.722097347831806, -11.800814754972071 ], [ 130.720178447791227, -11.800755125026168 ], [ 130.72054395256086, -11.799681783782836 ], [ 130.721853677985393, -11.799353817565073 ], [ 130.721975512908585, -11.798041948772447 ], [ 130.722767439909489, -11.79756490401955 ], [ 130.724259917718825, -11.797892872376286 ], [ 130.725539184412554, -11.798518992695721 ], [ 130.725569643143359, -11.797982318223706 ], [ 130.726544322529065, -11.797505273367106 ], [ 130.727366708260746, -11.798340101321719 ], [ 130.726970744760308, -11.799771229046884 ], [ 130.725843771720577, -11.800695495067298 ], [ 130.724716798680873, -11.800725310048353 ], [ 130.723924871679998, -11.80009919476551 ], [ 130.723254779602314, -11.801023459680627 ], [ 130.722341017678247, -11.801023459680627 ], [ 130.722097347831806, -11.800814754972071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.009901895189699, -11.894596568850366 ], [ 131.010815657113767, -11.893344767144086 ], [ 131.010054188843696, -11.892987108455712 ], [ 131.009658225343259, -11.891914129569427 ], [ 131.00825712372631, -11.891645884186673 ], [ 131.007251985609798, -11.892420814570826 ], [ 131.005180791915222, -11.890781536154407 ], [ 131.003170515682228, -11.889559522182577 ], [ 131.002195836296522, -11.888605751367317 ], [ 130.999880972755506, -11.8886653621412 ], [ 130.998997669562186, -11.889291274478639 ], [ 130.999363174331819, -11.890334458508622 ], [ 131.002744093450957, -11.891467053784583 ], [ 131.004967580799615, -11.892897693710147 ], [ 131.005211250646028, -11.894835006617486 ], [ 131.00621638876251, -11.895580123292588 ], [ 131.008470334841945, -11.895162858206003 ], [ 131.009901895189699, -11.894596568850366 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.460700520079911, -11.624581775154846 ], [ 130.460365474041112, -11.622761895914788 ], [ 130.457380518422383, -11.622821564275124 ], [ 130.455431159651027, -11.623149740028504 ], [ 130.453816846918443, -11.624283435110685 ], [ 130.453481800879587, -11.626162972053413 ], [ 130.451380148454206, -11.625864633703085 ], [ 130.450009505568062, -11.625625962792704 ], [ 130.44888253252833, -11.627087818908239 ], [ 130.448912991259164, -11.629176171474375 ], [ 130.452202534185858, -11.628251331556044 ], [ 130.454365104072906, -11.630190508497339 ], [ 130.456527673959897, -11.629564006654848 ], [ 130.45701501365275, -11.627445823317707 ], [ 130.456344921575095, -11.625685630539474 ], [ 130.460091345463866, -11.625387291677781 ], [ 130.460700520079911, -11.624581775154846 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.736230198924204, -11.381120316034558 ], [ 130.734646344922453, -11.381389054089656 ], [ 130.734159005229628, -11.38264316165848 ], [ 130.733763041729162, -11.383359792073806 ], [ 130.733062490920702, -11.384972203910035 ], [ 130.733549830613555, -11.387778973087466 ], [ 130.733245243305532, -11.388555308609252 ], [ 130.730899921033711, -11.388346295407967 ], [ 130.730047076571196, -11.389809384591613 ], [ 130.731509095649756, -11.390914161232864 ], [ 130.733153867113117, -11.391929357605799 ], [ 130.733671665536775, -11.393870164113261 ], [ 130.734372216345236, -11.394109031690896 ], [ 130.735072767153724, -11.392436954433162 ], [ 130.735468730654134, -11.391600912117029 ], [ 130.735956070346987, -11.390316985202945 ], [ 130.736016987808597, -11.389242065189245 ], [ 130.737418089425546, -11.388674744655317 ], [ 130.736778456078696, -11.388047704854007 ], [ 130.735346895730942, -11.387181790475147 ], [ 130.735681941769769, -11.385360375765313 ], [ 130.736991667194303, -11.383747966128627 ], [ 130.736961208463498, -11.382434144114097 ], [ 130.736230198924204, -11.381120316034558 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.112882864034646, -11.324440786203837 ], [ 131.108435889337414, -11.324261591771974 ], [ 131.104171667024985, -11.32754680518841 ], [ 131.101125793944703, -11.32563541288126 ], [ 131.100516619328602, -11.322230713700787 ], [ 131.098384508172387, -11.320259553553925 ], [ 131.096191479554591, -11.321036072808262 ], [ 131.095338635092105, -11.323783739404989 ], [ 131.093389276320721, -11.327009227392974 ], [ 131.091622669934139, -11.330115218486819 ], [ 131.093511111243913, -11.331787661256584 ], [ 131.090769825471654, -11.336028454422152 ], [ 131.093572028705523, -11.338118963110452 ], [ 131.098689095480438, -11.33567007996872 ], [ 131.103075152716059, -11.337461947741998 ], [ 131.105694603565155, -11.340328912808271 ], [ 131.107522127413347, -11.346122483556952 ], [ 131.108618641722217, -11.349228266903665 ], [ 131.11209093703377, -11.34958662434639 ], [ 131.112456441803431, -11.343255576637763 ], [ 131.112578276726623, -11.339970543748221 ], [ 131.115014975190888, -11.336267370474784 ], [ 131.114527635498035, -11.332086310721772 ], [ 131.113065616419476, -11.329398454305343 ], [ 131.112882864034646, -11.324440786203837 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.271024594364036, -11.19951513897265 ], [ 131.268374684784192, -11.19891756437425 ], [ 131.266455784743613, -11.198618776612316 ], [ 131.263988627548571, -11.197931563589202 ], [ 131.262435232277596, -11.198409624995415 ], [ 131.262191562431155, -11.199843804475783 ], [ 131.263196700547667, -11.201337733875963 ], [ 131.261155965583868, -11.202771898843062 ], [ 131.259785322697724, -11.203757883133724 ], [ 131.259572111582116, -11.205371304723535 ], [ 131.258658349657992, -11.206775571744338 ], [ 131.260181286198161, -11.209584085328112 ], [ 131.261856516392356, -11.210689556596607 ], [ 131.263714498971325, -11.211227351901419 ], [ 131.264628260895449, -11.210928576855601 ], [ 131.265298352973076, -11.20940481931869 ], [ 131.264871930741833, -11.208090198519983 ], [ 131.265877068858345, -11.206536548052121 ], [ 131.266425326012808, -11.205281670426878 ], [ 131.265542022819517, -11.203668248337079 ], [ 131.264536884703006, -11.20342922207691 ], [ 131.266547160936, -11.202054817248193 ], [ 131.266973583167271, -11.200889555865807 ], [ 131.268892483207821, -11.20169627578424 ], [ 131.271420557864502, -11.200680405890161 ], [ 131.271024594364036, -11.19951513897265 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.281624232683498, -11.20229384464397 ], [ 131.279583497719727, -11.20229384464397 ], [ 131.279248451680871, -11.203040803982892 ], [ 131.278182396102778, -11.203548735231683 ], [ 131.277024964332242, -11.204116422042542 ], [ 131.275593403984487, -11.204893254820368 ], [ 131.276446248446973, -11.205849353836548 ], [ 131.278822029449657, -11.205699963573613 ], [ 131.280558177105377, -11.206028622050209 ], [ 131.281715608875942, -11.206357280153311 ], [ 131.281624232683498, -11.208149954140502 ], [ 131.283116710492862, -11.207910931584328 ], [ 131.284243683532594, -11.206656059922922 ], [ 131.283360380339275, -11.205431060905877 ], [ 131.282142031107156, -11.203937152643682 ], [ 131.281624232683498, -11.20229384464397 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.289223686018801, -11.72428398141539 ], [ 131.288934328076181, -11.723225253533819 ], [ 131.28753322645926, -11.724000660267471 ], [ 131.286710840727551, -11.725104119941397 ], [ 131.286360565323321, -11.72598390219691 ], [ 131.284761481956167, -11.725700582793591 ], [ 131.282827352550157, -11.726252309784448 ], [ 131.282050654914684, -11.727176822810438 ], [ 131.282568453338342, -11.728071509887137 ], [ 131.283832490666668, -11.728250446954444 ], [ 131.28541634466842, -11.728205712698493 ], [ 131.286512858977346, -11.728653054931698 ], [ 131.287609373286244, -11.72845920671967 ], [ 131.288020566152085, -11.727967129877632 ], [ 131.288157630440708, -11.726923327611441 ], [ 131.288188089171484, -11.725551467201365 ], [ 131.289223686018801, -11.72428398141539 ] ] ] ] } }, -{ "type": "Feature", "properties": { "type": "add" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.041518057763028, -12.123146909440614 ], [ 131.041670351417054, -12.121657932554783 ], [ 131.041335305378226, -12.119037313051027 ], [ 131.040817506954539, -12.116178426056301 ], [ 131.038411267221107, -12.114361825699547 ], [ 131.037284294181404, -12.112426090402566 ], [ 131.03591365129526, -12.110490341070378 ], [ 131.033111448061391, -12.109537351628749 ], [ 131.032867778214978, -12.110996615327878 ], [ 131.034268879831927, -12.112545212979986 ], [ 131.036400990988113, -12.114212923482734 ], [ 131.037832551335867, -12.116714469700698 ], [ 131.039660075184059, -12.117816333810712 ], [ 131.039781910107251, -12.121300576865499 ], [ 131.03972099264567, -12.122908673697403 ], [ 131.040969800608593, -12.123891394766675 ], [ 131.041670351417054, -12.123831836017061 ], [ 131.041518057763028, -12.123146909440614 ] ] ] ] } } -] -} diff --git a/notebooks/DEACoastlines_generation_CLI.ipynb b/notebooks/DEACoastlines_generation_CLI.ipynb index d069b5b..2bd0084 100644 --- a/notebooks/DEACoastlines_generation_CLI.ipynb +++ b/notebooks/DEACoastlines_generation_CLI.ipynb @@ -89,7 +89,7 @@ "outputs": [], "source": [ "config_path = 'configs/dea_coastlines_config_development.yaml'\n", - "study_area = 3\n", + "study_area = 2\n", "raster_version = 'development'\n", "vector_version = 'development'\n", "continental_version = 'development'" @@ -184,7 +184,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 6, "id": "47397eb8-ddec-46c6-9f7c-431a50bb7eae", "metadata": {}, "outputs": [ @@ -192,22 +192,22 @@ "name": "stdout", "output_type": "stream", "text": [ - "\n", - "2023-01-10 00:48:31 INFO Study area 3: Loaded study area grid\n", - "2023-01-10 00:48:40 INFO Study area 3: Loaded virtual product\n", + "\n", + "2023-01-11 23:15:05 INFO Study area 2: Loaded study area grid\n", + "2023-01-11 23:15:16 INFO Study area 2: Loaded virtual product\n", "Creating reduced resolution tide modelling array\n", "Modelling tides using FES2014 tide model\n", "Reprojecting tides into original array\n", - "100%|██████████████████████████████████████| 1112/1112 [00:04<00:00, 271.95it/s]\n", - "2023-01-10 00:49:05 INFO Study area 3: Finished modelling tide heights\n", - "2023-01-10 00:49:05 INFO Study area 3: Calculating low and high tide cutoffs for each pixel\n", - "2023-01-10 00:49:05 INFO Study area 3: Started exporting raster data\n", - "2023-01-10 00:51:35 INFO Study area 3: Completed exporting raster data\n" + "100%|██████████████████████████████████████| 1610/1610 [00:10<00:00, 157.90it/s]\n", + "2023-01-11 23:15:53 INFO Study area 2: Finished modelling tide heights\n", + "2023-01-11 23:15:53 INFO Study area 2: Calculating low and high tide cutoffs for each pixel\n", + "2023-01-11 23:15:53 INFO Study area 2: Started exporting raster data\n", + "2023-01-11 23:19:42 INFO Study area 2: Completed exporting raster data\n" ] } ], "source": [ - "!python -m coastlines.raster --config_path {config_path} --study_area {study_area} --raster_version {raster_version} --start_year 1988 --end_year 2021 --tide_centre 1.0" + "!python -m coastlines.raster --config_path {config_path} --study_area {study_area} --raster_version {raster_version} --start_year 1988 --end_year 2021" ] }, { @@ -421,7 +421,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 11, "id": "22e3dca9-6a5e-4e6a-ac2c-c3f3b1ae904b", "metadata": {}, "outputs": [ @@ -429,24 +429,25 @@ "name": "stdout", "output_type": "stream", "text": [ - "2023-01-10 01:58:41 INFO Writing data to data/processed/development\n", + "True\n", + "2023-01-10 03:28:15 INFO Writing data to data/processed/development\n", "Warning 1: A geometry of type MULTILINESTRING is inserted into layer shorelines_annual of geometry type LINESTRING, which is not normally allowed by the GeoPackage specification, but the driver will however do it. To create a conformant GeoPackage, if using ogr2ogr, the -nlt option can be used to override the layer geometry type. This warning will no longer be emitted for this combination of layer and feature geometry type.\n", - "2023-01-10 01:58:42 INFO Merging annual shorelines complete\n", - "2023-01-10 01:58:42 INFO Merging rates of change points complete\n", - "2023-01-10 01:58:42 INFO Generating continental hotspots\n", - "2023-01-10 01:58:42 INFO Generating continental hotspots\n", - "2023-01-10 01:58:42 INFO Calculating 10000 m hotspots\n", - "2023-01-10 01:58:43 INFO Calculating 5000 m hotspots\n", - "2023-01-10 01:58:43 INFO Calculating 1000 m hotspots\n", - "2023-01-10 01:58:43 INFO Writing hotspots complete\n", - "2023-01-10 01:58:46 INFO Writing rates of change points to zipped shapefiles complete\n", - "2023-01-10 01:58:46 INFO Writing annual shorelines to zipped shapefiles complete\n", - "2023-01-10 01:58:46 INFO Writing styles to GeoPackage file complete\n" + "2023-01-10 03:28:15 INFO Merging annual shorelines complete\n", + "2023-01-10 03:28:16 INFO Merging rates of change points complete\n", + "2023-01-10 03:28:16 INFO Generating continental hotspots\n", + "2023-01-10 03:28:16 INFO Generating continental hotspots\n", + "2023-01-10 03:28:16 INFO Calculating 10000 m hotspots\n", + "2023-01-10 03:28:16 INFO Calculating 5000 m hotspots\n", + "2023-01-10 03:28:17 INFO Calculating 1000 m hotspots\n", + "2023-01-10 03:28:17 INFO Writing hotspots complete\n", + "^C\n", + "\n", + "Aborted!\n" ] } ], "source": [ - "!python -m coastlines.continental --vector_version {vector_version} --continental_version {continental_version} --shorelines True --ratesofchange True --hotspots True --baseline_year 2021" + "!python -m coastlines.continental --vector_version {vector_version} --continental_version {continental_version} --shorelines True --ratesofchange True --hotspots 1 --baseline_year 2021" ] }, { diff --git a/notebooks/DEACoastlines_generation_vector.ipynb b/notebooks/DEACoastlines_generation_vector.ipynb index 89f8a47..8148070 100644 --- a/notebooks/DEACoastlines_generation_vector.ipynb +++ b/notebooks/DEACoastlines_generation_vector.ipynb @@ -113,11 +113,11 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 35, "metadata": {}, "outputs": [], "source": [ - "study_area = 3\n", + "study_area = 2\n", "raster_version = 'development'\n", "vector_version = 'development'\n", "water_index = \"mndwi\"\n", @@ -143,7 +143,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 36, "metadata": {}, "outputs": [ { @@ -151,18 +151,18 @@ "output_type": "stream", "text": [ "\n", - "Dimensions: (year: 34, y: 657, x: 729)\n", + "Dimensions: (year: 34, y: 729, x: 712)\n", "Coordinates:\n", " * year (year) int64 1988 1989 1990 1991 1992 ... 2017 2018 2019 2020 2021\n", - " * y (y) float64 -1.279e+06 -1.279e+06 ... -1.299e+06 -1.299e+06\n", - " * x (x) float64 2.341e+05 2.341e+05 2.341e+05 ... 2.559e+05 2.559e+05\n", + " * y (y) float64 -1.895e+06 -1.895e+06 ... -1.917e+06 -1.917e+06\n", + " * x (x) float64 4.042e+05 4.042e+05 4.042e+05 ... 4.255e+05 4.255e+05\n", "Data variables:\n", - " mndwi (year, y, x) float32 0.6502 0.6313 0.6682 ... -0.5769 -0.5986\n", - " count (year, y, x) int16 10 10 10 10 10 10 10 10 ... 16 16 16 16 16 16 16\n", - " stdev (year, y, x) float32 0.1136 0.108 0.1018 ... 0.1232 0.121 0.1252\n", + " mndwi (year, y, x) float32 0.2759 0.2759 0.2759 ... -0.5615 -0.5664\n", + " count (year, y, x) int16 7 7 7 7 7 7 7 7 7 ... 15 15 15 15 15 15 15 16 16\n", + " stdev (year, y, x) float32 0.1667 0.196 0.1673 ... 0.02344 0.02143\n", "Attributes:\n", - " transform: (30.0, 0.0, 234045.0, 0.0, -30.0, -1278915.0)\n", - " crs: +init=epsg:32653\n", + " transform: (30.0, 0.0, 404175.0, 0.0, -30.0, -1894725.0)\n", + " crs: +init=epsg:32651\n", " res: (30.0, 30.0)\n", " is_tiled: 1\n", " nodatavals: (nan,)\n", @@ -197,7 +197,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 37, "metadata": {}, "outputs": [], "source": [ @@ -213,10 +213,10 @@ "gridcell_gdf.index = gridcell_gdf.index.astype(int).astype(str)\n", "gridcell_gdf = gridcell_gdf.loc[[str(study_area)]]\n", "\n", - "# # Coastal mask modifications\n", - "# modifications_gdf = gpd.read_file(\n", - "# config[\"Input files\"][\"modifications_path\"], bbox=bbox\n", - "# ).to_crs(str(yearly_ds.odc.crs))\n", + "# Coastal mask modifications\n", + "modifications_gdf = gpd.read_file(\n", + " config[\"Input files\"][\"modifications_path\"], bbox=bbox\n", + ").to_crs(str(yearly_ds.odc.crs))\n", "\n", "# Geomorphology dataset\n", "geomorphology_gdf = gpd.read_file(\n", @@ -276,7 +276,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 58, "metadata": {}, "outputs": [], "source": [ @@ -286,14 +286,14 @@ " gapfill_ds,\n", " water_index,\n", " index_threshold,\n", - " buffer_pixels=33,\n", - " mask_modifications=None, # modifications_gdf,\n", + " buffer_pixels=50,\n", + " mask_modifications=modifications_gdf, \n", ")" ] }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 59, "metadata": {}, "outputs": [ { @@ -318,7 +318,39 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 60, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 60, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAANIAAAEDCAYAAABAjFp8AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAAAcFklEQVR4nO3de5xVdb3/8debYWYEAeUqKJdBQQVUEOeHYIcyUVGkSAuPPU5H6yh0yk5aWWGWF1KPZnX6WZlxxH5amVmmZqCgRkJeUFDUAUQRUBHkjlyGywx8fn/sNTMbmD179t5rz5q91+f5eMxj1v6u73fvD5v9nnXda8nMcM7lpk3UBThXDDxIzoXAg+RcCDxIzoXAg+RcCDxIzoWg6IIk6V5J6yVVNbP/xZKWSFos6YF81+eKk4rtOJKkjwM7gPvN7KQ0fQcCDwFnmdkWST3MbH1L1OmKS9EtkcxsLrA5uU3ScZKelLRQ0jxJJwazJgG/NLMtwVgPkctK0QUphWnAf5nZacA1wF1B+/HA8ZKek/SipPMiq9AVtLZRF5BvkjoAZwB/klTXXB78bgsMBM4EegNzJZ1sZltbuExX4Io+SCSWulvNbFgj81YD882sBlgp6S0SwXq5BetzRaDoV+3MbBuJkEwEUMLQYPajJJZGSOpGYlVvRQRlugJXdEGS9AfgBeAESaslXQ78G3C5pNeAxcCEoPssYJOkJcAc4NtmtimKul1hK7rd385FoeiWSM5Foah2NnTr1s0qKiqiLsMVsIULF240s+6ZjiuqIFVUVLBgwYKoy3AFTNK72YzzVTvnQuBBci4EHiTnQuBBci4EHiTnQuBBci4EHiTnQpDTcaTgRNAbgUHACDNr9CCOpG8AVwAGvAF8ycx2SzoL+DFQBiwELjezWklnAo8BK4On+IuZTc2lVpcfNfv288grq9lcvZcvntGfshLx2Ksf8J0/v06bNvCtMQM5odcRfPzEHiR9jYV//dU85r+7jWFHd2DCqT25e+4qBvfsSJ+uHXnzw210PKyUdqVtqN67n/Gn9KLDYaW8u6maHp3KeeXdzezcvY8VG3ewfXcN5w7pxUMvrcJIfMC2V++jTQmUtGlDG+1nzOCe9OrUjne37GTjjhoenDSKNm2U8t+UjZzOtZM0CNgP/Bq4prEgSToG+Ccw2Mx2SXoImAncD7wLjDGztyRNBd41s+lBkK4xs/GZ1FNZWWl+QLZlvLF6K99/5A1e+2BbfZtIfJAbc8Xo/nz/gsHsrall8A2zqN3fImU26t9H9OGHF53S6DxJC82sMtPnzGmJZGZLgxdvzuu0k1QDtAfWAF2BvWb2VtDnKeBaYHouNbn8W7zmIz71i+cOaW/qT/I981ay7qNdPP76h/krrJmeXPJhyiBlK+/bSGb2AYnVt/eAtcBHZjYb2Ai0lVSX/s8BfZKGjpL0mqQnJA3Jd52ueV5YvoEL7vxnVmPThahjeUlWz5upTu1KQ3/OtEskSU8DPRuZdZ2ZPdaM8Z1JfP+nP7CVxFe+v2Bmv5N0CfA/ksqB2cC+YNgrQD8z2yFpHIkv4A1M8fyTgckAffv2TVeOy8G23TV8/p6X8vb82/fsS98pjf978SlMGN7w93hH9R5Omvp0/eNSwe0hL42gGUEys7NzfI2zgZVmtgFA0l9IXEPhd2b2AjA6aD+XxDdU677VWvf6MyXdJambmW1spL5pJC5uQmVlpX+5Ko+27appsdcqawN7s9iO+vSpvQ943KF9OatuuwCA2554k7uffYeNO8P/d7TE7u/3gJGS2iuxMTUGqNu26hH8Lge+C9wdPO4Z9EXSiKBO/+ZqxHp3bs+dlwyjT+d29OvSnhEVnSktyXzvV1kzhmQaIgHLbzkfSdTu28+Wnbv5YEs1e2oblnLjT+nF4F6dOK1f58yevDmvn+NeuwuBnwPdSay2LTKzsZKOBu4xs3FBv5uAfwVqgVeBK8xsj6Q7gPEkgvIrM/tZ0P9rwFeC/ruAb5rZ8+nq8b12Le/JqrX85+9eibqMJk0a3Z/rLhjcrL7Z7rUrqq+ae5Ba1uzFHzL5twujLiOtyz9WwQ8+1bz9VdkGyc9scFkb1KsTJx9zRMr5V5117AGPDy8N9yBoc01/bhXDp86iYsoMKqbMIB8LDw+Sy1qfLu35w6TTKQ3OEuh6eGK38lkndGfJ1LF849xB/PTiofX9d9ZEt/azubq2frr/tTNDf/6i+qq5a1kLV23ms3e/UP94S3Vib9jfl21g8PWzMn6+T57QjTnLNtKrY1v21hqbdjXsKOhYBlefcwI/nLEs98LzwIPkslK9t5bLftNwTKm0DdRkedrPH6+o5PQBRwFQu28/bUsSK0pmxtLVmzjxmC60aZNou3z0AAC+/dAr/OmVtVm9Xlke1sM8SC4r3/nza+wIDqCWCF75wblc86dFzFqS+Q096kIE1IcIEqeeDe7TrdExd1w8nDsuTky/v7mauW+tZ/H7G3lg4bq0r9c+D59630ZyWflbcLrPqX2OZNnN59OxXSnPvJl5iP785RE519KnS3v+bWQFt06s5O9XDk3bf8KwY3J+zYP57m+XlddXb6V7x3K6dyhnzpvr+cYfF7Fjb+an+JSViD9OHsmp/bqEVtuC5R9y2nFHIYl9+/Zz3HVP0LldCYN7dWJiZR8+M7xPyrGRnP3t4qtbhzI+ecccdtdm/od4yU1jGXxDYmfE3n3GyvU7Qw1S5YCGU0NLStrUnyKUT75q57Jyz7yVWYXozaljaV/elrduPp/zh/TglKM7cdH/Sb2EKBS+RHJZ+d64QWDGvc+nvzBpY0uEsrZt+MnFw3hhxSZufKyKPfuMq8YMpOcRh+Wj3LzzILm09u03vvzbBTy9NLOdCYeXtWHR9eemnH/5fQt4YUXD7X4H9erIpaMqsi0zUh4k16TdNfsY85M5fLB1T8Zj/zxpBKVtU39Zb+SxXdmwfQ/vbq7m0lH9+MLp/XIpNVIeJJfS2+u284V75rNue+YhApj3zkYG9emacv5VZx/PVWcfn215rYrvbHApvfre1qxD1LEMJp95QsgVtV4eJNeoXXv3ce8/38l6/KvXnxdiNa2fB8k1qmrNR7y5bmez+w/o2o7lt5zPuYO7c87gHrRtYtuoGPk2kjvAnpp9PPTy+/z06eafZf2lUX24YULigiLTLs39lJ9C5EFybNyxm4vuep73Nu/KeOyPPncyF1f61Zs8SDG3tXovlTc/k/G4/5l4CheeVvhnJITFgxRjs6vW8t2/vJHxuKqbxtKh3D86yfzdiJndNfu4/Dcv8fyKzU1eYjiVn0482UPUCH9HYub6x6p4Lum0nEw8dfVoBvbsFHJFxcGDFDPz3j7kYrXN8tL3zqJHp3YhV1M8PEgx074ss+M7ZSVi2c3nN+eOI7HmB2Rj5oxjM/sC3Vu3jPMQNYMHKUZmvrGG385/P+oyipKv2sXAP5at54u/eTnqMoqaL5FiYE4WV/dxmfEgxcCNnx7CzK//S1Zj9+0vnqtM5ZMHKQYk8WKWx45KQr77d7HyIMXEF0b24/T+R0ZdRtHyIMXE3Lc2MH/l1qjLKFoepJi4Z15233ZdtXFHyJUUJw9STFw0vHf6To341oOt+7aWrYUHKSb+958rsxp33fjm3TIy7jxIMXHFv/TPeMxXPl7B8IrUl9NyDTxIMXH/86syHvPdcb40aq6cgyRpoqTFkvZLSnk7DElXSaoK+l6d1N5F0lOS3g5+dw7aJelOScslvS5peK61xtmI/uHd7cEdKowlUhVwETA3VQdJJwGTgBHAUGC8pAHB7CnAM2Y2EHgmeAxwPjAw+JkM/CqEWmOpYsoMftOMi90n696hLE/VFKecT1o1s6VAulPtBwHzzaw66PssifD9CJgAnBn0uw/4B/DdoP1+S9wJ7UVJR0rqZWbZ3Tg0hj575xwWrqludv/vjOnPf5x5Aqu37KJXgd4VIiottY1UBYyW1FVSe2AcUHcJmqOSwvEhUHdD0WOA5HP+VwdtB5A0WdICSQs2bNiQn+oL0PCbZmQUohN7Hs5XzxnMYaUlDOjRgcP9ugwZada7JelpoGcjs64zs8fSjTezpZJuB2YDO4FFwCH3STQzk5TRWZJmNg2YBolbX2Yytpg1dYm6+VM+wVFHdqh//OKKTZzu21A5aVaQzOzsXF/IzKYD0wEk3UpiCQOwrm6VTVIvoO6c/w9oWGoB9A7aXBoVU2Yc0nbpiGP49Kl9qOx/6O7skcf6Lu5ctdjub0k9gt99SWwfPRDM+itwWTB9GfBYUvulwd67kcBHvn2UHQFTLxrWaIhcOMLY/X2hpNXAKGCGpFlB+9GSZiZ1fVjSEuBx4Eoz2xq03wacI+lt4OzgMcBMYAWwHPhf4Ku51hoHX/l/z9dPdywv4fwhPVjZAjcjjjsldooVh8rKSluwYEHUZUQqebWuJe7mXWwkLTSzlMdDU/EzG4rUd8YU7m0kC5EHqYgMSFoaffWckyKsJH48SEWkNuoCYsyDVIQe+OIpUZcQOx6kIjHsxobVujNO9PsWtTQPUpHYujvqCuLNg1RkPtbfb7sSBQ9SEaipqamf/v2XR0dYSXx5kIrAwB/MjrqE2PMgORcCD1IReeeW86IuIbY8SAXue396qX66pCSzu/G58HiQCtwDC/1bwa2BB6lI9DuiPOoSYs2DVMDu/cfi+ulnr835S8wuBx6kAjb1yVVRl+ACHqQiMO7EzlGXEHsepAI1YuoT9dN3ffGMCCtx4EEqWOur90ddgkviQSpAydfZuOfiEyOsxNXxIBWg/tc2XJzp7OHHRViJq+NBKmB+v/HWw4NUYJIvt+XXq2s9PEjOhcCDVEBOub5haVR1vZ/J0Jp4kArItr0N0x3a+7l1rYkHqUD0T942+u9xEVbiGuNBKgBbt+0g+Qrtae6O6CLgQSoAw259tn7aL4zfOnmQWrmRNzccfB0z4MjoCnFN8iC1Ylu27+LDHQ0rddOv+FiE1bim+B13W5k9tfu46a9LeGnlZpZv2FHf/uvP+/W8WzMPUiuwY3cN98xbwb3PrWTb7kPuUc2xR5Qydqhfz7s18yBFxMz42exl/PIf71Cb5qaJf7/23JYpymXNgxSBFRt3cNaPn03fEVhy09g8V+PC4DsbWti23TXNDtGxXdvRvtz/1hWCnIIkaaKkxZL2S0p5A1tJV0mqCvpendTeRdJTkt4OfncO2s+U9JGkRcHP9bnU2Zoc1raESaP7066tOLpjWZN9//7ts1qoKperXJdIVcBFwNxUHSSdBEwCRgBDgfGSBgSzpwDPmNlA4JngcZ15ZjYs+JmaY52tRlnbNry59iN21Rprtu9N2c/PXSgsOQXJzJaa2bI03QYB882s2sxqgWdJhA9gAnBfMH0f8Jlc6ikEj776AfOWb07bb9kPfduokLTENlIVMFpSV0ntgXFA3b7co8xsbTD9IXBU0rhRkl6T9ISkIameXNJkSQskLdiwofVfvnfI0Z3oWNawvOlQ3vh/QVmpbxsVkrRBkvR0sH1z8M+E5ryAmS0FbgdmA08Ci4BDDpZY4ooedTuCXwH6mdlQ4OfAo008/zQzqzSzyu7duzenpEgNPKojL/9gLN8eezw9O5WxY8+hVwPq38lX7ApN2j97ZpbzN8jMbDowHUDSrcDqYNY6Sb3MbK2kXsD6oP+2pLEzJd0lqZuZbcy1ltZg+NTZVNekvpzWnO/51yQKTYvs/pbUI/jdl8T20QPBrL8ClwXTlwGPBf16KviugKQRQZ2bWqLWfFv03pYmQ+QKU667vy+UtBoYBcyQNCtoP1rSzKSuD0taAjwOXGlmW4P224BzJL0NnB08BvgcUCXpNeBO4BJLvphbAVv47pYm508c1quFKnFhUpF8PgGorKy0BQsWRF1Gk5KvAtQY/75RtCQtNLOUx0RT8TMbnAuBB6kF7a059MxuVxw8SC3o5BufjLoElyd+1C/Pduyu4RM/+jubqmvT9p17zb+0QEUuHzxIObr0188xd+XWQ9q7ti9hx+59NHK8NaW+3Y4IrzDXojxIOWosRACbqpu/PfTWzedTWuJnMxQy30bKQcVBF2188IqhWT1PWds2fq26AudLpCx9uG5d/XT7tomLNo4c0JtVt/UGYMrDr/Hgy6tTDXdFxoOUocYOqC65+dCDqLd9dihTJ5zM8d9/4pB5P5s4hNOPO4pP3DGHr48ZcMh8V3g8SBkYfevsQ9q+9cneKfuXtW1D2zZQux/++zMn8fmR/Q6Y/9YtfnJqsfAgZeD9bTX10809lWfh989ly849VHTvkK+yXCvgQcpC01daONAR7Us5on1p3mpxrYPvtcvC0lvOi7oE18p4kJpp1C0Np/eUlJREWIlrjTxIzbR2u59w6lLzIGWo82F+4NQdyoPUDAOSjh29eqPvsnaH8iA1Q/rztl3ceZAyMPaErlGX4FopD1Iav5/bcCHZX39pZISVuNbMg5TGdTOXR12CKwAepCYkX2Fp/GBfrXOp+SlCKZx64wy27G54/ItLfbXOpeZBasTBX5Vo58ttl4Z/RJph6a1+0UbXNF8iHeT4pKWRX/XUNZcHKUm6ywk7l4qv2qXgSyOXCQ9SYM+ehvu5eohcpjxIgZNueCrqElwB8yAFatJ3cS4lDxKwYn39nTbp2cH3v7jMeZCAHXsavv165sBuEVbiCpUHCTilT+f66bnvbIiwEleoPEgHWbPNr83gMudBci4Eud7VfKKkxZL2S0p5A1tJV0mqCvpe3Zzxkq6VtFzSMkljc6nTuXzLdYlUBVwEzE3VQdJJwCRgBDAUGC+p7srxjY6XNBi4BBgCnAfcJalFLiZ36jF+aWGXuZyCZGZLzWxZmm6DgPlmVm1mtcCzJMLT1PgJwINmtsfMVgLLSQQx7343aVRLvIwrMi2xjVQFjJbUVVJ7YBzQJ82YY4D3kx6vDtoOIWmypAWSFmzYkN0et23bttdPH35YJlf2di4h7dFHSU8DPRuZdZ2ZPZZuvJktlXQ7MBvYCSwCQts1ZmbTgGkAlZWVlqZ7oz47bX5Y5biYShskMzs71xcxs+nAdABJt5JYwjTlAw5cavUO2vLi7Y178vXULiZaZPe3pB7B774kto8eSDPkr8Alksol9QcGAi/lt0rnspfr7u8LJa0GRgEzJM0K2o+WNDOp68OSlgCPA1ea2damxpvZYuAhYAnwZDAm70dK/R4TLls5naFpZo8AjzTSvobEToW6x6MzGR/MuwW4JZf6MvXD8X4/V5cdP7MhyXnDKqIuwRUoD1KSzof7rm+XndgH6d45i+unJb/3kctO7IM0ddaqqEtwRSD2QXIuDB4k50IQ6yC9vHJT/fSPLzw+wkpcoYt1kC67t+Fkic+dPjDCSlyhi3WQqmv2R12CKxKxDpJzYYltkBYmbR/F9k1woYntZ+h7j7xeP/2TiSdHWIkrBrEN0rL11fXTnxra6JdvnWu2WAZp197aAx63betfoHC5iWWQvnxfw27v8li+Ay5ssfwYzX1nS/3009d8IsJKXLGIZZCS9eni17FzuYtdkJ5avKZ+2lfrXFhi91G64ZHX6qdnfdNX61w4YhekNTsaTguq6OardS4csQuSc/kQqyCZNVyIdWC38ggrccUmVkHasH13/fTtnzs1wkpcsYlVkKbNebt+ekjvI6MrxBWdWAXpvhcabnBR7qcFuRDFKkg1URfgilasguRcvsQmSOu37U7fybksxSZIjy5quCXTuSd0ibASV4xiE6RhSXvpTj+ue3SFuKIUmyCd2q9hKfT+5l0RVuKKUWyCVFrS8E994o33IqzEFaPYBCnZup1RV+CKTSyD5FzYPEjOhSCWQSr3+4m5kOV6V/OJkhZL2i+psol+V0mqCvpenW68pApJuyQtCn7uzqXOg3177HFhPp1zud3VHKgCLgJ+naqDpJOAScAIYC/wpKS/mdnyNOPfMbNhOdbXqCvOPDEfT+tiLKclkpktNbNlaboNAuabWbWZ1QLPkghPc8eHYv9+v/OEy5+W2EaqAkZL6iqpPTAO6NOMcf0lvSrpWUmjcy3iLwvfzfUpnEsp7aqdpKeBno3Mus7MHks33syWSrodmA3sBBYB+9IMWwv0NbNNkk4DHpU0xMy2NVLfZGAyQN++fVM+4SMLP0hXqnNZSxskMzs71xcxs+nAdABJtwKr0/TfA+wJphdKegc4HljQSN9pwDSAyspKO3h+nbLSWO6gdC2kRT5dknoEv/uS2D56IE3/7pJKguljgYHAilxqWLp2ey7DnWtSrru/L5S0GhgFzJA0K2g/WtLMpK4PS1oCPA5caWZbmxoPfBx4XdIi4M/Af5rZ5lxq3bijNn0n57KU0+5vM3sEeKSR9jUkdirUPW50Z0ET4x8GHs6ltoN5jFw++YaDcyHwIDkXAg+ScyHwIDkXAg+ScyGIXZAGdsn1PF3nDhWLIG3f1XCN1cev+mSElbhiFYsgnXXHnPrpw8rLIqzEFatYBGlDtV/12+VXLDYYVt12Af9133xOP65z1KW4IhWLIAH8/LLToy7BFbFYrNo5l28eJOdC4EFyLgQeJOdC4EFyLgQeJOdC4EFyLgQeJOdCILOUV7AqOJI2AIVyJchuwMaoi8hQHGruZ2YZ3xu1qIJUSCQtMLOUNx5ojbzm1HzVzrkQeJCcC4EHKTrToi4gC15zCr6N5FwIfInkXAg8SM6FwIOUBUklwU3Q/hY8/pqk5ZJMUrekfmdK+ijpXrjXJ807T9KyYNyUpPb+kuYH7X+UVBa0lwePlwfzK0Ko+/dBDVWS7pVUGrRL0p3Ba70uaXjSc1wm6e3g57Kk9tMkvRGMuVOSgvYukp4K+j8lKaOvKWdQc7TvtZn5T4Y/wDdJ3Jrmb8HjU4EKYBXQLanfmXV9DhpfArwDHAuUAa8Bg4N5DwGXBNN3A18Jpr8K3B1MXwL8MYS6xwEKfv6Q9FrjgCeC9pEkbl0K0IXE7XW6AJ2D6c7BvJeCvgrGnh+0/wiYEkxPAW7PU82Rvte+RMqQpN7ABcA9dW1m9qqZrcrgaUYAy81shZntBR4EJgR/xc8icSsbgPuAzwTTE4LHBPPH1P3Vz6HumRYgEYTeSa91fzDrReBISb2AscBTZrbZzLYATwHnBfM6mdmLwXPdn6Lu5H9P2DWn0iLvtQcpcz8DvgM09+7OoyS9JukJSUOCtmOA95P6rA7augJbLXHT6uT2A8YE8z8K+udcd7B69O/Ak2nqa6p9dSPtAEeZ2dpg+kPgqDzVDBG+1x6kDEgaD6w3s4XNHPIKiXO3hgI/Bx7NV21NaUbddwFzzWxePusIliLNOt6SRc2RvtcepMx8DPi0pFUkVhHOkvS7VJ3NbJuZ7QimZwKlwc6IDzjwzu69g7ZNJFaj2h7UTvKYYP4RQf+c6pZ0A9CdxLZInVT1NdXeu5F2gHXBqh/B7/X5qDny9zqMje84/tDIxi2H7mzoScNB7xHAeyQ2ktuS2FDvT8MG8JCg3584cAP4q8H0lRy4AfxQrnUDVwDPA+0O6nMBB+5seClo7wKsJLGjoXMw3SWYd/DOhnFB+x0cuLPhR3mqOdL3OvIPZKH+HPSf+3US69i1wBrgnqD9a8Di4D/vReCMpPHjgLdI7FG6Lqn92OBDuTz4jy4P2g8LHi8P5h8bQt21wesvCn6uD9oF/DKY9wZQmTT+P4IalgNfSmqvBKqCMb9I+lB3BZ4B3gaergteHmqO9L32U4ScC4FvIzkXAg+ScyHwIDkXAg+ScyHwIDkXAg+ScyHwIDkXgv8PsFdqMPn0GbYAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "contours_gdf.plot()" + ] + }, + { + "cell_type": "code", + "execution_count": 52, "metadata": {}, "outputs": [], "source": [ @@ -326,21 +358,21 @@ "# (\n", "# masked_ds,\n", "# certainty_masks,\n", - "# all_time,\n", - "# all_time_clean,\n", + "# all_time_15,\n", + "# all_time_50,\n", "# river_mask,\n", "# ocean_da,\n", - "# coastal_mask,\n", - "# inland_mask,\n", "# thresholded_ds,\n", + "# temporal_mask,\n", "# annual_mask,\n", + "# coastal_mask,\n", "# ) = coastlines.vector.contours_preprocess(\n", "# yearly_ds,\n", "# gapfill_ds,\n", "# water_index,\n", "# index_threshold,\n", "# buffer_pixels=33,\n", - "# mask_modifications=None,\n", + "# mask_modifications=modifications_gdf,\n", "# debug=True,\n", "# )" ] @@ -355,7 +387,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -376,50 +408,9 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "1988\n", - "1989\n", - "1990\n", - "1991\n", - "1992\n", - "1993\n", - "1994\n", - "1995\n", - "1996\n", - "1997\n", - "1998\n", - "1999\n", - "2000\n", - "2001\n", - "2002\n", - "2003\n", - "2004\n", - "2005\n", - "2006\n", - "2007\n", - "2008\n", - "2009\n", - "2010\n", - "2011\n", - "2012\n", - "2013\n", - "2014\n", - "2015\n", - "2016\n", - "2017\n", - "2018\n", - "2019\n", - "2020\n", - "2021\n" - ] - } - ], + "outputs": [], "source": [ "if points_gdf is not None and len(points_gdf) > 0:\n", " \n", @@ -454,7 +445,7 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -486,7 +477,7 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -551,7 +542,7 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -573,7 +564,7 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -597,7 +588,7 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -638,7 +629,7 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": null, "metadata": {}, "outputs": [], "source": [