Git Product home page Git Product logo

Comments (5)

vinitkumar avatar vinitkumar commented on June 15, 2024

Hi @gismcieri, took the liberty of refactoring your code. Please take a look below:

I used requests because it is pretty simple and standard to use it for doing HTTP requests than using urllib.
Also, if you will notice, I used Json2xml.fromstring instead of Json2xml.fromurl as I already got the response in String. fromurl is used when you are using Json2xml to directly GET the URL and convert to XML.

I have changed the filename to Unix style, since I am running code on Mac, please change it as per your preference accordingly. Also, one small tip. Always close the file while opening and with open('/tmp/temp.json', 'w') as f: is kind of the standard practice.

import json
import urllib.parse as urlparse
import requests

from src.json2xml import Json2xml

inPts = {'geometryType': 'esriGeometryPoint',
         'spatialReference': {'wkid': 54003},
         'features': [{'geometry': {'x': -13308192.1956127, 'y': 4221903.58555983}}]}

dist = {'distance': 8.5, 'units': 'esriMiles'}

data = {'Input_Observation_Point': inPts,
        'Viewshed_Distance': dist,
        'f': 'pjson'}

params = urlparse.urlencode(data)
params = params.encode('ascii')  # ('utf-8')
URL = 'http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Elevation/ESRI_Elevation_World/GPServer/Viewshed/execute'

response = requests.get(URL, params)

result = response.json()

with open('/tmp/temp.json', 'w') as f:
    f.write(json.dumps(result))
f.close()

data = Json2xml.fromstring(json.dumps(result)).data
data_object = Json2xml(data)
xml_output = data_object.json2xml()

with open('/tmp/result.xml', 'w') as f:
    f.write(str(xml_output))
f.close()

Hope this helps!

Cheers 🍻

from json2xml.

vinitkumar avatar vinitkumar commented on June 15, 2024

temp.json

