Skip to content

Instantly share code, notes, and snippets.

@mappingvermont
Created June 3, 2018 23:35
Show Gist options
  • Save mappingvermont/c9a0008ae91e19f2a5631014b8f52508 to your computer and use it in GitHub Desktop.
Save mappingvermont/c9a0008ae91e19f2a5631014b8f52508 to your computer and use it in GitHub Desktop.
POC splitting input AOI into within/intersecting tiles
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import fiona
import mercantile
from shapely.geometry import shape
def process_tile(tile_list, aoi):
# main function to compare a list of tiles to an input geometry
# will eventually return a list of tiles completely within the aoi (all zoom levels possible)
# and tiles that intersect the aoi (must be z12 because that's as low as we go)
# we could keep subdividing to higher zooms, but our data is z12 and that's all we care about
within_list = []
intersect_list = []
for t in tile_list:
# a tile either is completely within, completely outside, or intersects
tile_geom = shape(mercantile.feature(t)['geometry'])
# if it's within, great- our work is done
if aoi.contains(tile_geom):
within_list.append(t)
elif tile_geom.intersects(aoi):
# if it intersects and is < z12, subdivide it and start the
# process again
if t.z < 12:
# find the four children of this tile and check them for within/intersect/outside-ness
tile_children = mercantile.children(t)
new_within_list, new_intersect_list = process_tile(tile_children, aoi)
# add the results to our initial lists
within_list.extend(new_within_list)
intersect_list.extend(new_intersect_list)
# if it intersects and is at z12, add it to our intersect list
else:
intersect_list.append(t)
# and if it's outside our geometry, drop it
else:
pass
return within_list, intersect_list
def write_tiles_to_geojson(tile_list, output_file):
schema={'geometry': 'Polygon', 'properties': {'title': 'str'}}
with fiona.open(output_file, 'w', driver='GeoJSON', schema=schema) as outfile:
for t in tile_list:
feat = mercantile.feature(t)
outfile.write(feat)
def main():
# read in aoi
src = fiona.open('aoi.geojson')
geom = shape(src[0]['geometry'])
# use bounds to find the smallest tile that completely contains our input aoi
# not useful for AOIs that cross lat or lon 0 (returns tile [0, 0, 0])
# but helpful for many AOIs
# https://github.com/mapbox/mercantile/blob/master/docs/cli.rst#bounding-tile
bbox = src.bounds
bounding_tile = mercantile.bounding_tile(*bbox)
# build within and intersect lists
within_list, intersect_list = process_tile([bounding_tile], geom)
# write to geojson
write_tiles_to_geojson(within_list, 'within.geojson')
write_tiles_to_geojson(intersect_list, 'intersect.geojson')
if __name__ == '__main__':
main()
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1408, y=2034, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, 1.142502403706155 ], [ -56.25, 1.230374177432607 ], [ -56.162109375, 1.230374177432607 ], [ -56.162109375, 1.142502403706155 ], [ -56.25, 1.142502403706155 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1409, y=2035, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.162109375, 1.054627942275884 ], [ -56.162109375, 1.142502403706155 ], [ -56.07421875, 1.142502403706155 ], [ -56.07421875, 1.054627942275884 ], [ -56.162109375, 1.054627942275884 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1408, y=2035, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, 1.054627942275884 ], [ -56.25, 1.142502403706155 ], [ -56.162109375, 1.142502403706155 ], [ -56.162109375, 1.054627942275884 ], [ -56.25, 1.054627942275884 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1412, y=2037, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.8984375, 0.878871782832416 ], [ -55.8984375, 0.966750999766632 ], [ -55.810546875, 0.966750999766632 ], [ -55.810546875, 0.878871782832416 ], [ -55.8984375, 0.878871782832416 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1414, y=2039, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.72265625, 0.703107352436487 ], [ -55.72265625, 0.790990498154004 ], [ -55.634765625, 0.790990498154004 ], [ -55.634765625, 0.703107352436487 ], [ -55.72265625, 0.703107352436487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=706, y=1019, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.8984375, 0.703107352436487 ], [ -55.8984375, 0.878871782832416 ], [ -55.72265625, 0.878871782832416 ], [ -55.72265625, 0.703107352436487 ], [ -55.8984375, 0.703107352436487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=704, y=1018, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, 0.878871782832416 ], [ -56.25, 1.054627942275884 ], [ -56.07421875, 1.054627942275884 ], [ -56.07421875, 0.878871782832416 ], [ -56.25, 0.878871782832416 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1410, y=2036, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.07421875, 0.966750999766632 ], [ -56.07421875, 1.054627942275884 ], [ -55.986328125, 1.054627942275884 ], [ -55.986328125, 0.966750999766632 ], [ -56.07421875, 0.966750999766632 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1411, y=2037, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.986328125, 0.878871782832416 ], [ -55.986328125, 0.966750999766632 ], [ -55.8984375, 0.966750999766632 ], [ -55.8984375, 0.878871782832416 ], [ -55.986328125, 0.878871782832416 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1410, y=2037, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.07421875, 0.878871782832416 ], [ -56.07421875, 0.966750999766632 ], [ -55.986328125, 0.966750999766632 ], [ -55.986328125, 0.878871782832416 ], [ -56.07421875, 0.878871782832416 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=705, y=1019, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.07421875, 0.703107352436487 ], [ -56.07421875, 0.878871782832416 ], [ -55.8984375, 0.878871782832416 ], [ -55.8984375, 0.703107352436487 ], [ -56.07421875, 0.703107352436487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=704, y=1019, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, 0.703107352436487 ], [ -56.25, 0.878871782832416 ], [ -56.07421875, 0.878871782832416 ], [ -56.07421875, 0.703107352436487 ], [ -56.25, 0.703107352436487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1416, y=2041, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.546875, 0.527336304811514 ], [ -55.546875, 0.615222552406843 ], [ -55.458984375, 0.615222552406843 ], [ -55.458984375, 0.527336304811514 ], [ -55.546875, 0.527336304811514 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1418, y=2043, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.37109375, 0.351560293992272 ], [ -55.37109375, 0.439448816413968 ], [ -55.283203125, 0.439448816413968 ], [ -55.283203125, 0.351560293992272 ], [ -55.37109375, 0.351560293992272 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=708, y=1021, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.546875, 0.351560293992272 ], [ -55.546875, 0.527336304811514 ], [ -55.37109375, 0.527336304811514 ], [ -55.37109375, 0.351560293992272 ], [ -55.546875, 0.351560293992272 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1420, y=2045, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.1953125, 0.175780974247087 ], [ -55.1953125, 0.263670944336657 ], [ -55.107421875, 0.263670944336657 ], [ -55.107421875, 0.175780974247087 ], [ -55.1953125, 0.175780974247087 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1422, y=2047, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.01953125, 0.0 ], [ -55.01953125, 0.087890590530825 ], [ -54.931640625, 0.087890590530825 ], [ -54.931640625, 0.0 ], [ -55.01953125, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=710, y=1023, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.1953125, 0.0 ], [ -55.1953125, 0.175780974247087 ], [ -55.01953125, 0.175780974247087 ], [ -55.01953125, 0.0 ], [ -55.1953125, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=354, y=511, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.546875, 0.0 ], [ -55.546875, 0.351560293992272 ], [ -55.1953125, 0.351560293992272 ], [ -55.1953125, 0.0 ], [ -55.546875, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=176, y=255, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, 0.0 ], [ -56.25, 0.703107352436487 ], [ -55.546875, 0.703107352436487 ], [ -55.546875, 0.0 ], [ -56.25, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1351, y=1991, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.259765625, 4.915832801313166 ], [ -61.259765625, 5.003394345022155 ], [ -61.171875, 5.003394345022155 ], [ -61.171875, 4.915832801313166 ], [ -61.259765625, 4.915832801313166 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1350, y=1991, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.34765625, 4.915832801313166 ], [ -61.34765625, 5.003394345022155 ], [ -61.259765625, 5.003394345022155 ], [ -61.259765625, 4.915832801313166 ], [ -61.34765625, 4.915832801313166 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1349, y=1991, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.435546875, 4.915832801313166 ], [ -61.435546875, 5.003394345022155 ], [ -61.34765625, 5.003394345022155 ], [ -61.34765625, 4.915832801313166 ], [ -61.435546875, 4.915832801313166 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1359, y=1989, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.556640625, 5.090944175033391 ], [ -60.556640625, 5.178482088522876 ], [ -60.46875, 5.178482088522876 ], [ -60.46875, 5.090944175033391 ], [ -60.556640625, 5.090944175033391 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=679, y=995, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.64453125, 4.915832801313166 ], [ -60.64453125, 5.090944175033391 ], [ -60.46875, 5.090944175033391 ], [ -60.46875, 4.915832801313166 ], [ -60.64453125, 4.915832801313166 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=678, y=995, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.8203125, 4.915832801313166 ], [ -60.8203125, 5.090944175033391 ], [ -60.64453125, 5.090944175033391 ], [ -60.64453125, 4.915832801313166 ], [ -60.8203125, 4.915832801313166 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=677, y=995, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.99609375, 4.915832801313166 ], [ -60.99609375, 5.090944175033391 ], [ -60.8203125, 5.090944175033391 ], [ -60.8203125, 4.915832801313166 ], [ -60.99609375, 4.915832801313166 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1353, y=1991, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.083984375, 4.915832801313166 ], [ -61.083984375, 5.003394345022155 ], [ -60.99609375, 5.003394345022155 ], [ -60.99609375, 4.915832801313166 ], [ -61.083984375, 4.915832801313166 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1352, y=1991, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.171875, 4.915832801313166 ], [ -61.171875, 5.003394345022155 ], [ -61.083984375, 5.003394345022155 ], [ -61.083984375, 4.915832801313166 ], [ -61.171875, 4.915832801313166 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=169, y=249, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.171875, 4.214943141390642 ], [ -61.171875, 4.915832801313166 ], [ -60.46875, 4.915832801313166 ], [ -60.46875, 4.214943141390642 ], [ -61.171875, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=168, y=249, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, 4.214943141390642 ], [ -61.875, 4.915832801313166 ], [ -61.171875, 4.915832801313166 ], [ -61.171875, 4.214943141390642 ], [ -61.875, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1364, y=1990, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.1171875, 5.003394345022155 ], [ -60.1171875, 5.090944175033391 ], [ -60.029296875, 5.090944175033391 ], [ -60.029296875, 5.003394345022155 ], [ -60.1171875, 5.003394345022155 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1365, y=1991, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.029296875, 4.915832801313166 ], [ -60.029296875, 5.003394345022155 ], [ -59.94140625, 5.003394345022155 ], [ -59.94140625, 4.915832801313166 ], [ -60.029296875, 4.915832801313166 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1364, y=1991, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.1171875, 4.915832801313166 ], [ -60.1171875, 5.003394345022155 ], [ -60.029296875, 5.003394345022155 ], [ -60.029296875, 4.915832801313166 ], [ -60.1171875, 4.915832801313166 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1361, y=1989, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.380859375, 5.090944175033391 ], [ -60.380859375, 5.178482088522876 ], [ -60.29296875, 5.178482088522876 ], [ -60.29296875, 5.090944175033391 ], [ -60.380859375, 5.090944175033391 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1360, y=1989, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.46875, 5.090944175033391 ], [ -60.46875, 5.178482088522876 ], [ -60.380859375, 5.178482088522876 ], [ -60.380859375, 5.090944175033391 ], [ -60.46875, 5.090944175033391 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1363, y=1989, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.205078125, 5.090944175033391 ], [ -60.205078125, 5.178482088522876 ], [ -60.1171875, 5.178482088522876 ], [ -60.1171875, 5.090944175033391 ], [ -60.205078125, 5.090944175033391 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1362, y=1989, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.29296875, 5.090944175033391 ], [ -60.29296875, 5.178482088522876 ], [ -60.205078125, 5.178482088522876 ], [ -60.205078125, 5.090944175033391 ], [ -60.29296875, 5.090944175033391 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=681, y=995, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.29296875, 4.915832801313166 ], [ -60.29296875, 5.090944175033391 ], [ -60.1171875, 5.090944175033391 ], [ -60.1171875, 4.915832801313166 ], [ -60.29296875, 4.915832801313166 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=680, y=995, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.46875, 4.915832801313166 ], [ -60.46875, 5.090944175033391 ], [ -60.29296875, 5.090944175033391 ], [ -60.29296875, 4.915832801313166 ], [ -60.46875, 4.915832801313166 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1368, y=1994, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 4.653079918274045 ], [ -59.765625, 4.740675384778369 ], [ -59.677734375, 4.740675384778369 ], [ -59.677734375, 4.653079918274045 ], [ -59.765625, 4.653079918274045 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1369, y=1995, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.677734375, 4.56547355071028 ], [ -59.677734375, 4.653079918274045 ], [ -59.58984375, 4.653079918274045 ], [ -59.58984375, 4.56547355071028 ], [ -59.677734375, 4.56547355071028 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1368, y=1995, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 4.56547355071028 ], [ -59.765625, 4.653079918274045 ], [ -59.677734375, 4.653079918274045 ], [ -59.677734375, 4.56547355071028 ], [ -59.765625, 4.56547355071028 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1372, y=1998, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.4140625, 4.302591077119675 ], [ -59.4140625, 4.390228926463391 ], [ -59.326171875, 4.390228926463391 ], [ -59.326171875, 4.302591077119675 ], [ -59.4140625, 4.302591077119675 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1373, y=1999, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.326171875, 4.214943141390642 ], [ -59.326171875, 4.302591077119675 ], [ -59.23828125, 4.302591077119675 ], [ -59.23828125, 4.214943141390642 ], [ -59.326171875, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1372, y=1999, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.4140625, 4.214943141390642 ], [ -59.4140625, 4.302591077119675 ], [ -59.326171875, 4.302591077119675 ], [ -59.326171875, 4.214943141390642 ], [ -59.4140625, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=684, y=998, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 4.390228926463391 ], [ -59.765625, 4.56547355071028 ], [ -59.58984375, 4.56547355071028 ], [ -59.58984375, 4.390228926463391 ], [ -59.765625, 4.390228926463391 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1370, y=1996, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.58984375, 4.477856485570588 ], [ -59.58984375, 4.56547355071028 ], [ -59.501953125, 4.56547355071028 ], [ -59.501953125, 4.477856485570588 ], [ -59.58984375, 4.477856485570588 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1371, y=1997, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.501953125, 4.390228926463391 ], [ -59.501953125, 4.477856485570588 ], [ -59.4140625, 4.477856485570588 ], [ -59.4140625, 4.390228926463391 ], [ -59.501953125, 4.390228926463391 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1370, y=1997, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.58984375, 4.390228926463391 ], [ -59.58984375, 4.477856485570588 ], [ -59.501953125, 4.477856485570588 ], [ -59.501953125, 4.390228926463391 ], [ -59.58984375, 4.390228926463391 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=685, y=999, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.58984375, 4.214943141390642 ], [ -59.58984375, 4.390228926463391 ], [ -59.4140625, 4.390228926463391 ], [ -59.4140625, 4.214943141390642 ], [ -59.58984375, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=684, y=999, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 4.214943141390642 ], [ -59.765625, 4.390228926463391 ], [ -59.58984375, 4.390228926463391 ], [ -59.58984375, 4.214943141390642 ], [ -59.765625, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=340, y=498, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.46875, 4.56547355071028 ], [ -60.46875, 4.915832801313166 ], [ -60.1171875, 4.915832801313166 ], [ -60.1171875, 4.56547355071028 ], [ -60.46875, 4.56547355071028 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=682, y=996, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.1171875, 4.740675384778369 ], [ -60.1171875, 4.915832801313166 ], [ -59.94140625, 4.915832801313166 ], [ -59.94140625, 4.740675384778369 ], [ -60.1171875, 4.740675384778369 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1366, y=1992, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.94140625, 4.828259746866975 ], [ -59.94140625, 4.915832801313166 ], [ -59.853515625, 4.915832801313166 ], [ -59.853515625, 4.828259746866975 ], [ -59.94140625, 4.828259746866975 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1367, y=1993, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.853515625, 4.740675384778369 ], [ -59.853515625, 4.828259746866975 ], [ -59.765625, 4.828259746866975 ], [ -59.765625, 4.740675384778369 ], [ -59.853515625, 4.740675384778369 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1366, y=1993, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.94140625, 4.740675384778369 ], [ -59.94140625, 4.828259746866975 ], [ -59.853515625, 4.828259746866975 ], [ -59.853515625, 4.740675384778369 ], [ -59.94140625, 4.740675384778369 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=683, y=997, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.94140625, 4.56547355071028 ], [ -59.94140625, 4.740675384778369 ], [ -59.765625, 4.740675384778369 ], [ -59.765625, 4.56547355071028 ], [ -59.94140625, 4.56547355071028 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=682, y=997, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.1171875, 4.56547355071028 ], [ -60.1171875, 4.740675384778369 ], [ -59.94140625, 4.740675384778369 ], [ -59.94140625, 4.56547355071028 ], [ -60.1171875, 4.56547355071028 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=341, y=499, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.1171875, 4.214943141390642 ], [ -60.1171875, 4.56547355071028 ], [ -59.765625, 4.56547355071028 ], [ -59.765625, 4.214943141390642 ], [ -60.1171875, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=340, y=499, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.46875, 4.214943141390642 ], [ -60.46875, 4.56547355071028 ], [ -60.1171875, 4.56547355071028 ], [ -60.1171875, 4.214943141390642 ], [ -60.46875, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=170, y=250, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.46875, 3.513421045640039 ], [ -60.46875, 4.214943141390642 ], [ -59.765625, 4.214943141390642 ], [ -59.765625, 3.513421045640039 ], [ -60.46875, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=342, y=500, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 3.864254615721404 ], [ -59.765625, 4.214943141390642 ], [ -59.4140625, 4.214943141390642 ], [ -59.4140625, 3.864254615721404 ], [ -59.765625, 3.864254615721404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=686, y=1000, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.4140625, 4.03961782676843 ], [ -59.4140625, 4.214943141390642 ], [ -59.23828125, 4.214943141390642 ], [ -59.23828125, 4.03961782676843 ], [ -59.4140625, 4.03961782676843 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1374, y=2000, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.23828125, 4.127285323245364 ], [ -59.23828125, 4.214943141390642 ], [ -59.150390625, 4.214943141390642 ], [ -59.150390625, 4.127285323245364 ], [ -59.23828125, 4.127285323245364 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1375, y=2001, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.150390625, 4.03961782676843 ], [ -59.150390625, 4.127285323245364 ], [ -59.0625, 4.127285323245364 ], [ -59.0625, 4.03961782676843 ], [ -59.150390625, 4.03961782676843 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1374, y=2001, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.23828125, 4.03961782676843 ], [ -59.23828125, 4.127285323245364 ], [ -59.150390625, 4.127285323245364 ], [ -59.150390625, 4.03961782676843 ], [ -59.23828125, 4.03961782676843 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=687, y=1001, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.23828125, 3.864254615721404 ], [ -59.23828125, 4.03961782676843 ], [ -59.0625, 4.03961782676843 ], [ -59.0625, 3.864254615721404 ], [ -59.23828125, 3.864254615721404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=686, y=1001, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.4140625, 3.864254615721404 ], [ -59.4140625, 4.03961782676843 ], [ -59.23828125, 4.03961782676843 ], [ -59.23828125, 3.864254615721404 ], [ -59.4140625, 3.864254615721404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=343, y=501, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.4140625, 3.513421045640039 ], [ -59.4140625, 3.864254615721404 ], [ -59.0625, 3.864254615721404 ], [ -59.0625, 3.513421045640039 ], [ -59.4140625, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=342, y=501, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 3.513421045640039 ], [ -59.765625, 3.864254615721404 ], [ -59.4140625, 3.864254615721404 ], [ -59.4140625, 3.513421045640039 ], [ -59.765625, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=171, y=251, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 2.81137119333113 ], [ -59.765625, 3.513421045640039 ], [ -59.0625, 3.513421045640039 ], [ -59.0625, 2.81137119333113 ], [ -59.765625, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=170, y=251, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.46875, 2.81137119333113 ], [ -60.46875, 3.513421045640039 ], [ -59.765625, 3.513421045640039 ], [ -59.765625, 2.81137119333113 ], [ -60.46875, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=84, y=125, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, 2.81137119333113 ], [ -61.875, 4.214943141390642 ], [ -60.46875, 4.214943141390642 ], [ -60.46875, 2.81137119333113 ], [ -61.875, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1376, y=2002, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.0625, 3.951940856157592 ], [ -59.0625, 4.03961782676843 ], [ -58.974609375, 4.03961782676843 ], [ -58.974609375, 3.951940856157592 ], [ -59.0625, 3.951940856157592 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1377, y=2003, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.974609375, 3.864254615721404 ], [ -58.974609375, 3.951940856157592 ], [ -58.88671875, 3.951940856157592 ], [ -58.88671875, 3.864254615721404 ], [ -58.974609375, 3.864254615721404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1376, y=2003, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.0625, 3.864254615721404 ], [ -59.0625, 3.951940856157592 ], [ -58.974609375, 3.951940856157592 ], [ -58.974609375, 3.864254615721404 ], [ -59.0625, 3.864254615721404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1380, y=2006, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.7109375, 3.601142320158728 ], [ -58.7109375, 3.688855143147044 ], [ -58.623046875, 3.688855143147044 ], [ -58.623046875, 3.601142320158728 ], [ -58.7109375, 3.601142320158728 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1381, y=2007, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.623046875, 3.513421045640039 ], [ -58.623046875, 3.601142320158728 ], [ -58.53515625, 3.601142320158728 ], [ -58.53515625, 3.513421045640039 ], [ -58.623046875, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1380, y=2007, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.7109375, 3.513421045640039 ], [ -58.7109375, 3.601142320158728 ], [ -58.623046875, 3.601142320158728 ], [ -58.623046875, 3.513421045640039 ], [ -58.7109375, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=688, y=1002, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.0625, 3.688855143147044 ], [ -59.0625, 3.864254615721404 ], [ -58.88671875, 3.864254615721404 ], [ -58.88671875, 3.688855143147044 ], [ -59.0625, 3.688855143147044 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1378, y=2004, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.88671875, 3.776559309876864 ], [ -58.88671875, 3.864254615721404 ], [ -58.798828125, 3.864254615721404 ], [ -58.798828125, 3.776559309876864 ], [ -58.88671875, 3.776559309876864 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1379, y=2005, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.798828125, 3.688855143147044 ], [ -58.798828125, 3.776559309876864 ], [ -58.7109375, 3.776559309876864 ], [ -58.7109375, 3.688855143147044 ], [ -58.798828125, 3.688855143147044 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1378, y=2005, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.88671875, 3.688855143147044 ], [ -58.88671875, 3.776559309876864 ], [ -58.798828125, 3.776559309876864 ], [ -58.798828125, 3.688855143147044 ], [ -58.88671875, 3.688855143147044 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=689, y=1003, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.88671875, 3.513421045640039 ], [ -58.88671875, 3.688855143147044 ], [ -58.7109375, 3.688855143147044 ], [ -58.7109375, 3.513421045640039 ], [ -58.88671875, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=688, y=1003, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.0625, 3.513421045640039 ], [ -59.0625, 3.688855143147044 ], [ -58.88671875, 3.688855143147044 ], [ -58.88671875, 3.513421045640039 ], [ -59.0625, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1384, y=2010, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.359375, 3.25020856165317 ], [ -58.359375, 3.337953961416479 ], [ -58.271484375, 3.337953961416479 ], [ -58.271484375, 3.25020856165317 ], [ -58.359375, 3.25020856165317 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1385, y=2011, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.271484375, 3.162455530237851 ], [ -58.271484375, 3.25020856165317 ], [ -58.18359375, 3.25020856165317 ], [ -58.18359375, 3.162455530237851 ], [ -58.271484375, 3.162455530237851 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1384, y=2011, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.359375, 3.162455530237851 ], [ -58.359375, 3.25020856165317 ], [ -58.271484375, 3.25020856165317 ], [ -58.271484375, 3.162455530237851 ], [ -58.359375, 3.162455530237851 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1388, y=2014, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.0078125, 2.899152698504301 ], [ -58.0078125, 2.98692739333487 ], [ -57.919921875, 2.98692739333487 ], [ -57.919921875, 2.899152698504301 ], [ -58.0078125, 2.899152698504301 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1389, y=2015, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.919921875, 2.81137119333113 ], [ -57.919921875, 2.899152698504301 ], [ -57.83203125, 2.899152698504301 ], [ -57.83203125, 2.81137119333113 ], [ -57.919921875, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1388, y=2015, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.0078125, 2.81137119333113 ], [ -58.0078125, 2.899152698504301 ], [ -57.919921875, 2.899152698504301 ], [ -57.919921875, 2.81137119333113 ], [ -58.0078125, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=692, y=1006, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.359375, 2.98692739333487 ], [ -58.359375, 3.162455530237851 ], [ -58.18359375, 3.162455530237851 ], [ -58.18359375, 2.98692739333487 ], [ -58.359375, 2.98692739333487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1386, y=2012, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.18359375, 3.07469507236968 ], [ -58.18359375, 3.162455530237851 ], [ -58.095703125, 3.162455530237851 ], [ -58.095703125, 3.07469507236968 ], [ -58.18359375, 3.07469507236968 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1387, y=2013, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.095703125, 2.98692739333487 ], [ -58.095703125, 3.07469507236968 ], [ -58.0078125, 3.07469507236968 ], [ -58.0078125, 2.98692739333487 ], [ -58.095703125, 2.98692739333487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1386, y=2013, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.18359375, 2.98692739333487 ], [ -58.18359375, 3.07469507236968 ], [ -58.095703125, 3.07469507236968 ], [ -58.095703125, 2.98692739333487 ], [ -58.18359375, 2.98692739333487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=693, y=1007, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.18359375, 2.81137119333113 ], [ -58.18359375, 2.98692739333487 ], [ -58.0078125, 2.98692739333487 ], [ -58.0078125, 2.81137119333113 ], [ -58.18359375, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=692, y=1007, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.359375, 2.81137119333113 ], [ -58.359375, 2.98692739333487 ], [ -58.18359375, 2.98692739333487 ], [ -58.18359375, 2.81137119333113 ], [ -58.359375, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=344, y=502, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.0625, 3.162455530237851 ], [ -59.0625, 3.513421045640039 ], [ -58.7109375, 3.513421045640039 ], [ -58.7109375, 3.162455530237851 ], [ -59.0625, 3.162455530237851 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=690, y=1004, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.7109375, 3.337953961416479 ], [ -58.7109375, 3.513421045640039 ], [ -58.53515625, 3.513421045640039 ], [ -58.53515625, 3.337953961416479 ], [ -58.7109375, 3.337953961416479 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1382, y=2008, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.53515625, 3.425691524418064 ], [ -58.53515625, 3.513421045640039 ], [ -58.447265625, 3.513421045640039 ], [ -58.447265625, 3.425691524418064 ], [ -58.53515625, 3.425691524418064 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1383, y=2009, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.447265625, 3.337953961416479 ], [ -58.447265625, 3.425691524418064 ], [ -58.359375, 3.425691524418064 ], [ -58.359375, 3.337953961416479 ], [ -58.447265625, 3.337953961416479 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1382, y=2009, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.53515625, 3.337953961416479 ], [ -58.53515625, 3.425691524418064 ], [ -58.447265625, 3.425691524418064 ], [ -58.447265625, 3.337953961416479 ], [ -58.53515625, 3.337953961416479 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=691, y=1005, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.53515625, 3.162455530237851 ], [ -58.53515625, 3.337953961416479 ], [ -58.359375, 3.337953961416479 ], [ -58.359375, 3.162455530237851 ], [ -58.53515625, 3.162455530237851 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=690, y=1005, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.7109375, 3.162455530237851 ], [ -58.7109375, 3.337953961416479 ], [ -58.53515625, 3.337953961416479 ], [ -58.53515625, 3.162455530237851 ], [ -58.7109375, 3.162455530237851 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=345, y=503, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.7109375, 2.81137119333113 ], [ -58.7109375, 3.162455530237851 ], [ -58.359375, 3.162455530237851 ], [ -58.359375, 2.81137119333113 ], [ -58.7109375, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=344, y=503, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.0625, 2.81137119333113 ], [ -59.0625, 3.162455530237851 ], [ -58.7109375, 3.162455530237851 ], [ -58.7109375, 2.81137119333113 ], [ -59.0625, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=172, y=252, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.0625, 2.108898659243132 ], [ -59.0625, 2.81137119333113 ], [ -58.359375, 2.81137119333113 ], [ -58.359375, 2.108898659243132 ], [ -59.0625, 2.108898659243132 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=346, y=504, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.359375, 2.460181181021003 ], [ -58.359375, 2.81137119333113 ], [ -58.0078125, 2.81137119333113 ], [ -58.0078125, 2.460181181021003 ], [ -58.359375, 2.460181181021003 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=694, y=1008, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.0078125, 2.635788574166606 ], [ -58.0078125, 2.81137119333113 ], [ -57.83203125, 2.81137119333113 ], [ -57.83203125, 2.635788574166606 ], [ -58.0078125, 2.635788574166606 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1390, y=2016, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.83203125, 2.72358308334839 ], [ -57.83203125, 2.81137119333113 ], [ -57.744140625, 2.81137119333113 ], [ -57.744140625, 2.72358308334839 ], [ -57.83203125, 2.72358308334839 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1391, y=2017, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.744140625, 2.635788574166606 ], [ -57.744140625, 2.72358308334839 ], [ -57.65625, 2.72358308334839 ], [ -57.65625, 2.635788574166606 ], [ -57.744140625, 2.635788574166606 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1390, y=2017, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.83203125, 2.635788574166606 ], [ -57.83203125, 2.72358308334839 ], [ -57.744140625, 2.72358308334839 ], [ -57.744140625, 2.635788574166606 ], [ -57.83203125, 2.635788574166606 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=695, y=1009, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.83203125, 2.460181181021003 ], [ -57.83203125, 2.635788574166606 ], [ -57.65625, 2.635788574166606 ], [ -57.65625, 2.460181181021003 ], [ -57.83203125, 2.460181181021003 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=694, y=1009, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.0078125, 2.460181181021003 ], [ -58.0078125, 2.635788574166606 ], [ -57.83203125, 2.635788574166606 ], [ -57.83203125, 2.460181181021003 ], [ -58.0078125, 2.460181181021003 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=347, y=505, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.0078125, 2.108898659243132 ], [ -58.0078125, 2.460181181021003 ], [ -57.65625, 2.460181181021003 ], [ -57.65625, 2.108898659243132 ], [ -58.0078125, 2.108898659243132 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=346, y=505, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.359375, 2.108898659243132 ], [ -58.359375, 2.460181181021003 ], [ -58.0078125, 2.460181181021003 ], [ -58.0078125, 2.108898659243132 ], [ -58.359375, 2.108898659243132 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=173, y=253, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.359375, 1.406108835435157 ], [ -58.359375, 2.108898659243132 ], [ -57.65625, 2.108898659243132 ], [ -57.65625, 1.406108835435157 ], [ -58.359375, 1.406108835435157 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=172, y=253, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.0625, 1.406108835435157 ], [ -59.0625, 2.108898659243132 ], [ -58.359375, 2.108898659243132 ], [ -58.359375, 1.406108835435157 ], [ -59.0625, 1.406108835435157 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1392, y=2018, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.65625, 2.54798787147138 ], [ -57.65625, 2.635788574166606 ], [ -57.568359375, 2.635788574166606 ], [ -57.568359375, 2.54798787147138 ], [ -57.65625, 2.54798787147138 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1393, y=2019, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.568359375, 2.460181181021003 ], [ -57.568359375, 2.54798787147138 ], [ -57.48046875, 2.54798787147138 ], [ -57.48046875, 2.460181181021003 ], [ -57.568359375, 2.460181181021003 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1392, y=2019, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.65625, 2.460181181021003 ], [ -57.65625, 2.54798787147138 ], [ -57.568359375, 2.54798787147138 ], [ -57.568359375, 2.460181181021003 ], [ -57.65625, 2.460181181021003 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1396, y=2022, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.3046875, 2.196727241761665 ], [ -57.3046875, 2.284550660236963 ], [ -57.216796875, 2.284550660236963 ], [ -57.216796875, 2.196727241761665 ], [ -57.3046875, 2.196727241761665 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1397, y=2023, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.216796875, 2.108898659243132 ], [ -57.216796875, 2.196727241761665 ], [ -57.12890625, 2.196727241761665 ], [ -57.12890625, 2.108898659243132 ], [ -57.216796875, 2.108898659243132 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1396, y=2023, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.3046875, 2.108898659243132 ], [ -57.3046875, 2.196727241761665 ], [ -57.216796875, 2.196727241761665 ], [ -57.216796875, 2.108898659243132 ], [ -57.3046875, 2.108898659243132 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=696, y=1010, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.65625, 2.284550660236963 ], [ -57.65625, 2.460181181021003 ], [ -57.48046875, 2.460181181021003 ], [ -57.48046875, 2.284550660236963 ], [ -57.65625, 2.284550660236963 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1394, y=2020, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.48046875, 2.372368708644049 ], [ -57.48046875, 2.460181181021003 ], [ -57.392578125, 2.460181181021003 ], [ -57.392578125, 2.372368708644049 ], [ -57.48046875, 2.372368708644049 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1395, y=2021, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.392578125, 2.284550660236963 ], [ -57.392578125, 2.372368708644049 ], [ -57.3046875, 2.372368708644049 ], [ -57.3046875, 2.284550660236963 ], [ -57.392578125, 2.284550660236963 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1394, y=2021, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.48046875, 2.284550660236963 ], [ -57.48046875, 2.372368708644049 ], [ -57.392578125, 2.372368708644049 ], [ -57.392578125, 2.284550660236963 ], [ -57.48046875, 2.284550660236963 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=697, y=1011, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.48046875, 2.108898659243132 ], [ -57.48046875, 2.284550660236963 ], [ -57.3046875, 2.284550660236963 ], [ -57.3046875, 2.108898659243132 ], [ -57.48046875, 2.108898659243132 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=696, y=1011, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.65625, 2.108898659243132 ], [ -57.65625, 2.284550660236963 ], [ -57.48046875, 2.284550660236963 ], [ -57.48046875, 2.108898659243132 ], [ -57.65625, 2.108898659243132 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1400, y=2026, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, 1.845383988573192 ], [ -56.953125, 1.933226826477117 ], [ -56.865234375, 1.933226826477117 ], [ -56.865234375, 1.845383988573192 ], [ -56.953125, 1.845383988573192 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1401, y=2027, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.865234375, 1.757536811308316 ], [ -56.865234375, 1.845383988573192 ], [ -56.77734375, 1.845383988573192 ], [ -56.77734375, 1.757536811308316 ], [ -56.865234375, 1.757536811308316 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1400, y=2027, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, 1.757536811308316 ], [ -56.953125, 1.845383988573192 ], [ -56.865234375, 1.845383988573192 ], [ -56.865234375, 1.757536811308316 ], [ -56.953125, 1.757536811308316 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1404, y=2030, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.6015625, 1.49397130662932 ], [ -56.6015625, 1.581830263960642 ], [ -56.513671875, 1.581830263960642 ], [ -56.513671875, 1.49397130662932 ], [ -56.6015625, 1.49397130662932 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1405, y=2031, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.513671875, 1.406108835435157 ], [ -56.513671875, 1.49397130662932 ], [ -56.42578125, 1.49397130662932 ], [ -56.42578125, 1.406108835435157 ], [ -56.513671875, 1.406108835435157 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1404, y=2031, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.6015625, 1.406108835435157 ], [ -56.6015625, 1.49397130662932 ], [ -56.513671875, 1.49397130662932 ], [ -56.513671875, 1.406108835435157 ], [ -56.6015625, 1.406108835435157 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=700, y=1014, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, 1.581830263960642 ], [ -56.953125, 1.757536811308316 ], [ -56.77734375, 1.757536811308316 ], [ -56.77734375, 1.581830263960642 ], [ -56.953125, 1.581830263960642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1402, y=2028, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.77734375, 1.669685500986579 ], [ -56.77734375, 1.757536811308316 ], [ -56.689453125, 1.757536811308316 ], [ -56.689453125, 1.669685500986579 ], [ -56.77734375, 1.669685500986579 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1403, y=2029, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.689453125, 1.581830263960642 ], [ -56.689453125, 1.669685500986579 ], [ -56.6015625, 1.669685500986579 ], [ -56.6015625, 1.581830263960642 ], [ -56.689453125, 1.581830263960642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1402, y=2029, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.77734375, 1.581830263960642 ], [ -56.77734375, 1.669685500986579 ], [ -56.689453125, 1.669685500986579 ], [ -56.689453125, 1.581830263960642 ], [ -56.77734375, 1.581830263960642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=701, y=1015, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.77734375, 1.406108835435157 ], [ -56.77734375, 1.581830263960642 ], [ -56.6015625, 1.581830263960642 ], [ -56.6015625, 1.406108835435157 ], [ -56.77734375, 1.406108835435157 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=700, y=1015, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, 1.406108835435157 ], [ -56.953125, 1.581830263960642 ], [ -56.77734375, 1.581830263960642 ], [ -56.77734375, 1.406108835435157 ], [ -56.953125, 1.406108835435157 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=348, y=506, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.65625, 1.757536811308316 ], [ -57.65625, 2.108898659243132 ], [ -57.3046875, 2.108898659243132 ], [ -57.3046875, 1.757536811308316 ], [ -57.65625, 1.757536811308316 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=698, y=1012, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.3046875, 1.933226826477117 ], [ -57.3046875, 2.108898659243132 ], [ -57.12890625, 2.108898659243132 ], [ -57.12890625, 1.933226826477117 ], [ -57.3046875, 1.933226826477117 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1398, y=2024, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.12890625, 2.021065118766994 ], [ -57.12890625, 2.108898659243132 ], [ -57.041015625, 2.108898659243132 ], [ -57.041015625, 2.021065118766994 ], [ -57.12890625, 2.021065118766994 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1399, y=2025, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.041015625, 1.933226826477117 ], [ -57.041015625, 2.021065118766994 ], [ -56.953125, 2.021065118766994 ], [ -56.953125, 1.933226826477117 ], [ -57.041015625, 1.933226826477117 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1398, y=2025, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.12890625, 1.933226826477117 ], [ -57.12890625, 2.021065118766994 ], [ -57.041015625, 2.021065118766994 ], [ -57.041015625, 1.933226826477117 ], [ -57.12890625, 1.933226826477117 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=699, y=1013, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.12890625, 1.757536811308316 ], [ -57.12890625, 1.933226826477117 ], [ -56.953125, 1.933226826477117 ], [ -56.953125, 1.757536811308316 ], [ -57.12890625, 1.757536811308316 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=698, y=1013, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.3046875, 1.757536811308316 ], [ -57.3046875, 1.933226826477117 ], [ -57.12890625, 1.933226826477117 ], [ -57.12890625, 1.757536811308316 ], [ -57.3046875, 1.757536811308316 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=349, y=507, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.3046875, 1.406108835435157 ], [ -57.3046875, 1.757536811308316 ], [ -56.953125, 1.757536811308316 ], [ -56.953125, 1.406108835435157 ], [ -57.3046875, 1.406108835435157 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=348, y=507, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.65625, 1.406108835435157 ], [ -57.65625, 1.757536811308316 ], [ -57.3046875, 1.757536811308316 ], [ -57.3046875, 1.406108835435157 ], [ -57.65625, 1.406108835435157 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=174, y=254, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.65625, 0.703107352436487 ], [ -57.65625, 1.406108835435157 ], [ -56.953125, 1.406108835435157 ], [ -56.953125, 0.703107352436487 ], [ -57.65625, 0.703107352436487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=350, y=508, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, 1.054627942275884 ], [ -56.953125, 1.406108835435157 ], [ -56.6015625, 1.406108835435157 ], [ -56.6015625, 1.054627942275884 ], [ -56.953125, 1.054627942275884 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=702, y=1016, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.6015625, 1.230374177432607 ], [ -56.6015625, 1.406108835435157 ], [ -56.42578125, 1.406108835435157 ], [ -56.42578125, 1.230374177432607 ], [ -56.6015625, 1.230374177432607 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1406, y=2032, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.42578125, 1.318243056862006 ], [ -56.42578125, 1.406108835435157 ], [ -56.337890625, 1.406108835435157 ], [ -56.337890625, 1.318243056862006 ], [ -56.42578125, 1.318243056862006 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1407, y=2033, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.337890625, 1.230374177432607 ], [ -56.337890625, 1.318243056862006 ], [ -56.25, 1.318243056862006 ], [ -56.25, 1.230374177432607 ], [ -56.337890625, 1.230374177432607 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1406, y=2033, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.42578125, 1.230374177432607 ], [ -56.42578125, 1.318243056862006 ], [ -56.337890625, 1.318243056862006 ], [ -56.337890625, 1.230374177432607 ], [ -56.42578125, 1.230374177432607 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=703, y=1017, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.42578125, 1.054627942275884 ], [ -56.42578125, 1.230374177432607 ], [ -56.25, 1.230374177432607 ], [ -56.25, 1.054627942275884 ], [ -56.42578125, 1.054627942275884 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=702, y=1017, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.6015625, 1.054627942275884 ], [ -56.6015625, 1.230374177432607 ], [ -56.42578125, 1.230374177432607 ], [ -56.42578125, 1.054627942275884 ], [ -56.6015625, 1.054627942275884 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=351, y=509, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.6015625, 0.703107352436487 ], [ -56.6015625, 1.054627942275884 ], [ -56.25, 1.054627942275884 ], [ -56.25, 0.703107352436487 ], [ -56.6015625, 0.703107352436487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=350, y=509, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, 0.703107352436487 ], [ -56.953125, 1.054627942275884 ], [ -56.6015625, 1.054627942275884 ], [ -56.6015625, 0.703107352436487 ], [ -56.953125, 0.703107352436487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=175, y=255, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, 0.0 ], [ -56.953125, 0.703107352436487 ], [ -56.25, 0.703107352436487 ], [ -56.25, 0.0 ], [ -56.953125, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=174, y=255, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.65625, 0.0 ], [ -57.65625, 0.703107352436487 ], [ -56.953125, 0.703107352436487 ], [ -56.953125, 0.0 ], [ -57.65625, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=86, y=127, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.0625, 0.0 ], [ -59.0625, 1.406108835435157 ], [ -57.65625, 1.406108835435157 ], [ -57.65625, 0.0 ], [ -59.0625, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=42, y=63, z=7)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, 0.0 ], [ -61.875, 2.81137119333113 ], [ -59.0625, 2.81137119333113 ], [ -59.0625, 0.0 ], [ -61.875, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1311, y=1999, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.775390625, 4.214943141390642 ], [ -64.775390625, 4.302591077119675 ], [ -64.6875, 4.302591077119675 ], [ -64.6875, 4.214943141390642 ], [ -64.775390625, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1310, y=1999, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.86328125, 4.214943141390642 ], [ -64.86328125, 4.302591077119675 ], [ -64.775390625, 4.302591077119675 ], [ -64.775390625, 4.214943141390642 ], [ -64.86328125, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1309, y=1999, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.951171875, 4.214943141390642 ], [ -64.951171875, 4.302591077119675 ], [ -64.86328125, 4.302591077119675 ], [ -64.86328125, 4.214943141390642 ], [ -64.951171875, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1308, y=1999, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.0390625, 4.214943141390642 ], [ -65.0390625, 4.302591077119675 ], [ -64.951171875, 4.302591077119675 ], [ -64.951171875, 4.214943141390642 ], [ -65.0390625, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1307, y=1999, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.126953125, 4.214943141390642 ], [ -65.126953125, 4.302591077119675 ], [ -65.0390625, 4.302591077119675 ], [ -65.0390625, 4.214943141390642 ], [ -65.126953125, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1306, y=1999, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.21484375, 4.214943141390642 ], [ -65.21484375, 4.302591077119675 ], [ -65.126953125, 4.302591077119675 ], [ -65.126953125, 4.214943141390642 ], [ -65.21484375, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1297, y=2001, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.005859375, 4.03961782676843 ], [ -66.005859375, 4.127285323245364 ], [ -65.91796875, 4.127285323245364 ], [ -65.91796875, 4.03961782676843 ], [ -66.005859375, 4.03961782676843 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1296, y=2001, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.09375, 4.03961782676843 ], [ -66.09375, 4.127285323245364 ], [ -66.005859375, 4.127285323245364 ], [ -66.005859375, 4.03961782676843 ], [ -66.09375, 4.03961782676843 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1299, y=2001, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.830078125, 4.03961782676843 ], [ -65.830078125, 4.127285323245364 ], [ -65.7421875, 4.127285323245364 ], [ -65.7421875, 4.03961782676843 ], [ -65.830078125, 4.03961782676843 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1298, y=2001, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.91796875, 4.03961782676843 ], [ -65.91796875, 4.127285323245364 ], [ -65.830078125, 4.127285323245364 ], [ -65.830078125, 4.03961782676843 ], [ -65.91796875, 4.03961782676843 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=649, y=1001, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.91796875, 3.864254615721404 ], [ -65.91796875, 4.03961782676843 ], [ -65.7421875, 4.03961782676843 ], [ -65.7421875, 3.864254615721404 ], [ -65.91796875, 3.864254615721404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=648, y=1001, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.09375, 3.864254615721404 ], [ -66.09375, 4.03961782676843 ], [ -65.91796875, 4.03961782676843 ], [ -65.91796875, 3.864254615721404 ], [ -66.09375, 3.864254615721404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1301, y=2000, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.654296875, 4.127285323245364 ], [ -65.654296875, 4.214943141390642 ], [ -65.56640625, 4.214943141390642 ], [ -65.56640625, 4.127285323245364 ], [ -65.654296875, 4.127285323245364 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1301, y=2001, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.654296875, 4.03961782676843 ], [ -65.654296875, 4.127285323245364 ], [ -65.56640625, 4.127285323245364 ], [ -65.56640625, 4.03961782676843 ], [ -65.654296875, 4.03961782676843 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1300, y=2001, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.7421875, 4.03961782676843 ], [ -65.7421875, 4.127285323245364 ], [ -65.654296875, 4.127285323245364 ], [ -65.654296875, 4.03961782676843 ], [ -65.7421875, 4.03961782676843 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=651, y=1000, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.56640625, 4.03961782676843 ], [ -65.56640625, 4.214943141390642 ], [ -65.390625, 4.214943141390642 ], [ -65.390625, 4.03961782676843 ], [ -65.56640625, 4.03961782676843 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=651, y=1001, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.56640625, 3.864254615721404 ], [ -65.56640625, 4.03961782676843 ], [ -65.390625, 4.03961782676843 ], [ -65.390625, 3.864254615721404 ], [ -65.56640625, 3.864254615721404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=650, y=1001, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.7421875, 3.864254615721404 ], [ -65.7421875, 4.03961782676843 ], [ -65.56640625, 4.03961782676843 ], [ -65.56640625, 3.864254615721404 ], [ -65.7421875, 3.864254615721404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=325, y=501, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.7421875, 3.513421045640039 ], [ -65.7421875, 3.864254615721404 ], [ -65.390625, 3.864254615721404 ], [ -65.390625, 3.513421045640039 ], [ -65.7421875, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=324, y=501, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.09375, 3.513421045640039 ], [ -66.09375, 3.864254615721404 ], [ -65.7421875, 3.864254615721404 ], [ -65.7421875, 3.513421045640039 ], [ -66.09375, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=163, y=250, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.390625, 3.513421045640039 ], [ -65.390625, 4.214943141390642 ], [ -64.6875, 4.214943141390642 ], [ -64.6875, 3.513421045640039 ], [ -65.390625, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=163, y=251, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.390625, 2.81137119333113 ], [ -65.390625, 3.513421045640039 ], [ -64.6875, 3.513421045640039 ], [ -64.6875, 2.81137119333113 ], [ -65.390625, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=162, y=251, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.09375, 2.81137119333113 ], [ -66.09375, 3.513421045640039 ], [ -65.390625, 3.513421045640039 ], [ -65.390625, 2.81137119333113 ], [ -66.09375, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1287, y=2003, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.884765625, 3.864254615721404 ], [ -66.884765625, 3.951940856157592 ], [ -66.796875, 3.951940856157592 ], [ -66.796875, 3.864254615721404 ], [ -66.884765625, 3.864254615721404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1286, y=2003, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.97265625, 3.864254615721404 ], [ -66.97265625, 3.951940856157592 ], [ -66.884765625, 3.951940856157592 ], [ -66.884765625, 3.864254615721404 ], [ -66.97265625, 3.864254615721404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1285, y=2003, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060546875, 3.864254615721404 ], [ -67.060546875, 3.951940856157592 ], [ -66.97265625, 3.951940856157592 ], [ -66.97265625, 3.864254615721404 ], [ -67.060546875, 3.864254615721404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=321, y=501, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.1484375, 3.513421045640039 ], [ -67.1484375, 3.864254615721404 ], [ -66.796875, 3.864254615721404 ], [ -66.796875, 3.513421045640039 ], [ -67.1484375, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=320, y=501, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 3.513421045640039 ], [ -67.5, 3.864254615721404 ], [ -67.1484375, 3.864254615721404 ], [ -67.1484375, 3.513421045640039 ], [ -67.5, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1291, y=2002, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.533203125, 3.951940856157592 ], [ -66.533203125, 4.03961782676843 ], [ -66.4453125, 4.03961782676843 ], [ -66.4453125, 3.951940856157592 ], [ -66.533203125, 3.951940856157592 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1291, y=2003, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.533203125, 3.864254615721404 ], [ -66.533203125, 3.951940856157592 ], [ -66.4453125, 3.951940856157592 ], [ -66.4453125, 3.864254615721404 ], [ -66.533203125, 3.864254615721404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1290, y=2003, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.62109375, 3.864254615721404 ], [ -66.62109375, 3.951940856157592 ], [ -66.533203125, 3.951940856157592 ], [ -66.533203125, 3.864254615721404 ], [ -66.62109375, 3.864254615721404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1289, y=2003, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.708984375, 3.864254615721404 ], [ -66.708984375, 3.951940856157592 ], [ -66.62109375, 3.951940856157592 ], [ -66.62109375, 3.864254615721404 ], [ -66.708984375, 3.864254615721404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1288, y=2003, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.796875, 3.864254615721404 ], [ -66.796875, 3.951940856157592 ], [ -66.708984375, 3.951940856157592 ], [ -66.708984375, 3.864254615721404 ], [ -66.796875, 3.864254615721404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=647, y=1001, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.26953125, 3.864254615721404 ], [ -66.26953125, 4.03961782676843 ], [ -66.09375, 4.03961782676843 ], [ -66.09375, 3.864254615721404 ], [ -66.26953125, 3.864254615721404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=646, y=1001, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.4453125, 3.864254615721404 ], [ -66.4453125, 4.03961782676843 ], [ -66.26953125, 4.03961782676843 ], [ -66.26953125, 3.864254615721404 ], [ -66.4453125, 3.864254615721404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=323, y=501, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.4453125, 3.513421045640039 ], [ -66.4453125, 3.864254615721404 ], [ -66.09375, 3.864254615721404 ], [ -66.09375, 3.513421045640039 ], [ -66.4453125, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=322, y=501, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.796875, 3.513421045640039 ], [ -66.796875, 3.864254615721404 ], [ -66.4453125, 3.864254615721404 ], [ -66.4453125, 3.513421045640039 ], [ -66.796875, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=161, y=251, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.796875, 2.81137119333113 ], [ -66.796875, 3.513421045640039 ], [ -66.09375, 3.513421045640039 ], [ -66.09375, 2.81137119333113 ], [ -66.796875, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=160, y=251, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 2.81137119333113 ], [ -67.5, 3.513421045640039 ], [ -66.796875, 3.513421045640039 ], [ -66.796875, 2.81137119333113 ], [ -67.5, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=331, y=499, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.6328125, 4.214943141390642 ], [ -63.6328125, 4.56547355071028 ], [ -63.28125, 4.56547355071028 ], [ -63.28125, 4.214943141390642 ], [ -63.6328125, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1321, y=1997, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.896484375, 4.390228926463391 ], [ -63.896484375, 4.477856485570588 ], [ -63.80859375, 4.477856485570588 ], [ -63.80859375, 4.390228926463391 ], [ -63.896484375, 4.390228926463391 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1320, y=1997, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.984375, 4.390228926463391 ], [ -63.984375, 4.477856485570588 ], [ -63.896484375, 4.477856485570588 ], [ -63.896484375, 4.390228926463391 ], [ -63.984375, 4.390228926463391 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=661, y=998, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.80859375, 4.390228926463391 ], [ -63.80859375, 4.56547355071028 ], [ -63.6328125, 4.56547355071028 ], [ -63.6328125, 4.390228926463391 ], [ -63.80859375, 4.390228926463391 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=661, y=999, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.80859375, 4.214943141390642 ], [ -63.80859375, 4.390228926463391 ], [ -63.6328125, 4.390228926463391 ], [ -63.6328125, 4.214943141390642 ], [ -63.80859375, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=660, y=999, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.984375, 4.214943141390642 ], [ -63.984375, 4.390228926463391 ], [ -63.80859375, 4.390228926463391 ], [ -63.80859375, 4.214943141390642 ], [ -63.984375, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1317, y=1997, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.248046875, 4.390228926463391 ], [ -64.248046875, 4.477856485570588 ], [ -64.16015625, 4.477856485570588 ], [ -64.16015625, 4.390228926463391 ], [ -64.248046875, 4.390228926463391 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1319, y=1997, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.072265625, 4.390228926463391 ], [ -64.072265625, 4.477856485570588 ], [ -63.984375, 4.477856485570588 ], [ -63.984375, 4.390228926463391 ], [ -64.072265625, 4.390228926463391 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1318, y=1997, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.16015625, 4.390228926463391 ], [ -64.16015625, 4.477856485570588 ], [ -64.072265625, 4.477856485570588 ], [ -64.072265625, 4.390228926463391 ], [ -64.16015625, 4.390228926463391 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=659, y=999, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.16015625, 4.214943141390642 ], [ -64.16015625, 4.390228926463391 ], [ -63.984375, 4.390228926463391 ], [ -63.984375, 4.214943141390642 ], [ -64.16015625, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=658, y=999, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.3359375, 4.214943141390642 ], [ -64.3359375, 4.390228926463391 ], [ -64.16015625, 4.390228926463391 ], [ -64.16015625, 4.214943141390642 ], [ -64.3359375, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=657, y=999, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.51171875, 4.214943141390642 ], [ -64.51171875, 4.390228926463391 ], [ -64.3359375, 4.390228926463391 ], [ -64.3359375, 4.214943141390642 ], [ -64.51171875, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=656, y=999, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.6875, 4.214943141390642 ], [ -64.6875, 4.390228926463391 ], [ -64.51171875, 4.390228926463391 ], [ -64.51171875, 4.214943141390642 ], [ -64.6875, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1339, y=1993, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.314453125, 4.740675384778369 ], [ -62.314453125, 4.828259746866975 ], [ -62.2265625, 4.828259746866975 ], [ -62.2265625, 4.740675384778369 ], [ -62.314453125, 4.740675384778369 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1338, y=1993, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.40234375, 4.740675384778369 ], [ -62.40234375, 4.828259746866975 ], [ -62.314453125, 4.828259746866975 ], [ -62.314453125, 4.740675384778369 ], [ -62.40234375, 4.740675384778369 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=669, y=997, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.40234375, 4.56547355071028 ], [ -62.40234375, 4.740675384778369 ], [ -62.2265625, 4.740675384778369 ], [ -62.2265625, 4.56547355071028 ], [ -62.40234375, 4.56547355071028 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=668, y=997, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.578125, 4.56547355071028 ], [ -62.578125, 4.740675384778369 ], [ -62.40234375, 4.740675384778369 ], [ -62.40234375, 4.56547355071028 ], [ -62.578125, 4.56547355071028 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1341, y=1993, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.138671875, 4.740675384778369 ], [ -62.138671875, 4.828259746866975 ], [ -62.05078125, 4.828259746866975 ], [ -62.05078125, 4.740675384778369 ], [ -62.138671875, 4.740675384778369 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1340, y=1993, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.2265625, 4.740675384778369 ], [ -62.2265625, 4.828259746866975 ], [ -62.138671875, 4.828259746866975 ], [ -62.138671875, 4.740675384778369 ], [ -62.2265625, 4.740675384778369 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1343, y=1992, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.962890625, 4.828259746866975 ], [ -61.962890625, 4.915832801313166 ], [ -61.875, 4.915832801313166 ], [ -61.875, 4.828259746866975 ], [ -61.962890625, 4.828259746866975 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1343, y=1993, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.962890625, 4.740675384778369 ], [ -61.962890625, 4.828259746866975 ], [ -61.875, 4.828259746866975 ], [ -61.875, 4.740675384778369 ], [ -61.962890625, 4.740675384778369 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1342, y=1993, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.05078125, 4.740675384778369 ], [ -62.05078125, 4.828259746866975 ], [ -61.962890625, 4.828259746866975 ], [ -61.962890625, 4.740675384778369 ], [ -62.05078125, 4.740675384778369 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=671, y=997, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.05078125, 4.56547355071028 ], [ -62.05078125, 4.740675384778369 ], [ -61.875, 4.740675384778369 ], [ -61.875, 4.56547355071028 ], [ -62.05078125, 4.56547355071028 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=670, y=997, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.2265625, 4.56547355071028 ], [ -62.2265625, 4.740675384778369 ], [ -62.05078125, 4.740675384778369 ], [ -62.05078125, 4.56547355071028 ], [ -62.2265625, 4.56547355071028 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=335, y=499, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.2265625, 4.214943141390642 ], [ -62.2265625, 4.56547355071028 ], [ -61.875, 4.56547355071028 ], [ -61.875, 4.214943141390642 ], [ -62.2265625, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=334, y=499, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.578125, 4.214943141390642 ], [ -62.578125, 4.56547355071028 ], [ -62.2265625, 4.56547355071028 ], [ -62.2265625, 4.214943141390642 ], [ -62.578125, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1331, y=1995, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.017578125, 4.56547355071028 ], [ -63.017578125, 4.653079918274045 ], [ -62.9296875, 4.653079918274045 ], [ -62.9296875, 4.56547355071028 ], [ -63.017578125, 4.56547355071028 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1330, y=1995, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.10546875, 4.56547355071028 ], [ -63.10546875, 4.653079918274045 ], [ -63.017578125, 4.653079918274045 ], [ -63.017578125, 4.56547355071028 ], [ -63.10546875, 4.56547355071028 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1329, y=1995, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.193359375, 4.56547355071028 ], [ -63.193359375, 4.653079918274045 ], [ -63.10546875, 4.653079918274045 ], [ -63.10546875, 4.56547355071028 ], [ -63.193359375, 4.56547355071028 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1328, y=1995, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.28125, 4.56547355071028 ], [ -63.28125, 4.653079918274045 ], [ -63.193359375, 4.653079918274045 ], [ -63.193359375, 4.56547355071028 ], [ -63.28125, 4.56547355071028 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=667, y=997, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.75390625, 4.56547355071028 ], [ -62.75390625, 4.740675384778369 ], [ -62.578125, 4.740675384778369 ], [ -62.578125, 4.56547355071028 ], [ -62.75390625, 4.56547355071028 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1333, y=1994, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.841796875, 4.653079918274045 ], [ -62.841796875, 4.740675384778369 ], [ -62.75390625, 4.740675384778369 ], [ -62.75390625, 4.653079918274045 ], [ -62.841796875, 4.653079918274045 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1333, y=1995, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.841796875, 4.56547355071028 ], [ -62.841796875, 4.653079918274045 ], [ -62.75390625, 4.653079918274045 ], [ -62.75390625, 4.56547355071028 ], [ -62.841796875, 4.56547355071028 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1332, y=1995, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.9296875, 4.56547355071028 ], [ -62.9296875, 4.653079918274045 ], [ -62.841796875, 4.653079918274045 ], [ -62.841796875, 4.56547355071028 ], [ -62.9296875, 4.56547355071028 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=333, y=499, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.9296875, 4.214943141390642 ], [ -62.9296875, 4.56547355071028 ], [ -62.578125, 4.56547355071028 ], [ -62.578125, 4.214943141390642 ], [ -62.9296875, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=332, y=499, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.28125, 4.214943141390642 ], [ -63.28125, 4.56547355071028 ], [ -62.9296875, 4.56547355071028 ], [ -62.9296875, 4.214943141390642 ], [ -63.28125, 4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=83, y=125, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.28125, 2.81137119333113 ], [ -63.28125, 4.214943141390642 ], [ -61.875, 4.214943141390642 ], [ -61.875, 2.81137119333113 ], [ -63.28125, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=82, y=125, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.6875, 2.81137119333113 ], [ -64.6875, 4.214943141390642 ], [ -63.28125, 4.214943141390642 ], [ -63.28125, 2.81137119333113 ], [ -64.6875, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=41, y=63, z=7)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.6875, 0.0 ], [ -64.6875, 2.81137119333113 ], [ -61.875, 2.81137119333113 ], [ -61.875, 0.0 ], [ -64.6875, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=40, y=63, z=7)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, 0.0 ], [ -67.5, 2.81137119333113 ], [ -64.6875, 2.81137119333113 ], [ -64.6875, 0.0 ], [ -67.5, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1243, y=2011, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.751953125, 3.162455530237851 ], [ -70.751953125, 3.25020856165317 ], [ -70.6640625, 3.25020856165317 ], [ -70.6640625, 3.162455530237851 ], [ -70.751953125, 3.162455530237851 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1247, y=2011, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.400390625, 3.162455530237851 ], [ -70.400390625, 3.25020856165317 ], [ -70.3125, 3.25020856165317 ], [ -70.3125, 3.162455530237851 ], [ -70.400390625, 3.162455530237851 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1246, y=2011, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.48828125, 3.162455530237851 ], [ -70.48828125, 3.25020856165317 ], [ -70.400390625, 3.25020856165317 ], [ -70.400390625, 3.162455530237851 ], [ -70.48828125, 3.162455530237851 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1245, y=2011, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.576171875, 3.162455530237851 ], [ -70.576171875, 3.25020856165317 ], [ -70.48828125, 3.25020856165317 ], [ -70.48828125, 3.162455530237851 ], [ -70.576171875, 3.162455530237851 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1244, y=2011, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.6640625, 3.162455530237851 ], [ -70.6640625, 3.25020856165317 ], [ -70.576171875, 3.25020856165317 ], [ -70.576171875, 3.162455530237851 ], [ -70.6640625, 3.162455530237851 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=311, y=503, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.6640625, 2.81137119333113 ], [ -70.6640625, 3.162455530237851 ], [ -70.3125, 3.162455530237851 ], [ -70.3125, 2.81137119333113 ], [ -70.6640625, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=310, y=503, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.015625, 2.81137119333113 ], [ -71.015625, 3.162455530237851 ], [ -70.6640625, 3.162455530237851 ], [ -70.6640625, 2.81137119333113 ], [ -71.015625, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1237, y=2013, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.279296875, 2.98692739333487 ], [ -71.279296875, 3.07469507236968 ], [ -71.19140625, 3.07469507236968 ], [ -71.19140625, 2.98692739333487 ], [ -71.279296875, 2.98692739333487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1236, y=2013, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.3671875, 2.98692739333487 ], [ -71.3671875, 3.07469507236968 ], [ -71.279296875, 3.07469507236968 ], [ -71.279296875, 2.98692739333487 ], [ -71.3671875, 2.98692739333487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=619, y=1006, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.19140625, 2.98692739333487 ], [ -71.19140625, 3.162455530237851 ], [ -71.015625, 3.162455530237851 ], [ -71.015625, 2.98692739333487 ], [ -71.19140625, 2.98692739333487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=619, y=1007, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.19140625, 2.81137119333113 ], [ -71.19140625, 2.98692739333487 ], [ -71.015625, 2.98692739333487 ], [ -71.015625, 2.81137119333113 ], [ -71.19140625, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=618, y=1007, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.3671875, 2.81137119333113 ], [ -71.3671875, 2.98692739333487 ], [ -71.19140625, 2.98692739333487 ], [ -71.19140625, 2.81137119333113 ], [ -71.3671875, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1233, y=2013, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.630859375, 2.98692739333487 ], [ -71.630859375, 3.07469507236968 ], [ -71.54296875, 3.07469507236968 ], [ -71.54296875, 2.98692739333487 ], [ -71.630859375, 2.98692739333487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1232, y=2013, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.71875, 2.98692739333487 ], [ -71.71875, 3.07469507236968 ], [ -71.630859375, 3.07469507236968 ], [ -71.630859375, 2.98692739333487 ], [ -71.71875, 2.98692739333487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1235, y=2013, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.455078125, 2.98692739333487 ], [ -71.455078125, 3.07469507236968 ], [ -71.3671875, 3.07469507236968 ], [ -71.3671875, 2.98692739333487 ], [ -71.455078125, 2.98692739333487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1234, y=2013, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.54296875, 2.98692739333487 ], [ -71.54296875, 3.07469507236968 ], [ -71.455078125, 3.07469507236968 ], [ -71.455078125, 2.98692739333487 ], [ -71.54296875, 2.98692739333487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=617, y=1007, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.54296875, 2.81137119333113 ], [ -71.54296875, 2.98692739333487 ], [ -71.3671875, 2.98692739333487 ], [ -71.3671875, 2.81137119333113 ], [ -71.54296875, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=616, y=1007, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.71875, 2.81137119333113 ], [ -71.71875, 2.98692739333487 ], [ -71.54296875, 2.98692739333487 ], [ -71.54296875, 2.81137119333113 ], [ -71.71875, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=615, y=1007, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.89453125, 2.81137119333113 ], [ -71.89453125, 2.98692739333487 ], [ -71.71875, 2.98692739333487 ], [ -71.71875, 2.81137119333113 ], [ -71.89453125, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=614, y=1007, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.0703125, 2.81137119333113 ], [ -72.0703125, 2.98692739333487 ], [ -71.89453125, 2.98692739333487 ], [ -71.89453125, 2.81137119333113 ], [ -72.0703125, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1227, y=2014, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.158203125, 2.899152698504301 ], [ -72.158203125, 2.98692739333487 ], [ -72.0703125, 2.98692739333487 ], [ -72.0703125, 2.899152698504301 ], [ -72.158203125, 2.899152698504301 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1227, y=2015, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.158203125, 2.81137119333113 ], [ -72.158203125, 2.899152698504301 ], [ -72.0703125, 2.899152698504301 ], [ -72.0703125, 2.81137119333113 ], [ -72.158203125, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1226, y=2015, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.24609375, 2.81137119333113 ], [ -72.24609375, 2.899152698504301 ], [ -72.158203125, 2.899152698504301 ], [ -72.158203125, 2.81137119333113 ], [ -72.24609375, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1225, y=2015, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.333984375, 2.81137119333113 ], [ -72.333984375, 2.899152698504301 ], [ -72.24609375, 2.899152698504301 ], [ -72.24609375, 2.81137119333113 ], [ -72.333984375, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1224, y=2015, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.421875, 2.81137119333113 ], [ -72.421875, 2.899152698504301 ], [ -72.333984375, 2.899152698504301 ], [ -72.333984375, 2.81137119333113 ], [ -72.421875, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1223, y=2015, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.509765625, 2.81137119333113 ], [ -72.509765625, 2.899152698504301 ], [ -72.421875, 2.899152698504301 ], [ -72.421875, 2.81137119333113 ], [ -72.509765625, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1222, y=2015, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.59765625, 2.81137119333113 ], [ -72.59765625, 2.899152698504301 ], [ -72.509765625, 2.899152698504301 ], [ -72.509765625, 2.81137119333113 ], [ -72.59765625, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=635, y=1003, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.37890625, 3.513421045640039 ], [ -68.37890625, 3.688855143147044 ], [ -68.203125, 3.688855143147044 ], [ -68.203125, 3.513421045640039 ], [ -68.37890625, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1269, y=2006, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.466796875, 3.601142320158728 ], [ -68.466796875, 3.688855143147044 ], [ -68.37890625, 3.688855143147044 ], [ -68.37890625, 3.601142320158728 ], [ -68.466796875, 3.601142320158728 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1269, y=2007, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.466796875, 3.513421045640039 ], [ -68.466796875, 3.601142320158728 ], [ -68.37890625, 3.601142320158728 ], [ -68.37890625, 3.513421045640039 ], [ -68.466796875, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1268, y=2007, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.5546875, 3.513421045640039 ], [ -68.5546875, 3.601142320158728 ], [ -68.466796875, 3.601142320158728 ], [ -68.466796875, 3.513421045640039 ], [ -68.5546875, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1267, y=2007, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.642578125, 3.513421045640039 ], [ -68.642578125, 3.601142320158728 ], [ -68.5546875, 3.601142320158728 ], [ -68.5546875, 3.513421045640039 ], [ -68.642578125, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1266, y=2007, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.73046875, 3.513421045640039 ], [ -68.73046875, 3.601142320158728 ], [ -68.642578125, 3.601142320158728 ], [ -68.642578125, 3.513421045640039 ], [ -68.73046875, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1265, y=2007, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.818359375, 3.513421045640039 ], [ -68.818359375, 3.601142320158728 ], [ -68.73046875, 3.601142320158728 ], [ -68.73046875, 3.513421045640039 ], [ -68.818359375, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1264, y=2007, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.90625, 3.513421045640039 ], [ -68.90625, 3.601142320158728 ], [ -68.818359375, 3.601142320158728 ], [ -68.818359375, 3.513421045640039 ], [ -68.90625, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1277, y=2005, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.763671875, 3.688855143147044 ], [ -67.763671875, 3.776559309876864 ], [ -67.67578125, 3.776559309876864 ], [ -67.67578125, 3.688855143147044 ], [ -67.763671875, 3.688855143147044 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1276, y=2005, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.8515625, 3.688855143147044 ], [ -67.8515625, 3.776559309876864 ], [ -67.763671875, 3.776559309876864 ], [ -67.763671875, 3.688855143147044 ], [ -67.8515625, 3.688855143147044 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1279, y=2005, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.587890625, 3.688855143147044 ], [ -67.587890625, 3.776559309876864 ], [ -67.5, 3.776559309876864 ], [ -67.5, 3.688855143147044 ], [ -67.587890625, 3.688855143147044 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1278, y=2005, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.67578125, 3.688855143147044 ], [ -67.67578125, 3.776559309876864 ], [ -67.587890625, 3.776559309876864 ], [ -67.587890625, 3.688855143147044 ], [ -67.67578125, 3.688855143147044 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=639, y=1003, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.67578125, 3.513421045640039 ], [ -67.67578125, 3.688855143147044 ], [ -67.5, 3.688855143147044 ], [ -67.5, 3.513421045640039 ], [ -67.67578125, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=638, y=1003, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.8515625, 3.513421045640039 ], [ -67.8515625, 3.688855143147044 ], [ -67.67578125, 3.688855143147044 ], [ -67.67578125, 3.513421045640039 ], [ -67.8515625, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1275, y=2005, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453125, 3.688855143147044 ], [ -67.939453125, 3.776559309876864 ], [ -67.8515625, 3.776559309876864 ], [ -67.8515625, 3.688855143147044 ], [ -67.939453125, 3.688855143147044 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=637, y=1003, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.02734375, 3.513421045640039 ], [ -68.02734375, 3.688855143147044 ], [ -67.8515625, 3.688855143147044 ], [ -67.8515625, 3.513421045640039 ], [ -68.02734375, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=636, y=1003, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.203125, 3.513421045640039 ], [ -68.203125, 3.688855143147044 ], [ -68.02734375, 3.688855143147044 ], [ -68.02734375, 3.513421045640039 ], [ -68.203125, 3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=159, y=251, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.203125, 2.81137119333113 ], [ -68.203125, 3.513421045640039 ], [ -67.5, 3.513421045640039 ], [ -67.5, 2.81137119333113 ], [ -68.203125, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=158, y=251, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.90625, 2.81137119333113 ], [ -68.90625, 3.513421045640039 ], [ -68.203125, 3.513421045640039 ], [ -68.203125, 2.81137119333113 ], [ -68.90625, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1257, y=2009, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.521484375, 3.337953961416479 ], [ -69.521484375, 3.425691524418064 ], [ -69.43359375, 3.425691524418064 ], [ -69.43359375, 3.337953961416479 ], [ -69.521484375, 3.337953961416479 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1256, y=2009, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.609375, 3.337953961416479 ], [ -69.609375, 3.425691524418064 ], [ -69.521484375, 3.425691524418064 ], [ -69.521484375, 3.337953961416479 ], [ -69.609375, 3.337953961416479 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1259, y=2008, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.345703125, 3.425691524418064 ], [ -69.345703125, 3.513421045640039 ], [ -69.2578125, 3.513421045640039 ], [ -69.2578125, 3.425691524418064 ], [ -69.345703125, 3.425691524418064 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1259, y=2009, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.345703125, 3.337953961416479 ], [ -69.345703125, 3.425691524418064 ], [ -69.2578125, 3.425691524418064 ], [ -69.2578125, 3.337953961416479 ], [ -69.345703125, 3.337953961416479 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1258, y=2009, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.43359375, 3.337953961416479 ], [ -69.43359375, 3.425691524418064 ], [ -69.345703125, 3.425691524418064 ], [ -69.345703125, 3.337953961416479 ], [ -69.43359375, 3.337953961416479 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=629, y=1005, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.43359375, 3.162455530237851 ], [ -69.43359375, 3.337953961416479 ], [ -69.2578125, 3.337953961416479 ], [ -69.2578125, 3.162455530237851 ], [ -69.43359375, 3.162455530237851 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=628, y=1005, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.609375, 3.162455530237851 ], [ -69.609375, 3.337953961416479 ], [ -69.43359375, 3.337953961416479 ], [ -69.43359375, 3.162455530237851 ], [ -69.609375, 3.162455530237851 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=315, y=502, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.2578125, 3.162455530237851 ], [ -69.2578125, 3.513421045640039 ], [ -68.90625, 3.513421045640039 ], [ -68.90625, 3.162455530237851 ], [ -69.2578125, 3.162455530237851 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=315, y=503, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.2578125, 2.81137119333113 ], [ -69.2578125, 3.162455530237851 ], [ -68.90625, 3.162455530237851 ], [ -68.90625, 2.81137119333113 ], [ -69.2578125, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=314, y=503, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.609375, 2.81137119333113 ], [ -69.609375, 3.162455530237851 ], [ -69.2578125, 3.162455530237851 ], [ -69.2578125, 2.81137119333113 ], [ -69.609375, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=625, y=1005, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.13671875, 3.162455530237851 ], [ -70.13671875, 3.337953961416479 ], [ -69.9609375, 3.337953961416479 ], [ -69.9609375, 3.162455530237851 ], [ -70.13671875, 3.162455530237851 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=624, y=1005, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.3125, 3.162455530237851 ], [ -70.3125, 3.337953961416479 ], [ -70.13671875, 3.337953961416479 ], [ -70.13671875, 3.162455530237851 ], [ -70.3125, 3.162455530237851 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1255, y=2009, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.697265625, 3.337953961416479 ], [ -69.697265625, 3.425691524418064 ], [ -69.609375, 3.425691524418064 ], [ -69.609375, 3.337953961416479 ], [ -69.697265625, 3.337953961416479 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1254, y=2009, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.78515625, 3.337953961416479 ], [ -69.78515625, 3.425691524418064 ], [ -69.697265625, 3.425691524418064 ], [ -69.697265625, 3.337953961416479 ], [ -69.78515625, 3.337953961416479 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=627, y=1005, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.78515625, 3.162455530237851 ], [ -69.78515625, 3.337953961416479 ], [ -69.609375, 3.337953961416479 ], [ -69.609375, 3.162455530237851 ], [ -69.78515625, 3.162455530237851 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=626, y=1005, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.9609375, 3.162455530237851 ], [ -69.9609375, 3.337953961416479 ], [ -69.78515625, 3.337953961416479 ], [ -69.78515625, 3.162455530237851 ], [ -69.9609375, 3.162455530237851 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=313, y=503, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.9609375, 2.81137119333113 ], [ -69.9609375, 3.162455530237851 ], [ -69.609375, 3.162455530237851 ], [ -69.609375, 2.81137119333113 ], [ -69.9609375, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=312, y=503, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.3125, 2.81137119333113 ], [ -70.3125, 3.162455530237851 ], [ -69.9609375, 3.162455530237851 ], [ -69.9609375, 2.81137119333113 ], [ -70.3125, 2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=39, y=63, z=7)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.3125, 0.0 ], [ -70.3125, 2.81137119333113 ], [ -67.5, 2.81137119333113 ], [ -67.5, 0.0 ], [ -70.3125, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=38, y=63, z=7)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, 0.0 ], [ -73.125, 2.81137119333113 ], [ -70.3125, 2.81137119333113 ], [ -70.3125, 0.0 ], [ -73.125, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1215, y=2018, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.212890625, 2.54798787147138 ], [ -73.212890625, 2.635788574166606 ], [ -73.125, 2.635788574166606 ], [ -73.125, 2.54798787147138 ], [ -73.212890625, 2.54798787147138 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1215, y=2019, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.212890625, 2.460181181021003 ], [ -73.212890625, 2.54798787147138 ], [ -73.125, 2.54798787147138 ], [ -73.125, 2.460181181021003 ], [ -73.212890625, 2.460181181021003 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=607, y=1010, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.30078125, 2.284550660236963 ], [ -73.30078125, 2.460181181021003 ], [ -73.125, 2.460181181021003 ], [ -73.125, 2.284550660236963 ], [ -73.30078125, 2.284550660236963 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=607, y=1011, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.30078125, 2.108898659243132 ], [ -73.30078125, 2.284550660236963 ], [ -73.125, 2.284550660236963 ], [ -73.125, 2.108898659243132 ], [ -73.30078125, 2.108898659243132 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1213, y=2022, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.388671875, 2.196727241761665 ], [ -73.388671875, 2.284550660236963 ], [ -73.30078125, 2.284550660236963 ], [ -73.30078125, 2.196727241761665 ], [ -73.388671875, 2.196727241761665 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1213, y=2023, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.388671875, 2.108898659243132 ], [ -73.388671875, 2.196727241761665 ], [ -73.30078125, 2.196727241761665 ], [ -73.30078125, 2.108898659243132 ], [ -73.388671875, 2.108898659243132 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1212, y=2023, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.4765625, 2.108898659243132 ], [ -73.4765625, 2.196727241761665 ], [ -73.388671875, 2.196727241761665 ], [ -73.388671875, 2.108898659243132 ], [ -73.4765625, 2.108898659243132 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1211, y=2025, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.564453125, 1.933226826477117 ], [ -73.564453125, 2.021065118766994 ], [ -73.4765625, 2.021065118766994 ], [ -73.4765625, 1.933226826477117 ], [ -73.564453125, 1.933226826477117 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1211, y=2026, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.564453125, 1.845383988573192 ], [ -73.564453125, 1.933226826477117 ], [ -73.4765625, 1.933226826477117 ], [ -73.4765625, 1.845383988573192 ], [ -73.564453125, 1.845383988573192 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1211, y=2027, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.564453125, 1.757536811308316 ], [ -73.564453125, 1.845383988573192 ], [ -73.4765625, 1.845383988573192 ], [ -73.4765625, 1.757536811308316 ], [ -73.564453125, 1.757536811308316 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1210, y=2027, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.65234375, 1.757536811308316 ], [ -73.65234375, 1.845383988573192 ], [ -73.564453125, 1.845383988573192 ], [ -73.564453125, 1.757536811308316 ], [ -73.65234375, 1.757536811308316 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=303, y=506, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.4765625, 1.757536811308316 ], [ -73.4765625, 2.108898659243132 ], [ -73.125, 2.108898659243132 ], [ -73.125, 1.757536811308316 ], [ -73.4765625, 1.757536811308316 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=303, y=507, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.4765625, 1.406108835435157 ], [ -73.4765625, 1.757536811308316 ], [ -73.125, 1.757536811308316 ], [ -73.125, 1.406108835435157 ], [ -73.4765625, 1.406108835435157 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1209, y=2028, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.740234375, 1.669685500986579 ], [ -73.740234375, 1.757536811308316 ], [ -73.65234375, 1.757536811308316 ], [ -73.65234375, 1.669685500986579 ], [ -73.740234375, 1.669685500986579 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1209, y=2029, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.740234375, 1.581830263960642 ], [ -73.740234375, 1.669685500986579 ], [ -73.65234375, 1.669685500986579 ], [ -73.65234375, 1.581830263960642 ], [ -73.740234375, 1.581830263960642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=605, y=1014, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.65234375, 1.581830263960642 ], [ -73.65234375, 1.757536811308316 ], [ -73.4765625, 1.757536811308316 ], [ -73.4765625, 1.581830263960642 ], [ -73.65234375, 1.581830263960642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=605, y=1015, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.65234375, 1.406108835435157 ], [ -73.65234375, 1.581830263960642 ], [ -73.4765625, 1.581830263960642 ], [ -73.4765625, 1.406108835435157 ], [ -73.65234375, 1.406108835435157 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=604, y=1015, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.828125, 1.406108835435157 ], [ -73.828125, 1.581830263960642 ], [ -73.65234375, 1.581830263960642 ], [ -73.65234375, 1.406108835435157 ], [ -73.828125, 1.406108835435157 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1207, y=2032, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.916015625, 1.318243056862006 ], [ -73.916015625, 1.406108835435157 ], [ -73.828125, 1.406108835435157 ], [ -73.828125, 1.318243056862006 ], [ -73.916015625, 1.318243056862006 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1207, y=2033, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.916015625, 1.230374177432607 ], [ -73.916015625, 1.318243056862006 ], [ -73.828125, 1.318243056862006 ], [ -73.828125, 1.230374177432607 ], [ -73.916015625, 1.230374177432607 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1206, y=2033, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.00390625, 1.230374177432607 ], [ -74.00390625, 1.318243056862006 ], [ -73.916015625, 1.318243056862006 ], [ -73.916015625, 1.230374177432607 ], [ -74.00390625, 1.230374177432607 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=603, y=1017, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.00390625, 1.054627942275884 ], [ -74.00390625, 1.230374177432607 ], [ -73.828125, 1.230374177432607 ], [ -73.828125, 1.054627942275884 ], [ -74.00390625, 1.054627942275884 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1205, y=2035, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.091796875, 1.054627942275884 ], [ -74.091796875, 1.142502403706155 ], [ -74.00390625, 1.142502403706155 ], [ -74.00390625, 1.054627942275884 ], [ -74.091796875, 1.054627942275884 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1205, y=2036, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.091796875, 0.966750999766632 ], [ -74.091796875, 1.054627942275884 ], [ -74.00390625, 1.054627942275884 ], [ -74.00390625, 0.966750999766632 ], [ -74.091796875, 0.966750999766632 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1205, y=2037, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.091796875, 0.878871782832416 ], [ -74.091796875, 0.966750999766632 ], [ -74.00390625, 0.966750999766632 ], [ -74.00390625, 0.878871782832416 ], [ -74.091796875, 0.878871782832416 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1204, y=2037, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.1796875, 0.878871782832416 ], [ -74.1796875, 0.966750999766632 ], [ -74.091796875, 0.966750999766632 ], [ -74.091796875, 0.878871782832416 ], [ -74.1796875, 0.878871782832416 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=603, y=1018, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.00390625, 0.878871782832416 ], [ -74.00390625, 1.054627942275884 ], [ -73.828125, 1.054627942275884 ], [ -73.828125, 0.878871782832416 ], [ -74.00390625, 0.878871782832416 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=603, y=1019, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.00390625, 0.703107352436487 ], [ -74.00390625, 0.878871782832416 ], [ -73.828125, 0.878871782832416 ], [ -73.828125, 0.703107352436487 ], [ -74.00390625, 0.703107352436487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=602, y=1019, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.1796875, 0.703107352436487 ], [ -74.1796875, 0.878871782832416 ], [ -74.00390625, 0.878871782832416 ], [ -74.00390625, 0.703107352436487 ], [ -74.1796875, 0.703107352436487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1203, y=2038, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.267578125, 0.790990498154004 ], [ -74.267578125, 0.878871782832416 ], [ -74.1796875, 0.878871782832416 ], [ -74.1796875, 0.790990498154004 ], [ -74.267578125, 0.790990498154004 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1203, y=2039, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.267578125, 0.703107352436487 ], [ -74.267578125, 0.790990498154004 ], [ -74.1796875, 0.790990498154004 ], [ -74.1796875, 0.703107352436487 ], [ -74.267578125, 0.703107352436487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=151, y=254, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.828125, 0.703107352436487 ], [ -73.828125, 1.406108835435157 ], [ -73.125, 1.406108835435157 ], [ -73.125, 0.703107352436487 ], [ -73.828125, 0.703107352436487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=151, y=255, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.828125, 0.0 ], [ -73.828125, 0.703107352436487 ], [ -73.125, 0.703107352436487 ], [ -73.125, 0.0 ], [ -73.828125, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=601, y=1020, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.35546875, 0.527336304811514 ], [ -74.35546875, 0.703107352436487 ], [ -74.1796875, 0.703107352436487 ], [ -74.1796875, 0.527336304811514 ], [ -74.35546875, 0.527336304811514 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=601, y=1021, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.35546875, 0.351560293992272 ], [ -74.35546875, 0.527336304811514 ], [ -74.1796875, 0.527336304811514 ], [ -74.1796875, 0.351560293992272 ], [ -74.35546875, 0.351560293992272 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1201, y=2042, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359375, 0.439448816413968 ], [ -74.443359375, 0.527336304811514 ], [ -74.35546875, 0.527336304811514 ], [ -74.35546875, 0.439448816413968 ], [ -74.443359375, 0.439448816413968 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1201, y=2043, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359375, 0.351560293992272 ], [ -74.443359375, 0.439448816413968 ], [ -74.35546875, 0.439448816413968 ], [ -74.35546875, 0.351560293992272 ], [ -74.443359375, 0.351560293992272 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1200, y=2043, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.53125, 0.351560293992272 ], [ -74.53125, 0.439448816413968 ], [ -74.443359375, 0.439448816413968 ], [ -74.443359375, 0.351560293992272 ], [ -74.53125, 0.351560293992272 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=301, y=510, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.1796875, 0.351560293992272 ], [ -74.1796875, 0.703107352436487 ], [ -73.828125, 0.703107352436487 ], [ -73.828125, 0.351560293992272 ], [ -74.1796875, 0.351560293992272 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=301, y=511, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.1796875, 0.0 ], [ -74.1796875, 0.351560293992272 ], [ -73.828125, 0.351560293992272 ], [ -73.828125, 0.0 ], [ -74.1796875, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=300, y=511, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.53125, 0.0 ], [ -74.53125, 0.351560293992272 ], [ -74.1796875, 0.351560293992272 ], [ -74.1796875, 0.0 ], [ -74.53125, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1199, y=2045, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.619140625, 0.175780974247087 ], [ -74.619140625, 0.263670944336657 ], [ -74.53125, 0.263670944336657 ], [ -74.53125, 0.175780974247087 ], [ -74.619140625, 0.175780974247087 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1199, y=2046, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.619140625, 0.087890590530825 ], [ -74.619140625, 0.175780974247087 ], [ -74.53125, 0.175780974247087 ], [ -74.53125, 0.087890590530825 ], [ -74.619140625, 0.087890590530825 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1199, y=2047, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.619140625, 0.0 ], [ -74.619140625, 0.087890590530825 ], [ -74.53125, 0.087890590530825 ], [ -74.53125, 0.0 ], [ -74.619140625, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1198, y=2047, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.70703125, 0.0 ], [ -74.70703125, 0.087890590530825 ], [ -74.619140625, 0.087890590530825 ], [ -74.619140625, 0.0 ], [ -74.70703125, 0.0 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1183, y=2071, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.025390625, -2.108898659243132 ], [ -76.025390625, -2.021065118766994 ], [ -75.9375, -2.021065118766994 ], [ -75.9375, -2.108898659243132 ], [ -76.025390625, -2.108898659243132 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1183, y=2072, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.025390625, -2.196727241761665 ], [ -76.025390625, -2.108898659243132 ], [ -75.9375, -2.108898659243132 ], [ -75.9375, -2.196727241761665 ], [ -76.025390625, -2.196727241761665 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1183, y=2073, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.025390625, -2.284550660236963 ], [ -76.025390625, -2.196727241761665 ], [ -75.9375, -2.196727241761665 ], [ -75.9375, -2.284550660236963 ], [ -76.025390625, -2.284550660236963 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1182, y=2073, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.11328125, -2.284550660236963 ], [ -76.11328125, -2.196727241761665 ], [ -76.025390625, -2.196727241761665 ], [ -76.025390625, -2.284550660236963 ], [ -76.11328125, -2.284550660236963 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=591, y=1037, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.11328125, -2.460181181021003 ], [ -76.11328125, -2.284550660236963 ], [ -75.9375, -2.284550660236963 ], [ -75.9375, -2.460181181021003 ], [ -76.11328125, -2.460181181021003 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1181, y=2075, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.201171875, -2.460181181021003 ], [ -76.201171875, -2.372368708644049 ], [ -76.11328125, -2.372368708644049 ], [ -76.11328125, -2.460181181021003 ], [ -76.201171875, -2.460181181021003 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1182, y=2076, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.11328125, -2.54798787147138 ], [ -76.11328125, -2.460181181021003 ], [ -76.025390625, -2.460181181021003 ], [ -76.025390625, -2.54798787147138 ], [ -76.11328125, -2.54798787147138 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1183, y=2076, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.025390625, -2.54798787147138 ], [ -76.025390625, -2.460181181021003 ], [ -75.9375, -2.460181181021003 ], [ -75.9375, -2.54798787147138 ], [ -76.025390625, -2.54798787147138 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1183, y=2077, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.025390625, -2.635788574166606 ], [ -76.025390625, -2.54798787147138 ], [ -75.9375, -2.54798787147138 ], [ -75.9375, -2.635788574166606 ], [ -76.025390625, -2.635788574166606 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1197, y=2048, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.794921875, -0.087890590530825 ], [ -74.794921875, 0.0 ], [ -74.70703125, 0.0 ], [ -74.70703125, -0.087890590530825 ], [ -74.794921875, -0.087890590530825 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1197, y=2049, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.794921875, -0.175780974247087 ], [ -74.794921875, -0.087890590530825 ], [ -74.70703125, -0.087890590530825 ], [ -74.70703125, -0.175780974247087 ], [ -74.794921875, -0.175780974247087 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=599, y=1024, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.70703125, -0.175780974247087 ], [ -74.70703125, 0.0 ], [ -74.53125, 0.0 ], [ -74.53125, -0.175780974247087 ], [ -74.70703125, -0.175780974247087 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=599, y=1025, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.70703125, -0.351560293992272 ], [ -74.70703125, -0.175780974247087 ], [ -74.53125, -0.175780974247087 ], [ -74.53125, -0.351560293992272 ], [ -74.70703125, -0.351560293992272 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=598, y=1025, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.8828125, -0.351560293992272 ], [ -74.8828125, -0.175780974247087 ], [ -74.70703125, -0.175780974247087 ], [ -74.70703125, -0.351560293992272 ], [ -74.8828125, -0.351560293992272 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=299, y=513, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.8828125, -0.703107352436487 ], [ -74.8828125, -0.351560293992272 ], [ -74.53125, -0.351560293992272 ], [ -74.53125, -0.703107352436487 ], [ -74.8828125, -0.703107352436487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1195, y=2052, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.970703125, -0.439448816413968 ], [ -74.970703125, -0.351560293992272 ], [ -74.8828125, -0.351560293992272 ], [ -74.8828125, -0.439448816413968 ], [ -74.970703125, -0.439448816413968 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1195, y=2053, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.970703125, -0.527336304811514 ], [ -74.970703125, -0.439448816413968 ], [ -74.8828125, -0.439448816413968 ], [ -74.8828125, -0.527336304811514 ], [ -74.970703125, -0.527336304811514 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1194, y=2053, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.05859375, -0.527336304811514 ], [ -75.05859375, -0.439448816413968 ], [ -74.970703125, -0.439448816413968 ], [ -74.970703125, -0.527336304811514 ], [ -75.05859375, -0.527336304811514 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=597, y=1027, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.05859375, -0.703107352436487 ], [ -75.05859375, -0.527336304811514 ], [ -74.8828125, -0.527336304811514 ], [ -74.8828125, -0.703107352436487 ], [ -75.05859375, -0.703107352436487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1193, y=2055, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.146484375, -0.703107352436487 ], [ -75.146484375, -0.615222552406843 ], [ -75.05859375, -0.615222552406843 ], [ -75.05859375, -0.703107352436487 ], [ -75.146484375, -0.703107352436487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=149, y=257, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.234375, -1.406108835435157 ], [ -75.234375, -0.703107352436487 ], [ -74.53125, -0.703107352436487 ], [ -74.53125, -1.406108835435157 ], [ -75.234375, -1.406108835435157 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1191, y=2058, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.322265625, -0.966750999766632 ], [ -75.322265625, -0.878871782832416 ], [ -75.234375, -0.878871782832416 ], [ -75.234375, -0.966750999766632 ], [ -75.322265625, -0.966750999766632 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1191, y=2059, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.322265625, -1.054627942275884 ], [ -75.322265625, -0.966750999766632 ], [ -75.234375, -0.966750999766632 ], [ -75.234375, -1.054627942275884 ], [ -75.322265625, -1.054627942275884 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1189, y=2061, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.498046875, -1.230374177432607 ], [ -75.498046875, -1.142502403706155 ], [ -75.41015625, -1.142502403706155 ], [ -75.41015625, -1.230374177432607 ], [ -75.498046875, -1.230374177432607 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=595, y=1030, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.41015625, -1.230374177432607 ], [ -75.41015625, -1.054627942275884 ], [ -75.234375, -1.054627942275884 ], [ -75.234375, -1.230374177432607 ], [ -75.41015625, -1.230374177432607 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=595, y=1031, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.41015625, -1.406108835435157 ], [ -75.41015625, -1.230374177432607 ], [ -75.234375, -1.230374177432607 ], [ -75.234375, -1.406108835435157 ], [ -75.41015625, -1.406108835435157 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1189, y=2062, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.498046875, -1.318243056862006 ], [ -75.498046875, -1.230374177432607 ], [ -75.41015625, -1.230374177432607 ], [ -75.41015625, -1.318243056862006 ], [ -75.498046875, -1.318243056862006 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1189, y=2063, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.498046875, -1.406108835435157 ], [ -75.498046875, -1.318243056862006 ], [ -75.41015625, -1.318243056862006 ], [ -75.41015625, -1.406108835435157 ], [ -75.498046875, -1.406108835435157 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1188, y=2063, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.5859375, -1.406108835435157 ], [ -75.5859375, -1.318243056862006 ], [ -75.498046875, -1.318243056862006 ], [ -75.498046875, -1.406108835435157 ], [ -75.5859375, -1.406108835435157 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=75, y=128, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.53125, -1.406108835435157 ], [ -74.53125, 0.0 ], [ -73.125, 0.0 ], [ -73.125, -1.406108835435157 ], [ -74.53125, -1.406108835435157 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=75, y=129, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.53125, -2.81137119333113 ], [ -74.53125, -1.406108835435157 ], [ -73.125, -1.406108835435157 ], [ -73.125, -2.81137119333113 ], [ -74.53125, -2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1187, y=2065, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.673828125, -1.581830263960642 ], [ -75.673828125, -1.49397130662932 ], [ -75.5859375, -1.49397130662932 ], [ -75.5859375, -1.581830263960642 ], [ -75.673828125, -1.581830263960642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=593, y=1033, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.76171875, -1.757536811308316 ], [ -75.76171875, -1.581830263960642 ], [ -75.5859375, -1.581830263960642 ], [ -75.5859375, -1.757536811308316 ], [ -75.76171875, -1.757536811308316 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=297, y=516, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.5859375, -1.757536811308316 ], [ -75.5859375, -1.406108835435157 ], [ -75.234375, -1.406108835435157 ], [ -75.234375, -1.757536811308316 ], [ -75.5859375, -1.757536811308316 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=297, y=517, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.5859375, -2.108898659243132 ], [ -75.5859375, -1.757536811308316 ], [ -75.234375, -1.757536811308316 ], [ -75.234375, -2.108898659243132 ], [ -75.5859375, -2.108898659243132 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1185, y=2068, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.849609375, -1.845383988573192 ], [ -75.849609375, -1.757536811308316 ], [ -75.76171875, -1.757536811308316 ], [ -75.76171875, -1.845383988573192 ], [ -75.849609375, -1.845383988573192 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1185, y=2069, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.849609375, -1.933226826477117 ], [ -75.849609375, -1.845383988573192 ], [ -75.76171875, -1.845383988573192 ], [ -75.76171875, -1.933226826477117 ], [ -75.849609375, -1.933226826477117 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=593, y=1034, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.76171875, -1.933226826477117 ], [ -75.76171875, -1.757536811308316 ], [ -75.5859375, -1.757536811308316 ], [ -75.5859375, -1.933226826477117 ], [ -75.76171875, -1.933226826477117 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=593, y=1035, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.76171875, -2.108898659243132 ], [ -75.76171875, -1.933226826477117 ], [ -75.5859375, -1.933226826477117 ], [ -75.5859375, -2.108898659243132 ], [ -75.76171875, -2.108898659243132 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=592, y=1035, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.9375, -2.108898659243132 ], [ -75.9375, -1.933226826477117 ], [ -75.76171875, -1.933226826477117 ], [ -75.76171875, -2.108898659243132 ], [ -75.9375, -2.108898659243132 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=149, y=258, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.234375, -2.108898659243132 ], [ -75.234375, -1.406108835435157 ], [ -74.53125, -1.406108835435157 ], [ -74.53125, -2.108898659243132 ], [ -75.234375, -2.108898659243132 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=149, y=259, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.234375, -2.81137119333113 ], [ -75.234375, -2.108898659243132 ], [ -74.53125, -2.108898659243132 ], [ -74.53125, -2.81137119333113 ], [ -75.234375, -2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=296, y=518, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.9375, -2.460181181021003 ], [ -75.9375, -2.108898659243132 ], [ -75.5859375, -2.108898659243132 ], [ -75.5859375, -2.460181181021003 ], [ -75.9375, -2.460181181021003 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=297, y=518, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.5859375, -2.460181181021003 ], [ -75.5859375, -2.108898659243132 ], [ -75.234375, -2.108898659243132 ], [ -75.234375, -2.460181181021003 ], [ -75.5859375, -2.460181181021003 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=297, y=519, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.5859375, -2.81137119333113 ], [ -75.5859375, -2.460181181021003 ], [ -75.234375, -2.460181181021003 ], [ -75.234375, -2.81137119333113 ], [ -75.5859375, -2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=592, y=1038, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.9375, -2.635788574166606 ], [ -75.9375, -2.460181181021003 ], [ -75.76171875, -2.460181181021003 ], [ -75.76171875, -2.635788574166606 ], [ -75.9375, -2.635788574166606 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=593, y=1038, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.76171875, -2.635788574166606 ], [ -75.76171875, -2.460181181021003 ], [ -75.5859375, -2.460181181021003 ], [ -75.5859375, -2.635788574166606 ], [ -75.76171875, -2.635788574166606 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=593, y=1039, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.76171875, -2.81137119333113 ], [ -75.76171875, -2.635788574166606 ], [ -75.5859375, -2.635788574166606 ], [ -75.5859375, -2.81137119333113 ], [ -75.76171875, -2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1184, y=2078, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.9375, -2.72358308334839 ], [ -75.9375, -2.635788574166606 ], [ -75.849609375, -2.635788574166606 ], [ -75.849609375, -2.72358308334839 ], [ -75.9375, -2.72358308334839 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1185, y=2078, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.849609375, -2.72358308334839 ], [ -75.849609375, -2.635788574166606 ], [ -75.76171875, -2.635788574166606 ], [ -75.76171875, -2.72358308334839 ], [ -75.849609375, -2.72358308334839 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1185, y=2079, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.849609375, -2.81137119333113 ], [ -75.849609375, -2.72358308334839 ], [ -75.76171875, -2.72358308334839 ], [ -75.76171875, -2.81137119333113 ], [ -75.849609375, -2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1186, y=2080, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.76171875, -2.899152698504301 ], [ -75.76171875, -2.81137119333113 ], [ -75.673828125, -2.81137119333113 ], [ -75.673828125, -2.899152698504301 ], [ -75.76171875, -2.899152698504301 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1187, y=2080, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.673828125, -2.899152698504301 ], [ -75.673828125, -2.81137119333113 ], [ -75.5859375, -2.81137119333113 ], [ -75.5859375, -2.899152698504301 ], [ -75.673828125, -2.899152698504301 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1187, y=2081, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.673828125, -2.98692739333487 ], [ -75.673828125, -2.899152698504301 ], [ -75.5859375, -2.899152698504301 ], [ -75.5859375, -2.98692739333487 ], [ -75.673828125, -2.98692739333487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=594, y=1040, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.5859375, -2.98692739333487 ], [ -75.5859375, -2.81137119333113 ], [ -75.41015625, -2.81137119333113 ], [ -75.41015625, -2.98692739333487 ], [ -75.5859375, -2.98692739333487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=595, y=1040, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.41015625, -2.98692739333487 ], [ -75.41015625, -2.81137119333113 ], [ -75.234375, -2.81137119333113 ], [ -75.234375, -2.98692739333487 ], [ -75.41015625, -2.98692739333487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=595, y=1041, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.41015625, -3.162455530237851 ], [ -75.41015625, -2.98692739333487 ], [ -75.234375, -2.98692739333487 ], [ -75.234375, -3.162455530237851 ], [ -75.41015625, -3.162455530237851 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1188, y=2082, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.5859375, -3.07469507236968 ], [ -75.5859375, -2.98692739333487 ], [ -75.498046875, -2.98692739333487 ], [ -75.498046875, -3.07469507236968 ], [ -75.5859375, -3.07469507236968 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1189, y=2082, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.498046875, -3.07469507236968 ], [ -75.498046875, -2.98692739333487 ], [ -75.41015625, -2.98692739333487 ], [ -75.41015625, -3.07469507236968 ], [ -75.498046875, -3.07469507236968 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1189, y=2083, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.498046875, -3.162455530237851 ], [ -75.498046875, -3.07469507236968 ], [ -75.41015625, -3.07469507236968 ], [ -75.41015625, -3.162455530237851 ], [ -75.498046875, -3.162455530237851 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1190, y=2084, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.41015625, -3.25020856165317 ], [ -75.41015625, -3.162455530237851 ], [ -75.322265625, -3.162455530237851 ], [ -75.322265625, -3.25020856165317 ], [ -75.41015625, -3.25020856165317 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1191, y=2084, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.322265625, -3.25020856165317 ], [ -75.322265625, -3.162455530237851 ], [ -75.234375, -3.162455530237851 ], [ -75.234375, -3.25020856165317 ], [ -75.322265625, -3.25020856165317 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1191, y=2085, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.322265625, -3.337953961416479 ], [ -75.322265625, -3.25020856165317 ], [ -75.234375, -3.25020856165317 ], [ -75.234375, -3.337953961416479 ], [ -75.322265625, -3.337953961416479 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=298, y=520, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.234375, -3.162455530237851 ], [ -75.234375, -2.81137119333113 ], [ -74.8828125, -2.81137119333113 ], [ -74.8828125, -3.162455530237851 ], [ -75.234375, -3.162455530237851 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=299, y=520, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.8828125, -3.162455530237851 ], [ -74.8828125, -2.81137119333113 ], [ -74.53125, -2.81137119333113 ], [ -74.53125, -3.162455530237851 ], [ -74.8828125, -3.162455530237851 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=299, y=521, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.8828125, -3.513421045640039 ], [ -74.8828125, -3.162455530237851 ], [ -74.53125, -3.162455530237851 ], [ -74.53125, -3.513421045640039 ], [ -74.8828125, -3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=596, y=1042, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.234375, -3.337953961416479 ], [ -75.234375, -3.162455530237851 ], [ -75.05859375, -3.162455530237851 ], [ -75.05859375, -3.337953961416479 ], [ -75.234375, -3.337953961416479 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=597, y=1042, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.05859375, -3.337953961416479 ], [ -75.05859375, -3.162455530237851 ], [ -74.8828125, -3.162455530237851 ], [ -74.8828125, -3.337953961416479 ], [ -75.05859375, -3.337953961416479 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=597, y=1043, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.05859375, -3.513421045640039 ], [ -75.05859375, -3.337953961416479 ], [ -74.8828125, -3.337953961416479 ], [ -74.8828125, -3.513421045640039 ], [ -75.05859375, -3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1192, y=2086, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.234375, -3.425691524418064 ], [ -75.234375, -3.337953961416479 ], [ -75.146484375, -3.337953961416479 ], [ -75.146484375, -3.425691524418064 ], [ -75.234375, -3.425691524418064 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1193, y=2086, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.146484375, -3.425691524418064 ], [ -75.146484375, -3.337953961416479 ], [ -75.05859375, -3.337953961416479 ], [ -75.05859375, -3.425691524418064 ], [ -75.146484375, -3.425691524418064 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1193, y=2087, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.146484375, -3.513421045640039 ], [ -75.146484375, -3.425691524418064 ], [ -75.05859375, -3.425691524418064 ], [ -75.05859375, -3.513421045640039 ], [ -75.146484375, -3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1194, y=2088, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.05859375, -3.601142320158728 ], [ -75.05859375, -3.513421045640039 ], [ -74.970703125, -3.513421045640039 ], [ -74.970703125, -3.601142320158728 ], [ -75.05859375, -3.601142320158728 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1195, y=2088, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.970703125, -3.601142320158728 ], [ -74.970703125, -3.513421045640039 ], [ -74.8828125, -3.513421045640039 ], [ -74.8828125, -3.601142320158728 ], [ -74.970703125, -3.601142320158728 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1195, y=2089, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.970703125, -3.688855143147044 ], [ -74.970703125, -3.601142320158728 ], [ -74.8828125, -3.601142320158728 ], [ -74.8828125, -3.688855143147044 ], [ -74.970703125, -3.688855143147044 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=598, y=1044, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.8828125, -3.688855143147044 ], [ -74.8828125, -3.513421045640039 ], [ -74.70703125, -3.513421045640039 ], [ -74.70703125, -3.688855143147044 ], [ -74.8828125, -3.688855143147044 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=599, y=1044, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.70703125, -3.688855143147044 ], [ -74.70703125, -3.513421045640039 ], [ -74.53125, -3.513421045640039 ], [ -74.53125, -3.688855143147044 ], [ -74.70703125, -3.688855143147044 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=599, y=1045, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.70703125, -3.864254615721404 ], [ -74.70703125, -3.688855143147044 ], [ -74.53125, -3.688855143147044 ], [ -74.53125, -3.864254615721404 ], [ -74.70703125, -3.864254615721404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1197, y=2090, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.794921875, -3.776559309876864 ], [ -74.794921875, -3.688855143147044 ], [ -74.70703125, -3.688855143147044 ], [ -74.70703125, -3.776559309876864 ], [ -74.794921875, -3.776559309876864 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1199, y=2092, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.619140625, -3.951940856157592 ], [ -74.619140625, -3.864254615721404 ], [ -74.53125, -3.864254615721404 ], [ -74.53125, -3.951940856157592 ], [ -74.619140625, -3.951940856157592 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=150, y=260, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.53125, -3.513421045640039 ], [ -74.53125, -2.81137119333113 ], [ -73.828125, -2.81137119333113 ], [ -73.828125, -3.513421045640039 ], [ -74.53125, -3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=151, y=260, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.828125, -3.513421045640039 ], [ -73.828125, -2.81137119333113 ], [ -73.125, -2.81137119333113 ], [ -73.125, -3.513421045640039 ], [ -73.828125, -3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=151, y=261, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.828125, -4.214943141390642 ], [ -73.828125, -3.513421045640039 ], [ -73.125, -3.513421045640039 ], [ -73.125, -4.214943141390642 ], [ -73.828125, -4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=300, y=522, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.53125, -3.864254615721404 ], [ -74.53125, -3.513421045640039 ], [ -74.1796875, -3.513421045640039 ], [ -74.1796875, -3.864254615721404 ], [ -74.53125, -3.864254615721404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=301, y=522, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.1796875, -3.864254615721404 ], [ -74.1796875, -3.513421045640039 ], [ -73.828125, -3.513421045640039 ], [ -73.828125, -3.864254615721404 ], [ -74.1796875, -3.864254615721404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=301, y=523, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.1796875, -4.214943141390642 ], [ -74.1796875, -3.864254615721404 ], [ -73.828125, -3.864254615721404 ], [ -73.828125, -4.214943141390642 ], [ -74.1796875, -4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=600, y=1046, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.53125, -4.03961782676843 ], [ -74.53125, -3.864254615721404 ], [ -74.35546875, -3.864254615721404 ], [ -74.35546875, -4.03961782676843 ], [ -74.53125, -4.03961782676843 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=601, y=1046, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.35546875, -4.03961782676843 ], [ -74.35546875, -3.864254615721404 ], [ -74.1796875, -3.864254615721404 ], [ -74.1796875, -4.03961782676843 ], [ -74.35546875, -4.03961782676843 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=601, y=1047, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.35546875, -4.214943141390642 ], [ -74.35546875, -4.03961782676843 ], [ -74.1796875, -4.03961782676843 ], [ -74.1796875, -4.214943141390642 ], [ -74.35546875, -4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1201, y=2094, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.443359375, -4.127285323245364 ], [ -74.443359375, -4.03961782676843 ], [ -74.35546875, -4.03961782676843 ], [ -74.35546875, -4.127285323245364 ], [ -74.443359375, -4.127285323245364 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1203, y=2096, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.267578125, -4.302591077119675 ], [ -74.267578125, -4.214943141390642 ], [ -74.1796875, -4.214943141390642 ], [ -74.1796875, -4.302591077119675 ], [ -74.267578125, -4.302591077119675 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=602, y=1048, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.1796875, -4.390228926463391 ], [ -74.1796875, -4.214943141390642 ], [ -74.00390625, -4.214943141390642 ], [ -74.00390625, -4.390228926463391 ], [ -74.1796875, -4.390228926463391 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=603, y=1048, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.00390625, -4.390228926463391 ], [ -74.00390625, -4.214943141390642 ], [ -73.828125, -4.214943141390642 ], [ -73.828125, -4.390228926463391 ], [ -74.00390625, -4.390228926463391 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=603, y=1049, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.00390625, -4.56547355071028 ], [ -74.00390625, -4.390228926463391 ], [ -73.828125, -4.390228926463391 ], [ -73.828125, -4.56547355071028 ], [ -74.00390625, -4.56547355071028 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1205, y=2098, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.091796875, -4.477856485570588 ], [ -74.091796875, -4.390228926463391 ], [ -74.00390625, -4.390228926463391 ], [ -74.00390625, -4.477856485570588 ], [ -74.091796875, -4.477856485570588 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1207, y=2100, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.916015625, -4.653079918274045 ], [ -73.916015625, -4.56547355071028 ], [ -73.828125, -4.56547355071028 ], [ -73.828125, -4.653079918274045 ], [ -73.916015625, -4.653079918274045 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=302, y=524, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.828125, -4.56547355071028 ], [ -73.828125, -4.214943141390642 ], [ -73.4765625, -4.214943141390642 ], [ -73.4765625, -4.56547355071028 ], [ -73.828125, -4.56547355071028 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=303, y=524, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.4765625, -4.56547355071028 ], [ -73.4765625, -4.214943141390642 ], [ -73.125, -4.214943141390642 ], [ -73.125, -4.56547355071028 ], [ -73.4765625, -4.56547355071028 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=303, y=525, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.4765625, -4.915832801313166 ], [ -73.4765625, -4.56547355071028 ], [ -73.125, -4.56547355071028 ], [ -73.125, -4.915832801313166 ], [ -73.4765625, -4.915832801313166 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=604, y=1050, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.828125, -4.740675384778369 ], [ -73.828125, -4.56547355071028 ], [ -73.65234375, -4.56547355071028 ], [ -73.65234375, -4.740675384778369 ], [ -73.828125, -4.740675384778369 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=605, y=1050, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.65234375, -4.740675384778369 ], [ -73.65234375, -4.56547355071028 ], [ -73.4765625, -4.56547355071028 ], [ -73.4765625, -4.740675384778369 ], [ -73.65234375, -4.740675384778369 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=605, y=1051, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.65234375, -4.915832801313166 ], [ -73.65234375, -4.740675384778369 ], [ -73.4765625, -4.740675384778369 ], [ -73.4765625, -4.915832801313166 ], [ -73.65234375, -4.915832801313166 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1209, y=2102, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.740234375, -4.828259746866975 ], [ -73.740234375, -4.740675384778369 ], [ -73.65234375, -4.740675384778369 ], [ -73.65234375, -4.828259746866975 ], [ -73.740234375, -4.828259746866975 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1211, y=2104, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.564453125, -5.003394345022155 ], [ -73.564453125, -4.915832801313166 ], [ -73.4765625, -4.915832801313166 ], [ -73.4765625, -5.003394345022155 ], [ -73.564453125, -5.003394345022155 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1212, y=2104, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.4765625, -5.003394345022155 ], [ -73.4765625, -4.915832801313166 ], [ -73.388671875, -4.915832801313166 ], [ -73.388671875, -5.003394345022155 ], [ -73.4765625, -5.003394345022155 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1213, y=2104, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.388671875, -5.003394345022155 ], [ -73.388671875, -4.915832801313166 ], [ -73.30078125, -4.915832801313166 ], [ -73.30078125, -5.003394345022155 ], [ -73.388671875, -5.003394345022155 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1213, y=2105, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.388671875, -5.090944175033391 ], [ -73.388671875, -5.003394345022155 ], [ -73.30078125, -5.003394345022155 ], [ -73.30078125, -5.090944175033391 ], [ -73.388671875, -5.090944175033391 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=607, y=1052, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.30078125, -5.090944175033391 ], [ -73.30078125, -4.915832801313166 ], [ -73.125, -4.915832801313166 ], [ -73.125, -5.090944175033391 ], [ -73.30078125, -5.090944175033391 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1214, y=2106, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.30078125, -5.178482088522876 ], [ -73.30078125, -5.090944175033391 ], [ -73.212890625, -5.090944175033391 ], [ -73.212890625, -5.178482088522876 ], [ -73.30078125, -5.178482088522876 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1215, y=2106, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.212890625, -5.178482088522876 ], [ -73.212890625, -5.090944175033391 ], [ -73.125, -5.090944175033391 ], [ -73.125, -5.178482088522876 ], [ -73.212890625, -5.178482088522876 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1215, y=2107, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.212890625, -5.266007882805496 ], [ -73.212890625, -5.178482088522876 ], [ -73.125, -5.178482088522876 ], [ -73.125, -5.266007882805496 ], [ -73.212890625, -5.266007882805496 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=38, y=64, z=7)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -2.81137119333113 ], [ -73.125, 0.0 ], [ -70.3125, 0.0 ], [ -70.3125, -2.81137119333113 ], [ -73.125, -2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=39, y=64, z=7)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.3125, -2.81137119333113 ], [ -70.3125, 0.0 ], [ -67.5, 0.0 ], [ -67.5, -2.81137119333113 ], [ -70.3125, -2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=39, y=65, z=7)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.3125, -5.615985819155334 ], [ -70.3125, -2.81137119333113 ], [ -67.5, -2.81137119333113 ], [ -67.5, -5.615985819155334 ], [ -70.3125, -5.615985819155334 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=76, y=130, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -4.214943141390642 ], [ -73.125, -2.81137119333113 ], [ -71.71875, -2.81137119333113 ], [ -71.71875, -4.214943141390642 ], [ -73.125, -4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=77, y=130, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.71875, -4.214943141390642 ], [ -71.71875, -2.81137119333113 ], [ -70.3125, -2.81137119333113 ], [ -70.3125, -4.214943141390642 ], [ -71.71875, -4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=77, y=131, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.71875, -5.615985819155334 ], [ -71.71875, -4.214943141390642 ], [ -70.3125, -4.214943141390642 ], [ -70.3125, -5.615985819155334 ], [ -71.71875, -5.615985819155334 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=152, y=262, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -4.915832801313166 ], [ -73.125, -4.214943141390642 ], [ -72.421875, -4.214943141390642 ], [ -72.421875, -4.915832801313166 ], [ -73.125, -4.915832801313166 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=153, y=262, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.421875, -4.915832801313166 ], [ -72.421875, -4.214943141390642 ], [ -71.71875, -4.214943141390642 ], [ -71.71875, -4.915832801313166 ], [ -72.421875, -4.915832801313166 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=153, y=263, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.421875, -5.615985819155334 ], [ -72.421875, -4.915832801313166 ], [ -71.71875, -4.915832801313166 ], [ -71.71875, -5.615985819155334 ], [ -72.421875, -5.615985819155334 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=304, y=526, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -5.266007882805496 ], [ -73.125, -4.915832801313166 ], [ -72.7734375, -4.915832801313166 ], [ -72.7734375, -5.266007882805496 ], [ -73.125, -5.266007882805496 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=305, y=526, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.7734375, -5.266007882805496 ], [ -72.7734375, -4.915832801313166 ], [ -72.421875, -4.915832801313166 ], [ -72.421875, -5.266007882805496 ], [ -72.7734375, -5.266007882805496 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=305, y=527, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.7734375, -5.615985819155334 ], [ -72.7734375, -5.266007882805496 ], [ -72.421875, -5.266007882805496 ], [ -72.421875, -5.615985819155334 ], [ -72.7734375, -5.615985819155334 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1216, y=2108, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125, -5.353521355337334 ], [ -73.125, -5.266007882805496 ], [ -73.037109375, -5.266007882805496 ], [ -73.037109375, -5.353521355337334 ], [ -73.125, -5.353521355337334 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1217, y=2108, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.037109375, -5.353521355337334 ], [ -73.037109375, -5.266007882805496 ], [ -72.94921875, -5.266007882805496 ], [ -72.94921875, -5.353521355337334 ], [ -73.037109375, -5.353521355337334 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1217, y=2109, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.037109375, -5.441022303717967 ], [ -73.037109375, -5.353521355337334 ], [ -72.94921875, -5.353521355337334 ], [ -72.94921875, -5.441022303717967 ], [ -73.037109375, -5.441022303717967 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=609, y=1054, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.94921875, -5.441022303717967 ], [ -72.94921875, -5.266007882805496 ], [ -72.7734375, -5.266007882805496 ], [ -72.7734375, -5.441022303717967 ], [ -72.94921875, -5.441022303717967 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1218, y=2110, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.94921875, -5.528510525692797 ], [ -72.94921875, -5.441022303717967 ], [ -72.861328125, -5.441022303717967 ], [ -72.861328125, -5.528510525692797 ], [ -72.94921875, -5.528510525692797 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1219, y=2110, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.861328125, -5.528510525692797 ], [ -72.861328125, -5.441022303717967 ], [ -72.7734375, -5.441022303717967 ], [ -72.7734375, -5.528510525692797 ], [ -72.861328125, -5.528510525692797 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1219, y=2111, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.861328125, -5.615985819155334 ], [ -72.861328125, -5.528510525692797 ], [ -72.7734375, -5.528510525692797 ], [ -72.7734375, -5.615985819155334 ], [ -72.861328125, -5.615985819155334 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1220, y=2112, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.7734375, -5.703447982149506 ], [ -72.7734375, -5.615985819155334 ], [ -72.685546875, -5.615985819155334 ], [ -72.685546875, -5.703447982149506 ], [ -72.7734375, -5.703447982149506 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1221, y=2112, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.685546875, -5.703447982149506 ], [ -72.685546875, -5.615985819155334 ], [ -72.59765625, -5.615985819155334 ], [ -72.59765625, -5.703447982149506 ], [ -72.685546875, -5.703447982149506 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1221, y=2113, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.685546875, -5.790896812871956 ], [ -72.685546875, -5.703447982149506 ], [ -72.59765625, -5.703447982149506 ], [ -72.59765625, -5.790896812871956 ], [ -72.685546875, -5.790896812871956 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=611, y=1056, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.59765625, -5.790896812871956 ], [ -72.59765625, -5.615985819155334 ], [ -72.421875, -5.615985819155334 ], [ -72.421875, -5.790896812871956 ], [ -72.59765625, -5.790896812871956 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1222, y=2114, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.59765625, -5.87833210967432 ], [ -72.59765625, -5.790896812871956 ], [ -72.509765625, -5.790896812871956 ], [ -72.509765625, -5.87833210967432 ], [ -72.59765625, -5.87833210967432 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1223, y=2114, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.509765625, -5.87833210967432 ], [ -72.509765625, -5.790896812871956 ], [ -72.421875, -5.790896812871956 ], [ -72.421875, -5.87833210967432 ], [ -72.509765625, -5.87833210967432 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1223, y=2115, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.509765625, -5.965753671065528 ], [ -72.509765625, -5.87833210967432 ], [ -72.421875, -5.87833210967432 ], [ -72.421875, -5.965753671065528 ], [ -72.509765625, -5.965753671065528 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=306, y=528, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.421875, -5.965753671065528 ], [ -72.421875, -5.615985819155334 ], [ -72.0703125, -5.615985819155334 ], [ -72.0703125, -5.965753671065528 ], [ -72.421875, -5.965753671065528 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=307, y=528, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.0703125, -5.965753671065528 ], [ -72.0703125, -5.615985819155334 ], [ -71.71875, -5.615985819155334 ], [ -71.71875, -5.965753671065528 ], [ -72.0703125, -5.965753671065528 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=307, y=529, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.0703125, -6.315298538330036 ], [ -72.0703125, -5.965753671065528 ], [ -71.71875, -5.965753671065528 ], [ -71.71875, -6.315298538330036 ], [ -72.0703125, -6.315298538330036 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1224, y=2116, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.421875, -6.053161295714073 ], [ -72.421875, -5.965753671065528 ], [ -72.333984375, -5.965753671065528 ], [ -72.333984375, -6.053161295714073 ], [ -72.421875, -6.053161295714073 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1225, y=2116, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.333984375, -6.053161295714073 ], [ -72.333984375, -5.965753671065528 ], [ -72.24609375, -5.965753671065528 ], [ -72.24609375, -6.053161295714073 ], [ -72.333984375, -6.053161295714073 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1225, y=2117, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.333984375, -6.1405547824503 ], [ -72.333984375, -6.053161295714073 ], [ -72.24609375, -6.053161295714073 ], [ -72.24609375, -6.1405547824503 ], [ -72.333984375, -6.1405547824503 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=613, y=1058, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.24609375, -6.1405547824503 ], [ -72.24609375, -5.965753671065528 ], [ -72.0703125, -5.965753671065528 ], [ -72.0703125, -6.1405547824503 ], [ -72.24609375, -6.1405547824503 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1226, y=2118, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.24609375, -6.227933930268671 ], [ -72.24609375, -6.1405547824503 ], [ -72.158203125, -6.1405547824503 ], [ -72.158203125, -6.227933930268671 ], [ -72.24609375, -6.227933930268671 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1227, y=2118, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.158203125, -6.227933930268671 ], [ -72.158203125, -6.1405547824503 ], [ -72.0703125, -6.1405547824503 ], [ -72.0703125, -6.227933930268671 ], [ -72.158203125, -6.227933930268671 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1227, y=2119, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.158203125, -6.315298538330036 ], [ -72.158203125, -6.227933930268671 ], [ -72.0703125, -6.227933930268671 ], [ -72.0703125, -6.315298538330036 ], [ -72.158203125, -6.315298538330036 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1228, y=2120, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.0703125, -6.402648405963892 ], [ -72.0703125, -6.315298538330036 ], [ -71.982421875, -6.315298538330036 ], [ -71.982421875, -6.402648405963892 ], [ -72.0703125, -6.402648405963892 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1229, y=2120, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.982421875, -6.402648405963892 ], [ -71.982421875, -6.315298538330036 ], [ -71.89453125, -6.315298538330036 ], [ -71.89453125, -6.402648405963892 ], [ -71.982421875, -6.402648405963892 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=615, y=1060, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.89453125, -6.489983332670652 ], [ -71.89453125, -6.315298538330036 ], [ -71.71875, -6.315298538330036 ], [ -71.71875, -6.489983332670652 ], [ -71.89453125, -6.489983332670652 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1231, y=2122, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.806640625, -6.577303118123885 ], [ -71.806640625, -6.489983332670652 ], [ -71.71875, -6.489983332670652 ], [ -71.71875, -6.577303118123885 ], [ -71.806640625, -6.577303118123885 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=154, y=264, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.71875, -6.315298538330036 ], [ -71.71875, -5.615985819155334 ], [ -71.015625, -5.615985819155334 ], [ -71.015625, -6.315298538330036 ], [ -71.71875, -6.315298538330036 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=155, y=264, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.015625, -6.315298538330036 ], [ -71.015625, -5.615985819155334 ], [ -70.3125, -5.615985819155334 ], [ -70.3125, -6.315298538330036 ], [ -71.015625, -6.315298538330036 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=155, y=265, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.015625, -7.01366792756663 ], [ -71.015625, -6.315298538330036 ], [ -70.3125, -6.315298538330036 ], [ -70.3125, -7.01366792756663 ], [ -71.015625, -7.01366792756663 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=308, y=530, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.71875, -6.664607562172579 ], [ -71.71875, -6.315298538330036 ], [ -71.3671875, -6.315298538330036 ], [ -71.3671875, -6.664607562172579 ], [ -71.71875, -6.664607562172579 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=309, y=530, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.3671875, -6.664607562172579 ], [ -71.3671875, -6.315298538330036 ], [ -71.015625, -6.315298538330036 ], [ -71.015625, -6.664607562172579 ], [ -71.3671875, -6.664607562172579 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=309, y=531, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.3671875, -7.01366792756663 ], [ -71.3671875, -6.664607562172579 ], [ -71.015625, -6.664607562172579 ], [ -71.015625, -7.01366792756663 ], [ -71.3671875, -7.01366792756663 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1233, y=2124, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.630859375, -6.751896464843376 ], [ -71.630859375, -6.664607562172579 ], [ -71.54296875, -6.664607562172579 ], [ -71.54296875, -6.751896464843376 ], [ -71.630859375, -6.751896464843376 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=617, y=1062, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.54296875, -6.83916962634281 ], [ -71.54296875, -6.664607562172579 ], [ -71.3671875, -6.664607562172579 ], [ -71.3671875, -6.83916962634281 ], [ -71.54296875, -6.83916962634281 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1235, y=2126, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.455078125, -6.926426847059554 ], [ -71.455078125, -6.83916962634281 ], [ -71.3671875, -6.83916962634281 ], [ -71.3671875, -6.926426847059554 ], [ -71.455078125, -6.926426847059554 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1237, y=2128, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.279296875, -7.100892668623649 ], [ -71.279296875, -7.01366792756663 ], [ -71.19140625, -7.01366792756663 ], [ -71.19140625, -7.100892668623649 ], [ -71.279296875, -7.100892668623649 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=619, y=1064, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.19140625, -7.18810087117902 ], [ -71.19140625, -7.01366792756663 ], [ -71.015625, -7.01366792756663 ], [ -71.015625, -7.18810087117902 ], [ -71.19140625, -7.18810087117902 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1239, y=2130, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.103515625, -7.275292336372169 ], [ -71.103515625, -7.18810087117902 ], [ -71.015625, -7.18810087117902 ], [ -71.015625, -7.275292336372169 ], [ -71.103515625, -7.275292336372169 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=310, y=532, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.015625, -7.36246686553574 ], [ -71.015625, -7.01366792756663 ], [ -70.6640625, -7.01366792756663 ], [ -70.6640625, -7.36246686553574 ], [ -71.015625, -7.36246686553574 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=311, y=532, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.6640625, -7.36246686553574 ], [ -70.6640625, -7.01366792756663 ], [ -70.3125, -7.01366792756663 ], [ -70.3125, -7.36246686553574 ], [ -70.6640625, -7.36246686553574 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=311, y=533, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.6640625, -7.710991655433221 ], [ -70.6640625, -7.36246686553574 ], [ -70.3125, -7.36246686553574 ], [ -70.3125, -7.710991655433221 ], [ -70.6640625, -7.710991655433221 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1241, y=2132, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.927734375, -7.449624260197812 ], [ -70.927734375, -7.36246686553574 ], [ -70.83984375, -7.36246686553574 ], [ -70.83984375, -7.449624260197812 ], [ -70.927734375, -7.449624260197812 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=621, y=1066, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.83984375, -7.536764322084077 ], [ -70.83984375, -7.36246686553574 ], [ -70.6640625, -7.36246686553574 ], [ -70.6640625, -7.536764322084077 ], [ -70.83984375, -7.536764322084077 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1243, y=2134, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.751953125, -7.623886853120042 ], [ -70.751953125, -7.536764322084077 ], [ -70.6640625, -7.536764322084077 ], [ -70.6640625, -7.623886853120042 ], [ -70.751953125, -7.623886853120042 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1245, y=2136, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.576171875, -7.7980785313553 ], [ -70.576171875, -7.710991655433221 ], [ -70.48828125, -7.710991655433221 ], [ -70.48828125, -7.7980785313553 ], [ -70.576171875, -7.7980785313553 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=623, y=1068, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.48828125, -7.885147283424327 ], [ -70.48828125, -7.710991655433221 ], [ -70.3125, -7.710991655433221 ], [ -70.3125, -7.885147283424327 ], [ -70.48828125, -7.885147283424327 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=78, y=132, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.3125, -7.01366792756663 ], [ -70.3125, -5.615985819155334 ], [ -68.90625, -5.615985819155334 ], [ -68.90625, -7.01366792756663 ], [ -70.3125, -7.01366792756663 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=79, y=132, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.90625, -7.01366792756663 ], [ -68.90625, -5.615985819155334 ], [ -67.5, -5.615985819155334 ], [ -67.5, -7.01366792756663 ], [ -68.90625, -7.01366792756663 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=79, y=133, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.90625, -8.407168163601074 ], [ -68.90625, -7.01366792756663 ], [ -67.5, -7.01366792756663 ], [ -67.5, -8.407168163601074 ], [ -68.90625, -8.407168163601074 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=156, y=266, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.3125, -7.710991655433221 ], [ -70.3125, -7.01366792756663 ], [ -69.609375, -7.01366792756663 ], [ -69.609375, -7.710991655433221 ], [ -70.3125, -7.710991655433221 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=157, y=266, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.609375, -7.710991655433221 ], [ -69.609375, -7.01366792756663 ], [ -68.90625, -7.01366792756663 ], [ -68.90625, -7.710991655433221 ], [ -69.609375, -7.710991655433221 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=157, y=267, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.609375, -8.407168163601074 ], [ -69.609375, -7.710991655433221 ], [ -68.90625, -7.710991655433221 ], [ -68.90625, -8.407168163601074 ], [ -69.609375, -8.407168163601074 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=624, y=1068, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.3125, -7.885147283424327 ], [ -70.3125, -7.710991655433221 ], [ -70.13671875, -7.710991655433221 ], [ -70.13671875, -7.885147283424327 ], [ -70.3125, -7.885147283424327 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=625, y=1068, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.13671875, -7.885147283424327 ], [ -70.13671875, -7.710991655433221 ], [ -69.9609375, -7.710991655433221 ], [ -69.9609375, -7.885147283424327 ], [ -70.13671875, -7.885147283424327 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=625, y=1069, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.13671875, -8.059229627200187 ], [ -70.13671875, -7.885147283424327 ], [ -69.9609375, -7.885147283424327 ], [ -69.9609375, -8.059229627200187 ], [ -70.13671875, -8.059229627200187 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1248, y=2138, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.3125, -7.972197714386869 ], [ -70.3125, -7.885147283424327 ], [ -70.224609375, -7.885147283424327 ], [ -70.224609375, -7.972197714386869 ], [ -70.3125, -7.972197714386869 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1249, y=2138, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.224609375, -7.972197714386869 ], [ -70.224609375, -7.885147283424327 ], [ -70.13671875, -7.885147283424327 ], [ -70.13671875, -7.972197714386869 ], [ -70.224609375, -7.972197714386869 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1249, y=2139, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.224609375, -8.059229627200187 ], [ -70.224609375, -7.972197714386869 ], [ -70.13671875, -7.972197714386869 ], [ -70.13671875, -8.059229627200187 ], [ -70.224609375, -8.059229627200187 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=313, y=534, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.9609375, -8.059229627200187 ], [ -69.9609375, -7.710991655433221 ], [ -69.609375, -7.710991655433221 ], [ -69.609375, -8.059229627200187 ], [ -69.9609375, -8.059229627200187 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=626, y=1070, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.9609375, -8.233237111274557 ], [ -69.9609375, -8.059229627200187 ], [ -69.78515625, -8.059229627200187 ], [ -69.78515625, -8.233237111274557 ], [ -69.9609375, -8.233237111274557 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=627, y=1070, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.78515625, -8.233237111274557 ], [ -69.78515625, -8.059229627200187 ], [ -69.609375, -8.059229627200187 ], [ -69.609375, -8.233237111274557 ], [ -69.78515625, -8.233237111274557 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=627, y=1071, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.78515625, -8.407168163601074 ], [ -69.78515625, -8.233237111274557 ], [ -69.609375, -8.233237111274557 ], [ -69.609375, -8.407168163601074 ], [ -69.78515625, -8.407168163601074 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1252, y=2142, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.9609375, -8.320212289522946 ], [ -69.9609375, -8.233237111274557 ], [ -69.873046875, -8.233237111274557 ], [ -69.873046875, -8.320212289522946 ], [ -69.9609375, -8.320212289522946 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1253, y=2142, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.873046875, -8.320212289522946 ], [ -69.873046875, -8.233237111274557 ], [ -69.78515625, -8.233237111274557 ], [ -69.78515625, -8.320212289522946 ], [ -69.873046875, -8.320212289522946 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1253, y=2143, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.873046875, -8.407168163601074 ], [ -69.873046875, -8.320212289522946 ], [ -69.78515625, -8.320212289522946 ], [ -69.78515625, -8.407168163601074 ], [ -69.873046875, -8.407168163601074 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1250, y=2140, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.13671875, -8.146242825034385 ], [ -70.13671875, -8.059229627200187 ], [ -70.048828125, -8.059229627200187 ], [ -70.048828125, -8.146242825034385 ], [ -70.13671875, -8.146242825034385 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1251, y=2140, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.048828125, -8.146242825034385 ], [ -70.048828125, -8.059229627200187 ], [ -69.9609375, -8.059229627200187 ], [ -69.9609375, -8.146242825034385 ], [ -70.048828125, -8.146242825034385 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1251, y=2141, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.048828125, -8.233237111274557 ], [ -70.048828125, -8.146242825034385 ], [ -69.9609375, -8.146242825034385 ], [ -69.9609375, -8.233237111274557 ], [ -70.048828125, -8.233237111274557 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1254, y=2144, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.78515625, -8.49410453755188 ], [ -69.78515625, -8.407168163601074 ], [ -69.697265625, -8.407168163601074 ], [ -69.697265625, -8.49410453755188 ], [ -69.78515625, -8.49410453755188 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1255, y=2144, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.697265625, -8.49410453755188 ], [ -69.697265625, -8.407168163601074 ], [ -69.609375, -8.407168163601074 ], [ -69.609375, -8.49410453755188 ], [ -69.697265625, -8.49410453755188 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1255, y=2145, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.697265625, -8.581021215641846 ], [ -69.697265625, -8.49410453755188 ], [ -69.609375, -8.49410453755188 ], [ -69.609375, -8.581021215641846 ], [ -69.697265625, -8.581021215641846 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=628, y=1072, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.609375, -8.581021215641846 ], [ -69.609375, -8.407168163601074 ], [ -69.43359375, -8.407168163601074 ], [ -69.43359375, -8.581021215641846 ], [ -69.609375, -8.581021215641846 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=629, y=1072, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.43359375, -8.581021215641846 ], [ -69.43359375, -8.407168163601074 ], [ -69.2578125, -8.407168163601074 ], [ -69.2578125, -8.581021215641846 ], [ -69.43359375, -8.581021215641846 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=629, y=1073, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.43359375, -8.754794702435612 ], [ -69.43359375, -8.581021215641846 ], [ -69.2578125, -8.581021215641846 ], [ -69.2578125, -8.754794702435612 ], [ -69.43359375, -8.754794702435612 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1256, y=2146, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.609375, -8.667918002363118 ], [ -69.609375, -8.581021215641846 ], [ -69.521484375, -8.581021215641846 ], [ -69.521484375, -8.667918002363118 ], [ -69.609375, -8.667918002363118 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1257, y=2146, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.521484375, -8.667918002363118 ], [ -69.521484375, -8.581021215641846 ], [ -69.43359375, -8.581021215641846 ], [ -69.43359375, -8.667918002363118 ], [ -69.521484375, -8.667918002363118 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1257, y=2147, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.521484375, -8.754794702435612 ], [ -69.521484375, -8.667918002363118 ], [ -69.43359375, -8.667918002363118 ], [ -69.43359375, -8.754794702435612 ], [ -69.521484375, -8.754794702435612 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=315, y=536, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.2578125, -8.754794702435612 ], [ -69.2578125, -8.407168163601074 ], [ -68.90625, -8.407168163601074 ], [ -68.90625, -8.754794702435612 ], [ -69.2578125, -8.754794702435612 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=630, y=1074, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.2578125, -8.928487062665505 ], [ -69.2578125, -8.754794702435612 ], [ -69.08203125, -8.754794702435612 ], [ -69.08203125, -8.928487062665505 ], [ -69.2578125, -8.928487062665505 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=631, y=1074, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.08203125, -8.928487062665505 ], [ -69.08203125, -8.754794702435612 ], [ -68.90625, -8.754794702435612 ], [ -68.90625, -8.928487062665505 ], [ -69.08203125, -8.928487062665505 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=631, y=1075, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.08203125, -9.102096738726447 ], [ -69.08203125, -8.928487062665505 ], [ -68.90625, -8.928487062665505 ], [ -68.90625, -9.102096738726447 ], [ -69.08203125, -9.102096738726447 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1260, y=2150, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.2578125, -9.015302333420587 ], [ -69.2578125, -8.928487062665505 ], [ -69.169921875, -8.928487062665505 ], [ -69.169921875, -9.015302333420587 ], [ -69.2578125, -9.015302333420587 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1261, y=2150, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.169921875, -9.015302333420587 ], [ -69.169921875, -8.928487062665505 ], [ -69.08203125, -8.928487062665505 ], [ -69.08203125, -9.015302333420587 ], [ -69.169921875, -9.015302333420587 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1261, y=2151, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.169921875, -9.102096738726447 ], [ -69.169921875, -9.015302333420587 ], [ -69.08203125, -9.015302333420587 ], [ -69.08203125, -9.102096738726447 ], [ -69.169921875, -9.102096738726447 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1258, y=2148, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.43359375, -8.841651120809141 ], [ -69.43359375, -8.754794702435612 ], [ -69.345703125, -8.754794702435612 ], [ -69.345703125, -8.841651120809141 ], [ -69.43359375, -8.841651120809141 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1259, y=2148, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.345703125, -8.841651120809141 ], [ -69.345703125, -8.754794702435612 ], [ -69.2578125, -8.754794702435612 ], [ -69.2578125, -8.841651120809141 ], [ -69.345703125, -8.841651120809141 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1259, y=2149, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.345703125, -8.928487062665505 ], [ -69.345703125, -8.841651120809141 ], [ -69.2578125, -8.841651120809141 ], [ -69.2578125, -8.928487062665505 ], [ -69.345703125, -8.928487062665505 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1262, y=2152, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.08203125, -9.188870084473402 ], [ -69.08203125, -9.102096738726447 ], [ -68.994140625, -9.102096738726447 ], [ -68.994140625, -9.188870084473402 ], [ -69.08203125, -9.188870084473402 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1263, y=2152, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.994140625, -9.188870084473402 ], [ -68.994140625, -9.102096738726447 ], [ -68.90625, -9.102096738726447 ], [ -68.90625, -9.188870084473402 ], [ -68.994140625, -9.188870084473402 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1263, y=2153, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.994140625, -9.275622176792101 ], [ -68.994140625, -9.188870084473402 ], [ -68.90625, -9.188870084473402 ], [ -68.90625, -9.275622176792101 ], [ -68.994140625, -9.275622176792101 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=158, y=268, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.90625, -9.102096738726447 ], [ -68.90625, -8.407168163601074 ], [ -68.203125, -8.407168163601074 ], [ -68.203125, -9.102096738726447 ], [ -68.90625, -9.102096738726447 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=159, y=268, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.203125, -9.102096738726447 ], [ -68.203125, -8.407168163601074 ], [ -67.5, -8.407168163601074 ], [ -67.5, -9.102096738726447 ], [ -68.203125, -9.102096738726447 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=159, y=269, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.203125, -9.795677582829734 ], [ -68.203125, -9.102096738726447 ], [ -67.5, -9.102096738726447 ], [ -67.5, -9.795677582829734 ], [ -68.203125, -9.795677582829734 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=632, y=1076, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.90625, -9.275622176792101 ], [ -68.90625, -9.102096738726447 ], [ -68.73046875, -9.102096738726447 ], [ -68.73046875, -9.275622176792101 ], [ -68.90625, -9.275622176792101 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=633, y=1076, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.73046875, -9.275622176792101 ], [ -68.73046875, -9.102096738726447 ], [ -68.5546875, -9.102096738726447 ], [ -68.5546875, -9.275622176792101 ], [ -68.73046875, -9.275622176792101 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=633, y=1077, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.73046875, -9.449061826881424 ], [ -68.73046875, -9.275622176792101 ], [ -68.5546875, -9.275622176792101 ], [ -68.5546875, -9.449061826881424 ], [ -68.73046875, -9.449061826881424 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1264, y=2154, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.90625, -9.362352822055602 ], [ -68.90625, -9.275622176792101 ], [ -68.818359375, -9.275622176792101 ], [ -68.818359375, -9.362352822055602 ], [ -68.90625, -9.362352822055602 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1265, y=2154, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.818359375, -9.362352822055602 ], [ -68.818359375, -9.275622176792101 ], [ -68.73046875, -9.275622176792101 ], [ -68.73046875, -9.362352822055602 ], [ -68.818359375, -9.362352822055602 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=317, y=538, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.5546875, -9.449061826881424 ], [ -68.5546875, -9.102096738726447 ], [ -68.203125, -9.102096738726447 ], [ -68.203125, -9.449061826881424 ], [ -68.5546875, -9.449061826881424 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=634, y=1078, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.5546875, -9.622414142924802 ], [ -68.5546875, -9.449061826881424 ], [ -68.37890625, -9.449061826881424 ], [ -68.37890625, -9.622414142924802 ], [ -68.5546875, -9.622414142924802 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=635, y=1078, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.37890625, -9.622414142924802 ], [ -68.37890625, -9.449061826881424 ], [ -68.203125, -9.449061826881424 ], [ -68.203125, -9.622414142924802 ], [ -68.37890625, -9.622414142924802 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=635, y=1079, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.37890625, -9.795677582829734 ], [ -68.37890625, -9.622414142924802 ], [ -68.203125, -9.622414142924802 ], [ -68.203125, -9.795677582829734 ], [ -68.37890625, -9.795677582829734 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1269, y=2158, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.466796875, -9.709057068618211 ], [ -68.466796875, -9.622414142924802 ], [ -68.37890625, -9.622414142924802 ], [ -68.37890625, -9.709057068618211 ], [ -68.466796875, -9.709057068618211 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1267, y=2156, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.642578125, -9.535748998133618 ], [ -68.642578125, -9.449061826881424 ], [ -68.5546875, -9.449061826881424 ], [ -68.5546875, -9.535748998133618 ], [ -68.642578125, -9.535748998133618 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1271, y=2160, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.291015625, -9.882275493429942 ], [ -68.291015625, -9.795677582829734 ], [ -68.203125, -9.795677582829734 ], [ -68.203125, -9.882275493429942 ], [ -68.291015625, -9.882275493429942 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=636, y=1080, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.203125, -9.968850608546109 ], [ -68.203125, -9.795677582829734 ], [ -68.02734375, -9.795677582829734 ], [ -68.02734375, -9.968850608546109 ], [ -68.203125, -9.968850608546109 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=637, y=1080, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.02734375, -9.968850608546109 ], [ -68.02734375, -9.795677582829734 ], [ -67.8515625, -9.795677582829734 ], [ -67.8515625, -9.968850608546109 ], [ -68.02734375, -9.968850608546109 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=637, y=1081, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.02734375, -10.141931686131025 ], [ -68.02734375, -9.968850608546109 ], [ -67.8515625, -9.968850608546109 ], [ -67.8515625, -10.141931686131025 ], [ -68.02734375, -10.141931686131025 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1273, y=2162, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.115234375, -10.055402736564231 ], [ -68.115234375, -9.968850608546109 ], [ -68.02734375, -9.968850608546109 ], [ -68.02734375, -10.055402736564231 ], [ -68.115234375, -10.055402736564231 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=319, y=540, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.8515625, -10.141931686131025 ], [ -67.8515625, -9.795677582829734 ], [ -67.5, -9.795677582829734 ], [ -67.5, -10.141931686131025 ], [ -67.8515625, -10.141931686131025 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=638, y=1082, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.8515625, -10.314919285813154 ], [ -67.8515625, -10.141931686131025 ], [ -67.67578125, -10.141931686131025 ], [ -67.67578125, -10.314919285813154 ], [ -67.8515625, -10.314919285813154 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=639, y=1082, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.67578125, -10.314919285813154 ], [ -67.67578125, -10.141931686131025 ], [ -67.5, -10.141931686131025 ], [ -67.5, -10.314919285813154 ], [ -67.67578125, -10.314919285813154 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=639, y=1083, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.67578125, -10.487811882056686 ], [ -67.67578125, -10.314919285813154 ], [ -67.5, -10.314919285813154 ], [ -67.5, -10.487811882056686 ], [ -67.67578125, -10.487811882056686 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1277, y=2166, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.763671875, -10.401377554543547 ], [ -67.763671875, -10.314919285813154 ], [ -67.67578125, -10.314919285813154 ], [ -67.67578125, -10.401377554543547 ], [ -67.763671875, -10.401377554543547 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1275, y=2164, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453125, -10.228437266155943 ], [ -67.939453125, -10.141931686131025 ], [ -67.8515625, -10.141931686131025 ], [ -67.8515625, -10.228437266155943 ], [ -67.939453125, -10.228437266155943 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1279, y=2168, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.587890625, -10.574222078332808 ], [ -67.587890625, -10.487811882056686 ], [ -67.5, -10.487811882056686 ], [ -67.5, -10.574222078332808 ], [ -67.587890625, -10.574222078332808 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=20, y=32, z=6)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, -5.615985819155334 ], [ -67.5, 0.0 ], [ -61.875, 0.0 ], [ -61.875, -5.615985819155334 ], [ -67.5, -5.615985819155334 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=21, y=32, z=6)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, -5.615985819155334 ], [ -61.875, 0.0 ], [ -56.25, 0.0 ], [ -56.25, -5.615985819155334 ], [ -61.875, -5.615985819155334 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=21, y=33, z=6)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, -11.178401873711781 ], [ -61.875, -5.615985819155334 ], [ -56.25, -5.615985819155334 ], [ -56.25, -11.178401873711781 ], [ -61.875, -11.178401873711781 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=40, y=66, z=7)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, -8.407168163601074 ], [ -67.5, -5.615985819155334 ], [ -64.6875, -5.615985819155334 ], [ -64.6875, -8.407168163601074 ], [ -67.5, -8.407168163601074 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=41, y=66, z=7)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.6875, -8.407168163601074 ], [ -64.6875, -5.615985819155334 ], [ -61.875, -5.615985819155334 ], [ -61.875, -8.407168163601074 ], [ -64.6875, -8.407168163601074 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=41, y=67, z=7)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.6875, -11.178401873711781 ], [ -64.6875, -8.407168163601074 ], [ -61.875, -8.407168163601074 ], [ -61.875, -11.178401873711781 ], [ -64.6875, -11.178401873711781 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=80, y=134, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, -9.795677582829734 ], [ -67.5, -8.407168163601074 ], [ -66.09375, -8.407168163601074 ], [ -66.09375, -9.795677582829734 ], [ -67.5, -9.795677582829734 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=81, y=134, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.09375, -9.795677582829734 ], [ -66.09375, -8.407168163601074 ], [ -64.6875, -8.407168163601074 ], [ -64.6875, -9.795677582829734 ], [ -66.09375, -9.795677582829734 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=81, y=135, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.09375, -11.178401873711781 ], [ -66.09375, -9.795677582829734 ], [ -64.6875, -9.795677582829734 ], [ -64.6875, -11.178401873711781 ], [ -66.09375, -11.178401873711781 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=160, y=270, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, -10.487811882056686 ], [ -67.5, -9.795677582829734 ], [ -66.796875, -9.795677582829734 ], [ -66.796875, -10.487811882056686 ], [ -67.5, -10.487811882056686 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=161, y=270, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.796875, -10.487811882056686 ], [ -66.796875, -9.795677582829734 ], [ -66.09375, -9.795677582829734 ], [ -66.09375, -10.487811882056686 ], [ -66.796875, -10.487811882056686 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=161, y=271, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.796875, -11.178401873711781 ], [ -66.796875, -10.487811882056686 ], [ -66.09375, -10.487811882056686 ], [ -66.09375, -11.178401873711781 ], [ -66.796875, -11.178401873711781 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=640, y=1084, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.5, -10.660607953624764 ], [ -67.5, -10.487811882056686 ], [ -67.32421875, -10.487811882056686 ], [ -67.32421875, -10.660607953624764 ], [ -67.5, -10.660607953624764 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=641, y=1084, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.32421875, -10.660607953624764 ], [ -67.32421875, -10.487811882056686 ], [ -67.1484375, -10.487811882056686 ], [ -67.1484375, -10.660607953624764 ], [ -67.32421875, -10.660607953624764 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=641, y=1085, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.32421875, -10.833305983642491 ], [ -67.32421875, -10.660607953624764 ], [ -67.1484375, -10.660607953624764 ], [ -67.1484375, -10.833305983642491 ], [ -67.32421875, -10.833305983642491 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1281, y=2170, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.412109375, -10.74696931846 ], [ -67.412109375, -10.660607953624764 ], [ -67.32421875, -10.660607953624764 ], [ -67.32421875, -10.74696931846 ], [ -67.412109375, -10.74696931846 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=321, y=542, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.1484375, -10.833305983642491 ], [ -67.1484375, -10.487811882056686 ], [ -66.796875, -10.487811882056686 ], [ -66.796875, -10.833305983642491 ], [ -67.1484375, -10.833305983642491 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=642, y=1086, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.1484375, -11.005904459659458 ], [ -67.1484375, -10.833305983642491 ], [ -66.97265625, -10.833305983642491 ], [ -66.97265625, -11.005904459659458 ], [ -67.1484375, -11.005904459659458 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=643, y=1086, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.97265625, -11.005904459659458 ], [ -66.97265625, -10.833305983642491 ], [ -66.796875, -10.833305983642491 ], [ -66.796875, -11.005904459659458 ], [ -66.97265625, -11.005904459659458 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1286, y=2174, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.97265625, -11.092165893502001 ], [ -66.97265625, -11.005904459659458 ], [ -66.884765625, -11.005904459659458 ], [ -66.884765625, -11.092165893502001 ], [ -66.97265625, -11.092165893502001 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1287, y=2174, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.884765625, -11.092165893502001 ], [ -66.884765625, -11.005904459659458 ], [ -66.796875, -11.005904459659458 ], [ -66.796875, -11.092165893502001 ], [ -66.884765625, -11.092165893502001 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1287, y=2175, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.884765625, -11.178401873711781 ], [ -66.884765625, -11.092165893502001 ], [ -66.796875, -11.092165893502001 ], [ -66.796875, -11.178401873711781 ], [ -66.884765625, -11.178401873711781 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1283, y=2172, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.236328125, -10.919617760254688 ], [ -67.236328125, -10.833305983642491 ], [ -67.1484375, -10.833305983642491 ], [ -67.1484375, -10.919617760254688 ], [ -67.236328125, -10.919617760254688 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=88, y=128, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, -1.406108835435157 ], [ -56.25, 0.0 ], [ -54.84375, 0.0 ], [ -54.84375, -1.406108835435157 ], [ -56.25, -1.406108835435157 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1424, y=2049, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.84375, -0.175780974247087 ], [ -54.84375, -0.087890590530825 ], [ -54.755859375, -0.087890590530825 ], [ -54.755859375, -0.175780974247087 ], [ -54.84375, -0.175780974247087 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1426, y=2051, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.66796875, -0.351560293992272 ], [ -54.66796875, -0.263670944336657 ], [ -54.580078125, -0.263670944336657 ], [ -54.580078125, -0.351560293992272 ], [ -54.66796875, -0.351560293992272 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=712, y=1025, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.84375, -0.351560293992272 ], [ -54.84375, -0.175780974247087 ], [ -54.66796875, -0.175780974247087 ], [ -54.66796875, -0.351560293992272 ], [ -54.84375, -0.351560293992272 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1428, y=2053, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.4921875, -0.527336304811514 ], [ -54.4921875, -0.439448816413968 ], [ -54.404296875, -0.439448816413968 ], [ -54.404296875, -0.527336304811514 ], [ -54.4921875, -0.527336304811514 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1430, y=2055, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.31640625, -0.703107352436487 ], [ -54.31640625, -0.615222552406843 ], [ -54.228515625, -0.615222552406843 ], [ -54.228515625, -0.703107352436487 ], [ -54.31640625, -0.703107352436487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=714, y=1027, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.4921875, -0.703107352436487 ], [ -54.4921875, -0.527336304811514 ], [ -54.31640625, -0.527336304811514 ], [ -54.31640625, -0.703107352436487 ], [ -54.4921875, -0.703107352436487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=356, y=513, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.84375, -0.703107352436487 ], [ -54.84375, -0.351560293992272 ], [ -54.4921875, -0.351560293992272 ], [ -54.4921875, -0.703107352436487 ], [ -54.84375, -0.703107352436487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1432, y=2057, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.140625, -0.878871782832416 ], [ -54.140625, -0.790990498154004 ], [ -54.052734375, -0.790990498154004 ], [ -54.052734375, -0.878871782832416 ], [ -54.140625, -0.878871782832416 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1434, y=2059, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.96484375, -1.054627942275884 ], [ -53.96484375, -0.966750999766632 ], [ -53.876953125, -0.966750999766632 ], [ -53.876953125, -1.054627942275884 ], [ -53.96484375, -1.054627942275884 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=716, y=1029, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.140625, -1.054627942275884 ], [ -54.140625, -0.878871782832416 ], [ -53.96484375, -0.878871782832416 ], [ -53.96484375, -1.054627942275884 ], [ -54.140625, -1.054627942275884 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1436, y=2061, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.7890625, -1.230374177432607 ], [ -53.7890625, -1.142502403706155 ], [ -53.701171875, -1.142502403706155 ], [ -53.701171875, -1.230374177432607 ], [ -53.7890625, -1.230374177432607 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1438, y=2063, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.61328125, -1.406108835435157 ], [ -53.61328125, -1.318243056862006 ], [ -53.525390625, -1.318243056862006 ], [ -53.525390625, -1.406108835435157 ], [ -53.61328125, -1.406108835435157 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=718, y=1031, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.7890625, -1.406108835435157 ], [ -53.7890625, -1.230374177432607 ], [ -53.61328125, -1.230374177432607 ], [ -53.61328125, -1.406108835435157 ], [ -53.7890625, -1.406108835435157 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=358, y=515, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.140625, -1.406108835435157 ], [ -54.140625, -1.054627942275884 ], [ -53.7890625, -1.054627942275884 ], [ -53.7890625, -1.406108835435157 ], [ -54.140625, -1.406108835435157 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=178, y=257, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.84375, -1.406108835435157 ], [ -54.84375, -0.703107352436487 ], [ -54.140625, -0.703107352436487 ], [ -54.140625, -1.406108835435157 ], [ -54.84375, -1.406108835435157 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=89, y=129, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.84375, -2.81137119333113 ], [ -54.84375, -1.406108835435157 ], [ -53.4375, -1.406108835435157 ], [ -53.4375, -2.81137119333113 ], [ -54.84375, -2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=88, y=129, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, -2.81137119333113 ], [ -56.25, -1.406108835435157 ], [ -54.84375, -1.406108835435157 ], [ -54.84375, -2.81137119333113 ], [ -56.25, -2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1440, y=2065, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.4375, -1.581830263960642 ], [ -53.4375, -1.49397130662932 ], [ -53.349609375, -1.49397130662932 ], [ -53.349609375, -1.581830263960642 ], [ -53.4375, -1.581830263960642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1442, y=2067, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.26171875, -1.757536811308316 ], [ -53.26171875, -1.669685500986579 ], [ -53.173828125, -1.669685500986579 ], [ -53.173828125, -1.757536811308316 ], [ -53.26171875, -1.757536811308316 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=720, y=1033, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.4375, -1.757536811308316 ], [ -53.4375, -1.581830263960642 ], [ -53.26171875, -1.581830263960642 ], [ -53.26171875, -1.757536811308316 ], [ -53.4375, -1.757536811308316 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1444, y=2069, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.0859375, -1.933226826477117 ], [ -53.0859375, -1.845383988573192 ], [ -52.998046875, -1.845383988573192 ], [ -52.998046875, -1.933226826477117 ], [ -53.0859375, -1.933226826477117 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1446, y=2071, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.91015625, -2.108898659243132 ], [ -52.91015625, -2.021065118766994 ], [ -52.822265625, -2.021065118766994 ], [ -52.822265625, -2.108898659243132 ], [ -52.91015625, -2.108898659243132 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=722, y=1035, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.0859375, -2.108898659243132 ], [ -53.0859375, -1.933226826477117 ], [ -52.91015625, -1.933226826477117 ], [ -52.91015625, -2.108898659243132 ], [ -53.0859375, -2.108898659243132 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=360, y=517, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.4375, -2.108898659243132 ], [ -53.4375, -1.757536811308316 ], [ -53.0859375, -1.757536811308316 ], [ -53.0859375, -2.108898659243132 ], [ -53.4375, -2.108898659243132 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1448, y=2073, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.734375, -2.284550660236963 ], [ -52.734375, -2.196727241761665 ], [ -52.646484375, -2.196727241761665 ], [ -52.646484375, -2.284550660236963 ], [ -52.734375, -2.284550660236963 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1450, y=2075, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.55859375, -2.460181181021003 ], [ -52.55859375, -2.372368708644049 ], [ -52.470703125, -2.372368708644049 ], [ -52.470703125, -2.460181181021003 ], [ -52.55859375, -2.460181181021003 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=724, y=1037, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.734375, -2.460181181021003 ], [ -52.734375, -2.284550660236963 ], [ -52.55859375, -2.284550660236963 ], [ -52.55859375, -2.460181181021003 ], [ -52.734375, -2.460181181021003 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1452, y=2077, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.3828125, -2.635788574166606 ], [ -52.3828125, -2.54798787147138 ], [ -52.294921875, -2.54798787147138 ], [ -52.294921875, -2.635788574166606 ], [ -52.3828125, -2.635788574166606 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1454, y=2079, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.20703125, -2.81137119333113 ], [ -52.20703125, -2.72358308334839 ], [ -52.119140625, -2.72358308334839 ], [ -52.119140625, -2.81137119333113 ], [ -52.20703125, -2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=726, y=1039, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.3828125, -2.81137119333113 ], [ -52.3828125, -2.635788574166606 ], [ -52.20703125, -2.635788574166606 ], [ -52.20703125, -2.81137119333113 ], [ -52.3828125, -2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=362, y=519, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.734375, -2.81137119333113 ], [ -52.734375, -2.460181181021003 ], [ -52.3828125, -2.460181181021003 ], [ -52.3828125, -2.81137119333113 ], [ -52.734375, -2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=180, y=259, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.4375, -2.81137119333113 ], [ -53.4375, -2.108898659243132 ], [ -52.734375, -2.108898659243132 ], [ -52.734375, -2.81137119333113 ], [ -53.4375, -2.81137119333113 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=90, y=130, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.4375, -4.214943141390642 ], [ -53.4375, -2.81137119333113 ], [ -52.03125, -2.81137119333113 ], [ -52.03125, -4.214943141390642 ], [ -53.4375, -4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1456, y=2081, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.03125, -2.98692739333487 ], [ -52.03125, -2.899152698504301 ], [ -51.943359375, -2.899152698504301 ], [ -51.943359375, -2.98692739333487 ], [ -52.03125, -2.98692739333487 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1458, y=2083, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.85546875, -3.162455530237851 ], [ -51.85546875, -3.07469507236968 ], [ -51.767578125, -3.07469507236968 ], [ -51.767578125, -3.162455530237851 ], [ -51.85546875, -3.162455530237851 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=728, y=1041, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.03125, -3.162455530237851 ], [ -52.03125, -2.98692739333487 ], [ -51.85546875, -2.98692739333487 ], [ -51.85546875, -3.162455530237851 ], [ -52.03125, -3.162455530237851 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1460, y=2085, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.6796875, -3.337953961416479 ], [ -51.6796875, -3.25020856165317 ], [ -51.591796875, -3.25020856165317 ], [ -51.591796875, -3.337953961416479 ], [ -51.6796875, -3.337953961416479 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1462, y=2087, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.50390625, -3.513421045640039 ], [ -51.50390625, -3.425691524418064 ], [ -51.416015625, -3.425691524418064 ], [ -51.416015625, -3.513421045640039 ], [ -51.50390625, -3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=730, y=1043, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.6796875, -3.513421045640039 ], [ -51.6796875, -3.337953961416479 ], [ -51.50390625, -3.337953961416479 ], [ -51.50390625, -3.513421045640039 ], [ -51.6796875, -3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=364, y=521, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.03125, -3.513421045640039 ], [ -52.03125, -3.162455530237851 ], [ -51.6796875, -3.162455530237851 ], [ -51.6796875, -3.513421045640039 ], [ -52.03125, -3.513421045640039 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1464, y=2089, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.328125, -3.688855143147044 ], [ -51.328125, -3.601142320158728 ], [ -51.240234375, -3.601142320158728 ], [ -51.240234375, -3.688855143147044 ], [ -51.328125, -3.688855143147044 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1466, y=2091, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.15234375, -3.864254615721404 ], [ -51.15234375, -3.776559309876864 ], [ -51.064453125, -3.776559309876864 ], [ -51.064453125, -3.864254615721404 ], [ -51.15234375, -3.864254615721404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=732, y=1045, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.328125, -3.864254615721404 ], [ -51.328125, -3.688855143147044 ], [ -51.15234375, -3.688855143147044 ], [ -51.15234375, -3.864254615721404 ], [ -51.328125, -3.864254615721404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1468, y=2093, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.9765625, -4.03961782676843 ], [ -50.9765625, -3.951940856157592 ], [ -50.888671875, -3.951940856157592 ], [ -50.888671875, -4.03961782676843 ], [ -50.9765625, -4.03961782676843 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1470, y=2095, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.80078125, -4.214943141390642 ], [ -50.80078125, -4.127285323245364 ], [ -50.712890625, -4.127285323245364 ], [ -50.712890625, -4.214943141390642 ], [ -50.80078125, -4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=734, y=1047, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.9765625, -4.214943141390642 ], [ -50.9765625, -4.03961782676843 ], [ -50.80078125, -4.03961782676843 ], [ -50.80078125, -4.214943141390642 ], [ -50.9765625, -4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=366, y=523, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.328125, -4.214943141390642 ], [ -51.328125, -3.864254615721404 ], [ -50.9765625, -3.864254615721404 ], [ -50.9765625, -4.214943141390642 ], [ -51.328125, -4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=182, y=261, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.03125, -4.214943141390642 ], [ -52.03125, -3.513421045640039 ], [ -51.328125, -3.513421045640039 ], [ -51.328125, -4.214943141390642 ], [ -52.03125, -4.214943141390642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=91, y=131, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.03125, -5.615985819155334 ], [ -52.03125, -4.214943141390642 ], [ -50.625, -4.214943141390642 ], [ -50.625, -5.615985819155334 ], [ -52.03125, -5.615985819155334 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=90, y=131, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.4375, -5.615985819155334 ], [ -53.4375, -4.214943141390642 ], [ -52.03125, -4.214943141390642 ], [ -52.03125, -5.615985819155334 ], [ -53.4375, -5.615985819155334 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=44, y=65, z=7)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, -5.615985819155334 ], [ -56.25, -2.81137119333113 ], [ -53.4375, -2.81137119333113 ], [ -53.4375, -5.615985819155334 ], [ -56.25, -5.615985819155334 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1472, y=2097, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.625, -4.390228926463391 ], [ -50.625, -4.302591077119675 ], [ -50.537109375, -4.302591077119675 ], [ -50.537109375, -4.390228926463391 ], [ -50.625, -4.390228926463391 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1474, y=2099, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.44921875, -4.56547355071028 ], [ -50.44921875, -4.477856485570588 ], [ -50.361328125, -4.477856485570588 ], [ -50.361328125, -4.56547355071028 ], [ -50.44921875, -4.56547355071028 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=736, y=1049, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.625, -4.56547355071028 ], [ -50.625, -4.390228926463391 ], [ -50.44921875, -4.390228926463391 ], [ -50.44921875, -4.56547355071028 ], [ -50.625, -4.56547355071028 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1476, y=2101, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.2734375, -4.740675384778369 ], [ -50.2734375, -4.653079918274045 ], [ -50.185546875, -4.653079918274045 ], [ -50.185546875, -4.740675384778369 ], [ -50.2734375, -4.740675384778369 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1478, y=2103, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.09765625, -4.915832801313166 ], [ -50.09765625, -4.828259746866975 ], [ -50.009765625, -4.828259746866975 ], [ -50.009765625, -4.915832801313166 ], [ -50.09765625, -4.915832801313166 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=738, y=1051, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.2734375, -4.915832801313166 ], [ -50.2734375, -4.740675384778369 ], [ -50.09765625, -4.740675384778369 ], [ -50.09765625, -4.915832801313166 ], [ -50.2734375, -4.915832801313166 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=368, y=525, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.625, -4.915832801313166 ], [ -50.625, -4.56547355071028 ], [ -50.2734375, -4.56547355071028 ], [ -50.2734375, -4.915832801313166 ], [ -50.625, -4.915832801313166 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1480, y=2105, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.921875, -5.090944175033391 ], [ -49.921875, -5.003394345022155 ], [ -49.833984375, -5.003394345022155 ], [ -49.833984375, -5.090944175033391 ], [ -49.921875, -5.090944175033391 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1482, y=2107, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.74609375, -5.266007882805496 ], [ -49.74609375, -5.178482088522876 ], [ -49.658203125, -5.178482088522876 ], [ -49.658203125, -5.266007882805496 ], [ -49.74609375, -5.266007882805496 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=740, y=1053, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.921875, -5.266007882805496 ], [ -49.921875, -5.090944175033391 ], [ -49.74609375, -5.090944175033391 ], [ -49.74609375, -5.266007882805496 ], [ -49.921875, -5.266007882805496 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1484, y=2109, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.5703125, -5.441022303717967 ], [ -49.5703125, -5.353521355337334 ], [ -49.482421875, -5.353521355337334 ], [ -49.482421875, -5.441022303717967 ], [ -49.5703125, -5.441022303717967 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1486, y=2111, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.39453125, -5.615985819155334 ], [ -49.39453125, -5.528510525692797 ], [ -49.306640625, -5.528510525692797 ], [ -49.306640625, -5.615985819155334 ], [ -49.39453125, -5.615985819155334 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=742, y=1055, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.5703125, -5.615985819155334 ], [ -49.5703125, -5.441022303717967 ], [ -49.39453125, -5.441022303717967 ], [ -49.39453125, -5.615985819155334 ], [ -49.5703125, -5.615985819155334 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=370, y=527, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.921875, -5.615985819155334 ], [ -49.921875, -5.266007882805496 ], [ -49.5703125, -5.266007882805496 ], [ -49.5703125, -5.615985819155334 ], [ -49.921875, -5.615985819155334 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=184, y=263, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.625, -5.615985819155334 ], [ -50.625, -4.915832801313166 ], [ -49.921875, -4.915832801313166 ], [ -49.921875, -5.615985819155334 ], [ -50.625, -5.615985819155334 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=92, y=132, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.625, -7.01366792756663 ], [ -50.625, -5.615985819155334 ], [ -49.21875, -5.615985819155334 ], [ -49.21875, -7.01366792756663 ], [ -50.625, -7.01366792756663 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1488, y=2113, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.21875, -5.790896812871956 ], [ -49.21875, -5.703447982149506 ], [ -49.130859375, -5.703447982149506 ], [ -49.130859375, -5.790896812871956 ], [ -49.21875, -5.790896812871956 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1490, y=2115, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.04296875, -5.965753671065528 ], [ -49.04296875, -5.87833210967432 ], [ -48.955078125, -5.87833210967432 ], [ -48.955078125, -5.965753671065528 ], [ -49.04296875, -5.965753671065528 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=744, y=1057, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.21875, -5.965753671065528 ], [ -49.21875, -5.790896812871956 ], [ -49.04296875, -5.790896812871956 ], [ -49.04296875, -5.965753671065528 ], [ -49.21875, -5.965753671065528 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1492, y=2117, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.8671875, -6.1405547824503 ], [ -48.8671875, -6.053161295714073 ], [ -48.779296875, -6.053161295714073 ], [ -48.779296875, -6.1405547824503 ], [ -48.8671875, -6.1405547824503 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1494, y=2119, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.69140625, -6.315298538330036 ], [ -48.69140625, -6.227933930268671 ], [ -48.603515625, -6.227933930268671 ], [ -48.603515625, -6.315298538330036 ], [ -48.69140625, -6.315298538330036 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=746, y=1059, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.8671875, -6.315298538330036 ], [ -48.8671875, -6.1405547824503 ], [ -48.69140625, -6.1405547824503 ], [ -48.69140625, -6.315298538330036 ], [ -48.8671875, -6.315298538330036 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=372, y=529, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.21875, -6.315298538330036 ], [ -49.21875, -5.965753671065528 ], [ -48.8671875, -5.965753671065528 ], [ -48.8671875, -6.315298538330036 ], [ -49.21875, -6.315298538330036 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=186, y=265, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.21875, -7.01366792756663 ], [ -49.21875, -6.315298538330036 ], [ -48.515625, -6.315298538330036 ], [ -48.515625, -7.01366792756663 ], [ -49.21875, -7.01366792756663 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=186, y=266, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.21875, -7.710991655433221 ], [ -49.21875, -7.01366792756663 ], [ -48.515625, -7.01366792756663 ], [ -48.515625, -7.710991655433221 ], [ -49.21875, -7.710991655433221 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1496, y=2131, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -7.36246686553574 ], [ -48.515625, -7.275292336372169 ], [ -48.427734375, -7.275292336372169 ], [ -48.427734375, -7.36246686553574 ], [ -48.515625, -7.36246686553574 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1496, y=2132, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -7.449624260197812 ], [ -48.515625, -7.36246686553574 ], [ -48.427734375, -7.36246686553574 ], [ -48.427734375, -7.449624260197812 ], [ -48.515625, -7.449624260197812 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1496, y=2133, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -7.536764322084077 ], [ -48.515625, -7.449624260197812 ], [ -48.427734375, -7.449624260197812 ], [ -48.427734375, -7.536764322084077 ], [ -48.515625, -7.536764322084077 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1496, y=2134, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -7.623886853120042 ], [ -48.515625, -7.536764322084077 ], [ -48.427734375, -7.536764322084077 ], [ -48.427734375, -7.623886853120042 ], [ -48.515625, -7.623886853120042 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1496, y=2135, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -7.710991655433221 ], [ -48.515625, -7.623886853120042 ], [ -48.427734375, -7.623886853120042 ], [ -48.427734375, -7.710991655433221 ], [ -48.515625, -7.710991655433221 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1496, y=2136, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -7.7980785313553 ], [ -48.515625, -7.710991655433221 ], [ -48.427734375, -7.710991655433221 ], [ -48.427734375, -7.7980785313553 ], [ -48.515625, -7.7980785313553 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1496, y=2137, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -7.885147283424327 ], [ -48.515625, -7.7980785313553 ], [ -48.427734375, -7.7980785313553 ], [ -48.427734375, -7.885147283424327 ], [ -48.515625, -7.885147283424327 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1496, y=2138, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -7.972197714386869 ], [ -48.515625, -7.885147283424327 ], [ -48.427734375, -7.885147283424327 ], [ -48.427734375, -7.972197714386869 ], [ -48.515625, -7.972197714386869 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1496, y=2139, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -8.059229627200187 ], [ -48.515625, -7.972197714386869 ], [ -48.427734375, -7.972197714386869 ], [ -48.427734375, -8.059229627200187 ], [ -48.515625, -8.059229627200187 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1496, y=2140, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -8.146242825034385 ], [ -48.515625, -8.059229627200187 ], [ -48.427734375, -8.059229627200187 ], [ -48.427734375, -8.146242825034385 ], [ -48.515625, -8.146242825034385 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1497, y=2141, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.427734375, -8.233237111274557 ], [ -48.427734375, -8.146242825034385 ], [ -48.33984375, -8.146242825034385 ], [ -48.33984375, -8.233237111274557 ], [ -48.427734375, -8.233237111274557 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1496, y=2141, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -8.233237111274557 ], [ -48.515625, -8.146242825034385 ], [ -48.427734375, -8.146242825034385 ], [ -48.427734375, -8.233237111274557 ], [ -48.515625, -8.233237111274557 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=748, y=1071, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -8.407168163601074 ], [ -48.515625, -8.233237111274557 ], [ -48.33984375, -8.233237111274557 ], [ -48.33984375, -8.407168163601074 ], [ -48.515625, -8.407168163601074 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=186, y=267, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.21875, -8.407168163601074 ], [ -49.21875, -7.710991655433221 ], [ -48.515625, -7.710991655433221 ], [ -48.515625, -8.407168163601074 ], [ -49.21875, -8.407168163601074 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=92, y=133, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.625, -8.407168163601074 ], [ -50.625, -7.01366792756663 ], [ -49.21875, -7.01366792756663 ], [ -49.21875, -8.407168163601074 ], [ -50.625, -8.407168163601074 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=92, y=134, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.625, -9.795677582829734 ], [ -50.625, -8.407168163601074 ], [ -49.21875, -8.407168163601074 ], [ -49.21875, -9.795677582829734 ], [ -50.625, -9.795677582829734 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=186, y=268, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.21875, -9.102096738726447 ], [ -49.21875, -8.407168163601074 ], [ -48.515625, -8.407168163601074 ], [ -48.515625, -9.102096738726447 ], [ -49.21875, -9.102096738726447 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=748, y=1072, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -8.581021215641846 ], [ -48.515625, -8.407168163601074 ], [ -48.33984375, -8.407168163601074 ], [ -48.33984375, -8.581021215641846 ], [ -48.515625, -8.581021215641846 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=748, y=1073, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -8.754794702435612 ], [ -48.515625, -8.581021215641846 ], [ -48.33984375, -8.581021215641846 ], [ -48.33984375, -8.754794702435612 ], [ -48.515625, -8.754794702435612 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=748, y=1074, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -8.928487062665505 ], [ -48.515625, -8.754794702435612 ], [ -48.33984375, -8.754794702435612 ], [ -48.33984375, -8.928487062665505 ], [ -48.515625, -8.928487062665505 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1498, y=2151, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.33984375, -9.102096738726447 ], [ -48.33984375, -9.015302333420587 ], [ -48.251953125, -9.015302333420587 ], [ -48.251953125, -9.102096738726447 ], [ -48.33984375, -9.102096738726447 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=748, y=1075, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -9.102096738726447 ], [ -48.515625, -8.928487062665505 ], [ -48.33984375, -8.928487062665505 ], [ -48.33984375, -9.102096738726447 ], [ -48.515625, -9.102096738726447 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=748, y=1076, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -9.275622176792101 ], [ -48.515625, -9.102096738726447 ], [ -48.33984375, -9.102096738726447 ], [ -48.33984375, -9.275622176792101 ], [ -48.515625, -9.275622176792101 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1498, y=2152, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.33984375, -9.188870084473402 ], [ -48.33984375, -9.102096738726447 ], [ -48.251953125, -9.102096738726447 ], [ -48.251953125, -9.188870084473402 ], [ -48.33984375, -9.188870084473402 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1498, y=2153, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.33984375, -9.275622176792101 ], [ -48.33984375, -9.188870084473402 ], [ -48.251953125, -9.188870084473402 ], [ -48.251953125, -9.275622176792101 ], [ -48.33984375, -9.275622176792101 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1498, y=2154, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.33984375, -9.362352822055602 ], [ -48.33984375, -9.275622176792101 ], [ -48.251953125, -9.275622176792101 ], [ -48.251953125, -9.362352822055602 ], [ -48.33984375, -9.362352822055602 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1498, y=2155, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.33984375, -9.449061826881424 ], [ -48.33984375, -9.362352822055602 ], [ -48.251953125, -9.362352822055602 ], [ -48.251953125, -9.449061826881424 ], [ -48.33984375, -9.449061826881424 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=748, y=1077, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -9.449061826881424 ], [ -48.515625, -9.275622176792101 ], [ -48.33984375, -9.275622176792101 ], [ -48.33984375, -9.449061826881424 ], [ -48.515625, -9.449061826881424 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=748, y=1078, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -9.622414142924802 ], [ -48.515625, -9.449061826881424 ], [ -48.33984375, -9.449061826881424 ], [ -48.33984375, -9.622414142924802 ], [ -48.515625, -9.622414142924802 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1498, y=2156, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.33984375, -9.535748998133618 ], [ -48.33984375, -9.449061826881424 ], [ -48.251953125, -9.449061826881424 ], [ -48.251953125, -9.535748998133618 ], [ -48.33984375, -9.535748998133618 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1498, y=2157, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.33984375, -9.622414142924802 ], [ -48.33984375, -9.535748998133618 ], [ -48.251953125, -9.535748998133618 ], [ -48.251953125, -9.622414142924802 ], [ -48.33984375, -9.622414142924802 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1498, y=2158, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.33984375, -9.709057068618211 ], [ -48.33984375, -9.622414142924802 ], [ -48.251953125, -9.622414142924802 ], [ -48.251953125, -9.709057068618211 ], [ -48.33984375, -9.709057068618211 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1498, y=2159, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.33984375, -9.795677582829734 ], [ -48.33984375, -9.709057068618211 ], [ -48.251953125, -9.709057068618211 ], [ -48.251953125, -9.795677582829734 ], [ -48.33984375, -9.795677582829734 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=748, y=1079, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -9.795677582829734 ], [ -48.515625, -9.622414142924802 ], [ -48.33984375, -9.622414142924802 ], [ -48.33984375, -9.795677582829734 ], [ -48.515625, -9.795677582829734 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=186, y=269, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.21875, -9.795677582829734 ], [ -49.21875, -9.102096738726447 ], [ -48.515625, -9.102096738726447 ], [ -48.515625, -9.795677582829734 ], [ -49.21875, -9.795677582829734 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=186, y=270, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.21875, -10.487811882056686 ], [ -49.21875, -9.795677582829734 ], [ -48.515625, -9.795677582829734 ], [ -48.515625, -10.487811882056686 ], [ -49.21875, -10.487811882056686 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=748, y=1080, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -9.968850608546109 ], [ -48.515625, -9.795677582829734 ], [ -48.33984375, -9.795677582829734 ], [ -48.33984375, -9.968850608546109 ], [ -48.515625, -9.968850608546109 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1498, y=2160, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.33984375, -9.882275493429942 ], [ -48.33984375, -9.795677582829734 ], [ -48.251953125, -9.795677582829734 ], [ -48.251953125, -9.882275493429942 ], [ -48.33984375, -9.882275493429942 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1499, y=2161, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.251953125, -9.968850608546109 ], [ -48.251953125, -9.882275493429942 ], [ -48.1640625, -9.882275493429942 ], [ -48.1640625, -9.968850608546109 ], [ -48.251953125, -9.968850608546109 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1498, y=2161, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.33984375, -9.968850608546109 ], [ -48.33984375, -9.882275493429942 ], [ -48.251953125, -9.882275493429942 ], [ -48.251953125, -9.968850608546109 ], [ -48.33984375, -9.968850608546109 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=749, y=1081, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.33984375, -10.141931686131025 ], [ -48.33984375, -9.968850608546109 ], [ -48.1640625, -9.968850608546109 ], [ -48.1640625, -10.141931686131025 ], [ -48.33984375, -10.141931686131025 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=748, y=1081, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -10.141931686131025 ], [ -48.515625, -9.968850608546109 ], [ -48.33984375, -9.968850608546109 ], [ -48.33984375, -10.141931686131025 ], [ -48.515625, -10.141931686131025 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=374, y=541, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -10.487811882056686 ], [ -48.515625, -10.141931686131025 ], [ -48.1640625, -10.141931686131025 ], [ -48.1640625, -10.487811882056686 ], [ -48.515625, -10.487811882056686 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=374, y=542, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -10.833305983642491 ], [ -48.515625, -10.487811882056686 ], [ -48.1640625, -10.487811882056686 ], [ -48.1640625, -10.833305983642491 ], [ -48.515625, -10.833305983642491 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1500, y=2171, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -10.833305983642491 ], [ -48.1640625, -10.74696931846 ], [ -48.076171875, -10.74696931846 ], [ -48.076171875, -10.833305983642491 ], [ -48.1640625, -10.833305983642491 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1500, y=2172, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -10.919617760254688 ], [ -48.1640625, -10.833305983642491 ], [ -48.076171875, -10.833305983642491 ], [ -48.076171875, -10.919617760254688 ], [ -48.1640625, -10.919617760254688 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1500, y=2173, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -11.005904459659458 ], [ -48.1640625, -10.919617760254688 ], [ -48.076171875, -10.919617760254688 ], [ -48.076171875, -11.005904459659458 ], [ -48.1640625, -11.005904459659458 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1500, y=2174, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -11.092165893502001 ], [ -48.1640625, -11.005904459659458 ], [ -48.076171875, -11.005904459659458 ], [ -48.076171875, -11.092165893502001 ], [ -48.1640625, -11.092165893502001 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1500, y=2175, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -11.178401873711781 ], [ -48.1640625, -11.092165893502001 ], [ -48.076171875, -11.092165893502001 ], [ -48.076171875, -11.178401873711781 ], [ -48.1640625, -11.178401873711781 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=374, y=543, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -11.178401873711781 ], [ -48.515625, -10.833305983642491 ], [ -48.1640625, -10.833305983642491 ], [ -48.1640625, -11.178401873711781 ], [ -48.515625, -11.178401873711781 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=186, y=271, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.21875, -11.178401873711781 ], [ -49.21875, -10.487811882056686 ], [ -48.515625, -10.487811882056686 ], [ -48.515625, -11.178401873711781 ], [ -49.21875, -11.178401873711781 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=92, y=135, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.625, -11.178401873711781 ], [ -50.625, -9.795677582829734 ], [ -49.21875, -9.795677582829734 ], [ -49.21875, -11.178401873711781 ], [ -50.625, -11.178401873711781 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=22, y=33, z=6)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, -11.178401873711781 ], [ -56.25, -5.615985819155334 ], [ -50.625, -5.615985819155334 ], [ -50.625, -11.178401873711781 ], [ -56.25, -11.178401873711781 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=22, y=34, z=6)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, -16.636191878397657 ], [ -56.25, -11.178401873711781 ], [ -50.625, -11.178401873711781 ], [ -50.625, -16.636191878397657 ], [ -56.25, -16.636191878397657 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=92, y=136, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.625, -12.554563528593658 ], [ -50.625, -11.178401873711781 ], [ -49.21875, -11.178401873711781 ], [ -49.21875, -12.554563528593658 ], [ -50.625, -12.554563528593658 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=186, y=272, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.21875, -11.86735091145931 ], [ -49.21875, -11.178401873711781 ], [ -48.515625, -11.178401873711781 ], [ -48.515625, -11.86735091145931 ], [ -49.21875, -11.86735091145931 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=374, y=544, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -11.523087506868508 ], [ -48.515625, -11.178401873711781 ], [ -48.1640625, -11.178401873711781 ], [ -48.1640625, -11.523087506868508 ], [ -48.515625, -11.523087506868508 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1500, y=2176, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -11.264612212504433 ], [ -48.1640625, -11.178401873711781 ], [ -48.076171875, -11.178401873711781 ], [ -48.076171875, -11.264612212504433 ], [ -48.1640625, -11.264612212504433 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1500, y=2177, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -11.350796722383674 ], [ -48.1640625, -11.264612212504433 ], [ -48.076171875, -11.264612212504433 ], [ -48.076171875, -11.350796722383674 ], [ -48.1640625, -11.350796722383674 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1500, y=2178, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -11.436955216143181 ], [ -48.1640625, -11.350796722383674 ], [ -48.076171875, -11.350796722383674 ], [ -48.076171875, -11.436955216143181 ], [ -48.1640625, -11.436955216143181 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1500, y=2179, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -11.523087506868508 ], [ -48.1640625, -11.436955216143181 ], [ -48.076171875, -11.436955216143181 ], [ -48.076171875, -11.523087506868508 ], [ -48.1640625, -11.523087506868508 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1500, y=2180, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -11.609193407938944 ], [ -48.1640625, -11.523087506868508 ], [ -48.076171875, -11.523087506868508 ], [ -48.076171875, -11.609193407938944 ], [ -48.1640625, -11.609193407938944 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1501, y=2181, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.076171875, -11.695272733029404 ], [ -48.076171875, -11.609193407938944 ], [ -47.98828125, -11.609193407938944 ], [ -47.98828125, -11.695272733029404 ], [ -48.076171875, -11.695272733029404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1500, y=2181, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -11.695272733029404 ], [ -48.1640625, -11.609193407938944 ], [ -48.076171875, -11.609193407938944 ], [ -48.076171875, -11.695272733029404 ], [ -48.1640625, -11.695272733029404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=750, y=1091, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -11.86735091145931 ], [ -48.1640625, -11.695272733029404 ], [ -47.98828125, -11.695272733029404 ], [ -47.98828125, -11.86735091145931 ], [ -48.1640625, -11.86735091145931 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=374, y=545, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -11.86735091145931 ], [ -48.515625, -11.523087506868508 ], [ -48.1640625, -11.523087506868508 ], [ -48.1640625, -11.86735091145931 ], [ -48.515625, -11.86735091145931 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=374, y=546, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -12.21118019150399 ], [ -48.515625, -11.86735091145931 ], [ -48.1640625, -11.86735091145931 ], [ -48.1640625, -12.21118019150399 ], [ -48.515625, -12.21118019150399 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=750, y=1092, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -12.039320557540568 ], [ -48.1640625, -11.86735091145931 ], [ -47.98828125, -11.86735091145931 ], [ -47.98828125, -12.039320557540568 ], [ -48.1640625, -12.039320557540568 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=750, y=1093, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -12.21118019150399 ], [ -48.1640625, -12.039320557540568 ], [ -47.98828125, -12.039320557540568 ], [ -47.98828125, -12.21118019150399 ], [ -48.1640625, -12.21118019150399 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=750, y=1094, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -12.3829283384874 ], [ -48.1640625, -12.21118019150399 ], [ -47.98828125, -12.21118019150399 ], [ -47.98828125, -12.3829283384874 ], [ -48.1640625, -12.3829283384874 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1502, y=2191, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.98828125, -12.554563528593658 ], [ -47.98828125, -12.468760144823221 ], [ -47.900390625, -12.468760144823221 ], [ -47.900390625, -12.554563528593658 ], [ -47.98828125, -12.554563528593658 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=750, y=1095, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -12.554563528593658 ], [ -48.1640625, -12.3829283384874 ], [ -47.98828125, -12.3829283384874 ], [ -47.98828125, -12.554563528593658 ], [ -48.1640625, -12.554563528593658 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=374, y=547, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -12.554563528593658 ], [ -48.515625, -12.21118019150399 ], [ -48.1640625, -12.21118019150399 ], [ -48.1640625, -12.554563528593658 ], [ -48.515625, -12.554563528593658 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=186, y=273, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.21875, -12.554563528593658 ], [ -49.21875, -11.86735091145931 ], [ -48.515625, -11.86735091145931 ], [ -48.515625, -12.554563528593658 ], [ -49.21875, -12.554563528593658 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=186, y=274, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.21875, -13.239945499286303 ], [ -49.21875, -12.554563528593658 ], [ -48.515625, -12.554563528593658 ], [ -48.515625, -13.239945499286303 ], [ -49.21875, -13.239945499286303 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=374, y=548, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -12.897489183755896 ], [ -48.515625, -12.554563528593658 ], [ -48.1640625, -12.554563528593658 ], [ -48.1640625, -12.897489183755896 ], [ -48.515625, -12.897489183755896 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=750, y=1096, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -12.72608429694818 ], [ -48.1640625, -12.554563528593658 ], [ -47.98828125, -12.554563528593658 ], [ -47.98828125, -12.72608429694818 ], [ -48.1640625, -12.72608429694818 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1502, y=2192, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.98828125, -12.640338306846795 ], [ -47.98828125, -12.554563528593658 ], [ -47.900390625, -12.554563528593658 ], [ -47.900390625, -12.640338306846795 ], [ -47.98828125, -12.640338306846795 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1502, y=2193, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.98828125, -12.72608429694818 ], [ -47.98828125, -12.640338306846795 ], [ -47.900390625, -12.640338306846795 ], [ -47.900390625, -12.72608429694818 ], [ -47.98828125, -12.72608429694818 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1502, y=2194, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.98828125, -12.811801316582617 ], [ -47.98828125, -12.72608429694818 ], [ -47.900390625, -12.72608429694818 ], [ -47.900390625, -12.811801316582617 ], [ -47.98828125, -12.811801316582617 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1502, y=2195, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.98828125, -12.897489183755896 ], [ -47.98828125, -12.811801316582617 ], [ -47.900390625, -12.811801316582617 ], [ -47.900390625, -12.897489183755896 ], [ -47.98828125, -12.897489183755896 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=750, y=1097, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -12.897489183755896 ], [ -48.1640625, -12.72608429694818 ], [ -47.98828125, -12.72608429694818 ], [ -47.98828125, -12.897489183755896 ], [ -48.1640625, -12.897489183755896 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=750, y=1098, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -13.068776734357689 ], [ -48.1640625, -12.897489183755896 ], [ -47.98828125, -12.897489183755896 ], [ -47.98828125, -13.068776734357689 ], [ -48.1640625, -13.068776734357689 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1502, y=2196, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.98828125, -12.983147716796571 ], [ -47.98828125, -12.897489183755896 ], [ -47.900390625, -12.897489183755896 ], [ -47.900390625, -12.983147716796571 ], [ -47.98828125, -12.983147716796571 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1502, y=2197, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.98828125, -13.068776734357689 ], [ -47.98828125, -12.983147716796571 ], [ -47.900390625, -12.983147716796571 ], [ -47.900390625, -13.068776734357689 ], [ -47.98828125, -13.068776734357689 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1502, y=2198, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.98828125, -13.154376055418522 ], [ -47.98828125, -13.068776734357689 ], [ -47.900390625, -13.068776734357689 ], [ -47.900390625, -13.154376055418522 ], [ -47.98828125, -13.154376055418522 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1502, y=2199, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.98828125, -13.239945499286303 ], [ -47.98828125, -13.154376055418522 ], [ -47.900390625, -13.154376055418522 ], [ -47.900390625, -13.239945499286303 ], [ -47.98828125, -13.239945499286303 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=750, y=1099, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -13.239945499286303 ], [ -48.1640625, -13.068776734357689 ], [ -47.98828125, -13.068776734357689 ], [ -47.98828125, -13.239945499286303 ], [ -48.1640625, -13.239945499286303 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=374, y=549, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -13.239945499286303 ], [ -48.515625, -12.897489183755896 ], [ -48.1640625, -12.897489183755896 ], [ -48.1640625, -13.239945499286303 ], [ -48.515625, -13.239945499286303 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=374, y=550, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -13.581920900545843 ], [ -48.515625, -13.239945499286303 ], [ -48.1640625, -13.239945499286303 ], [ -48.1640625, -13.581920900545843 ], [ -48.515625, -13.581920900545843 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=750, y=1100, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -13.410994034321702 ], [ -48.1640625, -13.239945499286303 ], [ -47.98828125, -13.239945499286303 ], [ -47.98828125, -13.410994034321702 ], [ -48.1640625, -13.410994034321702 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1502, y=2200, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.98828125, -13.325484885597936 ], [ -47.98828125, -13.239945499286303 ], [ -47.900390625, -13.239945499286303 ], [ -47.900390625, -13.325484885597936 ], [ -47.98828125, -13.325484885597936 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1503, y=2201, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.900390625, -13.410994034321702 ], [ -47.900390625, -13.325484885597936 ], [ -47.8125, -13.325484885597936 ], [ -47.8125, -13.410994034321702 ], [ -47.900390625, -13.410994034321702 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1502, y=2201, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.98828125, -13.410994034321702 ], [ -47.98828125, -13.325484885597936 ], [ -47.900390625, -13.325484885597936 ], [ -47.900390625, -13.410994034321702 ], [ -47.98828125, -13.410994034321702 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=751, y=1101, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.98828125, -13.581920900545843 ], [ -47.98828125, -13.410994034321702 ], [ -47.8125, -13.410994034321702 ], [ -47.8125, -13.581920900545843 ], [ -47.98828125, -13.581920900545843 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=750, y=1101, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -13.581920900545843 ], [ -48.1640625, -13.410994034321702 ], [ -47.98828125, -13.410994034321702 ], [ -47.98828125, -13.581920900545843 ], [ -48.1640625, -13.581920900545843 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=375, y=551, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -13.923403897723341 ], [ -48.1640625, -13.581920900545843 ], [ -47.8125, -13.581920900545843 ], [ -47.8125, -13.923403897723341 ], [ -48.1640625, -13.923403897723341 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=374, y=551, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -13.923403897723341 ], [ -48.515625, -13.581920900545843 ], [ -48.1640625, -13.581920900545843 ], [ -48.1640625, -13.923403897723341 ], [ -48.515625, -13.923403897723341 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=186, y=275, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.21875, -13.923403897723341 ], [ -49.21875, -13.239945499286303 ], [ -48.515625, -13.239945499286303 ], [ -48.515625, -13.923403897723341 ], [ -49.21875, -13.923403897723341 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=92, y=137, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.625, -13.923403897723341 ], [ -50.625, -12.554563528593658 ], [ -49.21875, -12.554563528593658 ], [ -49.21875, -13.923403897723341 ], [ -50.625, -13.923403897723341 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1504, y=2212, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -14.349547837185369 ], [ -47.8125, -14.264383087562646 ], [ -47.724609375, -14.264383087562646 ], [ -47.724609375, -14.349547837185369 ], [ -47.8125, -14.349547837185369 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1504, y=2213, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -14.434680215297277 ], [ -47.8125, -14.349547837185369 ], [ -47.724609375, -14.349547837185369 ], [ -47.724609375, -14.434680215297277 ], [ -47.8125, -14.434680215297277 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1504, y=2214, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -14.519780046326085 ], [ -47.8125, -14.434680215297277 ], [ -47.724609375, -14.434680215297277 ], [ -47.724609375, -14.519780046326085 ], [ -47.8125, -14.519780046326085 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1504, y=2215, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -14.604847155053898 ], [ -47.8125, -14.519780046326085 ], [ -47.724609375, -14.519780046326085 ], [ -47.724609375, -14.604847155053898 ], [ -47.8125, -14.604847155053898 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1504, y=2216, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -14.689881366618769 ], [ -47.8125, -14.604847155053898 ], [ -47.724609375, -14.604847155053898 ], [ -47.724609375, -14.689881366618769 ], [ -47.8125, -14.689881366618769 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1504, y=2217, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -14.774882506516267 ], [ -47.8125, -14.689881366618769 ], [ -47.724609375, -14.689881366618769 ], [ -47.724609375, -14.774882506516267 ], [ -47.8125, -14.774882506516267 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1504, y=2218, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -14.85985040060104 ], [ -47.8125, -14.774882506516267 ], [ -47.724609375, -14.774882506516267 ], [ -47.724609375, -14.85985040060104 ], [ -47.8125, -14.85985040060104 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1504, y=2219, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -14.944784875088363 ], [ -47.8125, -14.85985040060104 ], [ -47.724609375, -14.85985040060104 ], [ -47.724609375, -14.944784875088363 ], [ -47.8125, -14.944784875088363 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1504, y=2220, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -15.029685756555674 ], [ -47.8125, -14.944784875088363 ], [ -47.724609375, -14.944784875088363 ], [ -47.724609375, -15.029685756555674 ], [ -47.8125, -15.029685756555674 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1504, y=2221, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -15.114552871944106 ], [ -47.8125, -15.029685756555674 ], [ -47.724609375, -15.029685756555674 ], [ -47.724609375, -15.114552871944106 ], [ -47.8125, -15.114552871944106 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=752, y=1111, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -15.284185114076433 ], [ -47.8125, -15.114552871944106 ], [ -47.63671875, -15.114552871944106 ], [ -47.63671875, -15.284185114076433 ], [ -47.8125, -15.284185114076433 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=752, y=1112, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -15.453680224345835 ], [ -47.8125, -15.284185114076433 ], [ -47.63671875, -15.284185114076433 ], [ -47.63671875, -15.453680224345835 ], [ -47.8125, -15.453680224345835 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=752, y=1113, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -15.623036831528259 ], [ -47.8125, -15.453680224345835 ], [ -47.63671875, -15.453680224345835 ], [ -47.63671875, -15.623036831528259 ], [ -47.8125, -15.623036831528259 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=752, y=1114, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -15.792253570362444 ], [ -47.8125, -15.623036831528259 ], [ -47.63671875, -15.623036831528259 ], [ -47.63671875, -15.792253570362444 ], [ -47.8125, -15.792253570362444 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=752, y=1115, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -15.961329081596647 ], [ -47.8125, -15.792253570362444 ], [ -47.63671875, -15.792253570362444 ], [ -47.63671875, -15.961329081596647 ], [ -47.8125, -15.961329081596647 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=752, y=1116, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -16.130262012034756 ], [ -47.8125, -15.961329081596647 ], [ -47.63671875, -15.961329081596647 ], [ -47.63671875, -16.130262012034756 ], [ -47.8125, -16.130262012034756 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1506, y=2232, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.63671875, -16.045813453752171 ], [ -47.63671875, -15.961329081596647 ], [ -47.548828125, -15.961329081596647 ], [ -47.548828125, -16.045813453752171 ], [ -47.63671875, -16.045813453752171 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1506, y=2233, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.63671875, -16.130262012034756 ], [ -47.63671875, -16.045813453752171 ], [ -47.548828125, -16.045813453752171 ], [ -47.548828125, -16.130262012034756 ], [ -47.63671875, -16.130262012034756 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1506, y=2234, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.63671875, -16.214674588248545 ], [ -47.63671875, -16.130262012034756 ], [ -47.548828125, -16.130262012034756 ], [ -47.548828125, -16.214674588248545 ], [ -47.63671875, -16.214674588248545 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1506, y=2235, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.63671875, -16.299051014581828 ], [ -47.63671875, -16.214674588248545 ], [ -47.548828125, -16.214674588248545 ], [ -47.548828125, -16.299051014581828 ], [ -47.63671875, -16.299051014581828 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=752, y=1117, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -16.299051014581828 ], [ -47.8125, -16.130262012034756 ], [ -47.63671875, -16.130262012034756 ], [ -47.63671875, -16.299051014581828 ], [ -47.8125, -16.299051014581828 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=752, y=1118, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -16.46769474828896 ], [ -47.8125, -16.299051014581828 ], [ -47.63671875, -16.299051014581828 ], [ -47.63671875, -16.46769474828896 ], [ -47.8125, -16.46769474828896 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1506, y=2236, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.63671875, -16.383391123608394 ], [ -47.63671875, -16.299051014581828 ], [ -47.548828125, -16.299051014581828 ], [ -47.548828125, -16.383391123608394 ], [ -47.63671875, -16.383391123608394 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1506, y=2237, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.63671875, -16.46769474828896 ], [ -47.63671875, -16.383391123608394 ], [ -47.548828125, -16.383391123608394 ], [ -47.548828125, -16.46769474828896 ], [ -47.63671875, -16.46769474828896 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1506, y=2238, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.63671875, -16.551961721972514 ], [ -47.63671875, -16.46769474828896 ], [ -47.548828125, -16.46769474828896 ], [ -47.548828125, -16.551961721972514 ], [ -47.63671875, -16.551961721972514 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1506, y=2239, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.63671875, -16.636191878397657 ], [ -47.63671875, -16.551961721972514 ], [ -47.548828125, -16.551961721972514 ], [ -47.548828125, -16.636191878397657 ], [ -47.63671875, -16.636191878397657 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=752, y=1119, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -16.636191878397657 ], [ -47.8125, -16.46769474828896 ], [ -47.63671875, -16.46769474828896 ], [ -47.63671875, -16.636191878397657 ], [ -47.8125, -16.636191878397657 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=46, y=69, z=7)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.625, -16.636191878397657 ], [ -50.625, -13.923403897723341 ], [ -47.8125, -13.923403897723341 ], [ -47.8125, -16.636191878397657 ], [ -50.625, -16.636191878397657 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=46, y=70, z=7)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.625, -19.31114335506464 ], [ -50.625, -16.636191878397657 ], [ -47.8125, -16.636191878397657 ], [ -47.8125, -19.31114335506464 ], [ -50.625, -19.31114335506464 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=752, y=1120, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -16.804541076383451 ], [ -47.8125, -16.636191878397657 ], [ -47.63671875, -16.636191878397657 ], [ -47.63671875, -16.804541076383451 ], [ -47.8125, -16.804541076383451 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1506, y=2240, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.63671875, -16.720385051693992 ], [ -47.63671875, -16.636191878397657 ], [ -47.548828125, -16.636191878397657 ], [ -47.548828125, -16.720385051693992 ], [ -47.63671875, -16.720385051693992 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1506, y=2241, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.63671875, -16.804541076383451 ], [ -47.63671875, -16.720385051693992 ], [ -47.548828125, -16.720385051693992 ], [ -47.548828125, -16.804541076383451 ], [ -47.63671875, -16.804541076383451 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1506, y=2242, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.63671875, -16.888659787381602 ], [ -47.63671875, -16.804541076383451 ], [ -47.548828125, -16.804541076383451 ], [ -47.548828125, -16.888659787381602 ], [ -47.63671875, -16.888659787381602 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1507, y=2243, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.548828125, -16.972741019999017 ], [ -47.548828125, -16.888659787381602 ], [ -47.4609375, -16.888659787381602 ], [ -47.4609375, -16.972741019999017 ], [ -47.548828125, -16.972741019999017 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1506, y=2243, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.63671875, -16.972741019999017 ], [ -47.63671875, -16.888659787381602 ], [ -47.548828125, -16.888659787381602 ], [ -47.548828125, -16.972741019999017 ], [ -47.63671875, -16.972741019999017 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=752, y=1121, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -16.972741019999017 ], [ -47.8125, -16.804541076383451 ], [ -47.63671875, -16.804541076383451 ], [ -47.63671875, -16.972741019999017 ], [ -47.8125, -16.972741019999017 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=376, y=561, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -17.308687886770024 ], [ -47.8125, -16.972741019999017 ], [ -47.4609375, -16.972741019999017 ], [ -47.4609375, -17.308687886770024 ], [ -47.8125, -17.308687886770024 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=376, y=562, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -17.644022027872726 ], [ -47.8125, -17.308687886770024 ], [ -47.4609375, -17.308687886770024 ], [ -47.4609375, -17.644022027872726 ], [ -47.8125, -17.644022027872726 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1508, y=2253, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.4609375, -17.811456088564476 ], [ -47.4609375, -17.727758609852273 ], [ -47.373046875, -17.727758609852273 ], [ -47.373046875, -17.811456088564476 ], [ -47.4609375, -17.811456088564476 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1508, y=2254, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.4609375, -17.895114303749139 ], [ -47.4609375, -17.811456088564476 ], [ -47.373046875, -17.811456088564476 ], [ -47.373046875, -17.895114303749139 ], [ -47.4609375, -17.895114303749139 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1508, y=2255, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.4609375, -17.978733095556169 ], [ -47.4609375, -17.895114303749139 ], [ -47.373046875, -17.895114303749139 ], [ -47.373046875, -17.978733095556169 ], [ -47.4609375, -17.978733095556169 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=376, y=563, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -17.978733095556169 ], [ -47.8125, -17.644022027872726 ], [ -47.4609375, -17.644022027872726 ], [ -47.4609375, -17.978733095556169 ], [ -47.8125, -17.978733095556169 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=376, y=564, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -18.312810846425442 ], [ -47.8125, -17.978733095556169 ], [ -47.4609375, -17.978733095556169 ], [ -47.4609375, -18.312810846425442 ], [ -47.8125, -18.312810846425442 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1508, y=2256, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.4609375, -18.062312304546726 ], [ -47.4609375, -17.978733095556169 ], [ -47.373046875, -17.978733095556169 ], [ -47.373046875, -18.062312304546726 ], [ -47.4609375, -18.062312304546726 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1508, y=2257, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.4609375, -18.145851771694467 ], [ -47.4609375, -18.062312304546726 ], [ -47.373046875, -18.062312304546726 ], [ -47.373046875, -18.145851771694467 ], [ -47.4609375, -18.145851771694467 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1508, y=2258, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.4609375, -18.229351338386675 ], [ -47.4609375, -18.145851771694467 ], [ -47.373046875, -18.145851771694467 ], [ -47.373046875, -18.229351338386675 ], [ -47.4609375, -18.229351338386675 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1508, y=2259, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.4609375, -18.312810846425442 ], [ -47.4609375, -18.229351338386675 ], [ -47.373046875, -18.229351338386675 ], [ -47.373046875, -18.312810846425442 ], [ -47.4609375, -18.312810846425442 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1508, y=2260, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.4609375, -18.396230138028816 ], [ -47.4609375, -18.312810846425442 ], [ -47.373046875, -18.312810846425442 ], [ -47.373046875, -18.396230138028816 ], [ -47.4609375, -18.396230138028816 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1508, y=2261, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.4609375, -18.479609055831968 ], [ -47.4609375, -18.396230138028816 ], [ -47.373046875, -18.396230138028816 ], [ -47.373046875, -18.479609055831968 ], [ -47.4609375, -18.479609055831968 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1508, y=2262, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.4609375, -18.562947442888309 ], [ -47.4609375, -18.479609055831968 ], [ -47.373046875, -18.479609055831968 ], [ -47.373046875, -18.562947442888309 ], [ -47.4609375, -18.562947442888309 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1509, y=2263, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.373046875, -18.646245142670605 ], [ -47.373046875, -18.562947442888309 ], [ -47.28515625, -18.562947442888309 ], [ -47.28515625, -18.646245142670605 ], [ -47.373046875, -18.646245142670605 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1508, y=2263, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.4609375, -18.646245142670605 ], [ -47.4609375, -18.562947442888309 ], [ -47.373046875, -18.562947442888309 ], [ -47.373046875, -18.646245142670605 ], [ -47.4609375, -18.646245142670605 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=376, y=565, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -18.646245142670605 ], [ -47.8125, -18.312810846425442 ], [ -47.4609375, -18.312810846425442 ], [ -47.4609375, -18.646245142670605 ], [ -47.8125, -18.646245142670605 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=376, y=566, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -18.97902595325527 ], [ -47.8125, -18.646245142670605 ], [ -47.4609375, -18.646245142670605 ], [ -47.4609375, -18.97902595325527 ], [ -47.8125, -18.97902595325527 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=754, y=1132, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.4609375, -18.812717856407762 ], [ -47.4609375, -18.646245142670605 ], [ -47.28515625, -18.646245142670605 ], [ -47.28515625, -18.812717856407762 ], [ -47.4609375, -18.812717856407762 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=754, y=1133, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.4609375, -18.97902595325527 ], [ -47.4609375, -18.812717856407762 ], [ -47.28515625, -18.812717856407762 ], [ -47.28515625, -18.97902595325527 ], [ -47.4609375, -18.97902595325527 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=754, y=1134, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.4609375, -19.14516819620529 ], [ -47.4609375, -18.97902595325527 ], [ -47.28515625, -18.97902595325527 ], [ -47.28515625, -19.14516819620529 ], [ -47.4609375, -19.14516819620529 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=754, y=1135, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.4609375, -19.31114335506464 ], [ -47.4609375, -19.14516819620529 ], [ -47.28515625, -19.14516819620529 ], [ -47.28515625, -19.31114335506464 ], [ -47.4609375, -19.31114335506464 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=376, y=567, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -19.31114335506464 ], [ -47.8125, -18.97902595325527 ], [ -47.4609375, -18.97902595325527 ], [ -47.4609375, -19.31114335506464 ], [ -47.8125, -19.31114335506464 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=376, y=568, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -19.642587534013032 ], [ -47.8125, -19.31114335506464 ], [ -47.4609375, -19.31114335506464 ], [ -47.4609375, -19.642587534013032 ], [ -47.8125, -19.642587534013032 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=754, y=1136, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.4609375, -19.476950206488414 ], [ -47.4609375, -19.31114335506464 ], [ -47.28515625, -19.31114335506464 ], [ -47.28515625, -19.476950206488414 ], [ -47.4609375, -19.476950206488414 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1510, y=2274, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.28515625, -19.559790136497405 ], [ -47.28515625, -19.476950206488414 ], [ -47.197265625, -19.476950206488414 ], [ -47.197265625, -19.559790136497405 ], [ -47.28515625, -19.559790136497405 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1510, y=2275, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.28515625, -19.642587534013032 ], [ -47.28515625, -19.559790136497405 ], [ -47.197265625, -19.559790136497405 ], [ -47.197265625, -19.642587534013032 ], [ -47.28515625, -19.642587534013032 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=754, y=1137, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.4609375, -19.642587534013032 ], [ -47.4609375, -19.476950206488414 ], [ -47.28515625, -19.476950206488414 ], [ -47.28515625, -19.642587534013032 ], [ -47.4609375, -19.642587534013032 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=754, y=1138, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.4609375, -19.808054128088585 ], [ -47.4609375, -19.642587534013032 ], [ -47.28515625, -19.642587534013032 ], [ -47.28515625, -19.808054128088585 ], [ -47.4609375, -19.808054128088585 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1510, y=2276, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.28515625, -19.725342248057871 ], [ -47.28515625, -19.642587534013032 ], [ -47.197265625, -19.642587534013032 ], [ -47.197265625, -19.725342248057871 ], [ -47.28515625, -19.725342248057871 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1510, y=2277, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.28515625, -19.808054128088585 ], [ -47.28515625, -19.725342248057871 ], [ -47.197265625, -19.725342248057871 ], [ -47.197265625, -19.808054128088585 ], [ -47.28515625, -19.808054128088585 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1510, y=2278, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.28515625, -19.890723023996902 ], [ -47.28515625, -19.808054128088585 ], [ -47.197265625, -19.808054128088585 ], [ -47.197265625, -19.890723023996902 ], [ -47.28515625, -19.890723023996902 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1510, y=2279, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.28515625, -19.973348786110602 ], [ -47.28515625, -19.890723023996902 ], [ -47.197265625, -19.890723023996902 ], [ -47.197265625, -19.973348786110602 ], [ -47.28515625, -19.973348786110602 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=754, y=1139, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.4609375, -19.973348786110602 ], [ -47.4609375, -19.808054128088585 ], [ -47.28515625, -19.808054128088585 ], [ -47.28515625, -19.973348786110602 ], [ -47.4609375, -19.973348786110602 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=376, y=569, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -19.973348786110602 ], [ -47.8125, -19.642587534013032 ], [ -47.4609375, -19.642587534013032 ], [ -47.4609375, -19.973348786110602 ], [ -47.8125, -19.973348786110602 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=376, y=570, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -20.303417518489301 ], [ -47.8125, -19.973348786110602 ], [ -47.4609375, -19.973348786110602 ], [ -47.4609375, -20.303417518489301 ], [ -47.8125, -20.303417518489301 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=754, y=1140, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.4609375, -20.138470312451151 ], [ -47.4609375, -19.973348786110602 ], [ -47.28515625, -19.973348786110602 ], [ -47.28515625, -20.138470312451151 ], [ -47.4609375, -20.138470312451151 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1510, y=2280, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.28515625, -20.055931265194445 ], [ -47.28515625, -19.973348786110602 ], [ -47.197265625, -19.973348786110602 ], [ -47.197265625, -20.055931265194445 ], [ -47.28515625, -20.055931265194445 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1510, y=2281, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.28515625, -20.138470312451151 ], [ -47.28515625, -20.055931265194445 ], [ -47.197265625, -20.055931265194445 ], [ -47.197265625, -20.138470312451151 ], [ -47.28515625, -20.138470312451151 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1510, y=2282, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.28515625, -20.220965779522302 ], [ -47.28515625, -20.138470312451151 ], [ -47.197265625, -20.138470312451151 ], [ -47.197265625, -20.220965779522302 ], [ -47.28515625, -20.220965779522302 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1510, y=2283, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.28515625, -20.303417518489301 ], [ -47.28515625, -20.220965779522302 ], [ -47.197265625, -20.220965779522302 ], [ -47.197265625, -20.303417518489301 ], [ -47.28515625, -20.303417518489301 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=754, y=1141, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.4609375, -20.303417518489301 ], [ -47.4609375, -20.138470312451151 ], [ -47.28515625, -20.138470312451151 ], [ -47.28515625, -20.303417518489301 ], [ -47.4609375, -20.303417518489301 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1504, y=2284, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.8125, -20.385825381874266 ], [ -47.8125, -20.303417518489301 ], [ -47.724609375, -20.303417518489301 ], [ -47.724609375, -20.385825381874266 ], [ -47.8125, -20.385825381874266 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1505, y=2284, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.724609375, -20.385825381874266 ], [ -47.724609375, -20.303417518489301 ], [ -47.63671875, -20.303417518489301 ], [ -47.63671875, -20.385825381874266 ], [ -47.724609375, -20.385825381874266 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1506, y=2284, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.63671875, -20.385825381874266 ], [ -47.63671875, -20.303417518489301 ], [ -47.548828125, -20.303417518489301 ], [ -47.548828125, -20.385825381874266 ], [ -47.63671875, -20.385825381874266 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=92, y=142, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.625, -20.632784250388017 ], [ -50.625, -19.31114335506464 ], [ -49.21875, -19.31114335506464 ], [ -49.21875, -20.632784250388017 ], [ -50.625, -20.632784250388017 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=186, y=284, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.21875, -19.973348786110602 ], [ -49.21875, -19.31114335506464 ], [ -48.515625, -19.31114335506464 ], [ -48.515625, -19.973348786110602 ], [ -49.21875, -19.973348786110602 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=187, y=284, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -19.973348786110602 ], [ -48.515625, -19.31114335506464 ], [ -47.8125, -19.31114335506464 ], [ -47.8125, -19.973348786110602 ], [ -48.515625, -19.973348786110602 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=374, y=570, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -20.303417518489301 ], [ -48.515625, -19.973348786110602 ], [ -48.1640625, -19.973348786110602 ], [ -48.1640625, -20.303417518489301 ], [ -48.515625, -20.303417518489301 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=375, y=570, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -20.303417518489301 ], [ -48.1640625, -19.973348786110602 ], [ -47.8125, -19.973348786110602 ], [ -47.8125, -20.303417518489301 ], [ -48.1640625, -20.303417518489301 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=750, y=1142, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.1640625, -20.468189222640952 ], [ -48.1640625, -20.303417518489301 ], [ -47.98828125, -20.303417518489301 ], [ -47.98828125, -20.468189222640952 ], [ -48.1640625, -20.468189222640952 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1502, y=2284, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.98828125, -20.385825381874266 ], [ -47.98828125, -20.303417518489301 ], [ -47.900390625, -20.303417518489301 ], [ -47.900390625, -20.385825381874266 ], [ -47.98828125, -20.385825381874266 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1503, y=2284, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.900390625, -20.385825381874266 ], [ -47.900390625, -20.303417518489301 ], [ -47.8125, -20.303417518489301 ], [ -47.8125, -20.385825381874266 ], [ -47.900390625, -20.385825381874266 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1502, y=2285, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.98828125, -20.468189222640952 ], [ -47.98828125, -20.385825381874266 ], [ -47.900390625, -20.385825381874266 ], [ -47.900390625, -20.468189222640952 ], [ -47.98828125, -20.468189222640952 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=748, y=1142, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -20.468189222640952 ], [ -48.515625, -20.303417518489301 ], [ -48.33984375, -20.303417518489301 ], [ -48.33984375, -20.468189222640952 ], [ -48.515625, -20.468189222640952 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=749, y=1142, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.33984375, -20.468189222640952 ], [ -48.33984375, -20.303417518489301 ], [ -48.1640625, -20.303417518489301 ], [ -48.1640625, -20.468189222640952 ], [ -48.33984375, -20.468189222640952 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1496, y=2286, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.515625, -20.550508894195637 ], [ -48.515625, -20.468189222640952 ], [ -48.427734375, -20.468189222640952 ], [ -48.427734375, -20.550508894195637 ], [ -48.515625, -20.550508894195637 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1497, y=2286, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.427734375, -20.550508894195637 ], [ -48.427734375, -20.468189222640952 ], [ -48.33984375, -20.468189222640952 ], [ -48.33984375, -20.550508894195637 ], [ -48.427734375, -20.550508894195637 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=372, y=570, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.21875, -20.303417518489301 ], [ -49.21875, -19.973348786110602 ], [ -48.8671875, -19.973348786110602 ], [ -48.8671875, -20.303417518489301 ], [ -49.21875, -20.303417518489301 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=373, y=570, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.8671875, -20.303417518489301 ], [ -48.8671875, -19.973348786110602 ], [ -48.515625, -19.973348786110602 ], [ -48.515625, -20.303417518489301 ], [ -48.8671875, -20.303417518489301 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=746, y=1142, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.8671875, -20.468189222640952 ], [ -48.8671875, -20.303417518489301 ], [ -48.69140625, -20.303417518489301 ], [ -48.69140625, -20.468189222640952 ], [ -48.8671875, -20.468189222640952 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=747, y=1142, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.69140625, -20.468189222640952 ], [ -48.69140625, -20.303417518489301 ], [ -48.515625, -20.303417518489301 ], [ -48.515625, -20.468189222640952 ], [ -48.69140625, -20.468189222640952 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1494, y=2286, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.69140625, -20.550508894195637 ], [ -48.69140625, -20.468189222640952 ], [ -48.603515625, -20.468189222640952 ], [ -48.603515625, -20.550508894195637 ], [ -48.69140625, -20.550508894195637 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1495, y=2286, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.603515625, -20.550508894195637 ], [ -48.603515625, -20.468189222640952 ], [ -48.515625, -20.468189222640952 ], [ -48.515625, -20.550508894195637 ], [ -48.603515625, -20.550508894195637 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=746, y=1143, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.8671875, -20.632784250388017 ], [ -48.8671875, -20.468189222640952 ], [ -48.69140625, -20.468189222640952 ], [ -48.69140625, -20.632784250388017 ], [ -48.8671875, -20.632784250388017 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=372, y=571, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.21875, -20.632784250388017 ], [ -49.21875, -20.303417518489301 ], [ -48.8671875, -20.303417518489301 ], [ -48.8671875, -20.632784250388017 ], [ -49.21875, -20.632784250388017 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1488, y=2288, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.21875, -20.715015145512091 ], [ -49.21875, -20.632784250388017 ], [ -49.130859375, -20.632784250388017 ], [ -49.130859375, -20.715015145512091 ], [ -49.21875, -20.715015145512091 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=368, y=572, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.625, -20.961439614096836 ], [ -50.625, -20.632784250388017 ], [ -50.2734375, -20.632784250388017 ], [ -50.2734375, -20.961439614096836 ], [ -50.625, -20.961439614096836 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=738, y=1144, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.2734375, -20.797201434306995 ], [ -50.2734375, -20.632784250388017 ], [ -50.09765625, -20.632784250388017 ], [ -50.09765625, -20.797201434306995 ], [ -50.2734375, -20.797201434306995 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=739, y=1144, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.09765625, -20.797201434306995 ], [ -50.09765625, -20.632784250388017 ], [ -49.921875, -20.632784250388017 ], [ -49.921875, -20.797201434306995 ], [ -50.09765625, -20.797201434306995 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1478, y=2290, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.09765625, -20.879342971957897 ], [ -50.09765625, -20.797201434306995 ], [ -50.009765625, -20.797201434306995 ], [ -50.009765625, -20.879342971957897 ], [ -50.09765625, -20.879342971957897 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1479, y=2290, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.009765625, -20.879342971957897 ], [ -50.009765625, -20.797201434306995 ], [ -49.921875, -20.797201434306995 ], [ -49.921875, -20.879342971957897 ], [ -50.009765625, -20.879342971957897 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1476, y=2290, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.2734375, -20.879342971957897 ], [ -50.2734375, -20.797201434306995 ], [ -50.185546875, -20.797201434306995 ], [ -50.185546875, -20.879342971957897 ], [ -50.2734375, -20.879342971957897 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1477, y=2290, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.185546875, -20.879342971957897 ], [ -50.185546875, -20.797201434306995 ], [ -50.09765625, -20.797201434306995 ], [ -50.09765625, -20.879342971957897 ], [ -50.185546875, -20.879342971957897 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=740, y=1144, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.921875, -20.797201434306995 ], [ -49.921875, -20.632784250388017 ], [ -49.74609375, -20.632784250388017 ], [ -49.74609375, -20.797201434306995 ], [ -49.921875, -20.797201434306995 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=741, y=1144, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.74609375, -20.797201434306995 ], [ -49.74609375, -20.632784250388017 ], [ -49.5703125, -20.632784250388017 ], [ -49.5703125, -20.797201434306995 ], [ -49.74609375, -20.797201434306995 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1484, y=2288, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.5703125, -20.715015145512091 ], [ -49.5703125, -20.632784250388017 ], [ -49.482421875, -20.632784250388017 ], [ -49.482421875, -20.715015145512091 ], [ -49.5703125, -20.715015145512091 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1485, y=2288, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.482421875, -20.715015145512091 ], [ -49.482421875, -20.632784250388017 ], [ -49.39453125, -20.632784250388017 ], [ -49.39453125, -20.715015145512091 ], [ -49.482421875, -20.715015145512091 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1484, y=2289, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.5703125, -20.797201434306995 ], [ -49.5703125, -20.715015145512091 ], [ -49.482421875, -20.715015145512091 ], [ -49.482421875, -20.797201434306995 ], [ -49.5703125, -20.797201434306995 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1486, y=2288, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.39453125, -20.715015145512091 ], [ -49.39453125, -20.632784250388017 ], [ -49.306640625, -20.632784250388017 ], [ -49.306640625, -20.715015145512091 ], [ -49.39453125, -20.715015145512091 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1487, y=2288, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.306640625, -20.715015145512091 ], [ -49.306640625, -20.632784250388017 ], [ -49.21875, -20.632784250388017 ], [ -49.21875, -20.715015145512091 ], [ -49.306640625, -20.715015145512091 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=44, y=70, z=7)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, -19.31114335506464 ], [ -56.25, -16.636191878397657 ], [ -53.4375, -16.636191878397657 ], [ -53.4375, -19.31114335506464 ], [ -56.25, -19.31114335506464 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=45, y=70, z=7)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.4375, -19.31114335506464 ], [ -53.4375, -16.636191878397657 ], [ -50.625, -16.636191878397657 ], [ -50.625, -19.31114335506464 ], [ -53.4375, -19.31114335506464 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=90, y=142, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.4375, -20.632784250388017 ], [ -53.4375, -19.31114335506464 ], [ -52.03125, -19.31114335506464 ], [ -52.03125, -20.632784250388017 ], [ -53.4375, -20.632784250388017 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=91, y=142, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.03125, -20.632784250388017 ], [ -52.03125, -19.31114335506464 ], [ -50.625, -19.31114335506464 ], [ -50.625, -20.632784250388017 ], [ -52.03125, -20.632784250388017 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=364, y=572, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.03125, -20.961439614096836 ], [ -52.03125, -20.632784250388017 ], [ -51.6796875, -20.632784250388017 ], [ -51.6796875, -20.961439614096836 ], [ -52.03125, -20.961439614096836 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=365, y=572, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.6796875, -20.961439614096836 ], [ -51.6796875, -20.632784250388017 ], [ -51.328125, -20.632784250388017 ], [ -51.328125, -20.961439614096836 ], [ -51.6796875, -20.961439614096836 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=730, y=1146, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.6796875, -21.125497636606273 ], [ -51.6796875, -20.961439614096836 ], [ -51.50390625, -20.961439614096836 ], [ -51.50390625, -21.125497636606273 ], [ -51.6796875, -21.125497636606273 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=731, y=1146, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.50390625, -21.125497636606273 ], [ -51.50390625, -20.961439614096836 ], [ -51.328125, -20.961439614096836 ], [ -51.328125, -21.125497636606273 ], [ -51.50390625, -21.125497636606273 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1462, y=2294, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.50390625, -21.207458730482642 ], [ -51.50390625, -21.125497636606273 ], [ -51.416015625, -21.125497636606273 ], [ -51.416015625, -21.207458730482642 ], [ -51.50390625, -21.207458730482642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1460, y=2294, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.6796875, -21.207458730482642 ], [ -51.6796875, -21.125497636606273 ], [ -51.591796875, -21.125497636606273 ], [ -51.591796875, -21.207458730482642 ], [ -51.6796875, -21.207458730482642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1461, y=2294, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.591796875, -21.207458730482642 ], [ -51.591796875, -21.125497636606273 ], [ -51.50390625, -21.125497636606273 ], [ -51.50390625, -21.207458730482642 ], [ -51.591796875, -21.207458730482642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=728, y=1146, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.03125, -21.125497636606273 ], [ -52.03125, -20.961439614096836 ], [ -51.85546875, -20.961439614096836 ], [ -51.85546875, -21.125497636606273 ], [ -52.03125, -21.125497636606273 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=729, y=1146, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.85546875, -21.125497636606273 ], [ -51.85546875, -20.961439614096836 ], [ -51.6796875, -20.961439614096836 ], [ -51.6796875, -21.125497636606273 ], [ -51.85546875, -21.125497636606273 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1458, y=2294, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.85546875, -21.207458730482642 ], [ -51.85546875, -21.125497636606273 ], [ -51.767578125, -21.125497636606273 ], [ -51.767578125, -21.207458730482642 ], [ -51.85546875, -21.207458730482642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1459, y=2294, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.767578125, -21.207458730482642 ], [ -51.767578125, -21.125497636606273 ], [ -51.6796875, -21.125497636606273 ], [ -51.6796875, -21.207458730482642 ], [ -51.767578125, -21.207458730482642 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=728, y=1147, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.03125, -21.289374355860421 ], [ -52.03125, -21.125497636606273 ], [ -51.85546875, -21.125497636606273 ], [ -51.85546875, -21.289374355860421 ], [ -52.03125, -21.289374355860421 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=366, y=572, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.328125, -20.961439614096836 ], [ -51.328125, -20.632784250388017 ], [ -50.9765625, -20.632784250388017 ], [ -50.9765625, -20.961439614096836 ], [ -51.328125, -20.961439614096836 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=367, y=572, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.9765625, -20.961439614096836 ], [ -50.9765625, -20.632784250388017 ], [ -50.625, -20.632784250388017 ], [ -50.625, -20.961439614096836 ], [ -50.9765625, -20.961439614096836 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1468, y=2292, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.9765625, -21.043491216803542 ], [ -50.9765625, -20.961439614096836 ], [ -50.888671875, -20.961439614096836 ], [ -50.888671875, -21.043491216803542 ], [ -50.9765625, -21.043491216803542 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1469, y=2292, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.888671875, -21.043491216803542 ], [ -50.888671875, -20.961439614096836 ], [ -50.80078125, -20.961439614096836 ], [ -50.80078125, -21.043491216803542 ], [ -50.888671875, -21.043491216803542 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1470, y=2292, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.80078125, -21.043491216803542 ], [ -50.80078125, -20.961439614096836 ], [ -50.712890625, -20.961439614096836 ], [ -50.712890625, -21.043491216803542 ], [ -50.80078125, -21.043491216803542 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1471, y=2292, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.712890625, -21.043491216803542 ], [ -50.712890625, -20.961439614096836 ], [ -50.625, -20.961439614096836 ], [ -50.625, -21.043491216803542 ], [ -50.712890625, -21.043491216803542 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=732, y=1146, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.328125, -21.125497636606273 ], [ -51.328125, -20.961439614096836 ], [ -51.15234375, -20.961439614096836 ], [ -51.15234375, -21.125497636606273 ], [ -51.328125, -21.125497636606273 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1466, y=2292, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.15234375, -21.043491216803542 ], [ -51.15234375, -20.961439614096836 ], [ -51.064453125, -20.961439614096836 ], [ -51.064453125, -21.043491216803542 ], [ -51.15234375, -21.043491216803542 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1467, y=2292, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.064453125, -21.043491216803542 ], [ -51.064453125, -20.961439614096836 ], [ -50.9765625, -20.961439614096836 ], [ -50.9765625, -21.043491216803542 ], [ -51.064453125, -21.043491216803542 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1466, y=2293, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.15234375, -21.125497636606273 ], [ -51.15234375, -21.043491216803542 ], [ -51.064453125, -21.043491216803542 ], [ -51.064453125, -21.125497636606273 ], [ -51.15234375, -21.125497636606273 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=180, y=286, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.4375, -21.289374355860421 ], [ -53.4375, -20.632784250388017 ], [ -52.734375, -20.632784250388017 ], [ -52.734375, -21.289374355860421 ], [ -53.4375, -21.289374355860421 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=181, y=286, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.734375, -21.289374355860421 ], [ -52.734375, -20.632784250388017 ], [ -52.03125, -20.632784250388017 ], [ -52.03125, -21.289374355860421 ], [ -52.734375, -21.289374355860421 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1448, y=2296, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.734375, -21.37124437061831 ], [ -52.734375, -21.289374355860421 ], [ -52.646484375, -21.289374355860421 ], [ -52.646484375, -21.37124437061831 ], [ -52.734375, -21.37124437061831 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1449, y=2296, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.646484375, -21.37124437061831 ], [ -52.646484375, -21.289374355860421 ], [ -52.55859375, -21.289374355860421 ], [ -52.55859375, -21.37124437061831 ], [ -52.646484375, -21.37124437061831 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1448, y=2297, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.734375, -21.453068633086776 ], [ -52.734375, -21.37124437061831 ], [ -52.646484375, -21.37124437061831 ], [ -52.646484375, -21.453068633086776 ], [ -52.734375, -21.453068633086776 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1450, y=2296, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.55859375, -21.37124437061831 ], [ -52.55859375, -21.289374355860421 ], [ -52.470703125, -21.289374355860421 ], [ -52.470703125, -21.37124437061831 ], [ -52.55859375, -21.37124437061831 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1451, y=2296, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.470703125, -21.37124437061831 ], [ -52.470703125, -21.289374355860421 ], [ -52.3828125, -21.289374355860421 ], [ -52.3828125, -21.37124437061831 ], [ -52.470703125, -21.37124437061831 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1452, y=2296, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.3828125, -21.37124437061831 ], [ -52.3828125, -21.289374355860421 ], [ -52.294921875, -21.289374355860421 ], [ -52.294921875, -21.37124437061831 ], [ -52.3828125, -21.37124437061831 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1453, y=2296, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.294921875, -21.37124437061831 ], [ -52.294921875, -21.289374355860421 ], [ -52.20703125, -21.289374355860421 ], [ -52.20703125, -21.37124437061831 ], [ -52.294921875, -21.37124437061831 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=720, y=1148, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.4375, -21.453068633086776 ], [ -53.4375, -21.289374355860421 ], [ -53.26171875, -21.289374355860421 ], [ -53.26171875, -21.453068633086776 ], [ -53.4375, -21.453068633086776 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=721, y=1148, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.26171875, -21.453068633086776 ], [ -53.26171875, -21.289374355860421 ], [ -53.0859375, -21.289374355860421 ], [ -53.0859375, -21.453068633086776 ], [ -53.26171875, -21.453068633086776 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1442, y=2298, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.26171875, -21.534847002048789 ], [ -53.26171875, -21.453068633086776 ], [ -53.173828125, -21.453068633086776 ], [ -53.173828125, -21.534847002048789 ], [ -53.26171875, -21.534847002048789 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1443, y=2298, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.173828125, -21.534847002048789 ], [ -53.173828125, -21.453068633086776 ], [ -53.0859375, -21.453068633086776 ], [ -53.0859375, -21.534847002048789 ], [ -53.173828125, -21.534847002048789 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1440, y=2298, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.4375, -21.534847002048789 ], [ -53.4375, -21.453068633086776 ], [ -53.349609375, -21.453068633086776 ], [ -53.349609375, -21.534847002048789 ], [ -53.4375, -21.534847002048789 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1441, y=2298, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.349609375, -21.534847002048789 ], [ -53.349609375, -21.453068633086776 ], [ -53.26171875, -21.453068633086776 ], [ -53.26171875, -21.534847002048789 ], [ -53.349609375, -21.534847002048789 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1440, y=2299, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.4375, -21.616579336740603 ], [ -53.4375, -21.534847002048789 ], [ -53.349609375, -21.534847002048789 ], [ -53.349609375, -21.616579336740603 ], [ -53.4375, -21.616579336740603 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=722, y=1148, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.0859375, -21.453068633086776 ], [ -53.0859375, -21.289374355860421 ], [ -52.91015625, -21.289374355860421 ], [ -52.91015625, -21.453068633086776 ], [ -53.0859375, -21.453068633086776 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=723, y=1148, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.91015625, -21.453068633086776 ], [ -52.91015625, -21.289374355860421 ], [ -52.734375, -21.289374355860421 ], [ -52.734375, -21.453068633086776 ], [ -52.91015625, -21.453068633086776 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1444, y=2298, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.0859375, -21.534847002048789 ], [ -53.0859375, -21.453068633086776 ], [ -52.998046875, -21.453068633086776 ], [ -52.998046875, -21.534847002048789 ], [ -53.0859375, -21.534847002048789 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=88, y=142, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, -20.632784250388017 ], [ -56.25, -19.31114335506464 ], [ -54.84375, -19.31114335506464 ], [ -54.84375, -20.632784250388017 ], [ -56.25, -20.632784250388017 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=89, y=142, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.84375, -20.632784250388017 ], [ -54.84375, -19.31114335506464 ], [ -53.4375, -19.31114335506464 ], [ -53.4375, -20.632784250388017 ], [ -54.84375, -20.632784250388017 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=178, y=286, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.84375, -21.289374355860421 ], [ -54.84375, -20.632784250388017 ], [ -54.140625, -20.632784250388017 ], [ -54.140625, -21.289374355860421 ], [ -54.84375, -21.289374355860421 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=179, y=286, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.140625, -21.289374355860421 ], [ -54.140625, -20.632784250388017 ], [ -53.4375, -20.632784250388017 ], [ -53.4375, -21.289374355860421 ], [ -54.140625, -21.289374355860421 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=358, y=574, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.140625, -21.616579336740603 ], [ -54.140625, -21.289374355860421 ], [ -53.7890625, -21.289374355860421 ], [ -53.7890625, -21.616579336740603 ], [ -54.140625, -21.616579336740603 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=359, y=574, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.7890625, -21.616579336740603 ], [ -53.7890625, -21.289374355860421 ], [ -53.4375, -21.289374355860421 ], [ -53.4375, -21.616579336740603 ], [ -53.7890625, -21.616579336740603 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1432, y=2300, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.140625, -21.698265496852521 ], [ -54.140625, -21.616579336740603 ], [ -54.052734375, -21.616579336740603 ], [ -54.052734375, -21.698265496852521 ], [ -54.140625, -21.698265496852521 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1433, y=2300, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.052734375, -21.698265496852521 ], [ -54.052734375, -21.616579336740603 ], [ -53.96484375, -21.616579336740603 ], [ -53.96484375, -21.698265496852521 ], [ -54.052734375, -21.698265496852521 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1434, y=2300, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.96484375, -21.698265496852521 ], [ -53.96484375, -21.616579336740603 ], [ -53.876953125, -21.616579336740603 ], [ -53.876953125, -21.698265496852521 ], [ -53.96484375, -21.698265496852521 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1435, y=2300, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.876953125, -21.698265496852521 ], [ -53.876953125, -21.616579336740603 ], [ -53.7890625, -21.616579336740603 ], [ -53.7890625, -21.698265496852521 ], [ -53.876953125, -21.698265496852521 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=356, y=574, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.84375, -21.616579336740603 ], [ -54.84375, -21.289374355860421 ], [ -54.4921875, -21.289374355860421 ], [ -54.4921875, -21.616579336740603 ], [ -54.84375, -21.616579336740603 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=357, y=574, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.4921875, -21.616579336740603 ], [ -54.4921875, -21.289374355860421 ], [ -54.140625, -21.289374355860421 ], [ -54.140625, -21.616579336740603 ], [ -54.4921875, -21.616579336740603 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=714, y=1150, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.4921875, -21.779905342529634 ], [ -54.4921875, -21.616579336740603 ], [ -54.31640625, -21.616579336740603 ], [ -54.31640625, -21.779905342529634 ], [ -54.4921875, -21.779905342529634 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=715, y=1150, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.31640625, -21.779905342529634 ], [ -54.31640625, -21.616579336740603 ], [ -54.140625, -21.616579336740603 ], [ -54.140625, -21.779905342529634 ], [ -54.31640625, -21.779905342529634 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=712, y=1150, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.84375, -21.779905342529634 ], [ -54.84375, -21.616579336740603 ], [ -54.66796875, -21.616579336740603 ], [ -54.66796875, -21.779905342529634 ], [ -54.84375, -21.779905342529634 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=713, y=1150, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.66796875, -21.779905342529634 ], [ -54.66796875, -21.616579336740603 ], [ -54.4921875, -21.616579336740603 ], [ -54.4921875, -21.779905342529634 ], [ -54.66796875, -21.779905342529634 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1426, y=2302, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.66796875, -21.86149873437256 ], [ -54.66796875, -21.779905342529634 ], [ -54.580078125, -21.779905342529634 ], [ -54.580078125, -21.86149873437256 ], [ -54.66796875, -21.86149873437256 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1424, y=2302, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.84375, -21.86149873437256 ], [ -54.84375, -21.779905342529634 ], [ -54.755859375, -21.779905342529634 ], [ -54.755859375, -21.86149873437256 ], [ -54.84375, -21.86149873437256 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1425, y=2302, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.755859375, -21.86149873437256 ], [ -54.755859375, -21.779905342529634 ], [ -54.66796875, -21.779905342529634 ], [ -54.66796875, -21.86149873437256 ], [ -54.755859375, -21.86149873437256 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=176, y=286, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, -21.289374355860421 ], [ -56.25, -20.632784250388017 ], [ -55.546875, -20.632784250388017 ], [ -55.546875, -21.289374355860421 ], [ -56.25, -21.289374355860421 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=177, y=286, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.546875, -21.289374355860421 ], [ -55.546875, -20.632784250388017 ], [ -54.84375, -20.632784250388017 ], [ -54.84375, -21.289374355860421 ], [ -55.546875, -21.289374355860421 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=354, y=574, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.546875, -21.616579336740603 ], [ -55.546875, -21.289374355860421 ], [ -55.1953125, -21.289374355860421 ], [ -55.1953125, -21.616579336740603 ], [ -55.546875, -21.616579336740603 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=355, y=574, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.1953125, -21.616579336740603 ], [ -55.1953125, -21.289374355860421 ], [ -54.84375, -21.289374355860421 ], [ -54.84375, -21.616579336740603 ], [ -55.1953125, -21.616579336740603 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=710, y=1150, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.1953125, -21.779905342529634 ], [ -55.1953125, -21.616579336740603 ], [ -55.01953125, -21.616579336740603 ], [ -55.01953125, -21.779905342529634 ], [ -55.1953125, -21.779905342529634 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=711, y=1150, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.01953125, -21.779905342529634 ], [ -55.01953125, -21.616579336740603 ], [ -54.84375, -21.616579336740603 ], [ -54.84375, -21.779905342529634 ], [ -55.01953125, -21.779905342529634 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1422, y=2302, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.01953125, -21.86149873437256 ], [ -55.01953125, -21.779905342529634 ], [ -54.931640625, -21.779905342529634 ], [ -54.931640625, -21.86149873437256 ], [ -55.01953125, -21.86149873437256 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1423, y=2302, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.931640625, -21.86149873437256 ], [ -54.931640625, -21.779905342529634 ], [ -54.84375, -21.779905342529634 ], [ -54.84375, -21.86149873437256 ], [ -54.931640625, -21.86149873437256 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1422, y=2303, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.01953125, -21.943045533438177 ], [ -55.01953125, -21.86149873437256 ], [ -54.931640625, -21.86149873437256 ], [ -54.931640625, -21.943045533438177 ], [ -55.01953125, -21.943045533438177 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=710, y=1151, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.1953125, -21.943045533438177 ], [ -55.1953125, -21.779905342529634 ], [ -55.01953125, -21.779905342529634 ], [ -55.01953125, -21.943045533438177 ], [ -55.1953125, -21.943045533438177 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=354, y=575, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.546875, -21.943045533438177 ], [ -55.546875, -21.616579336740603 ], [ -55.1953125, -21.616579336740603 ], [ -55.1953125, -21.943045533438177 ], [ -55.546875, -21.943045533438177 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=176, y=287, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, -21.943045533438177 ], [ -56.25, -21.289374355860421 ], [ -55.546875, -21.289374355860421 ], [ -55.546875, -21.943045533438177 ], [ -56.25, -21.943045533438177 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1288, y=2176, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.796875, -11.264612212504433 ], [ -66.796875, -11.178401873711781 ], [ -66.708984375, -11.178401873711781 ], [ -66.708984375, -11.264612212504433 ], [ -66.796875, -11.264612212504433 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1289, y=2176, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.708984375, -11.264612212504433 ], [ -66.708984375, -11.178401873711781 ], [ -66.62109375, -11.178401873711781 ], [ -66.62109375, -11.264612212504433 ], [ -66.708984375, -11.264612212504433 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1289, y=2177, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.708984375, -11.350796722383674 ], [ -66.708984375, -11.264612212504433 ], [ -66.62109375, -11.264612212504433 ], [ -66.62109375, -11.350796722383674 ], [ -66.708984375, -11.350796722383674 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=645, y=1088, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.62109375, -11.350796722383674 ], [ -66.62109375, -11.178401873711781 ], [ -66.4453125, -11.178401873711781 ], [ -66.4453125, -11.350796722383674 ], [ -66.62109375, -11.350796722383674 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1290, y=2178, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.62109375, -11.436955216143181 ], [ -66.62109375, -11.350796722383674 ], [ -66.533203125, -11.350796722383674 ], [ -66.533203125, -11.436955216143181 ], [ -66.62109375, -11.436955216143181 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1291, y=2178, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.533203125, -11.436955216143181 ], [ -66.533203125, -11.350796722383674 ], [ -66.4453125, -11.350796722383674 ], [ -66.4453125, -11.436955216143181 ], [ -66.533203125, -11.436955216143181 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1291, y=2179, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.533203125, -11.523087506868508 ], [ -66.533203125, -11.436955216143181 ], [ -66.4453125, -11.436955216143181 ], [ -66.4453125, -11.523087506868508 ], [ -66.533203125, -11.523087506868508 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=323, y=544, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.4453125, -11.523087506868508 ], [ -66.4453125, -11.178401873711781 ], [ -66.09375, -11.178401873711781 ], [ -66.09375, -11.523087506868508 ], [ -66.4453125, -11.523087506868508 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1292, y=2180, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.4453125, -11.609193407938944 ], [ -66.4453125, -11.523087506868508 ], [ -66.357421875, -11.523087506868508 ], [ -66.357421875, -11.609193407938944 ], [ -66.4453125, -11.609193407938944 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1293, y=2180, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.357421875, -11.609193407938944 ], [ -66.357421875, -11.523087506868508 ], [ -66.26953125, -11.523087506868508 ], [ -66.26953125, -11.609193407938944 ], [ -66.357421875, -11.609193407938944 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1293, y=2181, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.357421875, -11.695272733029404 ], [ -66.357421875, -11.609193407938944 ], [ -66.26953125, -11.609193407938944 ], [ -66.26953125, -11.695272733029404 ], [ -66.357421875, -11.695272733029404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=647, y=1090, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.26953125, -11.695272733029404 ], [ -66.26953125, -11.523087506868508 ], [ -66.09375, -11.523087506868508 ], [ -66.09375, -11.695272733029404 ], [ -66.26953125, -11.695272733029404 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1294, y=2182, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.26953125, -11.781325296112279 ], [ -66.26953125, -11.695272733029404 ], [ -66.181640625, -11.695272733029404 ], [ -66.181640625, -11.781325296112279 ], [ -66.26953125, -11.781325296112279 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1295, y=2182, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.181640625, -11.781325296112279 ], [ -66.181640625, -11.695272733029404 ], [ -66.09375, -11.695272733029404 ], [ -66.09375, -11.781325296112279 ], [ -66.181640625, -11.781325296112279 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1295, y=2183, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.181640625, -11.86735091145931 ], [ -66.181640625, -11.781325296112279 ], [ -66.09375, -11.781325296112279 ], [ -66.09375, -11.86735091145931 ], [ -66.181640625, -11.86735091145931 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=162, y=272, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.09375, -11.86735091145931 ], [ -66.09375, -11.178401873711781 ], [ -65.390625, -11.178401873711781 ], [ -65.390625, -11.86735091145931 ], [ -66.09375, -11.86735091145931 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=163, y=272, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.390625, -11.86735091145931 ], [ -65.390625, -11.178401873711781 ], [ -64.6875, -11.178401873711781 ], [ -64.6875, -11.86735091145931 ], [ -65.390625, -11.86735091145931 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=163, y=273, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.390625, -12.554563528593658 ], [ -65.390625, -11.86735091145931 ], [ -64.6875, -11.86735091145931 ], [ -64.6875, -12.554563528593658 ], [ -65.390625, -12.554563528593658 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1296, y=2184, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.09375, -11.953349393643419 ], [ -66.09375, -11.86735091145931 ], [ -66.005859375, -11.86735091145931 ], [ -66.005859375, -11.953349393643419 ], [ -66.09375, -11.953349393643419 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1297, y=2184, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.005859375, -11.953349393643419 ], [ -66.005859375, -11.86735091145931 ], [ -65.91796875, -11.86735091145931 ], [ -65.91796875, -11.953349393643419 ], [ -66.005859375, -11.953349393643419 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1297, y=2185, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.005859375, -12.039320557540568 ], [ -66.005859375, -11.953349393643419 ], [ -65.91796875, -11.953349393643419 ], [ -65.91796875, -12.039320557540568 ], [ -66.005859375, -12.039320557540568 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=649, y=1092, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.91796875, -12.039320557540568 ], [ -65.91796875, -11.86735091145931 ], [ -65.7421875, -11.86735091145931 ], [ -65.7421875, -12.039320557540568 ], [ -65.91796875, -12.039320557540568 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1298, y=2186, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.91796875, -12.125264218331585 ], [ -65.91796875, -12.039320557540568 ], [ -65.830078125, -12.039320557540568 ], [ -65.830078125, -12.125264218331585 ], [ -65.91796875, -12.125264218331585 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1299, y=2186, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.830078125, -12.125264218331585 ], [ -65.830078125, -12.039320557540568 ], [ -65.7421875, -12.039320557540568 ], [ -65.7421875, -12.125264218331585 ], [ -65.830078125, -12.125264218331585 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1299, y=2187, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.830078125, -12.21118019150399 ], [ -65.830078125, -12.125264218331585 ], [ -65.7421875, -12.125264218331585 ], [ -65.7421875, -12.21118019150399 ], [ -65.830078125, -12.21118019150399 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=325, y=546, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.7421875, -12.21118019150399 ], [ -65.7421875, -11.86735091145931 ], [ -65.390625, -11.86735091145931 ], [ -65.390625, -12.21118019150399 ], [ -65.7421875, -12.21118019150399 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1300, y=2188, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.7421875, -12.297068292853812 ], [ -65.7421875, -12.21118019150399 ], [ -65.654296875, -12.21118019150399 ], [ -65.654296875, -12.297068292853812 ], [ -65.7421875, -12.297068292853812 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1301, y=2188, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.654296875, -12.297068292853812 ], [ -65.654296875, -12.21118019150399 ], [ -65.56640625, -12.21118019150399 ], [ -65.56640625, -12.297068292853812 ], [ -65.654296875, -12.297068292853812 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1301, y=2189, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.654296875, -12.3829283384874 ], [ -65.654296875, -12.297068292853812 ], [ -65.56640625, -12.297068292853812 ], [ -65.56640625, -12.3829283384874 ], [ -65.654296875, -12.3829283384874 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=651, y=1094, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.56640625, -12.3829283384874 ], [ -65.56640625, -12.21118019150399 ], [ -65.390625, -12.21118019150399 ], [ -65.390625, -12.3829283384874 ], [ -65.56640625, -12.3829283384874 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1302, y=2190, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.56640625, -12.468760144823221 ], [ -65.56640625, -12.3829283384874 ], [ -65.478515625, -12.3829283384874 ], [ -65.478515625, -12.468760144823221 ], [ -65.56640625, -12.468760144823221 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1303, y=2190, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.478515625, -12.468760144823221 ], [ -65.478515625, -12.3829283384874 ], [ -65.390625, -12.3829283384874 ], [ -65.390625, -12.468760144823221 ], [ -65.478515625, -12.468760144823221 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1303, y=2191, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.478515625, -12.554563528593658 ], [ -65.478515625, -12.468760144823221 ], [ -65.390625, -12.468760144823221 ], [ -65.390625, -12.554563528593658 ], [ -65.478515625, -12.554563528593658 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1304, y=2192, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.390625, -12.640338306846795 ], [ -65.390625, -12.554563528593658 ], [ -65.302734375, -12.554563528593658 ], [ -65.302734375, -12.640338306846795 ], [ -65.390625, -12.640338306846795 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1305, y=2192, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.302734375, -12.640338306846795 ], [ -65.302734375, -12.554563528593658 ], [ -65.21484375, -12.554563528593658 ], [ -65.21484375, -12.640338306846795 ], [ -65.302734375, -12.640338306846795 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1305, y=2193, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.302734375, -12.72608429694818 ], [ -65.302734375, -12.640338306846795 ], [ -65.21484375, -12.640338306846795 ], [ -65.21484375, -12.72608429694818 ], [ -65.302734375, -12.72608429694818 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=653, y=1096, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.21484375, -12.72608429694818 ], [ -65.21484375, -12.554563528593658 ], [ -65.0390625, -12.554563528593658 ], [ -65.0390625, -12.72608429694818 ], [ -65.21484375, -12.72608429694818 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1306, y=2194, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.21484375, -12.811801316582617 ], [ -65.21484375, -12.72608429694818 ], [ -65.126953125, -12.72608429694818 ], [ -65.126953125, -12.811801316582617 ], [ -65.21484375, -12.811801316582617 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1307, y=2194, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.126953125, -12.811801316582617 ], [ -65.126953125, -12.72608429694818 ], [ -65.0390625, -12.72608429694818 ], [ -65.0390625, -12.811801316582617 ], [ -65.126953125, -12.811801316582617 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1307, y=2195, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.126953125, -12.897489183755896 ], [ -65.126953125, -12.811801316582617 ], [ -65.0390625, -12.811801316582617 ], [ -65.0390625, -12.897489183755896 ], [ -65.126953125, -12.897489183755896 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=327, y=548, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.0390625, -12.897489183755896 ], [ -65.0390625, -12.554563528593658 ], [ -64.6875, -12.554563528593658 ], [ -64.6875, -12.897489183755896 ], [ -65.0390625, -12.897489183755896 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1309, y=2196, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.951171875, -12.983147716796571 ], [ -64.951171875, -12.897489183755896 ], [ -64.86328125, -12.897489183755896 ], [ -64.86328125, -12.983147716796571 ], [ -64.951171875, -12.983147716796571 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=655, y=1098, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.86328125, -13.068776734357689 ], [ -64.86328125, -12.897489183755896 ], [ -64.6875, -12.897489183755896 ], [ -64.6875, -13.068776734357689 ], [ -64.86328125, -13.068776734357689 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1311, y=2198, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.775390625, -13.154376055418522 ], [ -64.775390625, -13.068776734357689 ], [ -64.6875, -13.068776734357689 ], [ -64.6875, -13.154376055418522 ], [ -64.775390625, -13.154376055418522 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=82, y=136, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.6875, -12.554563528593658 ], [ -64.6875, -11.178401873711781 ], [ -63.28125, -11.178401873711781 ], [ -63.28125, -12.554563528593658 ], [ -64.6875, -12.554563528593658 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=83, y=136, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.28125, -12.554563528593658 ], [ -63.28125, -11.178401873711781 ], [ -61.875, -11.178401873711781 ], [ -61.875, -12.554563528593658 ], [ -63.28125, -12.554563528593658 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=83, y=137, z=8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.28125, -13.923403897723341 ], [ -63.28125, -12.554563528593658 ], [ -61.875, -12.554563528593658 ], [ -61.875, -13.923403897723341 ], [ -63.28125, -13.923403897723341 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=164, y=274, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.6875, -13.239945499286303 ], [ -64.6875, -12.554563528593658 ], [ -63.984375, -12.554563528593658 ], [ -63.984375, -13.239945499286303 ], [ -64.6875, -13.239945499286303 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=165, y=274, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.984375, -13.239945499286303 ], [ -63.984375, -12.554563528593658 ], [ -63.28125, -12.554563528593658 ], [ -63.28125, -13.239945499286303 ], [ -63.984375, -13.239945499286303 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=165, y=275, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.984375, -13.923403897723341 ], [ -63.984375, -13.239945499286303 ], [ -63.28125, -13.239945499286303 ], [ -63.28125, -13.923403897723341 ], [ -63.984375, -13.923403897723341 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1313, y=2200, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.599609375, -13.325484885597936 ], [ -64.599609375, -13.239945499286303 ], [ -64.51171875, -13.239945499286303 ], [ -64.51171875, -13.325484885597936 ], [ -64.599609375, -13.325484885597936 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=657, y=1100, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.51171875, -13.410994034321702 ], [ -64.51171875, -13.239945499286303 ], [ -64.3359375, -13.239945499286303 ], [ -64.3359375, -13.410994034321702 ], [ -64.51171875, -13.410994034321702 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1315, y=2202, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.423828125, -13.496472765758957 ], [ -64.423828125, -13.410994034321702 ], [ -64.3359375, -13.410994034321702 ], [ -64.3359375, -13.496472765758957 ], [ -64.423828125, -13.496472765758957 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=329, y=550, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.3359375, -13.581920900545843 ], [ -64.3359375, -13.239945499286303 ], [ -63.984375, -13.239945499286303 ], [ -63.984375, -13.581920900545843 ], [ -64.3359375, -13.581920900545843 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1317, y=2204, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.248046875, -13.667338259654947 ], [ -64.248046875, -13.581920900545843 ], [ -64.16015625, -13.581920900545843 ], [ -64.16015625, -13.667338259654947 ], [ -64.248046875, -13.667338259654947 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=659, y=1102, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.16015625, -13.752724664396986 ], [ -64.16015625, -13.581920900545843 ], [ -63.984375, -13.581920900545843 ], [ -63.984375, -13.752724664396986 ], [ -64.16015625, -13.752724664396986 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1319, y=2206, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.072265625, -13.838079936422465 ], [ -64.072265625, -13.752724664396986 ], [ -63.984375, -13.752724664396986 ], [ -63.984375, -13.838079936422465 ], [ -64.072265625, -13.838079936422465 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1321, y=2208, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.896484375, -14.008696370634665 ], [ -63.896484375, -13.923403897723341 ], [ -63.80859375, -13.923403897723341 ], [ -63.80859375, -14.008696370634665 ], [ -63.896484375, -14.008696370634665 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=661, y=1104, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.80859375, -14.093957177836227 ], [ -63.80859375, -13.923403897723341 ], [ -63.6328125, -13.923403897723341 ], [ -63.6328125, -14.093957177836227 ], [ -63.80859375, -14.093957177836227 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1323, y=2210, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.720703125, -14.179186142354176 ], [ -63.720703125, -14.093957177836227 ], [ -63.6328125, -14.093957177836227 ], [ -63.6328125, -14.179186142354176 ], [ -63.720703125, -14.179186142354176 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=331, y=552, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.6328125, -14.264383087562646 ], [ -63.6328125, -13.923403897723341 ], [ -63.28125, -13.923403897723341 ], [ -63.28125, -14.264383087562646 ], [ -63.6328125, -14.264383087562646 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1325, y=2212, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.544921875, -14.349547837185369 ], [ -63.544921875, -14.264383087562646 ], [ -63.45703125, -14.264383087562646 ], [ -63.45703125, -14.349547837185369 ], [ -63.544921875, -14.349547837185369 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=663, y=1106, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.45703125, -14.434680215297277 ], [ -63.45703125, -14.264383087562646 ], [ -63.28125, -14.264383087562646 ], [ -63.28125, -14.434680215297277 ], [ -63.45703125, -14.434680215297277 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1327, y=2214, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.369140625, -14.519780046326085 ], [ -63.369140625, -14.434680215297277 ], [ -63.28125, -14.434680215297277 ], [ -63.28125, -14.519780046326085 ], [ -63.369140625, -14.519780046326085 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=166, y=276, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.28125, -14.604847155053898 ], [ -63.28125, -13.923403897723341 ], [ -62.578125, -13.923403897723341 ], [ -62.578125, -14.604847155053898 ], [ -63.28125, -14.604847155053898 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=167, y=276, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.578125, -14.604847155053898 ], [ -62.578125, -13.923403897723341 ], [ -61.875, -13.923403897723341 ], [ -61.875, -14.604847155053898 ], [ -62.578125, -14.604847155053898 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=167, y=277, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.578125, -15.284185114076433 ], [ -62.578125, -14.604847155053898 ], [ -61.875, -14.604847155053898 ], [ -61.875, -15.284185114076433 ], [ -62.578125, -15.284185114076433 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1329, y=2216, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.193359375, -14.689881366618769 ], [ -63.193359375, -14.604847155053898 ], [ -63.10546875, -14.604847155053898 ], [ -63.10546875, -14.689881366618769 ], [ -63.193359375, -14.689881366618769 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=665, y=1108, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.10546875, -14.774882506516267 ], [ -63.10546875, -14.604847155053898 ], [ -62.9296875, -14.604847155053898 ], [ -62.9296875, -14.774882506516267 ], [ -63.10546875, -14.774882506516267 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1331, y=2218, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.017578125, -14.85985040060104 ], [ -63.017578125, -14.774882506516267 ], [ -62.9296875, -14.774882506516267 ], [ -62.9296875, -14.85985040060104 ], [ -63.017578125, -14.85985040060104 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=333, y=554, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.9296875, -14.944784875088363 ], [ -62.9296875, -14.604847155053898 ], [ -62.578125, -14.604847155053898 ], [ -62.578125, -14.944784875088363 ], [ -62.9296875, -14.944784875088363 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1333, y=2220, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.841796875, -15.029685756555674 ], [ -62.841796875, -14.944784875088363 ], [ -62.75390625, -14.944784875088363 ], [ -62.75390625, -15.029685756555674 ], [ -62.841796875, -15.029685756555674 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=667, y=1110, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.75390625, -15.114552871944106 ], [ -62.75390625, -14.944784875088363 ], [ -62.578125, -14.944784875088363 ], [ -62.578125, -15.114552871944106 ], [ -62.75390625, -15.114552871944106 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1335, y=2222, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.666015625, -15.199386048560001 ], [ -62.666015625, -15.114552871944106 ], [ -62.578125, -15.114552871944106 ], [ -62.578125, -15.199386048560001 ], [ -62.666015625, -15.199386048560001 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=167, y=278, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.578125, -15.961329081596647 ], [ -62.578125, -15.284185114076433 ], [ -61.875, -15.284185114076433 ], [ -61.875, -15.961329081596647 ], [ -62.578125, -15.961329081596647 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=167, y=279, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.578125, -16.636191878397657 ], [ -62.578125, -15.961329081596647 ], [ -61.875, -15.961329081596647 ], [ -61.875, -16.636191878397657 ], [ -62.578125, -16.636191878397657 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=21, y=34, z=6)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, -16.636191878397657 ], [ -61.875, -11.178401873711781 ], [ -56.25, -11.178401873711781 ], [ -56.25, -16.636191878397657 ], [ -61.875, -16.636191878397657 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=21, y=35, z=6)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, -21.943045533438177 ], [ -61.875, -16.636191878397657 ], [ -56.25, -16.636191878397657 ], [ -56.25, -21.943045533438177 ], [ -61.875, -21.943045533438177 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=167, y=280, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.578125, -17.308687886770024 ], [ -62.578125, -16.636191878397657 ], [ -61.875, -16.636191878397657 ], [ -61.875, -17.308687886770024 ], [ -62.578125, -17.308687886770024 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=167, y=281, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.578125, -17.978733095556169 ], [ -62.578125, -17.308687886770024 ], [ -61.875, -17.308687886770024 ], [ -61.875, -17.978733095556169 ], [ -62.578125, -17.978733095556169 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=167, y=282, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.578125, -18.646245142670605 ], [ -62.578125, -17.978733095556169 ], [ -61.875, -17.978733095556169 ], [ -61.875, -18.646245142670605 ], [ -62.578125, -18.646245142670605 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=167, y=283, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.578125, -19.31114335506464 ], [ -62.578125, -18.646245142670605 ], [ -61.875, -18.646245142670605 ], [ -61.875, -19.31114335506464 ], [ -62.578125, -19.31114335506464 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=167, y=284, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.578125, -19.973348786110602 ], [ -62.578125, -19.31114335506464 ], [ -61.875, -19.31114335506464 ], [ -61.875, -19.973348786110602 ], [ -62.578125, -19.973348786110602 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=167, y=285, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.578125, -20.632784250388017 ], [ -62.578125, -19.973348786110602 ], [ -61.875, -19.973348786110602 ], [ -61.875, -20.632784250388017 ], [ -62.578125, -20.632784250388017 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=167, y=286, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.578125, -21.289374355860421 ], [ -62.578125, -20.632784250388017 ], [ -61.875, -20.632784250388017 ], [ -61.875, -21.289374355860421 ], [ -62.578125, -21.289374355860421 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=167, y=287, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.578125, -21.943045533438177 ], [ -62.578125, -21.289374355860421 ], [ -61.875, -21.289374355860421 ], [ -61.875, -21.943045533438177 ], [ -62.578125, -21.943045533438177 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=167, y=288, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.578125, -22.59372606392931 ], [ -62.578125, -21.943045533438177 ], [ -61.875, -21.943045533438177 ], [ -61.875, -22.59372606392931 ], [ -62.578125, -22.59372606392931 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=167, y=289, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.578125, -23.241346102386139 ], [ -62.578125, -22.59372606392931 ], [ -61.875, -22.59372606392931 ], [ -61.875, -23.241346102386139 ], [ -62.578125, -23.241346102386139 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=668, y=1160, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.578125, -23.402764905407942 ], [ -62.578125, -23.241346102386139 ], [ -62.40234375, -23.241346102386139 ], [ -62.40234375, -23.402764905407942 ], [ -62.578125, -23.402764905407942 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=669, y=1160, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.40234375, -23.402764905407942 ], [ -62.40234375, -23.241346102386139 ], [ -62.2265625, -23.241346102386139 ], [ -62.2265625, -23.402764905407942 ], [ -62.40234375, -23.402764905407942 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1338, y=2322, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.40234375, -23.483400654325632 ], [ -62.40234375, -23.402764905407942 ], [ -62.314453125, -23.402764905407942 ], [ -62.314453125, -23.483400654325632 ], [ -62.40234375, -23.483400654325632 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1339, y=2322, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.314453125, -23.483400654325632 ], [ -62.314453125, -23.402764905407942 ], [ -62.2265625, -23.402764905407942 ], [ -62.2265625, -23.483400654325632 ], [ -62.314453125, -23.483400654325632 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1336, y=2322, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.578125, -23.483400654325632 ], [ -62.578125, -23.402764905407942 ], [ -62.490234375, -23.402764905407942 ], [ -62.490234375, -23.483400654325632 ], [ -62.578125, -23.483400654325632 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1337, y=2322, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.490234375, -23.483400654325632 ], [ -62.490234375, -23.402764905407942 ], [ -62.40234375, -23.402764905407942 ], [ -62.40234375, -23.483400654325632 ], [ -62.490234375, -23.483400654325632 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=670, y=1160, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.2265625, -23.402764905407942 ], [ -62.2265625, -23.241346102386139 ], [ -62.05078125, -23.241346102386139 ], [ -62.05078125, -23.402764905407942 ], [ -62.2265625, -23.402764905407942 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=671, y=1160, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.05078125, -23.402764905407942 ], [ -62.05078125, -23.241346102386139 ], [ -61.875, -23.241346102386139 ], [ -61.875, -23.402764905407942 ], [ -62.05078125, -23.402764905407942 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=168, y=288, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, -22.59372606392931 ], [ -61.875, -21.943045533438177 ], [ -61.171875, -21.943045533438177 ], [ -61.171875, -22.59372606392931 ], [ -61.875, -22.59372606392931 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=169, y=288, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.171875, -22.59372606392931 ], [ -61.171875, -21.943045533438177 ], [ -60.46875, -21.943045533438177 ], [ -60.46875, -22.59372606392931 ], [ -61.171875, -22.59372606392931 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=338, y=578, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.171875, -22.917922936146034 ], [ -61.171875, -22.59372606392931 ], [ -60.8203125, -22.59372606392931 ], [ -60.8203125, -22.917922936146034 ], [ -61.171875, -22.917922936146034 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=339, y=578, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.8203125, -22.917922936146034 ], [ -60.8203125, -22.59372606392931 ], [ -60.46875, -22.59372606392931 ], [ -60.46875, -22.917922936146034 ], [ -60.8203125, -22.917922936146034 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=678, y=1158, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.8203125, -23.079731762449878 ], [ -60.8203125, -22.917922936146034 ], [ -60.64453125, -22.917922936146034 ], [ -60.64453125, -23.079731762449878 ], [ -60.8203125, -23.079731762449878 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=679, y=1158, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.64453125, -23.079731762449878 ], [ -60.64453125, -22.917922936146034 ], [ -60.46875, -22.917922936146034 ], [ -60.46875, -23.079731762449878 ], [ -60.64453125, -23.079731762449878 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1356, y=2318, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.8203125, -23.160563309048307 ], [ -60.8203125, -23.079731762449878 ], [ -60.732421875, -23.079731762449878 ], [ -60.732421875, -23.160563309048307 ], [ -60.8203125, -23.160563309048307 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=676, y=1158, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.171875, -23.079731762449878 ], [ -61.171875, -22.917922936146034 ], [ -60.99609375, -22.917922936146034 ], [ -60.99609375, -23.079731762449878 ], [ -61.171875, -23.079731762449878 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=677, y=1158, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.99609375, -23.079731762449878 ], [ -60.99609375, -22.917922936146034 ], [ -60.8203125, -22.917922936146034 ], [ -60.8203125, -23.079731762449878 ], [ -60.99609375, -23.079731762449878 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1354, y=2318, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.99609375, -23.160563309048307 ], [ -60.99609375, -23.079731762449878 ], [ -60.908203125, -23.079731762449878 ], [ -60.908203125, -23.160563309048307 ], [ -60.99609375, -23.160563309048307 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1355, y=2318, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.908203125, -23.160563309048307 ], [ -60.908203125, -23.079731762449878 ], [ -60.8203125, -23.079731762449878 ], [ -60.8203125, -23.160563309048307 ], [ -60.908203125, -23.160563309048307 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1352, y=2318, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.171875, -23.160563309048307 ], [ -61.171875, -23.079731762449878 ], [ -61.083984375, -23.079731762449878 ], [ -61.083984375, -23.160563309048307 ], [ -61.171875, -23.160563309048307 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1353, y=2318, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.083984375, -23.160563309048307 ], [ -61.083984375, -23.079731762449878 ], [ -60.99609375, -23.079731762449878 ], [ -60.99609375, -23.160563309048307 ], [ -61.083984375, -23.160563309048307 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1352, y=2319, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.171875, -23.241346102386139 ], [ -61.171875, -23.160563309048307 ], [ -61.083984375, -23.160563309048307 ], [ -61.083984375, -23.241346102386139 ], [ -61.171875, -23.241346102386139 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=168, y=289, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, -23.241346102386139 ], [ -61.875, -22.59372606392931 ], [ -61.171875, -22.59372606392931 ], [ -61.171875, -23.241346102386139 ], [ -61.875, -23.241346102386139 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=170, y=288, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.46875, -22.59372606392931 ], [ -60.46875, -21.943045533438177 ], [ -59.765625, -21.943045533438177 ], [ -59.765625, -22.59372606392931 ], [ -60.46875, -22.59372606392931 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=171, y=288, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, -22.59372606392931 ], [ -59.765625, -21.943045533438177 ], [ -59.0625, -21.943045533438177 ], [ -59.0625, -22.59372606392931 ], [ -59.765625, -22.59372606392931 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=684, y=1156, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, -22.755920681486394 ], [ -59.765625, -22.59372606392931 ], [ -59.58984375, -22.59372606392931 ], [ -59.58984375, -22.755920681486394 ], [ -59.765625, -22.755920681486394 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=685, y=1156, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.58984375, -22.755920681486394 ], [ -59.58984375, -22.59372606392931 ], [ -59.4140625, -22.59372606392931 ], [ -59.4140625, -22.755920681486394 ], [ -59.58984375, -22.755920681486394 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1370, y=2314, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.58984375, -22.836945920943847 ], [ -59.58984375, -22.755920681486394 ], [ -59.501953125, -22.755920681486394 ], [ -59.501953125, -22.836945920943847 ], [ -59.58984375, -22.836945920943847 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1371, y=2314, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.501953125, -22.836945920943847 ], [ -59.501953125, -22.755920681486394 ], [ -59.4140625, -22.755920681486394 ], [ -59.4140625, -22.836945920943847 ], [ -59.501953125, -22.836945920943847 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=684, y=1157, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, -22.917922936146034 ], [ -59.765625, -22.755920681486394 ], [ -59.58984375, -22.755920681486394 ], [ -59.58984375, -22.917922936146034 ], [ -59.765625, -22.917922936146034 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=686, y=1156, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.4140625, -22.755920681486394 ], [ -59.4140625, -22.59372606392931 ], [ -59.23828125, -22.59372606392931 ], [ -59.23828125, -22.755920681486394 ], [ -59.4140625, -22.755920681486394 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=687, y=1156, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.23828125, -22.755920681486394 ], [ -59.23828125, -22.59372606392931 ], [ -59.0625, -22.59372606392931 ], [ -59.0625, -22.755920681486394 ], [ -59.23828125, -22.755920681486394 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1374, y=2314, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.23828125, -22.836945920943847 ], [ -59.23828125, -22.755920681486394 ], [ -59.150390625, -22.755920681486394 ], [ -59.150390625, -22.836945920943847 ], [ -59.23828125, -22.836945920943847 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1372, y=2314, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.4140625, -22.836945920943847 ], [ -59.4140625, -22.755920681486394 ], [ -59.326171875, -22.755920681486394 ], [ -59.326171875, -22.836945920943847 ], [ -59.4140625, -22.836945920943847 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1373, y=2314, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.326171875, -22.836945920943847 ], [ -59.326171875, -22.755920681486394 ], [ -59.23828125, -22.755920681486394 ], [ -59.23828125, -22.836945920943847 ], [ -59.326171875, -22.836945920943847 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=340, y=578, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.46875, -22.917922936146034 ], [ -60.46875, -22.59372606392931 ], [ -60.1171875, -22.59372606392931 ], [ -60.1171875, -22.917922936146034 ], [ -60.46875, -22.917922936146034 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=341, y=578, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.1171875, -22.917922936146034 ], [ -60.1171875, -22.59372606392931 ], [ -59.765625, -22.59372606392931 ], [ -59.765625, -22.917922936146034 ], [ -60.1171875, -22.917922936146034 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1364, y=2316, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.1171875, -22.998851594142913 ], [ -60.1171875, -22.917922936146034 ], [ -60.029296875, -22.917922936146034 ], [ -60.029296875, -22.998851594142913 ], [ -60.1171875, -22.998851594142913 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1365, y=2316, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.029296875, -22.998851594142913 ], [ -60.029296875, -22.917922936146034 ], [ -59.94140625, -22.917922936146034 ], [ -59.94140625, -22.998851594142913 ], [ -60.029296875, -22.998851594142913 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=680, y=1158, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.46875, -23.079731762449878 ], [ -60.46875, -22.917922936146034 ], [ -60.29296875, -22.917922936146034 ], [ -60.29296875, -23.079731762449878 ], [ -60.46875, -23.079731762449878 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1362, y=2316, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.29296875, -22.998851594142913 ], [ -60.29296875, -22.917922936146034 ], [ -60.205078125, -22.917922936146034 ], [ -60.205078125, -22.998851594142913 ], [ -60.29296875, -22.998851594142913 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1363, y=2316, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.205078125, -22.998851594142913 ], [ -60.205078125, -22.917922936146034 ], [ -60.1171875, -22.917922936146034 ], [ -60.1171875, -22.998851594142913 ], [ -60.205078125, -22.998851594142913 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1344, y=2320, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875, -23.322080011378432 ], [ -61.875, -23.241346102386139 ], [ -61.787109375, -23.241346102386139 ], [ -61.787109375, -23.322080011378432 ], [ -61.875, -23.322080011378432 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1345, y=2320, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.787109375, -23.322080011378432 ], [ -61.787109375, -23.241346102386139 ], [ -61.69921875, -23.241346102386139 ], [ -61.69921875, -23.322080011378432 ], [ -61.787109375, -23.322080011378432 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1346, y=2320, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.69921875, -23.322080011378432 ], [ -61.69921875, -23.241346102386139 ], [ -61.611328125, -23.241346102386139 ], [ -61.611328125, -23.322080011378432 ], [ -61.69921875, -23.322080011378432 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1347, y=2320, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.611328125, -23.322080011378432 ], [ -61.611328125, -23.241346102386139 ], [ -61.5234375, -23.241346102386139 ], [ -61.5234375, -23.322080011378432 ], [ -61.611328125, -23.322080011378432 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1348, y=2320, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.5234375, -23.322080011378432 ], [ -61.5234375, -23.241346102386139 ], [ -61.435546875, -23.241346102386139 ], [ -61.435546875, -23.322080011378432 ], [ -61.5234375, -23.322080011378432 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=172, y=288, z=9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.0625, -22.59372606392931 ], [ -59.0625, -21.943045533438177 ], [ -58.359375, -21.943045533438177 ], [ -58.359375, -22.59372606392931 ], [ -59.0625, -22.59372606392931 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=346, y=576, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.359375, -22.268764039073968 ], [ -58.359375, -21.943045533438177 ], [ -58.0078125, -21.943045533438177 ], [ -58.0078125, -22.268764039073968 ], [ -58.359375, -22.268764039073968 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=347, y=576, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.0078125, -22.268764039073968 ], [ -58.0078125, -21.943045533438177 ], [ -57.65625, -21.943045533438177 ], [ -57.65625, -22.268764039073968 ], [ -58.0078125, -22.268764039073968 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=694, y=1154, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.0078125, -22.431340156360612 ], [ -58.0078125, -22.268764039073968 ], [ -57.83203125, -22.268764039073968 ], [ -57.83203125, -22.431340156360612 ], [ -58.0078125, -22.431340156360612 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=695, y=1154, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.83203125, -22.431340156360612 ], [ -57.83203125, -22.268764039073968 ], [ -57.65625, -22.268764039073968 ], [ -57.65625, -22.431340156360612 ], [ -57.83203125, -22.431340156360612 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1390, y=2310, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.83203125, -22.512556954051441 ], [ -57.83203125, -22.431340156360612 ], [ -57.744140625, -22.431340156360612 ], [ -57.744140625, -22.512556954051441 ], [ -57.83203125, -22.512556954051441 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1391, y=2310, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.744140625, -22.512556954051441 ], [ -57.744140625, -22.431340156360612 ], [ -57.65625, -22.431340156360612 ], [ -57.65625, -22.512556954051441 ], [ -57.744140625, -22.512556954051441 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1388, y=2310, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.0078125, -22.512556954051441 ], [ -58.0078125, -22.431340156360612 ], [ -57.919921875, -22.431340156360612 ], [ -57.919921875, -22.512556954051441 ], [ -58.0078125, -22.512556954051441 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1389, y=2310, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.919921875, -22.512556954051441 ], [ -57.919921875, -22.431340156360612 ], [ -57.83203125, -22.431340156360612 ], [ -57.83203125, -22.512556954051441 ], [ -57.919921875, -22.512556954051441 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=346, y=577, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.359375, -22.59372606392931 ], [ -58.359375, -22.268764039073968 ], [ -58.0078125, -22.268764039073968 ], [ -58.0078125, -22.59372606392931 ], [ -58.359375, -22.59372606392931 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=688, y=1156, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.0625, -22.755920681486394 ], [ -59.0625, -22.59372606392931 ], [ -58.88671875, -22.59372606392931 ], [ -58.88671875, -22.755920681486394 ], [ -59.0625, -22.755920681486394 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1378, y=2312, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.88671875, -22.674847351188518 ], [ -58.88671875, -22.59372606392931 ], [ -58.798828125, -22.59372606392931 ], [ -58.798828125, -22.674847351188518 ], [ -58.88671875, -22.674847351188518 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1379, y=2312, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.798828125, -22.674847351188518 ], [ -58.798828125, -22.59372606392931 ], [ -58.7109375, -22.59372606392931 ], [ -58.7109375, -22.674847351188518 ], [ -58.798828125, -22.674847351188518 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1378, y=2313, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.88671875, -22.755920681486394 ], [ -58.88671875, -22.674847351188518 ], [ -58.798828125, -22.674847351188518 ], [ -58.798828125, -22.755920681486394 ], [ -58.88671875, -22.755920681486394 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1380, y=2312, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.7109375, -22.674847351188518 ], [ -58.7109375, -22.59372606392931 ], [ -58.623046875, -22.59372606392931 ], [ -58.623046875, -22.674847351188518 ], [ -58.7109375, -22.674847351188518 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1381, y=2312, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.623046875, -22.674847351188518 ], [ -58.623046875, -22.59372606392931 ], [ -58.53515625, -22.59372606392931 ], [ -58.53515625, -22.674847351188518 ], [ -58.623046875, -22.674847351188518 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1382, y=2312, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.53515625, -22.674847351188518 ], [ -58.53515625, -22.59372606392931 ], [ -58.447265625, -22.59372606392931 ], [ -58.447265625, -22.674847351188518 ], [ -58.53515625, -22.674847351188518 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=348, y=576, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.65625, -22.268764039073968 ], [ -57.65625, -21.943045533438177 ], [ -57.3046875, -21.943045533438177 ], [ -57.3046875, -22.268764039073968 ], [ -57.65625, -22.268764039073968 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=349, y=576, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.3046875, -22.268764039073968 ], [ -57.3046875, -21.943045533438177 ], [ -56.953125, -21.943045533438177 ], [ -56.953125, -22.268764039073968 ], [ -57.3046875, -22.268764039073968 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1396, y=2308, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.3046875, -22.350075806124856 ], [ -57.3046875, -22.268764039073968 ], [ -57.216796875, -22.268764039073968 ], [ -57.216796875, -22.350075806124856 ], [ -57.3046875, -22.350075806124856 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1397, y=2308, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.216796875, -22.350075806124856 ], [ -57.216796875, -22.268764039073968 ], [ -57.12890625, -22.268764039073968 ], [ -57.12890625, -22.350075806124856 ], [ -57.216796875, -22.350075806124856 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1396, y=2309, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.3046875, -22.431340156360612 ], [ -57.3046875, -22.350075806124856 ], [ -57.216796875, -22.350075806124856 ], [ -57.216796875, -22.431340156360612 ], [ -57.3046875, -22.431340156360612 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1398, y=2308, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.12890625, -22.350075806124856 ], [ -57.12890625, -22.268764039073968 ], [ -57.041015625, -22.268764039073968 ], [ -57.041015625, -22.350075806124856 ], [ -57.12890625, -22.350075806124856 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1399, y=2308, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.041015625, -22.350075806124856 ], [ -57.041015625, -22.268764039073968 ], [ -56.953125, -22.268764039073968 ], [ -56.953125, -22.350075806124856 ], [ -57.041015625, -22.350075806124856 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=696, y=1154, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.65625, -22.431340156360612 ], [ -57.65625, -22.268764039073968 ], [ -57.48046875, -22.268764039073968 ], [ -57.48046875, -22.431340156360612 ], [ -57.65625, -22.431340156360612 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=697, y=1154, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.48046875, -22.431340156360612 ], [ -57.48046875, -22.268764039073968 ], [ -57.3046875, -22.268764039073968 ], [ -57.3046875, -22.431340156360612 ], [ -57.48046875, -22.431340156360612 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=350, y=576, z=10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, -22.268764039073968 ], [ -56.953125, -21.943045533438177 ], [ -56.6015625, -21.943045533438177 ], [ -56.6015625, -22.268764039073968 ], [ -56.953125, -22.268764039073968 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=702, y=1152, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.6015625, -22.105998799750559 ], [ -56.6015625, -21.943045533438177 ], [ -56.42578125, -21.943045533438177 ], [ -56.42578125, -22.105998799750559 ], [ -56.6015625, -22.105998799750559 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=703, y=1152, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.42578125, -22.105998799750559 ], [ -56.42578125, -21.943045533438177 ], [ -56.25, -21.943045533438177 ], [ -56.25, -22.105998799750559 ], [ -56.42578125, -22.105998799750559 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1406, y=2306, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.42578125, -22.187404991398775 ], [ -56.42578125, -22.105998799750559 ], [ -56.337890625, -22.105998799750559 ], [ -56.337890625, -22.187404991398775 ], [ -56.42578125, -22.187404991398775 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1407, y=2306, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.337890625, -22.187404991398775 ], [ -56.337890625, -22.105998799750559 ], [ -56.25, -22.105998799750559 ], [ -56.25, -22.187404991398775 ], [ -56.337890625, -22.187404991398775 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1404, y=2306, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.6015625, -22.187404991398775 ], [ -56.6015625, -22.105998799750559 ], [ -56.513671875, -22.105998799750559 ], [ -56.513671875, -22.187404991398775 ], [ -56.6015625, -22.187404991398775 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1405, y=2306, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.513671875, -22.187404991398775 ], [ -56.513671875, -22.105998799750559 ], [ -56.42578125, -22.105998799750559 ], [ -56.42578125, -22.187404991398775 ], [ -56.513671875, -22.187404991398775 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1404, y=2307, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.6015625, -22.268764039073968 ], [ -56.6015625, -22.187404991398775 ], [ -56.513671875, -22.187404991398775 ], [ -56.513671875, -22.268764039073968 ], [ -56.6015625, -22.268764039073968 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1400, y=2308, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, -22.350075806124856 ], [ -56.953125, -22.268764039073968 ], [ -56.865234375, -22.268764039073968 ], [ -56.865234375, -22.350075806124856 ], [ -56.953125, -22.350075806124856 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=704, y=1152, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, -22.105998799750559 ], [ -56.25, -21.943045533438177 ], [ -56.07421875, -21.943045533438177 ], [ -56.07421875, -22.105998799750559 ], [ -56.25, -22.105998799750559 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=705, y=1152, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.07421875, -22.105998799750559 ], [ -56.07421875, -21.943045533438177 ], [ -55.8984375, -21.943045533438177 ], [ -55.8984375, -22.105998799750559 ], [ -56.07421875, -22.105998799750559 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1408, y=2306, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.25, -22.187404991398775 ], [ -56.25, -22.105998799750559 ], [ -56.162109375, -22.105998799750559 ], [ -56.162109375, -22.187404991398775 ], [ -56.25, -22.187404991398775 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1409, y=2306, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.162109375, -22.187404991398775 ], [ -56.162109375, -22.105998799750559 ], [ -56.07421875, -22.105998799750559 ], [ -56.07421875, -22.187404991398775 ], [ -56.162109375, -22.187404991398775 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=706, y=1152, z=11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.8984375, -22.105998799750559 ], [ -55.8984375, -21.943045533438177 ], [ -55.72265625, -21.943045533438177 ], [ -55.72265625, -22.105998799750559 ], [ -55.8984375, -22.105998799750559 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1414, y=2304, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.72265625, -22.02454560124033 ], [ -55.72265625, -21.943045533438177 ], [ -55.634765625, -21.943045533438177 ], [ -55.634765625, -22.02454560124033 ], [ -55.72265625, -22.02454560124033 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1415, y=2304, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.634765625, -22.02454560124033 ], [ -55.634765625, -21.943045533438177 ], [ -55.546875, -21.943045533438177 ], [ -55.546875, -22.02454560124033 ], [ -55.634765625, -22.02454560124033 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1416, y=2304, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.546875, -22.02454560124033 ], [ -55.546875, -21.943045533438177 ], [ -55.458984375, -21.943045533438177 ], [ -55.458984375, -22.02454560124033 ], [ -55.546875, -22.02454560124033 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1417, y=2304, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.458984375, -22.02454560124033 ], [ -55.458984375, -21.943045533438177 ], [ -55.37109375, -21.943045533438177 ], [ -55.37109375, -22.02454560124033 ], [ -55.458984375, -22.02454560124033 ] ] ] } },
{ "type": "Feature", "properties": { "title": "XYZ tile Tile(x=1418, y=2304, z=12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.37109375, -22.02454560124033 ], [ -55.37109375, -21.943045533438177 ], [ -55.283203125, -21.943045533438177 ], [ -55.283203125, -22.02454560124033 ], [ -55.37109375, -22.02454560124033 ] ] ] } }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment