diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 31eef2a4b6..605d7baee5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,7 +4,7 @@ on: [push] env: RAILS_ENV: test - DATABASE_URL: postgres://postgres:@localhost:5432 + DATABASE_URL: postgres://postgres:password@localhost:5432 jobs: tests: @@ -14,10 +14,10 @@ jobs: services: postgres: - image: postgres:11.6-alpine + image: postgis/postgis:11-3.3-alpine env: POSTGRES_USER: postgres - POSTGRES_PASSWORD: '' + POSTGRES_PASSWORD: 'password' ports: - 5432:5432 options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 @@ -44,6 +44,10 @@ jobs: restore-keys: | ${{ runner.os }}-gems- + - name: Install postgis extensions + run: | + sudo apt-get install libproj-dev proj-bin + - name: Install gems run: | bundle config path vendor/bundle diff --git a/Dockerfile b/Dockerfile index 5bc316acbc..83b9cba04e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN apk add --update --no-cache tzdata && \ # build-base: complication tools for bundle # yarn: node package manager # postgresql-dev: postgres driver and libraries -RUN apk add --no-cache build-base yarn postgresql-dev +RUN apk add --no-cache build-base yarn postgresql-dev postgis proj proj-dev # Install bundler to run bundle exec # This should be the same version as the Gemfile.lock diff --git a/Gemfile b/Gemfile index 5c6465e585..5593cc20e3 100644 --- a/Gemfile +++ b/Gemfile @@ -38,6 +38,12 @@ gem "sentry-ruby" gem "stimulus-rails" gem "webpacker" +gem "activerecord-postgis-adapter" +gem "geocoder" +gem "rgeo" +gem "rgeo-geojson" +gem "rgeo-proj4" + gem "net-imap", require: false gem "net-pop", require: false gem "net-smtp", require: false diff --git a/Gemfile.lock b/Gemfile.lock index 3e90a6cfa2..7fe0891887 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -47,6 +47,9 @@ GEM activerecord (6.1.7.3) activemodel (= 6.1.7.3) activesupport (= 6.1.7.3) + activerecord-postgis-adapter (7.1.1) + activerecord (~> 6.1) + rgeo-activerecord (~> 7.0.0) activerecord-session_store (2.0.0) actionpack (>= 5.2.4.1) activerecord (>= 5.2.4.1) @@ -178,6 +181,7 @@ GEM rack (>= 1.4, < 3) rack-protection (>= 1.5.3, <= 4.0.0) sanitize (< 7) + geocoder (1.8.1) globalid (1.1.0) activesupport (>= 5.0) govuk-components (3.1.1) @@ -356,6 +360,14 @@ GEM actionpack (>= 5.2) railties (>= 5.2) rexml (3.2.5) + rgeo (3.0.0) + rgeo-activerecord (7.0.1) + activerecord (>= 5.0) + rgeo (>= 1.0.0) + rgeo-geojson (2.1.1) + rgeo (>= 1.0.0) + rgeo-proj4 (4.0.0) + rgeo (~> 3.0.0) rspec-core (3.12.2) rspec-support (~> 3.12.0) rspec-expectations (3.12.3) @@ -507,6 +519,7 @@ PLATFORMS x86_64-linux DEPENDENCIES + activerecord-postgis-adapter activerecord-session_store axe-core-capybara axe-core-rspec @@ -525,6 +538,7 @@ DEPENDENCIES flipper (~> 0.28.0) flipper-active_record (~> 0.28.0) flipper-ui (~> 0.28.0) + geocoder govuk-components govuk_design_system_formbuilder httparty (~> 0.21) @@ -551,6 +565,9 @@ DEPENDENCIES puma (~> 6.2) rack-attack rails (~> 6.1.7) + rgeo + rgeo-geojson + rgeo-proj4 rspec-rails (~> 6.0.2) rubocop-govuk scss_lint-govuk diff --git a/app/lib/services/geojson_loader.rb b/app/lib/services/geojson_loader.rb new file mode 100644 index 0000000000..4fca8f57d9 --- /dev/null +++ b/app/lib/services/geojson_loader.rb @@ -0,0 +1,45 @@ +module Services + class GeojsonLoader + def self.reload_geojsons(geojson_path) + empty_database + load_geojsons(geojson_path) + end + + def self.empty_database + GeoLocalAuthority.delete_all + end + + def self.read_file(geojson_path) + file = File.read(geojson_path) + features = RGeo::GeoJSON.decode(file, json_parser: :json) + end + + def self.load_geojsons(geojson_path) + Rails.logger.debug("Loading #{geojson_path}") + + features = read_file(geojson_path) + + features.each do |feature| + geo_local_authority = GeoLocalAuthority.new + geo_local_authority.name = feature.properties["LAD22NM"] + geo_local_authority.geometry = feature.geometry + geo_local_authority.save! + end + end + + class Shape + attr_reader :geojson_record + + def initialize(geojson_record) + @geojson_record = geojson_record + end + + delegate :geometry, + to: :geojson_record + + def name + geojson_record.attributes["LAD22NM"] + end + end + end +end diff --git a/app/models/geo_local_authority.rb b/app/models/geo_local_authority.rb new file mode 100644 index 0000000000..1305269e08 --- /dev/null +++ b/app/models/geo_local_authority.rb @@ -0,0 +1,31 @@ +class GeoLocalAuthority < ApplicationRecord + include RGeo::ActiveRecord::GeometryMixin + + SRID = 27_700 + + def self.nearest_three_to(string) + location = Geocoder.search(string).first + by_distance(location.longitude.to_f, location.latitude.to_f).limit(3) + end + + def self.by_distance(longitude, latitude) + # Transform the given lon/lat to have an SRID of 27700 (the SRID of the GeoLocalAuthority geometries) + transformed_point = RGeo::CoordSys::Proj4.transform_coords( + RGeo::CoordSys::Proj4.new("EPSG:4326"), + RGeo::CoordSys::Proj4.new("EPSG:27700"), + longitude, + latitude, + ) + + target_latitude = transformed_point[1] + target_longitude = transformed_point[0] + + # Create a point representing the target coordinates, with the SRID specified + # If you don't specify the SRID it will default to 0, which will cause an error + point_sql = "SRID=#{SRID};POINT(#{target_longitude} #{target_latitude})" + + arel = Arel.sql("geometry <-> '#{point_sql}'::geometry") + + order(arel) + end +end diff --git a/config/database.yml b/config/database.yml index 335205f0a6..f60d4227ae 100644 --- a/config/database.yml +++ b/config/database.yml @@ -15,12 +15,12 @@ # gem 'pg' # default: &default - adapter: postgresql + adapter: postgis encoding: unicode # For details on connection pooling, see Rails configuration guide # http://guides.rubyonrails.org/configuring.html#database-pooling pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> - url: <%= ENV.fetch("DATABASE_URL", "postgres://localhost:5432") %> + url: <%= ENV.fetch("DATABASE_URL", "postgis://localhost:5432") %> development: <<: *default diff --git a/db/migrate/20230502125034_enable_postgis.rb b/db/migrate/20230502125034_enable_postgis.rb new file mode 100644 index 0000000000..ec587d7495 --- /dev/null +++ b/db/migrate/20230502125034_enable_postgis.rb @@ -0,0 +1,5 @@ +class EnablePostgis < ActiveRecord::Migration[6.1] + def change + enable_extension "postgis" + end +end diff --git a/db/migrate/20230502125316_create_geo_local_authorities.rb b/db/migrate/20230502125316_create_geo_local_authorities.rb new file mode 100644 index 0000000000..7e4efb4b2a --- /dev/null +++ b/db/migrate/20230502125316_create_geo_local_authorities.rb @@ -0,0 +1,12 @@ +class CreateGeoLocalAuthorities < ActiveRecord::Migration[6.1] + def change + create_table :geo_local_authorities do |t| + t.string :name + t.geometry :geometry, srid: 27_700 + + t.timestamps + end + + add_index :geo_local_authorities, :geometry, using: :gist + end +end diff --git a/db/schema.rb b/db/schema.rb index 84a015d298..b92519b61d 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,12 +10,13 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2023_04_14_121939) do +ActiveRecord::Schema.define(version: 2023_05_02_125316) do # These are extensions that must be enabled in order to support this database enable_extension "btree_gin" enable_extension "citext" enable_extension "plpgsql" + enable_extension "postgis" create_table "applications", force: :cascade do |t| t.bigint "user_id", null: false @@ -110,6 +111,14 @@ t.index ["feature_key", "key", "value"], name: "index_flipper_gates_on_feature_key_and_key_and_value", unique: true end + create_table "geo_local_authorities", force: :cascade do |t| + t.string "name" + t.geometry "geometry", limit: {:srid=>27700, :type=>"geometry"} + t.datetime "created_at", precision: 6, null: false + t.datetime "updated_at", precision: 6, null: false + t.index ["geometry"], name: "index_geo_local_authorities_on_geometry", using: :gist + end + create_table "get_an_identity_webhook_messages", force: :cascade do |t| t.jsonb "raw" t.jsonb "message" diff --git a/docker-compose.yml b/docker-compose.yml index 3d392743de..5bc8bd286f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,7 +5,7 @@ volumes: services: db: - image: postgres:11-alpine + image: postgis/postgis:11-3.3-alpine restart: always # To preserve data between runs of docker-compose, we mount a folder from the host machine. volumes: diff --git a/lib/local_authority_geojson/Local_Authority_Districts_December_2022_Boundaries_UK_BUC_143497700576642915.geojson b/lib/local_authority_geojson/Local_Authority_Districts_December_2022_Boundaries_UK_BUC_143497700576642915.geojson new file mode 100644 index 0000000000..62654ee236 --- /dev/null +++ b/lib/local_authority_geojson/Local_Authority_Districts_December_2022_Boundaries_UK_BUC_143497700576642915.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"EPSG:27700"}},"features":[{"type":"Feature","id":1,"geometry":{"type":"Polygon","coordinates":[[[448973.593,536745.2773],[448986.0254,536729.6745],[453194.6,533938.4],[453341.0836,533293.4014],[453329.5704,533293.9857],[451898.9208,534023.2414],[452435,533448.25],[452383.2079,533342.009199999],[452174.11,533352.619999999],[452036.2498,532630.2973],[451738,532018.5],[453270.8,529013],[454454.98,528446.73],[453471.9133,526822.3913],[452499.69,526687.43],[452243.5362,526335.188100001],[451148.5004,525456.799000001],[449537.399,526239.404999999],[448090.9019,525608.795499999],[445354.8031,526096.096000001],[444216.0036,528004.899599999],[443410.7002,527859.9011],[443024.0975,526445.396],[440052.7012,527819.7026],[442604.5971,528543.395500001],[442166.2979,529897.9977],[443235.8966,532101.7969],[442351.0037,533093.603],[443974.9015,533135.301000001],[445116.8012,535009.9045],[444836.197,536055.495200001],[447097.001,537152.0013],[448290.1026,536324.7981],[448973.593,536745.2773]]]},"properties":{"LAD22CD":"E06000001","LAD22NM":"Hartlepool","BNG_E":447160,"BNG_N":531474,"LONG":-1.27018,"LAT":54.67614,"OBJECTID":1,"GlobalID":"91d6b402-9e72-48f2-9e1f-76a00f575d94"}},{"type":"Feature","id":2,"geometry":{"type":"Polygon","coordinates":[[[451894.2992,521145.303099999],[453997.6967,517983.2983],[451913.304,516875.4954],[454380.8035,514732.198899999],[454495.2037,513716.0997],[455944.603,513640.001499999],[455389.496,512278.5012],[449638.4999,513046.4014],[446561.5008,513911.503799999],[446335.2976,515897.6953],[447271.4006,518107.8026],[446483.8983,519130.1],[447775.6026,519700.896600001],[448410.2002,522046.994999999],[451894.2992,521145.303099999]]]},"properties":{"LAD22CD":"E06000002","LAD22NM":"Middlesbrough","BNG_E":451141,"BNG_N":516887,"LONG":-1.21099,"LAT":54.54467,"OBJECTID":2,"GlobalID":"53d8ba20-f37c-4232-a792-a9f68fa1f23d"}},{"type":"Feature","id":3,"geometry":{"type":"Polygon","coordinates":[[[478232.5683,518788.830600001],[477689.3026,517966.802999999],[475975.5996,517666.798900001],[474608.2964,515577.297],[474692.2971,510900.795600001],[472584.2988,511876.6963],[467927.9995,510802.2038],[464636.299,512421.2004],[462483.8022,511393.204700001],[458730.0979,512758.503799999],[457197.2998,511786.302100001],[455389.496,512278.5012],[455944.603,513640.001499999],[454495.2037,513716.0997],[454380.8035,514732.198899999],[451913.304,516875.4954],[453997.6967,517983.2983],[451894.2992,521145.303099999],[452589.1184,521918.2114],[451965.6361,521061.7556],[454348.4,523581.4],[455224,522988.949999999],[454518.7,523685.449999999],[454878.39,524704.140000001],[456145,524056.6],[454937.95,524772.130000001],[454695.72,526167.800000001],[455915.9,526404.380000001],[455798.1016,527904.6051],[456534.3697,527344.8265],[457378.216,526201.554],[460000.0169,525395.5514],[461281.59,525001.566],[462079.3596,524405.4476],[462323.3151,524127.3463],[462949.6089,523755.1702],[464678.651,522463.176000001],[467216.133,521573.385],[468143.0289,521865.037799999],[468840.2099,521953.333699999],[471325.4675,520116.999700001],[474222.72,520220.59],[474821.0943,519999.9651],[478074.077,518800.567],[478232.5683,518788.830600001]]]},"properties":{"LAD22CD":"E06000003","LAD22NM":"Redcar and Cleveland","BNG_E":464361,"BNG_N":519597,"LONG":-1.00608,"LAT":54.56752,"OBJECTID":3,"GlobalID":"6ff8878d-8b1b-4099-94a8-505bebde2919"}},{"type":"Feature","id":4,"geometry":{"type":"Polygon","coordinates":[[[452243.5362,526335.188100001],[451711.3,525603.300000001],[453500,525467.9],[453813.5,526338.9],[454353.15,524341.4],[452725.1512,522105.074999999],[452589.1184,521918.2114],[451894.2992,521145.303099999],[448410.2002,522046.994999999],[447775.6026,519700.896600001],[446483.8983,519130.1],[447271.4006,518107.8026],[446335.2976,515897.6953],[446561.5008,513911.503799999],[449638.4999,513046.4014],[448237.3012,512006.698999999],[448206.2998,510472.1983],[446675.497,510803.703400001],[445437.6,509167.3018],[442644.396,507839.102],[442552.4965,508756.599400001],[441295.1,508026.6983],[440760.9025,508729.097200001],[440192.1004,511141.196799999],[439290.7009,510204.305],[438503.3965,511071.096899999],[438149.502,509250.498],[436894.8015,509491.598999999],[436707.0038,510384.603399999],[437547.0024,513968.397500001],[435714.9993,515437.097100001],[435879.7026,517964.503599999],[438160.6988,519000.947000001],[438396.4003,522220.295399999],[437351.7016,523257.498500001],[436388.0024,522354.1971],[435563.1994,524065.1973],[438017.8036,524761.3981],[440052.7012,527819.7026],[443024.0975,526445.396],[443410.7002,527859.9011],[444216.0036,528004.899599999],[445354.8031,526096.096000001],[448090.9019,525608.795499999],[449537.399,526239.404999999],[451148.5004,525456.799000001],[452243.5362,526335.188100001]]]},"properties":{"LAD22CD":"E06000004","LAD22NM":"Stockton-on-Tees","BNG_E":444940,"BNG_N":518183,"LONG":-1.30664,"LAT":54.55691,"OBJECTID":4,"GlobalID":"ada829f1-c20b-4741-ad97-1458fa9b1eee"}},{"type":"Feature","id":5,"geometry":{"type":"Polygon","coordinates":[[[436388.0024,522354.1971],[437351.7016,523257.498500001],[438396.4003,522220.295399999],[438160.6988,519000.947000001],[435879.7026,517964.503599999],[435714.9993,515437.097100001],[437547.0024,513968.397500001],[436707.0038,510384.603399999],[435163.8994,512200.3036],[434127.1984,511835.498],[435127.8025,511126.1011],[434847.0005,508818.601600001],[435526.5007,507985.3002],[434922.5994,507466.1987],[435360.7997,506474.4026],[434327.0999,506817.104499999],[434096.6999,508845.7039],[432560.7027,509038.4987],[433023.8031,510212.7026],[431764.8977,508958.8015],[431577.2978,509932.602700001],[430623.7977,510041.7015],[431217.5988,508513.798900001],[429542.796,508523.995999999],[428915.9982,510048.899499999],[427107.8975,511386.796499999],[427346.4024,512288.0985],[426526.8021,512184.598099999],[427221.3001,513139.504799999],[425826.3017,512879.499199999],[425247.6963,513924.4001],[423837.0983,513261.4999],[423801.8012,514513.501499999],[422449.3968,514427.1962],[422232.898,515532.0999],[419709.2991,515678.2981],[419162.9979,517140.999399999],[420069.5011,517931.903000001],[418897.3008,518698.603499999],[418911.4988,519918.5043],[419872.1968,521341.596999999],[420823.7016,521243.395099999],[420606.6998,524780.8025],[425492.6983,524779.8028],[425536.7022,523211.001800001],[426954.9022,524003.1951],[426369.5028,522285.096899999],[427487.0961,520635.9989],[429000.7987,520883.898],[428617.7991,521969.1973],[430674.6038,522465.1953],[434423.5011,522948.696900001],[435529.0979,521874.304500001],[436388.0024,522354.1971]]]},"properties":{"LAD22CD":"E06000005","LAD22NM":"Darlington","BNG_E":428029,"BNG_N":515648,"LONG":-1.56835,"LAT":54.53534,"OBJECTID":5,"GlobalID":"276baf32-5618-47fb-a697-a017f9feb96a"}},{"type":"Feature","id":6,"geometry":{"type":"MultiPolygon","coordinates":[[[[358131.9013,385425.8024],[358057.9019,383421.995999999],[359710.0967,383069.696799999],[358865.1016,381750.204500001],[360448.9036,380778.1028],[359515.6039,379630.801200001],[358800.7983,380554.796700001],[358511.1988,379342.103800001],[357116.8023,379436.4968],[357345.1988,378866.9998],[354451.3967,380052.8004],[353398.4537,378989.8158],[351892.3029,379820.796800001],[350834.6017,379134.103399999],[349964.6612,380017.735200001],[349968.3014,380020.899499999],[349253.504,381465.495999999],[349874.8024,383181.604800001],[352229.5011,383343.998299999],[353550.3022,384651.804],[354923.5112,384424.0868],[355191.8032,384297.195499999],[358131.9013,385425.8024]]],[[[354161.5002,387836.6022],[354118.5361,385101.9823],[353953.4032,385216.002499999],[351213.5035,383681.1018],[349213.2022,384537.896600001],[349563.0978,383902.2985],[348271.8965,382026.895300001],[347872.4975,382454.6029],[348303.1041,381654.301999999],[347566.2018,380912.4044],[345044.7961,381955.2958],[344958.5485,381934.282500001],[344666.1005,382586.395199999],[345579.9995,382851.999199999],[345588.8993,383767.497099999],[347696.2016,384666.0999],[348433.6976,387413.803400001],[349698.3004,387364.497500001],[350553.1979,389731.9199],[352540.9008,389370.903100001],[352692.7002,388433.801200001],[354161.5002,387836.6022]]]]},"properties":{"LAD22CD":"E06000006","LAD22NM":"Halton","BNG_E":354246,"BNG_N":382146,"LONG":-2.68853,"LAT":53.33424,"OBJECTID":6,"GlobalID":"f2549e37-92d0-465e-9284-328d36f42c55"}},{"type":"Feature","id":7,"geometry":{"type":"Polygon","coordinates":[[[367582.2007,396058.198899999],[370229.2033,391101.897600001],[368281.8815,388925.760500001],[371724.8986,387929.695699999],[370826.6982,385621.1965],[367700.3029,385779.6011],[365410.3032,383570.3035],[365582.6992,382955.999399999],[362670.997,380858.899700001],[361050.6983,381545.2532],[360448.9036,380778.1028],[358865.1016,381750.204500001],[359710.0967,383069.696799999],[358057.9019,383421.995999999],[358131.9013,385425.8024],[355191.8032,384297.195499999],[354923.5112,384424.0868],[355156.201,384385.5002],[354118.5361,385101.9823],[354161.5002,387836.6022],[355115.9981,388075.704],[356007.2972,392639.497300001],[355233.4983,393119.800000001],[355690.4973,393999.098200001],[354787.4982,393784.4999],[355128.003,395326.098300001],[357645.4012,394368.802300001],[358410.9968,393251.802100001],[360493.6001,394152.204299999],[360337.8012,395015.497199999],[361217.3021,393828.097200001],[361791.1007,394518.799699999],[362224.0982,395896.995100001],[363641.9025,396220.8024],[363410.8016,396926.600299999],[367158.6024,398358.3005],[367582.2007,396058.198899999]]]},"properties":{"LAD22CD":"E06000007","LAD22NM":"Warrington","BNG_E":362744,"BNG_N":388456,"LONG":-2.56167,"LAT":53.39163,"OBJECTID":7,"GlobalID":"0d38c1db-bb16-4e6b-8e81-a286ad44bc92"}},{"type":"Feature","id":8,"geometry":{"type":"Polygon","coordinates":[[[372966.4977,423266.500600001],[373792.4961,421751.204399999],[375369.8011,421263.604],[375568.5978,419017.9969],[376122.8969,417715.6993],[375608.001,415062.899],[375025.3967,414992.099099999],[372205.998,414225.298599999],[371095.0007,416703.099400001],[369689.696,413818.904999999],[368397.9011,413492.8983],[366280.6023,414615.696900001],[364921.8987,418843.296800001],[366064.6972,421812.9967],[364461.1977,422995.698100001],[363060.7988,427981.201099999],[363748.5029,429031.4004],[369402.9987,431708.6041],[370677.3966,430117.7995],[370310.1039,428992.4016],[371077.4964,428204.6971],[371465.6987,424838.1008],[372966.4977,423266.500600001]]]},"properties":{"LAD22CD":"E06000008","LAD22NM":"Blackburn with Darwen","BNG_E":369490,"BNG_N":422806,"LONG":-2.4636,"LAT":53.7008,"OBJECTID":8,"GlobalID":"77b4f00d-c26d-4dc1-83bd-c11c848f0108"}},{"type":"Feature","id":9,"geometry":{"type":"Polygon","coordinates":[[[333572.7995,437130.702099999],[334590.8007,436258.9016],[335319.5981,433501.900800001],[333963.401,433247.003699999],[334425.1986,431366.801899999],[332292.8032,431242.7974],[332040.3972,432107.8499],[330433.0947,431650.1982],[331023.9516,440000.0308],[331203.2365,442533.6373],[333041.7022,441856.999199999],[333572.7995,437130.702099999]]]},"properties":{"LAD22CD":"E06000009","LAD22NM":"Blackpool","BNG_E":332819,"BNG_N":436635,"LONG":-3.02199,"LAT":53.82164,"OBJECTID":9,"GlobalID":"1038d4e2-c80d-40f7-97c3-e431f9600cad"}},{"type":"Feature","id":10,"geometry":{"type":"Polygon","coordinates":[[[515450.9674,427774.0219],[513098.15,428711.550000001],[510169.58,428170.779999999],[504418.8155,425956.9658],[504178.8041,427276.3028],[505475.8017,429362.295700001],[504132.4009,429442.8027],[504376.9989,430522.503599999],[506338.804,431536.4034],[506013.5487,433954.201300001],[508168.8035,434256.2049],[507946.0962,435533.7992],[510966.6001,436533.0031],[513544.8967,433120.799900001],[515254.9965,433081.101199999],[515180.0984,431094.799799999],[516047.2974,430159.7974],[515450.9674,427774.0219]]]},"properties":{"LAD22CD":"E06000010","LAD22NM":"Kingston upon Hull, City of","BNG_E":511894,"BNG_N":431650,"LONG":-0.30382,"LAT":53.7692,"OBJECTID":10,"GlobalID":"fc95030d-89c4-4d6c-8cf7-7d0be7b29158"}},{"type":"Feature","id":11,"geometry":{"type":"Polygon","coordinates":[[[516812.0102,475019.9913],[516822.1356,475015.658],[519999.9861,473779.4407],[524450.0619,472048.3144],[525536.2509,470990.8914],[525840.388,470651.074999999],[524035.229,469242.515000001],[519999.9768,468551.7119],[519975.321,468547.491],[519436.8178,467645.4111],[518432.08,466541.439999999],[517880.3835,465038.132200001],[517121.268,463766.491],[517180.0316,459999.98],[517206.531,458301.477],[519999.9899,450238.5677],[521252.799,446622.517999999],[521859.081,445706.064200001],[521866.638,445685.069],[521939.1716,445584.999399999],[525633.9334,440000.0089],[529410.044,434292.051999999],[539948.47,420591.5],[539999.974,420442.5425],[540152.9821,420000.019400001],[542056.927,414493.515000001],[542103.4306,414089.7226],[542043.2034,413486.145],[541855.983,413145.546],[539999.9883,410795.452500001],[539756.6283,410487.3058],[539760.0084,410498.167300001],[539999.9877,410817.721999999],[541882.6924,413324.717700001],[542004.2497,414140.1458],[541834.536,414672.7335],[540000.0174,416151.1193],[537702.9,418002.300000001],[534438.1,418898.800000001],[528824.0051,416498.384400001],[528662.6664,416508.338],[525498.2,417086.699999999],[522759.5937,420000.018300001],[519999.9879,422935.6757],[517981.42,425083.02],[517116.1,425020],[516843.5,427802.4],[516007.15,427326.550000001],[515902.9359,428182.3838],[515921.218,428222.430500001],[515695.9514,428621.971899999],[515851.8343,428112.4025],[515529.3632,427742.783500001],[515450.9674,427774.0219],[516047.2974,430159.7974],[515180.0984,431094.799799999],[515254.9965,433081.101199999],[513544.8967,433120.799900001],[510966.6001,436533.0031],[507946.0962,435533.7992],[508168.8035,434256.2049],[506013.5487,433954.201300001],[506338.804,431536.4034],[504376.9989,430522.503599999],[504132.4009,429442.8027],[505475.8017,429362.295700001],[504178.8041,427276.3028],[504418.8155,425956.9658],[504412.3559,425954.4791],[500000.0242,425186.0155],[496298.1994,424541.295700001],[493566.8003,426506.803099999],[490458.0989,427268.595000001],[490005.1977,426692.300000001],[491236.3008,426896.001700001],[487752.9026,425864.9968],[486180.7014,423890.502],[483098.2029,424126.5045],[485094.8021,423645.102299999],[486026.0983,423150.004000001],[485273.8024,422928.2974],[485951.1012,422921.599400001],[486001.6951,422321.949899999],[485812.7499,420892.969799999],[484528.3994,421078.197000001],[481089.9039,418441.3018],[481231.0016,419319.1006],[480142.9009,418759.0009],[476256.7975,415781.903100001],[475119.4985,416283.499500001],[469695.3036,418585.2006],[462971.3986,418147.296],[459337.7289,419595.885199999],[460790.2006,421296.3046],[461165.7962,423457.7959],[462038.0989,423777.4044],[463558.0017,422364.0989],[467422.2969,422758.3961],[467398.8975,423659.098300001],[468583.2015,423203.998500001],[468886.1004,424770.700099999],[472442.2034,425216.3025],[471941.9014,426801.0989],[468652.1962,427124.1964],[467781.0973,428653.898499999],[470745.3039,430447.0952],[470273.2989,434465.9048],[471197.0013,436072.9048],[469834.7029,436878.7042],[469270.6005,441109.1032],[470863.299,443264.7962],[471022.4039,444363.7016],[469132.3968,444702.004799999],[470920.6022,447789.301100001],[470880.1024,452129.398700001],[470020.7032,453010.4965],[470559.7983,455585.0995],[472603.9963,456508.6952],[473587.8,458490.15],[478666.6969,459343.2038],[478775.3998,458781.5046],[483007.4,460102.0966],[483289.1997,458153.104499999],[486376.2001,457775.502499999],[486099.1,460215.0042],[487890.3973,460961.1007],[488823.4002,462975.903899999],[487781.2986,463844.995200001],[490696.8017,464724.003599999],[494071.5959,467407.4954],[496610.5018,466510.902100001],[500394.9971,469057.7031],[501130.5967,470089.897600001],[500834.5001,471108.696],[502860.996,472429.8978],[502398.4975,475383.802200001],[503336.1011,476512.4991],[505136.5009,476830.898],[506226.3001,474361.604800001],[508108.2023,473599.302999999],[509572.3025,474014.904100001],[510890.3498,472484.052300001],[513414.196,473023.4979],[515766.9983,472178.0998],[516812.0102,475019.9913]]]},"properties":{"LAD22CD":"E06000011","LAD22NM":"East Riding of Yorkshire","BNG_E":488056,"BNG_N":443597,"LONG":-0.66195,"LAT":53.88112,"OBJECTID":11,"GlobalID":"c716dc35-d98d-4eb3-b905-fef0c76278b9"}},{"type":"Feature","id":12,"geometry":{"type":"Polygon","coordinates":[[[533689.0408,405381.629000001],[531729.7994,403907.202199999],[528388.2988,404190.601],[527799.2963,400901.502499999],[526467.3974,400493.1994],[526869.3029,399579.301000001],[525696.7975,398677.599099999],[527452.5998,396641.6019],[524971.9989,394618.0012],[524198.8018,394862.0013],[523015.3965,396028.897299999],[522665.0968,398132.2952],[520789.7989,398414.904300001],[520296.2,400170.901699999],[518828.9997,400328.6965],[519190.1004,403173.802100001],[518703.1965,405381.000299999],[518084.9588,405466.096000001],[520014.6972,409222.8006],[519611.5961,409846.702],[517809.1021,409400.399800001],[516956.9008,411408.8049],[515854.0992,411203.8035],[516022.7024,412210.895300001],[513082.3982,414321.5011],[516988.4959,415611.8018],[519048.057,417446.345899999],[519052.7445,417440.3894],[520000.0144,416608.5648],[526293.28,411082.27],[527270.46,410641.050000001],[528198.8715,411380.381899999],[528372.539,411311.6633],[531602.014,407926.879000001],[532379.913,407415.429],[532019.433,408401.639],[533689.0408,405381.629000001]]]},"properties":{"LAD22CD":"E06000012","LAD22NM":"North East Lincolnshire","BNG_E":523465,"BNG_N":404564,"LONG":-0.13911,"LAT":53.52327,"OBJECTID":12,"GlobalID":"d0755448-e024-4b77-9a1d-19fb476417c1"}},{"type":"Feature","id":13,"geometry":{"type":"MultiPolygon","coordinates":[[[[497790.3988,421987.3968],[496810.3991,421526.0988],[495603.0995,422511.4968],[497790.3988,421987.3968]]],[[[512678.73,425539.880000001],[515528.2059,421919.0374],[516533.04,420004.869999999],[518874.7986,417666.506100001],[519048.057,417446.345899999],[516988.4959,415611.8018],[513082.3982,414321.5011],[511992.0961,414413.604699999],[512559.3975,412307.297700001],[510325.4971,408174.500700001],[504947.4994,408562.5996],[504122.4985,409803.104499999],[501666.501,406904.404200001],[500090.2995,406527.260600001],[499424.9987,405576.904200001],[504081.3969,406665.002800001],[505608.8027,405115.296399999],[505848.396,403507.6965],[500355.0993,401968.1972],[500529.0041,399257.403200001],[501529.7979,398655.795399999],[496252.3239,396836.995999999],[491079.1005,396589.9967],[491311.1989,402672.9955],[483665.0014,403321.399900001],[482872.6015,401148.002],[481814.7025,400950.998400001],[481623.1037,398752.797599999],[480777.1027,398456.5024],[480803.8992,396978.0956],[479948.5978,396038.3046],[474986.2006,397208.6996],[472053.5972,396493.904200001],[471779.3995,397069.6994],[473075.6962,398163.0964],[470701.1021,401171.5952],[470917.6999,402082.304500001],[469724.7962,402396.804500001],[470114.1033,404292.6018],[473510.5985,405103.499700001],[472898.1966,406255.899900001],[473546.3985,408341.3029],[472872.2988,408571.7969],[473058.596,410194.102600001],[475119.4985,416283.499500001],[476256.7975,415781.903100001],[480142.9009,418759.0009],[481231.0016,419319.1006],[481089.9039,418441.3018],[484528.3994,421078.197000001],[485812.7499,420892.969799999],[486001.6951,422321.949899999],[486054.9972,421690.2018],[486513.0727,421046.687100001],[486975.8963,420396.5022],[486271.496,422797.205],[489896.297,424606.3971],[491791.0038,425120.4],[493447.9972,422802.703400001],[497628.3009,421068.5998],[500000.0032,422745.263900001],[501074.024,423504.538000001],[502869.163,423446.535],[502926.57,422549.25],[502925.026,423445.215],[506062.48,423817.23],[506383.33,422622.23],[506541.6,424066.300000001],[512678.73,425539.880000001]]]]},"properties":{"LAD22CD":"E06000013","LAD22NM":"North Lincolnshire","BNG_E":497800,"BNG_N":410993,"LONG":-0.52407,"LAT":53.58643,"OBJECTID":13,"GlobalID":"1f179dc7-bec2-4d89-9a5b-63f34f75eba1"}},{"type":"Feature","id":14,"geometry":{"type":"Polygon","coordinates":[[[470559.7983,455585.0995],[470020.7032,453010.4965],[470880.1024,452129.398700001],[470920.6022,447789.301100001],[469132.3968,444702.004799999],[471022.4039,444363.7016],[470863.299,443264.7962],[469500.0029,444062.797800001],[466315.6036,442579.802300001],[465282.0028,444210.4955],[461574.6028,442445.500700001],[459833.4025,443672.499500001],[458933.7015,442539.1039],[452922.6974,447657.798699999],[451015.5983,453472.804199999],[451473.7021,454675.300000001],[453730.8041,454673.500499999],[453066.7963,456354.3993],[454141.3009,456553.4024],[455705.3973,455123.2018],[456680.6973,455346.897700001],[455871.997,456657.4026],[456379.2991,459658.203600001],[457731.5713,459582.0494],[459719.497,461720.303400001],[461728.1011,461727.701199999],[461651.1005,462701.702400001],[464629.9998,461931.502900001],[465425.4998,462603.8005],[467782.9427,459043.544399999],[466647.34,456755.119999999],[467255.67,457006.705],[467494.67,456117.41],[466013.9003,454577.597899999],[470559.7983,455585.0995]]]},"properties":{"LAD22CD":"E06000014","LAD22NM":"York","BNG_E":460864,"BNG_N":452589,"LONG":-1.07375,"LAT":53.96582,"OBJECTID":14,"GlobalID":"6cc6b8c5-e1d3-46cb-b3c0-8724bc24de0a"}},{"type":"Feature","id":15,"geometry":{"type":"Polygon","coordinates":[[[441245.2009,333953.995999999],[440270.1976,333833.9004],[439198.8014,332054.4998],[438902.9027,329886.3004],[437380.6995,329455.103800001],[436168.9971,330697.498199999],[434123.0016,330406.701400001],[433532.8037,332045.3024],[430933.4987,332550.297800001],[429896.0969,335340.3992],[430748.999,336405.804199999],[433161.8996,337895.097899999],[433988.0959,341063.301000001],[435383.3994,341078.696599999],[435804.2026,339383.5019],[439786.8969,339376.8038],[438813.4025,337736.703299999],[441570.8973,336678.2962],[441245.2009,333953.995999999]]]},"properties":{"LAD22CD":"E06000015","LAD22NM":"Derby","BNG_E":435609,"BNG_N":335375,"LONG":-1.47189,"LAT":52.91464,"OBJECTID":15,"GlobalID":"013c84b4-7a34-4497-8b31-8c2d975c8caf"}},{"type":"Feature","id":16,"geometry":{"type":"Polygon","coordinates":[[[464453.3988,306785.7029],[464594.9995,304520.701199999],[463026.5003,302658.6042],[461260.1032,302460.900800001],[460812.0995,300165.797800001],[459690.9031,300333.5998],[458115.2967,299255.6983],[457726.303,298472.2026],[456948.8019,298630.6972],[457144.8035,299555.4025],[456035.6037,299776.699200001],[456596.6966,302025.395500001],[453156.7994,304373.303400001],[453737.6969,305275.6951],[454863.4034,305044.101399999],[455201.0963,307300.695499999],[455667.6019,309240.700099999],[457057.1998,310757.296],[458008.4984,310282.8018],[458986.6018,307872.901699999],[459680.2011,308748.700999999],[462642.297,308389.7037],[464453.3988,306785.7029]]]},"properties":{"LAD22CD":"E06000016","LAD22NM":"Leicester","BNG_E":458946,"BNG_N":304594,"LONG":-1.1304,"LAT":52.63592,"OBJECTID":16,"GlobalID":"6c954ab4-8c62-47cd-a2f4-094183cf42c4"}},{"type":"Feature","id":17,"geometry":{"type":"Polygon","coordinates":[[[501933.204,305782.100199999],[500414.6039,305989.1009],[498904.6034,304131.9025],[498101.4025,301376.5012],[498714.0023,300447.3972],[497765.9027,300605.901799999],[496851.2039,299621.8035],[496180.8969,300730.1962],[495715.6034,299710.998],[494737.2032,299890.5966],[490855.7995,297631.103399999],[487368.1963,292674.102299999],[485403.2993,294255.1997],[485611.7015,295304.3994],[484155.2032,297061.896299999],[483757.7995,299009.298800001],[481888.7019,300662.5956],[479959.4977,300501.7017],[480939.3985,303213.995300001],[480698.5026,306040.2962],[482457.7018,308668.204],[482139.698,311473.301100001],[479688.4991,313762.1459],[480225.6978,315267.605],[482692.9004,316956.101600001],[484379.9966,316181.5034],[490252.7969,318512.0962],[493877.5979,318926.897500001],[494224.5995,317895.602700001],[496433.0968,318229.997],[498670.6003,316638.3026],[498538.5969,314953.105],[501805.3973,313503.799799999],[506145.1027,313125.598099999],[505953.6029,310704.801100001],[504488.9998,309191.904100001],[501100.6012,307911.2007],[499943.8026,308522.4957],[501933.204,305782.100199999]]]},"properties":{"LAD22CD":"E06000017","LAD22NM":"Rutland","BNG_E":492992,"BNG_N":308655,"LONG":-0.6263,"LAT":52.66765,"OBJECTID":17,"GlobalID":"8c502e2a-234b-4c2d-8495-fcbff7498354"}},{"type":"Feature","id":18,"geometry":{"type":"Polygon","coordinates":[[[461502.104,339409.104499999],[460600.1025,338663.9978],[458442.9967,338730.998600001],[457777.1008,337518.4957],[457071.1009,338070.4977],[456694.7963,333953.5962],[455509.9976,332716.700200001],[452968.5976,334395.6996],[453162.2989,335258.7026],[453965.2029,334970.0952],[455078.8963,335856.8014],[450694.1975,339798.403100001],[451678.8969,341416.1],[450661.2008,343285.604900001],[452052.2993,342921.999],[453576.9018,343649.300799999],[452514.5009,344079.297700001],[452089.097,345921.2005],[453100.9968,347049.997400001],[454920.7972,347117.797900001],[457568.6986,345806.0034],[456900.2962,344761.602399999],[457937.0962,344513.4034],[457664.3001,343558.296800001],[458990.7985,343260.402100001],[459192.0027,341522.5996],[461502.104,339409.104499999]]]},"properties":{"LAD22CD":"E06000018","LAD22NM":"Nottingham","BNG_E":456082,"BNG_N":339969,"LONG":-1.16667,"LAT":52.95419,"OBJECTID":18,"GlobalID":"8f3e9a3a-b02b-4d22-9507-a0d53f67a09d"}},{"type":"Feature","id":19,"geometry":{"type":"Polygon","coordinates":[[[357958.1036,267827.5045],[354875.1021,267517.103399999],[356448.6968,265551.1961],[359305.5033,264997.5046],[357214.4981,262739.551000001],[357148.2985,260427.9026],[360898.5975,261771.3981],[363802.4998,261809.8971],[364197.8999,261230.8028],[366264.3019,262200.0954],[365770.802,264484.701400001],[369304.0992,265310.494999999],[370891.2982,263690.998600001],[368144.2995,262087.0977],[367682.8976,260457.304199999],[368350.0962,259675.9979],[371206.1029,259979.601],[373839.4023,258627.2981],[372505.4998,258213.5965],[373263.897,256781.6964],[372224.302,256135.201400001],[371240.4024,252773.2038],[370333.0004,252304.8978],[371684.9019,249741.3017],[374145.5002,250825.801200001],[376049.9032,249649.697899999],[375976.5963,245074.297599999],[376941.1036,243556.901900001],[375985.097,235939.5024],[373131.4978,235019.795600001],[372700.8006,233152.100299999],[371726.1024,232928.904100001],[370073.6025,233280.803400001],[370136.6031,235241.202299999],[368303.2972,235201.9035],[368253.1013,236195.899],[367233.4016,236119.800799999],[366326.6015,234472.102399999],[367758.1997,233024.8967],[366105.502,231516.398499999],[366276.0016,229630.2984],[365678.2017,229242.8993],[368105.5972,228235.397600001],[368050.5037,225597.2028],[369272.1002,224554.4013],[369864.9036,222184.6996],[366519.4041,220317.6041],[365089.2982,220855.9],[363486.4996,218153.703500001],[360111.796,218279.5975],[359951.1987,216935.702099999],[358689.9023,217684.3978],[357003.3008,215779.703],[356232.7009,216245.899599999],[355272.7037,214366.797499999],[354193.6973,215433.102299999],[352324.6986,215252.304],[352060.296,216474.804099999],[350827.2966,215978.995999999],[350528.3966,216946.8989],[349189.3228,215592.216700001],[346471.1999,218872.897600001],[347202.8502,220497.6526],[342576.845,223386.7433],[342192.2499,224689.3463],[340814.57,224289.210000001],[341989.9021,225170.505000001],[339743.1971,226508.402000001],[333237.0029,223383.896400001],[332939.1006,225891.6985],[330775.4976,225881.2015],[329597.4021,229251.796700001],[326793.1991,232169.001700001],[324673.6989,236599.603399999],[325588.8018,238533.5998],[325311.0009,239685.699999999],[322937.8002,242814.304500001],[323198.5008,245574.4044],[324383.7037,245804.0987],[324435.7959,247064.9977],[321926.2961,248343.1019],[322357.7025,249453.404100001],[325255.2973,250120.6031],[326721.5,251374.404200001],[326049.0988,252193.5997],[324916.5984,251285.7995],[323321.5006,252276.495999999],[325255.6023,254507.7973],[324779.5985,256626.300799999],[326846.0994,257748.5996],[326818.9979,260284.3038],[328790.4991,260483.5967],[328530.1531,261856.4038],[329390.8963,262569.6996],[331456.0037,263375.198999999],[333400.6014,262839.802200001],[335295.0031,263902.798],[331012.8977,265040.0024],[331879.4041,269766.6994],[334212.5997,270589.7039],[335069.5007,272770.499600001],[336535.3984,272851.1965],[336160.2975,274080.4047],[337036.6981,274729.5988],[338762.2987,274738.396299999],[337309.1973,275633.0002],[337639.7996,276868.196699999],[339293.899,275490.301100001],[339627.5024,276717.199899999],[341916.9992,277838.898800001],[344415.3022,277336.602600001],[345281.9983,276995.600199999],[345137.6025,275624.4027],[346145.9982,275543.3959],[346129.302,273494.5024],[350190.3986,273303.596999999],[349103.3038,271019.800799999],[347836.9036,271167.6984],[351400.3036,268101.596100001],[353751.4982,268428.8024],[353121.1962,268944.504799999],[354719.5013,271787.900900001],[357569.7035,269436.8039],[357958.1036,267827.5045]]]},"properties":{"LAD22CD":"E06000019","LAD22NM":"Herefordshire, County of","BNG_E":349434,"BNG_N":242834,"LONG":-2.73931,"LAT":52.08154,"OBJECTID":19,"GlobalID":"72225e4f-4685-4b82-ba10-66112e045d93"}},{"type":"Feature","id":20,"geometry":{"type":"Polygon","coordinates":[[[379019.2507,315959.147],[378787.5026,315079.5988],[375926.6972,314900.0002],[374674.2972,315839.101399999],[371756.502,307322.3993],[371787.2973,304083.1965],[370541.6005,303347.3971],[370433.2026,301953.596100001],[366133.898,303590.1976],[362995.803,306471.3029],[362523.5011,308297.700099999],[358026.3975,311442],[359742.4008,313565.5022],[355512.701,315090.195699999],[355327.7972,318297.6976],[356703.4032,319024.2996],[357424.5987,318184.200099999],[358205.2988,320061.002900001],[360145.6008,320081.097100001],[359776.4034,322433.603700001],[360809.6003,323276.9023],[362893.3993,322916.6954],[364101.6965,321971.2961],[363844.4012,320970.9024],[364902.696,322503.003900001],[366179.3035,322232.801200001],[367299.7991,323186.3982],[367928.1964,322529.496300001],[367067.4038,320710.297],[368204.9996,320418.9004],[369324.2996,320830.4026],[368228.8031,324910.9046],[372043.6032,325577.3038],[374641.6962,323853.8972],[375052.9021,322031.9987],[374131.3022,321399.299799999],[379019.2507,315959.147]]]},"properties":{"LAD22CD":"E06000020","LAD22NM":"Telford and Wrekin","BNG_E":367035,"BNG_N":313057,"LONG":-2.48941,"LAT":52.71417,"OBJECTID":20,"GlobalID":"3b23aa7f-c478-49be-8b03-a31ee056bbe1"}},{"type":"Feature","id":21,"geometry":{"type":"Polygon","coordinates":[[[387961.3038,354745.104699999],[388597.8968,354704.5963],[389299.7988,352552.9022],[391693.9007,351931.699999999],[392281.6994,350089.997199999],[391263.1004,350014.198899999],[391796.997,347154.497400001],[393154.9997,345953.101299999],[393053.503,344488.8005],[394152.5037,344425.498600001],[393928.304,343143.095699999],[394776.1024,341906.299699999],[394179.1023,341834.9002],[394642.2026,341061.601500001],[391924.2018,339862.004899999],[391339.7011,341541.7041],[390312.8035,342092.5964],[389173.3031,339564.800000001],[388212.3989,339605.0984],[387893.8015,338771.497099999],[385828.4962,342600.900900001],[386377.5018,342690.395300001],[385640.5005,346464.505000001],[386512.1024,346979.797499999],[384100.6034,352925.5955],[386796.3014,355073.3007],[387961.3038,354745.104699999]]]},"properties":{"LAD22CD":"E06000021","LAD22NM":"Stoke-on-Trent","BNG_E":389438,"BNG_N":346652,"LONG":-2.15888,"LAT":53.01707,"OBJECTID":21,"GlobalID":"bdac0c6a-0a17-42e7-8962-448fd9465f28"}},{"type":"Feature","id":22,"geometry":{"type":"Polygon","coordinates":[[[379613.8968,170018.901900001],[380725.9989,168577.704500001],[379864.7033,167449.997300001],[380490.5034,166503.9981],[379447.6021,166247.8014],[379765.5977,163430.897700001],[376113.5963,160776.897399999],[379450.4962,160439.604],[379131.503,159391.1041],[379952.6039,158503.598099999],[373099.8038,155128.904100001],[372148.2001,156263.599300001],[368585.6988,152886.7959],[367048.9019,153311.904300001],[366751.7993,152769.999399999],[364778.4017,153438.797900001],[365424.5012,154752.301899999],[361208.6035,156097.197000001],[356332.9031,153935.4958],[355563.0041,155271.4034],[351670.4035,157895.0024],[352219.5988,159253.803400001],[350784.7026,160095.502499999],[352008.4016,161387.9025],[351783.196,164763.1964],[352771.3006,162559.2972],[353534.4964,162625.598200001],[352973.2963,160538.195699999],[354196.0966,160475.703600001],[355243.5987,164206.2958],[356244.6975,164206.3957],[356469.697,165530.296800001],[357361.5982,164827.098099999],[356767.5003,165780.7951],[358129.8977,165704.297],[359041.1007,166666.8015],[360390.8007,166858.996400001],[361088.5967,168227.4047],[362817.6025,168149.497],[363512.2983,170773.695900001],[364607.9021,170099.198899999],[365911.3968,170118.4034],[365833.0027,168908.5997],[366653.9964,169284.202199999],[367449.8015,168647.704399999],[376235.5984,171227.1961],[377503.5981,170938.5987],[378359.5014,169317.3028],[379613.8968,170018.901900001]]]},"properties":{"LAD22CD":"E06000022","LAD22NM":"Bath and North East Somerset","BNG_E":366217,"BNG_N":161999,"LONG":-2.48654,"LAT":51.35604,"OBJECTID":22,"GlobalID":"285ae967-41df-4702-b910-37f55d9a7c85"}},{"type":"Feature","id":23,"geometry":{"type":"MultiPolygon","coordinates":[[[[342402.185,174491.8193],[340495.6447,172490.234999999],[340841.4,172998.5],[342402.185,174491.8193]]],[[[347714.483,177311.868799999],[347715.3105,177310.4265],[347713.1279,177308.930199999],[347714.483,177311.868799999]]],[[[352554.7028,175948.104699999],[349613.257,178356.7063],[350363.3965,178207.198100001],[352554.7028,175948.104699999]]],[[[347714.483,177311.868799999],[347355.6849,177393.2908],[347630.101,177475.647500001],[349236.1977,177315.0034],[349390.504,178401.102600001],[349491.066,178381.059900001],[349240.1238,177313.171499999],[347714.483,177311.868799999]]],[[[352554.7028,175948.104699999],[350892.4985,177889.598999999],[350251.2966,179057.104800001],[350987.2531,179999.9857],[353370.0982,183052.801000001],[354814.0969,179554.702299999],[359783.0984,179992.1971],[359271.6985,178197.400900001],[361783.6966,177178.4025],[364283.3023,177340.1962],[364510.0002,173831.400599999],[363838.5966,172475.5987],[362613.8011,172005.203400001],[364607.9021,170099.198899999],[363512.2983,170773.695900001],[362817.6025,168149.497],[361088.5967,168227.4047],[360390.8007,166858.996400001],[359041.1007,166666.8015],[356044.796,167351.4955],[356338.7984,171118.8971],[355607.8984,171469.096799999],[356600.2987,172433.300799999],[356052.9998,174359.8993],[354167.2966,176589.101199999],[352554.7028,175948.104699999]]]]},"properties":{"LAD22CD":"E06000023","LAD22NM":"Bristol, City of","BNG_E":359990,"BNG_N":174846,"LONG":-2.57742,"LAT":51.47115,"OBJECTID":23,"GlobalID":"56eaea1c-a6e3-45a8-9c4d-1f729bf49806"}},{"type":"Feature","id":24,"geometry":{"type":"MultiPolygon","coordinates":[[[[331349.36,157501.59],[331306.2288,157390.3883],[331329.4674,157537.1677],[331349.36,157501.59]]],[[[330810.372,158465.566],[331093.6541,157958.918099999],[330403.5144,158589.4449],[330810.372,158465.566]]],[[[347714.483,177311.868799999],[347713.1279,177308.930199999],[347715.3105,177310.4265],[347714.483,177311.868799999],[349240.1238,177313.171499999],[349491.066,178381.059900001],[349613.257,178356.7063],[352554.7028,175948.104699999],[354167.2966,176589.101199999],[356052.9998,174359.8993],[356600.2987,172433.300799999],[355607.8984,171469.096799999],[356338.7984,171118.8971],[356044.796,167351.4955],[359041.1007,166666.8015],[358129.8977,165704.297],[356767.5003,165780.7951],[357361.5982,164827.098099999],[356469.697,165530.296800001],[356244.6975,164206.3957],[355243.5987,164206.2958],[354196.0966,160475.703600001],[352973.2963,160538.195699999],[353534.4964,162625.598200001],[352771.3006,162559.2972],[351783.196,164763.1964],[352008.4016,161387.9025],[350784.7026,160095.502499999],[352219.5988,159253.803400001],[351670.4035,157895.0024],[346813.7987,158441.8958],[343053.6963,158903.8036],[343610.8975,156123.599400001],[338944.597,156025.7974],[338411.496,156766.4954],[337540.3971,154991.9034],[334784.5019,156412.696699999],[333033.1025,156625.795700001],[332282.2001,155625.901900001],[331087.903,156011.4015],[331218.6828,156837.431399999],[331584.3298,157448.5538],[331129.9937,158063.851500001],[331418.0123,159999.9848],[331652.75,161577.949999999],[330842.95,162409.189999999],[332738.9,163178.050000001],[333123.82,164407.65],[333076.575,165316.84],[331847.96,165944.34],[332533.1374,166193.7903],[334724.7227,166795.0876],[334742.38,166194.960000001],[336277.5,166714.16],[338134.46,165760.76],[336592.14,166752.029999999],[340000.0127,171761.6492],[340495.6447,172490.234999999],[342402.185,174491.8193],[344556.8,176553.300000001],[347355.6849,177393.2908],[347714.483,177311.868799999]]]]},"properties":{"LAD22CD":"E06000024","LAD22NM":"North Somerset","BNG_E":347614,"BNG_N":166718,"LONG":-2.75438,"LAT":51.39706,"OBJECTID":24,"GlobalID":"1854213d-f2b5-4f2b-a1d9-978fc66a7996"}},{"type":"Feature","id":25,"geometry":{"type":"Polygon","coordinates":[[[379893.998,188356.7028],[380503.3987,186666.0967],[381208.9039,186560.397],[382055.3995,185702.102700001],[381611.8977,181962.5031],[382587.1977,180914.903000001],[377582.2972,177668.902100001],[378473.1019,176537.695900001],[379927.9017,176451.400599999],[379548.901,173332.103499999],[380286.298,173246.2981],[379613.8968,170018.901900001],[378359.5014,169317.3028],[377503.5981,170938.5987],[376235.5984,171227.1961],[367449.8015,168647.704399999],[366653.9964,169284.202199999],[365833.0027,168908.5997],[365911.3968,170118.4034],[364607.9021,170099.198899999],[362613.8011,172005.203400001],[363838.5966,172475.5987],[364510.0002,173831.400599999],[364283.3023,177340.1962],[361783.6966,177178.4025],[359271.6985,178197.400900001],[359783.0984,179992.1971],[354814.0969,179554.702299999],[353370.0982,183052.801000001],[354118.48,186292.83],[356620.13,189832.210000001],[360000.0088,192458.0878],[360266.36,192665.02],[360727.172,195348.596999999],[363118.8061,197748.1316],[362599.2244,198225.396400001],[362706.5003,198319.900900001],[366230.5961,196244.604900001],[366144.699,194117.8037],[369449.7977,194948.3959],[373385.3962,193530.401799999],[372380.0017,193002.0031],[373175.8975,192152.0964],[372759.9012,188798.6963],[374428.0007,188817.200999999],[374777.4017,189496.196599999],[377161.4982,188135.6961],[379893.998,188356.7028]]]},"properties":{"LAD22CD":"E06000025","LAD22NM":"South Gloucestershire","BNG_E":367559,"BNG_N":183198,"LONG":-2.46922,"LAT":51.54673,"OBJECTID":25,"GlobalID":"61621b0e-bd12-4a41-bf1f-c35293ff1af7"}},{"type":"Feature","id":26,"geometry":{"type":"MultiPolygon","coordinates":[[[[245726.5973,60484.4747000001],[245476.8,60344.8499999996],[244877.7989,60791.3048999999],[245726.5973,60484.4747000001]]],[[[250032.7026,62615.0958999991],[250274.9012,61266.4020000007],[252160.1015,60385.6041000001],[252881.8989,57827.8961999994],[255144.5992,57717.4978],[256428.7015,56609.5050000008],[255971.2985,55203.8972999994],[254321.503,55075.4041000009],[254062.0969,52751.4992999993],[251333.6001,51089.0952000003],[249039.6317,51808.0808000006],[249012.6113,51854.8388999999],[248530.3703,53182.8596000001],[250331.9,52854.3000000007],[249839.8,53194],[250802.02,55374.0800000001],[250695.1,55757.5],[249614.8,53462.0500000007],[248404.5961,53529.2232000008],[248355.4015,53664.6978999991],[247822.144,53561.5526000001],[246976.5128,53608.4900000002],[246882.6,54181.5],[246164.7,53242.0999999996],[246227.5,54412.0500000007],[245458.5197,54137.0913999993],[244881.5,54189.0965999998],[244766.0815,54636.2072999999],[244935.97,55398.3300000001],[244362.7456,56198.6582999993],[244216.2,56766.3499999996],[245171.21,57467.2699999996],[244107.1998,56993.1952],[243410.385,57791.3560000006],[243435.1518,58037.7434999999],[244148.9632,59999.9773999993],[244371.86,60612.7100000009],[246262.55,60005.3499999996],[246426.5295,60875.7032999992],[246272.677,60789.7071000002],[246999.897,61842.4970999993],[248422.4998,61412.1002999991],[250032.7026,62615.0958999991]]]]},"properties":{"LAD22CD":"E06000026","LAD22NM":"Plymouth","BNG_E":249945,"BNG_N":58255,"LONG":-4.11297,"LAT":50.40494,"OBJECTID":26,"GlobalID":"7f35a66a-7acb-454b-a5a2-a47f3fe9d9db"}},{"type":"Feature","id":27,"geometry":{"type":"Polygon","coordinates":[[[293106.3492,69626.1817000005],[293104.4736,69621.7028999999],[292620.9,65758.3499999996],[295010.2,63681.3000000007],[292479.9,62647.1999999993],[290740.86,63495.7200000007],[289543.5866,60000.0132999998],[289313.8,59329.0999999996],[290309.25,56945.9800000004],[292110.2,57027.8000000007],[292634.35,56207.75],[293122.07,56654.5299999993],[292580.2,57291],[294742.0662,56624.4495999999],[292900.1152,54341.2631000001],[292894.6863,54316.7018999998],[290284.0025,53762.5998999998],[288162.3999,56106.1991000008],[287839.8036,57898.7959000003],[286473.6959,57823.8973999992],[284454.2002,59727.6024999991],[284702.2033,61423.7969000004],[287439.8027,62581.8954000007],[287687.303,65412.4952000007],[288744.3033,66833.8982999995],[289090.802,66410.9993999992],[291601.2994,68318.6032999996],[292272.6041,69761.6002999991],[293106.3492,69626.1817000005]]]},"properties":{"LAD22CD":"E06000027","LAD22NM":"Torbay","BNG_E":289730,"BNG_N":64613,"LONG":-3.55523,"LAT":50.47092,"OBJECTID":27,"GlobalID":"7a8f95de-2679-456a-b9fe-232c7c6dd714"}},{"type":"Feature","id":28,"geometry":{"type":"Polygon","coordinates":[[[422004.5015,199086.601399999],[420829.201,196927.499399999],[421408.499,194863.8002],[423630.0978,192963.6041],[422682.3033,191609.001800001],[423151.2988,190878.7009],[421521.9016,189668.7972],[421497.9992,187230.0953],[422514.4998,185668.0024],[424000.5978,186460.795499999],[424512.5996,185956.6998],[427655.3036,180005.103399999],[419595.4019,178011.604],[419832.9008,176642.096100001],[415766.7005,175968.5988],[414136.6025,176185.296800001],[413043.2991,178695.3983],[411369.7991,178001.397],[410726.1979,180625.2959],[411409.6969,179120.896500001],[411887.0035,179626.501800001],[410232.5001,183055.3003],[410546.1999,183835.297],[409446.3005,184531.797700001],[409792.9971,185161.0975],[410827.6039,184771.099199999],[410965.1975,186655.4998],[412309.398,187053.3959],[411350.0027,187610.896299999],[411742.7974,188666.903999999],[411015.4016,190426.000499999],[412012.9963,191848.0034],[414728.5979,192676.7962],[413992.9983,195987.998400001],[414715.2986,196490.204600001],[417125.5031,195965.4048],[418938.3035,196527.304],[420077.3009,197041.3968],[421051.6033,199297.4011],[422004.5015,199086.601399999]]]},"properties":{"LAD22CD":"E06000030","LAD22NM":"Swindon","BNG_E":418551,"BNG_N":186564,"LONG":-1.73367,"LAT":51.57763,"OBJECTID":28,"GlobalID":"20ab4254-78bb-4d4c-81ae-5142457c65f2"}},{"type":"Feature","id":29,"geometry":{"type":"Polygon","coordinates":[[[533246.0991,308906.795700001],[534704.6999,301457.597999999],[522976.2984,298283.796499999],[522287.2009,296296.5954],[522991.7002,295318.995200001],[522131.5012,295670.604499999],[520980.804,294830.494999999],[519800.5977,295440.700300001],[519182.1027,293125.5031],[517524.7959,292843.503799999],[515933.4991,291254.798599999],[513154.6991,295603.003900001],[513631.7996,296319.9987],[512042.0034,297561.0034],[509528.9995,297817.899900001],[508718.0977,299559.001499999],[507472.302,299057.904899999],[503186.1977,298398.4037],[502228.5008,299296.896500001],[503603.4967,303961.5013],[501950.0981,305791.0976],[504763.8983,307404.4958],[507959.1976,306780.704299999],[511676.4009,308374.2981],[512669.2959,309871.7995],[515777.6015,309433.8049],[517754.2972,307382.402100001],[520976.096,309159.703299999],[522343.3992,307608.8972],[523189.5981,308534.202400001],[525850.1969,307594.501399999],[528418.5004,309965.2028],[529410.9997,309388.197899999],[531011.2011,310371.0966],[533246.0991,308906.795700001]]]},"properties":{"LAD22CD":"E06000031","LAD22NM":"Peterborough","BNG_E":517372,"BNG_N":300777,"LONG":-0.26874,"LAT":52.59214,"OBJECTID":29,"GlobalID":"f5db7515-a227-4f2e-a1c3-8e1aae80dcdd"}},{"type":"Feature","id":30,"geometry":{"type":"Polygon","coordinates":[[[511131.3034,225358.101299999],[511733.0033,223452.3968],[513680.9979,221301.4025],[513353.1001,220771.7041],[512340.5983,220092.498500001],[510537.2963,220326.8015],[508723.0035,218503.703299999],[506419.3005,221540.2041],[502891.5027,223505.601500001],[504501.6972,224338.0033],[504231.5972,225990.9001],[507629.997,226615.201400001],[508626.6023,226415.7985],[508838.8961,224932.0032],[511131.3034,225358.101299999]]]},"properties":{"LAD22CD":"E06000032","LAD22NM":"Luton","BNG_E":508606,"BNG_N":222559,"LONG":-0.42319,"LAT":51.89102,"OBJECTID":30,"GlobalID":"81173d24-838f-477f-8f53-5e9db2b786a7"}},{"type":"Feature","id":31,"geometry":{"type":"Polygon","coordinates":[[[593290.6,187463.5984],[593494.2984,186302.650800001],[595587.8966,186356.0955],[595709.6685,186210.4933],[593105.86,183937.15],[585227.17,185551.689999999],[583736.2978,185484.1031],[583620.9877,185613.187000001],[582271.4384,185420.521500001],[582503.1001,189021.8024],[582954.2039,189736.297900001],[585490.7969,189390.596799999],[593290.6,187463.5984]]]},"properties":{"LAD22CD":"E06000033","LAD22NM":"Southend-on-Sea","BNG_E":587777,"BNG_N":186837,"LONG":0.706923,"LAT":51.54917,"OBJECTID":31,"GlobalID":"357b16f3-49bc-438c-9921-18a1ea31f389"}},{"type":"Feature","id":32,"geometry":{"type":"MultiPolygon","coordinates":[[[[576891.6282,182723.8727],[576944.1443,182389.5855],[576554.5358,182717.7699],[576891.6282,182723.8727]]],[[[567767.296,186964.201400001],[568434.2967,185707.801000001],[570754.4981,186738.8959],[571137.3988,185975.704299999],[572386.4019,186145.9956],[574100.445,184722.4465],[575062.2,182715.5],[576433.47,182355.550000001],[569576.2181,180814.039799999],[568247.4,182295.6],[569163.492,180721.259],[569848.85,180510.07],[569764.7359,179999.9595],[569174.37,176419.68],[567215.83,175521.98],[562744.4,175193],[561107.75,177570.289999999],[560000.0114,177366.1855],[559682.05,177307.6],[558585.2,176070.199999999],[553651.631,179075.199899999],[553794.5971,179779.198100001],[554880.6033,180182.402899999],[554622.9001,180976.045499999],[555681.0011,181163.402000001],[555313.1971,182418.1029],[556099.1,183481.698100001],[556473.7969,182292.4989],[557157.098,182311.803099999],[557223.3962,183903.297800001],[561956.6962,184981.8989],[560412.2973,187750.496200001],[565233.498,187905.901799999],[565870.0003,188078.9023],[566020.4974,187022.3048],[567767.296,186964.201400001]]]]},"properties":{"LAD22CD":"E06000034","LAD22NM":"Thurrock","BNG_E":562123,"BNG_N":181590,"LONG":0.334861,"LAT":51.50998,"OBJECTID":32,"GlobalID":"00983f2c-a27a-4952-9135-44132646f12a"}},{"type":"Feature","id":33,"geometry":{"type":"MultiPolygon","coordinates":[[[[581512.2004,170173.0978],[582038.1034,169506.0987],[580761.8009,169538.1995],[581512.2004,170173.0978]]],[[[579729.6017,170287.0952],[578268.9974,170135.5985],[578449.4982,170778.804400001],[579729.6017,170287.0952]]],[[[580000.0095,178783.821699999],[581715.9,178370.5],[584810.09,178766.779999999],[586990.7,176810],[585622.4,178194.6],[587633.71,178305.25],[589088.45,176930.289999999],[589357.76,175242.34],[588484.6,174132],[586232.88,173865.18],[585766.9,175499.15],[584860.8073,175394.928400001],[583275.4,175212.57],[582126.44,174193.609999999],[581235.2,172279],[582047.82,173185.41],[582509.83,172721.609999999],[581641.57,171943.140000001],[580000.0011,171445.157400001],[578381.59,170954.199999999],[576207.619,171226.373],[575086.4,169816.25],[575626.54,168136.609999999],[576570.88,170972.390000001],[578259.6,169306.65],[579999.9984,168693.193600001],[580626.54,168472.35],[581136.84,168945.34],[580779.09,168508.609999999],[581876.23,167659.08],[582364.88,168713.550000001],[583249.5045,168831.5461],[582855.1972,167690.398499999],[582696.4962,166617.095699999],[583516.3027,166328.8982],[581314.7971,162568.804500001],[578650.6035,163080.797900001],[577337.6023,161827.5967],[576032.3019,162541.802200001],[574622.0007,163409.104],[574381.3026,164711.801100001],[571071.1992,166163.195599999],[570984.7002,163026.5035],[568528.0018,163757.7042],[567240.1975,163330.796399999],[567304.2039,164278.795],[569251.4977,168247.598999999],[570784.403,168671.0977],[570656.3984,169439.5978],[571757.7984,169474.3978],[572221.2038,171120.396600001],[573192.2989,171418.101399999],[572998.004,174523.8024],[570829.5667,176121.590700001],[570587.1,176683.859999999],[571513.45,176812.48],[570836.27,177086.02],[571495.47,178855.939999999],[576866.74,179538.560000001],[580000.0095,178783.821699999]]]]},"properties":{"LAD22CD":"E06000035","LAD22NM":"Medway","BNG_E":578207,"BNG_N":175198,"LONG":0.563174,"LAT":51.44772,"OBJECTID":33,"GlobalID":"f3cdadf8-d832-48d8-aefb-a916ed756bc4"}},{"type":"Feature","id":34,"geometry":{"type":"Polygon","coordinates":[[[492812.7977,165900.300899999],[488139.2992,163641.497400001],[485406.9024,159918.6031],[481058.9024,162174.0975],[482683.3032,164140.9045],[484402.2005,164328.300799999],[483458.5038,168044.897],[484079.1013,168449.801100001],[483497.6019,172036.804300001],[484659.8999,175115.902899999],[485922.598,174139.5024],[488715.497,173788.8028],[489396.3,175024.899],[491171.5029,175035.8958],[492309.6016,174042.9001],[493413.1041,174468.498199999],[493084.9012,172551.8969],[495273.5032,172355.703],[495278.4997,169270.0963],[492118.2008,171117.497500001],[490749.298,168793.3028],[492812.7977,165900.300899999]]]},"properties":{"LAD22CD":"E06000036","LAD22NM":"Bracknell Forest","BNG_E":488169,"BNG_N":168792,"LONG":-0.73363,"LAT":51.4113,"OBJECTID":34,"GlobalID":"6bbd8e91-1d68-4491-918f-adc87e8869c4"}},{"type":"Feature","id":35,"geometry":{"type":"Polygon","coordinates":[[[453725.7004,182088.9969],[455258.9025,182377.404300001],[455269.5963,181353.1975],[459709.3968,183018.001],[459627.8037,180045.501800001],[461651.56,179323.619999999],[462430.704,177129.0967],[463428.8016,176705.4979],[465956.5972,177416.704299999],[467007.9001,175580.300000001],[465889.1031,173913.1971],[466165.2961,172920.301200001],[467219.6992,173080.4958],[469541.0961,170181.1953],[468844.8998,166443.795299999],[470969.7015,164568.801999999],[470683.4,163129.903899999],[466241.9999,162547.7005],[463657.701,165380.999500001],[461663.8968,164277.5954],[461659.0982,162748.303099999],[460075.997,162365.2028],[457408.7032,162349.397299999],[452222.2959,163930.704700001],[445378.4005,163316.7004],[441089.5011,163919.697799999],[439894.396,162112.6951],[438804.704,161908.4035],[439824.5026,159869.997],[435050.8019,159039.504699999],[435913.4991,161081.5002],[434869.5012,162029.098999999],[435218.4982,163521.401799999],[431013.6984,166376.9044],[431185.7976,167986.103800001],[429925.8038,168593.9998],[430334.1982,169315.5033],[433009.7989,169541.898499999],[433175.504,172162.1984],[429094.5038,177323.501],[428907.2997,180748.000800001],[429143.8999,182093.195699999],[430948.9995,183925.1513],[432621.0978,183123.6008],[433867.1986,183653.3991],[436810.603,181209.998500001],[437241.1024,182315.302100001],[438393.4981,182091.396199999],[439858.7031,183122.801000001],[440132.3979,182031.203400001],[441364.3008,183316.795399999],[442832.3009,182571.5988],[443962.0969,183920.4027],[445698.4985,182959.0978],[446626.9006,185194.8978],[451374.0028,182357.4001],[453725.7004,182088.9969]]]},"properties":{"LAD22CD":"E06000037","LAD22NM":"West Berkshire","BNG_E":450575,"BNG_N":172095,"LONG":-1.27364,"LAT":51.44559,"OBJECTID":35,"GlobalID":"47364d52-983a-412c-9f21-2b5b6301848b"}},{"type":"Feature","id":36,"geometry":{"type":"Polygon","coordinates":[[[473102.2041,173916.2962],[474563.1959,172341.097100001],[473398.2019,172436.300000001],[473551.5021,170563.096100001],[472290.3996,168658.451199999],[471475.198,168361.2962],[469541.0961,170181.1953],[467219.6992,173080.4958],[466165.2961,172920.301200001],[465889.1031,173913.1971],[467007.9001,175580.300000001],[468618.2019,174607.8982],[469644.2009,176625.400900001],[472471.5022,177640.700200001],[473635.2969,175644.1019],[472675.0029,174557.6029],[473102.2041,173916.2962]]]},"properties":{"LAD22CD":"E06000038","LAD22NM":"Reading","BNG_E":470226,"BNG_N":173154,"LONG":-0.99071,"LAT":51.45302,"OBJECTID":36,"GlobalID":"2fc02c7f-aef9-4d35-9d71-11a6d470f6ca"}},{"type":"Feature","id":37,"geometry":{"type":"Polygon","coordinates":[[[504919.2023,178392.095000001],[503611.1976,175520.3971],[502587.903,175761.3982],[501859.2499,177444.296499999],[500018.1978,178567.504899999],[499682.698,177907.9037],[497229.0998,179079.998199999],[496744.1995,178508.6018],[495423.2995,179280.400900001],[494342.7018,178838.997199999],[493149.897,179292.5974],[493055.2025,181910.098099999],[495073.5028,183109.8047],[497928.6025,181359.795600001],[499474.7988,182536.198899999],[498939.1007,182116.199100001],[499421.2966,180119.7006],[502320.796,179981.000299999],[502020.9974,178182.595100001],[504919.2023,178392.095000001]]]},"properties":{"LAD22CD":"E06000039","LAD22NM":"Slough","BNG_E":498920,"BNG_N":179246,"LONG":-0.57617,"LAT":51.5035,"OBJECTID":37,"GlobalID":"ba1d8073-eae1-480b-b065-8852a61330d3"}},{"type":"Feature","id":38,"geometry":{"type":"Polygon","coordinates":[[[494342.7018,178838.997199999],[495423.2995,179280.400900001],[496744.1995,178508.6018],[497229.0998,179079.998199999],[499682.698,177907.9037],[500018.1978,178567.504899999],[501859.2499,177444.296499999],[502587.903,175761.3982],[501489.2981,174217.9],[502779.7986,171734.900699999],[499346.2006,173414.199999999],[497819.1988,172344.7961],[496215.7983,166832.903899999],[496383.9975,165851.7048],[492812.7977,165900.300899999],[490749.298,168793.3028],[492118.2008,171117.497500001],[495278.4997,169270.0963],[495273.5032,172355.703],[493084.9012,172551.8969],[493413.1041,174468.498199999],[492309.6016,174042.9001],[491171.5029,175035.8958],[489396.3,175024.899],[488715.497,173788.8028],[485922.598,174139.5024],[484659.8999,175115.902899999],[483497.6019,172036.804300001],[482238.3997,172239.7962],[481112.3964,174547.4956],[481928.6987,175506.5011],[481375.7024,177106.903000001],[482171.5982,179363.1972],[479604.4984,181417.599099999],[480346.1004,183507.800799999],[483785.8987,184297.604699999],[485091.3969,186078.504899999],[486238.9033,185838.8035],[488925.2019,187298.595699999],[489395.797,185873.703500001],[490448.4028,185952.0011],[490830.3964,185026.0962],[490091.3009,179927.695599999],[493685.6034,177143.3026],[494938.0034,177932.796599999],[494342.7018,178838.997199999]]]},"properties":{"LAD22CD":"E06000040","LAD22NM":"Windsor and Maidenhead","BNG_E":492079,"BNG_N":176541,"LONG":-0.67541,"LAT":51.48034,"OBJECTID":38,"GlobalID":"a11797e6-2d43-4fe3-b83b-b5177e2b3355"}},{"type":"Feature","id":39,"geometry":{"type":"Polygon","coordinates":[[[480346.1004,183507.800799999],[479604.4984,181417.599099999],[482171.5982,179363.1972],[481375.7024,177106.903000001],[481928.6987,175506.5011],[481112.3964,174547.4956],[482238.3997,172239.7962],[483497.6019,172036.804300001],[484079.1013,168449.801100001],[483458.5038,168044.897],[484402.2005,164328.300799999],[482683.3032,164140.9045],[481058.9024,162174.0975],[478238.5968,162098.999],[475024.5978,163543.4955],[470645.1017,162796.499299999],[470683.4,163129.903899999],[470969.7015,164568.801999999],[468844.8998,166443.795299999],[469541.0961,170181.1953],[471475.198,168361.2962],[472290.3996,168658.451199999],[473551.5021,170563.096100001],[473398.2019,172436.300000001],[474563.1959,172341.097100001],[473102.2041,173916.2962],[474996.9027,174880.200300001],[476883.0017,178101.998199999],[478505.56,178899.890000001],[477902.0005,181103.399],[476379.8962,182545.8961],[476591.7036,183461.404100001],[477752.1958,185399.499399999],[480346.1004,183507.800799999]]]},"properties":{"LAD22CD":"E06000041","LAD22NM":"Wokingham","BNG_E":476624,"BNG_N":169902,"LONG":-0.89935,"LAT":51.42296,"OBJECTID":39,"GlobalID":"b92523e2-a860-433a-9c95-44df8a2862c2"}},{"type":"Feature","id":40,"geometry":{"type":"Polygon","coordinates":[[[496530.3968,246752.0973],[491372.402,239759.5989],[493173.8531,238517.5044],[493396.8531,237054.803099999],[492665.7965,236420.104800001],[493199.4993,235581.005000001],[491972.2962,234321.295600001],[493128.196,231282.295499999],[492633.0966,230939.4036],[488461.6976,233153.5998],[488428.2968,231824.700200001],[486627.897,230902.304300001],[485113.1969,232622.5019],[482252.3008,232570.696699999],[481094.4964,235529.0998],[477511.3,238583.195599999],[478787.8004,239766.096999999],[478068.4023,240892.704500001],[479652.1961,241239.6952],[480191.7034,242151.6042],[479109.0032,244310.496200001],[477530.9974,245234.501700001],[477379.2966,246535.499299999],[476309.2031,246792.195800001],[476719.502,248147.097999999],[480303.2014,248902.2018],[480025.9035,250129.600500001],[481254.6979,250014.803400001],[481669.8037,251635.499399999],[482740.3013,251024.704299999],[483673.502,252976.4956],[485608.4035,252803.0952],[488587.7975,255602.6039],[491131.704,256034.000399999],[493941.1013,254585.705],[493776.4969,251620.8037],[493089.3041,251368.4959],[493482.1977,249871.804300001],[495423.7035,249309.495300001],[496530.3968,246752.0973]]]},"properties":{"LAD22CD":"E06000042","LAD22NM":"Milton Keynes","BNG_E":486408,"BNG_N":242308,"LONG":-0.7407,"LAT":52.07241,"OBJECTID":40,"GlobalID":"0d4821a7-8ea0-4489-a4cc-c251cf5ec396"}},{"type":"Feature","id":41,"geometry":{"type":"Polygon","coordinates":[[[531277.7969,111339.898600001],[531282.4966,110391.0002],[532244.2995,109895.0022],[533939.5995,110440.9959],[534839.3005,109927.302999999],[535739.8014,106404.101500001],[538316.4984,106471.302200001],[537731.0991,104295.595000001],[539529.8993,104344.1011],[539862.3979,103579.100099999],[538325.9781,101777.970699999],[538319.7471,101780.125600001],[538016.9121,101848.7927],[534493.7201,102980.013599999],[534538.1994,102637.581800001],[533221.6997,102936.094699999],[533229.118,103216.251],[527386.6579,104259.1753],[525737.5455,104633.1073],[525682.3236,104638.099099999],[523604.0031,108612.2994],[523996.6,109075.196900001],[524849.9968,110241.0032],[527618.6965,109239],[527938.3988,111444.6986],[528898.6021,111918.302999999],[528964.8017,110627.102600001],[531277.7969,111339.898600001]]]},"properties":{"LAD22CD":"E06000043","LAD22NM":"Brighton and Hove","BNG_E":530279,"BNG_N":106850,"LONG":-0.15079,"LAT":50.8465,"OBJECTID":41,"GlobalID":"465759b8-9e3f-4277-b5c6-439de9b6ef6d"}},{"type":"Feature","id":42,"geometry":{"type":"MultiPolygon","coordinates":[[[[464020.65,102122.5],[463398.181,101946.029999999],[463739.337,102733.824999999],[464020.65,102122.5]]],[[[467404.9,104009.529999999],[467455.7255,100000.0019],[467462.945,99430.466],[468189.5113,100000.0383],[468357.035,100131.364],[468387.9658,100000.042300001],[468549.029,99316.2229999993],[464354.7885,97967.5493000001],[463873.8456,98406.3004000001],[462904.45,99365],[462833.2331,100000.0063],[462699.379,101193.517999999],[464129.72,101451.91],[463876.9319,101752.5353],[464158.0523,102278.3957],[463910.0049,102999.386700001],[463468.651,103403.137],[464580.8,103209.199999999],[465173.5,104571.949999999],[467404.9,104009.529999999]]],[[[459460.064,104647.916999999],[459460.0946,104561.350400001],[459152.9446,104623.140699999],[459460.064,104647.916999999]]],[[[459634.689,105382.904999999],[458454.157,104822.511],[458450.5437,104917.579700001],[459634.689,105382.904999999]]],[[[459634.689,105382.904999999],[462171.7669,104561.922],[462140.85,104367.550000001],[459999.9794,105234.9099],[459634.689,105382.904999999]]],[[[468895.6976,106298.6017],[468833.1322,104016.1351],[468768.703,103443.189999999],[467957.247,104431.679],[465018.572,104604.647],[464281.2,103609.6],[463025.052,104644.229],[463267.412,105557.380000001],[462476.5769,105263.0518],[462326.0989,106902.0989],[466676.295,106763.1767],[468895.6976,106298.6017]]]]},"properties":{"LAD22CD":"E06000044","LAD22NM":"Portsmouth","BNG_E":465619,"BNG_N":101352,"LONG":-1.07006,"LAT":50.808,"OBJECTID":42,"GlobalID":"5e9ab634-99c6-4f2e-babf-f8f45932df73"}},{"type":"Feature","id":43,"geometry":{"type":"Polygon","coordinates":[[[443658.5962,116637.4022],[445435.2997,115930.204600001],[445217.3992,114783.902799999],[446955.4004,113592.8037],[447774.5967,111495.1042],[444919.9586,109000.437100001],[444760.2506,109141.077299999],[443399.7,110411.25],[443348.95,111794.699999999],[444267.35,112707.1],[443947.3,112544.1],[443129,112116.35],[442778.9,109458.199999999],[442362.78,110738.029999999],[439999.9691,112138.578199999],[439283.1,112563.5],[438976.9,111737.4],[437701.1911,112456.6061],[437029.8966,114002.197899999],[436847.4608,114488.347999999],[438763.5034,116864.6971],[440583.9964,116580.7984],[441807.0028,117579.602499999],[443658.5962,116637.4022]]]},"properties":{"LAD22CD":"E06000045","LAD22NM":"Southampton","BNG_E":442303,"BNG_N":113700,"LONG":-1.39952,"LAT":50.9212,"OBJECTID":43,"GlobalID":"a0541bfb-3f93-45f7-b90d-2b4cc6ba0342"}},{"type":"Feature","id":44,"geometry":{"type":"Polygon","coordinates":[[[448598.8753,96622.7377000004],[449741.9273,96035.5208999999],[449826.4953,96059.0976999998],[450702.75,92514.5700000003],[450073.5713,96127.9801000003],[451254.8,96457.2956000008],[453160.446,94966.9149999991],[453546.982,93488.6659999993],[454078.335,94021.1209999993],[454576.6692,93830.8281999994],[455392.0457,93136.6480999999],[455376.4898,93107.8546999991],[455427.7272,93106.2703000009],[455527.0111,93021.7437999994],[455940.2067,93090.4231000002],[459759.08,92972.3340000007],[460000.0331,92871.5291000009],[463013.726,91610.7239999995],[463939.563,88695.4489999991],[463451.98,89300.0299999993],[463079,88586.5],[464654.1642,88697.2413999997],[465765.1508,87960.9010000005],[465775.24,87952.0590000004],[463805.998,85421.9079999998],[461464.63,85100.1999999993],[460000.0349,84035.5001999997],[459456.95,83640.6999999993],[458389.5743,80000.0151000004],[457750.42,77819.9399999995],[449573.6784,75326.6272999998],[446443.6609,78128.1224000007],[444390.9303,80000.0182000007],[443315.4,80980.8000000007],[439999.9987,82440.8852999993],[439120.3,82828.3000000007],[436533.7,85360.1999999993],[429318.199,84910.7129999995],[432016.19,86611.8000000007],[433839.519,89819.3577999994],[433960.2514,89831.5745999999],[435291.32,89805.0099999998],[434719.95,89690.8699999992],[435420.34,88821.3399999999],[435647.63,89154.3900000006],[435125.41,89675.6099999994],[437556.084,90126.4069999997],[439999.9931,91670.0693999995],[440465.0016,91963.7858000007],[441245.8162,91897.9857000001],[441617.832,91805.2650000006],[440893.61,91826.1899999995],[441535.9,91165],[441450.49,90794.9900000002],[441544.2,89486.6999999993],[441615.99,90704.3900000006],[442619.32,90264.4499999993],[441879.007,91218.5399999991],[443520.51,91609.5199999996],[442193.6361,92052.4540999997],[442776.2003,92308.5465999991],[445729.71,93475.9499999993],[448598.8753,96622.7377000004]]]},"properties":{"LAD22CD":"E06000046","LAD22NM":"Isle of Wight","BNG_E":447183,"BNG_N":85949,"LONG":-1.33366,"LAT":50.67129,"OBJECTID":44,"GlobalID":"f946373b-5178-4057-889c-0cf0b8ff212b"}},{"type":"Feature","id":45,"geometry":{"type":"Polygon","coordinates":[[[428366.0032,554230.4026],[428216.5037,553526.1042],[430141.5029,553813.602],[431758.3016,553040.4033],[431943.0982,548600.204299999],[433401.3032,546209.398600001],[432839.5012,545053.7994],[437219.1005,545518.2465],[437816.6983,547802.502599999],[437250.7985,549558.5],[441994.8774,551930.7334],[443719.2717,549405.2608],[443171.22,549458.356000001],[445003.8,541727.4],[446380.2238,539999.9769],[448973.593,536745.2773],[448290.1026,536324.7981],[447097.001,537152.0013],[444836.197,536055.495200001],[445116.8012,535009.9045],[443974.9015,533135.301000001],[442351.0037,533093.603],[443235.8966,532101.7969],[442166.2979,529897.9977],[442604.5971,528543.395500001],[440052.7012,527819.7026],[438017.8036,524761.3981],[435563.1994,524065.1973],[436388.0024,522354.1971],[435529.0979,521874.304500001],[434423.5011,522948.696900001],[430674.6038,522465.1953],[428617.7991,521969.1973],[429000.7987,520883.898],[427487.0961,520635.9989],[426369.5028,522285.096899999],[426954.9022,524003.1951],[425536.7022,523211.001800001],[425492.6983,524779.8028],[420606.6998,524780.8025],[420823.7016,521243.395099999],[419872.1968,521341.596999999],[418911.4988,519918.5043],[418897.3008,518698.603499999],[420069.5011,517931.903000001],[419162.9979,517140.999399999],[419709.2991,515678.2981],[418128.6962,516372.2994],[417372.6983,514748.6042],[414354.9977,515198.4954],[414594.5002,512401.2961],[413511.0002,509923.6953],[410495.0971,512580.3048],[409306.9013,512032.8016],[409225.5968,509620.0022],[403823.5976,506445.301000001],[402039.5973,506235.700999999],[400308.0025,507946.9011],[397199.6969,508869.497099999],[397299.5034,509805.599099999],[392540.0996,507436.8971],[389063.3964,506991.704600001],[389793.9995,508529.0045],[388941.9961,515253.5996],[387315.6991,515286.800100001],[386548.1993,517404.304],[380423.199,522376.8006],[379121.8975,526327.6997],[381516.4034,528412.6029],[381206.7024,529905.5955],[378990.496,530676.8048],[377420.1004,532376.1983],[377170.4977,533681.8046],[379118.7974,536896.904300001],[380030.2971,544057.604599999],[381924.7978,544854.896400001],[386019.1962,543073.6962],[387332.8983,545780.4014],[389204.5024,545427.602399999],[391121.0009,549681.004899999],[394794.9,549263.23],[397552.12,550381.52],[400036.5009,552765.202099999],[401366.9982,552600.1993],[403353.33,550909.220000001],[404424.82,551041.65],[405647.76,548800.574999999],[405643.09,549430.84],[408438.9025,550680.5988],[409435.5985,555169.3039],[411599.2581,556798.303099999],[413248.7991,556554.497400001],[414096.2017,557447.1019],[414926.5041,556913.5046],[417008.0027,558240.104900001],[417736.3962,557154.4956],[419420.9034,557189.5956],[419869.2038,556473.1007],[420950.0984,557252.797499999],[420904.8,555976.9027],[422591.5993,555416.403200001],[422519.6035,553895.498500001],[426123.396,556440.5],[427053.7027,553747.5009],[428366.0032,554230.4026]]]},"properties":{"LAD22CD":"E06000047","LAD22NM":"County Durham","BNG_E":410381,"BNG_N":532242,"LONG":-1.8405,"LAT":54.68513,"OBJECTID":45,"GlobalID":"7b970d59-d438-4b21-8770-ea912e794d32"}},{"type":"Feature","id":46,"geometry":{"type":"Polygon","coordinates":[[[379198.6013,384549.203299999],[380330.4998,383560.7963],[380031.6988,382620.4954],[383030.3038,384895.7041],[384071.9024,384769.4003],[387753.6025,383989.103700001],[388048.2975,383029.7983],[387168.7968,382432.099300001],[389397.6017,381165.401900001],[390503.2974,382893.6972],[390032.3972,383480.099400001],[390846.3991,385612.698899999],[391898.6998,385013.3005],[393763.7986,385470.399599999],[395566.3008,384501.8969],[397398.6008,386357.795600001],[398030.7991,385931.897500001],[399645.7015,384185.897299999],[399464.6977,373737.1982],[401775.4008,370445.3005],[400747.1015,369548.0974],[400937.9994,368500.8971],[400083.5967,366292.699200001],[396988.4997,366172.503599999],[395402.3973,363841.900699999],[392604.7986,363508.7961],[390712.1036,365197.9026],[390641.196,362176.497400001],[389690.1035,362508.5024],[385953.4006,357646.1043],[383527.7036,354764.2992],[383138.0997,355224.7973],[380443.8034,353494.002800001],[378792.3012,353838.404200001],[376800.3027,351045.503699999],[374541.898,350654.3956],[374326.504,347720.395500001],[375242.7034,346425.995999999],[374394.8968,345675.2009],[374540.3974,344631.399700001],[370775.9993,343300.7006],[370908.8025,341438.2037],[367775.3,340267.4988],[365082.2981,342004.8015],[364516.9013,338994.1033],[362399.1986,340989.0023],[360701.2025,339937.6033],[359950.4979,340792.298599999],[360154.2004,342637.500399999],[357635.4991,344557.500800001],[354804.3018,343358.704],[353161.3992,344461.998199999],[355251.7035,349249.697699999],[353016.3026,351014.102600001],[351942.4988,349900.3015],[349647.7004,352706.598200001],[351093.1998,355204.1033],[352459.7032,355394.298800001],[352842.4967,358157.097999999],[355176.0963,357840.998500001],[355955.3041,359485.4977],[357188.6003,359218.903999999],[358279.6033,361704.3026],[360493.699,360979.800000001],[360211.7014,362580.6018],[361072.7991,362198.101299999],[361827.4036,363079.199100001],[363786.7022,361539.6997],[366685.8966,363118.3978],[368741.7036,361834.495300001],[370425.6996,362618.800799999],[370452.1003,363837.402000001],[369527.3013,364494.7039],[369600.3031,367377.798599999],[371326.8024,366849.999700001],[372934.9026,364184.1028],[373891.4039,364827.0987],[374808.4031,363943.001800001],[375455.5992,365154.494999999],[375207.3981,366563.1018],[372701.4025,367701.9958],[372441.6006,369216.9022],[373311.8008,369485.495300001],[373645.6021,370885.804400001],[375808.1003,369673.701400001],[376808.3004,372499.102600001],[375798.7009,372447.297499999],[373810.6023,374488.6031],[372454.9988,374670.4011],[371582.9517,373880.497199999],[369884.2959,376491.799699999],[366899.3035,377107.803400001],[365973.0492,380611.850400001],[367209.5981,383045.503799999],[365582.6992,382955.999399999],[365410.3032,383570.3035],[367700.3029,385779.6011],[370826.6982,385621.1965],[371724.8986,387929.695699999],[375091.0026,385450.895199999],[377481.6003,385664.404100001],[379198.6013,384549.203299999]]]},"properties":{"LAD22CD":"E06000049","LAD22NM":"Cheshire East","BNG_E":380510,"BNG_N":363462,"LONG":-2.29299,"LAT":53.16793,"OBJECTID":46,"GlobalID":"a8266a58-5b90-4aec-b28a-ae2d1497d585"}},{"type":"Feature","id":47,"geometry":{"type":"Polygon","coordinates":[[[353161.3992,344461.998199999],[351298.6997,343127.000299999],[349080.2011,343500.0035],[348530.7008,344444.903100001],[346172.5968,343884.803400001],[343988.3977,344750.3956],[343473.8976,347039.2004],[342341.6034,347629.001599999],[342718.1965,349227.404100001],[341763.402,350140.602700001],[342504.501,351121.301999999],[341618.0003,351617.1],[342363.2961,351835.5975],[341030.4985,353379.5955],[341436.8975,354167.899900001],[339686.5041,355359.798699999],[341131.5994,358631.202299999],[339169.2996,357658.300799999],[335612.9986,359943.296700001],[334590.8007,361944.8038],[333553.7039,362356.7958],[338075.4818,364211.4449],[338471.5036,366195.8969],[333460.4028,371444.3046],[330973.5028,373253.9965],[327646.6533,373859.0573],[327642.6132,373862.543199999],[326246.0142,375545.829500001],[326256.5298,375568.8619],[327479.032,375107.991],[327703.863,375577.878],[326077.121,376108.089],[328249.602,376384.538000001],[326210.343,376277.846000001],[326560.6121,376510.510199999],[326844.459,376444.833000001],[327483.529,377123.551999999],[326603.9893,376539.3232],[326260.062,376674.466],[326970.675,377491.149],[326116.969,376751.214],[325417.06,377429.391000001],[326426.297,377754.135],[325235.9429,377513.161900001],[325853.5611,378067.392000001],[327022.832,378002.445],[326179.5986,378359.974400001],[328536.7986,380475.2995],[331706.398,378355.496300001],[333947.0016,379365.2972],[335584.2976,378691.5001],[337495.7996,379685.195599999],[338019.0971,379194.696],[338208.1168,379447.627599999],[338219.8616,379429.442199999],[339999.973,377984.002499999],[340803.8005,377331.2994],[340076.6026,378160.402100001],[343066.8967,377568.7015],[342945.9004,377001.104],[344139.9996,378303.101299999],[343698.7981,379221.498400001],[345725.3022,379111],[347521.901,377894.2983],[349944.2722,380000.011499999],[349964.6612,380017.735200001],[350834.6017,379134.103399999],[351892.3029,379820.796800001],[353398.4537,378989.8158],[354451.3967,380052.8004],[357345.1988,378866.9998],[357116.8023,379436.4968],[358511.1988,379342.103800001],[358800.7983,380554.796700001],[359515.6039,379630.801200001],[360448.9036,380778.1028],[361050.6983,381545.2532],[362670.997,380858.899700001],[365582.6992,382955.999399999],[367209.5981,383045.503799999],[365973.0492,380611.850400001],[366899.3035,377107.803400001],[369884.2959,376491.799699999],[371582.9517,373880.497199999],[372454.9988,374670.4011],[373810.6023,374488.6031],[375798.7009,372447.297499999],[376808.3004,372499.102600001],[375808.1003,369673.701400001],[373645.6021,370885.804400001],[373311.8008,369485.495300001],[372441.6006,369216.9022],[372701.4025,367701.9958],[375207.3981,366563.1018],[375455.5992,365154.494999999],[374808.4031,363943.001800001],[373891.4039,364827.0987],[372934.9026,364184.1028],[371326.8024,366849.999700001],[369600.3031,367377.798599999],[369527.3013,364494.7039],[370452.1003,363837.402000001],[370425.6996,362618.800799999],[368741.7036,361834.495300001],[366685.8966,363118.3978],[363786.7022,361539.6997],[361827.4036,363079.199100001],[361072.7991,362198.101299999],[360211.7014,362580.6018],[360493.699,360979.800000001],[358279.6033,361704.3026],[357188.6003,359218.903999999],[355955.3041,359485.4977],[355176.0963,357840.998500001],[352842.4967,358157.097999999],[352459.7032,355394.298800001],[351093.1998,355204.1033],[349647.7004,352706.598200001],[351942.4988,349900.3015],[353016.3026,351014.102600001],[355251.7035,349249.697699999],[353161.3992,344461.998199999]]]},"properties":{"LAD22CD":"E06000050","LAD22NM":"Cheshire West and Chester","BNG_E":353097,"BNG_N":363145,"LONG":-2.70298,"LAT":53.16336,"OBJECTID":47,"GlobalID":"32c99a63-da21-42f4-91b4-72775a63e78f"}},{"type":"Feature","id":48,"geometry":{"type":"Polygon","coordinates":[[[374602.2024,332762.2972],[373571.6027,326638.200200001],[372043.6032,325577.3038],[368228.8031,324910.9046],[369324.2996,320830.4026],[368204.9996,320418.9004],[367067.4038,320710.297],[367928.1964,322529.496300001],[367299.7991,323186.3982],[366179.3035,322232.801200001],[364902.696,322503.003900001],[363844.4012,320970.9024],[364101.6965,321971.2961],[362893.3993,322916.6954],[360809.6003,323276.9023],[359776.4034,322433.603700001],[360145.6008,320081.097100001],[358205.2988,320061.002900001],[357424.5987,318184.200099999],[356703.4032,319024.2996],[355327.7972,318297.6976],[355512.701,315090.195699999],[359742.4008,313565.5022],[358026.3975,311442],[362523.5011,308297.700099999],[362995.803,306471.3029],[366133.898,303590.1976],[370433.2026,301953.596100001],[370541.6005,303347.3971],[371787.2973,304083.1965],[371756.502,307322.3993],[374674.2972,315839.101399999],[375926.6972,314900.0002],[378787.5026,315079.5988],[379252.4993,313720.297900001],[378148.5021,312010.8972],[378476.3999,310903.904100001],[379610.4998,309514.6017],[383349.701,309513.801999999],[383951.9038,307356.6994],[383342.4041,306575.503],[384220.0002,306482.899599999],[384339.8009,305574.7995],[382749.9965,301364.704600001],[381027.3971,300934.5977],[378172.0994,301734.0989],[378282.6987,299584.804099999],[379754.4998,299510.6953],[382343.0038,296834.501399999],[380944.0972,295097.398600001],[382707.1964,293800.4999],[381833.797,292568.102600001],[382392.301,291833.402899999],[380321.0015,290459.496200001],[378860.6033,287966],[380567.9988,284188.9011],[378903.6013,282217.395500001],[375384.7988,282444.600400001],[374723.0997,278280.9023],[377259.8989,276420.104900001],[375095.8012,276732.695499999],[373504.7023,276014.1011],[372160.5017,276647.299900001],[371845.5981,274546.9011],[367769.9984,274448.599300001],[366838.1004,273148.001599999],[367264.8977,270439.8967],[365123.103,270247.301899999],[365202.6018,271125.1006],[363367.3996,271920.302999999],[361786.302,270705.300799999],[361738.2992,268261.600299999],[360911.6989,268984.4034],[357958.1036,267827.5045],[357569.7035,269436.8039],[354719.5013,271787.900900001],[353121.1962,268944.504799999],[353751.4982,268428.8024],[351400.3036,268101.596100001],[347836.9036,271167.6984],[349103.3038,271019.800799999],[350190.3986,273303.596999999],[346129.302,273494.5024],[346145.9982,275543.3959],[345137.6025,275624.4027],[345281.9983,276995.600199999],[344415.3022,277336.602600001],[341916.9992,277838.898800001],[339627.5024,276717.199899999],[339293.899,275490.301100001],[337639.7996,276868.196699999],[337309.1973,275633.0002],[338762.2987,274738.396299999],[337036.6981,274729.5988],[336160.2975,274080.4047],[336535.3984,272851.1965],[335069.5007,272770.499600001],[333725.597,273405.3979],[329236.4003,272313.8003],[327847.0003,272769.300000001],[324494.6986,276040.703500001],[321529.1975,277257.7951],[319908.6967,279696.1972],[317162.003,281060.796499999],[316114.6494,283442.299900001],[318779.6016,287123.6011],[319932.2034,286876.002],[324674.9027,289582.1973],[330232.4037,289759.396600001],[330052.4964,292261.100500001],[331980.3979,291800.202400001],[332689.9019,295470.401799999],[331364.6979,298001.5973],[326374.3005,295385.7961],[326472.4992,293512.0024],[323228.1006,292779.5021],[322969.6014,293515.001599999],[324715.0974,294302.0963],[322893.7963,299265.4955],[324390.2007,299246.900800001],[326302.6014,300748.800899999],[326041.8019,301844.5973],[327457.9983,304006.5984],[328366.9009,304188.746300001],[326776.0988,305388.6028],[328981.6485,306031.648700001],[329874.6999,309134.7005],[329327.904,310910.802100001],[331012.304,312600.1985],[331185.2029,314648.702099999],[332515.0983,314093.0012],[334075.5998,314774.2962],[334024.1012,313525.103700001],[335175.6971,313632.902899999],[334930.0025,315394.298699999],[333159.5983,315590.8024],[333129.3966,316696.8958],[331129.4993,317635.497199999],[331883.6008,318361.6993],[331465.4031,319380.0978],[330252.2001,318990.699200001],[330000.5031,319705.5046],[329079.9997,319528.495300001],[329409.596,319963.500800001],[327267.3973,319869.5977],[326472.2023,321567.1018],[326827.8036,322555.298900001],[324672.7013,321252.0019],[321823.6039,322650.401699999],[322359.401,323823.7958],[321349.0017,323946.9005],[321391.9997,325274.500499999],[322554.0009,327848.003900001],[321771.1983,328408.703400001],[324182.7962,330552.399700001],[322540.7016,331874.101399999],[323688.4966,332552.997099999],[322891.5496,333139.949100001],[325141.3011,333527.698100001],[326427.9016,337547.1975],[327726.5977,336993.1961],[330518.4001,337397.4004],[332269.6016,340345.0966],[334130.0997,340652.898499999],[334614.5959,341735.0987],[335609.9974,339739.5999],[337669.6961,338322.795499999],[340474.8968,339828.304500001],[340728.3005,339169.802999999],[343580.3991,338688.8007],[346355.901,333443.202299999],[349317.5022,336623.0021],[351125.8008,336679.2959],[351448.1002,340216.103499999],[350715.9965,341650.302999999],[351298.6997,343127.000299999],[353161.3992,344461.998199999],[354804.3018,343358.704],[357635.4991,344557.500800001],[360154.2004,342637.500399999],[359950.4979,340792.298599999],[360701.2025,339937.6033],[362399.1986,340989.0023],[364516.9013,338994.1033],[365082.2981,342004.8015],[367775.3,340267.4988],[370908.8025,341438.2037],[370775.9993,343300.7006],[374540.3974,344631.399700001],[375339.0964,342507.797499999],[374599.399,342145.201300001],[374149.903,339605.8982],[372362.2006,340564.004000001],[372843.201,338954.2048],[371523.4965,339262.6964],[370722.7032,338555.5989],[368429.2983,334372.7962],[370068.4988,330817.9037],[370459.1004,331618.604499999],[374602.2024,332762.2972]]]},"properties":{"LAD22CD":"E06000051","LAD22NM":"Shropshire","BNG_E":350227,"BNG_N":302960,"LONG":-2.73667,"LAT":52.62212,"OBJECTID":48,"GlobalID":"39415456-f8d6-4e1e-bdf2-e0b1890ab154"}},{"type":"Feature","id":49,"geometry":{"type":"MultiPolygon","coordinates":[[[[207459.685,90573.1254999992],[207477.4688,90538.6870000008],[207443.7855,90541.3328000009],[207459.685,90573.1254999992]]],[[[184141.4982,39443.8138999995],[184384.4,40211.4600000009],[185698.8184,40726.4221999999],[185094.194,40693.7774999999],[184666.3529,42670.7118999995],[184924.85,40617.5999999996],[184020.1889,40263.4991999995],[183981.9414,39476.8256000001],[183816.6516,38917.1308999993],[183279.15,39160.8499999996],[182948.54,38243.0099999998],[182613.52,38782.9199999999],[182883.89,38135.4499999993],[181764.32,37060.4199999999],[181459.34,37400.5700000003],[182035.01,35611.1600000001],[180414.82,36111.3000000007],[182246.2254,35246.7419000007],[182469.8322,34622.4159999993],[182063.7732,33741.7561000008],[181945.0625,33617.3661000002],[180730.6644,33961.9624000005],[180319.8766,34177.0039000008],[180379.34,34061.6537999995],[180000.0193,34169.2895],[178566.9,34575.9499999993],[180000.0286,33437.0923999995],[181249.35,32444.3000000007],[182192.7986,32833.0832000002],[182287.963,32863.0735999998],[182752.3401,31531.4550999999],[182573.425,31625.9476999994],[181838.45,32051.3499999996],[180269.05,31246.5500000007],[180486.4,30538.3000000007],[179999.9984,30266.8191],[178976.55,29695.5899999999],[179752.14,27806.7259999998],[178786.8969,27054.3973999992],[176837.163,26879.1988999993],[175924.0548,26931.5570999999],[175736.0972,27260.9867000002],[176283.742,28040.1260000002],[175749.778,28232.9360000007],[175540.4939,27603.8165000007],[175529.1768,27623.6517999992],[175160.2199,26806.7116999999],[174065.1941,26666.7292999998],[173861.879,27051.1364999991],[173824.492,28411.807],[173461.51,26999.8900000006],[173843.6535,26610.2776999995],[173848.829,26549.8350000009],[173898.6011,26554.2562000006],[174121.5876,26326.9113999996],[173192.4002,26032.1289000008],[174481.7226,26171.7193999998],[174930.615,25329.6850000005],[174755.7091,26201.3829999994],[175600.3841,26292.8330000006],[175810.24,25964.3100000005],[177910.0903,26189.5395],[178251.8446,26036.6810999997],[178723.7253,25594.3823000006],[178565.0284,25384.0840000007],[177043.15,24900.0700000003],[180000.0074,25138.0831000004],[180055.5,25142.5500000007],[180000.0014,24834.3379999995],[179721.38,23287.0099999998],[180000.0073,23232.5514000002],[180564.6,23122.1999999993],[181206.58,21442.8499999996],[180556.9632,19999.9997000005],[180336.8,19511],[179999.9961,19364.3673999999],[178294.56,18621.8800000008],[178649.63,17420.8300000001],[177869.8,16176.5],[176368.62,16794.8000000007],[173187.99,16319.9499999993],[171460.1,13064.3000000007],[171616.24,11844.5800000001],[169861.5315,11609.0124999993],[169266.3341,12729.1783000007],[169241.96,12888.6300000008],[168298.8167,13164.4810000006],[167391.6136,13494.8933000006],[167550.6,14371],[167469.5663,14486.4178999998],[167477.3699,14519.1440999992],[166624.8514,15689.5629999992],[165900.6632,16721.0394000001],[166009.8738,16956.1368000004],[166876.344,18578.443],[166836.8535,18736.3732999992],[166845.556,18755.1070000008],[166826.1206,18779.2961999997],[166520.8778,20000.0239000004],[166519.557,20005.3059999999],[165248.19,20904.0800000001],[165363.8,22515.3000000007],[162866.77,25838.7200000007],[161268.9,26661.6600000001],[160949.057,26614.9484999999],[160755.6,26705.5600000005],[159581.193,26415.1787],[159532.45,26408.0600000005],[157561.3,28113],[154840.79,27502.8000000007],[154899.19,28452.4000000004],[154508.7542,28723.4567000009],[152534.567,30486.0419999994],[152267.0688,30279.7273999993],[151100.115,31089.875],[147778.25,30818.3499999996],[147662.3,29771.6999999993],[146311.28,28968.4900000002],[146372.5118,28849.2932999991],[146342.65,28830.8000000007],[146953.5154,27718.284],[147365.4,26916.4900000002],[146635.52,24952.2899999991],[144027.7031,22982.7965999991],[143444.8826,22995.4499999993],[141025.19,23065.6300000008],[139999.9659,22121.1336000003],[139735.4,21877.4000000004],[138888.86,22346.1699999999],[138510.0049,22151.5295000002],[136818.3182,21536.9881999996],[136528.3257,21678.2194999997],[135918.9593,23123.1361999996],[135785,23633.75],[135641.0778,23692.6371999998],[134359.7038,24630.9549000002],[134302.3673,24807.1502],[136037.1574,27406.4331],[136269.87,27652.2100000009],[134969.1524,31728.5515999999],[134935.5013,31855.1157000009],[137795.9,36039],[139999.9794,36046.9104999993],[140944.4,36050.3000000007],[141000.565,36121.5721000005],[141023.99,36121.9900000002],[142659.7916,38227.0936999992],[143106.853,38794.4046999998],[143151.7064,38764.1364999991],[143784.99,38244.8499999996],[146131.9161,39999.9800000004],[147646.585,41132.7129999995],[147807.6852,41147.5307999998],[151743.0364,41264.0549999997],[152045.6936,41229.5528999995],[152344.9485,40127.0744000003],[152367.0371,40000.0184000004],[152527.214,39078.6620000005],[154803.252,38266.7780000009],[155026.215,38279.307],[156551.0614,39999.9824999999],[158046.972,41688.0059999991],[158006.592,43354.1640000008],[159247.234,43693.7369999997],[159900.658,42783.6219999995],[160000.013,42807.6429999992],[163047.156,43544.3489999995],[164633.72,45418.6679999996],[165668.82,45296.8399999999],[166272.5663,46340.4329000004],[168469.7,47571.0309999995],[168609.6019,47796.4933000002],[169035.425,48025.4719999991],[169178.4943,48713.3059999999],[169688.65,49535.4600000009],[169869.4719,51494.9636000004],[172263.069,51590.9609999992],[173719.867,53777.2219999991],[175713.91,54338.4000000004],[176374.576,57554.1989999991],[175941.4172,58520.9206000008],[176063.0792,59130.5125999991],[176644.85,59061.6600000001],[176553.6807,60000.0277999993],[176466.253,60899.8839999996],[176524.5638,60926.0390000008],[179229.6491,61620.3095999993],[179681.782,61629.9499999993],[179926.808,63013.8295000009],[180222.8603,62820.2979000006],[181463.095,61859.6870000008],[183124.749,62891.7770000007],[183980.288,64694.2090000007],[184154.6295,66895.5441999994],[184203.6274,67141.6121999994],[184942.017,67481.8399999999],[184417.6103,68216.2370999996],[184743.06,69850.6500000004],[184741.8352,69852.3495000005],[184850.34,70388.5899999999],[184019.68,70883.5600000005],[185683.017,72028.6300000008],[185417.8646,73033.8120000008],[185549.0402,73732.9993999992],[185863.52,74005.3599999994],[184984.1834,76604.5346000008],[185025.0634,76594.7156000007],[188681.13,75636.25],[189585.63,77333.5299999993],[191544.864,78521.0299999993],[191172.43,77134.5150000006],[192164.58,76251.6909999996],[192379.13,74129.5500000007],[192821.953,74242.5779999997],[192767.581,75815.7829999998],[192494.086,78000.5580000002],[193650.141,79187.1760000009],[192800.6755,79999.9774999991],[192312.9,80466.6999999993],[193326.2869,81132.7947000004],[193740.2561,80917.7655999996],[194219.5,80125.5999999996],[194879.7681,80000.0195000004],[195842.14,79816.9800000004],[196180.7183,79999.9887000006],[197123.9683,80509.8351000007],[196977.3,81227.5999999996],[196984.1754,81229.1158000007],[199220.6971,81034.8241000008],[199620.48,80765.75],[199999.9803,80848.2261999995],[202208.5,81328.1999999993],[202549.2212,81794.2353000008],[202626.5,81821.3000000007],[202712.8113,82017.9923999999],[204133.59,83961.3200000003],[205088.9,87318.6999999993],[204959.215,87376.2463000007],[204749.9663,89194.9488999993],[204753.3,89220.5999999996],[206275.9295,89894.0834999997],[206429.4906,89838.193],[206838.2,89330.4000000004],[206990.105,89634.1502],[207218.92,89550.8699999992],[207524.72,90703.1699999999],[210808.78,91911.4700000007],[210777.0563,92764.2128999997],[210789.2995,92855.4938999992],[212702.24,94100],[212845.6,96718.8000000007],[213211.4294,96739.0956999995],[213805.8,96718.3000000007],[213849.7434,96774.5084000006],[214215.5,96794.8000000007],[214228.7067,97259.2434],[214912.6161,98134.0373999998],[217789.8026,99999.9962000009],[219491.21,101103.42],[219903.7,106368.619999999],[220000.013,106380.3169],[220754.03,106471.890000001],[220115.56,107262.9],[220000.0189,108474.1107],[219921.7097,109295.021299999],[220004.82,110477.32],[219562.8432,113056.9981],[219402.97,114732.939999999],[219999.9978,115636.2838],[221174.0748,117412.7424],[221182.2163,117459.955],[227496.8976,117260.3039],[226977.6978,115559.0009],[229737.5012,110191.497300001],[228841.9968,110157.1971],[228170.1946,108114.052100001],[227706.9031,103818.205600001],[224358.8026,102225.897500001],[227303.8972,101319.4969],[229156.915,98909.3808999993],[230222.684,98637.1978999991],[229864.6388,99982.1037000008],[231352.7004,100362.500800001],[232202.1973,99476.9043000005],[231843.1795,96952.2551000006],[233391.6208,93676.9257999994],[232785.8109,91868.1821999997],[234181.0037,90398.8028999995],[234998.8242,85587.6633000001],[235649.1028,84586.1967999991],[237422.3021,84098.1963999998],[236457.2012,78812.9992999993],[236764.9976,77969.6007000003],[237886.598,78521.6027000006],[238223.3015,77526.2975999992],[238275.8968,78606.6984000001],[239309.2998,78294.8976000007],[238672.5007,76863.1973999999],[240026.0017,74225.9024],[239127.2983,73222.6995000001],[240826.6961,73987.4005999994],[241888.3961,72519.3008999992],[243667.5978,72749.2949999999],[243887.1968,69361.8047000002],[245112.6025,69901.7000999991],[245455.2013,69376.5004999992],[244095.2032,68152.6008000001],[242588.5007,68832.1963],[242712.5972,66365.9023000002],[241217.3552,65078.3598999996],[241832.7007,64153.6954999994],[242886.403,65330.5986000001],[243809.2956,61932.7072999999],[242249.35,60848.4499999993],[241153.73,62306.5500000007],[242122.21,60379.0500000007],[243125.27,60733.7599999998],[243068.1016,60000.0209999997],[242945.6941,58428.9563999996],[241824.192,57220.5793999992],[241782.96,57197.0399999991],[241377.78,57238.1199999992],[241522.9615,56896.0146999992],[241521.5153,56894.4564999994],[241523.3341,56895.1367000006],[241527.22,56885.9800000004],[243549.8,56597.6500000004],[243025.2,56310.9000000004],[244023.7,54744.5999999996],[242986.4981,54449.9031000007],[243007.6783,54422.7027000003],[242989.1085,54418.5154999997],[243051.358,54366.6075999998],[243817.5,53382.6999999993],[243028.95,51997.7300000004],[245551.5805,53221.5722000003],[245627.9539,53069.2892000005],[245662.4571,51909.8026000001],[243555.6788,50482.0494999997],[243434.161,50424.0209999997],[244300.48,48713.6300000008],[244224.2924,48695.2895],[242751.14,48817.9700000007],[241927.0457,48142.2778999992],[241803.4477,48112.5243999995],[241777.1556,48235.8350000009],[242107.92,49543.5700000003],[241450.97,50553.3699999992],[239999.9866,51412.9361000005],[235926.82,53825.8900000006],[228677.51,54361.9499999993],[226791.87,54075.4499999993],[225722.21,52986.3200000003],[225745.4,52681.6999999993],[224121.21,51068.25],[222369.52,51592.2100000009],[222331.51,51507.2898999993],[219416.6932,50184.4461000003],[219369.65,50172.4900000002],[216589.99,51252.9000000004],[215138.56,50336.9100000001],[214572.09,50921.5299999993],[212676.1327,50476.2977000009],[212308.7146,51100.5418999996],[212389.7221,51131.7325999998],[213783.9016,51606.5969999991],[213717.1027,51642.8200000003],[214451.79,51925.6999999993],[213552.6936,51731.9740999993],[212873.1026,52100.4956999999],[212059.8704,51360.9811000004],[210210.27,50421.3399999999],[209822.3,49410.9000000004],[208973.5,50136.8000000007],[208969.1219,50199.4768000003],[209216.1,52119.3000000007],[208820.5483,52326.4331],[208755.8,53253.3599999994],[203981.5658,51572.6744999997],[203919.5,51553.25],[203917.7646,51550.2144000009],[203892.3,51541.25],[203133.52,50429.3599999994],[203189.5983,50276.4920000006],[203183.12,50265.1600000001],[204056.7063,47910.3681000005],[203247.2,48153.1999999993],[201986.23,47055.0800000001],[201489.06,44776.5500000007],[201551.92,43912.1799999997],[202863.16,43293.6699999999],[201494.4,42112.5],[201787.5974,41200.8368999995],[201563.804,41057.9227000009],[200523.64,40437.6400000006],[200500.893,39999.9794999994],[200461.94,39250.5099999998],[200000.0287,39709.8085999992],[199708.2446,39999.9422999993],[199056.43,40648.0700000003],[195970.983,41259.4250000007],[194762.6556,39999.9713000003],[192940.1637,38100.3668000009],[191914.0061,37097.8750999998],[190761.9,38240.7280000001],[189162,37840.8000000007],[187822.65,35969.5600000005],[187075,32231.3900000006],[185045.0531,30920.2317999993],[185041.3825,30927.3392999992],[184512.8188,32018.3740999997],[185107.5008,32111.6996999998],[185491.47,32160.9600000009],[185495.5588,32172.5990999993],[185499.77,32173.2599999998],[186138.0962,33430.3999000005],[184118.697,32965.6589000002],[184935.7,36622.8499999996],[184095.63,35737.7400000002],[183535.21,38176.5500000007],[184110.39,38158.0800000001],[184020.5,38824.6999999993],[184014.9334,38827.2240999993],[184086.7,38884.8000000007],[184141.4982,39443.8138999995]]]]},"properties":{"LAD22CD":"E06000052","LAD22NM":"Cornwall","BNG_E":212497,"BNG_N":64493,"LONG":-4.64254,"LAT":50.45022,"OBJECTID":49,"GlobalID":"c10ffc72-27a7-47a0-8e10-3e6b4466b890"}},{"type":"Feature","id":50,"geometry":{"type":"MultiPolygon","coordinates":[[[[87801.3597999997,8851.28209999949],[89245.0637999997,8124.85170000046],[89235.8831000002,8080.29810000025],[88576.3450999996,8238.63230000064],[88539.4034000002,8272.40130000003],[88258.0983999996,7054.10009999946],[88183.6489000004,7119.18600000069],[87476.3640999999,7867.31149999984],[87801.3597999997,8851.28209999949]]],[[[93203.2527999999,11105.0567000005],[92271.3982999995,9909.10280000046],[91191.9961999999,10139.5968999993],[91071.6385000004,9216.94529999979],[90931.5833000001,9473.57740000077],[90494.2991000004,10370.0009000003],[90457.8930000002,10341.5502000004],[90446.7599999998,10361.9499999993],[90436.4504000004,10324.7931999993],[89918.4528999999,9919.98729999922],[89496.5221999995,10247.4093999993],[89430.3975999998,10357.4045000002],[90787.5016999999,10729.8979000002],[90715.3874000004,11057.2415999994],[90646.4665999999,12066.8505000006],[91728.7001999998,12925.2994999997],[93194.4424000001,11947.8482000008],[93203.2527999999,11105.0567000005]]],[[[89298.4342999998,13377.5913999993],[89256.8280999996,13370.2675999999],[88543.8958000001,15760.4541999996],[88431.1198000005,16475.7997999992],[90197.7198000001,14939.6864],[90237.2862,14759.3849999998],[89298.4342999998,13377.5913999993]]],[[[88116.8282000003,14821.0285],[87633.8493999997,14239.2076999992],[87323.1118000001,14539.1359999999],[87553.1106000002,16536.7806000002],[88242.8037999999,15229.7997999992],[88116.8282000003,14821.0285]]],[[[92295.8372,17523.8570000008],[92518.585,16572.0244999994],[92563.4961000001,16152.9955000002],[94479.2006000001,15674.352],[94373.4485999998,15626.5801999997],[92851.8343000002,15039.8060999997],[92690.9401000002,15108.3328000009],[92134.4094000002,15492.0109000001],[92136.6100000003,15532.2899999991],[92120.1642000005,15501.8317000009],[91572.7240000004,15879.2426999994],[91483.3017999995,16048.1303000003],[92147.6819000002,17254.7774],[92371.6100000003,17082.9100000001],[92287.0395999998,17507.8787999991],[92295.8372,17523.8570000008]]]]},"properties":{"LAD22CD":"E06000053","LAD22NM":"Isles of Scilly","BNG_E":91327,"BNG_N":11447,"LONG":-6.30217,"LAT":49.92332,"OBJECTID":50,"GlobalID":"656d724e-3f4a-4684-b320-0e27ee2280cb"}},{"type":"Feature","id":51,"geometry":{"type":"Polygon","coordinates":[[[414715.2986,196490.204600001],[413992.9983,195987.998400001],[414728.5979,192676.7962],[412012.9963,191848.0034],[411015.4016,190426.000499999],[411742.7974,188666.903999999],[411350.0027,187610.896299999],[412309.398,187053.3959],[410965.1975,186655.4998],[410827.6039,184771.099199999],[409792.9971,185161.0975],[409446.3005,184531.797700001],[410546.1999,183835.297],[410232.5001,183055.3003],[411887.0035,179626.501800001],[411409.6969,179120.896500001],[410726.1979,180625.2959],[411369.7991,178001.397],[413043.2991,178695.3983],[414136.6025,176185.296800001],[415766.7005,175968.5988],[419832.9008,176642.096100001],[419595.4019,178011.604],[427655.3036,180005.103399999],[428907.2997,180748.000800001],[429094.5038,177323.501],[433175.504,172162.1984],[433009.7989,169541.898499999],[430334.1982,169315.5033],[429925.8038,168593.9998],[431185.7976,167986.103800001],[431013.6984,166376.9044],[435218.4982,163521.401799999],[434869.5012,162029.098999999],[435913.4991,161081.5002],[435050.8019,159039.504699999],[433009.3,160036.8992],[432603.2967,157560.598099999],[433597.2965,155311.002],[433373.8966,154321.895099999],[431998.8018,153667.3025],[432157.5027,151397.6022],[432903.7962,151366.801000001],[432478.5984,150031.303300001],[431844.0997,149645.7037],[429570.4994,150803.5023],[427493.5974,150473.8467],[425690.2994,146543.8016],[421769.5997,146226.802300001],[421467.0967,145026.196],[423238.5975,143557.996300001],[422997.8005,142196.9959],[424290.2963,139727.2028],[423680.4998,136489.1997],[426256.1003,135405.799799999],[425495.6995,132602.5022],[426174.6968,131031.801899999],[425690.1016,126864.504699999],[425874.1973,126000.1022],[428192.1973,125005.696799999],[428345.003,123452.2015],[426137.8991,122248.3961],[426795.6983,120468.4956],[427971.9964,119976.5964],[426802.0965,117751.803200001],[425733.1985,117821.5033],[423865.5025,116259.700300001],[419780.5035,119745.9024],[417338.0031,119860.7995],[414110.6965,121352.602499999],[413051.8987,120741.297499999],[411614.8011,123351.2004],[410383.3023,122821.202099999],[408941.6039,120567.8971],[408902.4975,123002.100299999],[408043.5023,122244.1973],[405157.2033,122036.9966],[403610.2979,120324.596799999],[403126.2221,121160.6974],[401134.0999,120595.3992],[400514.599,119591.396600001],[397528.9964,119197.0995],[395297.2975,116865.297],[392944.6023,116177.603800001],[391621.3029,118020.496300001],[391687.9972,119872.0963],[387987.1026,122424.095799999],[386549.2959,126502.2984],[383121.4035,130234.100199999],[381274.5016,129969.4959],[377269.8012,131201.703199999],[374712.7027,133654.5011],[374582.2988,135574.101600001],[375984.2972,136212.299000001],[375863.8039,136861.5031],[379238.2023,141842.997199999],[382974.4023,150552.5041],[382419.0974,154553.3989],[381601.8964,155266.4048],[380525.0997,154963.8014],[380226.1008,156743.7019],[381142.1024,157273.700200001],[381066.1983,158233.195499999],[379952.6039,158503.598099999],[379131.503,159391.1041],[379450.4962,160439.604],[376113.5963,160776.897399999],[379765.5977,163430.897700001],[379447.6021,166247.8014],[380490.5034,166503.9981],[379864.7033,167449.997300001],[380725.9989,168577.704500001],[379613.8968,170018.901900001],[380286.298,173246.2981],[379548.901,173332.103499999],[379927.9017,176451.400599999],[378473.1019,176537.695900001],[377582.2972,177668.902100001],[382587.1977,180914.903000001],[381611.8977,181962.5031],[382055.3995,185702.102700001],[381208.9039,186560.397],[383111.9959,186978.397299999],[383341.1014,188167.397],[385730.5036,189416.0995],[385788.6973,188587.196799999],[386933.4003,188200.7974],[387664.3002,189037.797800001],[389528.8961,187954.298],[396142.4987,197075.797],[399017.4031,194635.5955],[400420.8032,194729.7985],[401665.1973,193253.901000001],[403520.5009,193129.296700001],[402651.6034,195541.496200001],[404102.998,196850.4015],[405567.5022,195386.7005],[408633.4035,194762.7991],[407078.4014,197884.5955],[408815.2978,198210.202299999],[410438.9977,195287.698799999],[412832.9017,196045.002],[412323.8021,197204.800100001],[413091.7966,200505.5952],[414715.2986,196490.204600001]]]},"properties":{"LAD22CD":"E06000054","LAD22NM":"Wiltshire","BNG_E":405209,"BNG_N":158863,"LONG":-1.92661,"LAT":51.32883,"OBJECTID":51,"GlobalID":"53aca724-ceaf-40fd-9342-189ea3e6a474"}},{"type":"Feature","id":52,"geometry":{"type":"Polygon","coordinates":[[[519753.304,255455.7959],[517047.2997,256120.5956],[515957.4015,253272.300899999],[514887.2009,253606.895099999],[513257.1028,251030.502599999],[512245.7966,250806.796700001],[513431.0983,247694.397600001],[510988.903,245136.6997],[510785.4973,243141.500800001],[509554.7983,242407.6009],[507008.7976,241701.403000001],[504819.9977,244395.901799999],[502920.3027,242971.7994],[502362.3017,240621.302200001],[500077.6035,243588.3029],[496738.6011,245288.2963],[497131.099,246080.2996],[496530.3968,246752.0973],[495423.7035,249309.495300001],[493482.1977,249871.804300001],[493089.3041,251368.4959],[493776.4969,251620.8037],[493941.1013,254585.705],[491131.704,256034.000399999],[493169.7017,259663.701400001],[491970.2019,264199.802999999],[495381.2002,265434.0996],[498005.0013,262666.6018],[499618.3041,262988.5997],[500321.8964,264597.199200001],[499542.6969,266755.601399999],[501390.2997,269547.5022],[500989.5979,269872.599099999],[504689.396,270534.999500001],[506705.0001,269634.2973],[506770.1031,267653.5043],[507752.7,266371.9012],[510953.1029,265944.4036],[511163.8962,265173.6042],[510476.2004,264894.0042],[511114.7968,260665.704600001],[513399.1982,260455.9046],[513202.8008,261700.6983],[513761.4037,261825.602600001],[516637.8005,261629.298800001],[517164.899,261281.2984],[516506.3,258284.5962],[518860.8998,258271.4999],[520357.0981,256118.2963],[519753.304,255455.7959]]]},"properties":{"LAD22CD":"E06000055","LAD22NM":"Bedford","BNG_E":505721,"BNG_N":256463,"LONG":-0.45463,"LAT":52.19628,"OBJECTID":52,"GlobalID":"4e5524b0-2cfd-4a71-849d-1c3d4d89041a"}},{"type":"Feature","id":53,"geometry":{"type":"Polygon","coordinates":[[[519753.304,255455.7959],[519028.8022,254551.504699999],[522090.3006,252659.996200001],[520884.6995,251071.6009],[525228.2967,250597.796499999],[526390.1989,251173.1018],[527085.7028,250500.4044],[526366.5707,244063.172900001],[525375.8997,241777.601199999],[523836.8024,241984.502],[522226.5997,239087.801200001],[523551.4986,236125.199200001],[520641.6021,234852.103599999],[520410.8971,233294.999399999],[518870.4971,232650.8038],[518003.1991,235071.8007],[517062.9983,235119.597100001],[516053.2009,232861.4035],[512230.7988,232957.7959],[513491.3038,231585.198799999],[513459.6015,230072.1019],[511843.1985,228944.3047],[511222.601,229380.899800001],[511388.6978,232293.1961],[510589.2979,232171.200999999],[509715.4038,227193.196],[511131.3034,225358.101299999],[508838.8961,224932.0032],[508626.6023,226415.7985],[507629.997,226615.201400001],[504231.5972,225990.9001],[504501.6972,224338.0033],[502891.5027,223505.601500001],[506419.3005,221540.2041],[508723.0035,218503.703299999],[510537.2963,220326.8015],[512340.5983,220092.498500001],[513353.1001,220771.7041],[514471.5013,218081.1042],[512849.8505,217209.8539],[512188.7983,215762.398],[509990.7971,216979.7993],[508821.2022,218022.201099999],[507035.0004,217694.095100001],[505439.0039,218562.4965],[504902.3989,218264.901699999],[505409.5031,217422.3029],[503319.8996,216413.9015],[502698.7991,215188.302300001],[503336.703,214040.400900001],[502157.6015,212863.297900001],[499772.6022,215220.5031],[500465.0966,214990.099099999],[500864.7018,215764.997300001],[497615.3974,220030.1964],[495068.8031,221668.0975],[492871.2964,221772.0977],[491396.5023,223409.598999999],[490042.1026,223206.897],[489373.8981,224192.7049],[492633.0966,230939.4036],[493128.196,231282.295499999],[491972.2962,234321.295600001],[493199.4993,235581.005000001],[492665.7965,236420.104800001],[493396.8531,237054.803099999],[493173.8531,238517.5044],[491372.402,239759.5989],[496530.3968,246752.0973],[497131.099,246080.2996],[496738.6011,245288.2963],[500077.6035,243588.3029],[502362.3017,240621.302200001],[502920.3027,242971.7994],[504819.9977,244395.901799999],[507008.7976,241701.403000001],[509554.7983,242407.6009],[510785.4973,243141.500800001],[510988.903,245136.6997],[513431.0983,247694.397600001],[512245.7966,250806.796700001],[513257.1028,251030.502599999],[514887.2009,253606.895099999],[515957.4015,253272.300899999],[517047.2997,256120.5956],[519753.304,255455.7959]]]},"properties":{"LAD22CD":"E06000056","LAD22NM":"Central Bedfordshire","BNG_E":504615,"BNG_N":234492,"LONG":-0.47754,"LAT":51.99903,"OBJECTID":53,"GlobalID":"a40a4b7a-6942-4551-a404-b8f54616ac2b"}},{"type":"Feature","id":54,"geometry":{"type":"MultiPolygon","coordinates":[[[[413989.038,643600.074999999],[414022.563,641587.591],[412500.127,641666.982999999],[411702.024,643201.566],[409230.584,643004.198000001],[409463.672,643898.942],[411738.691,643989.558800001],[413314.8392,643812.0966],[413989.038,643600.074999999]]],[[[400811.8035,652845.213300001],[400852.0071,652395.382200001],[400000,652449.275699999],[399832.83,652459.85],[400000,652255.772700001],[402693.1401,648968.049699999],[402746.2,648893.17],[402771.9556,648871.8336],[403987.863,647387.482000001],[405745.1731,646408.764599999],[405908.4472,646273.5053],[406215.12,646147.032099999],[408231.985,645023.757999999],[408011.711,643390.834000001],[407293.82,643484.447000001],[408071.55,643262.550000001],[408174.376,641405.541999999],[409217.5119,640000.040200001],[410077.084,638841.869000001],[412164.212,637887.299000001],[413302.444,639680.301999999],[413201.1504,639999.995200001],[412995.974,640647.552999999],[413425.922,640374.375],[413367.3102,639999.9902],[413262.635,639331.374],[415558.434,636673.747],[415480.38,636107.915999999],[413588.679,635965.251],[414567.016,634445.57],[416131.974,636181.957],[417570.43,635946.189999999],[420000.0194,633980.681399999],[421082.988,633104.572799999],[421403.29,632638.59],[422139.1157,632250.178200001],[422821.67,631698],[422034.07,630909.02],[422448.86,631221.92],[422671.2837,630904.333699999],[422666.66,630888.880000001],[422845.4704,630655.622199999],[424149.9,628793.1],[424139.9304,628781.879799999],[423352.23,628355.15],[423353.7435,627897.0733],[422690.96,627151.15],[424681.59,625405.52],[424661.5088,624956.876399999],[424338.025,624418.800000001],[424637.0472,624410.3686],[424580.6379,623150.102499999],[424513.903,623008.843],[424572.7434,622973.7281],[424557.031,622622.691],[425930.17,622144.289999999],[425891.6974,619999.975],[425826.2,616349.4],[426007.9315,616189.506200001],[426008.98,616058.449999999],[426959.3047,615255.5593],[426797.2237,613744.2081],[426793.9,613737.699999999],[426796.1343,613734.0496],[426676.5,612618.5],[424703.116,610183.762],[424876.923,610071.741],[425310.2478,608545.632099999],[425311.68,608487.273],[425363.1856,608359.192500001],[425992.607,606142.459000001],[426322.9,604741.1],[427191.9262,605030.791300001],[427733.9221,604506.505100001],[428697.792,603200.284],[427502.2197,600000.001],[427384.634,599685.25],[427482.284,597585.161],[427795.3914,596922.4935],[427797.451,596901.056],[427828.7697,596851.8509],[430495.8925,591207.092499999],[430506.009,590725.42],[430981.6646,590178.9934],[431991.0313,588042.747199999],[431569.6653,587905.736400001],[431185.59,587806.16],[430351.82,585470.880000001],[429389.8205,585350.0266],[430291.17,585173.550000001],[432838.6716,580353.8652],[432838.2993,580353.6489],[431957.85,581617.9],[430571.35,583350.800000001],[430697.31,582823.039999999],[429853.65,582843.65],[428204.82,583679.310000001],[429810.65,582680.15],[427592.7,581919.5],[430211.6,582636.800000001],[431607.4136,581822.372300001],[432058.82,581234.8324],[432363.7684,580077.895300001],[432233.25,580002.050000001],[432549.8,578525.9],[432908.7269,578010.388900001],[433397.68,576155.359999999],[433772.3828,576769.9574],[434283.9343,576035.2382],[434462.2491,575675.295],[432526.17,574740.84],[432822.89,573351.85],[431489.57,572723.6],[431383.92,573504.65],[429971.58,573391.82],[429487.8593,574218.5211],[428395.76,573376.859999999],[427243.603,573540.6951],[427017.5976,574369.697799999],[423225.9826,574536.380100001],[422592.3991,576160.0953],[418379.08,574591.189999999],[419589.63,572091.75],[416066.3013,569970.3971],[415670.3982,567658.9988],[414564.8015,567752.801899999],[414852.3201,565172.7481],[413632.93,565538.43],[412080.66,564645.77],[410753.48,562087.585000001],[411189.04,559524.58],[410278.2025,559459.9957],[409539.5027,558088.2983],[411599.2581,556798.303099999],[409435.5985,555169.3039],[408438.9025,550680.5988],[405643.09,549430.84],[405647.76,548800.574999999],[404424.82,551041.65],[403353.33,550909.220000001],[401366.9982,552600.1993],[400036.5009,552765.202099999],[397552.12,550381.52],[394794.9,549263.23],[391121.0009,549681.004899999],[389204.5024,545427.602399999],[387332.8983,545780.4014],[386019.1962,543073.6962],[381924.7978,544854.896400001],[380030.2971,544057.604599999],[379054.1973,545655.2972],[377702.502,545856.1997],[375046.8997,548660.697000001],[373670.9535,551372.163000001],[372948.97,549860.810000001],[370512.22,548912.66],[368261,546276.119999999],[366452.4,545811.09],[364220.7964,547016.797499999],[362682.1031,550272.3956],[363287.4968,551122.0024],[361257.7029,554570.6952],[363130.5025,555927.596799999],[363804.5033,558428.401000001],[365155.9018,559523.1976],[363732.4992,560834.802200001],[363694.3988,562783.304400001],[361965.3023,563367.3972],[361597.5973,564245.195900001],[363412.5001,566043.701099999],[363468.0966,569243.995100001],[369228.5003,571829.195],[367908.5979,574332.5985],[369067.3011,576551.703199999],[368021.3986,577484.496200001],[364213.3017,576701.500399999],[363823.401,578129.1017],[362229.103,579125.5965],[361905.5008,581296.2951],[358216.5038,582615.5975],[356937.8021,584781.997400001],[357136.203,587050.8979],[356180.3036,588517.3981],[357677.7963,592130.603800001],[359931.996,592345.3024],[360028.6034,594692.000600001],[361224.7968,594942.099099999],[358992.6032,596399.002],[360273.2014,596629.596000001],[361400.598,598959.799000001],[363691.95,600458.200099999],[364622.0011,602784.1043],[367084.8009,603343.1043],[369956.4979,606849.8005],[373788.7034,607290.704299999],[374780.5,606090],[376070.4993,606192.298699999],[378704.4006,608184.398499999],[378155.9968,608840.400699999],[379187.8003,609745.8015],[378252.0023,611761.604499999],[378846.9,612748.602],[380262.9975,612584.099099999],[383607.3014,615480.0001],[385461.5992,614972.0955],[387771.7993,616763.602700001],[388206.0008,618712.8048],[389634.0041,619406.5962],[387371.8974,620178.895099999],[387293.5034,621767.700300001],[385645.497,623996.202400001],[384939.3982,629130.2028],[381891.0013,631888.6032],[381875.3027,634500.3956],[380191.2984,636364.702],[380665.8017,637299.4044],[379676.7984,637002.2995],[378943.7959,637708.6973],[380853.3026,639320.595899999],[385346.1024,638635.1021],[384470.6995,639874.397299999],[386356.0976,641215.9033],[386347.2012,642512.202299999],[389589.7034,645856.395],[388998.9407,647266.2502],[390640.5035,647759.3003],[391038.72,649552.07],[392712.3513,649493.653899999],[393343.8034,651842.601500001],[394724.9006,652080.203500001],[394698.7967,655530.9957],[397936.9941,657549.6449],[397945.6078,657535.9723],[400000,654173.7947],[400811.8035,652845.213300001]]]]},"properties":{"LAD22CD":"E06000057","LAD22NM":"Northumberland","BNG_E":395322,"BNG_N":600700,"LONG":-2.07523,"LAT":55.30038,"OBJECTID":54,"GlobalID":"5a578d9d-4643-442a-b0f1-7252f8a4b180"}},{"type":"Feature","id":55,"geometry":{"type":"MultiPolygon","coordinates":[[[[397095.9295,90873.3315999992],[397095.7886,90870.6013999991],[397094.3003,90871.5976],[397095.9295,90873.3315999992]]],[[[413916.4016,99619.6034999993],[415223.9034,96152.2960000001],[417803.0987,97799.8044000007],[418506.5014,95998.1000999995],[418145.2028,94238.1039000005],[422541.9971,94743.4192999993],[421840.6871,93125.9692000002],[421792.6646,93133.4229000006],[420000.0063,92827.8193999995],[419541.585,92749.6699999999],[419352.3499,92573.3286000006],[419222.283,92546.5590000004],[419098.2639,92336.5550999995],[418283.5961,91577.3956000004],[417223.45,92411.1500000004],[416909.535,91525.1050000004],[416949.147,90959.9240000006],[418019.59,90684.75],[418484.921,91679.2660000008],[417850.8316,90224.2543000001],[417831.5622,90191.625],[413919.829,91178.7339999992],[413372.3392,91137.0325000007],[412930.165,91231.2139999997],[411564.8321,90999.3574000001],[409494.549,90841.6669999994],[408769.786,90524.7113000005],[408196.013,90427.2750000004],[407770.6339,90087.7589999996],[406255.953,89425.3540000003],[403849.6663,87001.7416999992],[404757.147,88837.0820000004],[403466.2,89390.5500000007],[403047.4,90666.0370000005],[400651.46,90340.7599999998],[401204.36,91076.1899999995],[400448.04,92250.0500000007],[400814.6,93071.6500000004],[400000,92718.4264000002],[399284.089,92407.9959999993],[400000,91243.3796999995],[400910.528,89762.1679999996],[400000,90079.5127000008],[397250.4598,91037.8048999999],[399141.2027,93050.2039999999],[399438.7999,98113.8045000006],[400157.0025,98729.6982000005],[399681.7984,99040.8991],[403060.2039,98861.5004999992],[404383.6022,99907.8010000009],[404831.3007,97828.9960999992],[405770.3967,98273.9987000003],[406108.0979,97089.8976000007],[407586.2972,97839.6030000001],[409025.8024,95985.4037999995],[409636.5966,100794.7971],[411000.5028,101129.5013],[411804.8992,100067.6952],[413916.4016,99619.6034999993]]]]},"properties":{"LAD22CD":"E06000058","LAD22NM":"Bournemouth, Christchurch and Poole","BNG_E":410815,"BNG_N":94066,"LONG":-1.84807,"LAT":50.74609,"OBJECTID":55,"GlobalID":"56adc7de-4635-46ec-ae94-4f1a6b0a727b"}},{"type":"Feature","id":56,"geometry":{"type":"MultiPolygon","coordinates":[[[[403186.765,88036.9890000001],[402809.607,87405.0989999995],[400940.748,88090.2760000005],[402549.492,88354.6459999997],[403186.765,88036.9890000001]]],[[[377269.8012,131201.703199999],[381274.5016,129969.4959],[383121.4035,130234.100199999],[386549.2959,126502.2984],[387987.1026,122424.095799999],[391687.9972,119872.0963],[391621.3029,118020.496300001],[392944.6023,116177.603800001],[395297.2975,116865.297],[397528.9964,119197.0995],[400514.599,119591.396600001],[401134.0999,120595.3992],[403126.2221,121160.6974],[403222.4007,119874.5956],[405655.1967,118001.8017],[408978.2037,113093.296700001],[411210.4963,114704.9954],[413403.0971,114212.296399999],[412995.9972,111625.196900001],[410748.0968,110056.495999999],[410403.4037,107116.997400001],[412061.502,106210.197000001],[413671.0039,107108.399900001],[414003.4035,104845.997500001],[414840.4009,104108.998400001],[413941.7964,103442.099300001],[413349.801,101027.8004],[413916.4016,99619.6034999993],[411804.8992,100067.6952],[411000.5028,101129.5013],[409636.5966,100794.7971],[409025.8024,95985.4037999995],[407586.2972,97839.6030000001],[406108.0979,97089.8976000007],[405770.3967,98273.9987000003],[404831.3007,97828.9960999992],[404383.6022,99907.8010000009],[403060.2039,98861.5004999992],[399681.7984,99040.8991],[400157.0025,98729.6982000005],[399438.7999,98113.8045000006],[399141.2027,93050.2039999999],[397250.4598,91037.8048999999],[397219.452,91048.6119999997],[398154.0213,92182.1169000007],[396297.9,92155.6999999993],[397144.514,91814.9230000004],[397095.9295,90873.3315999992],[397094.3003,90871.5976],[397095.7886,90870.6013999991],[397079.025,90545.716],[395329.4,90608],[395018.903,89812.4008000009],[396023.1,89553.4000000004],[394889.303,89595.3049999997],[395075.184,88723.5920000002],[394480.2896,88340.9823000003],[394491.833,88297.3039999995],[394517.3154,87843.1679999996],[394521.552,87767.6649999991],[395447.093,87485.2050000001],[396250.113,88914.9900000002],[398253.838,89756.2569999993],[398790.267,89012.3739999998],[397640.693,89163.4309999999],[398349.492,87553.7829999998],[396352.958,86472.0250000004],[398318.773,87202.6420000009],[398214.492,86493.5700000003],[396765.33,85642.5700000003],[398047.829,86082.2929999996],[398183.453,85378.6390000004],[398566.78,86939.7469999995],[399289.068,87007.2019999996],[399354.775,85698.1640000008],[400000,86154.9628999997],[400110.142,86232.9399999995],[400570.388,85289.0439999998],[401627.888,86366.2620000001],[401260.547,85265.5700000003],[402350.742,84530.1789999995],[402148.034,85511.8819999993],[403641.803,86727.8920000009],[404256.544,85825.534],[404112.767,85148.2895],[403500.411,83378.7970000003],[403686.5885,83140.8268999998],[403644.317,82941.7119999994],[403888.9151,82882.2150999997],[404295.3221,82362.7499000002],[405297.7322,82539.5296],[405486.377,82493.6429999992],[403384.9897,79999.9794999994],[403165.256,79739.227],[403166.5189,79712.3166000005],[403157.2981,79701.3519000001],[403178.8991,79448.5077999998],[403211.07,78762.9829999991],[403237.7749,78759.3552999999],[403240,78733.3099000007],[403793.6674,78683.8396000005],[404062.926,78647.2620000001],[403547.8543,77206.5601000004],[398230.81,76587.2999000009],[396210.4093,75201.3791000005],[396060.7264,75626.8195999991],[395568.59,77091.9600000009],[395543.7286,77096.2706000004],[395540.39,77105.7598999999],[395432.2355,77115.602],[392260.5042,77665.5377999991],[390653.1999,79184.0998999998],[390627.0173,79170.7435999997],[390576.2,79225.1999999993],[389761.9,78762.9000000004],[388918.62,79541.4299999997],[387886.4554,79514.1059000008],[386123.87,80350.2899999991],[386090.4625,80342.2545999996],[386054.14,80384.0600000005],[384326.4174,79999.9758000001],[382841.1419,79669.7892000005],[382384.7925,79744.7346999999],[381209.2365,79999.9758000001],[379999.9717,80262.5358000007],[376702.1295,80978.5754000004],[376124.25,81410.7200000007],[374120.2757,81539.1568999998],[372172.8,81962],[370197.4,81902.4000000004],[370066.8511,81798.9453999996],[370000,81803.2300000004],[369873.9437,81646.0744000003],[369014.36,80964.8900000006],[368408.7613,80000.0353999995],[368079.25,79475.0500000007],[368613.9827,78945.6301000006],[367569.05,78777.9000000004],[368626.001,78933.7312000003],[368860.1854,78979.6187999994],[368860.3657,78979.4750999995],[368181.25,78327.5500000007],[368391.9646,78191.4940000009],[368316.55,78067.4499999993],[369492.78,77480.7100000009],[368226.7,78026.0999999996],[366806.9845,76132.5138000008],[366827.0458,76089.4986000005],[366792.5,76041.6999999993],[364915.7221,77628.4682],[365018.35,78248.3499999996],[363485.89,79924.3300000001],[362324.7097,79999.9722000007],[362237.09,80005.6799999997],[360465.24,82312.4600000009],[360000.0012,82530.6057999991],[356866.23,84000],[360000.0055,81476.9313999992],[361834.4899,79999.9495000001],[364899.7571,77532.0384],[366853.3,75959.1999999993],[367421.6677,74814.5160000008],[367478.2,74693.3000000007],[367482.005,74692.9976000004],[367484.69,74687.5899999999],[369099.1482,74562.3818999995],[370197.5,74477.1999999993],[369756.6,74123.4000000004],[370343.3874,72905.0844999999],[370434.8459,71919.5066],[367787.8362,68335.1418999992],[367712.3,68244.9000000004],[368200.7,73594.5],[362516.3,79285],[361601.0103,79999.9495000001],[360000.0074,81250.5220999997],[355045.6,85120.5],[344089.291,91244.2410000004],[339999.9789,92146.3506000005],[336192.4435,92986.2997999992],[335980.12,93033.6950000003],[335979.45,93033.2865999993],[335752.478,93083.3570000008],[333210.961,91398.8463000003],[332829.499,92532.2021999992],[334136.3989,95381.3967000004],[332796.4033,96893.7038000003],[337605.7969,99847.3982999995],[337185.1009,100961.1995],[332374.0995,102220.2991],[332873.9976,102838.6021],[334603.597,105013.6995],[337708.3985,106050.002800001],[341738.6008,105788.4977],[342990.803,107415.0021],[344324.4993,106222.603399999],[346789.8963,107763.102399999],[349808.6028,107398.4968],[349828.1024,108204.496099999],[353628.1026,109944.198100001],[356753.896,109308.699999999],[357222.2979,110408.0953],[356218.2968,112230.603599999],[357643.3979,114315.8967],[356809.0967,115863.8036],[358073.5015,116742.302200001],[357734.4976,119833.397399999],[358268.4972,120384.5996],[358953.9998,119881.9035],[359762.4033,120968.102600001],[361049.4986,120162.1033],[361811.1031,120773.0984],[361681.903,122382.297700001],[363150.7029,121522.603800001],[364841.4022,121725.2958],[365668.0026,119377.197899999],[368049.0031,116756.4981],[368992.6998,117898.001399999],[368695.4983,118810.600099999],[370045.0004,119195.899800001],[370955.5025,117989.2952],[375907.0987,119992.901699999],[375187.6017,121336.497099999],[373641.8011,121331.298599999],[373339.1992,122907.297499999],[376959.1025,126940.302999999],[375574.0972,130000.097200001],[377269.8012,131201.703199999]]]]},"properties":{"LAD22CD":"E06000059","LAD22NM":"Dorset","BNG_E":370871,"BNG_N":99796,"LONG":-2.41467,"LAT":50.79697,"OBJECTID":56,"GlobalID":"ae6e0e8a-c001-4eb1-8e07-20ef2b404f5f"}},{"type":"Feature","id":57,"geometry":{"type":"Polygon","coordinates":[[[477511.3,238583.195599999],[481094.4964,235529.0998],[482252.3008,232570.696699999],[485113.1969,232622.5019],[486627.897,230902.304300001],[488428.2968,231824.700200001],[488461.6976,233153.5998],[492633.0966,230939.4036],[489373.8981,224192.7049],[490042.1026,223206.897],[491396.5023,223409.598999999],[492871.2964,221772.0977],[495068.8031,221668.0975],[497615.3974,220030.1964],[500864.7018,215764.997300001],[500465.0966,214990.099099999],[499772.6022,215220.5031],[499280.8997,215585.6986],[497872.3959,212979.5046],[494321.1987,214362.4987],[491967.2997,213858.8029],[489970.6015,216637.397500001],[490552.4967,217552.295600001],[489874.2992,218529.595899999],[488424.0011,218390.095799999],[486504.5015,216670.698000001],[488032.402,214048.0987],[489057.4032,214332.5973],[490745.497,212098.3968],[490430.4038,211219.7983],[491899.2037,208334.0044],[495853.4031,206323.5998],[497676.6005,206880.2005],[498503.3987,205211.098300001],[499976.0985,204911.8039],[500223.4998,203695.702099999],[499364.1006,202436.8024],[500723.4968,200788.0044],[500431.3991,199208.396500001],[502121.1007,199180.104599999],[503466.6039,198202.204500001],[502379.4019,197620.301100001],[502277.798,196544.8989],[501296.6028,196772.9037],[501183.0023,194258.003599999],[502556.2008,190258.6984],[503946.1037,190047.398800001],[505700.3971,185577.6983],[504439.8015,183254.903200001],[505366.9998,179778.6982],[504919.2023,178392.095000001],[502020.9974,178182.595100001],[502320.796,179981.000299999],[499421.2966,180119.7006],[498939.1007,182116.199100001],[499474.7988,182536.198899999],[497928.6025,181359.795600001],[495073.5028,183109.8047],[493055.2025,181910.098099999],[493149.897,179292.5974],[494342.7018,178838.997199999],[494938.0034,177932.796599999],[493685.6034,177143.3026],[490091.3009,179927.695599999],[490830.3964,185026.0962],[490448.4028,185952.0011],[489395.797,185873.703500001],[488925.2019,187298.595699999],[486238.9033,185838.8035],[485091.3969,186078.504899999],[483785.8987,184297.604699999],[480346.1004,183507.800799999],[477752.1958,185399.499399999],[476591.7036,183461.404100001],[476240.09,184713.4],[473668.35,186342.85],[473434.28,187935.85],[475111.03,189533.33],[473290.73,190095.65],[473578.01,191528.640000001],[472771.9976,192754.0041],[473828.2972,193636.001599999],[472688.9039,195181.599199999],[474311.804,195283.300100001],[473946.6962,196771.304099999],[474935.9964,197623.700099999],[477710.4017,197218.896],[476300.7024,198089.096899999],[477537.7007,198604.499399999],[476489.4978,199885.3028],[476886.2996,202861.900699999],[474370.92,205993.23],[472278.965,207091.074999999],[470506.799,207382.696699999],[470070.09,206414.73],[467061.1962,207022.399800001],[467035.2985,205580.4026],[465997.6988,205530.096999999],[463538.296,206828.295399999],[463340.0023,209491.403100001],[461743.4039,209595.4033],[460541.4966,210976.8978],[460430.6995,212458.3038],[461437.2978,213559.898499999],[459306.6998,215468.1022],[460606.8964,216668.498600001],[463601.8984,214916.000299999],[465745.301,216118.0962],[464715.699,216584.502699999],[464497.0977,219314.801100001],[463593.2988,220196.898600001],[464172.3989,221375.801200001],[462473.9988,222096.8048],[463415.7991,224698.800000001],[462905.0011,225295.699100001],[465072.9987,228139.0952],[463406.9027,227606.897600001],[462272.9017,229157.3038],[465097.0001,234201.199999999],[460619.8989,235588.003],[459335.9038,236330.9003],[460312.3004,238890.397700001],[464397.25,240898.003],[466753.103,241040.0024],[465733.6012,242136.1986],[466827.9022,242370.101600001],[470845.4979,241894.797700001],[471920.4972,243091.895],[475162.8015,236430.2019],[476237.1,237596.698000001],[477107.5971,237433.3048],[477511.3,238583.195599999]]]},"properties":{"LAD22CD":"E06000060","LAD22NM":"Buckinghamshire","BNG_E":482506,"BNG_N":208561,"LONG":-0.80569,"LAT":51.76966,"OBJECTID":57,"GlobalID":"0a0b4a72-6369-4171-b49b-df250d51641e"}},{"type":"Feature","id":58,"geometry":{"type":"Polygon","coordinates":[[[501933.204,305782.100199999],[501950.0981,305791.0976],[503603.4967,303961.5013],[502228.5008,299296.896500001],[503186.1977,298398.4037],[507472.302,299057.904899999],[508056.4975,297436.2991],[507235.0009,296851.4965],[508526.1032,294623.5043],[507722.3994,293158.603599999],[511790.9001,291114.798599999],[511489.8976,289256.7005],[512757.5016,286735.5022],[510880.703,283686.9048],[511427.598,282987.1951],[507764.9027,280465.097100001],[506166.5976,277470.204299999],[502474.5994,276782.201300001],[502992.9004,276181.903100001],[502331.9022,274618.900599999],[503789.2991,273405.297900001],[503427.8027,272505.6954],[504563.799,272309.8015],[504689.396,270534.999500001],[500989.5979,269872.599099999],[501390.2997,269547.5022],[499542.6969,266755.601399999],[500321.8964,264597.199200001],[499618.3041,262988.5997],[498005.0013,262666.6018],[495381.2002,265434.0996],[491970.2019,264199.802999999],[493169.7017,259663.701400001],[491131.704,256034.000399999],[488587.7975,255602.6039],[486985.2009,260761.3972],[484600.7993,261896.6022],[482618.1012,261136.899700001],[481915.1521,262287.250399999],[480684.1974,268598.503799999],[482838.2031,270972.904200001],[482421.5967,273786.398800001],[479685.3989,275966.604699999],[478993.9021,277833.3004],[476722.8001,278890.697699999],[475584.0005,278419.2027],[475786.5981,281176.9033],[477305.0003,282409.9004],[474568.4975,283251.6994],[474749.6992,285210.798599999],[476012.9992,286512.596000001],[474923.299,288235.402799999],[475993.6976,288946.8992],[475868.4963,291259.597200001],[476846.3028,292724.797800001],[480162.5983,291502.5976],[483228.3017,291857.9959],[484440.0041,291063.5033],[487368.1963,292674.102299999],[490855.7995,297631.103399999],[494737.2032,299890.5966],[495715.6034,299710.998],[496180.8969,300730.1962],[496851.2039,299621.8035],[497765.9027,300605.901799999],[498714.0023,300447.3972],[498101.4025,301376.5012],[498904.6034,304131.9025],[500414.6039,305989.1009],[501933.204,305782.100199999]]]},"properties":{"LAD22CD":"E06000061","LAD22NM":"North Northamptonshire","BNG_E":493590,"BNG_N":281718,"LONG":-0.62504,"LAT":52.42546,"OBJECTID":58,"GlobalID":"12fbb47d-df2c-49cb-9e38-19ca5660954f"}},{"type":"Feature","id":59,"geometry":{"type":"Polygon","coordinates":[[[474749.6992,285210.798599999],[474568.4975,283251.6994],[477305.0003,282409.9004],[475786.5981,281176.9033],[475584.0005,278419.2027],[476722.8001,278890.697699999],[478993.9021,277833.3004],[479685.3989,275966.604699999],[482421.5967,273786.398800001],[482838.2031,270972.904200001],[480684.1974,268598.503799999],[481915.1521,262287.250399999],[482618.1012,261136.899700001],[484600.7993,261896.6022],[486985.2009,260761.3972],[488587.7975,255602.6039],[485608.4035,252803.0952],[483673.502,252976.4956],[482740.3013,251024.704299999],[481669.8037,251635.499399999],[481254.6979,250014.803400001],[480025.9035,250129.600500001],[480303.2014,248902.2018],[476719.502,248147.097999999],[476309.2031,246792.195800001],[477379.2966,246535.499299999],[477530.9974,245234.501700001],[479109.0032,244310.496200001],[480191.7034,242151.6042],[479652.1961,241239.6952],[478068.4023,240892.704500001],[478787.8004,239766.096999999],[477511.3,238583.195599999],[477107.5971,237433.3048],[476237.1,237596.698000001],[475162.8015,236430.2019],[471920.4972,243091.895],[470845.4979,241894.797700001],[466827.9022,242370.101600001],[465733.6012,242136.1986],[466753.103,241040.0024],[464397.25,240898.003],[460312.3004,238890.397700001],[459335.9038,236330.9003],[460619.8989,235588.003],[459529.201,233558.204],[457509.2023,233102.5045],[455301.7026,231300.000399999],[452176.4039,232252.197899999],[449314.403,231472.801000001],[449635.4987,235338.6044],[447211.2034,239450.7973],[448239.4037,242419.897399999],[446822.2014,242613.801899999],[446608.9017,243401.296499999],[451604.5017,244578.5995],[445790.299,252455.4047],[447050.4,254912.4014],[451017.1978,255770.695800001],[448945.1975,260282.304300001],[450161.2038,259923.497],[452454.5016,261951.296599999],[453617.4015,263422.5955],[452357.3995,266073.796499999],[454001.5966,268858.6994],[450161.2038,270281.801999999],[452318.1035,272323.797499999],[456285.0003,273454.7038],[454421.0971,277932.702],[455625.7994,277438.803300001],[457976.5983,278007.600500001],[459317.5998,280144.198899999],[462342.1025,282428.1951],[464700.998,280891.1951],[465748.5001,282471.1029],[465038.6992,283514.404200001],[467978.0965,286356.8006],[471281.3978,287124.900699999],[471956.9981,286060.995300001],[474749.6992,285210.798599999]]]},"properties":{"LAD22CD":"E06000062","LAD22NM":"West Northamptonshire","BNG_E":467187,"BNG_N":263879,"LONG":-1.01682,"LAT":52.26898,"OBJECTID":59,"GlobalID":"5994e46b-a1d5-4d1a-bf30-9e6ee654296a"}},{"type":"Feature","id":60,"geometry":{"type":"Polygon","coordinates":[[[547969.6016,261792.702],[547274.6996,260884.202],[548739.2038,259898.904100001],[548202.203,258425.3959],[549270.697,257785.499],[549273.6982,254599.900900001],[547985.1023,254894.196699999],[547484.3962,254004.601299999],[546562.6973,254687.595799999],[543984.1039,253158.203600001],[543966.4018,256798.9014],[541420.2981,259558.7015],[545538.702,261852.8048],[546763.4975,261236.201300001],[547268.4993,262079.799799999],[547969.6016,261792.702]]]},"properties":{"LAD22CD":"E07000008","LAD22NM":"Cambridge","BNG_E":545420,"BNG_N":257901,"LONG":0.126436,"LAT":52.20017,"OBJECTID":60,"GlobalID":"5c81395b-5ea3-41a8-8843-2407dc2aae51"}},{"type":"Feature","id":61,"geometry":{"type":"Polygon","coordinates":[[[565236.7961,284823.5995],[561625.5995,281731.3046],[564037.1974,276449.996400001],[566460.0003,275112.599199999],[565288.204,272889.3956],[565825.6995,271416.597200001],[567612.5032,271524.2963],[570947.2017,268127.5986],[570585.2023,266813.104900001],[565560.2003,264733.000299999],[562592.3988,268797.596899999],[560959.1017,269220.195900001],[559771.2028,265858.098300001],[561262.7013,263873.0965],[560045.3016,263045.5034],[562052.8008,261353.297800001],[565424.3959,262927.0973],[564928.7029,263820.101600001],[565756.9028,264487.000700001],[569479.1026,262283.9014],[570450.4038,263049.4023],[571833.3974,261707.896299999],[570488.1002,254794.6951],[569086.2007,254541.4976],[567780.9993,255604.4034],[566719.3982,254042.4005],[565445.2972,253978.798699999],[563920.8019,253779.3958],[558855.3002,255937.9979],[552067.702,261609.304500001],[552337.9999,262161.396400001],[550995.102,263553.398],[551639.7998,265140.503699999],[551001.5002,265830.8961],[552982.4008,268254.9022],[553359.2991,271795.998600001],[550375.799,271029.797900001],[549832.4,271849.0034],[547885.3041,271040.3049],[547442.0001,271777.8038],[545943.9962,271332.801200001],[541945.7022,272801.400800001],[539298.6006,274721.701099999],[539792.15,275325.0484],[538552.4968,278358.5001],[539996.2977,279744.4034],[539078.5977,281976.804300001],[539881.0977,281588.795399999],[542014.2022,283356.2995],[543338.697,282901.899499999],[544646.0999,284333.499700001],[544522.4982,282450.398800001],[551873.3,292281.004799999],[552558.5965,291478.604499999],[553239.6962,292370.699100001],[556807.4001,293141.1986],[560767.7998,291883.5986],[561773.1036,289508.0985],[565113.3015,286848.5998],[565236.7961,284823.5995]]]},"properties":{"LAD22CD":"E07000009","LAD22NM":"East Cambridgeshire","BNG_E":555576,"BNG_N":275765,"LONG":0.283149,"LAT":52.35788,"OBJECTID":61,"GlobalID":"a80a40e6-416c-4517-88b9-7d9b141c1a53"}},{"type":"Feature","id":62,"geometry":{"type":"Polygon","coordinates":[[[546710.3994,317809.0975],[545677.2025,311565.504699999],[547796.9995,311147.5043],[547812.797,308673.102600001],[546889.1028,308063.3971],[550326.7986,304981.7992],[548528.996,302383.0031],[550434.9985,299506.6965],[549592.8975,298698.297900001],[550396.5023,298169.099400001],[549567.4037,297482.695800001],[549619.6032,296732.3006],[550258.6037,296886.0966],[549542.0996,296452.1008],[550195.496,295666.8956],[549715.3036,295171.1975],[551413.8027,294562.1018],[549782.303,293590.799900001],[551873.3,292281.004799999],[544522.4982,282450.398800001],[544646.0999,284333.499700001],[543338.697,282901.899499999],[542014.2022,283356.2995],[539881.0977,281588.795399999],[539078.5977,281976.804300001],[539996.2977,279744.4034],[538552.4968,278358.5001],[537416.6984,281493.1028],[538376.2998,283167.703500001],[536606.8025,285964.8028],[533302.0996,287956.1028],[532556.8038,292120.0009],[531079.396,292745.901699999],[531029.9999,291523.9015],[529732.3015,290412.0998],[529225.6012,291010.0986],[528123.2036,289571.600400001],[522991.7002,295318.995200001],[522287.2009,296296.5954],[522976.2984,298283.796499999],[534704.6999,301457.597999999],[533246.0991,308906.795700001],[536804.2965,309378.7006],[538582.3027,311267.100099999],[538179.6964,314926.702500001],[539453.7974,316411.0976],[541180.3198,316042.283199999],[544097.1025,317872.599300001],[546710.3994,317809.0975]]]},"properties":{"LAD22CD":"E07000010","LAD22NM":"Fenland","BNG_E":536361,"BNG_N":294959,"LONG":0.009016,"LAT":52.53544,"OBJECTID":62,"GlobalID":"69eb47e3-4366-40b3-b3a8-62f7bed08001"}},{"type":"Feature","id":63,"geometry":{"type":"Polygon","coordinates":[[[522991.7002,295318.995200001],[528123.2036,289571.600400001],[529225.6012,291010.0986],[529732.3015,290412.0998],[531029.9999,291523.9015],[531079.396,292745.901699999],[532556.8038,292120.0009],[533302.0996,287956.1028],[536606.8025,285964.8028],[538376.2998,283167.703500001],[537416.6984,281493.1028],[538552.4968,278358.5001],[539792.15,275325.0484],[539298.6006,274721.701099999],[536998.6985,273414.295299999],[535438.7989,270144.601299999],[533261.6988,270300.3967],[532562.3032,267732.6017],[530732.6995,265541.098999999],[529565.4998,266085.303200001],[528336.6022,263790.800000001],[526795.1963,266628.297800001],[524564.8001,266240.4988],[524029.102,264063.402000001],[524510.696,262908.8025],[524755.5001,263525.695900001],[525890.103,263390.704600001],[527621.4009,262205.7038],[526522.2023,260250.9033],[523920.6959,260501.7015],[523401.1994,257784.099400001],[524769.0962,257013.300100001],[526304.4997,258692.599400001],[529371.8026,258202.5996],[529969.8994,255542.201199999],[527392.4026,255659.6975],[526199.9029,253709.795700001],[523914.1988,253870.299699999],[522090.3006,252659.996200001],[519028.8022,254551.504699999],[519753.304,255455.7959],[520357.0981,256118.2963],[518860.8998,258271.4999],[516506.3,258284.5962],[517164.899,261281.2984],[516637.8005,261629.298800001],[513761.4037,261825.602600001],[513202.8008,261700.6983],[513399.1982,260455.9046],[511114.7968,260665.704600001],[510476.2004,264894.0042],[511163.8962,265173.6042],[510953.1029,265944.4036],[507752.7,266371.9012],[506770.1031,267653.5043],[506705.0001,269634.2973],[504689.396,270534.999500001],[504563.799,272309.8015],[503427.8027,272505.6954],[503789.2991,273405.297900001],[502331.9022,274618.900599999],[502992.9004,276181.903100001],[502474.5994,276782.201300001],[506166.5976,277470.204299999],[507764.9027,280465.097100001],[511427.598,282987.1951],[510880.703,283686.9048],[512757.5016,286735.5022],[511489.8976,289256.7005],[511790.9001,291114.798599999],[507722.3994,293158.603599999],[508526.1032,294623.5043],[507235.0009,296851.4965],[508056.4975,297436.2991],[507472.302,299057.904899999],[508718.0977,299559.001499999],[509528.9995,297817.899900001],[512042.0034,297561.0034],[513631.7996,296319.9987],[513154.6991,295603.003900001],[515933.4991,291254.798599999],[517524.7959,292843.503799999],[519182.1027,293125.5031],[519800.5977,295440.700300001],[520980.804,294830.494999999],[522131.5012,295670.604499999],[522991.7002,295318.995200001]]]},"properties":{"LAD22CD":"E07000011","LAD22NM":"Huntingdonshire","BNG_E":521008,"BNG_N":274269,"LONG":-0.2247,"LAT":52.35315,"OBJECTID":63,"GlobalID":"ce194c5f-ea01-422c-b0e7-0180a18af5c0"}},{"type":"Feature","id":64,"geometry":{"type":"Polygon","coordinates":[[[565445.2972,253978.798699999],[565606.6035,251206.5022],[563704.8967,249263.7983],[563225.8009,247603.9035],[564153.9969,246884.8993],[564926.6004,243518.902799999],[563269.4997,241689.896299999],[564008.7025,240256.296700001],[560961.6,241632.002900001],[559420.1033,244150.1021],[556709.0036,246025.895199999],[556031.1029,246252.9002],[554396.8988,244437.399900001],[553233.7021,245761.001],[551046.4028,246103.1031],[549723.4992,243893.695499999],[550228.097,242463.9048],[548713.1989,241839.5035],[548655.3021,241079.900900001],[547592.2993,241567.101500001],[546034.7001,240905.800799999],[545372.597,242293.3036],[544457.0984,242299.901699999],[543656.6019,237979.7983],[542051.4039,236168.096899999],[539993.5026,241400.7991],[537520.8005,240938.601399999],[535877.1971,242422.9965],[528645.3963,237488.798900001],[528081.6979,240290.9968],[526595.5999,241012.9001],[527071.3976,242843.596100001],[526366.5707,244063.172900001],[527085.7028,250500.4044],[526390.1989,251173.1018],[525228.2967,250597.796499999],[520884.6995,251071.6009],[522090.3006,252659.996200001],[523914.1988,253870.299699999],[526199.9029,253709.795700001],[527392.4026,255659.6975],[529969.8994,255542.201199999],[529371.8026,258202.5996],[526304.4997,258692.599400001],[524769.0962,257013.300100001],[523401.1994,257784.099400001],[523920.6959,260501.7015],[526522.2023,260250.9033],[527621.4009,262205.7038],[525890.103,263390.704600001],[524755.5001,263525.695900001],[524510.696,262908.8025],[524029.102,264063.402000001],[524564.8001,266240.4988],[526795.1963,266628.297800001],[528336.6022,263790.800000001],[529565.4998,266085.303200001],[530732.6995,265541.098999999],[532562.3032,267732.6017],[533261.6988,270300.3967],[535438.7989,270144.601299999],[536998.6985,273414.295299999],[539298.6006,274721.701099999],[541945.7022,272801.400800001],[545943.9962,271332.801200001],[547442.0001,271777.8038],[547885.3041,271040.3049],[549832.4,271849.0034],[550375.799,271029.797900001],[553359.2991,271795.998600001],[552982.4008,268254.9022],[551001.5002,265830.8961],[551639.7998,265140.503699999],[550995.102,263553.398],[552337.9999,262161.396400001],[552067.702,261609.304500001],[558855.3002,255937.9979],[563920.8019,253779.3958],[565445.2972,253978.798699999]],[[547969.6016,261792.702],[547268.4993,262079.799799999],[546763.4975,261236.201300001],[545538.702,261852.8048],[541420.2981,259558.7015],[543966.4018,256798.9014],[543984.1039,253158.203600001],[546562.6973,254687.595799999],[547484.3962,254004.601299999],[547985.1023,254894.196699999],[549273.6982,254599.900900001],[549270.697,257785.499],[548202.203,258425.3959],[548739.2038,259898.904100001],[547274.6996,260884.202],[547969.6016,261792.702]]]},"properties":{"LAD22CD":"E07000012","LAD22NM":"South Cambridgeshire","BNG_E":543295,"BNG_N":247586,"LONG":0.091017,"LAT":52.10805,"OBJECTID":64,"GlobalID":"fbdfcc3e-33a7-4792-a5f2-483d4cf80e23"}},{"type":"Feature","id":65,"geometry":{"type":"Polygon","coordinates":[[[328383.7692,559631.011],[327876.699,557334.804],[330953.2034,557188.595899999],[331407.2012,555521.203199999],[332281.3014,555177.9014],[331288.4971,554002.9977],[332390.2021,552827.0044],[331379.3989,552293.797],[331647.8993,551648.6017],[334436.2965,551323.604699999],[334010.604,549922.795700001],[332816.0018,549243.000299999],[333879.2024,548479.798699999],[334092.0982,545630.104499999],[335698.2031,545499.901699999],[335197.596,544486.401799999],[336576.6979,544761.5031],[336774.299,542804.203299999],[336302.7969,541154.795499999],[334045.0024,539690.3047],[336739.0534,536659.082800001],[336144.4011,533918.9967],[331541.1999,534413.6951],[330365.0997,533894.3038],[330009.5974,532880.1041],[332099.7039,532143.195],[330005.4643,530372.0912],[329478.4011,528189.196900001],[329898.6024,524707.5035],[332629.3996,524849.8027],[333279.9019,523558.3024],[335002.5013,522706.396299999],[333068.2017,521136.295700001],[334272.5001,520451.8017],[333579.8985,519563.9958],[334348.198,518958.799000001],[333716.1976,515462.999700001],[334385.004,514952.2959],[334374.6976,512086.5962],[330381.9031,510979.802999999],[328956.398,509058.403000001],[328200.2022,509304.002699999],[327977.701,507914.9003],[326446.9972,508969.398499999],[324427.0974,507150.999],[321097.8984,510314.103499999],[321584.3982,511602.4048],[320787.7028,512580.2049],[315595.5981,515767.5024],[312098.6038,516704.204399999],[311136.3969,520652.304300001],[310048.8981,522093.2018],[307451.8977,523421.6516],[306625.6971,521666.0041],[304368.7024,521672.902100001],[303868.1035,523532.299900001],[302486.1529,524339.2489],[300218.0974,524649.300100001],[299682.0035,523471.997099999],[298508.8053,523970.1953],[298509.1291,523971.511499999],[298968.5,525251.449999999],[298161.6726,529724.4553],[298687.95,529556.699999999],[299999.9807,529218.0582],[300445.1358,529103.1614],[299999.9806,529224.280999999],[298703.462,529577.043],[299999.9894,531277.3555],[302176.18,534131.289999999],[302514.6689,535678.6132],[302977.1242,536801.641100001],[303851.96,536302.619999999],[303003.3229,536865.2621],[303031.5775,536933.875600001],[306231.4705,540000.025900001],[307633.456,541343.414000001],[307674.3,546172.699999999],[310256.5,553412.699999999],[312386.952,556004.086999999],[314293.497,556991.68],[317609.7,554483.9],[317531.986,555953.143999999],[318307.8174,555532.751399999],[319129.771,556327.233999999],[319030.91,555657.859999999],[319969.53,556936.17],[319803.843,558104.983999999],[318544.147,556827.675000001],[316210.9,558219.699999999],[315858.849,559195.041999999],[316520.1029,559999.965299999],[317769.93,561521.34],[319045.25,561663.73],[318804.9,561004],[320000.0138,561874.965],[321191.184,562743.056],[322965.735,562785],[326191.69,560297.07],[327169.4622,559999.9758],[328383.7692,559631.011]]]},"properties":{"LAD22CD":"E07000026","LAD22NM":"Allerdale","BNG_E":317520,"BNG_N":532997,"LONG":-3.2809,"LAT":54.68524,"OBJECTID":65,"GlobalID":"6639cdb9-5fed-4853-b258-739a8872af67"}},{"type":"Feature","id":66,"geometry":{"type":"MultiPolygon","coordinates":[[[[318816.4,467718.5],[318187.2,467376.35],[318799.02,467560.859999999],[318524.83,466974],[319999.9829,465813.4561],[320218.3,465641.699999999],[319999.9712,465104.217900001],[319817.63,464655.33],[320000.0004,464531.3159],[320888.42,463927.18],[321214.35,462410.359999999],[322943.2,462787.199999999],[323224.03,462006.76],[323307.2,462782.050000001],[323283.31,461870.300000001],[320878.2,461977],[320000.0102,463560.8507],[317158.1,468686.35],[316717.75,472646.9],[318306.41,473451.369999999],[317336.85,472528.4],[318663.3,468936.550000001],[318816.4,467718.5]]],[[[325265.1007,480912.7996],[324164.7973,478024.7963],[325497.1991,474986.595899999],[324159.5039,474298.502900001],[324329.5006,471632.696],[323296.7984,469403.1042],[325236.3007,467671.6998],[324909.5984,467059.395099999],[324940.0864,467015.2764],[323393.78,465728.529999999],[324783.2,463819.199999999],[323456.87,465490.68],[323015.87,464973.109999999],[323315.71,465903.619999999],[322174.4,468119.6],[320655.532,467588.0395],[320286.9,466668.4],[320000.0058,467121.7334],[318891.3584,468873.5529],[319315.58,473913.720000001],[318502.05,473932.699999999],[317993.4,475250.029999999],[319999.9847,476139.290999999],[320652.89,476428.640000001],[320286.47,477579.93],[320819.35,477332.25],[320975.84,479727.5],[321445.8612,479999.990800001],[321661.2894,480124.8835],[321796.7992,479829.899499999],[323931.6022,479229.2015],[325265.1007,480912.7996]]]]},"properties":{"LAD22CD":"E07000027","LAD22NM":"Barrow-in-Furness","BNG_E":321741,"BNG_N":474165,"LONG":-3.1999,"LAT":54.15731,"OBJECTID":66,"GlobalID":"9248f368-1975-494a-a985-4c0d1b7c97e0"}},{"type":"Feature","id":67,"geometry":{"type":"Polygon","coordinates":[[[362682.1031,550272.3956],[361334.4974,551115.904200001],[358025.5977,551304.200300001],[356411.998,549154.895500001],[355055.603,548977.6962],[355779.1978,547384.802200001],[354751.2036,547061.9046],[351944.4034,548511.5996],[351496.8038,547818.698000001],[348732.0039,547388.701099999],[344665.3996,549499.796800001],[343463.6985,547983.8007],[341794.997,547833.8037],[341974.5992,546836.599099999],[340897.9013,546426.396400001],[339336.798,543646.6022],[336774.299,542804.203299999],[336576.6979,544761.5031],[335197.596,544486.401799999],[335698.2031,545499.901699999],[334092.0982,545630.104499999],[333879.2024,548479.798699999],[332816.0018,549243.000299999],[334010.604,549922.795700001],[334436.2965,551323.604699999],[331647.8993,551648.6017],[331379.3989,552293.797],[332390.2021,552827.0044],[331288.4971,554002.9977],[332281.3014,555177.9014],[331407.2012,555521.203199999],[330953.2034,557188.595899999],[327876.699,557334.804],[328383.7692,559631.011],[328398.6007,559626.5045],[328405.5787,559580.2908],[328388.8397,559557.2005],[328388.3564,559538.7764],[330628.9965,559999.992000001],[330629.249,560000.044],[328404.435,560561.476],[328020.229,561622.051000001],[328738.489,561238.578],[328229.298,561673.422],[328730.684,561961.157],[327912.538,562388.289999999],[329913.251,561834.032],[329397.911,562107.003],[328549.03,562934.050000001],[329287.2895,562338.766100001],[328914.76,563119.253],[330604.829,563931.875],[332048.6777,565949.2051],[332242.874,566060.6139],[332922.2899,565939.9365],[333010.6667,565924.2391],[332721.2599,566896.8334],[334533.2996,571807.5013],[332791.1017,573038.298900001],[332959.4989,573650.103800001],[338852.7965,573174.799900001],[340285.5984,574300.797599999],[340043.004,575366.102600001],[342836.6039,576311.202099999],[343536.2962,578178.797499999],[345325.8345,579663.3026],[347321.0019,581474.304199999],[347472.9996,582972.495300001],[350067.2998,583327.8036],[355295.7981,586770.7981],[356180.3036,588517.3981],[357136.203,587050.8979],[356937.8021,584781.997400001],[358216.5038,582615.5975],[361905.5008,581296.2951],[362229.103,579125.5965],[363823.401,578129.1017],[364213.3017,576701.500399999],[368021.3986,577484.496200001],[369067.3011,576551.703199999],[367908.5979,574332.5985],[369228.5003,571829.195],[363468.0966,569243.995100001],[363412.5001,566043.701099999],[361597.5973,564245.195900001],[361965.3023,563367.3972],[363694.3988,562783.304400001],[363732.4992,560834.802200001],[365155.9018,559523.1976],[363804.5033,558428.401000001],[363130.5025,555927.596799999],[361257.7029,554570.6952],[363287.4968,551122.0024],[362682.1031,550272.3956]]]},"properties":{"LAD22CD":"E07000028","LAD22NM":"Carlisle","BNG_E":348576,"BNG_N":565154,"LONG":-2.80498,"LAT":54.97833,"OBJECTID":67,"GlobalID":"8e5db715-0fd9-4b5d-803a-1de9b97915e8"}},{"type":"Feature","id":68,"geometry":{"type":"Polygon","coordinates":[[[324427.0974,507150.999],[325039.6972,504488.801000001],[326389.4961,503532.2048],[327176.8995,504145.3993],[327721.6012,502747.1995],[324091.9027,501104.299799999],[322458.4983,496081.297599999],[321644.3975,495940.098099999],[319326.0018,492704.804099999],[320020.7966,491707.999500001],[319962.4136,486716.9077],[319734.62,485653.66],[320000.0048,485272.396500001],[320417.67,484672.359999999],[320000.0025,484505.3016],[319057.6,484128.359999999],[320000.0025,484417.630799999],[320072.65,484439.93],[320214.84,483365.58],[320000.0168,483133.3619],[317545.06,480479.619999999],[318305.06,480121.33],[318487.13,480733.529999999],[318887.9374,479999.970699999],[319258.88,479321.07],[318260.7,478034.5],[316089.03,478688.68],[315400.1,477764.4],[313855.79,477972.1],[312568.7397,479999.9978],[309296.87,485155.210000001],[307578.7,488600.41],[307537.64,494578.279999999],[308442.81,495898.939999999],[307973.25,495751.279999999],[306791.15,495155.92],[304086.9389,500000.000499999],[302550.41,502752.4],[300000.0046,506164.345000001],[293990.47,514203.93],[295685.25,515638.220000001],[295954.4109,516168.7765],[296055.9,516268.300000001],[296124.5109,516504.0691],[297187.7673,518599.9067],[297532.1843,520000.032099999],[298508.8053,523970.1953],[299682.0035,523471.997099999],[300218.0974,524649.300100001],[302486.1529,524339.2489],[303868.1035,523532.299900001],[304368.7024,521672.902100001],[306625.6971,521666.0041],[307451.8977,523421.6516],[310048.8981,522093.2018],[311136.3969,520652.304300001],[312098.6038,516704.204399999],[315595.5981,515767.5024],[320787.7028,512580.2049],[321584.3982,511602.4048],[321097.8984,510314.103499999],[324427.0974,507150.999]]]},"properties":{"LAD22CD":"E07000029","LAD22NM":"Copeland","BNG_E":310871,"BNG_N":508739,"LONG":-3.37664,"LAT":54.46617,"OBJECTID":68,"GlobalID":"99c55521-22f7-452d-8003-34aac6b876d1"}},{"type":"Feature","id":69,"geometry":{"type":"Polygon","coordinates":[[[380030.2971,544057.604599999],[379118.7974,536896.904300001],[377170.4977,533681.8046],[377420.1004,532376.1983],[378990.496,530676.8048],[381206.7024,529905.5955],[381516.4034,528412.6029],[379121.8975,526327.6997],[380423.199,522376.8006],[386548.1993,517404.304],[387315.6991,515286.800100001],[388941.9961,515253.5996],[389793.9995,508529.0045],[389063.3964,506991.704600001],[388591.3996,507374.1951],[387822.2014,505968.897299999],[383918.198,506310.999399999],[381103.1032,504915.798800001],[380102.4991,502748.699100001],[380262.7996,500225.001499999],[381150.8999,499529.6006],[380777.0028,497972.6962],[379503.3965,497912.803400001],[377701.1003,496065.0023],[376200.2024,495676.703500001],[375260.1995,497377.9965],[372751.6973,496783.696599999],[371270.9998,497925.899599999],[370034.0015,497083.300799999],[368681.3992,498090.3026],[366722.851,497056.148600001],[365150.996,499993.4978],[364222.0992,499192.497099999],[362744.6007,499763.2037],[362207.0969,499285.3005],[360893.8978,501441.6033],[358535.0023,501175.0996],[355539.0027,503687.000499999],[355403.2972,505812.702099999],[354433.8017,504314.6009],[348945.0975,508020.100199999],[347819.5972,509933.4025],[347223.8009,509111.3978],[345763.1965,509300.2038],[344042.6996,510877.802200001],[343364.6011,509879.8978],[341378.3988,509932.602700001],[340476.9993,508100.3972],[338204.0008,510328.999299999],[337487.0021,510082.799799999],[336593.6992,511622.2991],[334436.5026,511514.4999],[334374.6976,512086.5962],[334385.004,514952.2959],[333716.1976,515462.999700001],[334348.198,518958.799000001],[333579.8985,519563.9958],[334272.5001,520451.8017],[333068.2017,521136.295700001],[335002.5013,522706.396299999],[333279.9019,523558.3024],[332629.3996,524849.8027],[329898.6024,524707.5035],[329478.4011,528189.196900001],[330005.4643,530372.0912],[332099.7039,532143.195],[330009.5974,532880.1041],[330365.0997,533894.3038],[331541.1999,534413.6951],[336144.4011,533918.9967],[336739.0534,536659.082800001],[334045.0024,539690.3047],[336302.7969,541154.795499999],[336774.299,542804.203299999],[339336.798,543646.6022],[340897.9013,546426.396400001],[341974.5992,546836.599099999],[341794.997,547833.8037],[343463.6985,547983.8007],[344665.3996,549499.796800001],[348732.0039,547388.701099999],[351496.8038,547818.698000001],[351944.4034,548511.5996],[354751.2036,547061.9046],[355779.1978,547384.802200001],[355055.603,548977.6962],[356411.998,549154.895500001],[358025.5977,551304.200300001],[361334.4974,551115.904200001],[362682.1031,550272.3956],[364220.7964,547016.797499999],[366452.4,545811.09],[368261,546276.119999999],[370512.22,548912.66],[372948.97,549860.810000001],[373670.9535,551372.163000001],[375046.8997,548660.697000001],[377702.502,545856.1997],[379054.1973,545655.2972],[380030.2971,544057.604599999]]]},"properties":{"LAD22CD":"E07000030","LAD22NM":"Eden","BNG_E":359636,"BNG_N":526396,"LONG":-2.62678,"LAT":54.63107,"OBJECTID":69,"GlobalID":"9a89e3d0-8254-48d7-bd7f-deb07471ccfd"}},{"type":"Feature","id":70,"geometry":{"type":"Polygon","coordinates":[[[376200.2024,495676.703500001],[379945.7028,492125.100099999],[378980,489778.1019],[379309.9014,484654.998400001],[378090.3002,482484.5996],[376489.9998,483844.9003],[375786.9022,482774.3967],[374238.0015,482702.997099999],[373651.8024,481096.696900001],[370052.1984,481319.203199999],[370144.7986,482748.704],[362512.5022,477911.6986],[359323.4033,477935.901699999],[358350.7994,478665.3029],[355703.401,474137.698899999],[352015.8963,475052.8969],[352170.5984,476729.7969],[349964.0964,476959.5012],[347972.304,478292.0997],[345446.8006,475698.702099999],[345401.2233,475705.2706],[343740.2,476651.5],[343713.92,477703.140000001],[345143.01,479198.619999999],[342216.36,478508.710000001],[341237.01,477443.390000001],[341613.75,476525.550000001],[340657.64,476355.24],[341389.29,475964.119999999],[340000.0047,474847.264900001],[339881.44,474751.949999999],[340000.0039,474747.1227],[340791.68,474714.890000001],[339999.9944,473596.1527],[339658.49,473113.57],[334799.4,473677.4],[335520.12,476414.98],[334394.6,475629],[334502.46,476520.949999999],[334154.4,476150.9],[332335.39,478441.109999999],[333350.91,477793.02],[332589.32,478330.99],[332730.9664,480000.012599999],[332743.62,480149.109999999],[332638.9293,480000.0098],[330695.11,477231.630000001],[330828.7,474545.380000001],[327822.79,469805.58],[324942.667,467017.423800001],[324940.0864,467015.2764],[324909.5984,467059.395099999],[325236.3007,467671.6998],[323296.7984,469403.1042],[324329.5006,471632.696],[324159.5039,474298.502900001],[325497.1991,474986.595899999],[324164.7973,478024.7963],[325265.1007,480912.7996],[323931.6022,479229.2015],[321796.7992,479829.899499999],[321661.2894,480124.8835],[321703.9945,480149.6414],[321683.559,480185.4998],[321678.0175,480200.013800001],[321660.4017,480220.8311],[321628.1711,480274.248299999],[321624.5579,480289.8948],[323211.73,483210.529999999],[322017.55,482127.210000001],[321245.97,484938.58],[320032.09,485618.99],[320149.9583,487592.2892],[320000.0254,486892.464],[319962.4136,486716.9077],[320020.7966,491707.999500001],[319326.0018,492704.804099999],[321644.3975,495940.098099999],[322458.4983,496081.297599999],[324091.9027,501104.299799999],[327721.6012,502747.1995],[327176.8995,504145.3993],[326389.4961,503532.2048],[325039.6972,504488.801000001],[324427.0974,507150.999],[326446.9972,508969.398499999],[327977.701,507914.9003],[328200.2022,509304.002699999],[328956.398,509058.403000001],[330381.9031,510979.802999999],[334374.6976,512086.5962],[334436.5026,511514.4999],[336593.6992,511622.2991],[337487.0021,510082.799799999],[338204.0008,510328.999299999],[340476.9993,508100.3972],[341378.3988,509932.602700001],[343364.6011,509879.8978],[344042.6996,510877.802200001],[345763.1965,509300.2038],[347223.8009,509111.3978],[347819.5972,509933.4025],[348945.0975,508020.100199999],[354433.8017,504314.6009],[355403.2972,505812.702099999],[355539.0027,503687.000499999],[358535.0023,501175.0996],[360893.8978,501441.6033],[362207.0969,499285.3005],[362744.6007,499763.2037],[364222.0992,499192.497099999],[365150.996,499993.4978],[366722.851,497056.148600001],[368681.3992,498090.3026],[370034.0015,497083.300799999],[371270.9998,497925.899599999],[372751.6973,496783.696599999],[375260.1995,497377.9965],[376200.2024,495676.703500001]]]},"properties":{"LAD22CD":"E07000031","LAD22NM":"South Lakeland","BNG_E":349265,"BNG_N":489555,"LONG":-2.78108,"LAT":54.299079999999996,"OBJECTID":70,"GlobalID":"6e32eb70-edd0-467a-b4b7-a2b01c809f9f"}},{"type":"Feature","id":71,"geometry":{"type":"Polygon","coordinates":[[[442027.8963,356921.7016],[442909.3015,354987.5952],[444868.4023,353958.0999],[444027.1999,352232.004000001],[444613.7041,350838.203],[444896.6004,348413.797],[446571.8978,345370.698100001],[444897.2023,342516.495100001],[442334.596,341930.9027],[441359.9968,342947.2018],[439760.9992,342346.103800001],[435094.3028,342925.9978],[435383.3994,341078.696599999],[433988.0959,341063.301000001],[433161.8996,337895.097899999],[430748.999,336405.804199999],[428991.1025,337683.998299999],[426708.4985,337784.0997],[426495.0009,338935.4001],[427005.7,340653.1984],[428907.3986,341106.798599999],[428876.0014,341933.0021],[426806.9033,343194.301000001],[426992.1039,344639.6973],[428497.6026,345053.198899999],[428358.0961,346456.7972],[429164.3972,346351.397299999],[428533.5016,346791.3014],[429186.7,347327.398],[427943.2995,347088.6963],[427019.0982,348204.9967],[428191.3975,349527.3982],[427481.8028,350906.9033],[430030.1038,352511.2041],[431335.0991,354513.7009],[432290.6028,354441.7015],[432773.2027,355237.603700001],[431492.5963,356020.7995],[431986.3023,358243.303300001],[433859.2998,359761.898600001],[437037.3009,356415.396500001],[442027.8963,356921.7016]]]},"properties":{"LAD22CD":"E07000032","LAD22NM":"Amber Valley","BNG_E":436166,"BNG_N":348084,"LONG":-1.46219,"LAT":53.02884,"OBJECTID":71,"GlobalID":"8c417107-29dd-4ce3-88e3-d3024fb3f28f"}},{"type":"Feature","id":72,"geometry":{"type":"Polygon","coordinates":[[[452886.8973,369249.6028],[453761.7972,365601.2971],[450861.3497,364883.2027],[449575.6824,363293.557700001],[447159.3997,364019.4999],[446849.5008,363236.504000001],[445331.5026,363013.5978],[445476.3024,359488.9967],[446923.2034,356320.9036],[446350.8972,355728.0033],[446786.1994,354778.600099999],[444868.4023,353958.0999],[442909.3015,354987.5952],[442027.8963,356921.7016],[441721.0975,360061.3029],[443369.7964,362595.7974],[441655.4009,364246.604900001],[443079.6033,365566.3971],[445637.3037,365639.995999999],[446133.3018,368996.6952],[445533.5973,371608.997400001],[444710.4022,373564.6976],[446701.8977,374324.600099999],[445655.6984,376291.097200001],[445145.6012,377782.9002],[446040.1986,378107.2973],[445280.6965,379337.0953],[447937.7005,379406.995300001],[450488.4008,378555.099099999],[451358.4032,379342.103800001],[453192.6984,378879.6962],[453416.8189,379685.115599999],[454964.9001,379000.9015],[454755.3024,376996.0954],[455676.2015,375952.1042],[454682.1027,375092.4003],[455145.302,374556.2038],[453298.598,374096.295399999],[452609.6984,372581.499],[453360.6998,371241.7026],[452886.8973,369249.6028]]]},"properties":{"LAD22CD":"E07000033","LAD22NM":"Bolsover","BNG_E":448666,"BNG_N":371548,"LONG":-1.27228,"LAT":53.23875,"OBJECTID":72,"GlobalID":"7e01028b-bb10-469e-a6e8-aaa5a8d841fc"}},{"type":"Feature","id":73,"geometry":{"type":"Polygon","coordinates":[[[445655.6984,376291.097200001],[446701.8977,374324.600099999],[444710.4022,373564.6976],[445533.5973,371608.997400001],[443674.0969,371586.9037],[443413.7014,372346.496300001],[441449.0023,372040.6039],[440092.7969,370970.600199999],[440097.8017,368709.297499999],[438774.6013,368529.898800001],[437494.201,368647.7951],[437407.7021,369430.1011],[434847.7013,369588.595799999],[434533.1027,370337.001499999],[435381.2969,371145.0002],[434682.5486,372285.9037],[435377.4959,373729.4005],[434742.7994,374162.296599999],[435832.9036,374688.096000001],[436295.196,376443.4036],[437500.5002,376059.4035],[439067.0041,376898.4033],[440149.6961,376276.9013],[441615.0001,378188.804],[442301.8961,377097.7963],[444518.3994,377181.702299999],[445655.6984,376291.097200001]]]},"properties":{"LAD22CD":"E07000034","LAD22NM":"Chesterfield","BNG_E":440049,"BNG_N":373359,"LONG":-1.40115,"LAT":53.25575,"OBJECTID":73,"GlobalID":"c50579ca-a4f4-4599-91ab-265e521e8a41"}},{"type":"Feature","id":74,"geometry":{"type":"Polygon","coordinates":[[[426809.0965,379448.5034],[426928.8972,377717.898800001],[428186.4999,376691.9025],[427476.3033,375827.6998],[427783.704,374044.8002],[429062.3975,373911.1984],[429644.4988,372594.495300001],[428657.3012,371637.499299999],[428871.9036,369649.0984],[432453.6983,367399.9023],[430271.8985,367075.495100001],[430170.3029,365465.8959],[433859.2998,359761.898600001],[431986.3023,358243.303300001],[431492.5963,356020.7995],[432773.2027,355237.603700001],[432290.6028,354441.7015],[431335.0991,354513.7009],[430030.1038,352511.2041],[427481.8028,350906.9033],[428191.3975,349527.3982],[427019.0982,348204.9967],[427943.2995,347088.6963],[429186.7,347327.398],[428533.5016,346791.3014],[429164.3972,346351.397299999],[428358.0961,346456.7972],[428497.6026,345053.198899999],[426992.1039,344639.6973],[426806.9033,343194.301000001],[428876.0014,341933.0021],[428907.3986,341106.798599999],[427005.7,340653.1984],[426495.0009,338935.4001],[423600.498,338630.5974],[423039.7019,333957.805],[421732.497,336065.3017],[419713.702,336103.400800001],[419299.701,334720.196699999],[416979.2027,335034.896600001],[417819.696,333116.3958],[417194.9018,330163.201099999],[415088.2969,331838.4016],[411656.9993,331897.2048],[409739.6021,336227.395300001],[411533.9005,338713.703600001],[411728.3026,342205.0042],[416042.5968,344750.5956],[416261.701,348918.4025],[414914.6972,349751.604],[415132.8038,351366.501800001],[413877.8972,354593.2981],[414577.2021,356201.097899999],[412013.5982,359962.701099999],[412633.0991,361926.598999999],[409402.9975,365710.7958],[406868.5976,366989.399800001],[405535.396,368993.496099999],[406055.7995,369406.697799999],[406936.0999,368157.195499999],[407646.2965,368968.203299999],[407936.0032,367363.502699999],[408597.3973,368738.999],[410624.8001,366418.303200001],[411346.9026,366734.3028],[411367.004,368187.4968],[408491.2009,369983.602700001],[410480.8991,372609.1011],[414088.0968,373285.897399999],[412264.0996,376190.396],[411917.7988,378442.101500001],[416033.8982,382395.399900001],[418061.804,382446.0953],[418244.3991,380278.8957],[420050.1994,380784.6009],[420283.5017,382029.4046],[421985.002,383658.7982],[421834.4966,385884.301200001],[423119.4976,388395.5023],[422485.6008,385575.999399999],[427356.4037,383301.3005],[425909.7005,382992.5989],[424562.6966,380495.703600001],[425047.1022,380007.0035],[426128.6976,380707.0031],[426809.0965,379448.5034]]]},"properties":{"LAD22CD":"E07000035","LAD22NM":"Derbyshire Dales","BNG_E":419697,"BNG_N":358493,"LONG":-1.70711,"LAT":53.12326,"OBJECTID":74,"GlobalID":"486bb6fa-438f-4ee1-bdfe-2c5a4e205fb7"}},{"type":"Feature","id":75,"geometry":{"type":"Polygon","coordinates":[[[451248.4965,333028.201099999],[451239.3033,331672.999],[449373.8005,330903.7992],[445913.4967,330814.3048],[443845.8003,331667.400599999],[444550.8025,332672.7028],[441245.2009,333953.995999999],[441570.8973,336678.2962],[438813.4025,337736.703299999],[439786.8969,339376.8038],[435804.2026,339383.5019],[435383.3994,341078.696599999],[435094.3028,342925.9978],[439760.9992,342346.103800001],[441359.9968,342947.2018],[442334.596,341930.9027],[444897.2023,342516.495100001],[446571.8978,345370.698100001],[447930.9972,341602.196799999],[447627.2986,340031.7963],[448404.9975,339325.7984],[448396.3979,335001.8961],[450798.1018,334213.501800001],[451248.4965,333028.201099999]]]},"properties":{"LAD22CD":"E07000036","LAD22NM":"Erewash","BNG_E":443721,"BNG_N":338063,"LONG":-1.3509,"LAT":52.9382,"OBJECTID":75,"GlobalID":"d99b6844-8251-49c3-ae8b-0952ff3f9a1e"}},{"type":"Feature","id":76,"geometry":{"type":"Polygon","coordinates":[[[411883.9034,402726.3002],[413609.504,400735.200099999],[413272.6025,398268.6962],[415470.7029,396470.200999999],[417006.296,396187.102],[417392.1979,391606.203299999],[419469.3019,391208.2972],[419712.0035,389842.698100001],[423119.4976,388395.5023],[421834.4966,385884.301200001],[421985.002,383658.7982],[420283.5017,382029.4046],[420050.1994,380784.6009],[418244.3991,380278.8957],[418061.804,382446.0953],[416033.8982,382395.399900001],[411917.7988,378442.101500001],[412264.0996,376190.396],[414088.0968,373285.897399999],[410480.8991,372609.1011],[408491.2009,369983.602700001],[411367.004,368187.4968],[411346.9026,366734.3028],[410624.8001,366418.303200001],[408597.3973,368738.999],[407936.0032,367363.502699999],[407646.2965,368968.203299999],[406936.0999,368157.195499999],[406055.7995,369406.697799999],[405535.396,368993.496099999],[406868.5976,366989.399800001],[402988.1998,368519.7017],[402609.702,369909.503900001],[400937.9994,368500.8971],[400747.1015,369548.0974],[401775.4008,370445.3005],[399464.6977,373737.1982],[399645.7015,384185.897299999],[398030.7991,385931.897500001],[397850.2982,386519.2994],[399788.4977,387718.6961],[400607.1003,390930.096799999],[399186.8968,391007.704600001],[398352.8017,392562.6995],[399152.2016,393663.6044],[399817.1988,393236.196699999],[399550.2979,393862.297499999],[401040.6999,395384.0019],[400905.5963,398263.5976],[402525.5034,401459.003],[403325.2991,400833.302100001],[405271.9993,401475.3983],[404951.9012,402698.1982],[406087.1967,404640.102399999],[407115.9989,404109.804199999],[408481.1997,404870.5964],[410585.1991,402591.6987],[411883.9034,402726.3002]]]},"properties":{"LAD22CD":"E07000037","LAD22NM":"High Peak","BNG_E":410474,"BNG_N":387660,"LONG":-1.84398,"LAT":53.38569,"OBJECTID":76,"GlobalID":"9ee652b8-0553-46f4-9b30-05635934d9f6"}},{"type":"Feature","id":77,"geometry":{"type":"Polygon","coordinates":[[[445075.0977,381531.897],[446779.0962,381960.0045],[447480.8993,381267.8026],[447020.9981,380018.100299999],[447937.7005,379406.995300001],[445280.6965,379337.0953],[446040.1986,378107.2973],[445145.6012,377782.9002],[445655.6984,376291.097200001],[444518.3994,377181.702299999],[442301.8961,377097.7963],[441615.0001,378188.804],[440149.6961,376276.9013],[439067.0041,376898.4033],[437500.5002,376059.4035],[436295.196,376443.4036],[435832.9036,374688.096000001],[434742.7994,374162.296599999],[435377.4959,373729.4005],[434682.5486,372285.9037],[435381.2969,371145.0002],[434533.1027,370337.001499999],[434847.7013,369588.595799999],[437407.7021,369430.1011],[437494.201,368647.7951],[438774.6013,368529.898800001],[440097.8017,368709.297499999],[440092.7969,370970.600199999],[441449.0023,372040.6039],[443413.7014,372346.496300001],[443674.0969,371586.9037],[445533.5973,371608.997400001],[446133.3018,368996.6952],[445637.3037,365639.995999999],[443079.6033,365566.3971],[441655.4009,364246.604900001],[443369.7964,362595.7974],[441721.0975,360061.3029],[442027.8963,356921.7016],[437037.3009,356415.396500001],[433859.2998,359761.898600001],[430170.3029,365465.8959],[430271.8985,367075.495100001],[432453.6983,367399.9023],[428871.9036,369649.0984],[428657.3012,371637.499299999],[429644.4988,372594.495300001],[429062.3975,373911.1984],[427783.704,374044.8002],[427476.3033,375827.6998],[428186.4999,376691.9025],[426928.8972,377717.898800001],[426809.0965,379448.5034],[427748.0028,380596.4048],[428045.4022,379502.298],[429295.304,379980.701099999],[429301.8506,378917.4454],[430966.3965,378742.6954],[433264.6001,380185.9023],[435544.5986,380150.9023],[436385.6196,380685.599300001],[436068.3001,381664.4991],[437255.0035,382430.4998],[438662.9961,382116.299699999],[439311.0002,382947.6018],[440946.4988,382172.503699999],[440951.8004,380251.103599999],[444217.1991,380081.702099999],[445075.0977,381531.897]]]},"properties":{"LAD22CD":"E07000038","LAD22NM":"North East Derbyshire","BNG_E":437369,"BNG_N":362955,"LONG":-1.44253,"LAT":53.16243,"OBJECTID":77,"GlobalID":"d4d57ffa-2957-4006-8ece-e26b6d117660"}},{"type":"Feature","id":78,"geometry":{"type":"Polygon","coordinates":[[[430748.999,336405.804199999],[429896.0969,335340.3992],[430933.4987,332550.297800001],[433532.8037,332045.3024],[434123.0016,330406.701400001],[436168.9971,330697.498199999],[437380.6995,329455.103800001],[438902.9027,329886.3004],[439198.8014,332054.4998],[440270.1976,333833.9004],[441245.2009,333953.995999999],[444550.8025,332672.7028],[443845.8003,331667.400599999],[445913.4967,330814.3048],[445515.1036,330044.2952],[444198.7961,330204.6993],[443788.2993,328616.403899999],[443110.4975,328821.295299999],[440898.1003,326753.7971],[441331.7987,326348.6031],[439354.6001,322829.9003],[437610.3986,322941.6983],[437697.6974,321856.4989],[436328.0031,321165.296800001],[436801.3026,320082.096799999],[435962.2027,318939.204],[434245.2017,318055.7969],[433496.5996,319002.9957],[430274.001,318506.297900001],[429627.7036,317084.404899999],[430846.1011,314989.854499999],[430489.1971,313722.397299999],[427293.197,311490.2962],[423408.3963,311289.603700001],[423290.4013,313842.003],[420074.0029,314976.8982],[422587.4026,320844.0987],[426326.3977,320493.598999999],[426105.397,321256.7006],[427816.0988,322555.698799999],[427610.6978,323625.2026],[426348.1976,324387.304500001],[428032.9027,326099.904300001],[425230.3982,328612.2951],[420948.4988,329708.001399999],[420254.3966,329272.796],[420000.053,329950.0022],[418590.8978,329163.7972],[417194.9018,330163.201099999],[417819.696,333116.3958],[416979.2027,335034.896600001],[419299.701,334720.196699999],[419713.702,336103.400800001],[421732.497,336065.3017],[423039.7019,333957.805],[423600.498,338630.5974],[426495.0009,338935.4001],[426708.4985,337784.0997],[428991.1025,337683.998299999],[430748.999,336405.804199999]]]},"properties":{"LAD22CD":"E07000039","LAD22NM":"South Derbyshire","BNG_E":431443,"BNG_N":325363,"LONG":-1.5348,"LAT":52.8249,"OBJECTID":78,"GlobalID":"32543313-b3e9-44f5-8758-2de88481533d"}},{"type":"Feature","id":79,"geometry":{"type":"MultiPolygon","coordinates":[[[[297144.3907,87337.8530999999],[297163.551,87158.6860000007],[297083.9273,87251.5195000004],[297144.3907,87337.8530999999]]],[[[326103.7245,112618.276699999],[325868,108863.493000001],[327420.9038,107412.6028],[327110.6009,106240.8982],[331564.02,106702.66],[331800.78,104301.84],[332873.9976,102838.6021],[332374.0995,102220.2991],[337185.1009,100961.1995],[337605.7969,99847.3982999995],[332796.4033,96893.7038000003],[334136.3989,95381.3967000004],[332829.499,92532.2021999992],[333210.961,91398.8463000003],[333192.4183,91386.5562999994],[327571.9059,89308.9213999994],[327373.1536,89327.6348999999],[325706.5985,89916.0721000005],[325603.67,89741.6199999992],[323655.1,89668.5999999996],[322722.6664,87958.6339999996],[322665.0332,87860.4155999999],[319999.9982,87870.6115000006],[315878.41,87886.3800000008],[311219.94,86708.8399999999],[308909.7436,83301.8968000002],[308088.8239,82189.5993000008],[307563.67,83919.9700000007],[307675.409,81919.8560000006],[305260.0018,81099.7277000006],[304738.777,80970.9499999993],[304699.9156,80909.5558000002],[304426.738,80816.8010000009],[304015.0474,79999.9697999991],[303728.375,79431.1860000007],[301769.1457,80000.0372000001],[299999.9903,80513.7015000004],[299352.488,80701.7000999991],[299545.9152,81316.2827000003],[299980.78,82029],[297552.3801,87920.4067000002],[297579.1996,87958.7014000006],[297484.1597,88085.9123],[296917.3332,89461.0588000007],[296994.2695,88741.6307999995],[296180.4003,89830.9955000002],[296721.1031,94960.2971999999],[293405.0962,96855.0048999991],[290596.3007,95097.2980000004],[289351.2965,95110.1042999998],[288232.9034,95007.6037000008],[289325.4977,96804.4992999993],[290288.999,96529.7979000006],[290986.3003,98187.4035],[289867.3961,98435.9023000002],[289288.8979,99953.1980000008],[292619.3007,99713.0966999996],[292504.4964,100887.000700001],[294070.9014,102730.0032],[293930.6796,104166.7949],[294657.6034,103003.3049],[294210.9025,101020.102600001],[295745.597,101024.9012],[295549.2481,100207.9143],[297163.63,101438.970000001],[298389.81,101081.65],[299366.54,102363.550000001],[300708.96,101510.49],[304283.2011,102252.399900001],[303779.5021,104225.695],[304614.1991,104696.500299999],[304521.4998,103919.4027],[305466.1035,103783.2017],[305184.5017,106113.3047],[306603.6004,107232.5043],[309900.7014,107030.202199999],[309832.2014,108206.895400001],[313378.71,111344.060000001],[314461.84,111085.84],[315161.24,109315.65],[317347.5993,109280.998],[319621.4474,110837.1547],[320894.03,111965.85],[326103.7245,112618.276699999]]]]},"properties":{"LAD22CD":"E07000040","LAD22NM":"East Devon","BNG_E":313787,"BNG_N":96051,"LONG":-3.22364,"LAT":50.75761,"OBJECTID":79,"GlobalID":"e24480ac-829f-43e8-ae57-37d2b635ccad"}},{"type":"Feature","id":80,"geometry":{"type":"MultiPolygon","coordinates":[[[[297579.1996,87958.7014000006],[297552.3801,87920.4067000002],[297484.1597,88085.9123],[297579.1996,87958.7014000006]]],[[[293405.0962,96855.0048999991],[296721.1031,94960.2971999999],[296180.4003,89830.9955000002],[296994.2695,88741.6307999995],[297144.3907,87337.8530999999],[297083.9273,87251.5195000004],[296367.1112,88087.2573000006],[296256.4197,87987.2887999993],[296260.6714,87871.8607000001],[296272.6074,87547.8160999995],[294536.6979,89195.5973000005],[291387.9997,89272.5953000002],[289744.9981,90867.7986999992],[289351.2965,95110.1042999998],[290596.3007,95097.2980000004],[293405.0962,96855.0048999991]]]]},"properties":{"LAD22CD":"E07000041","LAD22NM":"Exeter","BNG_E":293239,"BNG_N":92005,"LONG":-3.51368,"LAT":50.71782,"OBJECTID":80,"GlobalID":"4cc3bee1-3766-40fe-bc05-cfc4180dd5c4"}},{"type":"Feature","id":81,"geometry":{"type":"Polygon","coordinates":[[[319621.4474,110837.1547],[317347.5993,109280.998],[315161.24,109315.65],[314461.84,111085.84],[313378.71,111344.060000001],[309832.2014,108206.895400001],[309900.7014,107030.202199999],[306603.6004,107232.5043],[305184.5017,106113.3047],[305466.1035,103783.2017],[304521.4998,103919.4027],[304614.1991,104696.500299999],[303779.5021,104225.695],[304283.2011,102252.399900001],[300708.96,101510.49],[299366.54,102363.550000001],[298389.81,101081.65],[297163.63,101438.970000001],[295549.2481,100207.9143],[295745.597,101024.9012],[294210.9025,101020.102600001],[294657.6034,103003.3049],[293930.6796,104166.7949],[294070.9014,102730.0032],[292504.4964,100887.000700001],[292619.3007,99713.0966999996],[289288.8979,99953.1980000008],[289867.3961,98435.9023000002],[290986.3003,98187.4035],[290288.999,96529.7979000006],[289325.4977,96804.4992999993],[288232.9034,95007.6037000008],[286608.0987,96193.3043000009],[285818.799,95851.0022],[282194.097,97376.5954999998],[281569.8964,95828.0987999998],[279577.601,95739.9039999992],[278466.1009,93477.1018000003],[277453.8959,92986.4022000004],[278370.2025,92082.3010000009],[277536.396,90720.9006999992],[275435.8018,93483.0000999998],[271713.099,92393.8018999994],[270505.7994,94115.5989999995],[272727.9011,97047.2997999992],[271645.4977,99519.9020000007],[269988.2982,99626.6015000008],[270701.4959,100875.504000001],[270547.404,103704.6042],[267825.396,103830.898],[266326.5016,105607.399499999],[267446.8982,107098.8026],[266091.8967,107108.199899999],[264578.9032,109557.198899999],[266526.2959,110388.401000001],[265060.1015,112672.7971],[266212.5961,113463.1008],[271430.3016,113530.1017],[272380.8005,114365.002699999],[272337.7036,112942.399900001],[274701.2988,112961.304500001],[276724.2987,110056.9958],[277377.2004,111542.2007],[278090.0024,111565.1041],[278608.4024,113789.6974],[285699.9959,114610.002499999],[286761.0033,115364.896500001],[287963.7022,117275.0997],[287897.9973,119859.899800001],[286366.0979,120017.3047],[285818.296,124195.4987],[287443.1997,122430.0041],[287618.399,124318.4035],[292391.0032,123784.496400001],[293551.6027,125033.9987],[293468.5007,126267.795499999],[294611.3981,126716.1972],[296085.4007,127099.997300001],[297691.1016,126109.6008],[300430.3005,126674.699100001],[300906.6012,125433.5044],[303266.7005,125253.3959],[303309.4016,120694.400900001],[306478.597,121223.399499999],[309219.8984,118099.003799999],[311935.096,116573.500499999],[318152.5977,117124.1029],[316576.52,112992.779999999],[319621.4474,110837.1547]]]},"properties":{"LAD22CD":"E07000042","LAD22NM":"Mid Devon","BNG_E":288064,"BNG_N":108911,"LONG":-3.59212,"LAT":50.86882,"OBJECTID":81,"GlobalID":"91c661ca-17f7-443c-af80-c6073c69254c"}},{"type":"Feature","id":82,"geometry":{"type":"MultiPolygon","coordinates":[[[[246565.4,130666.699999999],[246562.3827,130654.558800001],[246554.1257,130664.886600001],[246565.4,130666.699999999]]],[[[276549.09,150208.59],[279956.2166,149618.222899999],[279972.7277,149615.028899999],[279063.1999,148486.795399999],[279524.4039,143677.0022],[275217.9013,142926.9969],[271535.8961,143573.6018],[271756.402,139279.7009],[273807.3033,136703.7983],[279619.72,132685.630000001],[281544.08,132612.609999999],[284692.9029,130037.296499999],[288346.7017,129638.2008],[286835.4975,125254.095699999],[287618.399,124318.4035],[287443.1997,122430.0041],[285818.296,124195.4987],[286366.0979,120017.3047],[287897.9973,119859.899800001],[287963.7022,117275.0997],[286761.0033,115364.896500001],[285699.9959,114610.002499999],[278608.4024,113789.6974],[278090.0024,111565.1041],[277377.2004,111542.2007],[276724.2987,110056.9958],[274701.2988,112961.304500001],[272337.7036,112942.399900001],[272380.8005,114365.002699999],[271430.3016,113530.1017],[266212.5961,113463.1008],[266258.3974,115944.400599999],[262731.0036,114956.303400001],[259772.4036,115957.8967],[260033.904,118448.603800001],[262377.2987,119219.903000001],[262632.4009,122057.1008],[260854.0979,122175.397],[258851.3973,120585.5021],[257171.4001,122173.6975],[257377.5019,125107.997500001],[255303.8031,125464.895400001],[253726.3992,124665.804099999],[251308.601,125643.304300001],[251677.3037,126567.799699999],[248557.4962,126115.199200001],[247324.2,127253.303400001],[245605.0965,126895.3959],[246647.017,129151.0505],[247311.72,129971.68],[247369.395,132057.345000001],[249361.9998,132670.2029],[249290.2018,133415.399599999],[248545.07,133812.157],[248643.94,135718.210000001],[248335.271,133472.663000001],[247004.5,133038.199999999],[246708.929,131938.479],[244801.989,133123.535],[244548.155,137728.222999999],[243574.416,138009.944499999],[243318.8507,138136.9322],[243652.52,139224.310000001],[242658.2069,139999.9781],[242115.7587,140423.144300001],[241912.8519,140612.658299999],[244546.48,140681.92],[245100.67,141485.65],[245519.11,144453.960000001],[244310.29,145613.189999999],[245618.1,145803.689999999],[246282.0669,146867.6208],[247385.0384,146629.429199999],[247946.76,146486.609999999],[252465.0083,147943.1525],[253547.1,147834.5],[253993.1782,148435.786900001],[254284.5,148529.699999999],[257678.76,147249.5],[258381.6081,148241.1589],[258462.6158,148310.353499999],[259999.9988,148363.99],[263338.09,148480.449999999],[263595.8813,148632.0416],[263616.22,148633.109999999],[263829.8036,148769.5973],[265647.9727,149838.753699999],[265801.6408,149779.786499999],[267975.66,148876.59],[270636.9478,149991.267200001],[270684.1283,150008.519200001],[273477.07,149555.279999999],[273625.7456,149684.4794],[273703.57,149673.380000001],[275385.7878,151182.2162],[276549.09,150208.59]]]]},"properties":{"LAD22CD":"E07000043","LAD22NM":"North Devon","BNG_E":265110,"BNG_N":132532,"LONG":-3.92691,"LAT":51.07621,"OBJECTID":82,"GlobalID":"10fd7de4-529c-44c4-bf41-b86a8189b433"}},{"type":"Feature","id":83,"geometry":{"type":"MultiPolygon","coordinates":[[[[247360.156,64862.8447999991],[246732.1794,64038.5636],[247150.7981,64874.0993000008],[247360.156,64862.8447999991]]],[[[269372.4993,72136.4004999995],[270554.8988,70104.4021000005],[272591.4041,72265.7035000008],[272533.9031,70650.2959000003],[273568.3037,70181.6999999993],[273027.1968,68382.8048999999],[274137.9962,67704.6989999991],[272534.1009,67058.7039000001],[273998.3001,64189.8950999994],[275270.2987,64478.9024],[274693.9029,68357.9021000005],[275563.6002,69321.4962000009],[276895.697,68837.6046999991],[278658.5983,66130.5996000003],[281569.8964,63809.9038999993],[282618.8001,64893.1038000006],[282355.997,64066.9002999999],[283319.9024,63661.2963999994],[285567.2999,64521.1002999991],[286366.5019,66195.4011000004],[287687.303,65412.4952000007],[287439.8027,62581.8954000007],[284702.2033,61423.7969000004],[284454.2002,59727.6024999991],[286473.6959,57823.8973999992],[287839.8036,57898.7959000003],[288162.3999,56106.1991000008],[290284.0025,53762.5998999998],[292894.6863,54316.7018999998],[292099.16,50717.5800000001],[292048.9491,50676.0317000002],[290497.223,49703.6742000002],[289709.969,49858.1688000001],[288262.6854,50864.4914999995],[288141.9837,50953.8955000006],[288530.2402,51262.8684],[288812.807,51483.1710000001],[287982.8054,52675.0026999991],[288033.9947,52744.6506999992],[288545.0573,53279.2029999997],[286717.194,54812.4112],[286719.7428,54792.7485000007],[286697.6543,54813.2477000002],[286720.1772,54789.3973999992],[286739.0102,54644.1114000008],[287699.918,53674.6740000006],[287700.3556,53664.6555000003],[287395.9972,52358.4232999999],[287920.3009,51327.4145],[287910.1081,50780.3397000004],[288315.407,50550.4644000009],[288822.9722,49552.3707999997],[288169.5,48531.6999999993],[286734.3992,48096.1509000007],[285388.898,47702.3430000003],[285374.8549,47683.5329999998],[285252.844,47646.5030000005],[283083.031,44645.4539999999],[281990.3188,39999.9700000007],[281751.585,38985.0329999998],[281786.6267,38932.6305],[281775.78,38886.0800000001],[282830.0285,37372.2923000008],[283051.88,37040.5280000009],[280184.375,37176.3029999994],[279999.9963,37033.4707999993],[278936.849,36209.8848000001],[277283.4542,35023.5319999997],[276131.6,36425.4000000004],[273589.59,37538.1099999994],[274487.46,38847.5800000001],[276986.19,38834.4000000004],[276084.4,39345.5999999996],[277270.337,39999.9682999998],[277446.01,40096.9000000004],[277176.6241,39999.9616999999],[275032.97,39228.5700000003],[274986.6969,39520.4680000003],[275406.2928,41020.3341000006],[274869.9865,40902.4272000007],[274134.69,41841.9000000004],[273634.9,41177.6999999993],[274281.79,40825.0700000003],[274500.3906,40000.0044],[274679.23,39325.0099999998],[274465.0894,39395.2295999993],[274110.4,39555.0850000009],[274086.8783,39519.2500999998],[273511.3,39707.9900000002],[273884.711,39211.2511],[273309.776,38335.3461000007],[273000.8,38140.5],[272613.0106,36065.5101999994],[271358.4496,36372.7537999991],[270272.1552,36744.1280000005],[268551.6802,38041.4433999993],[266892.9298,39416.5271000005],[266949.2981,39611.5570999999],[267532.47,39713.3699999992],[267549.8604,39999.9929000009],[267654.83,41730.0700000003],[267584.0997,41807.9232000001],[267584.7,41810],[266537.1099,42960.3504000008],[266014.4,43535.6999999993],[266371.4727,43945.0029000007],[266883.7071,43796.8359999992],[267204.7279,44406.0738999993],[266795.5,44042.1999999993],[265078.54,44142.0399999991],[264792.5135,44438.6588000003],[264888,44660.4000000004],[264030.2,45537.9000000004],[263701.6392,45569.9306000005],[263506.4,45772.4000000004],[261658.3,45802.4000000004],[261465.231,47017.1899999995],[261356.896,47357.2249999996],[261059.3498,47186.6095000003],[261049.36,47211.2100000009],[259472.2073,46899.5420999993],[258254.7,47181.3000000007],[256498.8996,46311.9738999996],[254593.8844,45935.5155999996],[252611.8213,47042.4600000009],[253267.069,47409.3348999992],[255330.68,47922.3800000008],[253923.68,48438.4000000004],[253709.0357,47743.0190999992],[253549.8181,47771.9217000008],[249244.97,48753.6199999992],[249252.6,50585.8000000007],[249008.6709,50655.8157000002],[249027.4537,51761.7555999998],[249044.0038,51800.5150000006],[249039.6317,51808.0808000006],[251333.6001,51089.0952000003],[254062.0969,52751.4992999993],[254321.503,55075.4041000009],[255971.2985,55203.8972999994],[256428.7015,56609.5050000008],[255144.5992,57717.4978],[252881.8989,57827.8961999994],[252160.1015,60385.6041000001],[250274.9012,61266.4020000007],[250032.7026,62615.0958999991],[248422.4998,61412.1002999991],[246999.897,61842.4970999993],[246272.677,60789.7071000002],[245726.5973,60484.4747000001],[244877.7989,60791.3048999999],[244562.51,61026.3000000007],[245211.7203,61765.5888],[245724.5015,62027.3041999992],[246100.4006,62777.5742000006],[246559.11,63299.9299999997],[246989.15,62947.0700000003],[247370.4377,64862.2920999993],[250441.5009,64697.1998999994],[250493.9972,63295.6010999996],[252647.096,65406.8968000002],[253843.8007,63605.8023000006],[256456.0009,64429.8964000009],[256527.601,65168.7050000001],[257605.7005,65244.6031999998],[261380.2977,68544.9985000007],[262096.4967,68306.3968000002],[261856.4005,67243.3011000007],[265343.3028,65386.1027000006],[266709.798,66786.4019000009],[265912.5006,69941.5987],[266220.0002,72433.2954999991],[267198.1035,73099.6048000008],[267480.4969,72153.4956],[269372.4993,72136.4004999995]]]]},"properties":{"LAD22CD":"E07000044","LAD22NM":"South Hams","BNG_E":270676,"BNG_N":54036,"LONG":-3.81996,"LAT":50.37195,"OBJECTID":83,"GlobalID":"cc5cfd06-5305-4204-9364-1f064bc3f6cc"}},{"type":"Feature","id":84,"geometry":{"type":"Polygon","coordinates":[[[288232.9034,95007.6037000008],[289351.2965,95110.1042999998],[289744.9981,90867.7986999992],[291387.9997,89272.5953000002],[294536.6979,89195.5973000005],[296272.6074,87547.8160999995],[296331.45,85950.3300000001],[297491.223,84050.8100000005],[297743.4943,81044.0721000005],[297740.737,80720.4529999997],[297772.8048,80694.7301000003],[297831.0928,80000.0143999998],[297876.8563,79454.5753000006],[297833.35,79427.5999999996],[297877.3544,79448.6384999994],[297916.513,78981.9199999999],[299073.394,80000.0165999997],[299124.2664,80044.7861000001],[299275.1346,80116.9160999991],[299179.215,80000.0123999994],[296228.6,76403.9000000004],[296091.55,74722.8100000005],[293816.729,72271.6309999991],[293743.2044,72872.2518000007],[293116.12,72544.4900000002],[293984.1886,72018.3296000008],[293297.8118,70083.3705000002],[293106.3492,69626.1817000005],[292272.6041,69761.6002999991],[291601.2994,68318.6032999996],[289090.802,66410.9993999992],[288744.3033,66833.8982999995],[287687.303,65412.4952000007],[286366.5019,66195.4011000004],[285567.2999,64521.1002999991],[283319.9024,63661.2963999994],[282355.997,64066.9002999999],[282618.8001,64893.1038000006],[281569.8964,63809.9038999993],[278658.5983,66130.5996000003],[276895.697,68837.6046999991],[275563.6002,69321.4962000009],[274693.9029,68357.9021000005],[275270.2987,64478.9024],[273998.3001,64189.8950999994],[272534.1009,67058.7039000001],[274137.9962,67704.6989999991],[273027.1968,68382.8048999999],[273568.3037,70181.6999999993],[272533.9031,70650.2959000003],[272591.4041,72265.7035000008],[270554.8988,70104.4021000005],[269372.4993,72136.4004999995],[267480.4969,72153.4956],[267198.1035,73099.6048000008],[267697.7647,76284.7642000001],[266863.7003,79137.3965000007],[269764.6014,84666.6037000008],[272532.4025,85580.6020999998],[272021.2994,85937.0000999998],[273108.7982,87681.4008000009],[272148.0012,89521.6040000003],[277553.9003,89909.6030000001],[277536.396,90720.9006999992],[278370.2025,92082.3010000009],[277453.8959,92986.4022000004],[278466.1009,93477.1018000003],[279577.601,95739.9039999992],[281569.8964,95828.0987999998],[282194.097,97376.5954999998],[285818.799,95851.0022],[286608.0987,96193.3043000009],[288232.9034,95007.6037000008]]]},"properties":{"LAD22CD":"E07000045","LAD22NM":"Teignbridge","BNG_E":283144,"BNG_N":80205,"LONG":-3.65289,"LAT":50.60981,"OBJECTID":84,"GlobalID":"aa495cf3-3c5d-4cd7-863d-106e6b91fe30"}},{"type":"Feature","id":85,"geometry":{"type":"MultiPolygon","coordinates":[[[[244783.5198,131695.699200001],[245187.651,130445.095000001],[246554.1257,130664.886600001],[246562.3827,130654.558800001],[245985.8882,128334.833699999],[246647.017,129151.0505],[245605.0965,126895.3959],[247324.2,127253.303400001],[248557.4962,126115.199200001],[251677.3037,126567.799699999],[251308.601,125643.304300001],[253726.3992,124665.804099999],[255303.8031,125464.895400001],[257377.5019,125107.997500001],[257171.4001,122173.6975],[258851.3973,120585.5021],[260854.0979,122175.397],[262632.4009,122057.1008],[262377.2987,119219.903000001],[260033.904,118448.603800001],[259772.4036,115957.8967],[262731.0036,114956.303400001],[266258.3974,115944.400599999],[266212.5961,113463.1008],[265060.1015,112672.7971],[266526.2959,110388.401000001],[264578.9032,109557.198899999],[266091.8967,107108.199899999],[267446.8982,107098.8026],[266326.5016,105607.399499999],[263431.1989,104686.303200001],[262216.0006,108037.403899999],[259637.803,107712.9968],[259716.4032,109641.504799999],[256780.7986,108625.795499999],[256553.3009,109654.301100001],[255688.4022,109022.301999999],[254550.8971,110386.101600001],[253032.8989,109623.9998],[253320.9978,108542.7993],[252050.2031,107750.8959],[252020.9991,106097.8991],[250229.2978,107114.2982],[249344.3966,105805.2029],[247701.7001,105717.8979],[248058.2001,103989.102700001],[246694.8009,103105.695599999],[247258.7012,102031.5031],[245681.6024,101186.295],[247389.2041,100841.9036],[244573.9032,99580.0047999993],[245917.8976,97624.9045000002],[242984.4368,95985.7794000003],[242310.47,92797.1239999998],[242460.6034,90797.3988000005],[243657.0029,90022.8004999999],[243771.4032,88822.8039999995],[243074.0471,88088.2484000009],[236645.5019,87306.5980999991],[234998.8242,85587.6633000001],[234181.0037,90398.8028999995],[232785.8109,91868.1821999997],[233391.6208,93676.9257999994],[231843.1795,96952.2551000006],[232202.1973,99476.9043000005],[231352.7004,100362.500800001],[229864.6388,99982.1037000008],[230222.684,98637.1978999991],[229156.915,98909.3808999993],[227303.8972,101319.4969],[224358.8026,102225.897500001],[227706.9031,103818.205600001],[228170.1946,108114.052100001],[228841.9968,110157.1971],[229737.5012,110191.497300001],[226977.6978,115559.0009],[227496.8976,117260.3039],[221182.2163,117459.955],[221620.2332,120000.028200001],[222966.4,127806.49],[229961.7497,126609.790200001],[230030.1204,126548.7291],[232315.7,124419.800000001],[235657.1,123676.699999999],[238494.5,124565.800000001],[240000.0077,126324.781199999],[242408.961,129139.3159],[242879.9,129289.9],[243010.4589,129842.0845],[244686.944,131800.829700001],[244783.5198,131695.699200001]]],[[[213648.9464,143396.8298],[213329.104,143304.5988],[212711.2026,144881.397500001],[213009.0084,147774.6261],[213057.1921,148206.0195],[214579.3624,143694.1908],[213648.9464,143396.8298]]]]},"properties":{"LAD22CD":"E07000046","LAD22NM":"Torridge","BNG_E":244206,"BNG_N":114334,"LONG":-4.21728,"LAT":50.90739,"OBJECTID":85,"GlobalID":"03b2c60e-19d7-4855-a7c5-a7d0887317ae"}},{"type":"Feature","id":86,"geometry":{"type":"MultiPolygon","coordinates":[[[[245724.5015,62027.3041999992],[245211.7203,61765.5888],[246100.4006,62777.5742000006],[245724.5015,62027.3041999992]]],[[[254550.8971,110386.101600001],[255688.4022,109022.301999999],[256553.3009,109654.301100001],[256780.7986,108625.795499999],[259716.4032,109641.504799999],[259637.803,107712.9968],[262216.0006,108037.403899999],[263431.1989,104686.303200001],[266326.5016,105607.399499999],[267825.396,103830.898],[270547.404,103704.6042],[270701.4959,100875.504000001],[269988.2982,99626.6015000008],[271645.4977,99519.9020000007],[272727.9011,97047.2997999992],[270505.7994,94115.5989999995],[271713.099,92393.8018999994],[275435.8018,93483.0000999998],[277536.396,90720.9006999992],[277553.9003,89909.6030000001],[272148.0012,89521.6040000003],[273108.7982,87681.4008000009],[272021.2994,85937.0000999998],[272532.4025,85580.6020999998],[269764.6014,84666.6037000008],[266863.7003,79137.3965000007],[267697.7647,76284.7642000001],[267198.1035,73099.6048000008],[266220.0002,72433.2954999991],[265912.5006,69941.5987],[266709.798,66786.4019000009],[265343.3028,65386.1027000006],[261856.4005,67243.3011000007],[262096.4967,68306.3968000002],[261380.2977,68544.9985000007],[257605.7005,65244.6031999998],[256527.601,65168.7050000001],[256456.0009,64429.8964000009],[253843.8007,63605.8023000006],[252647.096,65406.8968000002],[250493.9972,63295.6010999996],[250441.5009,64697.1998999994],[247370.4377,64862.2920999993],[247374.2239,64881.3103],[247360.156,64862.8447999991],[247150.7981,64874.0993000008],[246732.1794,64038.5636],[244917.57,61656.7100000009],[244478.7267,61799.2243000008],[243891.58,61989.9000000004],[243809.2956,61932.7072999999],[242886.403,65330.5986000001],[241832.7007,64153.6954999994],[241217.3552,65078.3598999996],[242712.5972,66365.9023000002],[242588.5007,68832.1963],[244095.2032,68152.6008000001],[245455.2013,69376.5004999992],[245112.6025,69901.7000999991],[243887.1968,69361.8047000002],[243667.5978,72749.2949999999],[241888.3961,72519.3008999992],[240826.6961,73987.4005999994],[239127.2983,73222.6995000001],[240026.0017,74225.9024],[238672.5007,76863.1973999999],[239309.2998,78294.8976000007],[238275.8968,78606.6984000001],[238223.3015,77526.2975999992],[237886.598,78521.6027000006],[236764.9976,77969.6007000003],[236457.2012,78812.9992999993],[237422.3021,84098.1963999998],[235649.1028,84586.1967999991],[234998.8242,85587.6633000001],[236645.5019,87306.5980999991],[243074.0471,88088.2484000009],[243771.4032,88822.8039999995],[243657.0029,90022.8004999999],[242460.6034,90797.3988000005],[242310.47,92797.1239999998],[242984.4368,95985.7794000003],[245917.8976,97624.9045000002],[244573.9032,99580.0047999993],[247389.2041,100841.9036],[245681.6024,101186.295],[247258.7012,102031.5031],[246694.8009,103105.695599999],[248058.2001,103989.102700001],[247701.7001,105717.8979],[249344.3966,105805.2029],[250229.2978,107114.2982],[252020.9991,106097.8991],[252050.2031,107750.8959],[253320.9978,108542.7993],[253032.8989,109623.9998],[254550.8971,110386.101600001]]]]},"properties":{"LAD22CD":"E07000047","LAD22NM":"West Devon","BNG_E":256376,"BNG_N":86990,"LONG":-4.03361,"LAT":50.66481,"OBJECTID":86,"GlobalID":"8127f025-face-4d96-9b8d-39df13a661e8"}},{"type":"Feature","id":87,"geometry":{"type":"Polygon","coordinates":[[[564937.0738,102550.037900001],[562958.9674,99999.9834000003],[560000.0135,96185.4799000006],[559588.646,95655.1699999999],[556033.7722,95537.2994999997],[556023.4768,95542.3862999994],[556368.3011,99579.6049000006],[557529.6015,101917.695699999],[557077.599,102511.2958],[558341.2041,103063.397700001],[559272.6981,102411.4044],[559836.7015,103673.6031],[560529.3032,103049.9016],[561971.3973,104000.8994],[564937.0738,102550.037900001]]]},"properties":{"LAD22CD":"E07000061","LAD22NM":"Eastbourne","BNG_E":559339,"BNG_N":99575,"LONG":0.258516,"LAT":50.77387,"OBJECTID":87,"GlobalID":"c818f453-32e1-43fb-a8ce-65e7d6417834"}},{"type":"Feature","id":88,"geometry":{"type":"Polygon","coordinates":[[[587113.2529,111171.988500001],[586265.7958,110804.5219],[577844.854,108115.0166],[576300.2279,107761.269400001],[576677.2966,108704.2031],[577561.9009,108831.5966],[577382.8017,111679.8013],[578506.6035,113659.4046],[583265.9991,112013.3958],[584451.4987,112682.7042],[587113.2529,111171.988500001]]]},"properties":{"LAD22CD":"E07000062","LAD22NM":"Hastings","BNG_E":581528,"BNG_N":110694,"LONG":0.578395,"LAT":50.86724,"OBJECTID":88,"GlobalID":"6158e843-2317-4a14-a881-9c53e4361bef"}},{"type":"Feature","id":89,"geometry":{"type":"Polygon","coordinates":[[[551736.448,97660.5401000008],[551661.5526,97697.5448000003],[549761.764,97559.0580000002],[548684.6587,98155.0343999993],[545907.512,100066.563999999],[545287.2292,100034.876499999],[545200.31,100082.970000001],[545202.8908,100030.568],[545029.3,100021.699999999],[545178.2585,99408.2004000004],[543466.9862,100000.021199999],[539999.9963,101199.0337],[538325.9781,101777.970699999],[539862.3979,103579.100099999],[539529.8993,104344.1011],[537731.0991,104295.595000001],[538316.4984,106471.302200001],[535739.8014,106404.101500001],[534839.3005,109927.302999999],[533939.5995,110440.9959],[532244.2995,109895.0022],[531282.4966,110391.0002],[531277.7969,111339.898600001],[532195.0023,117561.297700001],[533275.8515,118048.5483],[532416.1018,121320.6017],[535290.8001,123130.4036],[536173.5988,121678.699200001],[538765.2029,121925.998400001],[539273.0986,124441.998199999],[540717.0974,123495.698999999],[541283.3023,121726.195599999],[542405.1005,122122.6021],[543271.9038,120557.0002],[544288.8991,120721.7031],[543981.1027,118339.095100001],[544681.801,116086.300000001],[549256.6968,115012.8972],[547241.2988,111579.899900001],[547753.9025,109930.402100001],[548887.4006,110039.1009],[549824.6991,108517.0966],[547871.0978,104406.103399999],[549454.199,101548.501399999],[551182.3968,101435.103800001],[551736.448,97660.5401000008]]]},"properties":{"LAD22CD":"E07000063","LAD22NM":"Lewes","BNG_E":541474,"BNG_N":105686,"LONG":0.007671,"LAT":50.83341,"OBJECTID":89,"GlobalID":"3d3af336-2582-4bca-b47b-2763ab54eeab"}},{"type":"Feature","id":90,"geometry":{"type":"Polygon","coordinates":[[[582858.3962,126862.5953],[586760.6023,127638.6031],[587913.2041,126067.402899999],[590044.2968,125065.6996],[592389.3983,125939.999399999],[595126.2969,124797.1965],[595057.4011,123228.795399999],[595554.702,123448.102700001],[597712.5004,119607.502],[599644.5986,121419.5033],[600686.7001,120960.9046],[601609.8996,118784.6976],[600741.232,117710.966399999],[600000.0178,117785.933900001],[594882.28,118303.550000001],[595102.2,117875.995999999],[591985.38,116210.380000001],[587158.5646,111191.6362],[587113.2529,111171.988500001],[584451.4987,112682.7042],[583265.9991,112013.3958],[578506.6035,113659.4046],[577382.8017,111679.8013],[577561.9009,108831.5966],[576677.2966,108704.2031],[576300.2279,107761.269400001],[576156.4129,107728.3332],[567612.4562,105022.57],[567341.8014,107252.998500001],[571872.8005,110430.9988],[572386.7976,111685.899599999],[571376.5962,113316.2029],[570000.0998,113606.299900001],[567444.304,112034.5997],[566643.7992,112500.396400001],[567057.0005,113675.699999999],[565826.7961,115740.898800001],[566406.696,117504.0041],[564689.2993,118168.6039],[564166.7026,119665.995300001],[564682.4971,120361.5962],[563295.8015,120737.7985],[563006.3009,124486.395500001],[563445.6967,126302.9955],[565207.5014,126876.101399999],[564664.3992,127590.197000001],[565552.2026,132201.596999999],[567932.2962,133239.799799999],[567948.2009,134262.3971],[569548.9507,132036.654300001],[572731.2021,131269.2039],[573456.0996,128583.602600001],[578066.9027,127764.3971],[578409.7983,126588.8037],[580294.6027,125853.6041],[582858.3962,126862.5953]]]},"properties":{"LAD22CD":"E07000064","LAD22NM":"Rother","BNG_E":578721,"BNG_N":119666,"LONG":0.542937,"LAT":50.94871,"OBJECTID":90,"GlobalID":"2923a7a1-ec13-4627-81ac-421e711bfeff"}},{"type":"Feature","id":91,"geometry":{"type":"Polygon","coordinates":[[[551262.2997,139780.5975],[550638.297,138261.102499999],[552095.2982,137366.898499999],[555889.9969,138488.297499999],[557200.1,137460.851600001],[559387.2962,137247.2027],[559239.2974,138102.198000001],[562815.1969,138529.8956],[563542.9967,136621.6018],[565244.802,136555.0009],[564747.5012,134267.3957],[566348.2963,134808.1009],[567948.2009,134262.3971],[567932.2962,133239.799799999],[565552.2026,132201.596999999],[564664.3992,127590.197000001],[565207.5014,126876.101399999],[563445.6967,126302.9955],[563006.3009,124486.395500001],[563295.8015,120737.7985],[564682.4971,120361.5962],[564166.7026,119665.995300001],[564689.2993,118168.6039],[566406.696,117504.0041],[565826.7961,115740.898800001],[567057.0005,113675.699999999],[566643.7992,112500.396400001],[567444.304,112034.5997],[570000.0998,113606.299900001],[571376.5962,113316.2029],[572386.7976,111685.899599999],[571872.8005,110430.9988],[567341.8014,107252.998500001],[567612.4562,105022.57],[567560.5452,105006.1304],[564945.8851,102561.3969],[564937.0738,102550.037900001],[561971.3973,104000.8994],[560529.3032,103049.9016],[559836.7015,103673.6031],[559272.6981,102411.4044],[558341.2041,103063.397700001],[557077.599,102511.2958],[557529.6015,101917.695699999],[556368.3011,99579.6049000006],[556023.4768,95542.3862999994],[552133.6794,97464.2742999997],[551736.448,97660.5401000008],[551182.3968,101435.103800001],[549454.199,101548.501399999],[547871.0978,104406.103399999],[549824.6991,108517.0966],[548887.4006,110039.1009],[547753.9025,109930.402100001],[547241.2988,111579.899900001],[549256.6968,115012.8972],[544681.801,116086.300000001],[543981.1027,118339.095100001],[544288.8991,120721.7031],[543271.9038,120557.0002],[542405.1005,122122.6021],[541283.3023,121726.195599999],[540717.0974,123495.698999999],[539273.0986,124441.998199999],[538815.2999,127100.0973],[540214.2971,128166.302100001],[540077.998,129476.697000001],[541221.7034,130559.1971],[539662.4964,130455.096899999],[539279.9998,132393.1022],[538324.1993,132494.903000001],[537614.1017,134514.095100001],[540856.6039,135575.601199999],[540763.8964,136486.600400001],[541422.6026,135746.102399999],[543217.202,136582.8029],[542046.696,137337.197000001],[541923.4983,139796.503],[543499.5994,140151.701300001],[549297.3038,140831.5967],[551262.2997,139780.5975]]]},"properties":{"LAD22CD":"E07000065","LAD22NM":"Wealden","BNG_E":555048,"BNG_N":117180,"LONG":0.205156,"LAT":50.93322,"OBJECTID":91,"GlobalID":"469bbabe-a017-4166-a784-a4ade20c7fc3"}},{"type":"Feature","id":92,"geometry":{"type":"Polygon","coordinates":[[[577495.8003,194112.495200001],[576648.0019,191714.401699999],[577849.802,190828.6952],[576315.899,188925.100099999],[576471.8201,184817.7676],[574756.7188,184232.15],[574754.38,184234.119999999],[573906.87,185126.390000001],[574100.445,184722.4465],[572386.4019,186145.9956],[571137.3988,185975.704299999],[570754.4981,186738.8959],[568434.2967,185707.801000001],[567767.296,186964.201400001],[566020.4974,187022.3048],[565870.0003,188078.9023],[565233.498,187905.901799999],[564536.9965,193376.3959],[566289.0967,197421.2981],[569114.102,197031.899499999],[569457.7974,194818.5031],[570308.2012,194530.795499999],[573490.8031,194403.8018],[574152.6011,195010.998],[574608.9982,194116.604],[577495.8003,194112.495200001]]]},"properties":{"LAD22CD":"E07000066","LAD22NM":"Basildon","BNG_E":571548,"BNG_N":190848,"LONG":0.475055,"LAT":51.59036,"OBJECTID":92,"GlobalID":"fa0a5a4e-452f-4d2c-9f8f-4792fa5e15de"}},{"type":"Feature","id":93,"geometry":{"type":"Polygon","coordinates":[[[591174.101,233434.1995],[590028.5982,232032.8007],[589027.4004,232035.999700001],[587633.0039,226544.1018],[585806.3024,226209.297599999],[587507.0524,223527.3453],[587100.9996,222672.899900001],[588489.6988,222772.4014],[589648.8966,221864.4013],[589511.1959,220797.9966],[588348.296,220181.902899999],[588966.7003,219226.896299999],[586943.2963,218578.202],[587610.6021,218124.901699999],[586801.5967,216833.001499999],[585957.4014,217939.9047],[584753.0041,215837.6964],[583468.102,215237.498299999],[582960.5031,212904.1962],[581765.9999,211885.197799999],[582801.9011,210295.8028],[580803.8012,210340.9999],[579478.5973,208941.000600001],[579090.4033,209487.5042],[577636.7001,209041.002],[574104.3016,214654.0953],[574791.7995,215511.899700001],[573611.1974,219871.8017],[573161.0798,221409.1017],[569919.999,222885.698999999],[567395.4025,227937.502900001],[566590.7011,228078.3026],[567083.7969,231158.0011],[565812.4992,233034.9038],[566570.0966,233300.097899999],[566747.9014,234813.504699999],[565756.103,237554.9999],[567388.4025,237872.799000001],[566859.0036,240625.401000001],[564323.1031,239751.701099999],[564008.7025,240256.296700001],[563269.4997,241689.896299999],[564926.6004,243518.902799999],[567206.6978,244355.303400001],[568273.8973,243925.296499999],[569128.9019,245101.899700001],[571622.1012,242448.099300001],[572241.8,243135.102700001],[574389.1025,242979.0973],[574978.2038,244230.099199999],[577050.501,245087.4038],[582134.4964,246338.4957],[583998.5975,246577.0974],[585971.8962,245010.695800001],[585388.0964,244212.904100001],[586353.8981,242402.102499999],[585198.7981,242331.3027],[585038.4976,241308.0956],[586314.7011,240021.304],[588098.0996,240520.601],[588039.5019,238235.395199999],[589647.6022,236824.698999999],[589596.7961,235480.503799999],[590636.3004,235204.1029],[590525.0004,233845.0019],[591174.101,233434.1995]]]},"properties":{"LAD22CD":"E07000067","LAD22NM":"Braintree","BNG_E":577253,"BNG_N":227335,"LONG":0.575911,"LAT":51.91634,"OBJECTID":93,"GlobalID":"43698a1d-9563-4640-a2b9-f344c03366d9"}},{"type":"Feature","id":94,"geometry":{"type":"Polygon","coordinates":[[[566289.0967,197421.2981],[564536.9965,193376.3959],[565233.498,187905.901799999],[560412.2973,187750.496200001],[558841.3,187531.999],[557304.9979,191410.3989],[556199.096,191601.403999999],[556906.7038,192371.503799999],[556018.0013,193395.700200001],[554024.9971,194889.3029],[552402.402,194083.103700001],[550596.9975,197463.2961],[551801.6999,197199.601500001],[551631.8021,197942.5989],[552824.3018,198106.6019],[553252.5997,199664.595899999],[554921.598,199639.802999999],[554433.2018,200701.599099999],[556648.5013,202527.396500001],[559252.8028,200530.598099999],[560582.5992,204268.3981],[561328.0022,204608.900699999],[562283.2997,202067.3982],[563257.8,201706.9013],[564400.2027,202671.7951],[566116.7997,200913.7984],[566923.8015,199657.498],[566104.3002,198667.701300001],[566289.0967,197421.2981]]]},"properties":{"LAD22CD":"E07000068","LAD22NM":"Brentwood","BNG_E":558560,"BNG_N":196070,"LONG":0.290091,"LAT":51.64108,"OBJECTID":94,"GlobalID":"2e87b728-961c-4a1a-bc6b-267403237e3e"}},{"type":"Feature","id":95,"geometry":{"type":"Polygon","coordinates":[[[582503.1001,189021.8024],[582271.4384,185420.521500001],[582242.4336,185416.3807],[582197.0751,185403.578199999],[580998.8,185006.6],[580000.0231,185251.8606],[578461.7089,185629.6106],[580000.0301,184979.6205],[581986.2,184140.4],[581758.7,183400],[583029.3,183630.699999999],[580000.0126,182431.1043],[578680.05,181908.4],[577304.55,182086],[576944.1443,182389.5855],[576891.6282,182723.8727],[576554.5358,182717.7699],[574756.7188,184232.15],[576471.8201,184817.7676],[576315.899,188925.100099999],[577849.802,190828.6952],[582503.1001,189021.8024]]]},"properties":{"LAD22CD":"E07000069","LAD22NM":"Castle Point","BNG_E":579490,"BNG_N":187920,"LONG":0.588084,"LAT":51.56159,"OBJECTID":95,"GlobalID":"d5923847-6a37-4313-9065-ee02b8700d84"}},{"type":"Feature","id":96,"geometry":{"type":"Polygon","coordinates":[[[573611.1974,219871.8017],[574791.7995,215511.899700001],[574104.3016,214654.0953],[577636.7001,209041.002],[579090.4033,209487.5042],[578923.3007,206667.501399999],[580447.9032,205899.601199999],[579856.3035,204480.1975],[580643.6986,203231.305],[580450.3025,201352.8027],[581232.0992,200645.1953],[581994.0005,196683.9991],[583409.9001,196410.397399999],[579210.5998,195622.503],[579166.2002,194787.801899999],[577495.8003,194112.495200001],[574608.9982,194116.604],[574152.6011,195010.998],[573490.8031,194403.8018],[570308.2012,194530.795499999],[569457.7974,194818.5031],[569114.102,197031.899499999],[566289.0967,197421.2981],[566104.3002,198667.701300001],[566923.8015,199657.498],[566116.7997,200913.7984],[564400.2027,202671.7951],[563257.8,201706.9013],[562283.2997,202067.3982],[561328.0022,204608.900699999],[562209.1024,206131.7048],[562024.2976,210261.7026],[560980.9016,211567.6987],[561506.1038,213237.400800001],[563024.003,213334.1031],[562929.3003,214025.994999999],[564501.8973,213623.500299999],[565538.3015,215403.8006],[565873.9002,214820.4976],[566517.8972,215600.904200001],[565677.8986,218471.3026],[566282.3028,220315.004799999],[567039.2983,220061.7973],[567606.204,217594.603499999],[568624.502,217299.8979],[573611.1974,219871.8017]]]},"properties":{"LAD22CD":"E07000070","LAD22NM":"Chelmsford","BNG_E":572116,"BNG_N":206972,"LONG":0.491177,"LAT":51.73503,"OBJECTID":96,"GlobalID":"76bedde4-0941-425f-88fa-4fc0676de8db"}},{"type":"Feature","id":97,"geometry":{"type":"MultiPolygon","coordinates":[[[[603307.33,212550.789999999],[600332.49,212320.74],[600241.39,213700.439999999],[601767.793,214816.298599999],[602971.5961,216106.2995],[604553.1765,216385.299699999],[606877.91,215729.74],[606977.56,214754.470000001],[603307.33,212550.789999999]]],[[[605333.3032,220647.299699999],[605373.7628,220426.101],[605203.1565,220707.7084],[605333.3032,220647.299699999]]],[[[603565.8012,235109.9998],[604209.1963,233492.7028],[606106.5993,233744.3007],[607934.4963,232810.3981],[606722.596,230610.4978],[603405.7976,230664.802200001],[601668.1015,228635.802999999],[603524.3039,226920.604],[602982.1993,226130.600099999],[603960.7974,225499.400800001],[603334.6015,224313.700200001],[605124.2002,223479.099099999],[605191.7026,221463.9959],[604302.3985,221125.8027],[605184.2957,220716.4628],[605211.4247,220000.014900001],[605233.6,219414.390000001],[604500.44,218692.5],[605643.5,217400.23],[604484.73,217936.91],[604172.63,219094.960000001],[603753.8977,218660.1273],[602948.71,217823.98],[606305.95,216298.529999999],[604136.8416,216541.7206],[601117.1,216555.4],[601461.2482,215851.203400001],[602580.22,215982.68],[601522.5,215725.869999999],[600320.26,215717.140000001],[600000.0041,214424.003699999],[599622.52,212899.789999999],[597772.73,214345.130000001],[598216.36,213297.67],[596571.156,213682.763],[596110.27,213111.66],[595267.61,213824.73],[596196.5855,212973.568399999],[595796.4967,212789.499],[593474.3989,213834.1],[594303.8026,213815.0954],[593980.4972,214901.904300001],[591668.9036,216198.903100001],[590000.1033,214955.8989],[587529.1986,214461.600400001],[587149.4971,215683.000700001],[587717.4993,215876.295399999],[586801.5967,216833.001499999],[587610.6021,218124.901699999],[586943.2963,218578.202],[588966.7003,219226.896299999],[588348.296,220181.902899999],[589511.1959,220797.9966],[589648.8966,221864.4013],[588489.6988,222772.4014],[587100.9996,222672.899900001],[587507.0524,223527.3453],[585806.3024,226209.297599999],[587633.0039,226544.1018],[589027.4004,232035.999700001],[590028.5982,232032.8007],[591174.101,233434.1995],[593218.9009,232865.102399999],[594131.1015,233775.002],[595922.5966,232978.199999999],[598576.5993,234488.397700001],[601000.5978,234898.000499999],[602243.6975,234335.2016],[603565.8012,235109.9998]]]]},"properties":{"LAD22CD":"E07000071","LAD22NM":"Colchester","BNG_E":596944,"BNG_N":223693,"LONG":0.859777,"LAT":51.87702,"OBJECTID":97,"GlobalID":"d42eb7b8-6089-497b-97df-97c3886ac93c"}},{"type":"Feature","id":98,"geometry":{"type":"Polygon","coordinates":[[[562024.2976,210261.7026],[562209.1024,206131.7048],[561328.0022,204608.900699999],[560582.5992,204268.3981],[559252.8028,200530.598099999],[556648.5013,202527.396500001],[554433.2018,200701.599099999],[554921.598,199639.802999999],[553252.5997,199664.595899999],[552824.3018,198106.6019],[551631.8021,197942.5989],[551801.6999,197199.601500001],[550596.9975,197463.2961],[552402.402,194083.103700001],[548106.8982,193800.904300001],[543642.3989,191573.8419],[540035.9999,194159.073799999],[540060.7989,195527.3002],[537625.1501,196030.0962],[537543.796,199883.1033],[536935.5001,202352.396600001],[537248.1034,206701.1018],[538252.7971,207044.5035],[539081.2031,209217.8014],[539932.1016,210332.0024],[542044.0988,211002.600500001],[542558.5988,207884.403100001],[544592.8038,206234.0954],[545239.901,207378.8978],[548306.099,208722.803099999],[549645.8967,211568.998299999],[548092.8982,213021.102700001],[548875,214966.695800001],[549849.5992,215305.898700001],[549393.9029,215943.396199999],[550931.1492,215711.352700001],[551577.797,213074.497400001],[553985.5032,213077.4965],[554460.6991,211379.602600001],[558420.3979,212670.303099999],[558743.4971,210631.796599999],[562024.2976,210261.7026]]]},"properties":{"LAD22CD":"E07000072","LAD22NM":"Epping Forest","BNG_E":548919,"BNG_N":203759,"LONG":0.154147,"LAT":51.7128,"OBJECTID":98,"GlobalID":"b07d2564-8f48-43c0-bca3-2a045807fdd7"}},{"type":"Feature","id":99,"geometry":{"type":"Polygon","coordinates":[[[542044.0988,211002.600500001],[548092.8982,213021.102700001],[549645.8967,211568.998299999],[548306.099,208722.803099999],[545239.901,207378.8978],[544592.8038,206234.0954],[542558.5988,207884.403100001],[542044.0988,211002.600500001]]]},"properties":{"LAD22CD":"E07000073","LAD22NM":"Harlow","BNG_E":545276,"BNG_N":209589,"LONG":0.103888,"LAT":51.76614,"OBJECTID":99,"GlobalID":"6d1efa26-49c2-45bd-b8d1-eb00528fcbd1"}},{"type":"Feature","id":100,"geometry":{"type":"MultiPolygon","coordinates":[[[[592642.1,206298.199999999],[591442.4,205889.199999999],[590347.8,206494.699999999],[591383.5,206752.699999999],[592642.1,206298.199999999]]],[[[588013.2,207051.5],[588414.6,205552.4],[587158,205793.800000001],[588013.2,207051.5]]],[[[595895.7796,212108.3464],[597174.6681,211522.407299999],[595601.4115,211639.2466],[595895.7796,212108.3464]]],[[[587149.4971,215683.000700001],[587529.1986,214461.600400001],[590000.1033,214955.8989],[591668.9036,216198.903100001],[593980.4972,214901.904300001],[594303.8026,213815.0954],[593474.3989,213834.1],[595796.4967,212789.499],[596196.5855,212973.568399999],[596228.0386,212944.75],[598545.743,212880.465299999],[598575.86,212879.630000001],[598584.704,212868.046499999],[599566.241,211582.471999999],[597041.1508,211974.5319],[595811.4,212165.470000001],[595483.93,211663.76],[596973.5,211171.9],[596824.3,210325.039999999],[597565.9,211030.199999999],[599045.9,210485.73],[597278.4,208868.5],[596659.13,209256.529999999],[597067.3,208658.199999999],[596290.3,208270.300000001],[592861.6,208853.9],[592645.3003,207894.9],[591793.503,208678.595699999],[589035.43,206958.640000001],[587470.06,207805.85],[586961.05,206251.23],[586516.58,206497.51],[587395.9007,205117.495100001],[589876.9963,204985.7028],[589837.5024,204248.7038],[591422.2032,204697.7952],[589344.7034,202263.901900001],[590650.1027,202705.195599999],[591291.9972,204067.695599999],[591605.9031,204226.200200001],[593384.099,204726.497],[593058.9962,205842.397600001],[594857.8,206245.9],[597136.14,205469.02],[599228.3687,208043.230699999],[599931.54,208908.390000001],[600000.0253,208921.692],[602144.359,209338.1888],[602428.6723,209322.5976],[603749.095,207530.708000001],[603193.158,203311.556],[603805.47,202822.380999999],[603180.137,202934.895],[603804.531,202634.612],[602779.314,202639.486],[603934.816,202393.126],[602767.23,201894.380000001],[603807.7,201736.184],[602872.036,201440.361],[603808.729,201535.876],[602956.98,201251.664000001],[603673.473,201343.343],[602902.163,200493.608999999],[603575.088,200232.630999999],[603548.4425,199999.975400001],[603175.902,196747.130000001],[601136.328,195519.866],[600000.0219,195425.364600001],[598040.5,195262.4],[593479.28,195572.66],[592533.9388,196084.7557],[591406.9993,196915.2029],[589746.4027,196192.5998],[583409.9001,196410.397399999],[581994.0005,196683.9991],[581232.0992,200645.1953],[580450.3025,201352.8027],[580643.6986,203231.305],[579856.3035,204480.1975],[580447.9032,205899.601199999],[578923.3007,206667.501399999],[579090.4033,209487.5042],[579478.5973,208941.000600001],[580803.8012,210340.9999],[582801.9011,210295.8028],[581765.9999,211885.197799999],[582960.5031,212904.1962],[583468.102,215237.498299999],[584753.0041,215837.6964],[585957.4014,217939.9047],[586801.5967,216833.001499999],[587717.4993,215876.295399999],[587149.4971,215683.000700001]]]]},"properties":{"LAD22CD":"E07000074","LAD22NM":"Maldon","BNG_E":591413,"BNG_N":212072,"LONG":0.773106,"LAT":51.77458,"OBJECTID":100,"GlobalID":"4a38289f-b58a-43b5-8738-5aae38aef078"}},{"type":"Feature","id":101,"geometry":{"type":"MultiPolygon","coordinates":[[[[596672.7982,191182.9038],[595752.6989,188887.400900001],[594632.698,191154.202],[596117.4027,192362.7961],[596672.7982,191182.9038]]],[[[600000.0034,189456.1216],[598787.4998,188343.896500001],[596958.3989,188572.700999999],[595950.5969,188848.801899999],[596769.0016,190774.8006],[596865.6008,190839.202199999],[596671.3966,192122.9047],[598661.004,192375.102499999],[599100.8038,194504.2031],[600000.0098,194651.6843],[604827.1967,195443.404200001],[603038.8017,192243.600199999],[600000.0034,189456.1216]]],[[[591406.9993,196915.2029],[592533.9388,196084.7557],[591341.99,196730.439999999],[592828.87,195389.65],[594459.88,195246.17],[598476.78,194622.23],[598398.809,193879.868000001],[597982.432,193728.290999999],[597771.36,192412.119999999],[595431.86,192664.57],[594828.2366,193110.804400001],[595343.82,192514.369999999],[593820.89,191208.26],[591614.1,190772.199999999],[594480.67,191198.32],[593657.6,190088.6],[594665.6,190385.800000001],[595405.4,188543.699999999],[597716.2,188012.300000001],[595718.2092,186217.950099999],[595709.6685,186210.4933],[595587.8966,186356.0955],[593494.2984,186302.650800001],[593290.6,187463.5984],[585490.7969,189390.596799999],[582954.2039,189736.297900001],[582503.1001,189021.8024],[577849.802,190828.6952],[576648.0019,191714.401699999],[577495.8003,194112.495200001],[579166.2002,194787.801899999],[579210.5998,195622.503],[583409.9001,196410.397399999],[589746.4027,196192.5998],[591406.9993,196915.2029]]]]},"properties":{"LAD22CD":"E07000075","LAD22NM":"Rochford","BNG_E":585979,"BNG_N":191417,"LONG":0.683442,"LAT":51.5909,"OBJECTID":101,"GlobalID":"c0fe2931-2f96-4acd-843a-9157365105dd"}},{"type":"Feature","id":102,"geometry":{"type":"MultiPolygon","coordinates":[[[[621881.48,224178.74],[620852.7,223982],[621637.6796,224848.919199999],[622038.6,225106.300000001],[621881.48,224178.74]]],[[[624670.1,225214.5],[624763.5,224419.6],[624157.9009,224557.498],[624670.1,225214.5]]],[[[624278.67,225558.810000001],[623466.28,223898.27],[622184,224556.699999999],[622378.6,225251.800000001],[624278.67,225558.810000001]]],[[[622611.4,226622.199999999],[623246.5,225860.300000001],[622477.3,225927.300000001],[622611.4,226622.199999999]]],[[[609493.1015,233387.402899999],[610976.0442,232438.923900001],[610790.8,232274.4],[609949.7436,232682.9234],[610528.57,231922.27],[614515.4,231434.6],[617957.4,232469],[618703.97,231805.199999999],[619999.9975,231759.602399999],[621930,231691.699999999],[623178.6086,232750.822000001],[625352.9472,231812.5151],[626249.2045,232913.0307],[626670.5176,231626.0118],[626710.8587,231475.7797],[626708.4511,231474.3399],[625914.25,231581.15],[623584,229174.6],[623809.5501,229006.3258],[624174.3,228734.199999999],[623812,227622.1],[623448.89,226889.74],[623738.5291,227626.1894],[622576.4454,227690.8718],[622015.22,227722.109999999],[621089.26,226883.16],[622238,226255.699999999],[621147.9,226188.1],[620251.6,225526.300000001],[621027.2,224863.1],[620977.0222,224842.464],[620000.0063,224440.659299999],[618883.48,223981.48],[620000.0116,223757.839199999],[621206.9,223516.1],[622198.8,224203],[622697.9,222325.33],[622897.9,223044],[623817.1,223181.199999999],[623902.1,222495.800000001],[624042.92,223352.050000001],[625007.4676,223383.9274],[625241.6,222072],[625236.6,223391.5],[625138.639,223388.262499999],[625021.6,224884.5],[626286.3,224788.699999999],[625166.1,224912.4],[624711.7,225883.699999999],[626577.2435,224642.2567],[626606.8956,224520.157099999],[626482.8068,223307.124500001],[625075.1559,221133.5361],[624224.7652,219999.992699999],[622841.5358,218156.192299999],[615949.1368,213159.4592],[610861.08,212283.560000001],[610077.6,212273.1],[608167.63,215701.140000001],[609954.1374,215914.7992],[611056.91,216990.43],[611292.31,217616.33],[611520.64,218055.689999999],[610028.11,218192.609999999],[611219.8327,217649.3685],[610648.5601,216877.7104],[607809.3,216093.970000001],[605689.85,219369.73],[608230.97,219443.199999999],[605748.1,219808.210000001],[605631.8988,220000.014900001],[605373.7628,220426.101],[605333.3032,220647.299699999],[605203.1565,220707.7084],[605183.3919,220740.3324],[605184.2957,220716.4628],[604302.3985,221125.8027],[605191.7026,221463.9959],[605124.2002,223479.099099999],[603334.6015,224313.700200001],[603960.7974,225499.400800001],[602982.1993,226130.600099999],[603524.3039,226920.604],[601668.1015,228635.802999999],[603405.7976,230664.802200001],[606722.596,230610.4978],[607934.4963,232810.3981],[609493.1015,233387.402899999]]]]},"properties":{"LAD22CD":"E07000076","LAD22NM":"Tendring","BNG_E":614190,"BNG_N":222141,"LONG":1.108981,"LAT":51.85674,"OBJECTID":102,"GlobalID":"18031e56-947e-4e19-8421-4db459e8bb08"}},{"type":"Feature","id":103,"geometry":{"type":"Polygon","coordinates":[[[564008.7025,240256.296700001],[564323.1031,239751.701099999],[566859.0036,240625.401000001],[567388.4025,237872.799000001],[565756.103,237554.9999],[566747.9014,234813.504699999],[566570.0966,233300.097899999],[565812.4992,233034.9038],[567083.7969,231158.0011],[566590.7011,228078.3026],[567395.4025,227937.502900001],[569919.999,222885.698999999],[573161.0798,221409.1017],[573611.1974,219871.8017],[568624.502,217299.8979],[567606.204,217594.603499999],[567039.2983,220061.7973],[566282.3028,220315.004799999],[565677.8986,218471.3026],[566517.8972,215600.904200001],[565873.9002,214820.4976],[565538.3015,215403.8006],[564501.8973,213623.500299999],[562929.3003,214025.994999999],[563024.003,213334.1031],[561506.1038,213237.400800001],[560980.9016,211567.6987],[562024.2976,210261.7026],[558743.4971,210631.796599999],[558420.3979,212670.303099999],[554460.6991,211379.602600001],[553985.5032,213077.4965],[551577.797,213074.497400001],[550931.1492,215711.352700001],[549393.9029,215943.396199999],[549553.7004,220340.997400001],[551262.0029,221111.696799999],[549793.6977,222706.700200001],[550368.9968,223913.604699999],[546332.1984,222801.802999999],[546211.3011,227141.500800001],[544829.7009,232466.996400001],[544064.8973,233837.0042],[542184.2978,233751.5987],[542051.4039,236168.096899999],[543656.6019,237979.7983],[544457.0984,242299.901699999],[545372.597,242293.3036],[546034.7001,240905.800799999],[547592.2993,241567.101500001],[548655.3021,241079.900900001],[548713.1989,241839.5035],[550228.097,242463.9048],[549723.4992,243893.695499999],[551046.4028,246103.1031],[553233.7021,245761.001],[554396.8988,244437.399900001],[556031.1029,246252.9002],[556709.0036,246025.895199999],[559420.1033,244150.1021],[560961.6,241632.002900001],[564008.7025,240256.296700001]]]},"properties":{"LAD22CD":"E07000077","LAD22NM":"Uttlesford","BNG_E":557832,"BNG_N":228865,"LONG":0.294485,"LAT":51.93592,"OBJECTID":103,"GlobalID":"70e12c16-b9da-44e4-8f31-efd04690a7ef"}},{"type":"Feature","id":104,"geometry":{"type":"Polygon","coordinates":[[[399393.4026,222708.399700001],[398357.4024,218410.9998],[396840.3029,217750.798800001],[395223.9989,218495.695599999],[393383.2972,220036.804500001],[391301.9965,220135.1963],[391410.9962,221004.997300001],[390293.8976,220669.803300001],[391521.3975,224541.605],[392556.4001,224152.0965],[392995.8041,224986.397700001],[392770.4006,226713.0034],[397349.3036,224876.3991],[397488.8017,222970.604699999],[399393.4026,222708.399700001]]]},"properties":{"LAD22CD":"E07000078","LAD22NM":"Cheltenham","BNG_E":394925,"BNG_N":222232,"LONG":-2.07515,"LAT":51.89861,"OBJECTID":104,"GlobalID":"3a6d39b3-f003-456c-a414-052a7d9fdb8f"}},{"type":"Feature","id":105,"geometry":{"type":"Polygon","coordinates":[[[423049.2002,232166.4024],[423282.7993,229555.4998],[425351.3037,228636.402899999],[426550.8035,226643.903200001],[424473.3037,224921.8961],[425344.4026,222360.3993],[423584.2965,222054.3969],[423012.0975,219877.200200001],[421657.5988,218592.097999999],[422386.8992,216905.8007],[421700.3989,215139.496300001],[422027.2991,211752.795700001],[419446.6032,209430.9004],[420748.1026,208031.6009],[421706.896,204621.097200001],[421103.3988,202800.498299999],[421652.5034,201524.603499999],[424413.6012,198427.699999999],[423018.6028,198015.2981],[422004.5015,199086.601399999],[421051.6033,199297.4011],[420077.3009,197041.3968],[418938.3035,196527.304],[417125.5031,195965.4048],[414715.2986,196490.204600001],[413091.7966,200505.5952],[412323.8021,197204.800100001],[412832.9017,196045.002],[410438.9977,195287.698799999],[408815.2978,198210.202299999],[407078.4014,197884.5955],[408633.4035,194762.7991],[405567.5022,195386.7005],[404102.998,196850.4015],[402651.6034,195541.496200001],[403520.5009,193129.296700001],[401665.1973,193253.901000001],[400420.8032,194729.7985],[399017.4031,194635.5955],[396142.4987,197075.797],[389528.8961,187954.298],[387664.3002,189037.797800001],[386933.4003,188200.7974],[385788.6973,188587.196799999],[385730.5036,189416.0995],[383341.1014,188167.397],[383111.9959,186978.397299999],[381208.9039,186560.397],[380503.3987,186666.0967],[379893.998,188356.7028],[380903.0038,191236.998299999],[379764.3032,192674.4968],[378336.3988,191850.9026],[377699.3029,192746.7961],[380492.8038,196369.2992],[380241.9973,198024.5954],[383013.7972,197537.2049],[383998.9996,195818.4969],[386807.9022,195681.3961],[387126.2028,196852.400900001],[385449.9984,198185.6993],[386228.9011,199361.8026],[389734.8,198964.1964],[391537.797,200738.898399999],[390807.804,202729.6986],[394246.7035,203291.697699999],[394328.8986,204125.598999999],[395357.6019,204418.895],[393908.1036,205369.502900001],[392778.7034,205041.9967],[393012.5004,207626.696799999],[395061.0023,207898.399],[394315.5003,210035.2974],[392122.1987,211207.002],[390842.4992,213484.899900001],[392177.3993,213801.8992],[393318.5982,217556.204500001],[394439.102,217372.597100001],[395223.9989,218495.695599999],[396840.3029,217750.798800001],[398357.4024,218410.9998],[399393.4026,222708.399700001],[400497.3009,224048.896],[402765.8964,222663.8025],[404952.8989,222907.502800001],[406141.6965,221007.5966],[407251.6961,221754.2029],[410170.1015,221662.3991],[408302.8013,222032.803099999],[409149.0001,223288.503699999],[407809.9033,223711.2027],[407852.4973,225302.2972],[405377.198,226266.3013],[404792.3016,228761.097200001],[406215.2013,230104.002800001],[407168.8003,229097.6008],[408718.7976,229630.8982],[409130.3003,231354.8047],[408102.1989,231689.198999999],[409340.6525,232975.4508],[412501.7965,232116.4967],[413712.3034,233178.502699999],[411144.0988,234271.999700001],[412100.5011,236960.3002],[411441.2013,238382.1032],[409459.5998,239455.4959],[408705.1025,241297.4987],[410607.502,242349.997400001],[411628.0014,241612.398499999],[412502.4973,243019.795700001],[412929.6987,242280.0974],[413640.2003,244305.997500001],[416007.5965,246053.7972],[417496.2011,243875.1008],[418689.5005,244675.8016],[418555.8975,241703.202500001],[419773.2973,240949.8982],[420539.7005,241645.2991],[420311.8977,240186.9965],[421447.2014,239315.9959],[421086.4964,237945.7981],[423156.0521,237037.2982],[425858.2019,237907.3991],[426333.7028,237293.2049],[423015.6016,233215.0023],[423049.2002,232166.4024]]]},"properties":{"LAD22CD":"E07000079","LAD22NM":"Cotswold","BNG_E":402125,"BNG_N":208209,"LONG":-1.97059,"LAT":51.77255,"OBJECTID":105,"GlobalID":"55491f0f-5224-47a4-9fec-7b7b4d876bdb"}},{"type":"Feature","id":106,"geometry":{"type":"Polygon","coordinates":[[[375985.097,235939.5024],[375900.9974,235069.701300001],[377806.2001,233952.101299999],[377667.2008,230862.945499999],[378623.2032,230938.503900001],[379455.7977,229852.8047],[381509.2962,230085.3981],[381709.849,228333.299699999],[380626.1017,228184.0024],[379791.6026,226119.903200001],[380592.7999,225012.3002],[379648.1962,222747.898399999],[380143.6007,221793.4016],[378085.8973,221151.995300001],[377054.9019,219738],[378336.8028,218077.0954],[376206.3037,217380.3049],[375863.8039,216460.698100001],[375997.8026,214626.7031],[375113.0993,213848.9957],[375380.0002,212163.1983],[376214.7961,211613.195699999],[375850.3974,210870.498299999],[373991.301,210731.098200001],[371743.4995,211969.3038],[371003.1013,213411.900800001],[368938.4967,210957.303400001],[369446.2029,209579.4978],[371358.2985,209688.3967],[373016.1989,208806.099199999],[373433.4979,206670.9004],[371887.9035,205761.2008],[369925.9005,206606.098999999],[367466.9017,204796.7969],[365352.2611,199513.5264],[362706.5003,198319.900900001],[362599.2244,198225.396400001],[362333.6014,198469.386],[360938.75,199750.635],[360000.0099,198982.320900001],[357913.427,197274.551999999],[355185.87,192696.460000001],[354976.11,190288.24],[354620.0625,191668.4234],[354639.3016,191757.499299999],[354401.4113,192516.0033],[354191.0916,193186.5945],[353840.6026,194304.100400001],[353024.9022,194524.7972],[354038.7974,196381.3958],[352621.1993,196264.599199999],[354675.4975,197507.9033],[353618.0024,198240.103700001],[353843.6038,199589.397500001],[352840.6993,200430.3967],[353906.8022,200994.5952],[352612.7976,203746.997400001],[353676.6001,204397.4012],[354352.5961,206341.2048],[353142.3036,208024.6029],[353902.4983,210836.498],[353309.497,211795.4035],[354627.404,212654.997500001],[354547.699,213998.402899999],[355272.7037,214366.797499999],[356232.7009,216245.899599999],[357003.3008,215779.703],[358689.9023,217684.3978],[359951.1987,216935.702099999],[360111.796,218279.5975],[363486.4996,218153.703500001],[365089.2982,220855.9],[366519.4041,220317.6041],[369864.9036,222184.6996],[369272.1002,224554.4013],[368050.5037,225597.2028],[368105.5972,228235.397600001],[365678.2017,229242.8993],[366276.0016,229630.2984],[366105.502,231516.398499999],[367758.1997,233024.8967],[366326.6015,234472.102399999],[367233.4016,236119.800799999],[368253.1013,236195.899],[368303.2972,235201.9035],[370136.6031,235241.202299999],[370073.6025,233280.803400001],[371726.1024,232928.904100001],[372700.8006,233152.100299999],[373131.4978,235019.795600001],[375985.097,235939.5024]]]},"properties":{"LAD22CD":"E07000080","LAD22NM":"Forest of Dean","BNG_E":367175,"BNG_N":212759,"LONG":-2.47755,"LAT":51.81249,"OBJECTID":106,"GlobalID":"c1c42639-7e90-40e6-89f4-0de6cd714d73"}},{"type":"Feature","id":107,"geometry":{"type":"Polygon","coordinates":[[[387167.0983,216285.7982],[384701.0995,213639.095799999],[384419.2008,214434.2982],[382911.7976,214095.7951],[381973.6003,212136.7958],[379483.5011,214043.100099999],[379546.3038,214929.0965],[380857.4004,216260.0955],[380275.0023,217963.4979],[381208.203,218305.100199999],[381655.4976,219656.5033],[383711.7004,220547.7982],[386390.0013,220246.904300001],[386573.8002,218569.104599999],[387888.2031,217490.6033],[387167.0983,216285.7982]]]},"properties":{"LAD22CD":"E07000081","LAD22NM":"Gloucester","BNG_E":384071,"BNG_N":216449,"LONG":-2.23263,"LAT":51.84641,"OBJECTID":107,"GlobalID":"058ac0a2-0ce4-4f29-8fa1-5d735966dd35"}},{"type":"Feature","id":108,"geometry":{"type":"Polygon","coordinates":[[[379546.3038,214929.0965],[379483.5011,214043.100099999],[381973.6003,212136.7958],[382911.7976,214095.7951],[384419.2008,214434.2982],[384701.0995,213639.095799999],[387167.0983,216285.7982],[389063.2975,214005.101],[390842.4992,213484.899900001],[392122.1987,211207.002],[394315.5003,210035.2974],[395061.0023,207898.399],[393012.5004,207626.696799999],[392778.7034,205041.9967],[393908.1036,205369.502900001],[395357.6019,204418.895],[394328.8986,204125.598999999],[394246.7035,203291.697699999],[390807.804,202729.6986],[391537.797,200738.898399999],[389734.8,198964.1964],[386228.9011,199361.8026],[385449.9984,198185.6993],[387126.2028,196852.400900001],[386807.9022,195681.3961],[383998.9996,195818.4969],[383013.7972,197537.2049],[380241.9973,198024.5954],[380492.8038,196369.2992],[377699.3029,192746.7961],[378336.3988,191850.9026],[379764.3032,192674.4968],[380903.0038,191236.998299999],[379893.998,188356.7028],[377161.4982,188135.6961],[374777.4017,189496.196599999],[374428.0007,188817.200999999],[372759.9012,188798.6963],[373175.8975,192152.0964],[372380.0017,193002.0031],[373385.3962,193530.401799999],[369449.7977,194948.3959],[366144.699,194117.8037],[366230.5961,196244.604900001],[362706.5003,198319.900900001],[365352.2611,199513.5264],[367466.9017,204796.7969],[369925.9005,206606.098999999],[371887.9035,205761.2008],[373433.4979,206670.9004],[373016.1989,208806.099199999],[371358.2985,209688.3967],[369446.2029,209579.4978],[368938.4967,210957.303400001],[371003.1013,213411.900800001],[371743.4995,211969.3038],[373991.301,210731.098200001],[375850.3974,210870.498299999],[376214.7961,211613.195699999],[375380.0002,212163.1983],[375113.0993,213848.9957],[375997.8026,214626.7031],[375863.8039,216460.698100001],[378916.2987,216519.5013],[379546.3038,214929.0965]]]},"properties":{"LAD22CD":"E07000082","LAD22NM":"Stroud","BNG_E":378807,"BNG_N":202410,"LONG":-2.30818,"LAT":51.72001,"OBJECTID":108,"GlobalID":"89a1602c-aa9d-49c3-8228-a64023e95582"}},{"type":"Feature","id":109,"geometry":{"type":"Polygon","coordinates":[[[411144.0988,234271.999700001],[413712.3034,233178.502699999],[412501.7965,232116.4967],[409340.6525,232975.4508],[408102.1989,231689.198999999],[409130.3003,231354.8047],[408718.7976,229630.8982],[407168.8003,229097.6008],[406215.2013,230104.002800001],[404792.3016,228761.097200001],[405377.198,226266.3013],[407852.4973,225302.2972],[407809.9033,223711.2027],[409149.0001,223288.503699999],[408302.8013,222032.803099999],[410170.1015,221662.3991],[407251.6961,221754.2029],[406141.6965,221007.5966],[404952.8989,222907.502800001],[402765.8964,222663.8025],[400497.3009,224048.896],[399393.4026,222708.399700001],[397488.8017,222970.604699999],[397349.3036,224876.3991],[392770.4006,226713.0034],[392995.8041,224986.397700001],[392556.4001,224152.0965],[391521.3975,224541.605],[390293.8976,220669.803300001],[391410.9962,221004.997300001],[391301.9965,220135.1963],[393383.2972,220036.804500001],[395223.9989,218495.695599999],[394439.102,217372.597100001],[393318.5982,217556.204500001],[392177.3993,213801.8992],[390842.4992,213484.899900001],[389063.2975,214005.101],[387167.0983,216285.7982],[387888.2031,217490.6033],[386573.8002,218569.104599999],[386390.0013,220246.904300001],[383711.7004,220547.7982],[381655.4976,219656.5033],[381208.203,218305.100199999],[380275.0023,217963.4979],[380857.4004,216260.0955],[379546.3038,214929.0965],[378916.2987,216519.5013],[375863.8039,216460.698100001],[376206.3037,217380.3049],[378336.8028,218077.0954],[377054.9019,219738],[378085.8973,221151.995300001],[380143.6007,221793.4016],[379648.1962,222747.898399999],[380592.7999,225012.3002],[379791.6026,226119.903200001],[380626.1017,228184.0024],[381709.849,228333.299699999],[381509.2962,230085.3981],[382827.096,229816.595000001],[384949.2016,233027.595899999],[387387.2002,232471.805],[387687.4029,233478.096899999],[388793.0986,233089.2982],[387216.8985,235644.2969],[387957.4039,236029.396600001],[387703.8023,238162.0962],[388343.0996,238810.7005],[391976.5991,238195.5966],[392054.9025,237250.697000001],[390532.3035,236616.898499999],[389824.6959,234767.9977],[390437.6997,233455.203500001],[392396.2975,235218.0989],[394270.9028,234674.304500001],[395924.6972,235140.0012],[396697.3006,233928.797900001],[397463.2998,234017.8025],[401184.502,237496.196799999],[403430.8029,237702.4977],[404780,236839.8047],[406032.499,238454.102600001],[411144.0988,234271.999700001]]]},"properties":{"LAD22CD":"E07000083","LAD22NM":"Tewkesbury","BNG_E":386347,"BNG_N":226279,"LONG":-2.19998,"LAT":51.93485,"OBJECTID":109,"GlobalID":"49e16a28-f30f-4d11-9e74-c978bb794ac0"}},{"type":"Feature","id":110,"geometry":{"type":"Polygon","coordinates":[[[470683.4,163129.903899999],[470645.1017,162796.499299999],[470124.4013,160837.9],[471079.6989,160285.798],[470927.5033,157084.4044],[469662.9995,155456.700300001],[471107.3033,154658.198899999],[471382.004,153382.604],[470336.1015,149952.196],[471665.2961,149314.5985],[471089.898,148949.403000001],[471637.502,147912.299900001],[470965.1997,143956.702099999],[465013.5023,143580],[464826.2982,140985.7026],[462683.4975,140814.3016],[460830.41,138615.75],[457869.9979,137465.000399999],[457146.098,138654.799799999],[455118.6,139482.08],[455034.91,140240.48],[457043.0018,140842.2037],[456591.799,143142.895099999],[455555.4031,142684.7962],[454030.5038,143765.8968],[448392.902,144173.800000001],[446158.9027,143023.3993],[446116.6963,145343.395199999],[444927.4039,146064.4988],[444190.3037,144988.8967],[443144.4012,146369.501499999],[440032.5008,147471.596000001],[439981.1011,148514.1976],[437783.8005,150849.599099999],[440772.2971,153931.596899999],[439928.3986,155851.397299999],[440619.4007,158758.1953],[439824.5026,159869.997],[438804.704,161908.4035],[439894.396,162112.6951],[441089.5011,163919.697799999],[445378.4005,163316.7004],[452222.2959,163930.704700001],[457408.7032,162349.397299999],[460075.997,162365.2028],[461659.0982,162748.303099999],[461663.8968,164277.5954],[463657.701,165380.999500001],[466241.9999,162547.7005],[470683.4,163129.903899999]]]},"properties":{"LAD22CD":"E07000084","LAD22NM":"Basingstoke and Deane","BNG_E":454508,"BNG_N":151423,"LONG":-1.22021,"LAT":51.25937,"OBJECTID":110,"GlobalID":"9f960e49-63f1-43fa-a91e-2737ad020c8e"}},{"type":"Feature","id":111,"geometry":{"type":"Polygon","coordinates":[[[486959.8497,134505.3005],[486951.5981,134540.0976],[486289.1982,134495.3004],[486959.8497,134505.3005],[487401.3003,132643.7005],[485501.902,131824.295],[484341.5004,130045.6042],[481176.5017,130365.4026],[480516.6,127903.1974],[477457.402,125316.797800001],[477745.3031,123178.1],[476740.7001,122217.504899999],[475135.9968,116781.800899999],[474419.3031,116472.6994],[475721.0004,114412.199200001],[474590.0006,113712.399499999],[473414.5023,110645.497400001],[474776.001,108784.300100001],[473027.0998,108040.0032],[473242.0981,108591.495300001],[469089.9018,112633.6983],[468011.8023,112077.1976],[467005.8966,111881.003699999],[467836.54,117337.779999999],[467090.81,117675.609999999],[467137.68,119234.25],[465851.3984,120227.104699999],[465400.94,122005.18],[465863.0982,124969.3972],[464992.799,126325.0492],[466427.9013,127963.600099999],[464470.3012,127854.4014],[462533.8002,132254.102],[465058.9986,134608.3981],[463528.204,134665.2018],[463405.4021,138286.995100001],[462216.23,137853.42],[460830.41,138615.75],[462683.4975,140814.3016],[464826.2982,140985.7026],[465013.5023,143580],[470965.1997,143956.702099999],[471819.2973,143477.599300001],[473374.7034,145104.003699999],[476633.4978,146203.9989],[480501.5033,146352.896199999],[482192.9034,143114.0034],[481640.0968,139348.4013],[484135.7036,139938.702299999],[486237.6995,136037.499],[487909.699,135514.6986],[487664.3012,134515.8046],[486959.8497,134505.3005]]]},"properties":{"LAD22CD":"E07000085","LAD22NM":"East Hampshire","BNG_E":474405,"BNG_N":129237,"LONG":-0.9397,"LAT":51.05765,"OBJECTID":111,"GlobalID":"68bbdb08-44c6-4d42-8912-54652e99813b"}},{"type":"Feature","id":112,"geometry":{"type":"Polygon","coordinates":[[[451762.1968,111202.398],[450163.298,110928.496400001],[449134.8009,109574.0041],[449060.5036,109055.3473],[448154.32,108736.810000001],[448611.6312,105921.8476],[448589.7105,105768.822799999],[444919.9586,109000.437100001],[447774.5967,111495.1042],[446955.4004,113592.8037],[445217.3992,114783.902799999],[445435.2997,115930.204600001],[443658.5962,116637.4022],[444063.9976,117358.9957],[442475.1991,118961.846899999],[442687.5011,122950.904999999],[445465.5013,122284.695699999],[446223.7007,121482.895199999],[445961.4995,120418.899800001],[447293.4973,120294.895300001],[447658.7041,121136.0045],[449895.2016,120625.000800001],[449704.1966,119652.899],[452175.9999,120143.898499999],[449792.51,116818.01],[451775.999,114349.3971],[451762.1968,111202.398]]]},"properties":{"LAD22CD":"E07000086","LAD22NM":"Eastleigh","BNG_E":447199,"BNG_N":116807,"LONG":-1.32947,"LAT":50.94876,"OBJECTID":112,"GlobalID":"34a37ad5-c56c-415e-8048-62a869b5c1b3"}},{"type":"Feature","id":113,"geometry":{"type":"MultiPolygon","coordinates":[[[[448611.6312,105921.8476],[448644.301,105720.75],[448589.7105,105768.822799999],[448611.6312,105921.8476]]],[[[451762.1968,111202.398],[452498.4972,108443.297700001],[454265.9003,107089.7952],[455254.6,108689],[456521.38,108801.039999999],[456662,109814.1],[458671.5003,110325.099099999],[459892.9,109223.699999999],[460397.6,106896.800000001],[462326.0989,106902.0989],[462476.5769,105263.0518],[462271.1268,105186.5886],[462171.7669,104561.922],[459634.689,105382.904999999],[458450.5437,104917.579700001],[458383.9,106671.050000001],[457968.4606,104613.115900001],[457901.7851,104558.9047],[457871.418,104519.756100001],[458049.7058,104534.1391],[457212.9982,102884.299000001],[457895.1041,101836.299000001],[455487.9572,101346.0691],[455464.2747,101375.323799999],[448867.396,104870.283],[449141.9641,108845.261299999],[449296.976,109138.471000001],[449158.8639,109089.922499999],[449060.5036,109055.3473],[449134.8009,109574.0041],[450163.298,110928.496400001],[451762.1968,111202.398]]]]},"properties":{"LAD22CD":"E07000087","LAD22NM":"Fareham","BNG_E":453774,"BNG_N":106319,"LONG":-1.23742,"LAT":50.85388,"OBJECTID":113,"GlobalID":"3a87c84d-735b-4251-beb0-6ef62553e28c"}},{"type":"Feature","id":114,"geometry":{"type":"Polygon","coordinates":[[[459460.0946,104561.350400001],[459460.65,102987.699999999],[460000.0151,103187.5033],[460261.899,103284.516000001],[461834.9,101100.75],[460902.6963,100659.3959],[461845.553,100867.623],[462128.3229,100000.0133],[462274.28,99552.1799999997],[460674.5171,98561.6791999992],[462692.455,99260.9829999991],[460928.489,97721.2316999994],[460589.8059,97445.1774000004],[460000.0128,97755.8353000004],[457200.756,99230.2699999996],[456577.6495,99999.9857000001],[455487.9572,101346.0691],[457895.1041,101836.299000001],[457212.9982,102884.299000001],[458049.7058,104534.1391],[459152.9446,104623.140699999],[459460.0946,104561.350400001]]]},"properties":{"LAD22CD":"E07000088","LAD22NM":"Gosport","BNG_E":458769,"BNG_N":101088,"LONG":-1.16731,"LAT":50.80636,"OBJECTID":114,"GlobalID":"743d9ea6-6895-422e-b683-e3357a03d1fe"}},{"type":"Feature","id":115,"geometry":{"type":"Polygon","coordinates":[[[481058.9024,162174.0975],[485406.9024,159918.6031],[486306.9003,158462.199999999],[485211.7995,158305.404899999],[483938.4983,156775.8027],[483602.2977,155528.399800001],[484465.201,154367.6021],[483275.9004,153580.0975],[483524.1015,150221.898800001],[480501.5033,146352.896199999],[476633.4978,146203.9989],[473374.7034,145104.003699999],[471819.2973,143477.599300001],[470965.1997,143956.702099999],[471637.502,147912.299900001],[471089.898,148949.403000001],[471665.2961,149314.5985],[470336.1015,149952.196],[471382.004,153382.604],[471107.3033,154658.198899999],[469662.9995,155456.700300001],[470927.5033,157084.4044],[471079.6989,160285.798],[470124.4013,160837.9],[470645.1017,162796.499299999],[475024.5978,163543.4955],[478238.5968,162098.999],[481058.9024,162174.0975]]]},"properties":{"LAD22CD":"E07000089","LAD22NM":"Hart","BNG_E":477985,"BNG_N":154240,"LONG":-0.88321,"LAT":51.28197,"OBJECTID":115,"GlobalID":"3ba36fa8-3481-4881-af10-ff759cf7f9f9"}},{"type":"Feature","id":116,"geometry":{"type":"MultiPolygon","coordinates":[[[[473985,103219.699999999],[473570.571,101410.116],[472432.779,101556.742000001],[473895.572,100696.92],[473446.0219,100000.004699999],[472886.87,99133.1789999995],[474024.924,99130.5390000008],[473495.584,98470.841],[474985.596,99178.1730000004],[474910.798,98099.8004000001],[473449.9026,98302.5755000003],[468901.313,99186.6030000001],[468812.3959,100000.050799999],[468805.75,100060.85],[470955.756,100350.005999999],[471714.77,102847.911],[471225.836,103536.297],[472798.776,104429.993000001],[473985,103219.699999999]]],[[[473242.0981,108591.495300001],[473027.0998,108040.0032],[474776.001,108784.300100001],[475647.001,107725.903100001],[475110.7557,105690.979900001],[472298.498,105241.969000001],[471835.784,104429.379000001],[470591.832,105153.311000001],[470435.8,106239.35],[470317.84,105320.09],[469055.4136,104844.0395],[468956.2476,104486.723200001],[468963.977,104432.7995],[468863.4642,104219.5987],[468852.7476,104190.5677],[468833.1322,104016.1351],[468895.6976,106298.6017],[466676.295,106763.1767],[466622.6002,107976.001499999],[467134.198,107793.603700001],[467982.3015,109459.596799999],[466974.2026,110651.5956],[468011.8023,112077.1976],[469089.9018,112633.6983],[473242.0981,108591.495300001]]]]},"properties":{"LAD22CD":"E07000090","LAD22NM":"Havant","BNG_E":470178,"BNG_N":108564,"LONG":-1.00398,"LAT":50.87231,"OBJECTID":116,"GlobalID":"2d13a6e5-0602-4444-b694-385a2064d3d6"}},{"type":"Feature","id":117,"geometry":{"type":"MultiPolygon","coordinates":[[[[431502.811,90619.466],[431788.833,89708.5638999995],[431413.4985,89877.5],[431502.811,90619.466]]],[[[437029.8966,114002.197899999],[437701.1911,112456.6061],[437585.41,112521.880000001],[437029.8966,114002.197899999]]],[[[411614.8011,123351.2004],[413051.8987,120741.297499999],[414110.6965,121352.602499999],[417338.0031,119860.7995],[419780.5035,119745.9024],[423865.5025,116259.700300001],[425733.1985,117821.5033],[426802.0965,117751.803200001],[428890.2983,116950.8025],[429305.5031,118160.1963],[432077.6988,118973.203600001],[433034.703,116972.496300001],[434518.7976,116856.5995],[435013.4023,115312.501499999],[436351.0774,114688.170600001],[436502.2591,114445.98],[437072.25,112602.699999999],[436721.15,113138.550000001],[436037.9115,112450.8072],[435894.957,113056.273],[436023.4,112436.199999999],[436111.85,112137.65],[436776.5,112627.050000001],[438131.5,111385.300000001],[440000.0051,111042.963300001],[440418.151,110966.353],[443861.35,106310.199999999],[445328.4,105751.300000001],[445117.2,105012.25],[446546.2,105004.550000001],[446622.15,103220.550000001],[447701.15,103180.300000001],[447581.9035,102125.8358],[447570.7499,102112.9498],[447581.5094,102122.3506],[447579.197,102101.902899999],[448603.9,101769.1],[448742.3416,102196.7937],[448815.8662,102060.188300001],[448805.13,101923.25],[448025.8891,100848.662799999],[447682.7961,100694.695800001],[446271.6444,98660.0398999993],[444323.5502,98556.8266000003],[444152.7969,98568.8043000009],[444120.7633,98546.0825999994],[442511.1,98460.8000000007],[441815.25,98630.4700000007],[441477.74,98431.6400000006],[442918.66,97714.5399999991],[442392.8304,97336.5041000005],[442433.8773,97349.5596999992],[441728.3516,96849.1241999995],[441667.36,96814.9399999995],[439999.9974,96359.5274999999],[435194.92,95047.0999999996],[433984.5,95058.4000000004],[432870.6,96134.25],[433544.57,93992.7599999998],[432422.11,93452.9800000004],[433192.187,93145.9800000004],[431262.862,91334.7280000001],[429712.168,91045.466],[431161.016,89991.1411000006],[426262.0165,92196.1550999992],[425471.449,92562.4269999992],[421840.6871,93125.9692000002],[422541.9971,94743.4192999993],[418145.2028,94238.1039000005],[418506.5014,95998.1000999995],[417803.0987,97799.8044000007],[415223.9034,96152.2960000001],[413916.4016,99619.6034999993],[413349.801,101027.8004],[413941.7964,103442.099300001],[414840.4009,104108.998400001],[414003.4035,104845.997500001],[413671.0039,107108.399900001],[412061.502,106210.197000001],[410403.4037,107116.997400001],[410748.0968,110056.495999999],[412995.9972,111625.196900001],[413403.0971,114212.296399999],[411210.4963,114704.9954],[408978.2037,113093.296700001],[405655.1967,118001.8017],[403222.4007,119874.5956],[403126.2221,121160.6974],[403610.2979,120324.596799999],[405157.2033,122036.9966],[408043.5023,122244.1973],[408902.4975,123002.100299999],[408941.6039,120567.8971],[410383.3023,122821.202099999],[411614.8011,123351.2004]]]]},"properties":{"LAD22CD":"E07000091","LAD22NM":"New Forest","BNG_E":428748,"BNG_N":106521,"LONG":-1.59293,"LAT":50.85748,"OBJECTID":117,"GlobalID":"012089dc-a594-4984-a0cf-e8475009faf3"}},{"type":"Feature","id":118,"geometry":{"type":"Polygon","coordinates":[[[488597.3041,154233.3005],[488767.2018,151538.8018],[487684.5016,148666.304],[485530.298,149909.098300001],[483745.1021,149555.1996],[483524.1015,150221.898800001],[483275.9004,153580.0975],[484465.201,154367.6021],[483602.2977,155528.399800001],[483938.4983,156775.8027],[485211.7995,158305.404899999],[486306.9003,158462.199999999],[487630.4965,157435.104],[488597.3041,154233.3005]]]},"properties":{"LAD22CD":"E07000092","LAD22NM":"Rushmoor","BNG_E":486022,"BNG_N":153944,"LONG":-0.76807,"LAT":51.27815,"OBJECTID":118,"GlobalID":"b3097beb-d30f-4236-be64-716da734d2ef"}},{"type":"Feature","id":119,"geometry":{"type":"Polygon","coordinates":[[[435050.8019,159039.504699999],[439824.5026,159869.997],[440619.4007,158758.1953],[439928.3986,155851.397299999],[440772.2971,153931.596899999],[437783.8005,150849.599099999],[439981.1011,148514.1976],[440032.5008,147471.596000001],[443144.4012,146369.501499999],[444190.3037,144988.8967],[444927.4039,146064.4988],[446116.6963,145343.395199999],[446158.9027,143023.3993],[448392.902,144173.800000001],[446468.3976,140193.1994],[445711.402,140232.998],[443630.596,137635.501599999],[444165.0985,136840.4991],[441585.73,135855.41],[441570.3036,134815.798699999],[439893.7034,135431.602399999],[439567.3969,134939.0034],[439568.5017,133327.504699999],[441094.0029,133095.101199999],[441319.596,130207.297900001],[441057.6999,129422.602499999],[439271.3992,128816.8959],[438202.3033,126987.399599999],[439237.8006,125237.4005],[442687.5011,122950.904999999],[442475.1991,118961.846899999],[444063.9976,117358.9957],[443658.5962,116637.4022],[441807.0028,117579.602499999],[440583.9964,116580.7984],[438763.5034,116864.6971],[436847.4608,114488.347999999],[436846.2504,114491.5734],[436829.1372,114474.722999999],[436660.98,115144.369999999],[436769.7347,114506.3291],[436519.2121,114667.3992],[436280.2064,114942.199100001],[436231.3306,114955.9672],[436236.6894,114871.418199999],[436351.0774,114688.170600001],[435013.4023,115312.501499999],[434518.7976,116856.5995],[433034.703,116972.496300001],[432077.6988,118973.203600001],[429305.5031,118160.1963],[428890.2983,116950.8025],[426802.0965,117751.803200001],[427971.9964,119976.5964],[426795.6983,120468.4956],[426137.8991,122248.3961],[428345.003,123452.2015],[428192.1973,125005.696799999],[425874.1973,126000.1022],[425690.1016,126864.504699999],[426174.6968,131031.801899999],[425495.6995,132602.5022],[426256.1003,135405.799799999],[423680.4998,136489.1997],[424290.2963,139727.2028],[422997.8005,142196.9959],[423238.5975,143557.996300001],[421467.0967,145026.196],[421769.5997,146226.802300001],[425690.2994,146543.8016],[427493.5974,150473.8467],[429570.4994,150803.5023],[431844.0997,149645.7037],[432478.5984,150031.303300001],[432903.7962,151366.801000001],[432157.5027,151397.6022],[431998.8018,153667.3025],[433373.8966,154321.895099999],[433597.2965,155311.002],[432603.2967,157560.598099999],[433009.3,160036.8992],[435050.8019,159039.504699999]]]},"properties":{"LAD22CD":"E07000093","LAD22NM":"Test Valley","BNG_E":434930,"BNG_N":137329,"LONG":-1.50214,"LAT":51.13417,"OBJECTID":119,"GlobalID":"0837f3b1-c239-44ee-8030-30d06709f7be"}},{"type":"Feature","id":120,"geometry":{"type":"Polygon","coordinates":[[[460830.41,138615.75],[462216.23,137853.42],[463405.4021,138286.995100001],[463528.204,134665.2018],[465058.9986,134608.3981],[462533.8002,132254.102],[464470.3012,127854.4014],[466427.9013,127963.600099999],[464992.799,126325.0492],[465863.0982,124969.3972],[465400.94,122005.18],[465851.3984,120227.104699999],[467137.68,119234.25],[467090.81,117675.609999999],[467836.54,117337.779999999],[467005.8966,111881.003699999],[468011.8023,112077.1976],[466974.2026,110651.5956],[467982.3015,109459.596799999],[467134.198,107793.603700001],[466622.6002,107976.001499999],[466676.295,106763.1767],[462326.0989,106902.0989],[460397.6,106896.800000001],[459892.9,109223.699999999],[458671.5003,110325.099099999],[456662,109814.1],[456521.38,108801.039999999],[455254.6,108689],[454265.9003,107089.7952],[452498.4972,108443.297700001],[451762.1968,111202.398],[451775.999,114349.3971],[449792.51,116818.01],[452175.9999,120143.898499999],[449704.1966,119652.899],[449895.2016,120625.000800001],[447658.7041,121136.0045],[447293.4973,120294.895300001],[445961.4995,120418.899800001],[446223.7007,121482.895199999],[445465.5013,122284.695699999],[442687.5011,122950.904999999],[439237.8006,125237.4005],[438202.3033,126987.399599999],[439271.3992,128816.8959],[441057.6999,129422.602499999],[441319.596,130207.297900001],[441094.0029,133095.101199999],[439568.5017,133327.504699999],[439567.3969,134939.0034],[439893.7034,135431.602399999],[441570.3036,134815.798699999],[441585.73,135855.41],[444165.0985,136840.4991],[443630.596,137635.501599999],[445711.402,140232.998],[446468.3976,140193.1994],[448392.902,144173.800000001],[454030.5038,143765.8968],[455555.4031,142684.7962],[456591.799,143142.895099999],[457043.0018,140842.2037],[455034.91,140240.48],[455118.6,139482.08],[457146.098,138654.799799999],[457869.9979,137465.000399999],[460830.41,138615.75]]]},"properties":{"LAD22CD":"E07000094","LAD22NM":"Winchester","BNG_E":453115,"BNG_N":125901,"LONG":-1.24393,"LAT":51.03002,"OBJECTID":120,"GlobalID":"39a633ba-ba3e-4ecf-aec4-19c3ffa6b61d"}},{"type":"Feature","id":121,"geometry":{"type":"Polygon","coordinates":[[[539081.2031,209217.8014],[538252.7971,207044.5035],[537248.1034,206701.1018],[536935.5001,202352.396600001],[537543.796,199883.1033],[531023.5029,200933.6028],[530366.5033,204136.096000001],[531388.2972,205847.2962],[534177.6014,205782.2048],[534794.9998,209594.603499999],[536589.8012,210168.499199999],[536813.1022,210951.6951],[538449.7963,210946.396600001],[539081.2031,209217.8014]]]},"properties":{"LAD22CD":"E07000095","LAD22NM":"Broxbourne","BNG_E":534742,"BNG_N":204251,"LONG":-0.05073,"LAT":51.7208,"OBJECTID":121,"GlobalID":"891913a4-1202-48c2-b8ce-59fefb1820f9"}},{"type":"Feature","id":122,"geometry":{"type":"Polygon","coordinates":[[[509990.7971,216979.7993],[509216.0003,216423.5989],[509405.4969,214572.398800001],[508420.6982,213180.1971],[509598.8021,212484.0962],[509524.2999,211470.6963],[507657.6013,210951.1951],[508932.2961,208654.502900001],[509044.7011,205858.403000001],[507147.3971,204114.902100001],[507884.1016,201402.6984],[506249.6996,200738.1986],[502672.5963,201913.102299999],[502121.1007,199180.104599999],[500431.3991,199208.396500001],[500723.4968,200788.0044],[499364.1006,202436.8024],[500223.4998,203695.702099999],[499976.0985,204911.8039],[498503.3987,205211.098300001],[497676.6005,206880.2005],[495853.4031,206323.5998],[491899.2037,208334.0044],[490430.4038,211219.7983],[490745.497,212098.3968],[489057.4032,214332.5973],[488032.402,214048.0987],[486504.5015,216670.698000001],[488424.0011,218390.095799999],[489874.2992,218529.595899999],[490552.4967,217552.295600001],[489970.6015,216637.397500001],[491967.2997,213858.8029],[494321.1987,214362.4987],[497872.3959,212979.5046],[499280.8997,215585.6986],[499772.6022,215220.5031],[502157.6015,212863.297900001],[503336.703,214040.400900001],[502698.7991,215188.302300001],[503319.8996,216413.9015],[505409.5031,217422.3029],[504902.3989,218264.901699999],[505439.0039,218562.4965],[507035.0004,217694.095100001],[508821.2022,218022.201099999],[509990.7971,216979.7993]]]},"properties":{"LAD22CD":"E07000096","LAD22NM":"Dacorum","BNG_E":500084,"BNG_N":208745,"LONG":-0.55098,"LAT":51.76845,"OBJECTID":122,"GlobalID":"8f5314d6-6a3b-4799-a4b0-537b8731f92f"}},{"type":"Feature","id":123,"geometry":{"type":"Polygon","coordinates":[[[520600.7972,204864.397299999],[521779.7999,202289.5046],[523075.9977,203164.6041],[525623.4,202425.9955],[527038.3019,201719.897600001],[527045.2031,200413.401699999],[525814.1,198211.5019],[525206.002,197672.5962],[524339.2977,198344.4038],[523755.9019,197353.897399999],[521110.9028,196700.5044],[520681.7968,195107.4004],[517435.4449,194421.011299999],[516579.3029,194866.9066],[513442.4033,192900.7093],[512386.1028,194460.195699999],[512769.1024,195103.001700001],[511670.5964,197280.7983],[512880.8972,198987.6997],[512390.0028,200555.101],[512634.4029,200012.996099999],[513779.5018,200373.2031],[513842.7,201302.897],[515714.296,201850.9001],[516052.5001,200745.5963],[517586.6009,201119.8993],[517421.6009,202400.302999999],[519115.697,203910.8003],[518463.1002,203875.400800001],[518577.5008,205201.501],[519911.7,205791.702099999],[520600.7972,204864.397299999]]]},"properties":{"LAD22CD":"E07000098","LAD22NM":"Hertsmere","BNG_E":519774,"BNG_N":199352,"LONG":-0.26899,"LAT":51.68017,"OBJECTID":123,"GlobalID":"b9876387-6705-40ed-a7e6-ef1bbb175bfe"}},{"type":"Feature","id":124,"geometry":{"type":"Polygon","coordinates":[[[542051.4039,236168.096899999],[542184.2978,233751.5987],[539829.7969,234306.899700001],[537614.7035,233513.596799999],[537204.8993,234658.8989],[535772.6992,235034.2015],[535339.6026,233536.100299999],[534145.9981,233018.0986],[534731.3974,231726.498299999],[533022.1963,230472.5973],[532353.596,232048.396199999],[530181.0966,230076.7006],[530000.0516,228730.096000001],[529311.2014,228744.202],[529411.7994,227201.003699999],[527584.496,227787.4959],[526484.4432,226240.878599999],[524909.1963,227544.6954],[522030.5981,227217.8989],[521561.2975,224440.304],[523705.4009,221697.799000001],[524544.3029,222028.5043],[525826.2038,221215.497099999],[526489.7003,219730.202199999],[525933.4967,219132.5033],[524269.899,219401.7962],[523605.0997,218816.003900001],[524168.6002,217704.1022],[523102.2994,217172.304400001],[523676.6998,217942.7039],[523183.4968,218486.598200001],[522318.3013,217703.002499999],[522407.2985,216446.6022],[521250.2031,216648.304400001],[520796.0981,217853.6994],[519051.4019,216602.997300001],[515888.2999,216672.5973],[514471.5013,218081.1042],[513353.1001,220771.7041],[513680.9979,221301.4025],[511733.0033,223452.3968],[511131.3034,225358.101299999],[509715.4038,227193.196],[510589.2979,232171.200999999],[511388.6978,232293.1961],[511222.601,229380.899800001],[511843.1985,228944.3047],[513459.6015,230072.1019],[513491.3038,231585.198799999],[512230.7988,232957.7959],[516053.2009,232861.4035],[517062.9983,235119.597100001],[518003.1991,235071.8007],[518870.4971,232650.8038],[520410.8971,233294.999399999],[520641.6021,234852.103599999],[523551.4986,236125.199200001],[522226.5997,239087.801200001],[523836.8024,241984.502],[525375.8997,241777.601199999],[526366.5707,244063.172900001],[527071.3976,242843.596100001],[526595.5999,241012.9001],[528081.6979,240290.9968],[528645.3963,237488.798900001],[535877.1971,242422.9965],[537520.8005,240938.601399999],[539993.5026,241400.7991],[542051.4039,236168.096899999]]]},"properties":{"LAD22CD":"E07000099","LAD22NM":"North Hertfordshire","BNG_E":522191,"BNG_N":230255,"LONG":-0.22315,"LAT":51.95737,"OBJECTID":124,"GlobalID":"2b4936c6-f4bf-4551-b282-52d21fcb9b33"}},{"type":"Feature","id":125,"geometry":{"type":"Polygon","coordinates":[[[512375.2029,200599.2983],[510497.2005,201562.602600001],[508537.704,199340.398700001],[508784.1984,198033.003],[508000.9011,198260.5978],[509087.3033,196306.997],[508656.4989,194864.100099999],[512386.1028,194460.195699999],[513442.4033,192900.7093],[510599.8031,191689.505999999],[508054.6012,192401.095100001],[506926.8005,191511.6997],[504132.4998,193616.1973],[503946.1037,190047.398800001],[502556.2008,190258.6984],[501183.0023,194258.003599999],[501296.6028,196772.9037],[502277.798,196544.8989],[502379.4019,197620.301100001],[503466.6039,198202.204500001],[502121.1007,199180.104599999],[502672.5963,201913.102299999],[506249.6996,200738.1986],[507884.1016,201402.6984],[507147.3971,204114.902100001],[509044.7011,205858.403000001],[510447.2023,203699.601],[510293.3001,202737.6962],[511979.9018,202156.8028],[512375.2029,200599.2983]]]},"properties":{"LAD22CD":"E07000102","LAD22NM":"Three Rivers","BNG_E":507313,"BNG_N":196418,"LONG":-0.45005,"LAT":51.65632,"OBJECTID":125,"GlobalID":"261747dd-f842-4f3c-bbae-1df570354d8b"}},{"type":"Feature","id":126,"geometry":{"type":"Polygon","coordinates":[[[512375.2029,200599.2983],[512390.0028,200555.101],[512880.8972,198987.6997],[511670.5964,197280.7983],[512769.1024,195103.001700001],[512386.1028,194460.195699999],[508656.4989,194864.100099999],[509087.3033,196306.997],[508000.9011,198260.5978],[508784.1984,198033.003],[508537.704,199340.398700001],[510497.2005,201562.602600001],[512375.2029,200599.2983]]]},"properties":{"LAD22CD":"E07000103","LAD22NM":"Watford","BNG_E":510441,"BNG_N":198197,"LONG":-0.40429,"LAT":51.6717,"OBJECTID":126,"GlobalID":"11369d4f-4521-4b10-997d-9f6b26b598af"}},{"type":"Feature","id":127,"geometry":{"type":"Polygon","coordinates":[[[607507.3032,156358.902100001],[609323.7974,154514.100099999],[608554.6981,152756.903100001],[610020.9998,149767.3989],[608986.3023,147692.502800001],[610050.5006,146602.2049],[609733.2966,144884.0967],[611041.6971,144543.404200001],[610535.104,142718.796499999],[612034.0974,141392.1962],[610906.0988,139637.7984],[609726.0987,140165.397399999],[608664.9016,138988.304300001],[609108.9971,137381.904200001],[607953.897,135029.7974],[608127.2989,133480.900800001],[606469.3985,132517.196699999],[605707.3982,133185.795299999],[603585.9027,131911.9999],[603025.0984,130389.3957],[601273.0971,132027.096999999],[601255.9968,131113.6984],[600121.6991,130962.3018],[600266.6967,129700.203],[599166.6984,129612.098200001],[598513.302,131593.101199999],[595126.2969,124797.1965],[592389.3983,125939.999399999],[590044.2968,125065.6996],[587913.2041,126067.402899999],[586760.6023,127638.6031],[582858.3962,126862.5953],[581907.7984,130144.3959],[583099.1026,132601.602499999],[585469.302,134883.2994],[584225.6995,135744.9027],[581936.9035,135533.203299999],[581416.401,137862.5966],[582696.2983,138634.695599999],[582268.9981,140161.1986],[584733.7024,141315.098300001],[586366.4966,144719.9037],[587762.303,145588.705],[587627.9003,146967.700300001],[589412.0985,147978.6009],[589861.8996,149282.6976],[591865.2021,149150.4954],[594321.1007,152587.501599999],[595038.6024,152470.904999999],[595250.6983,151416.8967],[597156.9977,151023.599300001],[598470.403,152494.2983],[599761.2003,151846.9036],[599979.1007,152749.995100001],[603835.9012,154263.7018],[604086.6995,155196.9047],[605878.5986,154894.5012],[606227.2987,156491.1042],[607507.3032,156358.902100001]]]},"properties":{"LAD22CD":"E07000105","LAD22NM":"Ashford","BNG_E":597640,"BNG_N":140644,"LONG":0.823374,"LAT":51.13096,"OBJECTID":127,"GlobalID":"4124a1c6-479a-4ce7-8613-10102a7d6e91"}},{"type":"Feature","id":128,"geometry":{"type":"Polygon","coordinates":[[[626514.5024,163930.104800001],[625259.9999,164207.4954],[625421.1001,163524.200999999],[624483.7027,163212.4003],[625136.7033,162391.0954],[623517.9009,160620.702099999],[623208.3978,159578.4005],[624112.1967,158628.3024],[622955.2003,157088.403200001],[622861.7013,155733.4011],[624203.6014,155261.496200001],[622556.7989,151335.100099999],[623357.6005,151572.102299999],[625166.2041,150287.699899999],[623349.9985,147618.6039],[622359.6018,148281.304199999],[621174.399,147532.398600001],[620456.6994,148247.403899999],[620103.4975,146702.6961],[617844.7959,147789.494999999],[617952.1961,148743.801899999],[617355.4021,147675.397700001],[616103.9997,147851.397299999],[613728.5976,149532.596100001],[613214.7984,147282.100299999],[610050.5006,146602.2049],[608986.3023,147692.502800001],[610020.9998,149767.3989],[608554.6981,152756.903100001],[609323.7974,154514.100099999],[607507.3032,156358.902100001],[609718.002,158140.302100001],[609648.3972,161016.698799999],[610352.8964,161412.895400001],[607101.8029,164098.696599999],[606141.2038,164027.4969],[605571.4518,164856.956],[609369.599,165411.241],[611239.237,167312.153000001],[619999.9641,168701.0052],[624465.0299,169408.859300001],[624510.1475,169411.651799999],[624888.7001,167847.203600001],[623742.9993,167896.8993],[623854.8024,166869.003599999],[626514.5024,163930.104800001]]]},"properties":{"LAD22CD":"E07000106","LAD22NM":"Canterbury","BNG_E":616032,"BNG_N":158096,"LONG":1.096342,"LAT":51.28102,"OBJECTID":128,"GlobalID":"696f3ada-7927-4443-bf10-527c9f4ed177"}},{"type":"Feature","id":129,"geometry":{"type":"Polygon","coordinates":[[[560920.4287,176534.3193],[560645.4019,175205.5973],[561768.2967,174101.103399999],[563215.4039,168649.6039],[562687.1016,167868.397500001],[558316.304,170058.6006],[556288.2993,170024.4004],[555807.4968,168739.498199999],[553667.3016,168735.1994],[554057.598,169637.901000001],[553055.65,171068.6515],[549830.7015,169941.5041],[549962.8039,172412.4968],[550557.8994,172175.004799999],[551102.1971,173822.7031],[553184.3966,175118.4022],[554339.8705,177877.124299999],[558129.4,175197.050000001],[559999.9889,176093.307800001],[560920.4287,176534.3193]]]},"properties":{"LAD22CD":"E07000107","LAD22NM":"Dartford","BNG_E":556167,"BNG_N":172917,"LONG":0.245276,"LAT":51.43373,"OBJECTID":129,"GlobalID":"94c31ef6-56f5-4162-9b7c-e85f91bb0144"}},{"type":"Feature","id":130,"geometry":{"type":"Polygon","coordinates":[[[626514.5024,163930.104800001],[633253.8999,161853.1993],[634150.1892,162343.035399999],[634113.0718,162284.504799999],[635039.2204,162595.818299999],[635819.5387,159999.9705],[636957.2806,156215.0985],[637842.4782,152682.1676],[638126.4,147233.699999999],[637521.902,145170.481000001],[636300.838,143369.52],[633979.8,142171.85],[633986.1897,142089.0703],[633974.51,142083.288000001],[634058.95,141146.449999999],[633690.309,141760.225],[632175.55,141203.449999999],[632679.95,140228.15],[631759.6,140487.949999999],[632298.8181,140255.7928],[632017.45,140276.199999999],[633030.55,139940.75],[632283.4928,140000.0034],[631230.15,140083.550000001],[631089.0699,140000.023800001],[631007.352,139951.642899999],[625992.8518,138195.078199999],[625625.1405,138132.660800001],[625549.2902,138063.7776],[624455.6035,137981.602499999],[623767.0997,138601.904899999],[623864.0039,140290.1017],[622028.7027,140888.8003],[624660.6004,144036.999199999],[624397.7974,144622.3016],[623221.5982,144257.1961],[621784.8963,145210.903100001],[621127.4021,144644.7952],[619884.6983,145423.4023],[620103.4975,146702.6961],[620456.6994,148247.403899999],[621174.399,147532.398600001],[622359.6018,148281.304199999],[623349.9985,147618.6039],[625166.2041,150287.699899999],[623357.6005,151572.102299999],[622556.7989,151335.100099999],[624203.6014,155261.496200001],[622861.7013,155733.4011],[622955.2003,157088.403200001],[624112.1967,158628.3024],[623208.3978,159578.4005],[623517.9009,160620.702099999],[625136.7033,162391.0954],[624483.7027,163212.4003],[625421.1001,163524.200999999],[625259.9999,164207.4954],[626514.5024,163930.104800001]]]},"properties":{"LAD22CD":"E07000108","LAD22NM":"Dover","BNG_E":628964,"BNG_N":150942,"LONG":1.276887,"LAT":51.21176,"OBJECTID":130,"GlobalID":"dbe70093-71c3-4139-be9f-31e778194b85"}},{"type":"Feature","id":131,"geometry":{"type":"Polygon","coordinates":[[[570829.5667,176121.590700001],[572998.004,174523.8024],[573192.2989,171418.101399999],[572221.2038,171120.396600001],[571757.7984,169474.3978],[570656.3984,169439.5978],[570784.403,168671.0977],[569251.4977,168247.598999999],[567304.2039,164278.795],[565814.2966,162568.104699999],[565921.2021,161660.4045],[563233.4029,161504.899],[562687.1016,167868.397500001],[563215.4039,168649.6039],[561768.2967,174101.103399999],[560645.4019,175205.5973],[560920.4287,176534.3193],[560930.7816,176539.2797],[561668.75,174925.9],[565633.76,174303.460000001],[569667.74,174872.640000001],[570960.4525,175818.0725],[570829.5667,176121.590700001]]]},"properties":{"LAD22CD":"E07000109","LAD22NM":"Gravesham","BNG_E":566969,"BNG_N":169114,"LONG":0.398744,"LAT":51.39649,"OBJECTID":131,"GlobalID":"3ec6f6a5-7c67-42fe-9f7d-241bd44d1ef7"}},{"type":"Feature","id":132,"geometry":{"type":"Polygon","coordinates":[[[581314.7971,162568.804500001],[581555.1984,161730.804400001],[582144.7038,162780.6039],[583950.9988,163047.5974],[585714.6008,162239.998600001],[586522.5014,158299.4966],[589283.7971,159084.002],[591448.1998,156845.2029],[592591.3034,156970.1971],[591950.5962,154644.7027],[592819.1968,154424.9956],[593810.8963,155596.600299999],[594791.1022,155101.1021],[595038.6024,152470.904999999],[594321.1007,152587.501599999],[591865.2021,149150.4954],[589861.8996,149282.6976],[589412.0985,147978.6009],[587627.9003,146967.700300001],[587762.303,145588.705],[586366.4966,144719.9037],[584733.7024,141315.098300001],[584233.1035,141742.695900001],[584749.5989,142560.401799999],[583148.103,142035.801999999],[582032.8018,143191.801100001],[581472.0964,142536.198799999],[580213.4961,142804.6019],[580512.2971,141537.4047],[579138.101,140299.199100001],[579303.802,141341.900599999],[577321.3018,140259.500499999],[574748.1996,141354.097100001],[572830.4973,141099.100099999],[572663.4029,142556.0031],[570704.5001,144751.004799999],[568987.697,145143.4025],[566677.2989,147039.6996],[567800.202,147110.7993],[568306.8033,149698.1987],[566156.7965,151117.002499999],[568246.6968,153185.100500001],[569777.5986,152800.1008],[569784.7965,155140.1009],[572924.4993,155485.0022],[574323.4965,158259.698000001],[573839.1981,159110.6044],[575163.0993,159363.602],[576032.3019,162541.802200001],[577337.6023,161827.5967],[578650.6035,163080.797900001],[581314.7971,162568.804500001]]]},"properties":{"LAD22CD":"E07000110","LAD22NM":"Maidstone","BNG_E":580489,"BNG_N":151670,"LONG":0.584061,"LAT":51.23566,"OBJECTID":132,"GlobalID":"9bc102ad-5bb7-488a-958f-3e5c26f816ac"}},{"type":"Feature","id":133,"geometry":{"type":"Polygon","coordinates":[[[562687.1016,167868.397500001],[563233.4029,161504.899],[560766.4971,162974.998199999],[560585.4026,163824.0952],[559289.1512,163137.0019],[559274.3966,160912.0987],[557960.6038,159605.402799999],[557550.2966,157773.497099999],[558068.2019,153169.904899999],[556917.9994,153079.900699999],[556955.5969,151121.3013],[555853.7022,150480.504699999],[555260.9977,151873.296],[553725.0005,150586.4044],[554579.1971,149592.4989],[553867.5494,149121.4038],[554316.8516,148025.9473],[557347.0971,147003.200099999],[555736.3997,145126.397299999],[553263.6976,143630.195599999],[554810.1,141477.002],[552653.2992,139206.301899999],[551262.2997,139780.5975],[549297.3038,140831.5967],[543499.5994,140151.701300001],[543562.501,144379.201199999],[542130.8038,148091.0987],[543747.7015,151857.400599999],[542503.0518,156819.2502],[545520.2001,156949.2031],[545401.397,159498.5032],[547648.4979,161080.8002],[547640.5,162692.4991],[548928.898,162732.897299999],[549897.198,165601.2963],[549521.5033,168162.0033],[550541.2031,168157.404899999],[549549.0593,169902.1479],[549830.7015,169941.5041],[553055.65,171068.6515],[554057.598,169637.901000001],[553667.3016,168735.1994],[555807.4968,168739.498199999],[556288.2993,170024.4004],[558316.304,170058.6006],[562687.1016,167868.397500001]]]},"properties":{"LAD22CD":"E07000111","LAD22NM":"Sevenoaks","BNG_E":552776,"BNG_N":155218,"LONG":0.188936,"LAT":51.27563,"OBJECTID":133,"GlobalID":"9ab9cec3-662c-4595-8946-3f9697ff694a"}},{"type":"Feature","id":134,"geometry":{"type":"Polygon","coordinates":[[[620103.4975,146702.6961],[619884.6983,145423.4023],[621127.4021,144644.7952],[621784.8963,145210.903100001],[623221.5982,144257.1961],[624397.7974,144622.3016],[624660.6004,144036.999199999],[622028.7027,140888.8003],[623864.0039,140290.1017],[623767.0997,138601.904899999],[624455.6035,137981.602499999],[625549.2902,138063.7776],[625215.3259,137760.4892],[624591.7,137302],[624593.8344,137196.084000001],[623220.45,135948.85],[623886.5496,135591.6734],[615611.2,133811.9],[615221.4784,133481.8989],[614556.405,133320.17],[610249.67,129297.48],[609824.3914,127970.0581],[609560.6,127561.4],[609334.1582,126439.893200001],[608233.23,123003.566],[608815.2355,120000.017000001],[609439.5362,116778.195499999],[609435.6523,116751.867900001],[600750.0241,117710.077099999],[600741.232,117710.966399999],[601609.8996,118784.6976],[600686.7001,120960.9046],[599644.5986,121419.5033],[597712.5004,119607.502],[595554.702,123448.102700001],[595057.4011,123228.795399999],[595126.2969,124797.1965],[598513.302,131593.101199999],[599166.6984,129612.098200001],[600266.6967,129700.203],[600121.6991,130962.3018],[601255.9968,131113.6984],[601273.0971,132027.096999999],[603025.0984,130389.3957],[603585.9027,131911.9999],[605707.3982,133185.795299999],[606469.3985,132517.196699999],[608127.2989,133480.900800001],[607953.897,135029.7974],[609108.9971,137381.904200001],[608664.9016,138988.304300001],[609726.0987,140165.397399999],[610906.0988,139637.7984],[612034.0974,141392.1962],[610535.104,142718.796499999],[611041.6971,144543.404200001],[609733.2966,144884.0967],[610050.5006,146602.2049],[613214.7984,147282.100299999],[613728.5976,149532.596100001],[616103.9997,147851.397299999],[617355.4021,147675.397700001],[617952.1961,148743.801899999],[617844.7959,147789.494999999],[620103.4975,146702.6961]]]},"properties":{"LAD22CD":"E07000112","LAD22NM":"Folkestone and Hythe","BNG_E":610318,"BNG_N":134595,"LONG":1.000795,"LAT":51.07213,"OBJECTID":134,"GlobalID":"7f5a0f7f-c364-4506-aa12-68325606149d"}},{"type":"Feature","id":135,"geometry":{"type":"MultiPolygon","coordinates":[[[[586672.9985,171595.3007],[587540.3887,169858.965299999],[586012.5031,169985.8014],[585513.8996,170844.5956],[586672.9985,171595.3007]]],[[[592415.73,168391.77],[592540.26,166271.189999999],[590534.1,164285.9],[592716.69,166216.710000001],[595984.1,165914.300000001],[596222.6,164553.26],[596246.03,165686.779999999],[599657.1,165763.1],[600000.0136,165575.0733],[601866.81,164551.470000001],[600746.59,162778.82],[601722.75,163671.380000001],[603197.7701,162954.656099999],[601851.47,164244.310000001],[605567.3622,164856.359200001],[605571.4518,164856.956],[606141.2038,164027.4969],[607101.8029,164098.696599999],[610352.8964,161412.895400001],[609648.3972,161016.698799999],[609718.002,158140.302100001],[607507.3032,156358.902100001],[606227.2987,156491.1042],[605878.5986,154894.5012],[604086.6995,155196.9047],[603835.9012,154263.7018],[599979.1007,152749.995100001],[599761.2003,151846.9036],[598470.403,152494.2983],[597156.9977,151023.599300001],[595250.6983,151416.8967],[595038.6024,152470.904999999],[594791.1022,155101.1021],[593810.8963,155596.600299999],[592819.1968,154424.9956],[591950.5962,154644.7027],[592591.3034,156970.1971],[591448.1998,156845.2029],[589283.7971,159084.002],[586522.5014,158299.4966],[585714.6008,162239.998600001],[583950.9988,163047.5974],[582144.7038,162780.6039],[581555.1984,161730.804400001],[581314.7971,162568.804500001],[583516.3027,166328.8982],[582696.4962,166617.095699999],[582855.1972,167690.398499999],[583249.5045,168831.5461],[583400.3,168851.66],[582929.0139,167240.3375],[584303.01,169829.09],[585937.45,167187.140000001],[587036.68,169272.369999999],[588143.09,169399.560000001],[587661.05,167973.74],[588972.66,168510.390000001],[587586.87,172447.220000001],[589757,172577.9],[588982.4,171731.199999999],[589740.21,170205.17],[592415.73,168391.77]]],[[[586338.85,172793.65],[587000,171806.449999999],[585059.9018,172090.9988],[586338.85,172793.65]]],[[[601839.548,172638.686000001],[605432.62,167805.1],[601796.39,165693.09],[599999.9912,166764.095000001],[599004.89,167357.369999999],[598958.79,166746.27],[597804.58,167449.779999999],[598583.61,166721.4],[597763.83,166557.25],[595419.19,167429.48],[592638.13,167065.539999999],[592428.22,169094.187999999],[590180.52,170347.85],[589355.77,171892.42],[590128.93,171311.140000001],[591105.45,172059.35],[590272.37,173034.130000001],[591150.85,175481.5],[593359.0544,175035.543400001],[594098.902,174843.942500001],[596417.851,173408.504000001],[600000.0109,172899.878900001],[601839.548,172638.686000001]]]]},"properties":{"LAD22CD":"E07000113","LAD22NM":"Swale","BNG_E":593583,"BNG_N":161818,"LONG":0.776893,"LAT":51.32251,"OBJECTID":135,"GlobalID":"4eb6c1d7-799a-4c29-bb38-e18c8989bd07"}},{"type":"Feature","id":136,"geometry":{"type":"Polygon","coordinates":[[[634150.1892,162343.035399999],[633253.8999,161853.1993],[626514.5024,163930.104800001],[623854.8024,166869.003599999],[623742.9993,167896.8993],[624888.7001,167847.203600001],[624510.1475,169411.651799999],[630783.7,169799.949999999],[635493.0785,171319.927100001],[636092.5342,171481.0887],[638358.65,171648.449999999],[639573.88,170968.83],[639999.9911,167788.421399999],[640000.55,167784.25],[639999.9913,167782.682600001],[638692,164113.4],[638558.75,164705.35],[637979.34,164245.550000001],[638621.45,163924.199999999],[635406.051,164323.412],[634150.1892,162343.035399999]]]},"properties":{"LAD22CD":"E07000114","LAD22NM":"Thanet","BNG_E":631839,"BNG_N":166752,"LONG":1.328226,"LAT":51.35252,"OBJECTID":136,"GlobalID":"1de2920d-5fd0-4221-a2c6-ffc873513299"}},{"type":"Feature","id":137,"geometry":{"type":"Polygon","coordinates":[[[576032.3019,162541.802200001],[575163.0993,159363.602],[573839.1981,159110.6044],[574323.4965,158259.698000001],[572924.4993,155485.0022],[569784.7965,155140.1009],[569777.5986,152800.1008],[568246.6968,153185.100500001],[566156.7965,151117.002499999],[568306.8033,149698.1987],[567800.202,147110.7993],[566677.2989,147039.6996],[565611.3032,147378.7026],[565519.8985,146624.998400001],[563722.9039,146335.601199999],[561401.3008,147060.2038],[559287.1023,144182.1976],[555736.3997,145126.397299999],[557347.0971,147003.200099999],[554316.8516,148025.9473],[553867.5494,149121.4038],[554579.1971,149592.4989],[553725.0005,150586.4044],[555260.9977,151873.296],[555853.7022,150480.504699999],[556955.5969,151121.3013],[556917.9994,153079.900699999],[558068.2019,153169.904899999],[557550.2966,157773.497099999],[557960.6038,159605.402799999],[559274.3966,160912.0987],[559289.1512,163137.0019],[560585.4026,163824.0952],[560766.4971,162974.998199999],[563233.4029,161504.899],[565921.2021,161660.4045],[565814.2966,162568.104699999],[567304.2039,164278.795],[567240.1975,163330.796399999],[568528.0018,163757.7042],[570984.7002,163026.5035],[571071.1992,166163.195599999],[574381.3026,164711.801100001],[574622.0007,163409.104],[576032.3019,162541.802200001]]]},"properties":{"LAD22CD":"E07000115","LAD22NM":"Tonbridge and Malling","BNG_E":564014,"BNG_N":153898,"LONG":0.349306,"LAT":51.26064,"OBJECTID":137,"GlobalID":"09e78773-3633-430c-8daf-0107f599d1e8"}},{"type":"Feature","id":138,"geometry":{"type":"Polygon","coordinates":[[[566677.2989,147039.6996],[568987.697,145143.4025],[570704.5001,144751.004799999],[572663.4029,142556.0031],[572830.4973,141099.100099999],[574748.1996,141354.097100001],[577321.3018,140259.500499999],[579303.802,141341.900599999],[579138.101,140299.199100001],[580512.2971,141537.4047],[580213.4961,142804.6019],[581472.0964,142536.198799999],[582032.8018,143191.801100001],[583148.103,142035.801999999],[584749.5989,142560.401799999],[584233.1035,141742.695900001],[584733.7024,141315.098300001],[582268.9981,140161.1986],[582696.2983,138634.695599999],[581416.401,137862.5966],[581936.9035,135533.203299999],[584225.6995,135744.9027],[585469.302,134883.2994],[583099.1026,132601.602499999],[581907.7984,130144.3959],[582858.3962,126862.5953],[580294.6027,125853.6041],[578409.7983,126588.8037],[578066.9027,127764.3971],[573456.0996,128583.602600001],[572731.2021,131269.2039],[569548.9507,132036.654300001],[567948.2009,134262.3971],[566348.2963,134808.1009],[564747.5012,134267.3957],[565244.802,136555.0009],[563542.9967,136621.6018],[562815.1969,138529.8956],[559239.2974,138102.198000001],[559387.2962,137247.2027],[557200.1,137460.851600001],[555889.9969,138488.297499999],[552095.2982,137366.898499999],[550638.297,138261.102499999],[551262.2997,139780.5975],[552653.2992,139206.301899999],[554810.1,141477.002],[553263.6976,143630.195599999],[555736.3997,145126.397299999],[559287.1023,144182.1976],[561401.3008,147060.2038],[563722.9039,146335.601199999],[565519.8985,146624.998400001],[565611.3032,147378.7026],[566677.2989,147039.6996]]]},"properties":{"LAD22CD":"E07000116","LAD22NM":"Tunbridge Wells","BNG_E":573139,"BNG_N":136599,"LONG":0.471632,"LAT":51.10254,"OBJECTID":138,"GlobalID":"9c194884-5fce-41b9-b61d-3b687a230692"}},{"type":"Feature","id":139,"geometry":{"type":"Polygon","coordinates":[[[392703.4013,434383.498400001],[391643.1029,433642.400599999],[391874.3026,432420.8002],[391111.7994,431537.6031],[391447.8021,428359.402799999],[388662.604,425190.799799999],[384750.9986,426829.0009],[383502.0986,428770.1952],[382382.0029,427354.2005],[380627.1983,428441.499299999],[379382.5981,427895.895500001],[377548.7976,433221.501],[379474.3986,435175.0019],[380218.5978,436130.1984],[380691.4026,434721.8016],[382333.2004,435445.704399999],[382905.3994,434638.395500001],[385352.0965,435751.8967],[386431.6966,435031.403000001],[387189.5991,436572.7018],[391629.9025,435952.6993],[392703.4013,434383.498400001]]]},"properties":{"LAD22CD":"E07000117","LAD22NM":"Burnley","BNG_E":384886,"BNG_N":430882,"LONG":-2.2308,"LAT":53.77406,"OBJECTID":139,"GlobalID":"d65bb43f-8f96-48db-9c54-2784a8b60e36"}},{"type":"Feature","id":140,"geometry":{"type":"Polygon","coordinates":[[[363060.7988,427981.201099999],[364461.1977,422995.698100001],[366064.6972,421812.9967],[364921.8987,418843.296800001],[366280.6023,414615.696900001],[362419.803,411151.6985],[360670.3,412859.1997],[358669.9987,410970.3004],[358109.5984,412599.604],[354484.7974,412190.4011],[353825.0029,413309.1009],[354161.3025,414679.498600001],[353151.3979,413706.2972],[351406.7018,414377.805],[349903.3963,413388.598200001],[348441.2006,414385.7027],[347443.0041,413561.1987],[345814.7034,418771.8972],[345935.0978,421497.9969],[350797.1032,422064.104800001],[351883.3982,421330.3049],[351637.8026,420005.304099999],[353022.5029,419663.1021],[353320.1001,420794.598200001],[356580.8981,420669.2041],[356643.7007,421782.395500001],[355354.9457,422128.264799999],[355775.8009,424028.102600001],[356643.7997,424786.695499999],[357068.1977,424144.999199999],[358536.9976,424724.6033],[359738.6988,427081.6985],[362033.4972,428461.703500001],[363060.7988,427981.201099999]]]},"properties":{"LAD22CD":"E07000118","LAD22NM":"Chorley","BNG_E":359189,"BNG_N":419724,"LONG":-2.61921,"LAT":53.6724,"OBJECTID":140,"GlobalID":"045ab3f0-b2e1-4f8e-8496-2b91200a94b4"}},{"type":"Feature","id":141,"geometry":{"type":"MultiPolygon","coordinates":[[[[347746.8016,428616.1993],[347089.0239,428381.1362],[347739.7361,428669.8038],[347746.8016,428616.1993]]],[[[335867.9909,441372.9684],[338011.5137,439794.4329],[340626.3009,441336.598099999],[342508.4009,440543.7951],[341532.499,439232.4004],[343669.9981,438824.0973],[342875.2979,437532.596999999],[344754.9987,437550.5019],[345719.3988,436282.8048],[348673.2002,432684.504799999],[347460.5001,430788.297499999],[347739.5887,428670.9222],[343664.67,427227.210000001],[343472,428592.9],[343577.6,427207.699999999],[340783.95,426671.07],[339999.9813,426628.375299999],[338492.9,426546.300000001],[337230.1,426702.1],[337761.1333,427053.5864],[335686.1,426847.4],[331595.45,428367.9],[330433.0259,431649.225400001],[330433.0947,431650.1982],[332040.3972,432107.8499],[332292.8032,431242.7974],[334425.1986,431366.801899999],[333963.401,433247.003699999],[335319.5981,433501.900800001],[334590.8007,436258.9016],[333572.7995,437130.702099999],[336793.0977,437325.496300001],[336572.1961,439438.8014],[335513.0025,440662.4011],[335867.9909,441372.9684]]]]},"properties":{"LAD22CD":"E07000119","LAD22NM":"Fylde","BNG_E":339554,"BNG_N":433811,"LONG":-2.91914,"LAT":53.79709,"OBJECTID":141,"GlobalID":"c4a7a807-e55d-448c-9df8-c239aa0acb8e"}},{"type":"Feature","id":142,"geometry":{"type":"Polygon","coordinates":[[[377548.7976,433221.501],[379382.5981,427895.895500001],[378588.7966,427932.494999999],[378607.0017,426487.998500001],[377385.8999,425169.296],[372966.4977,423266.500600001],[371465.6987,424838.1008],[371077.4964,428204.6971],[370310.1039,428992.4016],[370677.3966,430117.7995],[369402.9987,431708.6041],[373976.798,435664.7017],[373851.5967,434187.3046],[375731.5036,433977.3047],[376015.0018,433037.503699999],[376603.8114,433630.1587],[377548.7976,433221.501]]]},"properties":{"LAD22CD":"E07000120","LAD22NM":"Hyndburn","BNG_E":374407,"BNG_N":428971,"LONG":-2.38964,"LAT":53.75648,"OBJECTID":142,"GlobalID":"8afa0525-6fde-4016-a301-c1a1530238bf"}},{"type":"Feature","id":143,"geometry":{"type":"Polygon","coordinates":[[[370052.1984,481319.203199999],[365227.304,473672.801999999],[363491.0014,473169.8959],[363191.2027,470277.6039],[365826.2995,466650.402100001],[366774.2012,466732.7985],[369714.2003,464470.896],[369352.2999,461239.0011],[367860.7023,460566.2037],[367245.4971,458420.697899999],[365553.7013,459044.099400001],[364246.3974,457700.1041],[362603.404,457773.802999999],[362035.3028,456164.503699999],[363529.2007,453347.800000001],[359612.6978,450854.503699999],[357902.5979,451467.8981],[357554.2028,450506.703199999],[354949.4973,450618.101299999],[354015.2,449943.4045],[353163.3038,454034.3035],[351872.4982,453411.3018],[351442.6997,451449.6033],[350525.2965,450955.704700001],[350374.5026,452156.6009],[347860.501,453559.6993],[346693.0003,450276.799000001],[347333.7982,449146.2027],[343326.2038,447226.6021],[341981.0963,449330.6998],[342267.2591,450051.147299999],[342316.851,450066.703400001],[342293.8496,450118.0919],[342360.3032,450285.396600001],[342224.8135,450412.854],[343392.1,451148.6],[341910,451725.9],[343594.99,451335.83],[343054.1,451866.699999999],[343847,451618.699999999],[343552.8,452403.300000001],[345215.46,451271.130000001],[344072.72,452462.51],[345257.73,452285.1],[342899.85,453044],[342433.86,454032.220000001],[343982.29,456287.1],[346144.33,455736.949999999],[345507,456150.1],[345364.58,457551.460000001],[344169.6,456953.199999999],[344730.57,457978.970000001],[343696.65,456768.4],[343023.48,457951.890000001],[343420.3,456901.800000001],[342557.98,457051.279999999],[342331.6,455183.4],[341935.23,456559.189999999],[342002.8,455363.1],[341081.7,455478.1],[340869.35,458842.35],[339999.99,459516.4038],[339545.81,459868.550000001],[339723.2042,460000.0035],[339741.8829,460013.844900001],[340336.16,460137.08],[339920.4938,460146.199899999],[340000.0009,460205.116599999],[340746.85,460758.550000001],[342357.3962,464416.0277],[343148.4277,464828.0657],[344703.45,464965.300000001],[346493.3,466190.869999999],[346842.77,466862.33],[346362.71,466206.82],[346043.8,467486.1],[349114.8993,471364.993899999],[347921.08,470464.48],[347702.93,472241.789999999],[347182.04,471022.039999999],[346229.25,471923.880000001],[346025.11,472729.9],[347160.14,473545.32],[345999.26,473368.91],[345401.5929,475705.060000001],[345401.2233,475705.2706],[345446.8006,475698.702099999],[347972.304,478292.0997],[349964.0964,476959.5012],[352170.5984,476729.7969],[352015.8963,475052.8969],[355703.401,474137.698899999],[358350.7994,478665.3029],[359323.4033,477935.901699999],[362512.5022,477911.6986],[370144.7986,482748.704],[370052.1984,481319.203199999]]]},"properties":{"LAD22CD":"E07000121","LAD22NM":"Lancaster","BNG_E":356896,"BNG_N":464988,"LONG":-2.6603,"LAT":54.07901,"OBJECTID":143,"GlobalID":"6955920e-4fe2-435d-b615-9e8173492fd7"}},{"type":"Feature","id":144,"geometry":{"type":"Polygon","coordinates":[[[397063.002,439322.3047],[397009.203,437026.901799999],[396065.9021,436596.505000001],[392703.4013,434383.498400001],[391629.9025,435952.6993],[387189.5991,436572.7018],[386431.6966,435031.403000001],[385352.0965,435751.8967],[382905.3994,434638.395500001],[382333.2004,435445.704399999],[380691.4026,434721.8016],[380218.5978,436130.1984],[379474.3986,435175.0019],[379223.1963,436888.4014],[380185.799,437834.400599999],[378143.2994,438314.903100001],[379180.6023,439010.1041],[379109.6041,440633.6993],[385354.8999,443847.999199999],[383956.8013,448597.5997],[387988.2982,450699.498],[388130.5007,448821.695499999],[391415.1022,447826.2005],[392652.8013,446613.297700001],[393327.0989,443865.7042],[394742.8996,442165.900699999],[394185.0965,441332.2994],[397063.002,439322.3047]]]},"properties":{"LAD22CD":"E07000122","LAD22NM":"Pendle","BNG_E":387637,"BNG_N":443368,"LONG":-2.18957,"LAT":53.88636,"OBJECTID":144,"GlobalID":"13031039-03fd-420d-b7d5-e123a2a8914b"}},{"type":"Feature","id":145,"geometry":{"type":"Polygon","coordinates":[[[360594.8,431847.804300001],[358330.9041,431968.0998],[359094.9986,430681.798],[356811.9989,429554.300799999],[356183.4037,428220.4026],[355325.9998,428731.1964],[353119.8028,428218.5031],[351833.3012,429278.499700001],[347746.8016,428616.1993],[347739.7361,428669.8038],[347752.8411,428675.6174],[347739.5887,428670.9222],[347460.5001,430788.297499999],[348673.2002,432684.504799999],[345719.3988,436282.8048],[347577.0028,436773.5043],[347438.2961,437726.4015],[349384.9963,438515.195699999],[350120.0023,436943.9955],[351637.5964,436602.5032],[350996.6007,439678.502800001],[353405.1974,439944.4966],[355031.2966,444079.0031],[357694.3029,444367.3006],[358985.6031,442858.002599999],[358704.0013,440600.4988],[360095.2977,438227.898],[358965.9964,435655.4044],[360860.596,433533.6017],[360594.8,431847.804300001]]]},"properties":{"LAD22CD":"E07000123","LAD22NM":"Preston","BNG_E":352825,"BNG_N":436432,"LONG":-2.71809,"LAT":53.82202,"OBJECTID":145,"GlobalID":"4c4828a6-bac1-4e2b-ac52-bfb2928c9a6d"}},{"type":"Feature","id":146,"geometry":{"type":"Polygon","coordinates":[[[387988.2982,450699.498],[383956.8013,448597.5997],[385354.8999,443847.999199999],[379109.6041,440633.6993],[379180.6023,439010.1041],[378143.2994,438314.903100001],[380185.799,437834.400599999],[379223.1963,436888.4014],[379474.3986,435175.0019],[377548.7976,433221.501],[376603.8114,433630.1587],[376015.0018,433037.503699999],[375731.5036,433977.3047],[373851.5967,434187.3046],[373976.798,435664.7017],[369402.9987,431708.6041],[363748.5029,429031.4004],[362898.0001,429663.7994],[364138.8983,430454.403100001],[364015.2965,431197.100500001],[360594.8,431847.804300001],[360860.596,433533.6017],[358965.9964,435655.4044],[360095.2977,438227.898],[358704.0013,440600.4988],[358985.6031,442858.002599999],[357694.3029,444367.3006],[359015.2029,444453.695900001],[359800.0008,445961.804199999],[358973.4994,449341.3968],[357554.2028,450506.703199999],[357902.5979,451467.8981],[359612.6978,450854.503699999],[363529.2007,453347.800000001],[362035.3028,456164.503699999],[362603.404,457773.802999999],[364246.3974,457700.1041],[365553.7013,459044.099400001],[367245.4971,458420.697899999],[367860.7023,460566.2037],[369352.2999,461239.0011],[372209.7989,460317.7048],[375605.7005,461521.8002],[376685.4984,458181.296399999],[377844.2016,457098.0964],[377009.1995,457225.200099999],[376997.3019,455459.9954],[377809.696,454872.3036],[379173.8991,455357.104800001],[380792.8993,453190.505000001],[384991.6967,453964.603399999],[385599.201,453561.798699999],[384878.4013,452818.9014],[385286.6967,451690.4044],[387239.2014,452627.6961],[387988.2982,450699.498]]]},"properties":{"LAD22CD":"E07000124","LAD22NM":"Ribble Valley","BNG_E":372687,"BNG_N":447676,"LONG":-2.4174,"LAT":53.9245,"OBJECTID":146,"GlobalID":"dfd1be4b-c03a-4f7c-ab65-afedcd0256d4"}},{"type":"Feature","id":147,"geometry":{"type":"Polygon","coordinates":[[[388662.604,425190.799799999],[390432.596,420649.5998],[389429.7989,416106.0002],[387839.3019,415759.3992],[388039.7969,416875.200099999],[386533.2013,417557.005000001],[385712.0018,419187.3982],[383850.0031,418585.850299999],[382257.6012,416657.6022],[383113.0019,413790.802999999],[382117.0971,413139.8991],[380575.4029,416025.5032],[380342.2983,418953.6951],[379162.1992,417655.096999999],[375568.5978,419017.9969],[375369.8011,421263.604],[373792.4961,421751.204399999],[372966.4977,423266.500600001],[377385.8999,425169.296],[378607.0017,426487.998500001],[378588.7966,427932.494999999],[379382.5981,427895.895500001],[380627.1983,428441.499299999],[382382.0029,427354.2005],[383502.0986,428770.1952],[384750.9986,426829.0009],[388662.604,425190.799799999]]]},"properties":{"LAD22CD":"E07000125","LAD22NM":"Rossendale","BNG_E":382827,"BNG_N":420955,"LONG":-2.26149,"LAT":53.68478,"OBJECTID":147,"GlobalID":"3a85ca31-ee53-4641-a27c-0dcd854a8ef3"}},{"type":"Feature","id":148,"geometry":{"type":"MultiPolygon","coordinates":[[[[343359.41,426695.039999999],[344163.3421,425888.082],[342955.8163,426608.1533],[343359.41,426695.039999999]]],[[[363748.5029,429031.4004],[363060.7988,427981.201099999],[362033.4972,428461.703500001],[359738.6988,427081.6985],[358536.9976,424724.6033],[357068.1977,424144.999199999],[356643.7997,424786.695499999],[355775.8009,424028.102600001],[355354.9457,422128.264799999],[356643.7007,421782.395500001],[356580.8981,420669.2041],[353320.1001,420794.598200001],[353022.5029,419663.1021],[351637.8026,420005.304099999],[351883.3982,421330.3049],[350797.1032,422064.104800001],[345935.0978,421497.9969],[345087.1015,422439.8972],[345700.7979,423249.395500001],[345312.3531,424734.746400001],[345473.1052,424573.3892],[345516.79,424529.539999999],[345431.4592,424662.6424],[345203.3767,425151.454700001],[345167.3012,425289.4016],[345128.1032,425312.7761],[344971.14,425649.17],[345920.12,426304.65],[344929.54,425699.01],[344494.6224,426457.6494],[344954.66,427052.130000001],[344355.56,426700.220000001],[344371.14,426298.08],[343670.73,426864.720000001],[346660.619,428191.088199999],[347089.0239,428381.1362],[347746.8016,428616.1993],[351833.3012,429278.499700001],[353119.8028,428218.5031],[355325.9998,428731.1964],[356183.4037,428220.4026],[356811.9989,429554.300799999],[359094.9986,430681.798],[358330.9041,431968.0998],[360594.8,431847.804300001],[364015.2965,431197.100500001],[364138.8983,430454.403100001],[362898.0001,429663.7994],[363748.5029,429031.4004]]]]},"properties":{"LAD22CD":"E07000126","LAD22NM":"South Ribble","BNG_E":352017,"BNG_N":425840,"LONG":-2.72871,"LAT":53.72675,"OBJECTID":148,"GlobalID":"5d4d78c1-6939-477c-b081-db3b428c32d6"}},{"type":"Feature","id":149,"geometry":{"type":"MultiPolygon","coordinates":[[[[345167.3012,425289.4016],[345203.3767,425151.454700001],[345128.1032,425312.7761],[345167.3012,425289.4016]]],[[[345312.3531,424734.746400001],[345700.7979,423249.395500001],[345087.1015,422439.8972],[345935.0978,421497.9969],[345814.7034,418771.8972],[347443.0041,413561.1987],[348441.2006,414385.7027],[349903.3963,413388.598200001],[351406.7018,414377.805],[353151.3979,413706.2972],[354161.3025,414679.498600001],[353825.0029,413309.1009],[354484.7974,412190.4011],[354201.7486,410538.8039],[352474.0497,409073.6033],[353409.0973,407181.8048],[352505.1005,403632.500800001],[351662.363,402905.219000001],[349111.4002,402150.2951],[348231.1,404146.9037],[345935.403,402030.1993],[345355.2969,399036.5963],[344062.8011,398931.6964],[343715.4037,399938.1983],[342697.6993,399833.3983],[341199.0176,401158.618899999],[341638.1018,403012.6982],[338907.0984,403567.599400001],[337285.7979,405717.903899999],[335318.7984,405919.0963],[336256.0969,403434.1976],[335390.5964,402509.302300001],[330736.3995,405654.302100001],[331190.8013,408130.6032],[332374.5035,408594.8004],[332523.5,410159.102600001],[331517.9984,410568.295499999],[332016.404,412241.0966],[334101.2997,414920.5996],[335156.9973,414409.396],[336134.103,415411.199200001],[337967.3016,418422.3972],[337571.9015,421699.8991],[337335.365,422112.4814],[337334.0161,422114.8796],[337096.2003,422529.6479],[337097.4158,422530.0353],[337028.659,422650.1447],[337013.0236,422676.484300001],[336962.5344,422763.2434],[338222.01,422478.98],[337303,423011],[338259.6,423236.9],[337055.5,423488.5],[337799,423936.5],[338576.4,423021],[338956.89,423533.699999999],[337516.5,424318.5],[338187.5,425798],[339752,424218.5],[338777.5,425710.5],[339717.5,425911],[339999.9813,425971.813300001],[342955.8163,426608.1533],[344163.3421,425888.082],[345228.2599,424819.156099999],[345312.3531,424734.746400001]]]]},"properties":{"LAD22CD":"E07000127","LAD22NM":"West Lancashire","BNG_E":342611,"BNG_N":413270,"LONG":-2.86893,"LAT":53.61283,"OBJECTID":149,"GlobalID":"3559ea84-27d0-4d73-a334-616ef6bcc3e5"}},{"type":"Feature","id":150,"geometry":{"type":"MultiPolygon","coordinates":[[[[342360.3032,450285.396600001],[342293.8496,450118.0919],[342175.7552,450381.9323],[342224.8135,450412.854],[342360.3032,450285.396600001]]],[[[353163.3038,454034.3035],[354015.2,449943.4045],[354949.4973,450618.101299999],[357554.2028,450506.703199999],[358973.4994,449341.3968],[359800.0008,445961.804199999],[359015.2029,444453.695900001],[357694.3029,444367.3006],[355031.2966,444079.0031],[353405.1974,439944.4966],[350996.6007,439678.502800001],[351637.5964,436602.5032],[350120.0023,436943.9955],[349384.9963,438515.195699999],[347438.2961,437726.4015],[347577.0028,436773.5043],[345719.3988,436282.8048],[344754.9987,437550.5019],[342875.2979,437532.596999999],[343669.9981,438824.0973],[341532.499,439232.4004],[342508.4009,440543.7951],[340626.3009,441336.598099999],[338011.5137,439794.4329],[335867.9909,441372.9684],[335513.0025,440662.4011],[336572.1961,439438.8014],[336793.0977,437325.496300001],[333572.7995,437130.702099999],[333041.7022,441856.999199999],[331203.2365,442533.6373],[331213.323,442676.177100001],[331151.6,447604.4],[333878.5,448560.5],[333769.55,445423.800000001],[334462.7,448513.65],[339390.4,450825.5],[339999.9908,450540.742799999],[340324.64,450389.09],[339999.9846,450352.687899999],[339048.21,450245.970000001],[339999.9792,449810.717599999],[340610.59,449531.48],[342267.2591,450051.147299999],[341981.0963,449330.6998],[343326.2038,447226.6021],[347333.7982,449146.2027],[346693.0003,450276.799000001],[347860.501,453559.6993],[350374.5026,452156.6009],[350525.2965,450955.704700001],[351442.6997,451449.6033],[351872.4982,453411.3018],[353163.3038,454034.3035]]]]},"properties":{"LAD22CD":"E07000128","LAD22NM":"Wyre","BNG_E":347295,"BNG_N":445159,"LONG":-2.80359,"LAT":53.89991,"OBJECTID":150,"GlobalID":"9ffb0712-e0aa-46c4-b6c7-d7395524e136"}},{"type":"Feature","id":151,"geometry":{"type":"Polygon","coordinates":[[[455201.0963,307300.695499999],[454863.4034,305044.101399999],[453737.6969,305275.6951],[453156.7994,304373.303400001],[456596.6966,302025.395500001],[456035.6037,299776.699200001],[457144.8035,299555.4025],[456948.8019,298630.6972],[457726.303,298472.2026],[458115.2967,299255.6983],[459060.2961,296399.196],[459497.4987,297146.0022],[461386.7968,296795.502499999],[462273.6026,295808.395099999],[463863.4977,296090.4044],[462773.6985,293844.1973],[459688.1988,294508.7971],[455436.8968,292491.204600001],[454225.4995,292471.100400001],[452176.9976,295556.997099999],[447218.896,288611.495200001],[445911.4025,289449.7952],[446380.1012,291019.8958],[445216.2037,293001.1986],[445185.6969,296023.203600001],[445935.5028,296875.6996],[447412.3004,296177.1995],[449380.2976,296706.498],[449570.1978,297690.0965],[447746.2996,298230.501800001],[447633.301,298903.199200001],[449228.102,300599.9035],[449218.1997,302289.199999999],[450373.5966,302310.204],[450057.8025,303637.304099999],[451480.999,304253.397700001],[450052.7977,304622.302100001],[452051.9035,305052.698899999],[454223.0012,307707.798900001],[455201.0963,307300.695499999]]]},"properties":{"LAD22CD":"E07000129","LAD22NM":"Blaby","BNG_E":454385,"BNG_N":297994,"LONG":-1.19887,"LAT":52.57706,"OBJECTID":151,"GlobalID":"66b2a2f1-6d02-4a06-93ce-c552b36de5e2"}},{"type":"Feature","id":152,"geometry":{"type":"Polygon","coordinates":[[[465047.6039,324692.2972],[464472.8985,319138.596899999],[465535.2003,318057.896299999],[466286.1028,314818.703500001],[467564.9035,314467.1041],[466602.3009,313025.5967],[467138.8977,311427.404200001],[471155.5039,309702.9978],[470407.0998,308882.8026],[469033.2005,309836.299699999],[466816.3014,306826.9011],[464453.3988,306785.7029],[462642.297,308389.7037],[459680.2011,308748.700999999],[458986.6018,307872.901699999],[458008.4984,310282.8018],[457057.1998,310757.296],[455667.6019,309240.700099999],[455201.0963,307300.695499999],[454223.0012,307707.798900001],[453368.2028,308815.8018],[452372.1994,308310.896299999],[451179.8976,309906.8994],[450190.3006,309630.498600001],[448699.7008,310699.4026],[448551.8009,313237.2961],[450929.6023,315678.5973],[450655.8992,316176.8047],[449585.3028,316897.5984],[448208.0972,315384.3016],[447026.5965,316985.0034],[445157.202,317473.9034],[444983.998,318593.902799999],[446028.8039,321083.200300001],[448748.7012,320863.6031],[448879.3029,322772.9966],[449846.9021,323909.201300001],[452298.7029,321846.1019],[454200.2036,321614.7981],[456501.4991,323544.595699999],[458685.3025,323493.100400001],[459607.0014,325034.099300001],[462464.0965,325642.895099999],[462661.2029,324453.295600001],[465047.6039,324692.2972]]]},"properties":{"LAD22CD":"E07000130","LAD22NM":"Charnwood","BNG_E":458365,"BNG_N":316155,"LONG":-1.13694,"LAT":52.7399,"OBJECTID":152,"GlobalID":"2a5a5aaa-dfb2-4b13-8af4-834fb0154b67"}},{"type":"Feature","id":153,"geometry":{"type":"Polygon","coordinates":[[[480698.5026,306040.2962],[480939.3985,303213.995300001],[479959.4977,300501.7017],[481888.7019,300662.5956],[483757.7995,299009.298800001],[484155.2032,297061.896299999],[485611.7015,295304.3994],[485403.2993,294255.1997],[487368.1963,292674.102299999],[484440.0041,291063.5033],[483228.3017,291857.9959],[480162.5983,291502.5976],[476846.3028,292724.797800001],[475868.4963,291259.597200001],[475993.6976,288946.8992],[474923.299,288235.402799999],[476012.9992,286512.596000001],[474749.6992,285210.798599999],[471956.9981,286060.995300001],[471281.3978,287124.900699999],[467978.0965,286356.8006],[465038.6992,283514.404200001],[465748.5001,282471.1029],[464700.998,280891.1951],[462342.1025,282428.1951],[459317.5998,280144.198899999],[457976.5983,278007.600500001],[455625.7994,277438.803300001],[454421.0971,277932.702],[447218.896,288611.495200001],[452176.9976,295556.997099999],[454225.4995,292471.100400001],[455436.8968,292491.204600001],[459688.1988,294508.7971],[462773.6985,293844.1973],[463863.4977,296090.4044],[462273.6026,295808.395099999],[462758.8986,297834.395199999],[465028.4012,300453.395500001],[463588.797,301128.4023],[463026.5003,302658.6042],[464594.9995,304520.701199999],[464453.3988,306785.7029],[466816.3014,306826.9011],[469033.2005,309836.299699999],[470407.0998,308882.8026],[471155.5039,309702.9978],[473393.4032,308708.102600001],[473662.1015,309383.1994],[474923.1011,309012.895400001],[477460.0982,310310.0041],[477263.6019,309059.602],[478939.7981,308968.698000001],[479264.7029,307421.7008],[480620.9001,307316.900800001],[479777.8013,306150.704600001],[480698.5026,306040.2962]]]},"properties":{"LAD22CD":"E07000131","LAD22NM":"Harborough","BNG_E":474549,"BNG_N":293875,"LONG":-0.90229,"LAT":52.53766,"OBJECTID":153,"GlobalID":"b8acd593-0bd2-4487-b6fa-c11562983c2e"}},{"type":"Feature","id":154,"geometry":{"type":"Polygon","coordinates":[[[454223.0012,307707.798900001],[452051.9035,305052.698899999],[450052.7977,304622.302100001],[451480.999,304253.397700001],[450057.8025,303637.304099999],[450373.5966,302310.204],[449218.1997,302289.199999999],[449228.102,300599.9035],[447633.301,298903.199200001],[447746.2996,298230.501800001],[449570.1978,297690.0965],[449380.2976,296706.498],[447412.3004,296177.1995],[445935.5028,296875.6996],[445185.6969,296023.203600001],[445216.2037,293001.1986],[446380.1012,291019.8958],[445911.4025,289449.7952],[439618.9038,293111.9969],[436711.7035,294995.4978],[432434.6028,297080.1011],[432135.1999,298428.2952],[429849.3968,299906.502],[430263.5647,301978.7247],[429105.7995,304253.297800001],[430915.4997,305302.997300001],[430408.8984,307841.400699999],[431420.8972,307656.503599999],[433742.5003,308995.500299999],[434313.5038,308044.4026],[435455.7993,309016.704299999],[437582.1016,307502.197799999],[439020.9967,309743.2963],[440538.5991,308429.3024],[443328.802,308942.295600001],[444530.9979,310480.0954],[443952.7965,310914.800899999],[448551.8009,313237.2961],[448699.7008,310699.4026],[450190.3006,309630.498600001],[451179.8976,309906.8994],[452372.1994,308310.896299999],[453368.2028,308815.8018],[454223.0012,307707.798900001]]]},"properties":{"LAD22CD":"E07000132","LAD22NM":"Hinckley and Bosworth","BNG_E":439538,"BNG_N":301379,"LONG":-1.41755,"LAT":52.60877,"OBJECTID":154,"GlobalID":"f7839708-867c-4aba-b9e5-81f0cd30d865"}},{"type":"Feature","id":155,"geometry":{"type":"Polygon","coordinates":[[[490252.7969,318512.0962],[484379.9966,316181.5034],[482692.9004,316956.101600001],[480225.6978,315267.605],[479688.4991,313762.1459],[482139.698,311473.301100001],[482457.7018,308668.204],[480698.5026,306040.2962],[479777.8013,306150.704600001],[480620.9001,307316.900800001],[479264.7029,307421.7008],[478939.7981,308968.698000001],[477263.6019,309059.602],[477460.0982,310310.0041],[474923.1011,309012.895400001],[473662.1015,309383.1994],[473393.4032,308708.102600001],[471155.5039,309702.9978],[467138.8977,311427.404200001],[466602.3009,313025.5967],[467564.9035,314467.1041],[466286.1028,314818.703500001],[465535.2003,318057.896299999],[464472.8985,319138.596899999],[465047.6039,324692.2972],[466005.8037,325392.196799999],[468651.0996,325275.700200001],[468999.0989,327512.799799999],[470177.6974,327868.398],[472254.3974,330380.198999999],[471398.5024,331566.0996],[472986.6001,331820.696699999],[476929.5037,334853.6985],[476562.5985,335679.202199999],[479101.4013,338910.6972],[478452.3995,339355.299900001],[479358.8038,340992.801200001],[479845.9962,340667.0045],[480931.9038,342828.8956],[482131.5024,342870.503699999],[482154.2011,340911.5045],[483750.7005,339853.1974],[482363.502,334850.399499999],[483608.7041,334391.2009],[483088.3995,332858.7995],[484701.4962,332481.5975],[488915.2996,324657.7971],[490252.7969,318512.0962]]]},"properties":{"LAD22CD":"E07000133","LAD22NM":"Melton","BNG_E":477328,"BNG_N":323472,"LONG":-0.8544,"LAT":52.80329,"OBJECTID":155,"GlobalID":"7d052a3c-a568-4165-ab89-d96d4412ece5"}},{"type":"Feature","id":156,"geometry":{"type":"Polygon","coordinates":[[[449846.9021,323909.201300001],[448879.3029,322772.9966],[448748.7012,320863.6031],[446028.8039,321083.200300001],[444983.998,318593.902799999],[445157.202,317473.9034],[447026.5965,316985.0034],[448208.0972,315384.3016],[449585.3028,316897.5984],[450655.8992,316176.8047],[450929.6023,315678.5973],[448551.8009,313237.2961],[443952.7965,310914.800899999],[444530.9979,310480.0954],[443328.802,308942.295600001],[440538.5991,308429.3024],[439020.9967,309743.2963],[437582.1016,307502.197799999],[435455.7993,309016.704299999],[434313.5038,308044.4026],[433742.5003,308995.500299999],[431420.8972,307656.503599999],[430408.8984,307841.400699999],[427835.1037,310029.304400001],[427293.197,311490.2962],[430489.1971,313722.397299999],[430846.1011,314989.854499999],[429627.7036,317084.404899999],[430274.001,318506.297900001],[433496.5996,319002.9957],[434245.2017,318055.7969],[435962.2027,318939.204],[436801.3026,320082.096799999],[436328.0031,321165.296800001],[437697.6974,321856.4989],[437610.3986,322941.6983],[439354.6001,322829.9003],[441331.7987,326348.6031],[440898.1003,326753.7971],[443110.4975,328821.295299999],[443788.2993,328616.403899999],[444198.7961,330204.6993],[445515.1036,330044.2952],[445913.4967,330814.3048],[449373.8005,330903.7992],[448979.802,326756.896199999],[449846.9021,323909.201300001]]]},"properties":{"LAD22CD":"E07000134","LAD22NM":"North West Leicestershire","BNG_E":439111,"BNG_N":316252,"LONG":-1.42209,"LAT":52.7425,"OBJECTID":156,"GlobalID":"bc582503-357e-41d7-85f3-055411d3bbe9"}},{"type":"Feature","id":157,"geometry":{"type":"Polygon","coordinates":[[[462273.6026,295808.395099999],[461386.7968,296795.502499999],[459497.4987,297146.0022],[459060.2961,296399.196],[458115.2967,299255.6983],[459690.9031,300333.5998],[460812.0995,300165.797800001],[461260.1032,302460.900800001],[463026.5003,302658.6042],[463588.797,301128.4023],[465028.4012,300453.395500001],[462758.8986,297834.395199999],[462273.6026,295808.395099999]]]},"properties":{"LAD22CD":"E07000135","LAD22NM":"Oadby and Wigston","BNG_E":461543,"BNG_N":299379,"LONG":-1.093,"LAT":52.58875,"OBJECTID":157,"GlobalID":"1383e7e5-435a-4d2d-b603-dc8fc7b93417"}},{"type":"Feature","id":158,"geometry":{"type":"Polygon","coordinates":[[[547594.8889,350632.7322],[544447.6001,347805.6011],[540000.0098,340235.3378],[539861.7274,339999.966700001],[539384.1019,339186.9981],[539792.1005,339200.0044],[538149.0989,337388.203],[537186.4963,336212.8994],[537171.2152,336135.7018],[536452.8013,335371.2004],[532005.8028,331903.7029],[529025.9965,331388.8003],[526699.6031,333312.299699999],[525072.902,333551.3013],[524057.803,336551.102600001],[517952.797,338261.1031],[521582.0998,345872.4044],[519137.2001,349549.8018],[519965.5978,354015.9034],[520959.4987,353997.998500001],[526506.3966,347583.5046],[533836.8001,346721.4014],[537253.6028,350039.7016],[536523.7995,354408.0012],[539952.4999,354745.804500001],[543224.9977,356517.2974],[544168.2986,353282.903200001],[547129.1,351179.1954],[547594.8889,350632.7322]]]},"properties":{"LAD22CD":"E07000136","LAD22NM":"Boston","BNG_E":526851,"BNG_N":343953,"LONG":-0.11218,"LAT":52.97794,"OBJECTID":158,"GlobalID":"8025afd6-b803-469e-80bd-297abb76e434"}},{"type":"Feature","id":159,"geometry":{"type":"Polygon","coordinates":[[[547594.8889,350632.7322],[547129.1,351179.1954],[544168.2986,353282.903200001],[543224.9977,356517.2974],[539952.4999,354745.804500001],[536523.7995,354408.0012],[537253.6028,350039.7016],[533836.8001,346721.4014],[526506.3966,347583.5046],[520959.4987,353997.998500001],[520888.6984,355541.196799999],[519331.5032,356928.299699999],[518789.3986,360103.500800001],[514401.6987,366058.7962],[513476.8996,369493.6029],[515166.7002,372178.304500001],[514842.1993,373904.600299999],[513462.6027,375243.1971],[514165.6014,375471.501800001],[513431.5023,375452.2973],[513330.0963,376714.9958],[512349.2968,377151.6009],[512232.2994,379239.0034],[513678.4007,379799.8028],[512654.9,381669.897500001],[513745.3011,383306.799000001],[514964.1025,381928.103599999],[516291.5986,382874.502699999],[516210.2034,384442.104],[519529.5001,387612.4965],[517825.8973,390483.004799999],[519350.6977,391676.1033],[518733.2003,393909.304],[520954.0982,395308.3036],[524198.8018,394862.0013],[524971.9989,394618.0012],[527452.5998,396641.6019],[525696.7975,398677.599099999],[526869.3029,399579.301000001],[526467.3974,400493.1994],[527799.2963,400901.502499999],[528388.2988,404190.601],[531729.7994,403907.202199999],[533689.0408,405381.629000001],[533848.0923,405093.9344],[534911.492,404751.195],[534064.701,404310.609999999],[535040.622,404424.988],[535174.23,403463.470000001],[535081.0166,404705.0844],[535432.77,403188.619999999],[535659.928,403892.157],[536770.747,403716.889],[534444.121,405579.880000001],[537793.728,403835.676000001],[538459.042,404132.271],[538364.639,402322.435000001],[538802.992,401498.148],[539494.414,401814.502],[539494.58,400708.859999999],[540000.0302,400702.366599999],[540444.778,400696.653000001],[540000.0297,401176.7894],[539673.935,401528.831],[540000.0279,401286.927100001],[540857.18,400651.07],[540000.0268,401351.483899999],[539604.136,401674.982000001],[540000.0198,401775.8137],[540263.095,401842.819],[539999.9948,402864.072000001],[539964.189,403003.056],[539999.9917,402986.9958],[541337.453,402387.043],[541734.494,400806.567],[542305.671,400879.354],[541971.373,401924.687999999],[542512.135,401722.413000001],[543856.8774,399999.9976],[544372.826,399339.143999999],[543812.192,399632.955],[544848.122,396282.982000001],[545602.881,395733.299000001],[544607.231,395557.635],[545654.406,395638.083000001],[547040.904,393450.720000001],[545608.036,393398.686000001],[547178.825,393367.422],[547143.1445,393306.021],[547118.166,393307.423],[546755.583,392639.082],[547125.0364,393274.8594],[547292.131,392482.886],[547252.231,393301.460999999],[548445.199,391824.892000001],[550532.0724,387087.896400001],[551555.61,384110.18],[554946.2858,376897.585899999],[557473.1,368696.5],[557341.808,360000.010600001],[557338.722,359795.602],[556623.8644,358615.6745],[556599.495,358575.450999999],[556417.203,356933.718],[556447.111,357788.162],[555401.812,357458.333000001],[555382.207,357382.989],[554069.485,357302.613],[555176.827,357116.694],[553399.277,355611.868000001],[552938.537,356083.493000001],[553337.98,355515.203],[551348.516,354215.15],[552135.207,354172.169],[551444.223,353402.811000001],[550828.18,352909.501],[550411.61,353451.148],[550813.389,352874.382999999],[549968.735,352978.272],[550554.326,352502.997],[547595.0051,350632.8366],[547594.8889,350632.7322]]]},"properties":{"LAD22CD":"E07000137","LAD22NM":"East Lindsey","BNG_E":534861,"BNG_N":376064,"LONG":0.020516,"LAT":53.26446,"OBJECTID":159,"GlobalID":"28e8847e-db96-4afc-99cb-4a4c3ac09edc"}},{"type":"Feature","id":160,"geometry":{"type":"Polygon","coordinates":[[[500563.7983,370855.6031],[498237.0008,369943.7041],[497644.2963,368423.9991],[497021.2995,368623.901900001],[496797.8006,366445.195499999],[496022.196,366504.898499999],[492281.7003,368774.298800001],[492523.6022,370320.6962],[495506.7972,371236.304099999],[493845.1041,372934.797900001],[499217.3963,374023.6962],[500452.9022,373293.895099999],[500563.7983,370855.6031]]]},"properties":{"LAD22CD":"E07000138","LAD22NM":"Lincoln","BNG_E":496347,"BNG_N":370096,"LONG":-0.55848,"LAT":53.21921,"OBJECTID":160,"GlobalID":"fe54abf8-0bee-4488-8728-07cec7b3cbfe"}},{"type":"Feature","id":161,"geometry":{"type":"Polygon","coordinates":[[[493845.1041,372934.797900001],[495506.7972,371236.304099999],[492523.6022,370320.6962],[492281.7003,368774.298800001],[496022.196,366504.898499999],[496797.8006,366445.195499999],[497021.2995,368623.901900001],[497644.2963,368423.9991],[498237.0008,369943.7041],[500563.7983,370855.6031],[508106.9985,371765.7026],[510081.8968,371361.498299999],[512398.8002,366632.7019],[514401.6987,366058.7962],[518789.3986,360103.500800001],[519331.5032,356928.299699999],[520888.6984,355541.196799999],[520959.4987,353997.998500001],[519965.5978,354015.9034],[519137.2001,349549.8018],[521582.0998,345872.4044],[517952.797,338261.1031],[517356.7038,335692.498400001],[512865.5036,336881.698000001],[510512.8991,336618.203400001],[510024.5029,334635.1011],[505240.5041,333311.799900001],[504670.2015,334810.200999999],[503025.9961,334843.501399999],[501689.0017,336181.8983],[501351.4984,336983.5988],[502300.2988,338192.8027],[501262.3033,340666.204700001],[500211.8001,339946.1008],[499655.9016,341349.4991],[497233.9973,340648.299799999],[497929.9959,342588.804400001],[499075.8038,342350.102700001],[499117.598,351281.796],[494962.1037,350756.7963],[487898.0982,352190.096000001],[486838.6985,351307.398700001],[486135.9967,352079.897600001],[486305.4987,352860.5041],[487533.5016,352909.800000001],[485160.4988,356384.795299999],[485985.3017,358433.898800001],[484914.9031,359707.5042],[486036.3964,360737.999199999],[485769.7016,365229.3036],[482694.6978,365763.6006],[484874.4034,368937.6021],[485936.9032,368606.197000001],[487055.7992,370031.798900001],[488512.8994,369770.003799999],[489087.8028,372235.2981],[490288.8031,372670.8035],[490274.1022,373756.002900001],[491991.1032,374340.9954],[493845.1041,372934.797900001]]]},"properties":{"LAD22CD":"E07000139","LAD22NM":"North Kesteven","BNG_E":502135,"BNG_N":354788,"LONG":-0.4767,"LAT":53.08058,"OBJECTID":161,"GlobalID":"7eedc613-eb60-48ed-9921-570cc61061f6"}},{"type":"Feature","id":162,"geometry":{"type":"Polygon","coordinates":[[[536452.8013,335371.2004],[537168.5934,336122.4572],[537130.1125,335928.0583],[537349.0867,336297.4254],[539174.1991,337701.903200001],[539248.7015,336533.0978],[538404.5969,335971.998400001],[539539.2987,336304.303300001],[539807.997,335420.396299999],[540000.0004,335365.957800001],[544426.2041,334111.0011],[543855.8025,332917.2028],[544789.902,333821.403999999],[546570.1014,332953.602399999],[549277.697,328008.4979],[548125.796,328062.002599999],[549334.0025,327957.8024],[549342.396,327331.2018],[548772.5963,322718.302200001],[549476.7987,327116.5033],[551388.2018,327320.2049],[552797.8702,326443.3486],[551507.7964,323131.9038],[553377.9989,321886.100400001],[547711.5971,317540.704299999],[546710.3994,317809.0975],[544097.1025,317872.599300001],[541180.3198,316042.283199999],[539453.7974,316411.0976],[538179.6964,314926.702500001],[538582.3027,311267.100099999],[536804.2965,309378.7006],[533246.0991,308906.795700001],[531011.2011,310371.0966],[529410.9997,309388.197899999],[528418.5004,309965.2028],[525850.1969,307594.501399999],[523189.5981,308534.202400001],[522343.3992,307608.8972],[520976.096,309159.703299999],[517192.0994,312673.7974],[514407.1981,317543.203600001],[517438.8989,320685.0043],[516142.0002,330690.700200001],[516479.2974,331912.3005],[517425.2038,331387.500700001],[516558.4005,332453.895400001],[517356.7038,335692.498400001],[517952.797,338261.1031],[524057.803,336551.102600001],[525072.902,333551.3013],[526699.6031,333312.299699999],[529025.9965,331388.8003],[532005.8028,331903.7029],[536452.8013,335371.2004]]]},"properties":{"LAD22CD":"E07000140","LAD22NM":"South Holland","BNG_E":532910,"BNG_N":322928,"LONG":-0.03057,"LAT":52.78758,"OBJECTID":162,"GlobalID":"356aa7f8-53fa-4378-8b3f-febbac927bff"}},{"type":"Feature","id":163,"geometry":{"type":"Polygon","coordinates":[[[517356.7038,335692.498400001],[516558.4005,332453.895400001],[517425.2038,331387.500700001],[516479.2974,331912.3005],[516142.0002,330690.700200001],[517438.8989,320685.0043],[514407.1981,317543.203600001],[517192.0994,312673.7974],[520976.096,309159.703299999],[517754.2972,307382.402100001],[515777.6015,309433.8049],[512669.2959,309871.7995],[511676.4009,308374.2981],[507959.1976,306780.704299999],[504763.8983,307404.4958],[501950.0981,305791.0976],[501933.204,305782.100199999],[499943.8026,308522.4957],[501100.6012,307911.2007],[504488.9998,309191.904100001],[505953.6029,310704.801100001],[506145.1027,313125.598099999],[501805.3973,313503.799799999],[498538.5969,314953.105],[498670.6003,316638.3026],[496433.0968,318229.997],[494224.5995,317895.602700001],[493877.5979,318926.897500001],[490252.7969,318512.0962],[488915.2996,324657.7971],[484701.4962,332481.5975],[483088.3995,332858.7995],[483608.7041,334391.2009],[482363.502,334850.399499999],[483750.7005,339853.1974],[482154.2011,340911.5045],[482131.5024,342870.503699999],[480332.7022,346799.3991],[480890.4971,346596.497199999],[481359.0969,348301.899],[483202.5029,348729.196699999],[483908.6017,351601.1546],[486135.9967,352079.897600001],[486838.6985,351307.398700001],[487898.0982,352190.096000001],[494962.1037,350756.7963],[499117.598,351281.796],[499075.8038,342350.102700001],[497929.9959,342588.804400001],[497233.9973,340648.299799999],[499655.9016,341349.4991],[500211.8001,339946.1008],[501262.3033,340666.204700001],[502300.2988,338192.8027],[501351.4984,336983.5988],[501689.0017,336181.8983],[503025.9961,334843.501399999],[504670.2015,334810.200999999],[505240.5041,333311.799900001],[510024.5029,334635.1011],[510512.8991,336618.203400001],[512865.5036,336881.698000001],[517356.7038,335692.498400001]]]},"properties":{"LAD22CD":"E07000141","LAD22NM":"South Kesteven","BNG_E":501406,"BNG_N":328986,"LONG":-0.49565,"LAT":52.84885,"OBJECTID":163,"GlobalID":"ab3dc631-022e-42fb-b2e7-dcb313d3663d"}},{"type":"Feature","id":164,"geometry":{"type":"Polygon","coordinates":[[[513082.3982,414321.5011],[516022.7024,412210.895300001],[515854.0992,411203.8035],[516956.9008,411408.8049],[517809.1021,409400.399800001],[519611.5961,409846.702],[520014.6972,409222.8006],[518084.9588,405466.096000001],[518703.1965,405381.000299999],[519190.1004,403173.802100001],[518828.9997,400328.6965],[520296.2,400170.901699999],[520789.7989,398414.904300001],[522665.0968,398132.2952],[523015.3965,396028.897299999],[524198.8018,394862.0013],[520954.0982,395308.3036],[518733.2003,393909.304],[519350.6977,391676.1033],[517825.8973,390483.004799999],[519529.5001,387612.4965],[516210.2034,384442.104],[516291.5986,382874.502699999],[514964.1025,381928.103599999],[513745.3011,383306.799000001],[512654.9,381669.897500001],[513678.4007,379799.8028],[512232.2994,379239.0034],[512349.2968,377151.6009],[513330.0963,376714.9958],[513431.5023,375452.2973],[514165.6014,375471.501800001],[513462.6027,375243.1971],[514842.1993,373904.600299999],[515166.7002,372178.304500001],[513476.8996,369493.6029],[514401.6987,366058.7962],[512398.8002,366632.7019],[510081.8968,371361.498299999],[508106.9985,371765.7026],[500563.7983,370855.6031],[500452.9022,373293.895099999],[499217.3963,374023.6962],[493845.1041,372934.797900001],[491991.1032,374340.9954],[490274.1022,373756.002900001],[490288.8031,372670.8035],[489087.8028,372235.2981],[487618.2031,374287.8006],[484550.1004,373744.2962],[484507.8033,372616.2991],[481699.9972,372905.0964],[482504.0967,375793.299699999],[481559.6992,377013.9003],[482504.5997,378764.1993],[483351.3015,378129.6009],[483585.6014,379327.797900001],[483359.2003,381536.595699999],[482247.7001,382172.603599999],[482725.0974,384821.4954],[481650.4031,385981.903200001],[480542.5967,385864.9967],[481573.3036,387463.4991],[480546.4966,388346.7963],[481410.1998,389592.299799999],[480612.0036,391620.2993],[478631.9027,392890.9955],[478445.5973,394420.0978],[479948.5978,396038.3046],[480803.8992,396978.0956],[480777.1027,398456.5024],[481623.1037,398752.797599999],[481814.7025,400950.998400001],[482872.6015,401148.002],[483665.0014,403321.399900001],[491311.1989,402672.9955],[491079.1005,396589.9967],[496252.3239,396836.995999999],[501529.7979,398655.795399999],[500529.0041,399257.403200001],[500355.0993,401968.1972],[505848.396,403507.6965],[505608.8027,405115.296399999],[504081.3969,406665.002800001],[499424.9987,405576.904200001],[500090.2995,406527.260600001],[501666.501,406904.404200001],[504122.4985,409803.104499999],[504947.4994,408562.5996],[510325.4971,408174.500700001],[512559.3975,412307.297700001],[511992.0961,414413.604699999],[513082.3982,414321.5011]]]},"properties":{"LAD22CD":"E07000142","LAD22NM":"West Lindsey","BNG_E":499314,"BNG_N":390326,"LONG":-0.50774,"LAT":53.40044,"OBJECTID":164,"GlobalID":"6a3226ff-9d5f-4eb4-b327-6ce607af581f"}},{"type":"Feature","id":165,"geometry":{"type":"Polygon","coordinates":[[[601913.3014,326508.497300001],[602512.2968,322904.898800001],[605500.4966,323393.399],[606014.5019,321339.796800001],[608026.6019,320372.2038],[608672.1985,318421.102299999],[609837.1019,317524.198999999],[608479.8989,316112.303200001],[610202.2015,313956.100400001],[609640.8035,310281.802100001],[608380.2986,310114.4001],[608137.3001,308926.4001],[606650.897,311665.9959],[605963.5969,309763.500499999],[604673.4015,308956.2016],[604468.1984,306273.499500001],[605688.5994,306330.6032],[605993.0978,303266.200300001],[600836.1996,303772.295499999],[600198.7986,302665.5023],[600790.1014,302270.395400001],[599787.502,301633.997500001],[601677.8966,299368.1961],[605844.497,297612.298699999],[607717.8986,297659.295299999],[610105.6023,295660.0975],[609051.1992,294354.801200001],[610338.7974,289204.195499999],[608904.7009,288527.7991],[607980.0008,284627.295700001],[606979.2978,285204.600400001],[605558.7974,284111.903200001],[606434.2003,284081.5019],[605617.2961,282955.1043],[606325.0027,279951.0042],[602112.2959,278815.7992],[599493.4007,280794.602700001],[595176.196,280789.404200001],[593365.597,281881.8015],[591186.1965,280541.295299999],[588311.2014,280523.2004],[587078.6967,279677.602499999],[586360.5024,280981.2993],[583165.599,281127.7974],[581603.7041,282344.199200001],[584844.1038,287000.996200001],[582473.5992,287297.3014],[581236.098,288291.8967],[579619.5961,286947.101600001],[575584.9002,286901.004799999],[577360.9028,295847.503900001],[574975.6973,298872.498],[572022.201,299461.6994],[571569.2009,300591.396],[573768.6039,302937.5044],[574512.2012,309316.2985],[573400.701,309474.903100001],[573509.2967,311293.102700001],[572544.303,312253.297800001],[576589.297,314564.0963],[577529.5968,314803.4978],[579043.1014,313618.8969],[579394.2998,315122.4965],[581717.8982,314526.097200001],[583242.3028,315816.197899999],[583674.7975,317256.5956],[582460.1021,318814.1998],[580214.9967,319216.604599999],[581557.3998,320537.6964],[581574.0012,322549.8005],[582700.998,324645.3006],[588710.3036,322717.502499999],[591467.3037,327506.601600001],[593233.9976,327164.7994],[595018.3031,325374.901799999],[596772.0028,326848.699899999],[598243.2021,325200.001800001],[598100.9005,326041.6009],[600122.3999,327478.7995],[601913.3014,326508.497300001]]]},"properties":{"LAD22CD":"E07000143","LAD22NM":"Breckland","BNG_E":591015,"BNG_N":303330,"LONG":0.818716,"LAT":52.59421,"OBJECTID":165,"GlobalID":"ee0efb28-2285-4c16-86d5-d0e6121f79c3"}},{"type":"Feature","id":166,"geometry":{"type":"Polygon","coordinates":[[[619155.8019,329726.496200001],[619427.6003,328950.498299999],[620716.6002,329607.700200001],[621782.7031,328079.4976],[623073.4014,328377.4023],[623656.6983,325383.099400001],[626676.4025,321798.695499999],[628777.4996,321199.297],[629487.3994,320017.995200001],[630047.8986,320424.298900001],[629902.9999,318543.7972],[631422.3008,317251.597100001],[631117.8025,315949.199899999],[632202.3991,315741.6993],[632610.9996,317084.604900001],[633907.5024,317616.4026],[634873.7989,315840.1011],[635807.9973,316328.3013],[636299.0978,315671.1994],[637435.696,316045.5023],[637501.5988,315112.599300001],[637924.6982,315727.303400001],[640000.0996,315224.7972],[641515.6985,310430.2996],[643028.8981,310547.596100001],[644112.1012,309018.503699999],[646706.6983,309860.3028],[649029.802,308152.001800001],[646702.8973,306942.398],[646026.2994,305601.301899999],[647115.3977,305276.3049],[645587.3983,303542.701199999],[644538.9975,303468.002599999],[643562.7988,301637.0967],[640105.2984,301193.003799999],[638834.8004,301923.8046],[638494.6999,303369.6007],[637120.7017,302799.9038],[636143.798,304587.202199999],[634008.1004,305218.501499999],[632548.9967,307976.202099999],[631235.2039,308052.700200001],[630304.8782,307007.0112],[629579.6379,306191.8389],[629481.298,306081.304500001],[628143.8007,308255.4022],[627633.5625,308213.922499999],[625362.8731,308029.327299999],[625168.1994,308013.501399999],[626065.9011,311010.0537],[624900.004,310434.6984],[622795.3038,311441.5002],[623196.3023,313903.0955],[622624.4002,314777.0954],[622028.8017,313903.0955],[620670.9968,313849.200999999],[622217.696,311717.6011],[619850.0031,310507.1976],[618780.0002,312724.402899999],[617680.8017,313202.3961],[616853.4016,311740.9045],[615791.5036,313757.1973],[614709.7022,312219.1976],[612890.1986,312830.002699999],[612213.6006,309624.700200001],[609640.8035,310281.802100001],[610202.2015,313956.100400001],[608479.8989,316112.303200001],[609837.1019,317524.198999999],[608672.1985,318421.102299999],[608026.6019,320372.2038],[606014.5019,321339.796800001],[605500.4966,323393.399],[602512.2968,322904.898800001],[601913.3014,326508.497300001],[603838.8035,326775.200999999],[604658.4038,328123.8049],[608185.8965,328721.8037],[609056.6986,330262.9026],[612360.7997,328486.101199999],[612011.5966,329785.699200001],[612775.6994,329573.300000001],[613819.3015,330612.3026],[615295.1015,328973.501700001],[616638.2962,330637.295399999],[619155.8019,329726.496200001]]]},"properties":{"LAD22CD":"E07000144","LAD22NM":"Broadland","BNG_E":619864,"BNG_N":315909,"LONG":1.252317,"LAT":52.69622,"OBJECTID":166,"GlobalID":"766810a6-4d4d-4bb3-9a89-5ca6273db11a"}},{"type":"Feature","id":167,"geometry":{"type":"Polygon","coordinates":[[[653770.017,299262.944800001],[652813.5017,299052.396500001],[651106.502,300527.1044],[648750.5005,301029.1007],[646234.0007,298201.4001],[644586.0026,300220.0023],[647306.3039,303855.601600001],[647115.3977,305276.3049],[646026.2994,305601.301899999],[646702.8973,306942.398],[649029.802,308152.001800001],[646706.6983,309860.3028],[644112.1012,309018.503699999],[643028.8981,310547.596100001],[641515.6985,310430.2996],[640000.0996,315224.7972],[640000.0996,317211.1986],[644535.0976,319468.102600001],[645789.897,321396.6006],[648143.9264,322436.5414],[649784.17,320398.359999999],[649932.545,319999.9902],[652883.03,312078.279999999],[653751.81,303965.41],[653512.4495,303947.3278],[653553.1046,303207.932600001],[653148.73,301959.91],[653767.0606,299316.713300001],[653770.017,299262.944800001]]]},"properties":{"LAD22CD":"E07000145","LAD22NM":"Great Yarmouth","BNG_E":646761,"BNG_N":315881,"LONG":1.64951,"LAT":52.68439,"OBJECTID":167,"GlobalID":"cb780a45-3164-47e2-afaa-cee8762098e4"}},{"type":"Feature","id":168,"geometry":{"type":"MultiPolygon","coordinates":[[[[586856.3128,345952.8456],[587743.999,337242.504699999],[589566.6027,337337.7974],[589906.0024,336548.103499999],[588977.5013,335017.1017],[588150.901,335438.4011],[587990.5015,332800.6962],[583756.102,332131.897600001],[583627.6027,330738.796399999],[585844.6997,327879.404899999],[582700.998,324645.3006],[581574.0012,322549.8005],[581557.3998,320537.6964],[580214.9967,319216.604599999],[582460.1021,318814.1998],[583674.7975,317256.5956],[583242.3028,315816.197899999],[581717.8982,314526.097200001],[579394.2998,315122.4965],[579043.1014,313618.8969],[577529.5968,314803.4978],[576589.297,314564.0963],[572544.303,312253.297800001],[573509.2967,311293.102700001],[573400.701,309474.903100001],[574512.2012,309316.2985],[573768.6039,302937.5044],[571569.2009,300591.396],[572022.201,299461.6994],[574975.6973,298872.498],[577360.9028,295847.503900001],[575584.9002,286901.004799999],[573680.0025,287296.9015],[571601.604,286350.3024],[566296.3029,286077.9004],[565236.7961,284823.5995],[565113.3015,286848.5998],[561773.1036,289508.0985],[560767.7998,291883.5986],[556807.4001,293141.1986],[553239.6962,292370.699100001],[552558.5965,291478.604499999],[551873.3,292281.004799999],[549782.303,293590.799900001],[551413.8027,294562.1018],[549715.3036,295171.1975],[550195.496,295666.8956],[549542.0996,296452.1008],[550258.6037,296886.0966],[549619.6032,296732.3006],[549567.4037,297482.695800001],[550396.5023,298169.099400001],[549592.8975,298698.297900001],[550434.9985,299506.6965],[548528.996,302383.0031],[550326.7986,304981.7992],[546889.1028,308063.3971],[547812.797,308673.102600001],[547796.9995,311147.5043],[545677.2025,311565.504699999],[546710.3994,317809.0975],[547711.5971,317540.704299999],[553377.9989,321886.100400001],[551507.7964,323131.9038],[552797.8702,326443.3486],[552915.1226,326370.414100001],[554106.798,326253.143999999],[553642.761,326715.845000001],[554248.965,327082.385],[554460.643,326409.181],[556132.434,327098.378],[558109.833,326653.891000001],[557434.732,326179.227],[558199.587,326582.244000001],[557752.314,325905.234999999],[558633.062,326124.544],[558199.212,325435.316],[558761.151,325789.408],[559377.276,324735.134],[559999.9784,323197.7434],[561295.1697,320000.044299999],[561570.005,319321.503],[561349.0676,320000.043199999],[560245.042,323390.713],[560688.35,323898.619999999],[560208.248,323496.908],[559999.9784,323949.1754],[559381.103,325293.093],[559886.0295,325386.7426],[559054.253,325960.431],[560000.0125,326377.784399999],[560580.742,326634.054],[560000.0172,326567.0702],[558990.93,326450.676999999],[560000.0279,327424.211100001],[561935.902,329291.858999999],[562560.253,328837.139],[562098.835,329393.676000001],[563921.318,331170.367000001],[564698.071,331234.353],[565078.206,330020.297],[564646.043,333394.955],[566803.2617,339999.963300001],[567409.487,341856.114],[570754.269,344999.288000001],[572614.238,345079.968],[572110.075,344683.992000001],[573123.48,343842.32],[573767.273,344854.028999999],[573835.93,344082.57],[574166.95,344652.619999999],[574048.54,343948.640000001],[574944.01,344105.119999999],[573854.324,345321.623],[575873.682,344911.544],[575644.35,344154.779999999],[576465.48,344338.68],[576207.05,345041.421],[579468.143,345577.017000001],[579315.227,344740.885],[577282.552,344755.827],[577627.21,344250.752],[580000.001,344461.0154],[580391.456,344495.704],[581397.039,345205.137],[580069.263,344704.489],[580953.27,345796.035],[582440.8,345057.4],[584612.268,345469.226],[584789.04,345228.470000001],[584531.98,344506.42],[584591.7511,345223.1894],[583526.99,345194.689999999],[583566.404,343907.676000001],[585292.569,344891.524],[584986.27,345515.390000001],[585707.64,345710.810000001],[584774.653,345691.653000001],[586844.1918,345955.662900001],[586856.3128,345952.8456]]],[[[581029.7055,346682.358100001],[584796.517,345851.684],[582813,346256.9],[582490.1,345672.9],[582624.1,346280.800000001],[582112,345807.800000001],[581584.1394,346352.2862],[581430.846,345834.921],[581569.8,346513.9],[581202.16,345993.380000001],[580688.79,346678.25],[581127.49,346014.15],[580373.04,346246.939999999],[580175.044,345591.855],[580389.827,346638.41],[579999.9946,346613.0955],[578523.894,346517.242000001],[579999.9919,346696.1734],[580427.0625,346747.942500001],[581029.7055,346682.358100001]]]]},"properties":{"LAD22CD":"E07000146","LAD22NM":"King's Lynn and West Norfolk","BNG_E":571219,"BNG_N":315805,"LONG":0.533243,"LAT":52.71283,"OBJECTID":168,"GlobalID":"43b76d47-71f3-492a-9d73-7142b794bd6f"}},{"type":"Feature","id":169,"geometry":{"type":"MultiPolygon","coordinates":[[[[595697.674,344703.082],[594312.07,344414.050000001],[595019.77,344898],[595697.674,344703.082]]],[[[595195.716,345135.074999999],[593521.009,344070.135],[593968.62,344474.960000001],[593211.67,344971.26],[593931.03,344639.07],[594440.62,345407.470000001],[595195.716,345135.074999999]]],[[[593338.87,345929.529999999],[593763.86,344740.800000001],[592572.88,345927.07],[592961.97,345165.199999999],[592661.99,345631.130000001],[591815.28,344853.609999999],[592553.32,346211.98],[593338.87,345929.529999999]]],[[[601987.863,346110.82],[602217.408,346032.864700001],[609977.53,343892],[619999.9838,342617.068399999],[621947.207,342369.367000001],[626034.0409,339999.977],[631026,337105.83],[639999.9712,330144.5317],[641850.6,328708.960000001],[648143.9264,322436.5414],[645789.897,321396.6006],[644535.0976,319468.102600001],[640000.0996,317211.1986],[640000.0996,315224.7972],[637924.6982,315727.303400001],[637501.5988,315112.599300001],[637435.696,316045.5023],[636299.0978,315671.1994],[635807.9973,316328.3013],[634873.7989,315840.1011],[633907.5024,317616.4026],[632610.9996,317084.604900001],[632202.3991,315741.6993],[631117.8025,315949.199899999],[631422.3008,317251.597100001],[629902.9999,318543.7972],[630047.8986,320424.298900001],[629487.3994,320017.995200001],[628777.4996,321199.297],[626676.4025,321798.695499999],[623656.6983,325383.099400001],[623073.4014,328377.4023],[621782.7031,328079.4976],[620716.6002,329607.700200001],[619427.6003,328950.498299999],[619155.8019,329726.496200001],[616638.2962,330637.295399999],[615295.1015,328973.501700001],[613819.3015,330612.3026],[612775.6994,329573.300000001],[612011.5966,329785.699200001],[612360.7997,328486.101199999],[609056.6986,330262.9026],[608185.8965,328721.8037],[604658.4038,328123.8049],[603838.8035,326775.200999999],[601913.3014,326508.497300001],[600122.3999,327478.7995],[598100.9005,326041.6009],[598243.2021,325200.001800001],[596772.0028,326848.699899999],[595018.3031,325374.901799999],[593233.9976,327164.7994],[591467.3037,327506.601600001],[588710.3036,322717.502499999],[582700.998,324645.3006],[585844.6997,327879.404899999],[583627.6027,330738.796399999],[583756.102,332131.897600001],[587990.5015,332800.6962],[588150.901,335438.4011],[588977.5013,335017.1017],[589906.0024,336548.103499999],[589566.6027,337337.7974],[587743.999,337242.504699999],[586856.3128,345952.8456],[588946.26,345467.082],[591132.661,346041.187999999],[591599.9,343845.720000001],[592862.27,343563.130000001],[595233.78,344510.51],[595519.24,343902.83],[595578.57,344623.039999999],[596003.2065,344543.9175],[595844.62,344672.09],[596260.308,344970.325999999],[597341.37,344065.33],[600000.0018,344749.4125],[600501.3008,344878.399800001],[602554.326,344875.292199999],[602329.31,343976.859999999],[603613.014,345321.899],[601727.452,346053.8916],[600000.0227,345761.446799999],[599517.989,345679.841],[598731.691,345418.550000001],[599819.809,346694.314999999],[600000.0213,346645.813899999],[601987.863,346110.82]]]]},"properties":{"LAD22CD":"E07000147","LAD22NM":"North Norfolk","BNG_E":611076,"BNG_N":330857,"LONG":1.132099,"LAT":52.83389,"OBJECTID":169,"GlobalID":"494071ad-6a00-4fc8-a987-1d8f09730956"}},{"type":"Feature","id":170,"geometry":{"type":"Polygon","coordinates":[[[625362.8731,308029.327299999],[622674.2003,304889.9955],[620735.704,305014.999700001],[619667.6965,307088.7961],[618844.5014,307159.7958],[618720.5039,308582.7985],[617547.7017,308111.203500001],[616847.597,310034.103],[619001.1987,309710.295700001],[619850.0031,310507.1976],[622217.696,311717.6011],[620670.9968,313849.200999999],[622028.8017,313903.0955],[622624.4002,314777.0954],[623196.3023,313903.0955],[622795.3038,311441.5002],[624900.004,310434.6984],[626065.9011,311010.0537],[625168.1994,308013.501399999],[625362.8731,308029.327299999]]]},"properties":{"LAD22CD":"E07000148","LAD22NM":"Norwich","BNG_E":622355,"BNG_N":309773,"LONG":1.284979,"LAT":52.64013,"OBJECTID":170,"GlobalID":"fa2888be-46c7-4e71-a05d-3781acd2295c"}},{"type":"Feature","id":171,"geometry":{"type":"Polygon","coordinates":[[[615791.5036,313757.1973],[616853.4016,311740.9045],[617680.8017,313202.3961],[618780.0002,312724.402899999],[619850.0031,310507.1976],[619001.1987,309710.295700001],[616847.597,310034.103],[617547.7017,308111.203500001],[618720.5039,308582.7985],[618844.5014,307159.7958],[619667.6965,307088.7961],[620735.704,305014.999700001],[622674.2003,304889.9955],[625362.8731,308029.327299999],[627633.5625,308213.922499999],[628143.8007,308255.4022],[629481.298,306081.304500001],[629579.6379,306191.8389],[630304.8782,307007.0112],[631235.2039,308052.700200001],[632548.9967,307976.202099999],[634008.1004,305218.501499999],[636143.798,304587.202199999],[637120.7017,302799.9038],[638494.6999,303369.6007],[638834.8004,301923.8046],[640105.2984,301193.003799999],[643562.7988,301637.0967],[644538.9975,303468.002599999],[645587.3983,303542.701199999],[647115.3977,305276.3049],[647306.3039,303855.601600001],[644586.0026,300220.0023],[646234.0007,298201.4001],[648115.1031,295554.297800001],[649308.9962,295888.0023],[650063.9965,294943.8026],[648609.6996,291899.8039],[647755.7999,292257.7015],[646991.3013,291210.601199999],[645900.3973,291191.796599999],[643620.8028,292796.1973],[642409.7023,292283.404100001],[641810.2039,290366.502800001],[639844.301,291457.000700001],[638405.9006,290651.9011],[636498.9993,291689.6041],[634235.9032,289810.901900001],[632389.397,291398.897299999],[631819.0037,290318.896400001],[633359.8985,289763.795299999],[633370.0976,288581.1039],[631698.4032,288397.996300001],[628779.297,286374.5955],[627772.7977,283757.604599999],[625765.2985,281768.7039],[623703.1015,282041.9957],[622016.5,279783.0023],[618954.8038,277895.8025],[608927.3996,280036.899599999],[606325.0027,279951.0042],[605617.2961,282955.1043],[606434.2003,284081.5019],[605558.7974,284111.903200001],[606979.2978,285204.600400001],[607980.0008,284627.295700001],[608904.7009,288527.7991],[610338.7974,289204.195499999],[609051.1992,294354.801200001],[610105.6023,295660.0975],[607717.8986,297659.295299999],[605844.497,297612.298699999],[601677.8966,299368.1961],[599787.502,301633.997500001],[600790.1014,302270.395400001],[600198.7986,302665.5023],[600836.1996,303772.295499999],[605993.0978,303266.200300001],[605688.5994,306330.6032],[604468.1984,306273.499500001],[604673.4015,308956.2016],[605963.5969,309763.500499999],[606650.897,311665.9959],[608137.3001,308926.4001],[608380.2986,310114.4001],[609640.8035,310281.802100001],[612213.6006,309624.700200001],[612890.1986,312830.002699999],[614709.7022,312219.1976],[615791.5036,313757.1973]]]},"properties":{"LAD22CD":"E07000149","LAD22NM":"South Norfolk","BNG_E":628990,"BNG_N":295823,"LONG":1.373233,"LAT":52.51218,"OBJECTID":171,"GlobalID":"709f3dd4-0691-452a-b2a5-c05c8e6d6081"}},{"type":"Feature","id":172,"geometry":{"type":"Polygon","coordinates":[[[399803.7016,475231.195900001],[400584.8964,473272.396600001],[401894.3028,473584.7972],[402476.198,472922.4968],[403434.3978,469996.804199999],[406266.7989,469626.100299999],[410529.5985,463859.751],[409674.3012,461915.397500001],[408379.3979,461125.2037],[408452.5975,459971.6039],[409696.6041,459206.302999999],[410055.5034,457526.603800001],[410916.0981,457512.797700001],[412117.6014,453578.104],[408046.0006,450914.0966],[407732.6965,451902.8036],[407069.0021,451022.295600001],[402317.3528,450605.654899999],[402522.0982,448585.903000001],[401616.8977,447808.195699999],[403214.3041,445262.804300001],[401450.1001,444994.801000001],[401257.8006,441404.298699999],[398667.5981,441702.103499999],[397063.002,439322.3047],[394185.0965,441332.2994],[394742.8996,442165.900699999],[393327.0989,443865.7042],[392652.8013,446613.297700001],[391415.1022,447826.2005],[388130.5007,448821.695499999],[387988.2982,450699.498],[387239.2014,452627.6961],[385286.6967,451690.4044],[384878.4013,452818.9014],[385599.201,453561.798699999],[384991.6967,453964.603399999],[380792.8993,453190.505000001],[379173.8991,455357.104800001],[377809.696,454872.3036],[376997.3019,455459.9954],[377009.1995,457225.200099999],[377844.2016,457098.0964],[376685.4984,458181.296399999],[375605.7005,461521.8002],[372209.7989,460317.7048],[369352.2999,461239.0011],[369714.2003,464470.896],[366774.2012,466732.7985],[365826.2995,466650.402100001],[363191.2027,470277.6039],[363491.0014,473169.8959],[365227.304,473672.801999999],[370052.1984,481319.203199999],[373651.8024,481096.696900001],[374238.0015,482702.997099999],[375786.9022,482774.3967],[376489.9998,483844.9003],[378090.3002,482484.5996],[379309.9014,484654.998400001],[380217.5012,483781.6984],[381023.4972,484143.104900001],[381632.296,482576.0035],[385163.4001,484078.4034],[387208.9997,483538.098099999],[388888.5022,481430.601399999],[390216.4022,482218.9957],[390939.6013,481071.903999999],[393577.3035,481809.7028],[396127.8967,479398.8029],[397109.801,476233.099099999],[399803.7016,475231.195900001]]]},"properties":{"LAD22CD":"E07000163","LAD22NM":"Craven","BNG_E":389513,"BNG_N":461989,"LONG":-2.16168,"LAT":54.05376,"OBJECTID":172,"GlobalID":"44340726-c916-4486-b4ea-9451182fd4cb"}},{"type":"Feature","id":173,"geometry":{"type":"Polygon","coordinates":[[[455389.496,512278.5012],[457197.2998,511786.302100001],[458730.0979,512758.503799999],[462483.8022,511393.204700001],[463832.0016,509475.3036],[465962.6985,509754.2038],[466732.2018,507758.695],[462725.8029,507495.4004],[461799.3961,506721.202],[461145.4968,502309.005000001],[459697.16,501443],[460454.28,500425.939999999],[459918,499580.5],[460772.6946,496747.3226],[460002.5994,496470.1963],[458690.4969,492997.2004],[457179.103,493199.8025],[457188.152,494763.9548],[454858.6006,495184.1544],[453864.102,498800.3993],[451500.3996,497873.204700001],[449565.9021,498093.1018],[447813.8019,494638.000800001],[449092.5,493150.5],[449021.5,490654],[450892.6974,488161.8046],[451867.1976,484249.4045],[451252.6,483156.640000001],[451695.0491,482584.6011],[452429.8983,483118.098300001],[452278.415,479986.115],[452982.3,478581.17],[454332.81,478843.130000001],[457147.68,476430.470000001],[458889.751,476985.9045],[460114.19,475530.785],[459598.6,474507.02],[464583.2008,471423.096000001],[464416.2961,468449.897],[462617.603,468376.698000001],[462913.4028,467367.696799999],[461579.4014,465898.6973],[462971.8026,464845.0989],[461651.1005,462701.702400001],[461728.1011,461727.701199999],[459719.497,461720.303400001],[457731.5713,459582.0494],[456379.2991,459658.203600001],[455871.997,456657.4026],[456680.6973,455346.897700001],[455705.3973,455123.2018],[454141.3009,456553.4024],[452074.1981,458088.7029],[451312.7008,457883.2017],[450897.496,460127.7992],[447434.0014,460140.4956],[446745.5965,463076.395199999],[445212.1966,465197.8979],[443405.4976,465309.7959],[442785.403,467223.798],[444056.9975,467521.8027],[443201.6961,468181.503900001],[443696.3009,472712.9967],[439645.6013,476355.404100001],[437153.4986,476847.803200001],[436445.3962,480175.6006],[434356.8975,479066.1982],[433702.8993,480630.600299999],[433033.6971,478733.103499999],[429262.2001,477349.399599999],[427268.5031,478851.299699999],[426303.8969,478394.000600001],[426920.1987,477966.502900001],[426516.7019,477251.297700001],[424695.9038,476744.502699999],[423545.5034,477492.998500001],[424581.2975,479419.3971],[424518.8989,481687.5978],[423119.0029,482406.502],[423797.5962,482700.3979],[422992.804,483892.296700001],[421269.5038,483535.698799999],[420651.8003,485148.497099999],[419286.3028,487806.5962],[421202.9991,487772.396],[422810.0028,488804.500600001],[423667.2995,491821.097100001],[423294.9031,494271.9955],[425537.6998,495102.697799999],[425103.9024,495793.200099999],[425685.3029,496543.295399999],[427107.9965,496621.8029],[428603.8979,500682.3006],[427702.5973,502644.5989],[429681.9974,503293.0033],[429530.5026,505552.396600001],[431554.896,506413.4001],[433639.4041,505951.102399999],[433402.5977,506564.2969],[434327.0999,506817.104499999],[435360.7997,506474.4026],[434922.5994,507466.1987],[435526.5007,507985.3002],[434847.0005,508818.601600001],[435127.8025,511126.1011],[434127.1984,511835.498],[435163.8994,512200.3036],[436707.0038,510384.603399999],[436894.8015,509491.598999999],[438149.502,509250.498],[438503.3965,511071.096899999],[439290.7009,510204.305],[440192.1004,511141.196799999],[440760.9025,508729.097200001],[441295.1,508026.6983],[442552.4965,508756.599400001],[442644.396,507839.102],[445437.6,509167.3018],[446675.497,510803.703400001],[448206.2998,510472.1983],[448237.3012,512006.698999999],[449638.4999,513046.4014],[455389.496,512278.5012]]]},"properties":{"LAD22CD":"E07000164","LAD22NM":"Hambleton","BNG_E":443009,"BNG_N":490546,"LONG":-1.34049,"LAT":54.30872,"OBJECTID":173,"GlobalID":"0b900c83-1557-4aa9-8779-84363dce96dc"}},{"type":"Feature","id":174,"geometry":{"type":"Polygon","coordinates":[[[454141.3009,456553.4024],[453066.7963,456354.3993],[453730.8041,454673.500499999],[451473.7021,454675.300000001],[451015.5983,453472.804199999],[452922.6974,447657.798699999],[451202.1015,447934.999399999],[450304.2968,449034.104699999],[448046.2962,449005.502900001],[448646.3964,447332.1019],[448027.5964,447003.495999999],[447839.6007,444400.0012],[446844.8011,445584.302200001],[445186.8018,445609.494999999],[446046.7039,445927.604],[446253.3994,447509.301200001],[445589.9028,447481.8991],[446446.004,448110.099199999],[445476.5992,447770.496400001],[445598.7003,448920.6972],[443115.0983,449462.1022],[443391.2006,450175.2981],[439667.797,449769.1043],[439056.0959,448129.9036],[437356.5002,448047.7971],[437345.0973,446219.4004],[435397.0037,445671.2973],[433020.2,446687.796399999],[429738.3029,446177.002599999],[429543.4968,445288.596899999],[427451.1971,445982.7982],[427202.6992,445086.104800001],[426375.5959,446030.3046],[425029.8041,445312.899900001],[422982.8028,445554.8007],[422755.0989,446312.603800001],[420815.2999,446092.5967],[419336.2019,447036.796499999],[418626.5989,445855.804500001],[418017.7012,446037.502499999],[416803.2037,447457.8959],[414810.3971,447282.596100001],[412893.1978,449227.8993],[410096.201,449415.795499999],[410852.8008,448376.902899999],[409281.5972,448511.204399999],[408046.0006,450914.0966],[412117.6014,453578.104],[410916.0981,457512.797700001],[410055.5034,457526.603800001],[409696.6041,459206.302999999],[408452.5975,459971.6039],[408379.3979,461125.2037],[409674.3012,461915.397500001],[410529.5985,463859.751],[406266.7989,469626.100299999],[403434.3978,469996.804199999],[402476.198,472922.4968],[401894.3028,473584.7972],[400584.8964,473272.396600001],[399803.7016,475231.195900001],[402060.4985,477284.2982],[407504.0033,479368.2017],[407958.8008,480511.204500001],[411305.9988,481782.400599999],[412070.1016,482792.3016],[411610.1014,483546.4957],[416003.2019,482655.7007],[417224.9963,484314.8957],[420651.8003,485148.497099999],[421269.5038,483535.698799999],[422992.804,483892.296700001],[423797.5962,482700.3979],[423119.0029,482406.502],[424518.8989,481687.5978],[424581.2975,479419.3971],[423545.5034,477492.998500001],[424695.9038,476744.502699999],[426516.7019,477251.297700001],[426920.1987,477966.502900001],[426303.8969,478394.000600001],[427268.5031,478851.299699999],[429262.2001,477349.399599999],[433033.6971,478733.103499999],[433702.8993,480630.600299999],[434356.8975,479066.1982],[436445.3962,480175.6006],[437153.4986,476847.803200001],[439645.6013,476355.404100001],[443696.3009,472712.9967],[443201.6961,468181.503900001],[444056.9975,467521.8027],[442785.403,467223.798],[443405.4976,465309.7959],[445212.1966,465197.8979],[446745.5965,463076.395199999],[447434.0014,460140.4956],[450897.496,460127.7992],[451312.7008,457883.2017],[452074.1981,458088.7029],[454141.3009,456553.4024]]]},"properties":{"LAD22CD":"E07000165","LAD22NM":"Harrogate","BNG_E":427473,"BNG_N":464652,"LONG":-1.58161,"LAT":54.07708,"OBJECTID":174,"GlobalID":"7af94b59-fdc8-4864-a3f7-d08014a30d8b"}},{"type":"Feature","id":175,"geometry":{"type":"Polygon","coordinates":[[[419709.2991,515678.2981],[422232.898,515532.0999],[422449.3968,514427.1962],[423801.8012,514513.501499999],[423837.0983,513261.4999],[425247.6963,513924.4001],[425826.3017,512879.499199999],[427221.3001,513139.504799999],[426526.8021,512184.598099999],[427346.4024,512288.0985],[427107.8975,511386.796499999],[428915.9982,510048.899499999],[429542.796,508523.995999999],[431217.5988,508513.798900001],[430623.7977,510041.7015],[431577.2978,509932.602700001],[431764.8977,508958.8015],[433023.8031,510212.7026],[432560.7027,509038.4987],[434096.6999,508845.7039],[434327.0999,506817.104499999],[433402.5977,506564.2969],[433639.4041,505951.102399999],[431554.896,506413.4001],[429530.5026,505552.396600001],[429681.9974,503293.0033],[427702.5973,502644.5989],[428603.8979,500682.3006],[427107.9965,496621.8029],[425685.3029,496543.295399999],[425103.9024,495793.200099999],[425537.6998,495102.697799999],[423294.9031,494271.9955],[423667.2995,491821.097100001],[422810.0028,488804.500600001],[421202.9991,487772.396],[419286.3028,487806.5962],[420651.8003,485148.497099999],[417224.9963,484314.8957],[416003.2019,482655.7007],[411610.1014,483546.4957],[412070.1016,482792.3016],[411305.9988,481782.400599999],[407958.8008,480511.204500001],[407504.0033,479368.2017],[402060.4985,477284.2982],[399803.7016,475231.195900001],[397109.801,476233.099099999],[396127.8967,479398.8029],[393577.3035,481809.7028],[390939.6013,481071.903999999],[390216.4022,482218.9957],[388888.5022,481430.601399999],[387208.9997,483538.098099999],[385163.4001,484078.4034],[381632.296,482576.0035],[381023.4972,484143.104900001],[380217.5012,483781.6984],[379309.9014,484654.998400001],[378980,489778.1019],[379945.7028,492125.100099999],[376200.2024,495676.703500001],[377701.1003,496065.0023],[379503.3965,497912.803400001],[380777.0028,497972.6962],[381150.8999,499529.6006],[380262.7996,500225.001499999],[380102.4991,502748.699100001],[381103.1032,504915.798800001],[383918.198,506310.999399999],[387822.2014,505968.897299999],[388591.3996,507374.1951],[389063.3964,506991.704600001],[392540.0996,507436.8971],[397299.5034,509805.599099999],[397199.6969,508869.497099999],[400308.0025,507946.9011],[402039.5973,506235.700999999],[403823.5976,506445.301000001],[409225.5968,509620.0022],[409306.9013,512032.8016],[410495.0971,512580.3048],[413511.0002,509923.6953],[414594.5002,512401.2961],[414354.9977,515198.4954],[417372.6983,514748.6042],[418128.6962,516372.2994],[419709.2991,515678.2981]]]},"properties":{"LAD22CD":"E07000166","LAD22NM":"Richmondshire","BNG_E":401039,"BNG_N":495786,"LONG":-1.98552,"LAT":54.35761,"OBJECTID":175,"GlobalID":"890beef4-00ef-41b7-b491-24c7499b80c7"}},{"type":"Feature","id":176,"geometry":{"type":"Polygon","coordinates":[[[513532.6622,477077.2697],[514663.853,475939.323999999],[516812.0102,475019.9913],[515766.9983,472178.0998],[513414.196,473023.4979],[510890.3498,472484.052300001],[509572.3025,474014.904100001],[508108.2023,473599.302999999],[506226.3001,474361.604800001],[505136.5009,476830.898],[503336.1011,476512.4991],[502398.4975,475383.802200001],[502860.996,472429.8978],[500834.5001,471108.696],[501130.5967,470089.897600001],[500394.9971,469057.7031],[496610.5018,466510.902100001],[494071.5959,467407.4954],[490696.8017,464724.003599999],[487781.2986,463844.995200001],[488823.4002,462975.903899999],[487890.3973,460961.1007],[486099.1,460215.0042],[486376.2001,457775.502499999],[483289.1997,458153.104499999],[483007.4,460102.0966],[478775.3998,458781.5046],[478666.6969,459343.2038],[473587.8,458490.15],[472603.9963,456508.6952],[470559.7983,455585.0995],[466013.9003,454577.597899999],[467494.67,456117.41],[467255.67,457006.705],[466647.34,456755.119999999],[467782.9427,459043.544399999],[465425.4998,462603.8005],[464629.9998,461931.502900001],[461651.1005,462701.702400001],[462971.8026,464845.0989],[461579.4014,465898.6973],[462913.4028,467367.696799999],[462617.603,468376.698000001],[464416.2961,468449.897],[464583.2008,471423.096000001],[459598.6,474507.02],[460114.19,475530.785],[458889.751,476985.9045],[457147.68,476430.470000001],[454332.81,478843.130000001],[452982.3,478581.17],[452278.415,479986.115],[452429.8983,483118.098300001],[451695.0491,482584.6011],[451252.6,483156.640000001],[451867.1976,484249.4045],[450892.6974,488161.8046],[449021.5,490654],[449092.5,493150.5],[447813.8019,494638.000800001],[449565.9021,498093.1018],[451500.3996,497873.204700001],[453864.102,498800.3993],[454858.6006,495184.1544],[457188.152,494763.9548],[457179.103,493199.8025],[458690.4969,492997.2004],[460002.5994,496470.1963],[460772.6946,496747.3226],[459918,499580.5],[460454.28,500425.939999999],[459697.16,501443],[461145.4968,502309.005000001],[463250.9968,502645.398700001],[465814.9965,500523.596000001],[468221.6968,501994.8049],[476496,499195],[478463.5,496090],[481101,497723.5],[482442.37,496264.24],[483844.5,496498.5],[485385,498307],[486527.5,498464.5],[487078.5,497603],[488920.6012,498687.3017],[489676.5,495191.5],[493307.4,491588.58],[490865.5,489960.300000001],[490421,486890.300000001],[491478.73,483039.289999999],[490229.29,479680.449999999],[492326,479017.119999999],[493612.6016,479462.004899999],[494679.1003,478391.701199999],[495484.5026,479281.196599999],[496652.3218,479011.236099999],[500720.0009,480957.196900001],[503062.901,480781.897],[503920.8986,481508.799000001],[507217.9006,480480.0035],[509840.9443,481559.895500001],[511324.6006,477032.4003],[513532.6622,477077.2697]]]},"properties":{"LAD22CD":"E07000167","LAD22NM":"Ryedale","BNG_E":474645,"BNG_N":478532,"LONG":-0.85735,"LAT":54.19713,"OBJECTID":176,"GlobalID":"5f30fc7a-a73e-4acd-8dfd-d73c54c41e8c"}},{"type":"Feature","id":177,"geometry":{"type":"Polygon","coordinates":[[[513532.6622,477077.2697],[511324.6006,477032.4003],[509840.9443,481559.895500001],[507217.9006,480480.0035],[503920.8986,481508.799000001],[503062.901,480781.897],[500720.0009,480957.196900001],[496652.3218,479011.236099999],[495484.5026,479281.196599999],[494679.1003,478391.701199999],[493612.6016,479462.004899999],[492326,479017.119999999],[490229.29,479680.449999999],[491478.73,483039.289999999],[490421,486890.300000001],[490865.5,489960.300000001],[493307.4,491588.58],[489676.5,495191.5],[488920.6012,498687.3017],[487078.5,497603],[486527.5,498464.5],[485385,498307],[483844.5,496498.5],[482442.37,496264.24],[481101,497723.5],[478463.5,496090],[476496,499195],[468221.6968,501994.8049],[465814.9965,500523.596000001],[463250.9968,502645.398700001],[461145.4968,502309.005000001],[461799.3961,506721.202],[462725.8029,507495.4004],[466732.2018,507758.695],[465962.6985,509754.2038],[463832.0016,509475.3036],[462483.8022,511393.204700001],[464636.299,512421.2004],[467927.9995,510802.2038],[472584.2988,511876.6963],[474692.2971,510900.795600001],[474608.2964,515577.297],[475975.5996,517666.798900001],[477689.3026,517966.802999999],[478232.5683,518788.830600001],[478699.5776,518754.2481],[479863.7884,517911.6886],[479999.9784,517699.5054],[481416.354,515492.801000001],[481930.6491,515700.985099999],[483395.0221,516064.582699999],[484290.3966,515418.1676],[484713.705,514717.459000001],[485317.3074,514676.789899999],[485410.07,514609.82],[486203.268,512527.986],[489025.3646,512031.489600001],[490156.4582,511769.2479],[492521.6053,510482.795],[494006.5405,508960.744899999],[495646.9,507080.515799999],[495607.3839,505859.6173],[495276.09,505214.52],[495558.758,504357.262499999],[495555.762,504264.698000001],[495607.983,504207.976],[495866.26,503424.689999999],[496680.386,503043.141899999],[497214.99,502462.460000001],[497604.7584,502609.9257],[498045.09,502403.560000001],[499866.61,500368.699999999],[500000.0017,500030.707800001],[500012.1262,499999.986300001],[501994.84,494976.119999999],[503031.4,494028.300000001],[503753.972,489816.524],[505242.6303,489267.431600001],[505235.8252,489249.533],[504501.11,487725.810000001],[506389.37,484867.01],[506559.6579,484782.273499999],[506580.69,484749.880000001],[507301.2082,484413.272600001],[513202.099,481476.946],[513132.8744,481430.670700001],[512570.462,481487.445],[512399.9434,480940.7213],[512025.275,480690.263],[512140.1888,480107.8851],[512089.996,479946.955],[512222.6599,479689.924900001],[512541.428,478074.423],[513532.6622,477077.2697]]]},"properties":{"LAD22CD":"E07000168","LAD22NM":"Scarborough","BNG_E":487119,"BNG_N":504929,"LONG":-0.65851,"LAT":54.43234,"OBJECTID":177,"GlobalID":"e02c264f-a673-4f11-adcd-25618139d80e"}},{"type":"Feature","id":178,"geometry":{"type":"Polygon","coordinates":[[[452922.6974,447657.798699999],[458933.7015,442539.1039],[459833.4025,443672.499500001],[461574.6028,442445.500700001],[465282.0028,444210.4955],[466315.6036,442579.802300001],[469500.0029,444062.797800001],[470863.299,443264.7962],[469270.6005,441109.1032],[469834.7029,436878.7042],[471197.0013,436072.9048],[470273.2989,434465.9048],[470745.3039,430447.0952],[467781.0973,428653.898499999],[468652.1962,427124.1964],[471941.9014,426801.0989],[472442.2034,425216.3025],[468886.1004,424770.700099999],[468583.2015,423203.998500001],[467398.8975,423659.098300001],[467422.2969,422758.3961],[463558.0017,422364.0989],[462038.0989,423777.4044],[461165.7962,423457.7959],[460790.2006,421296.3046],[459337.7289,419595.885199999],[462971.3986,418147.296],[461831.2963,417334.798599999],[458154.403,417046.301100001],[457270.1037,415478.799799999],[456139.9037,416583.3037],[453635.4005,415790.9005],[452336.2014,416582.6039],[451854.2034,414469.998600001],[450841.0008,414112.7009],[449315.7965,416800.8014],[449991.2978,422038.802100001],[452986.2008,422345.1044],[452991.8982,422995.498199999],[451589.1989,424502.796700001],[451150.6029,423993.3026],[450944.4022,424549.9033],[448361.9006,424530.9987],[446132.2959,427484.4033],[445252.103,427693.5031],[445444.6001,429053.7041],[446585.5021,429017.5041],[446877.3031,429880.6971],[445313.3961,431908.397],[445213.4003,435023.0953],[445946.5017,435806.700999999],[443790.7975,437683.603800001],[444411.4033,438449.804500001],[442656.9037,440250.199100001],[445302.8015,441228.199200001],[444629.6995,445131.8018],[445186.8018,445609.494999999],[446844.8011,445584.302200001],[447839.6007,444400.0012],[448027.5964,447003.495999999],[448646.3964,447332.1019],[448046.2962,449005.502900001],[450304.2968,449034.104699999],[451202.1015,447934.999399999],[452922.6974,447657.798699999]]]},"properties":{"LAD22CD":"E07000169","LAD22NM":"Selby","BNG_E":457551,"BNG_N":426670,"LONG":-1.12908,"LAT":53.73327,"OBJECTID":178,"GlobalID":"74493323-0be9-4891-bb3f-c8f75941c2b8"}},{"type":"Feature","id":179,"geometry":{"type":"Polygon","coordinates":[[[449575.6824,363293.557700001],[449895.0038,362199.300899999],[450855.8007,362040.296399999],[450943.0005,360538.1964],[455123.7989,357827.802200001],[456051.6981,356554.4967],[451952.501,354086.303200001],[451612.6973,351920.5032],[452557.5978,350480.395400001],[454929.2979,350437.397700001],[454920.7972,347117.797900001],[453100.9968,347049.997400001],[452089.097,345921.2005],[451808.7979,347547.9048],[450154.5006,349427.196900001],[448040.302,350344.0045],[446793.5993,349626],[444613.7041,350838.203],[444027.1999,352232.004000001],[444868.4023,353958.0999],[446786.1994,354778.600099999],[446350.8972,355728.0033],[446923.2034,356320.9036],[445476.3024,359488.9967],[445331.5026,363013.5978],[446849.5008,363236.504000001],[447159.3997,364019.4999],[449575.6824,363293.557700001]]]},"properties":{"LAD22CD":"E07000170","LAD22NM":"Ashfield","BNG_E":450035,"BNG_N":355843,"LONG":-1.25422,"LAT":53.09747,"OBJECTID":179,"GlobalID":"994f9dca-c220-4a9e-9ea6-3107d888247b"}},{"type":"Feature","id":180,"geometry":{"type":"Polygon","coordinates":[[[479948.5978,396038.3046],[478445.5973,394420.0978],[478631.9027,392890.9955],[480612.0036,391620.2993],[481410.1998,389592.299799999],[480546.4966,388346.7963],[481573.3036,387463.4991],[480542.5967,385864.9967],[481650.4031,385981.903200001],[482725.0974,384821.4954],[482247.7001,382172.603599999],[483359.2003,381536.595699999],[483585.6014,379327.797900001],[483351.3015,378129.6009],[482504.5997,378764.1993],[481559.6992,377013.9003],[482504.0967,375793.299699999],[481699.9972,372905.0964],[481576.2965,367282.4959],[481098.0005,368183.198000001],[478814.3989,367787.3014],[477563.7963,369721.897600001],[476372.5993,368955.696900001],[473921.4993,370192.902799999],[470287.1011,369075.3027],[470378.5966,370379.6993],[469009.4959,371417.202299999],[466373.6983,371489.401699999],[464960.0001,374220.199999999],[459948.3964,371325.5985],[458594.3018,370089.102499999],[452886.8973,369249.6028],[453360.6998,371241.7026],[452609.6984,372581.499],[453298.598,374096.295399999],[455145.302,374556.2038],[454682.1027,375092.4003],[455676.2015,375952.1042],[454755.3024,376996.0954],[454964.9001,379000.9015],[453416.8189,379685.115599999],[457442.4997,383063.6986],[457282.9001,383658.6982],[456231.0034,383448.2985],[455831.3983,384764.8016],[457434.8978,384679.696],[456918.6992,386134.7995],[457940.8972,386873.698000001],[457650.5968,388479.0984],[458906.1959,389290.496200001],[458861.4995,390420.8026],[461200.2028,392622.102499999],[464482.3967,393122.9991],[464520.0024,392479.903200001],[465592.7014,392617.004000001],[466817.1012,393817.000499999],[467405.9965,397691.601399999],[469557.001,399141.396400001],[470701.1021,401171.5952],[473075.6962,398163.0964],[471779.3995,397069.6994],[472053.5972,396493.904200001],[474986.2006,397208.6996],[479948.5978,396038.3046]]]},"properties":{"LAD22CD":"E07000171","LAD22NM":"Bassetlaw","BNG_E":468073,"BNG_N":384835,"LONG":-0.9787,"LAT":53.35604,"OBJECTID":180,"GlobalID":"0712fe19-e17d-4cbe-9fbf-c2f0e296fbf1"}},{"type":"Feature","id":181,"geometry":{"type":"Polygon","coordinates":[[[452089.097,345921.2005],[452514.5009,344079.297700001],[453576.9018,343649.300799999],[452052.2993,342921.999],[450661.2008,343285.604900001],[451678.8969,341416.1],[450694.1975,339798.403100001],[455078.8963,335856.8014],[453965.2029,334970.0952],[453162.2989,335258.7026],[452968.5976,334395.6996],[452537.1995,333406.3028],[451248.4965,333028.201099999],[450798.1018,334213.501800001],[448396.3979,335001.8961],[448404.9975,339325.7984],[447627.2986,340031.7963],[447930.9972,341602.196799999],[446571.8978,345370.698100001],[444896.6004,348413.797],[444613.7041,350838.203],[446793.5993,349626],[448040.302,350344.0045],[450154.5006,349427.196900001],[451808.7979,347547.9048],[452089.097,345921.2005]]]},"properties":{"LAD22CD":"E07000172","LAD22NM":"Broxtowe","BNG_E":449829,"BNG_N":341893,"LONG":-1.25944,"LAT":52.9721,"OBJECTID":181,"GlobalID":"94eefc62-e71d-41c7-ba83-6be524e98f0b"}},{"type":"Feature","id":182,"geometry":{"type":"Polygon","coordinates":[[[466755.2962,343582.9998],[466127.6987,342994.2983],[464712.0959,343346.7974],[464498.3014,339752.2963],[462350.1002,340234.498299999],[461502.104,339409.104499999],[459192.0027,341522.5996],[458990.7985,343260.402100001],[457664.3001,343558.296800001],[457937.0962,344513.4034],[456900.2962,344761.602399999],[457568.6986,345806.0034],[454920.7972,347117.797900001],[454929.2979,350437.397700001],[452557.5978,350480.395400001],[451612.6973,351920.5032],[451952.501,354086.303200001],[456051.6981,356554.4967],[457727.9025,356171.0965],[457679.9987,355359.0989],[458993.7997,354751.7028],[458358.6991,353281.9035],[461152.9998,353757.8972],[460843.6039,352616.7039],[461720.3013,350972.004699999],[465176.804,347878.3003],[463673.2017,346329.2037],[464913.5969,345718.7984],[464656.9034,344686.304],[466755.2962,343582.9998]]]},"properties":{"LAD22CD":"E07000173","LAD22NM":"Gedling","BNG_E":459184,"BNG_N":347811,"LONG":-1.11907,"LAT":53.02434,"OBJECTID":182,"GlobalID":"6112dfd4-42ae-4bee-9c46-c8297888369b"}},{"type":"Feature","id":183,"geometry":{"type":"Polygon","coordinates":[[[455123.7989,357827.802200001],[450943.0005,360538.1964],[450855.8007,362040.296399999],[449895.0038,362199.300899999],[449575.6824,363293.557700001],[450861.3497,364883.2027],[453761.7972,365601.2971],[452886.8973,369249.6028],[458594.3018,370089.102499999],[459948.3964,371325.5985],[460527.7026,370554.7992],[459469.6964,367238.398499999],[456709.1015,364558.195699999],[459543.9019,362177.0973],[458283.6031,360847.697799999],[458978.2001,358348.7031],[457173.7025,358646.697799999],[455123.7989,357827.802200001]]]},"properties":{"LAD22CD":"E07000174","LAD22NM":"Mansfield","BNG_E":455047,"BNG_N":363637,"LONG":-1.17804,"LAT":53.16703,"OBJECTID":183,"GlobalID":"eed2fa18-1292-4b8e-b167-16bf1f2bc5cc"}},{"type":"Feature","id":184,"geometry":{"type":"Polygon","coordinates":[[[489087.8028,372235.2981],[488512.8994,369770.003799999],[487055.7992,370031.798900001],[485936.9032,368606.197000001],[484874.4034,368937.6021],[482694.6978,365763.6006],[485769.7016,365229.3036],[486036.3964,360737.999199999],[484914.9031,359707.5042],[485985.3017,358433.898800001],[485160.4988,356384.795299999],[487533.5016,352909.800000001],[486305.4987,352860.5041],[486135.9967,352079.897600001],[483908.6017,351601.1546],[483202.5029,348729.196699999],[481359.0969,348301.899],[480890.4971,346596.497199999],[480332.7022,346799.3991],[482131.5024,342870.503699999],[480931.9038,342828.8956],[479845.9962,340667.0045],[479358.8038,340992.801200001],[478267.2979,341804.698799999],[479639.2019,343800.997400001],[479090.4023,345497.1019],[476278.1027,346604.404899999],[475265.1969,346033.0984],[473179.4026,349291.795600001],[468843.3002,343709.003699999],[466755.2962,343582.9998],[464656.9034,344686.304],[464913.5969,345718.7984],[463673.2017,346329.2037],[465176.804,347878.3003],[461720.3013,350972.004699999],[460843.6039,352616.7039],[461152.9998,353757.8972],[458358.6991,353281.9035],[458993.7997,354751.7028],[457679.9987,355359.0989],[457727.9025,356171.0965],[456051.6981,356554.4967],[455123.7989,357827.802200001],[457173.7025,358646.697799999],[458978.2001,358348.7031],[458283.6031,360847.697799999],[459543.9019,362177.0973],[456709.1015,364558.195699999],[459469.6964,367238.398499999],[460527.7026,370554.7992],[459948.3964,371325.5985],[464960.0001,374220.199999999],[466373.6983,371489.401699999],[469009.4959,371417.202299999],[470378.5966,370379.6993],[470287.1011,369075.3027],[473921.4993,370192.902799999],[476372.5993,368955.696900001],[477563.7963,369721.897600001],[478814.3989,367787.3014],[481098.0005,368183.198000001],[481576.2965,367282.4959],[481699.9972,372905.0964],[484507.8033,372616.2991],[484550.1004,373744.2962],[487618.2031,374287.8006],[489087.8028,372235.2981]]]},"properties":{"LAD22CD":"E07000175","LAD22NM":"Newark and Sherwood","BNG_E":470624,"BNG_N":357451,"LONG":-0.94643,"LAT":53.1096,"OBJECTID":184,"GlobalID":"9b0de258-6d75-4dfc-9756-97fc8ab59aa7"}},{"type":"Feature","id":185,"geometry":{"type":"Polygon","coordinates":[[[479358.8038,340992.801200001],[478452.3995,339355.299900001],[479101.4013,338910.6972],[476562.5985,335679.202199999],[476929.5037,334853.6985],[472986.6001,331820.696699999],[471398.5024,331566.0996],[472254.3974,330380.198999999],[470177.6974,327868.398],[468999.0989,327512.799799999],[468651.0996,325275.700200001],[466005.8037,325392.196799999],[465047.6039,324692.2972],[462661.2029,324453.295600001],[462464.0965,325642.895099999],[459607.0014,325034.099300001],[458685.3025,323493.100400001],[456501.4991,323544.595699999],[454200.2036,321614.7981],[452298.7029,321846.1019],[449846.9021,323909.201300001],[448979.802,326756.896199999],[449373.8005,330903.7992],[451239.3033,331672.999],[451248.4965,333028.201099999],[452537.1995,333406.3028],[452968.5976,334395.6996],[455509.9976,332716.700200001],[456694.7963,333953.5962],[457071.1009,338070.4977],[457777.1008,337518.4957],[458442.9967,338730.998600001],[460600.1025,338663.9978],[461502.104,339409.104499999],[462350.1002,340234.498299999],[464498.3014,339752.2963],[464712.0959,343346.7974],[466127.6987,342994.2983],[466755.2962,343582.9998],[468843.3002,343709.003699999],[473179.4026,349291.795600001],[475265.1969,346033.0984],[476278.1027,346604.404899999],[479090.4023,345497.1019],[479639.2019,343800.997400001],[478267.2979,341804.698799999],[479358.8038,340992.801200001]]]},"properties":{"LAD22CD":"E07000176","LAD22NM":"Rushcliffe","BNG_E":466606,"BNG_N":335453,"LONG":-1.01097,"LAT":52.9124,"OBJECTID":185,"GlobalID":"1a5b010d-9854-49be-8b4c-c2b90245653e"}},{"type":"Feature","id":186,"geometry":{"type":"Polygon","coordinates":[[[460619.8989,235588.003],[465097.0001,234201.199999999],[462272.9017,229157.3038],[463406.9027,227606.897600001],[465072.9987,228139.0952],[462905.0011,225295.699100001],[463415.7991,224698.800000001],[462473.9988,222096.8048],[464172.3989,221375.801200001],[463593.2988,220196.898600001],[464497.0977,219314.801100001],[464715.699,216584.502699999],[465745.301,216118.0962],[463601.8984,214916.000299999],[460606.8964,216668.498600001],[459306.6998,215468.1022],[461437.2978,213559.898499999],[460430.6995,212458.3038],[460541.4966,210976.8978],[460308.4005,211565.999199999],[458432.5007,211224.7969],[457491.2033,213120.904100001],[456120.9978,212922.800799999],[455643.0976,211233.304400001],[452356.3029,212644.2006],[451642.6022,210023.300799999],[451262.9006,210799.298699999],[449497.8021,211088.5459],[448191.6978,209373.596799999],[448032.8979,210354.8959],[446837.8011,210125.501499999],[445701.9037,213686.902100001],[446497.7995,214435.3979],[445439.3975,214822.2971],[445607.9018,217714.7991],[445958.3004,218419.397399999],[448524.7983,218290.104499999],[448146.5973,219178.100299999],[449232.3977,219825.095100001],[448409.6972,221324.7958],[448859.0036,222251.000700001],[448002.3995,222902.5042],[448319.3973,224078.297599999],[445475.0986,226470.402899999],[445982.4007,227281.300799999],[443955.8966,227955.5977],[443968.0004,230198.2958],[442863.5992,231423.395099999],[441177.3028,231435.2017],[440649.0994,230634.200999999],[438730.8035,232452.600500001],[437591.5999,231384.7961],[434876.0973,230834.4037],[432857.3023,233261.5989],[435185.7983,244079.202400001],[435899.4001,244906.695499999],[437965.2001,244507.5998],[437522.8031,246215.400900001],[439408.3991,246812.899900001],[442201.0013,244154.7008],[444086.8034,244967.998],[443175.7984,246764.603700001],[441636.6021,246910.402000001],[443479.2991,248829.602600001],[444673.6993,248735.899499999],[445790.299,252455.4047],[451604.5017,244578.5995],[446608.9017,243401.296499999],[446822.2014,242613.801899999],[448239.4037,242419.897399999],[447211.2034,239450.7973],[449635.4987,235338.6044],[449314.403,231472.801000001],[452176.4039,232252.197899999],[455301.7026,231300.000399999],[457509.2023,233102.5045],[459529.201,233558.204],[460619.8989,235588.003]]]},"properties":{"LAD22CD":"E07000177","LAD22NM":"Cherwell","BNG_E":449301,"BNG_N":221201,"LONG":-1.28506,"LAT":51.8872,"OBJECTID":186,"GlobalID":"56164085-25c8-43c9-8ebd-1d86b577dbdd"}},{"type":"Feature","id":187,"geometry":{"type":"Polygon","coordinates":[[[451642.6022,210023.300799999],[453859.0972,208462.4976],[456668.8986,207782.202299999],[455701.9014,206747.898399999],[455754.0019,204508.999299999],[457014.2018,204183.452500001],[456019.5011,203457.000399999],[456085.0988,202069.0977],[453830.4003,201646.748600001],[452499.5031,203209.4013],[449057.8992,206017.297499999],[448191.6978,209373.596799999],[449497.8021,211088.5459],[451262.9006,210799.298699999],[451642.6022,210023.300799999]]]},"properties":{"LAD22CD":"E07000178","LAD22NM":"Oxford","BNG_E":452277,"BNG_N":206368,"LONG":-1.24405,"LAT":51.75357,"OBJECTID":187,"GlobalID":"83cad9a4-582c-4a4a-b482-a8e3466cc4fc"}},{"type":"Feature","id":188,"geometry":{"type":"Polygon","coordinates":[[[460541.4966,210976.8978],[461743.4039,209595.4033],[463340.0023,209491.403100001],[463538.296,206828.295399999],[465997.6988,205530.096999999],[467035.2985,205580.4026],[467061.1962,207022.399800001],[470070.09,206414.73],[470506.799,207382.696699999],[472278.965,207091.074999999],[474370.92,205993.23],[476886.2996,202861.900699999],[476489.4978,199885.3028],[477537.7007,198604.499399999],[476300.7024,198089.096899999],[477710.4017,197218.896],[474935.9964,197623.700099999],[473946.6962,196771.304099999],[474311.804,195283.300100001],[472688.9039,195181.599199999],[473828.2972,193636.001599999],[472771.9976,192754.0041],[473578.01,191528.640000001],[473290.73,190095.65],[475111.03,189533.33],[473434.28,187935.85],[473668.35,186342.85],[476240.09,184713.4],[476591.7036,183461.404100001],[476379.8962,182545.8961],[477902.0005,181103.399],[478505.56,178899.890000001],[476883.0017,178101.998199999],[474996.9027,174880.200300001],[473102.2041,173916.2962],[472675.0029,174557.6029],[473635.2969,175644.1019],[472471.5022,177640.700200001],[469644.2009,176625.400900001],[468618.2019,174607.8982],[467007.9001,175580.300000001],[465956.5972,177416.704299999],[463428.8016,176705.4979],[462430.704,177129.0967],[461651.56,179323.619999999],[459627.8037,180045.501800001],[459709.3968,183018.001],[455269.5963,181353.1975],[455258.9025,182377.404300001],[453725.7004,182088.9969],[455246.5019,188442.6982],[453446.1021,187109.899700001],[450723.5005,187554.202500001],[449279.9964,186797.599099999],[450994.697,189690.301100001],[450417.6005,190561.3017],[450955.5,191373.499199999],[452496.4045,191792.7305],[454135.6037,193962.3982],[451080.0003,194845.395300001],[449881.1027,194047.3039],[449257.8997,194473.7018],[450019.7021,196899.7974],[451963.6978,196689.5975],[453561.25,197764.27],[453869.73,199125.24],[452499.5031,203209.4013],[453830.4003,201646.748600001],[456085.0988,202069.0977],[456019.5011,203457.000399999],[457014.2018,204183.452500001],[455754.0019,204508.999299999],[455701.9014,206747.898399999],[456668.8986,207782.202299999],[453859.0972,208462.4976],[451642.6022,210023.300799999],[452356.3029,212644.2006],[455643.0976,211233.304400001],[456120.9978,212922.800799999],[457491.2033,213120.904100001],[458432.5007,211224.7969],[460308.4005,211565.999199999],[460541.4966,210976.8978]]]},"properties":{"LAD22CD":"E07000179","LAD22NM":"South Oxfordshire","BNG_E":463890,"BNG_N":191964,"LONG":-1.07847,"LAT":51.62288,"OBJECTID":188,"GlobalID":"d2e88847-6036-43f2-99cf-c17435372b07"}},{"type":"Feature","id":189,"geometry":{"type":"Polygon","coordinates":[[[448191.6978,209373.596799999],[449057.8992,206017.297499999],[452499.5031,203209.4013],[453869.73,199125.24],[453561.25,197764.27],[451963.6978,196689.5975],[450019.7021,196899.7974],[449257.8997,194473.7018],[449881.1027,194047.3039],[451080.0003,194845.395300001],[454135.6037,193962.3982],[452496.4045,191792.7305],[450955.5,191373.499199999],[450417.6005,190561.3017],[450994.697,189690.301100001],[449279.9964,186797.599099999],[450723.5005,187554.202500001],[453446.1021,187109.899700001],[455246.5019,188442.6982],[453725.7004,182088.9969],[451374.0028,182357.4001],[446626.9006,185194.8978],[445698.4985,182959.0978],[443962.0969,183920.4027],[442832.3009,182571.5988],[441364.3008,183316.795399999],[440132.3979,182031.203400001],[439858.7031,183122.801000001],[438393.4981,182091.396199999],[437241.1024,182315.302100001],[436810.603,181209.998500001],[433867.1986,183653.3991],[432621.0978,183123.6008],[430948.9995,183925.1513],[429143.8999,182093.195699999],[428907.2997,180748.000800001],[427655.3036,180005.103399999],[424512.5996,185956.6998],[424000.5978,186460.795499999],[422514.4998,185668.0024],[421497.9992,187230.0953],[421521.9016,189668.7972],[423151.2988,190878.7009],[422682.3033,191609.001800001],[423630.0978,192963.6041],[421408.499,194863.8002],[420829.201,196927.499399999],[422004.5015,199086.601399999],[423018.6028,198015.2981],[424413.6012,198427.699999999],[427326.8039,199351.095699999],[427846.5973,198870.5033],[429423.0035,200234.003],[431525.7002,200597.098999999],[435355.8032,199596.5954],[436096.3993,200695.5009],[437100.5983,200233.403100001],[437472.6979,201757.096999999],[442114.2963,201014.0997],[443701.0005,202967.500499999],[443994.5989,208349.9998],[446837.8011,210125.501499999],[448032.8979,210354.8959],[448191.6978,209373.596799999]]]},"properties":{"LAD22CD":"E07000180","LAD22NM":"Vale of White Horse","BNG_E":435693,"BNG_N":195197,"LONG":-1.48543,"LAT":51.65443,"OBJECTID":189,"GlobalID":"7d7a64b8-2c0f-48d9-960d-975b048a98d0"}},{"type":"Feature","id":190,"geometry":{"type":"Polygon","coordinates":[[[446837.8011,210125.501499999],[443994.5989,208349.9998],[443701.0005,202967.500499999],[442114.2963,201014.0997],[437472.6979,201757.096999999],[437100.5983,200233.403100001],[436096.3993,200695.5009],[435355.8032,199596.5954],[431525.7002,200597.098999999],[429423.0035,200234.003],[427846.5973,198870.5033],[427326.8039,199351.095699999],[424413.6012,198427.699999999],[421652.5034,201524.603499999],[421103.3988,202800.498299999],[421706.896,204621.097200001],[420748.1026,208031.6009],[419446.6032,209430.9004],[422027.2991,211752.795700001],[421700.3989,215139.496300001],[422386.8992,216905.8007],[421657.5988,218592.097999999],[423012.0975,219877.200200001],[423584.2965,222054.3969],[425344.4026,222360.3993],[424473.3037,224921.8961],[426550.8035,226643.903200001],[425351.3037,228636.402899999],[423282.7993,229555.4998],[423049.2002,232166.4024],[426736.004,228615.9987],[428149.7022,230297.2974],[427550.3028,231016.001700001],[430075.3033,231041.5044],[431025.2003,231472.101199999],[430499.1983,232669.8983],[432857.3023,233261.5989],[434876.0973,230834.4037],[437591.5999,231384.7961],[438730.8035,232452.600500001],[440649.0994,230634.200999999],[441177.3028,231435.2017],[442863.5992,231423.395099999],[443968.0004,230198.2958],[443955.8966,227955.5977],[445982.4007,227281.300799999],[445475.0986,226470.402899999],[448319.3973,224078.297599999],[448002.3995,222902.5042],[448859.0036,222251.000700001],[448409.6972,221324.7958],[449232.3977,219825.095100001],[448146.5973,219178.100299999],[448524.7983,218290.104499999],[445958.3004,218419.397399999],[445607.9018,217714.7991],[445439.3975,214822.2971],[446497.7995,214435.3979],[445701.9037,213686.902100001],[446837.8011,210125.501499999]]]},"properties":{"LAD22CD":"E07000181","LAD22NM":"West Oxfordshire","BNG_E":434343,"BNG_N":215816,"LONG":-1.50292,"LAT":51.8399,"OBJECTID":190,"GlobalID":"8f913967-ebb7-463a-9ba5-de83949849ca"}},{"type":"Feature","id":191,"geometry":{"type":"Polygon","coordinates":[[[375863.8039,136861.5031],[374110.9039,138309.5986],[370144.7986,138312.5978],[368334.1008,136044.297],[366355.4015,135666.994999999],[363567.8041,133672.9958],[359528.2024,132323.302200001],[358216.0998,133404.4027],[357993.2029,132357.802300001],[359047.5978,131846.898499999],[357979.2027,131876.300100001],[358196.7981,130276.597999999],[355764.703,129518.2951],[355089.9025,131677.3971],[355664.5997,132294.500399999],[354709.2033,133841.5976],[353605.2968,133539.704],[352850.0986,131784.6963],[351243.499,130999.4011],[350490.4034,131449.0024],[350642.904,130538.5031],[349975.3014,131177.3002],[350554.5005,132718.9989],[348678.0977,134418.4025],[347777.4979,133158.403100001],[342699.002,134613.396600001],[342403.6969,135999.4999],[345067.7998,135087.7009],[344339.7032,136850.2963],[345122.9016,139593.801000001],[341184.6976,141860.802100001],[341538.1964,143811.7037],[343684.798,142590.403200001],[344637.4983,145314.803400001],[347985.4961,145494.402000001],[347615.1032,147491.2004],[345652.3005,148146.9027],[345791.1968,150037.001700001],[348559.5008,152181.297900001],[349355.3965,151591.5967],[350572.4995,152568.497],[349832.2001,153185.2005],[350230.9973,153865.8957],[348974.7962,153930.8971],[349013.1028,156366.199999999],[346729.3033,156936.096799999],[346813.7987,158441.8958],[351670.4035,157895.0024],[355563.0041,155271.4034],[356332.9031,153935.4958],[361208.6035,156097.197000001],[365424.5012,154752.301899999],[364778.4017,153438.797900001],[366751.7993,152769.999399999],[367048.9019,153311.904300001],[368585.6988,152886.7959],[372148.2001,156263.599300001],[373099.8038,155128.904100001],[379952.6039,158503.598099999],[381066.1983,158233.195499999],[381142.1024,157273.700200001],[380226.1008,156743.7019],[380525.0997,154963.8014],[381601.8964,155266.4048],[382419.0974,154553.3989],[382974.4023,150552.5041],[379238.2023,141842.997199999],[375863.8039,136861.5031]]]},"properties":{"LAD22CD":"E07000187","LAD22NM":"Mendip","BNG_E":362238,"BNG_N":144090,"LONG":-2.54178,"LAT":51.19476,"OBJECTID":191,"GlobalID":"5637593a-5077-4b15-a8d1-54da809882b3"}},{"type":"Feature","id":192,"geometry":{"type":"Polygon","coordinates":[[[330403.5144,158589.4449],[331093.6541,157958.918099999],[331110.0276,157929.634199999],[331329.4674,157537.1677],[331306.2288,157390.3883],[330857.8345,156234.3292],[331218.6828,156837.431399999],[331087.903,156011.4015],[332282.2001,155625.901900001],[333033.1025,156625.795700001],[334784.5019,156412.696699999],[337540.3971,154991.9034],[338411.496,156766.4954],[338944.597,156025.7974],[343610.8975,156123.599400001],[343053.6963,158903.8036],[346813.7987,158441.8958],[346729.3033,156936.096799999],[349013.1028,156366.199999999],[348974.7962,153930.8971],[350230.9973,153865.8957],[349832.2001,153185.2005],[350572.4995,152568.497],[349355.3965,151591.5967],[348559.5008,152181.297900001],[345791.1968,150037.001700001],[345652.3005,148146.9027],[347615.1032,147491.2004],[347985.4961,145494.402000001],[344637.4983,145314.803400001],[343684.798,142590.403200001],[341538.1964,143811.7037],[341184.6976,141860.802100001],[345122.9016,139593.801000001],[344339.7032,136850.2963],[345067.7998,135087.7009],[342403.6969,135999.4999],[342699.002,134613.396600001],[340587.6975,134108.201199999],[340040.3986,131308.7026],[338633.9973,131696.1017],[337863.9993,130350.3969],[336204.4993,132157.0997],[335289.0007,132165.0975],[333627.2993,130893.701400001],[335146.6003,129541.7984],[332956.9017,128001.9991],[331238.8041,127289.403100001],[330185.9015,128745.296399999],[328870.5999,128875.199200001],[327810.4994,128125.1039],[328286.8001,129445.296],[326770.0964,130102.3979],[320369.3977,130935.2995],[318861.6976,133034.898499999],[320213.698,133976.4989],[320138.9978,135063.697699999],[318291.9969,134539.5978],[315015.7971,137401.298599999],[315768.8021,138862.600299999],[317649.6984,139265.904899999],[319158.0004,141128.9016],[322231.7014,141775.6965],[322067.097,142461.5001],[324250.4964,144656.2019],[325505.1968,144457.798699999],[326624.4969,145420.5031],[326464.2272,145750.506999999],[328911.0007,147080.797900001],[327945.7019,144435.904999999],[328639.746,144615.994999999],[330109.454,147896.089],[330337.76,147583.491],[331356.725,147264.364],[330329.7435,147784.5155],[330255.892,149636.446],[328824.718,152309.457],[329570.952,158478.517999999],[327951.647,159335.982999999],[330403.5144,158589.4449]]]},"properties":{"LAD22CD":"E07000188","LAD22NM":"Sedgemoor","BNG_E":338429,"BNG_N":143998,"LONG":-2.88246,"LAT":51.19186,"OBJECTID":192,"GlobalID":"93f59758-f0fe-457e-bb1d-5cbb57418a7e"}},{"type":"Feature","id":193,"geometry":{"type":"Polygon","coordinates":[[[375863.8039,136861.5031],[375984.2972,136212.299000001],[374582.2988,135574.101600001],[374712.7027,133654.5011],[377269.8012,131201.703199999],[375574.0972,130000.097200001],[376959.1025,126940.302999999],[373339.1992,122907.297499999],[373641.8011,121331.298599999],[375187.6017,121336.497099999],[375907.0987,119992.901699999],[370955.5025,117989.2952],[370045.0004,119195.899800001],[368695.4983,118810.600099999],[368992.6998,117898.001399999],[368049.0031,116756.4981],[365668.0026,119377.197899999],[364841.4022,121725.2958],[363150.7029,121522.603800001],[361681.903,122382.297700001],[361811.1031,120773.0984],[361049.4986,120162.1033],[359762.4033,120968.102600001],[358953.9998,119881.9035],[358268.4972,120384.5996],[357734.4976,119833.397399999],[358073.5015,116742.302200001],[356809.0967,115863.8036],[357643.3979,114315.8967],[356218.2968,112230.603599999],[357222.2979,110408.0953],[356753.896,109308.699999999],[353628.1026,109944.198100001],[349828.1024,108204.496099999],[349808.6028,107398.4968],[346789.8963,107763.102399999],[344324.4993,106222.603399999],[342990.803,107415.0021],[341738.6008,105788.4977],[337708.3985,106050.002800001],[334603.597,105013.6995],[332873.9976,102838.6021],[331800.78,104301.84],[331564.02,106702.66],[327110.6009,106240.8982],[327420.9038,107412.6028],[325868,108863.493000001],[326103.7245,112618.276699999],[323863.5969,114137.5978],[323622.9978,115960.8959],[327523.9011,115715.896],[329319.997,118000.302100001],[331245.3012,118855.397299999],[331419.7007,122481.999199999],[333838.3482,123079.4482],[333417.0998,123973.9022],[338137.6034,127754.4],[337500.6971,128790.603399999],[337863.9993,130350.3969],[338633.9973,131696.1017],[340040.3986,131308.7026],[340587.6975,134108.201199999],[342699.002,134613.396600001],[347777.4979,133158.403100001],[348678.0977,134418.4025],[350554.5005,132718.9989],[349975.3014,131177.3002],[350642.904,130538.5031],[350490.4034,131449.0024],[351243.499,130999.4011],[352850.0986,131784.6963],[353605.2968,133539.704],[354709.2033,133841.5976],[355664.5997,132294.500399999],[355089.9025,131677.3971],[355764.703,129518.2951],[358196.7981,130276.597999999],[357979.2027,131876.300100001],[359047.5978,131846.898499999],[357993.2029,132357.802300001],[358216.0998,133404.4027],[359528.2024,132323.302200001],[363567.8041,133672.9958],[366355.4015,135666.994999999],[368334.1008,136044.297],[370144.7986,138312.5978],[374110.9039,138309.5986],[375863.8039,136861.5031]]]},"properties":{"LAD22CD":"E07000189","LAD22NM":"South Somerset","BNG_E":345633,"BNG_N":120798,"LONG":-2.77588,"LAT":50.98399,"OBJECTID":193,"GlobalID":"ba34dfaa-d783-470e-9978-d4eefef7cb73"}},{"type":"Feature","id":194,"geometry":{"type":"Polygon","coordinates":[[[403169.3025,307212.8006],[402738.1023,305007.102],[401006.7962,304738.898800001],[399820.8018,307883.898499999],[396588.9028,308999.999],[396403.9991,310263.1975],[398002.601,311958.302200001],[398287.0968,315407.9048],[398910.2008,317960.304199999],[401910.0014,318215.6011],[403878.5015,319574.0023],[406059.9962,317964.503],[406117.1015,317065.700300001],[404305.1009,313179.502699999],[405804.8033,312554.3016],[402851.3977,309605.095799999],[403169.3025,307212.8006]]]},"properties":{"LAD22CD":"E07000192","LAD22NM":"Cannock Chase","BNG_E":401261,"BNG_N":311553,"LONG":-1.98277,"LAT":52.70166,"OBJECTID":194,"GlobalID":"1f1ae5b1-31f2-46e5-afa9-ad0a5495d54a"}},{"type":"Feature","id":195,"geometry":{"type":"Polygon","coordinates":[[[417194.9018,330163.201099999],[418590.8978,329163.7972],[420000.053,329950.0022],[420254.3966,329272.796],[420948.4988,329708.001399999],[425230.3982,328612.2951],[428032.9027,326099.904300001],[426348.1976,324387.304500001],[427610.6978,323625.2026],[427816.0988,322555.698799999],[426105.397,321256.7006],[426326.3977,320493.598999999],[422587.4026,320844.0987],[420074.0029,314976.8982],[416935.001,315751.396500001],[415813.9035,317044.5963],[414666.6033,316484.4966],[414234.4961,317371.2028],[412412.1974,317522.499500001],[411673.2998,319061.499],[412945.3973,320633.2991],[412380.0005,321742.3016],[410726.5029,322050.603399999],[409962.3012,320534.997199999],[407521.4003,322538.8036],[406708.8001,321975.7048],[403377.9026,323319.000299999],[402261.8017,325202.0013],[404354.2992,327843.395199999],[404406.004,330348.1982],[402753.298,330304.400699999],[401465.403,332868.296800001],[400116.8985,332755.699100001],[399239.5003,334348.0033],[397304.7967,335560.7961],[402038.2038,338153.9038],[404095.899,337118.9001],[405010.1031,338212.1971],[406133.0969,338048.0041],[406578.1983,338738.6964],[405103.396,340647.899900001],[409503.7027,342276.2038],[408111.5983,344146.2985],[407866.5963,346977.3981],[408710.602,346976.2985],[409751.4008,348542.9],[411465.1038,348421.504799999],[412629.1992,348025.598099999],[413783.6974,346228.9024],[414526.9979,347496.499500001],[413865.2988,349135.700300001],[414914.6972,349751.604],[416261.701,348918.4025],[416042.5968,344750.5956],[411728.3026,342205.0042],[411533.9005,338713.703600001],[409739.6021,336227.395300001],[411656.9993,331897.2048],[415088.2969,331838.4016],[417194.9018,330163.201099999]]]},"properties":{"LAD22CD":"E07000193","LAD22NM":"East Staffordshire","BNG_E":412601,"BNG_N":326569,"LONG":-1.81438,"LAT":52.83651,"OBJECTID":195,"GlobalID":"21ef80bf-d7fa-42dc-a361-e96982fb904f"}},{"type":"Feature","id":196,"geometry":{"type":"Polygon","coordinates":[[[420074.0029,314976.8982],[423290.4013,313842.003],[423408.3963,311289.603700001],[427293.197,311490.2962],[427835.1037,310029.304400001],[424113.3985,306700.7972],[421455.4011,305545.9977],[418874.0992,305995.698999999],[418063.1974,305237.1961],[418280.1002,303924.6019],[420259.2035,302048.298900001],[420982.5015,302235.795299999],[420393.499,299274.902799999],[418435.701,298935.799900001],[417545.8033,299643.5973],[414453.9961,298914.695900001],[413878.2023,300165.597899999],[411735.3027,301227.8038],[409988.0011,300467.9013],[408730.9013,298576.7027],[407393.7008,300154.900900001],[407809.3014,301964.203],[405782.5005,304172.200999999],[406519.0977,305054.2985],[405643.2991,305797.095899999],[406125.1982,306532.4954],[404589.8029,307099.2031],[403789.9001,306507.702500001],[403169.3025,307212.8006],[402851.3977,309605.095799999],[405804.8033,312554.3016],[404305.1009,313179.502699999],[406117.1015,317065.700300001],[406059.9962,317964.503],[403878.5015,319574.0023],[402919.7988,322324.504899999],[403377.9026,323319.000299999],[406708.8001,321975.7048],[407521.4003,322538.8036],[409962.3012,320534.997199999],[410726.5029,322050.603399999],[412380.0005,321742.3016],[412945.3973,320633.2991],[411673.2998,319061.499],[412412.1974,317522.499500001],[414234.4961,317371.2028],[414666.6033,316484.4966],[415813.9035,317044.5963],[416935.001,315751.396500001],[420074.0029,314976.8982]]]},"properties":{"LAD22CD":"E07000194","LAD22NM":"Lichfield","BNG_E":416283,"BNG_N":310967,"LONG":-1.76049,"LAT":52.69615,"OBJECTID":196,"GlobalID":"6d4786b3-ca05-4d42-a7b4-3dc646d9d00d"}},{"type":"Feature","id":197,"geometry":{"type":"Polygon","coordinates":[[[387961.3038,354745.104699999],[386796.3014,355073.3007],[384100.6034,352925.5955],[386512.1024,346979.797499999],[385640.5005,346464.505000001],[386377.5018,342690.395300001],[385828.4962,342600.900900001],[381951.7014,340711.6017],[381417.6028,339353.000600001],[382340.7034,336284.698899999],[378593.6035,337271.7963],[376738.1019,335242.1973],[376031.4012,335744.803400001],[374598.8961,335117.0031],[374602.2024,332762.2972],[370459.1004,331618.604499999],[370068.4988,330817.9037],[368429.2983,334372.7962],[370722.7032,338555.5989],[371523.4965,339262.6964],[372843.201,338954.2048],[372362.2006,340564.004000001],[374149.903,339605.8982],[374599.399,342145.201300001],[375339.0964,342507.797499999],[374540.3974,344631.399700001],[374394.8968,345675.2009],[375242.7034,346425.995999999],[374326.504,347720.395500001],[374541.898,350654.3956],[376800.3027,351045.503699999],[378792.3012,353838.404200001],[380443.8034,353494.002800001],[383138.0997,355224.7973],[383527.7036,354764.2992],[385953.4006,357646.1043],[387961.3038,354745.104699999]]]},"properties":{"LAD22CD":"E07000195","LAD22NM":"Newcastle-under-Lyme","BNG_E":378199,"BNG_N":345174,"LONG":-2.32631,"LAT":53.00345,"OBJECTID":197,"GlobalID":"84cc4b6e-756b-4227-8366-5259f03802ee"}},{"type":"Feature","id":198,"geometry":{"type":"Polygon","coordinates":[[[398287.0968,315407.9048],[398002.601,311958.302200001],[396403.9991,310263.1975],[396588.9028,308999.999],[399820.8018,307883.898499999],[401006.7962,304738.898800001],[398102.1024,303100.097899999],[398057.1998,302130.195499999],[396663.1001,302527.901699999],[394611.8031,301571.195499999],[393244.3515,304148.097899999],[391188.0002,304437.0952],[388699.4017,302480.7951],[388641.9996,301296.1043],[386796.5983,300997.899599999],[387279.7011,299012.097999999],[386092.2969,298615.4016],[387875.2007,297423.2029],[388195.1997,295186.802999999],[391046.0038,295142.795600001],[390899.4973,292962.1998],[389769.8992,291989.498199999],[390310.701,291029.303099999],[387067.8031,289522.0046],[388723.9967,285967.901900001],[388103.8032,284109.603800001],[388887.9992,281369.3982],[388692.2038,280655.3026],[381775.9002,282326.5042],[380049.9039,283482.5033],[380567.9988,284188.9011],[378860.6033,287966],[380321.0015,290459.496200001],[382392.301,291833.402899999],[381833.797,292568.102600001],[382707.1964,293800.4999],[380944.0972,295097.398600001],[382343.0038,296834.501399999],[379754.4998,299510.6953],[378282.6987,299584.804099999],[378172.0994,301734.0989],[381027.3971,300934.5977],[382749.9965,301364.704600001],[384339.8009,305574.7995],[384220.0002,306482.899599999],[383342.4041,306575.503],[383951.9038,307356.6994],[383349.701,309513.801999999],[379610.4998,309514.6017],[378476.3999,310903.904100001],[378148.5021,312010.8972],[379252.4993,313720.297900001],[378787.5026,315079.5988],[379019.2507,315959.147],[381534.6003,316163.0986],[383523.0039,313082.9003],[385457.1963,315051.796700001],[387420.4031,315053.996099999],[388087.0987,316278.3956],[389245.604,316134.696799999],[390179.0027,320564.4987],[392365.9969,319027.798599999],[393420.5979,319518.698100001],[393678.7013,320986.697899999],[395646.6984,319550.9989],[394957.7988,318819.7982],[397168.0029,318192.9976],[398287.0968,315407.9048]]]},"properties":{"LAD22CD":"E07000196","LAD22NM":"South Staffordshire","BNG_E":389625,"BNG_N":311037,"LONG":-2.15495,"LAT":52.69692,"OBJECTID":198,"GlobalID":"8c116e2c-cb77-4c53-9745-c40a27b1c7d6"}},{"type":"Feature","id":199,"geometry":{"type":"Polygon","coordinates":[[[394179.1023,341834.9002],[397205.8972,339329.2974],[395858.4976,336113.8978],[397304.7967,335560.7961],[399239.5003,334348.0033],[400116.8985,332755.699100001],[401465.403,332868.296800001],[402753.298,330304.400699999],[404406.004,330348.1982],[404354.2992,327843.395199999],[402261.8017,325202.0013],[403377.9026,323319.000299999],[402919.7988,322324.504899999],[403878.5015,319574.0023],[401910.0014,318215.6011],[398910.2008,317960.304199999],[398287.0968,315407.9048],[397168.0029,318192.9976],[394957.7988,318819.7982],[395646.6984,319550.9989],[393678.7013,320986.697899999],[393420.5979,319518.698100001],[392365.9969,319027.798599999],[390179.0027,320564.4987],[389245.604,316134.696799999],[388087.0987,316278.3956],[387420.4031,315053.996099999],[385457.1963,315051.796700001],[383523.0039,313082.9003],[381534.6003,316163.0986],[379019.2507,315959.147],[374131.3022,321399.299799999],[375052.9021,322031.9987],[374641.6962,323853.8972],[372043.6032,325577.3038],[373571.6027,326638.200200001],[374602.2024,332762.2972],[374598.8961,335117.0031],[376031.4012,335744.803400001],[376738.1019,335242.1973],[378593.6035,337271.7963],[382340.7034,336284.698899999],[381417.6028,339353.000600001],[381951.7014,340711.6017],[385828.4962,342600.900900001],[387893.8015,338771.497099999],[388212.3989,339605.0984],[389173.3031,339564.800000001],[390312.8035,342092.5964],[391339.7011,341541.7041],[391924.2018,339862.004899999],[394642.2026,341061.601500001],[394179.1023,341834.9002]]]},"properties":{"LAD22CD":"E07000197","LAD22NM":"Stafford","BNG_E":389001,"BNG_N":327836,"LONG":-2.16475,"LAT":52.84792,"OBJECTID":199,"GlobalID":"da6fa572-b7e8-4577-806e-88b2085a4cc2"}},{"type":"Feature","id":200,"geometry":{"type":"Polygon","coordinates":[[[406868.5976,366989.399800001],[409402.9975,365710.7958],[412633.0991,361926.598999999],[412013.5982,359962.701099999],[414577.2021,356201.097899999],[413877.8972,354593.2981],[415132.8038,351366.501800001],[414914.6972,349751.604],[413865.2988,349135.700300001],[414526.9979,347496.499500001],[413783.6974,346228.9024],[412629.1992,348025.598099999],[411465.1038,348421.504799999],[409751.4008,348542.9],[408710.602,346976.2985],[407866.5963,346977.3981],[408111.5983,344146.2985],[409503.7027,342276.2038],[405103.396,340647.899900001],[406578.1983,338738.6964],[406133.0969,338048.0041],[405010.1031,338212.1971],[404095.899,337118.9001],[402038.2038,338153.9038],[397304.7967,335560.7961],[395858.4976,336113.8978],[397205.8972,339329.2974],[394179.1023,341834.9002],[394776.1024,341906.299699999],[393928.304,343143.095699999],[394152.5037,344425.498600001],[393053.503,344488.8005],[393154.9997,345953.101299999],[391796.997,347154.497400001],[391263.1004,350014.198899999],[392281.6994,350089.997199999],[391693.9007,351931.699999999],[389299.7988,352552.9022],[388597.8968,354704.5963],[387961.3038,354745.104699999],[385953.4006,357646.1043],[389690.1035,362508.5024],[390641.196,362176.497400001],[390712.1036,365197.9026],[392604.7986,363508.7961],[395402.3973,363841.900699999],[396988.4997,366172.503599999],[400083.5967,366292.699200001],[400937.9994,368500.8971],[402609.702,369909.503900001],[402988.1998,368519.7017],[406868.5976,366989.399800001]]]},"properties":{"LAD22CD":"E07000198","LAD22NM":"Staffordshire Moorlands","BNG_E":400543,"BNG_N":352443,"LONG":-1.99334,"LAT":53.06924,"OBJECTID":200,"GlobalID":"b12f36b1-07ca-4c8d-a38c-330deefc1577"}},{"type":"Feature","id":201,"geometry":{"type":"Polygon","coordinates":[[[420393.499,299274.902799999],[420982.5015,302235.795299999],[420259.2035,302048.298900001],[418280.1002,303924.6019],[418063.1974,305237.1961],[418874.0992,305995.698999999],[421455.4011,305545.9977],[424113.3985,306700.7972],[424934.5984,305143.6029],[424293.0007,304857.7048],[424221.9035,300676.3017],[422747.1012,299434.1972],[420393.499,299274.902799999]]]},"properties":{"LAD22CD":"E07000199","LAD22NM":"Tamworth","BNG_E":421455,"BNG_N":302550,"LONG":-1.68451,"LAT":52.62031,"OBJECTID":201,"GlobalID":"e394ae47-dff8-4457-9477-10648aaca06a"}},{"type":"Feature","id":202,"geometry":{"type":"MultiPolygon","coordinates":[[[[625559.9263,235172.5002],[625724.087,234739.153100001],[625594.31,234823.779999999],[625559.9263,235172.5002]]],[[[616594.5973,242075.695900001],[616789.2046,241770.488399999],[616197.0696,241940.866800001],[616594.5973,242075.695900001]]],[[[585789.903,256922.796],[586316.3007,255363.9022],[587358.3032,255945.095799999],[587652.9982,254771.401799999],[588832.6026,254613.696900001],[589412.1974,256583.1032],[590646.1038,256952.6974],[592539.7965,256228.3048],[593388.3039,255354.095000001],[596299.0991,255801.4969],[597219.5035,254626.703199999],[598047.7034,254991.298900001],[597976.2022,254185.8994],[601068.8999,255097.498500001],[602204.5004,249913.202400001],[603698.1015,249567.101500001],[603589.0028,248309.4015],[605837.497,248729.3013],[608181.5019,245457.797800001],[608842.5991,246570.7992],[610174.4981,245210.298599999],[613185.8994,245964.002900001],[614109.8987,244947.403899999],[613170.8027,243235.9038],[613616.2009,241924.8991],[614779.0019,241459.9022],[616147.6133,241924.092800001],[617401.7303,240809.8487],[617588.9022,240516.302300001],[618138.1915,240155.525800001],[618313.2575,239999.985099999],[619999.9683,238501.3948],[620584.98,237981.630000001],[624431.97,237191.029999999],[625177.7431,233742.865599999],[622894.565,234178.499],[621344.48,233159.529999999],[620000.0008,233280.835100001],[619133.72,233358.994999999],[617394.12,234960.73],[615199.7,232964.199999999],[612106.8,233443.199999999],[610976.0442,232438.923900001],[609493.1015,233387.402899999],[607934.4963,232810.3981],[606106.5993,233744.3007],[604209.1963,233492.7028],[603565.8012,235109.9998],[602243.6975,234335.2016],[601000.5978,234898.000499999],[598576.5993,234488.397700001],[595922.5966,232978.199999999],[594131.1015,233775.002],[593218.9009,232865.102399999],[591174.101,233434.1995],[590525.0004,233845.0019],[590636.3004,235204.1029],[589596.7961,235480.503799999],[589647.6022,236824.698999999],[588039.5019,238235.395199999],[588098.0996,240520.601],[586314.7011,240021.304],[585038.4976,241308.0956],[585198.7981,242331.3027],[586353.8981,242402.102499999],[585388.0964,244212.904100001],[585971.8962,245010.695800001],[583998.5975,246577.0974],[582134.4964,246338.4957],[579903.6961,251106.300899999],[581041.9021,254620.095100001],[584220.8019,254448.0044],[584563.4007,257102.704500001],[585789.903,256922.796]]]]},"properties":{"LAD22CD":"E07000200","LAD22NM":"Babergh","BNG_E":599987,"BNG_N":244692,"LONG":0.916149,"LAT":52.0645,"OBJECTID":202,"GlobalID":"2930145c-f279-4cf3-afe2-488455d661c4"}},{"type":"Feature","id":203,"geometry":{"type":"MultiPolygon","coordinates":[[[[617723.1388,240524.2873],[617588.9022,240516.302300001],[617401.7303,240809.8487],[617723.1388,240524.2873]]],[[[616432.7963,248081.196900001],[616917.3008,247071.695800001],[618668.8981,247254.203600001],[619884.0964,245477.302200001],[619695.5978,242497.895099999],[621230.4984,241684.198000001],[620303.803,240677.7961],[618457.4467,240567.967],[618198.9249,240671.922700001],[617293.7485,241557.897],[616906.4444,241736.7543],[616789.2046,241770.488399999],[616594.5973,242075.695900001],[616197.0696,241940.866800001],[616096.0023,241969.9475],[616147.6133,241924.092800001],[614779.0019,241459.9022],[613616.2009,241924.8991],[613170.8027,243235.9038],[614109.8987,244947.403899999],[613185.8994,245964.002900001],[613218.0964,247992.6022],[615112.3002,247983.9047],[615340.4988,248670.698100001],[616432.7963,248081.196900001]]]]},"properties":{"LAD22CD":"E07000202","LAD22NM":"Ipswich","BNG_E":617161,"BNG_N":244456,"LONG":1.166145,"LAT":52.05592,"OBJECTID":203,"GlobalID":"895a0741-936d-4d84-b26d-cef6702e90f2"}},{"type":"Feature","id":204,"geometry":{"type":"Polygon","coordinates":[[[616432.7963,248081.196900001],[615340.4988,248670.698100001],[615112.3002,247983.9047],[613218.0964,247992.6022],[613185.8994,245964.002900001],[610174.4981,245210.298599999],[608842.5991,246570.7992],[608181.5019,245457.797800001],[605837.497,248729.3013],[603589.0028,248309.4015],[603698.1015,249567.101500001],[602204.5004,249913.202400001],[601068.8999,255097.498500001],[597976.2022,254185.8994],[598047.7034,254991.298900001],[597219.5035,254626.703199999],[596299.0991,255801.4969],[593388.3039,255354.095000001],[592539.7965,256228.3048],[594001.2995,257558.903899999],[594070.7971,259028.5032],[592463.9007,259920.097999999],[593129.9037,263850.203],[591060.0966,265135.395099999],[591129.0995,266639.604599999],[592921.4026,266909.8972],[594181.3964,266211.3971],[594059.2499,267122.746300001],[594993.7987,267205.8025],[594018.3998,269002.1983],[596036.7,270706.8003],[597002.8975,269989.195800001],[596668.6015,270802.0031],[597847.703,270713.0985],[599896.3038,272349.700099999],[599462.0035,273946.2031],[599900.5006,274896.0012],[601557.898,275480.6039],[601202.7997,277213.4978],[602112.2959,278815.7992],[606325.0027,279951.0042],[608927.3996,280036.899599999],[618954.8038,277895.8025],[622016.5,279783.0023],[623703.1015,282041.9957],[625765.2985,281768.7039],[627772.7977,283757.604599999],[629710.7993,282763.199200001],[632232.4028,279381.397299999],[628820.1513,276326.1019],[628902.9977,274645.103],[630771.3038,273451.9046],[630865.5036,271611.001499999],[632102.7987,270732.2031],[629027.0034,269293.8048],[628220.1994,270149.199999999],[628357.2983,271416.2973],[626987.9998,271918.5035],[627992.3967,270401.4977],[627985.0998,268337.398600001],[625376.7994,267447.903200001],[624495.3035,265349.8038],[621872.4011,263933.8991],[621622.1965,260898.398],[622658.5017,260567.602700001],[622534.9,259422.000600001],[621643.6007,257409.896500001],[619893.7019,256898.6029],[618481.0014,253877.997500001],[617022.9035,252841.0044],[617642.0994,251692.903000001],[616432.7963,248081.196900001]]]},"properties":{"LAD22CD":"E07000203","LAD22NM":"Mid Suffolk","BNG_E":611646,"BNG_N":262338,"LONG":1.096953,"LAT":52.21859,"OBJECTID":204,"GlobalID":"eed82bca-f577-470f-a6e0-eb28a39d1a7b"}},{"type":"Feature","id":205,"geometry":{"type":"Polygon","coordinates":[[[517139.496,167412.498],[517897.4971,165729.4999],[516362.5969,162360.5041],[516401.596,160201.801999999],[514378.0024,158241.803099999],[511824.004,158298.196900001],[512012.4036,156648.099300001],[511281.8995,156292.201199999],[510968.3975,157203.4003],[508844.0988,157326.1952],[508398.2965,159484.397399999],[508985.1965,159864.5986],[507224.9996,160107.099099999],[507108.9998,161290.100500001],[505869.8991,162236.899499999],[506840.9034,163060.003900001],[506231.2966,163883.1983],[507410.1012,165741.0964],[508459.3017,166792.895400001],[509195.8001,166159.796599999],[510720.8973,168491.899],[512535.7011,168963.404100001],[514211.0978,169374.996099999],[516440.1002,167192.901000001],[517139.496,167412.498]]]},"properties":{"LAD22CD":"E07000207","LAD22NM":"Elmbridge","BNG_E":511882,"BNG_N":163658,"LONG":-0.39441,"LAT":51.36098,"OBJECTID":205,"GlobalID":"52be6b94-4d1a-452d-ba7e-514ab75a2572"}},{"type":"Feature","id":206,"geometry":{"type":"Polygon","coordinates":[[[524042.7179,160476.303300001],[522530.9991,159484.897299999],[522302.9984,156894.0989],[521094.8991,157032.499199999],[520567.6027,156217.3026],[518090.2999,160916.397299999],[519460.2002,164193.1993],[521110.5979,165939.999299999],[522231.1012,166014.998],[522240.0969,164547.798],[523844.2971,163500.4979],[524262.2971,161986.4011],[523406.097,161201.8959],[524042.7179,160476.303300001]]]},"properties":{"LAD22CD":"E07000208","LAD22NM":"Epsom and Ewell","BNG_E":521176,"BNG_N":161475,"LONG":-0.26172,"LAT":51.33945,"OBJECTID":206,"GlobalID":"558de63c-c03a-41b7-92c8-d4fb99e4048f"}},{"type":"Feature","id":207,"geometry":{"type":"Polygon","coordinates":[[[512012.4036,156648.099300001],[512622.4969,153004.902100001],[512003.3011,149966.002],[509367.8992,150133.604],[510016.9999,149081.395199999],[509174.7999,146766.797800001],[511210.3983,144921.396],[511358.999,143034.1962],[510650.0969,142737.901000001],[508853.3992,143857.7005],[507954.5968,142877.5011],[504560.5009,143769.8956],[504491.498,146151.004000001],[502600.0975,147050.5965],[501016.7984,145440.6974],[499746.5973,145310.9045],[499519.1985,144171.500700001],[498369.301,144499.296800001],[498970.704,145327.5997],[498428.2038,145793.7963],[496907.4022,146340.0999],[495497.2,145652.296800001],[495766.5991,143657.197899999],[494597.9029,142713.198100001],[493479.9963,145407.9967],[491766.3016,144094.3028],[490460.3004,145628.103700001],[488711.1024,144953.696799999],[487528.9008,146463.4046],[487684.5016,148666.304],[488767.2018,151538.8018],[488597.3041,154233.3005],[490504.7,154689.4999],[491571.5038,158006.600400001],[494412.1994,157845.796399999],[494351.1035,157005.097100001],[496467.8993,154636.695],[497675.1988,155038.100099999],[501652.5998,152822.804300001],[502346.1001,153749.399],[501274.201,154946.396400001],[501863.5002,156772.703600001],[502597.4014,156407.598099999],[503922.2013,158165.604900001],[504595.6991,157449.899800001],[506342.2009,158575.6975],[505370.9987,160061.702099999],[507224.9996,160107.099099999],[508985.1965,159864.5986],[508398.2965,159484.397399999],[508844.0988,157326.1952],[510968.3975,157203.4003],[511281.8995,156292.201199999],[512012.4036,156648.099300001]]]},"properties":{"LAD22CD":"E07000209","LAD22NM":"Guildford","BNG_E":500408,"BNG_N":151481,"LONG":-0.56257,"LAT":51.25366,"OBJECTID":207,"GlobalID":"3f03a3e9-b1b1-488b-82a1-4c92fb0a171b"}},{"type":"Feature","id":208,"geometry":{"type":"Polygon","coordinates":[[[520567.6027,156217.3026],[521101.3962,152787.0045],[523896.1009,152008.0975],[522239.899,148996.5995],[523324.8996,148496.9025],[524070.8962,147398.7969],[523410.9038,146689.1],[524977.8035,145306.4958],[522886.1964,144832.001599999],[522892.7017,144089.6041],[525252.6031,142975.603],[526617.4988,144022.0035],[527574.099,142425.2005],[525127.5008,141097.3006],[525000.024,140316.3542],[522148.6014,139766.9015],[522200.8009,139201.803200001],[519038.3005,137535.100299999],[512678.0027,136477.1032],[510767.8034,135177.895099999],[510650.0969,142737.901000001],[511358.999,143034.1962],[511210.3983,144921.396],[509174.7999,146766.797800001],[510016.9999,149081.395199999],[509367.8992,150133.604],[512003.3011,149966.002],[512622.4969,153004.902100001],[512012.4036,156648.099300001],[511824.004,158298.196900001],[514378.0024,158241.803099999],[516401.596,160201.801999999],[518090.2999,160916.397299999],[520567.6027,156217.3026]]]},"properties":{"LAD22CD":"E07000210","LAD22NM":"Mole Valley","BNG_E":518377,"BNG_N":148953,"LONG":-0.30603,"LAT":51.22749,"OBJECTID":208,"GlobalID":"d5f4f9a2-ae74-47d5-b011-b97f8e32a580"}},{"type":"Feature","id":209,"geometry":{"type":"Polygon","coordinates":[[[528552.3012,159658.097899999],[528694.1988,157410.201099999],[529950.5977,157386.9978],[530898.1036,155850.797499999],[530794.1994,153063.895199999],[529507.4999,151875.0955],[528916.296,149561.897700001],[529632.6022,147359.3981],[530302.802,147522.501399999],[529839.8006,144672.0974],[531004.0032,142310.0035],[530127.0997,141732.198899999],[527574.099,142425.2005],[526617.4988,144022.0035],[525252.6031,142975.603],[522892.7017,144089.6041],[522886.1964,144832.001599999],[524977.8035,145306.4958],[523410.9038,146689.1],[524070.8962,147398.7969],[523324.8996,148496.9025],[522239.899,148996.5995],[523896.1009,152008.0975],[521101.3962,152787.0045],[520567.6027,156217.3026],[521094.8991,157032.499199999],[522302.9984,156894.0989],[522530.9991,159484.897299999],[524042.7179,160476.303300001],[525650.7982,162043.505000001],[528552.3012,159658.097899999]]]},"properties":{"LAD22CD":"E07000211","LAD22NM":"Reigate and Banstead","BNG_E":525786,"BNG_N":152574,"LONG":-0.19871,"LAT":51.25846,"OBJECTID":209,"GlobalID":"02ba0718-57db-4508-9d1a-6d2eb45212e4"}},{"type":"Feature","id":210,"geometry":{"type":"Polygon","coordinates":[[[502779.7986,171734.900699999],[503652.4971,171138.8014],[503539.1028,169738.902100001],[504888.1019,169173.104],[505497.9974,166437.097200001],[506056.8971,166797.604],[507410.1012,165741.0964],[506231.2966,163883.1983],[506840.9034,163060.003900001],[505869.8991,162236.899499999],[503493.1036,161020.0978],[501179.6961,161993.099300001],[500683.6979,163531.299000001],[499685.3035,163333.895500001],[499361.1984,164494.0034],[496215.7983,166832.903899999],[497819.1988,172344.7961],[499346.2006,173414.199999999],[502779.7986,171734.900699999]]]},"properties":{"LAD22CD":"E07000212","LAD22NM":"Runnymede","BNG_E":501777,"BNG_N":166979,"LONG":-0.53855,"LAT":51.39273,"OBJECTID":210,"GlobalID":"1831fa91-0895-4f5c-9cb5-8cc7772821b9"}},{"type":"Feature","id":211,"geometry":{"type":"Polygon","coordinates":[[[503611.1976,175520.3971],[507187.4237,174163.0966],[507381.3011,172142.0041],[511946.204,170484.3989],[512535.7011,168963.404100001],[510720.8973,168491.899],[509195.8001,166159.796599999],[508459.3017,166792.895400001],[507410.1012,165741.0964],[506056.8971,166797.604],[505497.9974,166437.097200001],[504888.1019,169173.104],[503539.1028,169738.902100001],[503652.4971,171138.8014],[502779.7986,171734.900699999],[501489.2981,174217.9],[502587.903,175761.3982],[503611.1976,175520.3971]]]},"properties":{"LAD22CD":"E07000213","LAD22NM":"Spelthorne","BNG_E":507012,"BNG_N":169622,"LONG":-0.46254,"LAT":51.41552,"OBJECTID":211,"GlobalID":"6ce92100-c3c4-42ae-97ac-94194d54da8b"}},{"type":"Feature","id":212,"geometry":{"type":"Polygon","coordinates":[[[501179.6961,161993.099300001],[499230.9017,160647.0046],[495819.1036,160423.1987],[496018.4033,158766.003],[494412.1994,157845.796399999],[491571.5038,158006.600400001],[490504.7,154689.4999],[488597.3041,154233.3005],[487630.4965,157435.104],[486306.9003,158462.199999999],[485406.9024,159918.6031],[488139.2992,163641.497400001],[492812.7977,165900.300899999],[496383.9975,165851.7048],[496215.7983,166832.903899999],[499361.1984,164494.0034],[499685.3035,163333.895500001],[500683.6979,163531.299000001],[501179.6961,161993.099300001]]]},"properties":{"LAD22CD":"E07000214","LAD22NM":"Surrey Heath","BNG_E":491362,"BNG_N":160483,"LONG":-0.68986,"LAT":51.3361,"OBJECTID":212,"GlobalID":"95ba9a32-6ade-4479-957d-6a1476cef0e8"}},{"type":"Feature","id":213,"geometry":{"type":"Polygon","coordinates":[[[539596.2969,160796.301999999],[540596.2001,156667.2039],[541795.6999,158451.2031],[542503.0518,156819.2502],[543747.7015,151857.400599999],[542130.8038,148091.0987],[543562.501,144379.201199999],[543499.5994,140151.701300001],[541923.4983,139796.503],[530379.5965,139748.296800001],[530654.998,141616.1021],[530127.0997,141732.198899999],[531004.0032,142310.0035],[529839.8006,144672.0974],[530302.802,147522.501399999],[529632.6022,147359.3981],[528916.296,149561.897700001],[529507.4999,151875.0955],[530794.1994,153063.895199999],[530898.1036,155850.797499999],[533165.2975,157546.5021],[533965.5962,159603.303400001],[535882.004,159951.9036],[536768.3975,161784.499],[539596.2969,160796.301999999]]]},"properties":{"LAD22CD":"E07000215","LAD22NM":"Tandridge","BNG_E":536365,"BNG_N":150325,"LONG":-0.04805,"LAT":51.23581,"OBJECTID":213,"GlobalID":"c5b02b5c-f43d-45fd-9e05-f63acf6a14af"}},{"type":"Feature","id":214,"geometry":{"type":"MultiPolygon","coordinates":[[[[486959.8497,134505.3005],[486289.1982,134495.3004],[486951.5981,134540.0976],[486959.8497,134505.3005]]],[[[486959.8497,134505.3005],[487664.3012,134515.8046],[487909.699,135514.6986],[486237.6995,136037.499],[484135.7036,139938.702299999],[481640.0968,139348.4013],[482192.9034,143114.0034],[480501.5033,146352.896199999],[483524.1015,150221.898800001],[483745.1021,149555.1996],[485530.298,149909.098300001],[487684.5016,148666.304],[487528.9008,146463.4046],[488711.1024,144953.696799999],[490460.3004,145628.103700001],[491766.3016,144094.3028],[493479.9963,145407.9967],[494597.9029,142713.198100001],[495766.5991,143657.197899999],[495497.2,145652.296800001],[496907.4022,146340.0999],[498428.2038,145793.7963],[498970.704,145327.5997],[498369.301,144499.296800001],[499519.1985,144171.500700001],[499746.5973,145310.9045],[501016.7984,145440.6974],[502600.0975,147050.5965],[504491.498,146151.004000001],[504560.5009,143769.8956],[507954.5968,142877.5011],[508853.3992,143857.7005],[510650.0969,142737.901000001],[510767.8034,135177.895099999],[505687.0978,133878.696900001],[504773.2977,133167.9004],[502688.4021,133717.5031],[502417.1973,132426.8025],[499719.2979,132888.9003],[498084.8959,132084.000700001],[496088.1977,133080.195499999],[491403.7992,131048.3971],[487401.3003,132643.7005],[486959.8497,134505.3005]]]]},"properties":{"LAD22CD":"E07000216","LAD22NM":"Waverley","BNG_E":496363,"BNG_N":140635,"LONG":-0.62343,"LAT":51.15686,"OBJECTID":214,"GlobalID":"4dcc9fc2-b9bd-4d18-83fc-3e087bc15188"}},{"type":"Feature","id":215,"geometry":{"type":"Polygon","coordinates":[[[507224.9996,160107.099099999],[505370.9987,160061.702099999],[506342.2009,158575.6975],[504595.6991,157449.899800001],[503922.2013,158165.604900001],[502597.4014,156407.598099999],[501863.5002,156772.703600001],[501274.201,154946.396400001],[502346.1001,153749.399],[501652.5998,152822.804300001],[497675.1988,155038.100099999],[496467.8993,154636.695],[494351.1035,157005.097100001],[494412.1994,157845.796399999],[496018.4033,158766.003],[495819.1036,160423.1987],[499230.9017,160647.0046],[501179.6961,161993.099300001],[503493.1036,161020.0978],[505869.8991,162236.899499999],[507108.9998,161290.100500001],[507224.9996,160107.099099999]]]},"properties":{"LAD22CD":"E07000217","LAD22NM":"Woking","BNG_E":499087,"BNG_N":157542,"LONG":-0.57982,"LAT":51.30837,"OBJECTID":215,"GlobalID":"38535658-76b4-466b-87b6-3a22d5f5198c"}},{"type":"Feature","id":216,"geometry":{"type":"Polygon","coordinates":[[[430408.8984,307841.400699999],[430915.4997,305302.997300001],[429105.7995,304253.297800001],[430263.5647,301978.7247],[429849.3968,299906.502],[432135.1999,298428.2952],[432434.6028,297080.1011],[436711.7035,294995.4978],[434913.0022,293736.3982],[430213.103,292764.496400001],[430405.3036,290704.896],[433081.1969,287324.2037],[433050.4016,286590.603700001],[430991.2966,286175.602499999],[431999.5027,285932.702],[431362.5964,285303.902000001],[429915.1017,284229.6994],[427962.597,284962.399700001],[427584.1982,284293.701099999],[425611.6003,285130.601600001],[424471.498,282878.396299999],[423051.0966,282977.8978],[422763.4017,281994.599300001],[422044.4983,282089.801999999],[416823.7009,290591.0985],[416801.1012,291508.296],[418491.3964,291886.897600001],[417117.7033,292645.000600001],[416639.803,295308.598200001],[415400.4962,296333.004899999],[416122.4007,297041.801999999],[414453.9961,298914.695900001],[417545.8033,299643.5973],[418435.701,298935.799900001],[420393.499,299274.902799999],[422747.1012,299434.1972],[424221.9035,300676.3017],[424293.0007,304857.7048],[424934.5984,305143.6029],[424113.3985,306700.7972],[427835.1037,310029.304400001],[430408.8984,307841.400699999]]]},"properties":{"LAD22CD":"E07000218","LAD22NM":"North Warwickshire","BNG_E":425570,"BNG_N":296399,"LONG":-1.6242,"LAT":52.56484,"OBJECTID":216,"GlobalID":"32789cd8-d57d-494b-a98c-20c7d773f3d2"}},{"type":"Feature","id":217,"geometry":{"type":"Polygon","coordinates":[[[439618.9038,293111.9969],[438853.3004,291074.100299999],[440444.3993,290746.903899999],[440507.5977,286658.5042],[440150.8999,285564.1975],[438300.9967,285714.204500001],[436855.9013,284269.3981],[434615.6028,284634.4036],[433735.2034,283683.2959],[431362.5964,285303.902000001],[431999.5027,285932.702],[430991.2966,286175.602499999],[433050.4016,286590.603700001],[433081.1969,287324.2037],[430405.3036,290704.896],[430213.103,292764.496400001],[434913.0022,293736.3982],[436711.7035,294995.4978],[439618.9038,293111.9969]]]},"properties":{"LAD22CD":"E07000219","LAD22NM":"Nuneaton and Bedworth","BNG_E":435419,"BNG_N":289352,"LONG":-1.47965,"LAT":52.50094,"OBJECTID":217,"GlobalID":"6c7dde0b-00db-45be-8053-5fd25596ed0a"}},{"type":"Feature","id":218,"geometry":{"type":"Polygon","coordinates":[[[445911.4025,289449.7952],[447218.896,288611.495200001],[454421.0971,277932.702],[456285.0003,273454.7038],[452318.1035,272323.797499999],[450161.2038,270281.801999999],[454001.5966,268858.6994],[452357.3995,266073.796499999],[453617.4015,263422.5955],[452454.5016,261951.296599999],[450643.3008,262293.398700001],[448691.2001,264178.4991],[447261.0036,262367.897299999],[441750.5984,267144.0002],[439684.7983,267449.502699999],[440518.7038,269165.7015],[438533.796,270183.800100001],[437996.6962,272083.896199999],[437140.2982,272215.498500001],[437689.5018,272987.1976],[436537.4029,273468],[436586.1972,275157.996200001],[438786.301,277800.199899999],[438322.203,279285.8046],[439262.0988,281820.698999999],[436855.9013,284269.3981],[438300.9967,285714.204500001],[440150.8999,285564.1975],[440507.5977,286658.5042],[440444.3993,290746.903899999],[438853.3004,291074.100299999],[439618.9038,293111.9969],[445911.4025,289449.7952]]]},"properties":{"LAD22CD":"E07000220","LAD22NM":"Rugby","BNG_E":446498,"BNG_N":276244,"LONG":-1.31828,"LAT":52.38228,"OBJECTID":218,"GlobalID":"7a356a71-ebd9-460c-a6d2-6e8fd6a14ac9"}},{"type":"Feature","id":219,"geometry":{"type":"Polygon","coordinates":[[[415371.9023,272232.2037],[416346.0975,267790.6951],[418249.8986,266185.604499999],[418934.1974,266738.0964],[421551.7982,265007.0019],[422768.3982,265312.4045],[422172.7997,263558.4965],[422675.0971,262253.300100001],[424263.9039,262290.8994],[425948.7986,260758.8979],[425707.9026,260092.5986],[426936.4003,260037.6044],[425649.6018,258739.9958],[425975.8012,257353.7026],[427280.9036,258634.2961],[429173.7965,257637.2015],[430143.0035,259361.597899999],[432323.6984,258652.7008],[433281.4035,260514.897700001],[434241.3018,260049.1011],[435746.7015,262746.198999999],[438633.8004,263996.701099999],[437711.2028,266357.1954],[439329.9968,266393.1951],[439684.7983,267449.502699999],[441750.5984,267144.0002],[447261.0036,262367.897299999],[448691.2001,264178.4991],[450643.3008,262293.398700001],[452454.5016,261951.296599999],[450161.2038,259923.497],[448945.1975,260282.304300001],[451017.1978,255770.695800001],[447050.4,254912.4014],[445790.299,252455.4047],[444673.6993,248735.899499999],[443479.2991,248829.602600001],[441636.6021,246910.402000001],[443175.7984,246764.603700001],[444086.8034,244967.998],[442201.0013,244154.7008],[439408.3991,246812.899900001],[437522.8031,246215.400900001],[437965.2001,244507.5998],[435899.4001,244906.695499999],[435185.7983,244079.202400001],[432857.3023,233261.5989],[430499.1983,232669.8983],[431025.2003,231472.101199999],[430075.3033,231041.5044],[427550.3028,231016.001700001],[428149.7022,230297.2974],[426736.004,228615.9987],[423049.2002,232166.4024],[423015.6016,233215.0023],[426333.7028,237293.2049],[425858.2019,237907.3991],[423156.0521,237037.2982],[421086.4964,237945.7981],[421447.2014,239315.9959],[420311.8977,240186.9965],[420539.7005,241645.2991],[419773.2973,240949.8982],[418555.8975,241703.202500001],[418689.5005,244675.8016],[417496.2011,243875.1008],[416007.5965,246053.7972],[416708.303,246428.899800001],[414405.8037,246894.396600001],[414775.504,248215.1985],[413206.6998,249080.300899999],[412195.8965,248689.2028],[412184.4029,249750.598999999],[411065.6965,250503.103599999],[410075.7038,248922.3961],[409200.9028,250532.0953],[407637.4001,250886.004000001],[407333.7015,249999.9976],[407957.3992,249845.401900001],[406703.3996,248352.8991],[405440.7015,250526.4969],[403906.8975,250783.903200001],[404508.9024,252366.5002],[402804.3019,252266.798699999],[404087.0026,253239.2004],[404495.1991,256210.999700001],[405735.0996,257776.4016],[404560.3021,261538.504699999],[404367.4996,264222.896299999],[405829.3984,264099.9016],[407839.9977,265392.7015],[408213.8041,268096.297599999],[409056.103,268504.400800001],[409307.0992,270563.101500001],[407657.1965,273674.900699999],[408809.5015,274400.403100001],[413183.3003,274299.801899999],[415371.9023,272232.2037]]]},"properties":{"LAD22CD":"E07000221","LAD22NM":"Stratford-on-Avon","BNG_E":425019,"BNG_N":251536,"LONG":-1.63565,"LAT":52.16154,"OBJECTID":219,"GlobalID":"eee9a0a9-41b7-47b2-a37b-12e8e5b98c6e"}},{"type":"Feature","id":220,"geometry":{"type":"Polygon","coordinates":[[[436586.1972,275157.996200001],[436537.4029,273468],[437689.5018,272987.1976],[437140.2982,272215.498500001],[437996.6962,272083.896199999],[438533.796,270183.800100001],[440518.7038,269165.7015],[439684.7983,267449.502699999],[439329.9968,266393.1951],[437711.2028,266357.1954],[438633.8004,263996.701099999],[435746.7015,262746.198999999],[434241.3018,260049.1011],[433281.4035,260514.897700001],[432323.6984,258652.7008],[430143.0035,259361.597899999],[429173.7965,257637.2015],[427280.9036,258634.2961],[425975.8012,257353.7026],[425649.6018,258739.9958],[426936.4003,260037.6044],[425707.9026,260092.5986],[425948.7986,260758.8979],[424263.9039,262290.8994],[422675.0971,262253.300100001],[422172.7997,263558.4965],[422768.3982,265312.4045],[421551.7982,265007.0019],[418934.1974,266738.0964],[418249.8986,266185.604499999],[416346.0975,267790.6951],[415371.9023,272232.2037],[415129.8026,274075.2961],[417384.497,273014.299799999],[418140.7999,274719.8016],[419126.9999,274982.0966],[419265.3026,273110.5023],[420947.0972,272591.800799999],[421584.0034,273948.9023],[423186.9999,274232.101199999],[424040.8997,273243.204299999],[425800.0989,274300.001800001],[427245.7962,276881.2029],[429526.0008,276381.396],[430574.4015,274074.396400001],[432453.5004,275811.4991],[433191.9488,274666.397],[433826.501,275643.397299999],[436586.1972,275157.996200001]]]},"properties":{"LAD22CD":"E07000222","LAD22NM":"Warwick","BNG_E":428484,"BNG_N":267113,"LONG":-1.58369,"LAT":52.30142,"OBJECTID":220,"GlobalID":"7e3e7e0f-3c5d-4ad8-a921-d7d222575782"}},{"type":"Feature","id":221,"geometry":{"type":"Polygon","coordinates":[[[523604.0031,108612.2994],[525682.3236,104638.099099999],[523234.1858,104859.3993],[523411.0648,104446.728499999],[522059.882,104383.094599999],[521384.645,104437.343],[519999.9871,104030.7873],[517551.1522,103311.773700001],[517516.5238,103303.4212],[515919.4001,104351.199100001],[514993.0015,108050.3002],[515159.5022,109610.8035],[516856.4018,108324.501700001],[522790.9989,108429.1018],[522856.5966,109455.9979],[523604.0031,108612.2994]]]},"properties":{"LAD22CD":"E07000223","LAD22NM":"Adur","BNG_E":518076,"BNG_N":106472,"LONG":-0.32417,"LAT":50.84572,"OBJECTID":221,"GlobalID":"132c3802-6934-4dc7-af45-0226a922a36e"}},{"type":"Feature","id":222,"geometry":{"type":"Polygon","coordinates":[[[501838.5012,112335.503599999],[502574.0019,111204.0975],[501310.1989,110804.901699999],[502182.6995,109958.604],[502921.5972,110655.5045],[503870.3976,110314.1022],[505581.8991,112228.404300001],[506093.299,110612.4968],[506784.4,112165.5023],[507256.3968,110613.296599999],[508079.5013,110509.6962],[508996.5994,111807.704700001],[509848.7017,109829.900800001],[510478.3028,111561.495200001],[511814.1017,110876.5012],[511730.8018,110099.2037],[513135.7025,111663.096100001],[514044.399,110817.4981],[515174.5,111163.4991],[515159.5022,109610.8035],[514993.0015,108050.3002],[513992.1995,108321.602600001],[512069.2039,107066.7018],[511099.0982,107932.7039],[511180.4894,105758.8961],[509513.103,105631.9025],[510321.7403,101568.0077],[510306.7668,101564.396],[502842.06,101090.300000001],[501932.7886,100868.2333],[500988.8837,100807.513800001],[496882.0971,99634.7283999994],[491599.31,98344.5399999991],[490863.3506,97915.9397999998],[489962.004,97658.5399999991],[489375.7805,97049.6246000007],[488098.7124,96305.8992999997],[488040.1242,96405.3267000001],[488119.6111,96494.1089999992],[488166.805,96546.8217999991],[488182.9827,96564.8912000004],[488197.0643,96580.6088999994],[488213.4763,96597.3563000001],[488224.5318,96635.7387000006],[487316.1739,97762.2914000005],[487266.5601,97718.1063999999],[487190.9028,97846.5010000002],[488231.2976,98738.1958000008],[487843.3015,99752.5954],[489270.703,100107.9037],[489242.0019,101862.601399999],[490351.5975,101415.0995],[492394.7978,102292.5984],[492171.9009,106386.896400001],[492912.5959,107915.698799999],[495071.2024,108361.701099999],[494669.099,112662.899900001],[495084.4027,112040.098200001],[497310.0993,112698.6996],[501838.5012,112335.503599999]]]},"properties":{"LAD22CD":"E07000224","LAD22NM":"Arun","BNG_E":495144,"BNG_N":105723,"LONG":-0.64999,"LAT":50.84321,"OBJECTID":222,"GlobalID":"4d1e9b82-33a7-4ce0-b3b3-7f24a03ad976"}},{"type":"Feature","id":223,"geometry":{"type":"MultiPolygon","coordinates":[[[[488098.7124,96305.8992999997],[487959.1034,96224.5953000002],[488038.0828,96403.0465999991],[488040.1242,96405.3267000001],[488098.7124,96305.8992999997]]],[[[505687.0978,133878.696900001],[506712.0991,130783.502900001],[506333.4034,129701.002800001],[506929.2987,129665.1031],[506383.5994,127942.1962],[507152.5008,127163.599099999],[506995.5973,125726.1006],[506293.3984,124504.500299999],[504582.6966,124215.1031],[504114.7977,123175.1008],[504861.0004,122297.602],[503634.3992,121884.5002],[503091.701,117780.7049],[501964.9969,118174.302300001],[500652.8037,116872.604900001],[501582.4014,114773.2958],[502939.3982,114052.1022],[501925.701,113642.399499999],[501838.5012,112335.503599999],[497310.0993,112698.6996],[495084.4027,112040.098200001],[494669.099,112662.899900001],[495071.2024,108361.701099999],[492912.5959,107915.698799999],[492171.9009,106386.896400001],[492394.7978,102292.5984],[490351.5975,101415.0995],[489242.0019,101862.601399999],[489270.703,100107.9037],[487843.3015,99752.5954],[488231.2976,98738.1958000008],[487190.9028,97846.5010000002],[487266.5601,97718.1063999999],[485661.17,96288.3800000008],[486712.946,96712.3159999996],[487447.219,95352.1919999998],[488190.2891,96040.6591999996],[488268.9205,95978.2896999996],[485870.3353,92551.8080000002],[485566.044,92128.9629999995],[483454.677,93913.3719999995],[483101.578,94455.9619999994],[481638.1014,95272.7614999991],[480533.756,96191.8259999994],[479019.1022,96734.4844000004],[477174.625,97763.9289999995],[476566.487,98462.0010000002],[476550.423,99386.3269999996],[477068.707,99176.3320000004],[476785.9506,98774.1543000005],[476878.1131,98534.6096000001],[477280.417,98628.3460000008],[478186.8256,100000.0034],[479185.984,101512.017999999],[480000.0139,101196.667199999],[481521.04,100607.43],[482859.076,101196.075999999],[484060.99,104121.550000001],[483629.12,104493.869999999],[483238.809,102588.289000001],[481642.612,101203.196],[480000.0131,102092.4792],[479792.255,102204.957],[480000.01,102469.8389],[481006.308,103752.841],[480298.72,103782.119999999],[480476.8,105082.800000001],[479999.9687,105101.013599999],[479665.301,105113.797],[479999.9938,103721.5394],[480008.876,103684.591],[479999.9947,103664.537799999],[479229.897,101925.721000001],[478135.351,102684.1],[477971.251,104868.226],[476627.29,105055.363],[477058.852,100454.709000001],[474586.07,102292.92],[475251.7987,105713.4991],[475110.7557,105690.979900001],[475647.001,107725.903100001],[474776.001,108784.300100001],[473414.5023,110645.497400001],[474590.0006,113712.399499999],[475721.0004,114412.199200001],[474419.3031,116472.6994],[475135.9968,116781.800899999],[476740.7001,122217.504899999],[477745.3031,123178.1],[477457.402,125316.797800001],[480516.6,127903.1974],[481176.5017,130365.4026],[484341.5004,130045.6042],[485501.902,131824.295],[487401.3003,132643.7005],[491403.7992,131048.3971],[496088.1977,133080.195499999],[498084.8959,132084.000700001],[499719.2979,132888.9003],[502417.1973,132426.8025],[502688.4021,133717.5031],[504773.2977,133167.9004],[505687.0978,133878.696900001]]]]},"properties":{"LAD22CD":"E07000225","LAD22NM":"Chichester","BNG_E":490285,"BNG_N":116600,"LONG":-0.7163,"LAT":50.94177,"OBJECTID":223,"GlobalID":"a8422fb3-e40f-46e8-8171-315650de2239"}},{"type":"Feature","id":224,"geometry":{"type":"Polygon","coordinates":[[[530127.0997,141732.198899999],[530654.998,141616.1021],[530379.5965,139748.296800001],[529957.8039,135340.498500001],[527988.1,133809.296800001],[525325.1019,133439.3027],[524772.3036,134870.303099999],[523859.699,134601.899900001],[523519.3016,135938.8972],[526001.8978,139298.095699999],[522200.8009,139201.803200001],[522148.6014,139766.9015],[525000.024,140316.3542],[525127.5008,141097.3006],[527574.099,142425.2005],[530127.0997,141732.198899999]]]},"properties":{"LAD22CD":"E07000226","LAD22NM":"Crawley","BNG_E":526390,"BNG_N":137581,"LONG":-0.19533,"LAT":51.12357,"OBJECTID":224,"GlobalID":"f491b72c-ef27-43ae-84b1-1a3a347567c9"}},{"type":"Feature","id":225,"geometry":{"type":"Polygon","coordinates":[[[525325.1019,133439.3027],[525400.6019,130999.901000001],[524649.9963,130488.5973],[524410.502,128408.602700001],[524953.0023,128015.995100001],[523017.2021,127478.399],[522889.5026,126523.002499999],[523771.6005,126114.1995],[523188.3036,125126.5022],[524123.9037,124983.7031],[523657.0024,118504.897600001],[524835.9967,117446.2007],[524328.9996,116640.701300001],[524966.5984,113982.4022],[523546.2959,113456.602700001],[523320.002,109635.996300001],[523996.6,109075.196900001],[523604.0031,108612.2994],[522856.5966,109455.9979],[522790.9989,108429.1018],[516856.4018,108324.501700001],[515159.5022,109610.8035],[515174.5,111163.4991],[514044.399,110817.4981],[513135.7025,111663.096100001],[511730.8018,110099.2037],[511814.1017,110876.5012],[510478.3028,111561.495200001],[509848.7017,109829.900800001],[508996.5994,111807.704700001],[508079.5013,110509.6962],[507256.3968,110613.296599999],[506784.4,112165.5023],[506093.299,110612.4968],[505581.8991,112228.404300001],[503870.3976,110314.1022],[502921.5972,110655.5045],[502182.6995,109958.604],[501310.1989,110804.901699999],[502574.0019,111204.0975],[501838.5012,112335.503599999],[501925.701,113642.399499999],[502939.3982,114052.1022],[501582.4014,114773.2958],[500652.8037,116872.604900001],[501964.9969,118174.302300001],[503091.701,117780.7049],[503634.3992,121884.5002],[504861.0004,122297.602],[504114.7977,123175.1008],[504582.6966,124215.1031],[506293.3984,124504.500299999],[506995.5973,125726.1006],[507152.5008,127163.599099999],[506383.5994,127942.1962],[506929.2987,129665.1031],[506333.4034,129701.002800001],[506712.0991,130783.502900001],[505687.0978,133878.696900001],[510767.8034,135177.895099999],[512678.0027,136477.1032],[519038.3005,137535.100299999],[522200.8009,139201.803200001],[526001.8978,139298.095699999],[523519.3016,135938.8972],[523859.699,134601.899900001],[524772.3036,134870.303099999],[525325.1019,133439.3027]]]},"properties":{"LAD22CD":"E07000227","LAD22NM":"Horsham","BNG_E":513674,"BNG_N":123840,"LONG":-0.38126,"LAT":51.00272,"OBJECTID":225,"GlobalID":"4ecca9d2-1bff-4a4a-80f0-8a2177bac71f"}},{"type":"Feature","id":226,"geometry":{"type":"Polygon","coordinates":[[[539273.0986,124441.998199999],[538765.2029,121925.998400001],[536173.5988,121678.699200001],[535290.8001,123130.4036],[532416.1018,121320.6017],[533275.8515,118048.5483],[532195.0023,117561.297700001],[531277.7969,111339.898600001],[528964.8017,110627.102600001],[528898.6021,111918.302999999],[527938.3988,111444.6986],[527618.6965,109239],[524849.9968,110241.0032],[523996.6,109075.196900001],[523320.002,109635.996300001],[523546.2959,113456.602700001],[524966.5984,113982.4022],[524328.9996,116640.701300001],[524835.9967,117446.2007],[523657.0024,118504.897600001],[524123.9037,124983.7031],[523188.3036,125126.5022],[523771.6005,126114.1995],[522889.5026,126523.002499999],[523017.2021,127478.399],[524953.0023,128015.995100001],[524410.502,128408.602700001],[524649.9963,130488.5973],[525400.6019,130999.901000001],[525325.1019,133439.3027],[527988.1,133809.296800001],[529957.8039,135340.498500001],[530379.5965,139748.296800001],[541923.4983,139796.503],[542046.696,137337.197000001],[543217.202,136582.8029],[541422.6026,135746.102399999],[540763.8964,136486.600400001],[540856.6039,135575.601199999],[537614.1017,134514.095100001],[538324.1993,132494.903000001],[539279.9998,132393.1022],[539662.4964,130455.096899999],[541221.7034,130559.1971],[540077.998,129476.697000001],[540214.2971,128166.302100001],[538815.2999,127100.0973],[539273.0986,124441.998199999]]]},"properties":{"LAD22CD":"E07000228","LAD22NM":"Mid Sussex","BNG_E":533054,"BNG_N":130623,"LONG":-0.10272,"LAT":51.05953,"OBJECTID":226,"GlobalID":"0abf0ccc-f55c-4561-8be7-73f8ff34d0bc"}},{"type":"Feature","id":227,"geometry":{"type":"Polygon","coordinates":[[[514993.0015,108050.3002],[515919.4001,104351.199100001],[517516.5238,103303.4212],[510321.7403,101568.0077],[509513.103,105631.9025],[511180.4894,105758.8961],[511099.0982,107932.7039],[512069.2039,107066.7018],[513992.1995,108321.602600001],[514993.0015,108050.3002]]]},"properties":{"LAD22CD":"E07000229","LAD22NM":"Worthing","BNG_E":512679,"BNG_N":104948,"LONG":-0.40127,"LAT":50.8331,"OBJECTID":227,"GlobalID":"ef1f69cf-a028-41df-9de9-444a9ba5a021"}},{"type":"Feature","id":228,"geometry":{"type":"Polygon","coordinates":[[[398941.4001,281632.402899999],[401046.1993,279857.401000001],[397807.696,278256.3993],[400199.3986,275898.804199999],[403252.9982,277260.4044],[404566.8981,276579.099400001],[405969.0037,278830.604900001],[408077.7029,277982.4977],[409025.9014,278531.9004],[410608.6975,277983.7973],[408809.5015,274400.403100001],[407657.1965,273674.900699999],[409307.0992,270563.101500001],[409056.103,268504.400800001],[408213.8041,268096.297599999],[407466.6037,269262.2039],[403159.5487,269211.398399999],[401323.2993,267797.6031],[401177.403,265994.9991],[399958.7994,265554.2952],[399928.5978,264602.4977],[393842.2998,265605.2007],[394290.7981,268378.596799999],[391639.5987,268494.003799999],[392377.9027,271013.2026],[391140.6983,272118.496300001],[391396.2994,272692.152000001],[390753.197,272441.8037],[391977.704,273319.4025],[390726.3016,277327.1953],[391507.4964,278371.896199999],[390979.1034,279151.1032],[389330.8002,279041.4046],[388692.2038,280655.3026],[388887.9992,281369.3982],[390847.001,280927.504699999],[393397.1984,283038.500399999],[394329.6983,281581.6974],[395470.0975,281913.9024],[395848.9993,281049.899700001],[396304.7038,282592.898],[397521.6006,282620.100199999],[397581.501,281061.496300001],[398941.4001,281632.402899999]]]},"properties":{"LAD22CD":"E07000234","LAD22NM":"Bromsgrove","BNG_E":399840,"BNG_N":273736,"LONG":-2.00376,"LAT":52.36169,"OBJECTID":228,"GlobalID":"b1b9d22d-6c91-4a72-bd8f-96f753134519"}},{"type":"Feature","id":229,"geometry":{"type":"Polygon","coordinates":[[[381938.7979,269532.796399999],[381327.0968,263824.3004],[382906.496,263205.797499999],[384269.3963,261326.995300001],[383478.1013,258209.397700001],[384047.2002,257050.999299999],[383098.004,256975.5009],[382190.9484,253775.9966],[382825.4965,253944.998299999],[383191.099,252393.802300001],[384521.9012,251735.001],[386186.7028,252134.9965],[387124.1003,249763.5953],[388810.2978,249404.597999999],[386650.2979,247408.499399999],[389907.6,244999.9988],[389247.8961,242919.104499999],[389817.3001,241905.3047],[389255.3002,240327.1964],[388070.9961,240043.4976],[388343.0996,238810.7005],[387703.8023,238162.0962],[387957.4039,236029.396600001],[387216.8985,235644.2969],[388793.0986,233089.2982],[387687.4029,233478.096899999],[387387.2002,232471.805],[384949.2016,233027.595899999],[382827.096,229816.595000001],[381509.2962,230085.3981],[379455.7977,229852.8047],[378623.2032,230938.503900001],[377667.2008,230862.945499999],[377806.2001,233952.101299999],[375900.9974,235069.701300001],[375985.097,235939.5024],[376941.1036,243556.901900001],[375976.5963,245074.297599999],[376049.9032,249649.697899999],[374145.5002,250825.801200001],[371684.9019,249741.3017],[370333.0004,252304.8978],[371240.4024,252773.2038],[372224.302,256135.201400001],[373263.897,256781.6964],[372505.4998,258213.5965],[373839.4023,258627.2981],[371206.1029,259979.601],[368350.0962,259675.9979],[367682.8976,260457.304199999],[368144.2995,262087.0977],[370891.2982,263690.998600001],[369304.0992,265310.494999999],[365770.802,264484.701400001],[366264.3019,262200.0954],[364197.8999,261230.8028],[363802.4998,261809.8971],[360898.5975,261771.3981],[357148.2985,260427.9026],[357214.4981,262739.551000001],[359305.5033,264997.5046],[356448.6968,265551.1961],[354875.1021,267517.103399999],[357958.1036,267827.5045],[360911.6989,268984.4034],[361738.2992,268261.600299999],[361786.302,270705.300799999],[363367.3996,271920.302999999],[365202.6018,271125.1006],[365123.103,270247.301899999],[367264.8977,270439.8967],[366838.1004,273148.001599999],[367769.9984,274448.599300001],[371845.5981,274546.9011],[371409.5993,270634.601],[370507.4989,269482.6008],[374889.8973,269920.295499999],[375331.7996,268587.7969],[377328.4978,269031.199999999],[378912.8027,271429.703400001],[379706.2002,269403.003599999],[381431.603,270127.1963],[381938.7979,269532.796399999]]]},"properties":{"LAD22CD":"E07000235","LAD22NM":"Malvern Hills","BNG_E":377465,"BNG_N":252197,"LONG":-2.33089,"LAT":52.16758,"OBJECTID":229,"GlobalID":"0362e12d-7e12-4794-b5a7-5685d1152b90"}},{"type":"Feature","id":230,"geometry":{"type":"Polygon","coordinates":[[[408213.8041,268096.297599999],[407839.9977,265392.7015],[405829.3984,264099.9016],[404367.4996,264222.896299999],[404560.3021,261538.504699999],[402310.0023,259869.4025],[398953.2977,259896.8047],[399036.6965,263537.002699999],[399928.5978,264602.4977],[399958.7994,265554.2952],[401177.403,265994.9991],[401323.2993,267797.6031],[403159.5487,269211.398399999],[407466.6037,269262.2039],[408213.8041,268096.297599999]]]},"properties":{"LAD22CD":"E07000236","LAD22NM":"Redditch","BNG_E":403705,"BNG_N":265253,"LONG":-1.9471,"LAT":52.28541,"OBJECTID":230,"GlobalID":"6f642ed0-b734-4e99-b583-19354feb6f4e"}},{"type":"Feature","id":231,"geometry":{"type":"Polygon","coordinates":[[[386186.7028,252134.9965],[384521.9012,251735.001],[383191.099,252393.802300001],[382825.4965,253944.998299999],[382190.9484,253775.9966],[383098.004,256975.5009],[384047.2002,257050.999299999],[383478.1013,258209.397700001],[384963.3996,259267.005000001],[389341.5023,257224.299699999],[388394.9034,254047.199100001],[386186.7028,252134.9965]]]},"properties":{"LAD22CD":"E07000237","LAD22NM":"Worcester","BNG_E":385725,"BNG_N":255196,"LONG":-2.21025,"LAT":52.19482,"OBJECTID":231,"GlobalID":"c0937430-0c78-4d01-bc57-d9e9e58b8e62"}},{"type":"Feature","id":232,"geometry":{"type":"Polygon","coordinates":[[[390753.197,272441.8037],[391396.2994,272692.152000001],[391140.6983,272118.496300001],[392377.9027,271013.2026],[391639.5987,268494.003799999],[394290.7981,268378.596799999],[393842.2998,265605.2007],[399928.5978,264602.4977],[399036.6965,263537.002699999],[398953.2977,259896.8047],[402310.0023,259869.4025],[404560.3021,261538.504699999],[405735.0996,257776.4016],[404495.1991,256210.999700001],[404087.0026,253239.2004],[402804.3019,252266.798699999],[404508.9024,252366.5002],[403906.8975,250783.903200001],[405440.7015,250526.4969],[406703.3996,248352.8991],[407957.3992,249845.401900001],[407333.7015,249999.9976],[407637.4001,250886.004000001],[409200.9028,250532.0953],[410075.7038,248922.3961],[411065.6965,250503.103599999],[412184.4029,249750.598999999],[412195.8965,248689.2028],[413206.6998,249080.300899999],[414775.504,248215.1985],[414405.8037,246894.396600001],[416708.303,246428.899800001],[416007.5965,246053.7972],[413640.2003,244305.997500001],[412929.6987,242280.0974],[412502.4973,243019.795700001],[411628.0014,241612.398499999],[410607.502,242349.997400001],[408705.1025,241297.4987],[409459.5998,239455.4959],[411441.2013,238382.1032],[412100.5011,236960.3002],[411144.0988,234271.999700001],[406032.499,238454.102600001],[404780,236839.8047],[403430.8029,237702.4977],[401184.502,237496.196799999],[397463.2998,234017.8025],[396697.3006,233928.797900001],[395924.6972,235140.0012],[394270.9028,234674.304500001],[392396.2975,235218.0989],[390437.6997,233455.203500001],[389824.6959,234767.9977],[390532.3035,236616.898499999],[392054.9025,237250.697000001],[391976.5991,238195.5966],[388343.0996,238810.7005],[388070.9961,240043.4976],[389255.3002,240327.1964],[389817.3001,241905.3047],[389247.8961,242919.104499999],[389907.6,244999.9988],[386650.2979,247408.499399999],[388810.2978,249404.597999999],[387124.1003,249763.5953],[386186.7028,252134.9965],[388394.9034,254047.199100001],[389341.5023,257224.299699999],[384963.3996,259267.005000001],[383478.1013,258209.397700001],[384269.3963,261326.995300001],[382906.496,263205.797499999],[381327.0968,263824.3004],[381938.7979,269532.796399999],[382352.7989,270054.1972],[381577.2025,270538.1986],[383099.249,271983.5549],[383365.9025,273691.296],[385761.4968,273032.604599999],[387116.6014,270109.5513],[388452.0993,270406.896199999],[388193.3034,268740.5032],[390753.197,272441.8037]]]},"properties":{"LAD22CD":"E07000238","LAD22NM":"Wychavon","BNG_E":398991,"BNG_N":247839,"LONG":-2.01614,"LAT":52.12886,"OBJECTID":232,"GlobalID":"c1b5b9f3-d25c-411c-850e-cedf3f92bd2b"}},{"type":"Feature","id":233,"geometry":{"type":"Polygon","coordinates":[[[388692.2038,280655.3026],[389330.8002,279041.4046],[390979.1034,279151.1032],[391507.4964,278371.896199999],[390726.3016,277327.1953],[391977.704,273319.4025],[390753.197,272441.8037],[388193.3034,268740.5032],[388452.0993,270406.896199999],[387116.6014,270109.5513],[385761.4968,273032.604599999],[383365.9025,273691.296],[383099.249,271983.5549],[381577.2025,270538.1986],[382352.7989,270054.1972],[381938.7979,269532.796399999],[381431.603,270127.1963],[379706.2002,269403.003599999],[378912.8027,271429.703400001],[377328.4978,269031.199999999],[375331.7996,268587.7969],[374889.8973,269920.295499999],[370507.4989,269482.6008],[371409.5993,270634.601],[371845.5981,274546.9011],[372160.5017,276647.299900001],[373504.7023,276014.1011],[375095.8012,276732.695499999],[377259.8989,276420.104900001],[374723.0997,278280.9023],[375384.7988,282444.600400001],[378903.6013,282217.395500001],[380567.9988,284188.9011],[380049.9039,283482.5033],[381775.9002,282326.5042],[388692.2038,280655.3026]]]},"properties":{"LAD22CD":"E07000239","LAD22NM":"Wyre Forest","BNG_E":384106,"BNG_N":276388,"LONG":-2.23494,"LAT":52.3853,"OBJECTID":233,"GlobalID":"6a618179-7300-4049-87f8-25d650f47813"}},{"type":"Feature","id":234,"geometry":{"type":"Polygon","coordinates":[[[519051.4019,216602.997300001],[521198.6961,214097.2049],[518874.1001,212417.395300001],[519058.7979,209580.297900001],[521440.1527,206605.2991],[521333.9978,205143.997300001],[520600.7972,204864.397299999],[519911.7,205791.702099999],[518577.5008,205201.501],[518463.1002,203875.400800001],[519115.697,203910.8003],[517421.6009,202400.302999999],[517586.6009,201119.8993],[516052.5001,200745.5963],[515714.296,201850.9001],[513842.7,201302.897],[513779.5018,200373.2031],[512634.4029,200012.996099999],[512390.0028,200555.101],[512375.2029,200599.2983],[511979.9018,202156.8028],[510293.3001,202737.6962],[510447.2023,203699.601],[509044.7011,205858.403000001],[508932.2961,208654.502900001],[507657.6013,210951.1951],[509524.2999,211470.6963],[509598.8021,212484.0962],[508420.6982,213180.1971],[509405.4969,214572.398800001],[509216.0003,216423.5989],[509990.7971,216979.7993],[512188.7983,215762.398],[512849.8505,217209.8539],[514471.5013,218081.1042],[515888.2999,216672.5973],[519051.4019,216602.997300001]]]},"properties":{"LAD22CD":"E07000240","LAD22NM":"St Albans","BNG_E":514580,"BNG_N":209623,"LONG":-0.3407,"LAT":51.77356,"OBJECTID":234,"GlobalID":"50aef074-0092-407d-8ba8-2f5142147284"}},{"type":"Feature","id":235,"geometry":{"type":"Polygon","coordinates":[[[525933.4967,219132.5033],[526383.0999,217762.795399999],[525580.8967,217409.6965],[526303.4032,216229.404300001],[525304.0028,214496.3004],[527804.804,212773.703500001],[526531.2966,212021.898700001],[528326.7989,209973.395099999],[528639.6989,205924.304099999],[531186.3015,206864.2951],[531816.8013,206666.601600001],[531388.2972,205847.2962],[530366.5033,204136.096000001],[531023.5029,200933.6028],[527045.2031,200413.401699999],[527038.3019,201719.897600001],[525623.4,202425.9955],[523075.9977,203164.6041],[521779.7999,202289.5046],[520600.7972,204864.397299999],[521333.9978,205143.997300001],[521440.1527,206605.2991],[519058.7979,209580.297900001],[518874.1001,212417.395300001],[521198.6961,214097.2049],[519051.4019,216602.997300001],[520796.0981,217853.6994],[521250.2031,216648.304400001],[522407.2985,216446.6022],[522318.3013,217703.002499999],[523183.4968,218486.598200001],[523676.6998,217942.7039],[523102.2994,217172.304400001],[524168.6002,217704.1022],[523605.0997,218816.003900001],[524269.899,219401.7962],[525933.4967,219132.5033]]]},"properties":{"LAD22CD":"E07000241","LAD22NM":"Welwyn Hatfield","BNG_E":525345,"BNG_N":208467,"LONG":-0.18518,"LAT":51.76087,"OBJECTID":235,"GlobalID":"dc108b8c-4991-4681-bbd0-aced482ff9a8"}},{"type":"Feature","id":236,"geometry":{"type":"Polygon","coordinates":[[[542184.2978,233751.5987],[544064.8973,233837.0042],[544829.7009,232466.996400001],[546211.3011,227141.500800001],[546332.1984,222801.802999999],[550368.9968,223913.604699999],[549793.6977,222706.700200001],[551262.0029,221111.696799999],[549553.7004,220340.997400001],[549393.9029,215943.396199999],[549849.5992,215305.898700001],[548875,214966.695800001],[548092.8982,213021.102700001],[542044.0988,211002.600500001],[539932.1016,210332.0024],[539081.2031,209217.8014],[538449.7963,210946.396600001],[536813.1022,210951.6951],[536589.8012,210168.499199999],[534794.9998,209594.603499999],[534177.6014,205782.2048],[531388.2972,205847.2962],[531816.8013,206666.601600001],[531186.3015,206864.2951],[528639.6989,205924.304099999],[528326.7989,209973.395099999],[526531.2966,212021.898700001],[527804.804,212773.703500001],[525304.0028,214496.3004],[526303.4032,216229.404300001],[525580.8967,217409.6965],[526383.0999,217762.795399999],[525933.4967,219132.5033],[526489.7003,219730.202199999],[525826.2038,221215.497099999],[527682.101,220732.895199999],[527331.9993,222373.195699999],[526653.1009,222310.603599999],[527174.9968,223883.203400001],[526484.4432,226240.878599999],[527584.496,227787.4959],[529411.7994,227201.003699999],[529311.2014,228744.202],[530000.0516,228730.096000001],[530181.0966,230076.7006],[532353.596,232048.396199999],[533022.1963,230472.5973],[534731.3974,231726.498299999],[534145.9981,233018.0986],[535339.6026,233536.100299999],[535772.6992,235034.2015],[537204.8993,234658.8989],[537614.7035,233513.596799999],[539829.7969,234306.899700001],[542184.2978,233751.5987]]]},"properties":{"LAD22CD":"E07000242","LAD22NM":"East Hertfordshire","BNG_E":537995,"BNG_N":220370,"LONG":0.002739,"LAT":51.86485,"OBJECTID":236,"GlobalID":"88aba952-66c1-4473-9279-d8d0e3d46bb9"}},{"type":"Feature","id":237,"geometry":{"type":"Polygon","coordinates":[[[526484.4432,226240.878599999],[527174.9968,223883.203400001],[526653.1009,222310.603599999],[527331.9993,222373.195699999],[527682.101,220732.895199999],[525826.2038,221215.497099999],[524544.3029,222028.5043],[523705.4009,221697.799000001],[521561.2975,224440.304],[522030.5981,227217.8989],[524909.1963,227544.6954],[526484.4432,226240.878599999]]]},"properties":{"LAD22CD":"E07000243","LAD22NM":"Stevenage","BNG_E":524622,"BNG_N":224531,"LONG":-0.18987,"LAT":51.90539,"OBJECTID":237,"GlobalID":"a3c2f090-ea78-41a2-b800-ea5a03979f20"}},{"type":"Feature","id":238,"geometry":{"type":"MultiPolygon","coordinates":[[[[617723.1388,240524.2873],[618138.1915,240155.525800001],[617588.9022,240516.302300001],[617723.1388,240524.2873]]],[[[651106.502,300527.1044],[652813.5017,299052.396500001],[653770.017,299262.944800001],[653770.03,299262.709100001],[655653.85,293738.25],[655226.25,292637.699999999],[655271.15,293192.9],[652106.8,292793.25],[655205.4,292582.15],[653888.59,290024.300000001],[653884.7424,289918.2631],[653870.1969,289891.286499999],[653802.0421,287639.1351],[653690.209,284557.137],[652242.2863,279999.998],[650573.974,274749.213],[650404.25,274791.960000001],[649945.8389,273995.0331],[648952.994,273168.005999999],[648016.948,270761.454],[648013.818,270636.302999999],[647943.746,270514.486],[647743.659,260663.418],[647602.6021,260000.0112],[645353.1177,249420.4252],[645349.6538,249404.134],[645320.7606,249268.2457],[638502.1026,244969.393999999],[640000.0254,246141.77],[642346.5033,247978.2828],[642766.607,248230.463],[644134.7064,249241.804500001],[644453.483,249627.347999999],[644492.293,249683.197000001],[644061.7184,249320.726500001],[642754.0946,248297.2914],[641166.0996,247783.971799999],[640215.0661,247160.125299999],[640049.8,247155.9],[639999.9822,247108.7951],[636754.944,244040.471999999],[637564.109,244536.106000001],[637535.4358,244359.9548],[637521.827,244351.3751],[635635.2816,239859.3432],[633116.805,237446.142999999],[633164.016,238880.653999999],[630754.375,239534.627],[632950.94,237755.41],[632775.52,236534.27],[629892.53,233997.550000001],[628328.1558,231278.4933],[627942.7126,233280.617000001],[627940.6237,233293.762],[625724.087,234739.153100001],[625559.9263,235172.5002],[625299.2,237816.789999999],[620000.0192,239947.6742],[619869.9017,239999.9965],[618457.4467,240567.967],[620303.803,240677.7961],[621230.4984,241684.198000001],[619695.5978,242497.895099999],[619884.0964,245477.302200001],[618668.8981,247254.203600001],[616917.3008,247071.695800001],[616432.7963,248081.196900001],[617642.0994,251692.903000001],[617022.9035,252841.0044],[618481.0014,253877.997500001],[619893.7019,256898.6029],[621643.6007,257409.896500001],[622534.9,259422.000600001],[622658.5017,260567.602700001],[621622.1965,260898.398],[621872.4011,263933.8991],[624495.3035,265349.8038],[625376.7994,267447.903200001],[627985.0998,268337.398600001],[627992.3967,270401.4977],[626987.9998,271918.5035],[628357.2983,271416.2973],[628220.1994,270149.199999999],[629027.0034,269293.8048],[632102.7987,270732.2031],[630865.5036,271611.001499999],[630771.3038,273451.9046],[628902.9977,274645.103],[628820.1513,276326.1019],[632232.4028,279381.397299999],[629710.7993,282763.199200001],[627772.7977,283757.604599999],[628779.297,286374.5955],[631698.4032,288397.996300001],[633370.0976,288581.1039],[633359.8985,289763.795299999],[631819.0037,290318.896400001],[632389.397,291398.897299999],[634235.9032,289810.901900001],[636498.9993,291689.6041],[638405.9006,290651.9011],[639844.301,291457.000700001],[641810.2039,290366.502800001],[642409.7023,292283.404100001],[643620.8028,292796.1973],[645900.3973,291191.796599999],[646991.3013,291210.601199999],[647755.7999,292257.7015],[648609.6996,291899.8039],[650063.9965,294943.8026],[649308.9962,295888.0023],[648115.1031,295554.297800001],[646234.0007,298201.4001],[648750.5005,301029.1007],[651106.502,300527.1044]]]]},"properties":{"LAD22CD":"E07000244","LAD22NM":"East Suffolk","BNG_E":636043,"BNG_N":266272,"LONG":1.456186,"LAT":52.24399,"OBJECTID":238,"GlobalID":"26c1d1b3-3bbb-4690-a2b0-6563f78f7bcf"}},{"type":"Feature","id":239,"geometry":{"type":"Polygon","coordinates":[[[602112.2959,278815.7992],[601202.7997,277213.4978],[601557.898,275480.6039],[599900.5006,274896.0012],[599462.0035,273946.2031],[599896.3038,272349.700099999],[597847.703,270713.0985],[596668.6015,270802.0031],[597002.8975,269989.195800001],[596036.7,270706.8003],[594018.3998,269002.1983],[594993.7987,267205.8025],[594059.2499,267122.746300001],[594181.3964,266211.3971],[592921.4026,266909.8972],[591129.0995,266639.604599999],[591060.0966,265135.395099999],[593129.9037,263850.203],[592463.9007,259920.097999999],[594070.7971,259028.5032],[594001.2995,257558.903899999],[592539.7965,256228.3048],[590646.1038,256952.6974],[589412.1974,256583.1032],[588832.6026,254613.696900001],[587652.9982,254771.401799999],[587358.3032,255945.095799999],[586316.3007,255363.9022],[585789.903,256922.796],[584563.4007,257102.704500001],[584220.8019,254448.0044],[581041.9021,254620.095100001],[579903.6961,251106.300899999],[582134.4964,246338.4957],[577050.501,245087.4038],[574978.2038,244230.099199999],[574389.1025,242979.0973],[572241.8,243135.102700001],[571622.1012,242448.099300001],[569128.9019,245101.899700001],[568273.8973,243925.296499999],[567206.6978,244355.303400001],[564926.6004,243518.902799999],[564153.9969,246884.8993],[563225.8009,247603.9035],[563704.8967,249263.7983],[565606.6035,251206.5022],[565445.2972,253978.798699999],[566719.3982,254042.4005],[567780.9993,255604.4034],[569086.2007,254541.4976],[570488.1002,254794.6951],[571833.3974,261707.896299999],[570450.4038,263049.4023],[569479.1026,262283.9014],[565756.9028,264487.000700001],[564928.7029,263820.101600001],[565424.3959,262927.0973],[562052.8008,261353.297800001],[560045.3016,263045.5034],[561262.7013,263873.0965],[559771.2028,265858.098300001],[560959.1017,269220.195900001],[562592.3988,268797.596899999],[565560.2003,264733.000299999],[570585.2023,266813.104900001],[570947.2017,268127.5986],[567612.5032,271524.2963],[565825.6995,271416.597200001],[565288.204,272889.3956],[566460.0003,275112.599199999],[564037.1974,276449.996400001],[561625.5995,281731.3046],[565236.7961,284823.5995],[566296.3029,286077.9004],[571601.604,286350.3024],[573680.0025,287296.9015],[575584.9002,286901.004799999],[579619.5961,286947.101600001],[581236.098,288291.8967],[582473.5992,287297.3014],[584844.1038,287000.996200001],[581603.7041,282344.199200001],[583165.599,281127.7974],[586360.5024,280981.2993],[587078.6967,279677.602499999],[588311.2014,280523.2004],[591186.1965,280541.295299999],[593365.597,281881.8015],[595176.196,280789.404200001],[599493.4007,280794.602700001],[602112.2959,278815.7992]]]},"properties":{"LAD22CD":"E07000245","LAD22NM":"West Suffolk","BNG_E":580944,"BNG_N":271124,"LONG":0.652769,"LAT":52.30842,"OBJECTID":239,"GlobalID":"d15b9538-5a7c-4919-82f4-94cfed416eb7"}},{"type":"Feature","id":240,"geometry":{"type":"Polygon","coordinates":[[[326464.2272,145750.506999999],[326624.4969,145420.5031],[325505.1968,144457.798699999],[324250.4964,144656.2019],[322067.097,142461.5001],[322231.7014,141775.6965],[319158.0004,141128.9016],[317649.6984,139265.904899999],[315768.8021,138862.600299999],[315015.7971,137401.298599999],[318291.9969,134539.5978],[320138.9978,135063.697699999],[320213.698,133976.4989],[318861.6976,133034.898499999],[320369.3977,130935.2995],[326770.0964,130102.3979],[328286.8001,129445.296],[327810.4994,128125.1039],[328870.5999,128875.199200001],[330185.9015,128745.296399999],[331238.8041,127289.403100001],[332956.9017,128001.9991],[335146.6003,129541.7984],[333627.2993,130893.701400001],[335289.0007,132165.0975],[336204.4993,132157.0997],[337863.9993,130350.3969],[337500.6971,128790.603399999],[338137.6034,127754.4],[333417.0998,123973.9022],[333838.3482,123079.4482],[331419.7007,122481.999199999],[331245.3012,118855.397299999],[329319.997,118000.302100001],[327523.9011,115715.896],[323622.9978,115960.8959],[323863.5969,114137.5978],[326103.7245,112618.276699999],[320894.03,111965.85],[319621.4474,110837.1547],[316576.52,112992.779999999],[318152.5977,117124.1029],[311935.096,116573.500499999],[309219.8984,118099.003799999],[306478.597,121223.399499999],[303309.4016,120694.400900001],[303266.7005,125253.3959],[300906.6012,125433.5044],[300430.3005,126674.699100001],[297691.1016,126109.6008],[296085.4007,127099.997300001],[294611.3981,126716.1972],[293468.5007,126267.795499999],[293551.6027,125033.9987],[292391.0032,123784.496400001],[287618.399,124318.4035],[286835.4975,125254.095699999],[288346.7017,129638.2008],[284692.9029,130037.296499999],[281544.08,132612.609999999],[279619.72,132685.630000001],[273807.3033,136703.7983],[271756.402,139279.7009],[271535.8961,143573.6018],[275217.9013,142926.9969],[279524.4039,143677.0022],[279063.1999,148486.795399999],[279972.7277,149615.028899999],[280000.0285,149609.7478],[286059.6109,148437.5579],[286781.626,147723.467900001],[286866.26,147632.060000001],[289873.63,149290.890000001],[292425.2,149249.5],[295647.47,148224.880000001],[297381.32,146466.039999999],[298976,146517.970000001],[299999.9852,145557.750600001],[302188.35,143505.66],[310810.47,143035.640000001],[319488.228,146140.728],[320000.0207,146206.7236],[321479.582,146397.513],[324897.972,145222.161],[326411.598,145721.892999999],[326464.2272,145750.506999999]]]},"properties":{"LAD22CD":"E07000246","LAD22NM":"Somerset West and Taunton","BNG_E":304961,"BNG_N":130227,"LONG":-3.35764,"LAT":51.06348,"OBJECTID":240,"GlobalID":"c40a173d-90fe-4312-9cf2-f5dc73d7c557"}},{"type":"Feature","id":241,"geometry":{"type":"Polygon","coordinates":[[[375025.3967,414992.099099999],[374998.996,413815.9959],[376080.8962,412698.695800001],[375140.2009,410768.898],[375330.398,408311.4013],[376513.9021,407173.6971],[376314.3963,406314.703],[375347.0033,406428.4003],[377469.9008,405524.099199999],[377681.1968,404158.100299999],[376654.497,404323.603],[376603.6992,403343.003699999],[371128.3025,405155.005000001],[370194.302,403642.298],[366573.302,404822.3002],[364710.8994,403058.2952],[362355.7966,405840.298800001],[363028.7008,407323.204299999],[361851.8008,409538.800100001],[358669.9987,410970.3004],[360670.3,412859.1997],[362419.803,411151.6985],[366280.6023,414615.696900001],[368397.9011,413492.8983],[369689.696,413818.904999999],[371095.0007,416703.099400001],[372205.998,414225.298599999],[375025.3967,414992.099099999]]]},"properties":{"LAD22CD":"E08000001","LAD22NM":"Bolton","BNG_E":368352,"BNG_N":409873,"LONG":-2.47952,"LAT":53.58449,"OBJECTID":241,"GlobalID":"cd743cd9-8c4d-4b20-bba1-dfabf55306c7"}},{"type":"Feature","id":242,"geometry":{"type":"Polygon","coordinates":[[[382117.0971,413139.8991],[383878.498,411534.198999999],[381403.199,409735.304],[381999.696,409224.300100001],[382935.296,409883.2019],[383985.0981,408370.2049],[384375.197,404714.801100001],[383415.9993,405357.596999999],[382317.403,404562.504899999],[382587.6019,403144.600299999],[383747.5003,403646.197000001],[383058.9208,402392.6558],[380813.6362,401741.953],[379515.5001,403434.6972],[377681.1968,404158.100299999],[377469.9008,405524.099199999],[375347.0033,406428.4003],[376314.3963,406314.703],[376513.9021,407173.6971],[375330.398,408311.4013],[375140.2009,410768.898],[376080.8962,412698.695800001],[374998.996,413815.9959],[375025.3967,414992.099099999],[375608.001,415062.899],[376122.8969,417715.6993],[375568.5978,419017.9969],[379162.1992,417655.096999999],[380342.2983,418953.6951],[380575.4029,416025.5032],[382117.0971,413139.8991]]]},"properties":{"LAD22CD":"E08000002","LAD22NM":"Bury","BNG_E":379658,"BNG_N":410768,"LONG":-2.3088,"LAT":53.5931,"OBJECTID":242,"GlobalID":"43dbd345-4803-459b-a8df-8584d0ff0ed5"}},{"type":"Feature","id":243,"geometry":{"type":"Polygon","coordinates":[[[384375.197,404714.801100001],[385603.2989,405272.301200001],[387766.5968,403614.296],[389835.703,402382.5986],[388244.901,401030.7456],[389281.0001,399582.0002],[388943.7029,398162.996400001],[390350.2031,396777.1031],[389575.3982,395363.3978],[388615.401,394593.998],[388372.7983,392936.702400001],[387571.9968,393334.0987],[385912.703,391365.4022],[385964.1027,390036.102700001],[383684.2031,388829.898],[384071.9024,384769.4003],[383030.3038,384895.7041],[380031.6988,382620.4954],[380330.4998,383560.7963],[379198.6013,384549.203299999],[380225.4,384923.0963],[381092.7969,386635.0963],[378831.6961,390580.696799999],[380306.1026,390211.6525],[381634.4974,391001.0965],[381913.8978,391778.0041],[380155.0037,393333.198899999],[383253.2997,395938.903100001],[382486.204,397363.895199999],[383830.8992,398845.301100001],[383153.6005,400297.5954],[383834.8981,401745.7009],[383058.9208,402392.6558],[383747.5003,403646.197000001],[382587.6019,403144.600299999],[382317.403,404562.504899999],[383415.9993,405357.596999999],[384375.197,404714.801100001]]]},"properties":{"LAD22CD":"E08000003","LAD22NM":"Manchester","BNG_E":384591,"BNG_N":397063,"LONG":-2.23359,"LAT":53.47009,"OBJECTID":243,"GlobalID":"cbf05265-17ce-4cdd-bcda-fce06416e73c"}},{"type":"Feature","id":244,"geometry":{"type":"Polygon","coordinates":[[[399470.8979,413357.697000001],[403891.0999,407224.602600001],[405869.0983,406114.3004],[406087.1967,404640.102399999],[404951.9012,402698.1982],[405271.9993,401475.3983],[403325.2991,400833.302100001],[402525.5034,401459.003],[396457.0972,403859.095899999],[396507.3014,402843.9965],[393914.0978,402662.8983],[391065.8991,399475.7007],[389281.0001,399582.0002],[388244.901,401030.7456],[389835.703,402382.5986],[387766.5968,403614.296],[388869.8022,405514.0021],[388703.9033,406857.5978],[390101.3011,407843.6952],[389730.757,409531.5908],[391766.4983,409995.8992],[392775.4961,411463.9991],[396133.8001,410656.5001],[397726.5973,411817.597899999],[398323.8039,414179.901699999],[398573.4972,413253.2969],[399470.8979,413357.697000001]]]},"properties":{"LAD22CD":"E08000004","LAD22NM":"Oldham","BNG_E":396603,"BNG_N":406784,"LONG":-2.05274,"LAT":53.55768,"OBJECTID":244,"GlobalID":"d7807af2-568a-4482-bcdb-508ade6d3ab5"}},{"type":"Feature","id":245,"geometry":{"type":"Polygon","coordinates":[[[398323.8039,414179.901699999],[397726.5973,411817.597899999],[396133.8001,410656.5001],[392775.4961,411463.9991],[391766.4983,409995.8992],[389730.757,409531.5908],[390101.3011,407843.6952],[388703.9033,406857.5978],[388869.8022,405514.0021],[387766.5968,403614.296],[385603.2989,405272.301200001],[384375.197,404714.801100001],[383985.0981,408370.2049],[382935.296,409883.2019],[381999.696,409224.300100001],[381403.199,409735.304],[383878.498,411534.198999999],[382117.0971,413139.8991],[383113.0019,413790.802999999],[382257.6012,416657.6022],[383850.0031,418585.850299999],[385712.0018,419187.3982],[386533.2013,417557.005000001],[388039.7969,416875.200099999],[387839.3019,415759.3992],[389429.7989,416106.0002],[390432.596,420649.5998],[390700.5029,420178.904200001],[391239.2021,421037.698799999],[392295.9962,419423.800799999],[393959.2971,419300.695900001],[396713.0981,420803.2959],[398323.8039,414179.901699999]]]},"properties":{"LAD22CD":"E08000005","LAD22NM":"Rochdale","BNG_E":390315,"BNG_N":412326,"LONG":-2.14784,"LAT":53.60741,"OBJECTID":245,"GlobalID":"db77b4bd-04b7-449b-82be-82d343efd922"}},{"type":"Feature","id":246,"geometry":{"type":"Polygon","coordinates":[[[377681.1968,404158.100299999],[379515.5001,403434.6972],[380813.6362,401741.953],[383058.9208,402392.6558],[383834.8981,401745.7009],[383153.6005,400297.5954],[383830.8992,398845.301100001],[382486.204,397363.895199999],[381403.0998,396493.204399999],[378723.8012,398207.3037],[376535.8011,397533.196699999],[373782.0991,395813.099099999],[372218.2996,392583.703500001],[370229.2033,391101.897600001],[367582.2007,396058.198899999],[371253.3966,396564.2041],[371004.0989,399609.4024],[372608.8022,402102.0989],[370194.302,403642.298],[371128.3025,405155.005000001],[376603.6992,403343.003699999],[376654.497,404323.603],[377681.1968,404158.100299999]]]},"properties":{"LAD22CD":"E08000006","LAD22NM":"Salford","BNG_E":374556,"BNG_N":398128,"LONG":-2.38485,"LAT":53.47927,"OBJECTID":246,"GlobalID":"f8eb05a0-5c1b-4c61-822e-c7644a1eef99"}},{"type":"Feature","id":247,"geometry":{"type":"Polygon","coordinates":[[[398352.8017,392562.6995],[399186.8968,391007.704600001],[400607.1003,390930.096799999],[399788.4977,387718.6961],[397850.2982,386519.2994],[398030.7991,385931.897500001],[397398.6008,386357.795600001],[395566.3008,384501.8969],[393763.7986,385470.399599999],[391898.6998,385013.3005],[390846.3991,385612.698899999],[390032.3972,383480.099400001],[390503.2974,382893.6972],[389397.6017,381165.401900001],[387168.7968,382432.099300001],[388048.2975,383029.7983],[387753.6025,383989.103700001],[384071.9024,384769.4003],[383684.2031,388829.898],[385964.1027,390036.102700001],[385912.703,391365.4022],[387571.9968,393334.0987],[388372.7983,392936.702400001],[388615.401,394593.998],[389575.3982,395363.3978],[390684.697,393504.699899999],[392391.202,393777.501800001],[393291.2988,392872.6008],[394182.2024,393394.3015],[394794.3982,392154.996200001],[398352.8017,392562.6995]]]},"properties":{"LAD22CD":"E08000007","LAD22NM":"Stockport","BNG_E":391806,"BNG_N":388264,"LONG":-2.12467,"LAT":53.39116,"OBJECTID":247,"GlobalID":"cc82fcca-9a7a-4be3-9514-a624c8a4d620"}},{"type":"Feature","id":248,"geometry":{"type":"Polygon","coordinates":[[[402525.5034,401459.003],[400905.5963,398263.5976],[401040.6999,395384.0019],[399550.2979,393862.297499999],[399817.1988,393236.196699999],[399152.2016,393663.6044],[398352.8017,392562.6995],[394794.3982,392154.996200001],[394182.2024,393394.3015],[393291.2988,392872.6008],[392391.202,393777.501800001],[390684.697,393504.699899999],[389575.3982,395363.3978],[390350.2031,396777.1031],[388943.7029,398162.996400001],[389281.0001,399582.0002],[391065.8991,399475.7007],[393914.0978,402662.8983],[396507.3014,402843.9965],[396457.0972,403859.095899999],[402525.5034,401459.003]]]},"properties":{"LAD22CD":"E08000008","LAD22NM":"Tameside","BNG_E":394987,"BNG_N":397995,"LONG":-2.077,"LAT":53.47867,"OBJECTID":248,"GlobalID":"ab17be33-69c5-49a6-8a4c-207c8fe0e5bc"}},{"type":"Feature","id":249,"geometry":{"type":"Polygon","coordinates":[[[382486.204,397363.895199999],[383253.2997,395938.903100001],[380155.0037,393333.198899999],[381913.8978,391778.0041],[381634.4974,391001.0965],[380306.1026,390211.6525],[378831.6961,390580.696799999],[381092.7969,386635.0963],[380225.4,384923.0963],[379198.6013,384549.203299999],[377481.6003,385664.404100001],[375091.0026,385450.895199999],[371724.8986,387929.695699999],[368281.8815,388925.760500001],[370229.2033,391101.897600001],[372218.2996,392583.703500001],[373782.0991,395813.099099999],[376535.8011,397533.196699999],[378723.8012,398207.3037],[381403.0998,396493.204399999],[382486.204,397363.895199999]]]},"properties":{"LAD22CD":"E08000009","LAD22NM":"Trafford","BNG_E":375790,"BNG_N":391162,"LONG":-2.36572,"LAT":53.41671,"OBJECTID":249,"GlobalID":"c91e86ab-3660-419d-9cad-46ebb1a0c91c"}},{"type":"Feature","id":250,"geometry":{"type":"Polygon","coordinates":[[[358669.9987,410970.3004],[361851.8008,409538.800100001],[363028.7008,407323.204299999],[362355.7966,405840.298800001],[364710.8994,403058.2952],[366573.302,404822.3002],[370194.302,403642.298],[372608.8022,402102.0989],[371004.0989,399609.4024],[371253.3966,396564.2041],[367582.2007,396058.198899999],[367158.6024,398358.3005],[363410.8016,396926.600299999],[363641.9025,396220.8024],[362224.0982,395896.995100001],[361791.1007,394518.799699999],[359243.0962,396492.104900001],[359473.7023,398441.2969],[357256.2018,398362.2992],[355899.0973,400545.004799999],[353739.3039,400818.6961],[351662.363,402905.219000001],[352505.1005,403632.500800001],[353409.0973,407181.8048],[352474.0497,409073.6033],[354201.7486,410538.8039],[354484.7974,412190.4011],[358109.5984,412599.604],[358669.9987,410970.3004]]]},"properties":{"LAD22CD":"E08000010","LAD22NM":"Wigan","BNG_E":362136,"BNG_N":402125,"LONG":-2.57247,"LAT":53.51444,"OBJECTID":250,"GlobalID":"dd20946e-e420-49d7-8d89-d6c1deb57274"}},{"type":"Feature","id":251,"geometry":{"type":"Polygon","coordinates":[[[345355.2969,399036.5963],[345746.7971,396993.9011],[346696.8011,397021.5031],[347286.9002,394343.799900001],[346619.6029,393842.803099999],[348520.0979,392489.600099999],[347786.1963,389660.5001],[350553.1979,389731.9199],[349698.3004,387364.497500001],[348433.6976,387413.803400001],[347696.2016,384666.0999],[345588.8993,383767.497099999],[344150.0009,383709.703600001],[343300.1,385520.395300001],[343142.8996,387224.6975],[345421.0018,387403.996200001],[344432.1963,389537.795399999],[343160.7997,389020.9033],[340776.1961,390808.3017],[342546.7982,391625.3978],[342460.5961,395074.9004],[340332.8014,397311.5002],[339393.3015,396861.598999999],[338860.9013,397978.3993],[341199.0176,401158.618899999],[342697.6993,399833.3983],[343715.4037,399938.1983],[344062.8011,398931.6964],[345355.2969,399036.5963]]]},"properties":{"LAD22CD":"E08000011","LAD22NM":"Knowsley","BNG_E":344762,"BNG_N":393778,"LONG":-2.83297,"LAT":53.43788,"OBJECTID":251,"GlobalID":"bfee701f-09b8-4176-a33e-c0546fcd0cb1"}},{"type":"Feature","id":252,"geometry":{"type":"Polygon","coordinates":[[[345588.8993,383767.497099999],[345579.9995,382851.999199999],[344666.1005,382586.395199999],[344958.5485,381934.282500001],[343190.0037,381503.395199999],[341618.8001,382279.0032],[339999.9792,383562.9221],[335261.0005,387321.4998],[333501.2983,390856.198000001],[333093.6902,393928.1468],[335341.596,394502.5042],[335443.6039,396663.3957],[336621.7983,397786.5042],[338860.9013,397978.3993],[339393.3015,396861.598999999],[340332.8014,397311.5002],[342460.5961,395074.9004],[342546.7982,391625.3978],[340776.1961,390808.3017],[343160.7997,389020.9033],[344432.1963,389537.795399999],[345421.0018,387403.996200001],[343142.8996,387224.6975],[343300.1,385520.395300001],[344150.0009,383709.703600001],[345588.8993,383767.497099999]]]},"properties":{"LAD22CD":"E08000012","LAD22NM":"Liverpool","BNG_E":339361,"BNG_N":390553,"LONG":-2.91364,"LAT":53.4083,"OBJECTID":252,"GlobalID":"55de56fa-074b-431e-a53d-c223e2e3c028"}},{"type":"Feature","id":253,"geometry":{"type":"Polygon","coordinates":[[[351662.363,402905.219000001],[353739.3039,400818.6961],[355899.0973,400545.004799999],[357256.2018,398362.2992],[359473.7023,398441.2969],[359243.0962,396492.104900001],[361791.1007,394518.799699999],[361217.3021,393828.097200001],[360337.8012,395015.497199999],[360493.6001,394152.204299999],[358410.9968,393251.802100001],[357645.4012,394368.802300001],[355128.003,395326.098300001],[354787.4982,393784.4999],[355690.4973,393999.098200001],[355233.4983,393119.800000001],[356007.2972,392639.497300001],[355115.9981,388075.704],[354161.5002,387836.6022],[352692.7002,388433.801200001],[352540.9008,389370.903100001],[350553.1979,389731.9199],[347786.1963,389660.5001],[348520.0979,392489.600099999],[346619.6029,393842.803099999],[347286.9002,394343.799900001],[346696.8011,397021.5031],[345746.7971,396993.9011],[345355.2969,399036.5963],[345935.403,402030.1993],[348231.1,404146.9037],[349111.4002,402150.2951],[351662.363,402905.219000001]]]},"properties":{"LAD22CD":"E08000013","LAD22NM":"St. Helens","BNG_E":353412,"BNG_N":395992,"LONG":-2.7031,"LAT":53.45862,"OBJECTID":253,"GlobalID":"76e3497a-a730-4138-af97-18a6db700d4b"}},{"type":"Feature","id":254,"geometry":{"type":"MultiPolygon","coordinates":[[[[337096.2003,422529.6479],[337334.0161,422114.8796],[336556,422357.5],[337096.2003,422529.6479]]],[[[336706,422131],[336647.46,421467.34],[337119.5,422106],[336857.6,421182.9],[337594.0284,420723.787699999],[337379.6427,422033.9188],[337344.4014,422095.760600001],[337335.365,422112.4814],[337571.9015,421699.8991],[337967.3016,418422.3972],[336134.103,415411.199200001],[335156.9973,414409.396],[334101.2997,414920.5996],[332016.404,412241.0966],[331517.9984,410568.295499999],[332523.5,410159.102600001],[332374.5035,408594.8004],[331190.8013,408130.6032],[330736.3995,405654.302100001],[335390.5964,402509.302300001],[336256.0969,403434.1976],[335318.7984,405919.0963],[337285.7979,405717.903899999],[338907.0984,403567.599400001],[341638.1018,403012.6982],[341199.0176,401158.618899999],[338860.9013,397978.3993],[336621.7983,397786.5042],[335443.6039,396663.3957],[335341.596,394502.5042],[333093.6902,393928.1468],[333086.3007,393983.838099999],[331928.6093,395641.359099999],[331946.02,395744.842800001],[331140.5127,396769.7139],[330963.452,397023.220000001],[330020.4019,399999.970100001],[329545.092,401500.291999999],[329650.6,404222.9],[329265.422,403110.332],[328119.119,403740.092],[327068.597,405062.233999999],[326943.444,406991.431],[330069.413,414370.789999999],[333647,419158.199999999],[333369.6525,420000.034399999],[333114.5,420774.5],[335180.9,421127.9],[334904,421874],[335530.6,421474.199999999],[336235.5,422878.5],[335942,422195.5],[336706,422131]]]]},"properties":{"LAD22CD":"E08000014","LAD22NM":"Sefton","BNG_E":334282,"BNG_N":398832,"LONG":-2.99177,"LAT":53.4821,"OBJECTID":254,"GlobalID":"0d808306-37be-4c36-bac7-bc02bd622882"}},{"type":"Feature","id":255,"geometry":{"type":"MultiPolygon","coordinates":[[[[325853.5611,378067.392000001],[325235.9429,377513.161900001],[325550.7861,377803.7607],[325637.9798,377883.023],[325671.0014,377913.040899999],[325688.9294,377929.338099999],[325838.8916,378068.206800001],[325853.5611,378067.392000001]]],[[[333399.1,386893.85],[337851.3527,380000.036900001],[338208.1168,379447.627599999],[338019.0971,379194.696],[337495.7996,379685.195599999],[335584.2976,378691.5001],[333947.0016,379365.2972],[331706.398,378355.496300001],[328536.7986,380475.2995],[326179.5986,378359.974400001],[326163.6207,378366.749],[325938.4762,378159.749399999],[325187.042,378267.017000001],[325712.39,378787.027000001],[324949.389,378079.524],[324252.462,378456.251],[324508.421,379606.418],[324585.882,378681.143999999],[325193.02,378730.540999999],[325007.046,378788.989],[324751.314,379519.926999999],[324920.652,379217.298],[324884.238,379397.824999999],[326315.282,378879.211999999],[325011.419,379411.973999999],[325961.5,379704],[325436.8293,380000.0285],[325048.606,380219.071],[325545.278,380502.965],[324859.499,380308.283],[325306.102,380640.738],[324440.036,380471.994999999],[324411.379,381877.591],[326408.24,380195.48],[320008.081,388051.866],[321797.5,389853.449999999],[330939.5,394520.199999999],[333399.1,386893.85]]]]},"properties":{"LAD22CD":"E08000015","LAD22NM":"Wirral","BNG_E":329110,"BNG_N":386965,"LONG":-3.06701,"LAT":53.37478,"OBJECTID":255,"GlobalID":"64b50482-4968-4650-ba36-055e08729052"}},{"type":"Feature","id":256,"geometry":{"type":"Polygon","coordinates":[[[443213.9978,409834.895400001],[444692.0981,407048.902899999],[446630.3965,406323.3006],[446902.599,404580.6994],[448107.7961,403928.1962],[447418.7975,403578.8961],[447754.3963,402439.802200001],[445691.2016,402119.3039],[441204.2971,402126.401900001],[438055.599,398943.2031],[437182.7026,399520.5978],[436447.8038,398827.6962],[436259.0991,397360.0963],[433623.6972,398955.999399999],[432309.4015,396432.2019],[432427.8006,395070.8016],[431125.4025,393603.8015],[429901.9014,394473.702500001],[430702.0021,396204.497],[429985.6959,398066.704],[426198.4013,399647.9014],[419924.0995,400753.8048],[417880.0004,399385.6964],[417439.4008,397854.9046],[414454.1033,398695.7039],[413272.6025,398268.6962],[413609.504,400735.200099999],[411883.9034,402726.3002],[413068.9001,404500.9022],[415217.8021,404155.6011],[417224.6994,404965.499199999],[418434.4973,407067.897399999],[421995.9019,406337.6964],[423397.6035,407342.0989],[425556.5975,407445.8992],[426835.0025,409006.002699999],[426460.6025,410202.4002],[427368.6971,410844.7963],[427460.8026,412368.200200001],[429180.9038,412420.495300001],[431154.6972,410828.401000001],[431951.302,411566.899599999],[433416.202,411316.001399999],[433507.1038,411963.796],[434268.898,411043.399499999],[436641.8472,413049.395300001],[439781.9004,411509.796],[441339.7964,412391.8035],[443213.9978,409834.895400001]]]},"properties":{"LAD22CD":"E08000016","LAD22NM":"Barnsley","BNG_E":429979,"BNG_N":403327,"LONG":-1.54925,"LAT":53.52577,"OBJECTID":256,"GlobalID":"fd5149ce-a45d-4f19-829e-27453534caef"}},{"type":"Feature","id":257,"geometry":{"type":"Polygon","coordinates":[[[475119.4985,416283.499500001],[473058.596,410194.102600001],[472872.2988,408571.7969],[473546.3985,408341.3029],[472898.1966,406255.899900001],[473510.5985,405103.499700001],[470114.1033,404292.6018],[469724.7962,402396.804500001],[470917.6999,402082.304500001],[470701.1021,401171.5952],[469557.001,399141.396400001],[467405.9965,397691.601399999],[466817.1012,393817.000499999],[465592.7014,392617.004000001],[464520.0024,392479.903200001],[464482.3967,393122.9991],[461200.2028,392622.102499999],[458861.4995,390420.8026],[456866.9038,390950.1011],[457510.2988,392310.6017],[455884.1997,392276.701400001],[455218.9964,393487.2049],[450717.3002,393153.600400001],[449359.0995,395612.4965],[449879.9977,398047.999299999],[448549.5994,399038.095899999],[446658.1989,397877.698100001],[447266.7009,399603.1042],[445866.4009,400356.1986],[445691.2016,402119.3039],[447754.3963,402439.802200001],[447418.7975,403578.8961],[448107.7961,403928.1962],[446902.599,404580.6994],[446630.3965,406323.3006],[444692.0981,407048.902899999],[443213.9978,409834.895400001],[445931.2978,408972.5022],[447221.1964,409582.197699999],[449208.9982,410855.903100001],[449827.6004,413572.395500001],[451171.8009,413695.500299999],[450841.0008,414112.7009],[451854.2034,414469.998600001],[452336.2014,416582.6039],[453635.4005,415790.9005],[456139.9037,416583.3037],[457270.1037,415478.799799999],[458154.403,417046.301100001],[461831.2963,417334.798599999],[462971.3986,418147.296],[469695.3036,418585.2006],[475119.4985,416283.499500001]]]},"properties":{"LAD22CD":"E08000017","LAD22NM":"Doncaster","BNG_E":459167,"BNG_N":403735,"LONG":-1.10894,"LAT":53.52697,"OBJECTID":257,"GlobalID":"6730088c-816c-4b5e-84f2-004d31714d8b"}},{"type":"Feature","id":258,"geometry":{"type":"Polygon","coordinates":[[[445691.2016,402119.3039],[445866.4009,400356.1986],[447266.7009,399603.1042],[446658.1989,397877.698100001],[448549.5994,399038.095899999],[449879.9977,398047.999299999],[449359.0995,395612.4965],[450717.3002,393153.600400001],[455218.9964,393487.2049],[455884.1997,392276.701400001],[457510.2988,392310.6017],[456866.9038,390950.1011],[458861.4995,390420.8026],[458906.1959,389290.496200001],[457650.5968,388479.0984],[457940.8972,386873.698000001],[456918.6992,386134.7995],[457434.8978,384679.696],[455831.3983,384764.8016],[456231.0034,383448.2985],[457282.9001,383658.6982],[457442.4997,383063.6986],[453416.8189,379685.115599999],[453192.6984,378879.6962],[451358.4032,379342.103800001],[450488.4008,378555.099099999],[447937.7005,379406.995300001],[447020.9981,380018.100299999],[447480.8993,381267.8026],[446779.0962,381960.0045],[445075.0977,381531.897],[444563.9039,384146.7985],[440579.1978,387556.4025],[441606.7963,388717.200300001],[440402.803,391636.104699999],[441268.7982,392106.9999],[439407.3025,391666.2961],[437190.2963,394439.302300001],[436259.0991,397360.0963],[436447.8038,398827.6962],[437182.7026,399520.5978],[438055.599,398943.2031],[441204.2971,402126.401900001],[445691.2016,402119.3039]]]},"properties":{"LAD22CD":"E08000018","LAD22NM":"Rotherham","BNG_E":447542,"BNG_N":388980,"LONG":-1.28651,"LAT":53.39553,"OBJECTID":258,"GlobalID":"7fc67059-2ad9-4f20-9910-402043de2298"}},{"type":"Feature","id":259,"geometry":{"type":"Polygon","coordinates":[[[436259.0991,397360.0963],[437190.2963,394439.302300001],[439407.3025,391666.2961],[441268.7982,392106.9999],[440402.803,391636.104699999],[441606.7963,388717.200300001],[440579.1978,387556.4025],[444563.9039,384146.7985],[445075.0977,381531.897],[444217.1991,380081.702099999],[440951.8004,380251.103599999],[440946.4988,382172.503699999],[439311.0002,382947.6018],[438662.9961,382116.299699999],[437255.0035,382430.4998],[436068.3001,381664.4991],[436385.6196,380685.599300001],[435544.5986,380150.9023],[433264.6001,380185.9023],[430966.3965,378742.6954],[429301.8506,378917.4454],[429295.304,379980.701099999],[428045.4022,379502.298],[427748.0028,380596.4048],[426809.0965,379448.5034],[426128.6976,380707.0031],[425047.1022,380007.0035],[424562.6966,380495.703600001],[425909.7005,382992.5989],[427356.4037,383301.3005],[422485.6008,385575.999399999],[423119.4976,388395.5023],[419712.0035,389842.698100001],[419469.3019,391208.2972],[417392.1979,391606.203299999],[417006.296,396187.102],[415470.7029,396470.200999999],[413272.6025,398268.6962],[414454.1033,398695.7039],[417439.4008,397854.9046],[417880.0004,399385.6964],[419924.0995,400753.8048],[426198.4013,399647.9014],[429985.6959,398066.704],[430702.0021,396204.497],[429901.9014,394473.702500001],[431125.4025,393603.8015],[432427.8006,395070.8016],[432309.4015,396432.2019],[433623.6972,398955.999399999],[436259.0991,397360.0963]]]},"properties":{"LAD22CD":"E08000019","LAD22NM":"Sheffield","BNG_E":430511,"BNG_N":389736,"LONG":-1.54254,"LAT":53.40358,"OBJECTID":259,"GlobalID":"2c14ec5a-e1e6-484a-996f-5b3d74608fd7"}},{"type":"Feature","id":260,"geometry":{"type":"Polygon","coordinates":[[[423225.9826,574536.380100001],[423199.7963,571952.399800001],[426132.8036,571677.898399999],[426477.2988,570215.097100001],[425663.7998,568436.5962],[428337.6979,567974.6984],[428060.4989,566501.100199999],[430227.6967,565516.202099999],[429837.1034,563498.5997],[428666.1976,562806.5977],[426068.5004,564072.895300001],[423146.6981,562795.0011],[419199.8785,564067.3749],[418046.699,563686.196],[416282.6023,565268.8029],[414852.3201,565172.7481],[414564.8015,567752.801899999],[415670.3982,567658.9988],[416066.3013,569970.3971],[419589.63,572091.75],[418379.08,574591.189999999],[422592.3991,576160.0953],[423225.9826,574536.380100001]]]},"properties":{"LAD22CD":"E08000021","LAD22NM":"Newcastle upon Tyne","BNG_E":422287,"BNG_N":569661,"LONG":-1.65297,"LAT":55.021,"OBJECTID":260,"GlobalID":"21256584-aa4c-4e75-870a-8900fab24fea"}},{"type":"Feature","id":261,"geometry":{"type":"Polygon","coordinates":[[[433725.4083,565886.3748],[430227.6967,565516.202099999],[428060.4989,566501.100199999],[428337.6979,567974.6984],[425663.7998,568436.5962],[426477.2988,570215.097100001],[426132.8036,571677.898399999],[423199.7963,571952.399800001],[423225.9826,574536.380100001],[427017.5976,574369.697799999],[427243.603,573540.6951],[428395.76,573376.859999999],[429487.8593,574218.5211],[429971.58,573391.82],[431383.92,573504.65],[431489.57,572723.6],[432822.89,573351.85],[432526.17,574740.84],[434462.2491,575675.295],[434464.4188,575670.9153],[435234.649,573922.077],[435200.3,573549.1],[435601.6876,573088.701099999],[437137.86,569600.76],[438283.5664,569052.2404],[437391.6,569263.6],[437076.9646,568941.4869],[436559.35,568895.26],[434907.0987,566142.3029],[431979.0961,566105.4035],[430946.4022,566972.895099999],[431931.8024,566101.204700001],[430122.8031,565590.5009],[433726.3977,565889.7952],[433725.4083,565886.3748]]]},"properties":{"LAD22CD":"E08000022","LAD22NM":"North Tyneside","BNG_E":431471,"BNG_N":570602,"LONG":-1.50923,"LAT":55.02896,"OBJECTID":261,"GlobalID":"1d79ec7c-56b3-434c-9169-86dd1494f0ca"}},{"type":"Feature","id":262,"geometry":{"type":"Polygon","coordinates":[[[437198.7076,567927.158199999],[437287.89,567782.67],[437693.0173,568113.195599999],[437892.4116,567546.6051],[437784.4,567304.85],[439999.9974,564959.735300001],[441291.59,563592.640000001],[440842.2101,561235.094000001],[440840.5739,561207.7849],[437306.5022,559624.6985],[431419.5038,559773.595899999],[431136.2035,562629.8983],[429837.1034,563498.5997],[430227.6967,565516.202099999],[433725.4083,565886.3748],[433353.0036,564599.004699999],[434882.7016,564892.7006],[433894.597,565846.797499999],[435332.5026,565665.7993],[436835.1179,568133.293],[437198.7076,567927.158199999]]]},"properties":{"LAD22CD":"E08000023","LAD22NM":"South Tyneside","BNG_E":435514,"BNG_N":564057,"LONG":-1.44679,"LAT":54.96988,"OBJECTID":262,"GlobalID":"c8387952-a92e-473e-b098-ec3ebb97d8b7"}},{"type":"Feature","id":263,"geometry":{"type":"Polygon","coordinates":[[[441994.8774,551930.7334],[437250.7985,549558.5],[437816.6983,547802.502599999],[437219.1005,545518.2465],[432839.5012,545053.7994],[433401.3032,546209.398600001],[431943.0982,548600.204299999],[431758.3016,553040.4033],[430141.5029,553813.602],[428216.5037,553526.1042],[428366.0032,554230.4026],[428496.3988,557255.296800001],[427728.6022,558965.7972],[431419.5038,559773.595899999],[437306.5022,559624.6985],[440840.5739,561207.7849],[440768.2098,560000.0163],[440722.05,559229.6],[441185.3251,558955.542099999],[441205.8875,558792.141899999],[440895.4,558859.5],[440426.38,557624.02],[441275.1117,558242.0492],[441363.8018,557537.2698],[441040.2,556129.65],[441979.4334,551953.352],[441994.8774,551930.7334]]]},"properties":{"LAD22CD":"E08000024","LAD22NM":"Sunderland","BNG_E":436470,"BNG_N":551524,"LONG":-1.43344,"LAT":54.85719,"OBJECTID":263,"GlobalID":"2996e803-4b06-421a-9aa9-e86abdf7fc9a"}},{"type":"Feature","id":264,"geometry":{"type":"Polygon","coordinates":[[[414453.9961,298914.695900001],[416122.4007,297041.801999999],[415400.4962,296333.004899999],[416639.803,295308.598200001],[417117.7033,292645.000600001],[418491.3964,291886.897600001],[416801.1012,291508.296],[416823.7009,290591.0985],[413709.7969,289616.6975],[416675.397,289090.3981],[416433.8991,283798.203],[415106.1969,283598.600099999],[413665.1499,284500.0021],[411342.7965,279948.8049],[410674.4024,279148.6039],[409167.601,279233.7995],[409025.9014,278531.9004],[408077.7029,277982.4977],[405969.0037,278830.604900001],[404566.8981,276579.099400001],[403252.9982,277260.4044],[400199.3986,275898.804199999],[397807.696,278256.3993],[401046.1993,279857.401000001],[398941.4001,281632.402899999],[399196.7991,284914.603399999],[401598.1979,285468.105],[402540.9959,287117.003],[403439.4025,287257.8027],[404296.6992,288946.7992],[402606.404,289665.603499999],[402675.9016,292281.704600001],[404883.2034,292604.102299999],[404630.0965,294218.3003],[405646.5971,294385.5024],[408316.9993,296850.696699999],[408730.9013,298576.7027],[409988.0011,300467.9013],[411735.3027,301227.8038],[413878.2023,300165.597899999],[414453.9961,298914.695900001]]]},"properties":{"LAD22CD":"E08000025","LAD22NM":"Birmingham","BNG_E":408150,"BNG_N":287352,"LONG":-1.88141,"LAT":52.48404,"OBJECTID":264,"GlobalID":"eff4d43c-1b28-4277-95df-f8933ccca4c3"}},{"type":"Feature","id":265,"geometry":{"type":"Polygon","coordinates":[[[436855.9013,284269.3981],[439262.0988,281820.698999999],[438322.203,279285.8046],[438786.301,277800.199899999],[436586.1972,275157.996200001],[433826.501,275643.397299999],[433191.9488,274666.397],[432453.5004,275811.4991],[430574.4015,274074.396400001],[429526.0008,276381.396],[427245.7962,276881.2029],[427154.1028,279857.1011],[426312.5501,281177.153200001],[426725.7967,282389.1963],[427611.7037,282514.8003],[427584.1982,284293.701099999],[427962.597,284962.399700001],[429915.1017,284229.6994],[431362.5964,285303.902000001],[433735.2034,283683.2959],[434615.6028,284634.4036],[436855.9013,284269.3981]]]},"properties":{"LAD22CD":"E08000026","LAD22NM":"Coventry","BNG_E":432807,"BNG_N":279689,"LONG":-1.51908,"LAT":52.41423,"OBJECTID":265,"GlobalID":"d222eef8-5879-4674-9df0-5dd23bf92669"}},{"type":"Feature","id":266,"geometry":{"type":"Polygon","coordinates":[[[395082.8022,294671.2006],[394696.6036,291802.3018],[396210.8008,290486.7984],[395728.8028,287694.897600001],[393501.3878,285609.0019],[396086.8033,284892.1998],[398551.5984,286957.0988],[399196.7991,284914.603399999],[398941.4001,281632.402899999],[397581.501,281061.496300001],[397521.6006,282620.100199999],[396304.7038,282592.898],[395848.9993,281049.899700001],[395470.0975,281913.9024],[394329.6983,281581.6974],[393397.1984,283038.500399999],[390847.001,280927.504699999],[388887.9992,281369.3982],[388103.8032,284109.603800001],[388723.9967,285967.901900001],[387067.8031,289522.0046],[390310.701,291029.303099999],[389769.8992,291989.498199999],[390899.4973,292962.1998],[391046.0038,295142.795600001],[391862.3968,295460.4047],[392755.7986,294013.9987],[394687.8968,295466.7029],[395082.8022,294671.2006]]]},"properties":{"LAD22CD":"E08000027","LAD22NM":"Dudley","BNG_E":393191,"BNG_N":288584,"LONG":-2.10171,"LAT":52.49513,"OBJECTID":266,"GlobalID":"8b978702-c2a4-4967-b55f-83b922fd88df"}},{"type":"Feature","id":267,"geometry":{"type":"Polygon","coordinates":[[[405646.5971,294385.5024],[404630.0965,294218.3003],[404883.2034,292604.102299999],[402675.9016,292281.704600001],[402606.404,289665.603499999],[404296.6992,288946.7992],[403439.4025,287257.8027],[402540.9959,287117.003],[401598.1979,285468.105],[399196.7991,284914.603399999],[398551.5984,286957.0988],[396086.8033,284892.1998],[393501.3878,285609.0019],[395728.8028,287694.897600001],[396210.8008,290486.7984],[394696.6036,291802.3018],[395082.8022,294671.2006],[396639.8985,294986.8003],[399352.5978,296802.8005],[401758.0037,295300.8004],[402527.3009,296153.896199999],[403414.0984,295443.1996],[404575.9017,295800.1974],[405646.5971,294385.5024]]]},"properties":{"LAD22CD":"E08000028","LAD22NM":"Sandwell","BNG_E":399573,"BNG_N":290764,"LONG":-2.00771,"LAT":52.51477,"OBJECTID":267,"GlobalID":"8e3c41cd-9e8e-4ce3-8fd8-ea03d8787de8"}},{"type":"Feature","id":268,"geometry":{"type":"Polygon","coordinates":[[[427584.1982,284293.701099999],[427611.7037,282514.8003],[426725.7967,282389.1963],[426312.5501,281177.153200001],[427154.1028,279857.1011],[427245.7962,276881.2029],[425800.0989,274300.001800001],[424040.8997,273243.204299999],[423186.9999,274232.101199999],[421584.0034,273948.9023],[420947.0972,272591.800799999],[419265.3026,273110.5023],[419126.9999,274982.0966],[418140.7999,274719.8016],[417384.497,273014.299799999],[415129.8026,274075.2961],[415371.9023,272232.2037],[413183.3003,274299.801899999],[408809.5015,274400.403100001],[410608.6975,277983.7973],[409025.9014,278531.9004],[409167.601,279233.7995],[410674.4024,279148.6039],[411342.7965,279948.8049],[413665.1499,284500.0021],[415106.1969,283598.600099999],[416433.8991,283798.203],[416675.397,289090.3981],[413709.7969,289616.6975],[416823.7009,290591.0985],[422044.4983,282089.801999999],[422763.4017,281994.599300001],[423051.0966,282977.8978],[424471.498,282878.396299999],[425611.6003,285130.601600001],[427584.1982,284293.701099999]]]},"properties":{"LAD22CD":"E08000029","LAD22NM":"Solihull","BNG_E":419434,"BNG_N":281483,"LONG":-1.71558,"LAT":52.431,"OBJECTID":268,"GlobalID":"c33cc63c-775c-4082-b381-b1d24e88bdc9"}},{"type":"Feature","id":269,"geometry":{"type":"Polygon","coordinates":[[[408730.9013,298576.7027],[408316.9993,296850.696699999],[405646.5971,294385.5024],[404575.9017,295800.1974],[403414.0984,295443.1996],[402527.3009,296153.896199999],[401758.0037,295300.8004],[399352.5978,296802.8005],[396639.8985,294986.8003],[395896.598,295601.404300001],[396706.5021,297146.0022],[394823.8991,298696.0985],[396398.6975,300339.4981],[396663.1001,302527.901699999],[398057.1998,302130.195499999],[398102.1024,303100.097899999],[401006.7962,304738.898800001],[402738.1023,305007.102],[403169.3025,307212.8006],[403789.9001,306507.702500001],[404589.8029,307099.2031],[406125.1982,306532.4954],[405643.2991,305797.095899999],[406519.0977,305054.2985],[405782.5005,304172.200999999],[407809.3014,301964.203],[407393.7008,300154.900900001],[408730.9013,298576.7027]]]},"properties":{"LAD22CD":"E08000030","LAD22NM":"Walsall","BNG_E":402098,"BNG_N":300804,"LONG":-1.97044,"LAT":52.60503,"OBJECTID":269,"GlobalID":"c4882580-eb9d-467d-8766-260ae86fae7a"}},{"type":"Feature","id":270,"geometry":{"type":"Polygon","coordinates":[[[396663.1001,302527.901699999],[396398.6975,300339.4981],[394823.8991,298696.0985],[396706.5021,297146.0022],[395896.598,295601.404300001],[396639.8985,294986.8003],[395082.8022,294671.2006],[394687.8968,295466.7029],[392755.7986,294013.9987],[391862.3968,295460.4047],[391046.0038,295142.795600001],[388195.1997,295186.802999999],[387875.2007,297423.2029],[386092.2969,298615.4016],[387279.7011,299012.097999999],[386796.5983,300997.899599999],[388641.9996,301296.1043],[388699.4017,302480.7951],[391188.0002,304437.0952],[393244.3515,304148.097899999],[394611.8031,301571.195499999],[396663.1001,302527.901699999]]]},"properties":{"LAD22CD":"E08000031","LAD22NM":"Wolverhampton","BNG_E":391463,"BNG_N":300016,"LONG":-2.12746,"LAT":52.59788,"OBJECTID":270,"GlobalID":"3bdce8d1-ef3e-4b6f-aa64-270c4c43a802"}},{"type":"Feature","id":271,"geometry":{"type":"Polygon","coordinates":[[[408046.0006,450914.0966],[409281.5972,448511.204399999],[410852.8008,448376.902899999],[410096.201,449415.795499999],[412893.1978,449227.8993],[414810.3971,447282.596100001],[416803.2037,447457.8959],[418017.7012,446037.502499999],[417706.2028,444450.3968],[418692.9964,444044.603],[418145.4996,443311.2029],[416113.1992,443194.396299999],[414064.2026,444544.5998],[413216.2014,443325.118899999],[415847.8979,440846.1985],[418821.001,441150.4014],[420153.1967,440187.1971],[419074.8994,431897.200099999],[421031.8976,432277.701199999],[421564.7017,431566.9047],[423794.0013,431541.901799999],[423196.8033,430260.998500001],[421089.5966,428946.104900001],[418923.6025,429603.296700001],[417655.7513,427869.802999999],[416767.8983,427854.5973],[416860.1028,426483.6997],[415870.0029,426497.595699999],[415267.6023,425561.8036],[412664.3974,429796.3015],[411447.0965,429721.103],[409629.8026,428000.895400001],[408494.4,428736.7048],[408440.2959,431378.998500001],[404830.097,432362.696900001],[401359.5034,432224.296499999],[400969.5038,433314.304500001],[396065.9021,436596.505000001],[397009.203,437026.901799999],[397063.002,439322.3047],[398667.5981,441702.103499999],[401257.8006,441404.298699999],[401450.1001,444994.801000001],[403214.3041,445262.804300001],[401616.8977,447808.195699999],[402522.0982,448585.903000001],[402317.3528,450605.654899999],[407069.0021,451022.295600001],[407732.6965,451902.8036],[408046.0006,450914.0966]]]},"properties":{"LAD22CD":"E08000032","LAD22NM":"Bradford","BNG_E":408395,"BNG_N":438626,"LONG":-1.87389,"LAT":53.84382,"OBJECTID":271,"GlobalID":"1c646bd3-3b47-4ea9-8e18-47ea21d34b59"}},{"type":"Feature","id":272,"geometry":{"type":"Polygon","coordinates":[[[415267.6023,425561.8036],[416353.0975,425521.7951],[417530.5005,424122.195699999],[417847.1026,420466.202199999],[416783.399,422044.7004],[411611.7009,419321.399900001],[409763.9992,419571.0984],[410433.9022,418858.702400001],[407065.3,416549.5034],[404450.1975,416871.0013],[401900.0991,414358.7005],[399470.8979,413357.697000001],[398573.4972,413253.2969],[398323.8039,414179.901699999],[396713.0981,420803.2959],[393959.2971,419300.695900001],[392295.9962,419423.800799999],[391239.2021,421037.698799999],[390700.5029,420178.904200001],[390432.596,420649.5998],[388662.604,425190.799799999],[391447.8021,428359.402799999],[391111.7994,431537.6031],[391874.3026,432420.8002],[391643.1029,433642.400599999],[392703.4013,434383.498400001],[396065.9021,436596.505000001],[400969.5038,433314.304500001],[401359.5034,432224.296499999],[404830.097,432362.696900001],[408440.2959,431378.998500001],[408494.4,428736.7048],[409629.8026,428000.895400001],[411447.0965,429721.103],[412664.3974,429796.3015],[415267.6023,425561.8036]]]},"properties":{"LAD22CD":"E08000033","LAD22NM":"Calderdale","BNG_E":402617,"BNG_N":424896,"LONG":-1.96182,"LAT":53.72048,"OBJECTID":272,"GlobalID":"0a85ab97-02e9-414f-8194-315e682df1b9"}},{"type":"Feature","id":273,"geometry":{"type":"Polygon","coordinates":[[[421089.5966,428946.104900001],[422623.5984,427728.103499999],[423978.4021,427987.499299999],[424952.4984,424745.7972],[427009.3031,424755.904300001],[428408.6961,423414.2983],[426613.804,422666.9023],[426346.3012,421818.795],[427046.7027,421507.1043],[425515.298,420190.901000001],[427150.4998,418317.6972],[424889.5968,417524.1044],[425649.0989,414293.899],[427460.8026,412368.200200001],[427368.6971,410844.7963],[426460.6025,410202.4002],[426835.0025,409006.002699999],[425556.5975,407445.8992],[423397.6035,407342.0989],[421995.9019,406337.6964],[418434.4973,407067.897399999],[417224.6994,404965.499199999],[415217.8021,404155.6011],[413068.9001,404500.9022],[411883.9034,402726.3002],[410585.1991,402591.6987],[408481.1997,404870.5964],[407115.9989,404109.804199999],[406087.1967,404640.102399999],[405869.0983,406114.3004],[403891.0999,407224.602600001],[399470.8979,413357.697000001],[401900.0991,414358.7005],[404450.1975,416871.0013],[407065.3,416549.5034],[410433.9022,418858.702400001],[409763.9992,419571.0984],[411611.7009,419321.399900001],[416783.399,422044.7004],[417847.1026,420466.202199999],[417530.5005,424122.195699999],[416353.0975,425521.7951],[415267.6023,425561.8036],[415870.0029,426497.595699999],[416860.1028,426483.6997],[416767.8983,427854.5973],[417655.7513,427869.802999999],[418923.6025,429603.296700001],[421089.5966,428946.104900001]]]},"properties":{"LAD22CD":"E08000034","LAD22NM":"Kirklees","BNG_E":414586,"BNG_N":416223,"LONG":-1.78085,"LAT":53.64233,"OBJECTID":273,"GlobalID":"85960799-5727-491f-9089-a11f676ae9d1"}},{"type":"Feature","id":274,"geometry":{"type":"Polygon","coordinates":[[[445186.8018,445609.494999999],[444629.6995,445131.8018],[445302.8015,441228.199200001],[442656.9037,440250.199100001],[444411.4033,438449.804500001],[443790.7975,437683.603800001],[445946.5017,435806.700999999],[445213.4003,435023.0953],[445313.3961,431908.397],[446877.3031,429880.6971],[446585.5021,429017.5041],[445444.6001,429053.7041],[445252.103,427693.5031],[446132.2959,427484.4033],[439710.9021,424931.704],[436837.3005,425900.5966],[433858.9041,425825.998],[433372.9979,425216.3025],[432399.5035,426030.7994],[429192.7025,422593.4033],[428408.6961,423414.2983],[427009.3031,424755.904300001],[424952.4984,424745.7972],[423978.4021,427987.499299999],[422623.5984,427728.103499999],[421089.5966,428946.104900001],[423196.8033,430260.998500001],[423794.0013,431541.901799999],[421564.7017,431566.9047],[421031.8976,432277.701199999],[419074.8994,431897.200099999],[420153.1967,440187.1971],[418821.001,441150.4014],[415847.8979,440846.1985],[413216.2014,443325.118899999],[414064.2026,444544.5998],[416113.1992,443194.396299999],[418145.4996,443311.2029],[418692.9964,444044.603],[417706.2028,444450.3968],[418017.7012,446037.502499999],[418626.5989,445855.804500001],[419336.2019,447036.796499999],[420815.2999,446092.5967],[422755.0989,446312.603800001],[422982.8028,445554.8007],[425029.8041,445312.899900001],[426375.5959,446030.3046],[427202.6992,445086.104800001],[427451.1971,445982.7982],[429543.4968,445288.596899999],[429738.3029,446177.002599999],[433020.2,446687.796399999],[435397.0037,445671.2973],[437345.0973,446219.4004],[437356.5002,448047.7971],[439056.0959,448129.9036],[439667.797,449769.1043],[443391.2006,450175.2981],[443115.0983,449462.1022],[445598.7003,448920.6972],[445476.5992,447770.496400001],[446446.004,448110.099199999],[445589.9028,447481.8991],[446253.3994,447509.301200001],[446046.7039,445927.604],[445186.8018,445609.494999999]]]},"properties":{"LAD22CD":"E08000035","LAD22NM":"Leeds","BNG_E":432528,"BNG_N":436384,"LONG":-1.50736,"LAT":53.82273,"OBJECTID":274,"GlobalID":"5c3d52e8-54de-4e50-b078-37f9dbe628ce"}},{"type":"Feature","id":275,"geometry":{"type":"Polygon","coordinates":[[[450841.0008,414112.7009],[451171.8009,413695.500299999],[449827.6004,413572.395500001],[449208.9982,410855.903100001],[447221.1964,409582.197699999],[445931.2978,408972.5022],[443213.9978,409834.895400001],[441339.7964,412391.8035],[439781.9004,411509.796],[436641.8472,413049.395300001],[434268.898,411043.399499999],[433507.1038,411963.796],[433416.202,411316.001399999],[431951.302,411566.899599999],[431154.6972,410828.401000001],[429180.9038,412420.495300001],[427460.8026,412368.200200001],[425649.0989,414293.899],[424889.5968,417524.1044],[427150.4998,418317.6972],[425515.298,420190.901000001],[427046.7027,421507.1043],[426346.3012,421818.795],[426613.804,422666.9023],[428408.6961,423414.2983],[429192.7025,422593.4033],[432399.5035,426030.7994],[433372.9979,425216.3025],[433858.9041,425825.998],[436837.3005,425900.5966],[439710.9021,424931.704],[446132.2959,427484.4033],[448361.9006,424530.9987],[450944.4022,424549.9033],[451150.6029,423993.3026],[451589.1989,424502.796700001],[452991.8982,422995.498199999],[452986.2008,422345.1044],[449991.2978,422038.802100001],[449315.7965,416800.8014],[450841.0008,414112.7009]]]},"properties":{"LAD22CD":"E08000036","LAD22NM":"Wakefield","BNG_E":438366,"BNG_N":418235,"LONG":-1.42092,"LAT":53.65922,"OBJECTID":275,"GlobalID":"11f2a1aa-3940-41c5-ad50-2db5a6351f55"}},{"type":"Feature","id":276,"geometry":{"type":"Polygon","coordinates":[[[414852.3201,565172.7481],[416282.6023,565268.8029],[418046.699,563686.196],[419199.8785,564067.3749],[423146.6981,562795.0011],[426068.5004,564072.895300001],[428666.1976,562806.5977],[429837.1034,563498.5997],[431136.2035,562629.8983],[431419.5038,559773.595899999],[427728.6022,558965.7972],[428496.3988,557255.296800001],[428366.0032,554230.4026],[427053.7027,553747.5009],[426123.396,556440.5],[422519.6035,553895.498500001],[422591.5993,555416.403200001],[420904.8,555976.9027],[420950.0984,557252.797499999],[419869.2038,556473.1007],[419420.9034,557189.5956],[417736.3962,557154.4956],[417008.0027,558240.104900001],[414926.5041,556913.5046],[414096.2017,557447.1019],[413248.7991,556554.497400001],[411599.2581,556798.303099999],[409539.5027,558088.2983],[410278.2025,559459.9957],[411189.04,559524.58],[410753.48,562087.585000001],[412080.66,564645.77],[413632.93,565538.43],[414852.3201,565172.7481]]]},"properties":{"LAD22CD":"E08000037","LAD22NM":"Gateshead","BNG_E":420158,"BNG_N":559652,"LONG":-1.68696,"LAT":54.93115,"OBJECTID":276,"GlobalID":"db9d479b-57a1-46b1-a18f-fe8595141781"}},{"type":"Feature","id":277,"geometry":{"type":"Polygon","coordinates":[[[533333.5119,180406.662799999],[531312.717,180688.2982],[531155.4163,180672.9507],[531129.699,181291.695],[531554.732,181659.307700001],[532946.1028,181894.9023],[533404.5639,182037.0308],[533333.5119,180406.662799999]]]},"properties":{"LAD22CD":"E09000001","LAD22NM":"City of London","BNG_E":532381,"BNG_N":181359,"LONG":-0.09353,"LAT":51.51565,"OBJECTID":277,"GlobalID":"ae6fade9-1e09-4af6-af75-10f827c46206"}},{"type":"Feature","id":278,"geometry":{"type":"Polygon","coordinates":[[[549991.8881,181417.593900001],[549894.9943,181468.579500001],[547660.05,182215.800000001],[545681.992,181645.736300001],[545680.432,181644.569700001],[545263.256,182828.967],[543874.4831,183187.452500001],[543522.4666,184859.925799999],[545263.0405,185072.7335],[546985.5259,186403.529899999],[547817.3825,188036.494100001],[547409.4911,189682.7479],[548880.9208,191088.302200001],[548875.412,187730.202],[549951.904,186961.801999999],[551552.699,187444.004000001],[551944.913,186024.392000001],[549991.8881,181417.593900001]]]},"properties":{"LAD22CD":"E09000002","LAD22NM":"Barking and Dagenham","BNG_E":547757,"BNG_N":185111,"LONG":0.129479,"LAT":51.54555,"OBJECTID":278,"GlobalID":"a945ff01-be4c-4ca3-9fcc-35ff7349750e"}},{"type":"Feature","id":279,"geometry":{"type":"Polygon","coordinates":[[[525814.1,198211.5019],[525568.6032,197563.597200001],[527740.204,196805.404200001],[529579.9988,194263.402000001],[528562.4016,192370.003900001],[528975.5039,191791.5999],[528139.3021,190352.251499999],[527744.7968,191173.896199999],[527768.8515,189091.3025],[526830.3039,187535.398],[523951.6972,185545.497300001],[522524.197,187379.502499999],[521301.7017,187159.295600001],[521462.703,188731.895300001],[520113.1031,190480.811899999],[517435.4449,194421.011299999],[520681.7968,195107.4004],[521110.9028,196700.5044],[523755.9019,197353.897399999],[524339.2977,198344.4038],[525206.002,197672.5962],[525814.1,198211.5019]]]},"properties":{"LAD22CD":"E09000003","LAD22NM":"Barnet","BNG_E":523472,"BNG_N":191753,"LONG":-0.21821,"LAT":51.61108,"OBJECTID":279,"GlobalID":"bf5a3129-8ed8-4c9c-ab21-4b4365aa0c04"}},{"type":"Feature","id":280,"geometry":{"type":"Polygon","coordinates":[[[550181.0542,180645.8092],[550636.7642,180053.7861],[550665.9697,179999.9748],[551724.66,178049.33],[554087.2996,178055.750399999],[554339.8705,177877.124299999],[553184.3966,175118.4022],[551102.1971,173822.7031],[550557.8994,172175.004799999],[549962.8039,172412.4968],[549830.7015,169941.5041],[549549.0593,169902.1479],[546620.5705,170466.3302],[544363.2734,172374.147700001],[545165.6731,173654.431],[544736.4521,176241.581900001],[545815.2761,177252.9354],[547611.7071,177459.9791],[547118.5539,181281.932],[547225.8334,181299.9267],[550181.0542,180645.8092]]]},"properties":{"LAD22CD":"E09000004","LAD22NM":"Bexley","BNG_E":549202,"BNG_N":175434,"LONG":0.146212,"LAT":51.45822,"OBJECTID":280,"GlobalID":"21ea5782-01f7-4723-9517-6137ec11aa2d"}},{"type":"Feature","id":281,"geometry":{"type":"Polygon","coordinates":[[[523951.6972,185545.497300001],[525530,183481.598099999],[525200.9971,182512.595799999],[524580.202,183087.401000001],[523850.3983,182509.996099999],[522978.5989,182758.595100001],[521736.9998,182995.6972],[519115.4001,182506.997099999],[519212.6011,183593.6961],[517494.8003,182928.996400001],[517445.701,184353.498600001],[515484.9028,185501.2072],[516382.601,186976.1086],[516046.3015,187982.910499999],[517537.198,188938.706800001],[519101.4017,188756.009099999],[518519.4982,189686.412900001],[520113.1031,190480.811899999],[521462.703,188731.895300001],[521301.7017,187159.295600001],[522524.197,187379.502499999],[523951.6972,185545.497300001]]]},"properties":{"LAD22CD":"E09000005","LAD22NM":"Brent","BNG_E":519615,"BNG_N":186468,"LONG":-0.27568,"LAT":51.56441,"OBJECTID":281,"GlobalID":"1887fcde-e3d9-45c1-8300-d22549143ca9"}},{"type":"Feature","id":282,"geometry":{"type":"Polygon","coordinates":[[[544363.2734,172374.147700001],[546620.5705,170466.3302],[549549.0593,169902.1479],[550541.2031,168157.404899999],[549521.5033,168162.0033],[549897.198,165601.2963],[548928.898,162732.897299999],[547640.5,162692.4991],[547648.4979,161080.8002],[545401.397,159498.5032],[545520.2001,156949.2031],[542503.0518,156819.2502],[541795.6999,158451.2031],[540596.2001,156667.2039],[539596.2969,160796.301999999],[537419.6002,166327.651799999],[536721.7966,166046.418400001],[536717.303,167320.004000001],[534466.5,168932.703],[533699.172,170735.727499999],[533715.6518,170817.3564],[534003.6515,171442.104499999],[537043.197,171470.796],[538449.104,170158.702],[540901.902,171943.901000001],[541671.397,171228.096000001],[541137.2,173365.504000001],[543441.496,171429.998],[544363.2734,172374.147700001]]]},"properties":{"LAD22CD":"E09000006","LAD22NM":"Bromley","BNG_E":542036,"BNG_N":165708,"LONG":0.039246,"LAT":51.37267,"OBJECTID":282,"GlobalID":"9e7f1282-7a1a-473a-ba19-e2a5f95221e1"}},{"type":"Feature","id":283,"geometry":{"type":"Polygon","coordinates":[[[528840.202,187217.799000001],[530326.103,182983.301000001],[531554.732,181659.307700001],[531129.699,181291.695],[529903.098,181053.802999999],[528213.9979,183685.5],[525530,183481.598099999],[523951.6972,185545.497300001],[526830.3039,187535.398],[528840.202,187217.799000001]]]},"properties":{"LAD22CD":"E09000007","LAD22NM":"Camden","BNG_E":527492,"BNG_N":184284,"LONG":-0.16289,"LAT":51.54306,"OBJECTID":283,"GlobalID":"2da0cbf5-4cb3-42dd-b010-030c2cf76738"}},{"type":"Feature","id":284,"geometry":{"type":"Polygon","coordinates":[[[533699.172,170735.727499999],[534466.5,168932.703],[536717.303,167320.004000001],[536721.7966,166046.418400001],[537419.6002,166327.651799999],[539596.2969,160796.301999999],[536768.3975,161784.499],[535882.004,159951.9036],[533965.5962,159603.303400001],[533165.2975,157546.5021],[530898.1036,155850.797499999],[529950.5977,157386.9978],[528694.1988,157410.201099999],[528552.3012,159658.097899999],[529312.1,159899.049000001],[529328.723,161967.737299999],[531245.798,162424.196],[529902.199,167411.7981],[530594.1339,168178.0518],[530302.6215,169807.1359],[531321.2675,171048.669399999],[533699.172,170735.727499999]]]},"properties":{"LAD22CD":"E09000008","LAD22NM":"Croydon","BNG_E":533922,"BNG_N":164745,"LONG":-0.07761,"LAT":51.36598,"OBJECTID":284,"GlobalID":"dee8896b-d367-4f0b-abee-f9b7f5215517"}},{"type":"Feature","id":285,"geometry":{"type":"Polygon","coordinates":[[[521736.9998,182995.6972],[521350.496,179497.898800001],[520357.4031,178643.802999999],[519424.2022,179613.6953],[518506.7991,179448.902799999],[517290.801,178353.396],[514581.103,179085.896299999],[513132.8991,178092.400900001],[510678.5011,179064.602700001],[512737.5733,182349.6522],[509706.4003,183554.7972],[511381.4008,183847.9033],[511129.2999,184436.9047],[512561.7978,185257.9068],[515484.9028,185501.2072],[517445.701,184353.498600001],[517494.8003,182928.996400001],[519212.6011,183593.6961],[519115.4001,182506.997099999],[521736.9998,182995.6972]]]},"properties":{"LAD22CD":"E09000009","LAD22NM":"Ealing","BNG_E":517057,"BNG_N":181960,"LONG":-0.31407,"LAT":51.52443,"OBJECTID":285,"GlobalID":"84b3e385-5af0-44da-baf1-694e1adf902c"}},{"type":"Feature","id":286,"geometry":{"type":"Polygon","coordinates":[[[537543.796,199883.1033],[537625.1501,196030.0962],[535728.3588,191460.544],[528975.5039,191791.5999],[528562.4016,192370.003900001],[529579.9988,194263.402000001],[527740.204,196805.404200001],[525568.6032,197563.597200001],[525814.1,198211.5019],[527045.2031,200413.401699999],[531023.5029,200933.6028],[537543.796,199883.1033]]]},"properties":{"LAD22CD":"E09000010","LAD22NM":"Enfield","BNG_E":532829,"BNG_N":196197,"LONG":-0.08147,"LAT":51.64888,"OBJECTID":286,"GlobalID":"812840b0-c103-4ebe-ae01-7c81b5f66cc8"}},{"type":"Feature","id":287,"geometry":{"type":"MultiPolygon","coordinates":[[[[537791.5004,177580.465500001],[537625.234,177325.76],[537437.387,177936.227299999],[537791.5004,177580.465500001]]],[[[538368.2182,178339.5065],[538364.45,178282.699999999],[538216.9319,178330.589199999],[538368.2182,178339.5065]]],[[[547118.5539,181281.932],[547611.7071,177459.9791],[545815.2761,177252.9354],[544736.4521,176241.581900001],[545165.6731,173654.431],[544363.2734,172374.147700001],[543441.496,171429.998],[541137.2,173365.504000001],[539733.4642,175295.377599999],[540245.032,176915.818],[537968.903,176208.9],[537656.5784,177223.896500001],[539089.75,178517.85],[539015.7515,180000.0046],[539002.5139,180265.1482],[539043.7198,180280.2751],[539391.5849,180000.0009],[539999.9916,179509.808900001],[540433.85,179160.25],[542964.23,179241.57],[544252.69,179484.91],[544608.8892,179999.976500001],[545195.7787,180848.6228],[545382.2013,180990.682],[547118.5539,181281.932]]]]},"properties":{"LAD22CD":"E09000011","LAD22NM":"Greenwich","BNG_E":542507,"BNG_N":175879,"LONG":0.050093,"LAT":51.46394,"OBJECTID":287,"GlobalID":"10656971-4ed5-4c92-b7c9-d278cbe0436e"}},{"type":"Feature","id":288,"geometry":{"type":"Polygon","coordinates":[[[537572.901,185494.702099999],[537638.7001,184578.684900001],[534480.208,183626.3287],[533404.5639,182037.0308],[532946.1028,181894.9023],[532089.804,183279.995999999],[533460.8001,184979.698999999],[531487.4981,186802.298],[531919.197,187797.302999999],[534444.0981,188327.4011],[535464.202,186662.2981],[536755.197,186529.3961],[537572.901,185494.702099999]]]},"properties":{"LAD22CD":"E09000012","LAD22NM":"Hackney","BNG_E":534560,"BNG_N":185787,"LONG":-0.06045,"LAT":51.55492,"OBJECTID":288,"GlobalID":"43ff7612-52b7-4bd5-b2e5-262cfee9d7c1"}},{"type":"Feature","id":289,"geometry":{"type":"Polygon","coordinates":[[[522978.5989,182758.595100001],[524055.6003,179493.0988],[526640.7169,176972.923900001],[525802.598,175475.300000001],[523604.803,176320.698000001],[522968.696,178058.301000001],[522055.597,178014.703],[521350.496,179497.898800001],[521736.9998,182995.6972],[522978.5989,182758.595100001]]]},"properties":{"LAD22CD":"E09000013","LAD22NM":"Hammersmith and Fulham","BNG_E":523867,"BNG_N":177993,"LONG":-0.21735,"LAT":51.48733,"OBJECTID":289,"GlobalID":"2b14192d-6cb5-4382-8f20-ac92f8eb9e29"}},{"type":"Feature","id":290,"geometry":{"type":"Polygon","coordinates":[[[535728.3588,191460.544],[534444.0981,188327.4011],[531919.197,187797.302999999],[531487.4981,186802.298],[530407.3,187968.704],[528840.202,187217.799000001],[526830.3039,187535.398],[527768.8515,189091.3025],[527744.7968,191173.896199999],[528139.3021,190352.251499999],[528975.5039,191791.5999],[535728.3588,191460.544]]]},"properties":{"LAD22CD":"E09000014","LAD22NM":"Haringey","BNG_E":531262,"BNG_N":189349,"LONG":-0.10667,"LAT":51.58771,"OBJECTID":290,"GlobalID":"8ad51542-4466-45f1-b2ef-7d7f11af41ba"}},{"type":"Feature","id":291,"geometry":{"type":"Polygon","coordinates":[[[517435.4449,194421.011299999],[520113.1031,190480.811899999],[518519.4982,189686.412900001],[519101.4017,188756.009099999],[517537.198,188938.706800001],[516046.3015,187982.910499999],[516382.601,186976.1086],[515484.9028,185501.2072],[512561.7978,185257.9068],[510599.8031,191689.505999999],[513442.4033,192900.7093],[516579.3029,194866.9066],[517435.4449,194421.011299999]]]},"properties":{"LAD22CD":"E09000015","LAD22NM":"Harrow","BNG_E":515356,"BNG_N":189736,"LONG":-0.33603,"LAT":51.59467,"OBJECTID":291,"GlobalID":"05f5033c-6506-44a2-b261-89eabdec0316"}},{"type":"Feature","id":292,"geometry":{"type":"MultiPolygon","coordinates":[[[[550333.8,180612],[550636.7642,180053.7861],[550181.0542,180645.8092],[550333.8,180612]]],[[[557304.9979,191410.3989],[558841.3,187531.999],[560412.2973,187750.496200001],[561956.6962,184981.8989],[557223.3962,183903.297800001],[557157.098,182311.803099999],[556473.7969,182292.4989],[556099.1,183481.698100001],[555313.1971,182418.1029],[555681.0011,181163.402000001],[554622.9001,180976.045499999],[554880.6033,180182.402899999],[553794.5971,179779.198100001],[553651.631,179075.199899999],[553565.4981,179127.662799999],[551982.5,178817.199999999],[551555.3267,179999.9848],[551290.05,180734.5],[549991.8881,181417.593900001],[551944.913,186024.392000001],[551552.699,187444.004000001],[549951.904,186961.801999999],[548875.412,187730.202],[548880.9208,191088.302200001],[548106.8982,193800.904300001],[552402.402,194083.103700001],[554024.9971,194889.3029],[556018.0013,193395.700200001],[556906.7038,192371.503799999],[556199.096,191601.403999999],[557304.9979,191410.3989]]]]},"properties":{"LAD22CD":"E09000016","LAD22NM":"Havering","BNG_E":555032,"BNG_N":187514,"LONG":0.235368,"LAT":51.56519,"OBJECTID":292,"GlobalID":"682eeef7-688d-410d-8c33-b2dea7fd40a9"}},{"type":"Feature","id":293,"geometry":{"type":"Polygon","coordinates":[[[510599.8031,191689.505999999],[512561.7978,185257.9068],[511129.2999,184436.9047],[511381.4008,183847.9033],[509706.4003,183554.7972],[512737.5733,182349.6522],[510678.5011,179064.602700001],[510028.5019,177132.2959],[510455.497,175742.903100001],[508213.2031,173846.1962],[507187.4237,174163.0966],[503611.1976,175520.3971],[504919.2023,178392.095000001],[505366.9998,179778.6982],[504439.8015,183254.903200001],[505700.3971,185577.6983],[503946.1037,190047.398800001],[504132.4998,193616.1973],[506926.8005,191511.6997],[508054.6012,192401.095100001],[510599.8031,191689.505999999]]]},"properties":{"LAD22CD":"E09000017","LAD22NM":"Hillingdon","BNG_E":508166,"BNG_N":183120,"LONG":-0.44182,"LAT":51.53663,"OBJECTID":293,"GlobalID":"b8db459d-e9e6-4710-b3b7-3a942c46dd24"}},{"type":"Feature","id":294,"geometry":{"type":"Polygon","coordinates":[[[521350.496,179497.898800001],[522055.597,178014.703],[521100.497,176124.903999999],[518702.199,177871.804],[516339.197,174445.404999999],[513132.998,174421.102],[512127.801,173504.403999999],[513602.604,172670.302999999],[511946.204,170484.3989],[507381.3011,172142.0041],[507187.4237,174163.0966],[508213.2031,173846.1962],[510455.497,175742.903100001],[510028.5019,177132.2959],[510678.5011,179064.602700001],[513132.8991,178092.400900001],[514581.103,179085.896299999],[517290.801,178353.396],[518506.7991,179448.902799999],[519424.2022,179613.6953],[520357.4031,178643.802999999],[521350.496,179497.898800001]]]},"properties":{"LAD22CD":"E09000018","LAD22NM":"Hounslow","BNG_E":512742,"BNG_N":174965,"LONG":-0.37847,"LAT":51.46243,"OBJECTID":294,"GlobalID":"cb24fd81-59b0-4129-9ca9-4246bccaa13a"}},{"type":"Feature","id":295,"geometry":{"type":"Polygon","coordinates":[[[531487.4981,186802.298],[533460.8001,184979.698999999],[532089.804,183279.995999999],[532946.1028,181894.9023],[531554.732,181659.307700001],[530326.103,182983.301000001],[528840.202,187217.799000001],[530407.3,187968.704],[531487.4981,186802.298]]]},"properties":{"LAD22CD":"E09000019","LAD22NM":"Islington","BNG_E":531158,"BNG_N":184647,"LONG":-0.10992,"LAT":51.54548,"OBJECTID":295,"GlobalID":"6f0f3d08-5716-4112-8d3f-514d6832e347"}},{"type":"Feature","id":296,"geometry":{"type":"Polygon","coordinates":[[[523850.3983,182509.996099999],[526462.6978,179219.498199999],[527914.5995,179753.295],[528563.4999,177801.343499999],[526640.7169,176972.923900001],[524055.6003,179493.0988],[522978.5989,182758.595100001],[523850.3983,182509.996099999]]]},"properties":{"LAD22CD":"E09000020","LAD22NM":"Kensington and Chelsea","BNG_E":525757,"BNG_N":179053,"LONG":-0.18976,"LAT":51.49644,"OBJECTID":296,"GlobalID":"564a6ee2-ef11-4a78-b34e-f82628e284f9"}},{"type":"Feature","id":297,"geometry":{"type":"Polygon","coordinates":[[[521672.103,171846.598999999],[522578.941,167053.681],[522231.1012,166014.998],[521110.5979,165939.999299999],[519460.2002,164193.1993],[518090.2999,160916.397299999],[516401.596,160201.801999999],[516362.5969,162360.5041],[517897.4971,165729.4999],[517139.496,167412.498],[517739.003,168375.902000001],[517530.6,171709.898],[518931.898,171384.101],[519234.302,170410],[521450.599,172367],[521672.103,171846.598999999]]]},"properties":{"LAD22CD":"E09000021","LAD22NM":"Kingston upon Thames","BNG_E":519508,"BNG_N":167389,"LONG":-0.28367,"LAT":51.39296,"OBJECTID":297,"GlobalID":"14814913-e44a-4906-afef-12f99079208b"}},{"type":"Feature","id":298,"geometry":{"type":"Polygon","coordinates":[[[533715.6518,170817.3564],[533699.172,170735.727499999],[531321.2675,171048.669399999],[530302.6215,169807.1359],[528886.8261,169832.3477],[529402.903,170555.198100001],[529651.5,173093.702],[529115.7612,173061.3522],[528519.296,175722.098999999],[529972.3584,177985.2831],[531155.4163,180672.9507],[531312.717,180688.2982],[531463.1456,177402.605799999],[532767.2669,175851.1938],[532020.1361,174258.1568],[533715.6518,170817.3564]]]},"properties":{"LAD22CD":"E09000022","LAD22NM":"Lambeth","BNG_E":531117,"BNG_N":175629,"LONG":-0.11386,"LAT":51.46445,"OBJECTID":298,"GlobalID":"2ff9b33e-8af0-4f82-9365-0541bb418aaf"}},{"type":"Feature","id":299,"geometry":{"type":"Polygon","coordinates":[[[537437.387,177936.227299999],[537625.234,177325.76],[537418.3142,177008.7772],[537656.5784,177223.896500001],[537968.903,176208.9],[540245.032,176915.818],[539733.4642,175295.377599999],[541137.2,173365.504000001],[541671.397,171228.096000001],[540901.902,171943.901000001],[538449.104,170158.702],[537043.197,171470.796],[534003.6515,171442.104499999],[534782.401,173871.198999999],[536163.103,174708.499],[535208.5657,178349.457900001],[536695.5684,178952.7403],[537238.16,178136.3818],[537437.387,177936.227299999]]]},"properties":{"LAD22CD":"E09000023","LAD22NM":"Lewisham","BNG_E":537889,"BNG_N":173344,"LONG":-0.01733,"LAT":51.44231,"OBJECTID":299,"GlobalID":"307d2ee2-de8d-44cf-b782-1640fa703b03"}},{"type":"Feature","id":300,"geometry":{"type":"Polygon","coordinates":[[[529402.903,170555.198100001],[528886.8261,169832.3477],[530302.6215,169807.1359],[530594.1339,168178.0518],[529902.199,167411.7981],[527759.704,167034.296],[527078.299,167622.498],[526158.001,166711.3991],[524662.603,166988.198999999],[524104,166073.0011],[522578.941,167053.681],[521672.103,171846.598999999],[525890.4412,172940.1752],[526499.9,171092.804],[529402.903,170555.198100001]]]},"properties":{"LAD22CD":"E09000024","LAD22NM":"Merton","BNG_E":526069,"BNG_N":169507,"LONG":-0.18867,"LAT":51.41057,"OBJECTID":300,"GlobalID":"5bb7bafa-1f6a-4ddd-afe2-5ae95e122102"}},{"type":"Feature","id":301,"geometry":{"type":"MultiPolygon","coordinates":[[[[545382.2013,180990.682],[545195.7787,180848.6228],[545282.45,180973.949999999],[545382.2013,180990.682]]],[[[542212.801,187004.1],[543522.4666,184859.925799999],[543874.4831,183187.452500001],[545263.256,182828.967],[545680.432,181644.569700001],[543481.2688,180000],[543114.2,179725.5],[540325.25,179765.699999999],[540133.1468,180000.002800001],[539999.9996,180162.398700001],[539530.2,180735.4],[539457.3179,180708.2171],[539290.7248,180646.082800001],[537341.6923,183811.5112],[537638.7001,184578.684900001],[537572.901,185494.702099999],[540158.898,186087.6021],[541962.901,185976.004000001],[542212.801,187004.1]]]]},"properties":{"LAD22CD":"E09000025","LAD22NM":"Newham","BNG_E":540714,"BNG_N":183344,"LONG":0.027275,"LAT":51.53147,"OBJECTID":301,"GlobalID":"7d5cfc8f-167b-4219-bcad-5bdfbbad585d"}},{"type":"Feature","id":302,"geometry":{"type":"Polygon","coordinates":[[[548106.8982,193800.904300001],[548880.9208,191088.302200001],[547409.4911,189682.7479],[547817.3825,188036.494100001],[546985.5259,186403.529899999],[545263.0405,185072.7335],[543522.4666,184859.925799999],[542212.801,187004.1],[541962.901,185976.004000001],[540158.898,186087.6021],[539475.103,190121.997099999],[540058.399,192291.2961],[539158.776,193049.5824],[540035.9999,194159.073799999],[543642.3989,191573.8419],[548106.8982,193800.904300001]]]},"properties":{"LAD22CD":"E09000026","LAD22NM":"Redbridge","BNG_E":543512,"BNG_N":189477,"LONG":0.070085,"LAT":51.58588,"OBJECTID":302,"GlobalID":"cf5482eb-f6e4-4c9a-a7dc-35396b80e74e"}},{"type":"Feature","id":303,"geometry":{"type":"Polygon","coordinates":[[[523604.803,176320.698000001],[522848.401,176330.895],[522822.998,175370.800000001],[521248.298,175227.301000001],[521054.902,174320.501],[522301.102,173037.398],[521450.599,172367],[519234.302,170410],[518931.898,171384.101],[517530.6,171709.898],[517739.003,168375.902000001],[517139.496,167412.498],[516440.1002,167192.901000001],[514211.0978,169374.996099999],[512535.7011,168963.404100001],[511946.204,170484.3989],[513602.604,172670.302999999],[512127.801,173504.403999999],[513132.998,174421.102],[516339.197,174445.404999999],[518702.199,177871.804],[521100.497,176124.903999999],[522055.597,178014.703],[522968.696,178058.301000001],[523604.803,176320.698000001]]]},"properties":{"LAD22CD":"E09000027","LAD22NM":"Richmond upon Thames","BNG_E":519005,"BNG_N":172650,"LONG":-0.28914,"LAT":51.44035,"OBJECTID":303,"GlobalID":"62e86c5a-e87a-4965-a78c-babd619b9df6"}},{"type":"Feature","id":304,"geometry":{"type":"Polygon","coordinates":[[[533333.5119,180406.662799999],[533838.169,180214.9826],[534164.0151,180000.0364],[534546.7513,179747.5624],[535170.6983,180000.0397],[536406.25,180500],[536498.8109,179999.9899],[536691.559,178958.772600001],[536695.5684,178952.7403],[535208.5657,178349.457900001],[536163.103,174708.499],[534782.401,173871.198999999],[534003.6515,171442.104499999],[533715.6518,170817.3564],[532020.1361,174258.1568],[532767.2669,175851.1938],[531463.1456,177402.605799999],[531312.717,180688.2982],[533333.5119,180406.662799999]]]},"properties":{"LAD22CD":"E09000028","LAD22NM":"Southwark","BNG_E":533945,"BNG_N":175863,"LONG":-0.07309,"LAT":51.46589,"OBJECTID":304,"GlobalID":"87d97efc-3f4e-4bbc-b2cb-887e7e90b8af"}},{"type":"Feature","id":305,"geometry":{"type":"Polygon","coordinates":[[[529902.199,167411.7981],[531245.798,162424.196],[529328.723,161967.737299999],[529312.1,159899.049000001],[528552.3012,159658.097899999],[525650.7982,162043.505000001],[524042.7179,160476.303300001],[523406.097,161201.8959],[524262.2971,161986.4011],[523844.2971,163500.4979],[522240.0969,164547.798],[522231.1012,166014.998],[522578.941,167053.681],[524104,166073.0011],[524662.603,166988.198999999],[526158.001,166711.3991],[527078.299,167622.498],[527759.704,167034.296],[529902.199,167411.7981]]]},"properties":{"LAD22CD":"E09000029","LAD22NM":"Sutton","BNG_E":527356,"BNG_N":163640,"LONG":-0.17227,"LAT":51.35756,"OBJECTID":305,"GlobalID":"a7764eef-0538-471e-a774-36a114623f1b"}},{"type":"Feature","id":306,"geometry":{"type":"MultiPolygon","coordinates":[[[[539043.7198,180280.2751],[539002.5139,180265.1482],[539000,180315.5],[539043.7198,180280.2751]]],[[[537341.6923,183811.5112],[539290.7248,180646.082800001],[538501.7,180351.800000001],[538478.3643,180000.004799999],[538368.2182,178339.5065],[538216.9319,178330.589199999],[537186.01,178665.26],[536948.4066,179999.967399999],[536819.15,180726.050000001],[535732.6219,180751.0777],[534771.5734,180000.0425],[534766.5658,179996.1292],[534756.1156,180000.042300001],[533386.5924,180512.8676],[533838.169,180214.9826],[533333.5119,180406.662799999],[533404.5639,182037.0308],[534480.208,183626.3287],[537638.7001,184578.684900001],[537341.6923,183811.5112]]]]},"properties":{"LAD22CD":"E09000030","LAD22NM":"Tower Hamlets","BNG_E":536340,"BNG_N":181452,"LONG":-0.03647,"LAT":51.51554,"OBJECTID":306,"GlobalID":"bb01e92e-96db-4351-82c5-03ccdf188f8d"}},{"type":"Feature","id":307,"geometry":{"type":"Polygon","coordinates":[[[540035.9999,194159.073799999],[539158.776,193049.5824],[540058.399,192291.2961],[539475.103,190121.997099999],[540158.898,186087.6021],[537572.901,185494.702099999],[536755.197,186529.3961],[535464.202,186662.2981],[534444.0981,188327.4011],[535728.3588,191460.544],[537625.1501,196030.0962],[540060.7989,195527.3002],[540035.9999,194159.073799999]]]},"properties":{"LAD22CD":"E09000031","LAD22NM":"Waltham Forest","BNG_E":537327,"BNG_N":190277,"LONG":-0.01881,"LAT":51.59461,"OBJECTID":307,"GlobalID":"2a5dd563-6962-4aa4-980f-a54cd7c98d64"}},{"type":"Feature","id":308,"geometry":{"type":"Polygon","coordinates":[[[529402.903,170555.198100001],[526499.9,171092.804],[525890.4412,172940.1752],[521672.103,171846.598999999],[521450.599,172367],[522301.102,173037.398],[521054.902,174320.501],[521248.298,175227.301000001],[522822.998,175370.800000001],[522848.401,176330.895],[523604.803,176320.698000001],[525802.598,175475.300000001],[526640.7169,176972.923900001],[528563.4999,177801.343499999],[529972.3584,177985.2831],[528519.296,175722.098999999],[529115.7612,173061.3522],[529651.5,173093.702],[529402.903,170555.198100001]]]},"properties":{"LAD22CD":"E09000032","LAD22NM":"Wandsworth","BNG_E":525151,"BNG_N":174138,"LONG":-0.20023,"LAT":51.4524,"OBJECTID":308,"GlobalID":"3c36a4b1-1d5c-40c4-b0fb-5cbef4020bce"}},{"type":"Feature","id":309,"geometry":{"type":"Polygon","coordinates":[[[531129.699,181291.695],[531155.4163,180672.9507],[529972.3584,177985.2831],[528563.4999,177801.343499999],[527914.5995,179753.295],[526462.6978,179219.498199999],[523850.3983,182509.996099999],[524580.202,183087.401000001],[525200.9971,182512.595799999],[525530,183481.598099999],[528213.9979,183685.5],[529903.098,181053.802999999],[531129.699,181291.695]]]},"properties":{"LAD22CD":"E09000033","LAD22NM":"Westminster","BNG_E":528268,"BNG_N":180870,"LONG":-0.15295,"LAT":51.5122,"OBJECTID":309,"GlobalID":"e84ccb89-651e-4bdd-83a6-ade405f25f0a"}},{"type":"Feature","id":310,"geometry":{"type":"Polygon","coordinates":[[[150729.398,539530.507200001],[149046.3962,538128.481699999],[148869.9766,537981.5559],[147602.6832,535143.9969],[145270.0043,537172.919500001],[145313.4129,535760.6066],[143845.348,535057.457800001],[142933.8469,536683.0231],[140344.6453,533409.2414],[140390.3355,531505.1055],[139112.6831,531715.868799999],[138779.5632,530950.247199999],[136202.9113,533158.4594],[133866.5911,532546.136600001],[132260.363,532988.3687],[132360.5069,531909.6472],[129296.6139,530896.2929],[127657.8856,531175.811899999],[126322.4208,529687.2369],[124649.8126,530898.4704],[122649.6781,530879.830399999],[123397.8652,528976.2338],[121834.2249,528274.9759],[120726.015,530397.0536],[113964.1927,528245.257099999],[115747.7253,537127.7794],[112003.5571,541429.102499999],[110484.6407,544698.164000001],[113317.4167,549892.412799999],[112072.0297,551192.299000001],[112176.7921,552094.0253],[115028.6072,552859.625],[118097.9622,551522.4592],[120772.5795,553804.9407],[122242.2779,552553.849400001],[123514.4279,553105.6008],[124362.461,552307.598099999],[125988.6789,552336.589500001],[125751.018,553255.840399999],[128279.9502,551938.071699999],[130164.8213,552887.669299999],[130246.0975,553812.195900001],[131980.403,554325.5],[135845.7703,553563.378799999],[136307.7731,551916.9943],[138206.4882,551708.047700001],[137798.1796,552246.6368],[138633.1242,552295.9889],[139762.9005,551627.0988],[139463.2966,552370.107100001],[142317.9908,552407.915999999],[142097.6844,551105.635399999],[143631.1827,549421.188300001],[144518.7938,550400.6587],[145182.2821,549289.83],[146127.8025,549967.0381],[147784.2017,548995.744000001],[149200.1124,549810.003799999],[150008.7491,548884.372500001],[148779.1323,548213.3816],[149321.3015,547421.170600001],[148733.0266,546516.898600001],[149527.4515,545887.4364],[148171.6618,542721.1534],[148692.5515,541860.2689],[149531.3627,542004.468900001],[149384.6324,540392.0151],[150729.398,539530.507200001]]]},"properties":{"LAD22CD":"N09000001","LAD22NM":"Antrim and Newtownabbey","BNG_E":130813,"BNG_N":541285,"LONG":-6.1776,"LAT":54.69386,"OBJECTID":310,"GlobalID":"b3ad4931-1580-4b94-a11a-c745fe4e54cc"}},{"type":"Feature","id":311,"geometry":{"type":"Polygon","coordinates":[[[121834.2249,528274.9759],[123467.7536,526451.9188],[123505.7395,522223.541200001],[125540.4076,519401.3386],[124213.5657,517716.259400001],[127171.9781,513685.372099999],[127000.3541,512327.3071],[130552.8761,513388.8095],[130330.9475,512294.967599999],[131968.2615,512363.5766],[134878.56,509342.5199],[136851.4736,508484.832800001],[136166.0872,506714.9782],[137905.5991,506280.2787],[137593.7414,505682.537900001],[138927.2587,505469.3803],[139025.1209,504678.9658],[135821.638,500004.715],[133555.9896,500095.966700001],[133115.4949,499219.815400001],[135835.3275,496041.2149],[135834.0265,494870.4628],[134947.5452,494773.5233],[135527.5624,493834.3621],[134627.7161,492997.5141],[137022.6485,492821.2599],[136149.3109,490728.968499999],[134931.7105,491967.204500001],[132447.016,490516.9923],[130532.1939,490965.341600001],[128829.7324,488364.7722],[127086.4226,490546.1733],[127619.2833,491255.4789],[125702.0247,492979.750800001],[123840.0639,493661.1845],[122985.0883,493050.6668],[121445.2415,494702.4912],[120789.5372,493993.3144],[118007.9243,493954.7973],[116755.3404,495239.9981],[115589.4396,494342.250299999],[113481.4078,495335.6109],[111007.8426,494871.308599999],[109678.0108,493239.6478],[109118.5526,493595.5447],[106481.7328,490493.6819],[105202.8239,491864.167099999],[102049.7091,490614.218],[101111.9668,489485.2776],[100193.2237,490148.2819],[97031.1468000002,485981.054500001],[94066.0811000001,488462.8401],[92861.1780000003,488298.8818],[92029.3707999997,486563.057499999],[90740.0559,486640.800799999],[89881.3819000004,488610.195499999],[88600.8831000002,488681.5944],[87051.8453000002,490383.012599999],[87151.5247999998,491259.0386],[86139.5042000003,491540.590299999],[85678.7586000003,495864.085100001],[82543.3421,498046.806399999],[82802.2967999997,498952.291300001],[83635.7713000001,498200.3188],[84402.3872999996,499360.828500001],[84320.4335000003,499999.9626],[83851.8629999999,503654.2071],[85640.4583999999,504145.093900001],[88076.8090000004,508893.7456],[88038.0987999998,511057.332599999],[89054.5987,512781.694499999],[91117.7948000003,511740.734300001],[92817.4171000002,511869.999700001],[93205.1808000002,511006.193399999],[94391.5888,511177.3586],[95520.9461000003,515382.1742],[98787.6279999996,518266.073899999],[98853.2529999996,520124.366900001],[100352.7563,521935.0244],[102786.7544,521732.6642],[106331.8594,525817.7873],[113964.1927,528245.257099999],[120726.015,530397.0536],[121834.2249,528274.9759]]]},"properties":{"LAD22CD":"N09000002","LAD22NM":"Armagh City, Banbridge and Craigavon","BNG_E":112110,"BNG_N":508158,"LONG":-6.43455,"LAT":54.3867,"OBJECTID":311,"GlobalID":"11acb71d-c197-41ec-9b5f-94d4b21d1b23"}},{"type":"Feature","id":312,"geometry":{"type":"Polygon","coordinates":[[[147602.6832,535143.9969],[147602.5948,535143.798900001],[148407.0044,534746.3531],[151238.6538,533346.518200001],[150957.7603,532234.5396],[152802.6044,531374.3037],[152670.9238,530693.543199999],[154096.5505,531166.5239],[152981.8693,527431.655400001],[148598.3667,525475.484300001],[147144.4553,526101.2498],[145621.4903,523233.6811],[145112.0668,523649.7842],[142809.2665,522320.781500001],[140294.0652,524720.4463],[138681.7901,524360.7807],[137534.6799,525363.9901],[138804.5291,526286.2061],[138779.5632,530950.247199999],[139112.6831,531715.868799999],[140390.3355,531505.1055],[140344.6453,533409.2414],[142933.8469,536683.0231],[143845.348,535057.457800001],[145313.4129,535760.6066],[145270.0043,537172.919500001],[147602.6832,535143.9969]]]},"properties":{"LAD22CD":"N09000003","LAD22NM":"Belfast","BNG_E":146465,"BNG_N":529747,"LONG":-5.92535,"LAT":54.59853,"OBJECTID":312,"GlobalID":"aac86bdc-b3b7-479d-b474-d24f4dc1fd47"}},{"type":"Feature","id":313,"geometry":{"type":"MultiPolygon","coordinates":[[[[116847.5098,602929.1724],[119698.8089,601990.6076],[122408.3735,603332.6029],[124624.5075,602503.6085],[124724.0938,602406.4913],[125821.2588,601332.1294],[125825.9097,601331.994100001],[125829.6988,601328.299000001],[127300.6627,601289.095000001],[128559.8661,600000.0174],[130496.8693,598017.0594],[134266.8789,599033.763699999],[135683.6181,599999.9769],[136401.5268,600489.5891],[138173.4281,598323.1384],[138173.9982,598322.903000001],[138174.7727,598321.9563],[139999.9981,597568.7388],[141532.651,596936.2574],[142089.0636,594324.4395],[143537.6786,592619.4308],[143493.8011,590304.166300001],[142432.7538,589313.4056],[142586.8706,586206.983200001],[140993.506,583843.750800001],[141270.7555,582100.072699999],[140632.221,581506.127599999],[141848.7865,580640.9869],[146052.7344,580771.0013],[143546.0988,578596.518100001],[142879.2758,578795.727600001],[137855.4877,573175.408],[135731.251,573774.3222],[133862.0719,578624.1467],[132896.5614,579100.6898],[132558.8641,578190.559800001],[131360.461,578656.535800001],[126410.536,576188.035599999],[123602.9236,576965.424699999],[123438.2818,573506.6954],[122054.1845,574586.989],[121235.3942,573224.715399999],[119133.8147,574044.7345],[118337.8102,572428.1164],[116961.1515,573222.6789],[116681.8051,572254.154300001],[115329.7681,572398.842],[117742.9184,569550.168099999],[116396.3072,569203.529200001],[116659.5249,566972.434699999],[113791.2738,568056.201400001],[111695.3742,567510.9],[109521.6303,571363.702099999],[109437.2202,569305.8168],[108290.4838,569775.5189],[106279.6353,568393.691400001],[104309.823,570164.0111],[102641.7188,570177.461100001],[101667.7495,568574.455499999],[99487.7814999996,568034.3616],[98502.6295999996,569831.51],[96519.8673999999,569635.763499999],[93993.7487000003,568127.311000001],[95081.5235000001,566857.625399999],[94170.3756999997,563583.506999999],[93075.2238999996,563303.4901],[93180.2375999996,562416.430400001],[91767.7676999997,560776.8717],[88700.4100000001,561477.0624],[88344.0262000002,562244.7184],[86428.2547000004,561865.874299999],[86238.9906000001,559511.331599999],[84540.9352000002,558355.264799999],[82453.3924000002,559995.3649],[80767.9660999998,559495.524499999],[79808.0301000001,560098.4279],[78458.2101999996,558846.3495],[78036.3194000004,560480.127800001],[76607.3233000003,561725.335200001],[76760.0690000001,564163.122300001],[78191.3779999996,566243.009],[77222.0932,566476.3782],[76851.1264000004,569355.3434],[74141.4753,571058.2457],[74009.6332999999,574601.6921],[75036.4168999996,577513.286499999],[72117.0242999997,577666.2596],[71863.7078999998,579877.6527],[70010.8669999996,583260.6043],[71318.1766999997,584590.298599999],[73636.8207999999,583949.7305],[77442.2004000004,584456.7565],[77591.1426999997,585268.546],[78088.8416999998,584800.7334],[78088.4918999998,584801.6679],[78088.9937000005,584801.196900001],[77863.8014000002,585402.024900001],[79999.9806000004,587290.074100001],[80061.1871999996,587344.1712],[79999.9720999999,588095.4933],[79847.4856000002,589967.0307],[79999.9929999998,590034.1842],[81837.7933999998,590843.4223],[83490.3402000004,595007.4728],[84024.7756000003,599999.9815],[84046.4681000002,600202.625299999],[84303.1616000002,599999.9871],[87207.7074999996,597707.0886],[89636.4446999999,596827.073799999],[97407.4477000004,596343.1327],[99226.5445999997,596740.9342],[99524.0153999999,598583.1997],[103557.0401,599304.1044],[103506.8875,600000.0262],[103444.769,600861.986500001],[104197.4414,600000.0252],[104233.2454,599959.022399999],[106982.5457,599872.083000001],[107314.799,600000.005799999],[110488.5135,601221.936699999],[110889.4247,600742.960999999],[112073.05,601665.662699999],[112004.948,602645.6899],[115611.5612,604470.513900001],[116847.5098,602929.1724]]],[[[135378.7584,608757.169199999],[133811.6237,604041.863299999],[133233.0193,605964.707800001],[133842.6088,607850.8576],[127945.0767,608301.956],[129057.9275,609741.4921],[130997.5923,610193.731799999],[135378.7584,608757.169199999]]]]},"properties":{"LAD22CD":"N09000004","LAD22NM":"Causeway Coast and Glens","BNG_E":106168,"BNG_N":581420,"LONG":-6.5996,"LAT":55.03962,"OBJECTID":313,"GlobalID":"b70e4494-e124-459f-8c56-fe10f33afe92"}},{"type":"Feature","id":314,"geometry":{"type":"Polygon","coordinates":[[[71318.1766999997,584590.298599999],[70010.8669999996,583260.6043],[71863.7078999998,579877.6527],[72117.0242999997,577666.2596],[75036.4168999996,577513.286499999],[74009.6332999999,574601.6921],[74141.4753,571058.2457],[76851.1264000004,569355.3434],[77222.0932,566476.3782],[78191.3779999996,566243.009],[76760.0690000001,564163.122300001],[76607.3233000003,561725.335200001],[78036.3194000004,560480.127800001],[78458.2101999996,558846.3495],[79808.0301000001,560098.4279],[80767.9660999998,559495.524499999],[82453.3924000002,559995.3649],[84540.9352000002,558355.264799999],[83736.6606999999,556420.0931],[84844.0903000003,554251.262700001],[83527.8254000004,553149.019200001],[82380.7512999997,553281.9015],[78230.1809,554276.519099999],[73277.7896999996,553062.5067],[70795.6793,551410.3169],[63816.2565000001,552217.998299999],[61404.5449000001,550048.9439],[60028.6564999996,551225.218599999],[58593.3704000004,551103.8037],[57585.2636000002,550459.5715],[57509.3783999998,548372.4738],[52676.8370000003,546481.5535],[48612.1566000003,540970.8378],[46385.7346999999,542619.2892],[45674.0992000001,542131.011],[44695.9062999999,542712.144300001],[41980.4445000002,541231.772],[42066.3077999996,542184.533199999],[41335.1930999998,542257.8532],[40438.3552999999,541524.051100001],[40455.8425000003,540346.362199999],[38997.1321999999,541038.631899999],[37750.6972000003,540925.4683],[37568.7758999998,540066.2304],[34973.1155000003,540454.7481],[31848.7455000002,538671.0502],[32589.5936000003,539801.864600001],[31761.4972000001,539921.8005],[31762.0274,539999.9683],[31773.1105000004,541634.01],[29577.7361000003,539999.9959],[29477.7291000001,539925.560799999],[29393.6775000002,539999.9959],[28492.5450999998,540798.028000001],[27520.5865000002,540484.1785],[25097.4225000003,543187.65],[24026.0761000002,542064.015000001],[22327.9988000002,542080.757300001],[22367.5151000004,544152.378699999],[20060.8871999998,545022.4156],[19999.9740000004,545110.422],[19102.4937000005,546407.087099999],[18917.9855000004,547292.403999999],[19999.9583999999,548486.854499999],[20048.7735000001,548540.744200001],[19999.9583999999,548575.992000001],[18645.8639000002,549553.739700001],[18895.8485000003,550287.8573],[19999.9550000001,550192.3664],[21380.8189000003,550072.9395],[24446.3191,553591.941199999],[25641.9737999998,553199.509],[26337.0822999999,551446.6538],[27377.0247,551468.318700001],[29726.8093999997,549556.515799999],[30784.0595000004,550885.3672],[32390.9095000001,551780.8035],[33307.1045000004,551445.957],[37439.4930999996,554211.738399999],[38589.1332,553209.1085],[39999.9877000004,553124.289899999],[40458.8548999997,553096.703400001],[41112.5049999999,553716.2908],[41093.9090999998,552828.8112],[42960.2273000004,552538.7795],[43296.7855000002,552754.0327],[43356.017,552752.022],[43920.5356000001,553152.965700001],[43978.0279000001,553189.736099999],[43975.9753999999,553192.3412],[43981.1113999998,553195.989],[43196.6935000001,554181.454299999],[43383.5802999996,557968.120200001],[44895.9398999996,559898.424900001],[45089.0796999997,560000.0373],[47874.6842,561465.566500001],[50834.3173000002,566361.8081],[50836.9874,566416.161699999],[50911.4885999998,566540.6679],[51191.7907999996,573638.6505],[54815.4872000003,574518.611099999],[53989.3370000003,576619.2644],[54181.9987000003,578764.801999999],[55063.8859999999,580000.0341],[55305.5048000002,580338.462099999],[54450.6116000004,581015.485300001],[55516.9320999999,583060.592700001],[58644.4308000002,585966.5502],[59999.9813999999,585388.7457],[60375.5421000002,585228.662699999],[61675.4312000005,586363.269099999],[62254.5283000004,585345.5847],[63968.2633999996,587363.991900001],[64581.5078999996,586577.525],[64552.9166999999,587187.352399999],[65174.8821999999,586924.018100001],[64615.2788000004,584804.833900001],[65858.6677999999,585163.022],[66468.5137999998,586544.2019],[66648.7249999996,586530.627900001],[70131.6195999999,586089.1032],[70850.5416000001,585901.482999999],[71318.1766999997,584590.298599999]]]},"properties":{"LAD22CD":"N09000005","LAD22NM":"Derry City and Strabane","BNG_E":51779,"BNG_N":559566,"LONG":-7.42064,"LAT":54.80904,"OBJECTID":314,"GlobalID":"1356f729-25f8-46b3-8169-0453a2aeb91f"}},{"type":"Feature","id":315,"geometry":{"type":"Polygon","coordinates":[[[82380.7512999997,553281.9015],[82164.7604999999,550907.4617],[78817.6206999999,549870.384299999],[77367.5289000003,547420.786],[78360.9993000003,545999.1884],[77548.7122,542219.4672],[79626.7811000003,541203.5877],[78304.7220000001,539982.479900001],[79746.0813999996,535459.051899999],[80566.9976000004,534913.2766],[79258.2171,533788.5474],[78946.3453000002,531855.0098],[77739.6053999998,532153.8303],[78879.8953999998,530752.581499999],[77735.8180999998,529440.3518],[78349.9194999998,527890.268999999],[75983.6563999997,525926.665200001],[74681.6873000003,526156.9847],[73849.2823999999,523952.459100001],[71663.7588,523799.449200001],[71754.7450999999,524367.8048],[69933.5465000002,523652.2119],[69254.2556999996,522093.6927],[68223.3459999999,522037.318600001],[68322.6672,520990.784600001],[67462.3858000003,521715.295700001],[65775.6560000004,520848.613600001],[63055.8945000004,521650.5701],[63234.6327999998,520337.145099999],[62091.0159,520539.756899999],[60731.9137000004,519210.181399999],[59592.3291999996,518904.4123],[58400.4052999998,520041.661800001],[58473.1229999997,519288.842],[56818.5669999998,518280.946599999],[54247.8918000003,518622.698000001],[52092.0793000003,517964.5801],[52249.7587000001,515955.143300001],[54119.1701999996,514144.4691],[53647.4808999998,510490.1873],[57143.2958000004,510214.055199999],[57470.6403999999,507119.820800001],[59000.5734000001,505091.6317],[60239.3475000001,504999.887800001],[62059.4844000004,506518.1677],[62813.3430000003,506001.6171],[63213.1882999996,502848.744100001],[62008.3424000004,503091.214500001],[60983.2341,501886.425799999],[63425.7170000002,500194.015900001],[63356.2718000002,500000.0228],[62900.1464,498725.8507],[64121.4156999998,498752.204299999],[65172.0011999998,496665.146],[63985.1323999995,495416.578600001],[64796.0998999998,494919.7282],[64744.9203000003,493243.9944],[62983.767,492577.233999999],[61925.7219000002,493468.375800001],[61165.3227000004,492489.8313],[59999.9703000002,492594.161900001],[59730.4565000003,492618.2907],[58929.091,491533.5426],[57863.9452,491484.020400001],[57734.9801000003,490765.453600001],[58791.8361,490675.390799999],[57046.6748000002,490184.7432],[56976.2192000002,488529.1494],[58084.4501999998,487587.2566],[56878.2684000004,487099.654200001],[56877.8251999998,487097.192],[56876.1930999998,487096.529100001],[56877.1292000003,487093.3258],[56478.6683999998,484879.806700001],[55704.4518999998,483523.4745],[54629.1870999997,482524.1094],[54096.4453999996,482525.926000001],[53293.7335000001,483747.926100001],[54862.1133000003,484104.635600001],[53892.0404000003,485067.5912],[55114.8243000004,486040.099099999],[55492.6491999999,487550.780200001],[53504.9709000001,487664.6395],[51422.5566999996,485518.0144],[53455.8925000001,482757.282099999],[52491.0625999998,481711.619100001],[52047.7786999997,483001.8662],[50732.6782999998,482197.2479],[49726.6349999998,483942.724400001],[47779.6168,482835.464500001],[49190.6708000004,484886.702400001],[46062.4495000001,484828.026900001],[46934.4327999996,486924.4892],[44776.7515000002,486832.4318],[42957.6799999997,485507.1997],[42091.4118999997,483502.7686],[39999.9661999997,484695.3815],[39023.7989999996,485252.025],[37648.9924999997,483834.9087],[36491.4144000001,484426.377900001],[36045.5824999996,486128.4318],[33728.6745999996,486569.297499999],[32774.1572000002,489489.7937],[31120.6037999997,491458.279300001],[29757.3510999996,491157.671800001],[29509.6149000004,493229.1074],[29409.9135999996,494066.3903],[29409.4817000004,494066.3675],[29409.4391000001,494066.7236],[25870.2152000004,493879.924900001],[24048.3402000004,494688.664000001],[21139.4078000002,493973.237199999],[19999.9648000002,494770.5437],[18117.5943,496087.7015],[18431.4297000002,500000.0286],[18498.1926999995,500832.307800001],[17751.0436000004,501559.9267],[17848.2516999999,503040.593599999],[18713.4082000004,504530.4811],[17460.7697999999,504456.8544],[16213.6316,505627.861099999],[15553.1566000003,505076.134400001],[12410.0750000002,507179.9136],[10334.1446000002,512464.509299999],[8305.77180000022,512480.128599999],[6703.30530000012,513631.563100001],[5273.63580000028,517297.0002],[2956.81819999963,520000.0591],[690.021900000051,522644.7575],[1976.16830000002,523573.215700001],[-0.0384999997913837,525211.2992],[-116.19280000031,525307.5798],[-0.039300000295043,525310.9759],[3983.49949999992,525427.4461],[4155.73539999966,526231.694700001],[5582.69379999954,526103.827299999],[5173.58800000045,527019.5735],[5820.50549999997,527285.2631],[8828.72090000007,527095.9242],[9063.32079999987,529175.614600001],[11751.7209999999,533358.140699999],[14066.2078999998,533311.1821],[15267.1623,531682.6711],[19999.9407000002,531231.2678],[21669.2325999998,531072.0539],[23492.7971999999,532195.3431],[22963.4844000004,533127.065099999],[25506.9038000004,535072.4619],[25762.9560000002,536165.620200001],[27850.3945000004,536472.106899999],[28666.2034999998,537851.062899999],[31848.7455000002,538671.0502],[34973.1155000003,540454.7481],[37568.7758999998,540066.2304],[37750.6972000003,540925.4683],[38997.1321999999,541038.631899999],[40455.8425000003,540346.362199999],[40438.3552999999,541524.051100001],[41335.1930999998,542257.8532],[42066.3077999996,542184.533199999],[41980.4445000002,541231.772],[44695.9062999999,542712.144300001],[45674.0992000001,542131.011],[46385.7346999999,542619.2892],[48612.1566000003,540970.8378],[52676.8370000003,546481.5535],[57509.3783999998,548372.4738],[57585.2636000002,550459.5715],[58593.3704000004,551103.8037],[60028.6564999996,551225.218599999],[61404.5449000001,550048.9439],[63816.2565000001,552217.998299999],[70795.6793,551410.3169],[73277.7896999996,553062.5067],[78230.1809,554276.519099999],[82380.7512999997,553281.9015]]]},"properties":{"LAD22CD":"N09000006","LAD22NM":"Fermanagh and Omagh","BNG_E":41233,"BNG_N":513013,"LONG":-7.5271,"LAT":54.38521,"OBJECTID":315,"GlobalID":"347dc22a-d586-4024-89db-ef9dd2bc9d99"}},{"type":"Feature","id":316,"geometry":{"type":"Polygon","coordinates":[[[138779.5632,530950.247199999],[138804.5291,526286.2061],[137534.6799,525363.9901],[138681.7901,524360.7807],[140294.0652,524720.4463],[142809.2665,522320.781500001],[145112.0668,523649.7842],[145621.4903,523233.6811],[147144.4553,526101.2498],[148598.3667,525475.484300001],[152981.8693,527431.655400001],[154096.5505,531166.5239],[155585.9602,531537.8146],[156542.8989,530786.208699999],[156267.5249,528644.220000001],[157225.2617,527198.780300001],[155130.578,526156.712400001],[154408.8577,525028.6993],[154721.7948,523349.005100001],[152409.3943,521215.024700001],[151856.5603,518555.8243],[152442.3311,517863.149900001],[149253.7897,516255.702500001],[148844.4523,514916.7116],[147139.7143,514446.9944],[147253.9549,513611.488500001],[146209.4345,513137.9607],[146145.9426,511287.8607],[145171.3252,511004.0759],[145475.4312,510275.1664],[143635.2443,508126.1384],[144307.6629,505873.6041],[143528.287,505427.1128],[142242.6166,506046.751],[139025.1209,504678.9658],[138927.2587,505469.3803],[137593.7414,505682.537900001],[137905.5991,506280.2787],[136166.0872,506714.9782],[136851.4736,508484.832800001],[134878.56,509342.5199],[131968.2615,512363.5766],[130330.9475,512294.967599999],[130552.8761,513388.8095],[127000.3541,512327.3071],[127171.9781,513685.372099999],[124213.5657,517716.259400001],[125540.4076,519401.3386],[123505.7395,522223.541200001],[123467.7536,526451.9188],[121834.2249,528274.9759],[123397.8652,528976.2338],[122649.6781,530879.830399999],[124649.8126,530898.4704],[126322.4208,529687.2369],[127657.8856,531175.811899999],[129296.6139,530896.2929],[132360.5069,531909.6472],[132260.363,532988.3687],[133866.5911,532546.136600001],[136202.9113,533158.4594],[138779.5632,530950.247199999]]]},"properties":{"LAD22CD":"N09000007","LAD22NM":"Lisburn and Castlereagh","BNG_E":138712,"BNG_N":518920,"LONG":-6.03545,"LAT":54.49752,"OBJECTID":316,"GlobalID":"d09fd054-103e-4db1-9d09-c178c873b76a"}},{"type":"Feature","id":317,"geometry":{"type":"Polygon","coordinates":[[[150729.398,539530.507200001],[149384.6324,540392.0151],[149531.3627,542004.468900001],[148692.5515,541860.2689],[148171.6618,542721.1534],[149527.4515,545887.4364],[148733.0266,546516.898600001],[149321.3015,547421.170600001],[148779.1323,548213.3816],[150008.7491,548884.372500001],[149200.1124,549810.003799999],[147784.2017,548995.744000001],[146127.8025,549967.0381],[145182.2821,549289.83],[144518.7938,550400.6587],[143631.1827,549421.188300001],[142097.6844,551105.635399999],[142317.9908,552407.915999999],[139463.2966,552370.107100001],[139762.9005,551627.0988],[138633.1242,552295.9889],[137798.1796,552246.6368],[138206.4882,551708.047700001],[136307.7731,551916.9943],[135845.7703,553563.378799999],[131980.403,554325.5],[130246.0975,553812.195900001],[130164.8213,552887.669299999],[128279.9502,551938.071699999],[125751.018,553255.840399999],[125988.6789,552336.589500001],[124362.461,552307.598099999],[123514.4279,553105.6008],[122242.2779,552553.849400001],[120772.5795,553804.9407],[118097.9622,551522.4592],[115028.6072,552859.625],[112176.7921,552094.0253],[112792.7231,555577.2278],[113755.4175,556857.863299999],[111210.665,566369.921599999],[111695.3742,567510.9],[113791.2738,568056.201400001],[116659.5249,566972.434699999],[116396.3072,569203.529200001],[117742.9184,569550.168099999],[115329.7681,572398.842],[116681.8051,572254.154300001],[116961.1515,573222.6789],[118337.8102,572428.1164],[119133.8147,574044.7345],[121235.3942,573224.715399999],[122054.1845,574586.989],[123438.2818,573506.6954],[123602.9236,576965.424699999],[126410.536,576188.035599999],[131360.461,578656.535800001],[132558.8641,578190.559800001],[132896.5614,579100.6898],[133862.0719,578624.1467],[135731.251,573774.3222],[137855.4877,573175.408],[142879.2758,578795.727600001],[143546.0988,578596.518100001],[146052.7344,580771.0013],[146494.4179,580000.0209],[146853.0043,579374.090500001],[144757.7626,572838.3258],[149160.6694,570050.420499999],[151445.4061,563887.884099999],[152657.404,562828.6942],[153565.9014,563002.8555],[153898.105,560745.529999999],[154431.09,559999.9981],[156264.1618,557435.9233],[157173.4103,557267.3013],[157445.0815,558099.9442],[158298.6575,557339.7872],[158551.4522,558114.199899999],[160000.022,557253.5561],[160887.6847,556726.165999999],[162905.647,551678.487500001],[162793.3532,547587.2128],[161251.223,545324.0353],[159999.9869,544257.3049],[158224.9629,542744.023700001],[155946.7749,542819.9102],[150729.398,539530.507200001]]]},"properties":{"LAD22CD":"N09000008","LAD22NM":"Mid and East Antrim","BNG_E":133943,"BNG_N":560151,"LONG":-6.14645,"LAT":54.86462,"OBJECTID":317,"GlobalID":"ef2b3369-f9d4-4218-a61f-0cf9469aa180"}},{"type":"Feature","id":318,"geometry":{"type":"Polygon","coordinates":[[[111695.3742,567510.9],[111210.665,566369.921599999],[113755.4175,556857.863299999],[112792.7231,555577.2278],[112176.7921,552094.0253],[112072.0297,551192.299000001],[113317.4167,549892.412799999],[110484.6407,544698.164000001],[112003.5571,541429.102499999],[115747.7253,537127.7794],[113964.1927,528245.257099999],[106331.8594,525817.7873],[102786.7544,521732.6642],[100352.7563,521935.0244],[98853.2529999996,520124.366900001],[98787.6279999996,518266.073899999],[95520.9461000003,515382.1742],[94391.5888,511177.3586],[93205.1808000002,511006.193399999],[92817.4171000002,511869.999700001],[91117.7948000003,511740.734300001],[89054.5987,512781.694499999],[88038.0987999998,511057.332599999],[88076.8090000004,508893.7456],[85640.4583999999,504145.093900001],[83851.8629999999,503654.2071],[83191.7306000004,505540.169],[81252.6447000001,506105.753],[81128.2724000001,508824.6916],[80000.0120999999,509191.625700001],[79755.9478000002,509271.000600001],[80000.0027000001,509475.0638],[80376.8054999998,509790.122400001],[79999.9857000001,509991.519400001],[78121.9413000001,510995.2684],[77009.0124000004,512899.002499999],[75879.7947000004,512619.4868],[73851.3086999999,514546.2634],[71938.7872000001,513532.9573],[71938.6114999996,513532.586300001],[71938.4220000003,513532.4858],[70779.3947999999,511083.9738],[68198.3517000005,509033.0447],[68500.7374999998,507624.452500001],[65137.8136999998,505560.0735],[62813.3430000003,506001.6171],[62059.4844000004,506518.1677],[60239.3475000001,504999.887800001],[59000.5734000001,505091.6317],[57470.6403999999,507119.820800001],[57143.2958000004,510214.055199999],[53647.4808999998,510490.1873],[54119.1701999996,514144.4691],[52249.7587000001,515955.143300001],[52092.0793000003,517964.5801],[54247.8918000003,518622.698000001],[56818.5669999998,518280.946599999],[58473.1229999997,519288.842],[58400.4052999998,520041.661800001],[59592.3291999996,518904.4123],[60731.9137000004,519210.181399999],[62091.0159,520539.756899999],[63234.6327999998,520337.145099999],[63055.8945000004,521650.5701],[65775.6560000004,520848.613600001],[67462.3858000003,521715.295700001],[68322.6672,520990.784600001],[68223.3459999999,522037.318600001],[69254.2556999996,522093.6927],[69933.5465000002,523652.2119],[71754.7450999999,524367.8048],[71663.7588,523799.449200001],[73849.2823999999,523952.459100001],[74681.6873000003,526156.9847],[75983.6563999997,525926.665200001],[78349.9194999998,527890.268999999],[77735.8180999998,529440.3518],[78879.8953999998,530752.581499999],[77739.6053999998,532153.8303],[78946.3453000002,531855.0098],[79258.2171,533788.5474],[80566.9976000004,534913.2766],[79746.0813999996,535459.051899999],[78304.7220000001,539982.479900001],[79626.7811000003,541203.5877],[77548.7122,542219.4672],[78360.9993000003,545999.1884],[77367.5289000003,547420.786],[78817.6206999999,549870.384299999],[82164.7604999999,550907.4617],[82380.7512999997,553281.9015],[83527.8254000004,553149.019200001],[84844.0903000003,554251.262700001],[83736.6606999999,556420.0931],[84540.9352000002,558355.264799999],[86238.9906000001,559511.331599999],[86428.2547000004,561865.874299999],[88344.0262000002,562244.7184],[88700.4100000001,561477.0624],[91767.7676999997,560776.8717],[93180.2375999996,562416.430400001],[93075.2238999996,563303.4901],[94170.3756999997,563583.506999999],[95081.5235000001,566857.625399999],[93993.7487000003,568127.311000001],[96519.8673999999,569635.763499999],[98502.6295999996,569831.51],[99487.7814999996,568034.3616],[101667.7495,568574.455499999],[102641.7188,570177.461100001],[104309.823,570164.0111],[106279.6353,568393.691400001],[108290.4838,569775.5189],[109437.2202,569305.8168],[109521.6303,571363.702099999],[111695.3742,567510.9]]]},"properties":{"LAD22CD":"N09000009","LAD22NM":"Mid Ulster","BNG_E":83920,"BNG_N":528564,"LONG":-6.8889,"LAT":54.55273,"OBJECTID":318,"GlobalID":"ec04d8fe-f954-4d81-acff-842532b0ec65"}},{"type":"Feature","id":319,"geometry":{"type":"Polygon","coordinates":[[[171392.8288,497802.5187],[170327.5298,496904.500700001],[170677.3237,496278.9055],[169045.264,495915.142899999],[168297.7927,493738.157500001],[166201.0382,491315.113],[165078.1207,491554.0603],[164931.527,489699.0844],[164305.1509,489448.3906],[163978.303,490536.005799999],[163284.7906,490198.6589],[162992.2652,491390.1183],[163097.97,489074.922],[161450.3984,487303.432700001],[160469.8527,489693.239700001],[160000.0071,489966.9954],[159478.0154,490271.134],[151040.5833,489778.077199999],[150325.7423,491356.279999999],[151510.4675,491569.013],[151781.5436,494610.479800001],[151770.4632,494594.879899999],[151771.1296,494602.635299999],[149247.1322,491042.3246],[150326.3841,490752.8246],[150504.0452,489705.490700001],[146168.5592,485870.7215],[147312.2987,481590.2499],[145284.8333,474687.249700001],[141523.8161,471895.9827],[140704.2013,470261.386499999],[140000.0041,470249.445699999],[138529.9812,470224.519200001],[139029.0812,469784.2053],[137260.0553,468132.3934],[133932.629,466187.6973],[131181.3221,468397.1294],[131217.2973,468447.0799],[131995.2423,469135.507999999],[133390.9342,468803.268300001],[133399.775,468800.0011],[133399.0599,468801.334000001],[133401.0629,468800.8572],[133392.8227,468812.959899999],[132665.4257,470168.7995],[132428.2718,470229.631999999],[132077.9264,470744.1974],[128968.8728,471117.004899999],[127548.0674,471481.456700001],[126409.8183,472284.737199999],[126379.5165,472307.3452],[125567.6253,475089.351],[121897.646,475106.3835],[119999.9969,476727.5932],[119603.809,477066.066500001],[118378.6217,476475.036499999],[117614.2202,474790.0294],[116511.5076,475252.0558],[116394.2222,477176.668400001],[114810.8206,477494.081800001],[114808.8153,477453.434599999],[114679.1967,477476.0623],[114584.3338,472903.1426],[112682.4652,471490.129799999],[111349.7866,472040.671],[109241.9497,471435.290899999],[108536.4426,473273.915200001],[107148.9547,473871.2478],[107496.7838,472642.286699999],[104833.6216,471291.2982],[103481.3636,472156.991],[101709.0619,471113.7914],[99893.0992000001,472154.333900001],[99254.8301999997,470749.7204],[97305.8601000002,469971.8495],[94619.6991999997,474202.601299999],[95351.3685999997,474533.2654],[95450.6096999999,476751.367000001],[96351.4555000002,476671.4989],[95492.6131999996,479710.1787],[96310.2522,479535.826099999],[96311.4881999996,479538.741],[96312.3979000002,479538.5505],[96507.9402999999,480000.025800001],[97770.7269000001,482980.170600001],[97031.1468000002,485981.054500001],[100193.2237,490148.2819],[101111.9668,489485.2776],[102049.7091,490614.218],[105202.8239,491864.167099999],[106481.7328,490493.6819],[109118.5526,493595.5447],[109678.0108,493239.6478],[111007.8426,494871.308599999],[113481.4078,495335.6109],[115589.4396,494342.250299999],[116755.3404,495239.9981],[118007.9243,493954.7973],[120789.5372,493993.3144],[121445.2415,494702.4912],[122985.0883,493050.6668],[123840.0639,493661.1845],[125702.0247,492979.750800001],[127619.2833,491255.4789],[127086.4226,490546.1733],[128829.7324,488364.7722],[130532.1939,490965.341600001],[132447.016,490516.9923],[134931.7105,491967.204500001],[136149.3109,490728.968499999],[137022.6485,492821.2599],[134627.7161,492997.5141],[135527.5624,493834.3621],[134947.5452,494773.5233],[135834.0265,494870.4628],[135835.3275,496041.2149],[133115.4949,499219.815400001],[133555.9896,500095.966700001],[135821.638,500004.715],[139025.1209,504678.9658],[142242.6166,506046.751],[143528.287,505427.1128],[144307.6629,505873.6041],[143635.2443,508126.1384],[145475.4312,510275.1664],[145171.3252,511004.0759],[146145.9426,511287.8607],[146209.4345,513137.9607],[147253.9549,513611.488500001],[147139.7143,514446.9944],[148844.4523,514916.7116],[149253.7897,516255.702500001],[152442.3311,517863.149900001],[154347.7089,514215.048900001],[157918.683,514054.0747],[158672.5785,512210.5154],[160032.7976,511990.2519],[162345.6104,513494.5144],[164196.2029,513012.571699999],[164903.9246,513810.649],[167696.5925,511942.5732],[166693.8683,507242.3003],[167321.9426,505514.5011],[169563.0537,503403.1271],[171392.8288,497802.5187]]]},"properties":{"LAD22CD":"N09000010","LAD22NM":"Newry, Mourne and Down","BNG_E":133006,"BNG_N":480432,"LONG":-6.08891,"LAT":54.14953,"OBJECTID":319,"GlobalID":"a77ed4e9-c97e-4c38-a582-c063baea5de3"}},{"type":"Feature","id":320,"geometry":{"type":"MultiPolygon","coordinates":[[[[172807.115,536307.849300001],[172759.0448,536149.781400001],[171511.1103,536622.1152],[171434.0028,536651.332800001],[172230.4487,537591.3715],[173005.7833,536966.970899999],[172807.115,536307.849300001]]],[[[162431.7319,536553.8829],[162831.6212,536507.810000001],[163185.0653,535972.8189],[163755.876,536401.322899999],[165203.7769,536234.5044],[165277.953,536369.0965],[165362.8634,536331.2381],[165566.8322,536893.265699999],[165997.4704,537674.6557],[168981.1754,537312.174699999],[171790.9085,534044.892999999],[172181.4794,532987.317299999],[171882.4101,531008.018200001],[172547.739,528206.8959],[175227.2139,524332.0976],[174580.7618,522421.0221],[175103.0685,519999.990800001],[175751.8219,516992.844900001],[177683.1587,515659.4222],[177022.917,514386.509],[177335.631,512308.1183],[174299.9448,509261.2553],[174300.4158,509260.4671],[174299.6416,509259.6898],[175249.0481,507672.972999999],[175357.4511,504518.2477],[173387.7721,503505.6457],[173110.0959,502283.7632],[173825.5906,501286.239700001],[172700.0677,500764.0251],[172700.067,500763.8782],[172699.6085,500763.6654],[172696.2073,500000.0327],[172690.572,498734.7774],[171392.8288,497802.5187],[169563.0537,503403.1271],[167321.9426,505514.5011],[166693.8683,507242.3003],[167696.5925,511942.5732],[164903.9246,513810.649],[164196.2029,513012.571699999],[162345.6104,513494.5144],[160032.7976,511990.2519],[158672.5785,512210.5154],[157918.683,514054.0747],[154347.7089,514215.048900001],[152442.3311,517863.149900001],[151856.5603,518555.8243],[152409.3943,521215.024700001],[154721.7948,523349.005100001],[154408.8577,525028.6993],[155130.578,526156.712400001],[157225.2617,527198.780300001],[156267.5249,528644.220000001],[156542.8989,530786.208699999],[155585.9602,531537.8146],[154096.5505,531166.5239],[152670.9238,530693.543199999],[152802.6044,531374.3037],[150957.7603,532234.5396],[151238.6538,533346.518200001],[154597.8996,535993.1031],[154837.6268,536096.7696],[158857.0471,537834.557399999],[158978.9171,537714.2303],[159999.9779,536694.0375],[160106.7548,536587.351299999],[160119.9228,536587.670399999],[160128.5421,536579.1603],[162431.7319,536553.8829]]]]},"properties":{"LAD22CD":"N09000011","LAD22NM":"Ards and North Down","BNG_E":164321,"BNG_N":524944,"LONG":-5.64568,"LAT":54.56409,"OBJECTID":320,"GlobalID":"088ba0fa-9dd6-4e95-b229-9d136d32b5de"}},{"type":"Feature","id":321,"geometry":{"type":"Polygon","coordinates":[[[298892.2998,694533.9012],[296654.3016,693504.595899999],[298806.3038,692049.602399999],[296075.8034,691820.797800001],[295937.7976,690981.4981],[293452.3981,691516.404999999],[291833.8308,688508.6273],[289717.8278,690189.249500001],[289602.6372,690333.6381],[290221.3978,690989.2959],[289617.0018,690422.1982],[288327.2022,692144.395199999],[288552.147,691650.401000001],[288294.7001,691973.1042],[286791.6997,691267.496200001],[285754.9987,691629.102700001],[286037.1035,692969.798900001],[285183.4016,693414.7016],[283813.6991,692127.300100001],[284164.0977,693363.496300001],[282926.2996,694531.5019],[284659.5022,695176.7972],[283437.8974,696841.000800001],[284913.3016,697127.0989],[284704.9984,698428.496400001],[286583.0997,701944.799900001],[289656.001,704167.003799999],[291419.9988,703529.496300001],[292308.9978,700961.5013],[295452.9962,701640.9968],[296644.4983,700807.4954],[297667.496,702379.995300001],[298457.9994,701679.9957],[299716.303,702625.2951],[302359.3975,701503.6961],[301883.5008,700215.7048],[300904.3998,699867.3046],[301184.501,698968.401900001],[297751.3977,697557.095799999],[298424.5987,696607.0978],[297883.599,695097.799799999],[298892.2998,694533.9012]]]},"properties":{"LAD22CD":"S12000005","LAD22NM":"Clackmannanshire","BNG_E":291178,"BNG_N":696402,"LONG":-3.75316,"LAT":56.14784,"OBJECTID":321,"GlobalID":"b91fda87-2d5b-4ccb-863d-5f75afc8c5b0"}},{"type":"Feature","id":322,"geometry":{"type":"MultiPolygon","coordinates":[[[[332242.874,566060.6139],[332048.6777,565949.2051],[332141.325,566078.651000001],[332242.874,566060.6139]]],[[[274517.4999,620706.0042],[275526.0028,619598.5012],[276741.0032,620480.4988],[278405.4997,619736.501700001],[280243.9999,620067.9969],[284620.9977,618242.499399999],[285146.4967,616319.4998],[288350.9974,613323.497400001],[288970.0036,610394.9957],[291638.3033,609025.897600001],[291023.5021,607593.997500001],[291521.5037,604566.0042],[293564.0033,602934.001399999],[294454.5028,600997.9956],[297319.4967,601375.1976],[297189.4968,603693.604],[298134.9992,604705.5043],[300238.9986,604939.497300001],[299376.7961,606942.403999999],[300386.9975,607913.495999999],[300094.5039,611244.502499999],[301390.0009,611566.000499999],[301945.0007,612763.9976],[303105.996,612454.496200001],[304665.4998,614182.601500001],[306876.9984,613187.996200001],[310174.5034,614481.9958],[311364.9995,613573.9957],[313858.5039,614519.495100001],[314355.4996,614011.500499999],[315853.0006,617159.499399999],[317166.9995,617554.496300001],[318247.4983,615985.4955],[319132.0037,616452.0019],[321395.9985,615568.504799999],[317580.4976,611862.9955],[316986.4986,610300.502800001],[317460.804,609095.297700001],[316717.6025,608854.196799999],[316378.4996,606940.9044],[317416.2972,606143.4027],[322953.4988,609802.495300001],[325340.5017,608017.496300001],[325616.0022,606490.5034],[328636.4979,607881.995100001],[329725.4973,606561.0032],[330220.4978,606949.0021],[330372.0008,604730.997],[333638.4961,600655.003799999],[333104.7026,599016.8027],[333832.5024,597982.6987],[335307.6016,598807.9025],[335908.9963,597495.998],[336816.4972,597666.9991],[338999.5008,599993.5031],[341839.9986,598524.503599999],[343028.4994,599187.004000001],[343860.5003,596860.0001],[342576.0022,596263.500800001],[341501.4976,594000.0987],[345164.0032,593912.003900001],[345268.5011,592456.500600001],[343575.5015,590761.4957],[342471.999,586969.5012],[342932.5022,583960.002599999],[344943.4973,582670.501800001],[345325.8345,579663.3026],[343536.2962,578178.797499999],[342836.6039,576311.202099999],[340043.004,575366.102600001],[340285.5984,574300.797599999],[338852.7965,573174.799900001],[332959.4989,573650.103800001],[332791.1017,573038.298900001],[334533.2996,571807.5013],[332721.2599,566896.8334],[332697.7017,566976.0043],[332427.7052,566869.6834],[332405.0166,566753.682499999],[331312.74,565719.789999999],[330814.39,566393.83],[331284.86,565641.481000001],[330249.79,565076.390000001],[329154.43,565457.85],[326495.35,563849.630000001],[322992.81,565524.25],[320648.7,564416.619999999],[320284.8,564992.43],[319999.986,564925.175799999],[318904.1,564666.4],[318841.9,564167.9],[314526.91,565945.91],[315028.91,565711.210000001],[314374.11,565203.41],[312375.8,564864.5],[309943.53,565329.02],[308509.74,567561.640000001],[308132.3,566994.6],[305603.9,564571.9],[302612.13,564478.140000001],[300235.69,566159.66],[299999.9816,566893.911800001],[299012.17,569971.029999999],[298316.86,568245],[299225.151,566253.192],[297275.55,565603.939999999],[298710.03,565597.25],[298230.17,560053.300000001],[298638.4929,559999.9954],[299319.378,559911.108999999],[299887.694,558074.572000001],[297702.876,555412.495999999],[297732.846,554286.388],[291120.886,555282.197000001],[292639.91,556732.039999999],[289260.097,555296.089],[287124.7387,552887.32],[286805.8871,552725.5418],[285311.6168,552388.6217],[283775.7134,554568.932700001],[283354.67,556181.52],[282880.84,553382.33],[284059.2,551583.800000001],[283046.2,551762.6],[281825.96,554096.720000001],[280649.7,553784.74],[282249.9,551672.4],[281122.6,552245.9],[280424.09,551714.199999999],[282679.4318,549378.454],[282428.727,548919.5821],[279999.9847,547561.9583],[272405.9,543317],[271062.38,544028.18],[268556.61,543577.93],[268079.4863,544064.9231],[267371.8922,545160.158600001],[268647.65,548650.57],[268069.38,549792.130000001],[267217.3,548510.4],[266956.6,548947.199999999],[267530.9643,550688.085100001],[267366.7684,550501.626],[265708.4,548618.4],[265692,545000],[264632.38,544647.619999999],[265659.7485,544107.136399999],[265655.6119,544084.9286],[265352.2434,543221.110099999],[264581.5795,543473.777000001],[264288.28,544552.800000001],[263702.6204,544593.4603],[263504.5003,544909.699200001],[263678.712,545726.289000001],[262526.569,544430.442600001],[262525.9845,544430.6338],[261200.49,544964.550000001],[261131.3334,545040.341700001],[259970.3125,547176.7531],[259959.1,548149.4],[258130.6,548764],[257893.2384,549269.638900001],[257903.72,549324.65],[257871.541,549315.8597],[257506.02,550094.51],[258000.73,551362.08],[257225.72,551694.6],[257352.54,552727.960000001],[258733.9,554783],[257180.41,554567.189999999],[255118.58,551501.859999999],[254053.2535,551761.5513],[252004.7736,552399.8784],[248456.64,554603.310000001],[247185.42,556262.970000001],[246728.24,558569.119999999],[247375.78,558807.34],[246594.44,558654.119999999],[246442.7837,560000.033199999],[246335.1,560955.699999999],[246311.5,560388.199999999],[246218.7079,560000.042199999],[245897.5,558656.4],[246417.6997,558078.4999],[244324.99,557068.01],[244059.19,556158.609999999],[244734.16,555695.82],[244635.6,554817.300000001],[245023.43,550804.220000001],[248793.8,549042.199999999],[249592.9,547420.800000001],[249214.8,546491.6],[247760.1,546797.199999999],[248296.89,545075.02],[247573.3,544480.800000001],[248241.8759,544098.9671],[247849.5,541017.800000001],[247835.2218,539940.1216],[247646.9,538971],[248712.2,537382],[245807.18,533995.09],[240022.2,536700.199999999],[240000.0097,536716.489800001],[238354.947,537924.1229],[237281.03,539089.550000001],[236843.6941,539033.526799999],[236310.1326,539425.2119],[236279.0784,539517.3857],[236253.8466,540000.043400001],[236224.99,540552.039999999],[234533.7,541170.300000001],[232826.08,545546.109999999],[228391.769,548258.252],[226086.641,551034.221999999],[221716.7867,552103.2064],[221237.1422,552540.5758],[220000.0245,554778.707699999],[219266.69,556105.42],[218226.338,555747.066],[216828.7,556575.810000001],[216335.8267,556336.875499999],[215587.2801,556139.5735],[215378.56,556588.699999999],[214912.91,556005.279999999],[215443.545,556110.950200001],[215650.08,556004.439999999],[216166.953,556255.009099999],[216686.524,556358.476],[217109.49,555232.755999999],[211520.9,552595.9],[209779.6,549485.1],[212301.132,542594.955],[212612.1164,539999.9804],[212866.31,537878.890000001],[215286.556,535647.506999999],[214062.99,532536.23],[214419.9,530916.9],[215942.0444,530646.6768],[215985.0113,530637.1306],[214543.4,530255.1],[211517.3,531513.9],[208881.5,533921.6],[208503.4402,536801.8935],[208529.8729,536820.3145],[210151.3,537929.800000001],[208998.2355,539883.7081],[209063.4354,539999.9584],[209666.1,541074.5],[207431.4852,541888.9232],[207433.8238,541899.5526],[207875.8,543535.6],[207004.0733,544026.005799999],[206770.8879,544168.938899999],[206500.02,547319.57],[204501.8,548389.6],[203863.4,550387.1],[200000.013,553962.2851],[199587.4882,554344.0363],[198633.7315,555237.9736],[196870.9044,559999.960899999],[195951.9,562482.5],[196683.7,568211.5],[196519.5661,568489.178200001],[196728.8412,570414.861500001],[197129.91,571362.390000001],[198214.19,572786.199999999],[199431.4,572552.800000001],[199999.9733,572816.535499999],[201910.3,573702.65],[204136.81,567978.17],[203234.8,567537.9],[203356.2846,566748.943399999],[203393.6,564466.67],[203794.6018,563902.3826],[203909.5,563156.199999999],[205826.9379,561041.2807],[207965.3,561626.300000001],[208051.6952,562735.8861],[208367.05,563153.57],[208137.1702,563833.653899999],[208171.92,564279.949999999],[205664.3114,571245.328],[209981.502,572595.9956],[209723.0028,573786.504799999],[210838.5019,573669.9981],[212881.0011,576913.499500001],[212774.5003,578365.5021],[213444,578542],[215227.0007,577871.995999999],[215775.9995,575402.5011],[218581.001,575938.4988],[219202.9625,574787.4987],[221051.5012,575799.4987],[221834.499,574282.0041],[222723.9992,575447.991599999],[223660.0007,574980.503],[224953.9982,575969.499700001],[226590.5009,574814.000800001],[231042.0274,576745.504000001],[231068.998,575896.5001],[231785.5,576121.5],[232466.5006,578035.999199999],[230201.181,580494.093],[230572.2323,583843.7191],[232900.0093,586078],[235401.0006,586117.495100001],[236679.4963,587856.997099999],[242159.5173,587092.0057],[243296.0012,588978.1962],[244494.5033,588775.5042],[244510.1029,585538.300899999],[245154.5039,585487.4954],[246566.9983,586812.496099999],[246678.9003,589863.502800001],[247852.0983,592406.8048],[248793.0989,592266.8049],[250102.497,598518.995200001],[253227.4988,602148.496200001],[254036.9989,604230.500299999],[256785.0036,603565.500600001],[257994.9993,605324.997],[260309.2973,604894.700200001],[262207.5,602174.9987],[264225.0005,601025.9976],[265919.5007,602947.497500001],[265635,605179],[267850.9963,608340.5033],[266530.68,610356.41],[267729.96,615115.92],[273388.42,617677.48],[272510.5036,618877.4976],[274517.4999,620706.0042]]]]},"properties":{"LAD22CD":"S12000006","LAD22NM":"Dumfries and Galloway","BNG_E":270645,"BNG_N":579856,"LONG":-4.02863,"LAT":55.09621,"OBJECTID":322,"GlobalID":"937c7615-22a2-482e-adc6-ac5b7987c759"}},{"type":"Feature","id":323,"geometry":{"type":"Polygon","coordinates":[[[258813.5022,645129.286499999],[260582,641524.5],[260246.03,640188.060000001],[261455.8276,639241.2247],[261201.5767,637903.126700001],[263075.91,636727.91],[261819.8698,636307.257300001],[261267.0155,634357.5262],[258660.4994,632111.999299999],[259564.9991,631852.503599999],[259752.5,630779.500700001],[264682.5024,633101.9959],[266008.0032,632275.002599999],[268835.4985,632401.496400001],[271564.0035,635081.499299999],[274154.5011,631795.000299999],[275457.5,631882.5],[275686.302,630960.932],[276649.4993,630856.9989],[276497.9965,629195.0043],[272115.1673,623937.702099999],[272973.002,622844.0022],[272612.0003,621753.0045],[274517.4999,620706.0042],[272510.5036,618877.4976],[273388.42,617677.48],[267729.96,615115.92],[266530.68,610356.41],[267850.9963,608340.5033],[265635,605179],[265919.5007,602947.497500001],[264225.0005,601025.9976],[262207.5,602174.9987],[260309.2973,604894.700200001],[257994.9993,605324.997],[256785.0036,603565.500600001],[254036.9989,604230.500299999],[253227.4988,602148.496200001],[250102.497,598518.995200001],[248793.0989,592266.8049],[247852.0983,592406.8048],[246678.9003,589863.502800001],[246566.9983,586812.496099999],[245154.5039,585487.4954],[244510.1029,585538.300899999],[244494.5033,588775.5042],[243296.0012,588978.1962],[242470.5,592226],[244094.5013,593523.4976],[244300.4441,596426.0812],[245705.6971,598228.4998],[243952.3069,601767.562100001],[245351.34,604233.800000001],[243605.6,605115.58],[243125.7984,606245.003599999],[241759.19,606170.98],[239757.4726,609099.508400001],[237516.69,610045.789999999],[240462.19,612845.890000001],[239954.27,613796.93],[238959.1,614290.5],[237714.9412,613262.846100001],[236232.6,614478.800000001],[235211.72,614309.960000001],[237300.07,615286.85],[237775.0669,617704.067199999],[239657.0931,617361.400900001],[240060.41,615708.119999999],[241660.99,614535.57],[244968.7,615845.1],[244793.67,617957.08],[243715.1958,617786.901799999],[242361.8,618888.050000001],[243567.0995,619945.200999999],[243213.84,621021.34],[242426.9421,620992.6368],[242474.85,622418.25],[243900.2982,624123.096100001],[244710.697,623835.398399999],[245920.198,624932.804300001],[246016.7971,626105.5986],[247486.2979,625655.0976],[247346.2968,626309.000399999],[248595.102,626731.0996],[248105.403,631480.0002],[246449.0032,632389.1],[246418.1997,633164.597999999],[245299.0976,632554.102700001],[241296.6975,633068.5955],[241401.5005,633734.105],[240044.8004,634197.4024],[240278.4985,636037.295700001],[238238.8023,636243.5966],[238292.7002,637244.200200001],[236767.5041,636864.198999999],[237602.0032,637468.7959],[237088.8966,639110.396],[238987.6022,639819.802999999],[238337.5039,640669.299799999],[239170.7003,642207.7994],[243050.4962,643155.598099999],[243309.4984,644101.7973],[240885.203,643566.1006],[239929.9962,644440.600299999],[238253.899,642429.4959],[236869.7016,642007.9966],[236244.7013,642386.598200001],[236719.0973,643230.5966],[234177.6974,645268.4033],[235931.1993,645651.703600001],[238058.9033,649554.296499999],[241287.6032,653032.300899999],[242794.8994,655039.896299999],[243648.5023,654952.701199999],[244077.196,653500.197000001],[245801.1057,653570.539100001],[245091.4072,651552.431399999],[246955.19,651766.85],[249282.47,649298.49],[250331.2726,650305.069],[252199.9993,647394.504699999],[253454.5019,647670.4957],[253941.4964,646317.503],[258813.5022,645129.286499999]]]},"properties":{"LAD22CD":"S12000008","LAD22NM":"East Ayrshire","BNG_E":255398,"BNG_N":624935,"LONG":-4.29057,"LAT":55.49674,"OBJECTID":323,"GlobalID":"7d0d7893-f7db-4a7a-b508-e086c7b8090c"}},{"type":"Feature","id":324,"geometry":{"type":"Polygon","coordinates":[[[377278.2601,672541.0351],[370895.5032,665789.9991],[368548.0024,668874.496099999],[365441.9972,668853.0023],[364917.9988,668312.9969],[365423.9982,667578.997],[364447.9974,666703.997400001],[366716.5022,664362.9976],[366642.0988,663212.3969],[365347.5005,660791.4999],[363696.5013,661517.0022],[362876.497,659652.4959],[359483.4977,660235.9989],[359815.9962,661043.9976],[358191.9995,661685.0041],[353745.9987,659686.496200001],[351430.9999,661505.4955],[347072.9987,658736.098200001],[346103.0002,661074.098999999],[343810.6012,662316.0035],[344107.0029,663266.2015],[342911.403,662975.104800001],[341443.5018,663765.398600001],[339656.6982,669173.000700001],[338289.3496,669301.054099999],[336462.3966,668081.7031],[332735.497,670112.1019],[332085.8027,671460.196],[332836.4695,673169.9066],[334552.7992,673392.902799999],[334347.0025,672709.6983],[334973.8992,673898.3981],[336780.4075,673789.4114],[336900.4,673759.1],[336932.6214,673780.2283],[337024.1986,673774.703500001],[337559.2226,674191.1061],[339928.9865,675745.0187],[339999.977,675755.239],[342976.8029,676183.8039],[344829.7979,678374.2969],[344567.4261,680000.008300001],[344558.0984,680057.805],[347586.3032,680556.0024],[346237.6998,681472.300100001],[346144.1019,683083.9987],[347867.097,683467.898800001],[349295.1993,685802.500600001],[351130.0964,686150.401000001],[352949.6,685375.402799999],[358958.1811,685360.6359],[360390.0037,684733.383300001],[361450.9012,684075.095000001],[361841.7995,682408.902000001],[363833.798,681300.1993],[363268.0961,680567.3991],[363523.864,680000.016100001],[363747.9999,679502.8038],[363438.2487,680000.016899999],[363213.8024,680360.2984],[363131.443,680000.02],[362956.9028,679236.5001],[362357.7012,679542.2026],[361913.0038,679479.4005],[361183.3984,678386.703299999],[362221.036,679407.7258],[362423.9256,679360.5163],[362749.9023,678466.2006],[363854.8971,678494.102600001],[364223.2123,680000.009099999],[364246.3974,680094.804400001],[364317.793,680000.008199999],[365598.6039,678299.3983],[366280.7013,679270.000499999],[368163.4033,679397.8039],[368423.8977,678600.801999999],[370595.8327,677878.869200001],[371208.9,677457.199999999],[371711.9752,677507.8729],[372319.9035,677305.8027],[373916.6008,675365.4981],[374626.8769,675452.4812],[375147.1937,674934.1974],[375530.7034,673787.4998],[377193.3035,672607.197699999],[377278.2601,672541.0351]]]},"properties":{"LAD22CD":"S12000010","LAD22NM":"East Lothian","BNG_E":354854,"BNG_N":672351,"LONG":-2.72435,"LAT":55.94207,"OBJECTID":324,"GlobalID":"d06dddf4-5551-40ff-9fa4-e13ee513d3de"}},{"type":"Feature","id":325,"geometry":{"type":"Polygon","coordinates":[[[258954.3002,656913.2267],[258743.4035,655560.0974],[256898.4969,655133.499500001],[257318.5003,653563.898800001],[260481.0996,650478.1021],[260448.0039,646467.0002],[258813.5022,645129.286499999],[253941.4964,646317.503],[253454.5019,647670.4957],[252199.9993,647394.504699999],[250331.2726,650305.069],[249282.47,649298.49],[246955.19,651766.85],[245091.4072,651552.431399999],[245801.1057,653570.539100001],[244077.196,653500.197000001],[243648.5023,654952.701199999],[242794.8994,655039.896299999],[241287.6032,653032.300899999],[240057.8342,655507.115499999],[240673.62,656839.48],[241905.7886,656335.1143],[243619.15,658088.5],[243697.2998,659280.651799999],[245088.5022,658823.903100001],[245548.9971,659579.796700001],[249661.6996,660127.9998],[250907.8004,661444.302999999],[251761.5022,660808.1951],[251385.5027,658266.2027],[253798.6012,657973.5965],[254308.7974,659690.904899999],[256435.1986,660231.5002],[258425.5091,659840.5053],[257881.3292,657699.5625],[258954.3002,656913.2267]]]},"properties":{"LAD22CD":"S12000011","LAD22NM":"East Renfrewshire","BNG_E":251930,"BNG_N":653115,"LONG":-4.36058,"LAT":55.74868,"OBJECTID":325,"GlobalID":"b7f3cec9-8d48-40f7-996f-ae84481e6d24"}},{"type":"Feature","id":326,"geometry":{"type":"MultiPolygon","coordinates":[[[[57418.5027000001,779888.998600001],[55837.5039999997,779365.498500001],[54881.5462999996,780000.0359],[54459.8726000004,780279.9309],[54535.1343,780310.853800001],[55573.0023999996,780662.997099999],[57153.7357999999,780000.041200001],[57418.5027000001,779888.998600001]]],[[[56969,782001],[55723.5,781415],[54247.0323999999,781908.634500001],[55452.8074000003,783234.047599999],[55470.6036999999,783253.556600001],[54894.5,784362],[57095.682,784984.3014],[57057.6865999997,783919.988299999],[56969,782001]]],[[[61139.5333000002,787418.299699999],[60632.5,786716],[59999.9641000004,786845.8926],[58857.5,787080.5],[59235.5,788198.5],[59999.9529999997,788254.082699999],[60239.5,788271.5],[60285.6146999998,788246.1263],[61139.5333000002,787418.299699999]]],[[[65202.2880999995,790441.010500001],[64715.4023000002,790324.780999999],[63552.3687000005,790930.977600001],[62954.1645,791969.3126],[62883.5,792230.5],[63673.4381999997,792604.992900001],[63806.3912000004,792561.649700001],[65356.4291000003,791949.311000001],[65404.0536000002,791812.228499999],[65202.2880999995,790441.010500001]]],[[[68994.6886999998,794050.685900001],[68705.8054,793278.543400001],[68431.0020000003,794214.498],[68932.0665999996,794366.054],[69095.6611000001,794400.2445],[68994.6886999998,794050.685900001]]],[[[71725.4500000002,801571.390000001],[71725.4606999997,801536.370100001],[71047.7259999998,801936.8698],[71725.4500000002,801571.390000001]]],[[[75425.8755000001,802020.778899999],[74759.0039999997,801985.003699999],[75232.8491000002,802549.65],[75236.7884999998,802553.649],[75257.4752000002,802528.402899999],[75425.8755000001,802020.778899999]]],[[[74327.0126999998,802726.9199],[74491.9959000004,801763.497],[73636.4966000002,802763.001],[74192.6053999998,802748.033],[74327.0126999998,802726.9199]]],[[[75432.2795000002,804692.5228],[76203.0027999999,803709.9999],[76532.9198000003,804062.1801],[76604.9989999998,804016.0023],[76549.9961999999,803198.496300001],[74645.8932999996,804025.015000001],[74767.2916999999,804147.5559],[75432.2795000002,804692.5228]]],[[[77043.8455999997,805367.521500001],[76979.6996999998,804224.3697],[76372.2976000002,804480.426000001],[75815.5014000004,804879.994999999],[76357.6579999998,805107.8783],[77043.8455999997,805367.521500001]]],[[[63063.6600000001,796811.550000001],[65660.2596000005,795814.6307],[64667.5246000001,796020.941400001],[64513.9000000004,796063.83],[63395.4759999998,794798.009],[65276.6069999998,794646.691],[65207.0801999997,794159.353499999],[65198.4263000004,794117.226600001],[62376.6909999996,793487.536],[61739.2690000003,794962.5459],[61861.2500999998,794948.2873],[62718.6289999997,794746.674000001],[62983.2560000001,795405.198000001],[62707.2270999998,795543.088099999],[62712,795615],[62040.2203000002,795876.290999999],[61150,796321],[61947,797240],[61717.8601000002,797523.676100001],[61593.4380999999,797858.1074],[63692.4903999995,797520.9739],[63421.4638,797698.4944],[63772.7999999998,797632.529999999],[62047.9083000002,798745.4114],[62322.2139999997,799559.931299999],[62581.2609999999,800090.339299999],[64773.5,800531],[65139.4002,801135.852],[65155.8499999996,801140.689999999],[65148.1222999999,801150.270099999],[65220.0800000001,801269.220000001],[64565.1341000004,801873.0076],[64478.6145000001,801980.267000001],[64976.8046000004,802089.079399999],[65221.2599999998,802082.58],[65209.1654000003,802139.830600001],[65404.8859999999,802182.579],[65246.4929999998,803222.922],[66134.0700000003,803734.390000001],[64559.8141999999,804926.126599999],[64567.5508000003,804927.2697],[67246.0109999999,804862.691],[68433.8805999998,805498.517100001],[68660.5,805532],[68687.7089999998,805634.3828],[69007.1710000001,805805.380000001],[69365.6600000001,808185.400599999],[69712.5198999997,809490.577299999],[71426.9830999998,807589.724300001],[69635.8650000002,805266.045],[71872.0044,803604.249299999],[70840.8753000004,804205.6985],[70586.9699999997,804371.57],[70654.1893999996,804314.5909],[70620.4000000004,804334.300000001],[71806.2143000001,803263.5814],[70426.1100000003,803202.109999999],[71553.3099999996,802348.926000001],[72157.0300000003,802860.529999999],[73433,801646],[73377.9808999998,800559.831700001],[71810.5888999999,801486.0646],[71571.8099999996,802215.4],[70842.5800000001,802047.5],[70894.6672999999,802019.410599999],[71725.6891000001,800788.9221],[71725.7484999998,800594.681],[70663.1642000005,800274.154200001],[70648.5266000004,800272.0583],[70647.9232000001,800269.5568],[70646.9988000002,800269.277899999],[70645.9899000004,800261.540999999],[70582.9035,799999.9816],[70262,798669.5],[69871.1567000002,798707.633300001],[69451.7599999998,798872.23],[69464.8656000001,798747.273800001],[69328.2800000003,798760.6],[69607,797314.5],[66784.6232000003,797270.6801],[66844.3323999997,797912.5229],[66877.2000000002,798145.460000001],[65661.5,797857],[65648.3120999997,797922.495300001],[65519.2400000002,798659.98],[65517.2303999998,798573.4893],[65492.54,798696.109999999],[65465.0343000004,797405.108200001],[64668.9661999997,797520.1602],[63812.8200000003,797645.630000001],[63063.6600000001,796811.550000001]]],[[[74386.1891999999,808458.180600001],[72909.6881999997,807592.371300001],[72738.4168999996,807836.572899999],[72632.0285999998,808405.459000001],[73403.9281000001,809681.0261],[73434.676,809707.0371],[74440.4972999999,808494.000499999],[74386.1891999999,808458.180600001]]],[[[70683.0799000002,810266.2731],[69748.9998000003,810150.496400001],[70025.5911999997,810444.5722],[70267.3614999996,810662.0886],[70638.5088999998,810318.0198],[70683.0799000002,810266.2731]]],[[[78474.5499999998,812363.17],[78977.46,812043.98],[80992.9919999996,812328.9268],[80242,809802.5],[79999.9622999998,809807.5713],[78929.5,809830],[78962.6919999998,809812.622500001],[78946,809814.5],[79387.8660000004,809590.024499999],[79999.9666999998,809269.561799999],[80193,809168.5],[79999.9686000003,808967.4131],[79298.9192000004,808237.1076],[79233.2772000004,808171.3016],[78241,809227.5],[78373.6900000004,812418.15],[78581.6498999996,812411.4727],[78474.5499999998,812363.17]]],[[[78814.5729999999,828228.784600001],[78789.0800999999,828226.157600001],[78781.5961999996,828227.8017],[78799.9990999997,828239.1985],[78814.5729999999,828228.784600001]]],[[[83878.0483999997,840354.9976],[83849.5960999997,840334.396199999],[83860.1579999998,840359.137399999],[83878.0483999997,840354.9976]]],[[[83853.8010999998,840948.7004],[83811.5843000002,840939.5668],[83468.9243000001,841020.970699999],[83465.2030999996,841023.598999999],[83853.8010999998,840948.7004]]],[[[88471.9023000002,847427.137800001],[87969.4965000004,846524.0046],[88423.9275000002,846688.952400001],[88366.9990999997,845812.9981],[87534.3777999999,845541.342800001],[86558.9973999998,845356.4988],[86706.3624999998,845271.190400001],[86521.8119000001,845210.978],[85807.8373999996,845495.7271],[85682.0213000001,845567.4333],[85723.7551999995,845650.375600001],[86761.5299000004,847010.348099999],[88476.5208999999,847498.203199999],[88471.9023000002,847427.137800001]]],[[[80279.5437000003,847565.0141],[79999.9884000001,846817.0108],[79792.5499999998,846261.970000001],[79999.9984999998,846204.793500001],[80610.2400000002,846036.6],[80478,844977],[82357.6366999997,845002.4581],[82922.9611999998,844651.1337],[83490.2127,843916.394099999],[83521.5754000004,843758.6613],[82512.5,843766],[82945.5,844236],[82369.96,844525.48],[80879,843785],[81904.7811000003,843539.2656],[82951.5762999998,843099.173800001],[84626.1366999997,841608.3463],[84908.2268000003,841285.4947],[84835.2467999998,840983.796499999],[83127.9906000001,841101.964500001],[82930,841149],[83094.6200000001,840536.279999999],[83420.6398,840460.8402],[83614.7000000002,840172.1],[84038.1348000001,840317.9542],[85241.5,840039.5],[86096,840784],[86091.4512999998,840771.227499999],[85609.2585000005,839800.8311],[85095,839970.5],[85375.5,839350],[83299,839205.699999999],[83330.4667999996,838807.120100001],[83333.0637999997,838664.3813],[82642.1189999999,839109.171499999],[81591.5,839805],[81624.5628000004,839764.2151],[81550.8300000001,839811.68],[82801.4000000004,838138.1],[84284.5767999999,838085.787599999],[84374.5014000004,837965.5043],[84397.7890999997,838081.794500001],[84926.3306,838063.1526],[85442.6968,838027.6635],[85697.5300000003,835423.92],[87058,835944],[87388.4128,835050.1665],[86685.7067,833404.8961],[86566.2971999999,833138.395199999],[86194.4210999999,833202.381200001],[85141,833392.5],[83387.5,831085.5],[83394.4387999997,831068.0613],[83394,831067.5],[83438.2079999996,830958.0602],[83917.5,829753.5],[82255.2862,827204.351399999],[82205.2125000004,827128.0397],[81606.1091999998,827210.816199999],[80095.4392999997,827458.7557],[80242.0240000002,828266.861400001],[80278.3680999996,828370.467599999],[80434.0805000002,828248.553300001],[81038.5,827638.5],[80827.6150000002,827940.437100001],[81295,827574.5],[80257.4391999999,828756.793],[80232.5,828792.5],[80227.4863999998,828790.924000001],[80025.4000000004,829021.199999999],[79999.9557999996,828940.9735],[79921.9007999999,828694.8631],[78256.1824000003,828171.243899999],[78172.2999999998,828162.6],[77691.0999999996,829619.699999999],[77631.2136000004,829275.976600001],[77485,829593.1],[77471.5023999996,828968.9772],[76644.2400000002,829985.140000001],[76836.7580000004,829275.0041],[76592.0899999999,829755.130000001],[76998.8288000003,828677.1778],[77276.9199999999,827651.390000001],[79133.5,827270],[79042.2394000003,827394.1677],[79746.0267000003,827934.222200001],[79783.5,827942],[79999.9917000001,826943.284499999],[80132.5,826332],[80181.2654999997,826328.285599999],[80187.5,826302],[82090.9633999998,825649.502699999],[82407.3136999998,825232.0932],[82265.3887,824655.9781],[81976.5,823701.5],[82096.9426999995,823547.036499999],[83066.7658000002,820367.501700001],[83072.5,820301.5],[83069.8842000002,820297.9101],[81762.5886000004,819085.6226],[81216.4653000003,819018.8815],[79177.5,820198],[79170.8169999998,820107.0614],[78450.7999999998,820707.199999999],[79052.4903999995,819999.949899999],[79154.1628999999,819880.440199999],[79103.659,819193.210000001],[80156.0054000001,818702.8357],[80163.0674000001,818694.534700001],[79996.8309000004,818747.8092],[78349.2000000002,819304.33],[78016.5078999996,820000.0254],[77838.5999999996,820372.050000001],[76958.6853,820000.0063],[76278.0788000003,819712.2336],[76262.5499999998,819716.029999999],[76272.4365999997,819709.847999999],[76256.9500000002,819703.300000001],[77404.1694999998,817737.6194],[77387.9199999999,817711.4],[77416.4683999997,817716.5461],[77465.9400000004,817631.779999999],[79999.9918999998,818067.225400001],[80457.2262000004,818145.795499999],[82172.9482000005,817466.045299999],[82730.5,817209],[82729,815312],[82910.4441,815504.5107],[82920.5,815381],[83359.3751999997,815980.823100001],[83475,816103.5],[84656,815011.5],[84377.6516000004,814268.2399],[83508.5,814455.5],[84182.4797,814281.8992],[83207.5,813630.5],[83418.5259999996,812701.6722],[83162.5072999997,812822.6458],[80474,814293],[80233.6398,814206.5908],[80000.0022999998,814316.9889],[79181.6789999995,814703.662],[78104.5499999998,813442.630000001],[77977.7560000001,814161.209000001],[74763.9220000003,814263.671],[73706.3260000004,815421.43],[73383.0460000001,816878.2382],[73383.0499999998,817027.75],[73346.8563000001,817041.321],[73112.8436000003,818095.8608],[73177.5,818163.699999999],[73055.0514000002,818356.2917],[72800.5750000002,819503.048],[72797.3755999999,819999.9989],[72796.3951000003,820152.300899999],[73120.7000000002,820714.9],[72784.1273999996,822057.797499999],[72752.1490000002,827024.902000001],[72196.6299999999,829287.541999999],[70867.04,829898.802999999],[72680.5300000003,830443.560000001],[72752.7573999995,830818.8697],[72764.9000000004,830824.4],[72989.5958000002,832049.535],[73559.8849999998,835012.886],[75100.0810000002,836355.379000001],[75570.25,835866.060000001],[74977.9330000002,837023.827],[75079.9815999996,839769.999299999],[75162.4199999999,841391.4],[75142.6854999997,841457.386299999],[75186.6289999997,842639.923],[73902.2845000001,846108.651000001],[73955.1187000005,846130.327],[74924.4919999996,845929.854],[75485.8865999999,846758.345799999],[76246.0521999998,847070.214199999],[77054.3169999998,846663.257999999],[76625.3099999996,846368.279999999],[79349.0300000003,847298.289999999],[79990.0199999996,846879.43],[79999.9869999997,846903.147299999],[80278.5851999996,847566.095699999],[80279.5437000003,847565.0141]]],[[[86681.1303000003,847784.0274],[85954.5805000002,847755.397600001],[85913.4998000003,847772.997],[86458.2582,847978.729599999],[86620.4852,847964.5579],[86681.1303000003,847784.0274]]],[[[88949.9992000004,854765.4955],[88966.4974999996,854724.997099999],[88886.9985999996,854784.0002],[88949.9992000004,854765.4955]]],[[[80283.9000000004,855893.5],[81920.1100000003,855670.77],[82483.9060000004,856255.5231],[83004.4036999997,856175.646600001],[83312.5,856014.5],[83079.5361000001,855804.260299999],[82801.2999999998,855761.699999999],[83003.0970999999,855735.2775],[82678.9400000004,855442.74],[84911.1177000003,855333.135399999],[84639.682,854670.0998],[83469,854884.5],[84313.5,853695.5],[84986.7000000002,854034.9],[85447,853292],[85355.7703,854719.741699999],[85619.9102999996,854902.6164],[85843.2608000003,854724.7851],[85866.7205999997,854521.077199999],[85480.7000000002,854532.4],[85715.5,853754.5],[85938.4233999997,853898.4637],[85956.5,853741.5],[86058.3289000001,853975.898600001],[86626,854342.5],[87895,853189],[86307.2083000001,853259.6381],[86174,853344.5],[86144.8426999999,853266.861500001],[85613.5,853290.5],[85726,852207.5],[87067.9012000002,851571.940199999],[86738.0087000001,851615.306399999],[85620.8536999999,851787.1764],[85606.4737999998,851817.5096],[85188.5,853184],[85395.1727999998,852263.231000001],[85240.5,852589.5],[85149.1512000002,851531.1831],[84839.5865000002,851441.758199999],[84321.5,852317.5],[84322.2927999999,852122.6281],[83997,852557],[84110.5,851753.5],[83470,851939.5],[84255,851089],[83093,850976.5],[85168,849833],[85952.2781999996,849866.850199999],[86068.5,849811],[86008.0378,849869.2568],[86743.5,849901],[85412.5,850777.5],[87127.5,850462],[87245.3718999997,850306.5582],[87774.3864000002,849500.992699999],[87864,849064.5],[86554.4199999999,849426.560000001],[87405.4702000003,848298.3628],[85785.5,848037.5],[85898.9831999997,848027.5864],[84630.0999999996,847952.9],[85509.5,846726.5],[83605.6365,847667.2788],[83537.2978999997,847711.204700001],[83540.6497,847699.3915],[81105.2999999998,848902.800000001],[81547.4458999997,848553.9987],[81045,848787.800000001],[82239.0522999996,848008.4023],[82397,847883.800000001],[83994.2000000002,846541.199999999],[82364.8174000001,847873.1776],[81233.5999999996,847499.800000001],[81501.7599999998,846709.119999999],[79999.9616,848557.841600001],[79304.5800000001,849413.859999999],[77347.5257000001,849647.151000001],[76437.2235000003,849933.441299999],[76328.1184,850831.0601],[76440.5,850983.1],[76271.5788000003,851296.217700001],[75985.7719999999,853647.580700001],[76169.6500000004,853938.99],[75865.6623,854635.7358],[75802.2290000003,855157.607999999],[77698.1500000004,855492.698999999],[78500.7688999996,857324.5111],[79022.6050000004,857445.3584],[79592.2319999998,857508.001],[79658.2510000002,856367.339],[79999.983,856359.3399],[80719.4000000004,856342.5],[80283.9000000004,855893.5]]],[[[91985.4912,857277.3663],[91475.1948999995,856831.775599999],[91291.1971000005,856914.8369],[91171.7461000001,857646.985099999],[91223.4387999997,857627.6261],[92010.8655000003,857311.168099999],[91985.4912,857277.3663]]],[[[90494.0022999998,857565.504000001],[90941.9576000003,856698.691],[90960.4409999996,856654.775599999],[90603.3797000004,856394.74],[90321.5,856441],[90438.8826000001,856274.942399999],[90003.0005999999,855957.5043],[91001.9970000004,855468.0044],[90012.4989999998,855278.498600001],[90199.4866000004,854601.787799999],[89603.6871999996,853965.779899999],[89528.2603000002,853920.0407],[88937.2917999998,854988.6143],[89154.5014000004,855655.500700001],[88208.7903000005,856305.8716],[88118.4075999996,856469.2992],[88351.5325999996,857238.153000001],[88370.5363999996,857285.1548],[89751.3333999999,856482.4485],[89850.1382999998,856425.0097],[89930.9965000004,856378.003900001],[89112.2149,857534.1329],[89434.8366999999,857672.328299999],[90494.0022999998,857565.504000001]]],[[[85777.2999999998,857892.800000001],[86329.9900000002,857273.539999999],[87405.3699000003,857423.876599999],[87491.3974000001,857079.5513],[87218.5,856329.5],[87928.4649999999,855330.186100001],[88052.7314999998,854832.808700001],[86642.4857999999,855323.2184],[86683.7999999998,855852.699999999],[86577.5475000003,855776.849300001],[86547.5,856007],[85731.6911000004,855323.338199999],[85699.0876000002,855339.874],[84238.29,857433.15],[83092.9900000002,856872.52],[84857.6399999997,858043.369999999],[84891.7169000003,858026.752499999],[84888.5,858023],[84898.2551999995,858023.564099999],[85582.9000000004,857689.699999999],[85496.9128999999,858058.1821],[86385.3863000004,858109.559],[86735.5,858036],[85777.2999999998,857892.800000001]]],[[[63577.7045999998,860821.496300001],[63367.0009000003,860661.9976],[63377.2890999997,860739.907],[63577.7045999998,860821.496300001]]],[[[64627.2736999998,861616.0002],[64611.25,861603.8706],[64586.5032000002,861617.5041],[64617.3974000001,861632.799699999],[64627.2736999998,861616.0002]]],[[[59795.0014000004,863008.9958],[59764.9976000004,862814.001599999],[59628.5005999999,862939.9955],[59795.0014000004,863008.9958]]],[[[64471.9699999997,861498.438200001],[63589.5756999999,860830.4825],[63500.4812000003,861672.802200001],[63604.2857999997,862458.881200001],[63641.0071,862483.654999999],[64612.6309000002,863099.841800001],[64650.6030000001,863074.210200001],[64760.6831,861955.2358],[64471.9699999997,861498.438200001]]],[[[59802.9990999997,863092.5019],[59725.0007999996,863091.0023],[59728.0020000003,863136.9991],[59802.9990999997,863092.5019]]],[[[59999.9724000003,863052.866900001],[59792.9978,863024.5013],[59977.4976000004,863153.0046],[59999.9709999999,863108.744899999],[59999.9724000003,863052.866900001]]],[[[59521.9992000004,863262.0034],[59464.4981000004,862435.9998],[59054.9989,862855.999600001],[59521.9992000004,863262.0034]]],[[[59999.9688999997,863192.1493],[59785.5031000003,863155.503799999],[59989.7992000002,863303.8014],[59999.9663000004,863295.2181],[59999.9688999997,863192.1493]]],[[[59999.9649,863351.7294],[59935.4972000001,863347.9987],[59999.9638,863395.862199999],[59999.9649,863351.7294]]],[[[62534.0023999996,862328.000700001],[60232.5007999996,862030.9957],[62279.6072000004,863517.9046],[62303.3720000004,863478.751],[62534.0023999996,862328.000700001]]],[[[57713.9973999998,864053.9967],[57765.9989999998,863933.5011],[57693.5001999997,863965.502],[57713.9973999998,864053.9967]]],[[[57186.5031000003,864658.503599999],[57248.4978,864498.499399999],[57148.9963999996,864592.002699999],[57186.5031000003,864658.503599999]]],[[[75510.6900000004,865786.93],[76998.6909999996,864313.509],[75556.3890000004,864446.983999999],[74987.5290000001,865682.515000001],[75265.3890000004,866299.452],[75510.6900000004,865786.93]]],[[[91669.5005999999,871738.9969],[92100,870935.9967],[91096.9966000002,871619.5011],[91669.5005999999,871738.9969]]],[[[93016.0389,874179.278000001],[93083.9985999996,874079.4969],[92842.3028999995,874191.404899999],[92884.4963999996,874224.198799999],[93016.0389,874179.278000001]]],[[[98885.8261000002,874325.9978],[99013.3053000001,873476.4494],[98983.1809,873491.309900001],[98346.4994999999,873955.002499999],[98744.5959000001,874726.1511],[98885.8261000002,874325.9978]]],[[[84432.0199999996,874931.869999999],[84427.2189999996,874820.025599999],[84272.5489999996,874977.2116],[84432.0199999996,874931.869999999]]],[[[95016.5,875126.5],[96224.2999999998,873297],[97005.4264000002,873401.7744],[97917.6427999996,872552.1525],[97986,872444],[96020.0544999996,869714.996400001],[95498.3777999999,869014.3399],[93727.2999999998,871118.9],[93935.4568999996,871300.251],[94899.4000000004,871777.359999999],[93949.1462000003,871312.1775],[94742,872002.93],[92867.0599999996,871496.41],[91576.5,872213],[91590.4247000003,872253.8018],[91627.5,872243.5],[91602.5499999998,872289.3309],[91716.3103,872622.667099999],[91850,872542.5],[91933.9534,873260.396600001],[91953.9500000002,873318.99],[91530.4687000001,873431.443700001],[91944.5,873842],[91314.5,874055.5],[92719,873946.5],[92585.1226000004,874068.5076],[93785.2421000004,873916.6009],[93807.5,873909],[93525,872673],[95859.6299999999,873550.93],[95607.5818999996,873777.090399999],[95896.9001000002,873781.902100001],[94722.1533000004,874851.8861],[95016.5,875126.5]]],[[[96319.8633000003,875422.814099999],[96476.1900000004,874747.0492],[95836.3183000004,875201.210899999],[96083.0888,875456.0436],[96247.9995999997,875607.499500001],[96319.8633000003,875422.814099999]]],[[[78935.3592999997,876086.3017],[78771.4735000003,875883.0602],[78642.3399999999,875995.449999999],[78935.3592999997,876086.3017]]],[[[96238.1991999997,875890.3247],[95553.3349000001,875854.280200001],[95873.2198999999,876326.2304],[96200.9232999999,875948.691400001],[96238.1991999997,875890.3247]]],[[[84830.9974999996,876534.5042],[84967.4038000004,875068.9037],[83462.0642999997,875866.638800001],[83685.6951000001,876054.774900001],[84830.9974999996,876534.5042]]],[[[79574.9765999997,876942.697000001],[78548.1799999997,876024.59],[78752.9323000005,875860.066500001],[78428.7300000004,875458.01],[78174.3499999996,876149.51],[77233.1699999999,875754.439999999],[75863.2715999996,876396.637700001],[75749.3712999998,876508.626800001],[76697.0288000004,876786.7029],[79188.9042999996,877052.0484],[79574.9765999997,876942.697000001]]],[[[100314.4967,879709.995200001],[100760.9076,878890.5922],[100747.6153,878898.5537],[99999.9927000003,879385.9531],[99844.9982000003,879486.999],[99999.9868999999,879560.613500001],[100314.4967,879709.995200001]]],[[[59240.9992000004,880869.0034],[59560.9983000001,880719.996099999],[59387.4974999996,880729.0035],[59240.9992000004,880869.0034]]],[[[59443.4978999998,880951.999700001],[59627.5029999996,880774.500499999],[59459.9962999998,880824.995999999],[59443.4978999998,880951.999700001]]],[[[59602.0010000002,880985.5001],[59665.0015000002,880850.998600001],[59528.9992000004,880978.5021],[59602.0010000002,880985.5001]]],[[[59747.7983999997,881048.1022],[59770.0022999998,880929.496099999],[59685.0039999997,881017.0011],[59747.7983999997,881048.1022]]],[[[59800.5007999996,881120.001599999],[59830.9993000003,881047.002499999],[59774.4959000004,881055.9999],[59800.5007999996,881120.001599999]]],[[[85998.0033999998,881760.498199999],[85593.5006999997,880065.003599999],[84489.5034999996,880951.999700001],[84965.7622999996,882272.7432],[85015.8342000004,882296.0068],[85998.0033999998,881760.498199999]]],[[[61687.0038000001,882395.996300001],[61199.0033999998,881799.9969],[61086.4994999999,882043.497199999],[61687.0038000001,882395.996300001]]],[[[88875.0440999996,873000.1675],[88676.5,872995.5],[88698.7324999999,872983.1962],[88691.5,872982.5],[90407.0175000001,871985.8203],[89412.4000000004,871014.699999999],[89700.4204000002,870886.450999999],[89647.8099999996,870814.99],[89780.6354999999,870850.732999999],[90608.5300000003,870482.09],[90147.5899999999,870162.109999999],[92410.2045,869813.240599999],[92407.6171000004,869808.4026],[90624.6399999997,869782.720000001],[92318.1900000004,869320.050000001],[91704.2999999998,868617.9],[92141,868047],[91156.0499999998,868915.25],[91595.4699999997,868077.93],[90550.5,868153.6],[91539.9409999996,867893.894400001],[91159.0005999999,867831.160399999],[90209.5,867759.5],[90775.9583999999,867768.0803],[90484,867720],[91247.4924999997,867775.2227],[91992,867786.5],[91577.5,867039.5],[92258.9199999999,866832.82],[95283.4435999999,867414.261499999],[94653.7570000002,865771.5189],[94112,864451],[91951.0549999997,863780.976399999],[90992.2730999999,864226.776799999],[90748,864615],[89947,864766],[90288.5,863913],[89055.9535999997,864318.807700001],[88985.5,864346.5],[88976.8357999995,864344.856699999],[87843.5,864718],[88372.4764,864230.231000001],[85652.1700999998,863714.2848],[85557.7000000002,863708.300000001],[85555.9002999999,863710.4243],[85129.1516000004,864369.819399999],[86194.5,864157.5],[86174.5721000005,864278.252800001],[86239.5,864261],[86032.4824999999,865292.387800001],[85977.0700000003,865568.460000001],[85974.6309000002,865489.792300001],[85898.4400000004,865951.470000001],[85924.5357999997,865273.9531],[85928.1744999997,865232.192299999],[85928.0990000004,865181.4429],[85941,864846.5],[83874.2619000003,864887.7885],[83890.2210999997,864869.7983],[83846.4199999999,864870.42],[84163.9873000002,864561.192399999],[84767.8812999995,863880.4465],[84767.3519000001,863880.438300001],[83788.0899999999,864889.51],[83344.7999999998,865484.630000001],[83572.4800000004,864591.42],[82731.1799999997,863974.77],[83980.9100000001,862929.67],[84027.6135999998,863712.1855],[89264.2635000004,862885.5857],[91086,862577.5],[91144.5,863376.5],[92969.5,863180],[92198.5843000002,860000.0209],[91969,859053],[90567,858803.5],[90614.9478000002,858796.829],[91377.9190999996,858505.4098],[90101,858291.5],[87528.0199999996,859793.75],[87418.3388999999,859597.9169],[87339,859637.5],[87406.0477999998,859575.9715],[87226,859254.5],[88327.8409000002,858451.4838],[88215.2439999999,858499.9901],[87025,859263.5],[86764.8846000005,859124.798900001],[86588,859201],[86702.0444999998,859091.2907],[86385.5,858922.5],[87100,858587],[85945.5,858463],[84546.0411,859553.665899999],[84603.4007999999,859573.699100001],[84488.9017000003,859616.3969],[84488.4665999999,859598.5364],[84447.8866999997,859630.1623],[84492.1996999998,859703.402000001],[84372.4978999998,859737.6022],[84433.7445999999,859641.183900001],[84233.2999999998,859797.4],[84244.9053999996,859766.271199999],[84218.7000000002,859794],[84245.7718000002,859763.9471],[84875.79,858074.060000001],[84144.9000000004,859605],[83129.7999999998,859279.699999999],[82462.2505999999,859999.979900001],[82083.4800000004,860408.67],[82353.8948999997,859999.9745],[82894.3300000001,859183.18],[82016.9302000003,858945.611500001],[81937.2633999996,858930.706599999],[81119.2999999998,859462.699999999],[81426.6418000003,860000.002699999],[81846.0199999996,860733.17],[81409.3700000001,861974.1],[80308.1900000004,862803.15],[80281.54,861520.85],[79999.9581000004,861348.4659],[79369.5,860962.5],[79827.3788999999,860000.0285],[79913.5,859819],[79394.1989000002,858347.4384],[79123.6568999998,858204.5219],[78403.0662000002,859999.994999999],[76841.6799999997,863890.452],[77783.9500000002,862275.359999999],[78137,863436.4],[78453.6900000004,862996.08],[79067.5,863684.1],[78654.8200000003,862623.747],[79459.9699999997,862544.949999999],[79999.9688999997,862754.697799999],[80376.2400000002,862900.85],[79999.9607999995,863491.3935],[79778.29,863839.289999999],[79999.9543000003,863883.7489],[80654.0999999996,864014.949999999],[80803.0700000003,863357.73],[82445.7800000003,864006.32],[79999.9643000001,864288.707900001],[79377.1200000001,864360.619999999],[74947.25,868360.74],[75585.0300000003,867261.18],[74680.5499999998,866406.060000001],[72277.7779999999,866361.473999999],[71805.1529999999,868061.893999999],[72516.8751999997,868871.102299999],[71686.04,869372.890000001],[72001.6720000003,868366.543],[71175.3030000003,868157.174000001],[68764.5,870792.300000001],[68928.2774999999,870906.878799999],[69636.0154999997,871120.0834],[69761.0999999996,870434.5],[70424.3859999999,870632.049000001],[70668.4027000004,871431.088],[70707.4800000004,871442.859999999],[70685.2714999998,871486.3255],[70906.8499999996,872211.890000001],[70213.0346999997,872605.0408],[70304.2374999998,872647.5997],[71827.8140000002,873023.7634],[71800.5026000002,873345.8177],[71919.4000000004,873401.300000001],[71723.0182999996,874259.5088],[71720,874295.1],[72895.4100000001,875545.390000001],[72751.7017000001,875865.35],[72770.6003,875871.9038],[72747.4977000002,875903.4048],[72744.9267999995,875880.434],[72441.5,876556],[72580.5122999996,876628.514799999],[73564.3673999999,876689.91],[74437.7999999998,876251.4],[75169.7000000002,876768.4],[75629,875630.5],[76682.4441,875465.8269],[76830.6748000002,875336.6328],[77383.5,874364.5],[76896.5,873963.5],[78845,872858],[79826.932,875133.739],[79452.4239999996,875944.551000001],[79999.9676000001,876160.433800001],[81726.7019999996,876841.242000001],[81545.5,878228.5],[81774.6111000003,878389.0153],[82851,878812.5],[83039.9040999999,879275.4801],[83461,879570.5],[83687.4419999998,878809.3489],[83659.8781000003,878706.9761],[82830.2560000001,878337.747],[82989.0499999998,877198.416999999],[81808.2999999998,875677.859999999],[84072.8996000001,875033.977],[84424.5279000001,874757.3324],[84374.284,873586.835999999],[85157.3600000003,874210.01],[84759.5999999996,874822.9],[85800.4000000004,874180.609999999],[86727.5899999999,874679.98],[86156.2400000002,875094.99],[87172.4699999997,874726.1],[85364.0700000003,876043.991],[86416.7329000002,876400.012399999],[86438.9000000004,876388.199999999],[86460.8338000001,876414.9278],[87488.5120000001,876762.499],[88833.5815000003,878563.572899999],[89002.7720999997,878548.091800001],[89720.2999999998,877843.390000001],[91267.5551000005,879809.8686],[91378.5,879909.5],[91351.6764000002,879916.782400001],[91381.0700000003,879954.140000001],[91343.7558000004,879999.9891],[90667.3310000002,880831.131999999],[90469.6452000001,880156.2458],[88725.9906000001,880629.631999999],[90729.0690000001,883457.411],[92431.1486,883814.8259],[92651.8185000001,883837.076400001],[93906.6516000004,882711.0502],[93784.1092999997,882404.753900001],[93290.9409999996,881400.711999999],[92132.96,881722.02],[92448,880826.5],[92206.4614000004,880549.707699999],[91872.1500000004,880670.77],[90779.3119000001,878914.259299999],[90557,878659.5],[92745.21,876925.26],[92514,875978],[92142.5300000003,875498.039999999],[91639,876183],[91645.5,875218],[90926,875314],[91913,874798],[90471.0537999999,874905.1927],[90418,874940],[89141.3700000001,875004.039999999],[90421.7969000004,874908.8544],[90553.5,873828.5],[91471.4124999996,873447.9024],[90678.5,873669],[89592.6299999999,873551.460000001],[90232.8392000003,873130.865499999],[88875.0440999996,873000.1675]]],[[[97855.8576999996,884067.413899999],[98807.4973999998,882736.4989],[97016.0732000005,883605.4935],[97020.2659,883622.2688],[97418.0773,884623.205499999],[97855.8576999996,884067.413899999]]],[[[98164.1551999999,884950.578299999],[98167.3247999996,884846.122199999],[96968.5025000004,886845.002800001],[97156.9148000004,886966.5441],[97959.6960000005,887351.8463],[98164.1551999999,884950.578299999]]],[[[90943.4983000001,887763.4999],[89501.0000999998,886488.504899999],[88398.5034999996,886527.003799999],[87056.1787,888175.061899999],[87086.9386,888222.5253],[89314.9998000003,889328.0021],[90196.9987000003,889187.0024],[90943.4983000001,887763.4999]]],[[[88314.0629000003,891064.7848],[87805.5022,890790.5034],[87782.4984999998,891606],[88522.6892999997,891212.4418],[88314.0629000003,891064.7848]]],[[[121285.6035,897469.001700001],[124293.5007,896308.0041],[124778.4999,894676.0012],[122970.4982,894049.000700001],[123025.501,895171.499399999],[122487.9275,895169.956800001],[122400.7975,895174.0986],[122403.1957,895169.7137],[122328.7026,895169.4999],[122594.4987,894468.000700001],[122001.4974,894848.002],[122297.0074,895491.299799999],[122315.8981,895505.7037],[122307.8265,895514.852],[122325.3964,895553.100099999],[121447.0995,896552.5041],[121438.4213,896500.2369],[121435.1029,896503.998],[121116.6885,895685.889],[120616.8303,897034.720699999],[121357.0964,896780.298900001],[121343.0441,896895.109200001],[121882.0017,896777.999500001],[121285.6035,897469.001700001]]],[[[118755.9069,896774.341499999],[118660.1047,896729.4485],[118650.2526,897638.527799999],[119076.2402,897047.4362],[118755.9069,896774.341499999]]],[[[141738.2846,898881.0131],[142060.5025,896156.997300001],[141813.497,897825.999500001],[140627.01,898692.100500001],[140524.3891,898774.5154],[141672.9051,898905.9495],[141738.2846,898881.0131]]],[[[143268.5029,899195.997400001],[143834.293,898083.3704],[142793.002,898552.001700001],[143268.5029,899195.997400001]]],[[[7564.99629999977,901270.503599999],[8475.00370000023,900263.501800001],[8855.00210000016,901026.5034],[10509.0658999998,900689.4706],[10850.5810000002,899999.9684],[11266.3085000003,899160.635199999],[10177.3420000002,899081.728599999],[10035.4968999997,899075.002],[9589.47800000012,897973.0801],[9394.97149999999,898094.052999999],[9134.50140000042,898724.002499999],[7665.00069999974,899170.004799999],[7625.48280000035,900000.0419],[7564.99629999977,901270.503599999]]],[[[7066.49990000017,901953.9979],[6582.0036000004,900984.995300001],[5512.99849999975,901467.497199999],[7066.49990000017,901953.9979]]],[[[104601.5071,901863.9056],[104136.3617,900244.842599999],[104030.4496,900252.77],[103393.9919,899326.7535],[102906.3039,898975.443],[102817.8011,899050.969699999],[101735.6443,900000.009500001],[100986.5021,900656.999199999],[100768.4469,900000.003],[100525.496,899267.9968],[99999.9649,899030.780099999],[99085.4961000001,898618.002800001],[98896.2259,899779.044299999],[98899.0011,899782.499500001],[98895.8628000002,899781.271400001],[98860.2039000001,900000.0141],[98744.0522999996,900712.523700001],[99250.5186000001,900767.271600001],[100000.0027,900838.5546],[100971.9991,900931.000700001],[101537.9978,902587.996400001],[103561.5007,903475.002499999],[104585.7902,901985.437799999],[104601.5071,901863.9056]]],[[[15469.9981000004,905968.4988],[15523.8722999999,904498.2575],[14830.9976000004,904925.497300001],[15469.9981000004,905968.4988]]],[[[138974.4998,910354.5033],[139384.9967,909485.502],[137500.7876,909595.250800001],[137663.7373,910402.4059],[138974.4998,910354.5033]]],[[[98928.5018999996,911646.5035],[98898.0033999998,911599.9968],[98867.0020000003,911638.4958],[98928.5018999996,911646.5035]]],[[[121610.4012,910283.603599999],[120898.4978,909358.498400001],[120020.1937,911180.25],[120137.3996,911269.469900001],[120954.1025,911850.495100001],[121610.4012,910283.603599999]]],[[[99397.4974999996,912916.4999],[99383.0027000001,912878.0009],[99379.4866000004,912883.3268],[99389.4573999997,912912.999700001],[99397.4974999996,912916.4999]]],[[[95417.8660000004,914465.4166],[95093.4230000004,915152.9747],[94913.6898999996,915876.4836],[97195.9773000004,916955.2673],[98607.9999000002,915813.500700001],[98632.7816000003,914481.406500001],[98632.0323999999,913108.277100001],[96965.5012999997,914029.001499999],[95731.0011999998,913809.5043],[95479.2907999996,914335.245300001],[95417.8660000004,914465.4166]]],[[[128427.8857,919988.3816],[128404.3868,919984.5252],[128423.7434,919999.977399999],[128425.35,920001.26],[128425.6025,919999.977499999],[128427.8857,919988.3816]]],[[[129277.1029,920127.7468],[128798.168,920049.148700001],[128814.07,920105.66],[129277.1029,920127.7468]]],[[[138687.2418,921200.1998],[138048.6371,920925.889],[137997.5969,920956.043500001],[138366.4881,921409.606699999],[138982.8788,921702.9746],[139037.0193,921552.517000001],[138687.2418,921200.1998]]],[[[97914.4858999997,922234.855900001],[98312.9998000003,920812.999600001],[97326.0000999998,921104.995999999],[97854.5122999996,922267.265699999],[97914.4858999997,922234.855900001]]],[[[98927.7021000003,925245.0009],[98869.3024000004,925227.9958],[98899.8997999998,925245.400800001],[98927.7021000003,925245.0009]]],[[[99037.5016000001,928323.999600001],[99002.5012999997,928253.4998],[98952.5033,928288.999600001],[99037.5016000001,928323.999600001]]],[[[99138.5036000004,928372.9956],[99051.9963999996,928345.5034],[99096.5033,928412.0044],[99138.5036000004,928372.9956]]],[[[112840.2039,929274.897399999],[112813.1033,929271.921399999],[112798.3308,929343.4157],[112854.5008,929459.604499999],[112840.2039,929274.897399999]]],[[[146431.2241,931697.2958],[146516.2392,931575.884],[146419.8646,931606.1108],[146431.2241,931697.2958]]],[[[110845.0601,933488.344000001],[110870.5,932864.4999],[110186.498,933278.501399999],[110389.6186,933347.492699999],[110845.0601,933488.344000001]]],[[[112703.5008,936008.9998],[113639.2837,934787.7772],[113610.8836,934767.365700001],[113008.5021,934343.4965],[112703.5008,936008.9998]]],[[[110438.3725,938645.3936],[110378.6062,937421.4748],[110364.0516,937221.372300001],[109544.9992,938486.000700001],[110438.3725,938645.3936]]],[[[115645.6525,940043.77],[116075.9088,937893.7152],[116189.9001,937245.595799999],[116420.0033,938025.502599999],[117235.0028,936779.499199999],[117231.0189,936924.6065],[117281.002,936856.497199999],[117353.1503,937559.8663],[118357.1969,935675.7952],[118527.5057,935713.1339],[119107.6001,935555.894300001],[119069.9989,933565.9991],[117901.7974,934350.004699999],[114211.9017,934632.4038],[113826.5028,936080.499299999],[114762.4986,935476.0023],[115152.4983,936625.803200001],[114228.598,938548.8028],[114303.214,938173.234300001],[114656.5248,936394.8982],[114557.7867,936482.6149],[113822.7345,937165.35],[113815.8423,937207.025900001],[113426.0692,939999.9827],[113344.4965,940584.5001],[115645.6525,940043.77]]],[[[115118.5039,940497.505000001],[114204.1578,940496.7239],[113926.7485,940568.7071],[113780.9983,941647.9956],[115118.5039,940497.505000001]]],[[[72652.4981000004,945161.4999],[72611.6025999999,945105.196],[72582.0027999999,945111.0044],[72652.4981000004,945161.4999]]],[[[72626.5014000004,945200.998600001],[72468.5012999997,945075.004699999],[72372.0011,945079.0035],[72626.5014000004,945200.998600001]]],[[[72381.4994000001,945205.997199999],[72267.5032000002,945167.498199999],[72384.5005999999,945262.0011],[72381.4994000001,945205.997199999]]],[[[72625.0007999996,945253.003699999],[72387.9965000004,945150.503],[72488.0009000003,945299.000499999],[72625.0007999996,945253.003699999]]],[[[72470.4966000002,945489.9959],[72252.4972000001,945398.5021],[72348.9973999998,945478.499199999],[72470.4966000002,945489.9959]]],[[[72692.9978,945401.5012],[72378.0034999996,945321.0042],[72606.4989,945505.501399999],[72692.9978,945401.5012]]],[[[68962.0005000001,946441.003599999],[68927.0001999997,946431.996200001],[68964.4987000003,946466.996200001],[68962.0005000001,946441.003599999]]],[[[68867.9984999998,946445.5024],[68776.9978,946415.5009],[68845.4978,946473.0045],[68867.9984999998,946445.5024]]],[[[68719.4967,946482.0019],[68653.0003000004,946383.5001],[68643.9967,946479.002800001],[68719.4967,946482.0019]]],[[[73758.0040999996,946490.499500001],[73672.9974999996,946414.5012],[73664.9998000003,946478.0031],[73758.0040999996,946490.499500001]]],[[[69034.3014000002,946477.5032],[69007.0020000003,946470.995100001],[69035.9999000002,946497.997300001],[69034.3014000002,946477.5032]]],[[[69324.0987999998,946511.203600001],[69307.5015000002,946314],[68962.9981000004,946321.9977],[69324.0987999998,946511.203600001]]],[[[72654.9962999998,946207.500499999],[72860.4961999999,946524.499700001],[73355.0020000003,946435.995100001],[72654.9962999998,946207.500499999]]],[[[69062.4994999999,946530.9979],[69106.9981000004,946505.495200001],[69039.9987000003,946519.0013],[69062.4994999999,946530.9979]]],[[[68997.5037000002,946597.9987],[68957.4987000003,946593.0001],[68947.4973999998,946604.9967],[68997.5037000002,946597.9987]]],[[[72763.5012999997,946565.9979],[72617.0031000003,946486.500600001],[72691.4972000001,946616.003599999],[72763.5012999997,946565.9979]]],[[[69115.4988000002,946618.502800001],[69094.4985999996,946604.4968],[69089.5021000002,946624.5011],[69115.4988000002,946618.502800001]]],[[[74349.9994999999,946626.000700001],[74340.9959000004,946586.0021],[74283.0000999998,946612.5046],[74349.9994999999,946626.000700001]]],[[[69285.5037000002,946643.4957],[69215.1980999997,946571.7962],[69212.5018999996,946629.999500001],[69285.5037000002,946643.4957]]],[[[72821.4971000003,946666.999],[72801.5027999999,946615.003799999],[72695.0014000004,946639.9967],[72821.4971000003,946666.999]]],[[[69010.4978999998,946694.0012],[69029.9974999996,946649.0041],[68930.9989999998,946664.499700001],[69010.4978999998,946694.0012]]],[[[68932.4995999997,946703.998400001],[68910.9965000004,946683.0044],[68851.5001999997,946686.0035],[68932.4995999997,946703.998400001]]],[[[155794.8335,946759.736500001],[155762.3684,946754.6746],[155749.4972,946764.0012],[155801.4988,946772.4988],[155794.8335,946759.736500001]]],[[[69018.9985999996,946777.997199999],[68991.1962000001,946750.904899999],[68992.4989999998,946775.4979],[69018.9985999996,946777.997199999]]],[[[69190.9988000002,946868.5013],[69140.0031000003,946617.5031],[69005.9961000001,946741.997500001],[69190.9988000002,946868.5013]]],[[[72203.0021000002,946934.002499999],[72214.5038999999,946833.5013],[72057.9961999999,946893.0043],[72203.0021000002,946934.002499999]]],[[[73022.5033999998,946977.0002],[72969.9989,946941.500399999],[72975.4983000001,946985.9976],[73022.5033999998,946977.0002]]],[[[72450.9970000004,947072.502900001],[72688.4960000003,946660.500800001],[72238.4971000003,946838.999700001],[72450.9970000004,947072.502900001]]],[[[110096.1674,888179.8038],[110107.5283,888114.868899999],[110372.9946,886597.5635],[110392,886461.5],[107517.39,887627.85],[107609.8491,887469.517999999],[107486.44,887514.32],[107628.1678,887438.1481],[107952.4561,886882.819399999],[107557.292,886788.5],[108751.2826,885514.865800001],[108755,885508.5],[108626.2444,885466.311699999],[106911.0876,885102.3354],[106854.47,885595.42],[106653.0872,885047.5847],[106457.6,885006.1],[105850.8121,882865.101199999],[105850.4681,882864.1654],[103859.25,883556.699999999],[104539.2854,881994.412699999],[104548.8388,881967.3182],[103980.1538,881919.479499999],[102517.96,884681.34],[102143.309,884814.864700001],[101497.1092,885833.506999999],[101561.0015,885941.001599999],[101391.4576,886011.519099999],[101347.1648,886386.426100001],[101912.5481,886600.2534],[101968.97,886576.48],[101930.3491,886606.9857],[101980.81,886626.07],[100996.05,887346.189999999],[101006.0193,886986.5721],[100945.8701,886569.183700001],[99999.9693999998,887409.0033],[99648,887721.5],[98148.7300000004,891058.6],[96061.5,892311.5],[95453,894664.5],[97157.5,894969.5],[97347.1683,894811.197699999],[98435.0615999997,893656.6098],[98351.4100000001,891750.199999999],[98945.4000000004,891464.300000001],[98769,892705],[99157.8510999996,892889.5088],[99204.5,892840],[101926.5,893906.300000001],[102164.4064,894316.1108],[103556.51,894976.66],[104048.5,897496.5],[104547.11,896872.08],[106120.76,897236.470000001],[106545,898309],[106477.28,896883.289999999],[107252.86,897652.33],[108312.1,896822.4],[109223,897147.5],[106130.5,899407.800000001],[106380.0452,899999.953199999],[106939.5,901327.5],[107076.7906,901368.2334],[107399.5,901085.5],[108756.7981,901866.6822],[108800,901879.5],[111285.92,900538.449999999],[112685.54,900338.51],[113072.5,900944.5],[114904.387,900331.487],[114693.1671,900490.77],[112100.3224,902946.7982],[112024.0759,903140.516799999],[113415.5,903416.199999999],[113397.5583,903447.248299999],[113603.2,903475.5],[113063,904228.5],[112928.1769,904082.458900001],[109308.5454,904678.4486],[109268.5,904691],[110116.9293,906258.2467],[110113.1276,906255.0164],[110114.5,906257.5],[110061.01,906210.7324],[108835,905169],[107619.5,906419],[106080.5,906456],[104435,908315.5],[103937.07,908163],[104601.5,907085.949999999],[102972,906939],[101692.5881,907748.128900001],[101687.0025,907815.5001],[101656.9081,907770.693700001],[101598.7032,907807.503799999],[101593.0006,907832.995100001],[101575.4707,907822.196599999],[101524.2477,907854.5912],[101567.4986,907844.501800001],[101453.9971,907924.9987],[101479.8781,907882.6515],[101069,908142.5],[101038.34,909109.369999999],[99999.9873000002,908901.7763],[99713.5,908844.5],[99342.5,911977],[99249.7258000001,911877.897700001],[97877.4379000003,911390.0776],[97876.5,911390.5],[99249,912495],[99305.7741999999,912663.9595],[99353,912706],[99430.6244999999,913035.512700001],[99999.9956,914729.955],[100019.5,914788],[101474.5,913368.5],[101576.3488,913585.1843],[101699.02,913489.35],[103106.7581,915554.404999999],[103827.2367,915906.640000001],[108604.091,916995.493899999],[110637,917201],[109682.4693,917241.3035],[110473,917421.5],[106205.4867,917388.113299999],[106190.1169,917388.7623],[102699.5,916066],[101410.5,916974],[101412.1511,917012.998400001],[103875.9203,918222.8938],[103924.5,918236],[102440.8733,918447.946699999],[101682.0744,918559.9955],[103881.0434,919999.9768],[104088.788,920136.017000001],[103859.3444,920523.1193],[103671,921245],[103491.6974,921143.3892],[103396.5,921304],[101376.0744,920000.018200001],[101163,919862.5],[101250.4592,919259.783299999],[100943.5846,919364.010600001],[100348.3636,919838.524499999],[100696.5,920013.5],[99824.0433,920256.516000001],[99332.3333999999,920648.510199999],[99235.0842000004,921936.702299999],[99155.5,924841],[99002.977,925011.264599999],[98980.0999999996,925314.300000001],[98145.7682999996,925968.1844],[97758.5,926400.5],[98181.2336999997,927856.139699999],[98193.9989,927865.500800001],[98183.1704000002,927862.808599999],[98235.5,928043],[98396.4195999997,928115.773],[98939.5,927917.5],[99428.5126999998,928582.518300001],[99512.5,928620.5],[99147,929423.5],[99725.9282999998,929437.6284],[99724.4966000002,929396.502599999],[99786.2945999997,929439.101600001],[99999.9797,929444.316500001],[100007.5,929444.5],[100487.3477,930233.392200001],[100576,930282.5],[100562.409,930356.796499999],[100818,930777],[100087.6424,932985.5692],[100676.8284,933253.8508],[100933.9563,933370.7159],[100936.0011,933353.4999],[100970.4985,933383.001499999],[100960.9872,933383.001499999],[101335.8586,933553.3813],[101378.069,933521.795700001],[102722,932493],[102726.1821,932513.0156],[102856.5,932415.5],[103122.3,932989.9],[103603,931337.9],[104031.579,932732.192],[105072.5998,932683.909299999],[105186,932614],[105814.5,932649.5],[105164.0408,932679.668299999],[104524.8,934591.300000001],[103780.5,933239.699999999],[102826.8436,933929.572699999],[102530.8528,934265.597200001],[102794.3015,935103.567600001],[102825.4971,935085.0043],[102810.9757,935156.604499999],[103767,938197.5],[105312.5,939401.5],[105061.6,938081.699999999],[106952,938033.5],[107056.2038,937904.1051],[107923,936518.5],[108032.3467,936691.9822],[108272.8,936393.4],[109075.5589,938037.259299999],[109249.3029,937763.9705],[109964.884,936131.268999999],[111833.4192,935438.6076],[111737.2879,934966.0002],[111600.0846,934366.443600001],[111520.6682,934375.194800001],[109684.6,934607.1],[109562.8,933994.4],[108589.8207,934581.447899999],[108575.2,934591.9],[108578.3836,934588.3485],[108572,934592.199999999],[110162.27,932549.880000001],[112520.5,932480],[112518.9051,932386.310699999],[112346.54,929326.68],[112459.811,928914.884500001],[112450.41,928362.630000001],[113433.1673,925376.259],[113688.5,924448],[113659.0436,924689.873299999],[113930,923866.5],[113514.3131,925878.291200001],[112953.4743,930483.475500001],[113063.5,930843],[113620.8768,930792.195499999],[113722,930682],[113700.3377,930784.9527],[113820.5,930774],[113546.2424,932350.2509],[114334.5778,931818.566299999],[114476.5,931676.5],[114433.15,932412.933499999],[114440.5,932406.5],[114824.2087,933320.4056],[115286.5911,933552.7228],[115616,933338.5],[116453.1436,934128.8682],[116594.6664,934097.4596],[117041.4946,933872.9791],[117038.4983,933763.002699999],[117087.6612,933849.785599999],[118645.236,933067.2806],[119029.06,932298.560000001],[119073.9231,932302.972899999],[119052.71,932092.15],[119132.0553,932308.6909],[119696.3362,932364.1954],[119999.9759,932161.017899999],[120405,931890],[120987.4,932436.4],[121699.76,929501.48],[121857.5,930512],[122820,929762.5],[122359.9687,931227.9604],[122970.0645,931340.091499999],[123442.56,931364.34],[123392.5163,931417.735099999],[123394.2565,931418.0549],[123391.4404,931418.883099999],[121892.6,933018.1],[121691.2,932271.800000001],[121603.4173,932337.2261],[121606.5,932808.5],[121037.2057,932759.234099999],[120436.6197,933206.8621],[120408.0682,933292.945699999],[120559.8134,933854.853599999],[121043.9346,934191.0682],[121851.55,933796.060000001],[121730.37,934749.5],[121337.27,934901.216399999],[119932.8,937454.300000001],[119900.0009,937451.074999999],[119820.41,937677.33],[119733.467,937434.7004],[119189.1598,937381.1811],[119029.7,937482.5],[118390.5325,938659.099300001],[118397.5628,938663.1973],[119125.2,938861.5],[118901.6454,938957.034499999],[118980.5,939003],[117985.9633,939483.8749],[117904.1806,939999.971899999],[117650,941604],[119518.8921,942234.3971],[120382.2,942525.6],[120000.0051,942537.8028],[117261.5617,942625.236],[118157.2905,943416.4189],[119137.3,944248.1],[118671.6927,945139.863500001],[119999.9958,945136.1361],[121598.648,945131.65],[122269.2841,945959.5637],[124403.0023,948053.3608],[124533.1339,948136.6592],[124548.8997,948135.298599999],[124541.8414,948142.232999999],[124656.0563,948215.343],[125279.4621,947970.7961],[125621.4,947632.199999999],[125767.0555,947779.525],[125778.94,947774.863],[125808.565,947821.510299999],[127936.1277,949973.4596],[128030.2715,949997.2607],[128248.1677,949037.379699999],[128146.15,948940.4],[128385.5,948432.4],[128267.8726,948950.575200001],[128558.0479,948974.831800001],[128631,948782.5],[129029.5341,949014.2447],[129927.4,949089.300000001],[132109,950800],[134181.6,950841.4],[136052,954291.5],[137353.6,954332.1],[139999.9723,956950.2161],[141193.5,958131],[145000.5232,960000.0221],[146105.5,960542.5],[147499,962638.300000001],[149433,962716.5],[151259.5,964713.199999999],[150914.059,965277.8147],[150897.5389,965304.816299999],[150915.896,965366.1963],[150879.72,965333.9408],[150869.7095,965350.3027],[150682.4917,965884.1204],[151919.6,966511.1],[152835.1163,965746.5078],[153557.6906,965143.0507],[153513.7994,965126.7048],[153592.7163,965113.799000001],[154108.6225,964682.9405],[154096.5002,964616.662799999],[153770.55,963441.01],[156281,960772],[155914.0294,959999.9987],[155244.5,958591.5],[156832.5,956618.5],[156683.5,955210.5],[155346.5,954287.5],[153403,949933.5],[156509.1508,946882.875],[154612.5,946652],[154517.7508,946560.6151],[154369.5,946537.5],[153401.6133,945484.1087],[152196.1,944321.4],[152135.8746,944106.5527],[151324.5,943223.5],[151502.7053,941957.3935],[151408.1065,941940.970699999],[149485.6,941901.9],[149018.6082,941216.7532],[149148.2,941121.1],[149115.2845,940000.012499999],[149098.1894,939417.761299999],[149055.1709,939231.6745],[146849.1,939383.800000001],[146217.9,938258.4],[146644.68,936559.199999999],[144794.32,934993.289999999],[144997.23,935628.43],[143973.9538,936097.1456],[144030.47,934755.66],[142872.49,934332.369999999],[144190.43,933692.25],[145571.91,934127.33],[145120.5,934931.52],[146773.8291,933556.156300001],[147310.9,932771.9],[148001.0813,932535.2355],[148382.96,932217.560000001],[152067.1,934288.300000001],[153453.7,936449.1],[155300,936778.5],[155754.4371,937431.8729],[156255.0793,938096.2282],[157498.4,937488.300000001],[155559,934214.1],[156182.9731,933321.1777],[156172.2149,933308.9658],[154583.716,931514.9659],[154568.3674,931510.2106],[152836.024,931077.767000001],[152835.8672,930300.878],[152808.0975,929968.206700001],[150184.3546,929081.6932],[148040.5,932170.199999999],[147774.0932,932050.5272],[146196.37,931755.460000001],[146155.1067,931323.2611],[145722.0477,931128.726299999],[145685.71,931197.359999999],[145607.9354,931077.4658],[144261.5278,930472.645199999],[143971.1,932141.699999999],[142115.0407,932671.8605],[142415.1968,933494.1996],[142408.5899,933484.293],[142412.2552,933494.293099999],[142408.051,933483.484999999],[141804.5,932578.5],[141931.2979,932182.0857],[141787.2816,931789.1624],[142405.41,930616.039999999],[143180.8405,930793.402899999],[142277.3294,929706.9497],[142147.58,929564.800000001],[143143.9576,926537.1676],[142643.6604,926321.701099999],[140632.81,925470.18],[140000.0199,926013.4089],[139784.1726,926198.706599999],[139783.9182,926191.951300001],[139780.45,926194.92],[139783.5701,926182.710200001],[139741.35,925061.74],[139999.9916,925120.720899999],[140051.9267,925132.564200001],[140090.3,924982.4],[142887.9811,925430.659600001],[142960.3666,925404.9146],[142811.7453,924183.285499999],[141040.52,924679.720000001],[139999.9943,924193.5801],[139753.85,924078.58],[135697.65,925934.789999999],[136085.3936,925660.151900001],[135584.89,925878.779999999],[137160.5544,924898.3772],[137040.6257,924102.2313],[137027,924019],[137028.4199,924021.2028],[137025,923998.5],[137579.853,924382.6668],[138263.5,923692],[138259.4336,923762.087300001],[138410.5,923595],[138230.6644,924257.9406],[138221.8619,924409.6557],[138445.9808,924285.741],[139300.7493,923708.1778],[137837.2939,922029.7333],[137193.3041,921555.650699999],[136371.6027,921432.869899999],[134382,921554.51],[133927.6186,921067.6832],[133127.8774,920948.183700001],[132536.01,921298.91],[133017.2517,920931.6537],[126916.28,920020.029999999],[126931.0599,920000.021299999],[127484.78,919250.41],[128383.3034,919967.694499999],[128430.5501,919974.8498],[128573.28,919249.960000001],[128784.3375,919999.9991],[128792.6938,920029.6951],[129515.0866,920139.0987],[130281.5028,920175.657],[130415.2472,920029.644400001],[130429.5874,919999.996300001],[130854.5,919121.5],[130940.745,919455.9431],[130975.5,919418],[131153.4784,920061.8223],[131491.1726,920000.0167],[133309.6172,919667.2009],[133715.2042,919999.967700001],[134380.58,920545.880000001],[136095.4748,919999.9877],[136489.72,919874.49],[136579.4823,920000.016799999],[136952.1891,920521.222899999],[138884,919775.5],[138885.0469,919777.056600001],[138891.5,919774],[139093.4287,920000.013900001],[139784.4161,920773.419399999],[140000.0101,920729.7502],[140676.861,920592.652000001],[140000.0109,920833.034600001],[139876.78,920876.800000001],[139640.6083,920802.5481],[138795.9678,920973.6325],[138777.6611,920984.6088],[140000.0123,921570.3597],[140942.5,922022],[141023.8027,921647.225],[141050.5,921182],[141098.4475,921303.1404],[141213.5101,920772.744999999],[141147.0148,920724.305400001],[140656.5,920694],[140890.7589,920537.6316],[140824,920489],[141773.0592,919948.5912],[141749.1155,919947.101500001],[140868,919930],[140870.5469,919892.438100001],[140751,919885],[140911.5,919052.98],[141739.5056,919653.8192],[142043.6993,919867.5078],[141804,918394.699999999],[142254.3848,918178.108999999],[142509.8891,918049.3839],[141721.24,917150.4],[142510.3953,916745.855799999],[142020,914982.5],[139999.9949,915125.0637],[138121.22,915257.66],[139999.9912,914717.8399],[142867.5814,913893.906300001],[140804.7363,909629.816],[139512.1545,910560.7127],[137981.5,911720],[137239,910520.5],[136744.17,912106.970000001],[136477.7911,911690.652899999],[136274.5,911968],[136074.2128,911059.910399999],[136033,910995.5],[134346.111,911913.0208],[134347.419,911910.6088],[134346.55,911911.09],[134348.6709,911908.3004],[134830.1518,911020.4628],[134026.1328,910970.0549],[132923.4,911720.336300001],[132677.5,911991.5],[132731.9929,910875.318499999],[132731.5648,910782.9693],[132331.7526,910780.4848],[130071.9589,910845.409299999],[130643.7318,910769.9954],[129518,910763],[135675.108,910106.3826],[135716.0581,910100.9815],[135860.1767,909943.6811],[137022.119,908614.7531],[136984.2087,906043.691],[135804,905640],[135422.6746,903004.996099999],[134657.4992,903190.9959],[133668,903442.5],[132535.5,902020.5],[131006.56,905599.08],[131054.591,904525.023800001],[131166.7701,900953.0045],[129715.5,901404.5],[129789.7741,900840.302200001],[129789.0944,900823.323899999],[129342,901972.5],[128992.5,900421],[128718.964,900945.529100001],[127351.8834,904608.747199999],[127401.21,904925.619999999],[127247.7517,904887.7776],[127218,904967.5],[125571,906359],[125587.2157,906312.1291],[125315.58,906657.07],[127314.5,901289],[126275.1384,901313.895099999],[125770.09,902596.939999999],[125782.4303,902421.4756],[125745.6179,902504.4022],[125809.2437,902040.222100001],[125819,901901.5],[125111,902262],[125088.9964,902224.384299999],[125085.5,902226],[124950.8177,901988.1636],[124675.5,901517.5],[121981.81,906481.157199999],[121767.7289,912172.305],[123799.5592,914383.535399999],[124851.5,915450.5],[124888.3922,916628.059599999],[124888.7107,916631.5055],[126792,916681],[127388.67,915766.67],[129522.14,916324.1],[123152.6,917315.130000001],[124159.297,916905.781099999],[124518.202,916728.533],[124405.1638,915701.42],[122925.913,914224.716499999],[121099.04,912452.75],[120000.0089,911984.318],[118862.6376,911499.544600001],[119002.31,910286.380000001],[119999.9933,909963.6109],[120072.34,909940.205399999],[120457.3692,908385.553200001],[120844.2615,906722.459100001],[120702.5356,906022.045700001],[120639.4919,905755.042099999],[121675.8046,905676.0901],[121771.7986,905472.6174],[123323.8206,901567.818299999],[123323.2511,901558.625399999],[120957,901516],[122918.097,900000.0428],[123406.5,899622.5],[123545,897642.5],[119999.9704,898191.1215],[119072.622,898334.636],[119022.6908,898349.502900001],[117312.7257,900000.009400001],[117261.1,900049.84],[116619.6023,899999.9893],[115529.66,899915.289999999],[115533.1995,899906.6514],[115532.46,899906.67],[115533.9209,899904.8906],[116163.1386,898369.173900001],[116170.991,898001.642100001],[115983.0818,898032.5251],[115515,898565.5],[114865.0516,898216.274],[114815,898224.5],[115230.21,896536.33],[117000,896447.5],[117840.89,893583.74],[118200.6292,893532.5953],[118898.7753,891823.5613],[118903,891772.5],[118022.4193,891307.6249],[118011.994,891325.231799999],[117822.63,892196.48],[117676.4673,891891.8906],[117562.61,892084.18],[117475.4421,891472.972899999],[117423.802,891365.3597],[117316.4151,891999.712400001],[117252.673,892664.423],[117140.4365,892429.3356],[116736.3662,891807.2502],[115332.04,892870.42],[115334.117,892824.1481],[115329.51,892827.720000001],[115466.8977,889552.6961],[114645.19,890814.779999999],[114260.6084,890178.867000001],[113774.4428,890485.601],[113647.5,890573.470000001],[112546.36,893077.699999999],[112340.9,892266.17],[111478.76,893061.15],[111567.1648,892936.068600001],[111468.5,893021.5],[113050.0071,890832.786699999],[112207.9372,889558.418299999],[112189.3467,889630.7597],[111913,890785.4],[111899.4117,890758.9848],[111889,890799.5],[111651.9399,890277.908199999],[111566.002,890110.847899999],[111421.9136,890441.737],[111287.5,890754.4],[111559.2522,889139.5869],[110709.6,889120],[110805.6942,889090.8594],[110679.4,889091.300000001],[111204.0676,888739.282400001],[111188.7875,888733.228499999],[109971.8,889469.800000001],[110056.5645,888862.9531],[109967.12,888917.390000001],[110096.1674,888179.8038]]],[[[161853.024,1029698.6963],[161808.9987,1029607.4975],[161785.5003,1029674.9981],[161853.024,1029698.6963]]],[[[161885.0017,1030608.501],[161893.0709,1030589.6034],[161870.0039,1030604.0022],[161885.0017,1030608.501]]],[[[161970.9976,1030718.9992],[161948.0022,1030672.5027],[161940.4992,1030698.4952],[161970.9976,1030718.9992]]],[[[162331.0018,1030724.4978],[162341.5279,1030700.5147],[162292.0026,1030705.0033],[162331.0018,1030724.4978]]],[[[161949.9975,1030718.4995],[161904.5012,1030704.0035],[161937.0033,1030744.502],[161949.9975,1030718.4995]]],[[[161873.4998,1030822.4997],[161850.4961,1030778.0024],[161832.0024,1030810.0032],[161873.4998,1030822.4997]]],[[[161895.0029,1030896.4985],[161904.9959,1030865.9972],[161884.004,1030868.7464],[161895.0029,1030896.4985]]],[[[162198.0007,1030494.5036],[161819.9976,1030293.5011],[162345.4966,1030963.4994],[162198.0007,1030494.5036]]],[[[161848.5008,1031050.0045],[161843.0013,1031012.9952],[161836.029,1031044.5795],[161848.5008,1031050.0045]]],[[[161253.9989,1031229.0033],[161237.5164,1031225.7436],[161242.497,1031252.9964],[161253.9989,1031229.0033]]],[[[180000.0179,1032039.867],[180000.0182,1032032.2012],[179994.5033,1032034.5028],[180000.0179,1032039.867]]],[[[181863.502,1032034.5028],[180265.9967,1031785.5041],[181355.4991,1032848.9995],[181266.5093,1033619.5961],[181863.502,1032034.5028]]]]},"properties":{"LAD22CD":"S12000013","LAD22NM":"Na h-Eileanan Siar","BNG_E":126473,"BNG_N":932862,"LONG":-6.65722,"LAT":58.19938,"OBJECTID":326,"GlobalID":"79d4ba75-d90f-4183-9e96-56e4d534f82e"}},{"type":"Feature","id":327,"geometry":{"type":"MultiPolygon","coordinates":[[[[289602.6372,690333.6381],[289717.8278,690189.249500001],[289574.1028,690303.4022],[289602.6372,690333.6381]]],[[[292182.0864,686801.125399999],[292287.8332,685138.1401],[292126.27,685021.41],[292287.8685,685137.5856],[292391.4979,683507.897399999],[292964.5965,682987.793199999],[290747.0039,682206.899800001],[293105.2975,682860.1028],[293242.2931,683085.5801],[295290.9973,683807.001800001],[294553.1962,682522.399499999],[295376.9026,683205.503900001],[295897.1,681572.4014],[294643.2812,680000.0077],[294481.8022,679797.499500001],[294661.2342,680000.0079],[295663.6988,681131.397700001],[299999.9977,681949.229499999],[300518.9019,682047.0955],[305080.9155,680000.020500001],[305533.8037,679796.799699999],[305989.7389,679715.735200001],[304242.5035,678038.302999999],[300305.899,679365.5031],[296663.3959,675881.2005],[296902.1976,675261.097999999],[295559.2998,674699.298800001],[295951.086,673744.9793],[293693.52,672591.720000001],[292000.04,672777.48],[288673.1667,669048.8333],[286129.103,668541.792099999],[286990.4964,669451.601],[285507.6963,669818.296],[281175.73,673292.029999999],[283952.2985,675589.403999999],[279249.3981,676056.3004],[278413.5963,677099.901699999],[278710.5999,678316.103499999],[277521.5961,678868.995300001],[276233.9979,678424.702400001],[275993.102,678933.096899999],[276920.8033,679306.6],[276115.302,681213.1043],[273507.9993,681505.500600001],[274204.6987,683523.6029],[276824.8967,684709.9033],[277184.2,685730.0013],[281946.4978,685239.9016],[287104.5008,685923.296],[287062.5994,686859.2981],[288160.0995,687300.6017],[285852.0019,689502.701400001],[286791.6997,691267.496200001],[288294.7001,691973.1042],[288552.147,691650.401000001],[289985.3005,688503.0975],[291901.066,687271.172],[292182.0864,686801.125399999]]]]},"properties":{"LAD22CD":"S12000014","LAD22NM":"Falkirk","BNG_E":285585,"BNG_N":680170,"LONG":-3.83619,"LAT":56.00077,"OBJECTID":327,"GlobalID":"355aeaa4-dda3-4470-bb90-85e12dac4e45"}},{"type":"Feature","id":328,"geometry":{"type":"MultiPolygon","coordinates":[[[[208568.9994,759076.596100001],[208295.1974,759049.9037],[208480.703,759243.7982],[208568.9994,759076.596100001]]],[[[207016.2977,759308.399700001],[206976.0041,759065.7992],[206849.7969,759250.6963],[207016.2977,759308.399700001]]],[[[208804.7999,759315.897600001],[208568.1996,759160.801999999],[208735.5991,759402.6028],[208804.7999,759315.897600001]]],[[[162874.4997,758904.4954],[161674.3999,757795.068399999],[161496.0485,758409.2938],[161343.499,758951.5019],[162243.9999,759881.4957],[162874.4997,758904.4954]]],[[[160000.0065,759434.6621],[160749.5001,758717.9987],[160000.004,758712.648700001],[159130.9375,758706.4452],[158139.5794,758806.476299999],[158625.1271,759828.0232],[158650.3476,759756.6291],[158585.9961,758869.4954],[159286.5646,759802.7421],[159428.0298,759981.5844],[160000.0065,759434.6621]]],[[[215950.4975,761977.9956],[215975.9995,761900.9976],[215913.9966,761913.0042],[215950.4975,761977.9956]]],[[[163467.501,775498.995200001],[167477.5029,773362.9967],[166167.5029,773602.4981],[164860.9988,772663.4969],[162715.5019,773464.997500001],[163467.501,775498.995200001]]],[[[209002.4999,776420.4015],[208986.4946,776335.2205],[208920.2671,776338.019200001],[208857.6012,776426.6997],[209002.4999,776420.4015]]],[[[139999.9881,781063.9428],[140598.0018,780162.000499999],[142580.9968,780607.0031],[142613.7753,779999.968900001],[142669.4992,778968.0022],[142163.4998,779473.497500001],[141647.4992,778169.001],[140982.9967,779310.0043],[139999.9631,778996.202],[139577.9971,778861.502699999],[139254.1735,779550.7599],[139194.9503,779702.8477],[139805.4678,779999.9724],[140000.01,780094.6516],[140142.5034,780163.9999],[139999.9878,781023.3082],[139991.0004,781077.498400001],[139999.9881,781063.9428]]],[[[163489.4988,788382.997199999],[163582.0001,787686.9965],[162723.4996,787714.498600001],[163489.4988,788382.997199999]]],[[[149893.5002,788998.501],[149371.629,785029.8212],[149320.417,784961.8079],[148741.5003,785144.5042],[147875.0743,783258.664100001],[147281.9928,783261.0735],[146427.7783,783348.4859],[145998.3757,783620.787900001],[143815.3627,785263.9407],[143784.3726,786294.529100001],[143900.0624,787179.5371],[144304.435,787642.627599999],[145289.7999,788230.8388],[145808.2741,788220.0294],[146974.9959,788115.003900001],[146899.0012,790497.0021],[148391.0535,791288.0952],[149024.0942,790360.9505],[149893.5002,788998.501]]],[[[115465.0026,796460.495100001],[115412.498,795912.0021],[115304.9989,796085.002599999],[115465.0026,796460.495100001]]],[[[115842.9974,796912.4957],[115866.5041,795687.496300001],[115541.5003,796270.499500001],[115842.9974,796912.4957]]],[[[137581.9997,804926.501700001],[140000.0075,803204.9661],[141644.0033,802034.499500001],[142297.0039,800135.5031],[141960.5944,800000.000399999],[140291.4999,799327.704299999],[142570.2984,798465.8441],[142749.7315,798392.523700001],[142665.845,798063.828400001],[141359.1071,794272.217399999],[139999.9964,792969.450999999],[137839.9959,790898.997],[134412.79,793054.931],[134339.0631,793542.292400001],[134181.0027,795409.296],[129315.9962,799544.5023],[129969.9181,800000.0001],[132532.5017,801785.001],[133346.5036,803224.4989],[135473.7445,804111.1096],[136212.0004,803739.501499999],[137581.9997,804926.501700001]]],[[[127412.169,805035.3947],[129260.4987,803668.002],[127821.4964,804295.002499999],[126483.847,803831.9815],[126428.283,804739.854],[127412.169,805035.3947]]],[[[128035.9968,806301.292099999],[127984.1658,805272.6347],[127943.5234,805062.416200001],[127375.2733,805089.2006],[124254.9963,805543.495100001],[122740.9969,804100.998],[120583.3245,804469.687200001],[120618.4027,804566.300799999],[121414.583,805853.499700001],[123659.002,806092.9978],[123743.0295,806343.145400001],[125821.6527,806693.087200001],[127707.0896,806453.0678],[128035.9968,806301.292099999]]],[[[171336.0019,812466.5034],[170595.7026,812240.1982],[170742.3954,812614.264599999],[171009.0583,812860.934699999],[171336.0019,812466.5034]]],[[[147159.9986,815759.0009],[147153.9962,814621.996400001],[145456.9977,814525.504000001],[145515.2278,814198.0759],[145731.8588,812861.5967],[145050.4485,812587.516899999],[143983.5244,812464.7677],[142685.5029,814559.5043],[144483.0004,815390.996300001],[145203.998,814770.004000001],[144837.9998,815440.0023],[145836.9961,816200.004699999],[147159.9986,815759.0009]]],[[[148631.5029,819494.501700001],[148641.8798,819431.3632],[148585.9321,819475.6997],[148631.5029,819494.501700001]]],[[[168145.5636,826955.2772],[167098.9969,826375.502],[166827.0006,827420.003],[167495.1642,827788.8419],[168145.5636,826955.2772]]],[[[166223.998,831028.0002],[165737.1672,830595.761399999],[165686.352,831669.9189],[166223.998,831028.0002]]],[[[163292.4996,827985.0013],[160151.997,827374.495999999],[160000.0113,827547.639599999],[158625.4981,829113.498299999],[158118.8297,830234.1941],[157828.536,831078.980900001],[158296.5037,832675.998500001],[158614.3793,832833.7775],[159400.7247,833118.3585],[159991.4208,832981.510199999],[163636.045,830928.0858],[163292.4996,827985.0013]]],[[[179669.4995,833971.4977],[179357.8032,833900.9979],[179580.1691,834079.111099999],[179690.695,834093.967399999],[179669.4995,833971.4977]]],[[[168245.0027,836225.002599999],[168938.0001,834056.0035],[169269.7306,835137.988500001],[170094.5018,833571.0023],[168661.502,833712.501800001],[168245.0027,836225.002599999]]],[[[129840.0028,837221.997199999],[129721.4965,835586.995200001],[128482,835766.503900001],[129840.0028,837221.997199999]]],[[[124021.7778,849434.4888],[124014.2561,849218.9012],[123640.3228,849490.303300001],[123530.6446,849593.813999999],[123550.5341,849610.775699999],[123908.5859,849729.1853],[124021.7778,849434.4888]]],[[[158905.6961,852216.0294],[158805.1421,850430.258099999],[158340.4994,851567.5009],[158905.6961,852216.0294]]],[[[161709.0026,851917.500700001],[161332.5001,850251.997400001],[159999.9746,848066.4113],[158047.5029,844863.999700001],[158601.4968,840298.996400001],[158804.625,839999.9596],[159999.9868,838240.197899999],[160020.4965,838210.0044],[159999.9887,837764.7969],[159955.5007,836798.998299999],[158086.9967,834136.1006],[156301.9987,833688.998500001],[155330.7965,834337.502900001],[155473.098,835708.600400001],[154871.4019,835997.2478],[154817.5002,836221.2037],[154495.0372,836177.798599999],[154181.0969,836328.403000001],[155206.9969,839550.500700001],[155171.4157,840000.013499999],[154843.0022,844149.0044],[156792.0955,848322.1873],[159083.9977,847611.0034],[159543.5032,848753.996200001],[158485.7177,849301.0769],[159122.5022,849653.4988],[158936.0465,850109.861099999],[159121.2474,850438.9725],[159121.4963,850433.995300001],[160803.0023,851791.9966],[160801.7706,851831.215600001],[160883.4988,851857.4979],[160780.7967,852499.064300001],[160759.7586,853168.9596],[161709.0026,851917.500700001]]],[[[160780.9461,853614.4614],[160936.4981,853286.9987],[159999.9995,853981.018200001],[159907.4727,854049.5879],[159761.7025,854174.987299999],[159999.9912,854246.1819],[160373.0679,854357.647600001],[160780.9461,853614.4614]]],[[[179491.9179,854668.715700001],[179473.4979,854548.997400001],[179373.2014,854707.6085],[179491.9179,854668.715700001]]],[[[121895.4989,857823.5001],[122318.5035,856320.500299999],[122200.7895,856332.4948],[121660.1859,856656.7347],[121895.4989,857823.5001]]],[[[162933.0078,861413.414799999],[163658.0031,860050.502599999],[163642.5062,859999.9604],[161843.0013,854130.997099999],[160757.4978,855651.002],[161885.4964,857024.4988],[161049.4966,856554.5034],[160664.5018,857352.504899999],[160978.6592,857493.730699999],[161958.8032,857720.0997],[161925.4034,857919.328500001],[162190.4977,858038.498600001],[161580.034,859979.4472],[161533.3432,860257.9563],[161951.4272,860847.340700001],[162021.6487,860912.3685],[162408.4971,860418.997199999],[162223.0373,861098.862199999],[162225.4033,861101.053200001],[162939.9985,860470.002599999],[162915.7463,860620.7761],[162991.4971,860559.9968],[162933.0078,861413.414799999]]],[[[140826.0025,877037.000299999],[142070.5038,876006.995200001],[144140.5006,876764.498299999],[144150.0882,876726.032400001],[143753.3652,875114.351],[143652.3023,875011.3002],[146630.5008,872800.503],[147315.5994,868725.999299999],[149913.9974,868105.4969],[152023.9993,862758.997300001],[152830.0035,862845.502599999],[151988.7022,860428.704399999],[152081.8506,859999.995200001],[152458.4975,858266.5033],[151560.9979,853126.5046],[152066.1697,850240.761499999],[151516.1266,846815.4121],[151250.4971,845345.002],[151203.3772,845296.875],[149009.6625,843532.824899999],[148008.0032,843541.0984],[147594.703,841149.8029],[148791.0495,842830.243100001],[148989.7328,842819.759],[149263.0004,842362.9956],[151442.765,842587.2073],[151531.8746,842466.5824],[152147.8243,840842.4344],[151973.0228,840208.3791],[151804.8885,839999.983999999],[150820.5996,838780.0013],[152381.4969,835416.0042],[153121.4994,835000.1032],[153145.0411,835337.3321],[153542.8498,835277.185699999],[153623.3282,835159.766899999],[153456.8156,834954.871200001],[152928.6969,834656.1017],[152941.9897,834321.3719],[152922.9995,834298.0042],[152944.2535,834264.366800001],[153000.0001,832860.595699999],[151309.0041,832636],[148970.0039,830449.7958],[152162.6977,832296.997],[155797.4999,832076.5001],[156588.4981,829752.995200001],[156300.4637,829461.6952],[154296.9977,827980.002699999],[154406.7689,827546.530300001],[153924.9971,827059.2963],[154460.527,827334.2467],[154492.4964,827208.003699999],[156851.7247,828561.929500001],[157815.998,829057.0044],[158513.7328,828119.464600001],[159090.198,827314.6032],[159124.5012,827298.7808],[159315.6015,827042.0012],[160000.0094,826741.052999999],[162689.8021,825558.2959],[163593.9967,825936.997500001],[164576.7008,824779.5988],[163927.3033,823527.2973],[165621.0037,823055.9022],[167776.5018,824729.0033],[166978.6025,823384.7981],[170128.5052,824906.397500001],[170223.9987,824904.5031],[172049.1235,825834.176000001],[173826.9998,826693.0011],[176344.241,826168.617900001],[176183.059,826015.818],[175034.4972,825071.995100001],[175197.9497,825081.9385],[175178.4972,825063.4976],[176451.7675,825158.2126],[178971.4974,825311.4966],[179999.9989,824261.387599999],[180089.5029,824170.0033],[179999.995,824023.617000001],[178786.5029,822039.0033],[178616.5592,820184.878699999],[178498.527,819096.4081],[178251.9094,818866.8073],[174204.4703,816155.0659],[171497.4979,814790.998],[171128.9606,815050.8303],[170368.3038,815689.800799999],[170361.7342,815591.7531],[169899.0032,815917.9954],[170308.7614,814801.163799999],[170206.6103,813276.6176],[169871.7038,812525.4965],[170717.7427,811834.3346],[170300.2494,811597.179099999],[169809.602,811557.3037],[169809.0001,809777.5031],[168296.996,808358.999199999],[166786.204,808885.0986],[166316.8772,807825.694800001],[165038.298,805907.3577],[164460.701,805638.8978],[164290.6195,804785.566],[163900.8037,804200.6995],[164053.7823,803597.307800001],[164018.403,803419.802999999],[163523.6004,803716.597999999],[163642.0984,803078.900599999],[161094.3228,801006.8969],[159380.9865,800202.0668],[159044.8997,800456.201300001],[158354.3008,799999.9936],[157200.4486,799237.762],[156771.4972,799781.0046],[156749.4904,799754.0123],[156691.0007,799822.502699999],[156457.748,799396.176999999],[156236.7529,799125.1164],[156203.4675,799267.6534],[156312.9976,800532.499500001],[155667.0751,801564.627900001],[155335.3976,802984.959100001],[156072.3445,804825.501399999],[156118.0019,804899.999299999],[157693.798,805209.300799999],[157273.0031,807039.9967],[157858.5013,808557.5023],[158788.9977,808879.5002],[157623.5006,809771.504799999],[158125.5011,810784.7048],[159522.9978,811397.999299999],[159951.0764,812418.675100001],[160173.0723,812613.4728],[161761.6968,813071.100299999],[163065.9159,814708.925000001],[165914.7012,815510.0682],[166368.501,815582.001599999],[168199.1024,817529.804099999],[165699.9997,816146.9999],[164538.0974,816612.3967],[164263.1951,815773.9583],[163221.6957,816016.980599999],[162230.9974,816336.9955],[160000.0235,815928.716600001],[158783.0035,815705.996099999],[158306.101,819199.496099999],[157848.6082,819999.9552],[156442.9975,822459.302999999],[156518.9053,819999.9515],[156592.321,817621.340299999],[156162.4775,817413.4167],[155342.1994,817251.7037],[155322.2218,816714.530200001],[153617.2985,812649.6766],[152940.0008,811387.0024],[151490.5407,812457.0393],[151263.0103,812655.4944],[152131.4984,816275.0032],[151669.0585,817425.8818],[151734.4987,818108.998299999],[151231.2735,818515.4014],[151001.9992,819085.998600001],[150491.0033,817965.999199999],[148862.7905,819256.2994],[148519.502,819682.4979],[148491.1721,819550.7936],[148327.4993,819680.498400001],[147805.8326,817032.8094],[147113.214,817162.1735],[145677.0007,817528.0046],[140000.0123,816267.544],[138750.0033,815990.004799999],[140000.0044,817478.898800001],[141091.5017,818778.9965],[141238.9844,819930.260600001],[141300.4975,820026.999199999],[141253.3059,820042.0559],[141303.004,820430.003900001],[140791.4969,820886.5032],[140000.0066,820229.643200001],[139723.2402,819999.9539],[139228.3152,819589.214299999],[138152.2528,818988.931600001],[137656.9491,818957.704299999],[137203.0134,819259.1964],[136763.033,819999.988500001],[136096.9425,821121.480699999],[135479.3829,823187.554099999],[135614.6347,823491.908399999],[137384.0028,823697.498600001],[137424.7335,823838.594699999],[137620.9989,823855.0035],[138149.499,826390.797599999],[137391.3535,825005.363600001],[137006.4929,824593.5649],[134273.0011,824326.998400001],[131689.9966,827865.9954],[131437.5988,830544.298699999],[130544.7869,830986.216600001],[130078.0743,831308.6086],[130160.9995,833388.004699999],[130446.9373,833549.584100001],[133231.4608,834753.5506],[133613.6023,834511.1032],[133504.9873,836336.525900001],[133507.8087,836407.215],[133529.2341,836393.196699999],[137109.6099,833222.909600001],[138205.4995,831630.4978],[138988.0055,831559.661499999],[139213.4994,831359.995200001],[139107.4861,831548.8455],[140000.0036,831468.0504],[140703.1016,831404.4025],[140000.0072,831688.1171],[138745.0225,832194.532099999],[138418.3775,832776.412],[137922.0013,834305.5021],[135191.5009,836286.095100001],[135182.0089,836463.333000001],[135283.0999,837972.5364],[136509.004,838890.999500001],[133484.0517,837283.9771],[132603.0959,837274.702099999],[132394.2469,836705.012399999],[131870.0028,836426.504899999],[132218.0021,838713.8002],[131138.1788,839258.274700001],[130745.087,839564.0349],[131035.1824,840000.0406],[131552.1969,840777.0996],[130484.4038,841131.4981],[130484.5755,841429.248199999],[130791.6642,842797.9011],[130485.7152,843405.4366],[130485.8961,843719.0975],[130396.5169,843582.5614],[130289.4741,843795.1207],[130127.1708,843171.1074],[128105.3804,840082.613299999],[128076.1087,840053.4223],[128737.399,842664.8992],[127576.4037,845004.5995],[127658.0202,843313.4847],[127212.2868,842767.0757],[127228.7012,843217.501],[126542.4978,841946.005000001],[125314.9978,842367.304400001],[125396.8373,839999.9835],[125507.9982,836784.502499999],[124349.5012,836235.499600001],[121928.0009,838390.002900001],[120416.6528,839129.743000001],[120083.0036,839307.000399999],[120064.8155,839301.952299999],[119999.9979,839333.6777],[118638.6407,840000.003699999],[118015.4127,840305.0471],[117447.5028,840961.4968],[116709.0406,840944.4603],[116390.4601,841100.391799999],[115583.5961,842687.659299999],[115359.4988,843143.5022],[115993.5028,843767.503599999],[115327.4997,846306.4968],[113969.9999,847665.4978],[112563.4996,846883.001800001],[113419.7046,850926.645199999],[115876.5171,850140.873400001],[116964.301,849780.002499999],[115702.9963,851528.502],[115456.9966,853673.498],[115669.4966,855495.4965],[117657.4479,856883.114399999],[117721.9588,856754.2695],[120000.0031,852151.505000001],[121723.3997,848669.4004],[122823.9999,847394.395400001],[123246.2346,848395.460200001],[123901.2669,848882.801899999],[124016.286,848830.608200001],[124279.5065,848377.562899999],[124844.7985,846080.3016],[125107.5026,847233.001599999],[125574.2967,847004.2971],[124458.6905,849496.781300001],[124401.5028,849767.995999999],[124323.9206,849797.8838],[124002.4995,850516.0019],[123571.9118,850087.588],[122932.6803,850333.845799999],[122816.7674,850433.670299999],[123065.5365,850789.8254],[123485.9959,851304.496200001],[122310.1417,855305.5736],[122853.4141,855248.4177],[123435.5031,855123.503],[124699.504,855970.000700001],[126403.6015,854001.804099999],[126953.0029,855606.9046],[123155.9229,859999.978399999],[122437.2983,860831.3991],[122392.1222,860751.3846],[121658.043,860115.140900001],[121622.8117,860158.080700001],[121783.4453,860605.402000001],[122563.2994,861847.3983],[122768.1314,863347.4877],[123084.5027,864228.4967],[123205.9981,866554.209799999],[123277.9977,867081.5],[126234.5035,864627.002599999],[126958.997,860096.1996],[128036.3376,860000.043500001],[128429.0007,859964.997099999],[130512,858275.0009],[132717.9109,854423.553200001],[132559.496,854121.4998],[132782.1924,854311.3199],[132805.001,854271.4969],[135014.9989,856214.500700001],[133212.9996,852134.498600001],[133867.4082,852149.7115],[134032.6017,851884.3495],[134349.4988,850923.395199999],[134309.7254,852440.979599999],[134888.5123,853747.992000001],[136579.4992,855061.500700001],[136735.0011,857268.9988],[138012.9031,854009.5019],[138180.8067,854248.286599999],[139373.2931,853611.139799999],[139461.7675,853533.698000001],[139486.859,853432.940300001],[139659.9035,851724.7959],[139999.9607,852246.7498],[140307.7015,852719.101199999],[140627.9974,849231.6995],[141467.7981,848754.796],[140845.7989,852148.104699999],[142090.2012,851748.099199999],[139999.9845,854122.877599999],[139847.9063,854295.659600001],[138698.5811,855630.646199999],[138146.4978,857337.9991],[138701.4976,857446.9979],[137468.4255,859518.615],[137202.084,860389.418500001],[137328.1609,861766.9266],[137334.2283,861782.213300001],[138000.7994,861028.7026],[139569.4964,863812.3958],[137726.0045,863542.4486],[137441.528,863528.5922],[137662.4962,866590.500600001],[135879.5018,869992.4968],[137218.2029,870839.704299999],[137117.5902,871938.4123],[138683.3008,871765.699200001],[140000.0123,872610.7872],[140507.5041,872936.5041],[141274.6987,874429.9966],[140826.0025,877037.000299999]]],[[[174512.3483,878206.3159],[173769.004,877105.500700001],[172530.4969,877627.5013],[172696.9976,878304.997400001],[174512.3483,878206.3159]]],[[[144334.2298,878772.2776],[144456.5605,878379.821599999],[144352.1702,878432.4187],[143738.4961,878779.501499999],[144197.5972,879144.948799999],[144334.2298,878772.2776]]],[[[284758.5006,886456.403999999],[285722.8017,885212.4001],[283507.9969,886397.001],[284758.5006,886456.403999999]]],[[[186243.4022,887986.3961],[186107.9028,887009.795600001],[184031.4996,888442.9954],[184455.6998,890055.8037],[186243.4022,887986.3961]]],[[[194970.5505,892975.6905],[194986.0032,892914.995300001],[193891.0818,893641.6248],[193960.6097,894034.971799999],[194292.7353,894940.7707],[194970.5505,892975.6905]]],[[[210089.8729,899832.7006],[209918.4998,898868.6077],[208718.1282,899336.2105],[208638.497,899379.005000001],[208383.0237,899983.7008],[209059.0033,900118.5033],[209745.8949,900000.0342],[210089.6715,899940.7426],[210089.8729,899832.7006]]],[[[196560.0019,902339.4976],[195827.5024,902241.4956],[196229.2018,902730.4956],[196560.0019,902339.4976]]],[[[192393.5845,901676.876800001],[191853.0037,901572.497099999],[191520.9998,902310.4959],[192528.9998,903031.499500001],[193163.0339,901836.8101],[192393.5845,901676.876800001]]],[[[202702.4982,904430.9989],[202249.4687,903855.1722],[202181.1967,905221.2806],[202702.4982,904430.9989]]],[[[197172.4694,907382.8731],[196386.5011,906834.001],[195803.1523,907782.6845],[196030.7085,907904.028200001],[196547.9971,908166.999500001],[196880.9804,907778.2675],[197172.4694,907382.8731]]],[[[200104.6072,907010.9398],[199339.7105,906270.5604],[197921.5006,906925.504799999],[198762.0021,908938.998500001],[199420.2312,908170.4233],[199158.2068,907549.236099999],[199023.5025,907366.498600001],[199999.9812,907045.3497],[200104.6072,907010.9398]]],[[[197698.4986,910942.9463],[197484.6547,910614.3365],[197192.6624,910679.9078],[196576.0317,911046.3147],[196800.9785,911733.199200001],[196977.7693,911973.149],[198042.0022,911607.204700001],[197698.4986,910942.9463]]],[[[226924.8964,929996.001],[226969.9969,929897.999],[226902.6018,929934.298599999],[226924.8964,929996.001]]],[[[224948.0029,931400.9988],[224946.997,931306.9957],[224885.0024,931353.5024],[224948.0029,931400.9988]]],[[[223199.4975,934103.495200001],[223123.9975,934083.0011],[223172.9979,934163.498],[223199.4975,934103.495200001]]],[[[223226.9041,934272.596799999],[223319.4961,934167.4969],[223136.9999,934194.999],[223226.9041,934272.596799999]]],[[[208767,935598],[208962.5031,934772.003900001],[209952.5041,934774.0033],[209868.9945,933886.024],[209517.205,933797.1106],[207808.0308,934519.5296],[207660.3366,934588.4123],[208767,935598]]],[[[213208.0241,948852.5997],[213210.4988,948785.002699999],[213165.4972,948838.497400001],[213176.1586,948849.2853],[213208.0241,948852.5997]]],[[[214956.003,948151.0042],[214613.0002,947225.4991],[212792.1584,947559.6106],[212602.1643,947957.0594],[212827.3816,948414.6777],[214039.3671,948939.070699999],[214230.9982,948959.002900001],[214956.003,948151.0042]]],[[[242486.5011,958639.5019],[241853.9977,957358.998400001],[242050.5023,958374.9976],[242486.5011,958639.5019]]],[[[266503.9906,964445.2511],[266470.05,964100.799000001],[266018.7981,964587.7127],[266205.1802,964679.445699999],[266505.4625,964725.719000001],[266503.9906,964445.2511]]],[[[264172.5444,964945.295700001],[264125.337,964834.6568],[263545.5433,964847.968699999],[263326.744,964939.3116],[263415.3864,965281.2148],[263597.5018,965483.002900001],[263499.9537,965607.399599999],[263605.4995,966014.500800001],[264366.5022,966109.503599999],[264172.5444,964945.295700001]]],[[[263313.2713,966263.3281],[263361.2619,965784.2642],[263081.7462,966140.712400001],[263301.8547,966264.985400001],[263313.2713,966263.3281]]],[[[256547.9993,966694.995999999],[256539.004,966673.5022],[256523.0003,966679.000600001],[256547.9993,966694.995999999]]],[[[297899.8995,967035.398600001],[297803.1025,967015.7042],[297902.9007,967071.598200001],[297899.8995,967035.398600001]]],[[[255458.0022,967139.4988],[255459.9975,967111.4968],[255424.5026,967111.9966],[255458.0022,967139.4988]]],[[[255235.501,967329.0045],[255160.5039,967298.5033],[255166.4981,967319.997099999],[255235.501,967329.0045]]],[[[254044.4304,968302.994999999],[254050.4961,968294.998],[253992.5003,968295.9977],[254020.6592,968317.901900001],[254044.4304,968302.994999999]]],[[[203127.9969,914997.0605],[203200,915011.5],[204041.52,913590.67],[205397.653,913113.691],[205461.076,913243.9191],[206529.27,914123.65],[206529.0901,914124.384500001],[206708.5,914109],[206330.9346,914933.487400001],[206271.9581,915174.298599999],[207012.5,915287],[207001.938,915322.5294],[206951.1142,916687.885399999],[207596.5,917197],[207187.5,918229],[206504.5,917922.5],[206603.6519,918086.5635],[206941.5,918613.5],[206926.5505,918620.853499999],[206949,918658],[205562.8328,919295.616900001],[205831.0781,919299.6218],[207967.4568,919328.377599999],[207964.1107,919331.468],[207966.4998,919331.503699999],[207910.8439,919380.6643],[207240.2521,920000.012],[205941.2273,921199.770099999],[207627.1335,921177.0403],[208283.238,921148.726],[208703.3437,922234.9298],[209125.4904,922231.4559],[209435.52,922103.210000001],[209594.8,923085.300000001],[207682.5,922298.5],[205358.5,923239],[207150.4934,924424.1754],[207236.3684,924480.9419],[207236.4867,924481.020099999],[207238.6036,924482.449100001],[205378.5,924057],[204945.5,924925],[205795,925524.5],[205693.0319,925564.095000001],[205716.5,925584],[205017.58,925826.3782],[204170,926155.5],[202642.917,930388.033],[200250.6013,932480.4233],[200286.0174,932621.09],[202062.5,935583.5],[202477,934115],[204256.5216,934077.201300001],[204237.4492,934010.5167],[203850.9,933110.4],[205279.2041,932624.8989],[205325.4207,932505.8336],[205381.0353,932265.1724],[205369.5034,932258.0035],[205383.8853,932252.8397],[205688.35,930935.33],[206082.7506,931232.977499999],[209800,933590.5],[209512.5613,933724.557800001],[209891.0299,933808.8693],[209860,933543.5],[209906.2085,933812.250600001],[210446,933932.5],[210570.5,933047],[211154.4047,934003.303400001],[211995.0281,933224.938100001],[212076,933113.5],[213420.9332,933563.951400001],[213708.5194,933098.299699999],[213808.5651,932924.358100001],[213836.105,932507.972100001],[213829.5,932485.5],[213994.1196,932301.743100001],[214635,931487.5],[214476.1565,931763.6688],[214658.48,931560.15],[213914.0096,932765.5757],[214374.5,934331.5],[215016.5,933675],[215112.8829,933773.2141],[215157.5,933733],[216533.8312,934254.317299999],[216986.5,932989],[216807.2848,933750.2059],[216698,934316.5],[216633.7717,934292.1721],[216530.7407,934393.381200001],[216403.0778,934774.632200001],[217743.5,935483.5],[218726.7184,934582.1501],[220722.5,932726.5],[220746.4715,932730.5734],[220830,932654],[220876.782,932752.716499999],[222471.3903,933023.681299999],[222646.17,932993.529999999],[222542.5577,933046.978599999],[222850,933855],[223627,933521],[224089,931726.5],[227461.5659,929126.884400001],[226871,930829],[224338,933044],[228726,933404.5],[223577.5,934527],[222235.5,934394],[222799,933987],[222266,933616.5],[220880.7684,933904.216],[220511.1727,934094.8727],[217843.6092,935937.209000001],[217775.5,935994],[217875.1634,936951.5122],[216971.05,936651.76],[216994.8467,936840.3302],[216307.9229,936416.878799999],[216307.2889,936421.1149],[216437.1058,937265.1052],[216796.724,937140.7596],[216999.3519,936882.7787],[217025.6807,937061.593],[217172,937011],[217191,938152.5],[217186.1348,938151.330499999],[217187.5662,938161.051999999],[216069.5345,937929.7313],[216206.3689,938246.891899999],[216412.5,938674],[215819.6346,939064.266100001],[215685.6566,939163.1054],[216828.7845,939999.9791],[216885.5,940041.5],[216115.6573,940166.3484],[215754.9543,940241.9439],[216923.5,941079.5],[216048,941959.5],[215960.2701,941837.770300001],[215856.5,941929.5],[215080.9268,941232.760500001],[214482.0187,941412.249700001],[214469.6867,941427.0832],[215209.5,942794],[215165.2272,942855.7191],[215177,942876.5],[215131.4607,942902.7917],[214273.5946,944098.709799999],[214322.6,944614.6],[213876.2449,944652.639699999],[213845.5,944695.5],[215509.8,944820.800000001],[214309,945886.5],[216270.5,948396],[216196.381,948695.6874],[216220.4985,948701.996400001],[216193.0851,948709.013900001],[215836.8508,950149.386700001],[216555.3718,951366.791200001],[217095.87,950686.8214],[217973.5,949496.5],[219505.1127,949219.929400001],[219239.5,948616.5],[219630.2493,948860.559599999],[220192.8547,949055.516899999],[220327.1,948447.49],[220677.7885,948571.755000001],[220799.7097,948079.8989],[220719.84,947824.029999999],[221212.6236,947772.666200001],[222397.3181,947437.8791],[222005,946797.5],[223508.4362,947084.216399999],[223435.0711,947144.616800001],[223524.8,947119.26],[222540.7068,947880.933599999],[222115.5,948231],[222867.62,948933.859999999],[221129.5262,949536.397600001],[221097.9461,949548.0945],[221649,950282.5],[220938.2352,950141.2651],[220664.7483,950101.4978],[221783.6912,951056.964299999],[221821.7764,951052.1943],[222937.5,950827.5],[222500.462,950967.192600001],[223013,950903],[220968,951471],[220963.4276,951430.9618],[220820.8013,950778.5648],[219999.9948,950704.8046],[219516.1125,950661.3214],[219367.9692,950656.414000001],[218980.9047,950916.569399999],[218388.5476,951437.577500001],[219999.9851,951518.8608],[220633.8397,951550.8334],[219999.9851,951940.144400001],[219511.9216,952239.9111],[219512.0011,952240.503599999],[219511.6947,952240.0505],[218171,953063.5],[218981,954219.5],[220000.0079,954058.6975],[220128,954038.5],[220025.9307,954073.5262],[219137.1934,954425.544399999],[219923.8526,955002.4735],[219999.9768,954998.520199999],[221213.5,954935.5],[220520.7461,955514.7654],[220542.1804,955530.6414],[222357.8813,955303.7952],[223165.1,955146.9],[225255.9,952235.699999999],[224892.5,953663.5],[225510.5,954110.199999999],[224093,954705.5],[224077.6,955511.4],[220573.8626,956189.8873],[221557.3657,956741.908199999],[221822.9,956871.800000001],[221802.546,956879.5231],[221851.5,956907],[220094,957581.5],[220325.855,958414.101],[219999.9955,958632.3259],[219266.68,959123.42],[218478.5,958693.5],[217898,959894.5],[217924.0577,959999.975099999],[218788,963497],[220000.0005,964930.972100001],[220158.5,965118.5],[220455.3358,965159.887499999],[221264.5,965030],[221667.8675,965328.9497],[222523.581,965448.261],[224857.381,969457.210999999],[224788.0689,969626.9198],[224951.3998,970821.578199999],[225114.52,970942.5],[225502.5,974781.5],[225702.415,974661.414999999],[228376,972956.5],[228456.2921,973007.2147],[228958.114,972705.779999999],[229566.0126,973621],[229989.5384,973575.9647],[230035.5024,973562.000399999],[230035.8631,973571.038799999],[233031.5,973252.5],[234556.81,971458.119999999],[235937.501,971092.619000001],[236004.067,968346.5284],[235976.349,968334.050000001],[236010.6031,968076.8905],[236029.734,967287.672],[236114.3641,967297.9144],[236121.19,967246.67],[236705.2275,966777.6851],[236908.25,966319.560000001],[237631.8002,966030.8972],[238219.77,965647.279999999],[235221.63,962852.859999999],[236960.49,964085.9],[236236.5,961503],[238349.87,965849.199999999],[237659.1101,966074.5755],[236731.6859,966797.793500001],[236495.3128,967344.018999999],[236897.921,967392.744999999],[237480.268,968748.982000001],[239301.082,969154.448999999],[237879.6278,971466.806700001],[239276.723,971899.434],[239283.682,970254.571],[239999.9968,969858.5493],[240666.141,969490.265000001],[240825.5818,968624.4745],[240973.61,967748.4],[240986.5635,967750.316099999],[241032.34,967501.742000001],[242031.03,967898.68],[242824.8,966291.151000001],[245114.7731,965783.079299999],[245615.3949,965639.0703],[245062.5,965358],[245619,963569.5],[242343.4601,959999.9652],[242026.884,959654.975],[242138.0152,959721.9343],[242060.5,959637],[239200,954475],[240412.5,954504.5],[241166,956245.5],[244753.5,958029],[244513.5,959699],[246198.4613,962168.4515],[246208.5,962174.5],[247627,962482.5],[247632.6148,962410.605599999],[247432,960910.5],[247713.0119,961381.169299999],[247719.113,961303.049000001],[249124,963646.5],[249059.192,963907.6348],[248932.8166,966873.319700001],[249386.3795,968050.377499999],[249792.5646,968430.9846],[252383.5951,968405.49],[254182.6132,968216.3409],[254889.5562,967773.0188],[255138,967144],[257136.0458,966364.2511],[257171.9,966341.767000001],[257185.3702,965242.9749],[257183.1599,964768.987600001],[258315.8361,965706.1766],[258468.3404,965544.5261],[258460.499,965542.4959],[258462.5025,965508.9955],[258478.678,965533.568499999],[259030.778,964948.357000001],[258594.16,962722.9],[259142.4983,962297.623500001],[259147.04,962183.231000001],[259212.5432,962243.2985],[259785.132,961799.214],[257965.221,960000.0514],[257016.2,959061.85],[257303.3291,959153.6008],[256969,958797],[256631.14,956504.050000001],[257153.949,957687.077],[257562.473,956674.966],[255456.433,954283.717],[256614.599,955210.834000001],[255132.87,953636.131999999],[255763.983,953781.963],[255557.55,952849.623],[257428.536,956425.573999999],[258111.094,957032.859999999],[258783.859,956549.478],[258434,957327.5],[257636.46,956769.952],[257262.5,958608.5],[257672.5,957891],[257873,958494],[258628.66,958175.058],[257304.5,958942],[258142,958755.5],[257805,959235.5],[258030.6916,959386.0262],[258566.3814,959557.203500001],[259017.4932,959669.451400001],[259110.534,959534.1149],[259597.461,959513.393300001],[259564.0281,959481.9045],[258198,958786],[259092.32,958853.91],[259599.7406,959463.2786],[260080.9582,960041.1797],[261209.177,960401.697000001],[263174.3862,963432.798],[264407.3934,963719.006999999],[265283.9235,963833.7272],[265285.6039,963827.696799999],[265327.3981,963831.195800001],[265318.3983,963838.2393],[266267.068,963962.401000001],[267923.6726,963273.4485],[268060.6663,963021.9452],[268096.717,961094.146],[268178.044,962062.717],[269881.583,961972.506999999],[270612.0454,959999.9659],[271195.45,958424.539999999],[270686.6802,959999.9652],[269663.848,963167.2041],[269673.5772,963203.4005],[271222.46,962339.18],[271233.4984,963609.785],[271478.258,963643.694],[271380.2912,964733.305199999],[271590.806,964779.006899999],[272827.5342,964040.1897],[273418.034,963464.958000001],[274586.5,964234.5],[274857.5,965931.5],[276021,965747.5],[276040.0992,965784.265900001],[276073.976,965779.377],[276269.4249,966225.717900001],[276369.7468,966418.8375],[276389.4998,966391.003],[276380.3588,966439.2655],[276441,966556],[278261.5,965089],[278478.3853,965376.1401],[279008.1585,965065.2864],[279432.04,964361.380000001],[279478.5027,964789.3037],[279531,964758.5],[279599.0047,965712.7037],[280000.0281,965991.2004],[281020.452,966699.848999999],[281316.4,968824.4],[282362.396,968764.934],[282773.1401,969954.6129],[282797.3047,969827.502699999],[283495.2,965681.779999999],[286251.6715,966794.773],[286283.3245,966798.424900001],[286973.7702,966080.6151],[286988.93,966055.060000001],[286993.541,966060.060799999],[287077.784,965972.479],[287676.7122,966637.5264],[287771.1964,966508.7311],[288341.408,965157.800000001],[288884.1005,965049.346999999],[288913.842,964779.630000001],[289465.02,962629.76],[289149.539,964996.301000001],[289029.2025,965020.349400001],[289251.4567,965484.1209],[289607.7142,965785.737199999],[291949.376,965361.879000001],[295369.3356,966471.735300001],[295380.674,966463.546399999],[296546.927,965246.253],[296767.5195,965809.6985],[298894.4068,967909.600299999],[299999.9908,968745.9067],[301377.4716,969787.886299999],[301548.0933,969885.633300001],[302832.1658,969941.5865],[302850.522,969933.593],[302856.5322,969942.6483],[302908.529,969944.914000001],[303550.1192,970987.6436],[303929.7315,971559.5877],[305151.4187,970918.190400001],[305225.073,970853.997],[305263.8181,970859.1797],[305359.711,970808.835000001],[310900.1676,971581.524900001],[310793.4003,971378.1074],[309919.58,969970.220000001],[311456.8,968665.9],[312171.15,968922.9],[311333.18,967638.33],[312807.7698,969365.829500001],[315131.1692,970294.798599999],[317773.271,969317.838199999],[320361.465,968211.857999999],[320424.4744,968337.512399999],[320562.138,968286.608999999],[321501.448,968960.024],[321721.736,970906.903000001],[319999.9933,972061.502599999],[318044.56,973372.814999999],[318408.207,975399.719000001],[320000.0161,976661.487500001],[320250.297,976859.876],[321442.802,976030.634],[322064.793,973987.229],[324060.083,973530.247],[325966.693,974648.658],[328912.149,974194.221000001],[330203.3296,974864.6688],[330196.6036,974829.297599999],[330274.404,974855.4001],[330229.1341,974878.0678],[331063.899,975311.521],[331840.6288,974216.762800001],[332683.34,972818.18],[332807.5565,972853.9309],[332892.763,972733.836999999],[336257.689,973724.882999999],[339242.8585,973492.2533],[340592.0087,973333.6284],[340000.0225,970601.959899999],[339492.66,968260.779999999],[337768.1616,967620.215700001],[338461.602,966411.107000001],[337977.725,964507.778000001],[334538.356,960471.579],[334453.1612,960000.004000001],[334415.816,959793.288799999],[334315,959663],[334345.1146,959401.9385],[334006.754,957529.026000001],[333020.9,958950.300000001],[334783.692,955599.939300001],[334829.4,955203.699999999],[335107.2937,954984.9023],[335242.91,954727.15],[335426.9174,954733.2487],[335701.51,954517.050000001],[337174.7567,954791.1785],[338846.4587,954846.584799999],[338909.9395,954644.744100001],[338183.98,950878.17],[334562.52,951714.689999999],[336943.3,950802],[337591.0482,949818.152799999],[336796.1176,948512.989700001],[336611.53,948283.800000001],[335290.6,943060.699999999],[332432.1641,939999.9814],[329998.324,937393.905999999],[329903.605,937374.635500001],[329916.5572,937306.3528],[328558.287,935851.962099999],[325922.8313,935360.835100001],[324422.0107,935083.112199999],[324034.08,934141.439999999],[319999.9821,932522.983999999],[319052.6,932142.9],[318764.8989,931749.684800001],[316503.5071,929498.983100001],[316267.4963,929544.800100001],[311497.5106,921531.751399999],[311366.517,921319.556700001],[311288.1958,921259.172800001],[305131,916986.5],[304530.9046,916049.4471],[303599.5461,915331.389799999],[303276.807,915226.5974],[302384.1986,915772.3025],[302814.599,915104.103700001],[302764.604,915060.286599999],[302386.97,914937.67],[298900.3684,911673.557700001],[297132.9027,910124.4991],[293625.0002,908975.498],[291856.8963,907000.103499999],[290915.096,903426.1965],[289462.7874,902332.0888],[283804.2968,899889.2019],[282777.097,899533.300799999],[281447.5974,895689.5011],[280000.0013,895704.477399999],[279901.5,895705.4965],[280000.0026,895861.963099999],[281222.5979,897803.9958],[280000.024,897274.1138],[278931.5016,896811.0001],[278512.9988,897998.600099999],[276881.2022,897678.9016],[277595.9996,896038.4012],[279677.0035,894875.5041],[279999.9963,894899.5255],[281376.5002,895001.8979],[281104.6029,895441.5021],[281564.5041,894759.397299999],[282030.4985,892148.9046],[280751.6977,890812.897],[280749.4963,887314.8983],[280000.0203,887800.2882],[279271.5032,888272.1043],[277129.5022,888295.997500001],[274761.0013,886288.902000001],[274228.4033,887108.2974],[273038.6288,887111.4002],[272859.167,887201.4881],[273447.8021,887521.2992],[273437.2979,888744.199200001],[271869.364,887698.3585],[271550.2216,887858.5645],[271070.8994,888608.498],[268976.5067,889150.5415],[268873.4,889202.300000001],[268830.041,889188.447899999],[267690.0039,889483.497500001],[265349.198,888960.997099999],[265349.198,888076.405999999],[265222.4313,888035.907199999],[264264.1602,888129.731000001],[263917.4704,888394.6107],[261107.8974,891087.6983],[262448.0746,889517.2662],[261510.0997,890233.9027],[263322.0381,888493.147700001],[263626.9037,888135.9033],[263780.097,887025.801100001],[265565.1853,887315.9804],[265858.1986,887242.499],[269940.3463,888018.172900001],[271613.1029,884736.996200001],[274239.1961,884155.9026],[273140.8999,885836.277799999],[273144.762,885840.3095],[274646.296,884694.6983],[274793.2277,885304.8212],[274839.659,885284.7563],[274876.8031,884766.4978],[275472.1364,885011.437200001],[275476.514,885009.545499999],[278419.6328,882616.582900001],[278421.6023,882476.303300001],[279050.7994,882103.4001],[278518.5759,882536.135199999],[280000.0067,883450.1664],[283703.9985,885735.500399999],[286851.699,884010.6041],[287633.001,883305.495999999],[286692.756,883887.0175],[284398.9995,882103.5],[283712.4992,882491.9988],[284108.6002,881971.697799999],[286699.5034,883055.997400001],[289669.4981,883179.502],[291534.399,884337.3006],[292524.4989,887078.9958],[294227.0365,887552.524700001],[294970.5035,887753.8039],[293619.4018,884402.402000001],[289973.5725,880000.0308],[286052.497,875265.297499999],[282374.0332,868920.963500001],[281910.9605,868914.4977],[279999.9959,869024.093800001],[278747.2854,869095.938200001],[278726.645,869267.8618],[279999.9889,871803.511],[280533.0964,872865.104499999],[280476.5023,874286.897500001],[279999.9801,874021.762],[278022.5001,872921.498400001],[276655.6009,873283.4048],[271010.0311,868351.4471],[269137.0182,868881.267100001],[268513.9988,869124.995100001],[266594.2023,868668.9956],[266639.8857,867825.7707],[266560.8652,867778.5469],[263613.1015,868014.0031],[262838.7006,866525.699100001],[263857.1415,866223.022299999],[263834.4848,866170.4443],[262952.6968,866238.601299999],[262562.7961,865291.002599999],[260577.303,864646.9969],[260000.0152,863801.8037],[259974.8993,863765.032099999],[257898.4002,861595.000499999],[257793.5335,861322.776699999],[255925.0391,860000.0075],[255764.702,859886.499600001],[256173.6983,858452.100199999],[256237.6964,858411.401799999],[256863.0465,858907.321900001],[256661.7977,858384.8994],[256968.5005,858990.949899999],[258240.9429,860000.032299999],[260000.0101,861395.0218],[260245.2704,861589.520099999],[266906.4385,866386.850299999],[270941.6993,867176.9027],[270897.3986,865068.996099999],[273141.4981,865240.596999999],[275673.6965,865793.798599999],[278680.9012,867822.9978],[279999.9981,867347.371300001],[281142.6829,866935.353599999],[277830.1079,863146.776000001],[275001.3401,859999.9768],[274501.1004,859443.496400001],[273789.1971,857531.2038],[275026.1808,855714.4537],[272552.8007,856257.8983],[272344.5661,856136.373400001],[272095.4967,856176.4016],[270028.0971,854988.7016],[269149.3941,852775.3574],[266613.0384,848460.365700001],[266202.298,847823.4026],[259999.9756,848879.0612],[257344.1012,849331.101],[258907.6618,848318.759500001],[258000.0041,848353.400900001],[257866.5,847738.9968],[257020.3012,848512.895199999],[256532.9026,847993.304],[258695.4997,847396.005000001],[257900.0986,847218.795700001],[259661.4307,847330.816400001],[260070.8006,846989.701300001],[260712.0025,847080.495300001],[259256.8977,846507.699200001],[262189.1671,846194.119100001],[262878.2027,845747.9967],[265670.4165,847088.5022],[266004.4385,847229.4756],[266466.7996,844297.301899999],[266187.8032,847257.9045],[269507.3967,845988.897700001],[271363.3023,847758.301200001],[271478.4033,849619.7984],[273542.9007,849291.102499999],[274231.0005,851387.3025],[278006.0017,854066.095699999],[277663.9966,855928.3026],[275954.6965,856631.001499999],[277058.9987,857515.3983],[279538.7008,857636.003799999],[279826.174,858559.559699999],[279918.1542,858526.4123],[280000.0048,858478.231699999],[282711.9033,856881.899599999],[281111.2918,858096.4345],[283815.8225,857121.7873],[284651.4962,856737.0011],[287267.2826,857071.9135],[288301.629,857161.866900001],[288372.247,857213.387700001],[288875.3009,857277.7963],[288916.6993,857338.898800001],[290812.4038,858804.3993],[291109.1987,859210.1886],[293098.0767,860661.216499999],[294825.8144,861433.407099999],[296177.8031,857795.998],[295563.4965,857000.095799999],[297672.2039,854304.6974],[296612.2024,853641.6971],[297606.8041,850620.502],[296963.2029,850030.900699999],[298822.1013,849046.9024],[297934.1,848189.197899999],[299227.9975,845651.5043],[298005.997,839712.0045],[300430.2016,838752.699100001],[302976.4991,839502.5044],[303483.0014,840817.9979],[306097.9967,840708.9991],[309941.4979,842153.4956],[311789.0018,839077.496099999],[314016.504,837644.996099999],[315250.501,837915.4987],[316802.5019,834003.998400001],[316002.5001,833362.502],[316228.0025,832041.000299999],[310093.9986,824796.504000001],[310072.9984,823830.000600001],[312727.0011,822075.2029],[311978.0033,821138.5011],[312767.5009,819354.0019],[311747.3972,817411.9978],[313771.502,815637.9956],[312710.9975,814409.497199999],[313580.0022,813509.005000001],[312296.5018,810498.9966],[310153.9979,810610.504699999],[308420.4985,809292.502],[307205.696,809538.501499999],[305671.4962,806654.9969],[304273.4966,806152.0009],[302208.0017,803578.997400001],[299894.9982,803989.9998],[298082.3931,801732.737299999],[296146.9995,799971.5001],[294027.4994,799724.0009],[293502.5034,798960.499500001],[294134.0008,797647.995200001],[295020.5016,797522.5011],[293453,795452.503599999],[294181.5006,793085.5012],[293881.5041,790464.501399999],[293088.997,788399.502499999],[291387.9997,787201.4954],[290468.5023,784179.500499999],[289098.9976,784495.0002],[287193.0033,782809.002800001],[284764.9977,782872.004699999],[284454.497,783892.502599999],[282270.504,784353.500700001],[282175.5497,785825.2994],[281436.4995,785679.0012],[280240.9987,783737.497],[280244.5028,780384.9966],[278289.4999,779440.497],[277573.8038,780322.604499999],[276852.5012,779311.503900001],[276172.0033,780750.202099999],[275780.9978,780169.998199999],[271477.9993,780139.9968],[268053.0009,781357.498299999],[267698.9992,782149.501599999],[265710.9996,779176.502599999],[266515.9979,778373.002599999],[266034.9975,777606.0021],[264959.9982,777479.998199999],[264263.9996,776232.995100001],[259591.4987,775696.4987],[257966.0014,774144.0031],[257868.5036,772694.9979],[257076.4995,772427.5044],[255230.9992,773713.496300001],[250876.5021,767358.4954],[249227.4981,767865.000399999],[246198.9965,771028.504899999],[244323.5007,768500.498500001],[244458.4971,767427.9955],[241773.9959,766137.504899999],[242516.9996,763313.5033],[240573.4985,760397.498],[241459.0016,759974.9989],[241361.9984,758720.9979],[237269.0017,756823.0012],[233603.9978,757172.5011],[233582.5029,753355.503699999],[236715.5025,752950.499700001],[238885.0007,754562.498199999],[239515.5994,752617.904899999],[238328.5003,751241.9987],[238924.5028,750168.495999999],[235169.0011,748646.001800001],[234229.8969,749232.0041],[232681.1034,747315.4027],[229411.4997,747442.496300001],[228017.499,745920.0021],[226220.9991,745505.500800001],[225714.9997,746041.497300001],[223227.4977,745276.996200001],[219038.5037,746533.4965],[218731.4989,745203.997099999],[217482.9988,744242.0024],[216632.9989,744493.000600001],[215998.5002,742920.500700001],[212431.0025,742413.9957],[211779.9972,741431.9968],[209677.5852,741684.0602],[211733.4236,745530.526900001],[209623.3036,742490.4038],[208643.9964,743899.000600001],[209589.4988,744671.499500001],[209943.5005,746728.500700001],[209184.9961,748279.4967],[210588.9981,749191.9955],[211072.002,750643.100199999],[208722.003,751542.002800001],[206603.5005,751222.0044],[206679.9981,752762.003599999],[202976.4981,753518.9969],[202658.5026,750216.0024],[200568.998,749200.0032],[199079.9976,750225.499700001],[197672.4997,749989.497199999],[196097.2328,752593.396400001],[196099.158,752595.470899999],[197980.7,754539.859999999],[197854.9516,754999.75],[197894.86,755053.43],[197836.1584,755068.481000001],[197722.28,755484.960000001],[196155.5,755539.5],[196742.5,756212.5],[199282,757932],[199411.7474,757932.297499999],[200756.6413,757526.557499999],[200780.41,757368.74],[202650.6592,759579.186799999],[204966.74,759765.57],[207313.68,758355.85],[209202.1,758690.630000001],[209868.48,759884.84],[213315,761181],[218358.02,762037.17],[215698.5,762093.5],[206387.13,759264.029999999],[206101,760140],[205010.7303,760116.238],[205062.08,761005.75],[201292.54,761526.800000001],[202551.5,764410],[203470.3915,765590.7366],[210153.85,774023.07],[210167.4677,774196.195900001],[210373.61,774461.08],[211914.34,775482.76],[211081.64,775757.699999999],[210809.66,774860.93],[210319.97,776278.869999999],[209869.4985,776297.906199999],[209498.332,776661.9745],[208223.972,776380.346799999],[208979.6899,776040.6622],[209522,775752.5],[209506.4766,775193.850099999],[208774.196,774056.077],[203680.5631,768653.1406],[203403.9208,768403.731000001],[202065.73,768595.1],[202416.0306,767378.752599999],[201093.8685,765025.6327],[200888.78,764775.91],[201675.002,763445.732000001],[199999.9956,762765.41],[199711.44,762648.210000001],[199032.5,761367],[198824.36,762440.029999999],[198250.6774,762693.4299],[198248.4,762730],[197740,762919],[198225.2894,762704.643999999],[197808.943,762247.845000001],[197603.5,762240.5],[196359.5039,760855.964],[194922.2907,760000.037599999],[194240.5,759594],[194522.3844,758811.296499999],[192606.3729,756678.8243],[191719.5,755732],[189528.37,755380.720000001],[187160.5,752435.5],[186333.5,752717.5],[186024.5,751924.5],[185878.0698,751972.7075],[184184,752731.5],[184456.0439,752440.8642],[183594.5,752724.5],[184852.3288,752017.4965],[185587.2742,751232.3237],[183450.3166,747959.7028],[181772.9796,745565.740900001],[180392.7068,744318.0899],[173344.001,740005.8366],[172726.057,741700.278999999],[169724.77,743290.029999999],[169126.3374,742630.976399999],[168564.7049,743546.33],[168186.89,744209.9],[170267.44,747406.189999999],[169813.3761,747723.4267],[169803.2996,747709.0208],[169810.04,747723.18],[169774.3267,747667.5996],[167406.3814,744282.2522],[161415.2243,746291.3731],[160119.5,746739],[159999.9881,746876.999600001],[156939,750411.5],[155972.27,753581.01],[154645.2104,754713.941500001],[154595.1296,757580.6492],[158852.1946,758295.4232],[159597.5,758054.5],[160503,758568],[160485.8931,758569.7261],[160693,758604.5],[161478,756506],[161996.2122,756593.0778],[164138.066,755112.6338],[165094,754266],[165338,755024.5],[164665.9806,755420.853700001],[164533.5,755795.5],[162884.9345,756776.361300001],[162460.2112,757646.5911],[162485.6248,758047.6231],[164122.5171,758625.780400001],[164782.5,758682.5],[165262.459,759028.412799999],[166086.79,759319.57],[166959.7251,760000.0319],[170730,762939],[170707.163,762952.4825],[170728,762967.5],[172272.5,762308],[173217,760628],[174264.2301,760851.808],[175915.27,759856.02],[183019.5,760733],[178655.5,761107],[175667.5,760262.5],[172536.5,763751.5],[169378.4653,763736.9177],[169358,763749],[168931.2586,764722.9586],[168771,763521.5],[165130.5,760261.5],[163617.5,761015],[161575.4229,760339.529100001],[161429.0615,760360.367699999],[160965.5,761064.5],[160000.0094,760784.997500001],[159585.5,760665],[159584.5752,760666.2542],[159137.43,761840.369999999],[158900.3826,761594.104599999],[158474.26,762171.98],[156795.85,761503.59],[156622,760470],[155897.5,761901],[153249,761546.5],[152028,763039.5],[149247,762630],[148925.0073,762778.2556],[148359.6957,763254.3671],[148485.34,763745.16],[148116.1539,763459.480599999],[148018.59,763541.65],[146411.5691,762274.226199999],[143636,762984],[141891.582,764780.326300001],[141870.7793,764911.188100001],[141531.6052,767355.143999999],[142469.0108,767264.293500001],[142479.8567,767261.821],[143149.9979,768612.875299999],[143243.8133,768595.0416],[144143.5,768251.5],[144149.3244,768422.9102],[144222.5,768409],[144424.48,769204.17],[144181.3438,769365.224400001],[144216.233,770391.9979],[144588.6474,770282.0222],[145309.5,769967],[148448,771351],[151957.55,770243.18],[152619.32,771213.41],[154579.22,770795.82],[154767.613,771390.433],[155290.51,770669.35],[154850.446,771715.606000001],[155883.9365,771467.8895],[156750,771242.5],[156760.6177,771257.7585],[156838.17,771239.17],[157433.5584,772224.8265],[157890.612,772881.648],[160000.0059,770200.876499999],[161080.78,768827.35],[162576.5,770271],[163547,769339.5],[163427.5,767806.5],[165234.75,767546.560000001],[164573.5,768349],[164927.4545,768665.2009],[165654.1,768048.58],[165055.02,768779.16],[164868.8068,768714.968499999],[164583,768957.5],[164618.89,770034.060000001],[164044.84,769647.710000001],[162400.5,770632.5],[162682.1323,772713.283500001],[164139.5,771834],[164229.7087,771877.702400001],[164392.5,771789.5],[164517.59,770636.699999999],[164741,771985],[165998.42,770809.5],[166597.489,772539.3419],[167156.4175,772464.4671],[167745.99,772284.41],[167952.6433,772638.7949],[168310.5127,773029.6984],[169189.5,772058.5],[171232.22,772111.119999999],[164180.5,775460.5],[164378.3081,776564.337300001],[164733.5208,777602.6987],[166521.5,778020],[167234.8,777226.35],[167430.5885,777605.5108],[168601.2266,778153.729],[169164.5,778084],[170139.7699,778874.239800001],[170805.0768,779185.807800001],[173276,778633.5],[174156.548,779999.9903],[174653.5125,780771.2115],[176069.75,781499.050000001],[176052.7281,781728.637],[176706.85,781984.75],[176014.5523,782243.541300001],[175994.5,782514],[175350.5,782527.5],[175329.2981,782499.6996],[175250.06,782529.32],[173293.354,779999.961300001],[172891.5,779480.5],[171228.2566,780000.0012],[169128,780656],[171271.6698,782712.338199999],[172777.9536,783189.730599999],[173261.5,783241],[173128.3188,783300.7732],[173138.5,783304],[172991.1791,783362.323000001],[172249.291,783695.2908],[172256.5882,783717.775699999],[172920.98,784088.439999999],[172465.5,784536.5],[169349.73,784174.822000001],[168334.5,784078],[168305.9943,784053.6653],[166961.0299,783897.541999999],[166947.5,783971.5],[166776.4454,783876.115499999],[164717.47,783637.109999999],[163230,782602],[161386.554,783672.825200001],[161147.0416,784254.6843],[161123.706,784508.7371],[161929.9458,784849.345100001],[162594,784968.5],[163004.5,785970],[164929.5,785291.5],[164908,784683.5],[165456.5205,785357.108100001],[165585,785314.5],[165582.1916,785511.437899999],[166119.6,786171.4],[165704.28,786822.43],[164349,786503.5],[163748,787673],[164236.3458,788262.060699999],[164307.6,788238.35],[164513.3575,788581.5327],[165461.9,788355.800000001],[164847.6746,789139.140000001],[164937.4723,789288.9135],[165737.74,789888.65],[165372.3367,790517.8463],[165377.9748,790663.3268],[166278.7585,792528.899499999],[166490.077,792718.9857],[168031.74,791980.300000001],[167460.06,793494.6],[166284.0934,793405.3486],[166280.3202,793407.5655],[167146.6363,796117.467800001],[167885.7022,797330.4311],[173833.4079,798089.0317],[173986.6583,797623.4266],[174808,794992.5],[179116.73,792392.76],[179521.3559,792719.8665],[181153,793921],[181992.5,793414.5],[186037.5732,794773.52],[185391.5,795543],[184375.5,795361.5],[180358.4106,793782.323899999],[180169.5,793788],[179999.9911,793884.063200001],[177939.3264,795051.8717],[177709.1869,795208.912],[177160.529,796221.498400001],[176728.5173,797121.617900001],[176577.194,798513.549699999],[176727.4759,798770.7612],[177751.02,799142.4],[176731.8638,799705.8795],[176582.04,800055.029999999],[175535.6122,800367.273],[175173.7,800567.369999999],[173934.5629,799999.9582],[172920.733,799535.716600001],[172231.2048,800763.0821],[171937.5,801890],[170707,801160.5],[169924.8523,803616.1845],[170071.6713,803742.6833],[174453.53,807299.640000001],[174769.5,809181.5],[178946.5,809951],[179999.9787,809642.9394],[182641.5,808870.5],[184007,806212],[186782.02,804442.26],[187507,806188.5],[188830.0401,806531.5813],[188873.6271,806535.9629],[188872.1499,806542.5009],[188889.5,806547],[188869.6737,806548.552100001],[188679,807014.5],[186476.692,806735.8802],[186456,806737.5],[184984.6955,808015.557399999],[184569,810376.4],[181655.5,811884.5],[179999.9956,811780.367900001],[178690.5,811698],[178515.1641,811799.3709],[177375.5272,812925.134],[177032.8092,814070.5329],[177121.5,814568],[176894.4104,814533.0759],[176831,814745],[177123.1377,815171.874399999],[178766.15,816866.8235],[179999.9943,817591.291300001],[180719.69,818013.869999999],[181402.8319,820000.010399999],[181465.6,820182.5],[180000.0102,820887.137700001],[179431.1178,821160.654200001],[179394.7091,821179.788000001],[179999.9992,822279.183],[180706,823561.5],[182007.0503,824036.132300001],[183223.8047,824401.9409],[183930.45,824027.09],[187192.5,825589],[190264,821195],[191860.8371,819999.9781],[193396.2682,818850.910499999],[194125.5519,819999.999199999],[194612.0668,820766.571699999],[195462.87,820912.369999999],[194648.8,820824.449999999],[194372.806,820757.1447],[194549.03,820915.810000001],[194289.8197,820736.907199999],[193937.3,820650.939999999],[191541.5304,821876.446],[190802.6219,822724.214600001],[188288.7347,826279.407600001],[189340.2599,828059.4724],[188374.9159,827578.357799999],[188145.9025,827054.5919],[188138.4,827568.9],[188002.9647,826727.6855],[187805.511,826276.098300001],[187548.1178,826455.0714],[187537.76,826616.800000001],[187369.2212,826579.463500001],[187027,826817.42],[185778.53,826278.560000001],[185641.294,827047.908],[183497.64,825741.08],[183104.69,826910.039999999],[181925.4,826196.4],[180260.62,827728.890000001],[180000.0091,827617.772700001],[179792.2517,827529.1907],[175566.8609,827509.2501],[175435.8633,827528.054500001],[175996.121,827557.280300001],[176009.16,827556.949999999],[175408.86,829054.119999999],[176284.5,831067.5],[177514.5,832285],[177841.2032,832280.117900001],[178528.4,832155],[178510.2688,832270.1197],[179253.04,832259.02],[178487.8217,832412.6417],[178332.9236,833396.129000001],[178303.7459,833889.708000001],[179628.5,833705.800000001],[180131.0175,834153.1535],[180716.0053,834231.784700001],[180720.2898,834104.094599999],[180000.0028,833374.957900001],[179717.16,833088.640000001],[180000.0028,833050.415200001],[180391.62,832997.49],[184547.28,833788.449999999],[184903.9,834918.6],[187469.5,834682.5],[189257.5005,836161.691299999],[191365.5,837817.5],[191438.7786,837966.236500001],[192321.45,838696.460000001],[193045.2565,840000.0472],[193781.87,841326.699999999],[193417.1,842163.220000001],[191898.46,841780.039999999],[190253.6243,840000.001700001],[189404.49,839081.07],[189593.471,838813.347999999],[186204.0751,835313.404100001],[183451.61,835157.050000001],[183299.4633,835264.1668],[183139.7135,835859.6929],[183732,836231.5],[182611.987,836380.439200001],[181502.127,836801.6061],[181654.5,838021],[182181.7548,838253.721999999],[183576.4,838801.800000001],[183551.8294,838858.4515],[184114.85,839106.960000001],[183057.6815,839997.7871],[182943.0146,840262.1697],[183474.19,842497.4],[182462.3657,840325.2323],[180993.5467,839331.161599999],[179999.9903,838838.7542],[178354,838023],[176573.2239,836339.565400001],[175213.879,835419.584799999],[172206.7763,834787.337400001],[172168.8614,834781.6647],[171169.49,838169.060000001],[170763.5,836634],[170255.5,836794.5],[169869,839892.5],[169942.4102,839859.376700001],[170367.59,839401.24],[170398.2442,839653.7005],[170579.78,839571.789999999],[170577.7646,839999.966],[170572.92,841029.220000001],[171275.2905,839999.9618],[171387.52,839835.5],[171336.1125,839999.9618],[171071.0545,840847.93],[171346.72,840688.609999999],[170944.5873,841252.521],[170498.8976,842678.362299999],[170696.3274,843500.285700001],[171677,845146.83],[170340.918,845399.4979],[170281.5,845491.5],[168810.1876,845784.710200001],[167897.5,849278],[170549.6592,859999.9888],[170752,860818],[171172.9646,860706.411],[171472.5,860521.5],[171544.5881,860607.9013],[171697,860567.5],[172265.37,861470.92],[173432.5444,860000.046800001],[174692.81,858411.859999999],[176148.6781,857722.8355],[176125,856607.5],[176180.5185,856628.319399999],[176183.5,856516],[177073,856962.5],[178259.541,856014.540999999],[177708.5,857389],[178224.5,857864.5],[178267.084,857629.433],[178664,855178],[178720.5999,855125.9914],[178760,854908.5],[179066.6072,854808.052100001],[181186.8715,852859.7829],[181481.8,852403.800000001],[181464.9899,852701.404100001],[181332,856505.5],[183233,853674.5],[183207.5,854919],[185763,855052.5],[186129,854439],[185971.5,855222],[186831.5,854693],[186900.5,855432.5],[188479.4946,854522.338099999],[189219.2,855892.9],[188670,856855],[185329.29,857506.689999999],[182677.35,857540.029999999],[180572.3893,856551.079299999],[180512.325,857394.863],[179999.9845,857741.239],[178573.2534,858705.803300001],[178755.4979,859442.6029],[179932,859030],[179748.4288,859999.9694],[179731.78,860087.939999999],[177280.5,861167.5],[177082,863524.5],[175844.5,865506.5],[175402.4132,865860.273600001],[174224,866957],[173955.0806,867018.4804],[173297.537,867544.67],[172176.9681,867460.7597],[172186.031,867488.2421],[174357.84,872296.380000001],[174300.7,873828.199999999],[177416.42,874868.969000001],[177874.8675,874002.0568],[177781.88,873760.289999999],[179181.95,873780.91],[179415.0703,873581.9016],[180520.43,872551.970000001],[180505.022,872651.440099999],[180634.17,872541.189999999],[180346.7356,873684.351],[181324.544,873887.922599999],[181194.05,875216.09],[180085.96,875105.050000001],[180578.092,875739.414999999],[180028.7199,877163.0098],[180000.0221,877165.6905],[176259.78,877515.07],[173219.5,879744.5],[173271.3706,879999.988299999],[174193.438,884541.630000001],[173978.113,887953.3226],[173828.9474,891484.958799999],[174029.0143,891806.090700001],[175270.896,891891.155300001],[175911.57,891744.382999999],[177043.5,892955],[177077.7578,892948.988600001],[178269.5,892419],[179101.865,892593.8047],[180000.0168,892436.1998],[181584.9086,892158.0879],[181610.1617,892129.7217],[180944.1,889796.800000001],[180997.5078,889783.831499999],[180995.8,889778.4],[181480.9551,889095.719000001],[181335.456,888739.067],[181843.8671,888585.051200001],[182628.7541,887480.605599999],[182666.67,887343.300000001],[182088.1,884850],[184623.279,881117.355],[185759.73,880753.939999999],[186237.1,881632.5],[184799.5,883561.5],[185654.9188,884227.7491],[185748.1911,883711.0107],[185820.5,883189],[187134.2178,883454.928200001],[187344.1,883493.1],[187341.2295,883496.8324],[187358.36,883500.300000001],[187327.5,884435],[186324,884826],[187461.88,888580.369999999],[186178.6,890264.300000001],[183992.89,890993.93],[183332.4698,893545.028100001],[183352.0277,893569.2633],[184107,893997],[183879.3686,894222.7172],[183903,894252],[183556.0967,894543.2706],[183393.5,894704.5],[183644.6488,895259.880100001],[185680.7346,898327.034499999],[185823.5,898514],[187986.0648,897865.0244],[188148.5311,896823.7304],[188839.1248,897561.304],[188993.1358,897630.8379],[189189.9392,897462.2521],[189405.2233,896451.864800001],[189130.11,895910.014],[189577.8784,895641.547],[189969.6375,893802.9142],[190111.1,892178.300000001],[190342.7816,892051.6467],[190357.6,891982.1],[191106.1228,891634.351199999],[193145.62,890519.42],[195106.95,889838.289999999],[195088.2201,890445.036499999],[195116.5,890456],[195085.8524,890521.736199999],[195058,891424],[195228.3842,891625.154200001],[196041.1,892369.5],[196162.7323,892728.2379],[196677.962,893336.514],[196441.5319,893550.5199],[197345.2057,896215.7839],[200000.0054,894442.4563],[200642.5492,894013.256100001],[201649.5,893337],[202842.6,891113.300000001],[208309.6,888756.5],[207473,891029],[203766.5,892512],[202198,895676.300000001],[199059.6788,896495.680299999],[199038.5529,896521.9846],[198534.3343,898613.943],[200000.0132,898417.8783],[200434.595,898359.744000001],[200466.0003,898403.0867],[200483.5,898401],[200511.4841,898465.859200001],[201056.4415,899217.9584],[202287.7286,897426.6699],[202814.4,896524.800000001],[204059.0063,896180.1132],[204671,896002],[204689.9538,896005.375700001],[204754.5,895987.5],[208205.4593,896630.4585],[208018.5,896094.5],[209091.5431,895761.703299999],[213223,891706],[214648.3,891561.1],[216851.62,886446.43],[217716.8699,886099.1741],[216201.7,890954.300000001],[214336,892141],[213262.4,893972.6],[212462.3,893646.5],[211228.3798,895052.5855],[212450.6,894641.199999999],[209198.0254,897389.8968],[209325.9556,897473.0537],[211892,899061],[212121.1203,899999.999299999],[212299,900729],[211632.0431,900000.000600001],[211138,899460],[211169.1152,900000.0052],[211222.5,900926.5],[209258.5,901081.5],[208106,902571],[204327.1206,903659.3651],[204403.449,904031.804300001],[204567.5,904712],[203306.252,906796.357000001],[201853.5,906867.5],[202362.01,907609.91],[201858.34,909067.119999999],[201626.4368,909124.863],[201550.5,909278.4],[198427.9096,909921.283500001],[198169.5749,909985.607899999],[198196.9506,910098.388499999],[198730.305,912168.911],[196928.5,913297],[196196.01,914997.449999999],[196883.5,915300.5],[197004.5,917268.5],[197613.9024,917735.523600001],[198194.4346,918121.906400001],[200000.0028,916605.8013],[200809,915926.5],[202035.321,912550.107000001],[202385.1332,914457.504899999],[203127.9969,914997.0605]]],[[[335978.6011,976489.4024],[334046.8987,976025.895099999],[335436.3977,979280.003599999],[336290.6025,977953.0034],[335978.6011,976489.4024]]]]},"properties":{"LAD22CD":"S12000017","LAD22NM":"Highland","BNG_E":241018,"BNG_N":858292,"LONG":-4.66103,"LAT":57.58657,"OBJECTID":328,"GlobalID":"10ae38e3-511a-435d-9ec4-a8b303aeec9e"}},{"type":"Feature","id":329,"geometry":{"type":"Polygon","coordinates":[[[236642.3766,673912.653100001],[235407.2999,672097.4036],[236737.7971,671189.603499999],[236295.2023,669312.0009],[237509.7987,668223.8024],[236759.3992,667070.4026],[237550.1995,666297.4038],[235950.7978,666268.302200001],[235887.8962,664960.0966],[234571.498,663812.495100001],[230955.9975,664156.4967],[229245.9825,665599.995999999],[227885.335,665262.492000001],[225276.9973,667871.5033],[225022.9999,670152.500299999],[222160.0014,668336.000299999],[219395.7273,668388.125299999],[219396.0462,668397.169600001],[219156.9285,669175.5416],[218991.7584,670430.8904],[220000.0077,671562.770500001],[220619.7994,672258.5605],[219999.9796,672828.2941],[219956.25,672868.49],[219999.9807,673238.1291],[220272.1943,675539.0462],[220326.9533,675911.764],[224211.93,678013.59],[224598.6006,677702.728399999],[224906.2,677439.9],[224911.41,677451.247099999],[225095.25,677303.449999999],[225398.5,677937.550000001],[226740.94,677674.43],[228647.8,675764.359999999],[236642.3766,673912.653100001]]]},"properties":{"LAD22CD":"S12000018","LAD22NM":"Inverclyde","BNG_E":227922,"BNG_N":670894,"LONG":-4.75387,"LAT":55.9003,"OBJECTID":329,"GlobalID":"ad95b428-4101-4a83-ae4d-81c7c3fd5cf6"}},{"type":"Feature","id":330,"geometry":{"type":"Polygon","coordinates":[[[347072.9987,658736.098200001],[345565.9994,659326.3993],[344705.9983,657456.5045],[343567.5038,657688.998],[341849.0022,655931.0012],[341094.2988,656097.203600001],[340470.1971,658820.903999999],[332620.9979,652347.4969],[330816.5003,649855.500299999],[331511.9959,648175.5012],[329205.0031,646900.496099999],[327797.0023,648615.495200001],[328271.4973,650222.495200001],[327207.9998,651235.495300001],[327682.5031,652570.903000001],[326397.9968,653815.4967],[326851.7967,654639.7008],[326024.0008,654856.5987],[325808.4997,657131.0977],[325150.8983,657185.1022],[323941.2984,655186.904200001],[323233.5011,655537.8037],[322578.398,654669.802200001],[320158.2994,654293.300000001],[319014.5033,654894.9977],[318948.6006,656648.4958],[315758.504,656338.604499999],[314327.4994,659833.0042],[315484.5041,660147.0044],[319019.4998,664430.9981],[320905.1041,665496.203199999],[321628.7431,664645.0999],[322627.5963,666204.000600001],[324462.8974,666228.703500001],[324957.0982,667507.897299999],[327391.8977,666827.801999999],[331774.1971,667949.301000001],[330235.3966,669493.198999999],[330639.8004,671294.5034],[332085.8027,671460.196],[332735.497,670112.1019],[336462.3966,668081.7031],[338289.3496,669301.054099999],[339656.6982,669173.000700001],[341443.5018,663765.398600001],[342911.403,662975.104800001],[344107.0029,663266.2015],[343810.6012,662316.0035],[346103.0002,661074.098999999],[347072.9987,658736.098200001]]]},"properties":{"LAD22CD":"S12000019","LAD22NM":"Midlothian","BNG_E":330088,"BNG_N":659217,"LONG":-3.11738,"LAT":55.82111,"OBJECTID":330,"GlobalID":"fde58266-ac86-4b9c-803a-57c36d89767a"}},{"type":"Feature","id":331,"geometry":{"type":"Polygon","coordinates":[[[352320.225,867541.492000001],[352182.0013,864245.901699999],[353998.2976,862483.5962],[351662.1008,858062.6017],[352754.2993,857507.8005],[353720.101,855165.301000001],[355411.7979,854649.6986],[355262.2985,853302.904100001],[357026.7003,852911.396199999],[357679.1979,849156.401000001],[359043.5,850081.6962],[361185.4019,849010.6028],[358599.2973,847569.395300001],[358479.7027,846634.902799999],[357661.8009,846979.0043],[357071.8008,845867.602499999],[355641.0024,846224.500299999],[354529.6011,847328.5043],[354645.403,848219.9991],[352848.7959,846729.3958],[351158.4017,848041.5002],[350944.7969,849736.8049],[350199.8969,850116.7961],[348223.498,849165.998299999],[347051.0009,849483.997300001],[347005.4964,848317.0013],[344996.1997,846606.7009],[345149.5001,845350.4005],[341807.1997,845583.4038],[338888.2997,840372.5954],[339436.1015,839625.599199999],[342739.3039,839093.2016],[339628.7969,837147.6985],[338567.5008,835438.9976],[340649.1974,834688.102499999],[342704.5015,832334.496300001],[340934.5012,830741.5023],[341737.0013,829403.495300001],[341561.4969,826812.9968],[342769.0026,825700.295299999],[341243.5014,823565.996200001],[340754.5033,821219.4979],[338627.5002,819460.501399999],[337169.996,821385.000499999],[336540.502,820990.5034],[334245.0028,822045.501499999],[333156.0034,821268.503900001],[331168.4984,821388.999399999],[329831.5041,819666.002599999],[327189.0032,819031.0043],[324902.7962,815000.098200001],[325025.4992,813059.503699999],[323625.999,813204.5022],[322761.999,811767.003599999],[320697.9964,812042.504799999],[318269.4961,810517.5013],[318051.4967,809243.495999999],[318933.0009,808078.499500001],[318454.0041,807168.9998],[320043.0005,805165.5033],[319161.4963,803019.4976],[317971.0002,802949.997500001],[316600.4979,801602.5032],[314658.4974,801692.997300001],[313916.4996,802500.496099999],[312287.0035,801069.9956],[310040.9993,801374.998299999],[308171.003,800508.996200001],[306872.0019,801033.496099999],[305991.0006,800140.001800001],[305717.0007,801679.0013],[303532.4965,800355.000299999],[300318.4975,800910.5013],[299147.5009,798722.4976],[298082.3931,801732.737299999],[299894.9982,803989.9998],[302208.0017,803578.997400001],[304273.4966,806152.0009],[305671.4962,806654.9969],[307205.696,809538.501499999],[308420.4985,809292.502],[310153.9979,810610.504699999],[312296.5018,810498.9966],[313580.0022,813509.005000001],[312710.9975,814409.497199999],[313771.502,815637.9956],[311747.3972,817411.9978],[312767.5009,819354.0019],[311978.0033,821138.5011],[312727.0011,822075.2029],[310072.9984,823830.000600001],[310093.9986,824796.504000001],[316228.0025,832041.000299999],[316002.5001,833362.502],[316802.5019,834003.998400001],[315250.501,837915.4987],[314016.504,837644.996099999],[311789.0018,839077.496099999],[309941.4979,842153.4956],[306097.9967,840708.9991],[303483.0014,840817.9979],[302976.4991,839502.5044],[300430.2016,838752.699100001],[298005.997,839712.0045],[299227.9975,845651.5043],[297934.1,848189.197899999],[298822.1013,849046.9024],[296963.2029,850030.900699999],[297606.8041,850620.502],[296612.2024,853641.6971],[297672.2039,854304.6974],[295563.4965,857000.095799999],[296177.8031,857795.998],[294825.8144,861433.407099999],[294861.6027,861449.4022],[296644.5,862969],[297325.5,862923.5],[295370,861298],[298472.5,863106],[299283.5,864359.5],[300000.0072,864498.2937],[302013.94,864888.41],[303444.23,863975.23],[303153.72,862797.57],[302083.61,862481.4],[301461.998,862096.366],[302078.49,861137.34],[302083.124,862353.817299999],[302238.948,862418.404999999],[302647.31,862252.800000001],[302131.41,861911.43],[302759.81,862209.9],[302425.8,861443.970000001],[303308.25,862094.33],[304492.74,861552.449999999],[304068.54,860824.609999999],[304580.68,861554.699999999],[305182.28,861206.970000001],[305609.92,862898.310000001],[303190.42,864816.449999999],[305300.3788,864834.656199999],[305715.33,864722.42],[307916.8066,864857.2326],[308909.7,864865.800000001],[310844.5,866459],[310853.54,869252.390000001],[313079.83,869146.460000001],[319999.9931,871310.4088],[320168.56,871363.119999999],[323935.76,871240.07],[323658.4021,870495.3029],[325257.97,869029.15],[323839.893,870588.034],[324794.812,870051.3824],[324813.73,870021.43],[326971.6808,868828.011299999],[330099,867070.5],[334476.08,865634.972999999],[333681.389,865658.522],[334166.76,864801.539999999],[334661.533,865610.514],[338815.62,864211.74],[340000.0161,864807.319800001],[340815.0773,865217.1776],[344438.2,866758.4],[344696.456,867168.949200001],[347639.0409,868648.6435],[348289.7456,868752.0229],[349569.34,868798.560000001],[350458.5042,867031.077500001],[352316.9358,867537.944399999],[352320.225,867541.492000001]]]},"properties":{"LAD22CD":"S12000020","LAD22NM":"Moray","BNG_E":328015,"BNG_N":843590,"LONG":-3.20202,"LAT":57.4768,"OBJECTID":331,"GlobalID":"f24e5e20-f99a-4c39-bfd7-e3d48a68916d"}},{"type":"Feature","id":332,"geometry":{"type":"MultiPolygon","coordinates":[[[[198605.1595,620000.034],[198489.64,619937.470000001],[198148.0157,620000.043099999],[198605.1595,620000.034]]],[[[206192.5559,629795.073100001],[206641.3771,628577.234099999],[205261.4456,630115.6752],[205492.781,630986.4155],[205597.5041,631355.4958],[206192.5559,629795.073100001]]],[[[194944.7531,652351.1768],[198880.64,650115.810000001],[199999.978,648858.5579],[201343.5,647349.5],[202980.3563,639999.9728],[203073,639584],[201914.1957,638072.273700001],[201397.7,637464.699999999],[201402.3716,637404.57],[200911.5,636764.199999999],[201472.2891,636504.6437],[201474.6,636474.9],[202491.8892,636032.730799999],[204103.07,635287.01],[205635,633096],[202646.336,630877.268999999],[202830.933,630036.528000001],[205654.04,628319.220000001],[204584.15,626340.619999999],[205108,622176],[203215.8,620626.699999999],[201621.3,621149],[200566.8723,620882.521500001],[200319.5,620928.5],[199943.9081,620725.084000001],[197857.5,620197.800000001],[194422.61,620981.77],[193823.1859,621462.7138],[193718.74,621753.76],[191869.6266,623030.138599999],[190649,624009.5],[189949.816,627725.187999999],[188208,628779.5],[188262.5552,629304.806299999],[188775.8493,632157.2203],[189560,633484.4],[186509.7297,639999.991800001],[186259.5,640534.5],[186360.5,642296.050000001],[188533.5,647887],[190982,648969.5],[191744,650811],[193605.537,650326.064999999],[193464.3897,650707.0243],[193533.2,650702],[193410.9473,650851.2664],[193154.3823,651543.7402],[193224.6659,651644.3321],[194901.5252,652343.255899999],[194944.7531,652351.1768]]],[[[215616.9023,652986.8039],[214472.6601,650320.997099999],[213694.3025,651579.096899999],[215616.9023,652986.8039]]],[[[218559.4987,656285.1998],[217996.1961,654870.9046],[217194.1001,654002.703199999],[217231.7965,655026.4001],[216200.496,654890.698999999],[215109.7793,653926.5647],[215100.8511,653976.0842],[216394.6012,658457.597999999],[217391.2527,659008.5737],[218003.4664,659326.1303],[218559.4987,656285.1998]]],[[[225022.9999,670152.500299999],[225276.9973,667871.5033],[227885.335,665262.492000001],[225785.9979,664236.003900001],[229543.9978,661969.002800001],[228999.9969,660901.498400001],[229594.0041,660220.0035],[231766.0006,659982.501499999],[233117.7041,655023.900800001],[234904.9036,656775.999299999],[235040.9965,655478.400699999],[235922.0968,655117.0042],[238640.9963,657461.303099999],[240057.8342,655507.115499999],[241287.6032,653032.300899999],[238058.9033,649554.296499999],[235931.1993,645651.703600001],[234177.6974,645268.4033],[236719.0973,643230.5966],[236244.7013,642386.598200001],[236869.7016,642007.9966],[238253.899,642429.4959],[239929.9962,644440.600299999],[240885.203,643566.1006],[243309.4984,644101.7973],[243050.4962,643155.598099999],[239170.7003,642207.7994],[238337.5039,640669.299799999],[238987.6022,639819.802999999],[237088.8966,639110.396],[237602.0032,637468.7959],[236767.5041,636864.198999999],[233118.2978,633148.102700001],[232469.65,633737.011600001],[232484.0716,633934.793400001],[231865.865,635016.8675],[231510.9,636144.5],[230700.5128,637056.6346],[230274.302,637802.65],[230124.481,637989.4],[229529.3794,638374.808499999],[229053.7959,638910.103399999],[226905.9239,640178.9573],[226683.65,641241],[225342.4409,641102.583699999],[225193.45,641190.6],[225017.3888,641069.0375],[224169.0915,640981.490900001],[224083.0823,641075.729900001],[223954.15,641911.25],[222677.0266,642071.993899999],[222835.25,642276.5],[222647.2896,642624.2226],[222950.409,642970.549000001],[220137.83,647120.52],[219999.9904,647213.744899999],[217508.126,648899.063999999],[217769.937,651464.715],[218943.936,652204.017999999],[218645.1045,652613.9713],[218826.3727,652661.1647],[218466.8044,652858.573000001],[218354.1661,653013.0964],[218389.0339,653027.6285],[219667.08,652289.26],[219587.92,654366.146],[219999.9768,654267.58],[220749.811,654088.216],[220904.18,655282.438999999],[220894.4325,656183.0189],[221010.681,657123.205],[220880.4917,657471.0327],[220878.484,657656.524],[219999.9692,659926.5798],[219971.5604,659999.987299999],[219172.735,662064.128],[219395.7273,668388.125299999],[222160.0014,668336.000299999],[225022.9999,670152.500299999]]]]},"properties":{"LAD22CD":"S12000021","LAD22NM":"North Ayrshire","BNG_E":228996,"BNG_N":651640,"LONG":-4.7246,"LAT":55.72789,"OBJECTID":332,"GlobalID":"fdbc77cb-143f-4b10-9119-6df399a39adf"}},{"type":"Feature","id":333,"geometry":{"type":"MultiPolygon","coordinates":[[[[339138.0014,984040.5009],[338117.9966,983671.4965],[339324.0017,985406.9998],[339138.0014,984040.5009]]],[[[336106.706,994514.494899999],[336480.0987,993989.603],[337918.1033,994288.0976],[337716.0993,992347.1032],[336516.8964,993060.5989],[336480.5162,992995.378900001],[336447.4978,993012.7027],[336360.1413,992779.578400001],[336152.2009,992406.7961],[334323.0011,992699.5023],[334133.0019,994558.000299999],[338363.5015,996271.4998],[338479.5013,995623.495300001],[335821.3019,994915.697899999],[336069.3221,994567.046800001],[335965.104,994523.3002],[336106.706,994514.494899999]]],[[[333401.5887,994927.102600001],[332999.1484,994688.509400001],[332216.4314,995557.952500001],[331974.2084,996036.0198],[332135.0672,996307.3431],[332902.5134,996888.877800001],[333266.4332,996377.1699],[333662.5011,995346.898399999],[333401.5887,994927.102600001]]],[[[332973.3529,999059.6031],[332742.0921,998908.069599999],[332596.3311,999363.785800001],[332486.6744,1000000.0025],[332461.2003,1000147.8003],[332636.5282,999999.999500001],[333301.1657,999439.712200001],[332973.3529,999059.6031]]],[[[361831.5014,1001770.5957],[360741.2774,1000743.1952],[360691.9025,1001185.9839],[360708.5983,1001529.8047],[361831.5014,1001770.5957]]],[[[327304.491,989494.514],[328639.573,989087.017999999],[330363.63,991069.9],[333522.331,991578.034],[333765.195,991420.667199999],[334276.3701,991006.390000001],[333401.805,989363.913000001],[334577.314,989321.2787],[334559.9836,989283.5572],[331396.9,988327.140000001],[328913.997,989280.254000001],[328990.6961,989155.212300001],[328878.12,989194.59],[329433.7848,988432.85],[329544.71,988252.01],[329164.9147,987946.054300001],[328958.4731,987793.0699],[327834.07,988901.289999999],[325107,988558],[323693,990627],[323374.644,992976.479],[321020.5,995225.5],[320538.741,998664.721000001],[320000.0023,998755.7171],[318906.8433,998940.357899999],[317401.4886,999366.986300001],[317629.3671,1000000.0522],[319332.5,1004731.5],[319999.9783,1004972.0383],[322173.84,1005755.43],[323727.5987,1005265.1891],[323904.5028,1004769.4702],[324405.815,1002822.93],[325084.5846,1002769.242],[329758.0074,999908.7292],[330169.1371,999600.1447],[330086.5279,999495.7903],[329096.701,998729.512],[329509.6608,998645.718699999],[329846.5329,998204.411699999],[329661.301,997700.032],[330925.7675,996790.5999],[330959.6857,996746.1666],[329977.533,995420.299000001],[330229.1565,995322.581499999],[330194.81,995267.789999999],[331291.4471,994910.043],[331351.879,994886.5744],[331351.7945,994886.406300001],[330493.82,993899.58],[332560.154,993163.975],[330566.733,991421.822000001],[328364.907,991243.222999999],[328170.8455,990923.2004],[328068,990905],[327885.0522,990451.904899999],[327304.491,989494.514]]],[[[338294.6965,1006246.0047],[338206.2757,1006211.7863],[338191.4328,1006220.2478],[338239.0011,1006254.0024],[338294.6965,1006246.0047]]],[[[325564.3702,1006175.3049],[326263.0004,1005716.8961],[326836.6011,1006087.1001],[327154.2998,1004746.8038],[325653.6265,1004809.5531],[324933.539,1004891.841],[324801.6169,1006635.3485],[325564.3702,1006175.3049]]],[[[348591.7565,1015795.6949],[348352.4433,1015013.1434],[348330.4781,1015060.2608],[348353.6139,1015764.4063],[348591.7565,1015795.6949]]],[[[367691.8442,1015845.5481],[367226.71,1015473.0153],[367224.3499,1015509.4218],[367420.1028,1016645.7978],[367939.6707,1016126.8697],[367691.8442,1015845.5481]]],[[[256199.1262,1018037.8269],[256202.0873,1017758.7888],[256152.7306,1017944.799],[256199.1262,1018037.8269]]],[[[354118.6829,1021815.7795],[354132.7003,1020460.4958],[353878.5142,1019999.9985],[352810.5966,1018065.3014],[353576.4689,1016568.7851],[353843.5874,1015998.3586],[352716.6029,1014988.6021],[351228.1213,1015631.7436],[349661.7005,1016493.5013],[349420.7819,1016412.6569],[348370.4003,1016866.5046],[348161.6735,1016590.3151],[347743.8671,1016166.6904],[346489.3968,1016301.2964],[347829.0004,1020000.0302],[348371.4969,1021497.8989],[348877.3106,1019999.9683],[348916.5037,1019883.9009],[349119.1066,1019744.836],[349129.8034,1019719.5979],[349173.878,1019707.2414],[350633.6036,1018705.2982],[350196.6978,1019307.9957],[350354.1106,1019376.3578],[350976.4003,1019201.8961],[351888.8279,1020042.8638],[352065.3007,1020119.5034],[351946.5966,1021397.7975],[352482.45,1021682.8184],[353121.996,1021668.4001],[353865.1867,1022418.2974],[354059.93,1022521.8815],[354118.6829,1021815.7795]]],[[[344843.6001,1023049.4047],[345840.1972,1021660.5023],[345545.5022,1021157.7962],[344982.8015,1021901.0035],[344298.3116,1021023.4396],[344265.0479,1020982.3203],[343194.8023,1022588.6966],[344843.6001,1023049.4047]]],[[[262564.341,1024726.2268],[261904.9933,1024278.839],[262183.6102,1024783.5983],[262564.341,1024726.2268]]],[[[345626.7901,1026119.1225],[344723.0986,1025282.2956],[342177.304,1025595.8958],[345040.0657,1027092.6222],[345626.7901,1026119.1225]]],[[[361817.0973,1027967.197],[361791.7025,1027890.0991],[361763.6033,1027958.5995],[361817.0973,1027967.197]]],[[[361969.8589,1028257.8038],[362049.5667,1027018.8015],[361903.3224,1027045.9422],[361147.2123,1027733.4064],[361125.5016,1027796.5959],[361169.6787,1027820.7265],[361768.303,1027660.2049],[361897.0962,1028218.0591],[361969.8589,1028257.8038]]],[[[336535.0026,1029375.0041],[336132.9981,1028608.0036],[335742.5393,1029502.4347],[335701.0049,1029617.5927],[336535.0026,1029375.0041]]],[[[366738.0184,1029181.5796],[365797.5984,1029167.1036],[366514.6961,1030178.1042],[366963.5245,1029245.8811],[366738.0184,1029181.5796]]],[[[322267.4498,1018719.4558],[323544.88,1019423.847],[322921.8619,1020000.0142],[322714.6,1020191.69],[322945.831,1024269.099],[322343.1494,1024899.697],[322387.6599,1024955.5998],[324518.272,1026980.092],[324427.1172,1027517.046],[324595.4,1027728.4],[324363.633,1027891.0042],[324270.4,1028440.2],[324348.2687,1028460.2873],[325007.7,1028367.5],[326487.5877,1029012.1539],[331563.6923,1030321.6046],[331574.4588,1030314.1093],[336402.81,1026814.79],[336601.9006,1026814.168],[337411.114,1026250.82],[338685.7483,1026767.3216],[338702.2199,1026672.7368],[338854.1,1025680.9],[340000.0225,1024856.3958],[340204.6,1024709.2],[340184.735,1024688.2328],[339315.07,1023960.09],[339412.0718,1023872.7007],[339271.379,1023724.202],[339999.9861,1023116.1756],[342533.668,1021001.805],[342398.3045,1020000.0253],[342034.342,1017306.462],[340000.0225,1018141.32],[338994.525,1018553.963],[339063.4769,1018395.3254],[338981.664,1018427.789],[339096.6669,1018318.9651],[339647.8849,1017050.7792],[339602.9395,1016881.476],[339184.3169,1015674.9387],[338652.649,1015675.6893],[338051.74,1015704.387],[337368.2615,1014832.5402],[337186.2,1014873.4],[337060.212,1014439.5915],[336842.451,1014161.815],[335538.9742,1014250.7552],[335539.374,1014250.3676],[335538.878,1014250.419],[335540.8099,1014248.9752],[336254.8,1013556.65],[337663.8864,1013020.0155],[337632,1012958.66],[337894.3267,1012932.2549],[339561.463,1012297.345],[340000.0225,1013275.1076],[340281.6545,1013903.0025],[340358.4175,1014003.684],[342265.5,1014107.7],[344896.726,1011239.6192],[344897.2024,1011240.5618],[344897.43,1011240.31],[346574.229,1014484.7425],[346782.2575,1013710.814],[346791.29,1013617.76],[346806.5349,1013620.495],[346819.715,1013571.461],[347468.6992,1013739.2893],[348303.303,1013889.0199],[348257.4021,1013788.4023],[347733.39,1013517.06],[348055.7825,1013346.4392],[347494.724,1012116.563],[347654.547,1012091.727],[347624.51,1012038.57],[348040.7835,1012031.7071],[348894.1538,1011899.0962],[347885.8682,1011287.7892],[347252.612,1010973.827],[347238.64,1009049.89],[349001.188,1008458.065],[349049.9254,1008530.2525],[349145.8,1008499.2],[350011.2194,1009954.0756],[350896.6958,1011265.6011],[351879.6056,1010972.2095],[352644.143,1010695.911],[354021.2207,1011800.1772],[354512.5107,1009301.7477],[354555.27,1008960.564],[352943.449,1009139.632],[351305.141,1008166.43],[352437.6341,1005875.0109],[352419.2848,1005337.3714],[351633.56,1004535.5],[352645.8,1004009.1],[352918.7053,1004755.3807],[353484.0354,1004876.4005],[353967.574,1004879.069],[353706.505,1004223.856],[354688.187,1003426.856],[355272.182,1004679.983],[354491.08,1004684.93],[354847.343,1006184.45],[353864.8607,1006930.7333],[358423.18,1009254.3129],[359398.1,1009723.7],[358703.49,1005781.37],[359110.9587,1004277.7303],[359099.8774,1004075.4003],[357027.437,1004293.214],[356203.9,1003123.22],[355218.3923,1003245.2801],[354884.05,1003304.28],[354874.332,1003287.8937],[354837.496,1003292.456],[354450.3235,1002572.9346],[352265.1862,998888.377599999],[351423.1947,1000000.0264],[350798.362,1000824.969],[349158.053,1001771.906],[348408.005,1001258.054],[348425.7579,1001242.4729],[348411.4,1001233.7],[348642.2365,1001052.4769],[349166.43,1000592.41],[348715.5284,1000000.0094],[348354.8583,999526.156199999],[347429.84,998376.640000001],[347495.5266,998397.1546],[347445.79,998331.810000001],[349048.6594,998803.148600001],[348971.3461,997767.054300001],[348863.429,996704.157],[350602.1,996505.4],[348331.8373,995379.699899999],[348100.867,995268.262],[348102.1404,995265.8057],[348080.707,995255.177999999],[349395.5534,992730.805299999],[349264.6126,992726.9967],[348334.25,992731.859999999],[346313.613,990013.465],[346823.181,988827.131100001],[345987.8949,987374.6855],[345748.774,986994.937000001],[347464.1658,985503.557600001],[347216.4184,984759.6329],[346613.7,983214],[344437.5829,982887.0408],[344301.0135,983453.1041],[344215.96,984142.949999999],[344142.305,984110.931500001],[344140.59,984118.039999999],[344111.2257,984097.421],[343581.26,983867.039999999],[342673,985564.630000001],[343416.06,986351.49],[343500.815,989150.01],[342634.03,989253.359999999],[341058.2247,991526.513800001],[341076.5076,991548.804400001],[341769.1247,992161.810799999],[342009.5009,991697.615700001],[342471.343,990758.616],[343832.945,992684.964],[343297.872,992024.221000001],[342137.18,993687.646],[340525.3862,993009.876499999],[340247.1139,992906.916200001],[341578.2624,994372.899499999],[342097.9579,994175.6558],[342883.063,993805.856000001],[343643.0448,994245.113700001],[344457.3914,994688.863600001],[344784.01,993565.119999999],[347973.5742,995414.558],[347998.3,995422.199999999],[347984.6891,995421.002900001],[348008.57,995434.85],[343080.6681,996550.031400001],[343031.5267,996570.4462],[344735.797,997400.718],[344728.5696,997368.5592],[344278.25,996602.859999999],[344591.2594,996757.59],[344514,996413.82],[345942.96,997418.310000001],[347132.2699,996881.7203],[347278.26,996808.550000001],[347276.8663,996816.4816],[347312.233,996800.525],[347053.3776,998088.396500001],[346845.1038,999273.7212],[347678.6804,1000000.0086],[348469.121,1000688.712],[348452.2707,1000702.4938],[348463.74,1000712.2],[348432.7067,1000718.4951],[347650.45,1001358.3],[346968.1965,1001015.5726],[346250.022,1001161.2551],[346170.0571,1001352.5345],[346332.68,1002067.2],[344144.8594,1006196.8962],[344108.83,1006283.08],[344284.5042,1008142.1461],[344313.07,1008412.51],[344310.1314,1008413.3455],[344322.13,1008540.32],[343531.84,1008797.63],[340753.26,1006233.8],[340599.8911,1006208.9636],[338179.13,1006285.14],[338166.6566,1006234.3719],[337326.64,1006713.24],[337953.5116,1005366.8447],[337922.5776,1005240.9393],[336013.217,1005428.316],[335012.4,1003853.2],[333480.331,1004278.874],[332084.4457,1003352.2101],[332080.6673,1003358.3979],[331711.154,1004091.063],[331099.7961,1003501.0227],[329389.5926,1005924.0878],[329376.292,1009374.611],[328184.9642,1010486.5794],[328212.88,1011279.85],[327734.6702,1009801.5884],[327396.54,1009035.43],[325807.655,1008981.333],[325711.9,1009705.58],[325288.95,1007711.8],[322131.37,1009421.62],[321644.4,1015041.2],[322746.98,1017513.12],[322337.4117,1018520.8945],[322267.4498,1018719.4558]]],[[[364087.843,1030758.19],[364830.3285,1029815.9487],[363782.41,1030076.46],[363794.6927,1030045.9792],[363739.414,1030059.328],[364346.128,1028665.428],[367350.383,1028438.8196],[366680.138,1028258.7071],[365474.416,1027971.735],[365481.9476,1027936.7218],[365470.74,1027933.71],[365651.7368,1027147.3958],[365987.87,1025584.76],[368386.5933,1026065.3746],[369320.6031,1026226.5731],[368433.445,1025069.708],[368491.6058,1024757.5556],[368567.83,1023841.2],[368674.8012,1023774.3355],[368706.086,1023606.428],[369896.8737,1023010.0085],[369306.837,1021121.827],[367616.621,1022048.842],[367577.9672,1021984.0568],[367555.81,1021995.32],[367462.7747,1021790.9897],[367065.268,1021124.753],[365375.796,1020703.211],[365457.272,1023469.509],[363897.144,1024707.361],[362421.899,1023892.868],[363072.9393,1022707.9115],[363180.8148,1022465.9895],[362788.337,1021179.89],[360897.0186,1021415.7924],[360587.4636,1021471.8795],[361718.068,1024836.37],[364039.877,1024977.33],[364564.885,1025861.073],[363928.9032,1026624.1083],[361568.0406,1029625.9929],[364087.843,1030758.19]]],[[[348169.5556,1031077.3036],[347418.2029,1026824.5041],[346045.5981,1030147.203],[346828.0056,1031713.4751],[347006.4187,1031788.7521],[348046.3236,1031196.3715],[348169.5556,1031077.3036]]],[[[341079.7194,1032880.4915],[341222.4023,1032787.8971],[342527.8345,1032820.1923],[343300.23,1032788.03],[344752.5,1033828.5],[345647.6364,1032962.4327],[345637.2554,1032948.4644],[344130.878,1031124.949],[344843.1157,1027984.4891],[344797.918,1027974.0325],[340558.062,1027090.304],[339999.9935,1027495.7901],[337563.8,1029265.9],[336169.5,1032304],[338732.5,1035222.5],[339999.9978,1034999.6602],[340068.4588,1034987.624],[340095.273,1033473.289],[340856.41,1032889.79],[341079.7194,1032880.4915]]],[[[358946.6894,1038387.8646],[358928.672,1038358.9194],[357505.4992,1038800.8959],[357843.2316,1040000.0187],[357924.3978,1040288.2002],[358079.4294,1040000.0124],[358946.6894,1038387.8646]]],[[[356324.728,1034148.6],[356774.62,1030587.11],[356824.1806,1030522.4377],[356828.68,1030467.59],[357060.6245,1030213.8992],[357794.3364,1029256.4695],[357298.1119,1029026.1279],[354996.58,1028184.6],[354674.69,1030626.12],[354351.1303,1030877.5106],[353472.48,1032014.51],[353130.6351,1031825.7775],[353011.77,1031918.13],[352822.0407,1033605.486],[352809.6295,1033777.0435],[353058.1,1034507.8],[354222.082,1033240.122],[355530.462,1033940.739],[355518.0359,1034056.3526],[355543.68,1034070.59],[355375.7806,1035379.9131],[354992.44,1038946.56],[356285.0678,1040000.0309],[356759.4668,1040386.6584],[356616.5459,1038814.7562],[356567.926,1038606.079],[358053.299,1037200.1305],[357858.8524,1036800.8571],[356890.674,1036094.38],[357037.3618,1035114.0221],[356682.6356,1034385.6333],[356324.728,1034148.6]]],[[[376851.6748,1044309.174],[377846.099,1043620.652],[375993.137,1043233.667],[375677.8064,1043494.3961],[375340.3,1044080],[375049.2159,1044014.1421],[374832.389,1044193.424],[373193.6076,1043594.3097],[372964.35,1043542.44],[372940.9988,1043501.9596],[372732.236,1043425.639],[370782.7014,1040000.0136],[370516.215,1039531.757],[370977.6961,1038197.9194],[371142.8506,1037576.2392],[370201.456,1038711.777],[370679.1789,1040000.0095],[370981.446,1040815.106],[370289.065,1041356.163],[369397.53,1040570.97],[369748.2672,1039999.9824],[370212.183,1039244.744],[367977.5515,1039007.1579],[367944.75,1039008.64],[367943.4218,1039003.5292],[367806.155,1038988.935],[367596.7058,1037669.4376],[367494.5326,1037276.296],[367370.1729,1037394.7184],[367063.0363,1038561.1121],[367157.341,1039086.115],[368096.945,1039227.686],[367563.238,1039954.757],[365748.83,1038222.306],[365493.372,1039067.156],[364100.138,1039158.805],[363972.498,1038868.8977],[363739.1,1038842.65],[363364.2553,1037487.4027],[362761.113,1036117.492],[361888.17,1035833.689],[361703.3137,1034642.9594],[361569.5723,1034073.9077],[360803.105,1035463.558],[360415.5604,1033337.6907],[360401.8134,1033808.0582],[360362.347,1037364.821],[361338.491,1037224.036],[361597.9024,1037699.8078],[361732.93,1037729.19],[362101.7445,1038623.8759],[362648.525,1039626.695],[363237.363,1039999.9837],[365778.57,1041610.96],[365739.1309,1041692.4087],[365767.67,1041711.13],[365652.7115,1041870.88],[365342.197,1042512.147],[366295.794,1042631.446],[365038.061,1045515.695],[365324.2829,1045239.5049],[365429.61,1044969.29],[365504.885,1045065.2326],[365631.318,1044943.231],[366527.5346,1045534.3881],[366894,1045345.3],[368124.84,1046473.92],[368116.7064,1046582.6281],[368329.614,1046723.065],[369956.863,1046400.432],[368410.082,1044664.373],[368572.54,1043394.175],[367624.085,1043598.868],[366839.414,1042131.121],[368304.368,1041661.024],[368528.604,1042635.677],[369027.01,1041638.534],[372734.087,1044914.01],[374470.406,1044959.739],[374662.979,1046468.587],[375968.5764,1047365.4938],[376168.175,1046447.5209],[376370.659,1044642.221],[376594.3911,1044487.3128],[376625.4,1044344.7],[376851.6748,1044309.174]]],[[[339179.7495,1049734.1686],[339999.985,1049449.3536],[341290.718,1049001.165],[341800.8,1049705.4],[342242.5293,1049627.9341],[342810.1,1049458.53],[342901.5635,1049512.3595],[343059.815,1049484.607],[344383.544,1050359.167],[344608.89,1052374.16],[345845.2376,1052929.369],[346087.707,1052617.923],[346374.876,1051755.104],[345924.3096,1051497.7538],[345750.23,1051471.59],[345754.3696,1051400.6891],[344970.255,1050952.826],[345801.5734,1050592.2151],[345836.8535,1049987.963],[345732.5,1049440.15],[344124.632,1049221.959],[343795.467,1048208.792],[344207.0555,1048304.2604],[344811.0207,1048295.6493],[345422.9199,1047497.5077],[345425.19,1047397.25],[345488.9782,1047411.3434],[345645.968,1047206.571],[346493.6,1047562.73],[346589.23,1046693.83],[347971.988,1046084.78],[348619.36,1046728.184],[349811.13,1044708.66],[349882.034,1042518.417],[351368.4631,1042615.3513],[351887.2583,1041485.0862],[352300.1569,1040437.0712],[351385.5888,1040720.9055],[351099.165,1040841.209],[350636.2968,1040000.0287],[349706.8716,1038310.9642],[349766.076,1038729.8577],[349994.5234,1040000.0224],[350228.618,1041301.586],[350128.5258,1041294.3279],[350132.28,1041320.89],[350039.1779,1041287.849],[349288.3,1041233.4],[348120.66,1043761.244],[345209.986,1045131.157],[345697.4663,1044088.6885],[345597.25,1044010.19],[345915.571,1043622.2751],[346061.531,1043310.142],[344356.299,1042797.83],[344037.4,1041837],[341707.526,1043912.6987],[341690.8886,1043929.4133],[341839.606,1046973.4574],[341682.5076,1047136.068],[339179.7495,1049734.1686]]],[[[350223.12,1050109.21],[349752.6689,1049095.8756],[349076.715,1049696.457],[349045.0049,1049644.8764],[349043.29,1049646.33],[348996.6497,1049566.2201],[348582.1,1048891.9],[348286.749,1051832.181],[350170.79,1055794.04],[350699.82,1054101.03],[350568.077,1053889.995],[349902.55,1053213.34],[350046.6554,1053054.7459],[349560.971,1052276.743],[350223.12,1050109.21]]],[[[378309.9712,1056271.3123],[378763.0751,1055562.4499],[378946.0963,1055166.4014],[378431.5318,1055007.1521],[377127.4007,1054971.0973],[377012.3003,1054567.9231],[376823.1992,1054509.3994],[376905.1314,1054192.5314],[376735.0018,1053596.6007],[377255.054,1052839.2259],[377424.3961,1052184.305],[376236.1132,1051358.5981],[376189.2982,1051331.9318],[375634.0965,1052422.2968],[375179.2782,1052386.3301],[374592.3113,1052428.9115],[375534.6033,1055643.3048],[376752.8029,1056020.8968],[377152.2019,1055446.4012],[377487.8294,1055685.5359],[377507.498,1055666.5982],[377568.0215,1055742.6728],[378309.9712,1056271.3123]]]]},"properties":{"LAD22CD":"S12000023","LAD22NM":"Orkney Islands","BNG_E":348293,"BNG_N":1006584,"LONG":-2.90025,"LAT":58.94334,"OBJECTID":333,"GlobalID":"03c9204d-56b2-4e74-ad90-848b703368ba"}},{"type":"Feature","id":334,"geometry":{"type":"Polygon","coordinates":[[[397936.9941,657549.6449],[394698.7967,655530.9957],[394724.9006,652080.203500001],[393343.8034,651842.601500001],[392712.3513,649493.653899999],[391038.72,649552.07],[390640.5035,647759.3003],[388998.9407,647266.2502],[389589.7034,645856.395],[386347.2012,642512.202299999],[386356.0976,641215.9033],[384470.6995,639874.397299999],[385346.1024,638635.1021],[380853.3026,639320.595899999],[378943.7959,637708.6973],[379676.7984,637002.2995],[380665.8017,637299.4044],[380191.2984,636364.702],[381875.3027,634500.3956],[381891.0013,631888.6032],[384939.3982,629130.2028],[385645.497,623996.202400001],[387293.5034,621767.700300001],[387371.8974,620178.895099999],[389634.0041,619406.5962],[388206.0008,618712.8048],[387771.7993,616763.602700001],[385461.5992,614972.0955],[383607.3014,615480.0001],[380262.9975,612584.099099999],[378846.9,612748.602],[378252.0023,611761.604499999],[379187.8003,609745.8015],[378155.9968,608840.400699999],[378704.4006,608184.398499999],[376070.4993,606192.298699999],[374780.5,606090],[373788.7034,607290.704299999],[369956.4979,606849.8005],[367084.8009,603343.1043],[364622.0011,602784.1043],[363691.95,600458.200099999],[361400.598,598959.799000001],[360273.2014,596629.596000001],[358992.6032,596399.002],[361224.7968,594942.099099999],[360028.6034,594692.000600001],[359931.996,592345.3024],[357677.7963,592130.603800001],[356180.3036,588517.3981],[355295.7981,586770.7981],[350067.2998,583327.8036],[347472.9996,582972.495300001],[347321.0019,581474.304199999],[345325.8345,579663.3026],[344943.4973,582670.501800001],[342932.5022,583960.002599999],[342471.999,586969.5012],[343575.5015,590761.4957],[345268.5011,592456.500600001],[345164.0032,593912.003900001],[341501.4976,594000.0987],[342576.0022,596263.500800001],[343860.5003,596860.0001],[343028.4994,599187.004000001],[341839.9986,598524.503599999],[338999.5008,599993.5031],[336816.4972,597666.9991],[335908.9963,597495.998],[335307.6016,598807.9025],[333832.5024,597982.6987],[333104.7026,599016.8027],[333638.4961,600655.003799999],[330372.0008,604730.997],[330220.4978,606949.0021],[329725.4973,606561.0032],[328636.4979,607881.995100001],[325616.0022,606490.5034],[325340.5017,608017.496300001],[322953.4988,609802.495300001],[317416.2972,606143.4027],[316378.4996,606940.9044],[316717.6025,608854.196799999],[317460.804,609095.297700001],[316986.4986,610300.502800001],[317580.4976,611862.9955],[321395.9985,615568.504799999],[319132.0037,616452.0019],[318247.4983,615985.4955],[317166.9995,617554.496300001],[315853.0006,617159.499399999],[314355.4996,614011.500499999],[313858.5039,614519.495100001],[311364.9995,613573.9957],[310174.5034,614481.9958],[306876.9984,613187.996200001],[304665.4998,614182.601500001],[302703.9998,617666.5043],[304112.5036,621042.9978],[303918.4973,622882.5012],[305093.5009,625329.0009],[306230.0002,625815.001800001],[305241.5,629219.4987],[306220.501,630893.4991],[303881.96,634768.23],[303720.1584,636373.1074],[306774.7075,636866.911900001],[306599.705,640501.17],[312322.53,647242.33],[312246.8887,647898.026000001],[310925.96,647260.199999999],[309678.93,648789.115],[308734.5014,653212.4956],[307774.3991,654051.2992],[309827.9964,655524.997400001],[310118.9976,657846.003],[312706.001,659379.0042],[314327.4994,659833.0042],[315758.504,656338.604499999],[318948.6006,656648.4958],[319014.5033,654894.9977],[320158.2994,654293.300000001],[322578.398,654669.802200001],[323233.5011,655537.8037],[323941.2984,655186.904200001],[325150.8983,657185.1022],[325808.4997,657131.0977],[326024.0008,654856.5987],[326851.7967,654639.7008],[326397.9968,653815.4967],[327682.5031,652570.903000001],[327207.9998,651235.495300001],[328271.4973,650222.495200001],[327797.0023,648615.495200001],[329205.0031,646900.496099999],[331511.9959,648175.5012],[330816.5003,649855.500299999],[332620.9979,652347.4969],[340470.1971,658820.903999999],[341094.2988,656097.203600001],[341849.0022,655931.0012],[343567.5038,657688.998],[344705.9983,657456.5045],[345565.9994,659326.3993],[347072.9987,658736.098200001],[351430.9999,661505.4955],[353745.9987,659686.496200001],[358191.9995,661685.0041],[359815.9962,661043.9976],[359483.4977,660235.9989],[362876.497,659652.4959],[363696.5013,661517.0022],[365347.5005,660791.4999],[366642.0988,663212.3969],[366716.5022,664362.9976],[364447.9974,666703.997400001],[365423.9982,667578.997],[364917.9988,668312.9969],[365441.9972,668853.0023],[368548.0024,668874.496099999],[370895.5032,665789.9991],[377278.2601,672541.0351],[379452.5987,670847.701300001],[379999.9775,670757.078299999],[383903.596,670110.802300001],[386122.5975,671127.3013],[389150.5962,669250.7984],[391477.4019,669332.805],[391518.8719,669206.621200001],[391799.5349,666720.365599999],[391684.4024,666517.900699999],[391838.5313,666374.9155],[391845.69,666311.5],[391988.974,666235.3499],[393615.1978,664726.703400001],[394363.8571,664973.1876],[394401.2164,664953.3325],[394527.2005,664098.303300001],[395286.6036,664387.7005],[395729.0006,661054.4046],[396393.2649,660000.0144],[397936.9941,657549.6449]]]},"properties":{"LAD22CD":"S12000026","LAD22NM":"Scottish Borders","BNG_E":345889,"BNG_N":626137,"LONG":-2.85869,"LAT":55.52595,"OBJECTID":334,"GlobalID":"f2ad3c8d-121b-48e2-a7a6-5c90666e8fef"}},{"type":"Feature","id":335,"geometry":{"type":"MultiPolygon","coordinates":[[[[420327.2946,1069698.9161],[420321.3245,1069697.041],[420322.204,1069705.5996],[420327.2946,1069698.9161]]],[[[421191.0721,1070726.7231],[421066.8636,1069931.2007],[420488.4524,1069749.5327],[419860.8723,1069670.7127],[419703.9853,1070088.5639],[419868.1607,1070959.4805],[420000.0034,1071011.2494],[420254.8006,1071111.2972],[420456.4995,1074080.4973],[422249.0006,1074249.9987],[421988.4979,1072799.5039],[422012.9381,1072796.7944],[422011.9963,1072790.9964],[422877.0021,1072701.0021],[422694.4977,1071897.5021],[421822.5,1071971.1011],[422231.9992,1070875.5047],[421275.803,1071269.4019],[421191.0721,1070726.7231]]],[[[441718.5003,1121026.0992],[441662.9039,1121013.9027],[441646.1005,1121048.3029],[441718.5003,1121026.0992]]],[[[446989.9966,1123457.0034],[445760.8175,1123344.6157],[445376.2661,1125079.5965],[446989.9966,1123457.0034]]],[[[435570.9993,1127472.0041],[436615.5001,1127137],[436266.5032,1126236.4978],[435570.9993,1127472.0041]]],[[[435882.3429,1129630.6632],[435180.9144,1128675.1008],[434808.1295,1129531.0257],[434778.1365,1129602.1172],[436586.3815,1130662.7922],[436621.9996,1130683.7488],[435882.3429,1129630.6632]]],[[[437755.1234,1133462.188],[438369.9078,1134216.794],[438970.237,1134831.264],[438989.991,1134715.2458],[437043.04,1128578.56],[437729.5,1130848.5],[437513.6087,1132656.4133],[437755.1234,1133462.188]]],[[[436659.7118,1130737.4416],[436653.1461,1130757.1964],[436662.5321,1130770.4681],[436194.3439,1132137.6276],[435935.2713,1132917.1179],[437586.5,1134667.5],[436320.377,1135975.4646],[436846.3981,1135923.1444],[437847.26,1135810.43],[438124.3298,1137281.7857],[438266.6144,1136666.3924],[438458.1,1135822.9],[438003.9159,1134314.9736],[437368.1715,1133191.4617],[437336.3017,1132948.1128],[437234.86,1132823.6],[437290.172,1132595.8797],[437183.9136,1131784.5207],[437169.898,1131802.9044],[437108.901,1131652.7974],[437166.8975,1131654.5902],[437139.42,1131444.78],[436987.1346,1131203.6094],[436659.7118,1130737.4416]]],[[[435450.1619,1137033.8925],[434920.2088,1136643.5013],[435219.2004,1137789.0139],[435224.0396,1137790.5964],[435433.0713,1137589.5281],[435731.017,1137276.4955],[435450.1619,1137033.8925]]],[[[437004.6411,1137404.4264],[436730.141,1137401.0975],[436069.896,1137528.2896],[436031.1905,1137681.2554],[436288.8377,1137942.2457],[437008.4216,1137435.68],[437004.6411,1137404.4264]]],[[[438599.9432,1135247.0311],[438453.2529,1135157.075],[438590.073,1135879.9309],[439067.1629,1138191.6758],[440000.0017,1138637.5621],[440322.9001,1138791.9038],[440000.0143,1137108.7046],[439788.1007,1136004.0019],[438599.9432,1135247.0311]]],[[[435880.4351,1140000.0089],[435615.4979,1139563.503],[435593.9808,1140000.0117],[435542.0014,1141054.4962],[436174.4965,1140484.4993],[435880.4351,1140000.0089]]],[[[397192.6544,1141341.993],[397682.0658,1139999.9709],[397885.0017,1139443.4973],[397350.911,1138125.1331],[396530.3039,1136129.0696],[396437.8407,1136214.8527],[394904.9975,1138282.9995],[393738.2039,1138719.4509],[393618.5041,1138830.5028],[393840.8025,1139999.9861],[393871.5038,1140161.5018],[396011.5012,1141468.9975],[397192.6544,1141341.993]]],[[[455303.5,1141135.0031],[455180.3555,1139999.9959],[455070.5028,1138987.4978],[454304.7551,1139999.9699],[453707.9982,1140789.0022],[453473.0348,1140618.8331],[453236.3932,1140497.6058],[453588.5026,1141507.4965],[455303.5,1141135.0031]]],[[[451079.0028,1145245.4965],[451472.6664,1142689.8404],[451368.9981,1142367.0005],[451524.6348,1142352.4624],[451593.8986,1141902.8033],[451954.6025,1142312.2988],[452423.5002,1142268.4987],[452762.382,1143179.1651],[453076.5008,1142815.5021],[452511.8953,1139999.9921],[451651.0039,1135706.9969],[448878.0002,1137583.4997],[449080.1347,1140000.0304],[449120.6257,1140484.1034],[449332.3031,1140860.8016],[449170.0452,1141074.9162],[449231.499,1141809.6],[449007.8026,1141289.0107],[447516.1755,1143257.3537],[447377.1023,1143463.7965],[448373.9961,1144752.9975],[451214.9968,1143294.505],[451201.9629,1143327.5582],[451212.0039,1143322.497],[450813.8579,1144311.7672],[450567.5039,1144936.505],[451079.0028,1145245.4965]]],[[[424027.9204,1145563.536],[422955.0004,1145221.0035],[422064.7519,1146252.2537],[422888.8095,1147111.3203],[423150.29,1147312.4924],[423169.5786,1147296.6213],[424068.1208,1146027.3209],[424027.9204,1145563.536]]],[[[429123.9964,1162045.9974],[429151.5019,1160863.9958],[429843.5016,1161375.9992],[431135.5365,1160475.6857],[430217.4254,1160000.0092],[429441.4972,1159597.9982],[429280.3462,1158889.9814],[429222.5522,1158671.5776],[428724.8811,1159729.6079],[428704.4232,1159774.3388],[428857.0366,1159897.6665],[429585.6003,1160425.0015],[429510.51,1160425.7417],[429579.503,1160481.4953],[428216.5037,1160438.4976],[429123.9964,1162045.9974]]],[[[433653.2414,1159999.9766],[433533.4963,1159848.9963],[433474.619,1159999.9837],[433014.7878,1161179.1937],[434060.2333,1162158.7797],[434662.5007,1161272.4988],[433653.2414,1159999.9766]]],[[[416462.996,1160549.4958],[416342.8325,1160400.5184],[416328.9972,1160603.5003],[415922.1452,1160000.0111],[415626.8559,1159562.0044],[415371.3388,1160000.0001],[414529.9991,1161456.4962],[415629.9974,1162518.0023],[416120.4961,1161849.5037],[416136.2952,1161863.1474],[416139.501,1161859.001],[416677.1764,1162312.1162],[416867.4987,1161389.4953],[417160.9981,1162101.5015],[417364.1976,1160860.4968],[417390.0017,1160972.4952],[417410.304,1160872.4034],[417516.3991,1161521.1015],[417650.5973,1162103.5656],[417809.5683,1162119.8781],[418372.8633,1162117.6331],[418390.0192,1162056.4423],[417975.6019,1160566.401],[418652.7534,1160128.4191],[418622.1492,1159946.457],[416433.9981,1159063.0013],[416462.996,1160549.4958]]],[[[453719.5001,1165546.4954],[453044.2514,1163517.985],[452843.3478,1164259.9597],[452766.9976,1164733.4981],[453719.5001,1165546.4954]]],[[[460000.0073,1166406.57],[459237.5387,1165877.3029],[456491.71,1161248.1],[456218.6746,1161138.4008],[456193.8017,1161158.3015],[456184.7981,1161145.2952],[456218.0766,1161138.1605],[455053.1,1160670.1],[453232.0627,1161564.1237],[453232.9807,1161566.0271],[454447,1162900.1],[454162.0922,1163492.4699],[455063.3796,1165361.2216],[455107.5,1165435.6],[456593.3944,1165607.4652],[457295.1,1166975.3],[458763.41,1166332.82],[458847.6039,1166395.27],[458862.2,1166389.1],[458915.2032,1166445.4112],[460000.0166,1167250.0619],[460006,1167254.5],[460737.5,1166918.5],[460000.0073,1166406.57]]],[[[433705.232,1166240.3095],[433905.299,1166066.2966],[433858.9577,1166144.8471],[434156.3,1165960.2],[434368.3,1165030],[433657.69,1163202.53],[431470.1475,1162477.9262],[431374.8816,1162543.1609],[431386.4988,1162540.4959],[431351.0039,1162612.9951],[431301.2128,1162593.6066],[429708.9899,1163683.9034],[429017.989,1165707.9145],[429981,1165663.5],[430463.6424,1167093.7973],[431519.4501,1167476.9209],[431642.2445,1167521.4076],[433705.232,1166240.3095]]],[[[448420.4983,1168441.4967],[448348.9971,1168295.9984],[448389.0021,1168432.9992],[448420.4983,1168441.4967]]],[[[448582.0025,1168745.9996],[448527.9974,1168631.5023],[448540.0022,1168744.5],[448582.0025,1168745.9996]]],[[[468578.3973,1171675.6565],[468600.1571,1171581.5544],[468685.2368,1171197.9533],[467810.0517,1171300.5341],[467491.003,1171362.3007],[466260.5545,1170169.9167],[468386.6478,1172549.331],[468508.4607,1172000.1099],[468404.0034,1171886.5006],[468551.4531,1171795.1096],[468578.3973,1171675.6565]]],[[[446534.0035,1177102.4976],[447314.0028,1175664.4992],[446146.5022,1176127.9965],[446534.0035,1177102.4976]]],[[[442591.5039,1181923.9974],[442955.0039,1181027.0042],[442085.4963,1181507.4966],[442591.5039,1181923.9974]]],[[[432004.8028,1192750.0074],[430880.1675,1192692.1235],[431321.808,1193107.2516],[432004.8028,1192750.0074]]],[[[456431.3744,1192220.4896],[455949.5005,1191491.9986],[454751.5014,1191843.9978],[454755.0857,1191812.0967],[454747.9973,1191813.9964],[454705.4333,1190896.111],[454554.7642,1190926.1482],[454299.8844,1191184.3743],[454567.4159,1192180.355],[455317.823,1193266.5863],[455478.5014,1193271.9991],[456431.3744,1192220.4896]]],[[[462124,1194904],[464037.0041,1194435.9985],[464437,1192074.5],[464819.5,1191514.9],[465261.2124,1191958.51],[465312.3604,1192009.3641],[465378.1,1191201.5],[465389.919,1191222.8388],[465390.9,1191212.8],[466171.4506,1192633.8655],[466246.9466,1192770.1708],[467217.1376,1193005.3498],[467430.8624,1190507.4158],[465825.9398,1187792.7969],[464145.55,1189999.971],[464116.9518,1189979.05],[464116.6,1189979.5],[463654.3122,1189640.6065],[463303.7646,1189384.1638],[463296.5405,1189395.3273],[462562.667,1190559.034],[460853,1190452.8],[460548,1189782],[460637.8957,1189694.7237],[460637,1189692.5],[461047.2261,1189297.3204],[462590,1187799.5],[460737.5,1187099.5],[460000.0082,1188364.6794],[457696.9,1192315.7],[458301,1194630],[459763.5,1194542],[459999.9872,1194177.7392],[460433.5,1193510],[462124,1194904]]],[[[440568.4419,1107797.2556],[440000.0003,1109066.0192],[439483.7401,1110218.3136],[439469.09,1110253.46],[439468.5726,1110252.1675],[439461.99,1110266.86],[438681.945,1108287.1186],[438561.3243,1107985.8001],[438625.9842,1108500.2115],[438628.0041,1108504.5035],[438626.4098,1108503.5973],[438931.23,1110928.64],[438209.6,1112688.3],[436782,1112621],[436473.5,1111100.5],[435989.5,1112145.5],[434799.8582,1111703.1884],[434800.0036,1111705.4972],[434797.6713,1111702.3753],[434707.9471,1111669.0156],[434200.0848,1113895.1094],[434204.9988,1113911.4958],[434194.726,1113918.5986],[434087.7533,1114387.4881],[434114.741,1114401.9805],[435655.76,1115178.6],[435654.5299,1115228.8469],[435686.1,1115245.8],[435639.7237,1117476.9695],[435711.9981,1117455.5013],[435666.5018,1117520.5027],[435639.177,1117503.2726],[435628,1118041],[436696.1324,1117664.0344],[436779.8051,1118119.4256],[437533.7,1118138.3],[437524.4319,1118313.5985],[437576.1,1118305.2],[437453.9039,1119999.9571],[437407.2,1120647.7],[435903.2312,1120666.6511],[435757.6833,1120672.662],[436113.8718,1121925.4702],[436127.0505,1121916.6227],[437467.3,1120953.6],[437442.374,1121033.582],[437494.63,1120998.5],[436529.98,1123962.47],[438152,1125523],[438585.5643,1128739.5738],[438849.6365,1130649.1297],[439999.9886,1133557.7316],[440592,1135054.6],[440830.86,1139435.76],[440805.68,1139983.89],[440611.9934,1139050.2966],[439999.9987,1138999.7173],[438678.5,1138890.5],[439243.6752,1140000.0379],[439498.6,1140500.5],[439482.1036,1140505.8226],[439488.8,1140519.2],[439437.8404,1140520.1043],[438840,1140713],[439829.8,1145899.1],[439731.4158,1145866.7841],[439746,1145947.5],[439710.4128,1145859.8853],[439083.3,1145653.9],[438076.1415,1141836.3595],[438067.178,1141814.2917],[437935,1143228],[439668.0314,1147818.1411],[440680.0929,1150478.7908],[440577.9385,1150228.1388],[440821.9,1150874.3],[439999.9847,1148850.0766],[437374.7844,1142384.7003],[437377.5025,1142398.8918],[439407.9,1152469.2],[437262.1404,1148337.6251],[436271.6922,1146442.1348],[435051,1150216],[435129.5,1150785.5],[435972.5,1150555.5],[435949.6224,1150630.6534],[435958.5,1150628.5],[435743.67,1151361.91],[435724.8263,1151369.1144],[435702.98,1151440.88],[434064,1152054],[434029.8348,1151495.0734],[433824.3184,1151350.8872],[433535.6172,1151387.699],[432700.1,1152449.1],[432594.095,1152447.9925],[432309.47,1152894.17],[431370.3,1152437.5],[432095.614,1151987.3135],[433945.5,1150275.5],[434629.5986,1150414.5249],[434638.5,1150409],[434942.3938,1148911.5387],[435535.122,1145755.4918],[434870.9846,1145237.4063],[434854.9814,1145228.038],[435092.195,1147439.749],[433934.6362,1146522.7454],[433670.4612,1146320.2521],[433503.9369,1148443.5627],[433482.3677,1147954.2303],[433450.09,1148250.79],[433331.3885,1144529.0214],[433308.3636,1144006.6647],[432166.5,1142393],[431243,1143213.5],[431242.8536,1143623.1947],[431263.9308,1144907.7479],[431242.421,1144833.836],[431242.34,1145060.63],[430295.5582,1141580.2229],[429938.8063,1140354.3507],[429528.5,1141877],[428389.23,1142111.4188],[428392.7996,1142148.1031],[428369.5205,1142115.4743],[427891.8504,1142213.7608],[427264.7079,1142348.878],[427177.2,1144396.1],[427005.2882,1144318.8561],[425915.3936,1144030.8572],[425508.2771,1144469.5638],[425257.2619,1145020.2986],[425439.3261,1146740.1871],[428518.2282,1146793.9798],[428686,1146743],[427666.105,1147201.5979],[427584.5701,1147239.2358],[429530.44,1148736.92],[427439.5,1147977.5],[427493.1,1149449],[428272.79,1149715.31],[428133.9735,1149733.5977],[428178.5,1149752.9],[427222.8404,1149853.6307],[426924,1149893],[427159.62,1150960.22],[426224.0748,1151346.6986],[425974.5,1151502],[425979.924,1151447.5585],[425890.5,1151484.5],[426109.94,1150037.26],[426661.6958,1149716.2857],[426976.2476,1149516.6883],[424821.7233,1146432.9227],[424676.3568,1146490.1279],[424987.03,1148587.76],[424263.81,1149469.97],[424213.7079,1149378.8013],[424181.96,1149415.06],[423898.6052,1148805.4214],[423672.76,1148394.46],[421593.33,1148482.5],[422392,1147427.5],[422140.3489,1147345.189],[420870.2908,1147062.4302],[420000.0253,1147881.5568],[419394.5,1148451.5],[419999.9891,1149255.8663],[420194.3,1149514],[419999.9907,1149446.4299],[419216.5036,1149173.9762],[419140.1739,1149207.221],[417264.821,1150084.3428],[416824.9507,1151477.7851],[417114.6956,1151813.5036],[417446.22,1152195.38],[417444.5012,1152195.6391],[417455.67,1152208.58],[416526.9351,1152333.9982],[417180.5017,1153612.3584],[417300.0016,1153596.9959],[417316.4999,1153639.5038],[417181.3969,1153614.1095],[417790.5,1154805.5],[417747.1306,1154854.249],[417770.5,1154902.5],[417387.4539,1155258.5412],[416566.2042,1156181.6617],[416622.3576,1156267.0591],[418284.6468,1157763.9645],[419061.512,1158029.6714],[420000.0265,1158070.4247],[422024.5061,1158158.3342],[422129.3653,1158151.9517],[422538.9082,1157609.7704],[423706.5,1156005.5],[423698.7572,1156074.282],[423756,1155998.5],[423638.2897,1156611.4314],[423546.4764,1157427.036],[423885.5,1156812],[425750.3,1156545],[425702.1694,1156634.972],[425740.6,1156630.9],[424943.2676,1158053.6105],[424934.5,1158070],[427420.8708,1159590.8183],[427526.9684,1159267.1544],[428977,1154586.5],[429998.5,1156198.5],[429962.0843,1156197.8468],[429973,1156215.5],[428903.614,1156366.7381],[428395.3294,1158180.5404],[430783.26,1157145.71],[430774.6006,1157152.2343],[430804.66,1157139.21],[429603,1158045],[431146.25,1158456.51],[429890.3855,1158884.1823],[431182.3909,1160162.9719],[431745.4093,1160646.1176],[432124.2398,1159408.3386],[432202.5,1159135.5],[432618.39,1159724.22],[433931.0913,1159002.2432],[434643.4,1155810.43],[434658.7595,1155871.5199],[434689.69,1155737.79],[435129.7,1157426.5],[436627.52,1157624.08],[435895.662,1157817.9778],[436037.1935,1157882.7786],[435006.2256,1158679.3761],[434915.656,1158959.4973],[434878.7248,1160774.5876],[435530.298,1162236.4507],[435717.7574,1162422.9704],[436612.249,1161245.918],[437057.9,1161673.3],[436517,1164140.5],[438700.5,1164275.5],[439999.9911,1163216.7756],[440329.73,1162948.13],[440854.09,1163259.21],[440000.0227,1164029.4461],[438599.5,1165292.5],[435178.5947,1165208.1437],[435314.8402,1165413.2448],[436285.477,1166706.742],[435730.99,1168121.06],[434416.88,1166034.92],[432904.3885,1166795.9038],[432689.1156,1167847.8453],[432634.8486,1168117.3076],[433969,1168362],[432291,1169094],[432724.2655,1170157.425],[433655.6726,1169565.5914],[433693.41,1169540.89],[433185.5,1170758],[430242.2897,1170363.9402],[430403.0241,1173514.8675],[431237.3483,1173943.6057],[431887.6,1174252.9],[431843.4125,1174255.0468],[431911.12,1174289.84],[429519.0077,1174378.4846],[429554.5,1175770],[431422,1176498.5],[431146.2031,1176442.9119],[431327.5,1176519],[429539.6348,1176296.936],[430122.25,1178589.44],[429909.8326,1178409.6827],[429963.52,1178617.79],[428514.8218,1177229.1604],[428217.78,1176977.79],[428231.5899,1176957.6724],[428221.28,1176947.79],[428516.1071,1176543.2015],[428651.67,1176345.72],[428622.5828,1176280.9787],[427756.4873,1174493.2445],[426763.0566,1175937.7026],[427930.8,1177062.7],[427782.3,1177929.09],[427685.0264,1177905.5366],[427680.7,1177920.4],[425669.2676,1177417.4487],[425523.4097,1177382.1312],[424591.041,1178637.454],[423672.4,1177041.8],[422908.4,1177631.4],[421390.7439,1176699.0442],[420629.7999,1177718.0728],[420270,1178226.5],[421158.5509,1179999.9757],[421480.3294,1180642.2196],[422994,1180626.4],[423340.9318,1180000.0114],[423351.659,1179980.6434],[423464.6,1179757.8],[423472.4674,1179762.5227],[423516.03,1179683.87],[423965.9377,1180000.0364],[424175.68,1180147.43],[423244.4,1180684.9],[423952,1181372],[423889.9211,1183881.1576],[425684.6542,1185952.0055],[425760.2354,1185709.6581],[426535.9936,1183219.1413],[429341,1180851.5],[430605.5,1180143],[433380.573,1181079.1981],[433378.364,1181079.1299],[433379.5,1181079.5],[433320.2811,1181077.337],[430005,1180975],[429622.4082,1181436.407],[427676.3467,1183833.6047],[427689.7609,1183996.8627],[428510.5269,1185585.4831],[431093,1187943],[431008.2836,1188166.699],[430560.873,1189606.2118],[431908.1627,1191096.7009],[431829.0967,1191108.245],[431941,1191230],[431053.2945,1191221.5171],[431052.5229,1191221.6298],[431203.6977,1191486.802],[431787.1642,1192503.8663],[434309.2202,1191543.0733],[435706.0246,1192016.8886],[436638.21,1190876.24],[435735.7038,1193041.4307],[435974.1595,1193890.079],[436014.4306,1193985.3033],[436791.5,1193331.5],[436872.7644,1193463.9922],[436927.4107,1193429.4626],[437910.3604,1195120.6061],[438206.39,1190392.33],[437419.2,1189064.83],[436501.778,1189054.967],[437717,1187706],[437651.49,1184370.23],[436244.5,1183867.5],[435589.65,1184414.31],[434854.7,1182703.9],[437222.23,1182621.38],[435093.1416,1181650.0512],[436466.72,1181943.53],[437219.5,1180958],[436132.5698,1180112.7447],[436159.9898,1180000.0414],[436515.5,1178538.8],[435461.5,1177421],[436815.9,1177358.5],[437060,1179229.5],[437989,1179291],[437943,1177807],[436870,1177379.5],[437503.545,1174405.648],[436728.5,1173992.9],[436526.6239,1174206.8451],[436502,1174423],[435882.79,1174889.17],[436436.8943,1174301.9391],[435135.2,1171881.5],[435576,1170114],[434757.5,1170219.5],[434063.5,1168334.5],[434534.511,1167920.377],[437136.9,1169862.9],[436083,1170142],[436958,1172779.5],[438872.1,1173549.9],[439633.3,1172743.8],[439859.83,1174040.37],[440000.0146,1173960.9321],[440816.83,1173498.07],[440000.0016,1174411.1486],[438357.61,1176247.07],[439649,1178439.5],[439999.9821,1178012.0994],[440684.147,1177178.973],[442472.24,1179288.05],[443903.18,1177442.14],[443655.59,1174995.66],[444705.61,1175879.67],[445074.6092,1175626.4063],[445373.9811,1174804.0333],[445383.77,1174709.76],[443966.51,1173757.34],[445923.5,1173420],[444448.34,1172249.46],[444483.0224,1172256.677],[444481.5,1172255.5],[444570.8373,1172274.9503],[445611.5,1172491.5],[445945.3615,1170983.8988],[444754.8641,1171280.9291],[444399.11,1172234.727],[444161.1469,1171974.4803],[441009,1169024],[441944.0099,1169549.7235],[440931.51,1168442.41],[444482.2995,1170942.2067],[444518.0537,1170861.4122],[444667.9781,1170262.5593],[444412.147,1170058.1255],[442776.15,1168901.78],[443236.6366,1169118.7789],[443003.75,1168932.68],[445824.5514,1170338.3035],[445840.9432,1170346.028],[446202.88,1166232.22],[446208.3436,1166256.5353],[446209.65,1166241.99],[446257.3652,1166474.7018],[446854.7629,1169133.3684],[447635.3772,1169204.7184],[448488.4,1169264.8],[447645,1170093],[448604.293,1172017.9779],[449075.5,1170507],[449090.4963,1170537.2471],[449107.5,1170482.5],[450923.5675,1173442.9625],[452311.6291,1174351.8163],[452319.5,1174355],[452382.5382,1173996.5441],[452202.9386,1172910.058],[449472.5464,1169446.4775],[448534,1168954],[447533.1039,1166986.2393],[447439.5,1166867.5],[447470.6817,1166863.5172],[447460.5,1166843.5],[447867.3361,1166812.8534],[448218.5,1166768],[448196.7317,1166390.7787],[448119,1165402.7],[448143.0398,1165460.3554],[448137.3,1165360.89],[449266.5,1168107],[450572.6686,1167679.5463],[451077.0567,1167508.7139],[451111.5,1163993],[448773.501,1162688.5141],[444604.116,1163495.515],[445139.5246,1163136.4308],[445922.9971,1160769.6962],[446024.792,1160071.392],[446698.8985,1161831.2349],[446699.0372,1161831.4397],[447829.5094,1159999.981],[447940.35,1159820.41],[447944.9996,1159999.9821],[447949.7725,1160184.315],[448344.4306,1160558.7075],[449299.0145,1160230.8253],[449419,1160095],[449565.7397,1160139.21],[449873.5,1160033.5],[450455.6814,1160407.3335],[450636.3815,1160461.7752],[450522.1267,1160000.0214],[450232.2,1158828.3],[450855.1852,1158220.166],[450544.2636,1157616.3019],[449982.2668,1157729.2237],[448936.1,1157962.7],[446562.88,1155464.32],[447233.9491,1155443.1512],[447475.256,1155427.7002],[447357.1986,1154687.4723],[447341.5,1154685.2],[447237.9732,1153744.3363],[447376.2029,1154652.5416],[448093.5588,1154771.485],[448108.0022,1154734.5003],[448118.8201,1154775.6735],[449165.1752,1154949.1677],[449418.2787,1154985.8031],[448944.5,1154423.5],[449155.475,1154099.6648],[449274.5,1153886.5],[449289.6651,1153893.6901],[449316.5,1153852.5],[449835.3731,1154152.4226],[450093.1956,1154274.662],[449791.5,1153086],[447468.1,1153107.58],[446912.811,1151688.641],[446936.5499,1151697.807],[446934,1151691.36],[447675.8072,1151958.7351],[447570.8677,1151879.6444],[445980.1603,1150953.6255],[445598.4,1152310.5],[446209.0452,1153043.3425],[446310.4,1153148.8],[446297.8066,1153149.8661],[446314.5,1153169.9],[446203.2999,1153157.8663],[444925.9234,1153265.9989],[444393.85,1154263.56],[443792.83,1153789.43],[444737.5233,1151545.6959],[444744.0668,1151506.272],[442673,1149771],[445233.1508,1150057.405],[445223.1085,1150037.0103],[443235.4,1146297.62],[443498.4637,1146534.477],[443483.9,1146504.9],[444033.2044,1147015.9463],[446188.4375,1148956.4727],[445506.8323,1147822.3491],[445492.8083,1147799.8217],[445493.1354,1147799.5589],[445496.4257,1147797.7866],[446107.5,1147454],[445147,1146919.9],[444909.2574,1146395.7462],[443491.4122,1143481.0341],[443665.712,1143654.0877],[443445.97,1143169.62],[446998.121,1146913.4061],[446936.0998,1146407.6605],[446893.2819,1146134.6166],[446849.5008,1146085.4961],[446889.8902,1146112.9882],[446755.5,1145256],[446794.8521,1145255.8714],[446794.5,1145253],[446804.9533,1145255.8384],[447520.5,1145253.5],[446680.8908,1143032.6201],[446541.11,1142672.37],[446543.6712,1142669.6556],[446541.287,1142663.349],[448246.7017,1140864.7769],[448299.3054,1140809.0273],[448037.2465,1140330.7416],[448002.5993,1140273.1206],[447285.9895,1140558.5928],[446763.29,1140771.65],[446763.8665,1140766.5883],[446758.44,1140768.75],[446848.9662,1140000.034],[446916.1392,1139429.6247],[447018.0554,1138534.7941],[446638.2147,1139084.1899],[446078.7436,1139903.5793],[446078.2624,1139894.0966],[446058.86,1139922.16],[445945.5,1137457],[444332.4,1138722.3],[444612.9809,1136030.9511],[444278.7454,1135858.9006],[443139.25,1135326.15],[444218.244,1134174.13],[443665.14,1132400.78],[444658.4142,1130548.8384],[444462.8,1129499.9],[444464.0087,1129499.4219],[444456.7,1129482.3],[446252.5,1128724],[446098.5,1128102.5],[444643.4449,1128098.2725],[444244.0197,1128136.4364],[444178.2988,1129075.9264],[444193.8,1129187.7],[444175.0012,1129123.0668],[444158.85,1129353.95],[444066.6807,1128750.6453],[443853.912,1128019.1157],[442830.893,1127839.876],[442853.446,1127729.2307],[442826,1127726.5],[443177.4799,1126139.5183],[443409.75,1125000],[444844.974,1123168.0964],[444841.2993,1123166.8105],[444262.46,1122971.25],[444263.2808,1122964.5466],[444253.86,1122961.25],[444491.6201,1121097.7705],[443573.76,1123601.99],[442891.4638,1122153.9727],[442842.0812,1122049.8745],[442495.2578,1122609.2798],[441800.88,1123748.87],[441795.9114,1123737.2836],[441778.12,1123765.98],[441397.462,1122901.4978],[440442.84,1123081.86],[440467.9471,1123012.79],[440411.24,1123020.16],[441002.22,1121525.57],[441549.7431,1121507.3888],[441736.9734,1121499.9395],[441736.7873,1121495.0196],[441236.86,1120240.37],[441656.9385,1119384.4105],[441642.4371,1119001.1008],[441155.8,1118697],[441566.9983,1117007.0617],[441566.9915,1117006.8808],[440827.8345,1115266.4863],[439999.9903,1115395.0818],[439682.5,1115444.4],[439999.9767,1115066.462],[440641.6776,1114302.5537],[440973.9791,1113900.3758],[440854.6108,1111522.3328],[440848.5969,1111524.499],[440853.9876,1111509.9168],[440850.964,1111449.6802],[440849.3967,1111450.5002],[440850.888,1111448.1666],[440848.4,1111398.6],[439999.9846,1111283.8283],[439259.055,1111183.597],[439408.5419,1111167.4095],[439371.6,1111161.7],[440124.8312,1111089.8448],[440400.44,1111060],[440213.169,1109935.404],[440507.7035,1110055.2929],[441046.1931,1110272.9717],[441039.532,1110232.3134],[440568.4419,1107797.2556]]],[[[461487.9967,1199169.5009],[460986.7298,1197937.3743],[459860.5799,1198783.3121],[459182.4962,1199337.5029],[459741.989,1199996.3257],[460910.0181,1199475.8849],[461487.9967,1199169.5009]]],[[[454467.7971,1203265.2985],[454379.5997,1203224.8001],[454428.4022,1203363.3005],[454467.7971,1203265.2985]]],[[[448268.5006,1205429.499],[448242.9986,1205391.4999],[448232.1036,1205429.1757],[448251.9213,1205438.176],[448268.5006,1205429.499]]],[[[454092.8517,1204931.1386],[454057.1972,1204828.4011],[454125.8991,1204836.5988],[454112.688,1204920.8405],[454673.1,1204629.9],[454162.5,1203714.5],[454384.6486,1203468.5435],[454332.4,1203260.4],[455370.4738,1202377.0661],[455417.5,1202325],[455370.3257,1202329.1119],[454329.7,1202535.5],[454500.0126,1202404.9715],[454261.2364,1202425.7841],[454983.57,1202031.47],[455137.7719,1200000.0214],[455347.3151,1197239.5094],[454931.1719,1196717.8839],[454807.6,1196612.4],[455718.2748,1195425.8462],[455126.5305,1194984.573],[454894.5,1194872],[453029.0753,1195889.9163],[452873.3167,1196103.7098],[450972.47,1199062.94],[451118.0659,1198512.9584],[451090.0696,1198551.386],[451128.7699,1198472.5246],[451849.5,1195750],[452889.883,1194883.8171],[453769.4047,1193091.5721],[453786.3707,1192991.9402],[453264.1356,1192325.2266],[452331.9399,1191168.5197],[451690.1191,1191726.1771],[451013.95,1192352.35],[449869.33,1191570.04],[453144.5,1190826],[453274.2,1189667.5],[453899.5,1190101.5],[453926.9,1189174.4],[454730.6833,1189037.2693],[454610.3888,1187300.4095],[453607.2,1186806.9],[453797.4475,1186361.7407],[454165.7295,1185429.7659],[452290.2,1185537.4],[452318.1794,1185488.2277],[452755.3676,1183913.3982],[452582.68,1183736.86],[452813.8379,1183702.7776],[452893.7,1183415.1],[453598.6743,1183587.0597],[453806.2307,1183556.4571],[453210.622,1181147.1022],[453048.2066,1181170.4621],[453135.8304,1180844.5552],[452973.57,1180188.18],[453406.0904,1179839.3525],[453457,1179650],[452156.1059,1179146.1389],[452870.78,1179849.14],[451447.0193,1178871.4961],[451282.928,1178807.9404],[451103.54,1178963.8534],[450064.63,1179884.72],[449004.5,1179738],[449985.13,1179935.02],[449898.8456,1180000.0467],[448572,1181000],[448397.5284,1179999.9839],[448350.21,1179728.77],[448633.7111,1179432.2379],[448619.9,1179199.8],[448963.9891,1179086.7789],[449622.5,1178398],[447313.5,1178671],[447016.5,1178089.5],[445812.5,1179785],[445775.0702,1179999.9678],[445355.3,1182410.8],[444668,1182357.5],[445299.19,1182822.38],[444538.5,1185031.5],[445011.5,1187911.5],[444285.1,1188059.9],[444510,1186729],[443826.5,1187315.5],[444778.4,1189023.8],[443728,1191742],[444496.9452,1194894.1855],[444699,1194887],[446119.978,1197415.9433],[446129.1623,1197429.9797],[446354.3452,1194627.4019],[446453.69,1193386.96],[447313.495,1193491.6048],[447394.192,1193393.1862],[448190,1191721],[449089.4,1191534.2],[447415.2491,1193433.696],[447357.5,1193507],[447351.2079,1193506.3574],[446820.5,1194108.5],[447647.4844,1200000.0211],[447836.2707,1201344.9542],[447299.1768,1202702.6562],[448167.37,1204331.39],[447677.4383,1205167.261],[449390.4541,1205396.1208],[449992.4848,1205187.2262],[450606.47,1203020.19],[450600.7401,1203090.3632],[450617.5,1203015.5],[450645.7363,1205629.5088],[452061.9846,1204942.283],[452368.1,1204768.3],[452373.4,1205823.8],[454092.8517,1204931.1386]]],[[[466367.6385,1207658.7231],[465796.555,1207028.5944],[465979,1209178.5],[466374.5,1207667.5],[466367.6385,1207658.7231]]],[[[461196.22,1218618.07],[461748.6,1217279.82],[460982.489,1214094.346],[461348.7267,1214130.6637],[461343.7,1214093.6],[461362.1824,1214131.998],[461742.38,1214169.7],[463191.3484,1217932.1794],[463416.2548,1218399.4334],[463909.23,1217031.91],[465443.1495,1217528.1851],[465477.2727,1216844.1828],[466569.8255,1216886.7594],[466352.5,1215860.5],[466355.9295,1215860.1646],[466347,1215818.5],[467205.1114,1215581.3979],[465312.0468,1214763.4595],[465150.16,1214714.59],[466694.0327,1213274.4711],[466527.6173,1211628.383],[466497.9793,1211420.8616],[463492.42,1212081.99],[465343,1208976.5],[461921.28,1208794.26],[464827.5,1207929],[461749.5,1202645],[463302.4,1201358.1],[463770.2733,1202049.5955],[463859.1864,1200616.4318],[463146.2561,1199999.9813],[462569.4486,1199501.2323],[461683.5782,1199999.9591],[460000.0187,1200947.7685],[459447.9,1201258.6],[459426.5947,1201236.5028],[459422.8,1201238.6],[459389.8926,1201198.4365],[458234.4097,1200000.0064],[457613,1199355.5],[457209.2387,1199467.0427],[456549.8893,1200586.1752],[456549.2,1200617.7],[456156.8566,1200566.451],[455749.8232,1200527.2839],[456605.8,1201859.1],[455522.4491,1204459.2214],[456199.1958,1204404.9701],[457285.6,1204286.8],[457274.3958,1204318.7767],[457276.6,1204318.6],[457272.8428,1204323.209],[456739.6739,1205844.8722],[456773.1986,1205866.8039],[456719.4165,1205902.6869],[456531.5,1206439],[457936.9295,1207989.6537],[457491,1209153.5],[458247.5,1211458],[456995,1212494.5],[458567.5,1214551.5],[457866.5,1214915.5],[459234,1215298],[460000.0094,1216564.2248],[460176.72,1216856.33],[459999.9888,1217541.0207],[459873,1218033],[459969.0941,1218075.4886],[460010.2014,1218037.8],[460005.0051,1218091.3669],[461196.22,1218618.07]]],[[[461366.1824,1220246.9098],[461240.2405,1220181.6067],[461252.0184,1220309.8808],[461366.1824,1220246.9098]]]]},"properties":{"LAD22CD":"S12000027","LAD22NM":"Shetland Islands","BNG_E":434516,"BNG_N":1180307,"LONG":-1.37344,"LAT":60.50495,"OBJECTID":335,"GlobalID":"8862ccd9-fad5-4db4-909d-0f0e4e37a3be"}},{"type":"Feature","id":336,"geometry":{"type":"MultiPolygon","coordinates":[[[[202636.0018,599689.3002],[201891.4764,599253.5978],[201786.1423,599320.752],[201673.3483,599901.5769],[201796.1045,600175.964400001],[202150.1606,600209.073999999],[202507.4682,599849.6754],[202636.0018,599689.3002]]],[[[241401.5005,633734.105],[241296.6975,633068.5955],[245299.0976,632554.102700001],[246418.1997,633164.597999999],[246449.0032,632389.1],[248105.403,631480.0002],[248595.102,626731.0996],[247346.2968,626309.000399999],[247486.2979,625655.0976],[246016.7971,626105.5986],[245920.198,624932.804300001],[244710.697,623835.398399999],[243900.2982,624123.096100001],[242474.85,622418.25],[242426.9421,620992.6368],[243213.84,621021.34],[243567.0995,619945.200999999],[242361.8,618888.050000001],[243715.1958,617786.901799999],[244793.67,617957.08],[244968.7,615845.1],[241660.99,614535.57],[240060.41,615708.119999999],[239657.0931,617361.400900001],[237775.0669,617704.067199999],[237300.07,615286.85],[235211.72,614309.960000001],[236232.6,614478.800000001],[237714.9412,613262.846100001],[238959.1,614290.5],[239954.27,613796.93],[240462.19,612845.890000001],[237516.69,610045.789999999],[239757.4726,609099.508400001],[241759.19,606170.98],[243125.7984,606245.003599999],[243605.6,605115.58],[245351.34,604233.800000001],[243952.3069,601767.562100001],[245705.6971,598228.4998],[244300.4441,596426.0812],[244094.5013,593523.4976],[242470.5,592226],[243296.0012,588978.1962],[242159.5173,587092.0057],[236679.4963,587856.997099999],[235401.0006,586117.495100001],[232900.0093,586078],[230572.2323,583843.7191],[230201.181,580494.093],[232466.5006,578035.999199999],[231785.5,576121.5],[231068.998,575896.5001],[231042.0274,576745.504000001],[226590.5009,574814.000800001],[224953.9982,575969.499700001],[223660.0007,574980.503],[222723.9992,575447.991599999],[221834.499,574282.0041],[221051.5012,575799.4987],[219202.9625,574787.4987],[218581.001,575938.4988],[215775.9995,575402.5011],[215227.0007,577871.995999999],[213444,578542],[212774.5003,578365.5021],[212881.0011,576913.499500001],[210838.5019,573669.9981],[209723.0028,573786.504799999],[209981.502,572595.9956],[205664.3114,571245.328],[205662.594,571250.0984],[204486,574394.5],[205110.9,577233.699999999],[207023.9085,580000.0341],[208254.37,581779.361],[209423,587320],[212724.861,589485.473999999],[214842,593213.5],[218187.92,596276.606000001],[217969.876,598318.844000001],[218578.91,598150.699999999],[218030.97,598341.119999999],[218817.3297,599999.951099999],[219976.24,602444.68],[219579.7706,607118.717399999],[220924.7334,608269.8883],[224210.28,610825.060000001],[224720.325,615338.889],[225804.4,617040.1],[228440.913,618792.402000001],[232242.47,619590.370999999],[232575,619105.15],[232643.8752,619999.9561],[232738.3136,621226.872300001],[232845.1,621371.85],[232818.5249,622268.9553],[232852.5,622710.35],[234334.45,621538.75],[232961.939,622817.262],[233968.674,623522.359999999],[234588.088,625838.502],[233872.475,628117.68],[234618.1,627016],[234525.66,627788.029999999],[230670.429,631373.630000001],[232301.82,631435.34],[232338.5996,631939.7466],[232395.03,631956.060000001],[232362.884,632272.789999999],[232469.65,633737.011600001],[233118.2978,633148.102700001],[236767.5041,636864.198999999],[238292.7002,637244.200200001],[238238.8023,636243.5966],[240278.4985,636037.295700001],[240044.8004,634197.4024],[241401.5005,633734.105]]]]},"properties":{"LAD22CD":"S12000028","LAD22NM":"South Ayrshire","BNG_E":226545,"BNG_N":596271,"LONG":-4.72899,"LAT":55.23008,"OBJECTID":336,"GlobalID":"8621291c-4b2f-47cf-a281-24cb0818e843"}},{"type":"Feature","id":337,"geometry":{"type":"Polygon","coordinates":[[[268133.2006,662167.096100001],[271890.5987,659499.999600001],[271680.6959,657896.1987],[274710.3024,655763.799000001],[274525.0029,654824.9978],[276267.2997,654403.5984],[278944.3968,652258.3025],[279625.3977,650708.0962],[281606.1994,653366.7952],[289280.4961,654381.504699999],[290719.1026,655676.304099999],[291415.9999,655198.001],[293597,657010.0023],[300354.9984,658585.001499999],[302581.7008,655803.797599999],[303091.798,656353.700200001],[307774.3991,654051.2992],[308734.5014,653212.4956],[309678.93,648789.115],[310925.96,647260.199999999],[312246.8887,647898.026000001],[312322.53,647242.33],[306599.705,640501.17],[306774.7075,636866.911900001],[303720.1584,636373.1074],[303881.96,634768.23],[306220.501,630893.4991],[305241.5,629219.4987],[306230.0002,625815.001800001],[305093.5009,625329.0009],[303918.4973,622882.5012],[304112.5036,621042.9978],[302703.9998,617666.5043],[304665.4998,614182.601500001],[303105.996,612454.496200001],[301945.0007,612763.9976],[301390.0009,611566.000499999],[300094.5039,611244.502499999],[300386.9975,607913.495999999],[299376.7961,606942.403999999],[300238.9986,604939.497300001],[298134.9992,604705.5043],[297189.4968,603693.604],[297319.4967,601375.1976],[294454.5028,600997.9956],[293564.0033,602934.001399999],[291521.5037,604566.0042],[291023.5021,607593.997500001],[291638.3033,609025.897600001],[288970.0036,610394.9957],[288350.9974,613323.497400001],[285146.4967,616319.4998],[284620.9977,618242.499399999],[280243.9999,620067.9969],[278405.4997,619736.501700001],[276741.0032,620480.4988],[275526.0028,619598.5012],[274517.4999,620706.0042],[272612.0003,621753.0045],[272973.002,622844.0022],[272115.1673,623937.702099999],[276497.9965,629195.0043],[276649.4993,630856.9989],[275686.302,630960.932],[275457.5,631882.5],[274154.5011,631795.000299999],[271564.0035,635081.499299999],[268835.4985,632401.496400001],[266008.0032,632275.002599999],[264682.5024,633101.9959],[259752.5,630779.500700001],[259564.9991,631852.503599999],[258660.4994,632111.999299999],[261267.0155,634357.5262],[261819.8698,636307.257300001],[263075.91,636727.91],[261201.5767,637903.126700001],[261455.8276,639241.2247],[260246.03,640188.060000001],[260582,641524.5],[258813.5022,645129.286499999],[260448.0039,646467.0002],[260481.0996,650478.1021],[257318.5003,653563.898800001],[256898.4969,655133.499500001],[258743.4035,655560.0974],[258954.3002,656913.2267],[260448.6965,656462.598999999],[260660.3967,657644.1008],[261921.9982,658550.701300001],[261331.9981,660198.5996],[260635.0514,659898.0956],[260140.6033,660636.1044],[260606.8038,663089.202199999],[261026.5021,662216.801899999],[262156.8011,663408.8007],[262381.2976,662234.096899999],[263536.6038,662416.004899999],[263992.3001,660993.602],[266652.7999,662059.4969],[267845.3985,661197.503699999],[268133.2006,662167.096100001]]]},"properties":{"LAD22CD":"S12000029","LAD22NM":"South Lanarkshire","BNG_E":284634,"BNG_N":636071,"LONG":-3.83272,"LAT":55.60453,"OBJECTID":337,"GlobalID":"9cc6ea83-3eb8-4dd0-bfe4-c6557515bdba"}},{"type":"Feature","id":338,"geometry":{"type":"Polygon","coordinates":[[[286583.0997,701944.799900001],[284704.9984,698428.496400001],[284913.3016,697127.0989],[283437.8974,696841.000800001],[284659.5022,695176.7972],[282926.2996,694531.5019],[284164.0977,693363.496300001],[283813.6991,692127.300100001],[285183.4016,693414.7016],[286037.1035,692969.798900001],[285754.9987,691629.102700001],[286791.6997,691267.496200001],[285852.0019,689502.701400001],[288160.0995,687300.6017],[287062.5994,686859.2981],[287104.5008,685923.296],[281946.4978,685239.9016],[277184.2,685730.0013],[276824.8967,684709.9033],[274204.6987,683523.6029],[269468.4965,683604.999600001],[267703.501,681707.002900001],[265894.5016,681546.9987],[265327.0023,684043.5041],[263054.6965,681868.696599999],[261565.0036,683053.497500001],[259406.0013,682777.996300001],[257924.9987,684072.9956],[256754.9998,682881.4967],[258194.0021,680143.500399999],[258240.1002,677037.0996],[257247.9968,677235.502800001],[257354.2014,676224.0024],[254313.7032,676507.5012],[252448.5962,678909.9035],[250190.7027,678031.7049],[248452.9983,678893.9981],[247462.5027,681721.998600001],[246088.4962,681533.002699999],[245335.5984,682625.200099999],[244449.9964,686678.399800001],[245613.3003,687064.099400001],[245964.9027,688139.1017],[244161.5017,688912.3004],[244035.3028,687916.0956],[242474.6035,689625.5962],[239050.0008,689730.496200001],[238422.898,690979.898600001],[237999.4976,691515.495200001],[239017.3009,693927.4048],[235983.4977,695316.997099999],[235197.999,700101.497500001],[232864.8034,704108.1006],[233592.9989,705856.5002],[232744.4997,710188.5002],[233096.4978,712379.0031],[235404.4965,713035.995100001],[234127.5015,714945.998299999],[234856.0021,715438.497400001],[234526.9994,716605.5033],[235693.5024,717569.497400001],[233393.9961,717719.5044],[232177.998,718604.5011],[231773.0006,717671.498199999],[230703.5008,718878.002800001],[227830.3031,718081.900699999],[227438.0031,719144.4965],[228082.503,720314.001800001],[223799.4988,723449.0044],[226508.9991,726424.002800001],[226658.0038,728590.002800001],[227459.498,728465.998299999],[229430.4963,730583.0023],[231558.4971,730246.998500001],[232100.5027,733038.999299999],[233757.0014,733849.997099999],[235853.0031,732957.502599999],[236535.9993,734374.497],[237551.5022,734670.0024],[238196.4969,734452.504699999],[238453.0007,735799.4991],[241479.0041,737772.5043],[244477.9967,737624.9965],[244515.9981,739146.501],[245850.5025,739632.002],[246610.4993,738411.501399999],[247655.503,738413.001],[249884.4976,739750.998],[253818.9995,740487.997],[254698.5002,741961.495200001],[256745.9962,740992.002800001],[258619.002,733802.0009],[265000.0032,735852.0041],[267512.0012,737439.499600001],[269138.0015,736385.5013],[270283.0014,734911.0034],[270796.5038,732332.001599999],[268585.5,732253.0043],[266826.4986,730158.503799999],[264397.9983,731694.0043],[264489.9967,723768.502900001],[261755.0028,723600.0012],[261553.5017,720085.497199999],[262714.497,718880.5021],[261762.0028,717433.496300001],[264706.9985,714574.504699999],[267674.4991,713768.745300001],[269113.4972,711854.0034],[271070.0007,711778.494999999],[271445.4973,712772.500499999],[273018.4983,710895.9976],[273886.4971,711624.4991],[273910.6963,710381.7048],[275928.5019,710970.996200001],[279800.6959,705635.003599999],[281283.0012,705249.104],[282277.7019,706243.499399999],[283927.0027,704010.998400001],[285569.5013,705248.5042],[285702.9971,702554.4954],[286583.0997,701944.799900001]]]},"properties":{"LAD22CD":"S12000030","LAD22NM":"Stirling","BNG_E":255980,"BNG_N":708769,"LONG":-4.32595,"LAT":56.24953,"OBJECTID":338,"GlobalID":"c3221b25-9f15-4ed5-a851-dc271bbb5ddc"}},{"type":"Feature","id":339,"geometry":{"type":"MultiPolygon","coordinates":[[[[395231.7417,800208.080800001],[395230.8934,800205.880100001],[395228.0967,800207.3026],[395231.7417,800208.080800001]]],[[[385539.6964,816096.1044],[386367.6984,815305.0009],[387706.3995,815658.999600001],[389548.1978,813292.596899999],[391453.7963,813401.9956],[392356.5596,815198.6614],[396407.064,813503.9143],[396391.6574,813466.5222],[395409.677,809476.197000001],[393577.1,809552],[395380.061,809333.455],[395489,806479.25],[396404.7,806091.1],[394349.25,806061.6],[395365.1105,805603.9768],[396734,806002.85],[397262.2,805475.800000001],[395697.7811,801417.15],[395673,801417.199999999],[394950.0149,799477.1832],[394932.9028,799432.774499999],[392906.7987,799944.297800001],[392464.7974,803060.8957],[389686.8986,802640.9279],[389263.3969,801814.102600001],[385845.2007,800394.8989],[384382.5021,800501.598300001],[383725.05,798737.84],[381448.2992,798394.101600001],[380882.0037,798824.7983],[382482.1969,799741.9958],[382891.3993,801410.1982],[380048.9969,801219.402899999],[378238.802,802313.6996],[378842.7032,805025.6033],[381681.8983,803652.0965],[383312.2025,804260.802300001],[384716.897,807533.5954],[382269.6969,811912.202099999],[383205.9978,812306.1993],[383492.2993,815985.1962],[384288.797,815338.101399999],[385539.6964,816096.1044]]]]},"properties":{"LAD22CD":"S12000033","LAD22NM":"Aberdeen City","BNG_E":387763,"BNG_N":808479,"LONG":-2.20398,"LAT":57.16697,"OBJECTID":339,"GlobalID":"15398530-71a3-4a9a-9549-2aef00a56431"}},{"type":"Feature","id":340,"geometry":{"type":"MultiPolygon","coordinates":[[[[410094.8996,835879.882300001],[410037.6033,835877.6021],[410111.2032,835917.773700001],[410094.8996,835879.882300001]]],[[[413241.7001,841365.101299999],[413158.4035,841350.607999999],[413238.097,841417.5963],[413241.7001,841365.101299999]]],[[[352976.2661,868035.918099999],[353725.52,867221.699999999],[354309.7291,867325.9541],[355807.9829,866219.495200001],[355959.31,866024.300000001],[357519.5149,867205.8792],[357640.4385,867135.3945],[359327.7,866090.91],[360000.0012,866683.179300001],[360300.3,866947.73],[362037.82,865773.68],[365284.31,865447.539999999],[365406.8292,865573.1384],[365418.29,865572.130000001],[365477.0679,865645.1423],[365842.56,866019.82],[366164.7454,865669.3157],[366604.27,864997.52],[366790.9759,864988.0419],[367088.12,864664.779999999],[369024.84,864644.48],[369385.5407,863571.9537],[368571.73,862519.220000001],[369447.85,863386.68],[369453.1311,863659.387599999],[370380.8895,864859.522500001],[370442.4166,864915.600199999],[371982.5257,864767.2206],[371973.7016,864738.0009],[372000.2111,864765.5167],[373240.5743,864646.015799999],[373240.1018,864612.296800001],[373260.0425,864644.1402],[376446.87,864337.109999999],[378512.57,865185.32],[379283.8791,864674.5329],[379409.03,864566.66],[379428.4338,864578.8039],[379544.29,864502.08],[380000.0127,864827.6128],[380719.32,865341.43],[380678.1048,865665.6315],[380692.7968,866386.0385],[382362.4,867416.1],[383054.7717,866772.248],[383949.18,865804.539999999],[384105.7905,865794.881999999],[384395.72,865525.27],[387474.91,865543.35],[388651.45,864622.810000001],[393063.3,867928.85],[397575.43,866876.300000001],[399848,867673.949999999],[400000,867040.1742],[400311.8,865740.1],[400882.8703,865575.9778],[400910.6,865518],[401292.4905,865458.2554],[402660.7337,865065.0306],[401838.83,864301.83],[402843.76,865012.43],[402836.7996,865228.521299999],[403327,865683.710000001],[404199.8788,865301.160700001],[405569.7503,863197.558700001],[406626.11,860474.539999999],[406859.7,860964.300000001],[407176.5207,860730.1702],[407366.9,860437.82],[408508.9875,859745.4802],[410472.62,858294.359999999],[410479.72,853091.74],[411819.9,851828.6],[411932.8315,850672.824100001],[411793.78,848802.65],[412158.6245,848361.9891],[412242.85,847500],[411302.05,848097.49],[411392.54,847563.720000001],[413713.014,846484.590600001],[414005.3432,846131.5141],[413772.87,845250.9844],[413771.9328,845249.6756],[413573.56,846391.560000001],[412902.4269,845671.281400001],[412643.8012,845798.302300001],[412594.584,845340.8959],[412450.35,845186.1],[412566.7029,845081.779899999],[412554.6,844969.300000001],[412667.7837,844991.1525],[413062.5088,844637.2487],[413553.7694,845162.2108],[413556.1277,845162.666099999],[413491.8181,845073.1294],[412992.8716,844448.035800001],[412325.8,843850],[412436.7746,843751.342399999],[412417.6,843727.32],[413523.7313,842521.854800001],[413340.7485,841691.600199999],[412253.5446,840551.403999999],[412040.3,840401.199999999],[411867.6902,840000.0364],[410194.4013,836111.1349],[409730.9704,835833.9759],[409170.5,836223.51],[408476.5,835196.9],[408598.2855,833537.506999999],[408586.9369,833260.9671],[405502.29,830604.369999999],[404815.9124,829685.604900001],[401981.2,826132.58],[401736.448,825563.523399999],[400875.49,824411.07],[400707.58,823941.369999999],[400000,822224.056399999],[399083.6471,820000.0459],[396407.064,813503.9143],[392356.5596,815198.6614],[391453.7963,813401.9956],[389548.1978,813292.596899999],[387706.3995,815658.999600001],[386367.6984,815305.0009],[385539.6964,816096.1044],[384288.797,815338.101399999],[383492.2993,815985.1962],[383205.9978,812306.1993],[382269.6969,811912.202099999],[384716.897,807533.5954],[383312.2025,804260.802300001],[381681.8983,803652.0965],[378842.7032,805025.6033],[378238.802,802313.6996],[380048.9969,801219.402899999],[382891.3993,801410.1982],[382482.1969,799741.9958],[380882.0037,798824.7983],[381448.2992,798394.101600001],[383725.05,798737.84],[384382.5021,800501.598300001],[385845.2007,800394.8989],[389263.3969,801814.102600001],[389686.8986,802640.9279],[392464.7974,803060.8957],[392906.7987,799944.297800001],[394932.9028,799432.774499999],[394510.17,797444.050000001],[390299.86,791884.24],[389316.15,787611.630000001],[387381.45,786289.73],[388466.248,784429.8859],[388464.9554,784411.2007],[387897.05,784121.960000001],[388116.8495,780000.0261],[388130.31,779747.6],[388106.5006,779693.4297],[386950.78,778172.4],[386464.1211,775956.748],[386089.2306,775103.810799999],[383704.6694,772656.810900001],[383342.18,772710.91],[383176.63,770944.52],[382996.1628,770719.655200001],[382527.59,770701.619999999],[381426.6778,768764.053300001],[380193.56,767227.57],[380000.0163,767119.828400001],[377434.93,765691.9],[377128.4,764735.49],[375688.683,764815.425000001],[374166.1259,762673.458900001],[374111.237,762508.625],[371831.3012,761867.497199999],[367698.2994,766092.3978],[362445.8986,765936.4025],[361533.0962,768797.003699999],[360241.4991,768958.7973],[360365.2987,770312.999700001],[359191.3009,772515.599199999],[359811.9974,777345.4967],[358606.9982,777609.0013],[358284.5009,780627.497199999],[355987.501,781849.497400001],[355081.5008,784381.502599999],[353573.0009,785654.9981],[349959.9986,785937.497199999],[349453.9992,787621.495200001],[348358.5027,787140.502900001],[345865.996,788757.5],[344610.7019,788198.699999999],[344767.0035,787545.497],[342671.0018,787349.5031],[342088.4965,786581.502900001],[337705.0015,787310.0044],[334225.0003,785766.996099999],[332474.4996,781375.0032],[332676.5036,778733.499399999],[331836.9998,778013.4955],[329427.999,780099.498400001],[328595.5035,779398.499],[325058.9989,781388.999199999],[322787.501,781670.998500001],[321934.5,782653.497300001],[321852.9975,780284.4954],[318648.9998,779073.502],[316464.9985,776753.496099999],[314486.0025,777841.004799999],[313481.0037,777366.500700001],[312976.4967,778153.4954],[310757.9981,776670.9998],[308548.0002,778311.5002],[306911.9986,777957.501499999],[306421.5,778931.502699999],[304991.996,778056.1033],[304551.0007,779237.495100001],[305158.9997,779860.9966],[303746.0024,783310.9991],[299915.0007,782511.4979],[299399,783621.5002],[298135.9968,783601.4959],[297599.499,781796.502599999],[295966.0039,781554.5019],[294170.9964,783830.500399999],[291535.5039,782725.9965],[290468.5023,784179.500499999],[291387.9997,787201.4954],[293088.997,788399.502499999],[293881.5041,790464.501399999],[294181.5006,793085.5012],[293453,795452.503599999],[295020.5016,797522.5011],[294134.0008,797647.995200001],[293502.5034,798960.499500001],[294027.4994,799724.0009],[296146.9995,799971.5001],[298082.3931,801732.737299999],[299147.5009,798722.4976],[300318.4975,800910.5013],[303532.4965,800355.000299999],[305717.0007,801679.0013],[305991.0006,800140.001800001],[306872.0019,801033.496099999],[308171.003,800508.996200001],[310040.9993,801374.998299999],[312287.0035,801069.9956],[313916.4996,802500.496099999],[314658.4974,801692.997300001],[316600.4979,801602.5032],[317971.0002,802949.997500001],[319161.4963,803019.4976],[320043.0005,805165.5033],[318454.0041,807168.9998],[318933.0009,808078.499500001],[318051.4967,809243.495999999],[318269.4961,810517.5013],[320697.9964,812042.504799999],[322761.999,811767.003599999],[323625.999,813204.5022],[325025.4992,813059.503699999],[324902.7962,815000.098200001],[327189.0032,819031.0043],[329831.5041,819666.002599999],[331168.4984,821388.999399999],[333156.0034,821268.503900001],[334245.0028,822045.501499999],[336540.502,820990.5034],[337169.996,821385.000499999],[338627.5002,819460.501399999],[340754.5033,821219.4979],[341243.5014,823565.996200001],[342769.0026,825700.295299999],[341561.4969,826812.9968],[341737.0013,829403.495300001],[340934.5012,830741.5023],[342704.5015,832334.496300001],[340649.1974,834688.102499999],[338567.5008,835438.9976],[339628.7969,837147.6985],[342739.3039,839093.2016],[339436.1015,839625.599199999],[338888.2997,840372.5954],[341807.1997,845583.4038],[345149.5001,845350.4005],[344996.1997,846606.7009],[347005.4964,848317.0013],[347051.0009,849483.997300001],[348223.498,849165.998299999],[350199.8969,850116.7961],[350944.7969,849736.8049],[351158.4017,848041.5002],[352848.7959,846729.3958],[354645.403,848219.9991],[354529.6011,847328.5043],[355641.0024,846224.500299999],[357071.8008,845867.602499999],[357661.8009,846979.0043],[358479.7027,846634.902799999],[358599.2973,847569.395300001],[361185.4019,849010.6028],[359043.5,850081.6962],[357679.1979,849156.401000001],[357026.7003,852911.396199999],[355262.2985,853302.904100001],[355411.7979,854649.6986],[353720.101,855165.301000001],[352754.2993,857507.8005],[351662.1008,858062.6017],[353998.2976,862483.5962],[352182.0013,864245.901699999],[352320.225,867541.492000001],[352524.9952,867762.352],[352976.2661,868035.918099999]]]]},"properties":{"LAD22CD":"S12000034","LAD22NM":"Aberdeenshire","BNG_E":352284,"BNG_N":816277,"LONG":-2.79208,"LAT":57.23469,"OBJECTID":340,"GlobalID":"9617ad29-7757-4577-8134-1c35f1389506"}},{"type":"Feature","id":341,"geometry":{"type":"MultiPolygon","coordinates":[[[[173254.001,604986.004000001],[173390.498,604009.5035],[171618.9971,604182.0042],[173254.001,604986.004000001]]],[[[175954.5125,619872.5955],[175928.4452,619862.9287],[175705.8294,620000.040200001],[175373.8904,620204.485200001],[175751.0796,620422.2667],[176185.4995,620521.497],[175999.8806,620000.0461],[175954.5125,619872.5955]]],[[[139519.2068,644110.470100001],[139252.2115,643317.040200001],[138582.4894,643474.3868],[138759.642,643607.407400001],[139519.2068,644110.470100001]]],[[[165730.0035,652686.4999],[166223.3732,651410.7553],[165988.4718,650948.1982],[165350.4998,649753.999299999],[166384.0183,649794.479],[166384.3174,649794.374299999],[165171.4995,648957.997199999],[165195.596,647368.636399999],[165197.3889,646975.9947],[163273.5029,645568.997300001],[163665.0032,648022.505000001],[162980.0035,648031.5024],[162793.5002,649055.499299999],[164761.0008,652556.8336],[165225.0017,652340.499],[165224.7358,652361.6985],[165327.4961,652315.496099999],[165210.4119,653503.661800001],[165202.1009,654166.252699999],[166335.496,654779.0009],[166987.4527,653920.499399999],[165730.0035,652686.4999]]],[[[202737.4985,659086.4979],[202066.6479,658246.4059],[201809.4784,658847.8665],[201500.6151,659790.7062],[201702.1877,660516.0154],[201973.4265,661343.258400001],[202406.7831,660091.155400001],[202436.7891,660000.0024],[202737.4985,659086.4979]]],[[[208460.2,667116.9],[208557.3,664897.6],[208657.9234,664915.684699999],[208661.8,664857.300000001],[210716.3463,665267.900699999],[210702.74,661476.18],[211082.7341,659999.977],[211842.2746,657049.310699999],[211843.6933,657038.7355],[209840.7,655655.1],[211379.6745,652853.4472],[211459.3826,652669.6482],[209917.5,651775],[208358,653098.5],[208032,655927.1],[206081.9,658189.699999999],[205817.3437,658102.5624],[205777,658143.5],[204402.6958,657636.6163],[204373.5,657627],[204252.3181,659999.986099999],[204161.31,661782.109999999],[203412,660994],[203156.5,662189.5],[204184.2,665764.800000001],[201711.1935,666607.0284],[199188.676,670403.6021],[198705,672254],[199142.5893,672716.9465],[201371,674739],[201576.9491,674693.737400001],[202744.68,674270.470000001],[205391,670970.5],[207547.0144,669646.946699999],[207112.8959,668210.3827],[206589.35,667676.16],[206921.457,667576.882099999],[206891.63,667478.18],[207783.6352,667319.148],[208460.2,667116.9]]],[[[142543.325,678347.053400001],[142671,677513],[141729.36,674000],[143006.5626,669810.3606],[143008.7215,665822.945],[142974.5,665360],[144031,661916],[145910.6861,659999.9935],[146230.5,659674],[145783.6929,657590.789000001],[145724.5,657351],[145730.6112,657343.298900001],[145718,657284.5],[146922.0308,655446.0176],[146552.1476,654136.445],[146285.7845,653648.195900001],[146311.6758,653285.0539],[146288.5,653203],[146341.1288,652871.9559],[146424.93,651696.59],[146915.8979,651924.669399999],[147140.6587,651942.466600001],[146721,650719],[146819.121,650721.872400001],[146781,650620],[147227.9814,650733.841600001],[147395.7565,650738.7531],[147310.4199,650675.771199999],[145445.5,649444],[145351.7514,649230.194499999],[145080.5,649030],[145093.2171,648640.5746],[144870,648131.5],[144018.78,648745.630000001],[143993.772,648538.730900001],[143915,648603.5],[143735.8115,646404.5403],[143721,646282],[143009.4,647070.02],[139999.9985,645341.6009],[138885.5,644701.5],[137906,645346.5],[136566.6175,644592.621200001],[136132.1,645693.4],[134619.594,645513.077],[134934,644336.5],[132945.5342,641366.238399999],[132099.2889,641156.5845],[131756.5,641098.5],[131124.3986,639999.9649],[131115.5,639984.5],[131031.8596,639999.962099999],[128350.3978,640495.669500001],[128277.7777,641156.3915],[128277.5,641192.5],[128273.7035,641193.460200001],[128266.5,641259],[126705.5,641600.5],[127147.6351,644088.0525],[127245.9994,644097.498500001],[127153.1494,644119.077099999],[127266,644754],[128643.2654,646844.715299999],[129332.5317,647864.290200001],[131244.06,647840.210000001],[131665.3583,648204.1434],[131686,648205.5],[131689.655,648225.1318],[132263.8,648721.1],[131964.1275,649699.385600001],[131967.5,649717.5],[131878.1211,649980.154999999],[130723.25,653750.25],[129349.19,655752.960000001],[127446.889,655510.744200001],[127501.1491,656013.9136],[127613.4776,657002.7808],[128239,658346.5],[131698.6509,659999.9913],[132755.742,660505.213],[133427.76,662150.43],[132950.6,662826.34],[127586.723,663092.892999999],[127468.9164,662820.665899999],[127341.3,662818.6],[125900.2149,659195.714500001],[125730.7,658804],[122762,654680.5],[119999.9931,652638.3521],[117897,651083.460000001],[116585.44,651819.189999999],[115703,653673.5],[116049.2555,654006.559599999],[117443,655015],[117550.3839,655450.4792],[117894,655781],[117676.3928,655961.489800001],[117714,656114],[117067.6422,656487.410399999],[117677.1592,658066.2588],[117779.4751,658303.062999999],[119999.9967,659869.3511],[120185.1384,659999.9443],[120211.4672,660018.515900001],[119999.9945,660128.672499999],[119798.0721,660233.8543],[119614.1193,660412.3487],[120000.0047,661507.166099999],[120649.555,663350.041999999],[120000.0253,663805.3533],[118856.2236,664607.142200001],[118855.0968,664608.0814],[119999.9888,665571.048599999],[120880.4216,666311.579500001],[121065.5,668097.5],[120487.5,668414],[121307,671116.5],[122934.6833,671878.988399999],[123533.4355,671223.1964],[123779.5,670884],[125260.99,671494.550000001],[129423.1498,674866.012],[129485.5937,674784.15],[127970.5,668691],[128582.409,667280.631999999],[129594.2,667180.77],[129075.5,668519],[130776.697,672106.362],[130407.178,672916.91],[131984.9663,673349.091499999],[132025,673354],[132037.8064,673363.565300001],[133169.01,673673.42],[133170.3846,674209.500299999],[136719,676860],[137455.7855,678003.6875],[137898,678370.5],[139371,678176],[139999.9933,678423.9274],[142350.2417,679350.314099999],[142543.325,678347.053400001]]],[[[170872.6262,679999.989],[169062.5433,677230.0052],[169035.4824,677246.603800001],[169135.4432,678855.3193],[169750.7101,679903.1642],[170331.4979,679328.003900001],[170827.177,679999.991699999],[171225.5016,680539.9969],[170872.6262,679999.989]]],[[[137850.1225,689301.747500001],[137790.0388,688763.4013],[137541.8471,688762.077299999],[137477.9965,688915.999299999],[136683.0215,688757.495999999],[136420.4025,688756.095100001],[135949.9971,687477.5011],[134802.5891,686922.617699999],[134844.6474,687524.6249],[135029.8977,688231.1954],[134487.8171,688839.0725],[134550.9009,688833.902799999],[134468.001,688861.2939],[134047.1282,689333.2511],[136049.3923,689700.096999999],[136781.9979,689792.498400001],[137760.0023,689632.5042],[137850.1225,689301.747500001]]],[[[137505.3209,689803.2426],[137389.5023,689722.498500001],[137375.2491,689810.8345],[137505.3209,689803.2426]]],[[[178324.5487,694420.5537],[178164.0998,694247.303300001],[178191.6834,694469.464400001],[178305.81,694459.139900001],[178324.5487,694420.5537]]],[[[198608.3966,694558.7041],[198335.9963,694371.4977],[198533.0492,694755.4978],[198608.3966,694558.7041]]],[[[143209.5013,699755.996400001],[140799.0965,695139.5999],[140503.1267,694845.247099999],[139999.9744,694398.249399999],[138857.2963,693383.1006],[138931.5229,693282.2293],[138913.7008,693264.5046],[139027.3224,693152.041300001],[139682.9979,692261.001800001],[139370.0673,691222.687200001],[137350.1812,689966.195499999],[137153.7018,691183.9002],[136675.9994,690445.501499999],[135370.9959,690522.499500001],[135654.5023,691748.498500001],[134202.7585,691098.665899999],[133765.2783,691006.9551],[134983.2513,692213.3698],[135067.0005,692279.996400001],[135070.3789,692299.670600001],[135628.0027,692852.002699999],[135188.9592,692990.227499999],[135258.7169,693396.464600001],[135823.3034,693744.597200001],[135048.0039,694064.9955],[136153.4027,694752.5986],[135414.9998,695109.4965],[135839.2713,695979.025800001],[136663.4945,696838.5974],[138403.4162,698349.672700001],[139110.336,698252.234200001],[139900.6016,697767.195699999],[139966.6911,698134.1982],[140106.0026,698114.996200001],[140176.384,699298.647700001],[140219.5041,699538.0988],[140852.0437,700000.029300001],[142381.0098,701116.601299999],[143035.2592,700064.775],[143071.8131,699999.997],[143209.5013,699755.996400001]]],[[[154257.7879,681180.783199999],[154157.4995,681164.998],[150906.561,683064.737],[150486.3996,682927.429099999],[150128.8808,682829.7193],[150156.5049,682946.981799999],[153180.9968,688479.9904],[154047.9969,689780.002],[154685.9743,690301.275900001],[158502.5522,693190.265799999],[159999.9922,693935.320800001],[162377.9986,695118.503900001],[163813.9997,697512.998500001],[164741.9978,697089.999600001],[167335.4982,699311.003799999],[167352.5091,700000.0063],[167357.4961,700201.9988],[168836.2,700114.73],[168826.7529,700232.937000001],[168830.5,700233],[168774.4902,701092.7739],[169352.7386,701301.699200001],[169704.5339,701405.1041],[170448.6593,700000.000499999],[170942.4981,699067.5035],[170827.496,697093.998400001],[165402.7643,688019.704399999],[165405.5026,688075.9998],[165372.3725,687968.8661],[164715.2207,686869.6065],[164281.6036,686696.478],[163669.9997,686526.5033],[161720.9992,682157.503900001],[160942.7848,682005.384299999],[160769.5,681988],[160765.5674,681970.743100001],[160705.4962,681959.000800001],[160282.1817,679999.966700001],[160000.0216,678694.1733],[159979.9968,678601.501800001],[157818.9992,674803.499],[157928.5019,673079.502499999],[156982.0019,671929.501700001],[157389.0028,673298.4998],[156396.0006,673174.495300001],[156019.215,671003.777899999],[155942.4067,670665.7948],[155052,671318.5],[153808.5026,670812.501399999],[152687.86,667216.93],[152700.728,667197.463500001],[152698.46,667190.23],[153077.8169,666627.0101],[153350.5,666214.5],[152513.7641,664461.3046],[152507.7721,664486.427300001],[152441.0015,664427.4991],[152492.5647,664416.8859],[151621.0427,662590.804],[147125.4204,663171.3465],[145395.4978,664459.0001],[144153.099,667345.873],[144416.504,670919.0009],[143830.9152,671891.9002],[143975.7646,672480.3751],[144630.0854,675011.0515],[148666.9979,679985.4957],[148826.5021,679999.953],[155717.0034,680624.502699999],[159984.4986,682822.503599999],[159680.9979,684195.000700001],[157902.7158,682105.702400001],[157818.7623,682041.3497],[157218.6462,683449.6523],[157218.2372,683447.240499999],[157218,683448],[157209.9603,683398.4309],[157066.0026,682549.501700001],[155876.9988,682644.004699999],[155189.8071,681385.729800001],[154257.7879,681180.783199999]]],[[[112140.9352,702988.2816],[112188.3229,702893.233899999],[112094.2737,702942.891100001],[112140.9352,702988.2816]]],[[[172109.5041,703358.995100001],[170305.9959,702497.501700001],[167562.2162,702852.397600001],[167209.6598,703770.555500001],[167185.5041,703849.4047],[168573.5024,705777.502800001],[171245.1083,706988.878900001],[172024.0028,705985.0034],[172109.5041,703358.995100001]]],[[[177525.5033,707442.995999999],[176056.0026,706180.497400001],[176356.3441,709878.437000001],[176397.0122,709999.8517],[177456.5004,709190.9957],[177525.5033,707442.995999999]]],[[[164400.0009,709739.998500001],[163319.9968,709210.0002],[164569.9976,710549.9967],[164400.0009,709739.998500001]]],[[[170822.4995,709623.002],[171504.0033,707270.995300001],[170780.4991,707197.496300001],[170512.5017,708440.000700001],[170448.9829,708433.218699999],[170441.5035,708466.0032],[170407.8106,708428.8226],[169714.0151,708354.7443],[169827.1184,708537.071699999],[171276.1018,710745.5218],[171078.0993,710204.903999999],[170822.4995,709623.002]]],[[[167526.5033,711813.494999999],[165996.5003,711370.002],[167540.9981,712704.5],[167526.5033,711813.494999999]]],[[[176583.4576,714000.3588],[175877.1949,712396.528100001],[175640.1463,712924.9267],[176371.5749,713760.5869],[176583.4576,714000.3588]]],[[[175458.3016,712727.103499999],[175834.3011,712229.7958],[175850.7803,712268.6207],[175893.7137,712176.331900001],[175963.6493,712020.032],[174762.303,708883.503699999],[174721.1202,706494.748400001],[174546.0285,705736.3673],[172880.2709,708844.3214],[172824.425,708979.047499999],[174169.3997,712862.66],[174777.6481,714575.404999999],[175575.6919,712859.9454],[175458.3016,712727.103499999]]],[[[173529.7522,716816.252499999],[173341.5965,716814.203600001],[173827.4038,717373.9034],[173966.7149,716956.5562],[173529.7522,716816.252499999]]],[[[178400.5796,720436.6468],[178089.319,718370.5758],[177979.5011,717942.2007],[176623.5019,717022.0041],[177300.2977,715547.496200001],[175553.3758,714084.3444],[175487.5714,714194.6548],[175234.2008,716867.498299999],[173999.9976,717695.101399999],[176056.3772,719999.9453],[176312.9384,720287.505799999],[176368.628,720222.899499999],[176475.5812,719999.9747],[176727.4968,719474.901900001],[176923.8781,719578.7456],[177060.1792,719420.6206],[176709.0031,718869.495200001],[177929.2472,719999.9835],[178400.5796,720436.6468]]],[[[130581.5543,720000.017200001],[130125.0016,718781.500399999],[129590.499,719614.0021],[128718.2634,719261.051200001],[128735.223,719298.5668],[129174.6613,719999.994899999],[129541.3917,720585.3673],[129743.4851,720598.788899999],[130709.5022,720341.503900001],[130581.5543,720000.017200001]]],[[[127568.9996,722294.504799999],[126605.4983,721488.9954],[125471.4973,721892.4999],[125471.1848,721893.657299999],[126340.6235,723260.628],[126729.6029,723538.6987],[126538.4669,724913.373299999],[128813.3604,726138.6127],[129089.999,726268.997199999],[129090.2236,726117.976500001],[128229.587,723289.612],[127568.9996,722294.504799999]]],[[[184908.4031,730892.9036],[180777.0009,725715.4956],[180241.5006,725485.001599999],[180672,726375.296700001],[180027.599,726797.595899999],[178514.0288,726684.284600001],[179999.9964,729258.281099999],[180254.9978,729699.995100001],[182769.5023,729899.9978],[183370.621,730496.995300001],[184368.888,731360.320599999],[184908.4031,730892.9036]]],[[[173493.9982,733018.6951],[173483.3384,732766.934900001],[173365.835,732941.831599999],[173493.9982,733018.6951]]],[[[201662.4992,733194.004899999],[201525.4992,733163.503599999],[201638.0031,733241.001399999],[201662.4992,733194.004899999]]],[[[203032.4985,733849.497300001],[203016.0002,733801.501],[202939.9972,733809.998600001],[203032.4985,733849.497300001]]],[[[144173.0026,736087.4966],[143480.6327,734873.143300001],[143397.1875,735173.850099999],[143341.2986,735695.5988],[144173.0026,736087.4966]]],[[[206436.002,736575.497],[206398.9982,736533.9988],[206356.0002,736595.001399999],[206436.002,736575.497]]],[[[206342.9978,736614.9957],[206296.9986,736521.5024],[206305.4992,736589.0031],[206342.9978,736614.9957]]],[[[148801.5098,737656.972899999],[148759.3912,737589.056],[147521.2887,737770.7083],[148038.0255,738253.0995],[148216.35,738392.694599999],[148289.343,738359.4682],[148801.5098,737656.972899999]]],[[[139999.9902,742158.9486],[142820.4993,740042.5045],[142874.5674,740146.595100001],[142890.4999,740133.498500001],[143186.6859,740728.318499999],[143598.1827,739999.988600001],[143816.6016,739613.397399999],[144302.5621,739999.9704],[144328.9992,740021.000700001],[144340.0255,739999.969699999],[145014.5018,738713.505000001],[143835.4993,737901.997300001],[142105.9988,738361.9956],[142063.2947,738290.895199999],[141344.9938,737830.7314],[141088.064,737911.8061],[140933.9963,739052.4979],[140909.1869,739050.669199999],[140914.4968,739111.0012],[140650.6028,739031.6086],[140072.5029,738988.996099999],[139949.4218,738820.658],[138800.4961,738475.0032],[138659.3523,738613.080499999],[138541.5022,739217.500700001],[137581.7503,739667.2706],[137258.4965,739983.501399999],[137269.6096,739999.9892],[138437.0572,741732.062899999],[138787.9847,741837.877599999],[139566.9982,741588.502],[139796.3093,742141.9164],[139957.7969,742190.6095],[139999.9902,742158.9486]]],[[[136000.4981,742193.9987],[137092.004,741244.500499999],[138161.7162,741649.0397],[138265.4443,741680.3167],[136980.2791,739999.986500001],[136616.9978,739525.002699999],[136556.0689,739999.986500001],[136485.0026,740553.9981],[134914.7942,740425.865499999],[134964.1472,741544.000700001],[135252.6096,741724.923900001],[135338.9968,741509.004799999],[135365.6954,741795.851199999],[136000.4981,742193.9987]]],[[[190433.6989,742373.997199999],[189236.5712,742285.7892],[189431.0273,742583.9332],[190291.3533,743369.2399],[190484.6885,743406.2863],[190433.6989,742373.997199999]]],[[[189266.3175,746151.9979],[184609.6389,740000.0109],[184240.9984,739512.996099999],[180000.0007,736747.116699999],[178434.1114,735725.8803],[179335.855,736695.8003],[179843.5033,737228.5],[179999.9707,738100.3015],[180283.4307,739679.676899999],[182696.0966,740690.8989],[182989.6058,741000.382099999],[183378.3012,741167.502499999],[186937.9991,745070.995200001],[186837.9313,746103.5481],[186846.3041,746097.4078],[187671.9002,745104.295600001],[188957.1602,746025.2107],[189266.3175,746151.9979]]],[[[107623.3431,745943.205600001],[107585.8599,745916.1314],[106984.6245,745986.1653],[106878.6895,746237.651000001],[107070.2029,746482.101199999],[107623.3431,745943.205600001]]],[[[108765.3551,749707.9407],[108815.1959,749632.399499999],[108695.6013,749688.9033],[108715.5154,749765.8028],[108765.3551,749707.9407]]],[[[192299.4985,749991.4967],[191442.7277,748130.5178],[191422.1603,748207.817199999],[191174.8965,749410.3368],[191306.6746,749506.287699999],[192299.4985,749991.4967]]],[[[184236.7016,724188.7468],[184348.59,724482.880000001],[184141.2187,724260.4838],[184088.875,724299.810000001],[182686.9381,722700.8346],[182561.39,722566.189999999],[181528.5,724219],[183222.02,728140.15],[185868.9,729934.300000001],[185313.6215,732525.383300001],[185624.7544,732800.774900001],[186775,733793.1],[187659.7135,734342.072000001],[188063.9919,734583.566400001],[188319.92,733649.060000001],[189669.5,734463],[189679.95,733848.51],[193169.4077,734645.0549],[193108.0999,734533.8014],[193267.6006,734596.9033],[193176.6927,734646.717900001],[193662.1396,734757.5318],[194098.8755,734386.600299999],[194852.25,733682.140000001],[194890.7603,733714.031300001],[194916.7,733692],[195306.7474,734058.5196],[195771.22,734443.16],[197568,733344.5],[198613,733501],[198795.5,734317.5],[199814.85,731986.310000001],[199999.9826,731959.124700001],[200656.91,731862.66],[200730.0259,732095.491800001],[201155.68,732824.99],[201366.88,732199.529999999],[203463,733044.5],[205634,735563],[206986,736059.5],[206465,736680],[207329.5,737794],[208061.02,737351.76],[207460,737831.5],[209677.5852,741684.0602],[211779.9972,741431.9968],[212431.0025,742413.9957],[215998.5002,742920.500700001],[216632.9989,744493.000600001],[217482.9988,744242.0024],[218731.4989,745203.997099999],[219038.5037,746533.4965],[223227.4977,745276.996200001],[225714.9997,746041.497300001],[226220.9991,745505.500800001],[228017.499,745920.0021],[229411.4997,747442.496300001],[232681.1034,747315.4027],[234229.8969,749232.0041],[235169.0011,748646.001800001],[238924.5028,750168.495999999],[239939.9975,750042.0022],[242832.4968,745274.4969],[240410.5019,745773.0042],[234271.5015,743034.4981],[234230.0041,742043.0019],[236548.0041,741217.9981],[236863.996,740265.0009],[236516.4997,738570.4959],[234712.0021,736396.9981],[235611.4971,735159.0024],[237551.5022,734670.0024],[236535.9993,734374.497],[235853.0031,732957.502599999],[233757.0014,733849.997099999],[232100.5027,733038.999299999],[231558.4971,730246.998500001],[229430.4963,730583.0023],[227459.498,728465.998299999],[226658.0038,728590.002800001],[226508.9991,726424.002800001],[223799.4988,723449.0044],[228082.503,720314.001800001],[227438.0031,719144.4965],[227830.3031,718081.900699999],[230703.5008,718878.002800001],[231773.0006,717671.498199999],[232177.998,718604.5011],[233393.9961,717719.5044],[235693.5024,717569.497400001],[234526.9994,716605.5033],[234856.0021,715438.497400001],[234127.5015,714945.998299999],[235404.4965,713035.995100001],[233096.4978,712379.0031],[232744.4997,710188.5002],[233592.9989,705856.5002],[232864.8034,704108.1006],[235197.999,700101.497500001],[235983.4977,695316.997099999],[239017.3009,693927.4048],[237999.4976,691515.495200001],[238422.898,690979.898600001],[236779.5007,686673.001399999],[237946.3994,683866.9046],[236149.5038,682793.002],[236077.4997,681982.0042],[234691.4966,682640.4957],[234235.0006,682061.001599999],[236891.9963,680244.501499999],[236285.1021,678601.6018],[237642.2605,676947.8552],[237116.5107,675697.339400001],[233636.2,677138.9],[232612.7,678575.4],[231472.6,678217.1],[231570.62,679099.75],[232548.5,679106.1],[232142.0571,680000.0427],[231646.53,681089.92],[230398.7755,681714.9936],[230388.4982,681750.1006],[230030.6613,681899.4037],[226337.95,683749.300000001],[226229.1074,684082.155099999],[226367.55,684781.050000001],[225505.0516,686296.4123],[223947.65,691059.15],[223399.82,687732.02],[225937.96,682175.43],[227336.18,682107.970000001],[227450.8,680690.300000001],[223898.7373,680467.9937],[222475.2614,680870.7128],[222172.3021,681109.601],[221154.567,685588.463300001],[220835.8232,688249.800899999],[223572.95,694830.35],[228203,702846.5],[229492.39,703721.08],[229352.29,704654.199999999],[226952,702322.5],[224060.81,695924.4],[222106.59,693362.93],[222085.1199,693378.342800001],[222098.19,693424.18],[222073.5124,693386.6754],[220574.78,694462.57],[220975.18,698104.57],[219934.1,701166.85],[218988.8,700707],[219954.5,698665.5],[219238.8,694850.800000001],[221179.6844,692028.251],[220000.0224,690235.421],[218595.4,688100.699999999],[219328.357,680583.1535],[216774.12,681853.529999999],[216771.3446,681851.8389],[215423.92,683164.210000001],[215410.47,681350.810000001],[217157.0458,679999.967],[217649.457,679619.124600001],[218561.7419,678717.1379],[218416.2201,678303.896],[217074.9461,676205.093900001],[216862.41,676160.84],[213673.9,667189.939999999],[210433.9201,668124.695900001],[209586.5686,668387.702],[208513.5,677494.5],[206339.0056,679722.7161],[206247.1154,680037.1874],[205390.55,684040.060000001],[205228.4247,683523.4011],[205194.5,683639.5],[205211.1947,683468.4926],[204944,682617],[205408.0761,681451.7885],[205564.5,679849.5],[207536.2041,676108.442],[207578,676003.5],[207703.5,671504],[205561.5,671979],[201877.2975,675349.429199999],[201937.4967,675425.0011],[201836.503,675407.995999999],[201838.0753,675385.310900001],[201540,675658],[201086.1241,680000.0187],[200912.5,681661],[200787.4612,680000.0064],[200628.2362,677884.888599999],[199951.4535,674956.529300001],[198585.705,673158.2458],[197788.2,672642],[197508.5341,671739.933],[197371.5,671559.5],[199270,667226.5],[199391.8478,664094.370999999],[199197.1505,664059.448899999],[198304.2501,664589.384],[198086,665154.5],[196464.9255,666244.6032],[196271.5,666857],[194447,666564],[194168.4399,667345.4538],[194161.5,667451.5],[194132.8991,667445.157500001],[194072,667616],[192847.6145,667160.136299999],[192790.1508,667147.393300001],[193276,667416.5],[192764.0616,667572.251],[192929.5761,669558.478499999],[192957.4,669677.617000001],[192937.2342,669650.377900001],[192937.649,669655.356000001],[192605.0693,669201.7052],[192571.81,669156.779999999],[192820.6,669921.800000001],[190738,671130],[190572.3449,672015.230900001],[190572.4962,672015.497],[190572.3168,672015.381200001],[190515.5,672319],[191595,674661.5],[191169.3088,674962.338500001],[191947.2368,677908.4857],[192398,678652],[191875.4537,679337.785800001],[191273.8243,680419.933599999],[191476.3334,681720.586999999],[191877.4144,683283.413000001],[193244.577,684846.4706],[193434,684850.5],[193633.4888,685291.107899999],[194351.5,686112],[194634.6046,687502.2579],[195564,689555],[200459,694909.5],[201019.31,697495.529999999],[207513.9,700347.529999999],[208669.48,701450.08],[210257.5,705912],[212222.7,707681.300000001],[215335.5,708872],[218853.16,712180.710000001],[211689.5,708773.5],[210930.81,710183.439999999],[207536.5,705360],[206559.5,701936.5],[204713.75,700454.039999999],[201785.76,699783.060000001],[198971.6,697573.4],[197528.5,694166],[195902,693339],[195747.7904,692968.842700001],[195825,693348],[194288,690314],[193467.3766,690114.2601],[193342.9273,690206.034399999],[193358.15,691173.869999999],[192569.97,691158.189999999],[192765.9382,690631.531199999],[192439.23,690872.460000001],[192964.5361,690097.805199999],[192997.77,690008.49],[192028,689230],[191601.5,686087],[190829.09,686481.890000001],[190645.1104,686225.8137],[190560.4,686238.699999999],[188793.7408,684282.0474],[188478,684579.5],[188114.0134,684220.4825],[187672.9963,683927.2673],[187268.5804,684319.208900001],[186419.2266,685781.346100001],[186379.3,687742.1],[185764.6,688121.6],[185500.6253,686229.035599999],[185331.27,686226.01],[185014.0889,682740.816099999],[184744.5,680808],[185101.0884,679999.987400001],[186002.7011,677956.975199999],[186016.6697,677745.343],[186300,672324],[186379.4758,672248.6249],[186394.5,672021],[187256.2516,671417.088099999],[187314.4634,671361.879899999],[187307.4518,671362.3092],[186667.7,671573],[187310.6969,670092.9133],[187309.2989,670092.6974],[187312.191,670089.473999999],[187625.9436,669367.260500001],[186444.6006,668677.0732],[186396.9,668654.1],[186403.8935,668653.2905],[186401,668651.6],[186927.6099,668592.669199999],[188259.5,668438.5],[190912.5,664378],[192092.3152,659999.975299999],[192254,659400],[191338.5,657374.5],[189896.6,657618.699999999],[187087,656183.5],[183279.5,651363.5],[183313.5,649193.5],[180870,644294],[181572.6562,639999.988399999],[182088.13,636849.869999999],[181528.13,636285.369999999],[181378.13,637548.869999999],[180262.67,637221.33],[180231.74,637861.08],[180150.8922,636600.8212],[179896,636301.5],[179852.7909,631954.003699999],[179841.5,631778],[178926,631511],[178316.5553,627135.755100001],[176112.58,625039.539999999],[176105.1094,624993.6273],[175976.29,624869.59],[175480,621339],[173517.76,620309.43],[172072.2,620714.199999999],[172219.283,620518.475299999],[172070.459,620546.325999999],[172499.8161,620145.167199999],[172608.8941,620000.016100001],[173240.9,619159],[173508.4688,619202.7585],[173558.3,619156.199999999],[173690.4964,619232.5275],[175267.3776,619490.412599999],[175872.244,618372.0548],[176762,616537],[176976,613113.5],[174133.5,609073.5],[171391.5,607408.9],[166046.45,607827.33],[163929,606213],[161654.8713,605917.6697],[160228.0495,606573.507099999],[159999.9956,606730.3171],[158910.1046,607479.7268],[159444.9008,614846.817],[159677.2408,617361.721100001],[162387.5,619791],[162658.0429,620788.626800001],[162787.914,620936.559],[164576.53,621062.199999999],[165048.733,622789.676000001],[165673.5,631469],[166371.8788,632772.250299999],[165832.5,637362],[167392,638828.199999999],[167756.9408,639999.990900001],[168941.5,643803.5],[169733,647678],[168972,649347],[172686.69,652196.289999999],[176162.5,658392.5],[177190.5,658353.5],[179261.9599,660000.001399999],[180000.0034,660586.6358],[182065,662228],[185083.1,668007.1],[184431.5,668035.5],[182780.6384,665483.226600001],[180162.7586,662361.2248],[180000.0176,662201.457900001],[179088.5141,661306.6121],[175933.1855,659512.543199999],[175857.5,659868],[174934.14,658483.939999999],[173917.2247,658092.747400001],[173278.6113,657952.7776],[173297.5388,658148.5901],[173896.3327,659427.0505],[174309.37,659669.75],[173840.6115,659623.4712],[173250.035,660081.005799999],[173125.6432,660380.264799999],[173261.6375,660593.359999999],[174112.3407,661264.114399999],[173629.5741,661169.895],[173933.2073,661645.670499999],[171936.8964,660839.5429],[171888,660830],[170424,662303],[170498.8357,663943.6292],[170722.0762,667046.7873],[171924.7787,669500.725500001],[175753.307,675652.0403],[177192.24,677353.720000001],[174648.25,676569.25],[173361.8244,675289.9047],[170099.2257,672087.448799999],[169849.1853,673395.8663],[169656.457,674982.716],[170421.7444,676922.384500001],[175398.4697,684726.465600001],[175662.4241,685092.404300001],[176346.7396,685667.520500001],[177434,686223],[177614.3441,686732.8477],[177664.5,686775],[177624.2439,686760.835200001],[177935.8,687641.630000001],[175913.8981,686239.9968],[176919.5487,687564.4737],[177966.5,688894],[177875.818,688823.913799999],[177928.16,688892.85],[176516.7684,687969.1851],[176668.5,688714.5],[176300.6207,687891.941500001],[176297.5004,687889.0033],[176254.8346,687797.7663],[175200.0485,687107.4767],[175197.2666,687107.0383],[177338.5,690183.5],[176020.0865,688460.5571],[177210.5,690417.5],[175008.96,687149.26],[174828.9504,687158.224199999],[174219.16,687213.859999999],[174239.3749,687187.5843],[174186.85,687190.199999999],[174303.2966,687104.4978],[174892.8247,686338.219599999],[174421.9741,685522.6271],[172952.8596,683367.8266],[171885.5256,682783.5614],[171884.8485,682783.699200001],[173471,685966],[173390.5969,685869.1163],[173434.5,685958.5],[173212.8619,685654.950099999],[172385.5,684658],[170957.5,682261.5],[171075.15,681661.949999999],[172075.44,682067.42],[171153.5,680627],[170195.4922,680000.0296],[169884.5,679796.5],[169993.502,680000.040999999],[170657,681239],[169217.6731,680000.0022],[168300.2202,679210.2426],[168167.3962,679115.9366],[168613.8572,679999.979699999],[172222.5,687145.5],[173562.2,687771.4],[173894,690362.5],[177108,694567.5],[177262.164,694553.5535],[178170.3,694097],[178947.8871,694401.054300001],[179053.5,694391.5],[179171,693238.5],[180000.0276,692637.595699999],[180939,691957],[181710.63,692856.09],[180509.16,692506.470000001],[180538,693649],[180000.0129,693594.5754],[179549.5,693549],[180000.0028,694379.628799999],[180538.5,695372.5],[179999.9926,695411.3177],[179254.6614,695465.0441],[179107.2077,695682.3038],[179513.73,696539.939999999],[178801.998,696132.002599999],[178238.1452,696962.7886],[180000.0186,699972.2557],[180016.2359,699999.956599999],[182822,704792.5],[182431.78,705384.48],[181855.9484,704940.718],[181309.05,705039.859999999],[180827.6088,704148.2327],[180801.38,704128.0196],[180734.2004,704076.2479],[180886.84,704383.17],[180356.4884,703785.165899999],[179999.9983,703510.4384],[177811.64,701823.99],[176906.4121,699999.9882],[176788.0939,699761.5812],[176246.7436,699151.1754],[175497.4802,699094.245999999],[175481.5108,699101.6577],[176169.2523,700000.002900001],[177271.87,701440.27],[176419.032,700911.2126],[176696.5,702163.5],[176497.6034,702101.379899999],[176528,702336],[179453.88,706950.359999999],[179083.0512,707488.883400001],[178919.6768,707751.5141],[180000.023,708187.077400001],[180555.75,708411.130000001],[180187.7647,708953.5791],[180139.87,709888.300000001],[179139.6598,710660.714500001],[179999.9869,710976.189300001],[184462.6871,712612.624299999],[183667.8891,713256.7359],[183512.6691,713481.621300001],[183764.06,714127.84],[183058.06,714152.25],[182251.0882,713021.832],[181251.1633,713108.339199999],[180000.0193,713236.4958],[179496.52,713288.07],[178197.5,711953],[178112.7463,711967.569499999],[177323.2232,712219.536900001],[178558,715919],[177839.806,715819.0108],[177767.7789,715844.850199999],[178642.525,719999.962099999],[178937.3648,721400.4738],[180556.7038,722870.551200001],[181165,722563],[181415.4825,723085.156400001],[181550.543,723081.7338],[182478.117,722079.75],[182515.24,722022.24],[182523.9313,722030.260399999],[182534.0513,722019.328600001],[183912.9,723254.9],[185024.5962,723460.157299999],[185099.4681,723540.5449],[184236.7016,724188.7468]]],[[[109578.326,748764.109999999],[109508.78,747177.788000001],[106486.217,747169.365800001],[106463.4983,747223.2991],[106138.2656,747168.396299999],[104654.3528,747164.261499999],[104007.192,745978.772],[104994.1062,745259.758300001],[105079.652,745161.1414],[103942.583,743348.109999999],[99999.9709999999,743579.4803],[99864.8810000001,743587.408],[98429.96,741677.82],[98553.0445999997,739999.9465],[98571.2342999997,739751.9866],[98516.5073999995,738870.9144],[96119.3399999999,738800.5],[95338.5624000002,739999.996300001],[94886.4469999997,740694.573999999],[93327.8804000001,740000.006100001],[93278.5,739978],[93282.2017999999,740000.0034],[93957.5,744014],[93321.4349999996,745768.641000001],[93224.7741,745773.089400001],[93227.5038999999,745809.003900001],[92964.3115999997,745785.075999999],[92525.4189999998,745805.274],[92636.3591999998,745897.3511],[93483.4965000004,746152.9954],[93993.4298999999,747023.6799],[95682.8559999997,748425.854],[98041.5,748443],[98087.5828,748412.670499999],[98619.8975,747750.698100001],[98900.5911999997,747877.587099999],[100000.006,747154.004699999],[100316.212,746945.892999999],[100517.3473,747218.3378],[103715.6385,749315.047],[103964.3384,749421.6241],[104191.6623,749271.0492],[105139.317,748437.925000001],[105252.2802,748568.517000001],[105282.5005,748548.499700001],[105346.3554,748677.273399999],[105676.855,749059.35],[106243.4634,748610.3972],[106249.874,748596.686000001],[106254.077,748601.987500001],[106307.27,748559.84],[107959.7454,750560.135500001],[108666.1994,749183.8978],[109308.2173,749077.696699999],[109578.326,748764.109999999]]],[[[113055.8337,752665.7423],[113035.9316,752616.878599999],[112980.9965,752640.498400001],[113032.5034,752729.0031],[113055.8337,752665.7423]]],[[[206679.9981,752762.003599999],[206603.5005,751222.0044],[208722.003,751542.002800001],[211072.002,750643.100199999],[210588.9981,749191.9955],[209184.9961,748279.4967],[209943.5005,746728.500700001],[209589.4988,744671.499500001],[208643.9964,743899.000600001],[209623.3036,742490.4038],[207196.5017,739001.002699999],[205857.9985,738820.0045],[203951.1962,734455.603800001],[201000.0003,732955.203299999],[199999.9712,734260.555400001],[199458.0007,734967.997099999],[197501.9012,734660.6951],[193974.1034,736095.4044],[193012.3005,735957.9037],[192784.6762,735151.0769],[192657.0728,734732.6315],[190642.2806,734823.8508],[190175.5568,734850.290999999],[190240.7937,735606.887399999],[190612.4023,736139.501800001],[190340.4825,736763.0452],[190418.5032,737667.904300001],[189550.0313,738575.6404],[189437.1019,738834.600299999],[189363.9534,738770.130899999],[189146.7026,738997.2038],[189554.852,740000.0064],[189675.2027,740295.702099999],[189456.9576,739999.9976],[187068.9966,736764.502900001],[187590.9008,738217.4969],[186189.0013,737610.500700001],[186215.5001,737653.8212],[188982.7642,741896.647],[190860.0015,742261.599300001],[191052.4022,741747.6348],[190891.0029,741314.4005],[191325.2124,741018.8708],[191519.5982,740499.603700001],[191755.7069,740725.8696],[192023.8001,740543.4012],[195027.4017,741531.8982],[197454.5993,744252.1995],[200336.9984,744348.0021],[200593.8486,744837.202099999],[199664.8033,744995.296800001],[201537.199,746002.398499999],[198345.5029,744420.001499999],[196015.6959,744470.797],[193005.3994,741907.2008],[192989.7726,741908.49],[193028.601,741945.6998],[192592.2971,742579.1984],[192025.3997,742030.995300001],[191492.2988,744240.7028],[190022.0972,743787.702500001],[190660.9987,746171.000299999],[191762.4977,747019.497400001],[191755.2997,745990.5019],[193077.5025,746634.6975],[191999.9966,747733.303099999],[192284.7975,748485.3978],[196097.2328,752593.396400001],[197672.4997,749989.497199999],[199079.9976,750225.499700001],[200568.998,749200.0032],[202658.5026,750216.0024],[202976.4981,753518.9969],[206679.9981,752762.003599999]]],[[[147960.5034,757798.0021],[150748.0019,757038.499500001],[151183.002,755853.6074],[151187.5479,755839.9153],[150440.5805,755093.326400001],[150600.4363,754997.0352],[150575.04,754961.52],[151420.341,754503.154999999],[152649.0986,753762.997099999],[153747.4974,751213.4969],[155096.4966,750210.504000001],[155394.7889,749208.271199999],[156417.4385,745380.511600001],[155651.7025,744804.3015],[157026.3026,743220.604800001],[157403.6923,743599.2444],[158198.8219,743561.852499999],[158936.6008,742933.497],[159999.9769,743047.374500001],[162443.0027,743308.999500001],[163547.7062,742427.623199999],[164372.55,741732.73],[164384.9546,741759.633199999],[164754.4973,741464.7974],[164882.5019,742683.998400001],[166514.0016,742355.502499999],[167776.6786,740000.0353],[168104.4986,739388.501700001],[169715.4022,738477.2026],[171054.1596,738764.405300001],[171210.0545,738546.229],[171411.411,737587.234999999],[172559.2893,736657.962300001],[173346.2936,735556.542300001],[173115.6983,734939.495300001],[174436.6973,734461.302100001],[175052.9991,735377],[175046.2222,735140.7061],[174870.5247,731855.1625],[173780.4426,732324.713300001],[173776.866,732330.036900001],[174187.3007,732735.2962],[173291.4006,733719.704399999],[172229.216,732260.165999999],[173331.1273,732921.0163],[173477.915,732638.845000001],[173422.4971,731329.998500001],[173911.5034,731704.001399999],[174025.3537,731586.498299999],[174093.5,731455.5],[174145.641,731462.351600001],[174793.6012,730793.602],[172948.002,727348.998],[170643.4992,728248.000700001],[170956.0584,729757.6524],[171207.5,730829.5],[171176.9586,730824.5934],[171190.5013,730890.0044],[171050.3717,730804.2568],[169745.2718,730594.588199999],[168889.7005,730891.403999999],[169797.0035,728897.004899999],[168385.168,728812.255000001],[168080.0025,727334.5022],[165721.162,725815.457],[166274.2665,725983.510199999],[165940.7,725738.57],[170358.5548,727224.4652],[171114.0036,727453.998],[172076.6984,727292.6763],[172213.2806,727262.554300001],[171886.4999,725942.000800001],[168601.9973,722904.000399999],[163370.2357,719999.986199999],[162956.9311,719770.571599999],[162605.018,719916.327400001],[162405.6756,719999.9595],[160000.0078,721009.2333],[159633.4981,721162.9987],[160000.0157,721491.9057],[162426.3971,723669.3013],[162096.504,724619.099400001],[160609.4,724962.4012],[160168.3821,724536.6406],[158995,723957.5],[157468.624,721930.2819],[156823.0041,721306.997500001],[153594.7988,721640.202099999],[151618.3015,719999.9638],[149855.5384,718537.097200001],[148004.9508,719551.6699],[147763.9988,719697.9981],[144781.9993,719244.9978],[143692.9999,717935.002699999],[142031.2103,718453.76],[142031.4964,718454.504000001],[142030.7145,718453.914799999],[140299.0029,718994.499500001],[140064.2715,718876.8334],[140006.5,718892.5],[139202.6585,718444.9243],[138926.5424,718306.5129],[138921.8964,718312.504699999],[138917.8082,718302.1346],[138578.201,718131.896400001],[137381.4963,718785.7992],[137207.722,718449.148800001],[137079.78,718485.119999999],[136147.4567,716395.1129],[136029.825,716167.2267],[136007.2848,716229.197699999],[135792.4999,717256.9968],[132621.7118,716967.6763],[132423.6187,717088.8178],[132538.9988,718424.502599999],[132140.2869,718455.134199999],[132175,718680],[130909.9571,718772.430400001],[131079.5769,720000.015000001],[131233.5006,721114.002800001],[129392.5021,721544.999399999],[131245.2765,725658.555400001],[134707.1722,725166.8192],[134723.3621,725164.0474],[134727.7796,725150.547599999],[134981,724325],[134998.3384,724323.7289],[135145.5017,723874.002699999],[135219.6015,724307.508099999],[136020.3724,724248.8037],[136268.5038,722841.9981],[134386.7005,722968.102],[138121.0041,721768.395400001],[137560.4966,724858.0011],[139999.9672,723868.1612],[141084.5017,723428.100400001],[141948.0976,723611.9977],[141450.9552,724020.982799999],[141527.382,724117.231699999],[141919.5037,724362.502900001],[143074.424,724072.292199999],[143891,723829.5],[143920.4171,723859.7093],[144106.3001,723813.0002],[144886.0025,724821.001599999],[146535.6991,724223.2028],[148622.5983,725685.204299999],[151897.8993,726386.703500001],[152935.6969,727877.5967],[152345.7507,728881.0472],[152685.1331,728927.0877],[154464.086,728622.722999999],[151842.5007,729753.999600001],[151749.6818,729677.807600001],[151721.0015,729690.9976],[150280.8864,728472.1218],[149456.0008,727795.000299999],[148700.9016,728733.9016],[147208.7642,727351.0551],[146537.3465,726970.763599999],[140984.0026,726407.497500001],[140180.4967,727956.5041],[140475.9997,729382.4959],[144045.5999,732274.098200001],[145532.6671,735856.6908],[145882.5918,736125.3377],[150239.496,736177.001],[153672.5003,738943.4991],[153676.951,739184.3321],[153854.59,739334.300000001],[153873.95,740573.779999999],[153703.9781,740646.7908],[153709.8903,740966.7042],[154170.8,740613.6],[153711.209,741038.060000001],[153648.2693,741013.9123],[153110.5004,741425.898499999],[151855.9596,740351.8002],[151635.9141,740197.0634],[150913.2726,739999.9922],[148463.3794,739331.8828],[146169.8441,738841.5394],[145448.0024,739876.901900001],[144773.2126,739839.046599999],[144619.2518,739857.149599999],[144721.0559,739999.962099999],[145388.5967,740936.398700001],[144781.4964,741949.998500001],[140265.5033,745426.603399999],[140032.778,745404.3193],[139990.61,745435.66],[138666.8519,745273.528100001],[136452.5006,745061.4979],[133250.4981,746797.5009],[133766.7961,748650.8901],[134648.4335,748889.168],[135564.796,749021.5043],[137261.4977,751025.1008],[136972.6514,751039.4005],[137068.6,751158.68],[136070.7064,751084.0526],[135081.9983,751132.9999],[134760.4986,754398.994999999],[137753.8021,753829.597999999],[137884.7963,753936.909700001],[137960.3971,753925.0712],[138091.7983,754106.4877],[139092.3852,754926.1778],[139125.8654,754896.682399999],[139999.9884,754051.0986],[142906.9982,751238.999600001],[142080.8897,752293.367699999],[142847.5,751618],[140893.6033,753851.502800001],[141599.4964,753635.503599999],[140750.9972,754919.9959],[140881.5,757061.502900001],[141949.095,756393.689300001],[142634.5,755925],[142607.2776,755981.9758],[142800.9997,755860.796599999],[142050.5013,757220.497400001],[142398.1914,756962.109099999],[142515,756859.5],[142517.3608,756873.547599999],[142617.0029,756799.4979],[142703.9966,757943.000600001],[144665.4966,757757.9036],[145547.9453,758311.7567],[147063.1662,759187.3233],[147960.5034,757798.0021]]],[[[127401,763983],[127352,762536.5],[125857.5413,759999.9943],[123680.7441,756305.373400001],[123661.7998,756285.808599999],[122110.01,758931.460000001],[122577,755971],[122188.8997,755546.8532],[122085.0034,755664.502800001],[120553.9946,754043.7053],[119999.979,754075.6314],[119849.9,754084.279999999],[119716.09,753180.310000001],[118926.95,753831.25],[118066.7055,753201.722899999],[117660.3982,753209.5288],[117634.9,753609.140000001],[116922,752116.5],[116188.6,754086.039999999],[115414.9201,752363.180400001],[115233.6771,752014.5822],[114730.525,753118.199999999],[113297.429,753258.909],[113188.297,752990.9671],[112835.5,752967.5],[112511.8048,751330.038899999],[112484.5,751263],[111663.742,751126.607000001],[110886.7148,752956.819800001],[110940.2426,753072.076400001],[111566.9336,753566.751800001],[111752.5,753302.5],[112484.9798,754291.407],[112909.5,754626.5],[113098.9351,754586.623199999],[113182,754304.5],[114012.1145,754394.395300001],[114331.103,754327.247],[114784.5167,755245.3616],[114803.5013,755231.4967],[114790.3499,755257.1732],[115635,756967.5],[116360.8449,757259.134099999],[116767.5,757373.5],[116785.0383,757429.569],[116979,757507.5],[117309,759066.5],[119058.3011,760000.0363],[119224.8658,760088.9256],[119899.5,760389.5],[119899.9081,760449.170299999],[119999.984,760502.577099999],[121445.66,761274.08],[122344.943,762725.7555],[122796.4883,763036.2127],[124080.5,763186.5],[124299.5,763951.5],[124952.56,763481.720000001],[124892.5,764451],[126172.56,763956.91],[126436.9999,764453.1121],[126794.7276,764292.167199999],[127401,763983]]]]},"properties":{"LAD22CD":"S12000035","LAD22NM":"Argyll and Bute","BNG_E":200740,"BNG_N":715443,"LONG":-5.22114,"LAT":56.28944,"OBJECTID":341,"GlobalID":"a18bd729-21c6-4441-995f-d108ad0151c2"}},{"type":"Feature","id":342,"geometry":{"type":"Polygon","coordinates":[[[332836.4695,673169.9066],[332085.8027,671460.196],[330639.8004,671294.5034],[330235.3966,669493.198999999],[331774.1971,667949.301000001],[327391.8977,666827.801999999],[324957.0982,667507.897299999],[324462.8974,666228.703500001],[322627.5963,666204.000600001],[321628.7431,664645.0999],[320905.1041,665496.203199999],[319019.4998,664430.9981],[315484.5041,660147.0044],[314327.4994,659833.0042],[312706.001,659379.0042],[312657.0006,660715.501599999],[311175.998,662334.3982],[311415.3026,663926.8024],[312701.5981,664833.502900001],[311645.7026,665926.200099999],[313333.4996,668619.699100001],[309813.1965,669236.002699999],[310667.88,671894.6],[311502.9971,672081.898],[309580.7023,674049.8047],[311124.2025,674331.6041],[309989.5996,675215.801000001],[309721.7011,677012.796599999],[310889.8036,677460.1985],[311150.7809,678798.1105],[311189.0994,678791.297499999],[311488.7139,678945.846799999],[311895.5454,678868.3182],[311848.3002,678652.597200001],[313404.102,678297.098999999],[313796.8123,678505.999600001],[313870.8,678491.9],[314519.5334,678890.448100001],[315783.099,679562.5967],[318732.8026,676576.101600001],[319108.3981,677367.904899999],[319999.9828,677202.6369],[321298.6986,676961.9012],[323619.0688,677807.906199999],[323824.8229,677865.3484],[323852.3012,677097.5023],[323941.0016,677884.2971],[324080.9038,677067.101],[325259.898,677021.5041],[326342.2025,678235.0967],[330401.6995,674321.397],[331385.6041,673845.3672],[331465.75,673756.5],[331636.6638,673723.9002],[332793.3032,673164.2982],[332836.4695,673169.9066]]]},"properties":{"LAD22CD":"S12000036","LAD22NM":"City of Edinburgh","BNG_E":320193,"BNG_N":669417,"LONG":-3.27826,"LAT":55.9112,"OBJECTID":342,"GlobalID":"4f396a06-35c1-4dfa-8f95-0c84456cc48f"}},{"type":"Feature","id":343,"geometry":{"type":"Polygon","coordinates":[[[250424.4996,668812.9038],[252851.7961,667013.298900001],[252078.7969,664988.398499999],[251068.8017,665136.396199999],[251830.9999,663895.8013],[250907.8004,661444.302999999],[249661.6996,660127.9998],[245548.9971,659579.796700001],[245088.5022,658823.903100001],[243697.2998,659280.651799999],[243619.15,658088.5],[241905.7886,656335.1143],[240673.62,656839.48],[240057.8342,655507.115499999],[238640.9963,657461.303099999],[235922.0968,655117.0042],[235040.9965,655478.400699999],[234904.9036,656775.999299999],[233117.7041,655023.900800001],[231766.0006,659982.501499999],[229594.0041,660220.0035],[228999.9969,660901.498400001],[229543.9978,661969.002800001],[225785.9979,664236.003900001],[227885.335,665262.492000001],[229245.9825,665599.995999999],[230955.9975,664156.4967],[234571.498,663812.495100001],[235887.8962,664960.0966],[235950.7978,666268.302200001],[237550.1995,666297.4038],[236759.3992,667070.4026],[237509.7987,668223.8024],[236295.2023,669312.0009],[236737.7971,671189.603499999],[235407.2999,672097.4036],[236642.3766,673912.653100001],[236767.8009,673883.602299999],[239213.6875,674225.2147],[244896.3016,673367.100199999],[250424.4996,668812.9038]]]},"properties":{"LAD22CD":"S12000038","LAD22NM":"Renfrewshire","BNG_E":239305,"BNG_N":664698,"LONG":-4.56834,"LAT":55.84862,"OBJECTID":343,"GlobalID":"13c5b7f9-4988-4b11-a153-5e3c32ff8d4e"}},{"type":"Feature","id":344,"geometry":{"type":"Polygon","coordinates":[[[250190.7027,678031.7049],[251394.8032,672325.598300001],[250708.7976,671183.0953],[251573.4984,669985.098200001],[250424.4996,668812.9038],[244896.3016,673367.100199999],[239213.6875,674225.2147],[239971.45,674331.050000001],[237133.0418,675690.4922],[237116.5107,675697.339400001],[237642.2605,676947.8552],[236285.1021,678601.6018],[236891.9963,680244.501499999],[234235.0006,682061.001599999],[234691.4966,682640.4957],[236077.4997,681982.0042],[236149.5038,682793.002],[237946.3994,683866.9046],[236779.5007,686673.001399999],[238422.898,690979.898600001],[239050.0008,689730.496200001],[242474.6035,689625.5962],[244035.3028,687916.0956],[244161.5017,688912.3004],[245964.9027,688139.1017],[245613.3003,687064.099400001],[244449.9964,686678.399800001],[245335.5984,682625.200099999],[246088.4962,681533.002699999],[247462.5027,681721.998600001],[248452.9983,678893.9981],[250190.7027,678031.7049]]]},"properties":{"LAD22CD":"S12000039","LAD22NM":"West Dunbartonshire","BNG_E":242904,"BNG_N":681586,"LONG":-4.52074,"LAT":56.0014,"OBJECTID":344,"GlobalID":"2cb6c743-d5c0-46ed-9f0c-ca489fa820af"}},{"type":"Feature","id":345,"geometry":{"type":"Polygon","coordinates":[[[311150.7809,678798.1105],[310889.8036,677460.1985],[309721.7011,677012.796599999],[309989.5996,675215.801000001],[311124.2025,674331.6041],[309580.7023,674049.8047],[311502.9971,672081.898],[310667.88,671894.6],[309813.1965,669236.002699999],[313333.4996,668619.699100001],[311645.7026,665926.200099999],[312701.5981,664833.502900001],[311415.3026,663926.8024],[311175.998,662334.3982],[312657.0006,660715.501599999],[312706.001,659379.0042],[310118.9976,657846.003],[309827.9964,655524.997400001],[307774.3991,654051.2992],[303091.798,656353.700200001],[302581.7008,655803.797599999],[300354.9984,658585.001499999],[293597,657010.0023],[291415.9999,655198.001],[290719.1026,655676.304099999],[291411.0034,656886.4977],[290917,657608.5],[292623.5,659191.289999999],[291305.44,660602.189999999],[290544.7031,664253.698799999],[293033.9036,665839.404899999],[293006.901,666761.1011],[292187.3996,667091.396600001],[289833.5996,665796.597200001],[289157.2984,666737.9977],[287753.9973,665941.595699999],[286073.2993,667138.5031],[285577.1033,668234.0995],[286129.103,668541.792099999],[288673.1667,669048.8333],[292000.04,672777.48],[293693.52,672591.720000001],[295951.086,673744.9793],[295559.2998,674699.298800001],[296902.1976,675261.097999999],[296663.3959,675881.2005],[300305.899,679365.5031],[304242.5035,678038.302999999],[305989.7389,679715.735200001],[311150.7809,678798.1105]]]},"properties":{"LAD22CD":"S12000040","LAD22NM":"West Lothian","BNG_E":299483,"BNG_N":668514,"LONG":-3.60909,"LAT":55.8992,"OBJECTID":345,"GlobalID":"a30e40f8-b167-4ff2-9159-4adf8238b417"}},{"type":"Feature","id":346,"geometry":{"type":"Polygon","coordinates":[[[374111.237,762508.625],[373275.886,760000.027000001],[372262.345,756956.316],[373001.5134,756772.3893],[373133.3234,755750.0558],[372854.2458,754811.5656],[371917.1134,754018.157600001],[370463.9979,753426.003599999],[368747.9039,751207.1987],[369280.6998,748845.2048],[369736.5248,748769.977700001],[370628.8537,747826.0176],[370501.0346,747601.216800001],[368003.6741,743322.506899999],[367074.5028,742801.704700001],[367067.6017,741789.5045],[362868.833,740000.0239],[362830.2999,739983.601399999],[360927.9994,737380.4965],[359999.9952,736728.633099999],[356013.3988,733928.3047],[354924.5752,730683.450200001],[353901.7746,730950.5415],[351135.0023,732326.6032],[348435.0003,731643.898600001],[348370.6872,731602.1611],[348005.3997,732075.495100001],[348478.6992,733693.5019],[344899.0976,733817.396500001],[341794.2962,735060.000800001],[340400.1965,733993.3961],[336589.1974,734965.297900001],[335329.6983,734360.501],[335363.297,732765.5975],[332465.9,732445.599099999],[332974.7028,731066.6039],[331116.299,731178.002],[331186.3985,732196.4005],[329659.0009,732546.4003],[329771.1008,733413.702],[326751.8995,735216.8959],[327186.3978,735710.3046],[325531.3996,737576.100500001],[327936.7973,737746.6017],[328511.7007,739067.103700001],[326947.7033,741671.8981],[330516.9985,743592.6983],[333311.8021,747343.4047],[331960.1975,747450.8039],[329848.4971,745437.4003],[328514.6029,745831.6974],[329328.7038,747485.304099999],[326998.6,748423.9954],[328229.5959,748867.0985],[327831.4007,749929.204500001],[329336.2975,750160.7982],[329509.0974,751856.8027],[325747.7006,752167.9037],[322629.8967,753918.502599999],[321371.6014,753399.301200001],[321438.1968,754742.296800001],[319948.9986,756123.501399999],[320081.4967,757541.9954],[317317.9996,760205.502900001],[316661.5031,761550.9978],[317055.9963,762604.996099999],[315845.4976,763250.001499999],[315150.4967,765045.997400001],[317193.4991,768924.497199999],[316658.5019,769937.497199999],[317595.0006,770680.5045],[314267.5001,773322.9981],[316464.9985,776753.496099999],[318648.9998,779073.502],[321852.9975,780284.4954],[321934.5,782653.497300001],[322787.501,781670.998500001],[325058.9989,781388.999199999],[328595.5035,779398.499],[329427.999,780099.498400001],[331836.9998,778013.4955],[332676.5036,778733.499399999],[332474.4996,781375.0032],[334225.0003,785766.996099999],[337705.0015,787310.0044],[342088.4965,786581.502900001],[342671.0018,787349.5031],[344767.0035,787545.497],[344610.7019,788198.699999999],[345865.996,788757.5],[348358.5027,787140.502900001],[349453.9992,787621.495200001],[349959.9986,785937.497199999],[353573.0009,785654.9981],[355081.5008,784381.502599999],[355987.501,781849.497400001],[358284.5009,780627.497199999],[358606.9982,777609.0013],[359811.9974,777345.4967],[359191.3009,772515.599199999],[360365.2987,770312.999700001],[360241.4991,768958.7973],[361533.0962,768797.003699999],[362445.8986,765936.4025],[367698.2994,766092.3978],[371831.3012,761867.497199999],[374111.237,762508.625]]]},"properties":{"LAD22CD":"S12000041","LAD22NM":"Angus","BNG_E":345506,"BNG_N":759636,"LONG":-2.8921,"LAT":56.72518,"OBJECTID":346,"GlobalID":"3db32be1-7e8d-47e0-a231-2408f585e2f3"}},{"type":"Feature","id":347,"geometry":{"type":"Polygon","coordinates":[[[348370.6872,731602.1611],[346477.3013,730373.4023],[346429.1125,730383.8529],[345261.15,731051.199999999],[344041.4401,730901.6623],[343706.499,730974.3003],[343269.5901,730807.0327],[342220.8,730678.449999999],[338276.7995,729237.7575],[336036.399,729245.495100001],[335270.3999,730078.3967],[335261.7686,730072.892000001],[334913.397,730602.696699999],[333086.1018,730506.5042],[332974.7028,731066.6039],[332465.9,732445.599099999],[335363.297,732765.5975],[335329.6983,734360.501],[336589.1974,734965.297900001],[340400.1965,733993.3961],[341794.2962,735060.000800001],[344899.0976,733817.396500001],[348478.6992,733693.5019],[348005.3997,732075.495100001],[348370.6872,731602.1611]]]},"properties":{"LAD22CD":"S12000042","LAD22NM":"Dundee City","BNG_E":340291,"BNG_N":732145,"LONG":-2.97095,"LAT":56.4776,"OBJECTID":347,"GlobalID":"6ca34332-99b6-458b-887a-3fd3df434534"}},{"type":"Feature","id":348,"geometry":{"type":"Polygon","coordinates":[[[265894.5016,681546.9987],[268253.3971,678015.999399999],[267537.9979,675376.1951],[271347.9005,676944.1962],[272288.596,675140.8024],[270726.2971,674257.7952],[271502.2975,671961.9024],[268162.8993,672035.9012],[267290.8027,670758.8967],[262933.6013,671067.6984],[263784.3019,670126.797700001],[260258.4994,669340.402799999],[258371.8975,672927.9958],[256521.2029,673064.196900001],[256273.0018,671646.2028],[256933.7033,671115.104800001],[254549.8995,669846.597899999],[253280.3002,670507.198799999],[253464.701,671754.9016],[251394.8032,672325.598300001],[250190.7027,678031.7049],[252448.5962,678909.9035],[254313.7032,676507.5012],[257354.2014,676224.0024],[257247.9968,677235.502800001],[258240.1002,677037.0996],[258194.0021,680143.500399999],[256754.9998,682881.4967],[257924.9987,684072.9956],[259406.0013,682777.996300001],[261565.0036,683053.497500001],[263054.6965,681868.696599999],[265327.0023,684043.5041],[265894.5016,681546.9987]]]},"properties":{"LAD22CD":"S12000045","LAD22NM":"East Dunbartonshire","BNG_E":261240,"BNG_N":676154,"LONG":-4.22417,"LAT":55.95829,"OBJECTID":348,"GlobalID":"c199685b-d9dd-45f4-a7b6-f18ddf38661f"}},{"type":"Feature","id":349,"geometry":{"type":"Polygon","coordinates":[[[291833.8308,688508.6273],[293452.3981,691516.404999999],[295937.7976,690981.4981],[296075.8034,691820.797800001],[298806.3038,692049.602399999],[296654.3016,693504.595899999],[298892.2998,694533.9012],[301854.5029,695193.202500001],[301763.799,696482.703400001],[302961.8971,697450.6963],[304067.8978,697282.4045],[304416.499,695931.6011],[309787.4967,696250.999700001],[312062.8037,694872.404300001],[314982.6025,695639.504799999],[314911.4971,697707.3029],[316561.3998,698625.699999999],[318350.0009,697872.3956],[319593.1994,698304.301999999],[318842.6021,699958.2985],[321854.9022,701108.1994],[321024.5008,703130.4005],[321660.4012,703774.496099999],[320097.7972,704352.000800001],[320751.5976,705326.7018],[315340.3969,706089.203600001],[316253.4962,707798.204399999],[314402.9005,709339.0033],[317428.302,711580.501700001],[318076.6029,710827.6972],[320016.2041,711448.0996],[319640.7982,714269.202099999],[322452.1991,717124.8047],[322488.7,717811.1982],[321324.4461,718319.275800001],[324318.6996,718758.097100001],[326523.5073,720000.017999999],[335955.3995,725312.800899999],[339027.3032,725829.8029],[340000.0126,726598.857999999],[343275.8018,729188.8014],[343616.1103,729200.168500001],[345866.6439,728997.991],[346733.4011,727886.804099999],[350265.264,728000.2404],[350034.9317,722405.681700001],[348271.5676,720206.196599999],[347871.4266,720000.001399999],[346726.0489,719409.7809],[348257.9556,718160.7061],[349457.3061,719807.5754],[350267.3003,717198.103700001],[351225.3591,716857.448000001],[351597.8778,716498.3992],[351239.4,716129.5],[351662.0353,716436.5616],[351889.6428,716217.1841],[352027.1643,715864.630000001],[359250.6983,714188.595100001],[360000.0174,713020.9475],[361079.7003,711338.501],[363848.499,709783.496099999],[363529.711,709279.5734],[361909.2758,707721.5471],[361098.4001,707401.198000001],[360000.0059,706284.622099999],[357158.998,703396.586999999],[356850.4839,703272.6894],[356436.5023,703567.6953],[356277.1459,703042.439999999],[352299.9,701445.199999999],[352281.3374,701427.9661],[351604.0968,701195.904300001],[350386.6034,700000.040200001],[349679.6944,699305.6897],[349599.0439,699315.171800001],[349273.0036,699973.5042],[348349.5961,699462.069399999],[346151.8359,699720.460200001],[346238.0506,699999.999199999],[346355.0023,700379.198000001],[345712.4024,700373.7837],[345583.1835,700573.148499999],[345955.4961,700926.701300001],[344889.0964,701836.6009],[343462.141,702220.5623],[343395.19,702252.869999999],[343355.3638,702249.2936],[341588.2027,702724.796599999],[340538.2416,701996.3167],[340362.0764,701980.497099999],[340045.9709,701654.771400001],[339999.9947,701622.872400001],[338269.5985,700422.295700001],[337151.7991,700638.7037],[338245.1025,700213.0956],[338121.7467,700000.0351],[337650.9344,699186.8462],[337561.4118,699094.599199999],[337725.5977,699672.4004],[335131.6025,697709.102299999],[334616.9303,697177.456],[334613.98,697175.859999999],[334609.7509,697170.039799999],[331271.5711,693721.764799999],[328842.3755,692327.8375],[328627.4036,692279.0967],[328603.5713,692190.806299999],[328528.45,692147.699999999],[328495.8288,691791.6578],[326973.2959,686151.2007],[324337.3994,686336.0978],[323230.4894,685332.950999999],[322649.8035,685392.963099999],[321250.7041,685896.603599999],[320117.7008,685557.6007],[320133.2346,685216.901799999],[319903.9813,685013.751599999],[319445.2006,685212.399499999],[317704.0004,683087.797599999],[316953.8977,683769.4025],[315959.8139,682749.514900001],[314457.563,682468.7291],[313135.2966,682685.3029],[312665.6991,682136.799900001],[313579.2024,681935.497500001],[313333.1115,680115.257099999],[312025.18,681307.949999999],[311676.516,681261.512599999],[310440.7034,682142.098300001],[309787.1999,681913.9037],[310156.3972,681494.3038],[309343.3023,681785.4004],[308907.7981,682892.8035],[305297.896,684251.104599999],[304110.8498,684111.309],[303539.1652,684296.885399999],[301987.2979,686232.897399999],[301060.5035,686320.602299999],[300812.7971,684807.895300001],[299999.9751,684862.050000001],[299927.2034,684866.898399999],[299365.4014,685970.4025],[295057.4971,685192.595100001],[291841.2967,688502.6976],[291833.8308,688508.6273]]]},"properties":{"LAD22CD":"S12000047","LAD22NM":"Fife","BNG_E":339187,"BNG_N":704721,"LONG":-2.98251,"LAT":56.23112,"OBJECTID":349,"GlobalID":"760950db-8189-40de-bef8-2a74f7ebab5e"}},{"type":"Feature","id":350,"geometry":{"type":"Polygon","coordinates":[[[290468.5023,784179.500499999],[291535.5039,782725.9965],[294170.9964,783830.500399999],[295966.0039,781554.5019],[297599.499,781796.502599999],[298135.9968,783601.4959],[299399,783621.5002],[299915.0007,782511.4979],[303746.0024,783310.9991],[305158.9997,779860.9966],[304551.0007,779237.495100001],[304991.996,778056.1033],[306421.5,778931.502699999],[306911.9986,777957.501499999],[308548.0002,778311.5002],[310757.9981,776670.9998],[312976.4967,778153.4954],[313481.0037,777366.500700001],[314486.0025,777841.004799999],[316464.9985,776753.496099999],[314267.5001,773322.9981],[317595.0006,770680.5045],[316658.5019,769937.497199999],[317193.4991,768924.497199999],[315150.4967,765045.997400001],[315845.4976,763250.001499999],[317055.9963,762604.996099999],[316661.5031,761550.9978],[317317.9996,760205.502900001],[320081.4967,757541.9954],[319948.9986,756123.501399999],[321438.1968,754742.296800001],[321371.6014,753399.301200001],[322629.8967,753918.502599999],[325747.7006,752167.9037],[329509.0974,751856.8027],[329336.2975,750160.7982],[327831.4007,749929.204500001],[328229.5959,748867.0985],[326998.6,748423.9954],[329328.7038,747485.304099999],[328514.6029,745831.6974],[329848.4971,745437.4003],[331960.1975,747450.8039],[333311.8021,747343.4047],[330516.9985,743592.6983],[326947.7033,741671.8981],[328511.7007,739067.103700001],[327936.7973,737746.6017],[325531.3996,737576.100500001],[327186.3978,735710.3046],[326751.8995,735216.8959],[329771.1008,733413.702],[329659.0009,732546.4003],[331186.3985,732196.4005],[331116.299,731178.002],[332974.7028,731066.6039],[333086.1018,730506.5042],[334913.397,730602.696699999],[335261.7686,730072.892000001],[330621.2985,727113.395500001],[324190.2992,720226.3968],[324166.9222,720220.210899999],[322230.2786,720027.6491],[322017.1541,719651.352],[320129.6973,719151.9044],[319999.9947,719011.6876],[319686.7974,718673.101500001],[320000.0077,718593.6373],[321170.3972,718296.699200001],[321324.4461,718319.275800001],[322488.7,717811.1982],[322452.1991,717124.8047],[319640.7982,714269.202099999],[320016.2041,711448.0996],[318076.6029,710827.6972],[317428.302,711580.501700001],[314402.9005,709339.0033],[316253.4962,707798.204399999],[315340.3969,706089.203600001],[320751.5976,705326.7018],[320097.7972,704352.000800001],[321660.4012,703774.496099999],[321024.5008,703130.4005],[321854.9022,701108.1994],[318842.6021,699958.2985],[319593.1994,698304.301999999],[318350.0009,697872.3956],[316561.3998,698625.699999999],[314911.4971,697707.3029],[314982.6025,695639.504799999],[312062.8037,694872.404300001],[309787.4967,696250.999700001],[304416.499,695931.6011],[304067.8978,697282.4045],[302961.8971,697450.6963],[301763.799,696482.703400001],[301854.5029,695193.202500001],[298892.2998,694533.9012],[297883.599,695097.799799999],[298424.5987,696607.0978],[297751.3977,697557.095799999],[301184.501,698968.401900001],[300904.3998,699867.3046],[301883.5008,700215.7048],[302359.3975,701503.6961],[299716.303,702625.2951],[298457.9994,701679.9957],[297667.496,702379.995300001],[296644.4983,700807.4954],[295452.9962,701640.9968],[292308.9978,700961.5013],[291419.9988,703529.496300001],[289656.001,704167.003799999],[286583.0997,701944.799900001],[285702.9971,702554.4954],[285569.5013,705248.5042],[283927.0027,704010.998400001],[282277.7019,706243.499399999],[281283.0012,705249.104],[279800.6959,705635.003599999],[275928.5019,710970.996200001],[273910.6963,710381.7048],[273886.4971,711624.4991],[273018.4983,710895.9976],[271445.4973,712772.500499999],[271070.0007,711778.494999999],[269113.4972,711854.0034],[267674.4991,713768.745300001],[264706.9985,714574.504699999],[261762.0028,717433.496300001],[262714.497,718880.5021],[261553.5017,720085.497199999],[261755.0028,723600.0012],[264489.9967,723768.502900001],[264397.9983,731694.0043],[266826.4986,730158.503799999],[268585.5,732253.0043],[270796.5038,732332.001599999],[270283.0014,734911.0034],[269138.0015,736385.5013],[267512.0012,737439.499600001],[265000.0032,735852.0041],[258619.002,733802.0009],[256745.9962,740992.002800001],[254698.5002,741961.495200001],[253818.9995,740487.997],[249884.4976,739750.998],[247655.503,738413.001],[246610.4993,738411.501399999],[245850.5025,739632.002],[244515.9981,739146.501],[244477.9967,737624.9965],[241479.0041,737772.5043],[238453.0007,735799.4991],[238196.4969,734452.504699999],[237551.5022,734670.0024],[235611.4971,735159.0024],[234712.0021,736396.9981],[236516.4997,738570.4959],[236863.996,740265.0009],[236548.0041,741217.9981],[234230.0041,742043.0019],[234271.5015,743034.4981],[240410.5019,745773.0042],[242832.4968,745274.4969],[239939.9975,750042.0022],[238924.5028,750168.495999999],[238328.5003,751241.9987],[239515.5994,752617.904899999],[238885.0007,754562.498199999],[236715.5025,752950.499700001],[233582.5029,753355.503699999],[233603.9978,757172.5011],[237269.0017,756823.0012],[241361.9984,758720.9979],[241459.0016,759974.9989],[240573.4985,760397.498],[242516.9996,763313.5033],[241773.9959,766137.504899999],[244458.4971,767427.9955],[244323.5007,768500.498500001],[246198.9965,771028.504899999],[249227.4981,767865.000399999],[250876.5021,767358.4954],[255230.9992,773713.496300001],[257076.4995,772427.5044],[257868.5036,772694.9979],[257966.0014,774144.0031],[259591.4987,775696.4987],[264263.9996,776232.995100001],[264959.9982,777479.998199999],[266034.9975,777606.0021],[266515.9979,778373.002599999],[265710.9996,779176.502599999],[267698.9992,782149.501599999],[268053.0009,781357.498299999],[271477.9993,780139.9968],[275780.9978,780169.998199999],[276172.0033,780750.202099999],[276852.5012,779311.503900001],[277573.8038,780322.604499999],[278289.4999,779440.497],[280244.5028,780384.9966],[280240.9987,783737.497],[281436.4995,785679.0012],[282175.5497,785825.2994],[282270.504,784353.500700001],[284454.497,783892.502599999],[284764.9977,782872.004699999],[287193.0033,782809.002800001],[289098.9976,784495.0002],[290468.5023,784179.500499999]]]},"properties":{"LAD22CD":"S12000048","LAD22NM":"Perth and Kinross","BNG_E":284302,"BNG_N":744185,"LONG":-3.88484,"LAT":56.57528,"OBJECTID":350,"GlobalID":"977156eb-6d75-43cd-93f2-2574640306be"}},{"type":"Feature","id":351,"geometry":{"type":"Polygon","coordinates":[[[263784.3019,670126.797700001],[264941.7024,669317.3994],[264712.3001,667721.995999999],[268295.9004,668042.404300001],[270057.6968,667337.496099999],[270434.1004,665061.5976],[269364.8973,664266.895099999],[270189.1973,663159.402100001],[268464.2976,663032.0985],[268133.2006,662167.096100001],[267845.3985,661197.503699999],[266652.7999,662059.4969],[263992.3001,660993.602],[263536.6038,662416.004899999],[262381.2976,662234.096899999],[262156.8011,663408.8007],[261026.5021,662216.801899999],[260606.8038,663089.202199999],[260140.6033,660636.1044],[260635.0514,659898.0956],[261331.9981,660198.5996],[261921.9982,658550.701300001],[260660.3967,657644.1008],[260448.6965,656462.598999999],[258954.3002,656913.2267],[257881.3292,657699.5625],[258425.5091,659840.5053],[256435.1986,660231.5002],[254308.7974,659690.904899999],[253798.6012,657973.5965],[251385.5027,658266.2027],[251761.5022,660808.1951],[250907.8004,661444.302999999],[251830.9999,663895.8013],[251068.8017,665136.396199999],[252078.7969,664988.398499999],[252851.7961,667013.298900001],[250424.4996,668812.9038],[251573.4984,669985.098200001],[250708.7976,671183.0953],[251394.8032,672325.598300001],[253464.701,671754.9016],[253280.3002,670507.198799999],[254549.8995,669846.597899999],[256933.7033,671115.104800001],[256273.0018,671646.2028],[256521.2029,673064.196900001],[258371.8975,672927.9958],[260258.4994,669340.402799999],[263784.3019,670126.797700001]]]},"properties":{"LAD22CD":"S12000049","LAD22NM":"Glasgow City","BNG_E":261534,"BNG_N":667033,"LONG":-4.21479,"LAT":55.87649,"OBJECTID":351,"GlobalID":"18922bb3-b5bd-4b72-8b18-abbd52705ef8"}},{"type":"Feature","id":352,"geometry":{"type":"Polygon","coordinates":[[[274204.6987,683523.6029],[273507.9993,681505.500600001],[276115.302,681213.1043],[276920.8033,679306.6],[275993.102,678933.096899999],[276233.9979,678424.702400001],[277521.5961,678868.995300001],[278710.5999,678316.103499999],[278413.5963,677099.901699999],[279249.3981,676056.3004],[283952.2985,675589.403999999],[281175.73,673292.029999999],[285507.6963,669818.296],[286990.4964,669451.601],[286129.103,668541.792099999],[285577.1033,668234.0995],[286073.2993,667138.5031],[287753.9973,665941.595699999],[289157.2984,666737.9977],[289833.5996,665796.597200001],[292187.3996,667091.396600001],[293006.901,666761.1011],[293033.9036,665839.404899999],[290544.7031,664253.698799999],[291305.44,660602.189999999],[292623.5,659191.289999999],[290917,657608.5],[291411.0034,656886.4977],[290719.1026,655676.304099999],[289280.4961,654381.504699999],[281606.1994,653366.7952],[279625.3977,650708.0962],[278944.3968,652258.3025],[276267.2997,654403.5984],[274525.0029,654824.9978],[274710.3024,655763.799000001],[271680.6959,657896.1987],[271890.5987,659499.999600001],[268133.2006,662167.096100001],[268464.2976,663032.0985],[270189.1973,663159.402100001],[269364.8973,664266.895099999],[270434.1004,665061.5976],[270057.6968,667337.496099999],[268295.9004,668042.404300001],[264712.3001,667721.995999999],[264941.7024,669317.3994],[263784.3019,670126.797700001],[262933.6013,671067.6984],[267290.8027,670758.8967],[268162.8993,672035.9012],[271502.2975,671961.9024],[270726.2971,674257.7952],[272288.596,675140.8024],[271347.9005,676944.1962],[267537.9979,675376.1951],[268253.3971,678015.999399999],[265894.5016,681546.9987],[267703.501,681707.002900001],[269468.4965,683604.999600001],[274204.6987,683523.6029]]]},"properties":{"LAD22CD":"S12000050","LAD22NM":"North Lanarkshire","BNG_E":277984,"BNG_N":665608,"LONG":-3.9514,"LAT":55.86814,"OBJECTID":352,"GlobalID":"14ba33ef-e9f1-4e69-931b-1700bdf5e9da"}},{"type":"Feature","id":353,"geometry":{"type":"MultiPolygon","coordinates":[[[[255986.6042,371869.172],[255652.45,371464.449999999],[255419.6472,371559.1545],[255558.3418,371634.994000001],[255696.6073,371710.5989],[255986.6042,371869.172]]],[[[223988.3341,383647.7597],[223700,383462.1],[225047.5,382944.279999999],[225222.7592,383347.216399999],[225227.3158,383346.107000001],[224777.293,382214.9024],[225493.918,382726.5374],[225522.3716,382689.7535],[226100.1,381604.4],[227839.74,381362.800000001],[227875.27,380138.01],[227659.992,380000.0024],[226091.01,378994.18],[226896.77,379342.65],[226906.72,378411.560000001],[228295.15,378144.48],[227718.56,377143.199999999],[229233.7,377172],[228500.52,376932.99],[229502.0065,375121.1031],[228782.3896,374948.0481],[226791.2373,374633.0845],[226548.179,374774.7347],[225912.4107,375225.9737],[225801.292,375546.364399999],[226087.9,376385.4],[225004.9,377914],[225597.8,378990.800000001],[223451.7915,379999.985400001],[223346.67,380049.42],[223270.9918,379999.985400001],[223062.1989,379863.5974],[221584.9981,379543.1763],[221251.3549,379638.163899999],[221468.6688,380836.049000001],[221648.43,381269.6],[220422.7097,382327.4142],[220483.5534,382427.0854],[221340.3,382944.1],[221501.0688,383973.0878],[222786.6,383520.1],[225382.2105,384614.5068],[223771.59,383700.529999999],[223988.3341,383647.7597]]],[[[239999.9921,394576.181299999],[240441.41,394256.550000001],[242736.93,394529.02],[243487.13,393408.02],[244674.2,393969.199999999],[244944.01,393256.48],[245479.8523,393724.687100001],[246884.6985,393254.161],[247685.57,392921.189999999],[247895.6061,393263.7663],[248090.8037,393559.071799999],[249183.67,390588.1],[247341.36,387760.65],[248650.6,388435.6],[248426.7,389002.800000001],[249384.7,387271],[251683.8,386857.699999999],[251372.01,384960.560000001],[252279.21,382527.33],[253249.88,381917.029999999],[252515.2,380268.5],[252755.8903,379999.995200001],[253187.83,379518.140000001],[254669.0811,379999.998600001],[257278.82,380848.960000001],[258900.1,382344.5],[260000.0231,382113.091],[264170.4,381235.699999999],[263316.1874,379999.998],[260000.0333,375202.8573],[259955.51,375138.449999999],[255980.3,372936.5],[255719.1758,371808.1226],[255176.55,371988.1],[253012.62,371007.210000001],[252923.505,370751.317],[252854.58,370713.59],[252284.1972,368915.551000001],[251856.91,367688.6],[245083.45,363286.119999999],[245042.01,363936.65],[243981.7901,363857.252699999],[244275.04,365702.560000001],[243598.78,363828.57],[243857.7094,363703.119899999],[243748,363177.5],[242550,362285],[244266.6034,361365.178400001],[244266.5135,361364.430299999],[239999.9969,363398.682499999],[239915.105,363439.158500001],[239862.7884,363475.0699],[239854.654,363467.9812],[239669,363556.5],[238643.8423,362626.4157],[238896.1125,363201.1185],[239072,363506],[238328.5,365699.5],[240000.0126,366180.915200001],[240369.129,366287.225],[240752.2693,368684.6851],[240756.08,368708.529999999],[239999.9993,368347.761600001],[239950.926,368324.346000001],[236710.402,364778.2699],[236705.2914,364776.766100001],[235305.801,367979.825999999],[235752.6,369217.699999999],[235265.48,368072.109999999],[235261.58,367857.310000001],[233924.9,367341.6],[233836.3,368391.1],[232788.6212,368482.778100001],[232776.1938,368485.526799999],[233313.65,370705.470000001],[231616.94,372911.449999999],[231662.3368,373517.5041],[231776.5,373517.35],[232408.44,374232.93],[231709.1,374141.800000001],[231667.5405,373586.9748],[230856.7,374105.1],[229600.67,375563.9],[229755.06,377558.16],[229335.7,377229.699999999],[227517.52,379158.73],[228365.2,379655],[228043.2918,379999.987600001],[227894.46,380159.49],[228200.4615,379999.9954],[228465.58,379861.810000001],[228651.5193,380000.017999999],[231554.2,382157.57],[229287.94,381117.300000001],[229408.92,383040.42],[228314.9352,383895.4526],[228131.298,384225.281500001],[228450.322,385049.9748],[228906.13,385371.34],[229668.8953,388200.0485],[230117.92,389360.800000001],[228974.3093,392713.282500001],[229605.999,392773.238600001],[231930,392896],[233232.7052,394015.151900001],[233277.5997,393906.903899999],[233293.8,393221.199999999],[233547.9607,393255.0186],[233573.06,393194.5],[233672.7934,393271.628900001],[234467.33,393377.35],[235427.15,394574.16],[237245.93,393471.34],[237242.2585,393814.749299999],[237278.602,394601.403100001],[238549.7741,395140.466],[238982.655,395312.8364],[239999.9921,394576.181299999]]]]},"properties":{"LAD22CD":"W06000001","LAD22NM":"Isle of Anglesey","BNG_E":245217,"BNG_N":378331,"LONG":-4.32298,"LAT":53.27931,"OBJECTID":353,"GlobalID":"7cde8c73-0d8f-4d34-b7ee-12573964d4d2"}},{"type":"Feature","id":354,"geometry":{"type":"MultiPolygon","coordinates":[[[[212492.7003,321554.895199999],[210986.7976,320064.301899999],[211642.8983,322646.502800001],[212545.1966,322344.099300001],[212492.7003,321554.895199999]]],[[[252524.7002,369606.153100001],[252520.8142,369594.9945],[252521.25,369602.26],[252524.7002,369606.153100001]]],[[[266772.1966,374236.1954],[267978.6964,372366.3006],[270868.2028,370393.0955],[270572.9967,368757.703600001],[268790.2001,366945.102399999],[268361.3992,364373.998400001],[265801.3984,362617.601199999],[264921.7988,360533.297800001],[266570.2998,360510.704299999],[264861.1976,360508.8048],[264110.6992,358421.802200001],[265257.8015,358156.598099999],[265248.3032,356615.099400001],[267034.101,355952.598999999],[266698.997,355103.902000001],[267631.0022,354236.5002],[266184.0022,350794.5955],[266891.2966,347769.701300001],[272722.5006,348715.2007],[273442.4016,347696.802200001],[272806.4023,345855.8992],[275922.8004,343817.9526],[276439.4525,342132.9548],[278271.0969,340647.4001],[281220.8005,341679.204700001],[283585.3026,343908.196699999],[287115.7966,344602.398],[287818.5973,345721.997500001],[291721.801,347223.797599999],[292775.8991,347238.0035],[291987.5971,345511.097899999],[293783.2972,342301.9965],[297100.6975,342914.201199999],[299046.4,341945.398499999],[302217.5,344054.104900001],[303631.396,343576.001800001],[302812.7027,342811.2007],[302925.3962,341630.4987],[299853.8965,338404.902000001],[301591.8977,336876.0996],[299864.5986,334187.499199999],[300912.1996,331437.0965],[300262.8021,330803.4979],[298708.7977,328221.097100001],[294545.6025,326988.399900001],[294427.3024,326191.498],[293205.6976,326754.8968],[292459.0002,325250.897299999],[291623.7013,323040.200099999],[293187.0968,316840.504699999],[292090.2975,315446.9036],[291854.7032,313126.797800001],[288147.4021,311695.6974],[286291.8017,312015.2959],[284512.501,309522.5995],[284033.1001,310390.501],[282204.7001,310715.9978],[281128.497,309421.998199999],[277856.4033,310448.904300001],[275574.5002,307496.999299999],[275936.5986,305501.8004],[274829.5012,304147.4981],[275350.3005,301821.403899999],[273069.1972,301109.197699999],[272447.0002,299367.6962],[270311.9004,299585.8038],[269376.1024,298817.3038],[269496.3978,297623.895400001],[269044.662,296769.091600001],[268458.1562,297323.6022],[268469.7,297338.4],[268600.7,297640.4],[267199.85,297674.560000001],[260096,295728.6],[260000.0108,295907.8573],[257808.7614,299999.9571],[256099.52,303191.92],[255972.57,303677.15],[258430.06,309911.02],[259999.986,311133.526799999],[261039.5,311943],[261633.04,315051.73],[261488.03,313761.43],[263918.95,315568.279999999],[264215.49,314727.48],[265794.5,317237],[263496.73,317303.84],[262569.02,315656.699999999],[261026.73,315338.859999999],[259999.9807,317124.129899999],[258345.9946,320000.013699999],[255136.3,325580.9],[256235.8537,327263.1373],[256317.3219,327321.01],[255900.7,326357.800000001],[257359.68,327964.99],[258072.4,327538.369999999],[257620.75,328158.23],[256652.5203,327628.951300001],[256694.0973,327809.2322],[257398.38,329930.789999999],[255780.968,335075.885],[259760.476,335873.123],[259991.839,335675.748],[259999.9916,335684.0035],[260985.06,336681.5],[259999.9838,336109.0286],[259826.081,336007.966],[259999.9838,336283.3466],[260656.855,337323.523],[260792.805,337521.433],[261648.7081,337382.3114],[262450.4013,338569.406500001],[260480.276,338165.403999999],[259999.9902,337779.0857],[258636.2,336682.119999999],[257616.75,337830.085000001],[258210.896,337924.164999999],[256991.4,338174.26],[257149.6,338972.800000001],[255364.839,336492.734999999],[250900.64,338047.560000001],[250501.1831,337932.4723],[250329,337992.6],[249690.9787,337699.0439],[248036.6,337222.4],[246482.3,337968.4],[247863.5,337194.9],[244328.19,337095.5],[243572.6,335256.1],[239999.9701,335756.2136],[239514.3,335824.199999999],[239382.2598,335676.065300001],[238794.3,335384.5],[238783.9944,335004.876599999],[238388.46,334561.130000001],[238141.7,335411.119999999],[237596.5,334705.109999999],[238766.1697,334348.2733],[238765.6907,334330.6304],[235717.121,333702.720000001],[235170.9731,333257.223999999],[234521.6,333072.5],[234009.6931,332309.961100001],[233361.1,331780.9],[233739.7,330671.9],[233697.2731,330630.195900001],[231926.8,329039.800000001],[231943.4726,328906.2706],[231238.9,328213.699999999],[231832.9,328269.199999999],[231613.9,326786.199999999],[232270.2978,326288.7623],[232451.4892,324837.619999999],[232445.9,324813.699999999],[230528.5,324674.5],[229580.5,323008.1],[228634.1,324019.800000001],[229119.1,325538.4],[224817.6,328438.800000001],[224587.6761,328230.5726],[224062.2,328206.199999999],[221946.5919,325838.710999999],[221849.3,325750.6],[220709.68,326496.73],[220497.6965,326350.1568],[220415.1,326388.5],[219599.4302,325729.0624],[218829.6688,325196.821],[216679.12,326276.01],[215820.9,323973.699999999],[215735.109,324034.8751],[213550.4733,325714.9201],[216709.9,330000],[216538.4,331926.800000001],[218589.5,332511.699999999],[219879.8936,334493.3926],[220508.1,334736.1],[221813.8797,337463.467700001],[221897.799,337592.344900001],[221902.1707,337592.2545],[223080.8,337524.5],[224296.5,339462.300000001],[225341.5271,340000.0287],[227352.9,341035],[227601.2,342102.300000001],[228053.08,340881.359999999],[230783.3,341073.300000001],[234110.12,343899.390000001],[236518.2341,347333.2949],[237165.8751,347328.1405],[238352.02,347238.25],[239999.9914,348835.5551],[242258.39,351024.52],[242396.8881,351549.8857],[243211.247,353087.117000001],[243447.7767,355536.2279],[243595.136,356095.207],[243044.239,359999.9981],[243040.5,360026.5],[243580.631,360798.725199999],[244552.1085,360796.4058],[244572.128,360810.033399999],[244872,360769.5],[243934.0075,359999.953600001],[243893.67,359966.859999999],[244787.96,357578],[245745.23,359225.1],[245209.25,359104.73],[245288.0368,360000.0118],[245409.4818,361380.034299999],[245833.5691,361668.717700001],[247376.01,362693.460000001],[247989.33,361930.300000001],[247769.7829,363037.313999999],[248719.4995,364311.0876],[250126.72,366054.380000001],[252277.39,367404.6],[252331.8918,367574.750299999],[252402.42,367621.01],[252415.2547,367835.002599999],[253223.5,370358.279999999],[254158.405,370869.495100001],[255821.45,371384.199999999],[257059.0091,372455.5733],[258450.95,373216.699999999],[258959.5,372570.699999999],[259059.4,373177.300000001],[259510.3,372657.1],[260000.0137,372874.5228],[260537.6,373113.199999999],[260869.39,371873.4],[266154.491,374090.418],[266154.7838,374090.6602],[266160.1987,374079.100400001],[266772.1966,374236.1954]]]]},"properties":{"LAD22CD":"W06000002","LAD22NM":"Gwynedd","BNG_E":280555,"BNG_N":334966,"LONG":-3.77715,"LAT":52.89883,"OBJECTID":354,"GlobalID":"be828e21-7278-4cc0-8579-bc2bf5e1d591"}},{"type":"Feature","id":355,"geometry":{"type":"Polygon","coordinates":[[[299817.5774,380677.502900001],[300371.101,379412.103800001],[298631.3024,377347.704700001],[298806.1966,374337.0965],[297804.9989,373523.2995],[298257.2482,372557.617000001],[299349.8818,372708.3333],[302214.6966,370305.000700001],[301549.7984,365376.701400001],[302422.4969,364092.598999999],[297478.8984,361408.6972],[295471.3003,359174.796700001],[295934.9489,357738.947699999],[292824.7016,355418.901799999],[293381.301,354654.8005],[295304.7006,356415.296599999],[298588.997,355804.2015],[298948.8032,354300.301999999],[300503.0962,355124.2961],[300463.9981,353107.9033],[302046.0027,350881.7005],[300213.4966,349989.9958],[301084.6038,348698.995300001],[300737.1982,347827.3049],[302474.4985,345499.701099999],[302217.5,344054.104900001],[299046.4,341945.398499999],[297100.6975,342914.201199999],[293783.2972,342301.9965],[291987.5971,345511.097899999],[292775.8991,347238.0035],[291721.801,347223.797599999],[287818.5973,345721.997500001],[287115.7966,344602.398],[283585.3026,343908.196699999],[281220.8005,341679.204700001],[278271.0969,340647.4001],[276439.4525,342132.9548],[275922.8004,343817.9526],[272806.4023,345855.8992],[273442.4016,347696.802200001],[272722.5006,348715.2007],[266891.2966,347769.701300001],[266184.0022,350794.5955],[267631.0022,354236.5002],[266698.997,355103.902000001],[267034.101,355952.598999999],[265248.3032,356615.099400001],[265257.8015,358156.598099999],[264110.6992,358421.802200001],[264861.1976,360508.8048],[266570.2998,360510.704299999],[264921.7988,360533.297800001],[265801.3984,362617.601199999],[268361.3992,364373.998400001],[268790.2001,366945.102399999],[270572.9967,368757.703600001],[270868.2028,370393.0955],[267978.6964,372366.3006],[266772.1966,374236.1954],[266160.1987,374079.100400001],[266154.7838,374090.6602],[267788.11,375441.75],[277061.8344,379079.7152],[278336.6983,377606.116],[278346.3823,377785.9221],[278555.05,377488.880000001],[278363.925,378111.645500001],[278392.8723,378649.1215],[278096.6109,378982.667300001],[277784.3852,380000.0297],[277228.45,381811.5],[275230.8656,383901.8883],[275393.5985,384119.4035],[278049,383911.9],[278951.38,382192.949999999],[279999.9899,382386.565300001],[281869.239,382731.703400001],[281880.6,382725.315099999],[282532.55,381663.5],[284235.76,381097.85],[284540.6678,380000.029999999],[284664.412,379554.489],[286327.15,378777.199999999],[293057.5,378298.199999999],[296982.4815,379999.9761],[299407.95,381051.6],[299587.3724,380684.165100001],[299744.9106,380361.5462],[299817.5774,380677.502900001]]]},"properties":{"LAD22CD":"W06000003","LAD22NM":"Conwy","BNG_E":283293,"BNG_N":362563,"LONG":-3.74646,"LAT":53.14739,"OBJECTID":355,"GlobalID":"182f39ff-d18e-4a1f-a4b8-227bf0bb38aa"}},{"type":"Feature","id":356,"geometry":{"type":"Polygon","coordinates":[[[324414.2021,353387.703199999],[323145.6995,350229.997099999],[324243.7025,347994.8969],[322999.6959,345199.697000001],[324870.5003,343720.100500001],[324738.604,342744.6997],[325881.6004,342350.002699999],[325465.0022,341913.197699999],[326878.0984,342139.7029],[326741.1975,341324.6962],[325490.801,341060.1019],[326425.1972,340770.105],[319596.3985,339205.6028],[316957.5997,340007.703199999],[312913.0015,339183.899],[311784.7968,339631.101],[311080.0007,337979.7037],[309111.7974,336917.897600001],[309398.5029,336284.9988],[307590.0972,333662.1996],[306625.9033,331857.6961],[301316.3972,330406.2016],[300262.8021,330803.4979],[300912.1996,331437.0965],[299864.5986,334187.499199999],[301591.8977,336876.0996],[299853.8965,338404.902000001],[302925.3962,341630.4987],[302812.7027,342811.2007],[303631.396,343576.001800001],[302217.5,344054.104900001],[302474.4985,345499.701099999],[300737.1982,347827.3049],[301084.6038,348698.995300001],[300213.4966,349989.9958],[302046.0027,350881.7005],[300463.9981,353107.9033],[300503.0962,355124.2961],[298948.8032,354300.301999999],[298588.997,355804.2015],[295304.7006,356415.296599999],[293381.301,354654.8005],[292824.7016,355418.901799999],[295934.9489,357738.947699999],[295471.3003,359174.796700001],[297478.8984,361408.6972],[302422.4969,364092.598999999],[301549.7984,365376.701400001],[302214.6966,370305.000700001],[299349.8818,372708.3333],[298257.2482,372557.617000001],[297804.9989,373523.2995],[298806.1966,374337.0965],[298631.3024,377347.704700001],[300371.101,379412.103800001],[299817.5774,380677.502900001],[299910.4179,381081.1755],[299922.8801,381112.5931],[299999.9934,381170.6556],[301492.05,382294.1],[309124.6064,384703.913699999],[308990.9001,382907.703199999],[307622.0963,381598.198000001],[307289.4988,382021.9967],[306785.6019,380567.802999999],[308074.9975,380765.296499999],[307176.0962,379211.5012],[308434.6965,378068.2985],[309719.2028,378668.696599999],[309624.599,377185.801100001],[311430.0036,375976.6972],[309244.5017,373760.601500001],[311074.897,371898.9044],[313027.3028,371446.8039],[311804.1974,370076.696],[312136.3002,368911.6995],[312991.7995,368677.4966],[312738.1979,367534.103800001],[314874.6994,365459.897600001],[314465.1012,364262.000499999],[315096.3019,363012.898],[316895.2011,362406.2017],[319311.8038,363204.403200001],[321031.5009,362529.5964],[321335.4963,358301.796599999],[323378.9028,356918.2026],[322967.2021,355702.3007],[324414.2021,353387.703199999]]]},"properties":{"LAD22CD":"W06000004","LAD22NM":"Denbighshire","BNG_E":309843,"BNG_N":355416,"LONG":-3.34761,"LAT":53.08833,"OBJECTID":356,"GlobalID":"d79a6e38-5af6-4533-803a-2491f792c658"}},{"type":"Feature","id":357,"geometry":{"type":"MultiPolygon","coordinates":[[[[326246.0142,375545.829500001],[327642.6132,373862.543199999],[327290.7522,374166.139799999],[327277.6496,374179.6361],[327214.1884,374242.6382],[327091.0012,374378.442199999],[327023.9248,374461.4527],[325905.807,374538.564999999],[326616.659,375034.4682],[325973.485,374948.903999999],[326246.0142,375545.829500001]]],[[[313635.742,382469.629000001],[315285.144,381169.419],[315864.5418,381605.2652],[316183.1989,380911.804400001],[316192.8287,380985.1327],[316268.6,380472],[317010.1451,379999.955600001],[319999.9778,378096.721799999],[320030.389,378077.363],[326089.131,372115.614],[328922.875,370539.012499999],[327050.093,372535.698000001],[327690.745,372015.256999999],[327405.684,372520.736],[327958.3286,372508.566199999],[328223.9809,372285.870200001],[328533.438,371461.643999999],[328344.067,372099.888],[329412.415,372602.967],[328435.099,372200.782],[326090.9,373972.908],[327674.0278,373840.767000001],[327650.046,373856.130000001],[327646.6533,373859.0573],[330973.5028,373253.9965],[333460.4028,371444.3046],[338471.5036,366195.8969],[338075.4818,364211.4449],[333553.7039,362356.7958],[334590.8007,361944.8038],[335612.9986,359943.296700001],[333398.2021,359659.597899999],[331195.097,356751.100400001],[331284.5971,355576.796599999],[330789.4977,356009.2028],[329176.5989,354757.4011],[328347.2034,355245.8013],[324414.2021,353387.703199999],[322967.2021,355702.3007],[323378.9028,356918.2026],[321335.4963,358301.796599999],[321031.5009,362529.5964],[319311.8038,363204.403200001],[316895.2011,362406.2017],[315096.3019,363012.898],[314465.1012,364262.000499999],[314874.6994,365459.897600001],[312738.1979,367534.103800001],[312991.7995,368677.4966],[312136.3002,368911.6995],[311804.1974,370076.696],[313027.3028,371446.8039],[311074.897,371898.9044],[309244.5017,373760.601500001],[311430.0036,375976.6972],[309624.599,377185.801100001],[309719.2028,378668.696599999],[308434.6965,378068.2985],[307176.0962,379211.5012],[308074.9975,380765.296499999],[306785.6019,380567.802999999],[307289.4988,382021.9967],[307622.0963,381598.198000001],[308990.9001,382907.703199999],[309124.6064,384703.913699999],[309342.9307,384772.844799999],[312850.218,385098.096999999],[312716.4545,383625.7212],[313635.742,382469.629000001]]]]},"properties":{"LAD22CD":"W06000005","LAD22NM":"Flintshire","BNG_E":321134,"BNG_N":369280,"LONG":-3.18248,"LAT":53.21471,"OBJECTID":357,"GlobalID":"c00358ac-8eb1-49ac-be19-a5cb0578c0c4"}},{"type":"Feature","id":358,"geometry":{"type":"Polygon","coordinates":[[[351298.6997,343127.000299999],[350715.9965,341650.302999999],[351448.1002,340216.103499999],[351125.8008,336679.2959],[349317.5022,336623.0021],[346355.901,333443.202299999],[343580.3991,338688.8007],[340728.3005,339169.802999999],[340474.8968,339828.304500001],[337669.6961,338322.795499999],[335609.9974,339739.5999],[334614.5959,341735.0987],[334130.0997,340652.898499999],[332269.6016,340345.0966],[330518.4001,337397.4004],[327726.5977,336993.1961],[326427.9016,337547.1975],[325141.3011,333527.698100001],[322891.5496,333139.949100001],[321104.0986,334437.297700001],[319004.4031,333532.296800001],[317095.2015,330658.599300001],[315155.7983,330647.502499999],[309565.6963,333634.497500001],[307590.0972,333662.1996],[309398.5029,336284.9988],[309111.7974,336917.897600001],[311080.0007,337979.7037],[311784.7968,339631.101],[312913.0015,339183.899],[316957.5997,340007.703199999],[319596.3985,339205.6028],[326425.1972,340770.105],[325490.801,341060.1019],[326741.1975,341324.6962],[326878.0984,342139.7029],[325465.0022,341913.197699999],[325881.6004,342350.002699999],[324738.604,342744.6997],[324870.5003,343720.100500001],[322999.6959,345199.697000001],[324243.7025,347994.8969],[323145.6995,350229.997099999],[324414.2021,353387.703199999],[328347.2034,355245.8013],[329176.5989,354757.4011],[330789.4977,356009.2028],[331284.5971,355576.796599999],[331195.097,356751.100400001],[333398.2021,359659.597899999],[335612.9986,359943.296700001],[339169.2996,357658.300799999],[341131.5994,358631.202299999],[339686.5041,355359.798699999],[341436.8975,354167.899900001],[341030.4985,353379.5955],[342363.2961,351835.5975],[341618.0003,351617.1],[342504.501,351121.301999999],[341763.402,350140.602700001],[342718.1965,349227.404100001],[342341.6034,347629.001599999],[343473.8976,347039.2004],[343988.3977,344750.3956],[346172.5968,343884.803400001],[348530.7008,344444.903100001],[349080.2011,343500.0035],[351298.6997,343127.000299999]]]},"properties":{"LAD22CD":"W06000006","LAD22NM":"Wrexham","BNG_E":333523,"BNG_N":345387,"LONG":-2.99203,"LAT":53.00167,"OBJECTID":358,"GlobalID":"86191eeb-6a20-4b12-aabb-c6f34eced078"}},{"type":"Feature","id":359,"geometry":{"type":"Polygon","coordinates":[[[279749.1973,249226.598999999],[277767.9998,246640.1993],[277232.9036,248053.4048],[272807.301,250953.4047],[269552.0025,248544.1043],[267295.8982,250680.6028],[261855.6997,246232.1961],[259170.3987,248170.101399999],[256240.4998,246270.895],[253224.3987,246159.796800001],[252189.1983,245369.303099999],[252956.0962,244668.003900001],[252183.8967,244736.904100001],[251757.5034,243296.296499999],[249856.8024,242370.8014],[248881.5024,242761.7995],[246835.5977,240112.9977],[243547.896,240392.797599999],[243149.7008,241849.6006],[242315.8036,241748.7995],[241946.4991,240310.101299999],[239970.496,240675.5967],[238829.7011,239090.100500001],[236526.501,240641.896299999],[235550.4012,240074.398800001],[234736.2014,240903.101600001],[232164.4019,241246.103399999],[231112.497,240434.695599999],[229528.2992,241883.900800001],[228508.6985,241197.0974],[226207.304,241474.498],[225863.5015,242351.097100001],[225568.7983,241483.795299999],[224550.0962,241462.001599999],[223889.403,243171.302300001],[221330.9028,243628.101500001],[219701.3984,242997.502],[218706.4009,245528.397600001],[217396.5988,243287.199100001],[216364.0038,243983.399800001],[217162.6039,245807.997500001],[216355.5031,246372.7959],[215962.2258,248508.087099999],[215979.73,248498.199999999],[216023.6091,248990.9538],[216232.47,251336.42],[219304.0404,252177.290999999],[223281.0541,252001.1131],[223342.9426,251997.996400001],[224406.9911,252673.4574],[224684.7909,252463.1998],[225871.01,251387.75],[227723.79,251511.57],[228357.9973,252022.1456],[228594,252060.300000001],[228916.8094,252472.023499999],[231078.02,254211.93],[231398.14,255424.529999999],[231719.6114,255255.915100001],[231854.04,255006.75],[232089.9949,255061.645300001],[232232.5,254986.9],[232507.06,255158.676200001],[232886.7,255247],[233256.1182,255627.3181],[234021.24,256106.01],[237514.6044,260000.035],[237648.6425,260149.4462],[237665.8041,260167.1142],[237678.1247,260170.6752],[239048.454,260066.9603],[239098.2591,260000.0211],[239495.24,259466.470000001],[239999.9828,259565.8386],[241254.83,259812.880000001],[241543.2976,260000.001499999],[249447.77,265127.43],[254222.03,271533.970000001],[254564.8421,272426.9507],[257886.8,279875],[258244.2758,283048.8247],[259432.3152,287148.7445],[260328.2227,288544.2848],[260764.52,289047.888],[260617.9,294704.300000001],[261599.78,294027.65],[261758.98,294054.220000001],[264336,294648.6],[265361.83,292931.91],[264642.8,294870],[266689.31,294356.83],[265499.4,295004.5],[267490.5,297080.6],[267935.8,296654],[268458.1562,297323.6022],[269044.662,296769.091600001],[269496.3978,297623.895400001],[274047.6963,297512.997199999],[275281.8005,296425.2985],[274957.5965,292057.998600001],[276050.8009,288998.0045],[277004.5978,288319.298800001],[282457.3041,291265.6954],[281588.3983,287730.2974],[280106.2991,287173.196900001],[279678.3969,284162.0988],[283650.9993,280861.8035],[284539.7014,275674.398399999],[285341.0966,275799.4026],[287148.0018,273468.399800001],[283933.104,272853.7958],[281152.3005,270261.697799999],[282298.4959,268927.7996],[281892.2041,267210.201199999],[283617.3017,265361.3005],[281941.0973,265111.0021],[280401.0023,262956.898700001],[281016.1004,262334.8968],[280334.7038,256933.0031],[280877.402,250430.704299999],[279749.1973,249226.598999999]]]},"properties":{"LAD22CD":"W06000008","LAD22NM":"Ceredigion","BNG_E":267127,"BNG_N":268437,"LONG":-3.94993,"LAT":52.29795,"OBJECTID":359,"GlobalID":"cf565153-914f-4772-9e00-bdb27e6af06f"}},{"type":"Feature","id":360,"geometry":{"type":"MultiPolygon","coordinates":[[[[215005.2916,196592.4224],[214331.3984,195756.9045],[212996.5972,196041.0032],[212620.3008,197185.295600001],[213062.0378,197178.664000001],[215005.2916,196592.4224]]],[[[173977.7753,204728.4608],[172864.0963,204537.4354],[173524.3466,205231.0616],[173903.4965,205594.0439],[174515.0006,205388.897399999],[174109.6982,204752.5995],[173977.7753,204728.4608]]],[[[146681.4965,208858.204299999],[146673.0041,208756.003599999],[146597.1001,208838.699899999],[146681.4965,208858.204299999]]],[[[159914.498,209526.503],[159705.6011,209077.501499999],[159615.2023,209320.301999999],[159914.498,209526.503]]],[[[172309.9003,210292.603700001],[174010.0525,209265.9399],[174344.3978,209048.584000001],[174334.6456,209044.934],[173538.7862,209243.688999999],[173531.1999,209322.2015],[172686.9964,208421.3993],[171665.0478,208883.696799999],[171448.024,209180.015799999],[171370.5315,209652.801200001],[171600.7757,209898.2465],[172309.9003,210292.603700001]]],[[[170907.2999,225144.9023],[170541.1038,222493.201300001],[169214.6961,223670.0045],[170342.8297,225322.4518],[170907.2999,225144.9023]]],[[[216364.0038,243983.399800001],[217396.5988,243287.199100001],[218706.4009,245528.397600001],[219701.3984,242997.502],[221330.9028,243628.101500001],[223889.403,243171.302300001],[224550.0962,241462.001599999],[225369.8037,238686.696],[226944.0992,237762.7005],[227618.0999,235920.3978],[229321.7027,235168.203199999],[228791.7019,232138.9003],[225459.4028,231724.3989],[222879.6963,229072.2981],[221384.8008,230129.295499999],[218844.2996,227734.0012],[216688.0017,229536.495200001],[213482.0993,227618.204299999],[213405.8985,225778.5009],[212733.2004,225409.4966],[213832.498,224609.095699999],[214579.7973,221323.596100001],[213529.3023,219987.1987],[213795.6013,219070.101199999],[217791.6031,218057.0012],[219700.4997,215791.899599999],[217736.6993,214266.1963],[218409.6035,212876.704],[217696.0017,211956.997300001],[219137.7001,210970.1998],[218343.7599,207331.5252],[218296.9818,207334.485099999],[215266.46,206549.35],[213805.61,204996.109999999],[214097.1482,204514.549900001],[214042.97,204172.220000001],[214623.0955,203645.7949],[214870.2,203237.630000001],[213653.34,202058.73],[213282.13,200764.5],[213860.47,200455.449999999],[213375.9278,199999.949899999],[212359.23,199044.189999999],[212547.35,198254.210000001],[209393.91,198587.27],[209416.34,197508.880000001],[207944.7,197389.1],[207632.9905,196568.486500001],[207609.0241,196578.804199999],[205482.3,197784.09],[204591.025,197878.082599999],[204251.48,198024.26],[203241.4821,198020.4034],[202176.83,198132.68],[202078.0899,197254.712200001],[202056.7885,197196.1602],[199999.9754,196258.7038],[199469.91,196017.109999999],[199548.2,194117.98],[197715.09,194336.380000001],[197634.359,192974.309699999],[197508.9848,192758.6348],[195895.56,192803.630000001],[194079.39,194361.529999999],[191846.28,194255.9],[188314.93,195742.720000001],[189051.23,197866.050000001],[188303.7273,200000.0407],[188122.89,200516.300000001],[184128.8,201555.1],[184019.62,202720.92],[185490.9548,203820.633199999],[185568.747,203806.444700001],[187461.4112,203296.8726],[187488.4055,203274.016799999],[186628.37,202952.380000001],[187580.55,202150.07],[189463,201892.15],[189224.77,203865.109999999],[190862.43,203926.119999999],[192213.98,203011.359999999],[194021.5597,203137.692500001],[193663.15,202582.550000001],[194405.65,202203.65],[194400.6861,202273.148600001],[194525.027,201979.006999999],[194352.1449,202952.7653],[194347.4156,203018.979699999],[196306.8112,204498.979699999],[200334.01,204767.34],[200682.52,205947.23],[201704.97,206007.99],[200830.3,206193.59],[201025.76,207844.859999999],[200009.97,208514.32],[200971.36,211979.15],[199127.14,212108.689999999],[200307.5,210921.07],[199709.49,208747.859999999],[200738.37,207451.9],[200048.65,205212.890000001],[196514.6101,204655.9374],[196734.9,204822.33],[193828.3346,204287.9572],[191495.9015,205258.414000001],[191908.94,206348.91],[191264.9177,205354.5196],[190450.8,205693.25],[188618.8,205485.699999999],[188702.1716,205344.8433],[188452.1749,205344.7302],[188455.5057,205384.908500001],[186938.9919,205358.202299999],[186603.0108,205866.3061],[186126.05,206907.25],[185987.9058,206796.528899999],[185637.69,207326.16],[186553.48,209167.289999999],[185688.32,208714.99],[184830.98,205888.970000001],[184265.34,206699.48],[183557.6614,206567.001],[181932.0592,206536.297],[181194.41,208339.24],[181179.79,205645.439999999],[182464.22,205098.48],[181873.39,205052.16],[181863.01,203521.43],[180562.37,202723.939999999],[180000.0106,203473.906199999],[179732.89,203830.140000001],[179900.46,205933.449999999],[179642.9062,206018.476399999],[178418.583,207155.4035],[178241.12,207577.439999999],[176844.6097,207856.378799999],[175460.3841,209350.2278],[175429.39,209397.43],[178387.51,208790.52],[179023.52,211175.050000001],[179999.9875,210951.2685],[180192.28,210907.199999999],[182062.5,212886.5],[184921.55,212332.050000001],[185703.89,212958.060000001],[186202.12,216932.98],[185424.6774,220000.0307],[185007.2,221647],[184055.37,223024.449999999],[183913.8663,223015.6855],[183912.06,223018.76],[183541.7771,222992.638800001],[181025.59,222836.789999999],[181199.56,223519.58],[181008.1093,223526.751499999],[181008.16,223549.08],[180158.7544,223559.1929],[180556.35,224287.822000001],[179999.9889,223682.241800001],[179906.7,223580.699999999],[178704.127,223891.375499999],[178372,224304.699999999],[177762.945,224134.522600001],[176667.78,224417.449999999],[174121.5415,224166.4506],[173129.19,223154.49],[173068.08,223754.119999999],[171618.9235,223354.991],[171518.4173,223333.766799999],[172439.27,224749.380000001],[172431.1084,224765.985400001],[172437.87,224776.279999999],[171895.0926,225884.7827],[173322.71,226774.84],[172829.83,227949.640000001],[172077.8,227799.9],[172732.05,228470.720000001],[175953.8,229054.1],[177601.7,230613.9],[179409.9,230837.5],[179999.9952,231981.291300001],[180442.59,232839.18],[181167.1508,232743.095799999],[183089.96,232457.4],[183110.4003,232485.4011],[183341.16,232454.800000001],[183630.7765,233198.2633],[184134.1134,233887.783199999],[185427.9362,233815.488500001],[185612.7,233732.5],[185711.0109,233799.6712],[186628.23,233748.42],[186839.1059,234570.445599999],[186933.7565,234635.115900001],[188125.7,234470.300000001],[188610.5,236356.6],[187617.6538,237277.024800001],[187570.0731,237323.270099999],[189201.2,238404.25],[189151.5964,238462.5693],[189174.58,238479.01],[188253.7028,239518.2294],[188085.4243,239716.0757],[188092.4267,239726.8715],[188321.0055,240000.013599999],[189413.8843,241305.9575],[191050.9413,240733.6666],[192834.89,240077.470000001],[194845.39,240626.960000001],[194981.1271,240113.479599999],[195123.8,239545.5],[195132.1427,239542.202199999],[195142.4,239503.4],[196252.9025,239094.662799999],[195424.46,239340.66],[195423.2198,239338.813899999],[195418.28,239340.279999999],[194980.9605,238680.4858],[194700.9,238263.6],[194703.4664,238261.824100001],[194654.8,238188.4],[194789.5545,238202.252800001],[195107.1948,237982.452],[194871.47,237804.369999999],[196252.14,237105.17],[196214.6801,237368.8389],[199232.2492,238543.4177],[199719.24,238653.9],[199999.9757,239642.9559],[200101.3207,240000.002900001],[200484.4729,241349.880999999],[202107.3,239749.6],[202314.9578,239754.0211],[202559.6,239535],[206985.14,239305.779999999],[205329.5453,239999.9969],[205161.24,240070.57],[205429.3,241024.800000001],[205013.4227,241345.258199999],[205478.2926,242855.2258],[205503.0965,242902.0097],[205702.3674,242953.337300001],[208727.8,243685.1],[211024.5,245636.699999999],[212323,248022],[211956.8251,248448.188899999],[211814.7839,248661.8774],[213081.4,250135.300000001],[215962.2258,248508.087099999],[216355.5031,246372.7959],[217162.6039,245807.997500001],[216364.0038,243983.399800001]]]]},"properties":{"LAD22CD":"W06000009","LAD22NM":"Pembrokeshire","BNG_E":199821,"BNG_N":221392,"LONG":-4.90818,"LAT":51.85513,"OBJECTID":360,"GlobalID":"dc915baa-f9f1-4d09-b512-93319d53a3ac"}},{"type":"Feature","id":361,"geometry":{"type":"MultiPolygon","coordinates":[[[[239999.9886,198999.9461],[239999.9903,198788.0538],[239539,198955.5],[238465.581,200000.0131],[239000.0358,200000.039799999],[239999.9886,199999.949899999],[239999.9886,198999.9461]]],[[[272807.301,250953.4047],[277232.9036,248053.4048],[277767.9998,246640.1993],[279749.1973,249226.598999999],[282307.1038,247970.998400001],[282701.597,246567.3002],[281664.6981,245370.3028],[282031.8012,244384.705],[285838.2986,243081.2981],[284986.3034,241577.898399999],[287119.0039,239100.797499999],[285635.2969,237648.403200001],[285461.4003,235291.297900001],[282523.6026,230648.9968],[283258.6993,228874.704600001],[281800.7993,228377.397],[281267.0965,224963.1043],[282206.7037,224431.4965],[282146.8033,222339.7952],[277988.5964,217865.596000001],[275483.4995,211465.298],[274703.5991,213086.6039],[271494.3987,214057.7959],[269101.8964,213372.302200001],[270282.9024,211591.6019],[269875.4975,209475.897500001],[267740.6038,210255.304400001],[266481.6984,209849.500499999],[264479.6986,209051.698899999],[262123.1035,210278.297800001],[261964.4026,208998.6041],[258569.2018,205418.198999999],[258901.6222,202853.079299999],[258489.9008,203467.497400001],[258863.9493,202859.9421],[258033.0008,203608.397],[258113.7704,202974.7544],[257795.2713,202181.219000001],[256920.7008,202066.1985],[257201.7997,201123.498299999],[256206.4971,200945.499299999],[256211.1763,200424.279200001],[256207.9593,200423.3188],[256211.2438,200416.7557],[256214.9852,199999.997],[256225.6,198817.6],[256182.96,199399.27],[255598,199059.300000001],[256100.5058,198216.295],[255997.1018,198153.9101],[252803.9,197608.9],[252566.1,198443.6],[251635.65,197280.24],[250183.24,198367.699999999],[250172.3463,199999.9837],[250170.7991,200231.8036],[250150.0007,199999.981899999],[250017.5976,198524.202400001],[249335.7146,199999.969900001],[249220.0034,200250.3983],[246947.2028,200829.602499999],[241827.696,200056.603700001],[242038.0402,200000.037900001],[243535.2976,199597.395199999],[241646.7004,199027.2984],[240468.7347,199999.949899999],[239999.9982,200386.9877],[237797.5019,202205.5986],[235748.0023,206394.0996],[237079.4972,206145.2009],[236890.8007,205525.498299999],[237286.5966,206072.401699999],[237330.2323,205453.295],[237348.5006,205194.1031],[238787.1978,205289.4958],[238696.7989,204670.603],[239591.7014,205375.101299999],[239658.7007,204537.101199999],[239736.3032,205432.8048],[239999.9993,205076.7304],[240195.8994,204812.202500001],[240209.3966,205596.298],[240553.0013,205050.1044],[241111.0023,205553.500299999],[240000.0291,206041.962300001],[239538.0013,206245.102299999],[240000.0219,206477.8146],[241614.5034,207291.002900001],[240000.0196,206619.781099999],[239775.896,206526.6017],[236761.14,207004.789999999],[236094.7,208802.66],[236899.21,212484.289999999],[239854.36,213985],[239684.97,213971.550000001],[237116.7,213514.300000001],[234189.52,209243.49],[231128.78,210774.460000001],[230168.03,210696.34],[230395.26,209724.35],[233182.63,207942.710000001],[232760.08,207449.449999999],[229995.2,206534.5],[223420.5,207907.43],[222518.744,207381.8462],[220117.6022,207219.284399999],[220000.0072,207226.725299999],[218343.7599,207331.5252],[219137.7001,210970.1998],[217696.0017,211956.997300001],[218409.6035,212876.704],[217736.6993,214266.1963],[219700.4997,215791.899599999],[217791.6031,218057.0012],[213795.6013,219070.101199999],[213529.3023,219987.1987],[214579.7973,221323.596100001],[213832.498,224609.095699999],[212733.2004,225409.4966],[213405.8985,225778.5009],[213482.0993,227618.204299999],[216688.0017,229536.495200001],[218844.2996,227734.0012],[221384.8008,230129.295499999],[222879.6963,229072.2981],[225459.4028,231724.3989],[228791.7019,232138.9003],[229321.7027,235168.203199999],[227618.0999,235920.3978],[226944.0992,237762.7005],[225369.8037,238686.696],[224550.0962,241462.001599999],[225568.7983,241483.795299999],[225863.5015,242351.097100001],[226207.304,241474.498],[228508.6985,241197.0974],[229528.2992,241883.900800001],[231112.497,240434.695599999],[232164.4019,241246.103399999],[234736.2014,240903.101600001],[235550.4012,240074.398800001],[236526.501,240641.896299999],[238829.7011,239090.100500001],[239970.496,240675.5967],[241946.4991,240310.101299999],[242315.8036,241748.7995],[243149.7008,241849.6006],[243547.896,240392.797599999],[246835.5977,240112.9977],[248881.5024,242761.7995],[249856.8024,242370.8014],[251757.5034,243296.296499999],[252183.8967,244736.904100001],[252956.0962,244668.003900001],[252189.1983,245369.303099999],[253224.3987,246159.796800001],[256240.4998,246270.895],[259170.3987,248170.101399999],[261855.6997,246232.1961],[267295.8982,250680.6028],[269552.0025,248544.1043],[272807.301,250953.4047]]]]},"properties":{"LAD22CD":"W06000010","LAD22NM":"Carmarthenshire","BNG_E":247954,"BNG_N":224133,"LONG":-4.2111,"LAT":51.89495,"OBJECTID":361,"GlobalID":"a03e948a-d72c-498a-a78a-5abeb4f134a3"}},{"type":"Feature","id":362,"geometry":{"type":"MultiPolygon","coordinates":[[[[238329.11,187709.609999999],[239885.81,187303.800000001],[240000.0007,187421.733999999],[240000.0215,186999.961100001],[240000.0215,186916.899599999],[238329.11,187709.609999999]]],[[[239999.9886,192000.0298],[239999.9884,191977.9386],[239698.2,192579.9],[240000.0137,192762.6636],[239999.9886,192000.0298]]],[[[256124.71,198175.689999999],[255997.1018,198153.9101],[256100.5058,198216.295],[256124.71,198175.689999999]]],[[[256211.1763,200424.279200001],[256211.2438,200416.7557],[256207.9593,200423.3188],[256211.1763,200424.279200001]]],[[[258208.0022,202235.5],[257795.2713,202181.219000001],[258113.7704,202974.7544],[258208.0022,202235.5]]],[[[262123.1035,210278.297800001],[264479.6986,209051.698899999],[266481.6984,209849.500499999],[269700.1992,206174.102600001],[270461.5976,202245.6971],[272742.5031,201454.103700001],[272078.0007,198972.1042],[270382.8985,197082.805],[269578.586,192665.506100001],[269507.8997,192653.2686],[266815.2171,191549.335999999],[266645.3897,191591.7755],[266523.89,192639.42],[266553.8,192276.800000001],[266536.25,191691.25],[266528.6309,192275.7289],[264500,192189.4],[261997.35,190756.1],[261477.75,188693.35],[262446.9819,187921.772],[262440.65,187908.699999999],[263105.1764,187385.5723],[262813.2859,186977.845000001],[262709.2712,186971.877499999],[260750.65,187391.5],[259999.9682,186980.991800001],[259780.58,186861.02],[259062.94,187655.199999999],[256988.2,186283.1],[253772.94,187787.720000001],[254325.4029,188642.601],[250620.42,186989.439999999],[250803.7799,184819.445800001],[249269.0744,185128.045299999],[247915.67,185546.75],[246770.57,184344.09],[242137.2,187197],[240108.87,187429.640000001],[241482.79,188870.08],[240200.0962,192613.304400001],[242268.1966,193248.8024],[244740.2968,196698.095100001],[245771.8034,196682.8994],[244946.2007,196554.0963],[245619.5996,196076.403100001],[244635.197,193406.7972],[245601.5017,194881.395099999],[245459.7031,193923.1994],[245843.4035,194746.7037],[246156.8972,193691.795600001],[246060.397,194280.2972],[246271.967,194216.9091],[247400.4008,193148.101299999],[246912.4994,194025.000299999],[246367.0862,194188.410599999],[246115.4988,194441.700999999],[246481.497,194859.601399999],[247196.5005,194101.2984],[246624.1547,195301.1808],[248761.9985,194252.495100001],[247956.8023,193787.9981],[248630.3991,193171.004699999],[248360.0023,193977.8038],[250183.6037,194372.8007],[249637.8961,193048.0999],[250656.2023,193920.4002],[250303.6023,194345.6985],[250883.6011,194171.7982],[250291.9026,194370.4014],[250955.1023,194308.099199999],[250717.1993,195040.5995],[252475.6977,194786.202400001],[252197.6,195865.803300001],[255694.0996,196416.9956],[253666.8039,196112.2028],[254448.7985,196972.6965],[258389.2039,197199.4016],[256143.6038,197975.2995],[257483.5004,199112.2041],[256665.7824,199999.970000001],[256494.8022,200185.596799999],[256878.6309,199999.9572],[257036.2966,199923.7018],[257081.3912,199999.952299999],[258331.7029,202114.104800001],[258201.4969,203125.7952],[258886.7751,202809.5199],[258913.2023,202835.7982],[258901.6222,202853.079299999],[258569.2018,205418.198999999],[261964.4026,208998.6041],[262123.1035,210278.297800001]]]]},"properties":{"LAD22CD":"W06000011","LAD22NM":"Swansea","BNG_E":264022,"BNG_N":197308,"LONG":-3.96723,"LAT":51.65806,"OBJECTID":362,"GlobalID":"4e6b9fb0-8794-4fbb-8f96-d06256a5c291"}},{"type":"Feature","id":363,"geometry":{"type":"Polygon","coordinates":[[[275483.4995,211465.298],[277901.6027,207685.9998],[279570.3495,207519.9474],[280885.8037,210027.399599999],[284883.6029,211157.2962],[289467.5024,209568.800899999],[290258.2037,207411.398399999],[291042.5976,203307.6031],[290193.4965,199030.397500001],[291929.6013,195233.6043],[289668.5005,194419.5973],[284834.7015,194908.497400001],[283746.9965,192792.603],[283969.3988,190496.8002],[282979.0021,190763.8038],[282726.7032,189740.196799999],[285363.0038,186404.9015],[285206.496,183553.197799999],[283039.1003,183409.4989],[281949.8041,182292.1987],[277867.6294,183233.557700001],[277821.403,183429.803099999],[277761.4227,183559.2817],[277839.7328,183596.9596],[277745.2673,183594.156099999],[276798.0679,185638.8617],[276706.857,186038.3543],[276572.5209,186125.7467],[276090.4756,187166.3309],[275539.75,187131.4],[274161.6492,187723.228800001],[274162.3099,187724.186699999],[275493.4382,187339.065400001],[275225.2282,188541.739],[274637.3695,188412.9331],[274710.6663,188519.1995],[274627.0903,188651.5997],[276053.8,189756.300000001],[274569.1513,188743.386],[274103.3986,189481.2258],[273873.471,189663.3772],[271950.4,192249.1],[272937.4,193247],[269578.586,192665.506100001],[270382.8985,197082.805],[272078.0007,198972.1042],[272742.5031,201454.103700001],[270461.5976,202245.6971],[269700.1992,206174.102600001],[266481.6984,209849.500499999],[267740.6038,210255.304400001],[269875.4975,209475.897500001],[270282.9024,211591.6019],[269101.8964,213372.302200001],[271494.3987,214057.7959],[274703.5991,213086.6039],[275483.4995,211465.298]]]},"properties":{"LAD22CD":"W06000012","LAD22NM":"Neath Port Talbot","BNG_E":279261,"BNG_N":195412,"LONG":-3.74638,"LAT":51.6445,"OBJECTID":363,"GlobalID":"91daa28a-ded4-43fa-8456-e0da2b06b419"}},{"type":"Feature","id":364,"geometry":{"type":"Polygon","coordinates":[[[296179.5015,180365.100400001],[293926.1016,179156.996200001],[294046.9989,178300.101500001],[293218.9969,178022.301000001],[293655.2019,176964.503799999],[292160.1992,178238.4991],[287503.4403,176422.5134],[287617.3273,176539.7446],[287144.0622,176282.3676],[286195.9139,175912.620300001],[284897.6662,176981.8376],[283427.6348,176251.3696],[282122.1034,176819.568600001],[282068.2349,176425.7753],[281455.5241,176580.6304],[280597.8496,177040.5338],[280000.0128,177898.52],[278677.1,179797.1],[278629.305,180000.004799999],[277867.6294,183233.557700001],[281949.8041,182292.1987],[283039.1003,183409.4989],[285206.496,183553.197799999],[285363.0038,186404.9015],[282726.7032,189740.196799999],[282979.0021,190763.8038],[283969.3988,190496.8002],[283746.9965,192792.603],[284834.7015,194908.497400001],[289668.5005,194419.5973],[291929.6013,195233.6043],[293702.6027,195045.598099999],[295553.7014,192114.7971],[298111.6986,190185.7992],[297794.7008,188007.8027],[296928.2026,187202.803099999],[298640.9986,183738.4048],[296179.5015,180365.100400001]]]},"properties":{"LAD22CD":"W06000013","LAD22NM":"Bridgend","BNG_E":288231,"BNG_N":185870,"LONG":-3.61375,"LAT":51.5606,"OBJECTID":364,"GlobalID":"2643d29b-b9d5-44e5-b452-04946be49c74"}},{"type":"Feature","id":365,"geometry":{"type":"MultiPolygon","coordinates":[[[[287144.0622,176282.3676],[286302.6018,175824.753799999],[286195.9139,175912.620300001],[287144.0622,176282.3676]]],[[[302165.9024,179592.501499999],[302783.9027,178712.5034],[304428.0998,180210.9045],[307396.396,179679.0967],[309971.7985,178685.801100001],[311801.1962,174775.600299999],[313398.2975,174692.7041],[315441.5968,175804.3958],[317632.5981,172769.604499999],[319065.2193,172312.9914],[318737.8216,168123.9146],[317478.4296,167453.6667],[314944.8436,167865.941500001],[312372.05,166947.65],[312101.0024,166336.0996],[311796.3422,166192.8672],[308929.3134,166783.9186],[306676.9687,165523.696799999],[302962.662,165778.647],[303036.42,167460.52],[302906.4229,165738.686100001],[302276.7738,165599.169399999],[301618.8093,166365.5648],[300000.0078,166643.2611],[291652.0973,168075.2983],[289117.06,172546.529999999],[287066.1024,174198.3697],[286216.9676,175098.264599999],[287503.4403,176422.5134],[292160.1992,178238.4991],[293655.2019,176964.503799999],[293218.9969,178022.301000001],[294046.9989,178300.101500001],[293926.1016,179156.996200001],[296179.5015,180365.100400001],[298415.2983,180560.904300001],[302165.9024,179592.501499999]]]]},"properties":{"LAD22CD":"W06000014","LAD22NM":"Vale of Glamorgan","BNG_E":302947,"BNG_N":173080,"LONG":-3.39801,"LAT":51.44836,"OBJECTID":365,"GlobalID":"f40195ba-cab5-4936-b10c-2321645320b5"}},{"type":"Feature","id":366,"geometry":{"type":"Polygon","coordinates":[[[322508.3975,183565.0044],[325932.9011,180691.4969],[324425.3,179557.8014],[324890.0496,178639.423900001],[321957.25,177329.35],[320864.95,179878.949999999],[322081.4193,176942.5889],[319999.9986,173744.8486],[319193.96,172506.5107],[319176.8562,172512.853599999],[319084.0812,172554.331],[319065.2193,172312.9914],[317632.5981,172769.604499999],[315441.5968,175804.3958],[313398.2975,174692.7041],[311801.1962,174775.600299999],[309971.7985,178685.801100001],[307396.396,179679.0967],[307044.604,182657.1043],[308241.1025,182706.100299999],[309237.9963,184151.796399999],[311510.698,184437.104800001],[312599.5985,182852.7983],[314283.3966,184472.204700001],[319425.1981,185266.8972],[320183.1995,184268.902899999],[320750.6988,184671.197799999],[322508.3975,183565.0044]]]},"properties":{"LAD22CD":"W06000015","LAD22NM":"Cardiff","BNG_E":315272,"BNG_N":178887,"LONG":-3.22209,"LAT":51.50254,"OBJECTID":366,"GlobalID":"a4c8c4ef-1fa4-4bd0-b793-1ba0579007ad"}},{"type":"Feature","id":367,"geometry":{"type":"Polygon","coordinates":[[[300546.8032,214081.2992],[300743.5963,211776.399],[302340.4998,208560.2996],[301573.7998,207609.6017],[299808.5982,207996.401000001],[303388.9995,203055.7952],[304747.497,202265.4015],[308011.7991,196140.704600001],[309209.0974,196030.0963],[309183.9005,194804.097200001],[310638.9971,188929.898700001],[312114.6982,187983.399599999],[312565.2001,186018.302200001],[313977.9006,185910.8029],[314283.3966,184472.204700001],[312599.5985,182852.7983],[311510.698,184437.104800001],[309237.9963,184151.796399999],[308241.1025,182706.100299999],[307044.604,182657.1043],[307396.396,179679.0967],[304428.0998,180210.9045],[302783.9027,178712.5034],[302165.9024,179592.501499999],[298415.2983,180560.904300001],[296179.5015,180365.100400001],[298640.9986,183738.4048],[296928.2026,187202.803099999],[297794.7008,188007.8027],[298111.6986,190185.7992],[295553.7014,192114.7971],[293702.6027,195045.598099999],[291929.6013,195233.6043],[290193.4965,199030.397500001],[291042.5976,203307.6031],[290258.2037,207411.398399999],[292053.1041,208515.5024],[292481.6988,209911.7027],[294051.7976,209731.704299999],[293785.2018,210668.0962],[298316.5967,213345.4998],[298790.597,215453.5964],[299479.2987,215620.498600001],[300546.8032,214081.2992]]]},"properties":{"LAD22CD":"W06000016","LAD22NM":"Rhondda Cynon Taf","BNG_E":302237,"BNG_N":192395,"LONG":-3.41359,"LAT":51.62185,"OBJECTID":367,"GlobalID":"d18f0de7-2221-403f-9f62-8ffcc9574841"}},{"type":"Feature","id":368,"geometry":{"type":"Polygon","coordinates":[[[322947.3975,199706.204],[323910.198,198722.5956],[325133.897,199401.4013],[325992.8015,197812.2962],[325737.3035,195374.6039],[323782.3996,193369.298],[325199.7998,191733.0963],[326369.1968,189991.7048],[324328.6019,188627.5953],[323547.2999,189286.3967],[322214.0982,188343.0967],[322367.9016,187355.2994],[324536.699,186162.6008],[322508.3975,183565.0044],[320750.6988,184671.197799999],[320183.1995,184268.902899999],[319425.1981,185266.8972],[314283.3966,184472.204700001],[313977.9006,185910.8029],[312565.2001,186018.302200001],[312114.6982,187983.399599999],[310638.9971,188929.898700001],[309183.9005,194804.097200001],[310453.5987,196941.195499999],[311195.0482,196276.2958],[311269.5959,198377.0045],[312022.8977,198943.102499999],[310283.5031,204978.7048],[309247.404,204496.003],[309645.896,205294.4044],[308367.1035,207498.4035],[308057.3036,211036.2009],[309746.1972,211439.395400001],[310360.8005,211948.399700001],[312307.4017,209522.903999999],[312652.3998,207493.295],[315627.2014,203416.402000001],[315558.6025,204090.499],[316470.7041,204248.1039],[315892.8985,205857.103399999],[316558.3986,206403.7969],[319446.998,201885.600199999],[320206.3022,202326.1041],[322060.4021,200273.7016],[321442.3028,198742],[322947.3975,199706.204]]]},"properties":{"LAD22CD":"W06000018","LAD22NM":"Caerphilly","BNG_E":317245,"BNG_N":195259,"LONG":-3.19753,"LAT":51.65001,"OBJECTID":368,"GlobalID":"30c80983-e1f8-4691-82f2-33551679e483"}},{"type":"Feature","id":369,"geometry":{"type":"Polygon","coordinates":[[[320318.097,213680.0041],[321092.5968,212404.699100001],[320316.7036,211459.399700001],[321874.5007,211070.201099999],[321191.3974,210334.501700001],[323757.4995,207530.704299999],[323124.6003,207111.404300001],[323695.6038,203000.101199999],[322947.3975,199706.204],[321442.3028,198742],[322060.4021,200273.7016],[320206.3022,202326.1041],[319446.998,201885.600199999],[316558.3986,206403.7969],[315892.8985,205857.103399999],[316470.7041,204248.1039],[315558.6025,204090.499],[315627.2014,203416.402000001],[312652.3998,207493.295],[312307.4017,209522.903999999],[310360.8005,211948.399700001],[309746.1972,211439.395400001],[309873.8967,212753.2993],[311645.8015,214875.102],[314698.4035,213361.1953],[320318.097,213680.0041]]]},"properties":{"LAD22CD":"W06000019","LAD22NM":"Blaenau Gwent","BNG_E":318236,"BNG_N":206771,"LONG":-3.18592,"LAT":51.75364,"OBJECTID":369,"GlobalID":"8d5c85ce-dff8-48d3-83f2-4349ea121b7f"}},{"type":"Feature","id":370,"geometry":{"type":"Polygon","coordinates":[[[333722.9998,192653.9027],[331617.7966,192679.995300001],[329498.8983,191348.0965],[327603.9029,192040.0984],[327726.103,190277.2031],[325199.7998,191733.0963],[323782.3996,193369.298],[325737.3035,195374.6039],[325992.8015,197812.2962],[325133.897,199401.4013],[323910.198,198722.5956],[322947.3975,199706.204],[323695.6038,203000.101199999],[323124.6003,207111.404300001],[323757.4995,207530.704299999],[321191.3974,210334.501700001],[321874.5007,211070.201099999],[323669.9039,211422.000399999],[327053.6028,209972.0955],[328096.8009,208484.601199999],[327674.5961,207383.296499999],[329138.6963,205685.502499999],[328860.9037,203165.1039],[332147.5005,202306.7996],[330834.9033,199594.696],[333144.8973,199631.395400001],[332367.9982,197666.8978],[331308.3017,198301.1962],[330700.4016,197174.6987],[333722.9998,192653.9027]]]},"properties":{"LAD22CD":"W06000020","LAD22NM":"Torfaen","BNG_E":327459,"BNG_N":200480,"LONG":-3.05101,"LAT":51.69836,"OBJECTID":370,"GlobalID":"b4c2e199-bb10-4fe8-96e8-64a58bd54404"}},{"type":"Feature","id":371,"geometry":{"type":"MultiPolygon","coordinates":[[[[354639.3016,191757.499299999],[354620.0625,191668.4234],[354401.4113,192516.0033],[354639.3016,191757.499299999]]],[[[329597.4021,229251.796700001],[330775.4976,225881.2015],[332939.1006,225891.6985],[333237.0029,223383.896400001],[339743.1971,226508.402000001],[341989.9021,225170.505000001],[340814.57,224289.210000001],[342192.2499,224689.3463],[342576.845,223386.7433],[347202.8502,220497.6526],[346471.1999,218872.897600001],[349189.3228,215592.216700001],[350528.3966,216946.8989],[350827.2966,215978.995999999],[352060.296,216474.804099999],[352324.6986,215252.304],[354193.6973,215433.102299999],[355272.7037,214366.797499999],[354547.699,213998.402899999],[354627.404,212654.997500001],[353309.497,211795.4035],[353902.4983,210836.498],[353142.3036,208024.6029],[354352.5961,206341.2048],[353676.6001,204397.4012],[352612.7976,203746.997400001],[353906.8022,200994.5952],[352840.6993,200430.3967],[353843.6038,199589.397500001],[353618.0024,198240.103700001],[354675.4975,197507.9033],[352621.1993,196264.599199999],[354038.7974,196381.3958],[353024.9022,194524.7972],[353840.6026,194304.100400001],[354191.0916,193186.5945],[354530.61,191628.32],[353721.45,190207.07],[351923,189625.57],[350720.76,187295.789999999],[347603.48,186888.42],[343131.3492,184229.262800001],[343091.8327,184213.3093],[342279.0976,186053.302100001],[341002.3004,186165.300100001],[340560.2002,187078.798599999],[342608.8011,191006.7042],[344485.2038,191087.6011],[342358.9015,194726.2995],[338952.7019,194006.9954],[337203.3967,192036.8993],[336353.2485,192408.8029],[334923.0024,191341.398399999],[334499.0002,192627.9002],[333722.9998,192653.9027],[330700.4016,197174.6987],[331308.3017,198301.1962],[332367.9982,197666.8978],[333144.8973,199631.395400001],[330834.9033,199594.696],[332147.5005,202306.7996],[328860.9037,203165.1039],[329138.6963,205685.502499999],[327674.5961,207383.296499999],[328096.8009,208484.601199999],[327053.6028,209972.0955],[323669.9039,211422.000399999],[321874.5007,211070.201099999],[320316.7036,211459.399700001],[321092.5968,212404.699100001],[320318.097,213680.0041],[322895.9978,216183.7974],[324229.1994,215399.002],[324517.1005,216994.1954],[326870.8016,218838.7974],[326281.2962,220168.196900001],[328512.3025,221180.797],[327904.7982,224176.999399999],[325921.6961,225661.6044],[325180.597,228545.3989],[325770.3992,229097.200999999],[324996.996,230198.595699999],[326793.1991,232169.001700001],[329597.4021,229251.796700001]]]]},"properties":{"LAD22CD":"W06000021","LAD22NM":"Monmouthshire","BNG_E":337812,"BNG_N":209231,"LONG":-2.9028,"LAT":51.77827,"OBJECTID":371,"GlobalID":"162a25e7-091e-4ac1-beab-7f998b209c28"}},{"type":"Feature","id":372,"geometry":{"type":"Polygon","coordinates":[[[343091.8327,184213.3093],[339999.9909,182965.080600001],[337329.95,181887.140000001],[336111.12,182279.17],[336710.493,183027.005999999],[334118.7,182227.6],[332023.7,183372],[332831.4036,184524.299799999],[331541.0021,183867.3978],[330442.23,185689.18],[331496.53,183644.050000001],[331063.92,182421.529999999],[327120.5483,180000],[324944.5349,178663.7623],[324890.0496,178639.423900001],[324425.3,179557.8014],[325932.9011,180691.4969],[322508.3975,183565.0044],[324536.699,186162.6008],[322367.9016,187355.2994],[322214.0982,188343.0967],[323547.2999,189286.3967],[324328.6019,188627.5953],[326369.1968,189991.7048],[325199.7998,191733.0963],[327726.103,190277.2031],[327603.9029,192040.0984],[329498.8983,191348.0965],[331617.7966,192679.995300001],[333722.9998,192653.9027],[334499.0002,192627.9002],[334923.0024,191341.398399999],[336353.2485,192408.8029],[337203.3967,192036.8993],[338952.7019,194006.9954],[342358.9015,194726.2995],[344485.2038,191087.6011],[342608.8011,191006.7042],[340560.2002,187078.798599999],[341002.3004,186165.300100001],[342279.0976,186053.302100001],[343091.8327,184213.3093]]]},"properties":{"LAD22CD":"W06000022","LAD22NM":"Newport","BNG_E":337897,"BNG_N":187432,"LONG":-2.89769,"LAT":51.58231,"OBJECTID":372,"GlobalID":"9ac4f428-6462-4743-b3e6-b08a0d88c16a"}},{"type":"Feature","id":373,"geometry":{"type":"Polygon","coordinates":[[[322891.5496,333139.949100001],[323688.4966,332552.997099999],[322540.7016,331874.101399999],[324182.7962,330552.399700001],[321771.1983,328408.703400001],[322554.0009,327848.003900001],[321391.9997,325274.500499999],[321349.0017,323946.9005],[322359.401,323823.7958],[321823.6039,322650.401699999],[324672.7013,321252.0019],[326827.8036,322555.298900001],[326472.2023,321567.1018],[327267.3973,319869.5977],[329409.596,319963.500800001],[329079.9997,319528.495300001],[330000.5031,319705.5046],[330252.2001,318990.699200001],[331465.4031,319380.0978],[331883.6008,318361.6993],[331129.4993,317635.497199999],[333129.3966,316696.8958],[333159.5983,315590.8024],[334930.0025,315394.298699999],[335175.6971,313632.902899999],[334024.1012,313525.103700001],[334075.5998,314774.2962],[332515.0983,314093.0012],[331185.2029,314648.702099999],[331012.304,312600.1985],[329327.904,310910.802100001],[329874.6999,309134.7005],[328981.6485,306031.648700001],[326776.0988,305388.6028],[328366.9009,304188.746300001],[327457.9983,304006.5984],[326041.8019,301844.5973],[326302.6014,300748.800899999],[324390.2007,299246.900800001],[322893.7963,299265.4955],[324715.0974,294302.0963],[322969.6014,293515.001599999],[323228.1006,292779.5021],[326472.4992,293512.0024],[326374.3005,295385.7961],[331364.6979,298001.5973],[332689.9019,295470.401799999],[331980.3979,291800.202400001],[330052.4964,292261.100500001],[330232.4037,289759.396600001],[324674.9027,289582.1973],[319932.2034,286876.002],[318779.6016,287123.6011],[316114.6494,283442.299900001],[317162.003,281060.796499999],[319908.6967,279696.1972],[321529.1975,277257.7951],[324494.6986,276040.703500001],[327847.0003,272769.300000001],[329236.4003,272313.8003],[333725.597,273405.3979],[335069.5007,272770.499600001],[334212.5997,270589.7039],[331879.4041,269766.6994],[331012.8977,265040.0024],[335295.0031,263902.798],[333400.6014,262839.802200001],[331456.0037,263375.198999999],[329390.8963,262569.6996],[328530.1531,261856.4038],[328790.4991,260483.5967],[326818.9979,260284.3038],[326846.0994,257748.5996],[324779.5985,256626.300799999],[325255.6023,254507.7973],[323321.5006,252276.495999999],[324916.5984,251285.7995],[326049.0988,252193.5997],[326721.5,251374.404200001],[325255.2973,250120.6031],[322357.7025,249453.404100001],[321926.2961,248343.1019],[324435.7959,247064.9977],[324383.7037,245804.0987],[323198.5008,245574.4044],[322937.8002,242814.304500001],[325311.0009,239685.699999999],[325588.8018,238533.5998],[324673.6989,236599.603399999],[326793.1991,232169.001700001],[324996.996,230198.595699999],[325770.3992,229097.200999999],[325180.597,228545.3989],[325921.6961,225661.6044],[327904.7982,224176.999399999],[328512.3025,221180.797],[326281.2962,220168.196900001],[326870.8016,218838.7974],[324517.1005,216994.1954],[324229.1994,215399.002],[322895.9978,216183.7974],[320318.097,213680.0041],[314698.4035,213361.1953],[311645.8015,214875.102],[309873.8967,212753.2993],[309746.1972,211439.395400001],[308057.3036,211036.2009],[306294.3034,211145.0997],[306500.6031,212908.9048],[303429.5487,213766.099400001],[303448.0011,215117.8025],[302453.0036,216114.8971],[300546.8032,214081.2992],[299479.2987,215620.498600001],[298790.597,215453.5964],[298316.5967,213345.4998],[293785.2018,210668.0962],[294051.7976,209731.704299999],[292481.6988,209911.7027],[292053.1041,208515.5024],[290258.2037,207411.398399999],[289467.5024,209568.800899999],[284883.6029,211157.2962],[280885.8037,210027.399599999],[279570.3495,207519.9474],[277901.6027,207685.9998],[275483.4995,211465.298],[277988.5964,217865.596000001],[282146.8033,222339.7952],[282206.7037,224431.4965],[281267.0965,224963.1043],[281800.7993,228377.397],[283258.6993,228874.704600001],[282523.6026,230648.9968],[285461.4003,235291.297900001],[285635.2969,237648.403200001],[287119.0039,239100.797499999],[284986.3034,241577.898399999],[285838.2986,243081.2981],[282031.8012,244384.705],[281664.6981,245370.3028],[282701.597,246567.3002],[282307.1038,247970.998400001],[279749.1973,249226.598999999],[280877.402,250430.704299999],[280334.7038,256933.0031],[281016.1004,262334.8968],[280401.0023,262956.898700001],[281941.0973,265111.0021],[283617.3017,265361.3005],[281892.2041,267210.201199999],[282298.4959,268927.7996],[281152.3005,270261.697799999],[283933.104,272853.7958],[287148.0018,273468.399800001],[285341.0966,275799.4026],[284539.7014,275674.398399999],[283650.9993,280861.8035],[279678.3969,284162.0988],[280106.2991,287173.196900001],[281588.3983,287730.2974],[282457.3041,291265.6954],[277004.5978,288319.298800001],[276050.8009,288998.0045],[274957.5965,292057.998600001],[275281.8005,296425.2985],[274047.6963,297512.997199999],[269496.3978,297623.895400001],[269376.1024,298817.3038],[270311.9004,299585.8038],[272447.0002,299367.6962],[273069.1972,301109.197699999],[275350.3005,301821.403899999],[274829.5012,304147.4981],[275936.5986,305501.8004],[275574.5002,307496.999299999],[277856.4033,310448.904300001],[281128.497,309421.998199999],[282204.7001,310715.9978],[284033.1001,310390.501],[284512.501,309522.5995],[286291.8017,312015.2959],[288147.4021,311695.6974],[291854.7032,313126.797800001],[292090.2975,315446.9036],[293187.0968,316840.504699999],[291623.7013,323040.200099999],[292459.0002,325250.897299999],[293205.6976,326754.8968],[294427.3024,326191.498],[294545.6025,326988.399900001],[298708.7977,328221.097100001],[300262.8021,330803.4979],[301316.3972,330406.2016],[306625.9033,331857.6961],[307590.0972,333662.1996],[309565.6963,333634.497500001],[315155.7983,330647.502499999],[317095.2015,330658.599300001],[319004.4031,333532.296800001],[321104.0986,334437.297700001],[322891.5496,333139.949100001]]]},"properties":{"LAD22CD":"W06000023","LAD22NM":"Powys","BNG_E":302329,"BNG_N":273255,"LONG":-3.43531,"LAT":52.34864,"OBJECTID":373,"GlobalID":"e0ce4873-cfa4-49d4-9f6a-8d8938ae91fa"}},{"type":"Feature","id":374,"geometry":{"type":"Polygon","coordinates":[[[308057.3036,211036.2009],[308367.1035,207498.4035],[309645.896,205294.4044],[309247.404,204496.003],[310283.5031,204978.7048],[312022.8977,198943.102499999],[311269.5959,198377.0045],[311195.0482,196276.2958],[310453.5987,196941.195499999],[309183.9005,194804.097200001],[309209.0974,196030.0963],[308011.7991,196140.704600001],[304747.497,202265.4015],[303388.9995,203055.7952],[299808.5982,207996.401000001],[301573.7998,207609.6017],[302340.4998,208560.2996],[300743.5963,211776.399],[300546.8032,214081.2992],[302453.0036,216114.8971],[303448.0011,215117.8025],[303429.5487,213766.099400001],[306500.6031,212908.9048],[306294.3034,211145.0997],[308057.3036,211036.2009]]]},"properties":{"LAD22CD":"W06000024","LAD22NM":"Merthyr Tydfil","BNG_E":305916,"BNG_N":206424,"LONG":-3.36425,"LAT":51.74858,"OBJECTID":374,"GlobalID":"304b7eb4-573e-4a11-ad63-e7000e5601f6"}}]} \ No newline at end of file diff --git a/lib/tasks/geojson_loading.rake b/lib/tasks/geojson_loading.rake new file mode 100644 index 0000000000..c3e9e5182b --- /dev/null +++ b/lib/tasks/geojson_loading.rake @@ -0,0 +1,23 @@ +namespace :geojson do + desc "Load geojsons into the database, will empty local authorities table first" + task load: :environment do |_t, _args| + geojson_path = "lib/local_authority_geojson/Local_Authority_Districts_December_2022_Boundaries_UK_BUC_143497700576642915.geojson" + + puts("Loading geojsons from #{geojson_path}") + + Services::GeojsonLoader.reload_geojsons(geojson_path) + end + + desc "Load geojson file and output local authorities found" + task test: :environment do |_t, _args| + geojson_path = "lib/local_authority_geojson/Local_Authority_Districts_December_2022_Boundaries_UK_BUC_143497700576642915.geojson" + + features = Services::GeojsonLoader.read_file(geojson_path) + + puts "File contains #{features.count} local authority geometries" + + local_authorities_found = features.map { |feature| feature.properties["LAD22NM"] }.sort.join(", ") + + puts "Local Authorities found: #{local_authorities_found}" + end +end diff --git a/spec/models/geo_local_authority_spec.rb b/spec/models/geo_local_authority_spec.rb new file mode 100644 index 0000000000..e348bc690a --- /dev/null +++ b/spec/models/geo_local_authority_spec.rb @@ -0,0 +1,90 @@ +require "rails_helper" + +RSpec.describe GeoLocalAuthority, type: :model do + before do + geojson_path = "lib/local_authority_geojsons/Local_Authority_Districts_December_2022_Boundaries_UK_BUC_143497700576642915.geojson" + + Services::GeojsonLoader.reload_geojsons(geojson_path) + + Geocoder.configure(lookup: :test) + Geocoder::Lookup::Test.add_stub( + "Department for Education, Westminster", [{ + "latitude" => 51.4979314, + "longitude" => -0.13016544222858017, + "address" => "Department for Education, 20, Great Smith Street, Westminster, Millbank, London, Greater London, England, SW1P 3BT, United Kingdom", + "state" => "England", + "country" => "United Kingdom", + "country_code" => "gb", + }] + ) + Geocoder::Lookup::Test.add_stub( + "Manchester Airport", [{ + "latitude" => 53.350342049999995, + "longitude" => -2.280369252664295, + "address" => "Manchester Airport, Castle Mill Lane, Ashley, Manchester, Cheshire East, England, M90 1QX, United Kingdom", + "state" => "England", + "country" => "United Kingdom", + "country_code" => "gb", + }] + ) + Geocoder::Lookup::Test.add_stub( + "Belfast City Airport", [{ + "latitude" => 54.614828, + "longitude" => -5.8703437, + "address" => "Bushmills Bar, Sydenham Bypass, Sydenham, Belfast, County Down, Ulster, Northern Ireland, BT3 9JH, United Kingdom", + "state" => "Northern Ireland", + "country" => "United Kingdom", + "country_code" => "gb", + }] + ) + Geocoder::Lookup::Test.add_stub( + "Edinburgh Airport", [{ + "latitude" => 55.950128899999996, + "longitude" => -3.3595079855289756, + "address" => "Edinburgh Airport, Meadowfield Road, Gogar, City of Edinburgh, Scotland, EH12 0AU, United Kingdom", + "state" => "Scotland", + "country" => "United Kingdom", + "country_code" => "gb", + }] + ) + Geocoder::Lookup::Test.add_stub( + "Cardiff Airport", [{ + "latitude" => 51.397871550000005, + "longitude" => -3.3445890119919994, + "address" => "Cardiff Airport, B4265, Fonmon, Rhoose, Penmark, Vale of Glamorgan, Wales, CF62 3BL, United Kingdom", + "state" => "Wales", + "country" => "United Kingdom", + "country_code" => "gb", + }] + ) + + Geocoder::Lookup::Test.add_stub( + "Sydney Opera House", [{ + "latitude" => -33.85719805, + "longitude" => 151.21512338473752, + "address" => "Sydney Opera House, 2, Macquarie Street, Quay Quarter, Sydney, Council of the City of Sydney, New South Wales, 2000, Australia", + "state" => "New South Wales", + "country" => "Australia", + "country_code" => "au", + }] + ) + end + + describe "#nearest_three_to" do + def check_nearest_three_to(location) + described_class.nearest_three_to(location).pluck(:name) + end + + it "returns the three nearest local authorities" do + # Do some quick checks around the UK to check it works in various areas + expect(check_nearest_three_to("Department for Education, Westminster")).to eq(%w[Westminster Lambeth Wandsworth]) + expect(check_nearest_three_to("Manchester Airport")).to eq(["Manchester", "Cheshire East", "Trafford"]) + expect(check_nearest_three_to("Belfast City Airport")).to eq(["Belfast", "Ards and North Down", "Lisburn and Castlereagh"]) + expect(check_nearest_three_to("Edinburgh Airport")).to eq(["City of Edinburgh", "West Lothian", "Fife"]) + expect(check_nearest_three_to("Cardiff Airport")).to eq(["Vale of Glamorgan", "Cardiff", "Rhondda Cynon Taf"]) + + # And one across the world to check it doesn't break + expect(check_nearest_three_to("Sydney Opera House")).to eq(["Cornwall", "Isles of Scilly", "South Hams"]) + end + end +end