```json { "results": [ { "paramName": "Viewshed_Result", "dataType": "GPFeatureRecordSetLayer", "value": { "geometryType": "esriGeometryPolygon", "spatialReference": { "wkid": 54003 }, "features": [ { "attributes": { "OBJECTID": 1, "Id": 1, "grid_code": 1, "Shape_Length": 449.34082835912704, "Shape_Area": 12619.198751904154 }, "geometry": { "rings": [ [ [ -13308054.416455522, 4232713.209385097 ], [ -13308166.751662616, 4232713.209385097 ], [ -13308166.751662616, 4232825.544592183 ], [ -13308054.416455522, 4232825.544592183 ], [ -13308054.416455522, 4232713.209385097 ] ] ] } }, { "attributes": { "OBJECTID": 2, "Id": 2, "grid_code": 1, "Shape_Length": 449.3408283479512, "Shape_Area": 12619.198751276432 }, "geometry": { "rings": [ [ [ -13310301.120597305, 4230354.1700362265 ], [ -13310413.455804393, 4230354.1700362265 ], [ -13310413.455804393, 4230466.505243313 ], [ -13310301.120597305, 4230466.505243313 ], [ -13310301.120597305, 4230354.1700362265 ] ] ] } }, { "attributes": { "OBJECTID": 3, "Id": 3, "grid_code": 1, "Shape_Length": 449.34082835912704, "Shape_Area": 12619.198751904154 }, "geometry": { "rings": [ [ [ -13313671.17680997, 4230241.834829137 ], [ -13313783.51201706, 4230241.834829137 ], [ -13313783.51201706, 4230354.1700362265 ], [ -13313671.17680997, 4230354.1700362265 ], [ -13313671.17680997, 4230241.834829137 ] ] ] } }, { "attributes": { "OBJECTID": 4, "Id": 4, "grid_code": 1, "Shape_Length": 449.34082835540175, "Shape_Area": 12619.198751694914 }, "geometry": { "rings": [ [ [ -13310188.785390213, 4229343.153172426 ], [ -13310301.120597305, 4229343.153172426 ], [ -13310301.120597305, 4229455.488379512 ], [ -13310188.785390213, 4229455.488379512 ], [ -13310188.785390213, 4229343.153172426 ] ] ] } }, { "attributes": { "OBJECTID": 5, "Id": 5, "grid_code": 1, "Shape_Length": 449.34082835167646, "Shape_Area": 12619.198751485674 }, "geometry": { "rings": [ [ [ -13308953.098112237, 4229230.817965336 ], [ -13309065.433319323, 4229230.817965336 ], [ -13309065.433319323, 4229343.153172426 ], [ -13308953.098112237, 4229343.153172426 ], [ -13308953.098112237, 4229230.817965336 ] ] ] } }, { "attributes": { "OBJECTID": 6, "Id": 6, "grid_code": 1, "Shape_Length": 449.3408283665776, "Shape_Area": 12619.198752322636 }, "geometry": { "rings": [ [ [ -13309851.779768948, 4229006.147551157 ], [ -13309964.114976037, 4229006.147551157 ], [ -13309964.114976037, 4229118.48275825 ], [ -13309851.779768948, 4229118.48275825 ], [ -13309851.779768948, 4229006.147551157 ] ] ] } }, { "attributes": { "OBJECTID": 7, "Id": 7, "grid_code": 1, "Shape_Length": 449.3408283367753, "Shape_Area": 12619.198750648711 }, "geometry": { "rings": [ [ [ -13307942.081248436, 4228893.812344074 ], [ -13308054.416455522, 4228893.812344074 ], [ -13308054.416455522, 4229006.147551157 ], [ -13307942.081248436, 4229006.147551157 ], [ -13307942.081248436, 4228893.812344074 ] ] ] } }, { "attributes": { "OBJECTID": 8, "Id": 8, "grid_code": 1, "Shape_Length": 449.3408283703029, "Shape_Area": 12619.198752531876 }, "geometry": { "rings": [ [ [ -13309402.438940592, 4228781.477136977 ], [ -13309514.77414768, 4228781.477136977 ], [ -13309514.77414768, 4228893.812344074 ], [ -13309402.438940592, 4228893.812344074 ], [ -13309402.438940592, 4228781.477136977 ] ] ] } }, { "attributes": { "OBJECTID": 9, "Id": 9, "grid_code": 1, "Shape_Length": 449.34082835540175, "Shape_Area": 12619.198751694914 }, "geometry": { "rings": [ [ [ -13309177.768526413, 4228107.4658944495 ], [ -13309290.103733504, 4228107.4658944495 ], [ -13309290.103733504, 4228219.801101536 ], [ -13309177.768526413, 4228219.801101536 ], [ -13309177.768526413, 4228107.4658944495 ] ] ] } }, { "attributes": { "OBJECTID": 10, "Id": 10, "grid_code": 1, "Shape_Length": 449.34082835912704, "Shape_Area": 12619.198751904154 }, "geometry": { "rings": [ [ [ -13309065.433319323, 4227545.789859001 ], [ -13309177.768526413, 4227545.789859001 ], [ -13309177.768526413, 4227658.12506609 ], [ -13309065.433319323, 4227658.12506609 ], [ -13309065.433319323, 4227545.789859001 ] ] ] } }, { "attributes": { "OBJECTID": 11, "Id": 11, "grid_code": 1, "Shape_Length": 449.34082835912704, "Shape_Area": 12619.198751904154 }, "geometry": { "rings": [ [ [ -13308953.098112237, 4227433.454651911 ], [ -13308953.098112237, 4227545.789859001 ], [ -13308840.762905147, 4227545.789859001 ], [ -13308840.762905147, 4227433.454651911 ], [ -13308953.098112237, 4227433.454651911 ] ] ] } }, { "attributes": { "OBJECTID": 12, "Id": 12, "grid_code": 1, "Shape_Length": 674.0112425163388, "Shape_Area": 25238.397501715903 }, "geometry": { "rings": [ [ [ -13313446.506395794, 4227321.1194448285 ], [ -13313671.17680997, 4227321.1194448285 ], [ -13313671.17680997, 4227433.454651911 ], [ -13313446.506395794, 4227433.454651911 ], [ -13313446.506395794, 4227321.1194448285 ] ] ] } }, { "attributes": { "OBJECTID": 13, "Id": 13, "grid_code": 1, "Shape_Length": 449.3408283442259, "Shape_Area": 12619.198751067192 }, "geometry": { "rings": [ [ [ -13313221.835981619, 4227321.1194448285 ], [ -13313334.171188708, 4227321.1194448285 ], [ -13313334.171188708, 4227433.454651911 ], [ -13313221.835981619, 4227433.454651911 ], [ -13313221.835981619, 4227321.1194448285 ] ] ] } }, { "attributes": { "OBJECTID": 14, "Id": 14, "grid_code": 1, "Shape_Length": 449.3408283367753, "Shape_Area": 12619.198750648711 }, "geometry": { "rings": [ [ [ -13308953.098112237, 4227433.454651911 ], [ -13308953.098112237, 4227321.1194448285 ], [ -13309065.433319323, 4227321.1194448285 ], [ -13309065.433319323, 4227433.454651911 ], [ -13308953.098112237, 4227433.454651911 ] ] ] } }, { "attributes": { "OBJECTID": 15, "Id": 15, "grid_code": 1, "Shape_Length": 449.3408283479512, "Shape_Area": 12619.198751276432 }, "geometry": { "rings": [ [ [ -13313221.835981619, 4227096.449030653 ], [ -13313221.835981619, 4227208.784237735 ], [ -13313109.500774527, 4227208.784237735 ], [ -13313109.500774527, 4227096.449030653 ], [ -13313221.835981619, 4227096.449030653 ] ] ] } }, { "attributes": { "OBJECTID": 16, "Id": 16, "grid_code": 1, "Shape_Length": 449.3408283442259, "Shape_Area": 12619.198751067192 }, "geometry": { "rings": [ [ [ -13309065.433319323, 4227096.449030653 ], [ -13309177.768526413, 4227096.449030653 ], [ -13309177.768526413, 4227208.784237735 ], [ -13309065.433319323, 4227208.784237735 ], [ -13309065.433319323, 4227096.449030653 ] ] ] } }, { "attributes": { "OBJECTID": 17, "Id": 17, "grid_code": 1, "Shape_Length": 1123.352070890367, "Shape_Area": 50476.79500887206 }, "geometry": { "rings": [ [ [ -13313221.835981619, 4227096.449030653 ], [ -13313221.835981619, 4226984.113823555 ], [ -13313558.841602884, 4226984.113823555 ], [ -13313558.841602884, 4227208.784237735 ], [ -13313446.506395794, 4227208.784237735 ], [ -13313446.506395794, 4227096.449030653 ], [ -13313221.835981619, 4227096.449030653 ] ] ] } }, { "attributes": { "OBJECTID": 18, "Id": 18, "grid_code": 1, "Shape_Length": 449.3408283703029, "Shape_Area": 12619.198752531876 }, "geometry": { "rings": [ [ [ -13311873.81349655, 4226984.113823555 ], [ -13311986.148703638, 4226984.113823555 ], [ -13311986.148703638, 4227096.449030653 ], [ -13311873.81349655, 4227096.449030653 ], [ -13311873.81349655, 4226984.113823555 ] ] ] } }, { "attributes": { "OBJECTID": 19, "Id": 19, "grid_code": 1, "Shape_Length": 449.34082835167646, "Shape_Area": 12619.198751485674 }, "geometry": { "rings": [ [ [ -13313446.506395794, 4226759.44340938 ], [ -13313558.841602884, 4226759.44340938 ], [ -13313558.841602884, 4226871.778616466 ], [ -13313446.506395794, 4226871.778616466 ], [ -13313446.506395794, 4226759.44340938 ] ] ] } }, { "attributes": { "OBJECTID": 20, "Id": 20, "grid_code": 1, "Shape_Length": 1123.3520708866417, "Shape_Area": 50476.79500657041 }, "geometry": { "rings": [ [ [ -13313446.506395794, 4226759.44340938 ], [ -13313334.171188708, 4226759.44340938 ], [ -13313334.171188708, 4226871.778616466 ], [ -13313109.500774527, 4226871.778616466 ], [ -13313109.500774527, 4226759.44340938 ], [ -13313221.835981619, 4226759.44340938 ], [ -13313221.835981619, 4226647.10820229 ], [ -13313446.506395794, 4226647.10820229 ], [ -13313446.506395794, 4226759.44340938 ] ] ] } }, { "attributes": { "OBJECTID": 21, "Id": 21, "grid_code": 1, "Shape_Length": 674.0112425275147, "Shape_Area": 25238.397502971347 }, "geometry": { "rings": [ [ [ -13309290.103733504, 4226647.10820229 ], [ -13309402.438940592, 4226647.10820229 ], [ -13309402.438940592, 4226871.778616466 ], [ -13309290.103733504, 4226871.778616466 ], [ -13309290.103733504, 4226647.10820229 ] ] ] } }, { "attributes": { "OBJECTID": 22, "Id": 22, "grid_code": 1, "Shape_Length": 449.3408283442259, "Shape_Area": 12619.198751067192 }, "geometry": { "rings": [ [ [ -13313558.841602884, 4226534.772995204 ], [ -13313671.17680997, 4226534.772995204 ], [ -13313671.17680997, 4226647.10820229 ], [ -13313558.841602884, 4226647.10820229 ], [ -13313558.841602884, 4226534.772995204 ] ] ] } }, { "attributes": { "OBJECTID": 23, "Id": 23, "grid_code": 1, "Shape_Length": 449.34082835912704, "Shape_Area": 12619.198751904154 }, "geometry": { "rings": [ [ [ -13313334.171188708, 4226422.43778811 ], [ -13313446.506395794, 4226422.43778811 ], [ -13313446.506395794, 4226534.772995204 ], [ -13313334.171188708, 4226534.772995204 ], [ -13313334.171188708, 4226422.43778811 ] ] ] } }, { "attributes": { "OBJECTID": 24, "Id": 24, "grid_code": 1, "Shape_Length": 449.3408283479512, "Shape_Area": 12619.198751276432 }, "geometry": { "rings": [ [ [ -13313109.500774527, 4226310.102581028 ], [ -13313221.835981619, 4226310.102581028 ], [ -13313221.835981619, 4226422.43778811 ], [ -13313109.500774527, 4226422.43778811 ], [ -13313109.500774527, 4226310.102581028 ] ] ] } }, { "attributes": { "OBJECTID": 25, "Id": 25, "grid_code": 1, "Shape_Length": 449.3408283367753, "Shape_Area": 12619.198750648711 }, "geometry": { "rings": [ [ [ -13308728.42769806, 4226310.102581028 ], [ -13308840.762905147, 4226310.102581028 ], [ -13308840.762905147, 4226422.43778811 ], [ -13308728.42769806, 4226422.43778811 ], [ -13308728.42769806, 4226310.102581028 ] ] ] } }, { "attributes": { "OBJECTID": 26, "Id": 26, "grid_code": 1, "Shape_Length": 449.3408283367753, "Shape_Area": 12619.198750648711 }, "geometry": { "rings": [ [ [ -13309739.444561861, 4226085.432166852 ], [ -13309851.779768948, 4226085.432166852 ], [ -13309851.779768948, 4226197.767373934 ], [ -13309739.444561861, 4226197.767373934 ], [ -13309739.444561861, 4226085.432166852 ] ] ] } }, { "attributes": { "OBJECTID": 27, "Id": 27, "grid_code": 1, "Shape_Length": 674.0112425386906, "Shape_Area": 25238.39750422679 }, "geometry": { "rings": [ [ [ -13308728.42769806, 4226310.102581028 ], [ -13308616.092490967, 4226310.102581028 ], [ -13308616.092490967, 4226085.432166852 ], [ -13308728.42769806, 4226085.432166852 ], [ -13308728.42769806, 4226310.102581028 ] ] ] } }, { "attributes": { "OBJECTID": 28, "Id": 28, "grid_code": 1, "Shape_Length": 449.3408283740282, "Shape_Area": 12619.198752741117 }, "geometry": { "rings": [ [ [ -13308840.762905147, 4225973.096959755 ], [ -13308953.098112237, 4225973.096959755 ], [ -13308953.098112237, 4226085.432166852 ], [ -13308840.762905147, 4226085.432166852 ], [ -13308840.762905147, 4225973.096959755 ] ] ] } }, { "attributes": { "OBJECTID": 29, "Id": 29, "grid_code": 1, "Shape_Length": 449.34082835912704, "Shape_Area": 12619.198751904154 }, "geometry": { "rings": [ [ [ -13311312.137461107, 4225636.0913384855 ], [ -13311424.472668193, 4225636.0913384855 ], [ -13311424.472668193, 4225748.426545579 ], [ -13311312.137461107, 4225748.426545579 ], [ -13311312.137461107, 4225636.0913384855 ] ] ] } }, { "attributes": { "OBJECTID": 30, "Id": 30, "grid_code": 1, "Shape_Length": 449.34082835167646, "Shape_Area": 12619.198751485674 }, "geometry": { "rings": [ [ [ -13308054.416455522, 4225523.756131403 ], [ -13308166.751662616, 4225523.756131403 ], [ -13308166.751662616, 4225636.0913384855 ], [ -13308054.416455522, 4225636.0913384855 ], [ -13308054.416455522, 4225523.756131403 ] ] ] } }, { "attributes": { "OBJECTID": 31, "Id": 31, "grid_code": 1, "Shape_Length": 449.34082836285233, "Shape_Area": 12619.198752113394 }, "geometry": { "rings": [ [ [ -13311761.478289463, 4225186.750510134 ], [ -13311873.81349655, 4225186.750510134 ], [ -13311873.81349655, 4225299.085717227 ], [ -13311761.478289463, 4225299.085717227 ], [ -13311761.478289463, 4225186.750510134 ] ] ] } }, { "attributes": { "OBJECTID": 32, "Id": 32, "grid_code": 1, "Shape_Length": 449.3408283703029, "Shape_Area": 12619.198752531876 }, "geometry": { "rings": [ [ [ -13311536.807875283, 4225186.750510134 ], [ -13311649.143082375, 4225186.750510134 ], [ -13311649.143082375, 4225299.085717227 ], [ -13311536.807875283, 4225299.085717227 ], [ -13311536.807875283, 4225186.750510134 ] ] ] } }, { "attributes": { "OBJECTID": 33, "Id": 33, "grid_code": 1, "Shape_Length": 449.34082833305, "Shape_Area": 12619.19875043947 }, "geometry": { "rings": [ [ [ -13308166.751662616, 4225074.415303055 ], [ -13308279.086869704, 4225074.415303055 ], [ -13308279.086869704, 4225186.750510134 ], [ -13308166.751662616, 4225186.750510134 ], [ -13308166.751662616, 4225074.415303055 ] ] ] } }, { "attributes": { "OBJECTID": 34, "Id": 34, "grid_code": 1, "Shape_Length": 674.0112425535917, "Shape_Area": 25238.397505900713 }, "geometry": { "rings": [ [ [ -13308953.098112237, 4224962.080095954 ], [ -13309177.768526413, 4224962.080095954 ], [ -13309177.768526413, 4225074.415303055 ], [ -13308953.098112237, 4225074.415303055 ], [ -13308953.098112237, 4224962.080095954 ] ] ] } }, { "attributes": { "OBJECTID": 35, "Id": 35, "grid_code": 1, "Shape_Length": 449.34082835167646, "Shape_Area": 12619.198751485674 }, "geometry": { "rings": [ [ [ -13308840.762905147, 4224849.744888864 ], [ -13308840.762905147, 4224962.080095954 ], [ -13308728.42769806, 4224962.080095954 ], [ -13308728.42769806, 4224849.744888864 ], [ -13308840.762905147, 4224849.744888864 ] ] ] } }, { "attributes": { "OBJECTID": 36, "Id": 36, "grid_code": 1, "Shape_Length": 449.34082835167646, "Shape_Area": 12619.198751485674 }, "geometry": { "rings": [ [ [ -13308840.762905147, 4224849.744888864 ], [ -13308840.762905147, 4224737.409681778 ], [ -13308953.098112237, 4224737.409681778 ], [ -13308953.098112237, 4224849.744888864 ], [ -13308840.762905147, 4224849.744888864 ] ] ] } }, { "attributes": { "OBJECTID": 37, "Id": 37, "grid_code": 1, "Shape_Length": 674.0112425498664, "Shape_Area": 25238.39750485451 }, "geometry": { "rings": [ [ [ -13308503.75728388, 4224625.074474685 ], [ -13308728.42769806, 4224625.074474685 ], [ -13308728.42769806, 4224737.409681778 ], [ -13308503.75728388, 4224737.409681778 ], [ -13308503.75728388, 4224625.074474685 ] ] ] } }, { "attributes": { "OBJECTID": 38, "Id": 38, "grid_code": 1, "Shape_Length": 449.3408283740282, "Shape_Area": 12619.198752741117 }, "geometry": { "rings": [ [ [ -13311199.802254014, 4224400.404060509 ], [ -13311312.137461107, 4224400.404060509 ], [ -13311312.137461107, 4224512.739267603 ], [ -13311199.802254014, 4224512.739267603 ], [ -13311199.802254014, 4224400.404060509 ] ] ] } }, { "attributes": { "OBJECTID": 39, "Id": 39, "grid_code": 1, "Shape_Length": 898.6816567070782, "Shape_Area": 37857.59625466626 }, "geometry": { "rings": [ [ [ -13308503.75728388, 4224625.074474685 ], [ -13308391.422076792, 4224625.074474685 ], [ -13308391.422076792, 4224288.068853419 ], [ -13308503.75728388, 4224288.068853419 ], [ -13308503.75728388, 4224625.074474685 ] ] ] } }, { "attributes": { "OBJECTID": 40, "Id": 40, "grid_code": 1, "Shape_Length": 898.6816567108035, "Shape_Area": 37857.59625508474 }, "geometry": { "rings": [ [ [ -13310188.785390213, 4224175.733646333 ], [ -13310413.455804393, 4224175.733646333 ], [ -13310413.455804393, 4224288.068853419 ], [ -13310301.120597305, 4224288.068853419 ], [ -13310301.120597305, 4224400.404060509 ], [ -13310188.785390213, 4224400.404060509 ], [ -13310188.785390213, 4224175.733646333 ] ] ] } }, { "attributes": { "OBJECTID": 41, "Id": 41, "grid_code": 1, "Shape_Length": 674.0112425424159, "Shape_Area": 25238.39750401755 }, "geometry": { "rings": [ [ [ -13310525.79101148, 4224063.398439243 ], [ -13310750.461425662, 4224063.398439243 ], [ -13310750.461425662, 4224175.733646333 ], [ -13310525.79101148, 4224175.733646333 ], [ -13310525.79101148, 4224063.398439243 ] ] ] } }, { "attributes": { "OBJECTID": 42, "Id": 42, "grid_code": 1, "Shape_Length": 449.3408283479512, "Shape_Area": 12619.198751276432 }, "geometry": { "rings": [ [ [ -13310188.785390213, 4223726.392817982 ], [ -13310301.120597305, 4223726.392817982 ], [ -13310301.120597305, 4223838.728025064 ], [ -13310188.785390213, 4223838.728025064 ], [ -13310188.785390213, 4223726.392817982 ] ] ] } }, { "attributes": { "OBJECTID": 43, "Id": 43, "grid_code": 1, "Shape_Length": 449.3408283740282, "Shape_Area": 12619.198752741117 }, "geometry": { "rings": [ [ [ -13309964.114976037, 4223614.057610884 ], [ -13309964.114976037, 4223726.392817982 ], [ -13309851.779768948, 4223726.392817982 ], [ -13309851.779768948, 4223614.057610884 ], [ -13309964.114976037, 4223614.057610884 ] ] ] } }, { "attributes": { "OBJECTID": 44, "Id": 44, "grid_code": 1, "Shape_Length": 1348.0224850699306, "Shape_Area": 63095.993758474564 }, "geometry": { "rings": [ [ [ -13308166.751662616, 4223614.057610884 ], [ -13308279.086869704, 4223614.057610884 ], [ -13308279.086869704, 4223838.728025064 ], [ -13308391.422076792, 4223838.728025064 ], [ -13308391.422076792, 4224063.398439243 ], [ -13308279.086869704, 4224063.398439243 ], [ -13308279.086869704, 4223951.063232154 ], [ -13308166.751662616, 4223951.063232154 ], [ -13308166.751662616, 4223614.057610884 ] ] ] } }, { "attributes": { "OBJECTID": 45, "Id": 45, "grid_code": 1, "Shape_Length": 674.0112425275147, "Shape_Area": 25238.397502971347 }, "geometry": { "rings": [ [ [ -13309514.77414768, 4223501.722403806 ], [ -13309627.109354768, 4223501.722403806 ], [ -13309627.109354768, 4223726.392817982 ], [ -13309514.77414768, 4223726.392817982 ], [ -13309514.77414768, 4223501.722403806 ] ] ] } }, { "attributes": { "OBJECTID": 46, "Id": 46, "grid_code": 1, "Shape_Length": 674.0112425237894, "Shape_Area": 25238.397502552863 }, "geometry": { "rings": [ [ [ -13309964.114976037, 4223614.057610884 ], [ -13309964.114976037, 4223389.3871967085 ], [ -13310076.450183123, 4223389.3871967085 ], [ -13310076.450183123, 4223614.057610884 ], [ -13309964.114976037, 4223614.057610884 ] ] ] } }, { "attributes": { "OBJECTID": 47, "Id": 47, "grid_code": 1, "Shape_Length": 674.0112425386906, "Shape_Area": 25238.397503808308 }, "geometry": { "rings": [ [ [ -13309177.768526413, 4223052.381575443 ], [ -13309402.438940592, 4223052.381575443 ], [ -13309402.438940592, 4223164.716782533 ], [ -13309177.768526413, 4223164.716782533 ], [ -13309177.768526413, 4223052.381575443 ] ] ] } }, { "attributes": { "OBJECTID": 48, "Id": 48, "grid_code": 1, "Shape_Length": 449.3408283405006, "Shape_Area": 12619.198750857951 }, "geometry": { "rings": [ [ [ -13308279.086869704, 4222715.375954181 ], [ -13308391.422076792, 4222715.375954181 ], [ -13308391.422076792, 4222827.711161263 ], [ -13308279.086869704, 4222827.711161263 ], [ -13308279.086869704, 4222715.375954181 ] ] ] } }, { "attributes": { "OBJECTID": 49, "Id": 49, "grid_code": 1, "Shape_Length": 449.3408283777535, "Shape_Area": 12619.198752950357 }, "geometry": { "rings": [ [ [ -13309177.768526413, 4222603.040747084 ], [ -13309290.103733504, 4222603.040747084 ], [ -13309290.103733504, 4222715.375954181 ], [ -13309177.768526413, 4222715.375954181 ], [ -13309177.768526413, 4222603.040747084 ] ] ] } }, { "attributes": { "OBJECTID": 50, "Id": 50, "grid_code": 1, "Shape_Length": 449.3408283665776, "Shape_Area": 12619.198752322636 }, "geometry": { "rings": [ [ [ -13309065.433319323, 4222603.040747084 ], [ -13309065.433319323, 4222715.375954181 ], [ -13308953.098112237, 4222715.375954181 ], [ -13308953.098112237, 4222603.040747084 ], [ -13309065.433319323, 4222603.040747084 ] ] ] } }, { "attributes": { "OBJECTID": 51, "Id": 51, "grid_code": 1, "Shape_Length": 449.3408283367753, "Shape_Area": 12619.198750648711 }, "geometry": { "rings": [ [ [ -13309177.768526413, 4222603.040747084 ], [ -13309065.433319323, 4222603.040747084 ], [ -13309065.433319323, 4222490.705540005 ], [ -13309177.768526413, 4222490.705540005 ], [ -13309177.768526413, 4222603.040747084 ] ] ] } }, { "attributes": { "OBJECTID": 52, "Id": 52, "grid_code": 1, "Shape_Length": 449.3408283703029, "Shape_Area": 12619.198752531876 }, "geometry": { "rings": [ [ [ -13308503.75728388, 4222378.370332908 ], [ -13308616.092490967, 4222378.370332908 ], [ -13308616.092490967, 4222490.705540005 ], [ -13308503.75728388, 4222490.705540005 ], [ -13308503.75728388, 4222378.370332908 ] ] ] } }, { "attributes": { "OBJECTID": 53, "Id": 53, "grid_code": 1, "Shape_Length": 449.3408283703029, "Shape_Area": 12619.198752531876 }, "geometry": { "rings": [ [ [ -13308166.751662616, 4222378.370332908 ], [ -13308279.086869704, 4222378.370332908 ], [ -13308279.086869704, 4222490.705540005 ], [ -13308166.751662616, 4222490.705540005 ], [ -13308166.751662616, 4222378.370332908 ] ] ] } }, { "attributes": { "OBJECTID": 54, "Id": 54, "grid_code": 1, "Shape_Length": 449.34082836285233, "Shape_Area": 12619.198752113394 }, "geometry": { "rings": [ [ [ -13310301.120597305, 4222266.035125818 ], [ -13310301.120597305, 4222378.370332908 ], [ -13310188.785390213, 4222378.370332908 ], [ -13310188.785390213, 4222266.035125818 ], [ -13310301.120597305, 4222266.035125818 ] ] ] } }, { "attributes": { "OBJECTID": 55, "Id": 55, "grid_code": 1, "Shape_Length": 449.34082835912704, "Shape_Area": 12619.198751904154 }, "geometry": { "rings": [ [ [ -13308840.762905147, 4222266.035125818 ], [ -13308953.098112237, 4222266.035125818 ], [ -13308953.098112237, 4222378.370332908 ], [ -13308840.762905147, 4222378.370332908 ], [ -13308840.762905147, 4222266.035125818 ] ] ] } }, { "attributes": { "OBJECTID": 56, "Id": 56, "grid_code": 1, "Shape_Length": 449.3408283665776, "Shape_Area": 12619.198752322636 }, "geometry": { "rings": [ [ [ -13308166.751662616, 4222378.370332908 ], [ -13308054.416455522, 4222378.370332908 ], [ -13308054.416455522, 4222266.035125818 ], [ -13308166.751662616, 4222266.035125818 ], [ -13308166.751662616, 4222378.370332908 ] ] ] } }, { "attributes": { "OBJECTID": 57, "Id": 57, "grid_code": 1, "Shape_Length": 449.3408283479512, "Shape_Area": 12619.198751276432 }, "geometry": { "rings": [ [ [ -13312098.483910726, 4222153.699918732 ], [ -13312210.819117814, 4222153.699918732 ], [ -13312210.819117814, 4222266.035125818 ], [ -13312098.483910726, 4222266.035125818 ], [ -13312098.483910726, 4222153.699918732 ] ] ] } }, { "attributes": { "OBJECTID": 58, "Id": 58, "grid_code": 1, "Shape_Length": 449.3408283479512, "Shape_Area": 12619.198751276432 }, "geometry": { "rings": [ [ [ -13310301.120597305, 4222153.699918732 ], [ -13310413.455804393, 4222153.699918732 ], [ -13310413.455804393, 4222266.035125818 ], [ -13310301.120597305, 4222266.035125818 ], [ -13310301.120597305, 4222153.699918732 ] ] ] } }, { "attributes": { "OBJECTID": 59, "Id": 59, "grid_code": 1, "Shape_Length": 898.6816567219794, "Shape_Area": 37857.596255503224 }, "geometry": { "rings": [ [ [ -13309290.103733504, 4222153.699918732 ], [ -13309402.438940592, 4222153.699918732 ], [ -13309402.438940592, 4222490.705540005 ], [ -13309290.103733504, 4222490.705540005 ], [ -13309290.103733504, 4222153.699918732 ] ] ] } }, { "attributes": { "OBJECTID": 60, "Id": 60, "grid_code": 1, "Shape_Length": 449.3408283479512, "Shape_Area": 12619.198751276432 }, "geometry": { "rings": [ [ [ -13308503.75728388, 4222153.699918732 ], [ -13308616.092490967, 4222153.699918732 ], [ -13308616.092490967, 4222266.035125818 ], [ -13308503.75728388, 4222266.035125818 ], [ -13308503.75728388, 4222153.699918732 ] ] ] } }, { "attributes": { "OBJECTID": 61, "Id": 61, "grid_code": 1, "Shape_Length": 898.6816567033529, "Shape_Area": 37857.59625466626 }, "geometry": { "rings": [ [ [ -13308279.086869704, 4222153.699918732 ], [ -13308391.422076792, 4222153.699918732 ], [ -13308391.422076792, 4222266.035125818 ], [ -13308503.75728388, 4222266.035125818 ], [ -13308503.75728388, 4222378.370332908 ], [ -13308279.086869704, 4222378.370332908 ], [ -13308279.086869704, 4222153.699918732 ] ] ] } }, { "attributes": { "OBJECTID": 62, "Id": 62, "grid_code": 1, "Shape_Length": 449.34082835540175, "Shape_Area": 12619.198751694914 }, "geometry": { "rings": [ [ [ -13310413.455804393, 4222153.699918732 ], [ -13310413.455804393, 4222041.364711642 ], [ -13310525.79101148, 4222041.364711642 ], [ -13310525.79101148, 4222153.699918732 ], [ -13310413.455804393, 4222153.699918732 ] ] ] } }, { "attributes": { "OBJECTID": 63, "Id": 63, "grid_code": 1, "Shape_Length": 449.34082836285233, "Shape_Area": 12619.198752113394 }, "geometry": { "rings": [ [ [ -13310301.120597305, 4222153.699918732 ], [ -13310188.785390213, 4222153.699918732 ], [ -13310188.785390213, 4222041.364711642 ], [ -13310301.120597305, 4222041.364711642 ], [ -13310301.120597305, 4222153.699918732 ] ] ] } }, { "attributes": { "OBJECTID": 64, "Id": 64, "grid_code": 1, "Shape_Length": 449.3408283665776, "Shape_Area": 12619.198752322636 }, "geometry": { "rings": [ [ [ -13308616.092490967, 4222041.364711642 ], [ -13308728.42769806, 4222041.364711642 ], [ -13308728.42769806, 4222153.699918732 ], [ -13308616.092490967, 4222153.699918732 ], [ -13308616.092490967, 4222041.364711642 ] ] ] } }, { "attributes": { "OBJECTID": 65, "Id": 65, "grid_code": 1, "Shape_Length": 449.34082835540175, "Shape_Area": 12619.198751694914 }, "geometry": { "rings": [ [ [ -13308391.422076792, 4222041.364711642 ], [ -13308503.75728388, 4222041.364711642 ], [ -13308503.75728388, 4222153.699918732 ], [ -13308391.422076792, 4222153.699918732 ], [ -13308391.422076792, 4222041.364711642 ] ] ] } }, { "attributes": { "OBJECTID": 66, "Id": 66, "grid_code": 1, "Shape_Length": 674.0112425237894, "Shape_Area": 25238.397502552863 }, "geometry": { "rings": [ [ [ -13309739.444561861, 4221929.029504556 ], [ -13309964.114976037, 4221929.029504556 ], [ -13309964.114976037, 4222041.364711642 ], [ -13309739.444561861, 4222041.364711642 ], [ -13309739.444561861, 4221929.029504556 ] ] ] } }, { "attributes": { "OBJECTID": 67, "Id": 67, "grid_code": 1, "Shape_Length": 1123.3520708866417, "Shape_Area": 63095.993758683806 }, "geometry": { "rings": [ [ [ -13309290.103733504, 4221929.029504556 ], [ -13309290.103733504, 4222153.699918732 ], [ -13308953.098112237, 4222153.699918732 ], [ -13308953.098112237, 4222041.364711642 ], [ -13309065.433319323, 4222041.364711642 ], [ -13309065.433319323, 4221929.029504556 ], [ -13309290.103733504, 4221929.029504556 ] ] ] } }, { "attributes": { "OBJECTID": 68, "Id": 68, "grid_code": 1, "Shape_Length": 674.0112425386906, "Shape_Area": 25238.39750422679 }, "geometry": { "rings": [ [ [ -13312547.824739084, 4221816.694297463 ], [ -13312772.49515326, 4221816.694297463 ], [ -13312772.49515326, 4221929.029504556 ], [ -13312547.824739084, 4221929.029504556 ], [ -13312547.824739084, 4221816.694297463 ] ] ] } }, { "attributes": { "OBJECTID": 69, "Id": 69, "grid_code": 1, "Shape_Length": 449.3408283740282, "Shape_Area": 12619.198752741117 }, "geometry": { "rings": [ [ [ -13312210.819117814, 4221816.694297463 ], [ -13312323.154324908, 4221816.694297463 ], [ -13312323.154324908, 4221929.029504556 ], [ -13312210.819117814, 4221929.029504556 ], [ -13312210.819117814, 4221816.694297463 ] ] ] } }, { "attributes": { "OBJECTID": 70, "Id": 70, "grid_code": 1, "Shape_Length": 449.34082836285233, "Shape_Area": 12619.198752113394 }, "geometry": { "rings": [ [ [ -13311873.81349655, 4221816.694297463 ], [ -13311986.148703638, 4221816.694297463 ], [ -13311986.148703638, 4221929.029504556 ], [ -13311873.81349655, 4221929.029504556 ], [ -13311873.81349655, 4221816.694297463 ] ] ] } }, { "attributes": { "OBJECTID": 71, "Id": 71, "grid_code": 1, "Shape_Length": 1123.3520708940923, "Shape_Area": 50476.7950080351 }, "geometry": { "rings": [ [ [ -13308503.75728388, 4221816.694297463 ], [ -13308840.762905147, 4221816.694297463 ], [ -13308840.762905147, 4221929.029504556 ], [ -13308616.092490967, 4221929.029504556 ], [ -13308616.092490967, 4222041.364711642 ], [ -13308503.75728388, 4222041.364711642 ], [ -13308503.75728388, 4221816.694297463 ] ] ] } }, { "attributes": { "OBJECTID": 72, "Id": 72, "grid_code": 1, "Shape_Length": 449.3408283740282, "Shape_Area": 12619.198752741117 }, "geometry": { "rings": [ [ [ -13307043.399591722, 4221816.694297463 ], [ -13307155.734798815, 4221816.694297463 ], [ -13307155.734798815, 4221929.029504556 ], [ -13307043.399591722, 4221929.029504556 ], [ -13307043.399591722, 4221816.694297463 ] ] ] } }, { "attributes": { "OBJECTID": 73, "Id": 73, "grid_code": 1, "Shape_Length": 449.3408283405006, "Shape_Area": 12619.198750857951 }, "geometry": { "rings": [ [ [ -13319175.601957332, 4221704.35909038 ], [ -13319175.601957332, 4221816.694297463 ], [ -13319063.266750244, 4221816.694297463 ], [ -13319063.266750244, 4221704.35909038 ], [ -13319175.601957332, 4221704.35909038 ] ] ] } }, { "attributes": { "OBJECTID": 74, "Id": 74, "grid_code": 1, "Shape_Length": 449.3408283367753, "Shape_Area": 12619.198750648711 }, "geometry": { "rings": [ [ [ -13313558.841602884, 4221704.35909038 ], [ -13313671.17680997, 4221704.35909038 ], [ -13313671.17680997, 4221816.694297463 ], [ -13313558.841602884, 4221816.694297463 ], [ -13313558.841602884, 4221704.35909038 ] ] ] } }, { "attributes": { "OBJECTID": 75, "Id": 75, "grid_code": 1, "Shape_Length": 1348.0224850550294, "Shape_Area": 63095.99375491748 }, "geometry": { "rings": [ [ [ -13310076.450183123, 4221704.35909038 ], [ -13310638.126218569, 4221704.35909038 ], [ -13310638.126218569, 4221816.694297463 ], [ -13310076.450183123, 4221816.694297463 ], [ -13310076.450183123, 4221704.35909038 ] ] ] } }, { "attributes": { "OBJECTID": 76, "Id": 76, "grid_code": 1, "Shape_Length": 449.3408283703029, "Shape_Area": 12619.198752531876 }, "geometry": { "rings": [ [ [ -13319175.601957332, 4221704.35909038 ], [ -13319175.601957332, 4221592.023883283 ], [ -13319287.93716442, 4221592.023883283 ], [ -13319287.93716442, 4221704.35909038 ], [ -13319175.601957332, 4221704.35909038 ] ] ] } }, { "attributes": { "OBJECTID": 77, "Id": 77, "grid_code": 1, "Shape_Length": 449.3408283740282, "Shape_Area": 12619.198752741117 }, "geometry": { "rings": [ [ [ -13313558.841602884, 4221704.35909038 ], [ -13313446.506395794, 4221704.35909038 ], [ -13313446.506395794, 4221592.023883283 ], [ -13313558.841602884, 4221592.023883283 ], [ -13313558.841602884, 4221704.35909038 ] ] ] } }, { "attributes": { "OBJECTID": 78, "Id": 78, "grid_code": 1, "Shape_Length": 674.0112425461411, "Shape_Area": 25238.397505063753 }, "geometry": { "rings": [ [ [ -13312772.49515326, 4221592.023883283 ], [ -13312772.49515326, 4221704.35909038 ], [ -13312547.824739084, 4221704.35909038 ], [ -13312547.824739084, 4221592.023883283 ], [ -13312772.49515326, 4221592.023883283 ] ] ] } }, { "attributes": { "OBJECTID": 79, "Id": 79, "grid_code": 1, "Shape_Length": 449.3408283703029, "Shape_Area": 12619.198752531876 }, "geometry": { "rings": [ [ [ -13312098.483910726, 4221592.023883283 ], [ -13312210.819117814, 4221592.023883283 ], [ -13312210.819117814, 4221704.35909038 ], [ -13312098.483910726, 4221704.35909038 ], [ -13312098.483910726, 4221592.023883283 ] ] ] } }, { "attributes": { "OBJECTID": 80, "Id": 80, "grid_code": 1, "Shape_Length": 449.3408283703029, "Shape_Area": 12619.198752531876 }, "geometry": { "rings": [ [ [ -13311873.81349655, 4221592.023883283 ], [ -13311986.148703638, 4221592.023883283 ], [ -13311986.148703638, 4221704.35909038 ], [ -13311873.81349655, 4221704.35909038 ], [ -13311873.81349655, 4221592.023883283 ] ] ] } }, { "attributes": { "OBJECTID": 81, "Id": 81, "grid_code": 1, "Shape_Length": 449.3408283665776, "Shape_Area": 12619.198752322636 }, "geometry": { "rings": [ [ [ -13310750.461425662, 4221592.023883283 ], [ -13310862.796632748, 4221592.023883283 ], [ -13310862.796632748, 4221704.35909038 ], [ -13310750.461425662, 4221704.35909038 ], [ -13310750.461425662, 4221592.023883283 ] ] ] } }, { "attributes": { "OBJECTID": 82, "Id": 82, "grid_code": 1, "Shape_Length": 449.34082836285233, "Shape_Area": 12619.198752113394 }, "geometry": { "rings": [ [ [ -13312772.49515326, 4221592.023883283 ], [ -13312772.49515326, 4221479.688676193 ], [ -13312884.830360351, 4221479.688676193 ], [ -13312884.830360351, 4221592.023883283 ], [ -13312772.49515326, 4221592.023883283 ] ] ] } }, { "attributes": { "OBJECTID": 83, "Id": 83, "grid_code": 1, "Shape_Length": 898.6816567257047, "Shape_Area": 37857.5962559217 }, "geometry": { "rings": [ [ [ -13308503.75728388, 4221704.35909038 ], [ -13308503.75728388, 4221592.023883283 ], [ -13308391.422076792, 4221592.023883283 ], [ -13308391.422076792, 4221479.688676193 ], [ -13308616.092490967, 4221479.688676193 ], [ -13308616.092490967, 4221704.35909038 ], [ -13308503.75728388, 4221704.35909038 ] ] ] } }, { "attributes": { "OBJECTID": 84, "Id": 84, "grid_code": 1, "Shape_Length": 3819.39704105258, "Shape_Area": 315479.96879341913 }, "geometry": { "rings": [ [ [ -13308279.086869704, 4221592.023883283 ], [ -13308054.416455522, 4221592.023883283 ], [ -13308054.416455522, 4221704.35909038 ], [ -13308279.086869704, 4221704.35909038 ], [ -13308279.086869704, 4221592.023883283 ], [ -13308391.422076792, 4221592.023883283 ], [ -13308391.422076792, 4221704.35909038 ], [ -13308503.75728388, 4221704.35909038 ], [ -13308503.75728388, 4221816.694297463 ], [ -13308391.422076792, 4221816.694297463 ], [ -13308391.422076792, 4222041.364711642 ], [ -13308279.086869704, 4222041.364711642 ], [ -13308279.086869704, 4222153.699918732 ], [ -13307829.746041346, 4222153.699918732 ], [ -13307829.746041346, 4221929.029504556 ], [ -13307942.081248436, 4221929.029504556 ], [ -13307942.081248436, 4221704.35909038 ], [ -13307717.41083426, 4221704.35909038 ], [ -13307717.41083426, 4221592.023883283 ], [ -13307942.081248436, 4221592.023883283 ], [ -13307942.081248436, 4221479.688676193 ], [ -13308279.086869704, 4221479.688676193 ], [ -13308279.086869704, 4221592.023883283 ] ] ] } }, { "attributes": { "OBJECTID": 85, "Id": 85, "grid_code": 1, "Shape_Length": 1348.022485088557, "Shape_Area": 75715.19251351734 }, "geometry": { "rings": [ [ [ -13313671.17680997, 4221704.35909038 ], [ -13313671.17680997, 4221479.688676193 ], [ -13313783.51201706, 4221479.688676193 ], [ -13313783.51201706, 4221255.0182620175 ], [ -13313895.847224152, 4221255.0182620175 ], [ -13313895.847224152, 4221704.35909038 ], [ -13313671.17680997, 4221704.35909038 ] ] ] } }, { "attributes": { "OBJECTID": 86, "Id": 86, "grid_code": 1, "Shape_Length": 674.01124253124, "Shape_Area": 25238.397503389828 }, "geometry": { "rings": [ [ [ -13313221.835981619, 4221255.0182620175 ], [ -13313446.506395794, 4221255.0182620175 ], [ -13313446.506395794, 4221367.353469107 ], [ -13313221.835981619, 4221367.353469107 ], [ -13313221.835981619, 4221255.0182620175 ] ] ] } }, { "attributes": { "OBJECTID": 87, "Id": 87, "grid_code": 1, "Shape_Length": 449.34082835540175, "Shape_Area": 12619.198751694914 }, "geometry": { "rings": [ [ [ -13312997.165567439, 4221255.0182620175 ], [ -13313109.500774527, 4221255.0182620175 ], [ -13313109.500774527, 4221367.353469107 ], [ -13312997.165567439, 4221367.353469107 ], [ -13312997.165567439, 4221255.0182620175 ] ] ] } }, { "attributes": { "OBJECTID": 88, "Id": 88, "grid_code": 1, "Shape_Length": 449.34082835167646, "Shape_Area": 12619.198751485674 }, "geometry": { "rings": [ [ [ -13312547.824739084, 4221255.0182620175 ], [ -13312660.15994617, 4221255.0182620175 ], [ -13312660.15994617, 4221367.353469107 ], [ -13312547.824739084, 4221367.353469107 ], [ -13312547.824739084, 4221255.0182620175 ] ] ] } }, { "attributes": { "OBJECTID": 89, "Id": 89, "grid_code": 1, "Shape_Length": 449.34082835167646, "Shape_Area": 12619.198751485674 }, "geometry": { "rings": [ [ [ -13311312.137461107, 4221255.0182620175 ], [ -13311424.472668193, 4221255.0182620175 ], [ -13311424.472668193, 4221367.353469107 ], [ -13311312.137461107, 4221367.353469107 ], [ -13311312.137461107, 4221255.0182620175 ] ] ] } }, { "attributes": { "OBJECTID": 90, "Id": 90, "grid_code": 1, "Shape_Length": 1123.3520708829165, "Shape_Area": 50476.795006779656 }, "geometry": { "rings": [ [ [ -13309739.444561861, 4221479.688676193 ], [ -13309851.779768948, 4221479.688676193 ], [ -13309851.779768948, 4221255.0182620175 ], [ -13309964.114976037, 4221255.0182620175 ], [ -13309964.114976037, 4221592.023883283 ], [ -13309739.444561861, 4221592.023883283 ], [ -13309739.444561861, 4221479.688676193 ] ] ] } }, { "attributes": { "OBJECTID": 91, "Id": 91, "grid_code": 1, "Shape_Length": 449.34082835540175, "Shape_Area": 12619.198751694914 }, "geometry": { "rings": [ [ [ -13313221.835981619, 4221255.0182620175 ], [ -13313109.500774527, 4221255.0182620175 ], [ -13313109.500774527, 4221142.683054931 ], [ -13313221.835981619, 4221142.683054931 ], [ -13313221.835981619, 4221255.0182620175 ] ] ] } }, { "attributes": { "OBJECTID": 92, "Id": 92, "grid_code": 1, "Shape_Length": 449.34082835167646, "Shape_Area": 12619.198751485674 }, "geometry": { "rings": [ [ [ -13312547.824739084, 4221255.0182620175 ], [ -13312435.489531994, 4221255.0182620175 ], [ -13312435.489531994, 4221142.683054931 ], [ -13312547.824739084, 4221142.683054931 ], [ -13312547.824739084, 4221255.0182620175 ] ] ] } }, { "attributes": { "OBJECTID": 93, "Id": 93, "grid_code": 1, "Shape_Length": 449.34082835540175, "Shape_Area": 12619.198751694914 }, "geometry": { "rings": [ [ [ -13311536.807875283, 4221142.683054931 ], [ -13311649.143082375, 4221142.683054931 ], [ -13311649.143082375, 4221255.0182620175 ], [ -13311536.807875283, 4221255.0182620175 ], [ -13311536.807875283, 4221142.683054931 ] ] ] } }, { "attributes": { "OBJECTID": 94, "Id": 94, "grid_code": 1, "Shape_Length": 3594.726626865566, "Shape_Area": 214526.37878320756 }, "geometry": { "rings": [ [ [ -13309739.444561861, 4221479.688676193 ], [ -13309514.77414768, 4221479.688676193 ], [ -13309514.77414768, 4221592.023883283 ], [ -13309402.438940592, 4221592.023883283 ], [ -13309402.438940592, 4221816.694297463 ], [ -13309739.444561861, 4221816.694297463 ], [ -13309739.444561861, 4221929.029504556 ], [ -13309290.103733504, 4221929.029504556 ], [ -13309290.103733504, 4221704.35909038 ], [ -13309177.768526413, 4221704.35909038 ], [ -13309177.768526413, 4221592.023883283 ], [ -13309065.433319323, 4221592.023883283 ], [ -13309065.433319323, 4221479.688676193 ], [ -13309402.438940592, 4221479.688676193 ], [ -13309402.438940592, 4221367.353469107 ], [ -13309514.77414768, 4221367.353469107 ], [ -13309514.77414768, 4221255.0182620175 ], [ -13309627.109354768, 4221255.0182620175 ], [ -13309627.109354768, 4221142.683054931 ], [ -13309739.444561861, 4221142.683054931 ], [ -13309739.444561861, 4221479.688676193 ] ] ] } }, { "attributes": { "OBJECTID": 95, "Id": 95, "grid_code": 1, "Shape_Length": 674.0112425237894, "Shape_Area": 25238.397502552863 }, "geometry": { "rings": [ [ [ -13308728.42769806, 4221142.683054931 ], [ -13308953.098112237, 4221142.683054931 ], [ -13308953.098112237, 4221255.0182620175 ], [ -13308728.42769806, 4221255.0182620175 ], [ -13308728.42769806, 4221142.683054931 ] ] ] } }, { "attributes": { "OBJECTID": 96, "Id": 96, "grid_code": 1, "Shape_Length": 449.3408283442259, "Shape_Area": 12619.198751067192 }, "geometry": { "rings": [ [ [ -13307717.41083426, 4221142.683054931 ], [ -13307829.746041346, 4221142.683054931 ], [ -13307829.746041346, 4221255.0182620175 ], [ -13307717.41083426, 4221255.0182620175 ], [ -13307717.41083426, 4221142.683054931 ] ] ] } }, { "attributes": { "OBJECTID": 97, "Id": 97, "grid_code": 1, "Shape_Length": 898.6816567108035, "Shape_Area": 37857.59625466626 }, "geometry": { "rings": [ [ [ -13312997.165567439, 4221255.0182620175 ], [ -13312772.49515326, 4221255.0182620175 ], [ -13312772.49515326, 4221142.683054931 ], [ -13312884.830360351, 4221142.683054931 ], [ -13312884.830360351, 4221030.347847842 ], [ -13312997.165567439, 4221030.347847842 ], [ -13312997.165567439, 4221255.0182620175 ] ] ] } }, { "attributes": { "OBJECTID": 98, "Id": 98, "grid_code": 1, "Shape_Length": 674.0112425424159, "Shape_Area": 25238.39750401755 }, "geometry": { "rings": [ [ [ -13310076.450183123, 4221030.347847842 ], [ -13310301.120597305, 4221030.347847842 ], [ -13310301.120597305, 4221142.683054931 ], [ -13310076.450183123, 4221142.683054931 ], [ -13310076.450183123, 4221030.347847842 ] ] ] } }, { "attributes": { "OBJECTID": 99, "Id": 99, "grid_code": 1, "Shape_Length": 449.34082835167646, "Shape_Area": 12619.198751485674 }, "geometry": { "rings": [ [ [ -13306369.38834919, 4221030.347847842 ], [ -13306481.723556276, 4221030.347847842 ], [ -13306481.723556276, 4221142.683054931 ], [ -13306369.38834919, 4221142.683054931 ], [ -13306369.38834919, 4221030.347847842 ] ] ] } }, { "attributes": { "OBJECTID": 100, "Id": 100, "grid_code": 1, "Shape_Length": 674.0112425237894, "Shape_Area": 25238.397502552863 }, "geometry": { "rings": [ [ [ -13310076.450183123, 4220918.012640756 ], [ -13310076.450183123, 4221030.347847842 ], [ -13309851.779768948, 4221030.347847842 ], [ -13309851.779768948, 4220918.012640756 ], [ -13310076.450183123, 4220918.012640756 ] ] ] } }, { "attributes": { "OBJECTID": 101, "Id": 101, "grid_code": 1, "Shape_Length": 449.34082835167646, "Shape_Area": 12619.198751485674 }, "geometry": { "rings": [ [ [ -13309065.433319323, 4220918.012640756 ], [ -13309177.768526413, 4220918.012640756 ], [ -13309177.768526413, 4221030.347847842 ], [ -13309065.433319323, 4221030.347847842 ], [ -13309065.433319323, 4220918.012640756 ] ] ] } }, { "attributes": { "OBJECTID": 102, "Id": 102, "grid_code": 1, "Shape_Length": 449.34082835912704, "Shape_Area": 12619.198751904154 }, "geometry": { "rings": [ [ [ -13307605.075627167, 4220918.012640756 ], [ -13307717.41083426, 4220918.012640756 ], [ -13307717.41083426, 4221030.347847842 ], [ -13307605.075627167, 4221030.347847842 ], [ -13307605.075627167, 4220918.012640756 ] ] ] } }, { "attributes": { "OBJECTID": 103, "Id": 103, "grid_code": 1, "Shape_Length": 898.68165672943, "Shape_Area": 37857.59625696791 }, "geometry": { "rings": [ [ [ -13310076.450183123, 4220918.012640756 ], [ -13310076.450183123, 4220805.677433662 ], [ -13310188.785390213, 4220805.677433662 ], [ -13310188.785390213, 4220693.342226572 ], [ -13310301.120597305, 4220693.342226572 ], [ -13310301.120597305, 4220918.012640756 ], [ -13310076.450183123, 4220918.012640756 ] ] ] } }, { "attributes": { "OBJECTID": 104, "Id": 104, "grid_code": 1, "Shape_Length": 449.34082836285233, "Shape_Area": 12619.198752113394 }, "geometry": { "rings": [ [ [ -13315131.53450213, 4220581.007019483 ], [ -13315243.869709222, 4220581.007019483 ], [ -13315243.869709222, 4220693.342226572 ], [ -13315131.53450213, 4220693.342226572 ], [ -13315131.53450213, 4220581.007019483 ] ] ] } }, { "attributes": { "OBJECTID": 105, "Id": 105, "grid_code": 1, "Shape_Length": 674.0112425461411, "Shape_Area": 25238.397504645272 }, "geometry": { "rings": [ [ [ -13307155.734798815, 4220468.671812393 ], [ -13307155.734798815, 4220693.342226572 ], [ -13307043.399591722, 4220693.342226572 ], [ -13307043.399591722, 4220468.671812393 ], [ -13307155.734798815, 4220468.671812393 ] ] ] } }, { "attributes": { "OBJECTID": 106, "Id": 106, "grid_code": 1, "Shape_Length": 449.34082835167646, "Shape_Area": 12619.198751485674 }, "geometry": { "rings": [ [ [ -13313671.17680997, 4220356.336605307 ], [ -13313783.51201706, 4220356.336605307 ], [ -13313783.51201706, 4220468.671812393 ], [ -13313671.17680997, 4220468.671812393 ], [ -13313671.17680997, 4220356.336605307 ] ] ] } }, { "attributes": { "OBJECTID": 107, "Id": 107, "grid_code": 1, "Shape_Length": 449.34082835167646, "Shape_Area": 12619.198751485674 }, "geometry": { "rings": [ [ [ -13313446.506395794, 4220356.336605307 ], [ -13313558.841602884, 4220356.336605307 ], [ -13313558.841602884, 4220468.671812393 ], [ -13313446.506395794, 4220468.671812393 ], [ -13313446.506395794, 4220356.336605307 ] ] ] } }, { "attributes": { "OBJECTID": 108, "Id": 108, "grid_code": 1, "Shape_Length": 1797.3633134290576, "Shape_Area": 100953.59001439626 }, "geometry": { "rings": [ [ [ -13308953.098112237, 4220356.336605307 ], [ -13308953.098112237, 4220581.007019483 ], [ -13309065.433319323, 4220581.007019483 ], [ -13309065.433319323, 4220693.342226572 ], [ -13309177.768526413, 4220693.342226572 ], [ -13309177.768526413, 4220805.677433662 ], [ -13308953.098112237, 4220805.677433662 ], [ -13308953.098112237, 4220918.012640756 ], [ -13308840.762905147, 4220918.012640756 ], [ -13308840.762905147, 4220356.336605307 ], [ -13308953.098112237, 4220356.336605307 ] ] ] } }, { "attributes": { "OBJECTID": 109, "Id": 109, "grid_code": 1, "Shape_Length": 898.6816567145288, "Shape_Area": 37857.596255503224 }, "geometry": { "rings": [ [ [ -13308953.098112237, 4220356.336605307 ], [ -13308953.098112237, 4220244.001398217 ], [ -13309290.103733504, 4220244.001398217 ], [ -13309290.103733504, 4220356.336605307 ], [ -13308953.098112237, 4220356.336605307 ] ] ] } }, { "attributes": { "OBJECTID": 110, "Id": 110, "grid_code": 1, "Shape_Length": 1572.6928992383182, "Shape_Area": 75715.19250933253 }, "geometry": { "rings": [ [ [ -13307155.734798815, 4220468.671812393 ], [ -13307155.734798815, 4220244.001398217 ], [ -13307268.070005901, 4220244.001398217 ], [ -13307268.070005901, 4220356.336605307 ], [ -13307380.405212991, 4220356.336605307 ], [ -13307380.405212991, 4220468.671812393 ], [ -13307492.740420079, 4220468.671812393 ], [ -13307492.740420079, 4220693.342226572 ], [ -13307380.405212991, 4220693.342226572 ], [ -13307380.405212991, 4220581.007019483 ], [ -13307268.070005901, 4220581.007019483 ], [ -13307268.070005901, 4220468.671812393 ], [ -13307155.734798815, 4220468.671812393 ] ] ] } }, { "attributes": { "OBJECTID": 111, "Id": 111, "grid_code": 1, "Shape_Length": 449.3408283293247, "Shape_Area": 12619.198750230229 }, "geometry": { "rings": [ [ [ -13307268.070005901, 4219906.995776959 ], [ -13307268.070005901, 4220019.330984037 ], [ -13307155.734798815, 4220019.330984037 ], [ -13307155.734798815, 4219906.995776959 ], [ -13307268.070005901, 4219906.995776959 ] ] ] } }, { "attributes": { "OBJECTID": 112, "Id": 112, "grid_code": 1, "Shape_Length": 449.3408283740282, "Shape_Area": 12619.198752741117 }, "geometry": { "rings": [ [ [ -13307268.070005901, 4219906.995776959 ], [ -13307268.070005901, 4219794.6605698615 ], [ -13307380.405212991, 4219794.6605698615 ], [ -13307380.405212991, 4219906.995776959 ], [ -13307268.070005901, 4219906.995776959 ] ] ] } }, { "attributes": { "OBJECTID": 113, "Id": 113, "grid_code": 1, "Shape_Length": 674.0112425424159, "Shape_Area": 25238.39750401755 }, "geometry": { "rings": [ [ [ -13307155.734798815, 4219682.325362772 ], [ -13307155.734798815, 4219794.6605698615 ], [ -13306931.064384634, 4219794.6605698615 ], [ -13306931.064384634, 4219682.325362772 ], [ -13307155.734798815, 4219682.325362772 ] ] ] } }, { "attributes": { "OBJECTID": 114, "Id": 114, "grid_code": 1, "Shape_Length": 449.3408283442259, "Shape_Area": 12619.198751067192 }, "geometry": { "rings": [ [ [ -13307155.734798815, 4219682.325362772 ], [ -13307155.734798815, 4219569.990155686 ], [ -13307268.070005901, 4219569.990155686 ], [ -13307268.070005901, 4219682.325362772 ], [ -13307155.734798815, 4219682.325362772 ] ] ] } }, { "attributes": { "OBJECTID": 115, "Id": 115, "grid_code": 1, "Shape_Length": 898.6816567219794, "Shape_Area": 37857.596255503224 }, "geometry": { "rings": [ [ [ -13306706.393970458, 4219569.990155686 ], [ -13306818.729177546, 4219569.990155686 ], [ -13306818.729177546, 4219906.995776959 ], [ -13306706.393970458, 4219906.995776959 ], [ -13306706.393970458, 4219569.990155686 ] ] ] } }, { "attributes": { "OBJECTID": 116, "Id": 116, "grid_code": 1, "Shape_Length": 449.3408283367753, "Shape_Area": 12619.198750648711 }, "geometry": { "rings": [ [ [ -13306144.717935015, 4219345.31974151 ], [ -13306257.0531421, 4219345.31974151 ], [ -13306257.0531421, 4219457.654948592 ], [ -13306144.717935015, 4219457.654948592 ], [ -13306144.717935015, 4219345.31974151 ] ] ] } }, { "attributes": { "OBJECTID": 117, "Id": 117, "grid_code": 1, "Shape_Length": 449.3408283665776, "Shape_Area": 12619.198752322636 }, "geometry": { "rings": [ [ [ -13309851.779768948, 4219232.984534416 ], [ -13309964.114976037, 4219232.984534416 ], [ -13309964.114976037, 4219345.31974151 ], [ -13309851.779768948, 4219345.31974151 ], [ -13309851.779768948, 4219232.984534416 ] ] ] } }, { "attributes": { "OBJECTID": 118, "Id": 118, "grid_code": 1, "Shape_Length": 449.3408283740282, "Shape_Area": 12619.198752741117 }, "geometry": { "rings": [ [ [ -13306257.0531421, 4219008.314120237 ], [ -13306369.38834919, 4219008.314120237 ], [ -13306369.38834919, 4219120.649327334 ], [ -13306257.0531421, 4219120.649327334 ], [ -13306257.0531421, 4219008.314120237 ] ] ] } }, { "attributes": { "OBJECTID": 119, "Id": 119, "grid_code": 1, "Shape_Length": 449.3408283405006, "Shape_Area": 12619.198750857951 }, "geometry": { "rings": [ [ [ -13310525.79101148, 4218109.632463533 ], [ -13310638.126218569, 4218109.632463533 ], [ -13310638.126218569, 4218221.967670616 ], [ -13310525.79101148, 4218221.967670616 ], [ -13310525.79101148, 4218109.632463533 ] ] ] } }, { "attributes": { "OBJECTID": 120, "Id": 120, "grid_code": 1, "Shape_Length": 674.0112425275147, "Shape_Area": 25238.397502343625 }, "geometry": { "rings": [ [ [ -13305695.377106652, 4218109.632463533 ], [ -13305920.047520833, 4218109.632463533 ], [ -13305920.047520833, 4218221.967670616 ], [ -13305695.377106652, 4218221.967670616 ], [ -13305695.377106652, 4218109.632463533 ] ] ] } }, { "attributes": { "OBJECTID": 121, "Id": 121, "grid_code": 1, "Shape_Length": 449.3408283442259, "Shape_Area": 12619.198751067192 }, "geometry": { "rings": [ [ [ -13305583.041899566, 4217547.9564280845 ], [ -13305695.377106652, 4217547.9564280845 ], [ -13305695.377106652, 4217660.291635171 ], [ -13305583.041899566, 4217660.291635171 ], [ -13305583.041899566, 4217547.9564280845 ] ] ] } }, { "attributes": { "OBJECTID": 122, "Id": 122, "grid_code": 1, "Shape_Length": 449.3408283665776, "Shape_Area": 12619.198752322636 }, "geometry": { "rings": [ [ [ -13305133.701071214, 4216761.60997846 ], [ -13305133.701071214, 4216873.94518555 ], [ -13305021.36586412, 4216873.94518555 ], [ -13305021.36586412, 4216761.60997846 ], [ -13305133.701071214, 4216761.60997846 ] ] ] } }, { "attributes": { "OBJECTID": 123, "Id": 123, "grid_code": 1, "Shape_Length": 449.34082835167646, "Shape_Area": 12619.198751485674 }, "geometry": { "rings": [ [ [ -13305133.701071214, 4216761.60997846 ], [ -13305133.701071214, 4216649.27477137 ], [ -13305246.0362783, 4216649.27477137 ], [ -13305246.0362783, 4216761.60997846 ], [ -13305133.701071214, 4216761.60997846 ] ] ] } }, { "attributes": { "OBJECTID": 124, "Id": 124, "grid_code": 1, "Shape_Length": 449.34082835540175, "Shape_Area": 12619.198751694914 }, "geometry": { "rings": [ [ [ -13303336.337757787, 4216312.269150101 ], [ -13303448.672964875, 4216312.269150101 ], [ -13303448.672964875, 4216424.60435719 ], [ -13303336.337757787, 4216424.60435719 ], [ -13303336.337757787, 4216312.269150101 ] ] ] } }, { "attributes": { "OBJECTID": 125, "Id": 125, "grid_code": 1, "Shape_Length": 449.3408283479512, "Shape_Area": 12619.198751276432 }, "geometry": { "rings": [ [ [ -13304796.695449945, 4215975.263528839 ], [ -13304909.030657033, 4215975.263528839 ], [ -13304909.030657033, 4216087.598735925 ], [ -13304796.695449945, 4216087.598735925 ], [ -13304796.695449945, 4215975.263528839 ] ] ] } }, { "attributes": { "OBJECTID": 126, "Id": 126, "grid_code": 1, "Shape_Length": 449.3408283442259, "Shape_Area": 12619.198751067192 }, "geometry": { "rings": [ [ [ -13305470.706692476, 4215750.593114663 ], [ -13305583.041899566, 4215750.593114663 ], [ -13305583.041899566, 4215862.928321745 ], [ -13305470.706692476, 4215862.928321745 ], [ -13305470.706692476, 4215750.593114663 ] ] ] } }, { "attributes": { "OBJECTID": 127, "Id": 127, "grid_code": 1, "Shape_Length": 449.3408283442259, "Shape_Area": 12619.198751067192 }, "geometry": { "rings": [ [ [ -13303673.343379054, 4215750.593114663 ], [ -13303785.678586144, 4215750.593114663 ], [ -13303785.678586144, 4215862.928321745 ], [ -13303673.343379054, 4215862.928321745 ], [ -13303673.343379054, 4215750.593114663 ] ] ] } }, { "attributes": { "OBJECTID": 128, "Id": 128, "grid_code": 1, "Shape_Length": 1572.6928992420435, "Shape_Area": 75715.19250807707 }, "geometry": { "rings": [ [ [ -13301763.644858543, 4211931.19607364 ], [ -13302212.985686898, 4211931.19607364 ], [ -13302212.985686898, 4212043.5312807225 ], [ -13301875.980065629, 4212043.5312807225 ], [ -13301875.980065629, 4212155.866487816 ], [ -13301651.309651453, 4212155.866487816 ], [ -13301651.309651453, 4212043.5312807225 ], [ -13301763.644858543, 4212043.5312807225 ], [ -13301763.644858543, 4211931.19607364 ] ] ] } }, { "attributes": { "OBJECTID": 129, "Id": 129, "grid_code": 1, "Shape_Length": 449.3408283479512, "Shape_Area": 12619.198751276432 }, "geometry": { "rings": [ [ [ -13301426.639237273, 4211369.520038191 ], [ -13301538.974444361, 4211369.520038191 ], [ -13301538.974444361, 4211481.855245277 ], [ -13301426.639237273, 4211481.855245277 ], [ -13301426.639237273, 4211369.520038191 ] ] ] } } ], "exceededTransferLimit": false } } ], "messages": [] } ```

