<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Code on rostrum.blog</title>
    <link>https://www.rostrum.blog/categories/code/</link>
    <description>Recent content in Code on rostrum.blog</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-gb</language>
    <lastBuildDate>Sat, 19 Aug 2023 00:00:00 +0000</lastBuildDate>
    
	<atom:link href="https://www.rostrum.blog/categories/code/index.xml" rel="self" type="application/rss+xml" />
    
    
    <item>
      <title>Object of type closure can shut up</title>
      <link>https://www.rostrum.blog/2023/08/19/find-bad-names/</link>
      <pubDate>Sat, 19 Aug 2023 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2023/08/19/find-bad-names/</guid>
      <description>tl;dr I wrote an R function to help identify variable names that already exist as function names, like in c &amp;lt;- 1 or head &amp;lt;- &#34;x&#34;.
 Naming and shaming Naming things is hard, yes, but data is a short and sensible choice for a dataframe, right?
data[data$column == 1, ] ## Error in data$column: object of type &amp;#39;closure&amp;#39; is not subsettable Oh, silly me, I tried to subset a dataframe called data without actually, y’know, creating it first.</description>
    </item>
    
    <item>
      <title>One weird trick to {monetize} your R package</title>
      <link>https://www.rostrum.blog/2023/08/01/monetize/</link>
      <pubDate>Tue, 01 Aug 2023 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2023/08/01/monetize/</guid>
      <description>tl;dr The {monetize} R package gives you inspiration for monetising your R package. Developers rise up!
 Free as in free There’s one good reason why SAS, SPSS and Stata1 are such successful and beloved statistical tools: money.
For some reason, R remains free and open source. But what if Ihaka &amp;amp; Gentleman originally wanted users to be charged a literal (New Zealand) dollar2 every time they use the $ symbol to access an element from an object?</description>
    </item>
    
    <item>
      <title>Save high scores for your R game</title>
      <link>https://www.rostrum.blog/2023/07/15/hiscore/</link>
      <pubDate>Sat, 15 Jul 2023 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2023/07/15/hiscore/</guid>
      <description>tl;dr You can save your high score in games made with R. See the package {hiscore} for a demo.
 Boot up I wrote recently about how R is a game engine and started a list of games written in R.
All good game engines should let you save a high score, right?
So I’ve done exactly this for a tiny concept package called {hiscore}1 that contains a simple game of luck</description>
    </item>
    
    <item>
      <title>Convert a Word table to Markdown</title>
      <link>https://www.rostrum.blog/2023/06/21/wordup-tables/</link>
      <pubDate>Wed, 21 Jun 2023 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2023/06/21/wordup-tables/</guid>
      <description>tl;dr I made a function that shouldn’t need to exist in an ideal world: it takes a copied Microsoft Word table and outputs a Markdown version (well, a Govspeak version).
 Govspeak when you’re spoken to I’ve written about three painful things recently:
Forcing data scientists to expose their tools so we can all use and learn from them. ‘Rectangularising’ tables scraped out of a Word document via the {officer} package.</description>
    </item>
    
    <item>
      <title>Extract run data from Apple Health (redux)</title>
      <link>https://www.rostrum.blog/2023/06/11/apple-health-redux/</link>
      <pubDate>Sun, 11 Jun 2023 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2023/06/11/apple-health-redux/</guid>
      <description>tl;dr You can use R to extract running details from a downloaded of your Apple Health data. My old code broke, so I re-wrote it.
 On your marks In 2021 I extracted my running activities from my Apple Health data using the {xml2} package. You can read there for some theory and background.
At that point I’d been running for one year. I’m nearly at 500 runs1, so I thought I would re-execute my code with the latest data.</description>
    </item>
    
    <item>
      <title>Rectangularise Word tables extracted by {officer}</title>
      <link>https://www.rostrum.blog/2023/06/07/rectangular-officer/</link>
      <pubDate>Wed, 07 Jun 2023 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2023/06/07/rectangular-officer/</guid>
      <description>tl;dr {officer} is an R package that lets you extract elements of a Word document, including tables, into a tidy dataframe. I’ve written a function to ‘re-rectangularise’ extracted Word tables into a list of R dataframes.
 Update
Turns out that Eli Pousson has written the {officerExtras} package (install it from GitHub), which already contains this functionality in the officer_tables() and officer_table() functions. At least this proves my idea wasn’t too far-fetched!</description>
    </item>
    
    <item>
      <title>Recreating a dataviz with {ggplot2}</title>
      <link>https://www.rostrum.blog/2023/05/10/spear-ggplot2/</link>
      <pubDate>Wed, 10 May 2023 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2023/05/10/spear-ggplot2/</guid>
      <description>They’re the same picture. Nearly.  tl;dr Two years ago I won a data-viz recreation competition run by the Royal Statistical Society (RSS) using base R’s plotting. I wrote a short {ggplot2} how-to for RSS’s ‘Significance’ magazine that was never published1, so here it is now.
 Recreate This short code walkthrough will get you started on recreating Mary Eleanor Spear’s cotton plot (1952), as used in the Royal Statistical Society’s #CottonViz challenge.</description>
    </item>
    
    <item>
      <title>Automate {blogdown} to Quarto</title>
      <link>https://www.rostrum.blog/2023/05/07/bd2q/</link>
      <pubDate>Sun, 07 May 2023 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2023/05/07/bd2q/</guid>
      <description>gRaPhIc DeSiGn Is My PaSsIoN.  tl;dr I’ve written a quick R package, {bd2q}, to help me convert my {blogdown} blog to Quarto. Whether I’ll actually complete the conversion is another story.
 Upside blogdown It is destiny: no-one is ever completely happy with their blog.
This site was built five years ago1 with {blogdown}, which lets you write R Markdown files and have them knitted into a blog. I ignored the newer {distill} package2, but Quarto may be worth the switch.</description>
    </item>
    
    <item>
      <title>Matt Dray Teaches (Data) Typing</title>
      <link>https://www.rostrum.blog/2023/04/23/type-convert/</link>
      <pubDate>Sun, 23 Apr 2023 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2023/04/23/type-convert/</guid>
      <description>Confirmed: Unown is character type.1  tl;dr I forgot that the base R function type.convert() exists. Handy for ‘simplifying’ all the columns of a dataframe to appropriate data types.
 Suppression depression {a11ytables} is an R package that lets you generate publishable spreadsheets that follow the UK government’s best practice guidance.
One requirement is to replace missing values with placeholder symbols. For example, suppressed data can be replaced with the string &#34;</description>
    </item>
    
    <item>
      <title>R is a game engine, fight me</title>
      <link>https://www.rostrum.blog/2023/04/02/splendid-r-games/</link>
      <pubDate>Sun, 02 Apr 2023 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2023/04/02/splendid-r-games/</guid>
      <description>tl;dr R is ‘a free software environment for statistical computing and graphics’. Ahahaha, no it’s not, it’s a game engine. I’ve created a ‘splendid’ list of games you can play—written in R—to prove it. Help expand it.
 Stats only! R is not a general, multi-purpose programming language. It was written to do statistical analysis and make charts. You are literally not allowed to do anything else with it. You should use &amp;lt;LANGUAGE&amp;gt; instead, which is much more suited to your specific use case.</description>
    </item>
    
    <item>
      <title>Playgrounds with WebR and Quarto</title>
      <link>https://www.rostrum.blog/2023/03/16/webr-quarto/</link>
      <pubDate>Thu, 16 Mar 2023 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2023/03/16/webr-quarto/</guid>
      <description>tl;dr WebR lets you run R in the browser(!). Now you can make WebR chunks in Quarto that render to editable, executable blocks(!).
 Sliding into tedium I wrote recently a simple introduction to how R parses code. I provided a function that I said the reader could go away and run themselves.
As in… copy-paste it into an instance of R running on their machine. Gross.
Wouldn’t it be better if people could just tinker with the code right there in the post?</description>
    </item>
    
    <item>
      <title>I can&#39;t be parsed, mate</title>
      <link>https://www.rostrum.blog/2023/03/03/getparsedata/</link>
      <pubDate>Fri, 03 Mar 2023 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2023/03/03/getparsedata/</guid>
      <description>Image by Keith Johnston from Pixabay. Deep fried by Matt Dray.1  tl;dr R is capable of reading R code. Obviously. You can use getParseData(parse()) to see what’s going on. A very naive intro.
 At an imparse There’s many things that delight me about R coding.2 One meta thing I like is the idea that R has to recognise the code that you give it as… R code.
For example, does x&amp;lt;-1 mean ‘x is less than minus-one’?</description>
    </item>
    
    <item>
      <title>Repaying Tom Nook with {S7}</title>
      <link>https://www.rostrum.blog/2023/02/26/nook-s7/</link>
      <pubDate>Sun, 26 Feb 2023 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2023/02/26/nook-s7/</guid>
      <description>tl;dr The R7 S7 object-oriented system is coming to R. I’ve done a little R6-to-S7 translation on an old project to get a very cursory feel for it, featuring Animal Crossing New Horizons.
 Update
The S7 system and package are under development and could change at any time, rendering everything in this post useless.1 Heck, last time I checked, the system was called ‘R7’. There’s also a chance that S7 elements may have been integrated into base R itself by the time you read this.</description>
    </item>
    
    <item>
      <title>London from space via botsin.space</title>
      <link>https://www.rostrum.blog/2023/02/09/londonmapbotstodon/</link>
      <pubDate>Thu, 09 Feb 2023 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2023/02/09/londonmapbotstodon/</guid>
      <description>tl;dr I’ve (finally) ported the londonmapbot Twitter bot to Mastodon. Like a mammoth rising from the ashes.
 TOOOOOOOT Twitter is burning to the ground, yada yada.
For example, it appears that the free API tier will disappear soon. Soon like… today. Oh wait, maybe not yet?1 Cool customer communication, brah.
Anyway, this news will obviously devastate contributors and fans of the mapbotverse Twitter list.
You don’t know what the mapbotverse is?</description>
    </item>
    
    <item>
      <title>Wrapping PokéAPI with {trapinch}</title>
      <link>https://www.rostrum.blog/2023/02/02/trapinch/</link>
      <pubDate>Thu, 02 Feb 2023 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2023/02/02/trapinch/</guid>
      <description>tl;dr I’ve used the {httr2} R package to create {trapinch}, a package that wraps PokéAPI for fetching Pokémon data.
 Update
I had found a couple of older, non-{httr2} PokéAPI wrappers for R (see footnotes), but had somehow missed one that already uses {httr2}: see Ash Baldry’s {pokeapi} package, which he wrote months ago!
  {httr} me baby one more time The {httr2} package lets you talk to the internet.</description>
    </item>
    
    <item>
      <title>Stiliyan Petrov: Jesus?</title>
      <link>https://www.rostrum.blog/2023/01/08/petrov/</link>
      <pubDate>Sun, 08 Jan 2023 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2023/01/08/petrov/</guid>
      <description>tl;dr In which I prove wrong a tweeted Opta football statistic, using R and Transfermarkt data. Oh wait, actually Opta were right. Ah, heck.
 Petrov Rescue Basically, for little reason, I dislike the style of the tweets on the Twitter feed for Opta1 (the company who do all the football stats).
What is so outrageous? Each tweet always ends in a single, summary word that makes me cringe.</description>
    </item>
    
    <item>
      <title>.-././--/---/.-./.../.</title>
      <link>https://www.rostrum.blog/2023/01/06/remorse/</link>
      <pubDate>Fri, 06 Jan 2023 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2023/01/06/remorse/</guid>
      <description>You may not believe it, but I am releasing this art under CC0. tl;dr {remorse} is a tiny R package that converts text to Morse Code to audio.
 Beat a dead morse In the last post I mentioned {sonify} for making R do little audible beeps and boops.
It reminded me of one (of many) unwritten micro-projects I’ve got kicking around in my brain: obviously you could use {sonify} to communicate Morse Code.</description>
    </item>
    
    <item>
      <title>Ding! Sound effects in {r.oguelike}</title>
      <link>https://www.rostrum.blog/2023/01/04/rogue-sfx/</link>
      <pubDate>Wed, 04 Jan 2023 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2023/01/04/rogue-sfx/</guid>
      <description>new wr — r.oguelike any% tenkeyless noglitch tl;dr The {r.oguelike} package—a toy roguelike microadventure for the R console—now has little sound effects thanks to {sonify}. Pew pew!
 The adventure continues? Apparently this is part 5 of the {r.oguelike} devlog. You can read earlier posts about:
 its inception creating simple procedural dungeons making an enemy chase the player 3D dungeons and continuous keypress inputs  Alas, this is also probably the last installment.</description>
    </item>
    
    <item>
      <title>Animate sprites in R with {pixeltrix}</title>
      <link>https://www.rostrum.blog/2022/12/11/pixeltrix-animate/</link>
      <pubDate>Sun, 11 Dec 2022 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2022/12/11/pixeltrix-animate/</guid>
      <description>tl;dr I’ve updated the {pixeltrix} package so you can create animated sprite gifs with a simple, interactive pixel editor from within R’s plot window.
 Pix all the right boxes The {pixeltrix} package—which I’ve written about before—lets you open an interactive R plot that you can click to turn ‘pixels’ on and off.
I created it for one purpose: to quickly create simple, blocky sprites for my {tamRgo} package, which lets you keep a persistent cyberpet on your computer (yes, really).</description>
    </item>
    
    <item>
      <title>Tamagotchi in R?</title>
      <link>https://www.rostrum.blog/2022/11/13/tamrgo/</link>
      <pubDate>Sun, 13 Nov 2022 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2022/11/13/tamrgo/</guid>
      <description>Hex logo: evolution line of a {tamRgo} digital pet (species Y, ‘hat guy’).  tl;dr I’ve written the concept R package {tamRgo} to simulate a persistent digital pet in your R console and I think it’s pretty neat.
 Had an oeuf? R is a game engine1. Don’t @ me2.
Turns out that R can keep a ‘save state’: developers can write a persistent file to the platform-independent path on a user’s machine resolved by tools::R_user_dir()3.</description>
    </item>
    
    <item>
      <title>Interactive pixel art in R with {pixeltrix}</title>
      <link>https://www.rostrum.blog/2022/09/24/pixeltrix/</link>
      <pubDate>Sat, 24 Sep 2022 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2022/09/24/pixeltrix/</guid>
      <description>tl;dr I’ve written {pixeltrix}, an R package that lets you select ‘pixels’ interactively from a plot window and returns your final image as a matrix. You could use it to design sprites, for example.
 Pixel perfect I’ve written before about creating very simple pixel art in R. To create a sprite of Link from The Legend of Zelda I had to write out by hand a vector that encoded its pixel values.</description>
    </item>
    
    <item>
      <title>You are a halfling, trying to harvest {potato}</title>
      <link>https://www.rostrum.blog/2022/09/13/potato/</link>
      <pubDate>Tue, 13 Sep 2022 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2022/09/13/potato/</guid>
      <description>tl;dr Play an interactive version of ‘Potato’—a one-page halfling-themed role-playing game (RPG) by Oliver Darkshire (Twitter, Patreon)—in your R console with the {potato} package.
 Potato? I’ve recently put together a GitHub repo to collect together a bunch of neat games that you can play. The twist? They were built using R.
Yes, R: ‘a FrEe SoFtWaRe EnViRoNmEnT fOr StAtIsTiCaL cOmPuTiNg AnD gRaPhIcS’.
I think R is best suited to either text-based user-input games on the R console, or via a more dedicated interface, like Shiny.</description>
    </item>
    
    <item>
      <title>EARL 22: {a11ytables} for better spreadsheets</title>
      <link>https://www.rostrum.blog/2022/09/07/earl22/</link>
      <pubDate>Wed, 07 Sep 2022 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2022/09/07/earl22/</guid>
      <description>Please don’t sue me for my fan art, Microsoft.  tl;dr I presented some slides at the EARL 2022 conference about {a11ytables}: an R package that helps automate the production of reproducible and accessible spreadsheets, with a focus on publication of government statistics.
 Counting sheets The UK government publishes a lot of spreadsheets that contain statistical tables. Compared to each other—and to themselves over time—these files are often:
 inconsistent in structure (e.</description>
    </item>
    
    <item>
      <title>Two RStudio Addins: {quartostamp} and {snorkel}</title>
      <link>https://www.rostrum.blog/2022/08/11/quartostamp-snorkel/</link>
      <pubDate>Thu, 11 Aug 2022 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2022/08/11/quartostamp-snorkel/</guid>
      <description>tl;dr I made a couple of packages that contain RStudio Addins: {quartostamp} inserts little divs and classes into your Quarto documents, while {snorkel} inserts Rd tags into your {roxygen2} function documentation.
 Al Addin RStudio Addins let you access R functions interactively at the click of a button (or with a keyboard shortcut, or via the RStudio command palette). I particularly like them for easy sharing of insertable pre-written code.</description>
    </item>
    
    <item>
      <title>Fixing londonmapbot for {rtweet} v1.0</title>
      <link>https://www.rostrum.blog/2022/07/22/mapbot-rtweet-v1/</link>
      <pubDate>Fri, 22 Jul 2022 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2022/07/22/mapbot-rtweet-v1/</guid>
      <description>tl;dr Version 1.0 of the {rtweet} package has been released with breaking changes. I’ve updated the R script of londonmapbot so that its scheduled GitHub Action doesn’t fail.
 New hymn sheet I wrote a Twitter bot a while ago called londonmapbot. See the recent talk at LondonR or the blogpost about its inception.
Basically, an R script runs on schedule via a GitHub Action. It generates a random point in Greater London and pulls a corresponding satellite image from MapBox.</description>
    </item>
    
    <item>
      <title>Stop opening the same RStudio Project twice</title>
      <link>https://www.rostrum.blog/2022/07/08/rproj-dupes/</link>
      <pubDate>Fri, 08 Jul 2022 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2022/07/08/rproj-dupes/</guid>
      <description>tl;dr I keep opening more than one instance of the same RStudio Project and it’s annoying me, so I wrote a function to warn me on startup.
 Double trouble Sometimes I write code in an RStudio Project and then go and do something else. My memory is terrible, so later I might open a second instance of the same project and wonder what happened to that code I’d written before.</description>
    </item>
    
    <item>
      <title>An isometric dungeon chase in R</title>
      <link>https://www.rostrum.blog/2022/06/28/isometric-dungeon/</link>
      <pubDate>Tue, 28 Jun 2022 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2022/06/28/isometric-dungeon/</guid>
      <description>tl;dr I made an interactive isometric-dungeon demo in R, thanks to {r.oguelike} for dungeon building and mikefc’s {isocubes} for drawing isometric cube graphics and {eventloop} for continuous keypress inputs.
 A new dimension Mike (AKA mikefc, AKA coolbutuseless) is well known for off-label R creations that desecrate the assumption that ‘R is a language for statistical computing’.
Mike revealed the {isocubes} package recently, which lets you print objects made of isometric cubes to a graphics device.</description>
    </item>
    
    <item>
      <title>Automated pathfinding in {r.oguelike}</title>
      <link>https://www.rostrum.blog/2022/06/10/basic-search/</link>
      <pubDate>Fri, 10 Jun 2022 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2022/06/10/basic-search/</guid>
      <description>The enemy E chases the player @ who collects gold $ and and an apple a  tl;dr I’ve experimented with simple breadth-first search for {r.oguelike}, a work-in-progress game-in-a-package for R. This means enemies can pathfind and chase down the player character.
 Hunting the hunter I’ve written before about the inception of {r.oguelike}, a concept for a roguelike game written in R, along with a simple method for creating procedural tile-based cave-like dungeons.</description>
    </item>
    
    <item>
      <title>Down with R&#39;s assignment flamewars!</title>
      <link>https://www.rostrum.blog/2022/06/07/assign-down/</link>
      <pubDate>Tue, 07 Jun 2022 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2022/06/07/assign-down/</guid>
      <description>tl;dr All &amp;lt;- vs = flamewars are nullified forever with the introduction of my new ‘down assign’ operator for the R language:
| v  Get down I no longer set my calendar by the movement of the Earth around the hottest point in the solar system. I now set it by the recurrent emergence of the hottest take in the solar system: that R’s assignment operator &amp;lt;- is garbage and R users should be ashamed of themselves.</description>
    </item>
    
    <item>
      <title>Try R v4.2 in your browser</title>
      <link>https://www.rostrum.blog/2022/06/01/try-r/</link>
      <pubDate>Wed, 01 Jun 2022 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2022/06/01/try-r/</guid>
      <description>tl;dr I made it so you can launch RStudio in the browser with R v4.2 installed—thanks to the Binder service—so you can try out the new pipe |&amp;gt; and anonymous-function \() syntax.
 Just browsering Want to try R v4.2 from the safety of your browser without installing any software?
Maybe your organisation hasn’t yet moved to version 4.1 or higher, but you want a chance to noodle around with its cool new syntax that all the hip young trendsetters are yakking about.</description>
    </item>
    
    <item>
      <title>Simple procedural dungeons in R</title>
      <link>https://www.rostrum.blog/2022/05/01/dungeon/</link>
      <pubDate>Sun, 01 May 2022 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2022/05/01/dungeon/</guid>
      <description>Three iterations to expand four randomly-placed floor tiles into a cavern.  tl;dr I wrote a (very!) basic procedure to generate randomised ASCII-character tile-based dungeons for {r.oguelike}, an in-development roguelike-game-in-a-package for R.
 Generate to accumulate I wrote recently about the {r.oguelike} R package, which contains the beginnings of a roguelike game written entirely in R.
 A key element of roguelike games is that the dungeons should be procedurally generated1 so that the player gets a different one each time they play.</description>
    </item>
    
    <item>
      <title>Turn the {tide} on R&#39;s secret spreadsheet editor</title>
      <link>https://www.rostrum.blog/2022/04/27/tide/</link>
      <pubDate>Wed, 27 Apr 2022 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2022/04/27/tide/</guid>
      <description>tl;dr R has an interactive spreadsheet editor for dataframes that you can access with edit(). I made the function tide::tide() to generate automatically some code that will reproduce the changes you made manually with edit().
 Edit R’s edit() function invokes a text editor so you can amend an R object.1
Something special happens If you edit() a data.frame object: a somewhat-janky interactive spreadsheet-like editor appears in a new window.</description>
    </item>
    
    <item>
      <title>Building a {r.oguelike} in R</title>
      <link>https://www.rostrum.blog/2022/04/25/r.oguelike-dev/</link>
      <pubDate>Mon, 25 Apr 2022 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2022/04/25/r.oguelike-dev/</guid>
      <description>tl;dr I started writing a roguelike game in an R package called {r.oguelike}.
 Rogue… like? There’s loads of video game genres: beat ’em up, platformer, rhythm, MMORPG, sports, puzzle. Have you heard of roguelikes?
The name is literal: they’re games that play like Rogue, a legendary dungeon-explorer from 1980 that set the bar for role-playing games.
Perhaps most recognisably, it used ASCII text as ‘graphics’: the player controls a character denoted by the at symbol (@), while floor tiles are made of periods (.</description>
    </item>
    
    <item>
      <title>Interactive maps of Hastings Half Marathon</title>
      <link>https://www.rostrum.blog/2022/03/31/hastings-half/</link>
      <pubDate>Thu, 31 Mar 2022 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2022/03/31/hastings-half/</guid>
      <description>tl;dr I made a small R Markdown site that contains interactive maps of the route of the Hastings Half Marathon.
 Half distance, double delay I signed up for the Hastings Half Marathon in March 2019 and finally got to run it in March 2022 after two years of pandemic-related cancellations.
I managed a time of 1:44:151 in terrific conditions and raised money for Sands, the stillbirth and neonatal death charity (at time of writing you can still donate).</description>
    </item>
    
    <item>
      <title>Reproducible {distill} posts with {renv} profiles</title>
      <link>https://www.rostrum.blog/2022/03/15/renv-profiles/</link>
      <pubDate>Tue, 15 Mar 2022 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2022/03/15/renv-profiles/</guid>
      <description>tl;dr I think you can use the {renv} package to create separate reproducible environment profiles for each of your {distill} blog posts.
 Profiled Functionality comes and goes in R packages. How do you deal with that in the context of a blog built with R? What if you need to go back and change something in a post from four years ago?1
I built a demo {distill} blog to test whether the {renv} package might be a viable solution for reproducibility on a post-by-post basis.</description>
    </item>
    
    <item>
      <title>Add in an RStudio Addin to add in backticks</title>
      <link>https://www.rostrum.blog/2022/02/19/backtick/</link>
      <pubDate>Sat, 19 Feb 2022 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2022/02/19/backtick/</guid>
      <description>tl;dr I wrote a tiny R package called {backtick}, which contains an RStudio Addin with a handful of functions for inserting backticks into your R scripts and R Markdown documents (yes, really).
 Plus one RStudio Addins let you select an R function from a dropdown menu in the RStudio IDE. They’re often functions that you don’t need in your executed script, but can make your life easier by performing some kind of supportive action.</description>
    </item>
    
    <item>
      <title>londonmapbot at LondonR</title>
      <link>https://www.rostrum.blog/2022/02/12/mapbotr-londonr/</link>
      <pubDate>Sat, 12 Feb 2022 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2022/02/12/mapbotr-londonr/</guid>
      <description>tl;dr I spoke at a LondonR hootenanny1 (in-person!) about how to create your own simple Twitter bot powered by GitHub Actions and {rtweet}, just like my @londonmapbot creation.
 The mapbotverse I created a Twitter bot called @londonmapbot. It uses the {rtweet} package by Mike Kearney to tweet out a random satellite image of Greater London via Mapbox, scheduled and executed by GitHub Actions.
I’ve written about this before:</description>
    </item>
    
    <item>
      <title>Introduce me to your {soccercolleagues}</title>
      <link>https://www.rostrum.blog/2022/02/04/soccercolleagues/</link>
      <pubDate>Fri, 04 Feb 2022 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2022/02/04/soccercolleagues/</guid>
      <description>Lee Bowyer and Kieran Dyer: ‘team mates’ (BBC via Giphy)  tl;dr I made a quick R package called {soccercolleagues} that for a given player, or players, lets you (a) find all their former team mates in common and (b) sample from them for quiz-based purposes.
 Lord of the Ings Quiz question:
 Which current Premier League footballer has been team mates with each of the following: Kevin Phillips, Mark Viduka, Dejan Lovren, Danny Ings and Nicky Butt?</description>
    </item>
    
    <item>
      <title>Impress with {keypress}</title>
      <link>https://www.rostrum.blog/2022/01/19/keypress/</link>
      <pubDate>Wed, 19 Jan 2022 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2022/01/19/keypress/</guid>
      <description>tl;dr The {keypress} R package by Gábor Csárdi records input from a simple keyboard-button press. You can use this to control games, like the ones in the tiny {hokey} package.
 Whaddup gameRs? I’ve made some silly games in R using the {R6} package for encapsulated OOP. For example:
 {ActionSquirrel} a 2D action-adventure game (blog, source) {safar6} a text-based recreation of Pokémon’s Safari Zone (blog, source) an ‘Automatic Bell Dispenser’ to mimics the cash machine used in Animal Crossing: New Horizons (blog)  In {ActionSquirrel} you move a character around a 2D grid.</description>
    </item>
    
    <item>
      <title>Wordle, twirdle and eldrow</title>
      <link>https://www.rostrum.blog/2022/01/14/wordle/</link>
      <pubDate>Fri, 14 Jan 2022 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2022/01/14/wordle/</guid>
      <description>tl;dr Two toy R functions for playing with Wordle results: twirdle() extracts gameplay data from tweets, and eldrow() finds potential prior guesses given the answer.
 What’s the Wordle? Nothing is more zeitgeisty right now than Wordle, a once-a-day web-based five-letter-word-guessing puzzle-logic game.
The app lets you copy your results in a consistent format for pasting into a tweet or whatever.
 It begins with a string of meta information, ‘Wordle X Y/Z’, where X is the edition number, Y is the attempts taken and Z is the maximum allowed guesses.</description>
    </item>
    
    <item>
      <title>The most popular Animal Crossing villagers</title>
      <link>https://www.rostrum.blog/2022/01/07/acnh-swipe-results/</link>
      <pubDate>Fri, 07 Jan 2022 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2022/01/07/acnh-swipe-results/</guid>
      <description>tl;dr I once wrote an R Shiny app to run a popularity contest for Animal Crossing villagers. Surprise: cute ones are favourites.
 Swiping {shinyswipe} code A while back I wrote a Shiny app (site, source, blogpost) for TidyTuesday to replicate a Tinder-like experience using villagers from Nintendo’s Animal Crossing New Horizons game. It uses the swipe mechanic from Nick Strayer’s {shinysense} package to gauge popularity: left for a ‘dislike’, right for a ‘like’.</description>
    </item>
    
    <item>
      <title>Your workout route (in three dimensions!)</title>
      <link>https://www.rostrum.blog/2021/12/30/gpx3d/</link>
      <pubDate>Thu, 30 Dec 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/12/30/gpx3d/</guid>
      <description>tl;dr You can use R to extract coordinate and elevation data from a GPX file and then plot it as an interactive 3D object. I put some functions in the tiny R package {gpx3d} to help do this.
 Elevate to accumulate I’ve seen recently on Twitter some people using Marcus Volz’s {strava} R package to create pleasing visualisations of their running routes as small-multiples.</description>
    </item>
    
    <item>
      <title>R has obscenely long function names</title>
      <link>https://www.rostrum.blog/2021/11/27/long-fns/</link>
      <pubDate>Sat, 27 Nov 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/11/27/long-fns/</guid>
      <description>tl;dr Use ls() on a package name in the form &#34;package:base&#34; to see all the objects it contains. I’ve done this to find the longest (and shortest) function names in base R and the {tidyverse} suite.
 Naming things I try to keep to a few rules when creating function names, like:
 use a verb to make clear the intended action, like get_badge() from {badgr} start functions with a prefix to make autocomplete easier, like the dh_*() functions from {dehex} try to be descriptive but succinct, like r2cron() from {dialga}  It can be tricky to be succinct.</description>
    </item>
    
    <item>
      <title>{itdepends} on {lubridate}</title>
      <link>https://www.rostrum.blog/2021/11/27/lubridate-fns/</link>
      <pubDate>Sat, 27 Nov 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/11/27/lubridate-fns/</guid>
      <description>tl;dr I used {itdepends} to see how CRAN packages depend on {lubridate}, which was not removed from CRAN recently.
 Lubrigate A test failure in {lubridate} led to hundreds of R developers being emailed about its potential expulsion from CRAN, which also threatened the hundreds of packages that depend on it.
I see the benefit of minimising dependencies. I also understand the drawbacks of reinventing the wheel. Maybe {lubridate} is a good dependency: a simple API, part of the popular {tidyverse}, and it handles stuff you can’t be bothered with (like what’s 29 February plus one year?</description>
    </item>
    
    <item>
      <title>Deep fried memes in R</title>
      <link>https://www.rostrum.blog/2021/11/07/deepfry/</link>
      <pubDate>Sun, 07 Nov 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/11/07/deepfry/</guid>
      <description>tl;dr Now you can use a function to deep fry memes in R.
 Extra crispy You can make memes in R with packages like Guangchang Yu’s {meme}. You could even post them to Twitter with #RStatsMemes for @rstatsmemes to find.
However, it’s no longer enough to present memes as-is. They must be deep-fried to become modern and ironic. It will help people think that your meme is so edgy that it’s been re-saved thousands of times.</description>
    </item>
    
    <item>
      <title>Get coordinates from fictitious maps</title>
      <link>https://www.rostrum.blog/2021/11/04/kanto-locator/</link>
      <pubDate>Thu, 04 Nov 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/11/04/kanto-locator/</guid>
      <description>tl;dr Use the locator() function in R to interactively extract arbitrary coordinates from images of imaginary maps. I extracted points of interest from Kanto in the original Pokémon games.
 On the road to Viridian City There are lots of interesting fictitious maps. For example, Middle Earth from Lord of the Rings, Hyrule from The Legend of Zelda and Sodor from Thomas the Tank Engine.
This is excellent fodder for fan-made recreations.</description>
    </item>
    
    <item>
      <title>Reveal a hidden gorilla with {magick}</title>
      <link>https://www.rostrum.blog/2021/10/05/gorilla/</link>
      <pubDate>Tue, 05 Oct 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/10/05/gorilla/</guid>
      <description>tl;dr You can convert a line drawing to datapoints with a sprinkle of {magick}.
 Ape escape Have you seen that video where you’re so focused on counting basketball passes that you fail to see the gorilla moving across the screen?
This kind of selective attention was studied by two researchers, Yanai and Lercher, who provided subjects with a dataset that looked like a gorilla when plotted. The gorilla was found less often if the subjects were also given a hypothesis to investigate.</description>
    </item>
    
    <item>
      <title>{ActionSquirrel}: a game in the R console</title>
      <link>https://www.rostrum.blog/2021/10/03/squirrel/</link>
      <pubDate>Sun, 03 Oct 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/10/03/squirrel/</guid>
      <description>tl;dr I created the {ActionSquirrel} package. It contains an {R6}-powered playable game for the R console, which includes images (well, emoji) and sounds (thanks to the {sonify} package).
 GameRs I’ve written before about the idea of games that you can play in R. For example, I replicated a text-based version of Pokemon Blue’s Safari Zone. This was made possible by using the {R6} package by Winston Chang, which provides an implementation of object-oriented programming (OOP) in R.</description>
    </item>
    
    <item>
      <title>Wot3LdnEmojis</title>
      <link>https://www.rostrum.blog/2021/09/14/wot3ldnemojis/</link>
      <pubDate>Tue, 14 Sep 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/09/14/wot3ldnemojis/</guid>
      <description>tl;dr I made Wot3LdnEmojis: a London-only clone of What3Emojis using London-related emojis and very little R code.
 {&#34;x&#34;:{&#34;options&#34;:{&#34;crs&#34;:{&#34;crsClass&#34;:&#34;L.CRS.EPSG3857&#34;,&#34;code&#34;:null,&#34;proj4def&#34;:null,&#34;projectedBounds&#34;:null,&#34;options&#34;:{}}},&#34;calls&#34;:[{&#34;method&#34;:&#34;addProviderTiles&#34;,&#34;args&#34;:[&#34;CartoDB.Voyager&#34;,null,&#34;Light&#34;,{&#34;errorTileUrl&#34;:&#34;&#34;,&#34;noWrap&#34;:false,&#34;detectRetina&#34;:false}]},{&#34;method&#34;:&#34;addProviderTiles&#34;,&#34;args&#34;:[&#34;CartoDB.DarkMatter&#34;,null,&#34;Dark&#34;,{&#34;errorTileUrl&#34;:&#34;&#34;,&#34;noWrap&#34;:false,&#34;detectRetina&#34;:false}]},{&#34;method&#34;:&#34;addPolygons&#34;,&#34;args&#34;:[[[[{&#34;lng&#34;:[-0.123496009397296,-0.126358231752693,-0.128947576964166,-0.126305021422331,-0.126083359195881,-0.124319666893308,-0.123496009397296],&#34;lat&#34;:[51.2868026579228,51.291760167579,51.2917602026899,51.2895302647445,51.2883864454243,51.286760167579,51.2868026579228]}]],[[{&#34;lng&#34;:[-0.114679031779645,-0.1148112263689,-0.114968069395485,-0.114621772536795,-0.114679031779645],&#34;lat&#34;:[51.2917601707548,51.291760167579,51.2914885372828,51.2915342744955,51.2917601707548]}]],[[{&#34;lng&#34;:[0.0651202581361202,0.0641673570798837,0.0583938543879874,0.057620653752423,0.058482813995065,0.0651202581361202],&#34;lat&#34;:[51.29010982277,51.291760167579,51.291760167579,51.2904210585141,51.2893550694577,51.29010982277]}]],[[{&#34;lng&#34;:[0.0788246547338825,0.0757143624636762,0.0756632090016606,0.0788246547338825],&#34;lat&#34;:[51.2917602028538,51.291760167579,51.2916715772773,51.2917602028538]}]],[[{&#34;lng&#34;:[-0.114968069395485,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693,-0.123496009397296,-0.117802280391656,-0.117007802387731,-0.115756214533333,-0.115143801231889,-0.114968069395485],&#34;lat&#34;:[51.2914885372828,51.291760167579,51.296760167579,51.296760167579,51.291760167579,51.2868026579228,51.2870962223836,51.2893756971952,51.2907296877202,51.291465327047,51.2914885372828]}]],[[{&#34;lng&#34;:[-0.100324070091651,-0.10037746963916,-0.106150972331056,-0.10794058540689,-0.103029694072944,-0.101167443258743,-0.100324070091651],&#34;lat&#34;:[51.2966676873797,51.296760167579,51.296760167579,51.2936606034651,51.2958605317057,51.2962880894571,51.2966676873797]}]],[[{&#34;lng&#34;:[0.0209183931221314,0.0208660868906617,0.0150925841987655,0.0139129046629646,0.014982101952818,0.019073953605324,0.020846748391814,0.0209183931221314],&#34;lat&#34;:[51.296669580847,51.296760167579,51.296760167579,51.2947170428471,51.291787268235,51.2916853211847,51.2955729699788,51.296669580847]}]],[[{&#34;lng&#34;:[0.057620653752423,0.0583938543879874,0.0555071030420393,0.049733600350143,0.0480073596617935,0.048468492596696,0.050762350997542,0.054362508157335,0.056022775206809,0.057620653752423],&#34;lat&#34;:[51.2904210585141,51.291760167579,51.296760167579,51.296760167579,51.2937703704347,51.2937232975289,51.2939879697788,51.2920903043243,51.292396554143,51.2904210585141]}]],[[{&#34;lng&#34;:[0.0756632090016606,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0641673570798837,0.0651202581361202,0.067535956560554,0.073340929380418,0.0756632090016606],&#34;lat&#34;:[51.2916715772773,51.291760167579,51.296760167579,51.296760167579,51.291760167579,51.29010982277,51.2903844160196,51.2916064217991,51.2916715772773]}]],[[{&#34;lng&#34;:[0.0902994852246283,0.0901481191934168,0.0843746165015206,0.0815316540896869,0.081552600521957,0.085665360086709,0.089234058550857,0.0902994852246283],&#34;lat&#34;:[51.296498022739,51.296760167579,51.296760167579,51.2918360209027,51.2918366073292,51.2930853921699,51.2960874794179,51.296498022739]}]],[[{&#34;lng&#34;:[-0.142622391367856,-0.143678739828382,-0.149452242520278,-0.15024796835938,-0.150020008877334,-0.149522791048116,-0.148478303106919,-0.14565167673572,-0.144878676987116,-0.144449498023754,-0.143585541366208,-0.142859732669491,-0.142622391367856],&#34;lat&#34;:[51.2999306529717,51.301760167579,51.301760167579,51.3003820458212,51.3002877800908,51.3007025801809,51.3007058392263,51.2998301674835,51.3007145387341,51.3005431523958,51.3012623720442,51.2999820057863,51.2999306529717]}]],[[{&#34;lng&#34;:[-0.128947576964166,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.13420913597993,-0.131136328383879,-0.131485760797613,-0.130557910319479,-0.128947576964166],&#34;lat&#34;:[51.2917602026899,51.291760167579,51.296760167579,51.301760167579,51.301760167579,51.2981621196167,51.2954752920977,51.2947129049532,51.2931189577608,51.2917602026899]}]],[[{&#34;lng&#34;:[-0.10794058540689,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848,-0.1148112263689,-0.114679031779645,-0.114850194648702,-0.111079750965304,-0.10794058540689],&#34;lat&#34;:[51.2936606034651,51.296760167579,51.301760167579,51.301760167579,51.296760167579,51.291760167579,51.2917601707548,51.2924354204009,51.2922541357854,51.2936606034651]}]],[[{&#34;lng&#34;:[-0.0915043653555524,-0.0917172156013153,-0.0974907182932116,-0.10037746963916,-0.100324070091651,-0.094351807054199,-0.095803276270076,-0.097272222100241,-0.097404772398373,-0.096058199644826,-0.094414357092227,-0.0915043653555524],&#34;lat&#34;:[51.3013915397566,51.301760167579,51.301760167579,51.296760167579,51.2966676873797,51.2993554193065,51.2996029801456,51.3002968200147,51.3011155258148,51.3015198881403,51.3006145274444,51.3013915397566]}]],[[{&#34;lng&#34;:[0.0139129046629646,0.0150925841987655,0.0122058328528174,0.0113745304484458,0.012130940844061,0.0139129046629646],&#34;lat&#34;:[51.2947170428471,51.296760167579,51.301760167579,51.3017601850735,51.2995990613608,51.2947170428471]}]],[[{&#34;lng&#34;:[0.024611283723884,0.0237528382366098,0.0208660868906617,0.0209183931221314,0.020925564642928,0.023571622385666,0.024611283723884],&#34;lat&#34;:[51.3017601855455,51.301760167579,51.296760167579,51.296669580847,51.2967793469217,51.299704915099,51.3017601855455]}]],[[{&#34;lng&#34;:[0.0480073596617935,0.049733600350143,0.0468468490041948,0.0422791184374908,0.042775203372255,0.043065355159352,0.044270815984419,0.043285500800097,0.042369017803356,0.044739628121188,0.045704141943908,0.0480073596617935],&#34;lat&#34;:[51.2937703704347,51.296760167579,51.301760167579,51.3017601910315,51.3009856891721,51.2990552404371,51.2985818224996,51.2965828003337,51.2926742363361,51.2930879204936,51.2940054566176,51.2937703704347]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879874,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879874,0.0555071030420393],&#34;lat&#34;:[51.296760167579,51.291760167579,51.291760167579,51.296760167579,51.301760167579,51.301760167579,51.296760167579]}]],[[{&#34;lng&#34;:[0.0815316540896869,0.0843746165015206,0.0814878651555725,0.0757143624636762,0.0728276111177281,0.0757143624636762,0.0788246547338825,0.0815316540896869],&#34;lat&#34;:[51.2918360209027,51.296760167579,51.301760167579,51.301760167579,51.296760167579,51.291760167579,51.2917602028538,51.2918360209027]}]],[[{&#34;lng&#34;:[0.0904636868265664,0.0901481191934168,0.0902994852246283,0.091156811518829,0.0904636868265664],&#34;lat&#34;:[51.297306803237,51.296760167579,51.296498022739,51.2968283659094,51.297306803237]}]],[[{&#34;lng&#34;:[-0.15024796835938,-0.149452242520278,-0.152338993866226,-0.15715049685251,-0.15718924026343,-0.156441976613494,-0.154535393650826,-0.15504955597946,-0.157761248131086,-0.156710236902809,-0.155343993131709,-0.153386898874337,-0.15024796835938],&#34;lat&#34;:[51.3003820458212,51.301760167579,51.306760167579,51.3067601872879,51.3067110852688,51.3064547052907,51.3064507692297,51.3057934026274,51.30442963062,51.3035911484654,51.3012764681264,51.3016799709696,51.3003820458212]}]],[[{&#34;lng&#34;:[-0.13420913597993,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382,-0.142622391367856,-0.140881664321842,-0.137340346814394,-0.136354713169899,-0.134458209886925,-0.13420913597993],&#34;lat&#34;:[51.2981621196167,51.301760167579,51.306760167579,51.306760167579,51.301760167579,51.2999306529717,51.2995539989878,51.3007828173961,51.2982698072323,51.2983798896657,51.2981621196167]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.301760167579,51.296760167579,51.296760167579,51.301760167579,51.306760167579,51.306760167579,51.301760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.301760167579,51.296760167579,51.296760167579,51.301760167579,51.306760167579,51.306760167579,51.301760167579]}]],[[{&#34;lng&#34;:[-0.0888319761916912,-0.0904465356798874,-0.08973312349397,-0.088759377311766,-0.0888319761916912],&#34;lat&#34;:[51.3067575491321,51.3039611927371,51.3039762159061,51.3051060327817,51.3067575491321]}],[{&#34;lng&#34;:[-0.0909062293518094,-0.0917172156013153,-0.0915043653555524,-0.091195538640116,-0.0909062293518094],&#34;lat&#34;:[51.3031649541757,51.301760167579,51.3013915397566,51.3014739954373,51.3031649541757]}]],[[{&#34;lng&#34;:[0.0122058328528174,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528174],&#34;lat&#34;:[51.301760167579,51.296760167579,51.296760167579,51.301760167579,51.306760167579,51.306760167579,51.301760167579]}]],[[{&#34;lng&#34;:[0.0402745961275661,0.0381865949663505,0.0344552595388093,0.036308885849218,0.0402745961275661],&#34;lat&#34;:[51.3031437596019,51.306760167579,51.3067602000251,51.3058637035499,51.3031437596019]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879874,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.301760167579,51.296760167579,51.296760167579,51.301760167579,51.306760167579,51.306760167579,51.301760167579]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.301760167579,51.296760167579,51.296760167579,51.301760167579,51.306760167579,51.306760167579,51.301760167579]}]],[[{&#34;lng&#34;:[0.0845674939272797,0.0843746165015205,0.0838463887161849,0.084849750290745,0.0845674939272797],&#34;lat&#34;:[51.3067601721622,51.306760167579,51.3058453369543,51.3060454427187,51.3067601721622]}],[{&#34;lng&#34;:[0.0833431134074225,0.0814878651555725,0.0843746165015206,0.0901481191934168,0.0904636868265664,0.086310873362851,0.085404438663331,0.0833431134074225],&#34;lat&#34;:[51.3049736850489,51.301760167579,51.296760167579,51.296760167579,51.297306803237,51.3001730361736,51.3025201789409,51.3049736850489]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.306760167579,51.301760167579,51.301760167579,51.306760167579,51.311760167579,51.311760167579,51.306760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.306760167579,51.301760167579,51.301760167579,51.306760167579,51.311760167579,51.311760167579,51.306760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.306760167579,51.301760167579,51.301760167579,51.306760167579,51.311760167579,51.311760167579,51.306760167579]}]],[[{&#34;lng&#34;:[-0.0888322254133092,-0.0917172156013153,-0.0974907182932116,-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0909062293518094,-0.090903865915519,-0.091199081606125,-0.090743937142921,-0.0904465356798874,-0.0888319761916912,-0.0888322254133092],&#34;lat&#34;:[51.3067632183478,51.311760167579,51.311760167579,51.306760167579,51.301760167579,51.301760167579,51.3031649541757,51.3031787675032,51.3033930964871,51.3039549287177,51.3039611927371,51.3067575491321,51.3067632183478]}]],[[{&#34;lng&#34;:[0.0113745304484458,0.0122058328528174,0.0150925841987655,0.0122058328528174,0.00883677121369093,0.008363177984709,0.0113745304484458],&#34;lat&#34;:[51.3017601850735,51.301760167579,51.306760167579,51.311760167579,51.3117602020706,51.3103617890996,51.3017601850735]}]],[[{&#34;lng&#34;:[0.0322471341975372,0.0295263409285061,0.0237528382366098,0.0208660868906617,0.0237528382366098,0.024611283723884,0.024811352617451,0.02794991487908,0.030253792093897,0.0322471341975372],&#34;lat&#34;:[51.3070476468443,51.311760167579,51.311760167579,51.306760167579,51.301760167579,51.3017601855455,51.3021556726306,51.3046859368912,51.3055588065141,51.3070476468443]}]],[[{&#34;lng&#34;:[0.0422791184374908,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505,0.0402745961275661,0.040889700866591,0.041491272670345,0.0422791184374908],&#34;lat&#34;:[51.3017601910315,51.301760167579,51.306760167579,51.311760167579,51.311760167579,51.306760167579,51.3031437596019,51.3027218395894,51.3029901401499,51.3017601910315]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879874,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879874,0.0555071030420393],&#34;lat&#34;:[51.306760167579,51.301760167579,51.301760167579,51.306760167579,51.311760167579,51.311760167579,51.306760167579]}]],[[{&#34;lng&#34;:[0.0838463887161849,0.0843746165015205,0.0814878651555724,0.0757143624636762,0.0728276111177281,0.0757143624636762,0.0814878651555725,0.0833431134074225,0.082788083342219,0.0838463887161849],&#34;lat&#34;:[51.3058453369543,51.306760167579,51.311760167579,51.311760167579,51.306760167579,51.301760167579,51.301760167579,51.3049736850489,51.3056342622727,51.3058453369543]}]],[[{&#34;lng&#34;:[-0.15715049685251,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.158887983352493,-0.157195619272857,-0.158356609796504,-0.156254239384433,-0.154341415939726,-0.15715049685251],&#34;lat&#34;:[51.3067601872879,51.306760167579,51.311760167579,51.316760167579,51.316760167579,51.3154170990781,51.3133919020641,51.3109875245064,51.3104229760797,51.3103200023472,51.3067601872879]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.311760167579,51.306760167579,51.306760167579,51.311760167579,51.316760167579,51.316760167579,51.311760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.311760167579,51.306760167579,51.306760167579,51.311760167579,51.316760167579,51.316760167579,51.311760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.311760167579,51.306760167579,51.306760167579,51.311760167579,51.316760167579,51.316760167579,51.311760167579]}]],[[{&#34;lng&#34;:[-0.0830450261038761,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153,-0.0888322254133092,-0.088852303639953,-0.08843041477757,-0.086604687039584,-0.081958900369167,-0.081920118076002,-0.084829324977947,-0.083593396749696,-0.083670599262686,-0.0830450261038761],&#34;lat&#34;:[51.3167394971462,51.316760167579,51.316760167579,51.311760167579,51.3067632183478,51.3072199469857,51.3076024767936,51.3088604445002,51.3106486325074,51.312610238005,51.3158683031148,51.3163255984755,51.3166074317092,51.3167394971462]}]],[[{&#34;lng&#34;:[0.0122058328528174,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528174],&#34;lat&#34;:[51.311760167579,51.306760167579,51.306760167579,51.311760167579,51.316760167579,51.316760167579,51.311760167579]}]],[[{&#34;lng&#34;:[0.0344552595388093,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061,0.0322471341975372,0.0328813849983,0.0344552595388093],&#34;lat&#34;:[51.3067602000251,51.306760167579,51.311760167579,51.316760167579,51.316760167579,51.311760167579,51.3070476468443,51.3075213455855,51.3067602000251]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879874,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.311760167579,51.306760167579,51.306760167579,51.311760167579,51.316760167579,51.316760167579,51.311760167579]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.311760167579,51.306760167579,51.306760167579,51.311760167579,51.316760167579,51.316760167579,51.311760167579]}]],[[{&#34;lng&#34;:[0.0861301885176408,0.0843746165015206,0.0814878651555724,0.0843746165015205,0.0845674939272797,0.084058228051717,0.084720197976898,0.083543482810796,0.085042062442553,0.085613323885227,0.085000758839537,0.0861301885176408],&#34;lat&#34;:[51.3167601976117,51.316760167579,51.311760167579,51.306760167579,51.3067601721622,51.3080496769605,51.3083463806288,51.3105283575015,51.3125988564995,51.3147847520326,51.3160232328196,51.3167601976117]}]],[[{&#34;lng&#34;:[-0.158887983352493,-0.158112496558122,-0.160129761214404,-0.161905507906968,-0.161203157312041,-0.160507311075886,-0.159606882439206,-0.159340017451377,-0.158887983352493],&#34;lat&#34;:[51.3154170990781,51.316760167579,51.3202542946336,51.3196277471973,51.3175250107592,51.3168746845213,51.3171069494188,51.3159579991901,51.3154170990781]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.316760167579,51.311760167579,51.311760167579,51.316760167579,51.321760167579,51.321760167579,51.316760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.316760167579,51.311760167579,51.311760167579,51.316760167579,51.321760167579,51.321760167579,51.316760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.316760167579,51.311760167579,51.311760167579,51.316760167579,51.321760167579,51.321760167579,51.316760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.316760167579,51.311760167579,51.311760167579,51.316760167579,51.321760167579,51.321760167579,51.316760167579]}]],[[{&#34;lng&#34;:[-0.0737191263325108,-0.0743967075256265,-0.0801702102175228,-0.0830569615634709,-0.0830450261038761,-0.082188081642661,-0.081364248142975,-0.080220251269911,-0.07885368213427,-0.078895903711652,-0.07589313208078,-0.0737191263325108],&#34;lat&#34;:[51.3205866667949,51.321760167579,51.321760167579,51.316760167579,51.3167394971462,51.3169204009897,51.3167864009915,51.3178234074732,51.3181418270351,51.3197756042294,51.3200608461433,51.3205866667949]}]],[[{&#34;lng&#34;:[-0.056830549201211,-0.0570761994499377,-0.0628497021418341,-0.0646374546908552,-0.064021209956293,-0.062105999465511,-0.060684708124115,-0.058419454399345,-0.056830549201211],&#34;lat&#34;:[51.3213347340591,51.321760167579,51.321760167579,51.3186638261948,51.31863765798,51.3192012932081,51.3200653897143,51.3203839532526,51.3213347340591]}]],[[{&#34;lng&#34;:[0.00883677121369093,0.0122058328528174,0.0150925841987655,0.0122058328528174,0.0064323301609211,0.00527376284405607,0.005517289685498,0.006552377530934,0.010320366331763,0.00883677121369093],&#34;lat&#34;:[51.3117602020706,51.311760167579,51.316760167579,51.321760167579,51.321760167579,51.3197536095923,51.3184439683105,51.3156564192947,51.3161403565848,51.3117602020706]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.316760167579,51.311760167579,51.311760167579,51.316760167579,51.321760167579,51.321760167579,51.316760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.316760167579,51.311760167579,51.311760167579,51.316760167579,51.321760167579,51.321760167579,51.316760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879874,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879874,0.0555071030420393],&#34;lat&#34;:[51.316760167579,51.311760167579,51.311760167579,51.316760167579,51.321760167579,51.321760167579,51.316760167579]}]],[[{&#34;lng&#34;:[0.0728276111177281,0.0757143624636762,0.0814878651555724,0.0843746165015206,0.0814878651555724,0.0757143624636762,0.0728276111177281],&#34;lat&#34;:[51.316760167579,51.311760167579,51.311760167579,51.316760167579,51.321760167579,51.321760167579,51.316760167579]}]],[[{&#34;lng&#34;:[0.0968588689642452,0.0930348705393649,0.0917844254094427,0.093797133702827,0.096151694474488,0.0968588689642452],&#34;lat&#34;:[51.3217601993183,51.321760167579,51.3195944756099,51.3202351001209,51.3212928275116,51.3217601993183]}]],[[{&#34;lng&#34;:[-0.325504421111521,-0.325544074623114,-0.328826968513272,-0.328314296921147,-0.327597571257282,-0.32732306060295,-0.325504421111521],&#34;lat&#34;:[51.3266914935474,51.326760167579,51.3267602023888,51.3264638456527,51.3263196315215,51.3266861925191,51.3266914935474]}]],[[{&#34;lng&#34;:[-0.160129761214404,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16001018929796,-0.158660110960885,-0.156568887495467,-0.160129761214404],&#34;lat&#34;:[51.3202542946336,51.316760167579,51.316760167579,51.321760167579,51.326760167579,51.326760167579,51.3234733981039,51.323977827298,51.3215105667494,51.3202542946336]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.321760167579,51.316760167579,51.316760167579,51.321760167579,51.326760167579,51.326760167579,51.321760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.321760167579,51.316760167579,51.316760167579,51.321760167579,51.326760167579,51.326760167579,51.321760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.321760167579,51.316760167579,51.316760167579,51.321760167579,51.326760167579,51.326760167579,51.321760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.321760167579,51.316760167579,51.316760167579,51.321760167579,51.326760167579,51.326760167579,51.321760167579]}]],[[{&#34;lng&#34;:[-0.0646374546908552,-0.0628497021418341,-0.0657364534877822,-0.0715099561796784,-0.0743967075256265,-0.0737191263325108,-0.071043339616836,-0.07005513844081,-0.0646374546908552],&#34;lat&#34;:[51.3186638261948,51.321760167579,51.326760167579,51.326760167579,51.321760167579,51.3205866667949,51.3212337799979,51.318893742238,51.3186638261948]}]],[[{&#34;lng&#34;:[-0.0478769117058702,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377,-0.056830549201211,-0.056278560507728,-0.054909378018766,-0.052508031492973,-0.0513341023061,-0.051293565872048,-0.049792210669841,-0.047895651657202,-0.0478769117058702],&#34;lat&#34;:[51.3258266219776,51.326760167579,51.326760167579,51.321760167579,51.3213347340591,51.3216650228666,51.32125824905,51.3223829251342,51.3224488160686,51.3234391542117,51.3252676051266,51.3252459326156,51.3258266219776]}]],[[{&#34;lng&#34;:[0.00527376284405607,0.0064323301609211,0.00354557881497297,0.00313353447734029,0.004841864496028,0.00527376284405607],&#34;lat&#34;:[51.3197536095923,51.321760167579,51.3267601675789,51.3267601769841,51.3220760920467,51.3197536095923]}]],[[{&#34;lng&#34;:[0.0122058328528174,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528174],&#34;lat&#34;:[51.321760167579,51.316760167579,51.316760167579,51.321760167579,51.326760167579,51.326760167579,51.321760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.321760167579,51.316760167579,51.316760167579,51.321760167579,51.326760167579,51.326760167579,51.321760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879874,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.321760167579,51.316760167579,51.316760167579,51.321760167579,51.326760167579,51.326760167579,51.321760167579]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.321760167579,51.316760167579,51.316760167579,51.321760167579,51.326760167579,51.326760167579,51.321760167579]}]],[[{&#34;lng&#34;:[0.0917844254094427,0.0930348705393649,0.0901481191934168,0.0843746165015205,0.0814878651555724,0.0843746165015206,0.0861301885176408,0.086793143213792,0.087756644179287,0.0917844254094427],&#34;lat&#34;:[51.3195944756099,51.321760167579,51.3267601675789,51.326760167579,51.321760167579,51.316760167579,51.3167601976117,51.3171927664646,51.3183123166187,51.3195944756099]}]],[[{&#34;lng&#34;:[0.104109163466738,0.101695124577209,0.101043810218484,0.103212836106942,0.104109163466738],&#34;lat&#34;:[51.3267602021055,51.326760167579,51.325632159453,51.3259954903866,51.3267602021055]}],[{&#34;lng&#34;:[0.100380453389692,0.100201778108098,0.10030800388211,0.100380453389692],&#34;lat&#34;:[51.3244832342781,51.3241737605932,51.3242750561123,51.3244832342781]}]],[[{&#34;lng&#34;:[-0.31579297761783,-0.316883820585269,-0.322657323277166,-0.325544074623114,-0.325504421111521,-0.32402864163545,-0.318978970877405,-0.316765184909441,-0.31579297761783],&#34;lat&#34;:[51.3298709086446,51.331760167579,51.331760167579,51.326760167579,51.3266914935474,51.326695774497,51.3279578964665,51.3291473101852,51.3298709086446]}]],[[{&#34;lng&#34;:[-0.213077961263186,-0.218734274823033,-0.219833735237177,-0.216108660651293,-0.214120383269824,-0.213077961263186],&#34;lat&#34;:[51.3317601704009,51.331760167579,51.3298559832073,51.329828248507,51.3303518940315,51.3317601704009]}]],[[{&#34;lng&#34;:[-0.16001018929796,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.167951867937729,-0.163102158950285,-0.162315982942447,-0.163996141921196,-0.164007662123064,-0.164387556204011,-0.163592691460231,-0.164212517367603,-0.160625692723176,-0.16001018929796],&#34;lat&#34;:[51.3234733981039,51.326760167579,51.3317601675789,51.331760167579,51.3297180167376,51.3302660649724,51.3288913525313,51.3285849712987,51.3281894507865,51.3281279714229,51.3262153138946,51.3260424901538,51.323243418988,51.3234733981039]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.326760167579,51.321760167579,51.321760167579,51.326760167579,51.331760167579,51.331760167579,51.326760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.326760167579,51.321760167579,51.321760167579,51.326760167579,51.331760167579,51.331760167579,51.326760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.326760167579,51.321760167579,51.321760167579,51.326760167579,51.331760167579,51.3317601675789,51.326760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.326760167579,51.321760167579,51.321760167579,51.326760167579,51.331760167579,51.331760167579,51.326760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256265,-0.0715099561796784,-0.0743967075256265,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.326760167579,51.321760167579,51.321760167579,51.326760167579,51.331760167579,51.3317601675789,51.326760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.0628497021418341,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.062849702141834,-0.0657364534877822],&#34;lat&#34;:[51.326760167579,51.321760167579,51.321760167579,51.326760167579,51.331760167579,51.3317601675789,51.326760167579]}]],[[{&#34;lng&#34;:[-0.0482118136436718,-0.0484159454120934,-0.0478769117058702,-0.047854841047846,-0.0482118136436718],&#34;lat&#34;:[51.3271137723329,51.326760167579,51.3258266219776,51.3265105001069,51.3271137723329]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528174,0.0150925841987655,0.0122058328528173,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.3267601675789,51.321760167579,51.321760167579,51.326760167579,51.331760167579,51.331760167579,51.3267601675789]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.326760167579,51.321760167579,51.321760167579,51.326760167579,51.331760167579,51.331760167579,51.326760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.326760167579,51.321760167579,51.321760167579,51.326760167579,51.331760167579,51.331760167579,51.326760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879874,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879875,0.0555071030420393],&#34;lat&#34;:[51.326760167579,51.321760167579,51.321760167579,51.326760167579,51.331760167579,51.331760167579,51.326760167579]}]],[[{&#34;lng&#34;:[0.0728276111177281,0.0757143624636762,0.0814878651555724,0.0843746165015205,0.0814878651555724,0.0757143624636762,0.0728276111177281],&#34;lat&#34;:[51.326760167579,51.321760167579,51.321760167579,51.326760167579,51.331760167579,51.331760167579,51.326760167579]}]],[[{&#34;lng&#34;:[0.101043810218484,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168,0.0930348705393649,0.0968588689642452,0.099503624295288,0.100201778108098,0.100380453389692,0.10076399678275,0.101043810218484],&#34;lat&#34;:[51.325632159453,51.326760167579,51.331760167579,51.331760167579,51.3267601675789,51.321760167579,51.3217601993183,51.3235079966553,51.3241737605932,51.3244832342781,51.3255852849024,51.325632159453]}]],[[{&#34;lng&#34;:[0.117426946968785,0.11612888130695,0.110355378615054,0.107796541072535,0.109730903802172,0.110125951135086,0.114183297014755,0.115715788315611,0.116614287126552,0.117335266261275,0.117426946968785],&#34;lat&#34;:[51.3295119955989,51.3317601675789,51.331760167579,51.3273281894173,51.3266839967835,51.3280357247745,51.3273977962406,51.3295068219086,51.3300032074479,51.3294811882596,51.3295119955989]}]],[[{&#34;lng&#34;:[-0.328826968513272,-0.325544074623114,-0.322657323277166,-0.325544074623114,-0.329323197871234,-0.329718701671921,-0.329116269297725,-0.330679057620505,-0.330139042739011,-0.328826968513272],&#34;lat&#34;:[51.3267602023888,51.326760167579,51.331760167579,51.336760167579,51.3367601996641,51.3327660892532,51.3302638583078,51.32901100251,51.3275186369729,51.3267602023888]}]],[[{&#34;lng&#34;:[-0.307087833771505,-0.308223566547425,-0.313997069239321,-0.316883820585269,-0.31579297761783,-0.313716429425585,-0.310953238891315,-0.307635950171413,-0.307087833771505],&#34;lat&#34;:[51.3347931593037,51.336760167579,51.336760167579,51.331760167579,51.3298709086446,51.331416347081,51.3323908924511,51.3346091394956,51.3347931593037]}]],[[{&#34;lng&#34;:[-0.219833735237177,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.228230879416245,-0.220967649459167,-0.219833735237177],&#34;lat&#34;:[51.3298559832073,51.331760167579,51.336760167579,51.336760167579,51.3353116854353,51.3298644021987,51.3298559832073]}]],[[{&#34;lng&#34;:[-0.211994105075133,-0.212545608011131,-0.211931072316582,-0.211994105075133],&#34;lat&#34;:[51.3334346133919,51.3324793244436,51.3333094673921,51.3334346133919]}]],[[{&#34;lng&#34;:[-0.167951867937729,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.176613418169967,-0.175045019374902,-0.174691519328332,-0.174164404987872,-0.172888995280863,-0.16991984804033,-0.170091236774131,-0.167951867937729],&#34;lat&#34;:[51.3297180167376,51.331760167579,51.336760167579,51.336760167579,51.3347157717339,51.3338115510767,51.333170256947,51.3332132862522,51.3300153977536,51.3302478188837,51.3294761865108,51.3297180167376]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.3317601675789,51.326760167579,51.326760167579,51.331760167579,51.336760167579,51.336760167579,51.3317601675789]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.331760167579,51.326760167579,51.326760167579,51.331760167579,51.336760167579,51.336760167579,51.331760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.331760167579,51.326760167579,51.326760167579,51.3317601675789,51.336760167579,51.336760167579,51.331760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.331760167579,51.326760167579,51.326760167579,51.331760167579,51.336760167579,51.336760167579,51.331760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.331760167579,51.326760167579,51.326760167579,51.3317601675789,51.336760167579,51.336760167579,51.331760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256265,-0.0715099561796784,-0.0657364534877822,-0.062849702141834,-0.0657364534877822,-0.0715099561796784,-0.0743967075256265],&#34;lat&#34;:[51.331760167579,51.326760167579,51.326760167579,51.3317601675789,51.336760167579,51.336760167579,51.331760167579]}]],[[{&#34;lng&#34;:[-0.046526510966469,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0482118136436718,-0.049096380431462,-0.04877589701459,-0.051107271377023,-0.051068374346139,-0.050098626670984,-0.050287555952897,-0.048499765465349,-0.046579618495359,-0.046526510966469],&#34;lat&#34;:[51.3334877024505,51.336760167579,51.336760167579,51.331760167579,51.326760167579,51.326760167579,51.3271137723329,51.328608588736,51.3287192237096,51.330846189255,51.3315946687951,51.3320533266097,51.3326401371867,51.3327901965936,51.3334839123854,51.3334877024505]}]],[[{&#34;lng&#34;:[-0.0115731959739919,-0.0137749292607159,-0.0195484319526121,-0.0199140286903446,-0.017810040607054,-0.017057611341387,-0.015967660322115,-0.014356307054115,-0.013631644682392,-0.011914516510048,-0.0115731959739919],&#34;lat&#34;:[51.3329467587771,51.336760167579,51.336760167579,51.3361269996899,51.3329330604852,51.3329041521431,51.3320142697785,51.3298043794154,51.3315259198764,51.3328915646322,51.3329467587771]}]],[[{&#34;lng&#34;:[0.00313353447734029,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.00492034339067125,-0.001705234339802,-0.000531480381255,0.002266097740965,0.00313353447734029],&#34;lat&#34;:[51.3267601769841,51.3267601675789,51.331760167579,51.336760167579,51.336760167579,51.3320967966523,51.3303068076407,51.3287777717122,51.3291382335726,51.3267601769841]}]],[[{&#34;lng&#34;:[0.0122058328528173,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528173],&#34;lat&#34;:[51.331760167579,51.326760167579,51.326760167579,51.331760167579,51.336760167579,51.336760167579,51.331760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.331760167579,51.326760167579,51.326760167579,51.331760167579,51.336760167579,51.336760167579,51.331760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879875,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.331760167579,51.326760167579,51.326760167579,51.331760167579,51.336760167579,51.336760167579,51.331760167579]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.331760167579,51.326760167579,51.326760167579,51.331760167579,51.336760167579,51.336760167579,51.331760167579]}]],[[{&#34;lng&#34;:[0.0814878651555724,0.0843746165015205,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0843746165015205,0.0814878651555724],&#34;lat&#34;:[51.331760167579,51.326760167579,51.3267601675789,51.331760167579,51.336760167579,51.336760167579,51.331760167579]}]],[[{&#34;lng&#34;:[0.107796541072535,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612,0.101695124577209,0.104109163466738,0.104873876850801,0.107210074792024,0.107796541072535],&#34;lat&#34;:[51.3273281894173,51.331760167579,51.336760167579,51.336760167579,51.331760167579,51.326760167579,51.3267602021055,51.3274126003197,51.3275234879316,51.3273281894173]}]],[[{&#34;lng&#34;:[0.11903981968683,0.119015632652898,0.11612888130695,0.117426946968785,0.117876213348808,0.117864381612225,0.120218206684945,0.121656933722737,0.119983646350615,0.11903981968683],&#34;lat&#34;:[51.3367601681709,51.336760167579,51.3317601675789,51.3295119955989,51.3296629603164,51.3306209092435,51.3321368203911,51.3336360145755,51.3347391738348,51.3367601681709]}]],[[{&#34;lng&#34;:[-0.325544074623114,-0.322657323277166,-0.316883820585269,-0.313997069239321,-0.316883820585269,-0.322657323277166,-0.325544074623114],&#34;lat&#34;:[51.336760167579,51.331760167579,51.331760167579,51.336760167579,51.341760167579,51.3417601675789,51.336760167579]}]],[[{&#34;lng&#34;:[-0.304550296464844,-0.305336815201477,-0.308223566547425,-0.307087833771505,-0.306215852071999,-0.304949999514823,-0.305437961452042,-0.304550296464844],&#34;lat&#34;:[51.3417601842758,51.341760167579,51.336760167579,51.3347931593037,51.3350859025003,51.3367509960342,51.3394800764909,51.3417601842758]}]],[[{&#34;lng&#34;:[-0.228230879416245,-0.227394528860877,-0.227797685962308,-0.229847693232985,-0.228230879416245],&#34;lat&#34;:[51.3353116854353,51.336760167579,51.3374585259581,51.3365240275679,51.3353116854353]}]],[[{&#34;lng&#34;:[-0.210089341214331,-0.212960772131137,-0.218734274823033,-0.221621026168981,-0.218734274823033,-0.213077961263186,-0.212545608011131,-0.211994105075133,-0.213055819674323,-0.210089341214331],&#34;lat&#34;:[51.3367867064072,51.341760167579,51.341760167579,51.336760167579,51.331760167579,51.3317601704009,51.3324793244436,51.3334346133919,51.3355424466259,51.3367867064072]}]],[[{&#34;lng&#34;:[-0.199685396256242,-0.201413766747344,-0.202431105019155,-0.20210776136475,-0.201224415250128,-0.199685396256242],&#34;lat&#34;:[51.3417601973406,51.3417601675789,51.3399982185679,51.340133793144,51.3398855242536,51.3417601973406]}]],[[{&#34;lng&#34;:[-0.176613418169967,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.185339106426255,-0.184632999108443,-0.182392665079749,-0.176613418169967],&#34;lat&#34;:[51.3347157717339,51.336760167579,51.341760167579,51.341760167579,51.3396024384668,51.3391943151942,51.3380471617811,51.3347157717339]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.336760167579,51.331760167579,51.3317601675789,51.336760167579,51.341760167579,51.341760167579,51.336760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.336760167579,51.331760167579,51.331760167579,51.336760167579,51.3417601675789,51.341760167579,51.336760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.336760167579,51.331760167579,51.331760167579,51.336760167579,51.341760167579,51.341760167579,51.336760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.336760167579,51.3317601675789,51.331760167579,51.336760167579,51.341760167579,51.3417601675789,51.336760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.336760167579,51.331760167579,51.331760167579,51.336760167579,51.341760167579,51.341760167579,51.336760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256265,-0.0715099561796784,-0.0743967075256265,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.336760167579,51.3317601675789,51.331760167579,51.336760167579,51.341760167579,51.3417601675789,51.336760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.062849702141834,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.0628497021418341,-0.0657364534877822],&#34;lat&#34;:[51.336760167579,51.3317601675789,51.331760167579,51.336760167579,51.341760167579,51.341760167579,51.336760167579]}]],[[{&#34;lng&#34;:[-0.0379530075031055,-0.039755691374249,-0.0455291940661452,-0.0484159454120934,-0.046526510966469,-0.041993334078331,-0.039842144346584,-0.03799270905143,-0.0379530075031055],&#34;lat&#34;:[51.3386379637446,51.3417601675789,51.341760167579,51.336760167579,51.3334877024505,51.3338111257561,51.3372274623284,51.3386443771836,51.3386379637446]}]],[[{&#34;lng&#34;:[-0.0199140286903446,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.030652167468341,-0.025984973392975,-0.022083793632359,-0.020584428914973,-0.0199140286903446],&#34;lat&#34;:[51.3361269996899,51.336760167579,51.341760167579,51.341760167579,51.3375280090128,51.3385603721115,51.3380997839979,51.3371445930048,51.3361269996899]}]],[[{&#34;lng&#34;:[-0.00492034339067125,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159,-0.0115731959739919,-0.010691458974149,-0.010902128696583,-0.009168895505079,-0.007146659540897,-0.007237537009904,-0.00492034339067125],&#34;lat&#34;:[51.3320967966523,51.336760167579,51.341760167579,51.3417601675789,51.336760167579,51.3329467587771,51.3330893371973,51.3336279798645,51.3339051979878,51.3336945483945,51.3333867364284,51.3320967966523]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528173,0.0150925841987655,0.0122058328528173,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.336760167579,51.331760167579,51.331760167579,51.336760167579,51.341760167579,51.3417601675789,51.336760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.336760167579,51.331760167579,51.331760167579,51.336760167579,51.341760167579,51.341760167579,51.336760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.336760167579,51.331760167579,51.331760167579,51.336760167579,51.341760167579,51.341760167579,51.336760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879875,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879875,0.0555071030420393],&#34;lat&#34;:[51.336760167579,51.331760167579,51.331760167579,51.336760167579,51.341760167579,51.341760167579,51.336760167579]}]],[[{&#34;lng&#34;:[0.0728276111177281,0.0757143624636762,0.0814878651555724,0.0843746165015205,0.0814878651555724,0.0757143624636762,0.0728276111177281],&#34;lat&#34;:[51.336760167579,51.331760167579,51.331760167579,51.336760167579,51.341760167579,51.341760167579,51.336760167579]}]],[[{&#34;lng&#34;:[0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168],&#34;lat&#34;:[51.336760167579,51.331760167579,51.331760167579,51.336760167579,51.341760167579,51.341760167579,51.336760167579]}]],[[{&#34;lng&#34;:[0.117220432263808,0.11612888130695,0.110355378615054,0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.117270440350978,0.117255675789747,0.117220432263808],&#34;lat&#34;:[51.339869682451,51.3417601675789,51.341760167579,51.336760167579,51.331760167579,51.3317601675789,51.336760167579,51.3397830681818,51.3397805747096,51.339869682451]}]],[[{&#34;lng&#34;:[-0.329323197871234,-0.325544074623114,-0.322657323277166,-0.325544074623114,-0.329640158225561,-0.32817739782987,-0.327480802599463,-0.327906806478608,-0.328979273674471,-0.329323197871234],&#34;lat&#34;:[51.3367601996641,51.336760167579,51.3417601675789,51.346760167579,51.346760196826,51.3440414538805,51.3440072365831,51.3437435501667,51.3402328516627,51.3367601996641]}]],[[{&#34;lng&#34;:[-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316883820585269],&#34;lat&#34;:[51.341760167579,51.336760167579,51.336760167579,51.341760167579,51.346760167579,51.346760167579,51.341760167579]}]],[[{&#34;lng&#34;:[-0.227797685962308,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.219181067548681,-0.221810965095441,-0.222725486022833,-0.222301817851982,-0.22328618918664,-0.224115619908544,-0.226851924700959,-0.227797685962308],&#34;lat&#34;:[51.3374585259581,51.336760167579,51.336760167579,51.341760167579,51.342534111284,51.3413464170973,51.3408306623052,51.340461842464,51.3398823341858,51.3400424050014,51.3378896275134,51.3374585259581]}]],[[{&#34;lng&#34;:[-0.202431105019155,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137,-0.210089341214331,-0.202431105019155],&#34;lat&#34;:[51.3399982185679,51.3417601675789,51.346760167579,51.346760167579,51.341760167579,51.3367867064072,51.3399982185679]}]],[[{&#34;lng&#34;:[-0.185339106426255,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.194902071977958,-0.19325447961226,-0.187382854029703,-0.185339106426255],&#34;lat&#34;:[51.3396024384668,51.341760167579,51.346760167579,51.346760167579,51.3430388643386,51.3426270429126,51.3407836401429,51.3396024384668]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.341760167579,51.336760167579,51.336760167579,51.341760167579,51.346760167579,51.346760167579,51.341760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.341760167579,51.336760167579,51.336760167579,51.341760167579,51.346760167579,51.346760167579,51.341760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.3417601675789,51.336760167579,51.336760167579,51.341760167579,51.346760167579,51.346760167579,51.3417601675789]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.341760167579,51.336760167579,51.336760167579,51.3417601675789,51.346760167579,51.346760167579,51.341760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.341760167579,51.336760167579,51.336760167579,51.341760167579,51.346760167579,51.346760167579,51.341760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.341760167579,51.336760167579,51.336760167579,51.3417601675789,51.346760167579,51.346760167579,51.341760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256265,-0.0715099561796784,-0.0657364534877822,-0.0628497021418341,-0.0657364534877822,-0.0715099561796784,-0.0743967075256265],&#34;lat&#34;:[51.341760167579,51.336760167579,51.336760167579,51.341760167579,51.346760167579,51.346760167579,51.341760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.341760167579,51.336760167579,51.336760167579,51.341760167579,51.346760167579,51.346760167579,51.341760167579]}]],[[{&#34;lng&#34;:[-0.030652167468341,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249,-0.0379530075031055,-0.034520714178159,-0.032796772099507,-0.030707381561459,-0.030652167468341],&#34;lat&#34;:[51.3375280090128,51.341760167579,51.346760167579,51.346760167579,51.3417601675789,51.3386379637446,51.3380834491652,51.3374385072402,51.3375157945065,51.3375280090128]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.341760167579,51.336760167579,51.336760167579,51.3417601675789,51.346760167579,51.346760167579,51.341760167579]}]],[[{&#34;lng&#34;:[-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714],&#34;lat&#34;:[51.341760167579,51.336760167579,51.336760167579,51.3417601675789,51.346760167579,51.346760167579,51.341760167579]}]],[[{&#34;lng&#34;:[0.0122058328528173,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528173],&#34;lat&#34;:[51.341760167579,51.336760167579,51.336760167579,51.341760167579,51.346760167579,51.346760167579,51.341760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.341760167579,51.336760167579,51.336760167579,51.341760167579,51.346760167579,51.346760167579,51.341760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879875,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.341760167579,51.336760167579,51.336760167579,51.341760167579,51.346760167579,51.346760167579,51.341760167579]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.072827611117728,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.341760167579,51.336760167579,51.336760167579,51.341760167579,51.346760167579,51.346760167579,51.341760167579]}]],[[{&#34;lng&#34;:[0.0814878651555724,0.0843746165015205,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0843746165015205,0.0814878651555724],&#34;lat&#34;:[51.341760167579,51.336760167579,51.336760167579,51.341760167579,51.346760167579,51.346760167579,51.341760167579]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.341760167579,51.336760167579,51.336760167579,51.341760167579,51.346760167579,51.346760167579,51.341760167579]}]],[[{&#34;lng&#34;:[0.117270440350978,0.119015632652898,0.11903981968683,0.118271949446102,0.118986905347415,0.118443723714031,0.117270440350978],&#34;lat&#34;:[51.3397830681818,51.336760167579,51.3367601681709,51.3384042540194,51.3386835914362,51.3399812081073,51.3397830681818]}],[{&#34;lng&#34;:[0.125312283039749,0.124789135344794,0.119015632652898,0.11612888130695,0.117220432263808,0.116653800363622,0.117204784782084,0.117559297597612,0.118429069307491,0.122211893694543,0.125185738237262,0.125312283039749],&#34;lat&#34;:[51.3458541353939,51.346760167579,51.346760167579,51.3417601675789,51.339869682451,51.341302273546,51.3431628867952,51.3431285835677,51.3441470665885,51.3446568422691,51.3458673424831,51.3458541353939]}]],[[{&#34;lng&#34;:[0.137954349554514,0.136336140728587,0.135112939766655,0.136930961728264,0.137082178692051,0.136172891880302,0.137169313649291,0.137954349554514],&#34;lat&#34;:[51.3467601962015,51.346760167579,51.3446416632264,51.3441742671019,51.3448010102358,51.3459363246537,51.3458713736326,51.3467601962015]}]],[[{&#34;lng&#34;:[-0.325544074623114,-0.322657323277166,-0.316883820585269,-0.313997069239321,-0.316883820585269,-0.322657323277166,-0.325544074623114],&#34;lat&#34;:[51.346760167579,51.3417601675789,51.341760167579,51.346760167579,51.351760167579,51.351760167579,51.346760167579]}]],[[{&#34;lng&#34;:[-0.298025501865777,-0.299563312509581,-0.305336815201477,-0.308223566547425,-0.305336815201477,-0.304550296464844,-0.304048540790144,-0.301337934234419,-0.299949126503999,-0.298025501865777],&#34;lat&#34;:[51.3490967460561,51.351760167579,51.351760167579,51.346760167579,51.341760167579,51.3417601842758,51.3430489196949,51.345294649606,51.3476710400594,51.3490967460561]}]],[[{&#34;lng&#34;:[-0.219181067548681,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.219971854474949,-0.217802602706392,-0.217289463722458,-0.219181067548681],&#34;lat&#34;:[51.342534111284,51.341760167579,51.341760167579,51.346760167579,51.351760167579,51.351760167579,51.3496167590554,51.3456325712794,51.3433883084508,51.342534111284]}]],[[{&#34;lng&#34;:[-0.194902071977958,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292,-0.201413766747344,-0.199685396256242,-0.199582548956663,-0.198582727779062,-0.197344478636546,-0.196566307762463,-0.196715460963613,-0.196292226136149,-0.196072661827892,-0.194902071977958],&#34;lat&#34;:[51.3430388643386,51.346760167579,51.351760167579,51.351760167579,51.346760167579,51.3417601675789,51.3417601973406,51.3418854690537,51.3423008425234,51.3435965086195,51.3434478664947,51.3431596898232,51.3430407557053,51.3433314387918,51.3430388643386]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.346760167579,51.341760167579,51.341760167579,51.346760167579,51.351760167579,51.351760167579,51.346760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.346760167579,51.341760167579,51.341760167579,51.346760167579,51.351760167579,51.351760167579,51.346760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.346760167579,51.341760167579,51.3417601675789,51.346760167579,51.351760167579,51.351760167579,51.346760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.346760167579,51.341760167579,51.341760167579,51.346760167579,51.351760167579,51.351760167579,51.346760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.346760167579,51.3417601675789,51.341760167579,51.346760167579,51.351760167579,51.351760167579,51.346760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.346760167579,51.341760167579,51.341760167579,51.346760167579,51.351760167579,51.351760167579,51.346760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256265,-0.0715099561796784,-0.0743967075256266,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.346760167579,51.3417601675789,51.341760167579,51.346760167579,51.351760167579,51.351760167579,51.346760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.0628497021418341,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.0628497021418341,-0.0657364534877822],&#34;lat&#34;:[51.346760167579,51.341760167579,51.341760167579,51.346760167579,51.351760167579,51.351760167579,51.346760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.346760167579,51.341760167579,51.3417601675789,51.346760167579,51.351760167579,51.351760167579,51.346760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.346760167579,51.341760167579,51.341760167579,51.346760167579,51.351760167579,51.351760167579,51.346760167579]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.346760167579,51.3417601675789,51.341760167579,51.346760167579,51.351760167579,51.351760167579,51.346760167579]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528173,0.0150925841987655,0.0122058328528173,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.346760167579,51.3417601675789,51.341760167579,51.346760167579,51.351760167579,51.351760167579,51.346760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.346760167579,51.341760167579,51.341760167579,51.346760167579,51.351760167579,51.351760167579,51.346760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.346760167579,51.341760167579,51.341760167579,51.346760167579,51.351760167579,51.351760167579,51.346760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879875,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879875,0.0555071030420393],&#34;lat&#34;:[51.346760167579,51.341760167579,51.341760167579,51.346760167579,51.351760167579,51.351760167579,51.346760167579]}]],[[{&#34;lng&#34;:[0.072827611117728,0.0757143624636762,0.0814878651555724,0.0843746165015205,0.0814878651555724,0.0757143624636762,0.072827611117728],&#34;lat&#34;:[51.346760167579,51.341760167579,51.341760167579,51.346760167579,51.351760167579,51.351760167579,51.346760167579]}]],[[{&#34;lng&#34;:[0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168],&#34;lat&#34;:[51.346760167579,51.341760167579,51.341760167579,51.346760167579,51.351760167579,51.351760167579,51.346760167579]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.346760167579,51.341760167579,51.3417601675789,51.346760167579,51.351760167579,51.351760167579,51.346760167579]}]],[[{&#34;lng&#34;:[0.135112939766655,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794,0.125312283039749,0.131642311359274,0.131750156738307,0.135112939766655],&#34;lat&#34;:[51.3446416632264,51.346760167579,51.351760167579,51.351760167579,51.346760167579,51.3458541353939,51.3451933062511,51.3455061034192,51.3446416632264]}]],[[{&#34;lng&#34;:[-0.329640158225561,-0.325544074623114,-0.322657323277166,-0.324073924240077,-0.324453937239165,-0.327947033707958,-0.330533887735086,-0.329640158225561],&#34;lat&#34;:[51.346760196826,51.346760167579,51.351760167579,51.354213937661,51.3538917326161,51.3521862911007,51.3484211492856,51.346760196826]}]],[[{&#34;lng&#34;:[-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316883820585269],&#34;lat&#34;:[51.351760167579,51.346760167579,51.346760167579,51.351760167579,51.356760167579,51.356760167579,51.351760167579]}]],[[{&#34;lng&#34;:[-0.290913234784229,-0.296676561163633,-0.299563312509581,-0.298025501865777,-0.297821439057586,-0.292930437943235,-0.292684662101988,-0.291224040995148,-0.291108796344567,-0.290913234784229],&#34;lat&#34;:[51.3567601678286,51.356760167579,51.351760167579,51.3490967460561,51.3492479813837,51.3523755080097,51.3536164764973,51.3552021536547,51.3565610481559,51.3567601678286]}]],[[{&#34;lng&#34;:[-0.219971854474949,-0.218734274823033,-0.221621026168981,-0.222691327834451,-0.221999896195601,-0.222116920490704,-0.221287078122004,-0.220445892243298,-0.220137846720881,-0.219971854474949],&#34;lat&#34;:[51.3496167590554,51.351760167579,51.356760167579,51.3567601890047,51.3535316494828,51.3513257334483,51.3511719882067,51.3514208614702,51.3499216009414,51.3496167590554]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.351760167579,51.346760167579,51.346760167579,51.351760167579,51.356760167579,51.356760167579,51.351760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.351760167579,51.346760167579,51.346760167579,51.351760167579,51.356760167579,51.356760167579,51.351760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.351760167579,51.346760167579,51.346760167579,51.351760167579,51.356760167579,51.356760167579,51.351760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.351760167579,51.346760167579,51.346760167579,51.351760167579,51.356760167579,51.356760167579,51.351760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.351760167579,51.346760167579,51.346760167579,51.351760167579,51.356760167579,51.356760167579,51.351760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.351760167579,51.346760167579,51.346760167579,51.351760167579,51.356760167579,51.356760167579,51.351760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.351760167579,51.346760167579,51.346760167579,51.351760167579,51.356760167579,51.356760167579,51.351760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.351760167579,51.346760167579,51.346760167579,51.351760167579,51.356760167579,51.356760167579,51.351760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256266,-0.0715099561796784,-0.0657364534877822,-0.0628497021418341,-0.0657364534877822,-0.0715099561796784,-0.0743967075256266],&#34;lat&#34;:[51.351760167579,51.346760167579,51.346760167579,51.351760167579,51.356760167579,51.356760167579,51.351760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.351760167579,51.346760167579,51.346760167579,51.351760167579,51.356760167579,51.356760167579,51.351760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.351760167579,51.346760167579,51.346760167579,51.351760167579,51.356760167579,51.356760167579,51.351760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.351760167579,51.346760167579,51.346760167579,51.351760167579,51.356760167579,51.356760167579,51.351760167579]}]],[[{&#34;lng&#34;:[-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714],&#34;lat&#34;:[51.351760167579,51.346760167579,51.346760167579,51.351760167579,51.356760167579,51.356760167579,51.351760167579]}]],[[{&#34;lng&#34;:[0.0122058328528173,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528173],&#34;lat&#34;:[51.351760167579,51.346760167579,51.346760167579,51.351760167579,51.356760167579,51.356760167579,51.351760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.351760167579,51.346760167579,51.346760167579,51.351760167579,51.356760167579,51.356760167579,51.351760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879875,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.351760167579,51.346760167579,51.346760167579,51.351760167579,51.356760167579,51.356760167579,51.351760167579]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.072827611117728,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.351760167579,51.346760167579,51.346760167579,51.351760167579,51.356760167579,51.356760167579,51.351760167579]}]],[[{&#34;lng&#34;:[0.0814878651555724,0.0843746165015205,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0843746165015205,0.0814878651555724],&#34;lat&#34;:[51.351760167579,51.346760167579,51.346760167579,51.351760167579,51.356760167579,51.356760167579,51.351760167579]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.351760167579,51.346760167579,51.346760167579,51.351760167579,51.356760167579,51.356760167579,51.351760167579]}]],[[{&#34;lng&#34;:[0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695],&#34;lat&#34;:[51.351760167579,51.346760167579,51.346760167579,51.351760167579,51.356760167579,51.356760167579,51.351760167579]}]],[[{&#34;lng&#34;:[0.143791231213579,0.142109643420483,0.136336140728587,0.133449389382639,0.136336140728587,0.137954349554514,0.138241050982059,0.139413814892199,0.139465964818585,0.138686616734676,0.141260251249835,0.140957172147327,0.142593065794267,0.142849418590282,0.143113251006516,0.14360440411517,0.143791231213579],&#34;lat&#34;:[51.3538477134177,51.356760167579,51.356760167579,51.351760167579,51.346760167579,51.3467601962015,51.3470847914505,51.3469824275162,51.3472998267432,51.3475244847265,51.3497787735523,51.3501458375061,51.3507346586276,51.3526589762342,51.3530489437262,51.3530174580759,51.3538477134177]}]],[[{&#34;lng&#34;:[-0.324073924240077,-0.322657323277166,-0.316883820585269,-0.313997069239321,-0.316883820585269,-0.319125200483573,-0.320259484825212,-0.323535061942652,-0.324073924240077],&#34;lat&#34;:[51.354213937661,51.351760167579,51.351760167579,51.356760167579,51.361760167579,51.3617602012744,51.3590994869364,51.3546708178142,51.354213937661]}]],[[{&#34;lng&#34;:[-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163633,-0.299563312509581,-0.305336815201477,-0.308223566547425],&#34;lat&#34;:[51.356760167579,51.351760167579,51.351760167579,51.356760167579,51.361760167579,51.361760167579,51.356760167579]}]],[[{&#34;lng&#34;:[-0.287117604529982,-0.288016307125788,-0.290888547627747,-0.288996360943263,-0.286996700742753,-0.285101070538744,-0.287117604529982],&#34;lat&#34;:[51.3617601862253,51.361760167579,51.3567853040053,51.358711809043,51.3593750200182,51.3612122971104,51.3617601862253]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.356760167579,51.351760167579,51.351760167579,51.356760167579,51.361760167579,51.361760167579,51.356760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.356760167579,51.351760167579,51.351760167579,51.356760167579,51.361760167579,51.361760167579,51.356760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.356760167579,51.351760167579,51.351760167579,51.356760167579,51.361760167579,51.361760167579,51.356760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.356760167579,51.351760167579,51.351760167579,51.356760167579,51.361760167579,51.361760167579,51.356760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.356760167579,51.351760167579,51.351760167579,51.356760167579,51.361760167579,51.361760167579,51.356760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.356760167579,51.351760167579,51.351760167579,51.356760167579,51.361760167579,51.361760167579,51.356760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.356760167579,51.351760167579,51.351760167579,51.356760167579,51.361760167579,51.361760167579,51.356760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.356760167579,51.351760167579,51.351760167579,51.356760167579,51.361760167579,51.361760167579,51.356760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256266,-0.0715099561796784,-0.0743967075256266,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.356760167579,51.351760167579,51.351760167579,51.356760167579,51.361760167579,51.361760167579,51.356760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.0628497021418341,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.062849702141834,-0.0657364534877822],&#34;lat&#34;:[51.356760167579,51.351760167579,51.351760167579,51.356760167579,51.361760167579,51.361760167579,51.356760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661453,-0.0484159454120934],&#34;lat&#34;:[51.356760167579,51.351760167579,51.351760167579,51.356760167579,51.361760167579,51.361760167579,51.356760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.356760167579,51.351760167579,51.351760167579,51.356760167579,51.361760167579,51.361760167579,51.356760167579]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.356760167579,51.351760167579,51.351760167579,51.356760167579,51.361760167579,51.361760167579,51.356760167579]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528173,0.0150925841987655,0.0122058328528174,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.356760167579,51.351760167579,51.351760167579,51.356760167579,51.361760167579,51.361760167579,51.356760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.356760167579,51.351760167579,51.351760167579,51.356760167579,51.361760167579,51.361760167579,51.356760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.356760167579,51.351760167579,51.351760167579,51.356760167579,51.361760167579,51.361760167579,51.356760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879875,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879875,0.0555071030420393],&#34;lat&#34;:[51.356760167579,51.351760167579,51.351760167579,51.356760167579,51.361760167579,51.361760167579,51.356760167579]}]],[[{&#34;lng&#34;:[0.0728276111177281,0.0757143624636762,0.0814878651555724,0.0843746165015205,0.0814878651555724,0.0757143624636762,0.0728276111177281],&#34;lat&#34;:[51.356760167579,51.351760167579,51.351760167579,51.356760167579,51.361760167579,51.361760167579,51.356760167579]}]],[[{&#34;lng&#34;:[0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168],&#34;lat&#34;:[51.356760167579,51.351760167579,51.351760167579,51.356760167579,51.361760167579,51.361760167579,51.356760167579]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.356760167579,51.351760167579,51.351760167579,51.356760167579,51.361760167579,51.361760167579,51.356760167579]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.356760167579,51.351760167579,51.351760167579,51.356760167579,51.361760167579,51.361760167579,51.356760167579]}]],[[{&#34;lng&#34;:[0.144500665808385,0.142109643420483,0.143791231213579,0.144019382211646,0.145087041652487,0.145626938881611,0.145868491189189,0.144821098920217,0.145362488890642,0.144535767720553,0.144500665808385],&#34;lat&#34;:[51.3609016225099,51.356760167579,51.3538477134177,51.3548615700085,51.3557638135279,51.3572054036462,51.3582243726614,51.3584351300505,51.360337138457,51.3606903919198,51.3609016225099]}]],[[{&#34;lng&#34;:[-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316883820585269],&#34;lat&#34;:[51.361760167579,51.356760167579,51.356760167579,51.361760167579,51.366760167579,51.366760167579,51.361760167579]}]],[[{&#34;lng&#34;:[-0.288223258229156,-0.290903058471736,-0.296676561163633,-0.299563312509581,-0.296676561163633,-0.290913234784229,-0.290888547627747,-0.288016307125788,-0.288183488508637,-0.288301994209622,-0.288223258229156],&#34;lat&#34;:[51.3621186560955,51.366760167579,51.366760167579,51.361760167579,51.356760167579,51.3567601678286,51.3567853040053,51.361760167579,51.3620497659476,51.3620819607933,51.3621186560955]}]],[[{&#34;lng&#34;:[-0.241008440865947,-0.244715036936566,-0.244721054132253,-0.241174855480935,-0.241008440865947],&#34;lat&#34;:[51.3667602001851,51.366760167579,51.3667497466995,51.3662633322127,51.3667602001851]}]],[[{&#34;lng&#34;:[-0.222691327834451,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.229110967845236,-0.226966946086524,-0.224082852275565,-0.22276136471447,-0.222691327834451],&#34;lat&#34;:[51.3567601890047,51.356760167579,51.361760167579,51.366760167579,51.366760167579,51.3637873481876,51.3626256262878,51.3592753526365,51.3570871904272,51.3567601890047]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.361760167579,51.356760167579,51.356760167579,51.361760167579,51.366760167579,51.366760167579,51.361760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.361760167579,51.356760167579,51.356760167579,51.361760167579,51.366760167579,51.366760167579,51.361760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.361760167579,51.356760167579,51.356760167579,51.361760167579,51.366760167579,51.366760167579,51.361760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.361760167579,51.356760167579,51.356760167579,51.361760167579,51.366760167579,51.366760167579,51.361760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.361760167579,51.356760167579,51.356760167579,51.361760167579,51.366760167579,51.366760167579,51.361760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.361760167579,51.356760167579,51.356760167579,51.361760167579,51.366760167579,51.366760167579,51.361760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.361760167579,51.356760167579,51.356760167579,51.361760167579,51.366760167579,51.366760167579,51.361760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.361760167579,51.356760167579,51.356760167579,51.361760167579,51.366760167579,51.366760167579,51.361760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256266,-0.0715099561796784,-0.0657364534877822,-0.062849702141834,-0.0657364534877822,-0.0715099561796784,-0.0743967075256266],&#34;lat&#34;:[51.361760167579,51.356760167579,51.356760167579,51.361760167579,51.366760167579,51.366760167579,51.361760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661453,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.361760167579,51.356760167579,51.356760167579,51.361760167579,51.366760167579,51.366760167579,51.361760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.361760167579,51.356760167579,51.356760167579,51.361760167579,51.366760167579,51.366760167579,51.361760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.361760167579,51.356760167579,51.356760167579,51.361760167579,51.366760167579,51.366760167579,51.361760167579]}]],[[{&#34;lng&#34;:[-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714],&#34;lat&#34;:[51.361760167579,51.356760167579,51.356760167579,51.361760167579,51.366760167579,51.366760167579,51.361760167579]}]],[[{&#34;lng&#34;:[0.0122058328528174,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528174],&#34;lat&#34;:[51.361760167579,51.356760167579,51.356760167579,51.361760167579,51.366760167579,51.366760167579,51.361760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.361760167579,51.356760167579,51.356760167579,51.361760167579,51.366760167579,51.366760167579,51.361760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879875,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.361760167579,51.356760167579,51.356760167579,51.361760167579,51.366760167579,51.366760167579,51.361760167579]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.361760167579,51.356760167579,51.356760167579,51.361760167579,51.366760167579,51.366760167579,51.361760167579]}]],[[{&#34;lng&#34;:[0.0814878651555724,0.0843746165015205,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0843746165015205,0.0814878651555724],&#34;lat&#34;:[51.361760167579,51.356760167579,51.356760167579,51.361760167579,51.366760167579,51.366760167579,51.361760167579]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.361760167579,51.356760167579,51.356760167579,51.361760167579,51.366760167579,51.366760167579,51.361760167579]}]],[[{&#34;lng&#34;:[0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695],&#34;lat&#34;:[51.361760167579,51.356760167579,51.356760167579,51.361760167579,51.366760167579,51.366760167579,51.361760167579]}]],[[{&#34;lng&#34;:[0.144952690807499,0.142109643420483,0.136336140728587,0.133449389382639,0.136336140728587,0.142109643420483,0.144500665808385,0.144474156177591,0.144952690807499],&#34;lat&#34;:[51.3618358737248,51.366760167579,51.366760167579,51.361760167579,51.356760167579,51.356760167579,51.3609016225099,51.3610611465655,51.3618358737248]}]],[[{&#34;lng&#34;:[-0.319125200483573,-0.316883820585269,-0.313997069239321,-0.316883820585269,-0.317546080424407,-0.31791521385638,-0.31852336223175,-0.318304718879176,-0.319125200483573],&#34;lat&#34;:[51.3617602012744,51.361760167579,51.366760167579,51.371760167579,51.3717601819849,51.369846095798,51.36618675761,51.3636846225277,51.3617602012744]}]],[[{&#34;lng&#34;:[-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163633,-0.299563312509581,-0.305336815201477,-0.308223566547425],&#34;lat&#34;:[51.366760167579,51.361760167579,51.361760167579,51.366760167579,51.371760167579,51.371760167579,51.366760167579]}]],[[{&#34;lng&#34;:[-0.288183488508637,-0.288016307125788,-0.287117604529982,-0.288183488508637],&#34;lat&#34;:[51.3620497659476,51.361760167579,51.3617601862253,51.3620497659476]}],[{&#34;lng&#34;:[-0.279931820742656,-0.282242804433892,-0.288016307125788,-0.290903058471736,-0.288223258229156,-0.287044785648955,-0.285726176938849,-0.284094876420024,-0.282185618913584,-0.279931820742656],&#34;lat&#34;:[51.3677575192532,51.371760167579,51.371760167579,51.366760167579,51.3621186560955,51.3626678758743,51.3640523413618,51.3651516610889,51.3660013324489,51.3677575192532]}]],[[{&#34;lng&#34;:[-0.244721054132253,-0.244715036936566,-0.245169537608057,-0.245317415441172,-0.24542920738636,-0.244721054132253],&#34;lat&#34;:[51.3667497466995,51.366760167579,51.3675474629687,51.3670663968021,51.3668468665104,51.3667497466995]}]],[[{&#34;lng&#34;:[-0.229110967845236,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.238824073892779,-0.237076275263199,-0.233974075398839,-0.233215977277509,-0.229110967845236],&#34;lat&#34;:[51.3637873481876,51.366760167579,51.371760167579,51.371760167579,51.3669636375734,51.3669013299109,51.365386120593,51.3660113427531,51.3637873481876]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.366760167579,51.361760167579,51.361760167579,51.366760167579,51.371760167579,51.371760167579,51.366760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.366760167579,51.361760167579,51.361760167579,51.366760167579,51.371760167579,51.371760167579,51.366760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.366760167579,51.361760167579,51.361760167579,51.366760167579,51.371760167579,51.371760167579,51.366760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.366760167579,51.361760167579,51.361760167579,51.366760167579,51.371760167579,51.371760167579,51.366760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.366760167579,51.361760167579,51.361760167579,51.366760167579,51.371760167579,51.371760167579,51.366760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.366760167579,51.361760167579,51.361760167579,51.366760167579,51.371760167579,51.371760167579,51.366760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.366760167579,51.361760167579,51.361760167579,51.366760167579,51.371760167579,51.371760167579,51.366760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.366760167579,51.361760167579,51.361760167579,51.366760167579,51.371760167579,51.371760167579,51.366760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256266,-0.0715099561796784,-0.0743967075256266,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.366760167579,51.361760167579,51.361760167579,51.366760167579,51.371760167579,51.371760167579,51.366760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.062849702141834,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.062849702141834,-0.0657364534877822],&#34;lat&#34;:[51.366760167579,51.361760167579,51.361760167579,51.366760167579,51.371760167579,51.371760167579,51.366760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661453,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.366760167579,51.361760167579,51.361760167579,51.366760167579,51.371760167579,51.371760167579,51.366760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.366760167579,51.361760167579,51.361760167579,51.366760167579,51.371760167579,51.371760167579,51.366760167579]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.366760167579,51.361760167579,51.361760167579,51.366760167579,51.371760167579,51.371760167579,51.366760167579]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528174,0.0150925841987655,0.0122058328528173,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.366760167579,51.361760167579,51.361760167579,51.366760167579,51.371760167579,51.371760167579,51.366760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.366760167579,51.361760167579,51.361760167579,51.366760167579,51.371760167579,51.371760167579,51.366760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.366760167579,51.361760167579,51.361760167579,51.366760167579,51.371760167579,51.371760167579,51.366760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879875,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879874,0.0555071030420393],&#34;lat&#34;:[51.366760167579,51.361760167579,51.361760167579,51.366760167579,51.371760167579,51.371760167579,51.366760167579]}]],[[{&#34;lng&#34;:[0.0728276111177281,0.0757143624636762,0.0814878651555724,0.0843746165015205,0.0814878651555725,0.0757143624636762,0.0728276111177281],&#34;lat&#34;:[51.366760167579,51.361760167579,51.361760167579,51.366760167579,51.371760167579,51.371760167579,51.366760167579]}]],[[{&#34;lng&#34;:[0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168],&#34;lat&#34;:[51.366760167579,51.361760167579,51.361760167579,51.366760167579,51.371760167579,51.371760167579,51.366760167579]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.366760167579,51.361760167579,51.361760167579,51.366760167579,51.371760167579,51.371760167579,51.366760167579]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.366760167579,51.361760167579,51.361760167579,51.366760167579,51.371760167579,51.371760167579,51.366760167579]}]],[[{&#34;lng&#34;:[0.150865044809232,0.150769897458328,0.144996394766431,0.142109643420483,0.144952690807499,0.145364546263066,0.145021693132447,0.148320955220206,0.14725343842441,0.148849791467789,0.149411339957138,0.150998363989495,0.15159291464298,0.1520061648505,0.151952267171275,0.150100164305516,0.150865044809232],&#34;lat&#34;:[51.3715953860651,51.371760167579,51.371760167579,51.366760167579,51.3618358737248,51.3625026275988,51.3628506212216,51.366371208211,51.3670139849332,51.3681232607027,51.3691624212203,51.3683221236656,51.3683786408772,51.3696190320125,51.3697123837706,51.3701570293622,51.3715953860651]}]],[[{&#34;lng&#34;:[-0.315719325159908,-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.308254351118554,-0.308457258432647,-0.308695111524335,-0.312674910771467,-0.314341477620558,-0.315719325159908],&#34;lat&#34;:[51.3737772727809,51.371760167579,51.366760167579,51.366760167579,51.371760167579,51.376760167579,51.3767601683313,51.3758608221393,51.3754496964549,51.3747525834207,51.374638971925,51.3737772727809]}]],[[{&#34;lng&#34;:[-0.299563312509581,-0.296676561163633,-0.290903058471736,-0.288016307125788,-0.290903058471736,-0.296676561163632,-0.299563312509581],&#34;lat&#34;:[51.371760167579,51.366760167579,51.366760167579,51.371760167579,51.376760167579,51.376760167579,51.371760167579]}]],[[{&#34;lng&#34;:[-0.271300205256049,-0.273582550396047,-0.279356053087944,-0.282242804433892,-0.279931820742656,-0.279843121525418,-0.276583906891874,-0.275856172260393,-0.274046289261849,-0.273612483685699,-0.272569169551683,-0.271300205256049],&#34;lat&#34;:[51.3728071261051,51.376760167579,51.376760167579,51.371760167579,51.3677575192532,51.3678266311173,51.3688092518619,51.3700152570985,51.3706567318392,51.3715325032709,51.3722653061333,51.3728071261051]}]],[[{&#34;lng&#34;:[-0.238824073892779,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.244937355163793,-0.244703779848763,-0.245169537608057,-0.244715036936566,-0.241008440865947,-0.240915344501155,-0.238824073892779],&#34;lat&#34;:[51.3669636375734,51.371760167579,51.376760167579,51.376760167579,51.3763751424499,51.3690625673489,51.3675474629687,51.366760167579,51.3667602001851,51.3670381553529,51.3669636375734]}]],[[{&#34;lng&#34;:[-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826],&#34;lat&#34;:[51.371760167579,51.366760167579,51.366760167579,51.371760167579,51.376760167579,51.376760167579,51.371760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.371760167579,51.366760167579,51.366760167579,51.371760167579,51.376760167579,51.376760167579,51.371760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.371760167579,51.366760167579,51.366760167579,51.371760167579,51.376760167579,51.376760167579,51.371760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.371760167579,51.366760167579,51.366760167579,51.371760167579,51.376760167579,51.376760167579,51.371760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.371760167579,51.366760167579,51.366760167579,51.371760167579,51.376760167579,51.376760167579,51.371760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.371760167579,51.366760167579,51.366760167579,51.371760167579,51.376760167579,51.376760167579,51.371760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.371760167579,51.366760167579,51.366760167579,51.371760167579,51.376760167579,51.376760167579,51.371760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.371760167579,51.366760167579,51.366760167579,51.371760167579,51.376760167579,51.376760167579,51.371760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.371760167579,51.366760167579,51.366760167579,51.371760167579,51.376760167579,51.376760167579,51.371760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256266,-0.0715099561796784,-0.0657364534877822,-0.062849702141834,-0.0657364534877822,-0.0715099561796784,-0.0743967075256266],&#34;lat&#34;:[51.371760167579,51.366760167579,51.366760167579,51.371760167579,51.376760167579,51.376760167579,51.371760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.371760167579,51.366760167579,51.366760167579,51.371760167579,51.376760167579,51.376760167579,51.371760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.371760167579,51.366760167579,51.366760167579,51.371760167579,51.376760167579,51.376760167579,51.371760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.371760167579,51.366760167579,51.366760167579,51.371760167579,51.376760167579,51.376760167579,51.371760167579]}]],[[{&#34;lng&#34;:[-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714],&#34;lat&#34;:[51.371760167579,51.366760167579,51.366760167579,51.371760167579,51.376760167579,51.376760167579,51.371760167579]}]],[[{&#34;lng&#34;:[0.0122058328528173,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528173],&#34;lat&#34;:[51.371760167579,51.366760167579,51.366760167579,51.371760167579,51.376760167579,51.376760167579,51.371760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.371760167579,51.366760167579,51.366760167579,51.371760167579,51.376760167579,51.376760167579,51.371760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879874,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.371760167579,51.366760167579,51.366760167579,51.371760167579,51.376760167579,51.376760167579,51.371760167579]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.371760167579,51.366760167579,51.366760167579,51.371760167579,51.376760167579,51.376760167579,51.371760167579]}]],[[{&#34;lng&#34;:[0.0814878651555725,0.0843746165015205,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0843746165015206,0.0814878651555725],&#34;lat&#34;:[51.371760167579,51.366760167579,51.366760167579,51.371760167579,51.376760167579,51.376760167579,51.371760167579]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.371760167579,51.366760167579,51.366760167579,51.371760167579,51.376760167579,51.376760167579,51.371760167579]}]],[[{&#34;lng&#34;:[0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695],&#34;lat&#34;:[51.371760167579,51.366760167579,51.366760167579,51.371760167579,51.376760167579,51.376760167579,51.371760167579]}]],[[{&#34;lng&#34;:[0.133449389382639,0.136336140728587,0.142109643420483,0.144996394766431,0.142109643420483,0.136336140728587,0.133449389382639],&#34;lat&#34;:[51.371760167579,51.366760167579,51.366760167579,51.371760167579,51.376760167579,51.376760167579,51.371760167579]}]],[[{&#34;lng&#34;:[0.151952267171275,0.1520061648505,0.152030971401473,0.151952267171275],&#34;lat&#34;:[51.3697123837706,51.3696190320125,51.3696934879297,51.3697123837706]}],[{&#34;lng&#34;:[0.15110307433494,0.150769897458328,0.150865044809232,0.151179508003148,0.15110307433494],&#34;lat&#34;:[51.3723373062321,51.371760167579,51.3715953860651,51.3721867059972,51.3723373062321]}]],[[{&#34;lng&#34;:[-0.317546080424407,-0.316883820585269,-0.315719325159908,-0.3166943654949,-0.317505513769937,-0.317546080424407],&#34;lat&#34;:[51.3717601819849,51.371760167579,51.3737772727809,51.3731674579379,51.3719705244719,51.3717601819849]}]],[[{&#34;lng&#34;:[-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163632,-0.299563312509581,-0.305336815201477,-0.308223566547425],&#34;lat&#34;:[51.376760167579,51.371760167579,51.371760167579,51.376760167579,51.381760167579,51.381760167579,51.376760167579]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.376760167579,51.371760167579,51.371760167579,51.376760167579,51.381760167579,51.381760167579,51.376760167579]}]],[[{&#34;lng&#34;:[-0.262407908777737,-0.264922296358203,-0.270695799050099,-0.273582550396047,-0.271300205256049,-0.264702434313182,-0.262492592503665,-0.262407908777737],&#34;lat&#34;:[51.3774051858905,51.381760167579,51.381760167579,51.376760167579,51.3728071261051,51.3756238023134,51.3772546940031,51.3774051858905]}]],[[{&#34;lng&#34;:[-0.244937355163793,-0.244715036936566,-0.244963400126879,-0.244937355163793],&#34;lat&#34;:[51.3763751424499,51.376760167579,51.3771903909815,51.3763751424499]}],[{&#34;lng&#34;:[-0.246649366025568,-0.247601788282514,-0.253375290974411,-0.255072041392301,-0.253971449503868,-0.251661766828615,-0.24791736078099,-0.246649366025568],&#34;lat&#34;:[51.3801106524246,51.381760167579,51.381760167579,51.3788214505781,51.3787727489948,51.379049431096,51.3801706349044,51.3801106524246]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.376760167579,51.371760167579,51.371760167579,51.376760167579,51.381760167579,51.381760167579,51.376760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.376760167579,51.371760167579,51.371760167579,51.376760167579,51.381760167579,51.381760167579,51.376760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.376760167579,51.371760167579,51.371760167579,51.376760167579,51.381760167579,51.381760167579,51.376760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.376760167579,51.371760167579,51.371760167579,51.376760167579,51.381760167579,51.381760167579,51.376760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.376760167579,51.371760167579,51.371760167579,51.376760167579,51.381760167579,51.381760167579,51.376760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.376760167579,51.371760167579,51.371760167579,51.376760167579,51.381760167579,51.381760167579,51.376760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.376760167579,51.371760167579,51.371760167579,51.376760167579,51.381760167579,51.381760167579,51.376760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.376760167579,51.371760167579,51.371760167579,51.376760167579,51.381760167579,51.381760167579,51.376760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.376760167579,51.371760167579,51.371760167579,51.376760167579,51.381760167579,51.381760167579,51.376760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256266,-0.0715099561796784,-0.0743967075256266,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.376760167579,51.371760167579,51.371760167579,51.376760167579,51.381760167579,51.381760167579,51.376760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.062849702141834,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.062849702141834,-0.0657364534877822],&#34;lat&#34;:[51.376760167579,51.371760167579,51.371760167579,51.376760167579,51.381760167579,51.381760167579,51.376760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661453,-0.0484159454120934],&#34;lat&#34;:[51.376760167579,51.371760167579,51.371760167579,51.376760167579,51.381760167579,51.381760167579,51.376760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.376760167579,51.371760167579,51.371760167579,51.376760167579,51.381760167579,51.381760167579,51.376760167579]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.376760167579,51.371760167579,51.371760167579,51.376760167579,51.381760167579,51.381760167579,51.376760167579]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528173,0.0150925841987655,0.0122058328528173,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.376760167579,51.371760167579,51.371760167579,51.376760167579,51.381760167579,51.381760167579,51.376760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.376760167579,51.371760167579,51.371760167579,51.376760167579,51.381760167579,51.381760167579,51.376760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.376760167579,51.371760167579,51.371760167579,51.376760167579,51.381760167579,51.381760167579,51.376760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879874,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879874,0.0555071030420393],&#34;lat&#34;:[51.376760167579,51.371760167579,51.371760167579,51.376760167579,51.381760167579,51.381760167579,51.376760167579]}]],[[{&#34;lng&#34;:[0.0728276111177281,0.0757143624636762,0.0814878651555725,0.0843746165015206,0.0814878651555724,0.0757143624636762,0.0728276111177281],&#34;lat&#34;:[51.376760167579,51.371760167579,51.371760167579,51.376760167579,51.381760167579,51.381760167579,51.376760167579]}]],[[{&#34;lng&#34;:[0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168],&#34;lat&#34;:[51.376760167579,51.371760167579,51.371760167579,51.376760167579,51.381760167579,51.381760167579,51.376760167579]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.376760167579,51.371760167579,51.371760167579,51.376760167579,51.381760167579,51.381760167579,51.376760167579]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.376760167579,51.371760167579,51.371760167579,51.376760167579,51.381760167579,51.381760167579,51.376760167579]}]],[[{&#34;lng&#34;:[0.150373214796965,0.144996394766431,0.142109643420483,0.144996394766431,0.150769897458328,0.15110307433494,0.150807246165151,0.149573871784761,0.151709778902828,0.152510525652008,0.153122419170092,0.152862507553524,0.152163336776806,0.152326521311483,0.150948244639113,0.151106994559356,0.149586992377142,0.14958214281834,0.150346809203366,0.150373214796965],&#34;lat&#34;:[51.3817601766555,51.381760167579,51.376760167579,51.371760167579,51.371760167579,51.3723373062321,51.3729201781962,51.3735822275187,51.3754360835799,51.3752297998931,51.3776855681707,51.3781357765666,51.3783360824146,51.378690094168,51.3790850170494,51.3798960010886,51.3800893675939,51.3810894574319,51.3810925430037,51.3817601766555]}]],[[{&#34;lng&#34;:[-0.308254351118554,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.311370783335087,-0.310868978672625,-0.311787689096885,-0.310631057173735,-0.30933095193267,-0.309276771159504,-0.308517520970115,-0.308326005842539,-0.307388550210277,-0.307892223209386,-0.308254351118554],&#34;lat&#34;:[51.3767601683313,51.376760167579,51.381760167579,51.386760167579,51.3867602027514,51.3861875047988,51.385786213743,51.3847650910152,51.3818642258089,51.3804489158365,51.3805018267399,51.3800835727751,51.378384863288,51.3783651393705,51.3767601683313]}]],[[{&#34;lng&#34;:[-0.299563312509581,-0.296676561163632,-0.290903058471736,-0.288016307125788,-0.290903058471736,-0.296676561163633,-0.299563312509581],&#34;lat&#34;:[51.381760167579,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579]}]],[[{&#34;lng&#34;:[-0.282242804433892,-0.279356053087944,-0.273582550396047,-0.270695799050099,-0.273582550396047,-0.279356053087944,-0.282242804433892],&#34;lat&#34;:[51.381760167579,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579]}]],[[{&#34;lng&#34;:[-0.255072041392301,-0.253375290974411,-0.256262042320359,-0.262035545012255,-0.264922296358203,-0.262407908777737,-0.261172234981261,-0.258444371877716,-0.255072041392301],&#34;lat&#34;:[51.3788214505781,51.381760167579,51.386760167579,51.386760167579,51.381760167579,51.3774051858905,51.3796009886876,51.3789706125668,51.3788214505781]}]],[[{&#34;lng&#34;:[-0.244963400126879,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514,-0.246649366025568,-0.245054290559491,-0.244963400126879],&#34;lat&#34;:[51.3771903909815,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579,51.3801106524246,51.3800351777371,51.3771903909815]}]],[[{&#34;lng&#34;:[-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826],&#34;lat&#34;:[51.381760167579,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.381760167579,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.381760167579,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.381760167579,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.381760167579,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.381760167579,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.381760167579,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.381760167579,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.381760167579,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256266,-0.0715099561796784,-0.0657364534877822,-0.062849702141834,-0.0657364534877822,-0.0715099561796784,-0.0743967075256266],&#34;lat&#34;:[51.381760167579,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661453,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.381760167579,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.381760167579,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.381760167579,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579]}]],[[{&#34;lng&#34;:[-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714],&#34;lat&#34;:[51.381760167579,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579]}]],[[{&#34;lng&#34;:[0.0122058328528173,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528173],&#34;lat&#34;:[51.381760167579,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.381760167579,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879874,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.381760167579,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.381760167579,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579]}]],[[{&#34;lng&#34;:[0.0814878651555724,0.0843746165015206,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0843746165015205,0.0814878651555724],&#34;lat&#34;:[51.381760167579,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.381760167579,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579]}]],[[{&#34;lng&#34;:[0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695],&#34;lat&#34;:[51.381760167579,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579]}]],[[{&#34;lng&#34;:[0.133449389382639,0.136336140728587,0.142109643420483,0.144996394766431,0.142109643420483,0.136336140728587,0.133449389382639],&#34;lat&#34;:[51.381760167579,51.376760167579,51.376760167579,51.381760167579,51.386760167579,51.386760167579,51.381760167579]}]],[[{&#34;lng&#34;:[0.152862507553524,0.153122419170092,0.153209808943727,0.152862507553524],&#34;lat&#34;:[51.3781357765666,51.3776855681707,51.3780362757883,51.3781357765666]}]],[[{&#34;lng&#34;:[-0.314786361348156,-0.315545150294526,-0.316759913033594,-0.315981061523571,-0.314786361348156],&#34;lat&#34;:[51.3881273772036,51.3894416673135,51.3887730875859,51.3876333632519,51.3881273772036]}]],[[{&#34;lng&#34;:[-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163633,-0.299563312509581,-0.305336815201477,-0.308223566547425],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[-0.273582550396047,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.273582550396047],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[-0.256262042320359,-0.253375290974411,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.253375290974411,-0.256262042320359],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256266,-0.0715099561796784,-0.0743967075256266,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.062849702141834,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.0628497021418341,-0.0657364534877822],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661453,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528173,0.0150925841987655,0.0122058328528174,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879874,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879875,0.0555071030420393],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[0.0728276111177281,0.0757143624636762,0.0814878651555724,0.0843746165015205,0.0814878651555725,0.0757143624636762,0.0728276111177281],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.386760167579,51.381760167579,51.381760167579,51.386760167579,51.391760167579,51.391760167579,51.386760167579]}]],[[{&#34;lng&#34;:[0.148218138992926,0.144996394766431,0.142109643420483,0.144996394766431,0.150373214796965,0.150439934443252,0.149760636690719,0.149773700889988,0.149965769656192,0.150432588656158,0.148875600971079,0.149390430106852,0.148627918999034,0.149809227949885,0.148218138992926],&#34;lat&#34;:[51.3917602025612,51.391760167579,51.386760167579,51.381760167579,51.3817601766555,51.3834470158003,51.383670799276,51.3848702265789,51.3858406317487,51.3860182209965,51.3875720549916,51.3878548723365,51.3886683177026,51.390872437432,51.3917602025612]}]],[[{&#34;lng&#34;:[-0.322755001459518,-0.325544074623114,-0.33131757731501,-0.331987125590291,-0.330808125204617,-0.328693983933143,-0.32760922513805,-0.325990182158601,-0.324612544349345,-0.322755001459518],&#34;lat&#34;:[51.3919293701788,51.396760167579,51.396760167579,51.3956005796124,51.3940916514575,51.3923097975787,51.3917457741015,51.3914457169839,51.3915033414851,51.3919293701788]}]],[[{&#34;lng&#34;:[-0.311370783335087,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316474286485062,-0.314134121134015,-0.315545150294526,-0.314786361348156,-0.313158577442601,-0.311370783335087],&#34;lat&#34;:[51.3867602027514,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.3924695722948,51.3902182276364,51.3894416673135,51.3881273772036,51.3888004365283,51.3867602027514]}]],[[{&#34;lng&#34;:[-0.299563312509581,-0.296676561163633,-0.290903058471736,-0.288016307125788,-0.290903058471736,-0.296676561163633,-0.299563312509581],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[-0.282242804433892,-0.279356053087944,-0.273582550396047,-0.270695799050099,-0.273582550396048,-0.279356053087944,-0.282242804433892],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.253375290974411,-0.256262042320359,-0.262035545012255,-0.264922296358203],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256266,-0.0715099561796784,-0.0657364534877822,-0.0628497021418341,-0.0657364534877822,-0.0715099561796784,-0.0743967075256266],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[0.0122058328528174,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528174],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879875,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[0.0814878651555725,0.0843746165015205,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0843746165015205,0.0814878651555725],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[0.133449389382639,0.136336140728587,0.142109643420483,0.144996394766431,0.142109643420483,0.136336140728587,0.133449389382639],&#34;lat&#34;:[51.391760167579,51.386760167579,51.386760167579,51.391760167579,51.396760167579,51.396760167579,51.391760167579]}]],[[{&#34;lng&#34;:[0.15844894718659,0.153656648804276,0.151261799084384,0.158247971013802,0.161287091979753,0.161923541538423,0.161294419789569,0.158954243433385,0.15844894718659],&#34;lat&#34;:[51.3967601875869,51.396760167579,51.3926122484539,51.392239812614,51.3923699349959,51.3924415578361,51.3935312932896,51.3958213156221,51.3967601875869]}]],[[{&#34;lng&#34;:[-0.331987125590291,-0.33131757731501,-0.334204328660958,-0.339256881378572,-0.338502399688328,-0.336952840482213,-0.332121207961261,-0.331987125590291],&#34;lat&#34;:[51.3956005796124,51.396760167579,51.401760167579,51.4017601830778,51.401041574853,51.3993712964563,51.3957721761205,51.3956005796124]}]],[[{&#34;lng&#34;:[-0.316474286485062,-0.313997069239321,-0.316883820585269,-0.322657323277166,-0.325544074623114,-0.322755001459518,-0.319855192509385,-0.317720143821804,-0.316474286485062],&#34;lat&#34;:[51.3924695722948,51.396760167579,51.401760167579,51.401760167579,51.396760167579,51.3919293701788,51.3925943687238,51.3936680338851,51.3924695722948]}]],[[{&#34;lng&#34;:[-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163633,-0.299563312509581,-0.305336815201477,-0.308223566547425],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[-0.273582550396048,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.273582550396048],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[-0.256262042320359,-0.253375290974411,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.25337529097441,-0.256262042320359],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256266,-0.0715099561796784,-0.0743967075256266,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.0628497021418341,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.0628497021418341,-0.0657364534877822],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528174,0.0150925841987655,0.0122058328528174,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879875,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879875,0.0555071030420393],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[0.0728276111177281,0.0757143624636762,0.0814878651555725,0.0843746165015205,0.0814878651555724,0.0757143624636762,0.0728276111177281],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.396760167579,51.391760167579,51.391760167579,51.396760167579,51.401760167579,51.401760167579,51.396760167579]}]],[[{&#34;lng&#34;:[0.151261799084384,0.153656648804276,0.150769897458328,0.144996394766431,0.142109643420483,0.144996394766431,0.148218138992926,0.147507733652517,0.147714750261655,0.151261799084384],&#34;lat&#34;:[51.3926122484539,51.396760167579,51.401760167579,51.401760167579,51.396760167579,51.391760167579,51.3917602025612,51.3921565627496,51.392801181858,51.3926122484539]}]],[[{&#34;lng&#34;:[0.161294419789569,0.161923541538423,0.16235797136364,0.161294419789569],&#34;lat&#34;:[51.3935312932896,51.3924415578361,51.3924904442807,51.3935312932896]}]],[[{&#34;lng&#34;:[-0.340765640015893,-0.342864582698803,-0.348638085390699,-0.348760515991113,-0.343808926071652,-0.340765640015893],&#34;lat&#34;:[51.4031248077219,51.406760167579,51.406760167579,51.4065481351992,51.4039807523362,51.4031248077219]}]],[[{&#34;lng&#34;:[-0.334204328660958,-0.33131757731501,-0.325544074623114,-0.322657323277166,-0.325544074623114,-0.33131757731501,-0.334204328660958],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316883820585269],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[-0.299563312509581,-0.296676561163633,-0.290903058471736,-0.288016307125788,-0.290903058471736,-0.296676561163633,-0.299563312509581],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[-0.282242804433892,-0.279356053087944,-0.273582550396048,-0.270695799050099,-0.273582550396048,-0.279356053087944,-0.282242804433892],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.25337529097441,-0.256262042320359,-0.262035545012255,-0.264922296358203],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256266,-0.0715099561796784,-0.0657364534877822,-0.0628497021418341,-0.0657364534877822,-0.0715099561796784,-0.0743967075256266],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[0.0122058328528174,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528174],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879875,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[0.0814878651555724,0.0843746165015205,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0843746165015206,0.0814878651555724],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[0.133449389382639,0.136336140728587,0.142109643420483,0.144996394766431,0.142109643420483,0.136336140728587,0.133449389382639],&#34;lat&#34;:[51.401760167579,51.396760167579,51.396760167579,51.401760167579,51.406760167579,51.406760167579,51.401760167579]}]],[[{&#34;lng&#34;:[0.153170781693744,0.150769897458328,0.153656648804276,0.15844894718659,0.157702273612297,0.157334679956759,0.156408754963003,0.155487666702054,0.154940916553453,0.155223044603219,0.153170781693744],&#34;lat&#34;:[51.4059187025418,51.401760167579,51.396760167579,51.3967601875869,51.3981474791655,51.4007838011122,51.4024942165577,51.4035759663135,51.4036597770683,51.4039720169096,51.4059187025418]}]],[[{&#34;lng&#34;:[-0.385307472561024,-0.386165852888024,-0.389859101660965,-0.38967097679805,-0.389198060104409,-0.386656915818604,-0.385307472561024],&#34;lat&#34;:[51.4102735308835,51.411760167579,51.4117602002658,51.4106934025072,51.4103200029775,51.4104118386084,51.4102735308835]}]],[[{&#34;lng&#34;:[-0.368117085049927,-0.368845344812336,-0.374618847504232,-0.376691440864529,-0.373171631681269,-0.368117085049927],&#34;lat&#34;:[51.4104988944929,51.411760167579,51.411760167579,51.4081704484717,51.4085996289563,51.4104988944929]}]],[[{&#34;lng&#34;:[-0.348760515991113,-0.348638085390699,-0.351524836736647,-0.357298339428543,-0.357504403192843,-0.355378432493055,-0.355130457083614,-0.351639503799233,-0.348760515991113],&#34;lat&#34;:[51.4065481351992,51.406760167579,51.411760167579,51.411760167579,51.4114032932618,51.4107522242273,51.4098072662964,51.408040652341,51.4065481351992]}]],[[{&#34;lng&#34;:[-0.339256881378572,-0.334204328660958,-0.33131757731501,-0.334204328660958,-0.339977831352854,-0.342864582698803,-0.340765640015893,-0.340657883009829,-0.339256881378572],&#34;lat&#34;:[51.4017601830778,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579,51.4031248077219,51.4030944983092,51.4017601830778]}]],[[{&#34;lng&#34;:[-0.325544074623114,-0.322657323277166,-0.316883820585269,-0.313997069239321,-0.316883820585269,-0.322657323277166,-0.325544074623114],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163633,-0.299563312509581,-0.305336815201477,-0.308223566547425],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[-0.273582550396048,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.273582550396048],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[-0.256262042320359,-0.25337529097441,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.253375290974411,-0.256262042320359],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256266,-0.0715099561796784,-0.0743967075256265,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.0628497021418341,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.0628497021418341,-0.0657364534877822],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528174,0.0150925841987655,0.0122058328528173,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879875,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879874,0.0555071030420393],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[0.0728276111177281,0.0757143624636762,0.0814878651555724,0.0843746165015206,0.0814878651555725,0.0757143624636762,0.0728276111177281],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.406760167579,51.401760167579,51.401760167579,51.406760167579,51.411760167579,51.411760167579,51.406760167579]}]],[[{&#34;lng&#34;:[0.149648478522122,0.144996394766431,0.142109643420483,0.144996394766431,0.150769897458328,0.153170781693744,0.152796295095178,0.151027508375791,0.148666026941403,0.148876629050624,0.148963775907141,0.149285676596079,0.15156902305749,0.152536572706531,0.150894535780624,0.149725862757674,0.149648478522122],&#34;lat&#34;:[51.4117601897744,51.411760167579,51.406760167579,51.401760167579,51.401760167579,51.4059187025418,51.4062739021839,51.4066687826405,51.4081312203263,51.4084834822719,51.4086239763456,51.4091414563522,51.4086777770908,51.4087003345424,51.4115443117237,51.4116586092511,51.4117601897744]}]],[[{&#34;lng&#34;:[-0.376691440864529,-0.374618847504232,-0.37750559885018,-0.383279101542076,-0.386165852888024,-0.385307472561024,-0.383798604668706,-0.383371168331224,-0.379449114623567,-0.376691440864529],&#34;lat&#34;:[51.4081704484717,51.411760167579,51.416760167579,51.416760167579,51.411760167579,51.4102735308835,51.4101188639996,51.4085384015693,51.4078341180745,51.4081704484717]}]],[[{&#34;lng&#34;:[-0.357504403192843,-0.357298339428543,-0.360185090774491,-0.365958593466388,-0.368845344812336,-0.368117085049927,-0.366195123923557,-0.36312370589466,-0.360711334832718,-0.35906510930039,-0.357504403192843],&#34;lat&#34;:[51.4114032932618,51.411760167579,51.416760167579,51.416760167579,51.411760167579,51.4104988944929,51.4112209804053,51.4119055747988,51.4120508112922,51.411881216257,51.4114032932618]}]],[[{&#34;lng&#34;:[-0.351524836736647,-0.348638085390699,-0.342864582698803,-0.339977831352854,-0.342864582698802,-0.348638085390699,-0.351524836736647],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[-0.334204328660958,-0.33131757731501,-0.325544074623114,-0.322657323277166,-0.325544074623114,-0.33131757731501,-0.334204328660958],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316883820585269],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[-0.299563312509581,-0.296676561163633,-0.290903058471736,-0.288016307125788,-0.290903058471736,-0.296676561163633,-0.299563312509581],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[-0.282242804433892,-0.279356053087944,-0.273582550396048,-0.270695799050099,-0.273582550396048,-0.279356053087944,-0.282242804433892],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.253375290974411,-0.256262042320359,-0.262035545012255,-0.264922296358203],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256265,-0.0715099561796784,-0.0657364534877822,-0.0628497021418341,-0.0657364534877822,-0.0715099561796784,-0.0743967075256265],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[0.0122058328528173,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528173],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879874,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[0.0814878651555725,0.0843746165015206,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0843746165015206,0.0814878651555725],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[0.133449389382639,0.136336140728587,0.142109643420483,0.144996394766431,0.142109643420483,0.136336140728587,0.133449389382639],&#34;lat&#34;:[51.411760167579,51.406760167579,51.406760167579,51.411760167579,51.416760167579,51.416760167579,51.411760167579]}]],[[{&#34;lng&#34;:[0.150894535780624,0.152536572706531,0.152906365128316,0.153743998436728,0.150894535780624],&#34;lat&#34;:[51.4115443117237,51.4087003345424,51.4087089537726,51.4112655799844,51.4115443117237]}]],[[{&#34;lng&#34;:[-0.389859101660965,-0.386165852888024,-0.383279101542076,-0.386165852888024,-0.390179414028374,-0.386663091187098,-0.38771504361549,-0.386783032325556,-0.386615422823768,-0.386143979872413,-0.390313694733917,-0.389859101660965],&#34;lat&#34;:[51.4117602002658,51.411760167579,51.416760167579,51.421760167579,51.4217601976288,51.4200805151557,51.4193279473003,51.417654232121,51.4150216492776,51.414280510111,51.4143378498803,51.4117602002658]}]],[[{&#34;lng&#34;:[-0.37750559885018,-0.374618847504232,-0.368845344812336,-0.365958593466388,-0.368845344812336,-0.374618847504232,-0.37750559885018],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[-0.360185090774491,-0.357298339428543,-0.351524836736647,-0.348638085390699,-0.351524836736647,-0.357298339428543,-0.360185090774491],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[-0.342864582698802,-0.339977831352854,-0.334204328660958,-0.33131757731501,-0.334204328660958,-0.339977831352854,-0.342864582698802],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[-0.325544074623114,-0.322657323277166,-0.316883820585269,-0.313997069239321,-0.316883820585269,-0.322657323277166,-0.325544074623114],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163633,-0.299563312509581,-0.305336815201477,-0.308223566547425],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[-0.273582550396048,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.273582550396048],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[-0.256262042320359,-0.253375290974411,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.253375290974411,-0.256262042320359],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256265,-0.0715099561796784,-0.0743967075256266,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.0628497021418341,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.0628497021418341,-0.0657364534877822],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661453,-0.0484159454120934],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528173,0.0150925841987655,0.0122058328528174,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879874,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879875,0.0555071030420393],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[0.0728276111177281,0.0757143624636762,0.0814878651555725,0.0843746165015206,0.0814878651555725,0.0757143624636762,0.0728276111177281],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.416760167579,51.411760167579,51.411760167579,51.416760167579,51.421760167579,51.421760167579,51.416760167579]}]],[[{&#34;lng&#34;:[0.151405361392448,0.150769897458328,0.144996394766431,0.142109643420483,0.144996394766431,0.149648478522122,0.149133871972944,0.151128184794078,0.151029400675121,0.153104838799125,0.151732851708062,0.151132815786136,0.151405361392448],&#34;lat&#34;:[51.420659611741,51.421760167579,51.421760167579,51.416760167579,51.411760167579,51.4117601897744,51.4124356892915,51.4150637250921,51.4176159416675,51.4177160205953,51.4200924113635,51.420430654168,51.420659611741]}]],[[{&#34;lng&#34;:[-0.392445659096766,-0.394826106925869,-0.400599609617765,-0.402715195832471,-0.401781224283502,-0.398133690858415,-0.394533176470878,-0.392445659096766],&#34;lat&#34;:[51.4226371952436,51.426760167579,51.426760167579,51.4230959788111,51.423311759048,51.4235560412333,51.4232379027561,51.4226371952436]}]],[[{&#34;lng&#34;:[-0.386165852888024,-0.383279101542076,-0.37750559885018,-0.374618847504232,-0.37750559885018,-0.383279101542076,-0.386165852888024],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[-0.368845344812336,-0.365958593466388,-0.360185090774491,-0.357298339428543,-0.360185090774491,-0.365958593466388,-0.368845344812336],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[-0.351524836736647,-0.348638085390699,-0.342864582698802,-0.339977831352854,-0.342864582698802,-0.348638085390699,-0.351524836736647],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[-0.334204328660958,-0.33131757731501,-0.325544074623114,-0.322657323277166,-0.325544074623114,-0.33131757731501,-0.334204328660958],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316883820585269],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[-0.299563312509581,-0.296676561163633,-0.290903058471736,-0.288016307125788,-0.290903058471736,-0.296676561163633,-0.299563312509581],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[-0.282242804433892,-0.279356053087944,-0.273582550396048,-0.270695799050099,-0.273582550396047,-0.279356053087944,-0.282242804433892],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.253375290974411,-0.256262042320359,-0.262035545012255,-0.264922296358203],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256266,-0.0715099561796784,-0.0657364534877822,-0.0628497021418341,-0.0657364534877822,-0.0715099561796784,-0.0743967075256266],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661453,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[0.0122058328528174,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528174],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879875,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[0.0814878651555725,0.0843746165015206,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0843746165015206,0.0814878651555725],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[0.133449389382639,0.136336140728587,0.142109643420483,0.144996394766431,0.142109643420483,0.136336140728587,0.133449389382639],&#34;lat&#34;:[51.421760167579,51.416760167579,51.416760167579,51.421760167579,51.426760167579,51.426760167579,51.421760167579]}]],[[{&#34;lng&#34;:[0.151732851708062,0.153104838799125,0.154068127566862,0.154610546719029,0.151732851708062],&#34;lat&#34;:[51.4200924113635,51.4177160205953,51.4177624583818,51.4184701302724,51.4200924113635]}],[{&#34;lng&#34;:[0.153544564470306,0.150769897458328,0.151405361392448,0.152977692589275,0.153491318784513,0.153292734824799,0.153544564470306],&#34;lat&#34;:[51.4265660535559,51.421760167579,51.420659611741,51.4219804239512,51.4236041155736,51.4253164150982,51.4265660535559]}]],[[{&#34;lng&#34;:[-0.437115733024223,-0.438127377115091,-0.439943411266552,-0.440009318862856,-0.437115733024223],&#34;lat&#34;:[51.4300080812329,51.431760167579,51.4317601981507,51.4306510443355,51.4300080812329]}]],[[{&#34;lng&#34;:[-0.4221620836689,-0.426580371731298,-0.427120328490964,-0.423520053489833,-0.423600923319941,-0.4221620836689],&#34;lat&#34;:[51.4317601930497,51.431760167579,51.430825023626,51.4308773766433,51.4311608041819,51.4317601930497]}],[{&#34;lng&#34;:[-0.427743962645978,-0.428019784644798,-0.427852674869276,-0.427743962645978],&#34;lat&#34;:[51.4297449091731,51.4292671769301,51.429252205218,51.4297449091731]}]],[[{&#34;lng&#34;:[-0.402715195832471,-0.400599609617765,-0.403486360963713,-0.40925986365561,-0.411702293376045,-0.410889879573163,-0.409028024075089,-0.408462798493817,-0.40779710753282,-0.405382989451323,-0.402715195832471],&#34;lat&#34;:[51.4230959788111,51.426760167579,51.431760167579,51.431760167579,51.4275298310826,51.4273419039119,51.425450725292,51.423834330702,51.4235779589111,51.4224795726688,51.4230959788111]}]],[[{&#34;lng&#34;:[-0.390179414028374,-0.386165852888024,-0.383279101542076,-0.386165852888024,-0.391939355579921,-0.394826106925869,-0.392445659096766,-0.391363543979756,-0.390179414028374],&#34;lat&#34;:[51.4217601976288,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579,51.4226371952436,51.4223257831702,51.4217601976288]}]],[[{&#34;lng&#34;:[-0.37750559885018,-0.374618847504232,-0.368845344812336,-0.365958593466388,-0.368845344812336,-0.374618847504232,-0.37750559885018],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[-0.360185090774491,-0.357298339428543,-0.351524836736647,-0.348638085390699,-0.351524836736647,-0.357298339428543,-0.360185090774491],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[-0.342864582698802,-0.339977831352854,-0.334204328660958,-0.33131757731501,-0.334204328660958,-0.339977831352854,-0.342864582698802],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[-0.323479418539907,-0.325544074623114,-0.322657323277166,-0.316883820585269,-0.313997069239321,-0.316883820585269,-0.322657323277166,-0.323115719541501,-0.318462264036498,-0.318566802992466,-0.319962710284523,-0.322086800373835,-0.323479418539907],&#34;lat&#34;:[51.4303363754789,51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.43096627978,51.4295585814519,51.4291032413959,51.4294011248338,51.4297328062614,51.4303363754789]}]],[[{&#34;lng&#34;:[-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163633,-0.299563312509581,-0.305336815201477,-0.308223566547425],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[-0.273582550396047,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.273582550396047],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[-0.256262042320359,-0.253375290974411,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.253375290974411,-0.256262042320359],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256266,-0.0715099561796784,-0.0743967075256265,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.0628497021418341,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.0628497021418341,-0.0657364534877822],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661453,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528174,0.0150925841987655,0.0122058328528173,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879875,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879875,0.0555071030420393],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[0.0728276111177281,0.0757143624636762,0.0814878651555725,0.0843746165015206,0.0814878651555725,0.0757143624636762,0.0728276111177281],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.426760167579,51.421760167579,51.421760167579,51.426760167579,51.431760167579,51.431760167579,51.426760167579]}]],[[{&#34;lng&#34;:[0.153602564701177,0.150769897458328,0.144996394766431,0.142109643420483,0.144996394766431,0.150769897458328,0.153544564470306,0.153602564701177],&#34;lat&#34;:[51.4268538547047,51.431760167579,51.431760167579,51.426760167579,51.421760167579,51.421760167579,51.4265660535559,51.4268538547047]}]],[[{&#34;lng&#34;:[0.166548382281641,0.16231690284212,0.161060679861993,0.163896977586317,0.163805482387223,0.164302052451208,0.165563680646166,0.166158492124514,0.166352544531362,0.166667334883102,0.166069447224118,0.166548382281641],&#34;lat&#34;:[51.4317601953353,51.431760167579,51.4295844687536,51.4289323440166,51.4286093669823,51.4285849474604,51.4303485034428,51.430270967582,51.4305416931891,51.4312957954805,51.4314300249744,51.4317601953353]}]],[[{&#34;lng&#34;:[-0.445717122438812,-0.446787631152935,-0.447235469107129,-0.447737916372014,-0.445717122438812],&#34;lat&#34;:[51.4349061280487,51.436760167579,51.4367601777241,51.4350034044487,51.4349061280487]}]],[[{&#34;lng&#34;:[-0.427120328490964,-0.426580371731298,-0.429467123077246,-0.435240625769143,-0.438127377115091,-0.437115733024223,-0.432660978420021,-0.429555637394231,-0.429446007558764,-0.428019784644798,-0.427743962645978,-0.427506875222593,-0.427120328490964],&#34;lat&#34;:[51.430825023626,51.431760167579,51.436760167579,51.436760167579,51.431760167579,51.4300080812329,51.4290180473043,51.4287975350701,51.4293949451391,51.4292671769301,51.4297449091731,51.4308193961349,51.430825023626]}]],[[{&#34;lng&#34;:[-0.411702293376045,-0.40925986365561,-0.412146615001558,-0.417920117693454,-0.42053614152095,-0.419100000308496,-0.41860514052927,-0.418377585929027,-0.417315579708012,-0.417921742519288,-0.413827484586152,-0.414373779593825,-0.412474066954475,-0.413107467354275,-0.411702293376045],&#34;lat&#34;:[51.4275298310826,51.431760167579,51.436760167579,51.436760167579,51.4322291309202,51.4323591282263,51.4321096531999,51.4318665084901,51.4319178105648,51.4310276555005,51.4300748732177,51.4292954274436,51.4287814253268,51.4278548583478,51.4275298310826]}]],[[{&#34;lng&#34;:[-0.403486360963713,-0.400599609617765,-0.394826106925869,-0.391939355579921,-0.394826106925869,-0.400599609617765,-0.403486360963713],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[-0.386165852888024,-0.383279101542076,-0.37750559885018,-0.374618847504232,-0.37750559885018,-0.383279101542076,-0.386165852888024],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[-0.368845344812336,-0.365958593466388,-0.360185090774491,-0.357298339428543,-0.360185090774491,-0.365958593466388,-0.368845344812336],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[-0.351524836736647,-0.348638085390699,-0.342864582698802,-0.339977831352854,-0.342864582698802,-0.348638085390699,-0.351524836736647],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[-0.323115719541501,-0.322657323277166,-0.325544074623114,-0.32824373331455,-0.327711516935928,-0.327650396668644,-0.326959590879306,-0.32421321489374,-0.323115719541501],&#34;lat&#34;:[51.43096627978,51.431760167579,51.436760167579,51.4367602028771,51.4359172324314,51.4344389181948,51.4333823424921,51.4312982392474,51.43096627978]}],[{&#34;lng&#34;:[-0.329141851021431,-0.33131757731501,-0.334204328660958,-0.33131757731501,-0.325544074623114,-0.323479418539907,-0.325539221541954,-0.32598816524531,-0.325705837340313,-0.326472957307723,-0.326256757626692,-0.32849256741782,-0.328870475666496,-0.329360733742137,-0.329141851021431],&#34;lat&#34;:[51.4367602008756,51.436760167579,51.431760167579,51.426760167579,51.426760167579,51.4303363754789,51.4312290471934,51.431069103353,51.4313545965498,51.4315418335845,51.4316709402144,51.4339132059943,51.4361315896392,51.4362608813087,51.4367602008756]}]],[[{&#34;lng&#34;:[-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316883820585269],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[-0.299563312509581,-0.296676561163633,-0.290903058471736,-0.288016307125788,-0.290903058471736,-0.296676561163633,-0.299563312509581],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[-0.282242804433892,-0.279356053087944,-0.273582550396047,-0.270695799050099,-0.273582550396047,-0.279356053087944,-0.282242804433892],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.253375290974411,-0.256262042320359,-0.262035545012255,-0.264922296358203],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256265,-0.0715099561796784,-0.0657364534877822,-0.0628497021418341,-0.0657364534877822,-0.0715099561796784,-0.0743967075256265],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[0.0122058328528173,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528173],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879875,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[0.0814878651555725,0.0843746165015206,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0843746165015205,0.0814878651555725],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[0.133449389382639,0.136336140728587,0.142109643420483,0.144996394766431,0.142109643420483,0.136336140728587,0.133449389382639],&#34;lat&#34;:[51.431760167579,51.426760167579,51.426760167579,51.431760167579,51.436760167579,51.436760167579,51.431760167579]}]],[[{&#34;lng&#34;:[0.161060679861993,0.16231690284212,0.159430151496172,0.153656648804276,0.150769897458328,0.153602564701177,0.153737467844228,0.155274540747146,0.155848856539047,0.158605995017214,0.159059435639207,0.159811125106631,0.160669222886643,0.161060679861993],&#34;lat&#34;:[51.4295844687536,51.431760167579,51.436760167579,51.436760167579,51.431760167579,51.4268538547047,51.4275232392787,51.4289752243343,51.4308765488794,51.4301270319029,51.4302248013933,51.4292028424167,51.4296744661414,51.4295844687536]}]],[[{&#34;lng&#34;:[-0.453574906724075,-0.45544788519078,-0.455512185598605,-0.456495973286722,-0.453681259577384,-0.453574906724075],&#34;lat&#34;:[51.4385162065075,51.441760167579,51.4417601691404,51.4382249456492,51.4384945287903,51.4385162065075]}]],[[{&#34;lng&#34;:[-0.439943411266552,-0.438127377115091,-0.435240625769143,-0.438127377115091,-0.443900879806987,-0.446787631152935,-0.445717122438812,-0.43977347399784,-0.439943411266552],&#34;lat&#34;:[51.4317601981507,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579,51.4349061280487,51.4346198106361,51.4317601981507]}]],[[{&#34;lng&#34;:[-0.42053614152095,-0.417920117693454,-0.420806869039402,-0.426580371731298,-0.429467123077246,-0.426580371731298,-0.4221620836689,-0.421175228530283,-0.42053614152095],&#34;lat&#34;:[51.4322291309202,51.436760167579,51.441760167579,51.441760167579,51.436760167579,51.431760167579,51.4317601930497,51.4321712758621,51.4322291309202]}]],[[{&#34;lng&#34;:[-0.412146615001558,-0.40925986365561,-0.403486360963713,-0.400599609617765,-0.403486360963713,-0.40925986365561,-0.412146615001558],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[-0.394826106925869,-0.391939355579921,-0.386165852888024,-0.383279101542076,-0.386165852888024,-0.391939355579921,-0.394826106925869],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[-0.37750559885018,-0.374618847504232,-0.368845344812336,-0.365958593466388,-0.368845344812336,-0.374618847504232,-0.37750559885018],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[-0.360185090774491,-0.357298339428543,-0.351524836736647,-0.348638085390699,-0.351524836736647,-0.357298339428543,-0.360185090774491],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[-0.342864582698802,-0.339977831352854,-0.334204328660958,-0.33131757731501,-0.334204328660958,-0.339977831352854,-0.342864582698802],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[-0.325544074623114,-0.322657323277166,-0.316883820585269,-0.313997069239321,-0.316883820585269,-0.322657323277166,-0.325544074623114],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163633,-0.299563312509581,-0.305336815201477,-0.308223566547425],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[-0.273582550396047,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.273582550396047],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[-0.256262042320359,-0.253375290974411,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.253375290974411,-0.256262042320359],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256265,-0.0715099561796784,-0.0743967075256265,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.0628497021418341,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.062849702141834,-0.0657364534877822],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528173,0.0150925841987655,0.0122058328528174,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879875,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879874,0.0555071030420393],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[0.0728276111177281,0.0757143624636762,0.0814878651555725,0.0843746165015205,0.0814878651555724,0.0757143624636762,0.0728276111177281],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[0.142109643420483,0.144996394766431,0.150769897458328,0.153656648804276,0.150769897458328,0.144996394766431,0.142109643420483],&#34;lat&#34;:[51.436760167579,51.431760167579,51.431760167579,51.436760167579,51.441760167579,51.441760167579,51.436760167579]}]],[[{&#34;lng&#34;:[0.169632730612935,0.168090405534016,0.16231690284212,0.159430151496172,0.16231690284212,0.166548382281641,0.166819015436212,0.166663772202317,0.168688075921807,0.169632730612935],&#34;lat&#34;:[51.439088927196,51.441760167579,51.441760167579,51.436760167579,51.431760167579,51.4317601953353,51.4319467626391,51.4350513032959,51.4374797177048,51.439088927196]}]],[[{&#34;lng&#34;:[-0.447235469107129,-0.446787631152935,-0.443900879806987,-0.446787631152935,-0.452561133844831,-0.45544788519078,-0.453574906724075,-0.4463096767972,-0.447235469107129],&#34;lat&#34;:[51.4367601777241,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579,51.4385162065075,51.4399967891852,51.4367601777241]}]],[[{&#34;lng&#34;:[-0.438127377115091,-0.435240625769143,-0.429467123077246,-0.426580371731298,-0.429467123077246,-0.435240625769143,-0.438127377115091],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[-0.420806869039402,-0.417920117693454,-0.412146615001558,-0.40925986365561,-0.412146615001558,-0.417920117693454,-0.420806869039402],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[-0.403486360963713,-0.400599609617765,-0.394826106925869,-0.391939355579921,-0.394826106925869,-0.400599609617765,-0.403486360963713],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[-0.386165852888024,-0.383279101542076,-0.37750559885018,-0.374618847504232,-0.37750559885018,-0.383279101542076,-0.386165852888024],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[-0.368845344812336,-0.365958593466388,-0.360185090774491,-0.357298339428543,-0.360185090774491,-0.365958593466388,-0.368845344812336],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[-0.351524836736647,-0.348638085390699,-0.342864582698802,-0.339977831352854,-0.342864582698802,-0.348638085390699,-0.351524836736647],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[-0.32824373331455,-0.325544074623114,-0.322657323277166,-0.324274185713142,-0.327604610468054,-0.329094694869315,-0.330014510594918,-0.330066684492178,-0.329205121934654,-0.328514575414042,-0.329060737887848,-0.32824373331455],&#34;lat&#34;:[51.4367602028771,51.436760167579,51.441760167579,51.4445607990848,51.4434927134864,51.4427244301031,51.4416872288832,51.4395873559257,51.4382387821433,51.4379996347218,51.4380541803316,51.4367602028771]}],[{&#34;lng&#34;:[-0.325349110615512,-0.325544074623114,-0.33131757731501,-0.334204328660958,-0.33131757731501,-0.329141851021431,-0.329139396604878,-0.330135103452974,-0.331859218724706,-0.331212621767653,-0.331385788135234,-0.330412195179084,-0.327130727167426,-0.325349110615512],&#34;lat&#34;:[51.4464225167193,51.446760167579,51.446760167579,51.441760167579,51.436760167579,51.4367602008756,51.4367657998747,51.4380668005369,51.4391209740021,51.4398068814114,51.4415700684252,51.4428969599757,51.4456324431631,51.4464225167193]}],[{&#34;lng&#34;:[-0.324486145850862,-0.324993001765244,-0.325772377448416,-0.328055762613236,-0.325144388921764,-0.325392117500078,-0.324931045862695,-0.324486145850862],&#34;lat&#34;:[51.4449279165249,51.4458057714194,51.4457083573273,51.4439847348286,51.4447399092202,51.4450087185465,51.4447899188457,51.4449279165249]}]],[[{&#34;lng&#34;:[-0.314313491363906,-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.311838926735696,-0.314176100143624,-0.314313491363906],&#34;lat&#34;:[51.4462121652695,51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.4467602007652,51.4462282990714,51.4462121652695]}]],[[{&#34;lng&#34;:[-0.299563312509581,-0.296676561163633,-0.290903058471736,-0.288016307125788,-0.290903058471736,-0.296676561163632,-0.299563312509581],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[-0.282242804433892,-0.279356053087944,-0.273582550396047,-0.270695799050099,-0.273582550396047,-0.279356053087944,-0.282242804433892],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.253375290974411,-0.256262042320359,-0.262035545012255,-0.264922296358203],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256265,-0.0715099561796784,-0.0657364534877822,-0.062849702141834,-0.0657364534877822,-0.0715099561796784,-0.0743967075256265],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[0.0122058328528174,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528174],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879874,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[0.0814878651555724,0.0843746165015205,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0843746165015205,0.0814878651555724],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[0.133449389382639,0.136336140728587,0.142109643420483,0.144996394766431,0.142109643420483,0.136336140728587,0.133449389382639],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[0.150769897458328,0.153656648804276,0.159430151496172,0.16231690284212,0.159430151496172,0.153656648804276,0.150769897458328],&#34;lat&#34;:[51.441760167579,51.436760167579,51.436760167579,51.441760167579,51.446760167579,51.446760167579,51.441760167579]}]],[[{&#34;lng&#34;:[0.178658935126639,0.176750659571861,0.170977156879964,0.168090405534016,0.169632730612935,0.170876381233043,0.172827984180681,0.1727703241344,0.173779517037574,0.175991124661985,0.178658935126639],&#34;lat&#34;:[51.4434550679712,51.446760167579,51.446760167579,51.441760167579,51.439088927196,51.4412072886909,51.4432449045059,51.4430310579929,51.4429790365369,51.4420054652238,51.4434550679712]}]],[[{&#34;lng&#34;:[-0.455512185598605,-0.45544788519078,-0.452561133844831,-0.45544788519078,-0.461221387882676,-0.461383985116609,-0.461502282159437,-0.457482395930749,-0.457464609747733,-0.45541214634133,-0.455512185598605],&#34;lat&#34;:[51.4417601691404,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.451478571895,51.4489924807886,51.4490907389264,51.4429991170197,51.4421196273102,51.4417601691404]}]],[[{&#34;lng&#34;:[-0.446787631152935,-0.443900879806987,-0.438127377115091,-0.435240625769143,-0.438127377115091,-0.443900879806987,-0.446787631152935],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[-0.429467123077246,-0.426580371731298,-0.420806869039402,-0.417920117693454,-0.420806869039402,-0.426580371731298,-0.429467123077246],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[-0.412146615001558,-0.40925986365561,-0.403486360963713,-0.400599609617765,-0.403486360963713,-0.409259863655609,-0.412146615001558],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[-0.394826106925869,-0.391939355579921,-0.386165852888024,-0.383279101542076,-0.386165852888024,-0.391939355579921,-0.394826106925869],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[-0.37750559885018,-0.374618847504232,-0.368845344812336,-0.365958593466388,-0.368845344812336,-0.374618847504232,-0.37750559885018],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[-0.360185090774491,-0.357298339428543,-0.351524836736647,-0.348638085390699,-0.351524836736647,-0.357298339428543,-0.360185090774491],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[-0.342864582698802,-0.339977831352854,-0.334204328660958,-0.33131757731501,-0.334204328660958,-0.339977831352854,-0.342864582698802],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[-0.324274185713142,-0.322657323277166,-0.316883820585269,-0.314313491363906,-0.321905454519016,-0.324274185713142],&#34;lat&#34;:[51.4445607990848,51.441760167579,51.441760167579,51.4462121652695,51.4453203764294,51.4445607990848]}],[{&#34;lng&#34;:[-0.314289682130777,-0.316883820585269,-0.322657323277166,-0.325544074623114,-0.325349110615512,-0.325097429049334,-0.321484856742845,-0.319291876259383,-0.315820756739031,-0.315792459301628,-0.314289682130777],&#34;lat&#34;:[51.4472670410803,51.451760167579,51.451760167579,51.446760167579,51.4464225167193,51.4465341227467,51.4468241536591,51.4464654194231,51.4466619985461,51.4468864016756,51.4472670410803]}],[{&#34;lng&#34;:[-0.321672378402392,-0.324993001765244,-0.324486145850862,-0.321031555546168,-0.321672378402392],&#34;lat&#34;:[51.4462207532517,51.4458057714194,51.4449279165249,51.4459993647473,51.4462207532517]}]],[[{&#34;lng&#34;:[-0.304254624186438,-0.305336815201477,-0.306319361624636,-0.305749716426815,-0.304301827024729,-0.304254624186438],&#34;lat&#34;:[51.4517601891717,51.451760167579,51.4500584781427,51.4503674378526,51.4516126367763,51.4517601891717]}],[{&#34;lng&#34;:[-0.307546708553403,-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163632,-0.299563312509581,-0.302718737149472,-0.302831924266321,-0.305876022047194,-0.307546708553403],&#34;lat&#34;:[51.4479326246603,51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.4517602027148,51.4513134996459,51.4485114283046,51.4479326246603]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[-0.273582550396047,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.273582550396047],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[-0.256262042320359,-0.253375290974411,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.253375290974411,-0.256262042320359],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256265,-0.0715099561796784,-0.0743967075256266,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.062849702141834,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.0628497021418341,-0.0657364534877822],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528174,0.0150925841987655,0.0122058328528173,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879874,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879874,0.0555071030420393],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[0.0728276111177281,0.0757143624636762,0.0814878651555724,0.0843746165015205,0.0814878651555725,0.0757143624636762,0.0728276111177281],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[0.142109643420483,0.144996394766431,0.150769897458328,0.153656648804276,0.150769897458328,0.144996394766431,0.142109643420483],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[0.159430151496172,0.16231690284212,0.168090405534016,0.170977156879964,0.168090405534016,0.16231690284212,0.159430151496172],&#34;lat&#34;:[51.446760167579,51.441760167579,51.441760167579,51.446760167579,51.451760167579,51.451760167579,51.446760167579]}]],[[{&#34;lng&#34;:[0.187553596333344,0.185410913609705,0.179637410917809,0.176750659571861,0.178658935126639,0.178698882985034,0.179549474656947,0.180861076561979,0.181058015390338,0.183629085837257,0.184250905292326,0.18743807428754,0.187553596333344],&#34;lat&#34;:[51.4480490437756,51.451760167579,51.451760167579,51.446760167579,51.4434550679712,51.4434767731984,51.4431174323351,51.4435228931158,51.4441820155967,51.4448041125815,51.4446549367145,51.4468743061746,51.4480490437756]}]],[[{&#34;lng&#34;:[-0.461383985116609,-0.461221387882676,-0.461359222932296,-0.461383985116609],&#34;lat&#34;:[51.451478571895,51.451760167579,51.4519989314007,51.451478571895]}]],[[{&#34;lng&#34;:[-0.45544788519078,-0.452561133844831,-0.446787631152935,-0.443900879806987,-0.446787631152935,-0.452561133844831,-0.45544788519078],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.438127377115091,-0.435240625769143,-0.429467123077246,-0.426580371731298,-0.429467123077246,-0.435240625769143,-0.438127377115091],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.420806869039402,-0.417920117693454,-0.412146615001558,-0.409259863655609,-0.412146615001558,-0.417920117693454,-0.420806869039402],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.403486360963713,-0.400599609617765,-0.394826106925869,-0.391939355579921,-0.394826106925869,-0.400599609617765,-0.403486360963713],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.386165852888024,-0.383279101542076,-0.37750559885018,-0.374618847504232,-0.37750559885018,-0.383279101542076,-0.386165852888024],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.368845344812336,-0.365958593466388,-0.360185090774491,-0.357298339428543,-0.360185090774491,-0.365958593466388,-0.368845344812336],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.351524836736647,-0.348638085390699,-0.342864582698802,-0.339977831352854,-0.342864582698802,-0.348638085390699,-0.351524836736647],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.334204328660958,-0.33131757731501,-0.325544074623114,-0.322657323277166,-0.325544074623114,-0.33131757731501,-0.334204328660958],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.311838926735696,-0.308223566547425,-0.307546708553403,-0.309192465988907,-0.311838926735696],&#34;lat&#34;:[51.4467602007652,51.446760167579,51.4479326246603,51.4473624200446,51.4467602007652]}],[{&#34;lng&#34;:[-0.306319361624636,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316883820585269,-0.314289682130777,-0.308992450038531,-0.306319361624636],&#34;lat&#34;:[51.4500584781427,51.451760167579,51.456760167579,51.456760167579,51.451760167579,51.4472670410803,51.4486085766227,51.4500584781427]}]],[[{&#34;lng&#34;:[-0.299563312509581,-0.296676561163632,-0.290903058471736,-0.288016307125788,-0.290903058471736,-0.296676561163633,-0.299563312509581],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.282242804433892,-0.279356053087944,-0.273582550396047,-0.270695799050099,-0.273582550396047,-0.279356053087944,-0.282242804433892],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.253375290974411,-0.256262042320359,-0.262035545012255,-0.264922296358203],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256266,-0.0715099561796784,-0.0657364534877822,-0.0628497021418341,-0.0657364534877822,-0.0715099561796784,-0.0743967075256266],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[0.0122058328528173,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528173],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879874,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.072827611117728,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[0.0814878651555725,0.0843746165015205,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0843746165015205,0.0814878651555725],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[0.133449389382639,0.136336140728587,0.142109643420483,0.144996394766431,0.142109643420483,0.136336140728587,0.133449389382639],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[0.150769897458328,0.153656648804276,0.159430151496172,0.16231690284212,0.159430151496172,0.153656648804276,0.150769897458328],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[0.168090405534016,0.170977156879964,0.176750659571861,0.179637410917809,0.176750659571861,0.170977156879964,0.168090405534016],&#34;lat&#34;:[51.451760167579,51.446760167579,51.446760167579,51.451760167579,51.456760167579,51.456760167579,51.451760167579]}]],[[{&#34;lng&#34;:[0.196928433744669,0.19407116764755,0.188297664955653,0.185410913609705,0.187553596333344,0.187617358563891,0.188407924901676,0.188823950940291,0.19098514878311,0.191720508954579,0.192992941888692,0.193819356475418,0.194154082994204,0.194921332952734,0.195027440354274,0.195482185467238,0.195863403310684,0.195958982905122,0.196928433744669],&#34;lat&#34;:[51.4518112434231,51.456760167579,51.456760167579,51.451760167579,51.4480490437756,51.4486974126037,51.4486161299218,51.4491299683206,51.4487874285486,51.4506783899439,51.4517013858369,51.4519475991958,51.4516634570231,51.4518154679011,51.4521372083777,51.4520153950867,51.4523706861736,51.4517834435297,51.4518112434231]}]],[[{&#34;lng&#34;:[-0.470690277769939,-0.472768393266468,-0.478541895958365,-0.478789149941522,-0.477140756544445,-0.476138489855493,-0.475896922364399,-0.473580303420555,-0.470690277769939],&#34;lat&#34;:[51.4581608835583,51.461760167579,51.461760167579,51.4613319567883,51.4613361682399,51.460957145668,51.4600853741373,51.4586335716047,51.4581608835583]}]],[[{&#34;lng&#34;:[-0.461359222932296,-0.461221387882676,-0.45544788519078,-0.452561133844831,-0.45544788519078,-0.461221387882676,-0.463716397186807,-0.461299317805011,-0.458660910950404,-0.459314745318838,-0.459858958300028,-0.461340554712418,-0.461359222932296],&#34;lat&#34;:[51.4519989314007,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.4574387531018,51.457215046709,51.4563153317462,51.4527153371853,51.4522395973563,51.4523912227781,51.4519989314007]}]],[[{&#34;lng&#34;:[-0.446787631152935,-0.443900879806987,-0.438127377115091,-0.435240625769143,-0.438127377115091,-0.443900879806987,-0.446787631152935],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[-0.429467123077246,-0.426580371731298,-0.420806869039402,-0.417920117693454,-0.420806869039402,-0.426580371731298,-0.429467123077246],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[-0.412146615001558,-0.409259863655609,-0.403486360963713,-0.400599609617765,-0.403486360963713,-0.40925986365561,-0.412146615001558],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[-0.394826106925869,-0.391939355579921,-0.386165852888024,-0.383279101542076,-0.386165852888024,-0.391939355579921,-0.394826106925869],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[-0.37750559885018,-0.374618847504232,-0.368845344812336,-0.365958593466388,-0.368845344812336,-0.374618847504232,-0.37750559885018],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[-0.360185090774491,-0.357298339428543,-0.351524836736647,-0.348638085390699,-0.351524836736647,-0.357298339428543,-0.360185090774491],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[-0.342864582698802,-0.339977831352854,-0.334204328660958,-0.33131757731501,-0.334204328660958,-0.339977831352854,-0.342864582698802],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[-0.31732222747391,-0.322657323277166,-0.325544074623114,-0.322657323277166,-0.316883820585269,-0.313997069239321,-0.316650337697855,-0.31732222747391],&#34;lat&#34;:[51.461760177526,51.461760167579,51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.4613558067071,51.461760177526]}]],[[{&#34;lng&#34;:[-0.302718737149472,-0.299563312509581,-0.296676561163633,-0.299563312509581,-0.305336815201477,-0.307330504825924,-0.305044728112466,-0.302768773329471,-0.302570623939876,-0.302718737149472],&#34;lat&#34;:[51.4517602027148,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.4583071204597,51.4564630951321,51.4533673473052,51.4523447313609,51.4517602027148]}],[{&#34;lng&#34;:[-0.307908533886666,-0.308223566547425,-0.305336815201477,-0.304254624186438,-0.303811865523146,-0.305915082505178,-0.307202366351651,-0.307958930821555,-0.307379169984125,-0.307908533886666],&#34;lat&#34;:[51.4573058768534,51.456760167579,51.451760167579,51.4517601891717,51.4531441709099,51.4561645285599,51.457008639054,51.4566733494471,51.4570930159188,51.4573058768534]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[-0.273582550396047,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.273582550396047],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[-0.256262042320359,-0.253375290974411,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.253375290974411,-0.256262042320359],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[-0.195120655686252,-0.195640264055448,-0.201413766747344,-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.194570466388858,-0.195170225934756,-0.195126107050778,-0.195120655686252],&#34;lat&#34;:[51.4608602655583,51.461760167579,51.461760167579,51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.4599073596947,51.4599983254577,51.4606055255668,51.4608602655583]}],[{&#34;lng&#34;:[-0.194738590088646,-0.194745298507088,-0.194744742152049,-0.194738590088646],&#34;lat&#34;:[51.4601985477152,51.460210166525,51.4602021852419,51.4601985477152]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256266,-0.0715099561796784,-0.0743967075256265,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.0628497021418341,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.0628497021418341,-0.0657364534877822],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661453,-0.0484159454120934],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528173,0.0150925841987655,0.0122058328528174,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879874,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879874,0.0555071030420393],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[0.072827611117728,0.0757143624636762,0.0814878651555725,0.0843746165015205,0.0814878651555725,0.0757143624636762,0.072827611117728],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[0.142109643420483,0.144996394766431,0.150769897458328,0.153656648804276,0.150769897458328,0.144996394766431,0.142109643420483],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[0.159430151496172,0.16231690284212,0.168090405534016,0.170977156879964,0.168090405534016,0.16231690284212,0.159430151496172],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[0.176750659571861,0.179637410917809,0.185410913609705,0.188297664955653,0.185410913609705,0.179637410917809,0.176750659571861],&#34;lat&#34;:[51.456760167579,51.451760167579,51.451760167579,51.456760167579,51.461760167579,51.461760167579,51.456760167579]}]],[[{&#34;lng&#34;:[0.203986326083698,0.202731421685394,0.196957918993498,0.19407116764755,0.196928433744669,0.197988358623721,0.199109457677607,0.199694173945679,0.200206661596401,0.201359472886363,0.20200078474253,0.202693462294275,0.203352885745154,0.20323569323723,0.203873646343618,0.203777846363509,0.202580951852984,0.203080773784444,0.199629505225885,0.199101694728213,0.198362546465142,0.198872356345846,0.198366610088923,0.197283192200866,0.198573531509987,0.202578198831048,0.203986326083698],&#34;lat&#34;:[51.4595867527122,51.461760167579,51.461760167579,51.456760167579,51.4518112434231,51.4518416285555,51.4521380287128,51.4527143048437,51.4525958926364,51.4538503354093,51.4541044985338,51.4539322994711,51.4543551616948,51.4549401280357,51.4556628718549,51.4560351817514,51.4562294144622,51.4579700789646,51.4583748204522,51.4579063156276,51.4572924509736,51.4579259046933,51.4582159657137,51.4575384344426,51.4584782937854,51.4583248553108,51.4595867527122]}],[{&#34;lng&#34;:[0.198676416155069,0.198863941971623,0.199272353848479,0.198676416155069],&#34;lat&#34;:[51.4583729487743,51.4581706860539,51.4584013118052,51.4583729487743]}]],[[{&#34;lng&#34;:[-0.498651726653729,-0.498749155380001,-0.499190840463068,-0.498651726653729],&#34;lat&#34;:[51.4665914350957,51.466760167579,51.4667601775938,51.4665914350957]}]],[[{&#34;lng&#34;:[-0.478789149941522,-0.478541895958365,-0.481428647304313,-0.487202149996209,-0.489981923846987,-0.48962952320983,-0.485882200321214,-0.478789149941522],&#34;lat&#34;:[51.4613319567883,51.461760167579,51.466760167579,51.466760167579,51.461945478851,51.461784539381,51.4613135711792,51.4613319567883]}]],[[{&#34;lng&#34;:[-0.463716397186807,-0.461221387882676,-0.464108139228624,-0.46988164192052,-0.472768393266468,-0.470690277769939,-0.46960758294811,-0.463716397186807],&#34;lat&#34;:[51.4574387531018,51.461760167579,51.466760167579,51.466760167579,51.461760167579,51.4581608835583,51.4579837788834,51.4574387531018]}]],[[{&#34;lng&#34;:[-0.45544788519078,-0.452561133844831,-0.446787631152935,-0.443900879806987,-0.446787631152935,-0.452561133844831,-0.45544788519078],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[-0.438127377115091,-0.435240625769143,-0.429467123077246,-0.426580371731298,-0.429467123077246,-0.435240625769143,-0.438127377115091],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[-0.420806869039402,-0.417920117693454,-0.412146615001558,-0.40925986365561,-0.412146615001558,-0.417920117693454,-0.420806869039402],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[-0.403486360963713,-0.400599609617765,-0.394826106925869,-0.391939355579921,-0.394826106925869,-0.400599609617765,-0.403486360963713],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[-0.386165852888024,-0.383279101542076,-0.37750559885018,-0.374618847504232,-0.37750559885018,-0.383279101542076,-0.386165852888024],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[-0.368845344812336,-0.365958593466388,-0.360185090774491,-0.357298339428543,-0.360185090774491,-0.365958593466388,-0.368845344812336],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[-0.351524836736647,-0.348638085390699,-0.342864582698802,-0.339977831352854,-0.342864582698803,-0.348638085390699,-0.351524836736647],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[-0.334204328660958,-0.33131757731501,-0.325544074623114,-0.322657323277166,-0.325544074623114,-0.33131757731501,-0.334204328660958],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[-0.316650337697855,-0.313997069239321,-0.308223566547425,-0.307908533886666,-0.313971817890059,-0.316650337697855],&#34;lat&#34;:[51.4613558067071,51.456760167579,51.456760167579,51.4573058768534,51.4597436542565,51.4613558067071]}],[{&#34;lng&#34;:[-0.307330504825924,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316569829232308,-0.313877339238626,-0.308040007251526,-0.307330504825924],&#34;lat&#34;:[51.4583071204597,51.461760167579,51.466760167579,51.466760167579,51.4623040731002,51.4607458430987,51.4588794644317,51.4583071204597]}]],[[{&#34;lng&#34;:[-0.299563312509581,-0.296676561163633,-0.290903058471736,-0.288016307125788,-0.290903058471736,-0.296676561163633,-0.299563312509581],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[-0.282242804433892,-0.279356053087944,-0.273582550396047,-0.270695799050099,-0.273582550396048,-0.279356053087944,-0.282242804433892],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.253375290974411,-0.256262042320359,-0.262035545012255,-0.264922296358203],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[-0.203619888558784,-0.204300518093292,-0.208813098784527,-0.203619888558784],&#34;lat&#34;:[51.465581387741,51.466760167579,51.4667601917765,51.465581387741]}],[{&#34;lng&#34;:[-0.211062437865223,-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.202145158408139,-0.203438990757186,-0.206987552952221,-0.211062437865223],&#34;lat&#34;:[51.4650483103081,51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.4630270854374,51.4631827661318,51.463845886915,51.4650483103081]}]],[[{&#34;lng&#34;:[-0.194570466388858,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.185795917745615,-0.187112682256509,-0.190328875713593,-0.194128046083192,-0.194217568686005,-0.194839274054681,-0.193882853397518,-0.194418872914362,-0.19485136252853,-0.194745298507088,-0.194738590088646,-0.194134206551157,-0.194570466388858],&#34;lat&#34;:[51.4599073596947,51.456760167579,51.456760167579,51.461760167579,51.4647094007169,51.4641903835795,51.4633894034556,51.4629515980777,51.462689508017,51.4628771158714,51.4614676361275,51.4613823908489,51.4617316744307,51.460210166525,51.4601985477152,51.4598411898458,51.4599073596947]}],[{&#34;lng&#34;:[-0.186737125972554,-0.186980010017604,-0.1927535127095,-0.193837773263248,-0.190521144794295,-0.186737125972554],&#34;lat&#34;:[51.4663395250177,51.466760167579,51.466760167579,51.4648823100036,51.4652250697924,51.4663395250177]}],[{&#34;lng&#34;:[-0.195265053006234,-0.195640264055448,-0.195120655686252,-0.195093671594922,-0.195265053006234],&#34;lat&#34;:[51.4624101181413,51.461760167579,51.4608602655583,51.4621211790164,51.4624101181413]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256265,-0.0715099561796784,-0.0657364534877822,-0.0628497021418341,-0.0657364534877822,-0.0715099561796784,-0.0743967075256265],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661453,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[0.0122058328528174,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528174],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879874,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.072827611117728,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[0.0814878651555725,0.0843746165015205,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0843746165015205,0.0814878651555725],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[0.133449389382639,0.136336140728587,0.142109643420483,0.144996394766431,0.142109643420483,0.136336140728587,0.133449389382639],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[0.150769897458328,0.153656648804276,0.159430151496172,0.16231690284212,0.159430151496172,0.153656648804276,0.150769897458328],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[0.168090405534016,0.170977156879964,0.176750659571861,0.179637410917809,0.176750659571861,0.170977156879964,0.168090405534016],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[0.185410913609705,0.188297664955653,0.19407116764755,0.196957918993498,0.19407116764755,0.188297664955653,0.185410913609705],&#34;lat&#34;:[51.461760167579,51.456760167579,51.456760167579,51.461760167579,51.466760167579,51.466760167579,51.461760167579]}]],[[{&#34;lng&#34;:[0.210399544681281,0.205618173031342,0.202731421685394,0.203986326083698,0.204418191716663,0.207514105127809,0.210248114168936,0.209982321195549,0.210399544681281],&#34;lat&#34;:[51.4667601877523,51.466760167579,51.461760167579,51.4595867527122,51.4599737530153,51.461600782118,51.4625573917186,51.4657270403832,51.4667601877523]}]],[[{&#34;lng&#34;:[-0.505070205825161,-0.507002497227556,-0.507690068998917,-0.50875890308142,-0.509720572154321,-0.510172993511457,-0.510296160763794,-0.508800750788308,-0.507336631429481,-0.506298561285728,-0.505070205825161],&#34;lat&#34;:[51.4677086377745,51.4710554456298,51.4701159475576,51.4693499214001,51.4691751138865,51.4687672392276,51.4675044899385,51.4670943268073,51.466916529298,51.4677117003198,51.4677086377745]}]],[[{&#34;lng&#34;:[-0.489981923846987,-0.487202149996209,-0.490088901342157,-0.495862404034053,-0.498749155380001,-0.498651726653729,-0.498137176293938,-0.497005102855192,-0.493881201331046,-0.492229049962843,-0.489981923846987],&#34;lat&#34;:[51.461945478851,51.466760167579,51.471760167579,51.471760167579,51.466760167579,51.4665914350957,51.4664303774819,51.4658754633159,51.4627222863917,51.4629716776893,51.461945478851]}]],[[{&#34;lng&#34;:[-0.481428647304313,-0.478541895958365,-0.472768393266468,-0.46988164192052,-0.472768393266468,-0.478541895958365,-0.481428647304313],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[-0.464108139228624,-0.461221387882676,-0.45544788519078,-0.452561133844831,-0.45544788519078,-0.461221387882676,-0.464108139228624],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[-0.446787631152935,-0.443900879806987,-0.438127377115091,-0.435240625769143,-0.438127377115091,-0.443900879806987,-0.446787631152935],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.4717601675789,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[-0.429467123077246,-0.426580371731298,-0.420806869039402,-0.417920117693454,-0.420806869039402,-0.426580371731298,-0.429467123077246],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[-0.412146615001558,-0.40925986365561,-0.403486360963713,-0.400599609617765,-0.403486360963713,-0.40925986365561,-0.412146615001558],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[-0.394826106925869,-0.391939355579921,-0.386165852888024,-0.383279101542076,-0.386165852888024,-0.391939355579921,-0.394826106925869],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.4717601675789,51.466760167579]}]],[[{&#34;lng&#34;:[-0.37750559885018,-0.374618847504232,-0.368845344812336,-0.365958593466388,-0.368845344812336,-0.374618847504232,-0.37750559885018],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.4717601675789,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[-0.360185090774491,-0.357298339428543,-0.351524836736647,-0.348638085390699,-0.351524836736647,-0.357298339428543,-0.360185090774491],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[-0.342864582698803,-0.339977831352854,-0.334204328660958,-0.33131757731501,-0.334204328660958,-0.339977831352854,-0.342864582698803],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[-0.316569829232308,-0.313997069239321,-0.316629603181744,-0.317752127740883,-0.318649998377041,-0.319267793194222,-0.319791910996267,-0.317346147390062,-0.316569829232308],&#34;lat&#34;:[51.4623040731002,51.466760167579,51.4713198969683,51.4710132269538,51.4701286747837,51.4683615480015,51.4647163530778,51.4627533220121,51.4623040731002]}],[{&#34;lng&#34;:[-0.318360371560185,-0.322657323277166,-0.325544074623114,-0.322657323277166,-0.31732222747391,-0.319384156853638,-0.321734550831787,-0.321879890963709,-0.322384467164997,-0.321579021082341,-0.322142084016483,-0.321501171877488,-0.320203005370023,-0.319108602426545,-0.318360371560185],&#34;lat&#34;:[51.4717601945594,51.4717601675789,51.466760167579,51.461760167579,51.461760177526,51.4630010624696,51.4654069254937,51.4679592328256,51.4689610111543,51.4704296271077,51.470506037826,51.4705112390942,51.471319047029,51.4715183013686,51.4717601945594]}],[{&#34;lng&#34;:[-0.319723934523869,-0.320473986202255,-0.321287140082108,-0.321085378597372,-0.320363146127505,-0.319723934523869],&#34;lat&#34;:[51.4706791201217,51.4704875435475,51.4694767475886,51.4659524440066,51.4673907701106,51.4706791201217]}]],[[{&#34;lng&#34;:[-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163633,-0.299563312509581,-0.305336815201477,-0.308223566547425],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[-0.264913007255602,-0.264922296358203,-0.265012087769301,-0.264913007255602],&#34;lat&#34;:[51.4717440802524,51.471760167579,51.4717601697492,51.4717440802524]}],[{&#34;lng&#34;:[-0.26882994485798,-0.270695799050099,-0.273582550396048,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264043393715965,-0.264055182550736,-0.267848400119361,-0.26882994485798],&#34;lat&#34;:[51.4717601985841,51.471760167579,51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.4702379870844,51.4702377505545,51.4712443595296,51.4717601985841]}]],[[{&#34;lng&#34;:[-0.256262042320359,-0.253375290974411,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.253375290974411,-0.256262042320359],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.4717601675789,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[-0.210604605497637,-0.212960772131137,-0.218734274823033,-0.218935984202919,-0.216687801001688,-0.211006733103469,-0.210604605497637],&#34;lat&#34;:[51.4676792547782,51.471760167579,51.471760167579,51.471410834598,51.4695691645615,51.4673136406827,51.4676792547782]}],[{&#34;lng&#34;:[-0.210264147544766,-0.210518673011252,-0.21044519937883,-0.210264147544766],&#34;lat&#34;:[51.4670895126797,51.4675304038465,51.4671306014754,51.4670895126797]}],[{&#34;lng&#34;:[-0.219940789485782,-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.211062437865223,-0.212801436054289,-0.217465523946905,-0.219940789485782],&#34;lat&#34;:[51.4696705647992,51.466760167579,51.461760167579,51.461760167579,51.4650483103081,51.465561394319,51.467864323773,51.4696705647992]}]],[[{&#34;lng&#34;:[-0.202145158408139,-0.201413766747344,-0.195640264055448,-0.195265053006234,-0.195540459134923,-0.199670665807733,-0.202145158408139],&#34;lat&#34;:[51.4630270854374,51.461760167579,51.461760167579,51.4624101181413,51.4628744287225,51.4627292988945,51.4630270854374]}],[{&#34;lng&#34;:[-0.193837773263248,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292,-0.203619888558784,-0.202391166311206,-0.199880979992446,-0.197399154815622,-0.197172521698017,-0.194307130544356,-0.193837773263248],&#34;lat&#34;:[51.4648823100036,51.466760167579,51.471760167579,51.471760167579,51.466760167579,51.465581387741,51.4653024382618,51.4649932465285,51.4652087131241,51.4649678101452,51.4648337959035,51.4648823100036]}]],[[{&#34;lng&#34;:[-0.185795917745615,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178177296118224,-0.178479813112858,-0.177974331417469,-0.17856134023738,-0.17849353087476,-0.179095954922757,-0.182214520411348,-0.184015021682691,-0.185795917745615],&#34;lat&#34;:[51.4647094007169,51.461760167579,51.461760167579,51.466760167579,51.4715134472284,51.4707884158998,51.4706106127705,51.470693473658,51.4701915231876,51.4700678107269,51.4664841086696,51.4654113181418,51.4647094007169]}],[{&#34;lng&#34;:[-0.181564913293135,-0.184093258671655,-0.186980010017604,-0.186737125972554,-0.186381261688586,-0.184493527295323,-0.181564913293135],&#34;lat&#34;:[51.4717602024699,51.471760167579,51.466760167579,51.4663395250177,51.4664443237847,51.4676470737973,51.4717602024699]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.4717601675789,51.466760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256265,-0.0715099561796784,-0.0743967075256266,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.0628497021418341,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.0628497021418341,-0.0657364534877822],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661453,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.4717601675789,51.466760167579]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528174,0.0150925841987655,0.0122058328528174,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.4717601675789,51.4717601675789,51.466760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.4717601675789,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879874,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879874,0.0555071030420393],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[0.0728276111177281,0.0757143624636762,0.0814878651555725,0.0843746165015205,0.0814878651555725,0.0757143624636762,0.0728276111177281],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.4717601675789,51.466760167579]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.4717601675789,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.4717601675789,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[0.142109643420483,0.144996394766431,0.150769897458328,0.153656648804276,0.150769897458328,0.144996394766431,0.142109643420483],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[0.159430151496172,0.16231690284212,0.168090405534016,0.170977156879964,0.168090405534016,0.16231690284212,0.159430151496172],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.4717601675789,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[0.176750659571861,0.179637410917809,0.185410913609705,0.188297664955653,0.185410913609705,0.179637410917809,0.176750659571861],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[0.19407116764755,0.196957918993498,0.202731421685394,0.205618173031342,0.202731421685394,0.196957918993498,0.19407116764755],&#34;lat&#34;:[51.466760167579,51.461760167579,51.461760167579,51.466760167579,51.471760167579,51.471760167579,51.466760167579]}]],[[{&#34;lng&#34;:[-0.499190840463068,-0.498749155380001,-0.495862404034053,-0.498749155380001,-0.504522658071898,-0.504809369681699,-0.505961503173075,-0.507002497227556,-0.505070205825161,-0.503756259210124,-0.500368774871783,-0.499190840463068],&#34;lat&#34;:[51.4667601775938,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.4762636206968,51.4724777786239,51.4710554456298,51.4677086377745,51.4677053476267,51.4671288578488,51.4667601775938]}]],[[{&#34;lng&#34;:[-0.490088901342157,-0.487202149996209,-0.481428647304313,-0.478541895958365,-0.481428647304313,-0.487202149996209,-0.490088901342157],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[-0.472768393266468,-0.46988164192052,-0.464108139228624,-0.461221387882676,-0.464108139228624,-0.46988164192052,-0.472768393266468],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[-0.45544788519078,-0.452561133844831,-0.446787631152935,-0.443900879806987,-0.446787631152935,-0.452561133844831,-0.45544788519078],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[-0.438127377115091,-0.435240625769143,-0.429467123077246,-0.426580371731298,-0.429467123077246,-0.435240625769143,-0.438127377115091],&#34;lat&#34;:[51.4717601675789,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.4717601675789]}]],[[{&#34;lng&#34;:[-0.420806869039402,-0.417920117693454,-0.412146615001558,-0.40925986365561,-0.412146615001558,-0.417920117693454,-0.420806869039402],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[-0.403486360963713,-0.400599609617765,-0.394826106925869,-0.391939355579921,-0.394826106925869,-0.400599609617765,-0.403486360963713],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.4717601675789,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[-0.386165852888024,-0.383279101542076,-0.37750559885018,-0.374618847504232,-0.37750559885018,-0.383279101542076,-0.386165852888024],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[-0.368845344812336,-0.365958593466388,-0.360185090774491,-0.357298339428543,-0.360185090774491,-0.365958593466388,-0.368845344812336],&#34;lat&#34;:[51.4717601675789,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.4717601675789]}]],[[{&#34;lng&#34;:[-0.351524836736647,-0.348638085390699,-0.342864582698803,-0.339977831352854,-0.342864582698802,-0.348638085390699,-0.351524836736647],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[-0.334204328660958,-0.33131757731501,-0.325544074623114,-0.322657323277166,-0.325544074623114,-0.33131757731501,-0.334204328660958],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.4717601675789,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[-0.316629603181744,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.307111620601207,-0.310143224537565,-0.314127505978768,-0.316629603181744],&#34;lat&#34;:[51.4713198969683,51.466760167579,51.466760167579,51.471760167579,51.4748343588813,51.4735278220983,51.472003408286,51.4713198969683]}],[{&#34;lng&#34;:[-0.307723982661429,-0.308223566547425,-0.313997069239321,-0.316545023177233,-0.312087578649992,-0.307723982661429],&#34;lat&#34;:[51.475894946405,51.476760167579,51.476760167579,51.4723470423468,51.4737878177812,51.475894946405]}]],[[{&#34;lng&#34;:[-0.299563312509581,-0.296676561163633,-0.290903058471736,-0.288016307125788,-0.290903058471736,-0.296676561163633,-0.299563312509581],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[-0.274626501559944,-0.279356053087944,-0.282242804433892,-0.279356053087944,-0.273582550396048,-0.270695799050099,-0.27163888279463,-0.272357974598671,-0.274019781772951,-0.274626501559944],&#34;lat&#34;:[51.4767601885743,51.476760167579,51.471760167579,51.466760167579,51.466760167579,51.471760167579,51.4733937648865,51.4738755315919,51.4756670087039,51.4767601885743]}]],[[{&#34;lng&#34;:[-0.264043393715965,-0.262035545012255,-0.256262042320359,-0.253375290974411,-0.253621260326382,-0.255477033073148,-0.258610483815338,-0.260238150139388,-0.264043393715965],&#34;lat&#34;:[51.4702379870844,51.466760167579,51.466760167579,51.471760167579,51.4721862444751,51.4712857603248,51.4704456755068,51.4703142732113,51.4702379870844]}],[{&#34;lng&#34;:[-0.254300393306238,-0.256262042320359,-0.262035545012255,-0.264922296358203,-0.264913007255602,-0.262439506046482,-0.258811393849935,-0.255234862000418,-0.254300393306238],&#34;lat&#34;:[51.4733626188838,51.476760167579,51.476760167579,51.471760167579,51.4717440802524,51.4713423823418,51.4714837036261,51.4725761563594,51.4733626188838]}]],[[{&#34;lng&#34;:[-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514],&#34;lat&#34;:[51.4717601675789,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.4717601675789]}]],[[{&#34;lng&#34;:[-0.218935984202919,-0.218734274823033,-0.221621026168981,-0.22332831477881,-0.22267108269921,-0.22194836741896,-0.218935984202919],&#34;lat&#34;:[51.471410834598,51.471760167579,51.476760167579,51.4767601970992,51.4749188320267,51.473878222678,51.471410834598]}],[{&#34;lng&#34;:[-0.226672264990754,-0.227394528860877,-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.219940789485782,-0.222759156279467,-0.223425189147792,-0.223686098885385,-0.222942711453455,-0.224965514350615,-0.22664509382678,-0.226672264990754],&#34;lat&#34;:[51.4767601830927,51.476760167579,51.471760167579,51.466760167579,51.466760167579,51.4696705647992,51.4717269347731,51.4715212042156,51.4716249750112,51.4718573990008,51.4737935463871,51.476228049533,51.4767601830927]}]],[[{&#34;lng&#34;:[-0.208813098784527,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137,-0.210604605497637,-0.210554414723203,-0.210518673011252,-0.210264147544766,-0.208813098784527],&#34;lat&#34;:[51.4667601917765,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.471760167579,51.4676792547782,51.4677248876821,51.4675304038465,51.4670895126797,51.4667601917765]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[-0.178177296118224,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.175757566122704,-0.175754747447593,-0.175891270911715,-0.177476982131975,-0.177564358436025,-0.177240850295048,-0.177629820793573,-0.178177296118224],&#34;lat&#34;:[51.4715134472284,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.4761980688134,51.4761514567546,51.4759665050213,51.4732200153171,51.4729485931524,51.4728644095435,51.4728255005897,51.4715134472284]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.4717601675789,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256266,-0.0715099561796784,-0.0657364534877822,-0.0628497021418341,-0.0657364534877822,-0.0715099561796784,-0.0743967075256266],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.4717601675789,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[-0.0195813814244607,-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.019471374473624,-0.019554773999658,-0.0195813814244607],&#34;lat&#34;:[51.4767031040031,51.471760167579,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.4767601694455,51.4766863483005,51.4767031040031]}]],[[{&#34;lng&#34;:[-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[0.0122058328528174,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528174],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.4717601675789,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.4717601675789,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.4717601675789]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879874,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.4717601675789,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.4717601675789]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[0.0814878651555725,0.0843746165015205,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0843746165015205,0.0814878651555725],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.4717601675789,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695],&#34;lat&#34;:[51.4717601675789,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.4717601675789]}]],[[{&#34;lng&#34;:[0.133449389382639,0.136336140728587,0.142109643420483,0.144996394766431,0.142109643420483,0.136336140728587,0.133449389382639],&#34;lat&#34;:[51.4717601675789,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.4717601675789]}]],[[{&#34;lng&#34;:[0.150769897458328,0.153656648804276,0.159430151496172,0.16231690284212,0.159430151496172,0.153656648804276,0.150769897458328],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[0.168090405534016,0.170977156879964,0.176750659571861,0.179637410917809,0.176750659571861,0.170977156879964,0.168090405534016],&#34;lat&#34;:[51.4717601675789,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.4717601675789]}]],[[{&#34;lng&#34;:[0.185410913609705,0.188297664955653,0.19407116764755,0.196957918993498,0.19407116764755,0.188297664955653,0.185410913609705],&#34;lat&#34;:[51.471760167579,51.466760167579,51.466760167579,51.471760167579,51.476760167579,51.476760167579,51.471760167579]}]],[[{&#34;lng&#34;:[0.211929922520392,0.211391675723238,0.205618173031342,0.202731421685394,0.205618173031342,0.210399544681281,0.211016059423417,0.208107796057687,0.208853740406669,0.211306352097737,0.211165649252922,0.211824156950194,0.211929922520392],&#34;lat&#34;:[51.4758279852836,51.476760167579,51.476760167579,51.471760167579,51.466760167579,51.4667601877523,51.4682867406532,51.470797553609,51.4717214570056,51.4731887457826,51.4748946744058,51.4757950406244,51.4758279852836]}]],[[{&#34;lng&#34;:[-0.504809369681699,-0.504522658071898,-0.504611436349103,-0.504809369681699],&#34;lat&#34;:[51.4762636206968,51.476760167579,51.4769139534615,51.4762636206968]}]],[[{&#34;lng&#34;:[-0.498749155380001,-0.495862404034053,-0.490088901342157,-0.487202149996209,-0.490088901342157,-0.495862404034053,-0.498749155380001],&#34;lat&#34;:[51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[-0.481428647304313,-0.478541895958365,-0.472768393266468,-0.46988164192052,-0.472768393266468,-0.478541895958365,-0.481428647304313],&#34;lat&#34;:[51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[-0.464108139228624,-0.461221387882676,-0.45544788519078,-0.452561133844831,-0.45544788519078,-0.461221387882676,-0.464108139228624],&#34;lat&#34;:[51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[-0.446787631152935,-0.443900879806987,-0.438127377115091,-0.435240625769143,-0.438127377115091,-0.443900879806987,-0.446787631152935],&#34;lat&#34;:[51.476760167579,51.471760167579,51.4717601675789,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[-0.429467123077246,-0.426580371731298,-0.420806869039402,-0.417920117693454,-0.420806869039402,-0.426580371731298,-0.429467123077246],&#34;lat&#34;:[51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[-0.412146615001558,-0.40925986365561,-0.403486360963713,-0.400599609617765,-0.403486360963713,-0.409259863655609,-0.412146615001558],&#34;lat&#34;:[51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[-0.394826106925869,-0.391939355579921,-0.386165852888024,-0.383279101542076,-0.386165852888024,-0.391939355579921,-0.394826106925869],&#34;lat&#34;:[51.476760167579,51.4717601675789,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[-0.37750559885018,-0.374618847504232,-0.368845344812336,-0.365958593466388,-0.368845344812336,-0.374618847504232,-0.37750559885018],&#34;lat&#34;:[51.476760167579,51.471760167579,51.4717601675789,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[-0.360185090774491,-0.357298339428543,-0.351524836736647,-0.348638085390699,-0.351524836736647,-0.357298339428543,-0.360185090774491],&#34;lat&#34;:[51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[-0.342864582698802,-0.339977831352854,-0.334204328660958,-0.33131757731501,-0.334204328660958,-0.339977831352854,-0.342864582698802],&#34;lat&#34;:[51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[-0.316545023177233,-0.313997069239321,-0.316883820585269,-0.322657323277166,-0.325544074623114,-0.322657323277166,-0.318360371560185,-0.316545023177233],&#34;lat&#34;:[51.4723470423468,51.476760167579,51.481760167579,51.481760167579,51.476760167579,51.4717601675789,51.4717601945594,51.4723470423468]}]],[[{&#34;lng&#34;:[-0.307111620601207,-0.305336815201477,-0.299563312509581,-0.296676561163633,-0.299498454930021,-0.302410570324497,-0.30685234477549,-0.307111620601207],&#34;lat&#34;:[51.4748343588813,51.471760167579,51.471760167579,51.476760167579,51.4816478437721,51.479432011141,51.4749460924319,51.4748343588813]}],[{&#34;lng&#34;:[-0.300893589437852,-0.305336815201477,-0.308223566547425,-0.307723982661429,-0.306981069886683,-0.306066709748327,-0.305624150327123,-0.305250262769342,-0.304503449395363,-0.304482675159592,-0.30414490576317,-0.303565202107979,-0.300893589437852],&#34;lat&#34;:[51.481760192712,51.481760167579,51.476760167579,51.475894946405,51.4762536546279,51.4771459649596,51.4783247667937,51.4783094833995,51.4791493589787,51.4798252897862,51.479613589558,51.4799055389899,51.481760192712]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[-0.27163888279463,-0.270695799050099,-0.26882994485798,-0.270549182045085,-0.27163888279463],&#34;lat&#34;:[51.4733937648865,51.471760167579,51.4717601985841,51.4726636751949,51.4733937648865]}],[{&#34;lng&#34;:[-0.265012087769301,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.27323478780289,-0.272885493507185,-0.269148828941928,-0.265656452273526,-0.265012087769301],&#34;lat&#34;:[51.4717601697492,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.4773625718943,51.4767231029248,51.473559342855,51.4718648045655,51.4717601697492]}]],[[{&#34;lng&#34;:[-0.253621260326382,-0.253375290974411,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.249461818270496,-0.249671392264905,-0.251503887429194,-0.253117989742059,-0.253621260326382],&#34;lat&#34;:[51.4721862444751,51.471760167579,51.4717601675789,51.476760167579,51.481760167579,51.4817601985309,51.4760659518754,51.4736356539858,51.4724304373298,51.4721862444751]}],[{&#34;lng&#34;:[-0.251469411810703,-0.253375290974411,-0.256262042320359,-0.254300393306238,-0.253532926388386,-0.251553648149757,-0.251469411810703],&#34;lat&#34;:[51.4817601989223,51.481760167579,51.476760167579,51.4733626188838,51.4740085044355,51.4773799474171,51.4817601989223]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[-0.175757566122704,-0.175433004633811,-0.175660858249191,-0.175805095871021,-0.175757566122704],&#34;lat&#34;:[51.4761980688134,51.476760167579,51.4771548640453,51.4769840476387,51.4761980688134]}],[{&#34;lng&#34;:[-0.177476982131975,-0.175891270911715,-0.177135448214768,-0.177476982131975],&#34;lat&#34;:[51.4732200153171,51.4759665050213,51.4742809106522,51.4732200153171]}],[{&#34;lng&#34;:[-0.177561385604315,-0.178319755979759,-0.184093258671655,-0.186980010017604,-0.184093258671655,-0.181564913293135,-0.181173760130867,-0.179424129343521,-0.180532344325398,-0.182424955015025,-0.184108466768373,-0.183880908863717,-0.182100383872835,-0.180821890173086,-0.179308568073917,-0.177549542283513,-0.177838742827021,-0.177561385604315],&#34;lat&#34;:[51.4804467445887,51.481760167579,51.481760167579,51.476760167579,51.471760167579,51.4717602024699,51.4723095007758,51.4775942310111,51.4776824654806,51.477094030996,51.4771641859051,51.477418734193,51.477398362446,51.4779333545045,51.4780006973104,51.4800767198936,51.4802655651064,51.4804467445887]}]],[[{&#34;lng&#34;:[-0.167125315326938,-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.163087845296196,-0.166266237898344,-0.167125315326938],&#34;lat&#34;:[51.481149570118,51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.481760167579,51.4817602003044,51.4813270163599,51.481149570118]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.476760167579,51.4717601675789,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256266,-0.0715099561796784,-0.0743967075256266,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.0628497021418341,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.0628497021418341,-0.0657364534877822],&#34;lat&#34;:[51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[-0.0197876207000289,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195813814244607,-0.019868814879916,-0.020640018382776,-0.020391436069299,-0.021154058831901,-0.02271306439811,-0.020843064657802,-0.020922319288426,-0.022414018918436,-0.022699247672404,-0.021092466583953,-0.020023459316511,-0.0197876207000289],&#34;lat&#34;:[51.4771744989906,51.481760167579,51.481760167579,51.476760167579,51.4717601675789,51.471760167579,51.4767031040031,51.4768841105629,51.4764672878801,51.4757562539599,51.4752376486084,51.4752837306967,51.4758349130398,51.4760997435502,51.4758056723811,51.4759687590384,51.4762617755633,51.4771385016176,51.4771744989906]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528174,0.0150925841987655,0.0122058328528173,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.476760167579,51.4717601675789,51.4717601675789,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.476760167579,51.471760167579,51.4717601675789,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879874,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879874,0.0555071030420393],&#34;lat&#34;:[51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[0.0728276111177281,0.0757143624636762,0.0814878651555725,0.0843746165015205,0.0814878651555724,0.0757143624636762,0.0728276111177281],&#34;lat&#34;:[51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168],&#34;lat&#34;:[51.476760167579,51.4717601675789,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.476760167579,51.471760167579,51.4717601675789,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.476760167579,51.471760167579,51.4717601675789,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[0.142109643420483,0.144996394766431,0.150769897458328,0.153656648804276,0.150769897458328,0.144996394766431,0.142109643420483],&#34;lat&#34;:[51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[0.159430151496172,0.16231690284212,0.168090405534016,0.170977156879964,0.168090405534016,0.16231690284212,0.159430151496172],&#34;lat&#34;:[51.476760167579,51.471760167579,51.4717601675789,51.476760167579,51.481760167579,51.481760167579,51.476760167579]}]],[[{&#34;lng&#34;:[0.181908672042932,0.179637410917809,0.176750659571861,0.179637410917809,0.185410913609705,0.188297664955653,0.186121373721982,0.18353463262207,0.181908672042932],&#34;lat&#34;:[51.4817602014024,51.481760167579,51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.4805297228414,51.4810637404165,51.4817602014024]}]],[[{&#34;lng&#34;:[0.195662953492722,0.19407116764755,0.196957918993498,0.202731421685394,0.205618173031342,0.203349132175714,0.202231237937693,0.201788783259735,0.202139474835082,0.200817015247732,0.201996113329335,0.201472948264412,0.200825264393137,0.200272594887509,0.199556336222596,0.198622895569096,0.198570732559806,0.19616131683729,0.195662953492722],&#34;lat&#34;:[51.4795173658876,51.476760167579,51.471760167579,51.471760167579,51.476760167579,51.4806903597758,51.4805692504479,51.480234035371,51.4790223836214,51.4786569290867,51.4790664607995,51.480194990678,51.4801738887937,51.4794936017629,51.4799620861348,51.479300629905,51.4796523163284,51.4794438837019,51.4795173658876]}]],[[{&#34;lng&#34;:[0.214261931245095,0.211391675723238,0.211929922520392,0.215962058292094,0.215934972124989,0.216693654964025,0.217615823469412,0.214261931245095],&#34;lat&#34;:[51.481731599289,51.476760167579,51.4758279852836,51.4770838389784,51.479465699716,51.4802022635424,51.4804483252061,51.481731599289]}]],[[{&#34;lng&#34;:[-0.504611436349103,-0.504522658071898,-0.498749155380001,-0.495862404034053,-0.498749155380001,-0.499243478467103,-0.499016002060838,-0.498718890662804,-0.501974361479356,-0.50351414936173,-0.504611436349103],&#34;lat&#34;:[51.4769139534615,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.4867601786749,51.4867235412271,51.4860785678417,51.4828569398747,51.4805188738773,51.4769139534615]}]],[[{&#34;lng&#34;:[-0.490088901342157,-0.487202149996209,-0.481428647304313,-0.478541895958365,-0.481428647304313,-0.487202149996209,-0.490088901342157],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[-0.472768393266468,-0.46988164192052,-0.464108139228624,-0.461221387882676,-0.464108139228624,-0.46988164192052,-0.472768393266468],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[-0.45544788519078,-0.452561133844831,-0.446787631152935,-0.443900879806987,-0.446787631152935,-0.452561133844831,-0.45544788519078],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[-0.438127377115091,-0.435240625769143,-0.429467123077246,-0.426580371731298,-0.429467123077246,-0.435240625769143,-0.438127377115091],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[-0.420806869039402,-0.417920117693454,-0.412146615001558,-0.409259863655609,-0.412146615001558,-0.417920117693454,-0.420806869039402],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[-0.403486360963713,-0.400599609617765,-0.394826106925869,-0.391939355579921,-0.394826106925869,-0.400599609617765,-0.403486360963713],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[-0.386165852888024,-0.383279101542076,-0.37750559885018,-0.374618847504232,-0.37750559885018,-0.383279101542076,-0.386165852888024],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[-0.368845344812336,-0.365958593466388,-0.360185090774491,-0.357298339428543,-0.360185090774491,-0.365958593466388,-0.368845344812336],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[-0.351524836736647,-0.348638085390699,-0.342864582698802,-0.339977831352854,-0.342864582698802,-0.348638085390699,-0.351524836736647],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[-0.334204328660958,-0.33131757731501,-0.325544074623114,-0.322657323277166,-0.325544074623114,-0.33131757731501,-0.334204328660958],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316883820585269],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[-0.299498454930021,-0.296676561163633,-0.290903058471736,-0.288016307125788,-0.290600424969724,-0.293882363814208,-0.295408840059191,-0.299498454930021],&#34;lat&#34;:[51.4816478437721,51.476760167579,51.476760167579,51.481760167579,51.4862360457498,51.4854482500378,51.4847591521602,51.4816478437721]}],[{&#34;lng&#34;:[-0.294725174443319,-0.296676561163632,-0.29717630962442,-0.294725174443319],&#34;lat&#34;:[51.4867601992918,51.486760167579,51.4858946614026,51.4867601992918]}],[{&#34;lng&#34;:[-0.291644463346664,-0.292810877501232,-0.294354614600175,-0.294552697846185,-0.293972278686122,-0.291644463346664],&#34;lat&#34;:[51.4867601834422,51.4867601989372,51.4863012789884,51.486089259047,51.4862040407041,51.4867601834422]}],[{&#34;lng&#34;:[-0.296431330978305,-0.29744102838203,-0.29481590737018,-0.296431330978305],&#34;lat&#34;:[51.4856121031231,51.4845674746338,51.4859824777589,51.4856121031231]}]],[[{&#34;lng&#34;:[-0.27323478780289,-0.270695799050099,-0.273582550396048,-0.279356053087944,-0.280158643631652,-0.277107208748056,-0.275493306182485,-0.27323478780289],&#34;lat&#34;:[51.4773625718943,51.481760167579,51.486760167579,51.486760167579,51.4853701571356,51.4834980372277,51.481496886524,51.4773625718943]}],[{&#34;lng&#34;:[-0.280905685819617,-0.282242804433892,-0.279356053087944,-0.274626501559944,-0.27689327488162,-0.2781181367876,-0.280594276453799,-0.280905685819617],&#34;lat&#34;:[51.4840762700817,51.481760167579,51.476760167579,51.4767601885743,51.4808439402083,51.4822018013778,51.483914304603,51.4840762700817]}]],[[{&#34;lng&#34;:[-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.253375290974411,-0.256262042320359,-0.262035545012255,-0.264922296358203],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[-0.245315250109878,-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.24362562106965,-0.245315250109878],&#34;lat&#34;:[51.4857206639889,51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.4867601892763,51.4857206639889]}]],[[{&#34;lng&#34;:[-0.22332831477881,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227058998869745,-0.225021038970724,-0.224088012876719,-0.223685514716204,-0.224063268950024,-0.223636004957817,-0.22332831477881],&#34;lat&#34;:[51.4767601970992,51.476760167579,51.481760167579,51.486760167579,51.4867601753371,51.4842697248822,51.4824462831836,51.4819069539665,51.4817112353896,51.4776221993645,51.4767601970992]}],[{&#34;lng&#34;:[-0.228229994511393,-0.230281280206826,-0.227394528860877,-0.226672264990754,-0.226893899547909,-0.228034688948737,-0.228229994511393],&#34;lat&#34;:[51.4853132186556,51.481760167579,51.476760167579,51.4767601830927,51.481100320363,51.485109294153,51.4853132186556]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[-0.175660858249191,-0.175433004633811,-0.169659501941915,-0.167125315326938,-0.172021242369757,-0.174180160121556,-0.175660858249191],&#34;lat&#34;:[51.4771548640453,51.476760167579,51.476760167579,51.481149570118,51.4801381485641,51.4789083274207,51.4771548640453]}],[{&#34;lng&#34;:[-0.167569433803016,-0.169659501941915,-0.175433004633811,-0.178319755979759,-0.177561385604315,-0.175762610890533,-0.17390656013205,-0.171268854548405,-0.167569433803016],&#34;lat&#34;:[51.4831401799992,51.486760167579,51.486760167579,51.481760167579,51.4804467445887,51.4816217166089,51.4817564958688,51.4825301426281,51.4831401799992]}]],[[{&#34;lng&#34;:[-0.151488543039912,-0.152338993866226,-0.158112496558122,-0.159583237796053,-0.151488543039912],&#34;lat&#34;:[51.4852872648301,51.486760167579,51.486760167579,51.4842129148951,51.4852872648301]}],[{&#34;lng&#34;:[-0.160820902317466,-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.15044636988679,-0.160820902317466],&#34;lat&#34;:[51.4820691050293,51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.4834821784703,51.4820691050293]}]],[[{&#34;lng&#34;:[-0.134256371978628,-0.135018485790537,-0.140791988482434,-0.141771846191781,-0.140339326686561,-0.138134066870731,-0.134256371978628],&#34;lat&#34;:[51.4854402611435,51.486760167579,51.486760167579,51.4850631351095,51.4848457604297,51.4848134642339,51.4854402611435]}],[{&#34;lng&#34;:[-0.142889183248147,-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.133120136779522,-0.136733442508998,-0.136914779915991,-0.137307104669212,-0.137354341831779,-0.140276932446269,-0.142889183248147],&#34;lat&#34;:[51.4831278356703,51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.4834722620622,51.4828146395902,51.482464121944,51.4824496727941,51.4827399712676,51.4827683758436,51.4831278356703]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256266,-0.0715099561796784,-0.0657364534877822,-0.0628497021418341,-0.0657364534877822,-0.0715099561796784,-0.0743967075256266],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[-0.019471374473624,-0.0137749292607159,-0.0108881779147678,-0.0116405747131236,-0.015266040769169,-0.01545801234432,-0.016329022133345,-0.016332863762235,-0.017957030963552,-0.017864476350123,-0.01502553101123,-0.015681614284157,-0.016886611305776,-0.018372479211918,-0.018980724086816,-0.018841965123322,-0.019471374473624],&#34;lat&#34;:[51.4767601694455,51.476760167579,51.481760167579,51.4830634695401,51.4831272569585,51.4828193503889,51.4829599881893,51.4832361245888,51.4831808614122,51.4825246264775,51.4817661810066,51.4816828527438,51.4800656880461,51.4793776744001,51.478203644736,51.4773172819299,51.4767601694455]}],[{&#34;lng&#34;:[-0.0133362913619819,-0.0137749292607159,-0.0187414136503895,-0.016541045250785,-0.0133362913619819],&#34;lat&#34;:[51.4860004996616,51.486760167579,51.4867601846209,51.4861721814217,51.4860004996616]}],[{&#34;lng&#34;:[-0.0210735805506215,-0.0224351832985602,-0.0197876207000289,-0.019339135738793,-0.019828955927473,-0.019442425846027,-0.019074477283317,-0.01711658134178,-0.016521720304069,-0.018189868297558,-0.018818642079838,-0.0210735805506215],&#34;lat&#34;:[51.4841186781675,51.481760167579,51.4771744989906,51.4772429523081,51.4780039304485,51.4779839021196,51.4798292804358,51.4804094639867,51.4816386024614,51.4819959590143,51.4835056670094,51.4841186781675]}]],[[{&#34;lng&#34;:[-0.00329408390156405,-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-7.04659770360664e-05,-0.001695564178697,-0.001687880758472,-0.002310483864474,-0.002045152871479,-0.00329408390156405],&#34;lat&#34;:[51.4849136601968,51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.4867602007504,51.4858976229529,51.4862383182481,51.4859008999883,51.4856445810597,51.4849136601968]}]],[[{&#34;lng&#34;:[0.0122058328528173,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528173],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879874,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[0.0814878651555724,0.0843746165015205,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0843746165015206,0.0814878651555724],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[0.133449389382639,0.136336140728587,0.142109643420483,0.144996394766431,0.142109643420483,0.136336140728587,0.133449389382639],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[0.150769897458328,0.153656648804276,0.159430151496172,0.16231690284212,0.159430151496172,0.153656648804276,0.150769897458328],&#34;lat&#34;:[51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.486760167579,51.486760167579,51.481760167579]}]],[[{&#34;lng&#34;:[0.17459852015186,0.170977156879964,0.168090405534016,0.170977156879964,0.176750659571861,0.179637410917809,0.178891330958591,0.178260106357722,0.177834148905483,0.178018719730019,0.175960819538322,0.175170410130324,0.174851509499837,0.17520662205932,0.17459852015186],&#34;lat&#34;:[51.4867602007173,51.486760167579,51.481760167579,51.476760167579,51.476760167579,51.481760167579,51.4830525278395,51.4833228621229,51.48302861703,51.4835171026151,51.4852486964032,51.4852552594334,51.4859383511956,51.486077446103,51.4867602007173]}]],[[{&#34;lng&#34;:[0.186121373721982,0.188297664955653,0.19407116764755,0.195662953492722,0.195001525980315,0.194179163758092,0.193011552685192,0.192646459033629,0.190764399543187,0.190414659154942,0.190329715697141,0.186575251065429,0.186121373721982],&#34;lat&#34;:[51.4805297228414,51.476760167579,51.476760167579,51.4795173658876,51.4796148877699,51.4792849424955,51.4794138140254,51.479758771454,51.4797337117308,51.4790486845169,51.4797409311816,51.4804360153597,51.4805297228414]}]],[[{&#34;lng&#34;:[0.203349132175714,0.205618173031342,0.211391675723238,0.214261931245095,0.211656958725558,0.210360978640768,0.209623986296889,0.209225007267188,0.20634350873662,0.206299162874358,0.205537606905178,0.205089233130004,0.203349132175714],&#34;lat&#34;:[51.4806903597758,51.476760167579,51.476760167579,51.481731599289,51.4827282041348,51.4824972475314,51.4816415144846,51.4818190098299,51.4812932095808,51.4807319748897,51.4804414647438,51.4808788546972,51.4806903597758]}]],[[{&#34;lng&#34;:[-0.496966356135052,-0.498749155380001,-0.495862404034053,-0.490088901342157,-0.487202149996209,-0.490088901342157,-0.495209334918518,-0.494961571276106,-0.496005435708828,-0.496590197216901,-0.496739680989066,-0.496670028108695,-0.496966356135052],&#34;lat&#34;:[51.4898482043204,51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.4917601817969,51.4913160166632,51.4905417194727,51.4904997028772,51.4902408028105,51.4898254519611,51.4898482043204]}]],[[{&#34;lng&#34;:[-0.481428647304313,-0.478541895958365,-0.472768393266468,-0.46988164192052,-0.472768393266468,-0.478541895958365,-0.481428647304313],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[-0.464108139228624,-0.461221387882676,-0.45544788519078,-0.452561133844831,-0.45544788519078,-0.461221387882676,-0.464108139228624],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[-0.446787631152935,-0.443900879806987,-0.438127377115091,-0.435240625769143,-0.438127377115091,-0.443900879806987,-0.446787631152935],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[-0.429467123077246,-0.426580371731298,-0.420806869039402,-0.417920117693454,-0.420806869039402,-0.426580371731298,-0.429467123077246],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[-0.412146615001558,-0.409259863655609,-0.403486360963713,-0.400599609617765,-0.403486360963713,-0.40925986365561,-0.412146615001558],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[-0.394826106925869,-0.391939355579921,-0.386165852888024,-0.383279101542076,-0.386165852888024,-0.391939355579921,-0.394826106925869],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[-0.37750559885018,-0.374618847504232,-0.368845344812336,-0.365958593466388,-0.368845344812336,-0.374618847504232,-0.37750559885018],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[-0.360185090774491,-0.357298339428543,-0.351524836736647,-0.348638085390699,-0.351524836736647,-0.357298339428543,-0.360185090774491],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[-0.342864582698802,-0.339977831352854,-0.334204328660958,-0.33131757731501,-0.334204328660958,-0.339977831352854,-0.342864582698802],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[-0.325544074623114,-0.322657323277166,-0.316883820585269,-0.313997069239321,-0.316883820585269,-0.322657323277166,-0.325544074623114],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[-0.29717630962442,-0.296676561163632,-0.299563312509581,-0.305336815201477,-0.308223566547425,-0.305336815201477,-0.300893589437852,-0.300769835700574,-0.300108339913608,-0.300561230336952,-0.3041594163207,-0.304270659154826,-0.300229665480821,-0.300517731254982,-0.301192347974828,-0.300534789847571,-0.299781592004242,-0.299993011097028,-0.300462395706526,-0.298986755233308,-0.29717630962442],&#34;lat&#34;:[51.4858946614026,51.486760167579,51.491760167579,51.491760167579,51.486760167579,51.481760167579,51.481760192712,51.4818460983661,51.4827114552453,51.4828475049787,51.4822125900194,51.4823958393982,51.483204213068,51.4835923512697,51.4835364900613,51.4837904456515,51.483286742294,51.4841467584003,51.4839557516417,51.4852553080888,51.4858946614026]}],[{&#34;lng&#34;:[-0.297798207892406,-0.299030755977971,-0.298676350371252,-0.297624191083187,-0.297798207892406],&#34;lat&#34;:[51.4852236788591,51.4846903424811,51.4841141830378,51.4852184824563,51.4852236788591]}]],[[{&#34;lng&#34;:[-0.290600424969724,-0.288016307125788,-0.282242804433892,-0.280905685819617,-0.284455098579449,-0.287294576331405,-0.290565851836049,-0.290600424969724],&#34;lat&#34;:[51.4862360457498,51.481760167579,51.481760167579,51.4840762700817,51.4859221968316,51.4865212393615,51.486244344043,51.4862360457498]}],[{&#34;lng&#34;:[-0.280158643631652,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290443835316291,-0.287469999549642,-0.287196298938647,-0.281588186417266,-0.280158643631652],&#34;lat&#34;:[51.4853701571356,51.486760167579,51.491760167579,51.491760167579,51.4875556435109,51.487683794884,51.4878371934191,51.4862471317915,51.4853701571356]}],[{&#34;lng&#34;:[-0.281842511401715,-0.280572451218091,-0.280740627447335,-0.281842511401715],&#34;lat&#34;:[51.4853444023793,51.484685522122,51.4849631659846,51.4853444023793]}],[{&#34;lng&#34;:[-0.289910197760019,-0.290696800865295,-0.290784443786056,-0.289910197760019],&#34;lat&#34;:[51.4871744813215,51.487117454964,51.486965637243,51.4871744813215]}]],[[{&#34;lng&#34;:[-0.273582550396048,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.273582550396048],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[-0.249461818270496,-0.247601788282514,-0.245315250109878,-0.248543943284819,-0.249455756096447,-0.249461818270496],&#34;lat&#34;:[51.4817601985309,51.481760167579,51.4857206639889,51.4837340474273,51.4819248901431,51.4817601985309]}],[{&#34;lng&#34;:[-0.245575299242971,-0.247601788282514,-0.253375290974411,-0.256262042320359,-0.253375290974411,-0.251469411810703,-0.251466220694816,-0.249733522335997,-0.247698525562838,-0.245575299242971],&#34;lat&#34;:[51.4882503077261,51.491760167579,51.491760167579,51.486760167579,51.481760167579,51.4817601989223,51.4819261189632,51.4856914698694,51.4873030745804,51.4882503077261]}],[{&#34;lng&#34;:[-0.245299683890196,-0.24542181757713,-0.245679278745941,-0.247218316690204,-0.245299683890196],&#34;lat&#34;:[51.4877729000939,51.487984455494,51.4878987688083,51.4868292058942,51.4877729000939]}]],[[{&#34;lng&#34;:[-0.228377430772879,-0.230281280206826,-0.236054782898722,-0.236899083079109,-0.234410003264891,-0.233138018977502,-0.228630446792512,-0.228377430772879],&#34;lat&#34;:[51.4884627347193,51.491760167579,51.491760167579,51.4902979175679,51.4904282863095,51.4903164939257,51.4888025211192,51.4884627347193]}],[{&#34;lng&#34;:[-0.237687452853843,-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.228229994511393,-0.229558802682077,-0.231360624567684,-0.233230654337536,-0.235528688245365,-0.237687452853843],&#34;lat&#34;:[51.4889324436969,51.486760167579,51.481760167579,51.481760167579,51.4853132186556,51.4867006108182,51.4878932340455,51.4885913510142,51.488949666472,51.4889324436969]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[-0.163087845296196,-0.16099924790407,-0.160820902317466,-0.163087845296196],&#34;lat&#34;:[51.4817602003044,51.481760167579,51.4820691050293,51.4817602003044]}],[{&#34;lng&#34;:[-0.159583237796053,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915,-0.167569433803016,-0.167189087087849,-0.159583237796053],&#34;lat&#34;:[51.4842129148951,51.486760167579,51.491760167579,51.491760167579,51.486760167579,51.4831401799992,51.4832028919464,51.4842129148951]}]],[[{&#34;lng&#34;:[-0.15044636988679,-0.149452242520278,-0.143678739828382,-0.142889183248147,-0.146163446982984,-0.149108152016211,-0.15044636988679],&#34;lat&#34;:[51.4834821784703,51.481760167579,51.481760167579,51.4831278356703,51.4835783020984,51.4836643787352,51.4834821784703]}],[{&#34;lng&#34;:[-0.141771846191781,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226,-0.151488543039912,-0.1500038347058,-0.149264509644017,-0.149675462149101,-0.149125378843907,-0.148986607066266,-0.145514147581463,-0.141771846191781],&#34;lat&#34;:[51.4850631351095,51.486760167579,51.491760167579,51.491760167579,51.486760167579,51.4852872648301,51.4854842533966,51.4855310048708,51.4860869342741,51.4862275204996,51.4855634887019,51.4856309106961,51.4850631351095]}]],[[{&#34;lng&#34;:[-0.133120136779522,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.124155551251358,-0.124206372823354,-0.124733404576993,-0.125533686610568,-0.128455623598177,-0.130721312398721,-0.131998762038908,-0.133120136779522],&#34;lat&#34;:[51.4834722620622,51.481760167579,51.481760167579,51.486760167579,51.4879451185938,51.4878288108966,51.4878336306543,51.4869354776907,51.4850487577188,51.4844482116895,51.4836763260905,51.4834722620622]}],[{&#34;lng&#34;:[-0.125935972321738,-0.126358231752693,-0.132131734444589,-0.135018485790537,-0.134256371978628,-0.132663665970732,-0.128483967711686,-0.125935972321738],&#34;lat&#34;:[51.4910288656881,51.491760167579,51.491760167579,51.486760167579,51.4854402611435,51.4856976666951,51.4882262664306,51.4910288656881]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256266,-0.0715099561796784,-0.0743967075256265,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.0628497021418341,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.0628497021418341,-0.0657364534877822],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[-0.0196956378331345,-0.0224351832985602,-0.0263287048159681,-0.025698966250646,-0.023872428609147,-0.021398006984315,-0.0196956378331345],&#34;lat&#34;:[51.4870151638947,51.491760167579,51.4917601987009,51.4906054375946,51.488939792969,51.487470029482,51.4870151638947]}],[{&#34;lng&#34;:[-0.029629547603974,-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0210735805506215,-0.022613780654699,-0.02484732231075,-0.028851595434854,-0.029629547603974],&#34;lat&#34;:[51.4892993089797,51.486760167579,51.481760167579,51.481760167579,51.4841186781675,51.4845373514292,51.485546217799,51.4882493307536,51.4892993089797]}]],[[{&#34;lng&#34;:[-0.0116405747131236,-0.0108881779147678,-0.0051146752228714,-0.00329408390156405,-0.003365078737837,-0.004629416882735,-0.007266518632473,-0.009914590331443,-0.011112579608966,-0.0116405747131236],&#34;lat&#34;:[51.4830634695401,51.481760167579,51.481760167579,51.4849136601968,51.4848721102774,51.4846813855579,51.4837919263175,51.4836084740756,51.4830541705134,51.4830634695401]}],[{&#34;lng&#34;:[-0.00367200870530537,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159,-0.0133362913619819,-0.013202854281028,-0.00983896642681,-0.006526408313647,-0.004668716858667,-0.005195340659571,-0.00430881885587,-0.00367200870530537],&#34;lat&#34;:[51.4892615418136,51.491760167579,51.491760167579,51.486760167579,51.4860004996616,51.4859933493863,51.4863391756403,51.4871237173841,51.488102903245,51.4885462112299,51.4883953372682,51.4892615418136]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528173,0.0150925841987655,0.0122058328528173,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879874,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879874,0.0555071030420393],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[0.0728276111177281,0.0757143624636762,0.0814878651555724,0.0843746165015206,0.0814878651555724,0.0757143624636762,0.0728276111177281],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[0.142109643420483,0.144996394766431,0.150769897458328,0.153656648804276,0.150769897458328,0.144996394766431,0.142109643420483],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[0.159430151496172,0.16231690284212,0.168090405534016,0.170977156879964,0.168090405534016,0.16231690284212,0.159430151496172],&#34;lat&#34;:[51.486760167579,51.481760167579,51.481760167579,51.486760167579,51.491760167579,51.491760167579,51.486760167579]}]],[[{&#34;lng&#34;:[0.178891330958591,0.179637410917809,0.181908672042932,0.178891330958591],&#34;lat&#34;:[51.4830525278395,51.481760167579,51.4817602014024,51.4830525278395]}],[{&#34;lng&#34;:[0.187664154626411,0.18764443309901,0.187656399020659,0.187664154626411],&#34;lat&#34;:[51.4878575396546,51.4878917005525,51.4878584232981,51.4878575396546]}],[{&#34;lng&#34;:[0.187106033587891,0.185410913609705,0.184100664473572,0.184721706448537,0.187106033587891],&#34;lat&#34;:[51.4888242751549,51.491760167579,51.4917601924432,51.4906820659812,51.4888242751549]}]],[[{&#34;lng&#34;:[0.204128962144397,0.202731421685394,0.196957918993498,0.194859878591767,0.196321095844141,0.201081959707588,0.204128962144397],&#34;lat&#34;:[51.4893397022925,51.491760167579,51.491760167579,51.4881263709275,51.4881353030816,51.4891530490114,51.4893397022925]}]],[[{&#34;lng&#34;:[-0.499243478467103,-0.498749155380001,-0.496966356135052,-0.497401318812703,-0.498648960058552,-0.497997397564034,-0.498326915107546,-0.499188409979056,-0.499043595400274,-0.499695190519763,-0.499243478467103],&#34;lat&#34;:[51.4867601786749,51.486760167579,51.4898482043204,51.4898815997918,51.489260025933,51.4888811910417,51.4884537679212,51.4885799226079,51.4878569001108,51.4868329301334,51.4867601786749]}],[{&#34;lng&#34;:[-0.496739680989066,-0.496590197216901,-0.496780801442931,-0.496739680989066],&#34;lat&#34;:[51.4902408028105,51.4904997028772,51.4904860068357,51.4902408028105]}]],[[{&#34;lng&#34;:[-0.490088901342157,-0.487202149996209,-0.481428647304313,-0.478541895958365,-0.481428647304313,-0.487202149996209,-0.490088901342157],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[-0.472768393266468,-0.46988164192052,-0.464108139228624,-0.461221387882676,-0.464108139228624,-0.46988164192052,-0.472768393266468],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[-0.45544788519078,-0.452561133844831,-0.446787631152935,-0.443900879806987,-0.446787631152935,-0.452561133844831,-0.45544788519078],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[-0.438127377115091,-0.435240625769143,-0.429467123077246,-0.426580371731298,-0.429467123077246,-0.435240625769143,-0.438127377115091],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[-0.420806869039402,-0.417920117693454,-0.412146615001558,-0.40925986365561,-0.412146615001558,-0.417920117693454,-0.420806869039402],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[-0.403486360963713,-0.400599609617765,-0.394826106925869,-0.391939355579921,-0.394826106925869,-0.400599609617765,-0.403486360963713],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[-0.386165852888024,-0.383279101542076,-0.37750559885018,-0.374618847504232,-0.37750559885018,-0.383279101542076,-0.386165852888024],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[-0.368845344812336,-0.365958593466388,-0.360185090774491,-0.357298339428543,-0.360185090774491,-0.365958593466388,-0.368845344812336],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[-0.351524836736647,-0.348638085390699,-0.342864582698802,-0.339977831352854,-0.342864582698802,-0.348638085390699,-0.351524836736647],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[-0.334204328660958,-0.33131757731501,-0.325544074623114,-0.322657323277166,-0.325544074623114,-0.33131757731501,-0.334204328660958],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316883820585269],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[-0.290443835316291,-0.288016307125788,-0.290903058471736,-0.296676561163633,-0.299563312509581,-0.296676561163632,-0.294725174443319,-0.292754498865413,-0.290443835316291],&#34;lat&#34;:[51.4875556435109,51.491760167579,51.496760167579,51.496760167579,51.491760167579,51.486760167579,51.4867601992918,51.4874560177724,51.4875556435109]}],[{&#34;lng&#34;:[-0.290784443786056,-0.290696800865295,-0.291903351595737,-0.292810877501232,-0.291644463346664,-0.290784443786056],&#34;lat&#34;:[51.486965637243,51.487117454964,51.4870299731653,51.4867601989372,51.4867601834422,51.486965637243]}]],[[{&#34;lng&#34;:[-0.282242804433892,-0.279356053087944,-0.273582550396048,-0.270695799050099,-0.273582550396048,-0.279356053087944,-0.282242804433892],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.253375290974411,-0.256262042320359,-0.262035545012255,-0.264922296358203],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[-0.24362562106965,-0.23894153424467,-0.237687452853843,-0.238615035897904,-0.241047093808439,-0.24362562106965],&#34;lat&#34;:[51.4867601892763,51.486760167579,51.4889324436969,51.4889250311981,51.4883464610601,51.4867601892763]}],[{&#34;lng&#34;:[-0.236899083079109,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514,-0.245575299242971,-0.244562369396499,-0.243089875787112,-0.240558722829867,-0.236899083079109],&#34;lat&#34;:[51.4902979175679,51.491760167579,51.496760167579,51.496760167579,51.491760167579,51.4882503077261,51.4887021778805,51.4894624591059,51.4901061422214,51.4902979175679]}],[{&#34;lng&#34;:[-0.24448724925595,-0.24542181757713,-0.245299683890196,-0.244828290304632,-0.24448724925595],&#34;lat&#34;:[51.4882954854879,51.487984455494,51.4877729000939,51.488004747862,51.4882954854879]}]],[[{&#34;lng&#34;:[-0.227058998869745,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826,-0.228377430772879,-0.22762138986872,-0.227058998869745],&#34;lat&#34;:[51.4867601753371,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579,51.4884627347193,51.4874473805394,51.4867601753371]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[-0.124155551251358,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.120850454230455,-0.121347680343964,-0.124155551251358],&#34;lat&#34;:[51.4879451185938,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.4967602027088,51.4943701148729,51.4879451185938]}],[{&#34;lng&#34;:[-0.124697799364538,-0.126358231752693,-0.125935972321738,-0.125376513316914,-0.124697799364538],&#34;lat&#34;:[51.4946362635016,51.491760167579,51.4910288656881,51.4916441741078,51.4946362635016]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256265,-0.0715099561796784,-0.0657364534877822,-0.0628497021418341,-0.0657364534877822,-0.0715099561796784,-0.0743967075256265],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[-0.0326353600468079,-0.0368689400283009,-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.029629547603974,-0.032412912429735,-0.032630611230032,-0.033249707474907,-0.032712597073666,-0.03256741393152,-0.032934539752584,-0.032545434387284,-0.0326353600468079],&#34;lat&#34;:[51.4967601952968,51.496760167579,51.491760167579,51.486760167579,51.486760167579,51.4892993089797,51.4930554931281,51.4941211602484,51.4942304628525,51.4943923074432,51.4956227769931,51.4958294781932,51.4960324803203,51.4967601952968]}]],[[{&#34;lng&#34;:[-0.0187414136503895,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602,-0.0196956378331345,-0.0187414136503895],&#34;lat&#34;:[51.4867601846209,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579,51.4870151638947,51.4867601846209]}]],[[{&#34;lng&#34;:[-7.04659770360664e-05,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00115934678181011,-0.001039150202928,-0.000286043533245,0.000862135064538,0.001242190934332,0.000954413803713,0.001558156619268,0.001954833449651,0.00236352892205,0.00244704548692,0.001962841910588,0.001638832201752,0.000131458027749,-7.04659770360664e-05],&#34;lat&#34;:[51.4867602007504,51.486760167579,51.491760167579,51.496760167579,51.4967601889542,51.496393511106,51.4952331969153,51.4954959813879,51.4947988565689,51.4944116869227,51.4940209973824,51.492913512068,51.4930027537759,51.4899447122464,51.4884601847058,51.4884953860693,51.4868673751412,51.4867602007504]}],[{&#34;lng&#34;:[-0.00411416827086142,-0.0051146752228714,-0.00367200870530537,-0.003253645462413,-0.003270434500371,-0.00411416827086142],&#34;lat&#34;:[51.493493228679,51.491760167579,51.4892615418136,51.4898305898091,51.4921500978756,51.493493228679]}]],[[{&#34;lng&#34;:[0.01491383163734,0.0122058328528173,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0222945275999744,0.021980018046768,0.021576858814755,0.021702912874623,0.019198448399497,0.015699894556389,0.01491383163734],&#34;lat&#34;:[51.4964505929743,51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.4942861816448,51.4939458231129,51.4940148030613,51.4944541798804,51.4947662036705,51.4958938491596,51.4964505929743]}]],[[{&#34;lng&#34;:[0.0309210949142646,0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0390378464933814,0.0309210949142646],&#34;lat&#34;:[51.4941760981467,51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.4952858780825,51.4941760981467]}]],[[{&#34;lng&#34;:[0.0487004941099331,0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879874,0.0568065468988775,0.0487004941099331],&#34;lat&#34;:[51.4949709092521,51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.4945096093109,51.4949709092521]}]],[[{&#34;lng&#34;:[0.065954843755218,0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.0734474446142653,0.070326744699931,0.065954843755218],&#34;lat&#34;:[51.4948563229863,51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.4956866829153,51.4951669187612,51.4948563229863]}]],[[{&#34;lng&#34;:[0.0814878651555724,0.0843746165015206,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0843746165015206,0.0814878651555724],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[0.133449389382639,0.136336140728587,0.142109643420483,0.144996394766431,0.142109643420483,0.136336140728587,0.133449389382639],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[0.150769897458328,0.153656648804276,0.159430151496172,0.16231690284212,0.159430151496172,0.153656648804276,0.150769897458328],&#34;lat&#34;:[51.491760167579,51.486760167579,51.486760167579,51.491760167579,51.496760167579,51.496760167579,51.491760167579]}]],[[{&#34;lng&#34;:[0.171914279029234,0.170977156879964,0.168090405534016,0.170977156879964,0.17459852015186,0.174465507391625,0.174154304203986,0.173506437565323,0.172589242328248,0.172026191893962,0.171914279029234],&#34;lat&#34;:[51.4967601868484,51.496760167579,51.491760167579,51.486760167579,51.4867602007173,51.4869095394425,51.4868163901461,51.487338309689,51.4887707874266,51.4965016530586,51.4967601868484]}]],[[{&#34;lng&#34;:[0.194859878591767,0.196957918993498,0.19407116764755,0.188297664955653,0.185410913609705,0.187106033587891,0.187388133281321,0.18764443309901,0.187664154626411,0.189147739172398,0.191723225731677,0.194859878591767],&#34;lat&#34;:[51.4881263709275,51.491760167579,51.496760167579,51.496760167579,51.491760167579,51.4888242751549,51.488604458955,51.4878917005525,51.4878575396546,51.4876884957822,51.4881071358092,51.4881263709275]}]],[[{&#34;lng&#34;:[0.212829887436824,0.211391675723238,0.205618173031342,0.202731421685394,0.204128962144397,0.207216486140903,0.208376885869986,0.208723140540509,0.20957817152563,0.210525392852171,0.211903888278616,0.212829887436824],&#34;lat&#34;:[51.4942692577828,51.496760167579,51.496760167579,51.491760167579,51.4893397022925,51.4895287557528,51.4896642650008,51.4900021704386,51.489751345915,51.490242517236,51.4910438389686,51.4942692577828]}]],[[{&#34;lng&#34;:[-0.495209334918518,-0.490088901342157,-0.487202149996209,-0.489013050935318,-0.489763727346301,-0.489592206145781,-0.488867879665396,-0.489488441158578,-0.488606060000826,-0.488693061711154,-0.489663036717982,-0.490044357672119,-0.490136361911349,-0.49146413221379,-0.49484976256827,-0.495368276585568,-0.495209334918518],&#34;lat&#34;:[51.4917601817969,51.491760167579,51.496760167579,51.4998968765359,51.4989653985715,51.498619695594,51.49856447343,51.4975743587561,51.4967680577123,51.495968001504,51.4954742410214,51.4947462873768,51.4945775108432,51.493062359859,51.4926562216938,51.4920451112118,51.4917601817969]}]],[[{&#34;lng&#34;:[-0.481428647304313,-0.478541895958365,-0.472768393266468,-0.46988164192052,-0.472768393266468,-0.478541895958365,-0.481428647304313],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[-0.464108139228624,-0.461221387882676,-0.45544788519078,-0.452561133844831,-0.45544788519078,-0.461221387882676,-0.464108139228624],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[-0.446787631152935,-0.443900879806987,-0.438127377115091,-0.435240625769143,-0.438127377115091,-0.443900879806987,-0.446787631152935],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[-0.429467123077246,-0.426580371731298,-0.420806869039402,-0.417920117693454,-0.420806869039402,-0.426580371731298,-0.429467123077246],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[-0.412146615001558,-0.40925986365561,-0.403486360963713,-0.400599609617765,-0.403486360963713,-0.40925986365561,-0.412146615001558],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[-0.394826106925869,-0.391939355579921,-0.386165852888024,-0.383279101542076,-0.386165852888024,-0.391939355579921,-0.394826106925869],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[-0.37750559885018,-0.374618847504232,-0.368845344812336,-0.365958593466388,-0.368845344812336,-0.374618847504232,-0.37750559885018],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[-0.360185090774491,-0.357298339428543,-0.351524836736647,-0.348638085390699,-0.351524836736647,-0.357298339428543,-0.360185090774491],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[-0.342864582698802,-0.339977831352854,-0.334204328660958,-0.33131757731501,-0.334204328660958,-0.339977831352854,-0.342864582698802],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[-0.325544074623114,-0.322657323277166,-0.316883820585269,-0.313997069239321,-0.316883820585269,-0.322657323277166,-0.325544074623114],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163633,-0.299563312509581,-0.305336815201477,-0.308223566547425],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[-0.273582550396048,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.273582550396048],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[-0.256262042320359,-0.253375290974411,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.25337529097441,-0.256262042320359],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[-0.124134228715687,-0.126358231752693,-0.132131734444589,-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.124697799364538,-0.124681814003417,-0.124134228715687],&#34;lat&#34;:[51.4979081846128,51.501760167579,51.501760167579,51.496760167579,51.491760167579,51.491760167579,51.4946362635016,51.4947067296885,51.4979081846128]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256265,-0.0715099561796784,-0.0743967075256265,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[-0.0635073754098161,-0.0657364534877822,-0.0628497021418341,-0.0570761994499377,-0.0541894481039896,-0.0566046544006276,-0.059201165330379,-0.0635073754098161],&#34;lat&#34;:[51.500621146792,51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.5009435074002,51.5007050024833,51.500621146792]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[-0.0263287048159681,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0274228169629518,-0.027885024637026,-0.027710547545991,-0.025568996304505,-0.025514980558077,-0.027424940223676,-0.0263287048159681],&#34;lat&#34;:[51.4917601987009,51.491760167579,51.496760167579,51.501760167579,51.501760184243,51.4948939498253,51.4942624439382,51.4941139878996,51.4939305292394,51.4937702345136,51.4917601987009]}]],[[{&#34;lng&#34;:[-0.00757026152253606,-0.0108881779147678,-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00411416827086142,-0.004772235897107,-0.005394997355114,-0.006216026277746,-0.005657049169737,-0.00729300783349,-0.007801208822803,-0.008984107495211,-0.007681863852414,-0.00757026152253606],&#34;lat&#34;:[51.5017602022172,51.501760167579,51.496760167579,51.491760167579,51.491760167579,51.493493228679,51.4945407403871,51.4946637525678,51.4956246266973,51.4958552426003,51.4982813925902,51.500801684435,51.501230944469,51.5014893923517,51.5017602022172]}]],[[{&#34;lng&#34;:[0.00812035515609744,0.0064323301609211,0.00354557881497297,0.0064323301609211,0.0122058328528173,0.01491383163734,0.011487537371546,0.00812035515609744],&#34;lat&#34;:[51.5017601968985,51.501760167579,51.496760167579,51.491760167579,51.491760167579,51.4964505929743,51.498877110001,51.5017601968985]}]],[[{&#34;lng&#34;:[0.0222945275999744,0.0237528382366098,0.0295263409285061,0.0309210949142646,0.029019074475123,0.024379338653921,0.022303907560736,0.0222945275999744],&#34;lat&#34;:[51.4942861816448,51.491760167579,51.491760167579,51.4941760981467,51.4939159515639,51.4938621403974,51.4942963324369,51.4942861816448]}],[{&#34;lng&#34;:[0.0310573198865779,0.0295263409285061,0.0237528382366098,0.0222379066928203,0.023633788777431,0.023662365023219,0.02441487696214,0.024552350832251,0.028712950549486,0.0310573198865779],&#34;lat&#34;:[51.4991085796908,51.501760167579,51.501760167579,51.4991363748066,51.498983802763,51.4983942572262,51.4983066425228,51.4987098320841,51.4987665149766,51.4991085796908]}]],[[{&#34;lng&#34;:[0.0390378464933814,0.0410733463122986,0.0468468490041948,0.0487004941099331,0.04024817188926,0.0390378464933814],&#34;lat&#34;:[51.4952858780825,51.491760167579,51.491760167579,51.4949709092521,51.4954513097438,51.4952858780825]}],[{&#34;lng&#34;:[0.0480511678874581,0.0468468490041948,0.0410733463122986,0.0400075598737333,0.043345726477366,0.0480511678874581],&#34;lat&#34;:[51.4996743680688,51.501760167579,51.501760167579,51.4999143073148,51.4999638877471,51.4996743680688]}]],[[{&#34;lng&#34;:[0.0568065468988775,0.0583938543879874,0.0641673570798837,0.065954843755218,0.064110493129084,0.064056252009961,0.059165127123793,0.058939392672632,0.058831434687339,0.058090560102216,0.058028252898883,0.057707728604025,0.0568065468988775],&#34;lat&#34;:[51.4945096093109,51.491760167579,51.491760167579,51.4948563229863,51.4947252435818,51.494513055987,51.4944794485916,51.4942019423937,51.4944592292542,51.4944506685813,51.4940587760148,51.4944582896974,51.4945096093109]}],[{&#34;lng&#34;:[0.0658275410140302,0.0641673570798837,0.0583938543879875,0.0566106749558845,0.058854187374618,0.0658275410140302],&#34;lat&#34;:[51.4988847873521,51.501760167579,51.501760167579,51.4986717481036,51.4983841781334,51.4988847873521]}]],[[{&#34;lng&#34;:[0.0734474446142653,0.0757143624636762,0.0814878651555724,0.0843746165015206,0.0828666947067835,0.082403731907579,0.076207358083591,0.075925851558762,0.0734474446142653],&#34;lat&#34;:[51.4956866829153,51.491760167579,51.491760167579,51.496760167579,51.499372110439,51.4988613354658,51.4958911666804,51.4960994033479,51.4956866829153]}]],[[{&#34;lng&#34;:[0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[0.142109643420483,0.144996394766431,0.150769897458328,0.153656648804276,0.150769897458328,0.144996394766431,0.142109643420483],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[0.159430151496172,0.16231690284212,0.168090405534016,0.170977156879964,0.168090405534016,0.16231690284212,0.159430151496172],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[0.184100664473572,0.185410913609705,0.188297664955653,0.185410913609705,0.180223925111922,0.180216132339856,0.18240201343754,0.18227867984988,0.182887779877615,0.182858868688607,0.18329280647027,0.182994619429047,0.183522274643331,0.182439740465035,0.183366622291246,0.183761316943309,0.184100664473572],&#34;lat&#34;:[51.4917601924432,51.491760167579,51.496760167579,51.501760167579,51.5017601805128,51.5012885512648,51.4994502103294,51.4989183241606,51.4986101514053,51.4978238932085,51.4977384881473,51.4971675807857,51.4970237500681,51.4964998320391,51.4950329144616,51.4923492755117,51.4917601924432]}]],[[{&#34;lng&#34;:[0.19407116764755,0.196957918993498,0.202731421685394,0.205618173031342,0.202731421685394,0.196957918993498,0.19407116764755],&#34;lat&#34;:[51.496760167579,51.491760167579,51.491760167579,51.496760167579,51.501760167579,51.501760167579,51.496760167579]}]],[[{&#34;lng&#34;:[0.22231316764884,0.220051929761083,0.214278427069186,0.211391675723238,0.212829887436824,0.213045863120866,0.213515073375794,0.214128112962353,0.214993949541734,0.216997102321872,0.221625416128403,0.22231316764884],&#34;lat&#34;:[51.4978436877887,51.501760167579,51.501760167579,51.496760167579,51.4942692577828,51.4950214725956,51.4950126155875,51.4960388180011,51.4964829051129,51.4965826632218,51.4978098485359,51.4978436877887]}]],[[{&#34;lng&#34;:[-0.489013050935318,-0.487202149996209,-0.481428647304313,-0.478541895958365,-0.481428647304313,-0.48320152417211,-0.483194182460795,-0.483680246355493,-0.483941404177231,-0.484667729666372,-0.48506478920555,-0.485179231662475,-0.484679276549203,-0.485168252326468,-0.486260343144491,-0.486186956018173,-0.487312729361671,-0.487477637830273,-0.488764609351267,-0.489013050935318],&#34;lat&#34;:[51.4998968765359,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.5067601977315,51.5066462754126,51.5064583083445,51.5056236020361,51.5056204276936,51.505073428052,51.503925695771,51.503577539367,51.5026055171264,51.5018237890772,51.5009092449401,51.5009786299985,51.5003485922084,51.5002051462118,51.4998968765359]}]],[[{&#34;lng&#34;:[-0.472768393266468,-0.46988164192052,-0.464108139228624,-0.461221387882676,-0.464108139228624,-0.46988164192052,-0.472768393266468],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[-0.45544788519078,-0.452561133844831,-0.446787631152935,-0.443900879806987,-0.446787631152935,-0.452561133844831,-0.45544788519078],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[-0.438127377115091,-0.435240625769143,-0.429467123077246,-0.426580371731298,-0.429467123077246,-0.435240625769143,-0.438127377115091],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[-0.420806869039402,-0.417920117693454,-0.412146615001558,-0.40925986365561,-0.412146615001558,-0.417920117693454,-0.420806869039402],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[-0.403486360963713,-0.400599609617765,-0.394826106925869,-0.391939355579921,-0.394826106925869,-0.400599609617765,-0.403486360963713],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[-0.386165852888024,-0.383279101542076,-0.37750559885018,-0.374618847504232,-0.37750559885018,-0.383279101542076,-0.386165852888024],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[-0.368845344812336,-0.365958593466388,-0.360185090774491,-0.357298339428543,-0.360185090774491,-0.365958593466388,-0.368845344812336],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[-0.351524836736647,-0.348638085390699,-0.342864582698802,-0.339977831352854,-0.342864582698802,-0.348638085390699,-0.351524836736647],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[-0.334204328660958,-0.33131757731501,-0.325544074623114,-0.322657323277166,-0.325544074623114,-0.33131757731501,-0.334204328660958],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316883820585269],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[-0.299563312509581,-0.296676561163633,-0.290903058471736,-0.288016307125788,-0.290903058471736,-0.296676561163632,-0.299563312509581],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[-0.282242804433892,-0.279356053087944,-0.273582550396048,-0.270695799050099,-0.273582550396048,-0.279356053087944,-0.282242804433892],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.25337529097441,-0.256262042320359,-0.262035545012255,-0.264922296358203],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[-0.120850454230455,-0.117697977714848,-0.1148112263689,-0.117506352590811,-0.118350280583698,-0.119375792533825,-0.120850454230455],&#34;lat&#34;:[51.4967602027088,51.496760167579,51.501760167579,51.5064282993233,51.5057254845603,51.5038471837325,51.4967602027088]}],[{&#34;lng&#34;:[-0.12170260174261,-0.123471480406745,-0.126358231752693,-0.124134228715687,-0.123089248974667,-0.12170260174261],&#34;lat&#34;:[51.5067601976936,51.506760167579,51.501760167579,51.4979081846128,51.5040163990764,51.5067601976936]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[-0.0875596061337758,-0.0888304642553672,-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0826791712099559,-0.0875596061337758],&#34;lat&#34;:[51.5067601919056,51.506760167579,51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.5061058819224,51.5067601919056]}]],[[{&#34;lng&#34;:[-0.0637722433493597,-0.0657364534877822,-0.0715099561796784,-0.0719687265357508,-0.071402529494753,-0.071283704597143,-0.070017530978747,-0.068458009254908,-0.067976046628334,-0.068006346473617,-0.066887957252978,-0.0637722433493597],&#34;lat&#34;:[51.5033581828263,51.506760167579,51.506760167579,51.5059656320795,51.5060185618649,51.5056236384479,51.5050686646855,51.5045663801679,51.5049577001507,51.5044447375073,51.5041439223141,51.5033581828263]}],[{&#34;lng&#34;:[-0.0733243577318769,-0.0743967075256265,-0.0715099561796784,-0.0657364534877822,-0.0635073754098161,-0.063796897258606,-0.070818355988626,-0.073540393282861,-0.070860191530127,-0.071870605066654,-0.0733243577318769],&#34;lat&#34;:[51.5036176682728,51.501760167579,51.496760167579,51.496760167579,51.500621146792,51.5006155032072,51.5022104886449,51.5004630180248,51.5025160309657,51.5031909026326,51.5036176682728]}]],[[{&#34;lng&#34;:[-0.0566046544006276,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0474809109133745,-0.04754690806383,-0.047974745848473,-0.04860539082551,-0.050770318523169,-0.056173712125417,-0.0566046544006276],&#34;lat&#34;:[51.5009435074002,51.496760167579,51.496760167579,51.501760167579,51.5051407682212,51.5051085756128,51.5041328061112,51.5045155990533,51.5028807570338,51.5009830862139,51.5009435074002]}],[{&#34;lng&#34;:[-0.0512189829124197,-0.0541894481039896,-0.0556202891801739,-0.054010029768403,-0.0512189829124197],&#34;lat&#34;:[51.5067602029763,51.506760167579,51.5042820241405,51.5054713849521,51.5067602029763]}]],[[{&#34;lng&#34;:[-0.0353924166691904,-0.0368689400283009,-0.039755691374249,-0.0368689400283009,-0.0326353600468079,-0.032656566520148,-0.032968474931589,-0.032479108171716,-0.032774507542266,-0.03235954754254,-0.032354280052378,-0.032973584525256,-0.03286205180329,-0.033896510365501,-0.0353924166691904],&#34;lat&#34;:[51.5067601945515,51.506760167579,51.501760167579,51.496760167579,51.4967601952968,51.4969318033,51.4969478279913,51.4993118881012,51.5000803186018,51.5001147397268,51.5043168826073,51.5043587463237,51.5047732456685,51.506081932954,51.5067601945515]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[-0.00115934678181011,0.00354557881497297,0.0064323301609211,0.00492313538607785,0.00329725888542,0.000825317829994,-0.001701413198321,-0.002020696217372,-0.0015416608272,-0.00192187144147,-0.001872985885254,-0.002302857482207,-0.002267078145422,-0.00115934678181011],&#34;lat&#34;:[51.4967601889542,51.496760167579,51.501760167579,51.5043743153177,51.5048679812068,51.5045234611935,51.5029253845158,51.5021484696445,51.5020324018164,51.5019048967205,51.501309645152,51.5012980821879,51.5001392075773,51.4967601889542]}]],[[{&#34;lng&#34;:[0.0222379066928203,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0135084355064664,0.013825298418602,0.014516551916341,0.014873271668221,0.014602010028966,0.017791072774503,0.020605432605338,0.0222379066928203],&#34;lat&#34;:[51.4991363748066,51.501760167579,51.506760167579,51.506760167579,51.504016486183,51.5036993494048,51.5031029562261,51.5032191170922,51.5030142465434,51.5005754566212,51.4993147844033,51.4991363748066]}]],[[{&#34;lng&#34;:[0.0400075598737333,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061,0.0310573198865779,0.034999603055619,0.03908098730737,0.0400075598737333],&#34;lat&#34;:[51.4999143073148,51.501760167579,51.506760167579,51.506760167579,51.501760167579,51.4991085796908,51.499683677559,51.4999005284896,51.4999143073148]}]],[[{&#34;lng&#34;:[0.0566106749558845,0.0583938543879875,0.0555071030420393,0.049733600350143,0.0468468490041948,0.0480511678874581,0.049465315384467,0.0566106749558845],&#34;lat&#34;:[51.4986717481036,51.501760167579,51.506760167579,51.506760167579,51.501760167579,51.4996743680688,51.4995873199045,51.4986717481036]}]],[[{&#34;lng&#34;:[0.0753957372967496,0.0728276111177281,0.0670541084258318,0.0641673570798837,0.0658275410140302,0.068634218732637,0.068581954335433,0.068946020075425,0.069981641957101,0.069942103526515,0.070595854412934,0.070448847291702,0.070854556163044,0.073705754231696,0.074729819865697,0.073988890975818,0.075341400271757,0.0753957372967496],&#34;lat&#34;:[51.5023120999086,51.506760167579,51.506760167579,51.501760167579,51.4988847873521,51.4990861557861,51.499331676737,51.4991310075638,51.4992836058204,51.4994920315115,51.4994508195239,51.4996728379171,51.4995010976498,51.5004174312731,51.5015827710125,51.5021147643009,51.5022634971836,51.5023120999086]}]],[[{&#34;lng&#34;:[0.0828666947067835,0.0843746165015206,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0893562647932921,0.087926881624235,0.087590685535391,0.086630829185839,0.0828666947067835],&#34;lat&#34;:[51.499372110439,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.5067601843491,51.5055562708499,51.5039696433982,51.5035244908425,51.499372110439]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[0.133449389382639,0.136336140728587,0.142109643420483,0.144996394766431,0.142109643420483,0.136336140728587,0.133449389382639],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[0.153396505570836,0.150769897458328,0.153656648804276,0.159430151496172,0.16231690284212,0.160119066002729,0.159801533130554,0.153396505570836],&#34;lat&#34;:[51.5063096341695,51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.5055670387689,51.5056430190598,51.5063096341695]}]],[[{&#34;lng&#34;:[0.177094987938383,0.176750659571861,0.176110693905354,0.177094987938383],&#34;lat&#34;:[51.5061638347075,51.506760167579,51.5067601815456,51.5061638347075]}],[{&#34;lng&#34;:[0.168118629246086,0.168090405534016,0.170977156879964,0.171914279029234,0.171132989560189,0.168118629246086],&#34;lat&#34;:[51.501809058137,51.501760167579,51.496760167579,51.4967601868484,51.4985649860743,51.501809058137]}]],[[{&#34;lng&#34;:[0.185410913609705,0.188297664955653,0.19407116764755,0.196957918993498,0.19407116764755,0.188297664955653,0.185410913609705],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[0.202731421685394,0.205618173031342,0.211391675723238,0.214278427069186,0.211391675723238,0.205618173031342,0.202731421685394],&#34;lat&#34;:[51.501760167579,51.496760167579,51.496760167579,51.501760167579,51.506760167579,51.506760167579,51.501760167579]}]],[[{&#34;lng&#34;:[0.228466302613459,0.222938681107031,0.220051929761083,0.22231316764884,0.223578035698266,0.224269563740535,0.227879198959772,0.229936897138403,0.226585978007623,0.225992380723859,0.22636793608536,0.226604630658215,0.228466302613459],&#34;lat&#34;:[51.506760173357,51.506760167579,51.501760167579,51.4978436877887,51.4979059121187,51.4973127694118,51.4988593378999,51.4993652007809,51.5044883693276,51.5058791559612,51.5059277393886,51.506585155965,51.506760173357]}]],[[{&#34;lng&#34;:[-0.481428647304313,-0.478541895958365,-0.472768393266468,-0.46988164192052,-0.472768393266468,-0.478541895958365,-0.481428647304313],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[-0.464108139228624,-0.461221387882676,-0.45544788519078,-0.452561133844831,-0.45544788519078,-0.461221387882676,-0.464108139228624],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[-0.446787631152935,-0.443900879806987,-0.438127377115091,-0.435240625769143,-0.438127377115091,-0.443900879806987,-0.446787631152935],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[-0.429467123077246,-0.426580371731298,-0.420806869039402,-0.417920117693454,-0.420806869039402,-0.426580371731298,-0.429467123077246],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[-0.412146615001558,-0.40925986365561,-0.403486360963713,-0.400599609617765,-0.403486360963713,-0.409259863655609,-0.412146615001558],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[-0.394826106925869,-0.391939355579921,-0.386165852888024,-0.383279101542076,-0.386165852888024,-0.391939355579921,-0.394826106925869],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[-0.37750559885018,-0.374618847504232,-0.368845344812336,-0.365958593466388,-0.368845344812336,-0.374618847504232,-0.37750559885018],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[-0.360185090774491,-0.357298339428543,-0.351524836736647,-0.348638085390699,-0.351524836736647,-0.357298339428543,-0.360185090774491],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[-0.342864582698802,-0.339977831352854,-0.334204328660958,-0.33131757731501,-0.334204328660958,-0.339977831352854,-0.342864582698802],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[-0.325544074623114,-0.322657323277166,-0.316883820585269,-0.313997069239321,-0.316883820585269,-0.322657323277166,-0.325544074623114],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163632,-0.299563312509581,-0.305336815201477,-0.308223566547425],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[-0.273582550396048,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.273582550396048],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[-0.256262042320359,-0.25337529097441,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.253375290974411,-0.256262042320359],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[-0.117506352590811,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.107165137939098,-0.108924882947668,-0.110813657909216,-0.111457469305837,-0.115408113292649,-0.117013314354111,-0.117506352590811],&#34;lat&#34;:[51.5064282993233,51.501760167579,51.501760167579,51.506760167579,51.5085168870659,51.5084407263706,51.5081033469506,51.5083547355723,51.5075343183042,51.5068388837835,51.5064282993233]}],[{&#34;lng&#34;:[-0.108488993157064,-0.109037723677004,-0.1148112263689,-0.115653884179651,-0.115125184514084,-0.111574388226575,-0.108488993157064],&#34;lat&#34;:[51.5108098283685,51.511760167579,51.511760167579,51.5103007621775,51.5104442552313,51.510754946377,51.5108098283685]}]],[[{&#34;lng&#34;:[-0.0902120477396438,-0.0917172156013153,-0.0974907182932116,-0.0982121008752335,-0.096149558572768,-0.095240111304392,-0.095259960569521,-0.092014025970265,-0.0902120477396438],&#34;lat&#34;:[51.5091532861396,51.511760167579,51.511760167579,51.5105108057906,51.5102115024012,51.5105600250557,51.5101188053799,51.5094077737557,51.5091532861396]}],[{&#34;lng&#34;:[-0.0993753712547654,-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0889145049279578,-0.090161131196742,-0.090411259782358,-0.09037200607529,-0.092062734033635,-0.095543968969173,-0.0993753712547654],&#34;lat&#34;:[51.5084959852851,51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.5069057468056,51.5070206903863,51.5066218960348,51.5070430013916,51.5072404872642,51.5083195131284,51.5084959852851]}]],[[{&#34;lng&#34;:[-0.0826791712099559,-0.0801702102175228,-0.0743967075256265,-0.0733243577318769,-0.08106399465017,-0.0826791712099559],&#34;lat&#34;:[51.5061058819224,51.501760167579,51.501760167579,51.5036176682728,51.5058892897444,51.5061058819224]}],[{&#34;lng&#34;:[-0.0719687265357508,-0.0715099561796784,-0.0743967075256265,-0.0801702102175228,-0.0820991574015864,-0.081531029683164,-0.080338049253612,-0.07937947189717,-0.072653881597125,-0.0719687265357508],&#34;lat&#34;:[51.5059656320795,51.506760167579,51.511760167579,51.511760167579,51.5084192625636,51.5083896827861,51.5080068719982,51.5078427752321,51.5059015779347,51.5059656320795]}]],[[{&#34;lng&#34;:[-0.0556202891801739,-0.0541894481039896,-0.0570761994499377,-0.062849702141834,-0.0657364534877822,-0.0637722433493597,-0.062633745208108,-0.060393237081759,-0.058494052800781,-0.056437965927164,-0.0556202891801739],&#34;lat&#34;:[51.5042820241405,51.506760167579,51.511760167579,51.511760167579,51.506760167579,51.5033581828263,51.5030710421604,51.5028307867,51.5029693391245,51.5036780440999,51.5042820241405]}]],[[{&#34;lng&#34;:[-0.0474809109133745,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.0370930647742871,-0.038396628429423,-0.041059172787844,-0.043019837853912,-0.044413024929315,-0.045193727383771,-0.045049359552021,-0.046372818927008,-0.046155127974048,-0.047040623731496,-0.0474809109133745],&#34;lat&#34;:[51.5051407682212,51.501760167579,51.501760167579,51.506760167579,51.5071484048598,51.5073937834515,51.5074724600059,51.5072165361357,51.5069205370542,51.5064236622719,51.5059923077295,51.5055728166074,51.5051033897287,51.5053555328498,51.5051407682212]}],[{&#34;lng&#34;:[-0.0385474501049337,-0.039755691374249,-0.0455291940661452,-0.0472785615221955,-0.045045471232483,-0.041599859696853,-0.041749165884606,-0.0385474501049337],&#34;lat&#34;:[51.5096675744744,51.511760167579,51.511760167579,51.5087303137403,51.5094831844576,51.5097844963947,51.5099983234291,51.5096675744744]}]],[[{&#34;lng&#34;:[-0.0274228169629518,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.030726591434547,-0.030414341925475,-0.030023466183913,-0.029079598110489,-0.028014762552448,-0.028871336942393,-0.028143760718811,-0.027766655179323,-0.028090367222714,-0.027221391032602,-0.025796090543241,-0.026997059689067,-0.027394817281454,-0.0274228169629518],&#34;lat&#34;:[51.501760184243,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.5073990925251,51.5072330357934,51.5074440851656,51.5064750025999,51.5067070939011,51.5062916425513,51.5055887759954,51.5056453838808,51.5053558615308,51.5036560406252,51.5031950025858,51.5031117842979,51.5021760614463,51.501760184243]}]],[[{&#34;lng&#34;:[-0.00245747299773418,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159,-0.0108881779147678,-0.00757026152253606,-0.006706947854885,-0.005520258865673,-0.00574917280702,-0.005358499779218,-0.002794583857621,-0.00245747299773418],&#34;lat&#34;:[51.5071578010778,51.511760167579,51.511760167579,51.506760167579,51.501760167579,51.5017602022172,51.5038549732069,51.504830309729,51.5050976763394,51.5050352839588,51.5070240012792,51.5071578010778]}]],[[{&#34;lng&#34;:[0.00492313538607785,0.0064323301609211,0.00812035515609744,0.005145828326669,0.00492313538607785],&#34;lat&#34;:[51.5043743153177,51.501760167579,51.5017601968985,51.5043066963392,51.5043743153177]}],[{&#34;lng&#34;:[0.0135084355064664,0.0150925841987655,0.0122058328528174,0.00766092553547773,0.006544092670487,0.009913219266262,0.010517833013436,0.009680625678618,0.012043045897821,0.013403048952661,0.013107673477487,0.0135084355064664],&#34;lat&#34;:[51.504016486183,51.506760167579,51.511760167579,51.5117601913164,51.5100255228612,51.5091377935364,51.5085644948675,51.5067982855549,51.5052416129376,51.5049080178134,51.5044175870477,51.504016486183]}],[{&#34;lng&#34;:[0.00678407519108414,0.0064323301609211,0.00444029372326278,0.005834041926233,0.008678453063175,0.009062250515304,0.008886058807061,0.006380621762264,0.005599471795797,0.00678407519108414],&#34;lat&#34;:[51.5117601756861,51.511760167579,51.5083099841973,51.5081986375316,51.5073073556926,51.5077441162379,51.508882010396,51.5093556563377,51.5099112884466,51.5117601756861]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879875,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879875,0.0555071030420393],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[0.0825553198819298,0.0814878651555724,0.0757143624636762,0.0728276111177281,0.0753957372967496,0.076750279948618,0.076285162671194,0.076908808606815,0.077780300240358,0.07703663209005,0.078054056700171,0.080243362151698,0.081078382991085,0.0825553198819298],&#34;lat&#34;:[51.5099114178888,51.511760167579,51.511760167579,51.506760167579,51.5023120999086,51.5035236532218,51.5038160301637,51.5038094987275,51.5045629427354,51.5049097263111,51.5051651050811,51.5083070351418,51.5086051469368,51.5099114178888]}]],[[{&#34;lng&#34;:[0.090897466527372,0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.100019353392192,0.097317076924756,0.094590300905576,0.092024725969323,0.090897466527372],&#34;lat&#34;:[51.50805818751,51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.5096628306647,51.5094903216387,51.5089536270897,51.5090075080366,51.50805818751]}]],[[{&#34;lng&#34;:[0.109145730404976,0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.116700651180514,0.11348836407985,0.109145730404976],&#34;lat&#34;:[51.5096651376277,51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.51076992589,51.5101523339436,51.5096651376277]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[0.142893401636619,0.142109643420483,0.144996394766431,0.150769897458328,0.153396505570836,0.152591436186076,0.151267590726345,0.149937392743031,0.149558608795199,0.148052578986409,0.148025578855894,0.147426031536915,0.14390103238358,0.142893401636619],&#34;lat&#34;:[51.5081177921714,51.506760167579,51.501760167579,51.501760167579,51.5063096341695,51.5063933972006,51.5062819085963,51.5063710410663,51.5058545991766,51.5064028745257,51.5068098595681,51.5066239029986,51.5077243793185,51.5081177921714]}]],[[{&#34;lng&#34;:[0.160119066002729,0.16231690284212,0.168090405534016,0.168118629246086,0.166699754660998,0.164402373404431,0.160119066002729],&#34;lat&#34;:[51.5055670387689,51.501760167579,51.501760167579,51.501809058137,51.5033358726114,51.5045420065987,51.5055670387689]}],[{&#34;lng&#34;:[0.169450435075864,0.168090405534016,0.163677356355917,0.163770846157978,0.164850972541969,0.165225718186201,0.166223122378728,0.169450435075864],&#34;lat&#34;:[51.5094046728637,51.511760167579,51.5117601931014,51.5116499470814,51.5116938565091,51.5111176918701,51.5106640309329,51.5094046728637]}],[{&#34;lng&#34;:[0.162971138372347,0.16231690284212,0.162246386987301,0.162469719942222,0.162971138372347],&#34;lat&#34;:[51.5117601818167,51.511760167579,51.5116380444559,51.5116262736786,51.5117601818167]}]],[[{&#34;lng&#34;:[0.180223925111922,0.185410913609705,0.188297664955653,0.185410913609705,0.179637410917809,0.176750659571861,0.177094987938383,0.178550737238397,0.180231388239871,0.180223925111922],&#34;lat&#34;:[51.5017601805128,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579,51.5061638347075,51.5052818070875,51.5022118500956,51.5017601805128]}]],[[{&#34;lng&#34;:[0.19407116764755,0.196957918993498,0.202731421685394,0.205618173031342,0.202731421685394,0.196957918993498,0.19407116764755],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[0.211391675723238,0.214278427069186,0.220051929761083,0.222938681107031,0.220051929761083,0.214278427069186,0.211391675723238],&#34;lat&#34;:[51.506760167579,51.501760167579,51.501760167579,51.506760167579,51.511760167579,51.511760167579,51.506760167579]}]],[[{&#34;lng&#34;:[0.239872596719506,0.237372437836771,0.231598935144875,0.228726295779144,0.228928201663874,0.233413476830424,0.239818600451808,0.239872596719506],&#34;lat&#34;:[51.5074298331224,51.511760167579,51.511760167579,51.5067846130875,51.5068035921157,51.5066697003504,51.5072777531018,51.5074298331224]}]],[[{&#34;lng&#34;:[-0.48320152417211,-0.481428647304313,-0.478541895958365,-0.481428647304313,-0.487202149996209,-0.489852798422898,-0.489806741363795,-0.485556200716023,-0.485837514813762,-0.483532135373006,-0.483996553768977,-0.483232228790287,-0.48320152417211],&#34;lat&#34;:[51.5067601977315,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.5121691537093,51.5115252885624,51.510026340238,51.509800656666,51.5080983681378,51.5076098019809,51.5072366392308,51.5067601977315]}]],[[{&#34;lng&#34;:[-0.472768393266468,-0.46988164192052,-0.464108139228624,-0.461221387882676,-0.464108139228624,-0.46988164192052,-0.472768393266468],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[-0.45544788519078,-0.452561133844831,-0.446787631152935,-0.443900879806987,-0.446787631152935,-0.452561133844831,-0.45544788519078],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[-0.438127377115091,-0.435240625769143,-0.429467123077246,-0.426580371731298,-0.429467123077246,-0.435240625769143,-0.438127377115091],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[-0.420806869039402,-0.417920117693454,-0.412146615001558,-0.409259863655609,-0.412146615001558,-0.417920117693454,-0.420806869039402],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[-0.403486360963713,-0.400599609617765,-0.394826106925869,-0.391939355579921,-0.394826106925869,-0.400599609617765,-0.403486360963713],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[-0.386165852888024,-0.383279101542076,-0.37750559885018,-0.374618847504232,-0.37750559885018,-0.383279101542076,-0.386165852888024],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[-0.368845344812336,-0.365958593466388,-0.360185090774491,-0.357298339428543,-0.360185090774491,-0.365958593466388,-0.368845344812336],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[-0.351524836736647,-0.348638085390699,-0.342864582698802,-0.339977831352854,-0.342864582698803,-0.348638085390699,-0.351524836736647],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[-0.334204328660958,-0.33131757731501,-0.325544074623114,-0.322657323277166,-0.325544074623114,-0.33131757731501,-0.334204328660958],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316883820585269],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[-0.299563312509581,-0.296676561163632,-0.290903058471736,-0.288016307125788,-0.290903058471736,-0.296676561163633,-0.299563312509581],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[-0.282242804433892,-0.279356053087944,-0.273582550396048,-0.270695799050099,-0.273582550396047,-0.279356053087944,-0.282242804433892],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.253375290974411,-0.256262042320359,-0.262035545012255,-0.264922296358203],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[-0.115653884179651,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693,-0.123471480406745,-0.12170260174261,-0.121374777233887,-0.119949989590048,-0.118375265681962,-0.115653884179651],&#34;lat&#34;:[51.5103007621775,51.511760167579,51.516760167579,51.516760167579,51.511760167579,51.506760167579,51.5067601976936,51.5074088227615,51.5087663431147,51.5095621069291,51.5103007621775]}]],[[{&#34;lng&#34;:[-0.107165137939098,-0.106150972331056,-0.10037746963916,-0.0993753712547654,-0.10151143042197,-0.104709131505931,-0.10470221343385,-0.107165137939098],&#34;lat&#34;:[51.5085168870659,51.506760167579,51.506760167579,51.5084959852851,51.508594316143,51.5083870401751,51.5086234363025,51.5085168870659]}],[{&#34;lng&#34;:[-0.0982121008752335,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004,-0.108488993157064,-0.108472254309927,-0.099868233694756,-0.0982121008752335],&#34;lat&#34;:[51.5105108057906,51.511760167579,51.516760167579,51.516760167579,51.511760167579,51.5108098283685,51.5108101258925,51.5107511045206,51.5105108057906]}]],[[{&#34;lng&#34;:[-0.0889145049279578,-0.0888304642553672,-0.0875596061337758,-0.088052447340004,-0.0889145049279578],&#34;lat&#34;:[51.5069057468056,51.506760167579,51.5067601919056,51.5068262538211,51.5069057468056]}],[{&#34;lng&#34;:[-0.0820991574015864,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153,-0.0902120477396438,-0.088602943138333,-0.085459393735272,-0.0820991574015864],&#34;lat&#34;:[51.5084192625636,51.511760167579,51.516760167579,51.516760167579,51.511760167579,51.5091532861396,51.5089260117117,51.5085941575955,51.5084192625636]}]],[[{&#34;lng&#34;:[-0.0743967075256265,-0.0715099561796784,-0.0657364534877822,-0.062849702141834,-0.0657364534877822,-0.0715099561796784,-0.0743967075256265],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[-0.0472785615221955,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377,-0.0541894481039896,-0.0512189829124197,-0.049398735619796,-0.049727242726283,-0.0472785615221955],&#34;lat&#34;:[51.5087303137403,51.511760167579,51.516760167579,51.516760167579,51.511760167579,51.506760167579,51.5067602029763,51.507600661206,51.5079046807195,51.5087303137403]}]],[[{&#34;lng&#34;:[-0.0370930647742871,-0.0368689400283009,-0.0353924166691904,-0.035649114333846,-0.0370930647742871],&#34;lat&#34;:[51.5071484048598,51.506760167579,51.5067601945515,51.506876580364,51.5071484048598]}],[{&#34;lng&#34;:[-0.030726591434547,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249,-0.0385474501049337,-0.037480818391237,-0.033158657331441,-0.032663029108494,-0.031598046251679,-0.02991323389341,-0.031566755496903,-0.030726591434547],&#34;lat&#34;:[51.5073990925251,51.511760167579,51.516760167579,51.516760167579,51.511760167579,51.5096675744744,51.5095573670946,51.508592900976,51.508222197998,51.5081908284413,51.5088630815791,51.5078458882203,51.5073990925251]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[0.00512322451532497,0.00354557881497297,0.00112869747948984,0.003581759610553,0.004469615368407,0.002676969499883,0.003578076115892,0.003914469950965,0.004195544088575,0.004686293144878,0.00512322451532497],&#34;lat&#34;:[51.5140277498688,51.516760167579,51.5167602020648,51.5155895760583,51.5147047911776,51.5108659110835,51.5109413159445,51.5112835947916,51.5132230017739,51.513764067365,51.5140277498688]}],[{&#34;lng&#34;:[-0.000261525327648892,-0.00222792387692328,-0.0051146752228714,-0.00245747299773418,-0.001743081054735,0.003059582166672,0.00342953106799,0.00370013551257,0.00444029372326278,0.0064323301609211,0.00547164193988435,0.004306485468941,0.002488047931397,0.00138410363112,0.003626370434349,0.002743539547048,-0.000261525327648892],&#34;lat&#34;:[51.5167601994025,51.516760167579,51.511760167579,51.5071578010778,51.5074413385054,51.5082218026729,51.5079816609296,51.5083691085657,51.5083099841973,51.511760167579,51.5134242581178,51.5105619658305,51.5104365767139,51.5109949472404,51.5145384740373,51.5154735095243,51.5167601994025]}]],[[{&#34;lng&#34;:[0.0122058328528174,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528174],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879875,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[0.0893562647932921,0.0901481191934168,0.090897466527372,0.0893562647932921],&#34;lat&#34;:[51.5067601843491,51.506760167579,51.50805818751,51.5067601843491]}],[{&#34;lng&#34;:[0.0912882344062672,0.0901481191934168,0.0843746165015206,0.0814878651555724,0.0825553198819298,0.082572545306214,0.083717618827976,0.083369829733274,0.084553148595902,0.088231476238744,0.090502272948596,0.090301603189844,0.0912882344062672],&#34;lat&#34;:[51.5147855697172,51.516760167579,51.516760167579,51.511760167579,51.5099114178888,51.5099266522954,51.5109863346615,51.511544698612,51.5122098045224,51.5137136044139,51.5142819666847,51.514716285593,51.5147855697172]}]],[[{&#34;lng&#34;:[0.100019353392192,0.101695124577209,0.107468627269106,0.109145730404976,0.106878175520347,0.100243904517428,0.100019353392192],&#34;lat&#34;:[51.5096628306647,51.506760167579,51.506760167579,51.5096651376277,51.5094106747442,51.5096771627982,51.5096628306647]}],[{&#34;lng&#34;:[0.108927441041635,0.107468627269106,0.101695124577209,0.100435427138495,0.100481868216042,0.106680559249143,0.108927441041635],&#34;lat&#34;:[51.5142335740521,51.516760167579,51.516760167579,51.5145784513093,51.5145685765313,51.5139366976536,51.5142335740521]}]],[[{&#34;lng&#34;:[0.116700651180514,0.119015632652898,0.124789135344794,0.127675886690743,0.126862824275273,0.125145023601442,0.12021088366742,0.116700651180514],&#34;lat&#34;:[51.51076992589,51.506760167579,51.506760167579,51.511760167579,51.5131685512028,51.5130442027761,51.5114446811373,51.51076992589]}]],[[{&#34;lng&#34;:[0.14282034870312,0.142109643420483,0.140674364920555,0.14282034870312],&#34;lat&#34;:[51.5155292983448,51.516760167579,51.5167601940475,51.5155292983448]}],[{&#34;lng&#34;:[0.133470182482857,0.133449389382639,0.136336140728587,0.142109643420483,0.142893401636619,0.133470182482857],&#34;lat&#34;:[51.5117961864632,51.511760167579,51.506760167579,51.506760167579,51.5081177921714,51.5117961864632]}]],[[{&#34;lng&#34;:[0.162246386987301,0.16231690284212,0.159430151496172,0.153656648804276,0.151376266202269,0.158262929348731,0.158692850293373,0.159534342797951,0.159426164263662,0.15989784675389,0.162246386987301],&#34;lat&#34;:[51.5116380444559,51.511760167579,51.516760167579,51.516760167579,51.512810525999,51.5119627482046,51.5121859828658,51.5123350310495,51.5119368494589,51.5117617983691,51.5116380444559]}]],[[{&#34;lng&#34;:[0.176110693905354,0.176750659571861,0.179637410917809,0.176750659571861,0.170977156879964,0.168090405534016,0.169450435075864,0.172099255382148,0.173756419233325,0.176110693905354],&#34;lat&#34;:[51.5067601815456,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579,51.5094046728637,51.5083709352021,51.5081864515404,51.5067601815456]}]],[[{&#34;lng&#34;:[0.185410913609705,0.188297664955653,0.19407116764755,0.196957918993498,0.194071167647549,0.188297664955653,0.185410913609705],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[0.202731421685394,0.205618173031342,0.211391675723238,0.214278427069186,0.211391675723238,0.205618173031342,0.202731421685394],&#34;lat&#34;:[51.511760167579,51.506760167579,51.506760167579,51.511760167579,51.516760167579,51.516760167579,51.511760167579]}]],[[{&#34;lng&#34;:[0.228726295779144,0.231598935144875,0.228712183798927,0.222938681107031,0.220051929761083,0.222938681107031,0.228466302613459,0.228726295779144],&#34;lat&#34;:[51.5067846130875,51.511760167579,51.516760167579,51.516760167579,51.511760167579,51.506760167579,51.506760173357,51.5067846130875]}]],[[{&#34;lng&#34;:[0.239682367340942,0.237372437836771,0.239872596719506,0.239970835138861,0.241891202742022,0.241474202803856,0.240573628203838,0.240278855624072,0.239946261053013,0.241114375095007,0.239682367340942],&#34;lat&#34;:[51.5157611762554,51.511760167579,51.5074298331224,51.507706518113,51.5079593997085,51.5106203054148,51.5105062167674,51.5107546668692,51.5130524144692,51.5137423431709,51.5157611762554]}]],[[{&#34;lng&#34;:[-0.489852798422898,-0.487202149996209,-0.490088901342157,-0.4909327700019,-0.491193681766567,-0.490387167434199,-0.49166563790284,-0.492349996714514,-0.491219695028513,-0.489581146073214,-0.489941754744061,-0.489852798422898],&#34;lat&#34;:[51.5121691537093,51.516760167579,51.521760167579,51.5217601852619,51.5212780382522,51.5201679026813,51.5188589005643,51.5170755919268,51.5152554362765,51.5140761186876,51.5134126872866,51.5121691537093]}]],[[{&#34;lng&#34;:[-0.481428647304313,-0.478541895958365,-0.472768393266468,-0.46988164192052,-0.472768393266468,-0.478541895958365,-0.481428647304313],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.464108139228624,-0.461221387882676,-0.45544788519078,-0.452561133844831,-0.45544788519078,-0.461221387882676,-0.464108139228624],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.446787631152935,-0.443900879806987,-0.438127377115091,-0.435240625769143,-0.438127377115091,-0.443900879806987,-0.446787631152935],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.429467123077246,-0.426580371731298,-0.420806869039402,-0.417920117693454,-0.420806869039402,-0.426580371731298,-0.429467123077246],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.412146615001558,-0.409259863655609,-0.403486360963713,-0.400599609617765,-0.403486360963713,-0.40925986365561,-0.412146615001558],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.394826106925869,-0.391939355579921,-0.386165852888024,-0.383279101542076,-0.386165852888024,-0.391939355579921,-0.394826106925869],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.37750559885018,-0.374618847504232,-0.368845344812336,-0.365958593466388,-0.368845344812336,-0.374618847504232,-0.37750559885018],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.360185090774491,-0.357298339428543,-0.351524836736647,-0.348638085390699,-0.351524836736647,-0.357298339428543,-0.360185090774491],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.342864582698803,-0.339977831352854,-0.334204328660958,-0.33131757731501,-0.334204328660958,-0.339977831352854,-0.342864582698803],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.325544074623114,-0.322657323277166,-0.316883820585269,-0.313997069239321,-0.316883820585269,-0.322657323277166,-0.325544074623114],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163633,-0.299563312509581,-0.305336815201477,-0.308223566547425],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.273582550396047,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.273582550396047],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.256262042320359,-0.253375290974411,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.253375290974411,-0.256262042320359],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256265,-0.0715099561796784,-0.0743967075256266,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.062849702141834,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.062849702141834,-0.0657364534877822],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[-0.00301388382338607,-0.0051146752228714,-0.00798714710729914,-0.008635399522392,-0.008515460232001,-0.006419194404182,-0.005163304005307,-0.004024694637374,-0.00301388382338607],&#34;lat&#34;:[51.5181216059219,51.521760167579,51.521760203001,51.520829033201,51.5200104626884,51.5187977118809,51.5169265760855,51.517981816508,51.5181216059219]}],[{&#34;lng&#34;:[-0.00931450276314202,-0.0108881779147678,-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.00278299295708934,-0.003382280797579,-0.004315434972013,-0.005318432828804,-0.00602988803016,-0.006666038253301,-0.00919668608168,-0.00931450276314202],&#34;lat&#34;:[51.5217601956728,51.521760167579,51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.5177216661846,51.5176084912909,51.5164076558265,51.5162142860196,51.516457479942,51.5182281728806,51.5198583745108,51.5217601956728]}]],[[{&#34;lng&#34;:[0.00547164193988435,0.0064323301609211,0.00678407519108414,0.007357144292309,0.006738155839893,0.006046658575933,0.005497067545241,0.00547164193988435],&#34;lat&#34;:[51.5134242581178,51.511760167579,51.5117601756861,51.5126545436077,51.5138521682686,51.5138909790175,51.5134867138427,51.5134242581178]}],[{&#34;lng&#34;:[0.00766092553547773,0.0122058328528174,0.0150925841987655,0.0122058328528173,0.0064323301609211,0.00354557881497297,0.00512322451532497,0.005913656828197,0.007143324692232,0.008056352909844,0.008199114693924,0.00766092553547773],&#34;lat&#34;:[51.5117601913164,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579,51.5140277498688,51.5145047537979,51.5143794019164,51.5134123499352,51.5125960575241,51.5117601913164]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879875,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879874,0.0555071030420393],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[0.0728276111177281,0.0757143624636762,0.0814878651555724,0.0843746165015206,0.0814878651555724,0.0757143624636762,0.0728276111177281],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[0.100435427138495,0.101695124577209,0.0988083732312612,0.0940116182609273,0.095669512460401,0.095255968322091,0.095568337263082,0.099345727712374,0.100435427138495],&#34;lat&#34;:[51.5145784513093,51.516760167579,51.521760167579,51.5217601874946,51.5205674293796,51.5188751661523,51.5169829057362,51.514810147882,51.5145784513093]}],[{&#34;lng&#34;:[0.0929382337974856,0.0901481191934168,0.0912882344062672,0.094468834294604,0.095714157379389,0.096762723898069,0.09479211515068,0.094008063011717,0.094410271862235,0.0929382337974856],&#34;lat&#34;:[51.5215928067381,51.516760167579,51.5147855697172,51.5150088629481,51.5154488333484,51.515150406877,51.5163366993126,51.5182553740136,51.5203300196315,51.5215928067381]}]],[[{&#34;lng&#34;:[0.118407735977928,0.11612888130695,0.110355378615054,0.107468627269106,0.108927441041635,0.109047177887384,0.114448256934709,0.114342085308452,0.118407735977928],&#34;lat&#34;:[51.5178131726484,51.521760167579,51.521760167579,51.516760167579,51.5142335740521,51.5142493933502,51.5156934988,51.5160164630996,51.5178131726484]}]],[[{&#34;lng&#34;:[0.126862824275273,0.127675886690743,0.133449389382639,0.133470182482857,0.13077121085181,0.128592604302682,0.126862824275273],&#34;lat&#34;:[51.5131685512028,51.511760167579,51.511760167579,51.5117961864632,51.5128494931997,51.5132937407558,51.5131685512028]}],[{&#34;lng&#34;:[0.135238936700425,0.133449389382639,0.127675886690743,0.126338201555921,0.132329162304677,0.133133060016034,0.135238936700425],&#34;lat&#34;:[51.5186607183873,51.521760167579,51.521760167579,51.5194433742639,51.5187744501434,51.5190421871748,51.5186607183873]}]],[[{&#34;lng&#34;:[0.151376266202269,0.153656648804276,0.150769897458328,0.144996394766431,0.142109643420483,0.14282034870312,0.14317831671613,0.143883026399078,0.144325915745515,0.145508149616039,0.145796899913883,0.145143334556839,0.151367676387167,0.151376266202269],&#34;lat&#34;:[51.512810525999,51.516760167579,51.521760167579,51.521760167579,51.516760167579,51.5155292983448,51.5153239643795,51.5148299669109,51.515454045792,51.5151545602353,51.5145818564221,51.5145982885166,51.5128115831706,51.512810525999]}]],[[{&#34;lng&#34;:[0.163677356355917,0.168090405534016,0.170977156879964,0.168090405534016,0.16231690284212,0.159430151496172,0.16231690284212,0.162971138372347,0.163546962124174,0.163677356355917],&#34;lat&#34;:[51.5117601931014,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579,51.511760167579,51.5117601818167,51.5119139569329,51.5117601931014]}]],[[{&#34;lng&#34;:[0.176750659571861,0.179637410917809,0.185410913609705,0.188297664955653,0.185410913609705,0.179637410917809,0.176750659571861],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[0.194071167647549,0.196957918993498,0.202731421685394,0.205618173031342,0.202731421685394,0.196957918993498,0.194071167647549],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[0.211391675723238,0.214278427069186,0.220051929761083,0.222938681107031,0.220051929761083,0.214278427069186,0.211391675723238],&#34;lat&#34;:[51.516760167579,51.511760167579,51.511760167579,51.516760167579,51.521760167579,51.521760167579,51.516760167579]}]],[[{&#34;lng&#34;:[0.238768300297523,0.237372437836771,0.231598935144875,0.228712183798927,0.231598935144875,0.237372437836771,0.239682367340942,0.237148095904155,0.238768300297523],&#34;lat&#34;:[51.5193426088048,51.521760167579,51.521760167579,51.516760167579,51.511760167579,51.511760167579,51.5157611762554,51.5193334906008,51.5193426088048]}]],[[{&#34;lng&#34;:[0.256974232379334,0.25469294591246,0.252963576818204,0.253806272751613,0.256974232379334],&#34;lat&#34;:[51.517808960369,51.521760167579,51.5217601973078,51.5178849905946,51.517808960369]}]],[[{&#34;lng&#34;:[-0.490088901342157,-0.487202149996209,-0.481428647304313,-0.478541895958365,-0.481428647304313,-0.487202149996209,-0.490088901342157],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.472768393266468,-0.46988164192052,-0.464108139228624,-0.461221387882676,-0.464108139228624,-0.46988164192052,-0.472768393266468],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.45544788519078,-0.452561133844831,-0.446787631152935,-0.443900879806987,-0.446787631152935,-0.452561133844831,-0.45544788519078],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.438127377115091,-0.435240625769143,-0.429467123077246,-0.426580371731298,-0.429467123077246,-0.435240625769143,-0.438127377115091],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.420806869039402,-0.417920117693454,-0.412146615001558,-0.40925986365561,-0.412146615001558,-0.417920117693454,-0.420806869039402],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.5267601675789,51.521760167579]}]],[[{&#34;lng&#34;:[-0.403486360963713,-0.400599609617765,-0.394826106925869,-0.391939355579921,-0.394826106925869,-0.400599609617765,-0.403486360963713],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.386165852888024,-0.383279101542076,-0.37750559885018,-0.374618847504232,-0.37750559885018,-0.383279101542076,-0.386165852888024],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.5267601675789,51.521760167579]}]],[[{&#34;lng&#34;:[-0.368845344812336,-0.365958593466388,-0.360185090774491,-0.357298339428543,-0.360185090774491,-0.365958593466388,-0.368845344812336],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.5267601675789,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.351524836736647,-0.348638085390699,-0.342864582698803,-0.339977831352854,-0.342864582698802,-0.348638085390699,-0.351524836736647],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.334204328660958,-0.33131757731501,-0.325544074623114,-0.322657323277166,-0.325544074623114,-0.33131757731501,-0.334204328660958],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316883820585269],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.299563312509581,-0.296676561163633,-0.290903058471736,-0.288016307125788,-0.290903058471736,-0.296676561163632,-0.299563312509581],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.282242804433892,-0.279356053087944,-0.273582550396047,-0.270695799050099,-0.273582550396048,-0.279356053087944,-0.282242804433892],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.253375290974411,-0.256262042320359,-0.262035545012255,-0.264922296358203],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.5267601675789,51.521760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256266,-0.0715099561796784,-0.0657364534877822,-0.062849702141834,-0.0657364534877822,-0.0715099561796784,-0.0743967075256266],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[-0.00278299295708934,-0.00222792387692328,-0.000261525327648892,-0.002591659102683,-0.00278299295708934],&#34;lat&#34;:[51.5177216661846,51.516760167579,51.5167601994025,51.5177577986252,51.5177216661846]}],[{&#34;lng&#34;:[0.00112869747948984,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714,-0.00301388382338607,-0.00242082107813,-0.002643057558201,0.00112869747948984],&#34;lat&#34;:[51.5167602020648,51.516760167579,51.521760167579,51.5267601675789,51.526760167579,51.521760167579,51.5181216059219,51.5182036186997,51.5185599044569,51.5167602020648]}]],[[{&#34;lng&#34;:[0.0122058328528173,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528173],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879874,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[0.0905315422480566,0.0901481191934168,0.0890383010260266,0.090482226666448,0.0905315422480566],&#34;lat&#34;:[51.5260961266816,51.526760167579,51.5267601895792,51.5260889344324,51.5260961266816]}],[{&#34;lng&#34;:[0.0884789872791307,0.0843746165015205,0.0842839410331946,0.085839670033617,0.0884789872791307],&#34;lat&#34;:[51.5267601966985,51.526760167579,51.5266031308413,51.5260474940081,51.5267601966985]}],[{&#34;lng&#34;:[0.0839771622835064,0.0814878651555724,0.0843746165015206,0.0901481191934168,0.0929382337974856,0.091734840540415,0.091808380081132,0.090781104991314,0.0917479660275922,0.0908274807260187,0.089983699840094,0.088805147547712,0.086366019255125,0.085197025745982,0.0839771622835064],&#34;lat&#34;:[51.526071826066,51.521760167579,51.516760167579,51.516760167579,51.5215928067381,51.5226250713231,51.523505943902,51.5239901057231,51.5239892959725,51.5255835840582,51.5255600368117,51.5262519148517,51.5256100801125,51.5256128752485,51.526071826066]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[0.126338201555921,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695,0.118407735977928,0.119161396506076,0.122442334692012,0.126317990050487,0.126338201555921],&#34;lat&#34;:[51.5194433742639,51.521760167579,51.5267601675789,51.526760167579,51.521760167579,51.5178131726484,51.5181462024858,51.5189897615294,51.5194456304413,51.5194433742639]}]],[[{&#34;lng&#34;:[0.140674364920555,0.142109643420483,0.144996394766431,0.142109643420483,0.136336140728587,0.133449389382639,0.135238936700425,0.136317561625995,0.139492491703014,0.140674364920555],&#34;lat&#34;:[51.5167601940475,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579,51.5186607183873,51.5184653139243,51.5174380490414,51.5167601940475]}]],[[{&#34;lng&#34;:[0.150769897458328,0.153656648804276,0.159430151496172,0.16231690284212,0.159430151496172,0.153656648804276,0.150769897458328],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[0.168090405534016,0.170977156879964,0.176750659571861,0.179637410917809,0.176750659571861,0.170977156879964,0.168090405534016],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[0.185410913609705,0.188297664955653,0.194071167647549,0.196957918993498,0.19407116764755,0.188297664955653,0.185410913609705],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[0.202731421685394,0.205618173031342,0.211391675723238,0.214278427069186,0.211391675723238,0.205618173031342,0.202731421685394],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[0.220051929761083,0.222938681107031,0.228712183798927,0.231598935144875,0.228712183798927,0.222938681107031,0.220051929761083],&#34;lat&#34;:[51.521760167579,51.516760167579,51.516760167579,51.521760167579,51.526760167579,51.526760167579,51.521760167579]}]],[[{&#34;lng&#34;:[0.247024058332842,0.246032691874616,0.240259189182719,0.237372437836771,0.238768300297523,0.240167370054453,0.243908555526345,0.244877801572375,0.244200520544209,0.244637697185743,0.244271534254004,0.240696665999123,0.241010424066163,0.242828094090693,0.245809507185097,0.247024058332842],&#34;lat&#34;:[51.5250432022844,51.526760167579,51.526760167579,51.521760167579,51.5193426088048,51.5193504645458,51.5183364727902,51.5187585833505,51.5197590076722,51.5201490142089,51.5204707793929,51.5212064260151,51.5226051148768,51.524391436811,51.5235151475743,51.5250432022844]}]],[[{&#34;lng&#34;:[0.265570450914936,0.263353199950305,0.257579697258408,0.25469294591246,0.256974232379334,0.258900020979284,0.260274981112483,0.262279791370583,0.263654830672215,0.264007406911704,0.264981246766331,0.265570450914936],&#34;lat&#34;:[51.522919880367,51.526760167579,51.526760167579,51.521760167579,51.517808960369,51.5177627001092,51.5183702265873,51.5179295658338,51.5178688668055,51.521083369697,51.5229000349755,51.522919880367]}]],[[{&#34;lng&#34;:[-0.4909327700019,-0.490088901342157,-0.487202149996209,-0.490059289141214,-0.489686583011053,-0.488998007683217,-0.490878603858717,-0.490277174973217,-0.490542749733266,-0.4909327700019],&#34;lat&#34;:[51.5217601852619,51.521760167579,51.526760167579,51.5317088836768,51.5300610469783,51.5286071430789,51.5262322398217,51.5245834448385,51.5224808957978,51.5217601852619]}]],[[{&#34;lng&#34;:[-0.481428647304313,-0.478541895958365,-0.472768393266468,-0.46988164192052,-0.472768393266468,-0.478541895958365,-0.481428647304313],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.464108139228624,-0.461221387882676,-0.45544788519078,-0.452561133844831,-0.45544788519078,-0.461221387882676,-0.464108139228624],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.446787631152935,-0.443900879806987,-0.438127377115091,-0.435240625769143,-0.438127377115091,-0.443900879806987,-0.446787631152935],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.429467123077246,-0.426580371731298,-0.420806869039402,-0.417920117693454,-0.420806869039402,-0.426580371731298,-0.429467123077246],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.5267601675789,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.412146615001558,-0.40925986365561,-0.403486360963713,-0.400599609617765,-0.403486360963713,-0.40925986365561,-0.412146615001558],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.394826106925869,-0.391939355579921,-0.386165852888024,-0.383279101542076,-0.386165852888024,-0.391939355579921,-0.394826106925869],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.5267601675789,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.37750559885018,-0.374618847504232,-0.368845344812336,-0.365958593466388,-0.368845344812336,-0.374618847504232,-0.37750559885018],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.360185090774491,-0.357298339428543,-0.351524836736647,-0.348638085390699,-0.351524836736647,-0.357298339428543,-0.360185090774491],&#34;lat&#34;:[51.5267601675789,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.5267601675789]}]],[[{&#34;lng&#34;:[-0.342864582698802,-0.339977831352854,-0.334204328660958,-0.33131757731501,-0.334204328660958,-0.339977831352854,-0.342864582698802],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.325544074623114,-0.322657323277166,-0.316883820585269,-0.313997069239321,-0.316883820585269,-0.322657323277166,-0.325544074623114],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163632,-0.299563312509581,-0.305336815201477,-0.308223566547425],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.273582550396048,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.273582550396048],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.256262042320359,-0.253375290974411,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.253375290974411,-0.256262042320359],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.5267601675789,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256266,-0.0715099561796784,-0.0743967075256266,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.062849702141834,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.062849702141834,-0.0657364534877822],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[-0.00798714710729914,-0.0051146752228714,-0.00222792387692328,-0.00234381598373978,-0.006359158490986,-0.006471834738517,-0.00709982992148,-0.007206725818786,-0.00798714710729914],&#34;lat&#34;:[51.521760203001,51.521760167579,51.526760167579,51.5269609211221,51.5259170726718,51.5256789044943,51.5244369017469,51.5228811690002,51.521760203001]}],[{&#34;lng&#34;:[-0.0024437637123629,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159,-0.0108881779147678,-0.00931450276314202,-0.00931680865063,-0.008585902211204,-0.007852857844532,-0.007105248009987,-0.006888762765231,-0.007951591195904,-0.006964570424511,-0.006589267905117,-0.005955928651091,-0.004549639277425,-0.004062543685974,-0.003666768841575,-0.0024437637123629],&#34;lat&#34;:[51.5271340535796,51.531760167579,51.531760167579,51.526760167579,51.521760167579,51.5217601956728,51.5217974161981,51.5217985083177,51.5231043820736,51.5255349660272,51.5260348804835,51.5272165916217,51.5271054009657,51.5263562312447,51.526236658609,51.5265481704881,51.5271046200906,51.5268910439815,51.5271340535796]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528173,0.0150925841987655,0.0122058328528173,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.5267601675789,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.5267601675789]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879874,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879875,0.0555071030420393],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[0.0842839410331946,0.0843746165015205,0.0814878651555724,0.0757143624636762,0.0756220801247154,0.076339512154612,0.078090309595255,0.0809214965642,0.0842839410331946],&#34;lat&#34;:[51.5266031308413,51.526760167579,51.531760167579,51.531760167579,51.5316003479675,51.5299210734874,51.5297102054904,51.5278039290341,51.5266031308413]}],[{&#34;lng&#34;:[0.074387933215038,0.0728276111177281,0.0757143624636762,0.0814878651555724,0.0839771622835064,0.080111608252698,0.078826644990166,0.077990757384001,0.07754590969625,0.078018056834667,0.078471274825753,0.07763635163094,0.07518541256,0.074387933215038],&#34;lat&#34;:[51.5294628699031,51.526760167579,51.521760167579,51.521760167579,51.526071826066,51.5275260238246,51.5284345693091,51.5284736735496,51.5288673379616,51.5286296620382,51.5288302611483,51.5291750888611,51.5295233366894,51.5294628699031]}],[{&#34;lng&#34;:[0.0752702529518791,0.0745020001014031,0.075459097182157,0.075487350286284,0.0752702529518791],&#34;lat&#34;:[51.5309910234313,51.5296604367611,51.5298683094643,51.5298237373041,51.5309910234313]}]],[[{&#34;lng&#34;:[0.0908274807260187,0.0917479660275922,0.092104440509236,0.092049353801695,0.0908274807260187],&#34;lat&#34;:[51.5255835840582,51.5239892959725,51.5239889954183,51.5256176718862,51.5255835840582]}],[{&#34;lng&#34;:[0.0940116182609273,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168,0.0905315422480566,0.09143288105051,0.092030953285476,0.093090087790943,0.092804653680567,0.0940116182609273],&#34;lat&#34;:[51.5217601874946,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579,51.5260961266816,51.5262275750729,51.526663839095,51.5251116740705,51.5226284740704,51.5217601874946]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.5267601675789,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.5267601675789]}]],[[{&#34;lng&#34;:[0.142109643420483,0.144996394766431,0.150769897458328,0.153656648804276,0.150769897458328,0.144996394766431,0.142109643420483],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[0.159430151496172,0.16231690284212,0.168090405534016,0.170977156879964,0.168090405534016,0.16231690284212,0.159430151496172],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[0.176750659571861,0.179637410917809,0.185410913609705,0.188297664955653,0.185410913609705,0.179637410917809,0.176750659571861],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[0.19407116764755,0.196957918993498,0.202731421685394,0.205618173031342,0.202731421685394,0.196957918993498,0.19407116764755],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[0.211391675723238,0.214278427069186,0.220051929761083,0.222938681107031,0.220051929761083,0.214278427069186,0.211391675723238],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[0.228712183798927,0.231598935144875,0.237372437836771,0.240259189182719,0.237372437836771,0.231598935144875,0.228712183798927],&#34;lat&#34;:[51.526760167579,51.521760167579,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579]}]],[[{&#34;lng&#34;:[0.252963576818204,0.25469294591246,0.257579697258408,0.25469294591246,0.248919443220564,0.246032691874616,0.247024058332842,0.247062038506515,0.246296771319802,0.248262981335502,0.248854325776988,0.248936820152002,0.250824023746611,0.251508199349117,0.252304837992882,0.252963576818204],&#34;lat&#34;:[51.5217601973078,51.521760167579,51.526760167579,51.531760167579,51.531760167579,51.526760167579,51.5250432022844,51.5250909841579,51.5265310393187,51.5275500376125,51.5274083032573,51.5286729330247,51.5288174986021,51.5259697819351,51.5247889986827,51.5217601973078]}]],[[{&#34;lng&#34;:[0.26532996817752,0.263353199950305,0.265570450914936,0.266610067839283,0.26672341461475,0.265642736649927,0.265358581106698,0.26532996817752],&#34;lat&#34;:[51.5301841567596,51.526760167579,51.522919880367,51.522954889182,51.5245120870791,51.5246094213109,51.5249548272104,51.5301841567596]}]],[[{&#34;lng&#34;:[-0.490059289141214,-0.487202149996209,-0.481428647304313,-0.478541895958365,-0.481428647304313,-0.487202149996209,-0.490075959661838,-0.490059289141214],&#34;lat&#34;:[51.5317088836768,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.5317825858362,51.5317088836768]}]],[[{&#34;lng&#34;:[-0.472768393266468,-0.46988164192052,-0.464108139228624,-0.461221387882676,-0.464108139228624,-0.46988164192052,-0.472768393266468],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[-0.45544788519078,-0.452561133844831,-0.446787631152935,-0.443900879806987,-0.446787631152935,-0.452561133844831,-0.45544788519078],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[-0.438127377115091,-0.435240625769143,-0.429467123077246,-0.426580371731298,-0.429467123077246,-0.435240625769143,-0.438127377115091],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[-0.420806869039402,-0.417920117693454,-0.412146615001558,-0.40925986365561,-0.412146615001558,-0.417920117693454,-0.420806869039402],&#34;lat&#34;:[51.531760167579,51.5267601675789,51.526760167579,51.531760167579,51.5367601675789,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[-0.403486360963713,-0.400599609617765,-0.394826106925869,-0.391939355579921,-0.394826106925869,-0.400599609617765,-0.403486360963713],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.5367601675789,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[-0.386165852888024,-0.383279101542076,-0.37750559885018,-0.374618847504232,-0.37750559885018,-0.383279101542076,-0.386165852888024],&#34;lat&#34;:[51.531760167579,51.5267601675789,51.526760167579,51.531760167579,51.536760167579,51.5367601675789,51.531760167579]}]],[[{&#34;lng&#34;:[-0.368845344812336,-0.365958593466388,-0.360185090774491,-0.357298339428543,-0.360185090774491,-0.365958593466388,-0.368845344812336],&#34;lat&#34;:[51.531760167579,51.526760167579,51.5267601675789,51.531760167579,51.536760167579,51.5367601675789,51.531760167579]}]],[[{&#34;lng&#34;:[-0.351524836736647,-0.348638085390699,-0.342864582698802,-0.339977831352854,-0.342864582698802,-0.348638085390699,-0.351524836736647],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.5367601675789,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[-0.334204328660958,-0.33131757731501,-0.325544074623114,-0.322657323277166,-0.325544074623114,-0.33131757731501,-0.334204328660958],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316883820585269],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[-0.299563312509581,-0.296676561163632,-0.290903058471736,-0.288016307125788,-0.290903058471736,-0.296676561163632,-0.299563312509581],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[-0.282242804433892,-0.279356053087944,-0.273582550396048,-0.270695799050099,-0.273582550396047,-0.279356053087944,-0.282242804433892],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.5367601675789,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.253375290974411,-0.256262042320359,-0.262035545012255,-0.264922296358203],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.5367601675789,51.531760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.531760167579,51.5267601675789,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256266,-0.0715099561796784,-0.0657364534877822,-0.062849702141834,-0.0657364534877822,-0.0715099561796784,-0.0743967075256266],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[-0.00234381598373978,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714,-0.0024437637123629,-0.002324451603273,-0.000768629986415,0.001112939284203,0.001789244047627,0.000865103067024,0.000670250629814,-0.002086497063647,-0.00234381598373978],&#34;lat&#34;:[51.5269609211221,51.526760167579,51.5267601675789,51.531760167579,51.536760167579,51.536760167579,51.531760167579,51.5271340535796,51.5271577599277,51.5281501054226,51.5310469509259,51.5303276845292,51.529210367698,51.5282838561899,51.527027808726,51.5269609211221]}]],[[{&#34;lng&#34;:[0.0122058328528173,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528173],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879875,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[0.0756220801247154,0.0757143624636762,0.0728276111177281,0.0716851311647686,0.073459062266831,0.074373118940715,0.073942846844896,0.075456098537145,0.0756220801247154],&#34;lat&#34;:[51.5316003479675,51.531760167579,51.536760167579,51.5367601900663,51.5342085030584,51.533825435632,51.5332728134776,51.5319888384803,51.5316003479675]}],[{&#34;lng&#34;:[0.0713113512729267,0.0670541084258318,0.0641673570798837,0.0670541084258318,0.0728276111177281,0.074387933215038,0.073165686002032,0.0745020001014031,0.0752702529518791,0.0751618058446,0.072886545679071,0.072919790893462,0.0713113512729267],&#34;lat&#34;:[51.5367601950145,51.536760167579,51.531760167579,51.526760167579,51.526760167579,51.5294628699031,51.5293701853992,51.5296604367611,51.5309910234313,51.53157409786,51.5335081998195,51.5345255820993,51.5367601950145]}]],[[{&#34;lng&#34;:[0.0890383010260266,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0843746165015206,0.0814878651555724,0.0843746165015205,0.0884789872791307,0.088832784582102,0.0890383010260266],&#34;lat&#34;:[51.5267601895792,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579,51.526760167579,51.5267601966985,51.5268557274401,51.5267601895792]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.5367601675789,51.5367601675789,51.531760167579]}]],[[{&#34;lng&#34;:[0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695],&#34;lat&#34;:[51.531760167579,51.526760167579,51.5267601675789,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[0.133449389382639,0.136336140728587,0.142109643420483,0.144996394766431,0.142109643420483,0.136336140728587,0.133449389382639],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[0.150769897458328,0.153656648804276,0.159430151496172,0.16231690284212,0.159430151496172,0.153656648804276,0.150769897458328],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.5367601675789,51.531760167579]}]],[[{&#34;lng&#34;:[0.168090405534016,0.170977156879964,0.176750659571861,0.179637410917809,0.176750659571861,0.170977156879964,0.168090405534016],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.5367601675789,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[0.185410913609705,0.188297664955653,0.19407116764755,0.196957918993498,0.19407116764755,0.188297664955653,0.185410913609705],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[0.202731421685394,0.205618173031342,0.211391675723238,0.214278427069186,0.211391675723238,0.205618173031342,0.202731421685394],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[0.220051929761083,0.222938681107031,0.228712183798927,0.231598935144875,0.228712183798927,0.222938681107031,0.220051929761083],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[0.237372437836771,0.240259189182719,0.246032691874616,0.248919443220564,0.246032691874616,0.240259189182719,0.237372437836771],&#34;lat&#34;:[51.531760167579,51.526760167579,51.526760167579,51.531760167579,51.536760167579,51.536760167579,51.531760167579]}]],[[{&#34;lng&#34;:[0.265951201738903,0.263353199950305,0.257579697258408,0.25469294591246,0.257579697258408,0.263353199950305,0.26532996817752,0.265319215015711,0.265951201738903],&#34;lat&#34;:[51.5322603491143,51.5367601675789,51.536760167579,51.531760167579,51.526760167579,51.526760167579,51.5301841567596,51.5321491055928,51.5322603491143]}]],[[{&#34;lng&#34;:[0.282271550127123,0.280673708025993,0.274900205334097,0.27274053615952,0.27493149312738,0.276196251396873,0.276312080042877,0.281733875437192,0.282271550127123],&#34;lat&#34;:[51.5339927683636,51.536760167579,51.5367601675789,51.5330196210074,51.5329424115901,51.5331777460754,51.5329273012919,51.5339406560965,51.5339927683636]}]],[[{&#34;lng&#34;:[0.29738823921565,0.292220713409786,0.291040285004839,0.297726640066717,0.29738823921565],&#34;lat&#34;:[51.5367601808881,51.536760167579,51.5347157469145,51.5353173183737,51.5367601808881]}]],[[{&#34;lng&#34;:[-0.490075959661838,-0.487202149996209,-0.490088901342157,-0.49189048666167,-0.491827692024735,-0.493605738765898,-0.49551052777739,-0.493349555575942,-0.491616541290526,-0.491228092754857,-0.490502633651079,-0.491209540436346,-0.490134312088193,-0.490075959661838],&#34;lat&#34;:[51.5317825858362,51.536760167579,51.541760167579,51.5417601979913,51.5415715025725,51.5410035547911,51.5384274773926,51.5358352143021,51.5349155248617,51.5343233410026,51.534155753071,51.5332710418456,51.5320405662723,51.5317825858362]}]],[[{&#34;lng&#34;:[-0.481428647304313,-0.478541895958365,-0.472768393266468,-0.46988164192052,-0.472768393266468,-0.478541895958365,-0.481428647304313],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[-0.464108139228624,-0.461221387882676,-0.45544788519078,-0.452561133844831,-0.45544788519078,-0.461221387882676,-0.464108139228624],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[-0.446787631152935,-0.443900879806987,-0.438127377115091,-0.435240625769143,-0.438127377115091,-0.443900879806987,-0.446787631152935],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[-0.429467123077246,-0.426580371731298,-0.420806869039402,-0.417920117693454,-0.420806869039402,-0.426580371731298,-0.429467123077246],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[-0.412146615001558,-0.40925986365561,-0.403486360963713,-0.400599609617765,-0.403486360963713,-0.40925986365561,-0.412146615001558],&#34;lat&#34;:[51.5367601675789,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.5367601675789]}]],[[{&#34;lng&#34;:[-0.394826106925869,-0.391939355579921,-0.386165852888024,-0.383279101542076,-0.386165852888024,-0.391939355579921,-0.394826106925869],&#34;lat&#34;:[51.5367601675789,51.531760167579,51.531760167579,51.5367601675789,51.541760167579,51.541760167579,51.5367601675789]}]],[[{&#34;lng&#34;:[-0.37750559885018,-0.374618847504232,-0.368845344812336,-0.365958593466388,-0.368845344812336,-0.374618847504232,-0.37750559885018],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.5367601675789,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[-0.360185090774491,-0.357298339428543,-0.351524836736647,-0.348638085390699,-0.351524836736647,-0.357298339428543,-0.360185090774491],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[-0.342864582698802,-0.339977831352854,-0.334204328660958,-0.33131757731501,-0.334204328660958,-0.339977831352854,-0.342864582698802],&#34;lat&#34;:[51.5367601675789,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.5367601675789]}]],[[{&#34;lng&#34;:[-0.325544074623114,-0.322657323277166,-0.316883820585269,-0.313997069239321,-0.316883820585269,-0.322657323277166,-0.325544074623114],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163632,-0.299563312509581,-0.305336815201477,-0.308223566547425],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[-0.273582550396047,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.273582550396047],&#34;lat&#34;:[51.5367601675789,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.5367601675789]}]],[[{&#34;lng&#34;:[-0.256262042320359,-0.253375290974411,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.253375290974411,-0.256262042320359],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.5367601675789,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256266,-0.0715099561796784,-0.0743967075256266,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.062849702141834,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.0628497021418341,-0.0657364534877822],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528173,0.0150925841987655,0.0122058328528174,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879875,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879874,0.0555071030420393],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[0.0728276111177281,0.0757143624636762,0.0814878651555724,0.0843746165015206,0.0814878651555725,0.0757143624636762,0.0728276111177281],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.5367601675789,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.5367601675789,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.5367601675789]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[0.142109643420483,0.144996394766431,0.150769897458328,0.153656648804276,0.150769897458328,0.144996394766431,0.142109643420483],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.5367601675789,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[0.159430151496172,0.16231690284212,0.168090405534016,0.170977156879964,0.168090405534016,0.16231690284212,0.159430151496172],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[0.176750659571861,0.179637410917809,0.185410913609705,0.188297664955653,0.185410913609705,0.179637410917809,0.176750659571861],&#34;lat&#34;:[51.5367601675789,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.5367601675789]}]],[[{&#34;lng&#34;:[0.19407116764755,0.196957918993498,0.202731421685394,0.205618173031342,0.202731421685394,0.196957918993498,0.19407116764755],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[0.211391675723238,0.214278427069186,0.220051929761083,0.222938681107031,0.220051929761083,0.214278427069186,0.211391675723238],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[0.228712183798927,0.231598935144875,0.237372437836771,0.240259189182719,0.237372437836771,0.231598935144875,0.228712183798927],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[0.246032691874616,0.248919443220564,0.25469294591246,0.257579697258408,0.25469294591246,0.248919443220564,0.246032691874616],&#34;lat&#34;:[51.536760167579,51.531760167579,51.531760167579,51.536760167579,51.541760167579,51.541760167579,51.536760167579]}]],[[{&#34;lng&#34;:[0.27274053615952,0.274900205334097,0.272013453988149,0.266239951296253,0.263353199950305,0.265951201738903,0.270678108827155,0.27274053615952],&#34;lat&#34;:[51.5330196210074,51.5367601675789,51.541760167579,51.541760167579,51.5367601675789,51.5322603491143,51.5330922635102,51.5330196210074]}]],[[{&#34;lng&#34;:[0.291040285004839,0.292220713409786,0.289333962063838,0.283560459371941,0.280673708025993,0.282271550127123,0.288047121335093,0.290496521138007,0.290411513369847,0.291040285004839],&#34;lat&#34;:[51.5347157469145,51.536760167579,51.541760167579,51.541760167579,51.536760167579,51.5339927683636,51.5345523832068,51.5344839087686,51.5346591559541,51.5347157469145]}]],[[{&#34;lng&#34;:[0.308142192733718,0.306654470139527,0.30088096744763,0.298622088593553,0.300830529738281,0.300694593286358,0.308142192733718],&#34;lat&#34;:[51.5391835025042,51.541760167579,51.541760167579,51.5378477741568,51.5381333583204,51.5387547506464,51.5391835025042]}]],[[{&#34;lng&#34;:[0.324653590403507,0.323974978215215,0.318201475523319,0.317267446856271,0.322412943320374,0.324653590403507],&#34;lat&#34;:[51.5405848819326,51.541760167579,51.541760167579,51.5401425104495,51.540516499066,51.5405848819326]}]],[[{&#34;lng&#34;:[-0.490088901342157,-0.487202149996209,-0.481428647304313,-0.478541895958365,-0.481428647304313,-0.487202149996209,-0.490088901342157],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.472768393266468,-0.46988164192052,-0.464108139228624,-0.461221387882676,-0.464108139228624,-0.46988164192052,-0.472768393266468],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.45544788519078,-0.452561133844831,-0.446787631152935,-0.443900879806987,-0.446787631152935,-0.452561133844831,-0.45544788519078],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.438127377115091,-0.435240625769143,-0.429467123077246,-0.426580371731298,-0.429467123077246,-0.435240625769143,-0.438127377115091],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.420806869039402,-0.417920117693454,-0.412146615001558,-0.40925986365561,-0.412146615001558,-0.417920117693454,-0.420806869039402],&#34;lat&#34;:[51.541760167579,51.536760167579,51.5367601675789,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.403486360963713,-0.400599609617765,-0.394826106925869,-0.391939355579921,-0.394826106925869,-0.400599609617765,-0.403486360963713],&#34;lat&#34;:[51.541760167579,51.536760167579,51.5367601675789,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.386165852888024,-0.383279101542076,-0.37750559885018,-0.374618847504232,-0.37750559885018,-0.383279101542076,-0.386165852888024],&#34;lat&#34;:[51.541760167579,51.5367601675789,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.368845344812336,-0.365958593466388,-0.360185090774491,-0.357298339428543,-0.360185090774491,-0.365958593466388,-0.368845344812336],&#34;lat&#34;:[51.541760167579,51.5367601675789,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.351524836736647,-0.348638085390699,-0.342864582698802,-0.339977831352854,-0.342864582698803,-0.348638085390699,-0.351524836736647],&#34;lat&#34;:[51.541760167579,51.536760167579,51.5367601675789,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.334204328660958,-0.33131757731501,-0.325544074623114,-0.322657323277166,-0.325544074623114,-0.33131757731501,-0.334204328660958],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316883820585269],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.299563312509581,-0.296676561163632,-0.290903058471736,-0.288016307125788,-0.290903058471736,-0.296676561163633,-0.299563312509581],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.282242804433892,-0.279356053087944,-0.273582550396047,-0.270695799050099,-0.273582550396048,-0.279356053087944,-0.282242804433892],&#34;lat&#34;:[51.541760167579,51.536760167579,51.5367601675789,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.253375290974411,-0.256262042320359,-0.262035545012255,-0.264922296358203],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.541760167579,51.5367601675789,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256266,-0.0715099561796784,-0.0657364534877822,-0.0628497021418341,-0.0657364534877822,-0.0715099561796784,-0.0743967075256266],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[0.0122058328528174,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528174],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879874,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[0.0716851311647686,0.0728276111177281,0.0757143624636762,0.0728276111177281,0.0693510062363708,0.069628188112257,0.069582473639371,0.069714447209969,0.068941920852826,0.069906044990753,0.069497531654856,0.07042736315909,0.071346258558437,0.0716851311647686],&#34;lat&#34;:[51.5367601900663,51.536760167579,51.541760167579,51.546760167579,51.546760201516,51.5462607552561,51.546049120707,51.544062332766,51.5420696762131,51.540910586616,51.5388683578603,51.5391154246953,51.5372476011585,51.5367601900663]}],[{&#34;lng&#34;:[0.0690808857151794,0.0670541084258318,0.0641673570798837,0.0670541084258318,0.0713113512729267,0.071028972456296,0.070450385785194,0.06912576697383,0.069415376544561,0.068503259202539,0.069095049690352,0.068592899963819,0.069367005644626,0.069225303704199,0.069403147580483,0.0690808857151794],&#34;lat&#34;:[51.5467601998516,51.546760167579,51.541760167579,51.536760167579,51.5367601950145,51.5371524803551,51.538511618681,51.5388110640486,51.540298753322,51.5409191427697,51.5413763342769,51.5421324824674,51.5441286862645,51.5450736434946,51.5462593475478,51.5467601998516]}]],[[{&#34;lng&#34;:[0.0814878651555725,0.0843746165015206,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0843746165015205,0.0814878651555725],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.541760167579,51.5367601675789,51.5367601675789,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[0.133449389382639,0.136336140728587,0.142109643420483,0.144996394766431,0.142109643420483,0.136336140728587,0.133449389382639],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[0.150769897458328,0.153656648804276,0.159430151496172,0.16231690284212,0.159430151496172,0.153656648804276,0.150769897458328],&#34;lat&#34;:[51.541760167579,51.5367601675789,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[0.168090405534016,0.170977156879964,0.176750659571861,0.179637410917809,0.176750659571861,0.170977156879964,0.168090405534016],&#34;lat&#34;:[51.541760167579,51.536760167579,51.5367601675789,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[0.185410913609705,0.188297664955653,0.19407116764755,0.196957918993498,0.19407116764755,0.188297664955653,0.185410913609705],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[0.202731421685394,0.205618173031342,0.211391675723238,0.214278427069186,0.211391675723238,0.205618173031342,0.202731421685394],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[0.220051929761083,0.222938681107031,0.228712183798927,0.231598935144875,0.228712183798927,0.222938681107031,0.220051929761083],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[0.237372437836771,0.240259189182719,0.246032691874616,0.248919443220564,0.246032691874616,0.24025918918272,0.237372437836771],&#34;lat&#34;:[51.541760167579,51.536760167579,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[0.25469294591246,0.257579697258408,0.263353199950305,0.266239951296253,0.263353199950305,0.257579697258408,0.25469294591246],&#34;lat&#34;:[51.541760167579,51.536760167579,51.5367601675789,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[0.272013453988149,0.274900205334097,0.280673708025993,0.283560459371941,0.280673708025993,0.274900205334097,0.272013453988149],&#34;lat&#34;:[51.541760167579,51.5367601675789,51.536760167579,51.541760167579,51.546760167579,51.546760167579,51.541760167579]}]],[[{&#34;lng&#34;:[0.298622088593553,0.30088096744763,0.297994216101682,0.292220713409786,0.289333962063838,0.292220713409786,0.29738823921565,0.297176984176945,0.298622088593553],&#34;lat&#34;:[51.5378477741568,51.541760167579,51.546760167579,51.546760167579,51.541760167579,51.536760167579,51.5367601808881,51.5376608763629,51.5378477741568]}]],[[{&#34;lng&#34;:[0.317267446856271,0.318201475523319,0.315314724177371,0.309541221485475,0.306654470139527,0.308142192733718,0.310011811617927,0.310481755492407,0.310498659260158,0.317267446856271],&#34;lat&#34;:[51.5401425104495,51.541760167579,51.546760167579,51.546760167579,51.541760167579,51.5391835025042,51.5392910595422,51.5393456481462,51.5396501845182,51.5401425104495]}]],[[{&#34;lng&#34;:[0.329292064634637,0.326861729561163,0.323974978215215,0.324653590403507,0.331561896121135,0.331400887858221,0.333995704808206,0.33381313921899,0.333304740395413,0.333873980727202,0.331416856703712,0.328871446075,0.329439358542909,0.329292064634637],&#34;lat&#34;:[51.5467602021093,51.546760167579,51.541760167579,51.5405848819326,51.5407954483225,51.540044144057,51.5405024157396,51.5411634548585,51.5412607967927,51.5424923249139,51.5459414715451,51.5458355609953,51.5465626167544,51.5467602021093]}]],[[{&#34;lng&#34;:[-0.49189048666167,-0.490088901342157,-0.487202149996209,-0.487900643339053,-0.488169820084243,-0.489511063512084,-0.489394591083963,-0.491375803283501,-0.491595611334224,-0.490814945669827,-0.4910512033931,-0.492118907724451,-0.49189048666167],&#34;lat&#34;:[51.5417601979913,51.541760167579,51.546760167579,51.5479701008266,51.5474286239664,51.5472112061291,51.5463302963927,51.5461220153492,51.545363181645,51.5450725784284,51.5445567697231,51.542446580836,51.5417601979913]}]],[[{&#34;lng&#34;:[-0.481428647304313,-0.478541895958365,-0.472768393266468,-0.46988164192052,-0.472768393266468,-0.478541895958365,-0.481428647304313],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[-0.464108139228624,-0.461221387882676,-0.45544788519078,-0.452561133844831,-0.45544788519078,-0.461221387882676,-0.464108139228624],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[-0.446787631152935,-0.443900879806987,-0.438127377115091,-0.435240625769143,-0.438127377115091,-0.443900879806987,-0.446787631152935],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.5517601675789,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[-0.429467123077246,-0.426580371731298,-0.420806869039402,-0.417920117693454,-0.420806869039402,-0.426580371731298,-0.429467123077246],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[-0.412146615001558,-0.40925986365561,-0.403486360963713,-0.400599609617765,-0.403486360963713,-0.40925986365561,-0.412146615001558],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[-0.394826106925869,-0.391939355579921,-0.386165852888024,-0.383279101542076,-0.386165852888024,-0.391939355579921,-0.394826106925869],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.5517601675789,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[-0.37750559885018,-0.374618847504232,-0.368845344812336,-0.365958593466388,-0.368845344812336,-0.374618847504232,-0.37750559885018],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[-0.360185090774491,-0.357298339428543,-0.351524836736647,-0.348638085390699,-0.351524836736647,-0.357298339428543,-0.360185090774491],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[-0.342864582698803,-0.339977831352854,-0.334204328660958,-0.33131757731501,-0.334204328660958,-0.339977831352854,-0.342864582698803],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.5517601675789,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[-0.325544074623114,-0.322657323277166,-0.316883820585269,-0.313997069239321,-0.316883820585269,-0.322657323277166,-0.325544074623114],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163633,-0.299563312509581,-0.305336815201477,-0.308223566547425],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.5517601675789,51.546760167579]}]],[[{&#34;lng&#34;:[-0.273582550396048,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.273582550396048],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.5517601675789,51.546760167579]}]],[[{&#34;lng&#34;:[-0.256262042320359,-0.253375290974411,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.253375290974411,-0.256262042320359],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.5517601675789,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.5517601675789,51.546760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.5517601675789,51.5517601675789,51.546760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.5517601675789,51.5517601675789,51.546760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.5517601675789,51.5517601675789,51.546760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.5517601675789,51.5517601675789,51.546760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.5517601675789,51.546760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256266,-0.0715099561796784,-0.0743967075256265,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.0628497021418341,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.0628497021418341,-0.0657364534877822],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.5517601675789,51.546760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.5517601675789,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528174,0.0150925841987655,0.0122058328528173,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.5517601675789,51.546760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879874,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879874,0.0555071030420393],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.5517601675789,51.5517601675789,51.546760167579]}]],[[{&#34;lng&#34;:[0.0728276111177281,0.0757143624636762,0.0814878651555725,0.0843746165015205,0.0814878651555724,0.0757143624636762,0.0728276111177281],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.5517601675789,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[0.142109643420483,0.144996394766431,0.150769897458328,0.153656648804276,0.150769897458328,0.144996394766431,0.142109643420483],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.5517601675789,51.546760167579]}]],[[{&#34;lng&#34;:[0.159430151496172,0.16231690284212,0.168090405534016,0.170977156879964,0.168090405534016,0.16231690284212,0.159430151496172],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[0.176750659571861,0.179637410917809,0.185410913609705,0.188297664955653,0.185410913609705,0.179637410917809,0.176750659571861],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.5517601675789,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[0.19407116764755,0.196957918993498,0.202731421685394,0.205618173031342,0.202731421685394,0.196957918993498,0.19407116764755],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.5517601675789,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[0.211391675723238,0.214278427069186,0.220051929761083,0.222938681107031,0.220051929761083,0.214278427069186,0.211391675723238],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[0.228712183798927,0.231598935144875,0.237372437836771,0.24025918918272,0.237372437836771,0.231598935144875,0.228712183798927],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.5517601675789,51.546760167579]}]],[[{&#34;lng&#34;:[0.246032691874616,0.248919443220564,0.25469294591246,0.257579697258408,0.25469294591246,0.248919443220564,0.246032691874616],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[0.263353199950305,0.266239951296253,0.272013453988149,0.274900205334097,0.272013453988149,0.266239951296253,0.263353199950305],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.5517601675789,51.546760167579]}]],[[{&#34;lng&#34;:[0.280673708025993,0.283560459371941,0.289333962063838,0.292220713409786,0.289333962063838,0.283560459371941,0.280673708025993],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[0.297994216101682,0.30088096744763,0.306654470139527,0.309541221485475,0.306654470139526,0.30088096744763,0.297994216101682],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.551760167579,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[0.315314724177371,0.318201475523319,0.323974978215215,0.326861729561163,0.323974978215215,0.318201475523319,0.315314724177371],&#34;lat&#34;:[51.546760167579,51.541760167579,51.541760167579,51.546760167579,51.5517601675789,51.551760167579,51.546760167579]}]],[[{&#34;lng&#34;:[-0.487900643339053,-0.487202149996209,-0.481428647304313,-0.478541895958365,-0.47984190678587,-0.482685924381076,-0.484248766669413,-0.48540829970581,-0.487060244158775,-0.487900643339053],&#34;lat&#34;:[51.5479701008266,51.546760167579,51.546760167579,51.551760167579,51.5540119971968,51.5515203119709,51.5514532559335,51.5507191836141,51.5496605637928,51.5479701008266]}]],[[{&#34;lng&#34;:[-0.472768393266468,-0.46988164192052,-0.464108139228624,-0.461221387882676,-0.464108139228624,-0.46988164192052,-0.472768393266468],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[-0.45544788519078,-0.452561133844831,-0.446787631152935,-0.443900879806987,-0.446787631152935,-0.452561133844831,-0.45544788519078],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[-0.438127377115091,-0.435240625769143,-0.429467123077246,-0.426580371731298,-0.429467123077246,-0.435240625769143,-0.438127377115091],&#34;lat&#34;:[51.5517601675789,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.5517601675789]}]],[[{&#34;lng&#34;:[-0.420806869039402,-0.417920117693454,-0.412146615001558,-0.40925986365561,-0.412146615001558,-0.417920117693454,-0.420806869039402],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[-0.403486360963713,-0.400599609617765,-0.394826106925869,-0.391939355579921,-0.394826106925869,-0.400599609617765,-0.403486360963713],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[-0.386165852888024,-0.383279101542076,-0.37750559885018,-0.374618847504232,-0.37750559885018,-0.383279101542076,-0.386165852888024],&#34;lat&#34;:[51.5517601675789,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.5517601675789]}]],[[{&#34;lng&#34;:[-0.368845344812336,-0.365958593466388,-0.360185090774491,-0.357298339428543,-0.360185090774491,-0.365958593466388,-0.368845344812336],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[-0.351524836736647,-0.348638085390699,-0.342864582698803,-0.339977831352854,-0.342864582698802,-0.348638085390699,-0.351524836736647],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[-0.334204328660958,-0.33131757731501,-0.325544074623114,-0.322657323277166,-0.325544074623114,-0.33131757731501,-0.334204328660958],&#34;lat&#34;:[51.5517601675789,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.5517601675789]}]],[[{&#34;lng&#34;:[-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316883820585269],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[-0.299563312509581,-0.296676561163633,-0.290903058471736,-0.288016307125788,-0.290903058471736,-0.296676561163633,-0.299563312509581],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.5517601675789,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[-0.282242804433892,-0.279356053087944,-0.273582550396048,-0.270695799050099,-0.273582550396048,-0.279356053087944,-0.282242804433892],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.5517601675789,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.253375290974411,-0.256262042320359,-0.262035545012255,-0.264922296358203],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514],&#34;lat&#34;:[51.5517601675789,51.546760167579,51.546760167579,51.5517601675789,51.556760167579,51.556760167579,51.5517601675789]}]],[[{&#34;lng&#34;:[-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.5517601675789,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.5517601675789,51.546760167579,51.546760167579,51.5517601675789,51.556760167579,51.556760167579,51.5517601675789]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.5517601675789,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.5517601675789]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.5517601675789,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.5517601675789,51.546760167579,51.546760167579,51.5517601675789,51.556760167579,51.556760167579,51.5517601675789]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.5517601675789,51.546760167579,51.546760167579,51.5517601675789,51.556760167579,51.556760167579,51.5517601675789]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256265,-0.0715099561796784,-0.0657364534877822,-0.0628497021418341,-0.0657364534877822,-0.0715099561796784,-0.0743967075256265],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.5517601675789,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.5517601675789,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.5517601675789]}]],[[{&#34;lng&#34;:[-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.5517601675789,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[0.0122058328528173,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528173],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879874,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.5517601675789,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[0.0693510062363708,0.0728276111177281,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0666801637003072,0.067746715326341,0.068561087170329,0.069417314359753,0.068932778583853,0.069354999307009,0.069233539803127,0.0693510062363708],&#34;lat&#34;:[51.546760201516,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.5561125422793,51.5547380857292,51.551384752822,51.5503543742273,51.5490221024086,51.5475182677207,51.5469718574875,51.546760201516]}],[{&#34;lng&#34;:[0.0666303174224567,0.0641673570798837,0.0670541084258318,0.0690808857151794,0.069042389961612,0.068714354610604,0.069203452680828,0.068371408262538,0.067780881474697,0.0666303174224567],&#34;lat&#34;:[51.5560262133036,51.5517601675789,51.546760167579,51.5467601998516,51.5468200283089,51.5487849485545,51.5503455493157,51.5513044653277,51.5540909159385,51.5560262133036]}]],[[{&#34;lng&#34;:[0.0814878651555724,0.0843746165015205,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0843746165015205,0.0814878651555724],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695],&#34;lat&#34;:[51.5517601675789,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.5517601675789]}]],[[{&#34;lng&#34;:[0.133449389382639,0.136336140728587,0.142109643420483,0.144996394766431,0.142109643420483,0.136336140728587,0.133449389382639],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.5517601675789,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[0.150769897458328,0.153656648804276,0.159430151496172,0.16231690284212,0.159430151496172,0.153656648804276,0.150769897458328],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[0.168090405534016,0.170977156879964,0.176750659571861,0.179637410917809,0.176750659571861,0.170977156879964,0.168090405534016],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[0.185410913609705,0.188297664955653,0.19407116764755,0.196957918993498,0.19407116764755,0.188297664955653,0.185410913609705],&#34;lat&#34;:[51.5517601675789,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.5517601675789]}]],[[{&#34;lng&#34;:[0.202731421685394,0.205618173031342,0.211391675723238,0.214278427069186,0.211391675723238,0.205618173031342,0.202731421685394],&#34;lat&#34;:[51.5517601675789,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.5517601675789]}]],[[{&#34;lng&#34;:[0.220051929761083,0.222938681107031,0.228712183798927,0.231598935144875,0.228712183798927,0.222938681107031,0.220051929761083],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.5517601675789,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[0.237372437836771,0.24025918918272,0.246032691874616,0.248919443220564,0.246032691874616,0.240259189182719,0.237372437836771],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[0.25469294591246,0.257579697258408,0.263353199950305,0.266239951296253,0.263353199950305,0.257579697258408,0.25469294591246],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.5517601675789,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[0.272013453988149,0.274900205334097,0.280673708025993,0.283560459371941,0.280673708025993,0.274900205334097,0.272013453988149],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[0.289333962063838,0.292220713409786,0.297994216101682,0.30088096744763,0.297994216101682,0.292220713409786,0.289333962063838],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[0.306654470139526,0.309541221485475,0.315314724177371,0.318201475523319,0.315314724177371,0.309541221485475,0.306654470139526],&#34;lat&#34;:[51.551760167579,51.546760167579,51.546760167579,51.551760167579,51.556760167579,51.556760167579,51.551760167579]}]],[[{&#34;lng&#34;:[0.324699377822958,0.323974978215215,0.326861729561163,0.329292064634637,0.327950407451215,0.327787598536029,0.325129014409844,0.324699377822958],&#34;lat&#34;:[51.5530149744737,51.5517601675789,51.546760167579,51.5467602021093,51.5485598618965,51.5509930079472,51.553056590882,51.5530149744737]}]],[[{&#34;lng&#34;:[-0.47984190678587,-0.478541895958365,-0.472768393266468,-0.46988164192052,-0.472768393266468,-0.478541895958365,-0.479218634549983,-0.477539910220602,-0.477007930944788,-0.476616835883089,-0.477350942023961,-0.477805376570607,-0.478903163030725,-0.47984190678587],&#34;lat&#34;:[51.5540119971968,51.551760167579,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.5605881269656,51.560280281899,51.5596232368878,51.5580292542938,51.5552701309656,51.55483629394,51.5548343692619,51.5540119971968]}]],[[{&#34;lng&#34;:[-0.464108139228624,-0.461221387882676,-0.45544788519078,-0.452561133844831,-0.45544788519078,-0.461221387882676,-0.464108139228624],&#34;lat&#34;:[51.556760167579,51.551760167579,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.446787631152935,-0.443900879806987,-0.438127377115091,-0.435240625769143,-0.438127377115091,-0.443900879806987,-0.446787631152935],&#34;lat&#34;:[51.556760167579,51.551760167579,51.5517601675789,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.429467123077246,-0.426580371731298,-0.420806869039402,-0.417920117693454,-0.420806869039402,-0.426580371731298,-0.429467123077246],&#34;lat&#34;:[51.556760167579,51.551760167579,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.412146615001558,-0.40925986365561,-0.403486360963713,-0.400599609617765,-0.403486360963713,-0.40925986365561,-0.412146615001558],&#34;lat&#34;:[51.556760167579,51.551760167579,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.394826106925869,-0.391939355579921,-0.386165852888024,-0.383279101542076,-0.386165852888024,-0.391939355579921,-0.394826106925869],&#34;lat&#34;:[51.556760167579,51.551760167579,51.5517601675789,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.37750559885018,-0.374618847504232,-0.368845344812336,-0.365958593466388,-0.368845344812336,-0.374618847504232,-0.37750559885018],&#34;lat&#34;:[51.556760167579,51.551760167579,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.360185090774491,-0.357298339428543,-0.351524836736647,-0.348638085390699,-0.351524836736647,-0.357298339428543,-0.360185090774491],&#34;lat&#34;:[51.556760167579,51.551760167579,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.342864582698802,-0.339977831352854,-0.334204328660958,-0.33131757731501,-0.334204328660958,-0.339977831352854,-0.342864582698802],&#34;lat&#34;:[51.556760167579,51.551760167579,51.5517601675789,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.325544074623114,-0.322657323277166,-0.316883820585269,-0.313997069239321,-0.316883820585269,-0.322657323277166,-0.325544074623114],&#34;lat&#34;:[51.556760167579,51.551760167579,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163633,-0.299563312509581,-0.305336815201477,-0.308223566547425],&#34;lat&#34;:[51.556760167579,51.551760167579,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.556760167579,51.5517601675789,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.273582550396048,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.273582550396048],&#34;lat&#34;:[51.556760167579,51.5517601675789,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.256262042320359,-0.253375290974411,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.25337529097441,-0.256262042320359],&#34;lat&#34;:[51.556760167579,51.551760167579,51.5517601675789,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.556760167579,51.5517601675789,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.556760167579,51.5517601675789,51.5517601675789,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.556760167579,51.5517601675789,51.5517601675789,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.556760167579,51.551760167579,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.556760167579,51.551760167579,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.556760167579,51.5517601675789,51.5517601675789,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.556760167579,51.5517601675789,51.5517601675789,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.556760167579,51.5517601675789,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.556760167579,51.551760167579,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256265,-0.0715099561796784,-0.0743967075256265,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.556760167579,51.551760167579,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.0628497021418341,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.062849702141834,-0.0657364534877822],&#34;lat&#34;:[51.556760167579,51.5517601675789,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.556760167579,51.551760167579,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.556760167579,51.551760167579,51.5517601675789,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.556760167579,51.551760167579,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528173,0.0150925841987655,0.0122058328528174,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.556760167579,51.5517601675789,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.556760167579,51.551760167579,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.556760167579,51.551760167579,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[0.0666801637003072,0.0670541084258318,0.0641673570798837,0.0583938543879875,0.0555071030420393,0.0583938543879874,0.0641673570798837,0.0666303174224567,0.066247508370342,0.0666801637003072],&#34;lat&#34;:[51.5561125422793,51.556760167579,51.561760167579,51.561760167579,51.556760167579,51.5517601675789,51.5517601675789,51.5560262133036,51.5566700753038,51.5561125422793]}]],[[{&#34;lng&#34;:[0.0728276111177281,0.0757143624636762,0.0814878651555724,0.0843746165015205,0.0814878651555724,0.0757143624636762,0.0728276111177281],&#34;lat&#34;:[51.556760167579,51.551760167579,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168],&#34;lat&#34;:[51.556760167579,51.551760167579,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.556760167579,51.551760167579,51.5517601675789,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.556760167579,51.551760167579,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[0.142109643420483,0.144996394766431,0.150769897458328,0.153656648804276,0.150769897458328,0.144996394766431,0.142109643420483],&#34;lat&#34;:[51.556760167579,51.5517601675789,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[0.159430151496172,0.16231690284212,0.168090405534016,0.170977156879964,0.168090405534016,0.16231690284212,0.159430151496172],&#34;lat&#34;:[51.556760167579,51.551760167579,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[0.176750659571861,0.179637410917809,0.185410913609705,0.188297664955653,0.185410913609705,0.179637410917809,0.176750659571861],&#34;lat&#34;:[51.556760167579,51.551760167579,51.5517601675789,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[0.19407116764755,0.196957918993498,0.202731421685394,0.205618173031342,0.202731421685394,0.196957918993498,0.19407116764755],&#34;lat&#34;:[51.556760167579,51.551760167579,51.5517601675789,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[0.211391675723238,0.214278427069186,0.220051929761083,0.222938681107031,0.220051929761083,0.214278427069186,0.211391675723238],&#34;lat&#34;:[51.556760167579,51.551760167579,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[0.228712183798927,0.231598935144875,0.237372437836771,0.240259189182719,0.237372437836771,0.231598935144875,0.228712183798927],&#34;lat&#34;:[51.556760167579,51.5517601675789,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[0.246032691874616,0.248919443220564,0.25469294591246,0.257579697258408,0.25469294591246,0.248919443220564,0.246032691874616],&#34;lat&#34;:[51.556760167579,51.551760167579,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[0.263353199950305,0.266239951296253,0.272013453988149,0.274900205334097,0.272013453988149,0.266239951296253,0.263353199950305],&#34;lat&#34;:[51.556760167579,51.5517601675789,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[0.280673708025993,0.283560459371941,0.289333962063838,0.292220713409786,0.289333962063838,0.283560459371941,0.280673708025993],&#34;lat&#34;:[51.556760167579,51.551760167579,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[0.297994216101682,0.30088096744763,0.306654470139526,0.309541221485475,0.306654470139526,0.30088096744763,0.297994216101682],&#34;lat&#34;:[51.556760167579,51.551760167579,51.551760167579,51.556760167579,51.561760167579,51.561760167579,51.556760167579]}]],[[{&#34;lng&#34;:[0.31588975209875,0.315314724177371,0.318201475523319,0.323974978215215,0.324699377822958,0.322277441291378,0.322025032180372,0.318868590984849,0.318407031991912,0.316472240266825,0.31588975209875],&#34;lat&#34;:[51.557756238494,51.556760167579,51.551760167579,51.5517601675789,51.5530149744737,51.5527803447318,51.5541972292639,51.5551895452559,51.5567787458107,51.557683910685,51.557756238494]}]],[[{&#34;lng&#34;:[-0.479218634549983,-0.478541895958365,-0.481428647304313,-0.484576186476871,-0.482599860957288,-0.483242659676134,-0.482266252656296,-0.482814836540977,-0.480773428946431,-0.48106172682045,-0.48044211964466,-0.479218634549983],&#34;lat&#34;:[51.5605881269656,51.561760167579,51.566760167579,51.5667602026999,51.5657239438402,51.5651379211861,51.5639131529157,51.5628196458669,51.5617788947687,51.5607035720383,51.5608124723844,51.5605881269656]}]],[[{&#34;lng&#34;:[-0.472768393266468,-0.46988164192052,-0.464108139228624,-0.461221387882676,-0.464108139228624,-0.46988164192052,-0.472768393266468],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.45544788519078,-0.452561133844831,-0.446787631152935,-0.443900879806987,-0.446787631152935,-0.452561133844831,-0.45544788519078],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.438127377115091,-0.435240625769143,-0.429467123077246,-0.426580371731298,-0.429467123077246,-0.435240625769143,-0.438127377115091],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.420806869039402,-0.417920117693454,-0.412146615001558,-0.40925986365561,-0.412146615001558,-0.417920117693454,-0.420806869039402],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.403486360963713,-0.400599609617765,-0.394826106925869,-0.391939355579921,-0.394826106925869,-0.400599609617765,-0.403486360963713],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.386165852888024,-0.383279101542076,-0.37750559885018,-0.374618847504232,-0.37750559885018,-0.383279101542076,-0.386165852888024],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.368845344812336,-0.365958593466388,-0.360185090774491,-0.357298339428543,-0.360185090774491,-0.365958593466388,-0.368845344812336],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.351524836736647,-0.348638085390699,-0.342864582698802,-0.339977831352854,-0.342864582698802,-0.348638085390699,-0.351524836736647],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.334204328660958,-0.33131757731501,-0.325544074623114,-0.322657323277166,-0.325544074623114,-0.33131757731501,-0.334204328660958],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316883820585269],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.299563312509581,-0.296676561163633,-0.290903058471736,-0.288016307125788,-0.290903058471736,-0.296676561163632,-0.299563312509581],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.282242804433892,-0.279356053087944,-0.273582550396048,-0.270695799050099,-0.273582550396048,-0.279356053087944,-0.282242804433892],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.25337529097441,-0.256262042320359,-0.262035545012255,-0.264922296358203],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256265,-0.0715099561796784,-0.0657364534877822,-0.062849702141834,-0.0657364534877822,-0.0715099561796784,-0.0743967075256265],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[0.0122058328528174,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528174],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879875,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[0.0814878651555724,0.0843746165015205,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0843746165015205,0.0814878651555724],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[0.133449389382639,0.136336140728587,0.142109643420483,0.144996394766431,0.142109643420483,0.136336140728587,0.133449389382639],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[0.150769897458328,0.153656648804276,0.159430151496172,0.16231690284212,0.159430151496172,0.153656648804276,0.150769897458328],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[0.168090405534016,0.170977156879964,0.176750659571861,0.179637410917809,0.176750659571861,0.170977156879964,0.168090405534016],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[0.185410913609705,0.188297664955653,0.19407116764755,0.196957918993498,0.19407116764755,0.188297664955653,0.185410913609705],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[0.202731421685394,0.205618173031342,0.211391675723238,0.214278427069186,0.211391675723238,0.205618173031342,0.202731421685394],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[0.220051929761083,0.222938681107031,0.228712183798927,0.231598935144875,0.228712183798927,0.222938681107031,0.220051929761083],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[0.237372437836771,0.240259189182719,0.246032691874616,0.248919443220564,0.246032691874616,0.240259189182719,0.237372437836771],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[0.25469294591246,0.257579697258408,0.263353199950305,0.266239951296253,0.263353199950305,0.257579697258408,0.25469294591246],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[0.272013453988149,0.274900205334097,0.280673708025993,0.283560459371941,0.280673708025993,0.274900205334097,0.272013453988149],&#34;lat&#34;:[51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.566760167579,51.566760167579,51.561760167579]}]],[[{&#34;lng&#34;:[0.290820451771426,0.289333962063838,0.292220713409786,0.297994216101682,0.30088096744763,0.299075942204914,0.290820451771426],&#34;lat&#34;:[51.5643349894517,51.561760167579,51.556760167579,51.556760167579,51.561760167579,51.5648867001268,51.5643349894517]}]],[[{&#34;lng&#34;:[0.308835639554666,0.306654470139526,0.309541221485475,0.315314724177371,0.31588975209875,0.31526655907813,0.313006950380487,0.308835639554666],&#34;lat&#34;:[51.5655381719014,51.561760167579,51.556760167579,51.556760167579,51.557756238494,51.5578336171946,51.565816359402,51.5655381719014]}]],[[{&#34;lng&#34;:[-0.481428647304313,-0.478541895958365,-0.472768393266468,-0.46988164192052,-0.472768393266468,-0.478541895958365,-0.481428647304313],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.464108139228624,-0.461221387882676,-0.45544788519078,-0.452561133844831,-0.45544788519078,-0.461221387882676,-0.464108139228624],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.446787631152935,-0.443900879806987,-0.438127377115091,-0.435240625769143,-0.438127377115091,-0.443900879806987,-0.446787631152935],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.429467123077246,-0.426580371731298,-0.420806869039402,-0.417920117693454,-0.420806869039402,-0.426580371731298,-0.429467123077246],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.412146615001558,-0.40925986365561,-0.403486360963713,-0.400599609617765,-0.403486360963713,-0.40925986365561,-0.412146615001558],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.394826106925869,-0.391939355579921,-0.386165852888024,-0.383279101542076,-0.386165852888024,-0.391939355579921,-0.394826106925869],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.37750559885018,-0.374618847504232,-0.368845344812336,-0.365958593466388,-0.368845344812336,-0.374618847504232,-0.37750559885018],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.360185090774491,-0.357298339428543,-0.351524836736647,-0.348638085390699,-0.351524836736647,-0.357298339428543,-0.360185090774491],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.342864582698802,-0.339977831352854,-0.334204328660958,-0.33131757731501,-0.334204328660958,-0.339977831352854,-0.342864582698802],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.325544074623114,-0.322657323277166,-0.316883820585269,-0.313997069239321,-0.316883820585269,-0.322657323277166,-0.325544074623114],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163632,-0.299563312509581,-0.305336815201477,-0.308223566547425],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.273582550396048,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.273582550396048],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.256262042320359,-0.25337529097441,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.253375290974411,-0.256262042320359],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256265,-0.0715099561796784,-0.0743967075256266,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.062849702141834,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.062849702141834,-0.0657364534877822],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528174,0.0150925841987655,0.0122058328528173,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879875,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879875,0.0555071030420393],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[0.0728276111177281,0.0757143624636762,0.0814878651555724,0.0843746165015205,0.0814878651555724,0.0757143624636762,0.0728276111177281],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[0.142109643420483,0.144996394766431,0.150769897458328,0.153656648804276,0.150769897458328,0.144996394766431,0.142109643420483],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[0.159430151496172,0.16231690284212,0.168090405534016,0.170977156879964,0.168090405534016,0.16231690284212,0.159430151496172],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[0.176750659571861,0.179637410917809,0.185410913609705,0.188297664955653,0.185410913609705,0.179637410917809,0.176750659571861],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[0.19407116764755,0.196957918993498,0.202731421685394,0.205618173031342,0.202731421685394,0.196957918993498,0.19407116764755],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[0.211391675723238,0.214278427069186,0.220051929761083,0.222938681107031,0.220051929761083,0.214278427069186,0.211391675723238],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[0.228712183798927,0.231598935144875,0.237372437836771,0.240259189182719,0.237372437836771,0.231598935144875,0.228712183798927],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[0.246032691874616,0.248919443220564,0.25469294591246,0.257579697258408,0.25469294591246,0.248919443220564,0.246032691874616],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[0.263353199950305,0.266239951296253,0.272013453988149,0.274900205334097,0.272013453988149,0.266239951296253,0.263353199950305],&#34;lat&#34;:[51.566760167579,51.561760167579,51.561760167579,51.566760167579,51.571760167579,51.571760167579,51.566760167579]}]],[[{&#34;lng&#34;:[0.28678994013547,0.283560459371941,0.280673708025993,0.283560459371941,0.289333962063838,0.290820451771426,0.290261727685284,0.29017355784724,0.286677024339029,0.28678994013547],&#34;lat&#34;:[51.5717602024883,51.571760167579,51.566760167579,51.561760167579,51.561760167579,51.5643349894517,51.5642976287645,51.564495387458,51.5715043868149,51.5717602024883]}]],[[{&#34;lng&#34;:[0.299075942204914,0.30088096744763,0.306654470139526,0.308835639554666,0.299075942204914],&#34;lat&#34;:[51.5648867001268,51.561760167579,51.561760167579,51.5655381719014,51.5648867001268]}]],[[{&#34;lng&#34;:[-0.484576186476871,-0.481428647304313,-0.478541895958365,-0.481428647304313,-0.487202149996209,-0.487542227590323,-0.485189718616511,-0.484269628679176,-0.484015163018625,-0.48456281608714,-0.485554917797324,-0.485082333553168,-0.484033897648824,-0.484783695611205,-0.484576186476871],&#34;lat&#34;:[51.5667602026999,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.5761711967463,51.5753609767331,51.5753427996099,51.5750535718234,51.5742936012161,51.5738388407532,51.5722968870103,51.571193505054,51.5668690025691,51.5667602026999]}]],[[{&#34;lng&#34;:[-0.472768393266468,-0.46988164192052,-0.464108139228624,-0.461221387882676,-0.464108139228624,-0.46988164192052,-0.472768393266468],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.45544788519078,-0.452561133844831,-0.446787631152935,-0.443900879806987,-0.446787631152935,-0.452561133844831,-0.45544788519078],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.438127377115091,-0.435240625769143,-0.429467123077246,-0.426580371731298,-0.429467123077246,-0.435240625769143,-0.438127377115091],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.420806869039402,-0.417920117693454,-0.412146615001558,-0.40925986365561,-0.412146615001558,-0.417920117693454,-0.420806869039402],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.403486360963713,-0.400599609617765,-0.394826106925869,-0.391939355579921,-0.394826106925869,-0.400599609617765,-0.403486360963713],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.386165852888024,-0.383279101542076,-0.37750559885018,-0.374618847504232,-0.37750559885018,-0.383279101542076,-0.386165852888024],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.368845344812336,-0.365958593466388,-0.360185090774491,-0.357298339428543,-0.360185090774491,-0.365958593466388,-0.368845344812336],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.351524836736647,-0.348638085390699,-0.342864582698802,-0.339977831352854,-0.342864582698803,-0.348638085390699,-0.351524836736647],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.334204328660958,-0.33131757731501,-0.325544074623114,-0.322657323277166,-0.325544074623114,-0.33131757731501,-0.334204328660958],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316883820585269],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.299563312509581,-0.296676561163632,-0.290903058471736,-0.288016307125788,-0.290903058471736,-0.296676561163633,-0.299563312509581],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.282242804433892,-0.279356053087944,-0.273582550396048,-0.270695799050099,-0.273582550396048,-0.279356053087944,-0.282242804433892],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.253375290974411,-0.256262042320359,-0.262035545012255,-0.264922296358203],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256266,-0.0715099561796784,-0.0657364534877822,-0.062849702141834,-0.0657364534877822,-0.0715099561796784,-0.0743967075256266],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[0.0122058328528173,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528173],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879875,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[0.0814878651555724,0.0843746165015205,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0843746165015205,0.0814878651555724],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[0.133449389382639,0.136336140728587,0.142109643420483,0.144996394766431,0.142109643420483,0.136336140728587,0.133449389382639],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[0.150769897458328,0.153656648804276,0.159430151496172,0.16231690284212,0.159430151496172,0.153656648804276,0.150769897458328],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[0.168090405534016,0.170977156879964,0.176750659571861,0.179637410917809,0.176750659571861,0.170977156879964,0.168090405534016],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[0.185410913609705,0.188297664955653,0.19407116764755,0.196957918993498,0.19407116764755,0.188297664955653,0.185410913609705],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[0.202731421685394,0.205618173031342,0.211391675723238,0.214278427069186,0.211391675723238,0.205618173031342,0.202731421685394],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[0.220051929761083,0.222938681107031,0.228712183798927,0.231598935144875,0.228712183798927,0.222938681107031,0.220051929761083],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[0.237372437836771,0.240259189182719,0.246032691874616,0.248919443220564,0.246032691874616,0.240259189182719,0.237372437836771],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[0.25469294591246,0.257579697258408,0.263353199950305,0.266239951296253,0.263353199950305,0.257579697258408,0.25469294591246],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[0.272013453988149,0.274900205334097,0.280673708025993,0.283560459371941,0.280673708025993,0.274900205334097,0.272013453988149],&#34;lat&#34;:[51.571760167579,51.566760167579,51.566760167579,51.571760167579,51.576760167579,51.576760167579,51.571760167579]}]],[[{&#34;lng&#34;:[-0.487542227590323,-0.487202149996209,-0.488728953321237,-0.489478128461966,-0.489231730070361,-0.487739404318979,-0.487542227590323],&#34;lat&#34;:[51.5761711967463,51.576760167579,51.5794048143995,51.578380921446,51.5777590923238,51.5762391022981,51.5761711967463]}]],[[{&#34;lng&#34;:[-0.481428647304313,-0.478541895958365,-0.472768393266468,-0.46988164192052,-0.472768393266468,-0.478541895958365,-0.481428647304313],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.464108139228624,-0.461221387882676,-0.45544788519078,-0.452561133844831,-0.45544788519078,-0.461221387882676,-0.464108139228624],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.446787631152935,-0.443900879806987,-0.438127377115091,-0.435240625769143,-0.438127377115091,-0.443900879806987,-0.446787631152935],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.429467123077246,-0.426580371731298,-0.420806869039402,-0.417920117693454,-0.420806869039402,-0.426580371731298,-0.429467123077246],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.412146615001558,-0.40925986365561,-0.403486360963713,-0.400599609617765,-0.403486360963713,-0.40925986365561,-0.412146615001558],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.394826106925869,-0.391939355579921,-0.386165852888024,-0.383279101542076,-0.386165852888024,-0.391939355579921,-0.394826106925869],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.37750559885018,-0.374618847504232,-0.368845344812336,-0.365958593466388,-0.368845344812336,-0.374618847504232,-0.37750559885018],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.360185090774491,-0.357298339428543,-0.351524836736647,-0.348638085390699,-0.351524836736647,-0.357298339428543,-0.360185090774491],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.342864582698803,-0.339977831352854,-0.334204328660958,-0.33131757731501,-0.334204328660958,-0.339977831352854,-0.342864582698803],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.325544074623114,-0.322657323277166,-0.316883820585269,-0.313997069239321,-0.316883820585269,-0.322657323277166,-0.325544074623114],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163633,-0.299563312509581,-0.305336815201477,-0.308223566547425],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.273582550396048,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.273582550396048],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.256262042320359,-0.253375290974411,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.253375290974411,-0.256262042320359],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256266,-0.0715099561796784,-0.0743967075256266,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.062849702141834,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.062849702141834,-0.0657364534877822],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528173,0.0150925841987655,0.0122058328528173,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879875,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879874,0.0555071030420393],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[0.0728276111177281,0.0757143624636762,0.0814878651555724,0.0843746165015205,0.0814878651555724,0.0757143624636762,0.0728276111177281],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[0.142109643420483,0.144996394766431,0.150769897458328,0.153656648804276,0.150769897458328,0.144996394766431,0.142109643420483],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[0.159430151496172,0.16231690284212,0.168090405534016,0.170977156879964,0.168090405534016,0.16231690284212,0.159430151496172],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[0.176750659571861,0.179637410917809,0.185410913609705,0.188297664955653,0.185410913609705,0.179637410917809,0.176750659571861],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[0.19407116764755,0.196957918993498,0.202731421685394,0.205618173031342,0.202731421685394,0.196957918993498,0.19407116764755],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[0.211391675723238,0.214278427069186,0.220051929761083,0.222938681107031,0.220051929761083,0.214278427069186,0.211391675723238],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[0.228712183798927,0.231598935144875,0.237372437836771,0.240259189182719,0.237372437836771,0.231598935144875,0.228712183798927],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[0.246032691874616,0.248919443220564,0.25469294591246,0.257579697258408,0.25469294591246,0.248919443220564,0.246032691874616],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[0.263353199950305,0.266239951296253,0.272013453988149,0.274900205334097,0.272013453988149,0.266239951296253,0.263353199950305],&#34;lat&#34;:[51.576760167579,51.571760167579,51.571760167579,51.576760167579,51.581760167579,51.581760167579,51.576760167579]}]],[[{&#34;lng&#34;:[0.281916492454039,0.280673708025993,0.283560459371941,0.28678994013547,0.287137880699486,0.286724765431913,0.285065271704471,0.282001650443779,0.281916492454039],&#34;lat&#34;:[51.5789128769029,51.576760167579,51.571760167579,51.5717602024883,51.5725484582616,51.5734621050801,51.5741266688239,51.5788293446986,51.5789128769029]}]],[[{&#34;lng&#34;:[-0.488728953321237,-0.487202149996209,-0.481428647304313,-0.478541895958365,-0.481428647304313,-0.487202149996209,-0.489946665051389,-0.489624105830787,-0.488574082304244,-0.488728953321237],&#34;lat&#34;:[51.5794048143995,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.5820065554948,51.5817700762153,51.5796164692953,51.5794048143995]}]],[[{&#34;lng&#34;:[-0.472768393266468,-0.46988164192052,-0.464108139228624,-0.461221387882676,-0.464108139228624,-0.46988164192052,-0.472768393266468],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.45544788519078,-0.452561133844831,-0.446787631152935,-0.443900879806987,-0.446787631152935,-0.452561133844831,-0.45544788519078],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.438127377115091,-0.435240625769143,-0.429467123077246,-0.426580371731298,-0.429467123077246,-0.435240625769143,-0.438127377115091],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.420806869039402,-0.417920117693454,-0.412146615001558,-0.40925986365561,-0.412146615001558,-0.417920117693454,-0.420806869039402],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.403486360963713,-0.400599609617765,-0.394826106925869,-0.391939355579921,-0.394826106925869,-0.400599609617765,-0.403486360963713],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.386165852888024,-0.383279101542076,-0.37750559885018,-0.374618847504232,-0.37750559885018,-0.383279101542076,-0.386165852888024],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.368845344812336,-0.365958593466388,-0.360185090774491,-0.357298339428543,-0.360185090774491,-0.365958593466388,-0.368845344812336],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.351524836736647,-0.348638085390699,-0.342864582698803,-0.339977831352854,-0.342864582698803,-0.348638085390699,-0.351524836736647],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.334204328660958,-0.33131757731501,-0.325544074623114,-0.322657323277166,-0.325544074623114,-0.33131757731501,-0.334204328660958],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316883820585269],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.299563312509581,-0.296676561163633,-0.290903058471736,-0.288016307125788,-0.290903058471736,-0.296676561163632,-0.299563312509581],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.282242804433892,-0.279356053087944,-0.273582550396048,-0.270695799050099,-0.273582550396048,-0.279356053087944,-0.282242804433892],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.253375290974411,-0.256262042320359,-0.262035545012255,-0.264922296358203],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256266,-0.0715099561796784,-0.0657364534877822,-0.062849702141834,-0.0657364534877822,-0.0715099561796784,-0.0743967075256266],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[0.0122058328528173,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528173],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879874,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[0.0814878651555724,0.0843746165015205,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0843746165015206,0.0814878651555724],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[0.133449389382639,0.136336140728587,0.142109643420483,0.144996394766431,0.142109643420483,0.136336140728587,0.133449389382639],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[0.150769897458328,0.153656648804276,0.159430151496172,0.16231690284212,0.159430151496172,0.153656648804276,0.150769897458328],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[0.168090405534016,0.170977156879964,0.176750659571861,0.179637410917809,0.176750659571861,0.170977156879964,0.168090405534016],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[0.185410913609705,0.188297664955653,0.19407116764755,0.196957918993498,0.19407116764755,0.188297664955653,0.185410913609705],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[0.202731421685394,0.205618173031342,0.211391675723238,0.214278427069186,0.211391675723238,0.205618173031342,0.202731421685394],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[0.220051929761083,0.222938681107031,0.228712183798927,0.231598935144875,0.228712183798927,0.222938681107031,0.220051929761083],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[0.237372437836771,0.240259189182719,0.246032691874616,0.248919443220564,0.246032691874616,0.240259189182719,0.237372437836771],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[0.25469294591246,0.257579697258408,0.263353199950305,0.266239951296253,0.263353199950305,0.257579697258408,0.25469294591246],&#34;lat&#34;:[51.581760167579,51.576760167579,51.576760167579,51.581760167579,51.586760167579,51.586760167579,51.581760167579]}]],[[{&#34;lng&#34;:[0.274543983593831,0.272013453988149,0.274900205334097,0.280673708025993,0.281916492454039,0.274543983593831],&#34;lat&#34;:[51.5861432367701,51.581760167579,51.576760167579,51.576760167579,51.5789128769029,51.5861432367701]}]],[[{&#34;lng&#34;:[-0.489946665051389,-0.487202149996209,-0.490088901342157,-0.495862404034053,-0.497243862071837,-0.497230413259131,-0.49576231485903,-0.494962489805051,-0.495133822157553,-0.494723214912104,-0.491058565974963,-0.489946665051389],&#34;lat&#34;:[51.5820065554948,51.586760167579,51.591760167579,51.591760167579,51.5893675582257,51.5893365214412,51.588113662963,51.5865441912057,51.585421502515,51.5846132304664,51.5828217027349,51.5820065554948]}]],[[{&#34;lng&#34;:[-0.481428647304313,-0.478541895958365,-0.472768393266468,-0.46988164192052,-0.472768393266468,-0.478541895958365,-0.481428647304313],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.464108139228624,-0.461221387882676,-0.45544788519078,-0.452561133844831,-0.45544788519078,-0.461221387882676,-0.464108139228624],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.446787631152935,-0.443900879806987,-0.438127377115091,-0.435240625769143,-0.438127377115091,-0.443900879806987,-0.446787631152935],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.429467123077246,-0.426580371731298,-0.420806869039402,-0.417920117693454,-0.420806869039402,-0.426580371731298,-0.429467123077246],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.412146615001558,-0.40925986365561,-0.403486360963713,-0.400599609617765,-0.403486360963713,-0.40925986365561,-0.412146615001558],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.394826106925869,-0.391939355579921,-0.386165852888024,-0.383279101542076,-0.386165852888024,-0.391939355579921,-0.394826106925869],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.37750559885018,-0.374618847504232,-0.368845344812336,-0.365958593466388,-0.368845344812336,-0.374618847504232,-0.37750559885018],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.360185090774491,-0.357298339428543,-0.351524836736647,-0.348638085390699,-0.351524836736647,-0.357298339428543,-0.360185090774491],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.342864582698803,-0.339977831352854,-0.334204328660958,-0.33131757731501,-0.334204328660958,-0.339977831352854,-0.342864582698803],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.325544074623114,-0.322657323277166,-0.316883820585269,-0.313997069239321,-0.316883820585269,-0.322657323277166,-0.325544074623114],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163632,-0.299563312509581,-0.305336815201477,-0.308223566547425],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.273582550396048,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.273582550396048],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.256262042320359,-0.253375290974411,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.253375290974411,-0.256262042320359],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256266,-0.0715099561796784,-0.0743967075256266,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.062849702141834,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.0628497021418341,-0.0657364534877822],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528173,0.0150925841987655,0.0122058328528173,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879874,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879874,0.0555071030420393],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[0.0728276111177281,0.0757143624636762,0.0814878651555724,0.0843746165015206,0.0814878651555725,0.0757143624636762,0.0728276111177281],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[0.142109643420483,0.144996394766431,0.150769897458328,0.153656648804276,0.150769897458328,0.144996394766431,0.142109643420483],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[0.159430151496172,0.16231690284212,0.168090405534016,0.170977156879964,0.168090405534016,0.16231690284212,0.159430151496172],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[0.176750659571861,0.179637410917809,0.185410913609705,0.188297664955653,0.185410913609705,0.179637410917809,0.176750659571861],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[0.19407116764755,0.196957918993498,0.202731421685394,0.205618173031342,0.202731421685394,0.196957918993498,0.19407116764755],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[0.211391675723238,0.214278427069186,0.220051929761083,0.222938681107031,0.220051929761083,0.214278427069186,0.211391675723238],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[0.228712183798927,0.231598935144875,0.237372437836771,0.240259189182719,0.237372437836771,0.231598935144875,0.228712183798927],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[0.246032691874616,0.248919443220564,0.25469294591246,0.257579697258408,0.25469294591246,0.248919443220564,0.246032691874616],&#34;lat&#34;:[51.586760167579,51.581760167579,51.581760167579,51.586760167579,51.591760167579,51.591760167579,51.586760167579]}]],[[{&#34;lng&#34;:[0.270052562293729,0.266239951296253,0.263353199950305,0.266239951296253,0.272013453988149,0.274543983593831,0.273813132634203,0.272071478804333,0.270900402630869,0.270104248472006,0.270052562293729],&#34;lat&#34;:[51.5917601993399,51.591760167579,51.586760167579,51.581760167579,51.581760167579,51.5861432367701,51.5868598457236,51.5877443355008,51.590285012982,51.5915162600061,51.5917601993399]}]],[[{&#34;lng&#34;:[-0.497243862071837,-0.495862404034053,-0.498749155380002,-0.499824226142634,-0.499454556431105,-0.498589480116845,-0.49880345449585,-0.499563274701085,-0.498641468292834,-0.498843048479619,-0.497933352406212,-0.497243862071837],&#34;lat&#34;:[51.5893675582257,51.591760167579,51.596760167579,51.596760189037,51.5953950264776,51.5944415991816,51.5930739438818,51.5921404085153,51.5918993193832,51.5912157850916,51.59095868538,51.5893675582257]}]],[[{&#34;lng&#34;:[-0.490088901342157,-0.487202149996209,-0.481428647304313,-0.478541895958365,-0.481428647304313,-0.487202149996209,-0.490088901342157],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.472768393266468,-0.46988164192052,-0.464108139228624,-0.461221387882676,-0.464108139228624,-0.46988164192052,-0.472768393266468],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.45544788519078,-0.452561133844831,-0.446787631152935,-0.443900879806987,-0.446787631152935,-0.452561133844831,-0.45544788519078],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.438127377115091,-0.435240625769143,-0.429467123077246,-0.426580371731298,-0.429467123077246,-0.435240625769143,-0.438127377115091],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.420806869039402,-0.417920117693454,-0.412146615001558,-0.40925986365561,-0.412146615001558,-0.417920117693454,-0.420806869039402],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.403486360963713,-0.400599609617765,-0.394826106925869,-0.391939355579921,-0.394826106925869,-0.400599609617765,-0.403486360963713],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.386165852888024,-0.383279101542076,-0.37750559885018,-0.374618847504232,-0.37750559885018,-0.383279101542076,-0.386165852888024],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.368845344812336,-0.365958593466388,-0.360185090774491,-0.357298339428543,-0.360185090774491,-0.365958593466388,-0.368845344812336],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.351524836736647,-0.348638085390699,-0.342864582698803,-0.339977831352854,-0.342864582698803,-0.348638085390699,-0.351524836736647],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.334204328660958,-0.33131757731501,-0.325544074623114,-0.322657323277166,-0.325544074623114,-0.33131757731501,-0.334204328660958],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316883820585269],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.299563312509581,-0.296676561163632,-0.290903058471736,-0.288016307125788,-0.290903058471736,-0.296676561163633,-0.299563312509581],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.282242804433892,-0.279356053087944,-0.273582550396048,-0.270695799050099,-0.273582550396047,-0.279356053087944,-0.282242804433892],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.253375290974411,-0.256262042320359,-0.262035545012255,-0.264922296358203],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256266,-0.0715099561796784,-0.0657364534877822,-0.0628497021418341,-0.0657364534877822,-0.0715099561796784,-0.0743967075256266],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[0.0122058328528173,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528173],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879874,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.0728276111177281,0.0670541084258318,0.0641673570798837],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[0.0814878651555725,0.0843746165015206,0.0901481191934168,0.0930348705393649,0.0901481191934168,0.0843746165015205,0.0814878651555725],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[0.133449389382639,0.136336140728587,0.142109643420483,0.144996394766431,0.142109643420483,0.136336140728587,0.133449389382639],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[0.150769897458328,0.153656648804276,0.159430151496172,0.16231690284212,0.159430151496172,0.153656648804276,0.150769897458328],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[0.168090405534016,0.170977156879964,0.176750659571861,0.179637410917809,0.176750659571861,0.170977156879964,0.168090405534016],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[0.185410913609705,0.188297664955653,0.19407116764755,0.196957918993498,0.19407116764755,0.188297664955653,0.185410913609705],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[0.202731421685394,0.205618173031342,0.211391675723238,0.214278427069186,0.211391675723238,0.205618173031342,0.202731421685394],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[0.220051929761083,0.222938681107031,0.228712183798927,0.231598935144875,0.228712183798927,0.222938681107031,0.220051929761083],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[0.237372437836771,0.240259189182719,0.246032691874616,0.248919443220564,0.246032691874616,0.240259189182719,0.237372437836771],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[0.25469294591246,0.257579697258408,0.263353199950305,0.266239951296253,0.263353199950305,0.257579697258408,0.25469294591246],&#34;lat&#34;:[51.591760167579,51.586760167579,51.586760167579,51.591760167579,51.596760167579,51.596760167579,51.591760167579]}]],[[{&#34;lng&#34;:[-0.498749155380002,-0.495862404034053,-0.490088901342157,-0.487202149996209,-0.490088901342157,-0.495862404034053,-0.498749155380002],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.481428647304313,-0.478541895958365,-0.472768393266468,-0.46988164192052,-0.472768393266468,-0.478541895958365,-0.481428647304313],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.464108139228624,-0.461221387882676,-0.45544788519078,-0.452561133844831,-0.45544788519078,-0.461221387882676,-0.464108139228624],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.446787631152935,-0.443900879806987,-0.438127377115091,-0.435240625769143,-0.438127377115091,-0.443900879806987,-0.446787631152935],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.429467123077246,-0.426580371731298,-0.420806869039402,-0.417920117693454,-0.420806869039402,-0.426580371731298,-0.429467123077246],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.412146615001558,-0.40925986365561,-0.403486360963713,-0.400599609617765,-0.403486360963713,-0.40925986365561,-0.412146615001558],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.394826106925869,-0.391939355579921,-0.386165852888024,-0.383279101542076,-0.386165852888024,-0.391939355579921,-0.394826106925869],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.37750559885018,-0.374618847504232,-0.368845344812336,-0.365958593466388,-0.368845344812336,-0.374618847504232,-0.37750559885018],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.360185090774491,-0.357298339428543,-0.351524836736647,-0.348638085390699,-0.351524836736647,-0.357298339428543,-0.360185090774491],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.342864582698803,-0.339977831352854,-0.334204328660958,-0.33131757731501,-0.334204328660958,-0.339977831352854,-0.342864582698803],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.325544074623114,-0.322657323277166,-0.316883820585269,-0.313997069239321,-0.316883820585269,-0.322657323277166,-0.325544074623114],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163633,-0.299563312509581,-0.305336815201477,-0.308223566547425],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.273582550396047,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.273582550396047],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.256262042320359,-0.253375290974411,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.253375290974411,-0.256262042320359],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256266,-0.0715099561796784,-0.0743967075256265,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.0628497021418341,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.0628497021418341,-0.0657364534877822],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661453,-0.0484159454120934],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528173,0.0150925841987655,0.0122058328528173,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[0.0555071030420393,0.0583938543879874,0.0641673570798837,0.0670541084258318,0.0641673570798837,0.0583938543879874,0.0555071030420393],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[0.0728276111177281,0.0757143624636762,0.0814878651555725,0.0843746165015205,0.0814878651555724,0.0757143624636762,0.0728276111177281],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[0.0901481191934168,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0930348705393649,0.0901481191934168],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[0.142109643420483,0.144996394766431,0.150769897458328,0.153656648804276,0.150769897458328,0.144996394766431,0.142109643420483],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[0.159430151496172,0.16231690284212,0.168090405534016,0.170977156879964,0.168090405534016,0.16231690284212,0.159430151496172],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[0.176750659571861,0.179637410917809,0.185410913609705,0.188297664955653,0.185410913609705,0.179637410917809,0.176750659571861],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[0.19407116764755,0.196957918993498,0.202731421685394,0.205618173031342,0.202731421685394,0.196957918993498,0.19407116764755],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[0.211391675723238,0.214278427069186,0.220051929761083,0.222938681107031,0.220051929761083,0.214278427069186,0.211391675723238],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[0.228712183798927,0.231598935144875,0.237372437836771,0.240259189182719,0.237372437836771,0.231598935144875,0.228712183798927],&#34;lat&#34;:[51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.601760167579,51.601760167579,51.596760167579]}]],[[{&#34;lng&#34;:[0.253935563442475,0.248919443220564,0.246032691874616,0.248919443220564,0.25469294591246,0.257579697258408,0.254940165224893,0.254789936047007,0.253982654605521,0.253935563442475],&#34;lat&#34;:[51.6017601837176,51.601760167579,51.596760167579,51.591760167579,51.591760167579,51.596760167579,51.6013320170465,51.6013350349655,51.6015960385958,51.6017601837176]}]],[[{&#34;lng&#34;:[0.265074464768023,0.263353199950305,0.266239951296253,0.270052562293729,0.269308264351264,0.270312166711439,0.269851892828682,0.265074464768023],&#34;lat&#34;:[51.599741626741,51.596760167579,51.591760167579,51.5917601993399,51.5952727128537,51.5973081718685,51.5995725100882,51.599741626741]}]],[[{&#34;lng&#34;:[-0.499824226142634,-0.498749155380002,-0.495862404034053,-0.497239765653532,-0.49718521845324,-0.496327603772041,-0.49670742802759,-0.497658112370882,-0.499124598147196,-0.500353238002409,-0.500902626408477,-0.500616951054093,-0.499824226142634],&#34;lat&#34;:[51.596760189037,51.596760167579,51.601760167579,51.6041459740775,51.603218711755,51.6024272200063,51.6013764265161,51.6008769460154,51.6013758645504,51.6012486151109,51.6001756933408,51.5996873821852,51.596760189037]}]],[[{&#34;lng&#34;:[-0.490088901342157,-0.487202149996209,-0.481428647304313,-0.478541895958365,-0.481428647304313,-0.487202149996209,-0.490088901342157],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.472768393266468,-0.46988164192052,-0.464108139228624,-0.461221387882676,-0.464108139228624,-0.46988164192052,-0.472768393266468],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.45544788519078,-0.452561133844831,-0.446787631152935,-0.443900879806987,-0.446787631152935,-0.452561133844831,-0.45544788519078],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.438127377115091,-0.435240625769143,-0.429467123077246,-0.426580371731298,-0.429467123077246,-0.435240625769143,-0.438127377115091],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.420806869039402,-0.417920117693454,-0.412146615001558,-0.40925986365561,-0.412146615001558,-0.417920117693454,-0.420806869039402],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.403486360963713,-0.400599609617765,-0.394826106925869,-0.391939355579921,-0.394826106925869,-0.400599609617765,-0.403486360963713],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.386165852888024,-0.383279101542076,-0.37750559885018,-0.374618847504232,-0.37750559885018,-0.383279101542076,-0.386165852888024],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.368845344812336,-0.365958593466388,-0.360185090774491,-0.357298339428543,-0.360185090774491,-0.365958593466388,-0.368845344812336],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.351524836736647,-0.348638085390699,-0.342864582698803,-0.339977831352854,-0.342864582698802,-0.348638085390699,-0.351524836736647],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.334204328660958,-0.33131757731501,-0.325544074623114,-0.322657323277166,-0.325544074623114,-0.33131757731501,-0.334204328660958],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316883820585269],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.299563312509581,-0.296676561163633,-0.290903058471736,-0.288016307125788,-0.290903058471736,-0.296676561163633,-0.299563312509581],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.282242804433892,-0.279356053087944,-0.273582550396047,-0.270695799050099,-0.273582550396048,-0.279356053087944,-0.282242804433892],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.253375290974411,-0.256262042320359,-0.262035545012255,-0.264922296358203],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256265,-0.0715099561796784,-0.0657364534877822,-0.0628497021418341,-0.0657364534877822,-0.0715099561796784,-0.0743967075256265],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661453,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[0.0122058328528173,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528173],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[0.0468468490041948,0.049733600350143,0.0555071030420393,0.0583938543879874,0.0555071030420393,0.049733600350143,0.0468468490041948],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[0.0666958863418806,0.0641673570798837,0.0670541084258318,0.0728276111177281,0.0757143624636762,0.0737953455354476,0.072805441038648,0.0666958863418806],&#34;lat&#34;:[51.6061397724208,51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.6050841329879,51.6046858890256,51.6061397724208]}]],[[{&#34;lng&#34;:[0.0841650832101817,0.0814878651555724,0.0843746165015205,0.0901481191934168,0.0930348705393649,0.090718123554717,0.089602923878697,0.08890014235055,0.088895084977632,0.087118403041451,0.084448180857207,0.0841650832101817],&#34;lat&#34;:[51.6063972847179,51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.6057729839232,51.6055165777756,51.6051828859574,51.6048520229593,51.6044654926521,51.6063573232156,51.6063972847179]}]],[[{&#34;lng&#34;:[0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.107468627269106,0.101695124577209,0.0988083732312612],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.119015632652898,0.11612888130695],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[0.133449389382639,0.136336140728587,0.142109643420483,0.144996394766431,0.142109643420483,0.136336140728587,0.133449389382639],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[0.150769897458328,0.153656648804276,0.159430151496172,0.16231690284212,0.159430151496172,0.153656648804276,0.150769897458328],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[0.168090405534016,0.170977156879964,0.176750659571861,0.179637410917809,0.176750659571861,0.170977156879964,0.168090405534016],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[0.185410913609705,0.188297664955653,0.19407116764755,0.196957918993498,0.19407116764755,0.188297664955653,0.185410913609705],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[0.202731421685394,0.205618173031342,0.211391675723238,0.214278427069186,0.211391675723238,0.205618173031342,0.202731421685394],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[0.220051929761083,0.222938681107031,0.228712183798927,0.231598935144875,0.228712183798927,0.222938681107031,0.220051929761083],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[0.237372437836771,0.240259189182719,0.246032691874616,0.248919443220564,0.246032691874616,0.240259189182719,0.237372437836771],&#34;lat&#34;:[51.601760167579,51.596760167579,51.596760167579,51.601760167579,51.606760167579,51.606760167579,51.601760167579]}]],[[{&#34;lng&#34;:[0.254940165224893,0.257579697258408,0.263353199950305,0.265074464768023,0.264371332985878,0.260848419795542,0.258224978280244,0.257887334716885,0.254940165224893],&#34;lat&#34;:[51.6013320170465,51.596760167579,51.596760167579,51.599741626741,51.5997665004968,51.6003875206107,51.6009182416344,51.6012727731844,51.6013320170465]}],[{&#34;lng&#34;:[0.259015160945863,0.257579697258408,0.25526232390111,0.256599299421237,0.257129701446304,0.257972434352515,0.258053046822675,0.259015160945863],&#34;lat&#34;:[51.6067601940304,51.606760167579,51.6027464519707,51.6036042139779,51.6049231636853,51.6049096686028,51.6065052412986,51.6067601940304]}]],[[{&#34;lng&#34;:[-0.497239765653532,-0.495862404034053,-0.490088901342157,-0.487202149996209,-0.490088901342157,-0.495862404034053,-0.498300162288398,-0.497284158311807,-0.497239765653532],&#34;lat&#34;:[51.6041459740775,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.6075379234086,51.6049005886765,51.6041459740775]}]],[[{&#34;lng&#34;:[-0.481428647304313,-0.478541895958365,-0.472768393266468,-0.46988164192052,-0.472768393266468,-0.478541895958365,-0.481428647304313],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.464108139228624,-0.461221387882676,-0.45544788519078,-0.452561133844831,-0.45544788519078,-0.461221387882676,-0.464108139228624],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.446787631152935,-0.443900879806987,-0.438127377115091,-0.435240625769143,-0.438127377115091,-0.443900879806987,-0.446787631152935],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.429467123077246,-0.426580371731298,-0.420806869039402,-0.417920117693454,-0.420806869039402,-0.426580371731298,-0.429467123077246],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.412146615001558,-0.40925986365561,-0.403486360963713,-0.400599609617765,-0.403486360963713,-0.40925986365561,-0.412146615001558],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.394826106925869,-0.391939355579921,-0.386165852888024,-0.383279101542076,-0.386165852888024,-0.391939355579921,-0.394826106925869],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.37750559885018,-0.374618847504232,-0.368845344812336,-0.365958593466388,-0.368845344812336,-0.374618847504232,-0.37750559885018],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.360185090774491,-0.357298339428543,-0.351524836736647,-0.348638085390699,-0.351524836736647,-0.357298339428543,-0.360185090774491],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.342864582698802,-0.339977831352854,-0.334204328660958,-0.33131757731501,-0.334204328660958,-0.339977831352854,-0.342864582698802],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.325544074623114,-0.322657323277166,-0.316883820585269,-0.313997069239321,-0.316883820585269,-0.322657323277166,-0.325544074623114],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163633,-0.299563312509581,-0.305336815201477,-0.308223566547425],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.273582550396048,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.273582550396048],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.256262042320359,-0.253375290974411,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.253375290974411,-0.256262042320359],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206825,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256265,-0.0715099561796784,-0.0743967075256266,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.0628497021418341,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.0628497021418341,-0.0657364534877822],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661453,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528173,0.0150925841987655,0.0122058328528173,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[0.0381865949663505,0.0410733463122986,0.0468468490041948,0.049733600350143,0.0468468490041948,0.0410733463122986,0.0381865949663505],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[0.0572873335421699,0.0555071030420393,0.0583938543879874,0.0641673570798837,0.0666958863418806,0.065940540939311,0.063984220100438,0.062972090616266,0.062518826778058,0.060671186664238,0.0572873335421699],&#34;lat&#34;:[51.609843755796,51.606760167579,51.601760167579,51.601760167579,51.6061397724208,51.6063194925659,51.6072234845842,51.6069103642352,51.6070756843379,51.6082753642204,51.609843755796]}]],[[{&#34;lng&#34;:[0.0737953455354476,0.0757143624636762,0.0814878651555724,0.0841650832101817,0.080009882129917,0.077882445602758,0.0737953455354476],&#34;lat&#34;:[51.6050841329879,51.601760167579,51.601760167579,51.6063972847179,51.6069837382295,51.6067282334673,51.6050841329879]}]],[[{&#34;lng&#34;:[0.090718123554717,0.0930348705393649,0.0988083732312612,0.101695124577209,0.0988083732312612,0.0940501364939268,0.094665689651632,0.094209356582577,0.093689859791685,0.09262420638398,0.091846900664166,0.09168747057553,0.092554195691175,0.090718123554717],&#34;lat&#34;:[51.6057729839232,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.6117601880987,51.610745521686,51.6106529424219,51.6097530383268,51.6094752721119,51.6082130718454,51.6074785160822,51.6061951033771,51.6057729839232]}]],[[{&#34;lng&#34;:[0.107468627269106,0.110355378615054,0.11612888130695,0.119015632652898,0.11612888130695,0.110355378615054,0.107468627269106],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.127675886690743,0.124789135344794],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[0.142109643420483,0.144996394766431,0.150769897458328,0.153656648804276,0.150769897458328,0.144996394766431,0.142109643420483],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[0.159430151496172,0.16231690284212,0.168090405534016,0.170977156879964,0.168090405534016,0.16231690284212,0.159430151496172],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[0.176750659571861,0.179637410917809,0.185410913609705,0.188297664955653,0.185410913609705,0.179637410917809,0.176750659571861],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[0.19407116764755,0.196957918993498,0.202731421685394,0.205618173031342,0.202731421685394,0.196957918993498,0.19407116764755],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[0.211391675723238,0.214278427069186,0.220051929761083,0.222938681107031,0.220051929761083,0.214278427069186,0.211391675723238],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[0.228712183798927,0.231598935144875,0.237372437836771,0.240259189182719,0.237372437836771,0.231598935144875,0.228712183798927],&#34;lat&#34;:[51.606760167579,51.601760167579,51.601760167579,51.606760167579,51.611760167579,51.611760167579,51.606760167579]}]],[[{&#34;lng&#34;:[0.25526232390111,0.257579697258408,0.25469294591246,0.248919443220564,0.246032691874616,0.248919443220564,0.253935563442475,0.253890295625037,0.254669858443813,0.255139045060585,0.25526232390111],&#34;lat&#34;:[51.6027464519707,51.606760167579,51.611760167579,51.611760167579,51.606760167579,51.601760167579,51.6017601837176,51.6019179720882,51.6027294244516,51.6026673576954,51.6027464519707]}]],[[{&#34;lng&#34;:[0.26433142671628,0.263864600219999,0.264298904361931,0.264535478081694,0.26433142671628],&#34;lat&#34;:[51.6084546373475,51.607646024267,51.6078300422471,51.6083182917836,51.6084546373475]}]],[[{&#34;lng&#34;:[-0.498300162288398,-0.495862404034053,-0.497488774435568,-0.497907237493135,-0.497914537520817,-0.498966973599137,-0.498997140944687,-0.498337628239607,-0.4992561172514,-0.498591730661139,-0.498300162288398],&#34;lat&#34;:[51.6075379234086,51.611760167579,51.6145772679379,51.6142449651893,51.6132352299405,51.6111041104792,51.6101459454022,51.609474807303,51.6088615999159,51.6082947159843,51.6075379234086]}]],[[{&#34;lng&#34;:[-0.490088901342157,-0.487202149996209,-0.481428647304313,-0.478541895958365,-0.481428647304313,-0.487202149996209,-0.490088901342157],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[-0.469013055206732,-0.46988164192052,-0.472768393266468,-0.46988164192052,-0.464108139228624,-0.461221387882676,-0.462574909723334,-0.463261596130832,-0.468926133447169,-0.469013055206732],&#34;lat&#34;:[51.6167601856746,51.616760167579,51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.6141046821567,51.6143342881143,51.6167021688533,51.6167601856746]}]],[[{&#34;lng&#34;:[-0.45476788534466,-0.45544788519078,-0.452561133844831,-0.446787631152935,-0.443900879806987,-0.446787631152935,-0.447570236307982,-0.448131397890061,-0.449191440690631,-0.45476788534466],&#34;lat&#34;:[51.6129380674203,51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.6167601841691,51.6159192869794,51.6151608847765,51.6129380674203]}]],[[{&#34;lng&#34;:[-0.438127377115091,-0.435240625769143,-0.429467123077246,-0.426580371731298,-0.429467123077246,-0.435240625769143,-0.438127377115091],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[-0.418009994738573,-0.420806869039402,-0.417920117693454,-0.412146615001558,-0.40925986365561,-0.41039919002335,-0.411022519331414,-0.412006922113486,-0.416973109912706,-0.418009994738573],&#34;lat&#34;:[51.6166045136521,51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.6137336787807,51.6137881638593,51.6141791539733,51.6164888292926,51.6166045136521]}]],[[{&#34;lng&#34;:[-0.402625727634934,-0.403486360963713,-0.400599609617765,-0.394826106925869,-0.391939355579921,-0.39375406697927,-0.399487019919498,-0.402625727634934],&#34;lat&#34;:[51.6132509508937,51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.6149034767705,51.6134039485676,51.6132509508937]}]],[[{&#34;lng&#34;:[-0.386165852888024,-0.383279101542076,-0.37750559885018,-0.374618847504232,-0.37750559885018,-0.383279101542076,-0.386165852888024],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[-0.368845344812336,-0.365958593466388,-0.360185090774491,-0.357298339428543,-0.360185090774491,-0.365958593466388,-0.368845344812336],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[-0.351524836736647,-0.348638085390699,-0.342864582698802,-0.339977831352854,-0.342864582698802,-0.348638085390699,-0.351524836736647],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[-0.334204328660958,-0.33131757731501,-0.325544074623114,-0.322657323277166,-0.325544074623114,-0.33131757731501,-0.334204328660958],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316883820585269],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[-0.299563312509581,-0.296676561163633,-0.290903058471736,-0.288016307125788,-0.290903058471736,-0.296676561163633,-0.299563312509581],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[-0.282242804433892,-0.279356053087944,-0.273582550396048,-0.270695799050099,-0.273582550396048,-0.279356053087944,-0.282242804433892],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.253375290974411,-0.256262042320359,-0.262035545012255,-0.264922296358203],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[-0.230281280206825,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206825],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256266,-0.0715099561796784,-0.0657364534877822,-0.0628497021418341,-0.0657364534877822,-0.0715099561796784,-0.0743967075256266],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[0.0122058328528173,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528173],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0410733463122986,0.0381865949663505,0.0324130922744542,0.0295263409285061],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[0.0517663937912079,0.049733600350143,0.048935911955528,0.050149980565025,0.0517663937912079],&#34;lat&#34;:[51.616760199877,51.616760167579,51.6153786479696,51.6163893023702,51.616760199877]}],[{&#34;lng&#34;:[0.0541933736045262,0.052120232026901,0.053403687258252,0.054184942949971,0.0541933736045262],&#34;lat&#34;:[51.6167601924645,51.6167602019121,51.6163396281925,51.6167189370462,51.6167601924645]}],[{&#34;lng&#34;:[0.048286604200722,0.0468468490041948,0.049733600350143,0.0555071030420393,0.0572873335421699,0.052604702892818,0.048894812654975,0.048067572411579,0.048286604200722],&#34;lat&#34;:[51.6142540432769,51.611760167579,51.606760167579,51.606760167579,51.609843755796,51.6120137822455,51.6135695555599,51.6133214239826,51.6142540432769]}]],[[{&#34;lng&#34;:[0.0996951680916959,0.0988083732312612,0.101695124577209,0.107468627269106,0.110355378615054,0.109149427426623,0.103810870422442,0.103387527870536,0.100141462771926,0.0996951680916959],&#34;lat&#34;:[51.6132962660923,51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.6138490788926,51.6125495148269,51.6134518733007,51.6127231437735,51.6132962660923]}]],[[{&#34;lng&#34;:[0.11832868014999,0.11612888130695,0.119015632652898,0.124789135344794,0.127675886690743,0.124789135344794,0.122469573097633,0.119280189027249,0.118579533419063,0.11832868014999],&#34;lat&#34;:[51.6155704372384,51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760201608,51.6153665195634,51.6153647571506,51.6155704372384]}]],[[{&#34;lng&#34;:[0.133449389382639,0.136336140728587,0.142109643420483,0.144996394766431,0.142109643420483,0.136336140728587,0.133449389382639],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[0.150769897458328,0.153656648804276,0.159430151496172,0.16231690284212,0.159430151496172,0.153656648804276,0.150769897458328],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[0.168090405534016,0.170977156879964,0.176750659571861,0.179637410917809,0.176750659571861,0.170977156879964,0.168090405534016],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[0.185410913609705,0.188297664955653,0.19407116764755,0.196957918993498,0.19407116764755,0.188297664955653,0.185410913609705],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[0.202731421685394,0.205618173031342,0.211391675723238,0.214278427069186,0.211391675723238,0.205618173031342,0.202731421685394],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[0.220051929761083,0.222938681107031,0.228712183798927,0.231598935144875,0.228712183798927,0.222938681107031,0.220051929761083],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[0.237372437836771,0.240259189182719,0.246032691874616,0.248919443220564,0.246032691874616,0.240259189182719,0.237372437836771],&#34;lat&#34;:[51.611760167579,51.606760167579,51.606760167579,51.611760167579,51.616760167579,51.616760167579,51.611760167579]}]],[[{&#34;lng&#34;:[0.256526043673219,0.25469294591246,0.257579697258408,0.259015160945863,0.261650411116983,0.263089097820302,0.263864600219999,0.26433142671628,0.26323135683554,0.259023001977935,0.257665565411317,0.256526043673219],&#34;lat&#34;:[51.6149353218982,51.611760167579,51.606760167579,51.6067601940304,51.6074584598235,51.6073174302853,51.607646024267,51.6084546373475,51.609189675437,51.6122816019209,51.6141800191155,51.6149353218982]}]],[[{&#34;lng&#34;:[-0.497488774435568,-0.495862404034053,-0.490088901342157,-0.487202149996209,-0.490088901342157,-0.495862404034053,-0.49668552567823,-0.495430288821624,-0.497064766154175,-0.497488774435568],&#34;lat&#34;:[51.6145772679379,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.6203345985739,51.6189151463499,51.614913967685,51.6145772679379]}]],[[{&#34;lng&#34;:[-0.476505355436927,-0.478541895958365,-0.481428647304313,-0.478541895958365,-0.472768393266468,-0.46988164192052,-0.470426119506734,-0.476505355436927],&#34;lat&#34;:[51.6217601999028,51.621760167579,51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.6177033201489,51.6217601999028]}]],[[{&#34;lng&#34;:[-0.462574909723334,-0.461221387882676,-0.45544788519078,-0.45476788534466,-0.455368849631187,-0.45715194162445,-0.462574909723334],&#34;lat&#34;:[51.6141046821567,51.611760167579,51.611760167579,51.6129380674203,51.6126984892774,51.6122911928283,51.6141046821567]}]],[[{&#34;lng&#34;:[-0.445192786908332,-0.446787631152935,-0.443900879806987,-0.438127377115091,-0.435240625769143,-0.436821795442772,-0.438303650214288,-0.440596649587829,-0.443616048722588,-0.445192786908332],&#34;lat&#34;:[51.6195226637983,51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.619498979025,51.6199190049139,51.6200699768127,51.6195138704624,51.6195226637983]}]],[[{&#34;lng&#34;:[-0.428861199361149,-0.429467123077246,-0.426580371731298,-0.420806869039402,-0.418009994738573,-0.420924205049269,-0.426502946455364,-0.428417091600568,-0.428861199361149],&#34;lat&#34;:[51.6178097554741,51.616760167579,51.611760167579,51.611760167579,51.6166045136521,51.6169295975577,51.6170036150249,51.6177486271433,51.6178097554741]}]],[[{&#34;lng&#34;:[-0.41039919002335,-0.40925986365561,-0.403486360963713,-0.402625727634934,-0.404071977412891,-0.41039919002335],&#34;lat&#34;:[51.6137336787807,51.611760167579,51.611760167579,51.6132509508937,51.6131804243058,51.6137336787807]}]],[[{&#34;lng&#34;:[-0.39375406697927,-0.391939355579921,-0.386165852888024,-0.383279101542076,-0.38330147958497,-0.384599049385142,-0.387132131371087,-0.39270097438187,-0.39375406697927],&#34;lat&#34;:[51.6149034767705,51.611760167579,51.611760167579,51.616760167579,51.6167989319961,51.6161647239936,51.6155656051029,51.615178885674,51.6149034767705]}]],[[{&#34;lng&#34;:[-0.376746237125516,-0.37750559885018,-0.374618847504232,-0.368845344812336,-0.365958593466388,-0.36820265808194,-0.37541000334832,-0.376746237125516],&#34;lat&#34;:[51.618075534325,51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.6206471029737,51.6182994452943,51.618075534325]}]],[[{&#34;lng&#34;:[-0.360185090774491,-0.357298339428543,-0.351524836736647,-0.348638085390699,-0.351524836736647,-0.357298339428543,-0.360185090774491],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[-0.342864582698802,-0.339977831352854,-0.334204328660958,-0.33131757731501,-0.334204328660958,-0.339977831352854,-0.342864582698802],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[-0.325544074623114,-0.322657323277166,-0.316883820585269,-0.313997069239321,-0.316883820585269,-0.322657323277166,-0.325544074623114],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163633,-0.299563312509581,-0.305336815201477,-0.308223566547425],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[-0.273582550396048,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.273582550396048],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[-0.256262042320359,-0.253375290974411,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.253375290974411,-0.256262042320359],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206825,-0.227394528860877,-0.230281280206825,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256266,-0.0715099561796784,-0.0743967075256266,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.0628497021418341,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.062849702141834,-0.0657364534877822],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528173,0.0150925841987655,0.0122058328528174,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0324130922744542,0.0295263409285061,0.0237528382366098,0.0208660868906617],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[0.0385210334731502,0.0381865949663505,0.0410733463122986,0.0468468490041948,0.048286604200722,0.048457120565067,0.048935911955528,0.049733600350143,0.0492058593849312,0.047834160150467,0.043678791829003,0.040761336068709,0.039987734748941,0.040188075264818,0.0385210334731502],&#34;lat&#34;:[51.6173394921211,51.616760167579,51.611760167579,51.611760167579,51.6142540432769,51.6149800610804,51.6153786479696,51.616760167579,51.6176743293344,51.6174090431954,51.616940084671,51.6157273769421,51.616096047938,51.6164090957013,51.6173394921211]}]],[[{&#34;lng&#34;:[0.0940501364939268,0.0988083732312612,0.0996951680916959,0.098041425733375,0.092257994149021,0.093614489622823,0.0940501364939268],&#34;lat&#34;:[51.6117601880987,51.611760167579,51.6132962660923,51.6154198266112,51.6135725770719,51.6124782709676,51.6117601880987]}]],[[{&#34;lng&#34;:[0.109149427426623,0.110355378615054,0.11612888130695,0.11832868014999,0.116683037901911,0.109604787752302,0.109149427426623],&#34;lat&#34;:[51.6138490788926,51.611760167579,51.611760167579,51.6155704372384,51.6169196758675,51.6139599125323,51.6138490788926]}]],[[{&#34;lng&#34;:[0.126559261535918,0.124789135344794,0.127675886690743,0.133449389382639,0.136336140728587,0.133449389382639,0.130164495263578,0.12916027498208,0.128852345664321,0.126559261535918],&#34;lat&#34;:[51.6198262551372,51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.6217602022997,51.6214412075077,51.620695948525,51.6198262551372]}]],[[{&#34;lng&#34;:[0.142109643420483,0.144996394766431,0.150769897458328,0.153656648804276,0.150769897458328,0.144996394766431,0.142109643420483],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[0.167780065049105,0.16231690284212,0.159430151496172,0.16231690284212,0.168090405534016,0.170977156879964,0.168158992499351,0.167780065049105],&#34;lat&#34;:[51.62176017478,51.621760167579,51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.6216413850685,51.62176017478]}]],[[{&#34;lng&#34;:[0.176750659571861,0.179637410917809,0.185410913609705,0.188297664955653,0.185410913609705,0.179637410917809,0.176750659571861],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[0.19407116764755,0.196957918993498,0.202731421685394,0.205618173031342,0.202731421685394,0.196957918993498,0.19407116764755],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[0.211391675723238,0.214278427069186,0.220051929761083,0.222938681107031,0.220051929761083,0.214278427069186,0.211391675723238],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[0.228712183798927,0.231598935144875,0.237372437836771,0.240259189182719,0.237372437836771,0.231598935144875,0.228712183798927],&#34;lat&#34;:[51.616760167579,51.611760167579,51.611760167579,51.616760167579,51.621760167579,51.621760167579,51.616760167579]}]],[[{&#34;lng&#34;:[0.247680911430688,0.246032691874616,0.248919443220564,0.25469294591246,0.256526043673219,0.252767739345032,0.247680911430688],&#34;lat&#34;:[51.6196151112114,51.616760167579,51.611760167579,51.611760167579,51.6149353218982,51.6174261612662,51.6196151112114]}]],[[{&#34;lng&#34;:[-0.49668552567823,-0.495862404034053,-0.498064878375741,-0.498362559336333,-0.50004599123301,-0.500204886930548,-0.499281302884642,-0.49682975276447,-0.49668552567823],&#34;lat&#34;:[51.6203345985739,51.621760167579,51.625575071088,51.6247812801541,51.6236752034748,51.622184586943,51.6211063029547,51.6204976875096,51.6203345985739]}]],[[{&#34;lng&#34;:[-0.487338277851535,-0.490088901342157,-0.487202149996209,-0.481428647304313,-0.478541895958365,-0.479262749612653,-0.487338277851535],&#34;lat&#34;:[51.6265244135639,51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.6230088325983,51.6265244135639]}]],[[{&#34;lng&#34;:[-0.470426119506734,-0.46988164192052,-0.469013055206732,-0.470426119506734],&#34;lat&#34;:[51.6177033201489,51.616760167579,51.6167601856746,51.6177033201489]}]],[[{&#34;lng&#34;:[-0.447570236307982,-0.446787631152935,-0.445192786908332,-0.445724596887378,-0.447570236307982],&#34;lat&#34;:[51.6167601841691,51.616760167579,51.6195226637983,51.6195256248942,51.6167601841691]}]],[[{&#34;lng&#34;:[-0.436821795442772,-0.435240625769143,-0.429467123077246,-0.428861199361149,-0.432751607487587,-0.436821795442772],&#34;lat&#34;:[51.619498979025,51.616760167579,51.616760167579,51.6178097554741,51.6183451643123,51.619498979025]}]],[[{&#34;lng&#34;:[-0.38330147958497,-0.383279101542076,-0.37750559885018,-0.376746237125516,-0.378532844373899,-0.382013392268252,-0.38330147958497],&#34;lat&#34;:[51.6167989319961,51.616760167579,51.616760167579,51.618075534325,51.6177761277046,51.6174284736066,51.6167989319961]}]],[[{&#34;lng&#34;:[-0.36820265808194,-0.365958593466388,-0.360185090774491,-0.357298339428543,-0.359350040656643,-0.359701561394803,-0.361815468160839,-0.362618429041836,-0.363454735323786,-0.365559453248058,-0.368197180332976,-0.36820265808194],&#34;lat&#34;:[51.6206471029737,51.616760167579,51.616760167579,51.621760167579,51.6253139389026,51.6252585384492,51.6237261220557,51.6235332018407,51.6225341454383,51.6213306345113,51.6206488869876,51.6206471029737]}]],[[{&#34;lng&#34;:[-0.351524836736647,-0.348638085390699,-0.342864582698802,-0.339977831352854,-0.342864582698802,-0.348638085390699,-0.351524836736647],&#34;lat&#34;:[51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.626760167579,51.626760167579,51.621760167579]}]],[[{&#34;lng&#34;:[-0.334204328660958,-0.33131757731501,-0.325544074623114,-0.322657323277166,-0.325544074623114,-0.33131757731501,-0.334204328660958],&#34;lat&#34;:[51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.626760167579,51.626760167579,51.621760167579]}]],[[{&#34;lng&#34;:[-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316883820585269],&#34;lat&#34;:[51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.626760167579,51.626760167579,51.621760167579]}]],[[{&#34;lng&#34;:[-0.299563312509581,-0.296676561163633,-0.290903058471736,-0.288016307125788,-0.290903058471736,-0.296676561163633,-0.299563312509581],&#34;lat&#34;:[51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.626760167579,51.626760167579,51.621760167579]}]],[[{&#34;lng&#34;:[-0.282242804433892,-0.279356053087944,-0.273582550396048,-0.270695799050099,-0.273582550396047,-0.279356053087944,-0.282242804433892],&#34;lat&#34;:[51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.626760167579,51.626760167579,51.621760167579]}]],[[{&#34;lng&#34;:[-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.253375290974411,-0.256262042320359,-0.262035545012255,-0.264922296358203],&#34;lat&#34;:[51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.626760167579,51.626760167579,51.621760167579]}]],[[{&#34;lng&#34;:[-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514],&#34;lat&#34;:[51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.626760167579,51.626760167579,51.621760167579]}]],[[{&#34;lng&#34;:[-0.230281280206825,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206825],&#34;lat&#34;:[51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.626760167579,51.626760167579,51.621760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.626760167579,51.626760167579,51.621760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.626760167579,51.626760167579,51.621760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.626760167579,51.626760167579,51.621760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.626760167579,51.626760167579,51.621760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.626760167579,51.626760167579,51.621760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.626760167579,51.626760167579,51.621760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.626760167579,51.626760167579,51.621760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.626760167579,51.626760167579,51.621760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256266,-0.0715099561796784,-0.0657364534877822,-0.062849702141834,-0.0657364534877822,-0.0715099561796784,-0.0743967075256266],&#34;lat&#34;:[51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.626760167579,51.626760167579,51.621760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.626760167579,51.626760167579,51.621760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.626760167579,51.626760167579,51.621760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.626760167579,51.626760167579,51.621760167579]}]],[[{&#34;lng&#34;:[-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714],&#34;lat&#34;:[51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.626760167579,51.626760167579,51.621760167579]}]],[[{&#34;lng&#34;:[0.0122058328528174,0.0150925841987655,0.0208660868906617,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528174],&#34;lat&#34;:[51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.626760167579,51.626760167579,51.621760167579]}]],[[{&#34;lng&#34;:[0.0306319254822538,0.0295263409285061,0.0324130922744542,0.0381865949663505,0.0385210334731502,0.03751891672698,0.037451358101386,0.032755297241622,0.031444303066159,0.030497872884684,0.030700994756384,0.0306319254822538],&#34;lat&#34;:[51.6236752347673,51.621760167579,51.616760167579,51.616760167579,51.6173394921211,51.6178987560193,51.6183243899318,51.6222420428388,51.6230992573032,51.623291005853,51.623634602198,51.6236752347673]}]],[[{&#34;lng&#34;:[0.0492058593849312,0.049733600350143,0.0517663937912079,0.051974510758226,0.052120232026901,0.0541933736045262,0.054364760784942,0.053684749163446,0.05307152822004,0.0492058593849312],&#34;lat&#34;:[51.6176743293344,51.616760167579,51.616760199877,51.6168079517414,51.6167602019121,51.6167601924645,51.6175988594497,51.6182780289407,51.6184218456214,51.6176743293344]}]],[[{&#34;lng&#34;:[0.122469573097633,0.124789135344794,0.126559261535918,0.12607118262387,0.124171368898929,0.122469573097633],&#34;lat&#34;:[51.616760201608,51.616760167579,51.6198262551372,51.6196411323652,51.6175037739577,51.616760201608]}]],[[{&#34;lng&#34;:[0.134186985012347,0.133449389382639,0.136336140728587,0.142109643420483,0.144996394766431,0.144045808321343,0.138156896612179,0.135783270484702,0.134186985012347],&#34;lat&#34;:[51.6230378322329,51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.6234067611097,51.6235429497213,51.6235447890653,51.6230378322329]}]],[[{&#34;lng&#34;:[0.151633892315144,0.150769897458328,0.153656648804276,0.159430151496172,0.16231690284212,0.161802645879698,0.155517517955315,0.151633892315144],&#34;lat&#34;:[51.6232567735467,51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.6226509726206,51.623337827703,51.6232567735467]}]],[[{&#34;lng&#34;:[0.168158992499351,0.170977156879964,0.176750659571861,0.179637410917809,0.178282484694014,0.175276199865937,0.168873664466667,0.168158992499351],&#34;lat&#34;:[51.6216413850685,51.616760167579,51.616760167579,51.621760167579,51.6241071146857,51.6235848412729,51.6214173380219,51.6216413850685]}]],[[{&#34;lng&#34;:[0.187539565289342,0.185410913609705,0.188297664955653,0.19407116764755,0.196957918993498,0.194681321178238,0.189786761515807,0.189372843451877,0.188343831592309,0.187539565289342],&#34;lat&#34;:[51.6254472139896,51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.625703448405,51.6251009818674,51.6244873069456,51.6254103011996,51.6254472139896]}]],[[{&#34;lng&#34;:[0.204944094300269,0.202731421685394,0.205618173031342,0.211391675723238,0.214278427069186,0.211391675723238,0.209464342155508,0.2084350582817,0.204944094300269],&#34;lat&#34;:[51.6255927339185,51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.626760167579,51.6267601990621,51.6266796365865,51.6255927339185]}]],[[{&#34;lng&#34;:[0.220051929761083,0.222938681107031,0.228712183798927,0.231598935144875,0.228712183798927,0.222938681107031,0.220051929761083],&#34;lat&#34;:[51.621760167579,51.616760167579,51.616760167579,51.621760167579,51.626760167579,51.626760167579,51.621760167579]}]],[[{&#34;lng&#34;:[0.23843128511844,0.237372437836771,0.240259189182719,0.246032691874616,0.247680911430688,0.23843128511844],&#34;lat&#34;:[51.6235942810621,51.621760167579,51.616760167579,51.616760167579,51.6196151112114,51.6235942810621]}]],[[{&#34;lng&#34;:[-0.498064878375741,-0.495862404034053,-0.490088901342157,-0.487338277851535,-0.487879232025641,-0.4890478502326,-0.491557641285916,-0.493568633269254,-0.494169222807611,-0.495555464038576,-0.495985093157607,-0.498426447586157,-0.497654428798158,-0.498064878375741],&#34;lat&#34;:[51.625575071088,51.621760167579,51.621760167579,51.6265244135639,51.6267598719837,51.6275913705989,51.6307636418331,51.6305547617266,51.6310489399544,51.6311611073532,51.6315476876491,51.6273191721094,51.6266695220931,51.625575071088]}]],[[{&#34;lng&#34;:[-0.479262749612653,-0.478541895958365,-0.476505355436927,-0.47671236463809,-0.479262749612653],&#34;lat&#34;:[51.6230088325983,51.621760167579,51.6217601999028,51.6218983258478,51.6230088325983]}]],[[{&#34;lng&#34;:[-0.359350040656643,-0.357298339428543,-0.351524836736647,-0.348638085390699,-0.348809221122052,-0.349245624790039,-0.359350040656643],&#34;lat&#34;:[51.6253139389026,51.621760167579,51.621760167579,51.626760167579,51.6270566160694,51.6269059108762,51.6253139389026]}]],[[{&#34;lng&#34;:[-0.340817951945952,-0.342864582698802,-0.339977831352854,-0.334204328660958,-0.33131757731501,-0.334204328660958,-0.335265161690378,-0.338307553076773,-0.339913302270493,-0.340817951945952],&#34;lat&#34;:[51.6303051570342,51.626760167579,51.621760167579,51.621760167579,51.626760167579,51.631760167579,51.6317601888109,51.6294690336933,51.6307201147548,51.6303051570342]}]],[[{&#34;lng&#34;:[-0.325544074623114,-0.322657323277166,-0.316883820585269,-0.313997069239321,-0.316883820585269,-0.322657323277166,-0.325544074623114],&#34;lat&#34;:[51.626760167579,51.621760167579,51.621760167579,51.626760167579,51.631760167579,51.631760167579,51.626760167579]}]],[[{&#34;lng&#34;:[-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.296676561163633,-0.299563312509581,-0.305336815201477,-0.308223566547425],&#34;lat&#34;:[51.626760167579,51.621760167579,51.621760167579,51.626760167579,51.631760167579,51.631760167579,51.626760167579]}]],[[{&#34;lng&#34;:[-0.290903058471736,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.282242804433892,-0.288016307125788,-0.290903058471736],&#34;lat&#34;:[51.626760167579,51.621760167579,51.621760167579,51.626760167579,51.631760167579,51.6317601675789,51.626760167579]}]],[[{&#34;lng&#34;:[-0.273582550396047,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.273582550396047],&#34;lat&#34;:[51.626760167579,51.621760167579,51.621760167579,51.626760167579,51.631760167579,51.631760167579,51.626760167579]}]],[[{&#34;lng&#34;:[-0.256262042320359,-0.253375290974411,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.253375290974411,-0.256262042320359],&#34;lat&#34;:[51.626760167579,51.621760167579,51.621760167579,51.626760167579,51.631760167579,51.631760167579,51.626760167579]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206825,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.626760167579,51.621760167579,51.621760167579,51.626760167579,51.631760167579,51.631760167579,51.626760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.626760167579,51.621760167579,51.621760167579,51.626760167579,51.631760167579,51.631760167579,51.626760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.626760167579,51.621760167579,51.621760167579,51.626760167579,51.631760167579,51.631760167579,51.626760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.626760167579,51.621760167579,51.621760167579,51.626760167579,51.631760167579,51.6317601675789,51.626760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.626760167579,51.621760167579,51.621760167579,51.626760167579,51.6317601675789,51.631760167579,51.626760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.626760167579,51.621760167579,51.621760167579,51.626760167579,51.631760167579,51.631760167579,51.626760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.626760167579,51.621760167579,51.621760167579,51.626760167579,51.631760167579,51.631760167579,51.626760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.626760167579,51.621760167579,51.621760167579,51.626760167579,51.631760167579,51.631760167579,51.626760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.626760167579,51.621760167579,51.621760167579,51.626760167579,51.631760167579,51.631760167579,51.626760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256266,-0.0715099561796784,-0.0743967075256265,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.626760167579,51.621760167579,51.621760167579,51.626760167579,51.631760167579,51.631760167579,51.626760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.062849702141834,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.0628497021418341,-0.0657364534877822],&#34;lat&#34;:[51.626760167579,51.621760167579,51.621760167579,51.626760167579,51.631760167579,51.631760167579,51.626760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.626760167579,51.621760167579,51.621760167579,51.626760167579,51.631760167579,51.631760167579,51.626760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.626760167579,51.621760167579,51.621760167579,51.626760167579,51.631760167579,51.631760167579,51.626760167579]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.626760167579,51.621760167579,51.621760167579,51.626760167579,51.631760167579,51.631760167579,51.626760167579]}]],[[{&#34;lng&#34;:[0.00354557881497297,0.0064323301609211,0.0122058328528174,0.0150925841987655,0.0122058328528173,0.0064323301609211,0.00354557881497297],&#34;lat&#34;:[51.626760167579,51.621760167579,51.621760167579,51.626760167579,51.631760167579,51.631760167579,51.626760167579]}]],[[{&#34;lng&#34;:[0.0241300989280492,0.0237528382366098,0.0223875298880745,0.023863940581334,0.0241300989280492],&#34;lat&#34;:[51.6317601762248,51.631760167579,51.6293955303431,51.6307956369093,51.6317601762248]}],[{&#34;lng&#34;:[0.0220039166200564,0.0208660868906617,0.0237528382366098,0.0295263409285061,0.0306319254822538,0.028937069820122,0.029056392587595,0.026807599754187,0.024561818185395,0.0220039166200564],&#34;lat&#34;:[51.6287310865326,51.626760167579,51.621760167579,51.621760167579,51.6236752347673,51.6246722611444,51.6251117405298,51.6259059711163,51.6275166123565,51.6287310865326]}]],[[{&#34;lng&#34;:[0.130164495263578,0.133449389382639,0.134186985012347,0.130164495263578],&#34;lat&#34;:[51.6217602022997,51.621760167579,51.6230378322329,51.6217602022997]}]],[[{&#34;lng&#34;:[0.144045808321343,0.144996394766431,0.150769897458328,0.151633892315144,0.151045905782522,0.144045808321343],&#34;lat&#34;:[51.6234067611097,51.621760167579,51.621760167579,51.6232567735467,51.623244490638,51.6234067611097]}]],[[{&#34;lng&#34;:[0.161802645879698,0.16231690284212,0.167780065049105,0.165813218072491,0.162774461541604,0.162502648204579,0.161802645879698],&#34;lat&#34;:[51.6226509726206,51.621760167579,51.62176017478,51.6223767307278,51.6227897777243,51.6225744524963,51.6226509726206]}]],[[{&#34;lng&#34;:[0.178282484694014,0.179637410917809,0.185410913609705,0.187539565289342,0.185969397617375,0.186240963868834,0.185904030822763,0.182470799296656,0.180584672125419,0.18036951399307,0.178282484694014],&#34;lat&#34;:[51.6241071146857,51.621760167579,51.621760167579,51.6254472139896,51.6255192627565,51.6245564561106,51.624370290041,51.6258055650104,51.6257327221709,51.6244696362022,51.6241071146857]}]],[[{&#34;lng&#34;:[0.194681321178238,0.196957918993498,0.202731421685394,0.204944094300269,0.203586637778881,0.200283816524296,0.196959499590477,0.194747360806258,0.194681321178238],&#34;lat&#34;:[51.625703448405,51.621760167579,51.621760167579,51.6255927339185,51.6251700513018,51.6249325645662,51.6255649470171,51.6257115756571,51.625703448405]}]],[[{&#34;lng&#34;:[0.211482884795658,0.211391675723238,0.214278427069186,0.220051929761083,0.222938681107031,0.221119490323931,0.217519522425435,0.212081931033913,0.212223539709375,0.211482884795658],&#34;lat&#34;:[51.6269181642722,51.626760167579,51.621760167579,51.621760167579,51.626760167579,51.6299112351234,51.6290902345432,51.6271838248652,51.6269761167921,51.6269181642722]}]],[[{&#34;lng&#34;:[0.229702151351504,0.228712183798927,0.231598935144875,0.237372437836771,0.23843128511844,0.237324087743332,0.229702151351504],&#34;lat&#34;:[51.6284749738325,51.626760167579,51.621760167579,51.621760167579,51.6235942810621,51.6240704995855,51.6284749738325]}]],[[{&#34;lng&#34;:[-0.498426447586157,-0.495985093157607,-0.496154611847275,-0.497246971993262,-0.499282735839721,-0.499732268723581,-0.50032813555172,-0.498426447586157],&#34;lat&#34;:[51.6273191721094,51.6315476876491,51.6317002183276,51.6316539476743,51.6304768590781,51.6293325525179,51.6289193322361,51.6273191721094]}]],[[{&#34;lng&#34;:[-0.348809221122052,-0.348638085390699,-0.342864582698802,-0.340817951945952,-0.345129748208723,-0.348809221122052],&#34;lat&#34;:[51.6270566160694,51.626760167579,51.626760167579,51.6303051570342,51.6283271604687,51.6270566160694]}]],[[{&#34;lng&#34;:[-0.333388538965197,-0.334204328660958,-0.33131757731501,-0.325544074623114,-0.322657323277166,-0.325544074623114,-0.326369016234183,-0.326570175562788,-0.3300068605213,-0.332479701735276,-0.332995284541322,-0.333112986782057,-0.333388538965197],&#34;lat&#34;:[51.633173275704,51.631760167579,51.626760167579,51.626760167579,51.631760167579,51.636760167579,51.6367601849154,51.6367154548168,51.6353319232454,51.6338231545245,51.633832261978,51.6333807550954,51.633173275704]}]],[[{&#34;lng&#34;:[-0.316883820585269,-0.313997069239321,-0.308223566547425,-0.305336815201477,-0.308223566547425,-0.313997069239321,-0.316883820585269],&#34;lat&#34;:[51.631760167579,51.626760167579,51.626760167579,51.631760167579,51.636760167579,51.636760167579,51.631760167579]}]],[[{&#34;lng&#34;:[-0.29727021637127,-0.299563312509581,-0.296676561163633,-0.290903058471736,-0.288016307125788,-0.290743974403754,-0.291891341977742,-0.294406530454578,-0.296151100386466,-0.29723274881454,-0.29727021637127],&#34;lat&#34;:[51.6357320224168,51.631760167579,51.626760167579,51.626760167579,51.6317601675789,51.6364846564334,51.6364750546131,51.6356465923886,51.6354434990724,51.6357316449859,51.6357320224168]}]],[[{&#34;lng&#34;:[-0.282242804433892,-0.279356053087944,-0.273582550396047,-0.270695799050099,-0.273582550396047,-0.279356053087944,-0.282242804433892],&#34;lat&#34;:[51.631760167579,51.626760167579,51.626760167579,51.631760167579,51.636760167579,51.636760167579,51.631760167579]}]],[[{&#34;lng&#34;:[-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.253375290974411,-0.256262042320359,-0.262035545012255,-0.264922296358203],&#34;lat&#34;:[51.631760167579,51.626760167579,51.626760167579,51.631760167579,51.636760167579,51.636760167579,51.631760167579]}]],[[{&#34;lng&#34;:[-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514],&#34;lat&#34;:[51.631760167579,51.626760167579,51.626760167579,51.631760167579,51.636760167579,51.636760167579,51.631760167579]}]],[[{&#34;lng&#34;:[-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826],&#34;lat&#34;:[51.631760167579,51.626760167579,51.626760167579,51.631760167579,51.636760167579,51.636760167579,51.631760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.631760167579,51.626760167579,51.626760167579,51.631760167579,51.636760167579,51.636760167579,51.631760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.631760167579,51.626760167579,51.626760167579,51.6317601675789,51.636760167579,51.636760167579,51.631760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.631760167579,51.626760167579,51.626760167579,51.631760167579,51.636760167579,51.636760167579,51.631760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.6317601675789,51.626760167579,51.626760167579,51.631760167579,51.636760167579,51.636760167579,51.6317601675789]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.631760167579,51.626760167579,51.626760167579,51.631760167579,51.636760167579,51.636760167579,51.631760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.631760167579,51.626760167579,51.626760167579,51.631760167579,51.636760167579,51.636760167579,51.631760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.631760167579,51.626760167579,51.626760167579,51.631760167579,51.636760167579,51.636760167579,51.631760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.631760167579,51.626760167579,51.626760167579,51.631760167579,51.636760167579,51.636760167579,51.631760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256265,-0.0715099561796784,-0.0657364534877822,-0.0628497021418341,-0.0657364534877822,-0.0715099561796784,-0.0743967075256265],&#34;lat&#34;:[51.631760167579,51.626760167579,51.626760167579,51.631760167579,51.636760167579,51.636760167579,51.631760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.631760167579,51.626760167579,51.626760167579,51.631760167579,51.636760167579,51.636760167579,51.631760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.631760167579,51.626760167579,51.626760167579,51.631760167579,51.636760167579,51.636760167579,51.631760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.631760167579,51.626760167579,51.626760167579,51.631760167579,51.636760167579,51.636760167579,51.631760167579]}]],[[{&#34;lng&#34;:[-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.0064323301609211,0.00354557881497297,-0.00222792387692328,-0.0051146752228714],&#34;lat&#34;:[51.631760167579,51.626760167579,51.626760167579,51.631760167579,51.636760167579,51.636760167579,51.631760167579]}]],[[{&#34;lng&#34;:[0.0223875298880745,0.0237528382366098,0.0208660868906617,0.0150925841987655,0.0122058328528173,0.0150925841987655,0.0208660868906617,0.0220039166200564,0.021792666585055,0.0223875298880745],&#34;lat&#34;:[51.6293955303431,51.631760167579,51.636760167579,51.636760167579,51.631760167579,51.626760167579,51.626760167579,51.6287310865326,51.6288313812139,51.6293955303431]}]],[[{&#34;lng&#34;:[0.209464342155508,0.211391675723238,0.211482884795658,0.209464342155508],&#34;lat&#34;:[51.6267601990621,51.626760167579,51.6269181642722,51.6267601990621]}]],[[{&#34;lng&#34;:[0.221119490323931,0.222938681107031,0.228712183798927,0.229702151351504,0.224060114329697,0.222049345374881,0.221119490323931],&#34;lat&#34;:[51.6299112351234,51.626760167579,51.626760167579,51.6284749738325,51.6317344587599,51.6301232730569,51.6299112351234]}]],[[{&#34;lng&#34;:[-0.335265161690378,-0.334204328660958,-0.333388538965197,-0.335265161690378],&#34;lat&#34;:[51.6317601888109,51.631760167579,51.633173275704,51.6317601888109]}]],[[{&#34;lng&#34;:[-0.325422577319321,-0.325544074623114,-0.322657323277166,-0.316883820585269,-0.313997069239321,-0.316036899817427,-0.316696258017078,-0.318087180465283,-0.319816746700234,-0.325422577319321],&#34;lat&#34;:[51.636970630736,51.636760167579,51.631760167579,51.631760167579,51.636760167579,51.6402933794006,51.640531746276,51.6399285208528,51.638216921524,51.636970630736]}]],[[{&#34;lng&#34;:[-0.307674470253553,-0.308223566547425,-0.305336815201477,-0.299563312509581,-0.29727021637127,-0.299877659328998,-0.302436429445725,-0.302746619555271,-0.303569681396725,-0.30448279040016,-0.305401060956061,-0.307674470253553],&#34;lat&#34;:[51.6377113206279,51.636760167579,51.631760167579,51.631760167579,51.6357320224168,51.6357582592931,51.636351000434,51.6361325045005,51.6364582341113,51.6363473273778,51.6371042281621,51.6377113206279]}]],[[{&#34;lng&#34;:[-0.290743974403754,-0.288016307125788,-0.282242804433892,-0.279356053087944,-0.280264253431631,-0.281414709088311,-0.283898038821613,-0.285523958862596,-0.287810599189582,-0.290743974403754],&#34;lat&#34;:[51.6364846564334,51.6317601675789,51.631760167579,51.636760167579,51.6383333432257,51.6383427330736,51.6377918517667,51.6369451732879,51.6365091537213,51.6364846564334]}]],[[{&#34;lng&#34;:[-0.273582550396047,-0.270695799050099,-0.264922296358203,-0.262035545012255,-0.264922296358203,-0.270695799050099,-0.273582550396047],&#34;lat&#34;:[51.636760167579,51.631760167579,51.631760167579,51.636760167579,51.641760167579,51.641760167579,51.636760167579]}]],[[{&#34;lng&#34;:[-0.256262042320359,-0.253375290974411,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.253375290974411,-0.256262042320359],&#34;lat&#34;:[51.636760167579,51.631760167579,51.631760167579,51.636760167579,51.641760167579,51.641760167579,51.636760167579]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.636760167579,51.631760167579,51.631760167579,51.636760167579,51.641760167579,51.641760167579,51.636760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.636760167579,51.631760167579,51.631760167579,51.636760167579,51.641760167579,51.641760167579,51.636760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.636760167579,51.631760167579,51.631760167579,51.636760167579,51.641760167579,51.641760167579,51.636760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.636760167579,51.6317601675789,51.631760167579,51.636760167579,51.641760167579,51.641760167579,51.636760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.636760167579,51.631760167579,51.6317601675789,51.636760167579,51.641760167579,51.641760167579,51.636760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.636760167579,51.631760167579,51.631760167579,51.636760167579,51.641760167579,51.641760167579,51.636760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.636760167579,51.631760167579,51.631760167579,51.636760167579,51.641760167579,51.641760167579,51.636760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.636760167579,51.631760167579,51.631760167579,51.636760167579,51.641760167579,51.641760167579,51.636760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.636760167579,51.631760167579,51.631760167579,51.636760167579,51.641760167579,51.641760167579,51.636760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256265,-0.0715099561796784,-0.0743967075256265,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.636760167579,51.631760167579,51.631760167579,51.636760167579,51.641760167579,51.641760167579,51.636760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.0628497021418341,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.062849702141834,-0.0657364534877822],&#34;lat&#34;:[51.636760167579,51.631760167579,51.631760167579,51.636760167579,51.641760167579,51.641760167579,51.636760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.636760167579,51.631760167579,51.631760167579,51.636760167579,51.641760167579,51.641760167579,51.636760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.636760167579,51.631760167579,51.631760167579,51.636760167579,51.641760167579,51.641760167579,51.636760167579]}]],[[{&#34;lng&#34;:[-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00222792387692328,-0.0051146752228714,-0.0108881779147678,-0.0137749292607159],&#34;lat&#34;:[51.636760167579,51.631760167579,51.631760167579,51.636760167579,51.641760167579,51.641760167579,51.636760167579]}]],[[{&#34;lng&#34;:[0.00632490335029322,0.00354557881497297,0.0064323301609211,0.0122058328528173,0.0150925841987655,0.0126389343145509,0.009872331614031,0.00632490335029322],&#34;lat&#34;:[51.641574119904,51.636760167579,51.631760167579,51.631760167579,51.636760167579,51.6410100886542,51.6414484121518,51.641574119904]}]],[[{&#34;lng&#34;:[0.0228004291310424,0.0208660868906617,0.0237528382366098,0.0241300989280492,0.024303304799903,0.025712353684839,0.025198016081193,0.024686065730683,0.025132824594881,0.023056424011497,0.0228004291310424],&#34;lat&#34;:[51.6401106763161,51.636760167579,51.631760167579,51.6317601762248,51.6323878398886,51.6345639835678,51.6352482170987,51.6360501819494,51.6372879435626,51.6377167370411,51.6401106763161]}]],[[{&#34;lng&#34;:[-0.326369016234183,-0.325544074623114,-0.325422577319321,-0.326369016234183],&#34;lat&#34;:[51.6367601849154,51.636760167579,51.636970630736,51.6367601849154]}]],[[{&#34;lng&#34;:[-0.316036899817427,-0.313997069239321,-0.308223566547425,-0.307674470253553,-0.312342456584849,-0.316036899817427],&#34;lat&#34;:[51.6402933794006,51.636760167579,51.636760167579,51.6377113206279,51.6389576737127,51.6402933794006]}]],[[{&#34;lng&#34;:[-0.280264253431631,-0.279356053087944,-0.273582550396047,-0.270695799050099,-0.270884768887103,-0.272890328443708,-0.273145769387599,-0.274200156332072,-0.273737207179567,-0.276498764946926,-0.278636527540239,-0.280264253431631],&#34;lat&#34;:[51.6383333432257,51.636760167579,51.636760167579,51.641760167579,51.6420875088358,51.6420959893698,51.6411906136125,51.6393042781141,51.6386707398024,51.6388650810914,51.6383200387584,51.6383333432257]}]],[[{&#34;lng&#34;:[-0.263182897802143,-0.264922296358203,-0.262035545012255,-0.256262042320359,-0.253375290974411,-0.254583556755809,-0.255482668882167,-0.256196074507972,-0.257356701828146,-0.258406990488976,-0.260736753217297,-0.261628669625178,-0.263182897802143],&#34;lat&#34;:[51.6447730347751,51.641760167579,51.636760167579,51.636760167579,51.641760167579,51.6438530881043,51.6432845865851,51.6434885240244,51.6418286908339,51.6419908743604,51.6426701328614,51.6439889987235,51.6447730347751]}]],[[{&#34;lng&#34;:[-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.244715036936566,-0.247601788282514],&#34;lat&#34;:[51.641760167579,51.636760167579,51.636760167579,51.641760167579,51.646760167579,51.646760167579,51.641760167579]}]],[[{&#34;lng&#34;:[-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826],&#34;lat&#34;:[51.641760167579,51.636760167579,51.636760167579,51.641760167579,51.646760167579,51.646760167579,51.641760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.641760167579,51.636760167579,51.636760167579,51.641760167579,51.646760167579,51.646760167579,51.641760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.641760167579,51.636760167579,51.636760167579,51.641760167579,51.646760167579,51.646760167579,51.641760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.641760167579,51.636760167579,51.636760167579,51.641760167579,51.646760167579,51.646760167579,51.641760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.641760167579,51.636760167579,51.636760167579,51.641760167579,51.646760167579,51.646760167579,51.641760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.641760167579,51.636760167579,51.636760167579,51.641760167579,51.646760167579,51.6467601675789,51.641760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.641760167579,51.636760167579,51.636760167579,51.641760167579,51.646760167579,51.646760167579,51.641760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.641760167579,51.636760167579,51.636760167579,51.641760167579,51.646760167579,51.646760167579,51.641760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.641760167579,51.636760167579,51.636760167579,51.641760167579,51.646760167579,51.646760167579,51.641760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256265,-0.0715099561796784,-0.0657364534877822,-0.062849702141834,-0.0657364534877822,-0.0715099561796784,-0.0743967075256265],&#34;lat&#34;:[51.641760167579,51.636760167579,51.636760167579,51.641760167579,51.646760167579,51.6467601675789,51.641760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.641760167579,51.636760167579,51.636760167579,51.641760167579,51.646760167579,51.646760167579,51.641760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.641760167579,51.636760167579,51.636760167579,51.641760167579,51.646760167579,51.646760167579,51.641760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.641760167579,51.636760167579,51.636760167579,51.641760167579,51.646760167579,51.646760167579,51.641760167579]}]],[[{&#34;lng&#34;:[-0.00431342543380185,-0.0051146752228714,-0.00222792387692328,0.00354557881497297,0.00632490335029322,0.001040835139429,-0.000521067863685,-0.004010467657385,-0.00431342543380185],&#34;lat&#34;:[51.6431480905865,51.641760167579,51.636760167579,51.636760167579,51.641574119904,51.6417611682971,51.6437094624764,51.6427158377997,51.6431480905865]}]],[[{&#34;lng&#34;:[0.0126389343145509,0.0150925841987655,0.0208660868906617,0.0228004291310424,0.022693126146439,0.020053284332212,0.017394210778202,0.0126389343145509],&#34;lat&#34;:[51.6410100886542,51.636760167579,51.636760167579,51.6401106763161,51.6411140461595,51.6404455186994,51.6402565202298,51.6410100886542]}]],[[{&#34;lng&#34;:[-0.270884768887103,-0.270695799050099,-0.264922296358203,-0.263182897802143,-0.26329619049063,-0.264382890809044,-0.265235083914297,-0.266791170997366,-0.268369877869639,-0.268270349143512,-0.270060896543806,-0.270884768887103],&#34;lat&#34;:[51.6420875088358,51.641760167579,51.641760167579,51.6447730347751,51.644830183821,51.6436241749696,51.64401715981,51.6441075873275,51.6438305420511,51.642383115083,51.642084015181,51.6420875088358]}]],[[{&#34;lng&#34;:[-0.254583556755809,-0.253375290974411,-0.247601788282514,-0.244715036936566,-0.247601788282514,-0.25060888852106,-0.251581606927072,-0.254069542064166,-0.254583556755809],&#34;lat&#34;:[51.6438530881043,51.641760167579,51.641760167579,51.646760167579,51.651760167579,51.6517602029027,51.6479492879556,51.6441780860581,51.6438530881043]}]],[[{&#34;lng&#34;:[-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.230281280206826,-0.236054782898722,-0.23894153424467],&#34;lat&#34;:[51.646760167579,51.641760167579,51.641760167579,51.646760167579,51.651760167579,51.651760167579,51.646760167579]}]],[[{&#34;lng&#34;:[-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.218734274823033,-0.221621026168981],&#34;lat&#34;:[51.646760167579,51.641760167579,51.641760167579,51.646760167579,51.651760167579,51.651760167579,51.646760167579]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.646760167579,51.641760167579,51.641760167579,51.646760167579,51.651760167579,51.651760167579,51.646760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.646760167579,51.641760167579,51.641760167579,51.646760167579,51.651760167579,51.651760167579,51.646760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.646760167579,51.641760167579,51.641760167579,51.646760167579,51.651760167579,51.651760167579,51.646760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.646760167579,51.641760167579,51.641760167579,51.6467601675789,51.651760167579,51.651760167579,51.646760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.646760167579,51.641760167579,51.641760167579,51.646760167579,51.651760167579,51.651760167579,51.646760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.646760167579,51.641760167579,51.641760167579,51.646760167579,51.651760167579,51.651760167579,51.646760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.646760167579,51.641760167579,51.641760167579,51.646760167579,51.651760167579,51.651760167579,51.646760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256265,-0.0715099561796784,-0.0743967075256265,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.646760167579,51.641760167579,51.641760167579,51.6467601675789,51.651760167579,51.651760167579,51.646760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.062849702141834,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.0628497021418341,-0.0657364534877822],&#34;lat&#34;:[51.646760167579,51.641760167579,51.641760167579,51.646760167579,51.651760167579,51.651760167579,51.646760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.646760167579,51.641760167579,51.641760167579,51.646760167579,51.651760167579,51.651760167579,51.646760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.646760167579,51.641760167579,51.641760167579,51.646760167579,51.651760167579,51.651760167579,51.646760167579]}]],[[{&#34;lng&#34;:[-0.0118463982113625,-0.0137749292607159,-0.0108881779147678,-0.0051146752228714,-0.00431342543380185,-0.004585809099184,-0.006683318691572,-0.008217798853762,-0.008472224252534,-0.007370157644026,-0.009240439825836,-0.012286059759774,-0.011863608005961,-0.0118463982113625],&#34;lat&#34;:[51.6501006114805,51.646760167579,51.641760167579,51.641760167579,51.6431480905865,51.643536713274,51.643332236357,51.643607409101,51.6444965879544,51.6461603753661,51.6465266211365,51.6462275052366,51.6488461442247,51.6501006114805]}]],[[{&#34;lng&#34;:[-0.245028735824686,-0.247601788282514,-0.244715036936566,-0.23894153424467,-0.236054782898722,-0.23894153424467,-0.243322269019137,-0.243649557328684,-0.245028735824686],&#34;lat&#34;:[51.6562168820182,51.651760167579,51.646760167579,51.646760167579,51.651760167579,51.656760167579,51.6567601934856,51.6566855026178,51.6562168820182]}]],[[{&#34;lng&#34;:[-0.230281280206826,-0.227394528860877,-0.221621026168981,-0.218734274823033,-0.221621026168981,-0.227394528860877,-0.230281280206826],&#34;lat&#34;:[51.651760167579,51.646760167579,51.646760167579,51.651760167579,51.656760167579,51.656760167579,51.651760167579]}]],[[{&#34;lng&#34;:[-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.210074020785189,-0.212960772131137],&#34;lat&#34;:[51.651760167579,51.646760167579,51.646760167579,51.651760167579,51.656760167579,51.656760167579,51.651760167579]}]],[[{&#34;lng&#34;:[-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.1927535127095,-0.195640264055448],&#34;lat&#34;:[51.651760167579,51.646760167579,51.646760167579,51.651760167579,51.656760167579,51.656760167579,51.651760167579]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.651760167579,51.646760167579,51.646760167579,51.651760167579,51.656760167579,51.656760167579,51.651760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.651760167579,51.646760167579,51.646760167579,51.651760167579,51.656760167579,51.656760167579,51.651760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.651760167579,51.6467601675789,51.646760167579,51.651760167579,51.656760167579,51.656760167579,51.651760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.651760167579,51.646760167579,51.646760167579,51.651760167579,51.656760167579,51.656760167579,51.651760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.651760167579,51.646760167579,51.646760167579,51.651760167579,51.656760167579,51.656760167579,51.651760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.651760167579,51.646760167579,51.646760167579,51.651760167579,51.656760167579,51.656760167579,51.651760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256265,-0.0715099561796784,-0.0657364534877822,-0.0628497021418341,-0.0657364534877822,-0.0715099561796784,-0.0743967075256265],&#34;lat&#34;:[51.651760167579,51.6467601675789,51.646760167579,51.651760167579,51.656760167579,51.656760167579,51.651760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.651760167579,51.646760167579,51.646760167579,51.651760167579,51.656760167579,51.656760167579,51.651760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.651760167579,51.646760167579,51.646760167579,51.651760167579,51.656760167579,51.656760167579,51.651760167579]}]],[[{&#34;lng&#34;:[-0.0117319236485262,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0118463982113625,-0.01180615347891,-0.0117319236485262],&#34;lat&#34;:[51.6532216994777,51.656760167579,51.656760167579,51.651760167579,51.646760167579,51.646760167579,51.6501006114805,51.6530338850144,51.6532216994777]}]],[[{&#34;lng&#34;:[-0.25060888852106,-0.247601788282514,-0.245028735824686,-0.247890445044912,-0.249372843196432,-0.250607580776796,-0.251275194655554,-0.250816081366557,-0.249881014467722,-0.25060888852106],&#34;lat&#34;:[51.6517602029027,51.651760167579,51.6562168820182,51.6552444410992,51.6560542752769,51.6560538360175,51.6555359311256,51.6548061090629,51.6546114426053,51.6517602029027]}]],[[{&#34;lng&#34;:[-0.238428604310789,-0.23894153424467,-0.236054782898722,-0.230281280206826,-0.227394528860877,-0.229200956280845,-0.234252171634084,-0.234732000122398,-0.236702718738517,-0.238032642820365,-0.238184611979249,-0.237995889284315,-0.238428604310789],&#34;lat&#34;:[51.6576486740658,51.656760167579,51.651760167579,51.651760167579,51.656760167579,51.6598891291306,51.6582495148275,51.6589976788043,51.6587718924961,51.6583345403486,51.6580713089732,51.6577860273962,51.6576486740658]}]],[[{&#34;lng&#34;:[-0.219293811582781,-0.221621026168981,-0.218734274823033,-0.212960772131137,-0.210074020785189,-0.212960772131137,-0.21487773946703,-0.218919552994879,-0.219272297173259,-0.219293811582781],&#34;lat&#34;:[51.6607911132148,51.656760167579,51.651760167579,51.651760167579,51.656760167579,51.661760167579,51.6617601989681,51.6600582859223,51.6607965204993,51.6607911132148]}]],[[{&#34;lng&#34;:[-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.1927535127095,-0.195640264055448,-0.201413766747344,-0.204300518093292],&#34;lat&#34;:[51.656760167579,51.651760167579,51.651760167579,51.656760167579,51.661760167579,51.661760167579,51.656760167579]}]],[[{&#34;lng&#34;:[-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178319755979759,-0.184093258671655,-0.186980010017604],&#34;lat&#34;:[51.656760167579,51.651760167579,51.651760167579,51.656760167579,51.661760167579,51.661760167579,51.656760167579]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.656760167579,51.651760167579,51.651760167579,51.656760167579,51.661760167579,51.661760167579,51.656760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.656760167579,51.651760167579,51.651760167579,51.656760167579,51.661760167579,51.661760167579,51.656760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.656760167579,51.651760167579,51.651760167579,51.656760167579,51.661760167579,51.661760167579,51.656760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.656760167579,51.651760167579,51.651760167579,51.656760167579,51.661760167579,51.661760167579,51.656760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.656760167579,51.651760167579,51.651760167579,51.656760167579,51.661760167579,51.661760167579,51.656760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256265,-0.0715099561796784,-0.0743967075256265,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.656760167579,51.651760167579,51.651760167579,51.656760167579,51.661760167579,51.661760167579,51.656760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.0628497021418341,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.062849702141834,-0.0657364534877822],&#34;lat&#34;:[51.656760167579,51.651760167579,51.651760167579,51.656760167579,51.661760167579,51.661760167579,51.656760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661453,-0.0484159454120934],&#34;lat&#34;:[51.656760167579,51.651760167579,51.651760167579,51.656760167579,51.661760167579,51.661760167579,51.656760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.656760167579,51.651760167579,51.651760167579,51.656760167579,51.661760167579,51.661760167579,51.656760167579]}]],[[{&#34;lng&#34;:[-0.00984962902939188,-0.0108881779147678,-0.0137749292607159,-0.0117319236485262,-0.008967220661666,-0.009111844729794,-0.00984962902939188],&#34;lat&#34;:[51.661760188458,51.661760167579,51.656760167579,51.6532216994777,51.6602157401938,51.6610068171891,51.661760188458]}]],[[{&#34;lng&#34;:[-0.243322269019137,-0.23894153424467,-0.238428604310789,-0.239224080647552,-0.241018359665701,-0.241390105079997,-0.243322269019137],&#34;lat&#34;:[51.6567601934856,51.656760167579,51.6576486740658,51.6573961659427,51.6568322603669,51.6572011114425,51.6567601934856]}],[{&#34;lng&#34;:[-0.238184611979249,-0.238032642820365,-0.238300479810125,-0.238184611979249],&#34;lat&#34;:[51.6580713089732,51.6583345403486,51.6582464579843,51.6580713089732]}]],[[{&#34;lng&#34;:[-0.229200956280845,-0.227394528860877,-0.221621026168981,-0.219293811582781,-0.219825751985473,-0.22606893389799,-0.226487469100941,-0.228082824549635,-0.228513565252172,-0.228944023180731,-0.229200956280845],&#34;lat&#34;:[51.6598891291306,51.656760167579,51.656760167579,51.6607911132148,51.6606574172936,51.6576226175931,51.6571586302369,51.6585882251412,51.6599624088313,51.6599725201343,51.6598891291306]}]],[[{&#34;lng&#34;:[-0.212865652791595,-0.212960772131137,-0.210074020785189,-0.204300518093292,-0.201413766747344,-0.204300518093292,-0.207788340145168,-0.207984216252944,-0.20831229991202,-0.210074020785189,-0.210464893342151,-0.207888570777709,-0.212159976401554,-0.212865652791595],&#34;lat&#34;:[51.6619249378184,51.661760167579,51.656760167579,51.656760167579,51.661760167579,51.666760167579,51.6667602014259,51.6665911395961,51.6667601975861,51.666760167579,51.6660832251874,51.6628579036838,51.6613502670706,51.6619249378184]}]],[[{&#34;lng&#34;:[-0.193790176845825,-0.195640264055448,-0.1927535127095,-0.186980010017604,-0.184093258671655,-0.186980010017604,-0.188733431629694,-0.191091805735527,-0.192555922230272,-0.193790176845825],&#34;lat&#34;:[51.6649647477592,51.661760167579,51.656760167579,51.656760167579,51.661760167579,51.666760167579,51.6667601975065,51.6638934767526,51.6647460057485,51.6649647477592]}]],[[{&#34;lng&#34;:[-0.178319755979759,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169659501941915,-0.175433004633811,-0.178319755979759],&#34;lat&#34;:[51.661760167579,51.656760167579,51.656760167579,51.661760167579,51.666760167579,51.666760167579,51.661760167579]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.661760167579,51.656760167579,51.656760167579,51.661760167579,51.666760167579,51.666760167579,51.661760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.661760167579,51.656760167579,51.656760167579,51.661760167579,51.666760167579,51.666760167579,51.661760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.661760167579,51.656760167579,51.656760167579,51.661760167579,51.666760167579,51.666760167579,51.661760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.661760167579,51.656760167579,51.656760167579,51.661760167579,51.666760167579,51.666760167579,51.661760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.661760167579,51.656760167579,51.656760167579,51.661760167579,51.666760167579,51.666760167579,51.661760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256265,-0.0715099561796784,-0.0657364534877822,-0.062849702141834,-0.0657364534877822,-0.0715099561796784,-0.0743967075256265],&#34;lat&#34;:[51.661760167579,51.656760167579,51.656760167579,51.661760167579,51.666760167579,51.666760167579,51.661760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661453,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.661760167579,51.656760167579,51.656760167579,51.661760167579,51.666760167579,51.666760167579,51.661760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.661760167579,51.656760167579,51.656760167579,51.661760167579,51.666760167579,51.666760167579,51.661760167579]}]],[[{&#34;lng&#34;:[-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0108881779147678,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602],&#34;lat&#34;:[51.661760167579,51.656760167579,51.656760167579,51.661760167579,51.666760167579,51.666760167579,51.661760167579]}]],[[{&#34;lng&#34;:[-0.21487773946703,-0.212960772131137,-0.212865652791595,-0.213418052151492,-0.21487773946703],&#34;lat&#34;:[51.6617601989681,51.661760167579,51.6619249378184,51.6623747736044,51.6617601989681]}],[{&#34;lng&#34;:[-0.210464893342151,-0.210074020785189,-0.210392202493238,-0.211158584580118,-0.210464893342151],&#34;lat&#34;:[51.6660832251874,51.666760167579,51.6673113320599,51.6669515754227,51.6660832251874]}]],[[{&#34;lng&#34;:[-0.20352731595674,-0.204300518093292,-0.201413766747344,-0.195640264055448,-0.193790176845825,-0.196689845540149,-0.194877102617772,-0.196184186238096,-0.196639033126387,-0.199029941683701,-0.199896415057531,-0.202351578479468,-0.202752531505916,-0.202633177245632,-0.202254747091287,-0.20352731595674],&#34;lat&#34;:[51.6680995081312,51.666760167579,51.661760167579,51.661760167579,51.6649647477592,51.6654785852452,51.6683021638912,51.6685263523423,51.6681431191557,51.6682031779589,51.6701668530256,51.6701359588126,51.669441505042,51.6693113718915,51.6678020550898,51.6680995081312]}]],[[{&#34;lng&#34;:[-0.186003975654294,-0.186980010017604,-0.184093258671655,-0.178319755979759,-0.175433004633811,-0.178028615279247,-0.182110430863918,-0.185829298055553,-0.186003975654294],&#34;lat&#34;:[51.6684508401125,51.666760167579,51.661760167579,51.661760167579,51.666760167579,51.6712559503461,51.6686007271123,51.6685062722698,51.6684508401125]}]],[[{&#34;lng&#34;:[-0.169659501941915,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.166772750595967,-0.169659501941915],&#34;lat&#34;:[51.666760167579,51.661760167579,51.661760167579,51.666760167579,51.671760167579,51.671760167579,51.666760167579]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.666760167579,51.661760167579,51.661760167579,51.666760167579,51.671760167579,51.671760167579,51.666760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.666760167579,51.661760167579,51.661760167579,51.666760167579,51.671760167579,51.671760167579,51.666760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.666760167579,51.661760167579,51.661760167579,51.666760167579,51.671760167579,51.671760167579,51.666760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.666760167579,51.661760167579,51.661760167579,51.666760167579,51.671760167579,51.671760167579,51.666760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256265,-0.0715099561796784,-0.0743967075256265,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.666760167579,51.661760167579,51.661760167579,51.666760167579,51.671760167579,51.671760167579,51.666760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.062849702141834,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.0628497021418341,-0.0657364534877822],&#34;lat&#34;:[51.666760167579,51.661760167579,51.661760167579,51.666760167579,51.671760167579,51.671760167579,51.666760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661453,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661452,-0.0484159454120934],&#34;lat&#34;:[51.666760167579,51.661760167579,51.661760167579,51.666760167579,51.671760167579,51.671760167579,51.666760167579]}]],[[{&#34;lng&#34;:[-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0224351832985602,-0.0282086859904565,-0.0310954373364046],&#34;lat&#34;:[51.666760167579,51.661760167579,51.661760167579,51.666760167579,51.671760167579,51.671760167579,51.666760167579]}]],[[{&#34;lng&#34;:[-0.0113940391546661,-0.0137749292607159,-0.0108881779147678,-0.00984962902939188,-0.009857805366584,-0.011520344880568,-0.011244869620282,-0.010584895914227,-0.011397079536029,-0.0113940391546661],&#34;lat&#34;:[51.6708840750834,51.666760167579,51.661760167579,51.661760188458,51.6617685373682,51.6638892277732,51.6676038480257,51.6691348608798,51.6706998323674,51.6708840750834]}]],[[{&#34;lng&#34;:[-0.210392202493238,-0.210074020785189,-0.20831229991202,-0.209863525930394,-0.210392202493238],&#34;lat&#34;:[51.6673113320599,51.666760167579,51.6667601975861,51.6675594982497,51.6673113320599]}],[{&#34;lng&#34;:[-0.207788340145168,-0.204300518093292,-0.20352731595674,-0.205659193317507,-0.207788340145168],&#34;lat&#34;:[51.6667602014259,51.666760167579,51.6680995081312,51.6685977782606,51.6667602014259]}],[{&#34;lng&#34;:[-0.202752531505916,-0.202351578479468,-0.203377621319877,-0.202752531505916],&#34;lat&#34;:[51.669441505042,51.6701359588126,51.6701230325658,51.669441505042]}]],[[{&#34;lng&#34;:[-0.188733431629694,-0.186980010017604,-0.186003975654294,-0.187815422136092,-0.188733431629694],&#34;lat&#34;:[51.6667601975065,51.666760167579,51.6684508401125,51.6678759727431,51.6667601975065]}]],[[{&#34;lng&#34;:[-0.178028615279247,-0.175433004633811,-0.169659501941915,-0.166772750595967,-0.169411339547896,-0.172498225390871,-0.174983712350563,-0.175354646308706,-0.175682903082192,-0.175465743557385,-0.176410935284834,-0.177031364961599,-0.176736562169816,-0.178028615279247],&#34;lat&#34;:[51.6712559503461,51.666760167579,51.666760167579,51.671760167579,51.6763303838546,51.6730879354344,51.6732119982328,51.6734461951892,51.6731599331416,51.6725891591255,51.6726415920774,51.6726763987491,51.6720963372544,51.6712559503461]}]],[[{&#34;lng&#34;:[-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.152338993866226,-0.158112496558122,-0.16099924790407],&#34;lat&#34;:[51.671760167579,51.666760167579,51.666760167579,51.671760167579,51.676760167579,51.676760167579,51.671760167579]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.671760167579,51.666760167579,51.666760167579,51.671760167579,51.676760167579,51.676760167579,51.671760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.671760167579,51.666760167579,51.666760167579,51.671760167579,51.676760167579,51.676760167579,51.671760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.671760167579,51.666760167579,51.666760167579,51.671760167579,51.676760167579,51.676760167579,51.671760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.671760167579,51.666760167579,51.666760167579,51.671760167579,51.676760167579,51.676760167579,51.671760167579]}]],[[{&#34;lng&#34;:[-0.0743967075256265,-0.0715099561796784,-0.0657364534877822,-0.0628497021418341,-0.0657364534877822,-0.0715099561796784,-0.0743967075256265],&#34;lat&#34;:[51.671760167579,51.666760167579,51.666760167579,51.671760167579,51.676760167579,51.676760167579,51.671760167579]}]],[[{&#34;lng&#34;:[-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661452,-0.0484159454120934,-0.0541894481039896,-0.0570761994499377],&#34;lat&#34;:[51.671760167579,51.666760167579,51.666760167579,51.671760167579,51.676760167579,51.676760167579,51.671760167579]}]],[[{&#34;lng&#34;:[-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0310954373364046,-0.0368689400283009,-0.039755691374249],&#34;lat&#34;:[51.671760167579,51.666760167579,51.666760167579,51.671760167579,51.676760167579,51.676760167579,51.671760167579]}]],[[{&#34;lng&#34;:[-0.0112686605739273,-0.0137749292607159,-0.0195484319526121,-0.0224351832985602,-0.0195484319526121,-0.0137749292607159,-0.0113940391546661,-0.011377007458719,-0.0112686605739273],&#34;lat&#34;:[51.6724192500906,51.676760167579,51.676760167579,51.671760167579,51.666760167579,51.666760167579,51.6708840750834,51.6719161435248,51.6724192500906]}]],[[{&#34;lng&#34;:[-0.169411339547896,-0.166772750595967,-0.16099924790407,-0.158112496558122,-0.16099924790407,-0.164240864181974,-0.169411339547896],&#34;lat&#34;:[51.6763303838546,51.671760167579,51.671760167579,51.676760167579,51.681760167579,51.6817602024209,51.6763303838546]}]],[[{&#34;lng&#34;:[-0.152338993866226,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.143678739828382,-0.149452242520278,-0.152338993866226],&#34;lat&#34;:[51.676760167579,51.671760167579,51.671760167579,51.676760167579,51.681760167579,51.681760167579,51.676760167579]}]],[[{&#34;lng&#34;:[-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.126358231752693,-0.132131734444589,-0.135018485790537],&#34;lat&#34;:[51.676760167579,51.671760167579,51.671760167579,51.676760167579,51.681760167579,51.681760167579,51.676760167579]}]],[[{&#34;lng&#34;:[-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109037723677004,-0.1148112263689,-0.117697977714848],&#34;lat&#34;:[51.676760167579,51.671760167579,51.671760167579,51.676760167579,51.681760167579,51.681760167579,51.676760167579]}]],[[{&#34;lng&#34;:[-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0917172156013153,-0.0974907182932116,-0.10037746963916],&#34;lat&#34;:[51.676760167579,51.671760167579,51.671760167579,51.676760167579,51.681760167579,51.681760167579,51.676760167579]}]],[[{&#34;lng&#34;:[-0.0830569615634709,-0.0801702102175228,-0.0743967075256265,-0.0715099561796784,-0.0743967075256266,-0.0801702102175228,-0.0830569615634709],&#34;lat&#34;:[51.676760167579,51.671760167579,51.671760167579,51.676760167579,51.681760167579,51.681760167579,51.676760167579]}]],[[{&#34;lng&#34;:[-0.0657364534877822,-0.0628497021418341,-0.0570761994499377,-0.0541894481039896,-0.0570761994499377,-0.0628497021418341,-0.0657364534877822],&#34;lat&#34;:[51.676760167579,51.671760167579,51.671760167579,51.676760167579,51.681760167579,51.681760167579,51.676760167579]}]],[[{&#34;lng&#34;:[-0.0484159454120934,-0.0455291940661452,-0.039755691374249,-0.0368689400283009,-0.039755691374249,-0.0455291940661453,-0.0484159454120934],&#34;lat&#34;:[51.676760167579,51.671760167579,51.671760167579,51.676760167579,51.681760167579,51.681760167579,51.676760167579]}]],[[{&#34;lng&#34;:[-0.0242524666623719,-0.0282086859904565,-0.0310954373364046,-0.0282086859904565,-0.0224351832985602,-0.0195484319526121,-0.0222788197132258,-0.0242524666623719],&#34;lat&#34;:[51.6817601981,51.681760167579,51.676760167579,51.671760167579,51.671760167579,51.676760167579,51.6814893680002,51.6817601981]}]],[[{&#34;lng&#34;:[-0.0114022432838151,-0.0137749292607159,-0.0112686605739273,-0.010354830551689,-0.011091928494496,-0.0114022432838151],&#34;lat&#34;:[51.6808698662227,51.676760167579,51.6724192500906,51.6766621527034,51.6808668889925,51.6808698662227]}]],[[{&#34;lng&#34;:[-0.156383153636089,-0.158112496558122,-0.16099924790407,-0.158112496558122,-0.152338993866226,-0.149452242520278,-0.15173800040758,-0.153282950775504,-0.156383153636089],&#34;lat&#34;:[51.6867601972674,51.6867601675789,51.681760167579,51.676760167579,51.676760167579,51.681760167579,51.6857193132279,51.6858540303831,51.6867601972674]}]],[[{&#34;lng&#34;:[-0.143678739828382,-0.140791988482434,-0.135018485790537,-0.132131734444589,-0.135018485790537,-0.140791988482434,-0.143678739828382],&#34;lat&#34;:[51.681760167579,51.676760167579,51.676760167579,51.681760167579,51.686760167579,51.686760167579,51.681760167579]}]],[[{&#34;lng&#34;:[-0.126358231752693,-0.123471480406745,-0.117697977714848,-0.1148112263689,-0.117697977714848,-0.123471480406745,-0.126358231752693],&#34;lat&#34;:[51.681760167579,51.676760167579,51.676760167579,51.681760167579,51.686760167579,51.686760167579,51.681760167579]}]],[[{&#34;lng&#34;:[-0.109037723677004,-0.106150972331056,-0.10037746963916,-0.0974907182932116,-0.10037746963916,-0.106150972331056,-0.109037723677004],&#34;lat&#34;:[51.681760167579,51.676760167579,51.676760167579,51.681760167579,51.686760167579,51.686760167579,51.681760167579]}]],[[{&#34;lng&#34;:[-0.0917172156013153,-0.0888304642553672,-0.0830569615634709,-0.0801702102175228,-0.0830569615634709,-0.0888304642553672,-0.0917172156013153],&#34;lat&#34;:[51.681760167579,51.676760167579,51.676760167579,51.681760167579,51.686760167579,51.686760167579,51.681760167579]}]],[[{&#34;lng&#34;:[-0.0719310167544359,-0.0743967075256266,-0.0715099561796784,-0.0657364534877822,-0.0628497021418341,-0.0637870651683649,-0.067210630225026,-0.0719310167544359],&#34;lat&#34;:[51.6860309424685,51.681760167579,51.676760167579,51.676760167579,51.681760167579,51.683383856804,51.6841265718554,51.6860309424685]}]],[[{&#34;lng&#34;:[-0.0563507071747201,-0.0570761994499377,-0.0541894481039896,-0.0484159454120934,-0.0455291940661453,-0.0465035334423484,-0.047186229437544,-0.048345765145754,-0.048955999751019,-0.049206777759146,-0.051720880789279,-0.0563507071747201],&#34;lat&#34;:[51.6830168676156,51.681760167579,51.676760167579,51.676760167579,51.681760167579,51.6834479042623,51.6834527380911,51.68407448589,51.6840468709085,51.6842695286083,51.6835325227596,51.6830168676156]}]],[[{&#34;lng&#34;:[-0.0391396355048518,-0.039755691374249,-0.0368689400283009,-0.0310954373364046,-0.0282086859904565,-0.0285399851780082,-0.033418421262385,-0.0391396355048518],&#34;lat&#34;:[51.6828273062778,51.681760167579,51.676760167579,51.676760167579,51.681760167579,51.6823340542988,51.6824919278153,51.6828273062778]}]],[[{&#34;lng&#34;:[-0.0222788197132258,-0.0195484319526121,-0.0137749292607159,-0.0114022432838151,-0.011945089944995,-0.019797948207927,-0.0222788197132258],&#34;lat&#34;:[51.6814893680002,51.676760167579,51.676760167579,51.6808698662227,51.6808750724493,51.6811488834261,51.6814893680002]}]],[[{&#34;lng&#34;:[-0.164240864181974,-0.16099924790407,-0.158112496558122,-0.158425636190703,-0.163517981975768,-0.163528611446178,-0.16363192788258,-0.164240864181974],&#34;lat&#34;:[51.6817602024209,51.681760167579,51.6867601675789,51.6873025981653,51.688111490664,51.6859193298128,51.6823995813988,51.6817602024209]}]],[[{&#34;lng&#34;:[-0.15173800040758,-0.149452242520278,-0.143678739828382,-0.140791988482434,-0.141177527886183,-0.144683146084252,-0.149395109470584,-0.15173800040758],&#34;lat&#34;:[51.6857193132279,51.681760167579,51.681760167579,51.686760167579,51.6874280094189,51.6863317631042,51.6855149767577,51.6857193132279]}]],[[{&#34;lng&#34;:[-0.13385243222478,-0.135018485790537,-0.132131734444589,-0.126358231752693,-0.123471480406745,-0.124562945572318,-0.130274783970779,-0.13385243222478],&#34;lat&#34;:[51.6887799730905,51.686760167579,51.681760167579,51.681760167579,51.686760167579,51.6886507788824,51.6889124751336,51.6887799730905]}]],[[{&#34;lng&#34;:[-0.115975319424689,-0.117697977714848,-0.1148112263689,-0.109037723677004,-0.106150972331056,-0.109009322562669,-0.10977464041423,-0.109646224135032,-0.112922339921829,-0.115975319424689],&#34;lat&#34;:[51.6897440406735,51.686760167579,51.681760167579,51.681760167579,51.686760167579,51.6917109811304,51.6916723386896,51.691490419247,51.690819202307,51.6897440406735]}]],[[{&#34;lng&#34;:[-0.0980487095769645,-0.10037746963916,-0.0974907182932116,-0.0917172156013153,-0.0888304642553672,-0.0906536162116563,-0.094802812732313,-0.0980487095769645],&#34;lat&#34;:[51.6907937899564,51.686760167579,51.681760167579,51.681760167579,51.686760167579,51.6899180961381,51.6901112569263,51.6907937899564]}]],[[{&#34;lng&#34;:[-0.0815239517648926,-0.0830569615634709,-0.0801702102175228,-0.0743967075256266,-0.0719310167544359,-0.077869619152631,-0.07902094443829,-0.0815239517648926],&#34;lat&#34;:[51.6894155647851,51.686760167579,51.681760167579,51.681760167579,51.6860309424685,51.6884262881499,51.6889118112742,51.6894155647851]}]],[[{&#34;lng&#34;:[-0.0637870651683649,-0.0628497021418341,-0.0570761994499377,-0.0563507071747201,-0.056626624150741,-0.062043341579558,-0.0637870651683649],&#34;lat&#34;:[51.683383856804,51.681760167579,51.681760167579,51.6830168676156,51.6829861307549,51.6830055223038,51.683383856804]}]],[[{&#34;lng&#34;:[-0.0465035334423484,-0.0455291940661453,-0.039755691374249,-0.0391396355048518,-0.043698007778216,-0.043655607108021,-0.044269290146874,-0.0465035334423484],&#34;lat&#34;:[51.6834479042623,51.681760167579,51.681760167579,51.6828273062778,51.6830943162912,51.6833391008012,51.6834320570298,51.6834479042623]}]],[[{&#34;lng&#34;:[-0.0285399851780082,-0.0282086859904565,-0.0242524666623719,-0.028402898221702,-0.0285399851780082],&#34;lat&#34;:[51.6823340542988,51.681760167579,51.6817601981,51.6823296150243,51.6823340542988]}]],[[{&#34;lng&#34;:[-0.158425636190703,-0.158112496558122,-0.156383153636089,-0.158016747557994,-0.158425636190703],&#34;lat&#34;:[51.6873025981653,51.6867601675789,51.6867601972674,51.6872376375417,51.6873025981653]}]],[[{&#34;lng&#34;:[-0.141177527886183,-0.140791988482434,-0.135018485790537,-0.13385243222478,-0.135404209803684,-0.139611110351548,-0.141177527886183],&#34;lat&#34;:[51.6874280094189,51.686760167579,51.686760167579,51.6887799730905,51.6887224673125,51.6879177949473,51.6874280094189]}]],[[{&#34;lng&#34;:[-0.124562945572318,-0.123471480406745,-0.117697977714848,-0.115975319424689,-0.118272802226405,-0.122208397242742,-0.124562945572318],&#34;lat&#34;:[51.6886507788824,51.686760167579,51.686760167579,51.6897440406735,51.6889348549252,51.6885428202943,51.6886507788824]}]],[[{&#34;lng&#34;:[-0.099561465320737,-0.105804730471993,-0.109009322562669,-0.106150972331056,-0.10037746963916,-0.0980487095769645,-0.099561465320737],&#34;lat&#34;:[51.6911118480471,51.6918727327253,51.6917109811304,51.686760167579,51.686760167579,51.6907937899564,51.6911118480471]}]],[[{&#34;lng&#34;:[-0.0906536162116563,-0.0888304642553672,-0.0830569615634709,-0.0815239517648926,-0.084846890449846,-0.090176254423622,-0.0906536162116563],&#34;lat&#34;:[51.6899180961381,51.686760167579,51.686760167579,51.6894155647851,51.6900842376114,51.689895863661,51.6899180961381]}]]],null,&#34;Grid&#34;,{&#34;interactive&#34;:true,&#34;className&#34;:&#34;&#34;,&#34;stroke&#34;:true,&#34;color&#34;:&#34;grey&#34;,&#34;weight&#34;:1,&#34;opacity&#34;:0.5,&#34;fill&#34;:true,&#34;fillColor&#34;:&#34;grey&#34;,&#34;fillOpacity&#34;:0,&#34;smoothFactor&#34;:1,&#34;noClip&#34;:false},null,null,[&#34;🏙️ 🏰 💂&#34;,&#34;🌳 🚇 🥒&#34;,&#34;🔔 🏰 🎡&#34;,&#34;🎡 🐦 🏙️&#34;,&#34;🏟️ 🐦 🌳&#34;,&#34;🏙️ 🥒 🌳&#34;,&#34;🚇 🏰 🐋&#34;,&#34;🏙️ 🐋 🥒&#34;,&#34;👸 👸 🐋&#34;,&#34;🎡 🥒 🔔&#34;,&#34;🏟️ 🏰 🎡&#34;,&#34;🥒 💂 🏰&#34;,&#34;🏟️ 🚇 🥒&#34;,&#34;🚇 🏰 🌳&#34;,&#34;🐦 🎡 🔔&#34;,&#34;🎭 🔔 🎭&#34;,&#34;🚇 🏙️ 🎡&#34;,&#34;🐋 🐉 🏙️&#34;,&#34;🌳 👸 💂&#34;,&#34;👸 🔔 🥒&#34;,&#34;🏙️ 🐋 🎡&#34;,&#34;🚇 🐦 🔔&#34;</description>
    </item>
    
    <item>
      <title>Extract punctuation from books with R</title>
      <link>https://www.rostrum.blog/2021/09/12/extract-punct/</link>
      <pubDate>Sun, 12 Sep 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/09/12/extract-punct/</guid>
      <description>The start of ‘Moby Dick’ by Herman Melville  tl;dr I wrote an R function to extract only the punctuation marks from a provided text. It prints prettily to the console, but you can also take a character vector away for further analysis.
 Punct rock A few years ago Adam J Calhoun did a small but really neat thing: extracted and presented only the punctuation from some books. It appeared again recently in my Twitter timeline.</description>
    </item>
    
    <item>
      <title>Auto-label closing parentheses in RStudio</title>
      <link>https://www.rostrum.blog/2021/08/31/add-biscuits/</link>
      <pubDate>Tue, 31 Aug 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/08/31/add-biscuits/</guid>
      <description>tl;dr I wrote a novelty R function that inserts comments after closing parentheses with the names of the functions they belong to. (These are called biscuits, apparently.) It’s available as an RStudio Addin from the {blogsnip} package.
 Matryoshka functions Shiny apps can involve a lot of nested functions in the UI, which can make them difficult to handle.
Sometimes I comment after a closing parenthesis (‘paren’) with the name of the function that it’s closing, which makes it easier to match the pairs.</description>
    </item>
    
    <item>
      <title>Adding a Shiny app to {dehex}</title>
      <link>https://www.rostrum.blog/2021/08/27/dehex-app/</link>
      <pubDate>Fri, 27 Aug 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/08/27/dehex-app/</guid>
      <description>Use the {dehex} app to generate a random hex code and learn how to interpret it by eye.  tl;dr The {dehex} package now contains a Shiny app that you can use to walk through the process of reading a colour hex code, as per David DeSandro’s method.
 {dehex}cellent In the last post I introduced the R package {dehex}. Its purpose is to help me (you?) look at a colour hex code and be able to ‘read’ roughly what colour it is without resorting to a lookup.</description>
    </item>
    
    <item>
      <title>Exploring R package startup messages</title>
      <link>https://www.rostrum.blog/2021/08/27/zzz/</link>
      <pubDate>Fri, 27 Aug 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/08/27/zzz/</guid>
      <description>tl;dr I got curious about R package startup messages, so I grabbed all the special zzz.R files from R packages that are on CRAN and sourced on GitHub. You can jump to the table of results.
 Start me up I learnt recently from Hernando Cortina that his and Amanda Dobbyn’s {multicolor} package prints to the console some multicoloured ASCII-art text of the package’s name when you call it with library(multicolor).</description>
    </item>
    
    <item>
      <title>Read a hex colour code with {dehex}</title>
      <link>https://www.rostrum.blog/2021/08/10/dehex/</link>
      <pubDate>Tue, 10 Aug 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/08/10/dehex/</guid>
      <description>tl;dr I wrote an R package, {dehex}, that helps you learn to ‘read’ a hex colour code by eye according to David DeSandro’s method. Check out his mindblowing talk.
 Hue are you? Hex codes are used in computing to encode a colour as a succinct six-digit alphanumeric string, like #F4D82A.
These codes are written in hexadecimal (hence ‘hex’): they can take the characters 0 to 9 and A to F, which encodes 16 possible values.</description>
    </item>
    
    <item>
      <title>OG emoji SVGs</title>
      <link>https://www.rostrum.blog/2021/07/31/og-emoji-svg/</link>
      <pubDate>Sat, 31 Jul 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/07/31/og-emoji-svg/</guid>
      <description>tl;dr I wrote code to produce SVG versions of the ‘first-ever’ emoji set. Using R, I scraped Emojipedia with the {polite} package and then handled images with {png}, {magick} and {svglite}.
 Important archival work I posted recently on creating ‘pixel art’ in R and have since stumbled upon an old post by mikefc on the coolbutuseless blog with a method that makes it easier to convert from an image to its ‘pixels’.</description>
    </item>
    
    <item>
      <title>Make an art gallery with {bs4cards}</title>
      <link>https://www.rostrum.blog/2021/07/25/faxcrayon/</link>
      <pubDate>Sun, 25 Jul 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/07/25/faxcrayon/</guid>
      <description>Design is, like, a process, so the page may change, y’know?  tl;dr I used the {bs4cards} package by Danielle Navarro to create an effortless online ‘gallery’ of ‘art’ on a single R Markdown page: faxcrayon.art.
 Art is a lie Turns out you can just put up some pictures on the internet and call it a gallery. No one is stopping you.
Here is a foolproof approach: R Markdown with {bs4cards} to write the content, GitHub Pages to serve it, and a totally rad URL to convince people you’re legit.</description>
    </item>
    
    <item>
      <title>What colour is London?</title>
      <link>https://www.rostrum.blog/2021/07/23/london-colour/</link>
      <pubDate>Fri, 23 Jul 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/07/23/london-colour/</guid>
      <description>tl;dr I used the {rtweet} and {magick} R packages to fetch tweets of random satellite images of London and then reduced each one to a single representative colour.
 Green/grey belt I created the @londonmapbot Twitter bot to tweet out satellite images of random points in Greater London. You can read earlier posts about how it was made and how I mapped the points interactively.
I figured we could sample these to get to ‘the colours of London’, which can be mapped or tiled.</description>
    </item>
    
    <item>
      <title>EXPOSED: a Kiwi conspiracy built into R!</title>
      <link>https://www.rostrum.blog/2021/07/15/dollar-dollar/</link>
      <pubDate>Thu, 15 Jul 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/07/15/dollar-dollar/</guid>
      <description>Kiwi by Georgiana Ionescu. Laser embellishment in honour of Lucy Gray’s flag.  tl;dr R’s $ data accessor symbol is part of an international ruse. I wrote a function so you can use your local currency symbol instead.
 Pull the wool from your eyes You’re an R user, so you’ll know how to access the contents of a quoted column name from a dataframe with square-bracket notation.
mtcars[[&amp;quot;cyl&amp;quot;]] ## [1] 6 6 4 6 8 6 8 4 4 6 6 8 8 8 8 8 8 4 4 4 4 8 8 8 8 4 4 4 8 6 8 4 The dollar symbol ($) does the same thing, of course, in the form dataframe$column.</description>
    </item>
    
    <item>
      <title>Decay is inevitable, accept {linkrot}?</title>
      <link>https://www.rostrum.blog/2021/07/10/linkrot/</link>
      <pubDate>Sat, 10 Jul 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/07/10/linkrot/</guid>
      <description>tl;dr I wrote a little function to check web pages for link rot and put it in the tiny R package {linkrot} in case you want to use or improve it.
 Page not found You’ve clicked a link before and been taken somewhere you weren’t expecting. Sometimes it’s because you’ve been rickrolled,1 sure, but content on the internet is constantly being moved or removed and links break all the time.</description>
    </item>
    
    <item>
      <title>#RecreationThursday: a LeWitt Shiny app</title>
      <link>https://www.rostrum.blog/2021/07/05/recreate-lewitt/</link>
      <pubDate>Mon, 05 Jul 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/07/05/recreate-lewitt/</guid>
      <description>LeWitt ReMix The third #RecreationThursday challenge involved Sol LeWitt’s Colour Bands (2000), which you can see on this prints catalogue. In short, each piece is square and contains patterns of colourful concentric lines that are arranged into panels of varying shapes with black borders.
Rather than recreate his artworks exactly, I decided to riff on the approach with a (very basic) Shiny app, which adds different types of lines and some randomisation.</description>
    </item>
    
    <item>
      <title>Very simple pixel art in R</title>
      <link>https://www.rostrum.blog/2021/06/28/pixel-art/</link>
      <pubDate>Mon, 28 Jun 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/06/28/pixel-art/</guid>
      <description>It’s dangerous to code alone…  tl;dr You can use R’s image() function to convert a matrix to a pixelly graphic.
 Pixel fixation My last post was about the {emojiscape} package, which makes a little scene out of sampled emojis.
Following a similar approach, you could write a matrix by hand and plot it via the base function image(). Here’s a very basic example with a ‘glider’ from Conway’s Game of Life.</description>
    </item>
    
    <item>
      <title>Generate an {emojiscape}</title>
      <link>https://www.rostrum.blog/2021/06/26/emojiscape/</link>
      <pubDate>Sat, 26 Jun 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/06/26/emojiscape/</guid>
      <description>tl;dr You can print a little emoji scene to your R console with the {emojiscape} package.
 Really? Regular readers will know that this blog is where I implement whimsical R daydreams. Today is no exception: I’ve made a tiny package to print a little randomised emoji scene to my console.
Why? I’ve seen people make cute emoji-based bots, which I’ve been interested in after making the @londonmapbot Twitter bot (post, source, BotWiki).</description>
    </item>
    
    <item>
      <title>#RecreationThursday: Hlito with base R</title>
      <link>https://www.rostrum.blog/2021/06/21/recreate-hlito/</link>
      <pubDate>Mon, 21 Jun 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/06/21/recreate-hlito/</guid>
      <description>Rando-Hlito The first #RecreationThursday challenge involved Alfredo Hlito’s Curves and Straight Series (1948), held by New York’s MoMA.
My recreation uses only base R functions:
 My remix is a 10 by 10 grid where the elemental geometry is randomised:
 I also made a gif remix that’s composed of 10 ‘rando-Hlitos’:
  Approach You can find all the commented code and the outputs in my matt-dray/viz-recreation GitHub repo.</description>
    </item>
    
    <item>
      <title>Recreating Spear&#39;s #CottonViz in base R</title>
      <link>https://www.rostrum.blog/2021/06/08/recreate-spear/</link>
      <pubDate>Tue, 08 Jun 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/06/08/recreate-spear/</guid>
      <description>#CottonViz The Young Statistician’s and History of Stats sections of the Royal Statistical Society (RSS) have challenged people to recreate1 or remix Mary Eleanor Spear’s visualisation of cotton supplies in the United States in the 1940s:2
 I thought it would be interesting to recreate it using only R’s built-in base graphics. This might be a nice demo of zero-dependency plotting for R users who are more familiar with {ggplot2}.</description>
    </item>
    
    <item>
      <title>Misson Across the Isle of Wight</title>
      <link>https://www.rostrum.blog/2021/05/22/mission-across-iow/</link>
      <pubDate>Sat, 22 May 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/05/22/mission-across-iow/</guid>
      <description>Isle of Wight, coloured off-white.  tl;dr I used R to identify and map hazards on a potential straight-line walking route across the Isle of Wight, mimicking Tom ‘GeoWizard’ Davies’s ‘Mission Across’ series of YouTube videos. You can jump straight to the interactive map.
 GeoWizard Tom ‘GeoWizard’ Davies is perhaps best known for his YouTube channel, where he posts Twitch stream highlights of Geoguessr, a game where you pinpoint a randomised location based only Google StreetView.</description>
    </item>
    
    <item>
      <title>Encrypt and host a knitted R Markdown file</title>
      <link>https://www.rostrum.blog/2021/05/07/encrypted-rmd/</link>
      <pubDate>Fri, 07 May 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/05/07/encrypted-rmd/</guid>
      <description>An attempted knitting/padlock visual pun with stitch markers.  tl;dr You can knit an R Markdown file to an encrypted HTML with {encryptedRmd} and put it online with GitHub Pages. Users must enter the decryption key to download and view the content.
 TinkR TailR I’m working on a personal project that outputs an HTML document rendered from an R Markdown file. I want to password-protect and share it with a specific person somehow.</description>
    </item>
    
    <item>
      <title>Make the simplest R package with {pico}</title>
      <link>https://www.rostrum.blog/2021/04/18/pico-pkg/</link>
      <pubDate>Sun, 18 Apr 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/04/18/pico-pkg/</guid>
      <description>tl;dr I made {pico}, an R package for creating tiny R packages with the absolute minimum structure and content. The goal: to demystify package making.
 Function in a haystack I saw a @WeAreRLadies tweet from last week’s curator, @ShreyaLouis. The gist was ‘how can you be more organised when recalling and reusing your own R code?’
See the thread for ideas, but I had the same thought as Fabio: create a personal package of your frequently-used functions so you can invoke them whenever you want.</description>
    </item>
    
    <item>
      <title>Up-to-date blog stats in your README</title>
      <link>https://www.rostrum.blog/2021/04/14/gha-readme/</link>
      <pubDate>Wed, 14 Apr 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/04/14/gha-readme/</guid>
      <description>Yesterday’s render of the GitHub README for this blog.  tl;dr You can use a scheduled GitHub Action to render up-to-date stats about your blog into its README.
 Happy blogday This blog has been knocking around for three years now. I wrote a post on its first birthday with a simple, interactive 2D plot of the posts to date.
Only now, two years later, have I thought to put this info into the blog’s README on GitHub—along with some other little stats, like total number of posts—and have it update automatically on a schedule using a GitHub Action.</description>
    </item>
    
    <item>
      <title>Convert R to cron to English with {dialga}</title>
      <link>https://www.rostrum.blog/2021/04/10/dialga/</link>
      <pubDate>Sat, 10 Apr 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/04/10/dialga/</guid>
      <description>tl;dr I made the small proof-of-concept R package {dialga} to help build and interpret standard cron expressions using familiar R syntax. r2cron() converts R to cron; cron2eng() converts cron to English.
 Cronwhat? You can schedule scripts to run at specific times using software on your computer called ‘cron’. You can set up ‘cron jobs’ to specify what needs to be run. A key part of the recipe is a short cron string that provides instructions about when to run it.</description>
    </item>
    
    <item>
      <title>Apple Health and Nike Run Club with {xml2}</title>
      <link>https://www.rostrum.blog/2021/03/23/xml-health/</link>
      <pubDate>Tue, 23 Mar 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/03/23/xml-health/</guid>
      <description>Run barcode: one year of runs, darker bands are longer distances.  tl;dr You can export your Apple Health data as an XML file. This includes workouts linked from other apps, like Nike Run Club. I used the R packages {xml2} and the tidyverse to extract and clean my step counts and running activity.
 App storage My healthcare provider peeks at the Apple Health app and rewards me if I meet daily step-count targets.</description>
    </item>
    
    <item>
      <title>Make a {shiny} app README badge</title>
      <link>https://www.rostrum.blog/2021/03/23/shiny-badge/</link>
      <pubDate>Tue, 23 Mar 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/03/23/shiny-badge/</guid>
      <description>A shields.io badge built with {badgr} in the ‘randoflag’ repo on GitHub  tl;dr Use the {badgr} package to make a clickable README badge for a repo that contains an R Shiny app: 
 Badgr badgr badgr I made the {badgr} R package to take advantage of the full flexibility of shields.io—a service that builds README badges from a supplied URL string—from within R itself.1 You can find the source for the package on GitHub, visit its site built with {pkgdown}, or read a blog post about its inception.</description>
    </item>
    
    <item>
      <title>Protect yourself from equals assignment!</title>
      <link>https://www.rostrum.blog/2021/03/13/assign/</link>
      <pubDate>Sat, 13 Mar 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/03/13/assign/</guid>
      <description>tl;dr I present you a function that warns if an R script contains The Assignment Operator That Shall Not Be Named.
 Assign of the times So, it’s been confirmed with extremely robust and objective evidence: the left-assignment arrow (x &amp;lt;- 1) is better than equals (x = 1) for assignment in R.1
So, unless you hate democracy, you should protect yourself from aberrant code that uses the cursed symbol.</description>
    </item>
    
    <item>
      <title>A tiny {shiny} flag challenge</title>
      <link>https://www.rostrum.blog/2021/03/02/randoflag/</link>
      <pubDate>Tue, 02 Mar 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/03/02/randoflag/</guid>
      <description>The gif loops; I promise there’s more flags than this.  tl;dr I wrote a teeny-weeny R Shiny app to serve me a flag challenge whenever I open a new browser tab.
 A vexatious request I thought it would be fun to set my browser tabs to open with thiscatdoesnotexist.com, which serves a random ersatz ‘cat’ as hallucinated by StyleGAN.1 It’s kind of terrifying and time for a change.</description>
    </item>
    
    <item>
      <title>Typo-shaming my Git commits</title>
      <link>https://www.rostrum.blog/2021/02/27/typos/</link>
      <pubDate>Sat, 27 Feb 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/02/27/typos/</guid>
      <description>The author at work (CC BY-SA 3.0 KaterBegemot)  tl;dr Nearly 10 per cent of the commits to this blog’s source involve typo fixes, according to a function I wrote to search commit messages via the {gh} package.
 Not my typo I’m sure you’ve seen consecutive Git commits from jaded developers like ‘fix problem’, ‘actually fix problem?’, ‘the fix broke something else’, ‘burn it all down’. Sometimes a few swear words will be thrown in for good measure (look no further than ‘Developers Swearing’ on Twitter).</description>
    </item>
    
    <item>
      <title>#GithubSkyline but hear me out</title>
      <link>https://www.rostrum.blog/2021/02/21/skyphone/</link>
      <pubDate>Sun, 21 Feb 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/02/21/skyphone/</guid>
      <description>My skyline clearly has a Central Business District with development in the suburbs.   Note
The GitHub Skyline API–on which the {skyphone} package depends–stopped responding (i.e. it 404s) soon after this post was published. I may fix {skyphone} in future to work via {gh} instead; feel free to contribute.
 tl;dr I made the R package {skyphone} to get GitHub contributions data from GitHub Skyline and sonify it.
 Reach for the skyline Skyline is an online curio from GitHub that lets you input a user’s name and get a 3D rendering of that user’s contributions to the platform.</description>
    </item>
    
    <item>
      <title>What does a year of COVID-19 sound like?</title>
      <link>https://www.rostrum.blog/2021/02/02/sonify-covid/</link>
      <pubDate>Tue, 02 Feb 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/02/02/sonify-covid/</guid>
      <description>Landing page of coronavirus.data.gov.uk  tl;dr I used the {sonify} package in R to represent a year of the UK’s COVID-19 data in audio format. You can jump straight to the audio.
 Listen to your data I watched an excellent talk at the rstudio::global(2021) conference by JooYoung Seo titled ‘Accessible Data Science Beyond Visual Models: Non-Visual Interactions with R and RStudio Packages’. You can access the video or his blog on the subject.</description>
    </item>
    
    <item>
      <title>R&#39;s names and values as anchovy pizza</title>
      <link>https://www.rostrum.blog/2021/01/28/adv-r-names/</link>
      <pubDate>Thu, 28 Jan 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/01/28/adv-r-names/</guid>
      <description>Queued two hours for this. R’s names and values system is faster to learn, but not as delicious.  tl;dr I bought Hadley Wickham’s Advanced R book1 to help me better understand R’s quirks. Can names and values (chapter 2) be explained with a contrived pizzeria analogy?2
 A pizza by any other name Welcome to the pizzeria. It’s called ‘La PizzRia’ because our owner likes to code and is really lazy at puns.</description>
    </item>
    
    <item>
      <title>Play Pokémon&#39;s Safari Zone in R</title>
      <link>https://www.rostrum.blog/2021/01/04/safar6/</link>
      <pubDate>Mon, 04 Jan 2021 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2021/01/04/safar6/</guid>
      <description>An original Nintendo Game Boy playing Pokémon… if you squint.  tl;dr I created the R package {safar6}, which contains an R6-class object to simulate a simplified, text-based version of the Safari Zone sub-area from Pokémon Blue.
I also made the ‘gamelad’ RStudio theme to mimic the screen of a pukey-green original Game Boy. Pair with a blocky monospace font like VT323 for that 8-bit experience.1
 Kangaskhan you believe it?</description>
    </item>
    
    <item>
      <title>Mapping londonmapbot tweets with {leaflet}</title>
      <link>https://www.rostrum.blog/2020/12/20/londonmapbot-leaflet/</link>
      <pubDate>Sun, 20 Dec 2020 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2020/12/20/londonmapbot-leaflet/</guid>
      <description>Closest I’ve been to Leicester Square since the start of lockdown.  tl;dr I recently made a Twitter bot with R, {rtweet}, MapBox and GitHub Actions – londonmapbot – that tweets images of random coordinates in London. I decided to explore them interactively by creating a simple {leaflet} map. You can jump directly to the map).
 The bot I built the londonmapbot Twitter bot as a fun little project to get to grips with GitHub Actions.</description>
    </item>
    
    <item>
      <title>Sending {postcards} with Netlify and Namecheap</title>
      <link>https://www.rostrum.blog/2020/12/08/postcard/</link>
      <pubDate>Tue, 08 Dec 2020 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2020/12/08/postcard/</guid>
      <description>Sleek. Minimal. Bearded.  tl;dr  Dearest ma and pa,
The food here is okay. Mostly I’ve been setting up a single-page personal site with the {postcards} package for R, deploying it with Netlify and setting up a custom domain with Namecheap. More rain is forecast for tomorrow.
Wish you were here,
Matthew
  Domain-driven development A hobby of mine is to look for funny domain names and to not buy them.</description>
    </item>
    
    <item>
      <title>The US electoral college with {tilegramsR}</title>
      <link>https://www.rostrum.blog/2020/11/21/president-tilegram/</link>
      <pubDate>Sat, 21 Nov 2020 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2020/11/21/president-tilegram/</guid>
      <description>tl;dr The {tilegramsR} package for R contains a geospatial object for mapping the US electoral college. I amended it for states that use the congressional district method and generated a minimalist map of the results for the 2020 US presidential election.1
 Send a cartogram It’s usually best to scale subnational divisions by voter count when visualising election results. This is because election outcomes are decided by people, not land area.</description>
    </item>
    
    <item>
      <title>Translate R to English with {r2eng}</title>
      <link>https://www.rostrum.blog/2020/11/14/hello-r2eng/</link>
      <pubDate>Sat, 14 Nov 2020 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2020/11/14/hello-r2eng/</guid>
      <description>tl;dr I created the work-in-progress {r2eng} package (source, site) to help translate R expressions to speakable English. Inspired by Amelia McNamara and with a huge amount of help from Chung-hong Chan.
 Communication is hard Amelia McNamara (site, Twitter) gave a talk at the useR! 2020 conference called ‘Speaking R’. Watch the video on YouTube, or take a look at the slides.
To summarise greatly: R code should be speakable so that we can teach, learn and communicate with minimal friction.</description>
    </item>
    
    <item>
      <title>Hit your reproducibility {targets}</title>
      <link>https://www.rostrum.blog/2020/09/27/targets-dsfest/</link>
      <pubDate>Sun, 27 Sep 2020 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2020/09/27/targets-dsfest/</guid>
      <description>An excuse to use the dam good (lol) beavers1 data (Nature on PBS via Giphy)  tl;dr I spoke at the UK Government Data Science Festival about Will Landau’s R package {targets} for workflow reproducibility. You can jump to the embedded slides below.
 {targets} Reproducibility is an important part of any data analysis. Will people be able to re-run your code from scratch on a different machine without you present?</description>
    </item>
    
    <item>
      <title>A Twitter bot with {rtweet} and GitHub Actions</title>
      <link>https://www.rostrum.blog/2020/09/21/londonmapbot/</link>
      <pubDate>Mon, 21 Sep 2020 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2020/09/21/londonmapbot/</guid>
      <description>tl;dr I made @londonmapbot: a simple Twitter bot that uses the R package {rtweet}, GitHub Actions and the Mapbox API. Find the source on Github.
 London from (socially-distant) space I’ve wanted to make a Twitter bot for a while, but it seemed like Hard Work. Spoiler: it’s not.
So, I’ve made @londonmapbot: a completely unsophisticated proof-of-concept Twitter bot.
What does it do? It posts a satellite image from random coordinates in Greater London (well, from a bounding box roughly within the M25 motorway) on schedule.</description>
    </item>
    
    <item>
      <title>Rate my RStudio setup</title>
      <link>https://www.rostrum.blog/2020/09/15/rstudio-settings/</link>
      <pubDate>Tue, 15 Sep 2020 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2020/09/15/rstudio-settings/</guid>
      <description>tl;dr I share my RStudio setup and some features of the IDE I often use. Tell me about your setup.
 Configuration IDEation R has a decent community online. People love to share opinions about design, customisation and workflow efficiencies. Why is there little at the intersection?
What I do see is people excited to hear about a checkbox or shortcut they never knew existed. I also hear from colleagues who are learning R and want to know more about customising their experience.</description>
    </item>
    
    <item>
      <title>{units} of uncleaned herring</title>
      <link>https://www.rostrum.blog/2020/09/12/herring-units/</link>
      <pubDate>Sat, 12 Sep 2020 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2020/09/12/herring-units/</guid>
      <description>The hex sticker is better than the package.  tl;dr I made the tiny R package {cran} to convert volumes to an antiquated measurement of fish. Why? To test out the {units} package and to resolve a joke about the Comprehensive R Archive Network (CRAN).
 {units} The {units} package by Edzer Pebesma, Thomas Mailund and James Hiebert (site, source, R Journal) helps you set and create units, convert between them and raise an error where that isn’t possible.</description>
    </item>
    
    <item>
      <title>R-Package GitHub Actions via {usethis} and r-lib</title>
      <link>https://www.rostrum.blog/2020/08/09/ghactions-pkgs/</link>
      <pubDate>Sun, 09 Aug 2020 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2020/08/09/ghactions-pkgs/</guid>
      <description>A GitHub Action in action on GitHub.  tl;dr You can trigger GitHub Actions to build and test your R package after a push or pull request. Create .github/workflows/ in your repo and add pre-prepared actions by the r-lib team with usethis::use_github_action().
 Shortcut I refer back to this post a lot, so here’s some jump-links to the sections with the code I need:
Build check Test coverage Build {pkgdown} site  Otherwise read on for a more thorough explanation of GitHub Actions in the context of R packages.</description>
    </item>
    
    <item>
      <title>Blogging with R on Raspberry Pi</title>
      <link>https://www.rostrum.blog/2020/07/11/raspberry/</link>
      <pubDate>Sat, 11 Jul 2020 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2020/07/11/raspberry/</guid>
      <description>Raspberry Pi 2 Model B (rostrum.blog limited edition)  tl;dr I installed R on a Raspberry Pi and set it up to use {blogdown}. This post was written from my Pi.
 Update
Since I wrote this post it’s become much easier to get started with R on the Raspberry Pi with r4pi.org by Mark Sellors, along with VS Code. Read on for a more terminal-based experience.
  A delicious Raspberry Pi The hardware The Raspberry Pi is a small, inexpensive, single-board computer designed to make computing and coding accessible to all.</description>
    </item>
    
    <item>
      <title>Take a {ghdump} to download GitHub repos</title>
      <link>https://www.rostrum.blog/2020/06/14/ghdump/</link>
      <pubDate>Sun, 14 Jun 2020 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2020/06/14/ghdump/</guid>
      <description>My garbage GitHub repos being dumped onto my local machine (via openclipart.org, CC0 1.0)  tl;dr Run ghd_copy() from the {ghdump} package to either clone or download all the GitHub repositories for a given user. Intended for archival purposes or setting up a new computer.
The package comes with no guarantees and will likely be in a perpetual work-in-progress state. Please submit issues or pull requests.
 Clone army Situation:</description>
    </item>
    
    <item>
      <title>Animal Crossing Tinder with {shinysense}</title>
      <link>https://www.rostrum.blog/2020/06/06/acnh-swipe/</link>
      <pubDate>Sat, 06 Jun 2020 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2020/06/06/acnh-swipe/</guid>
      <description>Lily &amp;lt;3 4eva  tl;dr The villagers of Animal Crossing: New Horizons are taking part in a popularity contest and you’re the judge.
I made an R Shiny app where you swipe right if you like a randomly-presented villager and left if you dislike them.
Visit the app here and help decide the most popular villager! You can also visit the source code.
 Tidy Tuesday Tidy Tuesday is an open event for the R community.</description>
    </item>
    
    <item>
      <title>#PostcodePandemonium with {data.table}</title>
      <link>https://www.rostrum.blog/2020/05/16/postcode-pandemonium/</link>
      <pubDate>Sat, 16 May 2020 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2020/05/16/postcode-pandemonium/</guid>
      <description>Postcodes in Bath are unlikely to score highly (via Wikimedia)  tl;dr I used the R package {data.table} to find the highest- and lowest-scoring UK postcodes based on the sum of their numbers and letters (A = 1, B = 2, etc). You can jump to the results.
 The premise Yesterday I noticed that the hashtag #PostcodePandemonium was trending on Twitter.1 The premise was to sum the numbers and letters in your postcode, where the letters have been converted to their position in the alphabet (i.</description>
    </item>
    
    <item>
      <title>Make a README badge with {badgr}</title>
      <link>https://www.rostrum.blog/2020/05/08/readme-badge/</link>
      <pubDate>Fri, 08 May 2020 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2020/05/08/readme-badge/</guid>
      <description>{badgr} is definitely a bodge (CBeebies via Giphy)  ℹ️ Note
Somehow I missed the existence of the {badger} package by Guangchuang Yu. It contains functions for several pre-baked badge types, plus badge_custom(). Download it from CRAN.
 tl;dr Sometimes a post on this blog is related to some code in a GitHub repository. I wanted to create a badge to link from that repo to the relevant post.</description>
    </item>
    
    <item>
      <title>AGÜEROOOOO with {ggsoccer} and {gganimate}</title>
      <link>https://www.rostrum.blog/2020/05/02/aguerooooo/</link>
      <pubDate>Sat, 02 May 2020 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2020/05/02/aguerooooo/</guid>
      <description>tl;dr I used R to animate the goal that won Manchester City the 2011/12 Premier League title in breathtaking fashion.
Inspired by Ryo Nakagawara, who makes awesome R-related soccer content that you can find on his site and on Twitter.1
 The problem Soccer has run dry.
Leagues have been cancelled or decided on a contentious points-per-game basis given that there’s no precedent. The fate of the 2019/20 English Premier League season is still unknown.</description>
    </item>
    
    <item>
      <title>Owning the shame of my old R code</title>
      <link>https://www.rostrum.blog/2020/04/17/r-self-shame/</link>
      <pubDate>Fri, 17 Apr 2020 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2020/04/17/r-self-shame/</guid>
      <description>Bemusement (all images from Brehm’s Life of Animals, 1895)  tl;dr In which I reflect on my past-self’s journey toward better R code.
This post suggests alternatives to file.choose(), setwd() and attach(); encourages sensible project structure; and talks about the benefit of writing functions.
 A startling discovery I dug up a time capsule from a decade ago. It contained poorly constructed R code.
Twist: it was me who wrote it.</description>
    </item>
    
    <item>
      <title>Plotception with {ggpattern}</title>
      <link>https://www.rostrum.blog/2020/04/05/yo-dawg/</link>
      <pubDate>Sun, 05 Apr 2020 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2020/04/05/yo-dawg/</guid>
      <description>Yo dawg Followers of this blog might remember the unveiling of cloud_pie(), the greatest new visualisation technique of the 21st Century.
Luckily, R-package machine mikefc of @coolbutuseless has released {ggpattern}, which lets you image- or pattern-fill the bars of your {ggplot2} plot. Most usefully with pictures of kittens or Bill Murray.
This has opened the door to yet another ground-breaking viz. The secret yet obvious real purpose of {ggpattern} is to put plots inside your plots.</description>
    </item>
    
    <item>
      <title>Repaying Tom Nook with {R6}</title>
      <link>https://www.rostrum.blog/2020/04/04/repaying-tom-nook-with-r6/</link>
      <pubDate>Sat, 04 Apr 2020 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2020/04/04/repaying-tom-nook-with-r6/</guid>
      <description>I assume the other villagers are happy with my choice of town flag.  tl;dr How would capitalist raccoon-dog Tom Nook simulate home-loan payments using R?1
I built a version of Animal Crossing’s Automatic Bell Dispenser (a kind of ATM/cashpoint) using Winston Chang’s {R6} package, inspired by an exercise from Hadley Wickham’s Advanced R book.
 What do those words mean? Animal Crossing Animal Crossing is a wholesome Nintendo videogame franchise in which you arrive on an island and befriend anthropomorphic animal villagers.</description>
    </item>
    
    <item>
      <title>Ninja scaffolding for {xaringan}</title>
      <link>https://www.rostrum.blog/2020/03/22/ninja-scaffold/</link>
      <pubDate>Sun, 22 Mar 2020 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2020/03/22/ninja-scaffold/</guid>
      <description>Example of modified Ninjutsu for ‘scaffolding’ a {xaringan} slide.  tl;dr Emi Tanaka‘s Ninjutsu CSS for {xaringan} breaks slides into ’cells’, which are useful for arranging plots, tables, etc. I’ve been experimenting with Emi’s CSS to create my own layouts.
 Slide themes The {xaringan} package by Yihui Xie – an implementation of remark.js – lets you create reproducible slides with R.
You can create your own themes for {xaringan} by supplying some CSS.</description>
    </item>
    
    <item>
      <title>Iterate parameterised {xaringan} reports</title>
      <link>https://www.rostrum.blog/2020/03/12/knit-with-params/</link>
      <pubDate>Thu, 12 Mar 2020 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2020/03/12/knit-with-params/</guid>
      <description>Driving a Wedge (via Giphy)  tl;dr You want to use R to generate multiple reports from a single template, each containing different data.
How? Create a parameterised RMarkdown template with a params YAML argument. Iterate over param values with rmarkdown::render() inside purrr::map().
I made a demo of this approach that focuses on parameterised {xaringan} slides. It includes a further {purrr} step with pagedown::chrome_print() to render the HTML outputs to PDF.</description>
    </item>
    
    <item>
      <title>A Pokémon sprite carousel with {slickR}</title>
      <link>https://www.rostrum.blog/2020/02/05/slickr/</link>
      <pubDate>Wed, 05 Feb 2020 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2020/02/05/slickr/</guid>
      <description>Ride the carousel I was browsing GitHub and the {slickR} package by Jonathan Sidi was suggested as a repo to explore.
{slickR} is an htmlwidget that generates carousels using the Slick JavaScript library by Ken Wheeler.
You’ve seen carousels before. They’re pretty ubiquitous for scrolling horizontally through images on websites. {slickR} provides a neat way of embedding these in R Markdown documents and Shiny apps. Plus, the elements in the carousel can be basically anything (iframes, plots, etc), not just images.</description>
    </item>
    
    <item>
      <title>{orderly} and {drake} at Bioinformatics London</title>
      <link>https://www.rostrum.blog/2020/01/31/reprobioinformatics/</link>
      <pubDate>Fri, 31 Jan 2020 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2020/01/31/reprobioinformatics/</guid>
      <description>REPRODUCIBILITY 4 LYFE (via Bioinformatics London’s Meetup page)  tl;dr I spoke at the latest Bioinformatics London Meetup (event link, Twitter) about workflow reproducibility tools in R. I explained the benefits of Will Landau’s {drake} package for doing this.
 Order, order Rich FitzJohn opened proceedings with an excellent introduction to his {orderly} package (source) that is intended for ‘lightweight reproducible reporting’.
In short, the user declares inputs (anything, including things like SQL queries and CSV files) and artefacts (results) of their analysis.</description>
    </item>
    
    <item>
      <title>Reproducibility in R: three things</title>
      <link>https://www.rostrum.blog/2020/01/22/repro-three-things/</link>
      <pubDate>Wed, 22 Jan 2020 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2020/01/22/repro-three-things/</guid>
      <description>Avoid being this guy (Threddy the T. rex via Giphy)  Reproducevangelism I spoke at the Department for Education’s Data Science Week. I wanted everyone – newer and more experienced users alike – to learn at least one new thing about reproduciblity with R and RStudio.
The slides are embedded below and you can also get them fullscreen online (press ‘F’ for fullscreen and ‘P’ for presenter notes) and find the source on GitHub.</description>
    </item>
    
    <item>
      <title>Packages that Sparked Joy in 2019</title>
      <link>https://www.rostrum.blog/2019/12/27/pkgs-2019/</link>
      <pubDate>Fri, 27 Dec 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/12/27/pkgs-2019/</guid>
      <description>Marie Kondo (Netflix via Giphy)  Thank you package-makers I’ve used a lot of packages in 2019 and many have brought great joy to my R experience. Thank you to everyone who has created, maintained or contributed to a package this year.
Some particular packages of note for me have been:
 🤖 {usethis} by Hadley Wickham and Jenny Bryan 🦆 {drake} by Will Landau 🐈 {purrr} by Lionel Henry and Hadley Wickham  And some honourable mentions are:</description>
    </item>
    
    <item>
      <title>Handle London travel data with {oystr}</title>
      <link>https://www.rostrum.blog/2019/12/23/oystr/</link>
      <pubDate>Mon, 23 Dec 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/12/23/oystr/</guid>
      <description>tl;dr  Problem: I wanted to analyse my Transport for London (TfL) travel data Solution: I came up with the R package name {oystr} and a hex sticker design Practical solution: I actually wrote the package Self-flagellation: it has zero dependencies Further problem: TfL won’t give me information I need to complete it properly Result: blog it and move on Revelation: I’ve spent more than 53 days on TfL trains since Autumn 2014 😱   Clam-ouring for a package Transport for London (TfL) operates the travel system in London.</description>
    </item>
    
    <item>
      <title>{altcheckr}: check image alt text from R</title>
      <link>https://www.rostrum.blog/2019/12/08/altcheckr/</link>
      <pubDate>Sun, 08 Dec 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/12/08/altcheckr/</guid>
      <description>tl;dr I’ve made a small R package called {altcheckr} that checks the accessibility of images on web pages. It has functions that (1) scrape attributes from HTML  elements on a web page and (2) apply simple rules to indicate the suitability of the alt text provided. To use:
remotes::install_github(&amp;quot;matt-dray/altcheckr&amp;quot;) images &amp;lt;- alt_get(&amp;quot;https://www.bbc.co.uk/news&amp;quot;) alt_check(images) I’m not an expert and the package has not been user tested.
 Accessibility A web site is accessible if everyone can engage with its content.</description>
    </item>
    
    <item>
      <title>A pivotal change to Software Carpentry</title>
      <link>https://www.rostrum.blog/2019/11/27/pivot/</link>
      <pubDate>Wed, 27 Nov 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/11/27/pivot/</guid>
      <description>Via Frinkiac  tl;dr Teaching materials from The Carpentries depend on the community to amend and update them. This post is about my first proper contribution by helping to update the Software Carpentry lesson that teaches the R package {tidyr}.
Some helpful materials for learning about {tidyr}’s new pivot_*() functions:
 the {tidyr} vignette about pivoting Hiroaki Yutani’s slides — ‘A graphical introduction to tide’s pivot_*()’ Bruno Rodrigues’s blogpost — ‘Pivoting data frames just got easier thanks to pivot_wide() and pivot_long()’ Sharon Machlis’s video — ‘How to reshape data with tidyr’s new pivot functions’ Gavin Simpson’s blog — ‘Pivoting tidily’ (a real-world problem) I wrote a {tidyr} lesson for Tidyswirl, a Swirl course for learning the tidyverse from within R itself (read the blog post)   Contribute!</description>
    </item>
    
    <item>
      <title>Tidyswirl: a tidyverse Swirl course</title>
      <link>https://www.rostrum.blog/2019/11/02/tidyswirl/</link>
      <pubDate>Sat, 02 Nov 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/11/02/tidyswirl/</guid>
      <description>Starting Swirl and selecting the tidyverse course  tl;dr Contribute to Tidyswirl: a Swirl course that lets people learn the tidyverse from within R.
 Swirl Swirl is a framework for learning R from within R itself. You can install it with install.packages(&amp;quot;swirl&amp;quot;). Swirl courses can be created by anyone and installed from nearly anywhere, though the Swirl course repository is the ‘official’ source.
I’ve written before about how the {swirlify} package makes it easier to create Swirl packages.</description>
    </item>
    
    <item>
      <title>Build an R package with {usethis}</title>
      <link>https://www.rostrum.blog/2019/11/01/usethis/</link>
      <pubDate>Fri, 01 Nov 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/11/01/usethis/</guid>
      <description>Ossie, a Cabinet Office cat (via @cabinetofficeuk)  tl;dr  I gave a talk about creating an R package with helper functions from the {usethis} package In the session I created a new package from scratch called {cabinet} for identifying the cats that live in the UK Government’s Cabinet Office See the slides in a dedicated window or view their source See the {cabinet} package source and its website Jump to a list of other materials   Coffee packaging I gave a talk at a Cabinet Office Coffee &amp;amp; Coding session about building R packages from scratch.</description>
    </item>
    
    <item>
      <title>{blogsnip}: an RStudio addin package</title>
      <link>https://www.rostrum.blog/2019/10/22/blogsnip/</link>
      <pubDate>Tue, 22 Oct 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/10/22/blogsnip/</guid>
      <description>Inserting a details block with the {blogsnip} addin  tl;dr On my commute home I made {blogsnip}: a tiny package of RStudio addins that add snippets of R code to help me write blog posts.
Install with:
install.packages(&amp;quot;remotes&amp;quot;) remotes::install_github(&amp;quot;matt-dray/blogsnip&amp;quot;)  The problem I’m lazy.
There’s some bits of code I often want to put in my blog posts (written in R Markdown) but I can’t remember them.
In particular:
 an expandable ‘details’ section1, which sometimes contains R session information and the date of the post’s last update (see examples throughout this previous post) a way to add an image with a caption and alt text that differ (like the gif at the top of this post), something that makes the images more accessible for users of screen readers, for example a link that opens in a new tab, rather than in the tab where you’re reading a post (as per this tweet by Albert Y Kim)  Originally I stored them in a GitHub Gist, but this is sub-optimal: the internet connection on my commute can be patchy.</description>
    </item>
    
    <item>
      <title>Git going: Git and GitHub</title>
      <link>https://www.rostrum.blog/2019/10/21/git-github/</link>
      <pubDate>Mon, 21 Oct 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/10/21/git-github/</guid>
      <description>tl;dr Git is software on your computer that acts as a brain to store the version history of your files. Forget the discombobulation of file names like weasel-facts_FINAL.txt, weasel-facts_FINAL_comments.txt, etc, etc. GitHub is a website and cloud service for storing your version history remotely and for making collaboration easier.
Jump to:
 Summary Version control Step-by-Step What next Other resources   Summary This post is a basic and non-comprehensive introduction to Git and GitHub, with a focus on Mac users who are starting a project and working alone.</description>
    </item>
    
    <item>
      <title>How do you pronounce {dplyr}?</title>
      <link>https://www.rostrum.blog/2019/09/20/say-package/</link>
      <pubDate>Fri, 20 Sep 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/09/20/say-package/</guid>
      <description>Get that oesophagus involved, why not? (Public Domain)  tl;dr It’s ‘d-ply-r’ according to Hadley himself… maybe.
What does it sound like when your computer tries to pronounce R package names? Is this an accessibility issue?
 Deep liar Sometimes I hear a word being spoken and think ‘oh wait, is that how it’s actually pronounced?’
I know people struggle with pronouncing R package names. They’re often hard to parse.</description>
    </item>
    
    <item>
      <title>{blogdown}: add metadata to Lithium-themed posts</title>
      <link>https://www.rostrum.blog/2019/09/06/lithium-metadata/</link>
      <pubDate>Fri, 06 Sep 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/09/06/lithium-metadata/</guid>
      <description>Modifying lithium metal with heat (via Giphy)
 tl;dr Add author name, categories and tags to the posts of your Lithium-themed {blogdown} site. Might work for other themes.
 Lithium This blog is generated using Yihui Xie’s {blogdown}, which is built on the Hugo framework.
A number of site-wide themes have been ported for use with {blogdown}. This site uses the clean and simple Lithium theme by Jonathan Rutheiser, modified for {blogdown} by Yihui.</description>
    </item>
    
    <item>
      <title>{holepunch} a {drake} and put it in a Binder</title>
      <link>https://www.rostrum.blog/2019/08/25/holepunch-drake/</link>
      <pubDate>Sun, 25 Aug 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/08/25/holepunch-drake/</guid>
      <description>tl;dr Binder lets people explore your GitHub-based R code in a live, browser-based instance of RStudio – for free. Set-up for R projects is quick with {holepunch}.
I’ve used {holepunch} on my {drake} demo repo. Click the ‘launch binder’ badge in the repo’s README.
 Icing on the {drake} I wrote about how Will Landau’s excellent {drake} package could be used to minimise errors and speed up the production of statistical reports by the UK government.</description>
    </item>
    
    <item>
      <title>Can {drake} RAP?</title>
      <link>https://www.rostrum.blog/2019/07/23/can-drake-rap/</link>
      <pubDate>Tue, 23 Jul 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/07/23/can-drake-rap/</guid>
      <description>tl;dr The {drake} package records file interdependecies in your analysis. When files are changed, {drake} only re-runs the parts that need to be re-run. This saves time and reduces error.
This could be useful for Reproducible Analytical Pipelines (RAP), an automated approach to producing UK government statistics that minimises error and speeds production.
 Make it to make it Analysis projects can become complicated as multiple inputs, script files and outputs build up.</description>
    </item>
    
    <item>
      <title>The Mountain Goats with {trelliscopejs}</title>
      <link>https://www.rostrum.blog/2019/06/20/goat-scope/</link>
      <pubDate>Thu, 20 Jun 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/06/20/goat-scope/</guid>
      <description>tl;dr I used {trelliscopejs} to make an interactive ‘small multiples’ display for The Mountain Goats discography.
You can interact with an embedded version below or click here to open full screen.
  Small multiples The {trelliscopejs} R package by Ryan Hafen harnesses the power of his trelliscopejs-lib JavaScript library.
What does it do? It provides an interactive interface for visualising, organising and exploring data visualisations in small multiples.
What are ‘small multiples’?</description>
    </item>
    
    <item>
      <title>A GitHub repo template for R analysis</title>
      <link>https://www.rostrum.blog/2019/06/11/r-repo-template/</link>
      <pubDate>Tue, 11 Jun 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/06/11/r-repo-template/</guid>
      <description>Sharing is caring GitHub has introduced repository templates to make it easier to share frequently-used repo structures and boilerplate code. You can copy a whole repo as many times as you like, unlike forks.
Following a template can help keep your work organised and encourage consistency within and between projects. I can see this being useful for sharing optimal workflows across boundaries like government departments.
 Tada I’ve made a lightweight repo template to make it easier for me to start very simple analysis projects with R.</description>
    </item>
    
    <item>
      <title>Make a {brickr} soccer player</title>
      <link>https://www.rostrum.blog/2019/05/31/brickr-soccer/</link>
      <pubDate>Fri, 31 May 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/05/31/brickr-soccer/</guid>
      <description>Virtual Lego {brickr} is a fun package by Ryan Timpe that lets you build 2D mosaics and 3D models with Lego-like virtual bricks,1 with a little help from Tyler Morgan Wall’s {rayshader} package.
Build 3D LEGO models &amp;amp; mosaics in #rstats! {brickr} is now on GitHub. More examples, How-To&#39;s, and vignettes coming soon. Can&#39;t wait to see what you all build! https://t.co/vBK0A70PTl pic.twitter.com/5kXRGta4jx — Ryan Timpe 📊 (@ryantimpe) 15 March 2019   You can get started with the brickr toybox, which lets you arrange bricks in a spreadsheet that {brickr} can turn into a 3D model.</description>
    </item>
    
    <item>
      <title>Package a {xaringan} template</title>
      <link>https://www.rostrum.blog/2019/05/24/xaringan-template/</link>
      <pubDate>Fri, 24 May 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/05/24/xaringan-template/</guid>
      <description>A remarkable ninja The {xaringan} package by Yihui Xie implements remark.js1 in R Markdown so you can create exciting presentations that contain reproducible R content.2
Yihui has encouraged people to submit styles—like the RLadies theme—to enrich {xaringan}.
This post is about a specific theme I recreated for {xaringan} and shared in the {gdstheme} package along with an R Markdown template.
Click on the slides embedded below and cycle through with your arrow keys, or you can open them fullscreen in a dedicated browser tab.</description>
    </item>
    
    <item>
      <title>Teach a person to {swirl}</title>
      <link>https://www.rostrum.blog/2019/05/10/swirlify/</link>
      <pubDate>Fri, 10 May 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/05/10/swirlify/</guid>
      <description>A metaphor for all the {swirl} courses you’ll make (via Giphy)  tl;dr Teach people to teach other people. That seems an efficient way to maximise impact.
 {swirl} lets people learn R from within R {swirlify} is a package to help write Swirl courses This post explains how to start a Swirl course with Swirlify For example, I’ve begun Tidyswirl for teaching tidyverse packages   Swirl Swirl is a platform that:</description>
    </item>
    
    <item>
      <title>Markov-chaining my PhD thesis II</title>
      <link>https://www.rostrum.blog/2019/04/30/markov-chain-phd-2/</link>
      <pubDate>Tue, 30 Apr 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/04/30/markov-chain-phd-2/</guid>
      <description>This is science, I promise.  tl;dr A Markov chain perfectly summarises my entire PhD thesis:
 In general, litter chemical composition and decomposition.
  {markovifyR} I posted a while back about using a Markov chain to generate sentences using my PhD thesis as input. I also posted about the {markovifyR} package for generating lyrics by The Mountain Goats.
This is a quick update to that original post, but this time I’m using {markovifyR}.</description>
    </item>
    
    <item>
      <title>Generating the Mountain Goats lyrics</title>
      <link>https://www.rostrum.blog/2019/04/25/gen-tmg-lyrics/</link>
      <pubDate>Thu, 25 Apr 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/04/25/gen-tmg-lyrics/</guid>
      <description>John Darnielle with the green-scaled slipcase for In League with Dragons (Merge Records, via Giphy)  The Mountain Goats released In League with Dragons today, their seventeenth studio album.
John Darnielle has written a lot of words across the Mountain Goat’s back catalogue. His lyrics are poetic and descriptive, covering fictional and autobiographical themes that include substance abuse, professional wrestling and cadaver-sniffing dogs.
Can we generate new Mountain Goats lyrics given this rich text data set?</description>
    </item>
    
    <item>
      <title>Fix leaky pipes in R</title>
      <link>https://www.rostrum.blog/2019/04/07/fix-leaky-pipes/</link>
      <pubDate>Sun, 07 Apr 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/04/07/fix-leaky-pipes/</guid>
      <description>Data leaking from a pipe (via Giphy)  tl;dr You can chain function calls in R with %&amp;gt;%. There’s a few ways to catch errors in these pipelines.
  Note
Eventually I will update this post to (i) provide updates about the packages mentioned, (ii) include new ones, like Antoine Fabri&#39;s {boomer} and Sean Kross&#39;s {mario}, (iii) replace the iris dataset using {palmerpenguins}, and (iv) improve its quality in general.</description>
    </item>
    
    <item>
      <title>A tidyverse functions quiz with {learnr}</title>
      <link>https://www.rostrum.blog/2019/03/18/tidyverse-quiz/</link>
      <pubDate>Mon, 18 Mar 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/03/18/tidyverse-quiz/</guid>
      <description>tl;dr Can you match the tidyverse function to its package? I used {learnr} to make a ‘tidyquiz’ to test you.
A live version is available at https://mattdray.shinyapps.io/tidyquiz/
To run locally and get the very latest functions:
remotes::install_github(&#34;matt-dray/tidyquiz&#34;) to install {tidyquiz} (it’s a package!) library(tidyquiz) to load it learnr::run_tutorial(&#34;tidy&#34;, package = &#34;tidyquiz&#34;) to open in your browser   The problem I saw a (probably) tongue-in-cheek tweet recently from Ryan Timpe:</description>
    </item>
    
    <item>
      <title>Web scraping the {polite} way</title>
      <link>https://www.rostrum.blog/2019/03/04/polite-webscrape/</link>
      <pubDate>Mon, 04 Mar 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/03/04/polite-webscrape/</guid>
      <description>Reaping with rvest Ah, salutations, and welcome to this blog post about polite web scraping. Please do come in. I’ll take your coat. How are you? Would you like a cup of tea? Oh, I insist!
Speaking of tea, perhaps you’d care to join me in genial conversation about it. Where to begin? Let’s draw inspiration from popular posts on the Tea subreddit of Reddit. I’ll fetch the post titles using the {rvest} package from Hadley Wickham and get the correct CSS selector using SelectorGadget by Andrew Cantino and Kyle Maxwell.</description>
    </item>
    
    <item>
      <title>What’s your Hadley Number?</title>
      <link>https://www.rostrum.blog/2019/02/27/hadley-number/</link>
      <pubDate>Wed, 27 Feb 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/02/27/hadley-number/</guid>
      <description>A Bacon Number of zero and a Bacon Number of one (via Giphy)  tl;dr I made a Shiny app to demonstrate the Six Degrees of Kevin Bacon. Except it’s for CRAN authors. And Hadley Wickham is Kevin Bacon.
To help do this, I made the little package {kevinbacran} (as in ‘Kevin Bacon’ + ‘CRAN’, lol) to find the network separation between any two authors on CRAN.
 Six degrees People are connected to each other in networks.</description>
    </item>
    
    <item>
      <title>Graphing the Relayverse of podcasts</title>
      <link>https://www.rostrum.blog/2019/02/14/relayverse/</link>
      <pubDate>Thu, 14 Feb 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/02/14/relayverse/</guid>
      <description>The Relay FM podcast network, visualised. View it here.  tl;dr I made an interactive graph network of the podcast host relationships on Relay FM using R. You can interact with it in a separate window and find out below how it was made.
I refreshed the data and style of the visualisation on 02 Jan 2020.
 Podcast networks Podcasting is becoming big business. Music-streaming giant Spotify just acquired the podcast network Gimlet for a reported $200 million.</description>
    </item>
    
    <item>
      <title>Git going: the command line</title>
      <link>https://www.rostrum.blog/2019/02/01/git-going-cl/</link>
      <pubDate>Fri, 01 Feb 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/02/01/git-going-cl/</guid>
      <description>Examples of inputs and outputs at the command line  tl;dr This post is a basic introduction to the command line, focusing on macOS’s Terminal. Here are some commonly-used commands:
  Command Example Short explanation    pwd pwd Print working directory  cd cd &amp;lt;filepath&amp;gt; Change directory  ls ls List folder contents  mkdir mkdir &amp;lt;folder name&amp;gt; Make directory (folder)  touch touch &amp;lt;filename&amp;gt; Create a file  nano nano &amp;lt;filename&amp;gt; Open Nano editor  open open &amp;lt;filename&amp;gt; Open a file in its default program  mv mv &amp;lt;filename&amp;gt; &amp;lt;filepath&amp;gt; Move a file  rm rm &amp;lt;filename&amp;gt; Remove (delete) a file  man man &amp;lt;command name&amp;gt; Manual for a command     New Year’s R-solution People shared recently on Twitter their R goals for 2019 (see Maëlle Salmon’s post).</description>
    </item>
    
    <item>
      <title>Map deer-vehicle colisions with {shiny}</title>
      <link>https://www.rostrum.blog/2019/01/18/deer-collisions/</link>
      <pubDate>Fri, 18 Jan 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/01/18/deer-collisions/</guid>
      <description>Oh dear, roe deer (Marek Szczepanek, CC BY-SA 4.0)  Open data Deer roam Scotland. So do humans. It’s a problem when they meet at high speed.
The National Deer-Vehicle Collisions Project, administered by The Deer Initiative, has been monitoring data on deer-vehicle collisions in the UK.
The data are open. I found the data set when skimming through data.gov.uk (a classic weekend activity for all the family). It links to the SNH Natural Spaces site where you can download the data as shapefile, GML or KML under the Open Government Licence.</description>
    </item>
    
    <item>
      <title>Motivate yourself with an .Rprofile</title>
      <link>https://www.rostrum.blog/2019/01/04/rprofile-motivate/</link>
      <pubDate>Fri, 04 Jan 2019 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2019/01/04/rprofile-motivate/</guid>
      <description>My dream is to pet this kitty (via Giphy)  What’s an R profile? It’s a file that contains R code that runs when you start or restart R. You can use it to customise your environment. For example, you could set options, create functions or load packages.
There’s lots of information in the R startup chapter of Colin Gillespie’s’s Efficient R Programming book.
But beware: use of an R profile may not be particularly reproducible if the .</description>
    </item>
    
    <item>
      <title>Travel the NBA with {rvest}, {leaflet} and {osrm}</title>
      <link>https://www.rostrum.blog/2018/12/24/nba-travel/</link>
      <pubDate>Mon, 24 Dec 2018 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2018/12/24/nba-travel/</guid>
      <description>Classic Jazz: Stockton to Malone for the dunk (via Giphy)   Note
The original version of this post (December 2018) used the {gmapsdistance} package. I updated it extensively in 2020 to use the {osrm} package, which doesn’t require an API key nor billing details.
 tl;dr The {osrm} R package can retrieve from the OSRM API the travel duration between points.</description>
    </item>
    
    <item>
      <title>Change your {blogdown} fonts</title>
      <link>https://www.rostrum.blog/2018/11/29/fontface-lithium/</link>
      <pubDate>Thu, 29 Nov 2018 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2018/11/29/fontface-lithium/</guid>
      <description>Lithium by Nirvana (via Giphy)  tl;dr Want to change the font for your {blogdown} site? I’ve been using this workflow:
Find a font on the Google Fonts site Search for the font name on the independent Google Web Fonts Helper Download the zip file from the Helper, then copy all the files to static/fonts/ folder Copy the CSS from the Helper into your static/css/fonts.css file   Not my type You can change the default font face for your {blogdown} blog with freely-available files from Google Fonts.</description>
    </item>
    
    <item>
      <title>Quantify colour by {magick}</title>
      <link>https://www.rostrum.blog/2018/11/25/art-of-the-possible/</link>
      <pubDate>Sun, 25 Nov 2018 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2018/11/25/art-of-the-possible/</guid>
      <description>‘Walrus rainbow vomit’ is a sentence I’d never thought I’d type (via Giphy)   Note
I later learnt about {colorfindr} by David Zumbach, which can extract colours from images, provide composition details and generate palettes. Check it out.
 tl;dr I used the {magick} package in R to map an image’s colours to their nearest match from a simplified palette, then quantified how much of the image was covered by each colour in that palette.</description>
    </item>
    
    <item>
      <title>Waggle dance with {ggbeeswarm} and {emoGG}</title>
      <link>https://www.rostrum.blog/2018/11/21/waggle-dance/</link>
      <pubDate>Wed, 21 Nov 2018 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2018/11/21/waggle-dance/</guid>
      <description>A bee scene from irreverent 90s Nicktoon ‘Hey Arnold!’ (via Giphy)  How to plot grouped continuous data? A boxplot lets you show continuous data split by categories, but it hides the data points and doesn’t tell you much about distribution. A violin chart will show the distribution but you still don’t know about the density of data.
Stripcharts show the data for each category as individual points. The points can be layered on top of each other where they take the same Y value and can be stretched arbitrarily along the X axis.</description>
    </item>
    
    <item>
      <title>Teaching R with Pokémon Go data</title>
      <link>https://www.rostrum.blog/2018/11/04/r-train-pkmn/</link>
      <pubDate>Sun, 04 Nov 2018 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2018/11/04/r-train-pkmn/</guid>
      <description>Psyduck hurt itself in its confusion (via Giphy)  You teach me and I’ll teach you I wrote in a recent post about some training materials I wrote for teaching R Markdown.
Now I’m sharing another thing I made: Beginner R and RStudio Training (featuring Pokémon!). It’s an introduction to R, RStudio, R Projects, directory structure and the tidyverse. It uses Pokémon Go1 data that I collected myself.2
You can:</description>
    </item>
    
    <item>
      <title>R session info info</title>
      <link>https://www.rostrum.blog/2018/10/13/sessioninfo/</link>
      <pubDate>Sat, 13 Oct 2018 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2018/10/13/sessioninfo/</guid>
      <description>US Attorney-General Jeff Sessions-Info (via Giphy)  Session info? What Session info is just some details about your working environment like your version of R, the locale it’s running from and any loaded packages.
It gives a snapshot to help people reproduce what you’ve done or spot any anomalies. You might get asked for this if someone is diagnosing your R problem. You may also see it at the end of blog posts or reports.</description>
    </item>
    
    <item>
      <title>Knitting Club: R Markdown for beginners</title>
      <link>https://www.rostrum.blog/2018/09/24/knitting-club/</link>
      <pubDate>Mon, 24 Sep 2018 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2018/09/24/knitting-club/</guid>
      <description>Knitting simulator by Kara Stone and Gabby DaRienzo (via Giphy)  tl;dr I made a couple of training resources about R Markdown for reproducibility:
 Knitting Club (see the slides or source) Quick R Markdown (see the slides or source).  Click the resource names to jump straight to those sections.
 Reproducibility It’s often important to recreate and verify prior work, as well as update it in future as data changes.</description>
    </item>
    
    <item>
      <title>EARL 2018: {crosstalk} in memes</title>
      <link>https://www.rostrum.blog/2018/09/12/crosstalk-memes/</link>
      <pubDate>Wed, 12 Sep 2018 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2018/09/12/crosstalk-memes/</guid>
      <description>EARL 2018 I gave a talk called ‘Crosstalk: Shiny-like without Shiny’1 at the 2018 EARL conference in London.
The {crosstalk} package by Joe Cheng allows htmlwidgets—JavaScript visualisations wrapped in R code—to interact with each other. Filtering the data in widget causes all widgets to be filtered. This can be done inside an R Markdown document (including Flexdashboard) for easy server-less sharing in HTML format.</description>
    </item>
    
    <item>
      <title>Engifification in R with {gifski}</title>
      <link>https://www.rostrum.blog/2018/07/26/engifification-in-r-with-gifski/</link>
      <pubDate>Thu, 26 Jul 2018 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2018/07/26/engifification-in-r-with-gifski/</guid>
      <description>A sloth. On a pizza slice. In space. (via Giphy)  gifski() You and I both know that the world needs more intergalatic-sloth-pizza gifs.
Great news: ‘the fastest gif encoder in the universe’ has been created. The {gifski} package for R is now on CRAN. It’s a simple yet fast and powerful way to create gifs from within R, built by Jeroen Ooms) for rOpenSci.
The obvious application is for creating gifs from plots, as in the following example from the ROpenSci announcement, which shows life expectancy by GDP per capita with a different year for each frame of the gif.</description>
    </item>
    
    <item>
      <title>Markov-chaining my PhD thesis</title>
      <link>https://www.rostrum.blog/2018/06/30/markov-chain-phd/</link>
      <pubDate>Sat, 30 Jun 2018 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2018/06/30/markov-chain-phd/</guid>
      <description>This. Is. Science.  tl;dr I wrote a thesis, but a Markov chain can rewrite it and make about as much sense as the original.
See also an updated version of this blog for a better approach.
 Doc rot I wrote a PhD thesis in 2014 called ‘Effects of multiple environmental stressors on litter chemical composition and decomposition’. See my viva presentation slides here if you don’t really like words.</description>
    </item>
    
    <item>
      <title>Iterative R Markdown reports for Dawson&#39;s Creek</title>
      <link>https://www.rostrum.blog/2018/06/26/mail-merge/</link>
      <pubDate>Tue, 26 Jun 2018 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2018/06/26/mail-merge/</guid>
      <description>Dawson’s Creek’s Dawson leaks  tl;dr You have customer details. You want to send each person a personalised letter from a template. You want to mail merge, basically.1
This post shows how you can use R to iteratively produce separate Microsoft Word reports from a common template, each one with slightly different data. Here I use R Markdown and the {knitr} package to render a separate report about each episode of Dawson’s Creek (a classic use case!</description>
    </item>
    
    <item>
      <title>Cloudy with a chance of pie</title>
      <link>https://www.rostrum.blog/2018/05/25/cloud-pie/</link>
      <pubDate>Fri, 25 May 2018 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2018/05/25/cloud-pie/</guid>
      <description>The pinnacle of visualisation Great news everyone: I’ve taken the best of two stellar data visualisations and smashed them together into something that can only be described as perfection.
Let me set the scene. There’s three things we can agree on:
Everyone loves pie charts, particularly when they’re in 3D, exploded and tilted. Word clouds aren’t at all overused. I have too much time on my hands.  With that in mind, I’ve artfully melded clouds and pies into the function cloud_pie(), which I think sounds rather sweet.</description>
    </item>
    
    <item>
      <title>Pokéballs in Super Smash Bros</title>
      <link>https://www.rostrum.blog/2018/05/19/pokeballs-in-super-smash-bros/</link>
      <pubDate>Sat, 19 May 2018 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2018/05/19/pokeballs-in-super-smash-bros/</guid>
      <description>Smash! Super Smash Bros (SSB) is a beat ’em up videogame series featuring characters from various Nintendo franchises and beyond.
The series has featured on Nintendo 64 (Super Smash Bros, 1998), Gamecube (SSB Melee, 2001), Wii (SSB Brawl, 2008), Wii U and 3DS (SSB ‘4’, 2014) and an upcoming title for the Switch console.
The game is popular enough to have resulted in a series of organised tournaments1.
You can fight characters directly but you can also make use of items and weapons from games across the Nintendo universe, such as the mushroom (the Super Mario series), the heart container (Zelda) and the home run bat (EarthBound).</description>
    </item>
    
    <item>
      <title>R Trek: exploring stardates</title>
      <link>https://www.rostrum.blog/2018/04/14/r-trek-exploring-stardates/</link>
      <pubDate>Sat, 14 Apr 2018 00:00:00 +0000</pubDate>
      
      <guid>https://www.rostrum.blog/2018/04/14/r-trek-exploring-stardates/</guid>
      <description>Captain’s log  Star date 71750.51. Our mission is to use R statistical software to extract star dates mentioned in the captain’s log from the scripts of Star Trek: The Next Generation and observe their progression over the course of the show’s seven seasons. There appears to be some mismatch in the frequency of digits after the decimal point – could this indicate poor ability to choose random numbers?</description>
    </item>
    
  </channel>
</rss>