result.xml

<messages></messages>
<results>
<datatype>GPFeatureRecordSetLayer</datatype>
<paramname>Viewshed_Result</paramname>
<value>
<exceededtransferlimit>False</exceededtransferlimit>
<features>
<attributes>
<id>1</id>
<objectid>1</objectid>
<shape_area>12619.198751904154</shape_area>
<shape_length>449.34082835912704</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308054.416455522
            4232713.209385097
          
          
            -13308166.751662616
            4232713.209385097
          
          
            -13308166.751662616
            4232825.544592183
          
          
            -13308054.416455522
            4232825.544592183
          
          
            -13308054.416455522
            4232713.209385097
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>2</id>
<objectid>2</objectid>
<shape_area>12619.198751276432</shape_area>
<shape_length>449.3408283479512</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13310301.120597305
            4230354.1700362265
          
          
            -13310413.455804393
            4230354.1700362265
          
          
            -13310413.455804393
            4230466.505243313
          
          
            -13310301.120597305
            4230466.505243313
          
          
            -13310301.120597305
            4230354.1700362265
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>3</id>
<objectid>3</objectid>
<shape_area>12619.198751904154</shape_area>
<shape_length>449.34082835912704</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13313671.17680997
            4230241.834829137
          
          
            -13313783.51201706
            4230241.834829137
          
          
            -13313783.51201706
            4230354.1700362265
          
          
            -13313671.17680997
            4230354.1700362265
          
          
            -13313671.17680997
            4230241.834829137
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>4</id>
<objectid>4</objectid>
<shape_area>12619.198751694914</shape_area>
<shape_length>449.34082835540175</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13310188.785390213
            4229343.153172426
          
          
            -13310301.120597305
            4229343.153172426
          
          
            -13310301.120597305
            4229455.488379512
          
          
            -13310188.785390213
            4229455.488379512
          
          
            -13310188.785390213
            4229343.153172426
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>5</id>
<objectid>5</objectid>
<shape_area>12619.198751485674</shape_area>
<shape_length>449.34082835167646</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308953.098112237
            4229230.817965336
          
          
            -13309065.433319323
            4229230.817965336
          
          
            -13309065.433319323
            4229343.153172426
          
          
            -13308953.098112237
            4229343.153172426
          
          
            -13308953.098112237
            4229230.817965336
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>6</id>
<objectid>6</objectid>
<shape_area>12619.198752322636</shape_area>
<shape_length>449.3408283665776</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13309851.779768948
            4229006.147551157
          
          
            -13309964.114976037
            4229006.147551157
          
          
            -13309964.114976037
            4229118.48275825
          
          
            -13309851.779768948
            4229118.48275825
          
          
            -13309851.779768948
            4229006.147551157
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>7</id>
<objectid>7</objectid>
<shape_area>12619.198750648711</shape_area>
<shape_length>449.3408283367753</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13307942.081248436
            4228893.812344074
          
          
            -13308054.416455522
            4228893.812344074
          
          
            -13308054.416455522
            4229006.147551157
          
          
            -13307942.081248436
            4229006.147551157
          
          
            -13307942.081248436
            4228893.812344074
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>8</id>
<objectid>8</objectid>
<shape_area>12619.198752531876</shape_area>
<shape_length>449.3408283703029</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13309402.438940592
            4228781.477136977
          
          
            -13309514.77414768
            4228781.477136977
          
          
            -13309514.77414768
            4228893.812344074
          
          
            -13309402.438940592
            4228893.812344074
          
          
            -13309402.438940592
            4228781.477136977
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>9</id>
<objectid>9</objectid>
<shape_area>12619.198751694914</shape_area>
<shape_length>449.34082835540175</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13309177.768526413
            4228107.4658944495
          
          
            -13309290.103733504
            4228107.4658944495
          
          
            -13309290.103733504
            4228219.801101536
          
          
            -13309177.768526413
            4228219.801101536
          
          
            -13309177.768526413
            4228107.4658944495
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>10</id>
<objectid>10</objectid>
<shape_area>12619.198751904154</shape_area>
<shape_length>449.34082835912704</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13309065.433319323
            4227545.789859001
          
          
            -13309177.768526413
            4227545.789859001
          
          
            -13309177.768526413
            4227658.12506609
          
          
            -13309065.433319323
            4227658.12506609
          
          
            -13309065.433319323
            4227545.789859001
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>11</id>
<objectid>11</objectid>
<shape_area>12619.198751904154</shape_area>
<shape_length>449.34082835912704</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308953.098112237
            4227433.454651911
          
          
            -13308953.098112237
            4227545.789859001
          
          
            -13308840.762905147
            4227545.789859001
          
          
            -13308840.762905147
            4227433.454651911
          
          
            -13308953.098112237
            4227433.454651911
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>12</id>
<objectid>12</objectid>
<shape_area>25238.397501715903</shape_area>
<shape_length>674.0112425163388</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13313446.506395794
            4227321.1194448285
          
          
            -13313671.17680997
            4227321.1194448285
          
          
            -13313671.17680997
            4227433.454651911
          
          
            -13313446.506395794
            4227433.454651911
          
          
            -13313446.506395794
            4227321.1194448285
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>13</id>
<objectid>13</objectid>
<shape_area>12619.198751067192</shape_area>
<shape_length>449.3408283442259</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13313221.835981619
            4227321.1194448285
          
          
            -13313334.171188708
            4227321.1194448285
          
          
            -13313334.171188708
            4227433.454651911
          
          
            -13313221.835981619
            4227433.454651911
          
          
            -13313221.835981619
            4227321.1194448285
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>14</id>
<objectid>14</objectid>
<shape_area>12619.198750648711</shape_area>
<shape_length>449.3408283367753</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308953.098112237
            4227433.454651911
          
          
            -13308953.098112237
            4227321.1194448285
          
          
            -13309065.433319323
            4227321.1194448285
          
          
            -13309065.433319323
            4227433.454651911
          
          
            -13308953.098112237
            4227433.454651911
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>15</id>
<objectid>15</objectid>
<shape_area>12619.198751276432</shape_area>
<shape_length>449.3408283479512</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13313221.835981619
            4227096.449030653
          
          
            -13313221.835981619
            4227208.784237735
          
          
            -13313109.500774527
            4227208.784237735
          
          
            -13313109.500774527
            4227096.449030653
          
          
            -13313221.835981619
            4227096.449030653
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>16</id>
<objectid>16</objectid>
<shape_area>12619.198751067192</shape_area>
<shape_length>449.3408283442259</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13309065.433319323
            4227096.449030653
          
          
            -13309177.768526413
            4227096.449030653
          
          
            -13309177.768526413
            4227208.784237735
          
          
            -13309065.433319323
            4227208.784237735
          
          
            -13309065.433319323
            4227096.449030653
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>17</id>
<objectid>17</objectid>
<shape_area>50476.79500887206</shape_area>
<shape_length>1123.352070890367</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13313221.835981619
            4227096.449030653
          
          
            -13313221.835981619
            4226984.113823555
          
          
            -13313558.841602884
            4226984.113823555
          
          
            -13313558.841602884
            4227208.784237735
          
          
            -13313446.506395794
            4227208.784237735
          
          
            -13313446.506395794
            4227096.449030653
          
          
            -13313221.835981619
            4227096.449030653
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>18</id>
<objectid>18</objectid>
<shape_area>12619.198752531876</shape_area>
<shape_length>449.3408283703029</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13311873.81349655
            4226984.113823555
          
          
            -13311986.148703638
            4226984.113823555
          
          
            -13311986.148703638
            4227096.449030653
          
          
            -13311873.81349655
            4227096.449030653
          
          
            -13311873.81349655
            4226984.113823555
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>19</id>
<objectid>19</objectid>
<shape_area>12619.198751485674</shape_area>
<shape_length>449.34082835167646</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13313446.506395794
            4226759.44340938
          
          
            -13313558.841602884
            4226759.44340938
          
          
            -13313558.841602884
            4226871.778616466
          
          
            -13313446.506395794
            4226871.778616466
          
          
            -13313446.506395794
            4226759.44340938
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>20</id>
<objectid>20</objectid>
<shape_area>50476.79500657041</shape_area>
<shape_length>1123.3520708866417</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13313446.506395794
            4226759.44340938
          
          
            -13313334.171188708
            4226759.44340938
          
          
            -13313334.171188708
            4226871.778616466
          
          
            -13313109.500774527
            4226871.778616466
          
          
            -13313109.500774527
            4226759.44340938
          
          
            -13313221.835981619
            4226759.44340938
          
          
            -13313221.835981619
            4226647.10820229
          
          
            -13313446.506395794
            4226647.10820229
          
          
            -13313446.506395794
            4226759.44340938
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>21</id>
<objectid>21</objectid>
<shape_area>25238.397502971347</shape_area>
<shape_length>674.0112425275147</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13309290.103733504
            4226647.10820229
          
          
            -13309402.438940592
            4226647.10820229
          
          
            -13309402.438940592
            4226871.778616466
          
          
            -13309290.103733504
            4226871.778616466
          
          
            -13309290.103733504
            4226647.10820229
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>22</id>
<objectid>22</objectid>
<shape_area>12619.198751067192</shape_area>
<shape_length>449.3408283442259</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13313558.841602884
            4226534.772995204
          
          
            -13313671.17680997
            4226534.772995204
          
          
            -13313671.17680997
            4226647.10820229
          
          
            -13313558.841602884
            4226647.10820229
          
          
            -13313558.841602884
            4226534.772995204
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>23</id>
<objectid>23</objectid>
<shape_area>12619.198751904154</shape_area>
<shape_length>449.34082835912704</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13313334.171188708
            4226422.43778811
          
          
            -13313446.506395794
            4226422.43778811
          
          
            -13313446.506395794
            4226534.772995204
          
          
            -13313334.171188708
            4226534.772995204
          
          
            -13313334.171188708
            4226422.43778811
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>24</id>
<objectid>24</objectid>
<shape_area>12619.198751276432</shape_area>
<shape_length>449.3408283479512</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13313109.500774527
            4226310.102581028
          
          
            -13313221.835981619
            4226310.102581028
          
          
            -13313221.835981619
            4226422.43778811
          
          
            -13313109.500774527
            4226422.43778811
          
          
            -13313109.500774527
            4226310.102581028
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>25</id>
<objectid>25</objectid>
<shape_area>12619.198750648711</shape_area>
<shape_length>449.3408283367753</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308728.42769806
            4226310.102581028
          
          
            -13308840.762905147
            4226310.102581028
          
          
            -13308840.762905147
            4226422.43778811
          
          
            -13308728.42769806
            4226422.43778811
          
          
            -13308728.42769806
            4226310.102581028
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>26</id>
<objectid>26</objectid>
<shape_area>12619.198750648711</shape_area>
<shape_length>449.3408283367753</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13309739.444561861
            4226085.432166852
          
          
            -13309851.779768948
            4226085.432166852
          
          
            -13309851.779768948
            4226197.767373934
          
          
            -13309739.444561861
            4226197.767373934
          
          
            -13309739.444561861
            4226085.432166852
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>27</id>
<objectid>27</objectid>
<shape_area>25238.39750422679</shape_area>
<shape_length>674.0112425386906</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308728.42769806
            4226310.102581028
          
          
            -13308616.092490967
            4226310.102581028
          
          
            -13308616.092490967
            4226085.432166852
          
          
            -13308728.42769806
            4226085.432166852
          
          
            -13308728.42769806
            4226310.102581028
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>28</id>
<objectid>28</objectid>
<shape_area>12619.198752741117</shape_area>
<shape_length>449.3408283740282</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308840.762905147
            4225973.096959755
          
          
            -13308953.098112237
            4225973.096959755
          
          
            -13308953.098112237
            4226085.432166852
          
          
            -13308840.762905147
            4226085.432166852
          
          
            -13308840.762905147
            4225973.096959755
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>29</id>
<objectid>29</objectid>
<shape_area>12619.198751904154</shape_area>
<shape_length>449.34082835912704</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13311312.137461107
            4225636.0913384855
          
          
            -13311424.472668193
            4225636.0913384855
          
          
            -13311424.472668193
            4225748.426545579
          
          
            -13311312.137461107
            4225748.426545579
          
          
            -13311312.137461107
            4225636.0913384855
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>30</id>
<objectid>30</objectid>
<shape_area>12619.198751485674</shape_area>
<shape_length>449.34082835167646</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308054.416455522
            4225523.756131403
          
          
            -13308166.751662616
            4225523.756131403
          
          
            -13308166.751662616
            4225636.0913384855
          
          
            -13308054.416455522
            4225636.0913384855
          
          
            -13308054.416455522
            4225523.756131403
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>31</id>
<objectid>31</objectid>
<shape_area>12619.198752113394</shape_area>
<shape_length>449.34082836285233</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13311761.478289463
            4225186.750510134
          
          
            -13311873.81349655
            4225186.750510134
          
          
            -13311873.81349655
            4225299.085717227
          
          
            -13311761.478289463
            4225299.085717227
          
          
            -13311761.478289463
            4225186.750510134
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>32</id>
<objectid>32</objectid>
<shape_area>12619.198752531876</shape_area>
<shape_length>449.3408283703029</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13311536.807875283
            4225186.750510134
          
          
            -13311649.143082375
            4225186.750510134
          
          
            -13311649.143082375
            4225299.085717227
          
          
            -13311536.807875283
            4225299.085717227
          
          
            -13311536.807875283
            4225186.750510134
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>33</id>
<objectid>33</objectid>
<shape_area>12619.19875043947</shape_area>
<shape_length>449.34082833305</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308166.751662616
            4225074.415303055
          
          
            -13308279.086869704
            4225074.415303055
          
          
            -13308279.086869704
            4225186.750510134
          
          
            -13308166.751662616
            4225186.750510134
          
          
            -13308166.751662616
            4225074.415303055
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>34</id>
<objectid>34</objectid>
<shape_area>25238.397505900713</shape_area>
<shape_length>674.0112425535917</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308953.098112237
            4224962.080095954
          
          
            -13309177.768526413
            4224962.080095954
          
          
            -13309177.768526413
            4225074.415303055
          
          
            -13308953.098112237
            4225074.415303055
          
          
            -13308953.098112237
            4224962.080095954
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>35</id>
<objectid>35</objectid>
<shape_area>12619.198751485674</shape_area>
<shape_length>449.34082835167646</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308840.762905147
            4224849.744888864
          
          
            -13308840.762905147
            4224962.080095954
          
          
            -13308728.42769806
            4224962.080095954
          
          
            -13308728.42769806
            4224849.744888864
          
          
            -13308840.762905147
            4224849.744888864
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>36</id>
<objectid>36</objectid>
<shape_area>12619.198751485674</shape_area>
<shape_length>449.34082835167646</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308840.762905147
            4224849.744888864
          
          
            -13308840.762905147
            4224737.409681778
          
          
            -13308953.098112237
            4224737.409681778
          
          
            -13308953.098112237
            4224849.744888864
          
          
            -13308840.762905147
            4224849.744888864
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>37</id>
<objectid>37</objectid>
<shape_area>25238.39750485451</shape_area>
<shape_length>674.0112425498664</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308503.75728388
            4224625.074474685
          
          
            -13308728.42769806
            4224625.074474685
          
          
            -13308728.42769806
            4224737.409681778
          
          
            -13308503.75728388
            4224737.409681778
          
          
            -13308503.75728388
            4224625.074474685
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>38</id>
<objectid>38</objectid>
<shape_area>12619.198752741117</shape_area>
<shape_length>449.3408283740282</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13311199.802254014
            4224400.404060509
          
          
            -13311312.137461107
            4224400.404060509
          
          
            -13311312.137461107
            4224512.739267603
          
          
            -13311199.802254014
            4224512.739267603
          
          
            -13311199.802254014
            4224400.404060509
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>39</id>
<objectid>39</objectid>
<shape_area>37857.59625466626</shape_area>
<shape_length>898.6816567070782</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308503.75728388
            4224625.074474685
          
          
            -13308391.422076792
            4224625.074474685
          
          
            -13308391.422076792
            4224288.068853419
          
          
            -13308503.75728388
            4224288.068853419
          
          
            -13308503.75728388
            4224625.074474685
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>40</id>
<objectid>40</objectid>
<shape_area>37857.59625508474</shape_area>
<shape_length>898.6816567108035</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13310188.785390213
            4224175.733646333
          
          
            -13310413.455804393
            4224175.733646333
          
          
            -13310413.455804393
            4224288.068853419
          
          
            -13310301.120597305
            4224288.068853419
          
          
            -13310301.120597305
            4224400.404060509
          
          
            -13310188.785390213
            4224400.404060509
          
          
            -13310188.785390213
            4224175.733646333
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>41</id>
<objectid>41</objectid>
<shape_area>25238.39750401755</shape_area>
<shape_length>674.0112425424159</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13310525.79101148
            4224063.398439243
          
          
            -13310750.461425662
            4224063.398439243
          
          
            -13310750.461425662
            4224175.733646333
          
          
            -13310525.79101148
            4224175.733646333
          
          
            -13310525.79101148
            4224063.398439243
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>42</id>
<objectid>42</objectid>
<shape_area>12619.198751276432</shape_area>
<shape_length>449.3408283479512</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13310188.785390213
            4223726.392817982
          
          
            -13310301.120597305
            4223726.392817982
          
          
            -13310301.120597305
            4223838.728025064
          
          
            -13310188.785390213
            4223838.728025064
          
          
            -13310188.785390213
            4223726.392817982
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>43</id>
<objectid>43</objectid>
<shape_area>12619.198752741117</shape_area>
<shape_length>449.3408283740282</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13309964.114976037
            4223614.057610884
          
          
            -13309964.114976037
            4223726.392817982
          
          
            -13309851.779768948
            4223726.392817982
          
          
            -13309851.779768948
            4223614.057610884
          
          
            -13309964.114976037
            4223614.057610884
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>44</id>
<objectid>44</objectid>
<shape_area>63095.993758474564</shape_area>
<shape_length>1348.0224850699306</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308166.751662616
            4223614.057610884
          
          
            -13308279.086869704
            4223614.057610884
          
          
            -13308279.086869704
            4223838.728025064
          
          
            -13308391.422076792
            4223838.728025064
          
          
            -13308391.422076792
            4224063.398439243
          
          
            -13308279.086869704
            4224063.398439243
          
          
            -13308279.086869704
            4223951.063232154
          
          
            -13308166.751662616
            4223951.063232154
          
          
            -13308166.751662616
            4223614.057610884
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>45</id>
<objectid>45</objectid>
<shape_area>25238.397502971347</shape_area>
<shape_length>674.0112425275147</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13309514.77414768
            4223501.722403806
          
          
            -13309627.109354768
            4223501.722403806
          
          
            -13309627.109354768
            4223726.392817982
          
          
            -13309514.77414768
            4223726.392817982
          
          
            -13309514.77414768
            4223501.722403806
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>46</id>
<objectid>46</objectid>
<shape_area>25238.397502552863</shape_area>
<shape_length>674.0112425237894</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13309964.114976037
            4223614.057610884
          
          
            -13309964.114976037
            4223389.3871967085
          
          
            -13310076.450183123
            4223389.3871967085
          
          
            -13310076.450183123
            4223614.057610884
          
          
            -13309964.114976037
            4223614.057610884
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>47</id>
<objectid>47</objectid>
<shape_area>25238.397503808308</shape_area>
<shape_length>674.0112425386906</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13309177.768526413
            4223052.381575443
          
          
            -13309402.438940592
            4223052.381575443
          
          
            -13309402.438940592
            4223164.716782533
          
          
            -13309177.768526413
            4223164.716782533
          
          
            -13309177.768526413
            4223052.381575443
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>48</id>
<objectid>48</objectid>
<shape_area>12619.198750857951</shape_area>
<shape_length>449.3408283405006</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308279.086869704
            4222715.375954181
          
          
            -13308391.422076792
            4222715.375954181
          
          
            -13308391.422076792
            4222827.711161263
          
          
            -13308279.086869704
            4222827.711161263
          
          
            -13308279.086869704
            4222715.375954181
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>49</id>
<objectid>49</objectid>
<shape_area>12619.198752950357</shape_area>
<shape_length>449.3408283777535</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13309177.768526413
            4222603.040747084
          
          
            -13309290.103733504
            4222603.040747084
          
          
            -13309290.103733504
            4222715.375954181
          
          
            -13309177.768526413
            4222715.375954181
          
          
            -13309177.768526413
            4222603.040747084
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>50</id>
<objectid>50</objectid>
<shape_area>12619.198752322636</shape_area>
<shape_length>449.3408283665776</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13309065.433319323
            4222603.040747084
          
          
            -13309065.433319323
            4222715.375954181
          
          
            -13308953.098112237
            4222715.375954181
          
          
            -13308953.098112237
            4222603.040747084
          
          
            -13309065.433319323
            4222603.040747084
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>51</id>
<objectid>51</objectid>
<shape_area>12619.198750648711</shape_area>
<shape_length>449.3408283367753</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13309177.768526413
            4222603.040747084
          
          
            -13309065.433319323
            4222603.040747084
          
          
            -13309065.433319323
            4222490.705540005
          
          
            -13309177.768526413
            4222490.705540005
          
          
            -13309177.768526413
            4222603.040747084
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>52</id>
<objectid>52</objectid>
<shape_area>12619.198752531876</shape_area>
<shape_length>449.3408283703029</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308503.75728388
            4222378.370332908
          
          
            -13308616.092490967
            4222378.370332908
          
          
            -13308616.092490967
            4222490.705540005
          
          
            -13308503.75728388
            4222490.705540005
          
          
            -13308503.75728388
            4222378.370332908
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>53</id>
<objectid>53</objectid>
<shape_area>12619.198752531876</shape_area>
<shape_length>449.3408283703029</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308166.751662616
            4222378.370332908
          
          
            -13308279.086869704
            4222378.370332908
          
          
            -13308279.086869704
            4222490.705540005
          
          
            -13308166.751662616
            4222490.705540005
          
          
            -13308166.751662616
            4222378.370332908
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>54</id>
<objectid>54</objectid>
<shape_area>12619.198752113394</shape_area>
<shape_length>449.34082836285233</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13310301.120597305
            4222266.035125818
          
          
            -13310301.120597305
            4222378.370332908
          
          
            -13310188.785390213
            4222378.370332908
          
          
            -13310188.785390213
            4222266.035125818
          
          
            -13310301.120597305
            4222266.035125818
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>55</id>
<objectid>55</objectid>
<shape_area>12619.198751904154</shape_area>
<shape_length>449.34082835912704</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308840.762905147
            4222266.035125818
          
          
            -13308953.098112237
            4222266.035125818
          
          
            -13308953.098112237
            4222378.370332908
          
          
            -13308840.762905147
            4222378.370332908
          
          
            -13308840.762905147
            4222266.035125818
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>56</id>
<objectid>56</objectid>
<shape_area>12619.198752322636</shape_area>
<shape_length>449.3408283665776</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308166.751662616
            4222378.370332908
          
          
            -13308054.416455522
            4222378.370332908
          
          
            -13308054.416455522
            4222266.035125818
          
          
            -13308166.751662616
            4222266.035125818
          
          
            -13308166.751662616
            4222378.370332908
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>57</id>
<objectid>57</objectid>
<shape_area>12619.198751276432</shape_area>
<shape_length>449.3408283479512</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13312098.483910726
            4222153.699918732
          
          
            -13312210.819117814
            4222153.699918732
          
          
            -13312210.819117814
            4222266.035125818
          
          
            -13312098.483910726
            4222266.035125818
          
          
            -13312098.483910726
            4222153.699918732
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>58</id>
<objectid>58</objectid>
<shape_area>12619.198751276432</shape_area>
<shape_length>449.3408283479512</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13310301.120597305
            4222153.699918732
          
          
            -13310413.455804393
            4222153.699918732
          
          
            -13310413.455804393
            4222266.035125818
          
          
            -13310301.120597305
            4222266.035125818
          
          
            -13310301.120597305
            4222153.699918732
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>59</id>
<objectid>59</objectid>
<shape_area>37857.596255503224</shape_area>
<shape_length>898.6816567219794</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13309290.103733504
            4222153.699918732
          
          
            -13309402.438940592
            4222153.699918732
          
          
            -13309402.438940592
            4222490.705540005
          
          
            -13309290.103733504
            4222490.705540005
          
          
            -13309290.103733504
            4222153.699918732
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>60</id>
<objectid>60</objectid>
<shape_area>12619.198751276432</shape_area>
<shape_length>449.3408283479512</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308503.75728388
            4222153.699918732
          
          
            -13308616.092490967
            4222153.699918732
          
          
            -13308616.092490967
            4222266.035125818
          
          
            -13308503.75728388
            4222266.035125818
          
          
            -13308503.75728388
            4222153.699918732
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>61</id>
<objectid>61</objectid>
<shape_area>37857.59625466626</shape_area>
<shape_length>898.6816567033529</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308279.086869704
            4222153.699918732
          
          
            -13308391.422076792
            4222153.699918732
          
          
            -13308391.422076792
            4222266.035125818
          
          
            -13308503.75728388
            4222266.035125818
          
          
            -13308503.75728388
            4222378.370332908
          
          
            -13308279.086869704
            4222378.370332908
          
          
            -13308279.086869704
            4222153.699918732
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>62</id>
<objectid>62</objectid>
<shape_area>12619.198751694914</shape_area>
<shape_length>449.34082835540175</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13310413.455804393
            4222153.699918732
          
          
            -13310413.455804393
            4222041.364711642
          
          
            -13310525.79101148
            4222041.364711642
          
          
            -13310525.79101148
            4222153.699918732
          
          
            -13310413.455804393
            4222153.699918732
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>63</id>
<objectid>63</objectid>
<shape_area>12619.198752113394</shape_area>
<shape_length>449.34082836285233</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13310301.120597305
            4222153.699918732
          
          
            -13310188.785390213
            4222153.699918732
          
          
            -13310188.785390213
            4222041.364711642
          
          
            -13310301.120597305
            4222041.364711642
          
          
            -13310301.120597305
            4222153.699918732
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>64</id>
<objectid>64</objectid>
<shape_area>12619.198752322636</shape_area>
<shape_length>449.3408283665776</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308616.092490967
            4222041.364711642
          
          
            -13308728.42769806
            4222041.364711642
          
          
            -13308728.42769806
            4222153.699918732
          
          
            -13308616.092490967
            4222153.699918732
          
          
            -13308616.092490967
            4222041.364711642
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>65</id>
<objectid>65</objectid>
<shape_area>12619.198751694914</shape_area>
<shape_length>449.34082835540175</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308391.422076792
            4222041.364711642
          
          
            -13308503.75728388
            4222041.364711642
          
          
            -13308503.75728388
            4222153.699918732
          
          
            -13308391.422076792
            4222153.699918732
          
          
            -13308391.422076792
            4222041.364711642
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>66</id>
<objectid>66</objectid>
<shape_area>25238.397502552863</shape_area>
<shape_length>674.0112425237894</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13309739.444561861
            4221929.029504556
          
          
            -13309964.114976037
            4221929.029504556
          
          
            -13309964.114976037
            4222041.364711642
          
          
            -13309739.444561861
            4222041.364711642
          
          
            -13309739.444561861
            4221929.029504556
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>67</id>
<objectid>67</objectid>
<shape_area>63095.993758683806</shape_area>
<shape_length>1123.3520708866417</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13309290.103733504
            4221929.029504556
          
          
            -13309290.103733504
            4222153.699918732
          
          
            -13308953.098112237
            4222153.699918732
          
          
            -13308953.098112237
            4222041.364711642
          
          
            -13309065.433319323
            4222041.364711642
          
          
            -13309065.433319323
            4221929.029504556
          
          
            -13309290.103733504
            4221929.029504556
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>68</id>
<objectid>68</objectid>
<shape_area>25238.39750422679</shape_area>
<shape_length>674.0112425386906</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13312547.824739084
            4221816.694297463
          
          
            -13312772.49515326
            4221816.694297463
          
          
            -13312772.49515326
            4221929.029504556
          
          
            -13312547.824739084
            4221929.029504556
          
          
            -13312547.824739084
            4221816.694297463
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>69</id>
<objectid>69</objectid>
<shape_area>12619.198752741117</shape_area>
<shape_length>449.3408283740282</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13312210.819117814
            4221816.694297463
          
          
            -13312323.154324908
            4221816.694297463
          
          
            -13312323.154324908
            4221929.029504556
          
          
            -13312210.819117814
            4221929.029504556
          
          
            -13312210.819117814
            4221816.694297463
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>70</id>
<objectid>70</objectid>
<shape_area>12619.198752113394</shape_area>
<shape_length>449.34082836285233</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13311873.81349655
            4221816.694297463
          
          
            -13311986.148703638
            4221816.694297463
          
          
            -13311986.148703638
            4221929.029504556
          
          
            -13311873.81349655
            4221929.029504556
          
          
            -13311873.81349655
            4221816.694297463
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>71</id>
<objectid>71</objectid>
<shape_area>50476.7950080351</shape_area>
<shape_length>1123.3520708940923</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308503.75728388
            4221816.694297463
          
          
            -13308840.762905147
            4221816.694297463
          
          
            -13308840.762905147
            4221929.029504556
          
          
            -13308616.092490967
            4221929.029504556
          
          
            -13308616.092490967
            4222041.364711642
          
          
            -13308503.75728388
            4222041.364711642
          
          
            -13308503.75728388
            4221816.694297463
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>72</id>
<objectid>72</objectid>
<shape_area>12619.198752741117</shape_area>
<shape_length>449.3408283740282</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13307043.399591722
            4221816.694297463
          
          
            -13307155.734798815
            4221816.694297463
          
          
            -13307155.734798815
            4221929.029504556
          
          
            -13307043.399591722
            4221929.029504556
          
          
            -13307043.399591722
            4221816.694297463
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>73</id>
<objectid>73</objectid>
<shape_area>12619.198750857951</shape_area>
<shape_length>449.3408283405006</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13319175.601957332
            4221704.35909038
          
          
            -13319175.601957332
            4221816.694297463
          
          
            -13319063.266750244
            4221816.694297463
          
          
            -13319063.266750244
            4221704.35909038
          
          
            -13319175.601957332
            4221704.35909038
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>74</id>
<objectid>74</objectid>
<shape_area>12619.198750648711</shape_area>
<shape_length>449.3408283367753</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13313558.841602884
            4221704.35909038
          
          
            -13313671.17680997
            4221704.35909038
          
          
            -13313671.17680997
            4221816.694297463
          
          
            -13313558.841602884
            4221816.694297463
          
          
            -13313558.841602884
            4221704.35909038
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>75</id>
<objectid>75</objectid>
<shape_area>63095.99375491748</shape_area>
<shape_length>1348.0224850550294</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13310076.450183123
            4221704.35909038
          
          
            -13310638.126218569
            4221704.35909038
          
          
            -13310638.126218569
            4221816.694297463
          
          
            -13310076.450183123
            4221816.694297463
          
          
            -13310076.450183123
            4221704.35909038
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>76</id>
<objectid>76</objectid>
<shape_area>12619.198752531876</shape_area>
<shape_length>449.3408283703029</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13319175.601957332
            4221704.35909038
          
          
            -13319175.601957332
            4221592.023883283
          
          
            -13319287.93716442
            4221592.023883283
          
          
            -13319287.93716442
            4221704.35909038
          
          
            -13319175.601957332
            4221704.35909038
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>77</id>
<objectid>77</objectid>
<shape_area>12619.198752741117</shape_area>
<shape_length>449.3408283740282</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13313558.841602884
            4221704.35909038
          
          
            -13313446.506395794
            4221704.35909038
          
          
            -13313446.506395794
            4221592.023883283
          
          
            -13313558.841602884
            4221592.023883283
          
          
            -13313558.841602884
            4221704.35909038
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>78</id>
<objectid>78</objectid>
<shape_area>25238.397505063753</shape_area>
<shape_length>674.0112425461411</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13312772.49515326
            4221592.023883283
          
          
            -13312772.49515326
            4221704.35909038
          
          
            -13312547.824739084
            4221704.35909038
          
          
            -13312547.824739084
            4221592.023883283
          
          
            -13312772.49515326
            4221592.023883283
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>79</id>
<objectid>79</objectid>
<shape_area>12619.198752531876</shape_area>
<shape_length>449.3408283703029</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13312098.483910726
            4221592.023883283
          
          
            -13312210.819117814
            4221592.023883283
          
          
            -13312210.819117814
            4221704.35909038
          
          
            -13312098.483910726
            4221704.35909038
          
          
            -13312098.483910726
            4221592.023883283
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>80</id>
<objectid>80</objectid>
<shape_area>12619.198752531876</shape_area>
<shape_length>449.3408283703029</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13311873.81349655
            4221592.023883283
          
          
            -13311986.148703638
            4221592.023883283
          
          
            -13311986.148703638
            4221704.35909038
          
          
            -13311873.81349655
            4221704.35909038
          
          
            -13311873.81349655
            4221592.023883283
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>81</id>
<objectid>81</objectid>
<shape_area>12619.198752322636</shape_area>
<shape_length>449.3408283665776</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13310750.461425662
            4221592.023883283
          
          
            -13310862.796632748
            4221592.023883283
          
          
            -13310862.796632748
            4221704.35909038
          
          
            -13310750.461425662
            4221704.35909038
          
          
            -13310750.461425662
            4221592.023883283
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>82</id>
<objectid>82</objectid>
<shape_area>12619.198752113394</shape_area>
<shape_length>449.34082836285233</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13312772.49515326
            4221592.023883283
          
          
            -13312772.49515326
            4221479.688676193
          
          
            -13312884.830360351
            4221479.688676193
          
          
            -13312884.830360351
            4221592.023883283
          
          
            -13312772.49515326
            4221592.023883283
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>83</id>
<objectid>83</objectid>
<shape_area>37857.5962559217</shape_area>
<shape_length>898.6816567257047</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308503.75728388
            4221704.35909038
          
          
            -13308503.75728388
            4221592.023883283
          
          
            -13308391.422076792
            4221592.023883283
          
          
            -13308391.422076792
            4221479.688676193
          
          
            -13308616.092490967
            4221479.688676193
          
          
            -13308616.092490967
            4221704.35909038
          
          
            -13308503.75728388
            4221704.35909038
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>84</id>
<objectid>84</objectid>
<shape_area>315479.96879341913</shape_area>
<shape_length>3819.39704105258</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308279.086869704
            4221592.023883283
          
          
            -13308054.416455522
            4221592.023883283
          
          
            -13308054.416455522
            4221704.35909038
          
          
            -13308279.086869704
            4221704.35909038
          
          
            -13308279.086869704
            4221592.023883283
          
          
            -13308391.422076792
            4221592.023883283
          
          
            -13308391.422076792
            4221704.35909038
          
          
            -13308503.75728388
            4221704.35909038
          
          
            -13308503.75728388
            4221816.694297463
          
          
            -13308391.422076792
            4221816.694297463
          
          
            -13308391.422076792
            4222041.364711642
          
          
            -13308279.086869704
            4222041.364711642
          
          
            -13308279.086869704
            4222153.699918732
          
          
            -13307829.746041346
            4222153.699918732
          
          
            -13307829.746041346
            4221929.029504556
          
          
            -13307942.081248436
            4221929.029504556
          
          
            -13307942.081248436
            4221704.35909038
          
          
            -13307717.41083426
            4221704.35909038
          
          
            -13307717.41083426
            4221592.023883283
          
          
            -13307942.081248436
            4221592.023883283
          
          
            -13307942.081248436
            4221479.688676193
          
          
            -13308279.086869704
            4221479.688676193
          
          
            -13308279.086869704
            4221592.023883283
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>85</id>
<objectid>85</objectid>
<shape_area>75715.19251351734</shape_area>
<shape_length>1348.022485088557</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13313671.17680997
            4221704.35909038
          
          
            -13313671.17680997
            4221479.688676193
          
          
            -13313783.51201706
            4221479.688676193
          
          
            -13313783.51201706
            4221255.0182620175
          
          
            -13313895.847224152
            4221255.0182620175
          
          
            -13313895.847224152
            4221704.35909038
          
          
            -13313671.17680997
            4221704.35909038
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>86</id>
<objectid>86</objectid>
<shape_area>25238.397503389828</shape_area>
<shape_length>674.01124253124</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13313221.835981619
            4221255.0182620175
          
          
            -13313446.506395794
            4221255.0182620175
          
          
            -13313446.506395794
            4221367.353469107
          
          
            -13313221.835981619
            4221367.353469107
          
          
            -13313221.835981619
            4221255.0182620175
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>87</id>
<objectid>87</objectid>
<shape_area>12619.198751694914</shape_area>
<shape_length>449.34082835540175</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13312997.165567439
            4221255.0182620175
          
          
            -13313109.500774527
            4221255.0182620175
          
          
            -13313109.500774527
            4221367.353469107
          
          
            -13312997.165567439
            4221367.353469107
          
          
            -13312997.165567439
            4221255.0182620175
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>88</id>
<objectid>88</objectid>
<shape_area>12619.198751485674</shape_area>
<shape_length>449.34082835167646</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13312547.824739084
            4221255.0182620175
          
          
            -13312660.15994617
            4221255.0182620175
          
          
            -13312660.15994617
            4221367.353469107
          
          
            -13312547.824739084
            4221367.353469107
          
          
            -13312547.824739084
            4221255.0182620175
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>89</id>
<objectid>89</objectid>
<shape_area>12619.198751485674</shape_area>
<shape_length>449.34082835167646</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13311312.137461107
            4221255.0182620175
          
          
            -13311424.472668193
            4221255.0182620175
          
          
            -13311424.472668193
            4221367.353469107
          
          
            -13311312.137461107
            4221367.353469107
          
          
            -13311312.137461107
            4221255.0182620175
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>90</id>
<objectid>90</objectid>
<shape_area>50476.795006779656</shape_area>
<shape_length>1123.3520708829165</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13309739.444561861
            4221479.688676193
          
          
            -13309851.779768948
            4221479.688676193
          
          
            -13309851.779768948
            4221255.0182620175
          
          
            -13309964.114976037
            4221255.0182620175
          
          
            -13309964.114976037
            4221592.023883283
          
          
            -13309739.444561861
            4221592.023883283
          
          
            -13309739.444561861
            4221479.688676193
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>91</id>
<objectid>91</objectid>
<shape_area>12619.198751694914</shape_area>
<shape_length>449.34082835540175</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13313221.835981619
            4221255.0182620175
          
          
            -13313109.500774527
            4221255.0182620175
          
          
            -13313109.500774527
            4221142.683054931
          
          
            -13313221.835981619
            4221142.683054931
          
          
            -13313221.835981619
            4221255.0182620175
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>92</id>
<objectid>92</objectid>
<shape_area>12619.198751485674</shape_area>
<shape_length>449.34082835167646</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13312547.824739084
            4221255.0182620175
          
          
            -13312435.489531994
            4221255.0182620175
          
          
            -13312435.489531994
            4221142.683054931
          
          
            -13312547.824739084
            4221142.683054931
          
          
            -13312547.824739084
            4221255.0182620175
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>93</id>
<objectid>93</objectid>
<shape_area>12619.198751694914</shape_area>
<shape_length>449.34082835540175</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13311536.807875283
            4221142.683054931
          
          
            -13311649.143082375
            4221142.683054931
          
          
            -13311649.143082375
            4221255.0182620175
          
          
            -13311536.807875283
            4221255.0182620175
          
          
            -13311536.807875283
            4221142.683054931
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>94</id>
<objectid>94</objectid>
<shape_area>214526.37878320756</shape_area>
<shape_length>3594.726626865566</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13309739.444561861
            4221479.688676193
          
          
            -13309514.77414768
            4221479.688676193
          
          
            -13309514.77414768
            4221592.023883283
          
          
            -13309402.438940592
            4221592.023883283
          
          
            -13309402.438940592
            4221816.694297463
          
          
            -13309739.444561861
            4221816.694297463
          
          
            -13309739.444561861
            4221929.029504556
          
          
            -13309290.103733504
            4221929.029504556
          
          
            -13309290.103733504
            4221704.35909038
          
          
            -13309177.768526413
            4221704.35909038
          
          
            -13309177.768526413
            4221592.023883283
          
          
            -13309065.433319323
            4221592.023883283
          
          
            -13309065.433319323
            4221479.688676193
          
          
            -13309402.438940592
            4221479.688676193
          
          
            -13309402.438940592
            4221367.353469107
          
          
            -13309514.77414768
            4221367.353469107
          
          
            -13309514.77414768
            4221255.0182620175
          
          
            -13309627.109354768
            4221255.0182620175
          
          
            -13309627.109354768
            4221142.683054931
          
          
            -13309739.444561861
            4221142.683054931
          
          
            -13309739.444561861
            4221479.688676193
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>95</id>
<objectid>95</objectid>
<shape_area>25238.397502552863</shape_area>
<shape_length>674.0112425237894</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308728.42769806
            4221142.683054931
          
          
            -13308953.098112237
            4221142.683054931
          
          
            -13308953.098112237
            4221255.0182620175
          
          
            -13308728.42769806
            4221255.0182620175
          
          
            -13308728.42769806
            4221142.683054931
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>96</id>
<objectid>96</objectid>
<shape_area>12619.198751067192</shape_area>
<shape_length>449.3408283442259</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13307717.41083426
            4221142.683054931
          
          
            -13307829.746041346
            4221142.683054931
          
          
            -13307829.746041346
            4221255.0182620175
          
          
            -13307717.41083426
            4221255.0182620175
          
          
            -13307717.41083426
            4221142.683054931
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>97</id>
<objectid>97</objectid>
<shape_area>37857.59625466626</shape_area>
<shape_length>898.6816567108035</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13312997.165567439
            4221255.0182620175
          
          
            -13312772.49515326
            4221255.0182620175
          
          
            -13312772.49515326
            4221142.683054931
          
          
            -13312884.830360351
            4221142.683054931
          
          
            -13312884.830360351
            4221030.347847842
          
          
            -13312997.165567439
            4221030.347847842
          
          
            -13312997.165567439
            4221255.0182620175
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>98</id>
<objectid>98</objectid>
<shape_area>25238.39750401755</shape_area>
<shape_length>674.0112425424159</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13310076.450183123
            4221030.347847842
          
          
            -13310301.120597305
            4221030.347847842
          
          
            -13310301.120597305
            4221142.683054931
          
          
            -13310076.450183123
            4221142.683054931
          
          
            -13310076.450183123
            4221030.347847842
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>99</id>
<objectid>99</objectid>
<shape_area>12619.198751485674</shape_area>
<shape_length>449.34082835167646</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13306369.38834919
            4221030.347847842
          
          
            -13306481.723556276
            4221030.347847842
          
          
            -13306481.723556276
            4221142.683054931
          
          
            -13306369.38834919
            4221142.683054931
          
          
            -13306369.38834919
            4221030.347847842
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>100</id>
<objectid>100</objectid>
<shape_area>25238.397502552863</shape_area>
<shape_length>674.0112425237894</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13310076.450183123
            4220918.012640756
          
          
            -13310076.450183123
            4221030.347847842
          
          
            -13309851.779768948
            4221030.347847842
          
          
            -13309851.779768948
            4220918.012640756
          
          
            -13310076.450183123
            4220918.012640756
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>101</id>
<objectid>101</objectid>
<shape_area>12619.198751485674</shape_area>
<shape_length>449.34082835167646</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13309065.433319323
            4220918.012640756
          
          
            -13309177.768526413
            4220918.012640756
          
          
            -13309177.768526413
            4221030.347847842
          
          
            -13309065.433319323
            4221030.347847842
          
          
            -13309065.433319323
            4220918.012640756
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>102</id>
<objectid>102</objectid>
<shape_area>12619.198751904154</shape_area>
<shape_length>449.34082835912704</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13307605.075627167
            4220918.012640756
          
          
            -13307717.41083426
            4220918.012640756
          
          
            -13307717.41083426
            4221030.347847842
          
          
            -13307605.075627167
            4221030.347847842
          
          
            -13307605.075627167
            4220918.012640756
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>103</id>
<objectid>103</objectid>
<shape_area>37857.59625696791</shape_area>
<shape_length>898.68165672943</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13310076.450183123
            4220918.012640756
          
          
            -13310076.450183123
            4220805.677433662
          
          
            -13310188.785390213
            4220805.677433662
          
          
            -13310188.785390213
            4220693.342226572
          
          
            -13310301.120597305
            4220693.342226572
          
          
            -13310301.120597305
            4220918.012640756
          
          
            -13310076.450183123
            4220918.012640756
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>104</id>
<objectid>104</objectid>
<shape_area>12619.198752113394</shape_area>
<shape_length>449.34082836285233</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13315131.53450213
            4220581.007019483
          
          
            -13315243.869709222
            4220581.007019483
          
          
            -13315243.869709222
            4220693.342226572
          
          
            -13315131.53450213
            4220693.342226572
          
          
            -13315131.53450213
            4220581.007019483
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>105</id>
<objectid>105</objectid>
<shape_area>25238.397504645272</shape_area>
<shape_length>674.0112425461411</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13307155.734798815
            4220468.671812393
          
          
            -13307155.734798815
            4220693.342226572
          
          
            -13307043.399591722
            4220693.342226572
          
          
            -13307043.399591722
            4220468.671812393
          
          
            -13307155.734798815
            4220468.671812393
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>106</id>
<objectid>106</objectid>
<shape_area>12619.198751485674</shape_area>
<shape_length>449.34082835167646</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13313671.17680997
            4220356.336605307
          
          
            -13313783.51201706
            4220356.336605307
          
          
            -13313783.51201706
            4220468.671812393
          
          
            -13313671.17680997
            4220468.671812393
          
          
            -13313671.17680997
            4220356.336605307
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>107</id>
<objectid>107</objectid>
<shape_area>12619.198751485674</shape_area>
<shape_length>449.34082835167646</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13313446.506395794
            4220356.336605307
          
          
            -13313558.841602884
            4220356.336605307
          
          
            -13313558.841602884
            4220468.671812393
          
          
            -13313446.506395794
            4220468.671812393
          
          
            -13313446.506395794
            4220356.336605307
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>108</id>
<objectid>108</objectid>
<shape_area>100953.59001439626</shape_area>
<shape_length>1797.3633134290576</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308953.098112237
            4220356.336605307
          
          
            -13308953.098112237
            4220581.007019483
          
          
            -13309065.433319323
            4220581.007019483
          
          
            -13309065.433319323
            4220693.342226572
          
          
            -13309177.768526413
            4220693.342226572
          
          
            -13309177.768526413
            4220805.677433662
          
          
            -13308953.098112237
            4220805.677433662
          
          
            -13308953.098112237
            4220918.012640756
          
          
            -13308840.762905147
            4220918.012640756
          
          
            -13308840.762905147
            4220356.336605307
          
          
            -13308953.098112237
            4220356.336605307
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>109</id>
<objectid>109</objectid>
<shape_area>37857.596255503224</shape_area>
<shape_length>898.6816567145288</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13308953.098112237
            4220356.336605307
          
          
            -13308953.098112237
            4220244.001398217
          
          
            -13309290.103733504
            4220244.001398217
          
          
            -13309290.103733504
            4220356.336605307
          
          
            -13308953.098112237
            4220356.336605307
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>110</id>
<objectid>110</objectid>
<shape_area>75715.19250933253</shape_area>
<shape_length>1572.6928992383182</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13307155.734798815
            4220468.671812393
          
          
            -13307155.734798815
            4220244.001398217
          
          
            -13307268.070005901
            4220244.001398217
          
          
            -13307268.070005901
            4220356.336605307
          
          
            -13307380.405212991
            4220356.336605307
          
          
            -13307380.405212991
            4220468.671812393
          
          
            -13307492.740420079
            4220468.671812393
          
          
            -13307492.740420079
            4220693.342226572
          
          
            -13307380.405212991
            4220693.342226572
          
          
            -13307380.405212991
            4220581.007019483
          
          
            -13307268.070005901
            4220581.007019483
          
          
            -13307268.070005901
            4220468.671812393
          
          
            -13307155.734798815
            4220468.671812393
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>111</id>
<objectid>111</objectid>
<shape_area>12619.198750230229</shape_area>
<shape_length>449.3408283293247</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13307268.070005901
            4219906.995776959
          
          
            -13307268.070005901
            4220019.330984037
          
          
            -13307155.734798815
            4220019.330984037
          
          
            -13307155.734798815
            4219906.995776959
          
          
            -13307268.070005901
            4219906.995776959
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>112</id>
<objectid>112</objectid>
<shape_area>12619.198752741117</shape_area>
<shape_length>449.3408283740282</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13307268.070005901
            4219906.995776959
          
          
            -13307268.070005901
            4219794.6605698615
          
          
            -13307380.405212991
            4219794.6605698615
          
          
            -13307380.405212991
            4219906.995776959
          
          
            -13307268.070005901
            4219906.995776959
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>113</id>
<objectid>113</objectid>
<shape_area>25238.39750401755</shape_area>
<shape_length>674.0112425424159</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13307155.734798815
            4219682.325362772
          
          
            -13307155.734798815
            4219794.6605698615
          
          
            -13306931.064384634
            4219794.6605698615
          
          
            -13306931.064384634
            4219682.325362772
          
          
            -13307155.734798815
            4219682.325362772
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>114</id>
<objectid>114</objectid>
<shape_area>12619.198751067192</shape_area>
<shape_length>449.3408283442259</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13307155.734798815
            4219682.325362772
          
          
            -13307155.734798815
            4219569.990155686
          
          
            -13307268.070005901
            4219569.990155686
          
          
            -13307268.070005901
            4219682.325362772
          
          
            -13307155.734798815
            4219682.325362772
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>115</id>
<objectid>115</objectid>
<shape_area>37857.596255503224</shape_area>
<shape_length>898.6816567219794</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13306706.393970458
            4219569.990155686
          
          
            -13306818.729177546
            4219569.990155686
          
          
            -13306818.729177546
            4219906.995776959
          
          
            -13306706.393970458
            4219906.995776959
          
          
            -13306706.393970458
            4219569.990155686
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>116</id>
<objectid>116</objectid>
<shape_area>12619.198750648711</shape_area>
<shape_length>449.3408283367753</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13306144.717935015
            4219345.31974151
          
          
            -13306257.0531421
            4219345.31974151
          
          
            -13306257.0531421
            4219457.654948592
          
          
            -13306144.717935015
            4219457.654948592
          
          
            -13306144.717935015
            4219345.31974151
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>117</id>
<objectid>117</objectid>
<shape_area>12619.198752322636</shape_area>
<shape_length>449.3408283665776</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13309851.779768948
            4219232.984534416
          
          
            -13309964.114976037
            4219232.984534416
          
          
            -13309964.114976037
            4219345.31974151
          
          
            -13309851.779768948
            4219345.31974151
          
          
            -13309851.779768948
            4219232.984534416
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>118</id>
<objectid>118</objectid>
<shape_area>12619.198752741117</shape_area>
<shape_length>449.3408283740282</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13306257.0531421
            4219008.314120237
          
          
            -13306369.38834919
            4219008.314120237
          
          
            -13306369.38834919
            4219120.649327334
          
          
            -13306257.0531421
            4219120.649327334
          
          
            -13306257.0531421
            4219008.314120237
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>119</id>
<objectid>119</objectid>
<shape_area>12619.198750857951</shape_area>
<shape_length>449.3408283405006</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13310525.79101148
            4218109.632463533
          
          
            -13310638.126218569
            4218109.632463533
          
          
            -13310638.126218569
            4218221.967670616
          
          
            -13310525.79101148
            4218221.967670616
          
          
            -13310525.79101148
            4218109.632463533
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>120</id>
<objectid>120</objectid>
<shape_area>25238.397502343625</shape_area>
<shape_length>674.0112425275147</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13305695.377106652
            4218109.632463533
          
          
            -13305920.047520833
            4218109.632463533
          
          
            -13305920.047520833
            4218221.967670616
          
          
            -13305695.377106652
            4218221.967670616
          
          
            -13305695.377106652
            4218109.632463533
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>121</id>
<objectid>121</objectid>
<shape_area>12619.198751067192</shape_area>
<shape_length>449.3408283442259</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13305583.041899566
            4217547.9564280845
          
          
            -13305695.377106652
            4217547.9564280845
          
          
            -13305695.377106652
            4217660.291635171
          
          
            -13305583.041899566
            4217660.291635171
          
          
            -13305583.041899566
            4217547.9564280845
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>122</id>
<objectid>122</objectid>
<shape_area>12619.198752322636</shape_area>
<shape_length>449.3408283665776</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13305133.701071214
            4216761.60997846
          
          
            -13305133.701071214
            4216873.94518555
          
          
            -13305021.36586412
            4216873.94518555
          
          
            -13305021.36586412
            4216761.60997846
          
          
            -13305133.701071214
            4216761.60997846
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>123</id>
<objectid>123</objectid>
<shape_area>12619.198751485674</shape_area>
<shape_length>449.34082835167646</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13305133.701071214
            4216761.60997846
          
          
            -13305133.701071214
            4216649.27477137
          
          
            -13305246.0362783
            4216649.27477137
          
          
            -13305246.0362783
            4216761.60997846
          
          
            -13305133.701071214
            4216761.60997846
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>124</id>
<objectid>124</objectid>
<shape_area>12619.198751694914</shape_area>
<shape_length>449.34082835540175</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13303336.337757787
            4216312.269150101
          
          
            -13303448.672964875
            4216312.269150101
          
          
            -13303448.672964875
            4216424.60435719
          
          
            -13303336.337757787
            4216424.60435719
          
          
            -13303336.337757787
            4216312.269150101
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>125</id>
<objectid>125</objectid>
<shape_area>12619.198751276432</shape_area>
<shape_length>449.3408283479512</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13304796.695449945
            4215975.263528839
          
          
            -13304909.030657033
            4215975.263528839
          
          
            -13304909.030657033
            4216087.598735925
          
          
            -13304796.695449945
            4216087.598735925
          
          
            -13304796.695449945
            4215975.263528839
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>126</id>
<objectid>126</objectid>
<shape_area>12619.198751067192</shape_area>
<shape_length>449.3408283442259</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13305470.706692476
            4215750.593114663
          
          
            -13305583.041899566
            4215750.593114663
          
          
            -13305583.041899566
            4215862.928321745
          
          
            -13305470.706692476
            4215862.928321745
          
          
            -13305470.706692476
            4215750.593114663
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>127</id>
<objectid>127</objectid>
<shape_area>12619.198751067192</shape_area>
<shape_length>449.3408283442259</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13303673.343379054
            4215750.593114663
          
          
            -13303785.678586144
            4215750.593114663
          
          
            -13303785.678586144
            4215862.928321745
          
          
            -13303673.343379054
            4215862.928321745
          
          
            -13303673.343379054
            4215750.593114663
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>128</id>
<objectid>128</objectid>
<shape_area>75715.19250807707</shape_area>
<shape_length>1572.6928992420435</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13301763.644858543
            4211931.19607364
          
          
            -13302212.985686898
            4211931.19607364
          
          
            -13302212.985686898
            4212043.5312807225
          
          
            -13301875.980065629
            4212043.5312807225
          
          
            -13301875.980065629
            4212155.866487816
          
          
            -13301651.309651453
            4212155.866487816
          
          
            -13301651.309651453
            4212043.5312807225
          
          
            -13301763.644858543
            4212043.5312807225
          
          
            -13301763.644858543
            4211931.19607364
          
        </rings>
</geometry>
</features>
<features>
<attributes>
<id>129</id>
<objectid>129</objectid>
<shape_area>12619.198751276432</shape_area>
<shape_length>449.3408283479512</shape_length>
<grid_code>1</grid_code>
</attributes>
<geometry>
<rings>
          
            -13301426.639237273
            4211369.520038191
          
          
            -13301538.974444361
            4211369.520038191
          
          
            -13301538.974444361
            4211481.855245277
          
          
            -13301426.639237273
            4211481.855245277
          
          
            -13301426.639237273
            4211369.520038191
          
        </rings>
</geometry>
</features>
<geometrytype>esriGeometryPolygon</geometrytype>
<spatialreference>
<wkid>54003</wkid>
</spatialreference>
</value>
</results>

from json2xml.

gismcieri avatar gismcieri commented on June 15, 2024

Awesome thanks for your time. I do a decent amount of programming but there is always little tricks when using a new library. I have never used with with open before I will have to check out the reason for that. I have seen it in some places but not others. Also I did close my files in the original it was just at the end.

Thanks so much love the library.

from json2xml.

vinitkumar avatar vinitkumar commented on June 15, 2024

@gismcieri I am glad I was able to fix. Also, I pushing another version of the library in some time, that has some bugfixes and better output. I would suggest you try that one out too.

from json2xml.

vinitkumar avatar vinitkumar commented on June 15, 2024

@gismcieri Closing the ticket as it seems like your issue is solved, if you have any other issue/question don't hesitate to open another ticket.

from json2xml.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.