Exemplo n.º 1
0
        public async Task<IHttpActionResult> GetService(string id)
        {
            Service service = await db.Services.FindAsync(id);
            if (service == null)
            {
                return NotFound();
            }

            var ServiceFeed = new SyndicationFeed();
            ServiceFeed.Id = service.Id;
            ServiceFeed.LastUpdatedTime = service.Updated;
            ServiceFeed.Title = new TextSyndicationContent(service.Title);
            ServiceFeed.Description = new TextSyndicationContent(service.Summary);

            ServiceFeed.Categories.Add(new SyndicationCategory(service.ServiceCategoryId.ToString(), null, service.Category.Name));

            var SelfLink = new SyndicationLink();
            SelfLink.RelationshipType = "self";
            SelfLink.Uri = new Uri(Url.Content("~/Service/" + service.Id));
            SelfLink.MediaType = "application/atom+xml";
            ServiceFeed.Links.Add(SelfLink);

            var HtmlLink = new SyndicationLink();
            HtmlLink.RelationshipType = "self";
            HtmlLink.Uri = new Uri("http://surreyhillsdc.azurewebsites.net/");
            HtmlLink.MediaType = "text/html";
            ServiceFeed.Links.Add(HtmlLink);

            return Ok(ServiceFeed.GetAtom10Formatter());
        }
Exemplo n.º 2
0
        private string GetFeedContent(SyndicationFeed feed)
        {
            using (var sw = new StringWriter())
            using (var xw = XmlWriter.Create(sw))
            {
                feed.GetAtom10Formatter().WriteTo(xw);
                xw.Flush();

                return sw.ToString();
            }
        }
Exemplo n.º 3
0
        public Atom10FeedFormatter StreamedFeed()
        {
            SyndicationFeed feed = new SyndicationFeed("Streamed feed", "Feed to test streaming", null);

            //Generate an infinite stream of items. Both the client and the service share
            //a reference to the ItemCounter, which allows the sample to terminate
            //execution after the client has read 10 items from the stream
            ItemGenerator itemGenerator = new ItemGenerator(this.counter, 10);

            feed.Items = itemGenerator.GenerateItems();
            return feed.GetAtom10Formatter();
        }
Exemplo n.º 4
0
        public Atom10FeedFormatter GetProcessesFeed( int topItems )
        {
            // Create the list of syndication items. These correspond to Atom entries
            List<SyndicationItem> items = new List<SyndicationItem>();
            int currentItem = 0;
            foreach (Process currentProces in Process.GetProcesses())
            {
                currentItem += 1;
                if ( topItems > 0 && currentItem > topItems )
                {
                    continue;
                }
                items.Add( new SyndicationItem
                {
                    // Every entry must have a stable unique URI id
                    Id = String.Format( "http://tempuri.org/Processes?max={0}", currentProces.Id ),
                    Title = new TextSyndicationContent( String.Format( "Process '{0}'", currentProces.ProcessName ) ),
                    // Every entry should include the last time it was updated
                    LastUpdatedTime = DateTime.Now,
                    // The Atom spec requires an author for every entry. If the entry has no author, use the empty string
                    Authors =
                    {
                        new SyndicationPerson()
                        {
                            Name = currentProces.StartInfo.UserName
                        }
                    },
                    // The content of an Atom entry can be text, xml, a link or arbitrary content. In this sample text content is used.
                    Content = new TextSyndicationContent( String.Format( "FileName: {0}\nArguments: {1}", currentProces.StartInfo.FileName, currentProces.StartInfo.Arguments) ),
                } );

            }
            // create the feed containing the syndication items.
            SyndicationFeed feed =
                new SyndicationFeed
                {
                    // The feed must have a unique stable URI id
                    Id = "http://tempuri.org/FeedId",
                    Title = new TextSyndicationContent( "Processor List" ),
                    Items = items
                };
            #region Sets response content-type for Atom feeds
            WebOperationContext.Current.OutgoingResponse.ContentType = "application/atom+xml";
            #endregion
            return feed.GetAtom10Formatter();
        }
Exemplo n.º 5
0
        public string SerializeFeed(SyndicationFeed feed, SyndicationFormat format)
        {
            using (var stream = new MemoryStream())
            {
                var writer = XmlWriter.Create(stream);

                if (format == SyndicationFormat.Atom)
                {
                    feed.GetAtom10Formatter().WriteTo(writer);
                }
                else
                {
                    feed.GetRss20Formatter().WriteTo(writer);
                }

                writer.Flush();

                stream.Position = 0;

                var reader = new StreamReader(stream, Encoding.UTF8);
                return reader.ReadToEnd();
            }
        }
    public Atom10FeedFormatter GetContacts()
    {
      var items = new List<SyndicationItem>();

      var repository = new ContactsRepository();

      foreach (Contact contact in repository.GetContactsForUser(Thread.CurrentPrincipal.Identity.Name))
      {
        items.Add(new SyndicationItem
          {
            Id = String.Format(CultureInfo.InvariantCulture, "http://contacts.org/{0}", Guid.NewGuid()),
            Title = new TextSyndicationContent(contact.FullName),
            LastUpdatedTime = DateTime.UtcNow,
            Authors =
              {
                new SyndicationPerson
                  {
                    Name = "Sample Author"
                  }
              },
            Content = new TextSyndicationContent(contact.Email),
          });
      }

      // create the feed containing the syndication items.

      var feed = new SyndicationFeed
        {
          // The feed must have a unique stable URI id

          Id = "http://contacts/Feed",
          Title = new TextSyndicationContent("Contacts feed"),
          Items = items
        };

      feed.AddSelfLink(WebOperationContext.Current.IncomingRequest.GetRequestUri());

      WebOperationContext.Current.OutgoingResponse.ContentType = ContentTypes.Atom;

      return feed.GetAtom10Formatter();
    }
Exemplo n.º 7
0
        public async Task<IHttpActionResult> GetServices()
        {
            var Services = await db.Services.ToListAsync();

            var ServiceItemList = new List<SyndicationItem>();
            Services.ForEach(i =>
                {
                    var Entry = new SyndicationItem();
                    Entry.Id = i.Id;

                    Entry.Authors.Add(new SyndicationPerson(null, "Cleansing Services", "http://www.surreyhills.gov.uk/cleansing"));
                    Entry.Categories.Add(new SyndicationCategory(i.ServiceCategoryId.ToString(), null, i.Category.Name));
                    Entry.Content = SyndicationContent.CreateHtmlContent("<p>" + i.Content + "</p>");
                    Entry.LastUpdatedTime = i.Updated;
                    Entry.Summary = new TextSyndicationContent(i.Summary);
                    Entry.Title = new TextSyndicationContent(i.Title);                    

                    var AtomLink = new SyndicationLink();
                    AtomLink.RelationshipType = "self";
                    AtomLink.Uri = new Uri(Url.Content("~/Service/" + i.Id));
                    AtomLink.MediaType = "application/atom+xml";
                    Entry.Links.Add(AtomLink);

                    var HtmlLink = new SyndicationLink();
                    HtmlLink.RelationshipType = "self";
                    HtmlLink.Uri = new Uri("http://surreyhillsdc.azurewebsites.net/" + i.Title.ToLower().Replace(" a ", " ").Replace(" the ", " ").Replace(" ", "-"));
                    HtmlLink.MediaType = "text/html";
                    Entry.Links.Add(HtmlLink);

                    var XmlLink = new SyndicationLink();
                    XmlLink.RelationshipType = "self";
                    XmlLink.Uri = new Uri("http://surreyhillsdc.azurewebsites.net/" + i.Title.ToLower().Replace(" a ", " ").Replace(" the ", " ").Replace(" ", "-") + ".xml");
                    XmlLink.MediaType = "text/xml";
                    Entry.Links.Add(XmlLink);

                    //Entry.ElementExtensions.Add(new SyndicationElementExtension("point", "http://www.georss.org/georss", "45.256" + " " + "-71.92"));

                    ServiceItemList.Add(Entry);
                });

            var ServiceFeed = new SyndicationFeed();
            ServiceFeed.Items = ServiceItemList;
            ServiceFeed.Id = "43UZ";
            ServiceFeed.LastUpdatedTime = ServiceItemList.Max(i => i.LastUpdatedTime);
            ServiceFeed.Title = new TextSyndicationContent("Surrey Hills District Council Service List");
            ServiceFeed.Description = new TextSyndicationContent("Service list for Surrey Hills District Council");
            ServiceFeed.Authors.Add(new SyndicationPerson(null, "Surrey Hills District Council", "http://www.surreyhills.gov.uk/"));

            var geoRssXmlQualifiedName = new XmlQualifiedName("georss", "http://www.w3.org/2000/xmlns/");
            var gmlXmlQualifiedName = new XmlQualifiedName("gml", "http://www.w3.org/2000/xmlns/");

            ServiceFeed.AttributeExtensions.Add(geoRssXmlQualifiedName, "http://www.georss.org/georss");
            ServiceFeed.AttributeExtensions.Add(gmlXmlQualifiedName, "http://www.opengis.net/gml");


            ServiceFeed.ElementExtensions.Add(new SyndicationElementExtension("polygon", "http://www.georss.org/georss", 
                @"51.173125423800002 -0.418577247033 51.173236139799997 -0.418584903464 51.1733377125 -0.418714470245 51.173423733500002 -0.418957583938 51.173462258900003 -0.419146530966 51.1734743982 -0.419246255187 51.173486063600002 -0.419377468055 51.173489725499998 -0.41958191339 51.173452018299997 -0.419919384793 51.173432833100001 -0.420629599131 51.173402468299997 -0.420978262877 51.173356744400003 -0.421321728497 51.173395467 -0.42159221237 51.173473253700003 -0.422291962227 51.173508332499999 -0.42249247431 51.1735432953 -0.422684407265 51.173683756300001 -0.423097340083 51.173730557600003 -0.423300314929 51.173854451300002 -0.423685204774 51.173984346799998 -0.424048433352 51.174022055 -0.424177330346 51.174062132099998 -0.42428182692 51.174107525399997 -0.424380420124 51.174379948 -0.42484322812 51.174588144300003 -0.425278187165 51.174652039900003 -0.425482016395 51.174533328599999 -0.425682051894 51.174448433400002 -0.425922421845 51.1744924646 -0.425986729601 51.174659845100003 -0.426195619231 51.174702367 -0.426281437926 51.174845564599998 -0.426631352062 51.174899276600001 -0.426746833313 51.174959184400002 -0.426854950904 51.175008762200001 -0.426930516337 51.175072722 -0.42700559246 51.175157355899998 -0.427079965205 51.1755094317 -0.427381290019 51.175565546500003 -0.427407993181 51.175609173200002 -0.427442274455 51.175657505700002 -0.427492132602 51.175697003300002 -0.427553736487 51.175735832599997 -0.427632530791 51.175755343299997 -0.427679077885 51.175800829899998 -0.427784827964 51.1758008491 -0.427786257944 51.1758015602 -0.427839167199 51.1758150478 -0.427905948203 51.175818916799997 -0.427993085288 51.1758003331 -0.428082416666 51.1757837348 -0.428118747019 51.175762565399999 -0.428149510283 51.175703931299999 -0.42820300711 51.175552505799999 -0.428311161905 51.175310808299997 -0.42839377316 51.1750802046 -0.428498896093 51.175018700800003 -0.428539613751 51.174960850200002 -0.428584498917 51.174862116200003 -0.428732346849 51.174714900300003 -0.42888613397 51.174542972799998 -0.429007856345 51.174465803799997 -0.42902049343 51.174399663400003 -0.428916877818 51.174228450100003 -0.429158744071 51.174015818199997 -0.429530767973 51.174406181499997 -0.429938097716 51.174723709 -0.430212000822 51.174926173700001 -0.430355337973 51.175507866300002 -0.430880650644 51.1757467865 -0.431127191599 51.175879422800001 -0.431227125617 51.175942881200001 -0.431265029482 51.176042275599997 -0.43130028308 51.176097241299999 -0.431308431934 51.1761529909 -0.431307970337 51.176253454300003 -0.431288823301 51.176493054300003 -0.431317887678 51.176618571200002 -0.431289306175 51.177013562 -0.431304512354 51.177318396499999 -0.431302749368 51.177740073300001 -0.431497317289 51.177941541599999 -0.431633549432 51.178052050600002 -0.431759993043 51.178262895099998 -0.432059009933 51.178703148 -0.432499042682 51.178822378299998 -0.432672408575 51.178902686800001 -0.432759820797 51.179056494 -0.432896247244 51.179218202400001 -0.433152588727 51.179571725199999 -0.433966144741 51.179591981100003 -0.434135717575 51.179602696400003 -0.434600348392 51.179575484499999 -0.434986141824 51.179597727599997 -0.435102710049 51.179607826 -0.435185351607 51.179610752499997 -0.435269666795 51.179606698299999 -0.435369956603 51.179597021200003 -0.435453267759 51.179580937200001 -0.435528211286 51.179553492799997 -0.43562786207 51.179529529100002 -0.435786055581 51.179644814299998 -0.436135548915 51.179723378799999 -0.436429056233 51.179764839900002 -0.436705219886 51.179809052 -0.437187319911 51.179539886599997 -0.437099131864 51.179502206599999 -0.437375109636 51.179646752300002 -0.437491835739 51.179786496799998 -0.437653078318 51.180038995499999 -0.438176785576 51.180052994299999 -0.438214943073 51.180105202699998 -0.438353393596 51.180198835900001 -0.438496167714 51.180297900299998 -0.438641620433 51.180683337399998 -0.439019200954 51.1809047785 -0.43930503252 51.181305315899998 -0.439870979433 51.181499805 -0.440226407451 51.181644459700003 -0.440418976755 51.182071551900002 -0.441088496535 51.182415781899998 -0.441546197456 51.182718623600003 -0.44200243897 51.183271282500002 -0.442985408045 51.183153911799998 -0.443288412715 51.183535644300001 -0.443929459689 51.183287162699997 -0.444314144884 51.183158916899998 -0.444475857265 51.183199356599999 -0.444608996733 51.182636497300003 -0.445427784781 51.182569108 -0.445567412734 51.182505352 -0.445709779734 51.182383454799997 -0.446078742967 51.1822290956 -0.446508890517 51.182092351599998 -0.446911257412 51.181934514200002 -0.447282852628 51.181812960499997 -0.447610301828 51.180583637200002 -0.44740693716 51.179375810099998 -0.449502061751 51.178938493799997 -0.450296480894 51.178485134699997 -0.451170111781 51.177392410400003 -0.453133858109 51.1768323159 -0.454098272137 51.1763906053 -0.454902764589 51.175967739400001 -0.455636510728 51.175898407600002 -0.455766153751 51.175857689 -0.455883395385 51.175744037599998 -0.45626630878 51.175688490299997 -0.456418379854 51.175254644200002 -0.456797675339 51.175161204200002 -0.456872325678 51.17490736 -0.457058195389 51.174895039600003 -0.457078635098 51.175250088399999 -0.457134021372 51.175574222900003 -0.457231928429 51.176082906300003 -0.457481047067 51.176305862100001 -0.457612378407 51.176485595700001 -0.45773943071 51.176646584399997 -0.457877124041 51.177325298699998 -0.458472529032 51.177805250500001 -0.458930078763 51.177880560799998 -0.459049176428 51.177367081699998 -0.459459733634 51.177331771600002 -0.459578226129 51.177295525700004 -0.45996714727 51.177215181100003 -0.460421917178 51.177161825799999 -0.460672631362 51.177137621 -0.460815073921 51.177095338 -0.461155550672 51.177022479800002 -0.462316816574 51.177018963899997 -0.462801929461 51.177025137100003 -0.463066397445 51.177034081400002 -0.463336496017 51.177060095800002 -0.463879284708 51.1770442284 -0.464246062846 51.1770565359 -0.464361537923 51.1770757528 -0.464455323477 51.177100325399998 -0.464546069836 51.177138494 -0.464644948631 51.177280620799998 -0.464922069785 51.177610700400002 -0.465610710565 51.177782302300002 -0.46594122524 51.1778374923 -0.46603524957 51.178004164900003 -0.46619567812 51.178297153099997 -0.466525031308 51.178361668100003 -0.466575826741 51.178418748299997 -0.466608269783 51.178472064099999 -0.466627961405 51.178577497 -0.466644493132 51.178714429499998 -0.466731515701 51.1792674979 -0.467281167647 51.179465181700003 -0.467612266057 51.179374339100001 -0.468435091568 51.179157524600001 -0.470008928353 51.179007027499999 -0.471291549967 51.178839287899997 -0.472563287174 51.1786814596 -0.473837549093 51.178511502799999 -0.475079295978 51.178403154599998 -0.475597925816 51.178223971800001 -0.475649618716 51.178106794100003 -0.47569783538 51.177989653700003 -0.475748911953 51.177978340700001 -0.47577789896 51.177971559500001 -0.475809597882 51.178032331 -0.476056534679 51.1779961931 -0.476526994201 51.177914270499997 -0.476934580647 51.177916076599999 -0.47707329826 51.177903667800003 -0.477225360492 51.177891115199998 -0.477297308665 51.177863802499999 -0.477409802426 51.177798485 -0.477849745011 51.177655340900003 -0.478667088057 51.177632354 -0.478766561882 51.177597774299997 -0.47887357058 51.1775471817 -0.478993982249 51.177367233399998 -0.479401924151 51.1774222827 -0.4794859535 51.177471114 -0.479575910321 51.177516423900002 -0.479671705887 51.177605821900002 -0.479907688915 51.178003944799997 -0.480579896534 51.178229271500001 -0.480895826825 51.178393509499998 -0.481216629209 51.178548378499997 -0.481577801599 51.178687021099996 -0.482005322309 51.178796113300002 -0.482719959658 51.178831516899997 -0.483092215112 51.178837357200003 -0.483403920318 51.178804507 -0.483714033611 51.178814858700001 -0.484027021424 51.178845235700003 -0.484289277404 51.178883637600002 -0.484476873071 51.178920047299997 -0.484580121767 51.178935133700001 -0.484633994514 51.178954723499999 -0.484757825069 51.178958095900001 -0.484879325974 51.178938874700002 -0.485061657929 51.178921822699998 -0.485133753022 51.178902203699998 -0.485215947257 51.178693141799997 -0.485807962289 51.178398516599998 -0.486737559404 51.178318444699997 -0.486943341169 51.178259790699997 -0.487066871114 51.178217975199999 -0.48717125044 51.178163600700003 -0.487347575578 51.178126323699999 -0.487524771446 51.1781057002 -0.487668516044 51.178074502199998 -0.488107329787 51.1780680468 -0.488512427723 51.178092342200003 -0.488583167921 51.178235927199999 -0.488768755216 51.178407870400001 -0.488921940913 51.178762881499999 -0.489114925384 51.179005135600001 -0.489211448057 51.179269104799999 -0.489248601824 51.179485653900002 -0.489304475046 51.1795580832 -0.489342168065 51.179596280299997 -0.489375257236 51.179640129399999 -0.489428192121 51.179688731500001 -0.489501002179 51.179747720100004 -0.48961210308 51.179923748 -0.490151466469 51.179952715900001 -0.490166258303 51.179984343599997 -0.490178101746 51.180070749 -0.490183863253 51.180374688599997 -0.490182517484 51.180818290200001 -0.490202362548 51.181032777 -0.490168169765 51.181229784099997 -0.490173179186 51.181484382 -0.490250708574 51.1816048588 -0.490318312553 51.181659365100003 -0.490360886779 51.181688665199999 -0.490401422951 51.181835360800001 -0.490758625854 51.181869856500001 -0.490853363618 51.181952304399999 -0.49117975839 51.182126919399998 -0.49181935678 51.1824898315 -0.491718800044 51.182512078 -0.491630793109 51.182728897799997 -0.491638023714 51.182905612699997 -0.491603638198 51.183383459600002 -0.491559421733 51.183520277200003 -0.491569263809 51.183542878799997 -0.491578542007 51.1835820111 -0.491614467006 51.183608651 -0.491657954203 51.183629971199998 -0.491707338569 51.183647018199999 -0.491774032878 51.183823931 -0.492243307955 51.184030366499996 -0.492840402643 51.183977427400002 -0.492919396851 51.184118762700002 -0.493349774984 51.184203241 -0.493694725242 51.184266366700001 -0.493708407044 51.184278512900001 -0.493743783244 51.184304293399997 -0.49386027559 51.184340094 -0.49405657123 51.184417007599997 -0.494722290484 51.184196469299998 -0.494845376909 51.183999373100001 -0.494903309045 51.183270162900001 -0.494981434568 51.1832127435 -0.494991889938 51.183171875100001 -0.495100535008 51.183155834 -0.495391520372 51.183150080099999 -0.495573425892 51.1831547978 -0.495660554249 51.183178302599998 -0.495810028511 51.183409394900004 -0.4964378072 51.183452876799997 -0.496602372137 51.183602164600003 -0.49723281901 51.183736623500003 -0.497689185919 51.183757648399997 -0.49778580149 51.183779095600002 -0.497915313446 51.183792471 -0.498046518777 51.183799188199998 -0.498289548556 51.183801759300003 -0.49855989969 51.183796899400001 -0.498741778258 51.183788351799997 -0.498916622231 51.183761385399997 -0.499057723559 51.183695637900001 -0.499330293355 51.183675256800001 -0.499494074169 51.183670670399998 -0.499837631231 51.183677989700001 -0.499987634668 51.183632493399998 -0.500156522964 51.183510219299997 -0.500790071302 51.183489138100001 -0.501039725186 51.183498364499997 -0.501128139295 51.183571203900001 -0.501689536811 51.183524104599996 -0.502084551231 51.183553246099997 -0.502464216113 51.183564443 -0.502917436937 51.183534519299997 -0.503600927861 51.183525269199997 -0.504213636395 51.183524721700003 -0.504592832546 51.183547049300003 -0.505354759701 51.183621052200003 -0.505375259728 51.183918422600001 -0.505422875529 51.184071788600001 -0.505390727967 51.185074098800001 -0.505149392156 51.186401891800003 -0.50476300325 51.187245736500003 -0.504506736374 51.187582021899999 -0.504432887209 51.187724893199999 -0.504423969167 51.187778641900003 -0.504478037943 51.187919127299999 -0.504493524192 51.188232918799997 -0.504489090323 51.188296850900002 -0.50449560679 51.188418843299999 -0.504541743164 51.188529518499998 -0.504546746617 51.188640157199998 -0.504548889231 51.188694956799999 -0.504474133189 51.188848337800003 -0.504513529672 51.189277034200003 -0.504704290551 51.189282095499998 -0.504748488975 51.189340780400002 -0.504766624092 51.189389744899998 -0.504727832125 51.189520384799998 -0.504606257666 51.189598958300003 -0.504562213734 51.189708183100002 -0.504594454273 51.189990147099998 -0.50456242972 51.190188034499997 -0.50456604113 51.190232028899999 -0.504490201301 51.190323260100001 -0.504451470961 51.190565264200004 -0.504529500855 51.190791252499999 -0.504620929788 51.190965731699997 -0.50462243702 51.191044137699997 -0.504635640904 51.1911234974 -0.504653107248 51.191320501200003 -0.50472830281 51.191369938100003 -0.50479682668 51.191415264299998 -0.504895536978 51.191487283400001 -0.504971916938 51.191603498200003 -0.504988191205 51.191812007899998 -0.504978580561 51.191984323600003 -0.504951536637 51.192006083300001 -0.504895018501 51.192130994700001 -0.504888113191 51.192276818499998 -0.504899135674 51.192349831 -0.504912514928 51.192516089 -0.50497439719 51.193170421799998 -0.505299559481 51.193504585500001 -0.505481953989 51.1940417084 -0.505853857479 51.194118002099998 -0.505912930629 51.194255289899999 -0.506030141187 51.194384633600002 -0.506159058954 51.194622079399998 -0.506373216147 51.194797471800001 -0.506446260838 51.194987593599997 -0.506546022906 51.194992778100001 -0.50667037115 51.195225458800003 -0.506793089413 51.195301606 -0.506840720508 51.195366980300001 -0.506960261452 51.195501410399999 -0.506994559079 51.195607645599999 -0.507004006049 51.195714743300002 -0.507010562703 51.195883555100004 -0.506990793265 51.196016885399999 -0.507009383148 51.196194271700001 -0.507168243146 51.196390958199999 -0.507007309523 51.196503252699998 -0.506927822432 51.196686163199999 -0.506744431775 51.196928149400001 -0.506468958868 51.197293489700002 -0.506135104161 51.197357516700002 -0.506078644071 51.197751288399999 -0.505788233559 51.19788217 -0.505615104728 51.197948326899997 -0.505514203681 51.197993571300003 -0.505395372101 51.198019719100003 -0.505259982629 51.198028126399997 -0.505143774299 51.198163806 -0.504712850449 51.198192155900003 -0.504538743227 51.198218522300003 -0.504420521406 51.198254703300002 -0.504296256304 51.198309541699999 -0.504154210846 51.1983436294 -0.504077246696 51.198422701299997 -0.503931552994 51.1986164574 -0.50347154458 51.198889315199999 -0.503008968103 51.1990168333 -0.502924679281 51.199162530800002 -0.502855545423 51.199235012499997 -0.502827431298 51.199262841900001 -0.502823666356 51.199326810499997 -0.502833043268 51.199391072200001 -0.50286531237 51.1995649598 -0.503031438054 51.199775846800001 -0.503277953564 51.2000231082 -0.503626351427 51.200104517500002 -0.503804066797 51.200180551300001 -0.50398338831 51.200295818 -0.50434751918 51.200405312800001 -0.504963762525 51.200459627199997 -0.505484460217 51.200523289700001 -0.505751500884 51.200596733499999 -0.505939499328 51.200665978499998 -0.506080398231 51.200819877299999 -0.506371718668 51.200904439699997 -0.506514986283 51.2021117723 -0.506272672632 51.202551855800003 -0.50615823453 51.202824593099997 -0.506107898494 51.203134737200003 -0.506029153611 51.203441614500001 -0.505976279955 51.204400222799997 -0.505763459698 51.204963510299997 -0.505649317568 51.205005438 -0.505834059129 51.205072976700002 -0.506334340347 51.205217980900002 -0.507197158905 51.205273932899999 -0.507494540788 51.205393025799999 -0.508089074384 51.205475726899998 -0.508580283943 51.205626474699997 -0.508977678867 51.205893291499997 -0.509803658414 51.2062995896 -0.510920050625 51.206499548700002 -0.511510567272 51.206565937800001 -0.511710278937 51.206552236900002 -0.512400739615 51.206503541799997 -0.512814601702 51.206466159400001 -0.513269614172 51.206497037600002 -0.51371813367 51.206625491300002 -0.515052522536 51.206640636700001 -0.515253887757 51.206653965800001 -0.515453879934 51.2066682456 -0.516083314989 51.20670179 -0.516672047252 51.206709725099998 -0.516730487042 51.206729672500003 -0.516814309368 51.206759598600001 -0.516904969112 51.206912261200003 -0.517313793054 51.207211673899998 -0.518019974394 51.207365242500003 -0.518358628523 51.207648015799997 -0.519029567012 51.207958573600003 -0.519835626373 51.208106932900002 -0.521185183842 51.208123721 -0.521375051822 51.208143365600002 -0.521791024846 51.208229267199997 -0.522611458844 51.208359165399997 -0.524282307947 51.209089405699999 -0.524641215535 51.2093955048 -0.524668655973 51.209266766299997 -0.525156670409 51.209139117399999 -0.525517230168 51.2090769231 -0.52579123038 51.209005144099997 -0.526018291455 51.208980337600003 -0.526119298872 51.208961895500003 -0.526225829587 51.208948900899998 -0.526336481262 51.2089393599 -0.526507151799 51.208905876400003 -0.526847520571 51.209453842400002 -0.527086301701 51.210153958200003 -0.527338846346 51.210292032200002 -0.527377392164 51.210426456500002 -0.527411759553 51.210678097900001 -0.527399436872 51.210771404600003 -0.527382143233 51.210846050400001 -0.527382625315 51.210926269700003 -0.527397246671 51.211003091599999 -0.527427725278 51.211126424299998 -0.527509693701 51.211284870199997 -0.527666423652 51.211333250899997 -0.52772358105 51.211379869799998 -0.527783658202 51.211572029 -0.528189867234 51.211597685800001 -0.528299292297 51.211573078500003 -0.528630806059 51.211568551299997 -0.52891443251 51.211596401800001 -0.52912687253 51.2116342833 -0.529278860552 51.2117278427 -0.529353193171 51.2117937501 -0.529230827621 51.2119131981 -0.529290018162 51.212216565299997 -0.529601063863 51.212447748899997 -0.529892936234 51.213300223799997 -0.530677605084 51.213319567100001 -0.530928982967 51.2133258406 -0.531070529738 51.213287976 -0.531349500282 51.2132648714 -0.531586479182 51.213216973800002 -0.531854313812 51.213208918500001 -0.531929022513 51.213209113799998 -0.53208794371 51.2132140573 -0.532123580962 51.213240178500001 -0.532198634572 51.213392701399997 -0.532457232584 51.2132590772 -0.532916787121 51.213116336500001 -0.533366606213 51.213078789199997 -0.533671335397 51.213064218500001 -0.533943835289 51.213060559200002 -0.534728563414 51.213114246799996 -0.535066189801 51.2130726368 -0.535262231648 51.212893962700001 -0.535787633431 51.212646474 -0.536491319769 51.212521438800003 -0.537063691489 51.212454923800003 -0.537857559739 51.212460080100001 -0.537910371319 51.212475142300001 -0.537964300901 51.212496300300003 -0.538002288139 51.2125546714 -0.538067731915 51.212580323899999 -0.538105576916 51.212416232599999 -0.539151658281 51.212279623500002 -0.5399506022 51.212240916299997 -0.540163725151 51.212190975299997 -0.540341409327 51.212158274099998 -0.540531433718 51.212138399 -0.541028877317 51.212112243200004 -0.5413833446 51.2120106084 -0.542320050662 51.211964351600002 -0.542649379517 51.211894195100001 -0.542864923197 51.211755579699997 -0.543215778014 51.211617978699998 -0.543648207167 51.211548372499998 -0.543908113807 51.211464844200002 -0.543916475538 51.211391569699998 -0.544026165947 51.211362243700002 -0.544054293606 51.2113024792 -0.544093403296 51.211255050200002 -0.544112079804 51.211214634400001 -0.54411621793 51.2111660216 -0.544112024299 51.2110937697 -0.544087100573 51.210875189900001 -0.544082540899 51.210624783299998 -0.544121935955 51.210304733100003 -0.544273766815 51.210295886300003 -0.544285499289 51.210263694600002 -0.544372415571 51.210255310800001 -0.544421357232 51.210253611 -0.544501585193 51.210217609799997 -0.544860641293 51.210154488299999 -0.545280682138 51.210127075099997 -0.545390353769 51.210098389300001 -0.545470000084 51.210069507699998 -0.545533903995 51.209933938 -0.54576867511 51.209896440599998 -0.545862915159 51.209861675399999 -0.545959932338 51.209787302599999 -0.546198500543 51.209728193099998 -0.546435155697 51.209691398499999 -0.546513624306 51.209580940599999 -0.546887903101 51.209555907199999 -0.547189340337 51.209547664699997 -0.547611940253 51.209325829900003 -0.547852279445 51.209187409899997 -0.54800266208 51.2085379691 -0.548641553279 51.2084650209 -0.548705406698 51.208330526300003 -0.548809848518 51.208233307100002 -0.548874464286 51.208032345399999 -0.548985289017 51.207907927699999 -0.549032147849 51.207590543599999 -0.549109408184 51.207464363500002 -0.549159184789 51.207403645 -0.549194019634 51.207357397899997 -0.549235557602 51.207123631 -0.549529220951 51.206678113599999 -0.549934037397 51.206405804500001 -0.550092904417 51.206123381899999 -0.550306486234 51.206009834 -0.550287146739 51.2056705838 -0.550486762613 51.2054596133 -0.55066087569 51.205314803299999 -0.550731271857 51.205007531299998 -0.550753800577 51.204786869800003 -0.550726370448 51.204712732799997 -0.550694341235 51.2045529727 -0.550719397123 51.204123576299999 -0.550828785337 51.203686957800002 -0.55100854063 51.203718426199998 -0.551371149386 51.203714693400002 -0.551432820194 51.203370003 -0.551483715061 51.202908279900001 -0.551596970068 51.202346519199999 -0.551837895566 51.202197227100001 -0.551836851936 51.201631135500001 -0.551873213844 51.201499861499997 -0.551947469875 51.201348266399997 -0.552050990843 51.2010741956 -0.552285745753 51.200832343899997 -0.552508036772 51.200401459600002 -0.552860779762 51.2006456664 -0.553192365263 51.200775670200002 -0.553451667854 51.200344541100002 -0.55436694017 51.200255270100001 -0.554492832936 51.200189615900001 -0.554565025268 51.200136246 -0.554612499614 51.200091635600003 -0.554641091901 51.1999993469 -0.554668313647 51.199909050400002 -0.55471121792 51.199864510600001 -0.5547455332 51.199753541299998 -0.554862083413 51.199660126200001 -0.554943731245 51.199448304800001 -0.555195120089 51.199202944 -0.555570651042 51.199265906100003 -0.555644542893 51.199310801300001 -0.555711843259 51.199343992700001 -0.555778078425 51.199363594300003 -0.555836150593 51.199375087900002 -0.55589304501 51.199409398100002 -0.556341415106 51.199425580300002 -0.55641390796 51.199446997 -0.556473355105 51.199470934 -0.55651841004 51.199513061300003 -0.556580072657 51.199526915900002 -0.55660969798 51.199550324599997 -0.556684827954 51.199567511300003 -0.556765877862 51.199582654300002 -0.556899951741 51.1995815282 -0.557027377295 51.199546331900002 -0.557236022994 51.199595263799999 -0.557411982001 51.199669065599998 -0.557562831543 51.199685246900003 -0.557635325246 51.199721434 -0.557725801819 51.199755276300003 -0.557771979669 51.199792608499997 -0.557809460446 51.199843301100003 -0.557836504524 51.199991466299998 -0.557964994337 51.200049068600002 -0.558041920771 51.200094368 -0.558142133425 51.200105878099997 -0.558200460153 51.200108945399997 -0.558303422922 51.200070486100003 -0.55853936785 51.200057707500001 -0.558670021121 51.200036309300003 -0.558977001368 51.200034282200001 -0.559031456537 51.2000421256 -0.559084172349 51.200055221600003 -0.559125273357 51.200150930200003 -0.559302639665 51.200289258 -0.559508736078 51.200715099200004 -0.559913417417 51.200757295199999 -0.559980808162 51.200771307399997 -0.560023312871 51.200778603700002 -0.560104674529 51.200773756 -0.560149198743 51.200760024700003 -0.560202588264 51.200720559 -0.560283976457 51.200617810799997 -0.560703712626 51.200618655699998 -0.560772392726 51.200625317799997 -0.560802244159 51.200685314499999 -0.560927767659 51.200963003799998 -0.561351395042 51.201104623 -0.56160606617 51.201131131700002 -0.561641025442 51.2011665944 -0.561672843053 51.201203731900002 -0.561694588734 51.2013066142 -0.561724306535 51.201373535599998 -0.561901148055 51.201423379200001 -0.562005520026 51.20147777 -0.562114044855 51.201621961299999 -0.56235862113 51.201483255799999 -0.562560474155 51.201335294499998 -0.562814144651 51.201246292900002 -0.563035919355 51.201226074499999 -0.563073764985 51.2011594632 -0.563141682179 51.200904946900003 -0.563506018387 51.200753264900001 -0.563749778624 51.200576479299997 -0.564073043912 51.200493311199999 -0.564257415249 51.200160575300004 -0.565136601424 51.199916660299998 -0.565852704216 51.19998236 -0.566297249298 51.200128247499997 -0.56712148211 51.200179419400001 -0.567555030659 51.200291558899998 -0.568414670042 51.200321315499998 -0.568788767494 51.200404816199999 -0.569513318732 51.200349075799998 -0.569588045504 51.200128425499997 -0.569855389099 51.199993809699997 -0.57009859574 51.199992928299999 -0.570100054397 51.199945470199999 -0.570190268321 51.199911765499998 -0.570228527265 51.199864384400001 -0.570251464621 51.199752157900001 -0.570266390043 51.1996850353 -0.570292801171 51.199623481099998 -0.570333353348 51.1995701747 -0.570386532239 51.199488871699998 -0.570503556967 51.199325785799999 -0.570771972246 51.199149759 -0.571232585208 51.198643172 -0.572460587139 51.198540973199997 -0.572781498827 51.198367310199998 -0.573584106824 51.198259096299999 -0.573780675913 51.1980365939 -0.574118178059 51.197562249699999 -0.574452000196 51.197105482200001 -0.574752353677 51.196786410400001 -0.574913914031 51.196669514200003 -0.574914658457 51.196366616200002 -0.574484610713 51.1962764015 -0.574387207843 51.196044006 -0.574355737636 51.195969394499997 -0.574358040688 51.19575379 -0.574376145607 51.1954711315 -0.57442637569 51.193800382500001 -0.574360585162 51.193388068300003 -0.574397640673 51.192909521700003 -0.574386649508 51.192829588800002 -0.574764075363 51.192648858699997 -0.577204012314 51.192604990200003 -0.577515919495 51.192407253699997 -0.577450452411 51.192354407899998 -0.577467822246 51.192306091500001 -0.577487914801 51.192247666299998 -0.577564132384 51.192210345900001 -0.577601059644 51.192170189499997 -0.577626625209 51.192092364799997 -0.577660506183 51.191999206 -0.577690565842 51.191890591400004 -0.577706790147 51.191434598500003 -0.577849628796 51.1907884588 -0.578181495644 51.190517020199998 -0.578267127804 51.190147354099999 -0.578335747004 51.1898792155 -0.57839694761 51.189813454099998 -0.578387522907 51.189771807500001 -0.578364476728 51.189738164399998 -0.578334029067 51.189717019500002 -0.578296041602 51.189703773799998 -0.57824206959 51.189702127300002 -0.578180585399 51.189703575 -0.577633882252 51.189697793699999 -0.577306351334 51.189691112600002 -0.576978848207 51.189665998099997 -0.576392894423 51.189675501799996 -0.576139306985 51.189422628899997 -0.576198618151 51.189340066100002 -0.576212610996 51.1891727772 -0.576210611632 51.188976345599997 -0.576252441061 51.188789014100003 -0.576376988565 51.188484885400001 -0.576658251486 51.1881927206 -0.576962038084 51.188152100400004 -0.577023391085 51.188112674800003 -0.577109034085 51.188083067900003 -0.577188650578 51.188070245 -0.577243423219 51.188056250400003 -0.577349747638 51.188057068 -0.577416979109 51.188065251 -0.577498293723 51.188079569899998 -0.577566540508 51.188103881399996 -0.577643065651 51.188361075800003 -0.578827171748 51.1884260088 -0.579138564087 51.188492017900003 -0.579538646554 51.1886075846 -0.580910293052 51.188618148499998 -0.581336409355 51.188659043400001 -0.581594166472 51.1887767463 -0.581882479596 51.188800604199997 -0.581921815664 51.188864414100003 -0.581992838846 51.188902481600003 -0.582017428726 51.188947636499996 -0.582033214994 51.189005272499998 -0.582040032083 51.189060038400001 -0.582032627053 51.1890985366 -0.582018566194 51.1893776151 -0.58182110384 51.1895544427 -0.581719795939 51.189630679 -0.581703145023 51.189680155200001 -0.581704488129 51.189693864699997 -0.581722670785 51.189705345699998 -0.58177956003 51.189668000099999 -0.582111277177 51.189661423 -0.58238480798 51.189670629799998 -0.582699354652 51.189835672599997 -0.582738653634 51.189927071900001 -0.582785936336 51.190204642099999 -0.582983493363 51.190359919800002 -0.583107526026 51.190467759599997 -0.583175771724 51.190522319599999 -0.583225616811 51.190597193199999 -0.583319202216 51.190664288100002 -0.583438785761 51.190708045100003 -0.583561947386 51.190727011100002 -0.58364293709 51.190741707500003 -0.583742661732 51.190747708799996 -0.583866981269 51.190729165800001 -0.584192403603 51.190754636299999 -0.584588030786 51.190759945499998 -0.584729544566 51.190372937600003 -0.584926008291 51.190398492699998 -0.585403200861 51.190442542500001 -0.58569951356 51.190544936400002 -0.586135716725 51.190640068 -0.58656641972 51.190699517799999 -0.586872281459 51.190715576499997 -0.587085020186 51.190711531 -0.58712235183 51.190683801500001 -0.587209064289 51.190653773100003 -0.587254345869 51.190614461599999 -0.587275583078 51.190563135700003 -0.587269997357 51.190540489500002 -0.587256379233 51.190295703700002 -0.58694330762 51.190066804200001 -0.586605425341 51.189809760099998 -0.586245510944 51.189642609099998 -0.586478161663 51.189471896100002 -0.586788195545 51.189928791699998 -0.587687227923 51.189985492 -0.587840047978 51.190028967099998 -0.588014738424 51.1901218637 -0.58833531748 51.190143159400002 -0.588460599625 51.190226215 -0.589605770469 51.190268229899999 -0.58995795939 51.190287467300003 -0.590061839579 51.190376587599999 -0.590442644338 51.190461907 -0.59073197832 51.19039849 -0.590917089046 51.190502603 -0.591124280107 51.190510367400002 -0.591470361441 51.190497279500001 -0.591877183305 51.190653426 -0.592074204675 51.190752388200004 -0.592227175605 51.190805748899997 -0.592327155836 51.190863032400003 -0.592454207242 51.190933520500003 -0.592632375522 51.190967951499999 -0.592728640034 51.191113171700003 -0.593213647167 51.1910476089 -0.59337020075 51.191201859800003 -0.593708964858 51.191689395600001 -0.593719882519 51.193119697299998 -0.593683493575 51.193376231599999 -0.593554035013 51.193490487699997 -0.593483291605 51.193659910400001 -0.593363639496 51.1939455288 -0.593110210924 51.194227241 -0.592831136902 51.194945051200001 -0.592024968474 51.195128710799999 -0.591668723492 51.195431400300002 -0.591115630721 51.195667528500003 -0.59063612314 51.195846068400002 -0.590228498862 51.196066512 -0.589790967199 51.196139155799997 -0.589700012199 51.196180422899999 -0.589617171276 51.196196881799999 -0.589565143918 51.1962079125 -0.589510419808 51.196213655100003 -0.589390019967 51.196199948599997 -0.589297407777 51.196170233700002 -0.589219597056 51.196158288699998 -0.589198493292 51.196068086 -0.58910106187 51.195956203400002 -0.589070129986 51.195812012499999 -0.588970054904 51.195646350499999 -0.58887922379 51.195544062899998 -0.588823668763 51.195448518 -0.588730696233 51.195569102299999 -0.588439335746 51.195640309600002 -0.588378479252 51.195682024600004 -0.588332836262 51.195706002500003 -0.58830777252 51.195743153599999 -0.588256543978 51.1957712118 -0.588197005919 51.195790194300002 -0.588130589065 51.195802556 -0.58803718116 51.195806328300002 -0.587753682051 51.195938371099999 -0.587517784452 51.196216526599997 -0.587094217024 51.196444198899997 -0.58725613975 51.1966924428 -0.587408847307 51.196720553 -0.587279174179 51.197001003799997 -0.587343590322 51.197083496899999 -0.587547170106 51.197145537600001 -0.587844408739 51.197159034899997 -0.588143132131 51.197132759200002 -0.58902130528 51.197274055599998 -0.588657738102 51.197306472 -0.58851218845 51.197316344299999 -0.588436028997 51.197320823 -0.58836003437 51.197321188 -0.588241227129 51.1973574461 -0.587743464867 51.197473533699998 -0.587377800445 51.197579558199998 -0.58714698296 51.197626580300003 -0.587019591135 51.197662815 -0.586892529117 51.197712793299999 -0.586637661485 51.197781215900001 -0.58604873754 51.197858834900003 -0.585848842426 51.198069115800003 -0.585613395238 51.198139992900003 -0.585525346337 51.198251217699998 -0.585353045499 51.1983567025 -0.585152293454 51.198403981 -0.584971931008 51.198419763899999 -0.584938527231 51.198444570699998 -0.58490770955 51.198478505300002 -0.584888062655 51.198544023899998 -0.584877467141 51.198619586500001 -0.584879445689 51.198652034799998 -0.584885608 51.198829853100001 -0.585014703825 51.198992234499997 -0.585205820775 51.199084809200002 -0.585350412012 51.199114301800002 -0.585409624612 51.199227760399999 -0.585719612156 51.199496233700003 -0.586281065845 51.199642829699997 -0.586580024387 51.199820818600003 -0.586872298757 51.199854701200003 -0.586997221343 51.199865557199999 -0.587077045177 51.199869169800003 -0.587152796583 51.199866437899999 -0.587224448022 51.199851016700002 -0.587362330044 51.199844098100002 -0.587757596067 51.199853310199998 -0.587924783084 51.199825562 -0.588084512052 51.199805767100003 -0.588158116381 51.199800165200003 -0.588215541846 51.199800959400001 -0.588281359898 51.1998087033 -0.588326926534 51.199836396599999 -0.58838619694 51.199927447 -0.588479314789 51.199955573 -0.588499925494 51.200033330499998 -0.588534764229 51.200059693199997 -0.588558291635 51.200096254899996 -0.588607271904 51.200131191300002 -0.588670615575 51.2001488752 -0.588720172924 51.200159315800001 -0.588765657566 51.200217718099999 -0.589283459335 51.200423050200001 -0.590128854305 51.200708065299999 -0.590646901484 51.200814080199997 -0.59086266802 51.200895048 -0.591014787251 51.201071314300002 -0.591314295952 51.201166164900002 -0.591424482836 51.201227065700003 -0.591478449717 51.201292357699998 -0.591523694395 51.201395508600001 -0.591576372917 51.201538870500002 -0.591607785545 51.201732696900002 -0.591573245584 51.2019294579 -0.591633089563 51.202466486600002 -0.592020375477 51.202828509600003 -0.592511775031 51.202910259 -0.592878597503 51.2030116205 -0.593380811885 51.203228027400002 -0.594402008149 51.203676377500003 -0.596392423724 51.204320921899999 -0.599524979881 51.204416202 -0.60019775632 51.204377951600001 -0.60128542089 51.204306724399999 -0.602624592989 51.204306171299997 -0.60348207391 51.204541874 -0.604017483439 51.204640405699998 -0.604286489988 51.204737207100003 -0.604561275991 51.204970087299998 -0.605312939685 51.205328623900002 -0.606271251291 51.205973465699998 -0.608089888122 51.206437407599999 -0.609444470886 51.206573004799999 -0.609730994017 51.206831386899999 -0.610134074085 51.207132835 -0.611589504971 51.2074398456 -0.613364031804 51.207535795299997 -0.613492856406 51.207653285399999 -0.613694046051 51.207999224799998 -0.614126024389 51.207828640899997 -0.614605004868 51.2073737228 -0.615678029872 51.207298104700001 -0.615899329576 51.207243876600003 -0.616028366129 51.2071781143 -0.616170632319 51.207113047699998 -0.616295698314 51.207034530599998 -0.616424030189 51.206974366700003 -0.61650743288 51.206922870699998 -0.616563375753 51.206444295200001 -0.617005751614 51.205988549399997 -0.617401625179 51.205879322800001 -0.617290372853 51.205806790099999 -0.617468624162 51.205701486300001 -0.617689370562 51.205470414300002 -0.617464381227 51.2053991043 -0.617593922216 51.205280606400002 -0.617763526579 51.205093697400002 -0.618079760866 51.205192457099997 -0.618218525296 51.204978625599999 -0.61861572729 51.204908078099997 -0.618733790205 51.204753006300002 -0.618623908884 51.204554960599999 -0.618377890212 51.203139266599997 -0.620643299007 51.202825627499998 -0.621271052104 51.202661705300002 -0.621859973812 51.202262748199999 -0.623643987206 51.202359804399997 -0.623791394427 51.203126333100002 -0.624892239787 51.203787363300002 -0.625893194579 51.203717648500003 -0.626235959468 51.203627187099997 -0.62703311597 51.203511316899998 -0.628194616449 51.20325582 -0.628262328179 51.2030828352 -0.628234543697 51.202994452600002 -0.628212834714 51.202948639600002 -0.62821705863 51.202906523 -0.628229761399 51.202835992200001 -0.628273368577 51.202781927799997 -0.628340820995 51.202743430699996 -0.628432145344 51.202721913 -0.628514376589 51.202480302700003 -0.628616027267 51.202046148599997 -0.628709080498 51.202174846399998 -0.628871303731 51.202235418199997 -0.628975430633 51.202271768400003 -0.62908457119 51.202284259599999 -0.629152908828 51.202292406799998 -0.629234258297 51.202292117699997 -0.629363095305 51.202304203399997 -0.629780713337 51.2022957736 -0.630596876836 51.202305794300003 -0.632145383791 51.2023306683 -0.632811692289 51.202465179699999 -0.633164136205 51.202209473800004 -0.633830160109 51.202053514600003 -0.634490364112 51.201693488700002 -0.635156595114 51.201560054200002 -0.635512664194 51.201422564 -0.635521021008 51.201249643 -0.635344343472 51.201056145800003 -0.635176863708 51.201027519699998 -0.635421045544 51.200473624799997 -0.635271373954 51.199931067900003 -0.635168605373 51.198414046499998 -0.634709618147 51.198188131499997 -0.636080324617 51.198042664399999 -0.636793111301 51.197941419199999 -0.637056594729 51.197685469600003 -0.63731748518 51.197656803 -0.637326918691 51.197587649900001 -0.637334684174 51.197425487700002 -0.637309411949 51.196927051400003 -0.637520200777 51.196732530200002 -0.637882321273 51.196445064199999 -0.637985261317 51.196303111699997 -0.637919316648 51.196228414899998 -0.637914363323 51.196227499300001 -0.637912959088 51.196227515899999 -0.637914389834 51.1959142304 -0.638116844606 51.195746059400001 -0.638270650476 51.195696850300003 -0.638446710289 51.195668749600003 -0.638504787479 51.195643112699997 -0.6385427549 51.195609318599999 -0.638575237845 51.195545143099999 -0.638624359621 51.195425365299997 -0.638686569758 51.195177036399997 -0.638752568184 51.195134702200001 -0.638746659822 51.195095813899997 -0.638727769085 51.1950640341 -0.638701512869 51.195042076199996 -0.638669242402 51.195027293300001 -0.638635329288 51.194924645 -0.638314904125 51.194802267699998 -0.637844786799 51.1947346627 -0.63783103742 51.194706611699999 -0.637816121574 51.194650193400001 -0.637759106679 51.194611720799998 -0.637698700258 51.1944484104 -0.637729278173 51.194370280599998 -0.637352319665 51.194276417200001 -0.636937184908 51.194137728500003 -0.636071124259 51.194004980199999 -0.635329404945 51.193908290899998 -0.634749776882 51.193664006299997 -0.633082541238 51.193611818199997 -0.632772093314 51.193550623100002 -0.632460481592 51.193480387299999 -0.632144844941 51.193408737600002 -0.631862167599 51.193300041299999 -0.631487564017 51.192731098099998 -0.629745560536 51.192506432199998 -0.629835230164 51.1923331072 -0.629931962848 51.192274100200002 -0.630038184461 51.192237728800002 -0.630080765474 51.192218069100001 -0.630091366311 51.192186639200003 -0.630095160624 51.192151412400001 -0.630081894181 51.191986741400001 -0.629919338102 51.191834437700003 -0.629737811984 51.1915944705 -0.629365689894 51.191562688600001 -0.629339442104 51.1915193711 -0.629326416471 51.191494267400003 -0.629332885713 51.191464786300003 -0.629349502472 51.191432775899997 -0.629380505159 51.191392094299999 -0.629438955765 51.191226353499999 -0.62987606049 51.191211339299997 -0.629899403139 51.191174884200002 -0.629934830338 51.1911409585 -0.629955871654 51.191115854700001 -0.629962340498 51.191031202200001 -0.629951971389 51.190984171700002 -0.62992903791 51.190864694600002 -0.630170139435 51.190752079500001 -0.630229290484 51.190590803500001 -0.630279866588 51.190156328599997 -0.630345697577 51.1858715 -0.630899133494 51.184073400599999 -0.631167040982 51.183787448399997 -0.632321625366 51.183515410200002 -0.63328261981 51.183012460800001 -0.632952665893 51.182824404100003 -0.632789392254 51.182731922800002 -0.633032506366 51.182520521199997 -0.63348803558 51.182175863499999 -0.634160689542 51.181816189099997 -0.63493393243 51.181562351099998 -0.635606745251 51.181345678900001 -0.636073852724 51.181240588500003 -0.636315893665 51.181136463199998 -0.636563628102 51.180894401400003 -0.637167398014 51.180648373700002 -0.637662541053 51.180332075300001 -0.638378653595 51.180069911300002 -0.638801291717 51.179720728200003 -0.639396743701 51.179388089200003 -0.640023175495 51.179144082400001 -0.640383740879 51.178823958700001 -0.640926809096 51.178734092299997 -0.641086828316 51.1783826964 -0.641802488034 51.178129589599997 -0.642309232387 51.178129606200002 -0.642310662576 51.177808501900003 -0.643002523409 51.176949232699997 -0.644979144758 51.176172043699999 -0.647057724055 51.175781592600003 -0.648132091327 51.176462118700002 -0.648580000961 51.176706854700001 -0.648747382119 51.176985248599998 -0.648948116488 51.177264607300003 -0.649154547641 51.177809633400003 -0.649627905332 51.178198904600002 -0.649929849979 51.1785890739 -0.650231773411 51.179077658600001 -0.650568026513 51.179475826199997 -0.650783884392 51.1799769621 -0.650960971919 51.180273389500002 -0.651088239236 51.180570781599997 -0.651221202994 51.181149746800003 -0.651519074065 51.181169819799997 -0.651700196062 51.1810581756 -0.652468913285 51.181018416299999 -0.652920763552 51.1811304151 -0.652963283367 51.181270851299999 -0.652976359027 51.1813908158 -0.653085893494 51.181590607 -0.653177363403 51.1816351533 -0.653063033181 51.181768247800001 -0.652672841046 51.181961644899999 -0.652365304782 51.182162604399998 -0.652011759716 51.182283233 -0.651710633632 51.1824498979 -0.651346637634 51.1825163062 -0.651178725354 51.182587357599999 -0.651023554367 51.182644520300002 -0.650911712856 51.182785863600003 -0.650691532523 51.182845203299998 -0.650612535433 51.1829616311 -0.650493238676 51.183089275500002 -0.650410815267 51.183134636799998 -0.650601221719 51.183158595899997 -0.65088525748 51.183148707299999 -0.651041506764 51.1831498289 -0.651138770529 51.183157993599998 -0.651222951235 51.1831724181 -0.651304087604 51.183210009100002 -0.651444642873 51.1832641771 -0.651619054661 51.183350385499999 -0.651842611316 51.183428081800002 -0.652107911449 51.183366315199997 -0.652288567871 51.183857045 -0.652733558723 51.184512768099999 -0.65329394302 51.185122696900002 -0.653938668909 51.185212079300001 -0.65404767477 51.1853281239 -0.654207416767 51.1855862225 -0.65459912196 51.1856652608 -0.654747065875 51.185814676 -0.655071825592 51.186046833399999 -0.655475741917 51.186215234899997 -0.655731269846 51.1863065943 -0.655855964388 51.186432459400002 -0.656009705243 51.1865581928 -0.656152003271 51.186738225500001 -0.656324203599 51.187295398 -0.656761613434 51.187470302199998 -0.656722185224 51.187746100699997 -0.656933105306 51.187867547499998 -0.657015433408 51.188201581199998 -0.657207492603 51.188482817900002 -0.657343849034 51.1889534775 -0.657530511952 51.189254753699998 -0.657689186524 51.189670264 -0.657850268496 51.190023942400003 -0.658030321974 51.1909238804 -0.658559434778 51.191424866 -0.658959901904 51.191564799 -0.65908606888 51.191625767600001 -0.659148698279 51.191746103500002 -0.659291177198 51.192143724399997 -0.659774800397 51.192324208300001 -0.659908382033 51.1926019466 -0.660132166539 51.19262104 -0.660228929098 51.193075159099998 -0.660620769606 51.193130372799999 -0.660652084837 51.193259694699996 -0.660715598832 51.193373521300003 -0.660760957524 51.193477279200003 -0.660790865702 51.193600765100001 -0.660815908593 51.193722256599997 -0.660823835546 51.193843551500002 -0.6608145943 51.193963783800001 -0.660791072162 51.194353689499998 -0.66075829984 51.194647014499999 -0.66077269404 51.194942366799999 -0.660807066342 51.195226489200003 -0.660803122129 51.1955812223 -0.660840066962 51.195684914600001 -0.660864253682 51.195764383899999 -0.660893436459 51.195837642299999 -0.660929955514 51.195927311299997 -0.660986036078 51.196203118600003 -0.661198450192 51.196350599699997 -0.661277187057 51.1964982772 -0.661373093642 51.196499176099998 -0.661373067587 51.196728954100003 -0.661492357915 51.197241683800002 -0.662055730002 51.197897607 -0.662480427012 51.198700878399997 -0.663129879669 51.198837668400003 -0.663138801794 51.198889955799999 -0.663228892516 51.199206343 -0.663215440521 51.199596968500003 -0.663245642201 51.2001330959 -0.663338906412 51.200173091800004 -0.663376395398 51.200190662600001 -0.663418827563 51.200199456199996 -0.663480121438 51.200198459100001 -0.663550286821 51.200185742800002 -0.663617928621 51.200169218100001 -0.663667072946 51.200140990500003 -0.663715124518 51.199704740599998 -0.664729687348 51.199205235900003 -0.666112477958 51.199231965199999 -0.666564005387 51.199167484699998 -0.667139828615 51.199124505900002 -0.667392982034 51.198738137100001 -0.667657472939 51.1984048423 -0.667844569546 51.198182820699998 -0.668089999895 51.198032250099999 -0.668134418347 51.197821823200002 -0.668213482096 51.197747860200003 -0.668272866151 51.197683997699997 -0.668350565414 51.197635482599999 -0.668433547079 51.197282724099999 -0.668885978865 51.197024037799999 -0.669149629735 51.196917988099997 -0.669234267115 51.196813427199999 -0.669291667421 51.1966478055 -0.669594138621 51.196593371 -0.669710206229 51.196480368899998 -0.669895228661 51.196314919899997 -0.670292152112 51.196246865399999 -0.67047587814 51.196129615799997 -0.670603770301 51.195995097100003 -0.670873850235 51.195966536299998 -0.670971995461 51.195948811900003 -0.671074122453 51.195926127 -0.67129375247 51.195917787299997 -0.671588824532 51.195924805600001 -0.6717317451 51.195919877199998 -0.671852109651 51.1959084123 -0.671951193764 51.19588271 -0.672063568175 51.195834251299999 -0.672230983078 51.195775037200001 -0.672401569214 51.195746183 -0.672473959513 51.195684586200002 -0.67259308968 51.195645236300003 -0.672691543211 51.1956061948 -0.672817180784 51.1955821759 -0.672919487103 51.1955722159 -0.672992765143 51.195560039299998 -0.673187759916 51.195510685400002 -0.673672927036 51.195496362100002 -0.673916644154 51.195508138900003 -0.674003609909 51.195562686199999 -0.674135146719 51.195519926400003 -0.674329587698 51.19558565 -0.674495153298 51.195499252799998 -0.674647909831 51.195444319300002 -0.674799763056 51.1953141324 -0.675612128997 51.195252467099998 -0.67588439449 51.195202521100001 -0.676000322418 51.195156210900002 -0.676199155473 51.195142253100002 -0.676634640122 51.195158042700001 -0.676917565297 51.195212605 -0.677448409302 51.195328605500002 -0.677845825185 51.195376952700002 -0.677986130683 51.1953946601 -0.678200304909 51.195455873299998 -0.678444721063 51.195428606100002 -0.678976479396 51.195518735699999 -0.679552110741 51.195351941299997 -0.679513942923 51.195258701100002 -0.67945936045 51.195215588099998 -0.679543602726 51.195263382500002 -0.680113286251 51.195292521600003 -0.680703540637 51.1952815665 -0.681167563365 51.195271218400002 -0.681286648665 51.195255379599999 -0.681397303446 51.19523068 -0.6815196607 51.195205593300003 -0.681607680052 51.195174919199999 -0.681678684384 51.195106121199998 -0.681798006208 51.194501562200003 -0.682573784328 51.194634056 -0.682760352669 51.1946371879 -0.682798905295 51.194633514499998 -0.682872000373 51.194616292 -0.682939757047 51.194589116400003 -0.683002072734 51.194559949499997 -0.683047270954 51.194338488200003 -0.683265398832 51.1942887736 -0.683322631739 51.1941867305 -0.683524472984 51.1941584785 -0.683571075568 51.194119470899999 -0.683620846948 51.194039384200003 -0.683696118694 51.1939473531 -0.683748831949 51.193859143300003 -0.683821472328 51.193785813700003 -0.683857909543 51.193696817499998 -0.683940589934 51.193549771900003 -0.683979127029 51.193392694899998 -0.684085213436 51.1932311873 -0.684197149875 51.193044813900002 -0.684336985298 51.192435014099999 -0.684808016685 51.1923313924 -0.684869642484 51.192190219399997 -0.684790657447 51.192117513299998 -0.684722603365 51.191864886799998 -0.68480850663 51.191636320199997 -0.684714837765 51.191590315 -0.684862118652 51.191537791599998 -0.684989549576 51.191506589 -0.685253757558 51.191005313 -0.685219367646 51.190879504599998 -0.685227241458 51.190816704900001 -0.685240477288 51.190779108699999 -0.685255857917 51.19074071 -0.685279847731 51.190645403799998 -0.68536126832 51.1906087869 -0.685383776211 51.190562200899997 -0.685399412469 51.190465272300003 -0.685416481254 51.190343990899997 -0.685427087688 51.190264832799997 -0.685425047047 51.190066495400004 -0.685380604416 51.189959597700003 -0.685390801532 51.189760541699997 -0.685602534404 51.189785826600001 -0.685691970045 51.189798332899997 -0.685764596911 51.189803663500001 -0.685838858974 51.189800790699998 -0.685903337165 51.189789040599997 -0.685978085076 51.189771013700003 -0.686054442503 51.189747496499997 -0.686122369828 51.189684103600001 -0.686242948134 51.189523669899998 -0.686450715851 51.189432023 -0.686537751871 51.189400125600002 -0.686580158324 51.189364825 -0.686639833696 51.189331450799997 -0.686710902358 51.189305220199998 -0.686777474806 51.189268908400003 -0.686907298435 51.189148606400003 -0.68724557461 51.189098809500003 -0.687295643962 51.189054904099997 -0.687309770575 51.189017885200002 -0.687456785257 51.188908787300001 -0.68767167349 51.188839838500002 -0.687778095222 51.1887385259 -0.687965571769 51.18870971 -0.688042233045 51.188684554 -0.688124514287 51.188669158499998 -0.688195070324 51.18865837 -0.688275512485 51.1886518831 -0.688418796343 51.188656200700002 -0.688483068631 51.188666843199996 -0.688550023383 51.18869036 -0.688642370693 51.188728838599999 -0.688705673457 51.1887633204 -0.688733314758 51.188781332 -0.688735665543 51.188809072 -0.688723430197 51.188840231599997 -0.688695356751 51.1888622731 -0.688656094048 51.1888744739 -0.688621403648 51.1888920054 -0.688500701661 51.188903146800001 -0.688451731226 51.188939829299997 -0.68835481247 51.188961966900003 -0.688324132828 51.188992243400001 -0.688297515095 51.189045074500001 -0.688277411982 51.1893768933 -0.688276576765 51.189459904 -0.688301409245 51.189526845300001 -0.688336715222 51.189590351100001 -0.688386429098 51.189648623399997 -0.688450601963 51.189698018100003 -0.688525044211 51.189738487200003 -0.688605464107 51.189768184499997 -0.688687620926 51.189787062 -0.688767222883 51.189798041 -0.68886422146 51.189798482 -0.689385104675 51.189806427 -0.689452137802 51.18982166 -0.689527550415 51.1898459628 -0.689609860981 51.189879271400002 -0.689693347238 51.189939098799996 -0.689816150529 51.189966178500001 -0.689905537893 51.189987896200002 -0.689997939481 51.190003641399997 -0.690119131272 51.190022673900003 -0.690373316577 51.190017804 -0.690580955265 51.190000508099999 -0.690803256431 51.190003314599998 -0.690893332314 51.190024452700001 -0.691014371636 51.190073040199998 -0.69117756459 51.1901210674 -0.691290687288 51.190146654899998 -0.691327169542 51.190183062099997 -0.691366207433 51.190256407299998 -0.691411354298 51.190296090399997 -0.69142167861 51.190342869299997 -0.691423215651 51.190429830100001 -0.691399286625 51.190792302600002 -0.691164342073 51.190838102500003 -0.691158751278 51.190861571900001 -0.691166672726 51.190884254399997 -0.691184633937 51.190950005099999 -0.691274359438 51.190969363699999 -0.691316743059 51.190993585299999 -0.691391903545 51.191010583 -0.69146440659 51.191016680899999 -0.691527200929 51.1910223438 -0.69163150863 51.191017439699998 -0.691836290488 51.190953631100001 -0.692161518686 51.190891347799997 -0.692462374689 51.190875443 -0.692729002982 51.190875031799997 -0.692933656929 51.190894689499999 -0.693083362638 51.190918090899999 -0.693165702453 51.190954109899998 -0.693250547571 51.190977946700002 -0.693291374278 51.191080294 -0.693437310688 51.191178817299999 -0.693643461011 51.191227166 -0.69370506111 51.191256188899999 -0.693727137646 51.191320287899998 -0.693749653456 51.1913517841 -0.693751625011 51.1913903604 -0.693743378803 51.191557734600003 -0.693672816016 51.191617003300003 -0.693665415634 51.191669463499998 -0.693692553918 51.191721360199999 -0.693749761114 51.191742420099999 -0.69378351181 51.191779449400002 -0.693878347992 51.191857349700001 -0.694251092415 51.1918851764 -0.694407726445 51.191887836500001 -0.694484930465 51.191880703499997 -0.694570997816 51.191872192600002 -0.694614171202 51.191826382400002 -0.694780041578 51.191813185 -0.694806174158 51.191798945 -0.69481945634 51.191764783799997 -0.694820421525 51.1917303193 -0.69479420454 51.191706243600002 -0.694731916795 51.191676023699998 -0.694602541513 51.191640037600003 -0.694520555282 51.191614451100001 -0.694484070077 51.1915581397 -0.694434142389 51.191503062499997 -0.694414232711 51.191280446 -0.694530717301 51.191230550199997 -0.694572197461 51.191140035499998 -0.694680654686 51.191100539200001 -0.694767635016 51.191084192799998 -0.694833926155 51.191075969 -0.694902849912 51.191075080700003 -0.694984446058 51.191094544400002 -0.695116985883 51.191098171699998 -0.695361596692 51.191107092099998 -0.695435760512 51.191128837400001 -0.695531028297 51.1911566681 -0.695607520388 51.191181498799999 -0.695656906863 51.1912390118 -0.69573399216 51.191282577499997 -0.695769970159 51.191336883 -0.695801351779 51.191376613599999 -0.695815971983 51.191416200600003 -0.69581771653 51.191468245700001 -0.695807660699 51.1915138703 -0.695786337431 51.191618078 -0.695696099008 51.191658245 -0.695669205301 51.191748675100001 -0.69563373686 51.191837626199998 -0.69562693193 51.191889894600003 -0.695636904825 51.191953126199998 -0.695662310263 51.192289316900002 -0.695811670622 51.192356303799997 -0.695851281593 51.192417141500002 -0.695903946293 51.192464574100001 -0.695964145122 51.192497639 -0.696026180768 51.192522772499998 -0.696102751541 51.192535176699998 -0.696166801636 51.192534191900002 -0.696239816356 51.192524733600003 -0.696278723433 51.1925080834 -0.696317833464 51.192489507799998 -0.696345548889 51.192469921499999 -0.696363275011 51.192445776600003 -0.696375405314 51.192404375700001 -0.696372280344 51.192350213799998 -0.696353773292 51.192303084199999 -0.696320756728 51.192251093099998 -0.696254961968 51.192120428300001 -0.696149885885 51.192078064699999 -0.6961410639 51.192051175 -0.69614897838 51.192008454499998 -0.696188823876 51.191981176 -0.696242544457 51.191971638 -0.696274297822 51.191966626800003 -0.696308785617 51.191964599400002 -0.696368948969 51.191912005699997 -0.696814073193 51.191887678900002 -0.696890607561 51.191882667400002 -0.69692509523 51.191883129499999 -0.696966583975 51.191897904800001 -0.697082086002 51.191922020299998 -0.69722880882 51.1919872677 -0.697516050729 51.192002090199999 -0.697635845153 51.192013635199999 -0.697784354045 51.192016206200002 -0.697934547058 51.192003001700002 -0.698202534842 51.191921228 -0.698692843316 51.191916725200002 -0.698773111574 51.191918419799997 -0.698844618678 51.1919242592 -0.698884524914 51.191935476600001 -0.698922848592 51.19195204 -0.698956728425 51.191993934099997 -0.699004205869 51.192020179499998 -0.699019208805 51.192278242500002 -0.699097807358 51.192340606199998 -0.699126104391 51.192412166499999 -0.699172746973 51.192468476 -0.699222681379 51.192542359100003 -0.699316485658 51.192634873800003 -0.699468441528 51.192649671 -0.69950523403 51.192663776 -0.6995606506 51.192672614199999 -0.699627664425 51.192668803 -0.699689309866 51.192655970300002 -0.699748346998 51.1926419841 -0.699784518657 51.192604719800002 -0.699829932196 51.192573446300003 -0.699847985829 51.192544742499997 -0.699854518182 51.1924772076 -0.699846401189 51.192402639900003 -0.699852793279 51.192314778300002 -0.699876732814 51.1922298203 -0.699919194916 51.192167368500002 -0.699963885675 51.192111305099999 -0.70001698315 51.192057119 -0.700077183168 51.192009352900001 -0.700148651187 51.191970974 -0.700255632385 51.1919589922 -0.700310351225 51.191953207899999 -0.70035630909 51.191960581399996 -0.700453416296 51.191970915200002 -0.700493196335 51.191985648500001 -0.700524266039 51.192002036700003 -0.700542409318 51.192018329600003 -0.700551968693 51.192059651 -0.700547944122 51.192085578399997 -0.700534334866 51.192120320800001 -0.70050473549 51.192153122299999 -0.700462310739 51.192187308500003 -0.700382638243 51.192240277899998 -0.700293850514 51.192289308600003 -0.700255262186 51.192317980600002 -0.700245868797 51.192346763899998 -0.700246490034 51.1923801533 -0.700256999445 51.192432612099999 -0.700284145675 51.192519645399997 -0.700347528185 51.192552421899997 -0.700383815041 51.192578038299999 -0.700423165619 51.192617854600002 -0.700526517084 51.192633032800003 -0.700597646037 51.1926419658 -0.700673244059 51.1926401586 -0.700753437548 51.192625263799997 -0.700869777071 51.192517573799996 -0.701051695081 51.192451243 -0.701314022835 51.192372036099997 -0.70171266724 51.192348087100001 -0.701823535778 51.192323661700001 -0.701891484317 51.192316158200001 -0.701944646196 51.192320341399999 -0.701997479672 51.192327866600003 -0.702027321512 51.1923925412 -0.702182926475 51.192428363200001 -0.702250613435 51.192485036400001 -0.702333456999 51.192591571400001 -0.702533682859 51.193257515500001 -0.703064534615 51.193512952100001 -0.703312106639 51.194364893500001 -0.703667451196 51.194447901099998 -0.703692313913 51.194703058 -0.703752418611 51.194823569100002 -0.703753330213 51.194907851400004 -0.70373092831 51.195001769 -0.70368535685 51.195077643399998 -0.703634566824 51.195156875899997 -0.703562214427 51.195704648499998 -0.703167567763 51.195828956699998 -0.703105397634 51.1960860971 -0.703101039916 51.196493139499999 -0.703234165537 51.196972057499998 -0.703442563256 51.196972972300003 -0.703443968827 51.197306789300001 -0.703623524459 51.197793971800003 -0.703847441845 51.198077001400002 -0.70398835257 51.198195449499998 -0.70404657421 51.199297360899997 -0.704562419115 51.200056675200003 -0.704999150999 51.200623630499997 -0.705280976416 51.200829912499998 -0.705393996909 51.201035295300002 -0.705507043597 51.201502494099998 -0.705794539563 51.201746817699998 -0.705932263566 51.2020378912 -0.706150269387 51.202324722500002 -0.706391299454 51.2024319414 -0.706491358192 51.202496259500002 -0.706533930657 51.202541445900003 -0.706554136319 51.202654954800003 -0.70657242829 51.202803996900002 -0.707690497147 51.202984005499999 -0.708926516617 51.202838346100002 -0.709662051924 51.2026947636 -0.710178515839 51.202551162500001 -0.710856728038 51.202184029599998 -0.712468728871 51.202029058800001 -0.713177302701 51.202029074599999 -0.713178733671 51.201475683399998 -0.715438575747 51.2012858342 -0.716248295139 51.2008710689 -0.717951706902 51.200829563799999 -0.718103153078 51.2007348506 -0.718404938021 51.200697238700002 -0.718583471268 51.200015717299998 -0.71875839847 51.199863835599999 -0.718766906225 51.199556685799998 -0.718721036922 51.199869922799998 -0.718994320529 51.1999333471 -0.719119950738 51.2001644431 -0.71961165082 51.200332145099999 -0.719980584858 51.199360860799999 -0.72285297913 51.197263009399997 -0.729968528654 51.197263024900003 -0.729969959486 51.196805587900002 -0.731654231371 51.1968661931 -0.731769929259 51.197287822500002 -0.73225642991 51.200197118699997 -0.735764959398 51.202726233900002 -0.738801915584 51.204237187799997 -0.740657349052 51.204654101 -0.741126957722 51.204930658800002 -0.741422894628 51.205607428699999 -0.742224705835 51.206280266900002 -0.744084552906 51.206490372600001 -0.744808924687 51.2067862404 -0.74590031325 51.207217693099999 -0.746050360735 51.207319224 -0.746126339467 51.207764636599997 -0.746320390672 51.2079076132 -0.746403835038 51.208381850099997 -0.746770332517 51.208876691299999 -0.747213585582 51.208937102699998 -0.747144660187 51.209134186 -0.746738456895 51.209405652400001 -0.746980191654 51.2096081205 -0.74716080946 51.209941974 -0.747518251665 51.210500072599999 -0.748158813492 51.210620470099997 -0.748317327447 51.210943966099997 -0.748211201908 51.211260908699998 -0.748080913822 51.211420623499997 -0.748047948517 51.211460030600001 -0.748117032922 51.211735317500001 -0.748043708957 51.211789196 -0.748036520906 51.212129046500003 -0.748030167193 51.212398657500003 -0.748098736385 51.212720558800001 -0.748095733234 51.213334996299999 -0.748034684666 51.213446195899998 -0.748005896999 51.214332815100001 -0.747665423767 51.2144435704 -0.747595124711 51.214024934500003 -0.746710191415 51.214110895 -0.746591883314 51.2144742208 -0.746510427767 51.214678624 -0.746451900359 51.214859153100001 -0.746431247689 51.215280744600001 -0.746332456934 51.2153033632 -0.746429206083 51.215475724599997 -0.746401615725 51.215616513900002 -0.746364859887 51.215705514200003 -0.746362442555 51.215860509099997 -0.746392596722 51.216005477099998 -0.746410136873 51.216125681500003 -0.746382530769 51.216396941600003 -0.746269206115 51.216389885200002 -0.746030278859 51.216576909600001 -0.745860534182 51.2167739056 -0.745782156277 51.216877636500001 -0.745727790279 51.216954320799999 -0.745666999743 51.217082333299999 -0.745528924779 51.217366919500002 -0.745148900664 51.217510299600001 -0.744934515232 51.2176425842 -0.744691792456 51.217714765899998 -0.744546640056 51.217872944200003 -0.744202977837 51.217975030300003 -0.743995438468 51.218025258799997 -0.743899566064 51.218113759600001 -0.743766854128 51.218206709199997 -0.743629724853 51.2187270688 -0.742931099978 51.2192246416 -0.742204441466 51.219397375100002 -0.741960599069 51.219433849 -0.741923806168 51.219474894800001 -0.741894048301 51.219541189200001 -0.741870761785 51.220197451499999 -0.742271005178 51.220309511099998 -0.742322366024 51.220753630200001 -0.742479236585 51.220761630600002 -0.742637969017 51.2209445258 -0.742670217492 51.221050246099999 -0.742717456835 51.221109733399999 -0.742730156057 51.221346368100001 -0.742742324954 51.2215119978 -0.742757860485 51.2214518165 -0.743936610133 51.221418560399997 -0.744357093153 51.221404643500001 -0.74465246501 51.221374429699999 -0.744853767602 51.221348094600003 -0.745165228745 51.221234407 -0.746136352386 51.221218921400002 -0.746285701127 51.221493733400003 -0.746420003783 51.221898761299997 -0.74653788279 51.221889859400001 -0.74671426312 51.221820572600002 -0.74738203343 51.222125504899999 -0.747473997959 51.222416625299999 -0.747451775596 51.222613106300003 -0.747409209185 51.222898240200003 -0.747415789668 51.223081726700002 -0.747419401215 51.223099471499999 -0.747564989441 51.223101596200003 -0.747679496414 51.223055505 -0.748246409655 51.223095428199997 -0.748279696031 51.223133339 -0.748292988225 51.223261363600002 -0.74832388488 51.223394705499999 -0.748347477129 51.223439670399998 -0.748347689501 51.223560576300002 -0.746789179351 51.223404606 -0.746751885434 51.2234520704 -0.746313815238 51.223572265199998 -0.744775367446 51.223620144199998 -0.744460440675 51.223560987799999 -0.7443947429 51.223972394 -0.742342825932 51.224123712199997 -0.741612631708 51.224781166500001 -0.742040087637 51.224940681500001 -0.742156036396 51.225000415 -0.742191643045 51.225213761600003 -0.742296100644 51.225421498800003 -0.742380662255 51.225432302100003 -0.742381799923 51.225505676 -0.741594990919 51.22602899 -0.74167380761 51.226201827 -0.741690576176 51.2264262606 -0.741738877422 51.226453211699997 -0.741987338741 51.227486976100003 -0.742119556761 51.227495067 -0.742119336167 51.227757211799997 -0.742162315983 51.227877023700003 -0.742181964754 51.228029122300001 -0.742193572323 51.228174290600002 -0.742229716578 51.228309831600001 -0.742290471259 51.228265945899999 -0.742558060379 51.228241121300002 -0.742674746665 51.2281689816 -0.742907299462 51.228155789 -0.74293487103 51.228074995900002 -0.743031598487 51.2280114219 -0.743140746399 51.227984199 -0.743201640853 51.2279563078 -0.74328403658 51.227932988299997 -0.743373468724 51.227924459599997 -0.743416667274 51.227898881400002 -0.743630762851 51.227883376199998 -0.743861770409 51.227790710599997 -0.744276768177 51.227771369599999 -0.744569464091 51.227781687499998 -0.744776852857 51.227775278800003 -0.744850069597 51.227761678100002 -0.744923481966 51.2277408701 -0.744995658145 51.227732008099998 -0.745259424393 51.227720312599999 -0.74534281017 51.227718637400002 -0.74535431334 51.227699872700001 -0.745449348908 51.2276765055 -0.745534484138 51.227625729899998 -0.745663330442 51.227713592 -0.745722526325 51.227776997100001 -0.74576520086 51.2278785281 -0.74584121202 51.2279366466 -0.745894056031 51.228024907399998 -0.745990479389 51.228305782500001 -0.746103151305 51.228385093100002 -0.746119614613 51.228649832199999 -0.746237023365 51.229029258600001 -0.746315510852 51.2290884847 -0.746303875673 51.229148778400003 -0.746307966152 51.229188242 -0.746298300234 51.229247146 -0.746256596514 51.229424704400003 -0.746042661912 51.229474204100001 -0.745962542361 51.229519147399998 -0.745876817471 51.229562961399999 -0.74576963923 51.2298798295 -0.745716624015 51.229967424199998 -0.745666977456 51.230020265199997 -0.74564692116 51.230126984199998 -0.745619670713 51.230364787 -0.745573100587 51.230400531800001 -0.745552076612 51.2303999198 -0.745327224524 51.230433425699999 -0.744761992564 51.230447119300003 -0.744529589555 51.230559509599999 -0.743857651406 51.2305638355 -0.743841778421 51.230735763200002 -0.743271340042 51.230905228700003 -0.742639375543 51.231088406399998 -0.742028517017 51.231278065600002 -0.741769825663 51.231917879 -0.741142200295 51.2322352288 -0.740799803958 51.232283312 -0.740755521076 51.2323151979 -0.740710247936 51.232359967699999 -0.740608761486 51.232450015700003 -0.740453041632 51.2325276113 -0.740393628782 51.232626181400001 -0.74027778112 51.232780303799998 -0.740143227398 51.2331108869 -0.739526873486 51.233139998200002 -0.739474512637 51.233171914499998 -0.739432101669 51.233204868599998 -0.739402553634 51.2332477733 -0.739378463107 51.233310486500002 -0.739356695915 51.233336279500001 -0.739330208207 51.233366243500001 -0.739273526538 51.233424805399999 -0.739200306946 51.233640134799998 -0.739071235965 51.233662640399999 -0.739073485513 51.233788139700003 -0.73912018846 51.233816969 -0.739125129957 51.233916494399999 -0.739098058649 51.234022667600001 -0.739103750649 51.234211906699997 -0.739057037814 51.2342407051 -0.739059115346 51.2342623889 -0.739068549407 51.234336753900003 -0.739126677599 51.234387374900002 -0.739151077187 51.234434153099997 -0.739152663296 51.234470903599998 -0.739141631813 51.234515513600002 -0.739108899262 51.234545955800002 -0.739096607759 51.234593463300001 -0.739082417304 51.234622261799998 -0.739084494865 51.234651183700002 -0.739098028395 51.234680367899998 -0.739135905888 51.234710219599997 -0.739152278888 51.234729935600001 -0.739146010252 51.234761928899999 -0.739110757574 51.234873824099999 -0.73906329354 51.234991560700003 -0.739057209993 51.235011137800001 -0.739038053213 51.235026579 -0.738968874463 51.235052479899998 -0.738952409595 51.235104436100002 -0.738933799902 51.235147510300003 -0.73892546004 51.235272562200002 -0.738930635576 51.235322813 -0.738920667025 51.235368522500004 -0.738906525297 51.235441761099999 -0.738860117101 51.235472870700001 -0.738826320277 51.235507437400003 -0.738779536876 51.235547120299998 -0.738706829481 51.235617214299999 -0.738618965796 51.235727986100002 -0.738383879266 51.235881584600001 -0.738117538335 51.235969395399998 -0.738004836548 51.236102016399997 -0.737878015947 51.236192601200003 -0.737772399568 51.236604061800001 -0.737235419261 51.236684463400003 -0.737102862135 51.236867743399998 -0.736754046655 51.2369438351 -0.736638795853 51.237037564 -0.736574631208 51.237122269700002 -0.736590933199 51.2371798203 -0.736590789162 51.237231822399998 -0.736576472138 51.237257738399997 -0.736561437199 51.237346806600002 -0.736315471912 51.237491829900002 -0.736004941914 51.237568525900002 -0.735862454061 51.237624481499999 -0.735797889856 51.237639344800002 -0.735841890267 51.237794948500003 -0.735761701728 51.238179530700002 -0.73565088233 51.238199339399998 -0.735653204328 51.2382373907 -0.7356793792 51.238336803499998 -0.735808446821 51.238477401099999 -0.735837541095 51.238589913600002 -0.735847349814 51.238807327300002 -0.73591158498 51.238800862399998 -0.735979091892 51.238766062899998 -0.73608748664 51.238865179299999 -0.736272434124 51.238905828199997 -0.736539207128 51.239255272 -0.737005243678 51.239312866299997 -0.737092485234 51.239472303100001 -0.73736746972 51.239493227 -0.737389817931 51.239539338 -0.737412909151 51.239623858199998 -0.737412027694 51.2396507196 -0.737401264256 51.239668730299996 -0.737403636295 51.239687748 -0.737416008783 51.239712561399998 -0.73746546956 51.239728956500002 -0.73756816615 51.2398189695 -0.737826431289 51.239885410799999 -0.737983629237 51.239952148699999 -0.738084948803 51.239996754899998 -0.738135301207 51.240069337800001 -0.73819491631 51.240162724400001 -0.738182332945 51.2404956 -0.738113055451 51.240574633599998 -0.738103729752 51.240654766900001 -0.738112997782 51.240695406599997 -0.738129076972 51.240719981200002 -0.738323238975 51.240730256 -0.738358773024 51.240756060599999 -0.738416803939 51.240773434700003 -0.738443548175 51.241043019 -0.738509236475 51.241061913199999 -0.738510152222 51.241116674200001 -0.738501491081 51.241256453 -0.738454688547 51.241570873800001 -0.738258411829 51.241601998699998 -0.738226042248 51.241629450399998 -0.73818660996 51.241667319299999 -0.738112509304 51.241686043599998 -0.738097670545 51.241745781500001 -0.738050191354 51.2417885777 -0.738016069453 51.241838442199999 -0.737970292911 51.2422354793 -0.737680059042 51.242296974600002 -0.737462044626 51.242305902699997 -0.737456069553 51.242306801600002 -0.737456044939 51.242350249399998 -0.737398981706 51.242371732400002 -0.737389797525 51.2424618318 -0.737405955034 51.242514902899998 -0.737407367197 51.242625246499998 -0.737382855843 51.242648635599998 -0.737383648068 51.242725404799998 -0.737414497347 51.242771237600003 -0.737411809705 51.2428669038 -0.737360479322 51.242918596899997 -0.737317516253 51.243020898600001 -0.737214427384 51.2430378866 -0.737205366078 51.243178718400003 -0.737172855546 51.243321968899998 -0.737114490191 51.243541259600001 -0.737102753322 51.243630151 -0.737090289789 51.243821714900001 -0.737009109695 51.243902438200003 -0.736989706109 51.243950038 -0.736984104139 51.244043594399997 -0.736987272277 51.244096557299997 -0.736978657958 51.244411874299999 -0.736782334156 51.244577892899997 -0.736750563951 51.244856722199998 -0.736589621964 51.244904152 -0.736568264006 51.245006528099999 -0.736555429515 51.245035141 -0.736540318047 51.2450776584 -0.736480410536 51.245116983899997 -0.736374742604 51.245148763700001 -0.736153229029 51.245186664099997 -0.735998886378 51.245252168 -0.73590252928 51.245509842799997 -0.735531544734 51.245520293 -0.735333537831 51.2455325086 -0.735215716753 51.245566515299998 -0.735200456312 51.245642077699998 -0.735119581678 51.2457115793 -0.735060364486 51.245899918299997 -0.734930546503 51.246369204799997 -0.734836001238 51.246505402399997 -0.734707611401 51.246529535599997 -0.734694054005 51.246621263 -0.734694402193 51.246678937399999 -0.734705714485 51.246744996799997 -0.734744019771 51.246915056799999 -0.735002987799 51.246986804099997 -0.735068360868 51.2471160865 -0.735132155652 51.247172939199999 -0.735150655179 51.247320620399996 -0.735169528528 51.247431892100003 -0.735230952505 51.247467882400002 -0.735232830797 51.247596081200001 -0.73519635898 51.247658064699998 -0.735190360033 51.2477364931 -0.735208267927 51.2478151846 -0.735250526724 51.2478369305 -0.735265691266 51.247967079399999 -0.735409702551 51.248106697700003 -0.735597872845 51.2481321478 -0.735622965913 51.248178475700001 -0.735666113331 51.248437890700004 -0.735872493016 51.248446043400001 -0.735878000851 51.248571822199999 -0.735950493016 51.248609113699999 -0.73598959037 51.248661438699997 -0.736088455454 51.248677836900001 -0.736108065832 51.248690515500002 -0.736116315366 51.248709394199999 -0.736115797798 51.248769193100003 -0.736074038389 51.248857047900003 -0.735965598113 51.248916738399998 -0.735913811313 51.249241026 -0.735798886747 51.249347541 -0.735752979544 51.249441269099997 -0.735688795398 51.249552295900003 -0.735561089762 51.249607166300002 -0.735479343313 51.249695377800002 -0.735320739115 51.249821363 -0.73507942319 51.2498602991 -0.735021039186 51.249968860400003 -0.734914891829 51.250215835100001 -0.734718971054 51.250500520400003 -0.734517714198 51.250535147100003 -0.734476642095 51.250718496200001 -0.733968654538 51.250769413199997 -0.733854055533 51.250845284599997 -0.733718709892 51.250857482900003 -0.733682551759 51.2508650933 -0.73363792211 51.250871696200001 -0.733500180166 51.250904493500002 -0.733373181816 51.250913204100002 -0.733264040269 51.250903191100001 -0.733169742477 51.250853994400003 -0.733027802284 51.2508369444 -0.7329480273 51.250826636399999 -0.732826512336 51.251014443800003 -0.732481745985 51.251104866200002 -0.732195539564 51.2511363761 -0.732115861752 51.251237912500002 -0.731942549873 51.251284534299998 -0.731846693633 51.2513459575 -0.73170600891 51.251466648399997 -0.731391740003 51.251514199699997 -0.731298723023 51.2515805054 -0.731193726081 51.251633699 -0.731123480491 51.251800999399997 -0.730961250561 51.251844443800003 -0.730904169351 51.251856718900001 -0.730875172329 51.251884956200001 -0.730742563098 51.251900765099997 -0.730707736883 51.2519391883 -0.73068518452 51.251966142199997 -0.730683009345 51.252001357899999 -0.730696369203 51.252149895899997 -0.730877131153 51.252226342299998 -0.730961004271 51.252628717299999 -0.731081760341 51.252656352800003 -0.7310595049 51.252700758400003 -0.731008128167 51.252728129799998 -0.730961519249 51.252768937500001 -0.730827128459 51.252784855100003 -0.730802329481 51.252812459499999 -0.730777208686 51.2528553776 -0.73075453215 51.252902914899998 -0.730743192262 51.252949708599999 -0.730746202701 51.252994813100003 -0.730759290581 51.253013847 -0.730773096356 51.253080144499997 -0.73099911644 51.253202454499998 -0.731083161837 51.253419188599999 -0.731167474415 51.253584228599998 -0.73112853908 51.253766844499999 -0.731051861269 51.253948330199997 -0.731036833744 51.254389334300001 -0.730656403101 51.254569947599997 -0.730478031489 51.254844479 -0.730501996859 51.255161728499999 -0.730567777576 51.255266878299999 -0.730562015384 51.255299086299999 -0.730546797691 51.255341012199999 -0.730515548635 51.255393446100001 -0.730458214942 51.255442159799998 -0.730389519077 51.255474707300003 -0.730322701477 51.255523511699998 -0.730179483337 51.255539768600002 -0.730103082839 51.255554134199997 -0.730018135988 51.255561706800002 -0.729804400094 51.255568432300002 -0.729761222678 51.255579668099998 -0.729719354006 51.255598932700003 -0.729671531749 51.255626256900001 -0.729620621158 51.255667065799997 -0.729569338808 51.255928943400001 -0.729421678389 51.256033346700001 -0.729347146032 51.256056626899998 -0.7293379057 51.256132156900001 -0.729337256432 51.256279947499998 -0.729366142933 51.2563658328 -0.729408201022 51.256437489900001 -0.729464982465 51.2565093025 -0.729536090779 51.256569506 -0.729614684811 51.256625354599997 -0.729706296998 51.256663982399999 -0.729785486087 51.256697340700001 -0.729876285365 51.256777280100003 -0.730116277323 51.256815086499998 -0.730202655186 51.2568516985 -0.730261837026 51.256887178299998 -0.7302995535 51.256918891300003 -0.730321609587 51.257007333399997 -0.730350701558 51.2571285561 -0.730334463952 51.257245594600001 -0.730347003946 51.257299875400001 -0.730377037256 51.257322722799998 -0.730410802803 51.257392093 -0.730754275059 51.257463273799999 -0.731016010206 51.257471861600003 -0.731061633836 51.257474405099998 -0.731130353951 51.257467416899999 -0.731232298427 51.257420535 -0.731470054935 51.257484930799997 -0.732101725143 51.257522721199997 -0.732269794752 51.2575560931 -0.732362030246 51.257580955199998 -0.732415805382 51.2576047011 -0.732449547428 51.257662903099998 -0.732509571399 51.257740603400002 -0.732543262839 51.257858183899998 -0.732522831459 51.2579589785 -0.732530091349 51.257982445099998 -0.732538044821 51.258072994800003 -0.732595746641 51.258127956899997 -0.732605700307 51.258232781 -0.732569855052 51.258304622 -0.732560713519 51.258331669 -0.732567135441 51.258407804 -0.732622367847 51.258438478 -0.73263155639 51.258564335499997 -0.732628095208 51.258617468499999 -0.73263523298 51.258710342900002 -0.732658475846 51.258789810099998 -0.732689253344 51.258862380099998 -0.732747450861 51.258992981900001 -0.732933038589 51.259046611099997 -0.732986024781 51.259088103899998 -0.732997782597 51.259177909 -0.732986714456 51.259197748699997 -0.732991901716 51.259287647400001 -0.733072554753 51.259346872 -0.733144019035 51.259384830899997 -0.733161606961 51.259402717500002 -0.733152516129 51.259416915099997 -0.733134927572 51.259460763200003 -0.733031965693 51.259484803100001 -0.733009806908 51.259547483699997 -0.732985152517 51.2595529086 -0.732987869749 51.259664290899998 -0.733308709662 51.259666135400003 -0.733312958551 51.259750779800001 -0.733572907251 51.259794582 -0.733631897894 51.259847188 -0.733673448308 51.260071577 -0.733717444472 51.260192846599999 -0.73370551285 51.2602402447 -0.733681278971 51.2602624867 -0.733659169549 51.260275785499999 -0.733641605518 51.260430533700003 -0.73331631171 51.260487401900001 -0.733253120003 51.260523175099998 -0.733234937952 51.260597728599997 -0.733227155598 51.260723059199996 -0.73325810775 51.260828906500002 -0.733233699585 51.260859487399998 -0.733234292149 51.260982229600003 -0.733275348297 51.261016421900003 -0.733277274851 51.261063943899998 -0.73326450259 51.261105979 -0.733243281693 51.261137117700002 -0.73321232761 51.261240623299997 -0.73297156349 51.261274412399999 -0.732936236517 51.261355847499999 -0.732899599334 51.261404903799999 -0.732862419143 51.261443993599997 -0.732818346685 51.261473086099997 -0.73276451632 51.261485330600003 -0.732732648029 51.261533376700001 -0.732436076336 51.261551665699997 -0.732381109562 51.261569412599997 -0.73235912253 51.261596257900003 -0.732346917974 51.261692386900002 -0.732338540423 51.2618354325 -0.73226150874 51.2619910162 -0.732096702227 51.2620192559 -0.732047194031 51.262046829399999 -0.732019203159 51.262078123099997 -0.732002576051 51.262104146900001 -0.731997560111 51.262148352200001 -0.732010676397 51.262184715 -0.732046940907 51.262362222100002 -0.73241184263 51.262511469499998 -0.732492300705 51.262671737300003 -0.732593955505 51.262763866900002 -0.732548422636 51.262886049899997 -0.732454764101 51.2629719022 -0.732410836724 51.263036411599998 -0.732388995856 51.263122698300002 -0.732385188755 51.263211992199999 -0.732409965033 51.263257220600003 -0.732434520329 51.263317948800001 -0.732478715617 51.263364277800001 -0.732521873802 51.263435546399997 -0.73262597853 51.263487253800001 -0.732667555726 51.263525135099997 -0.732677980331 51.263572827600001 -0.732680968512 51.263618613600002 -0.732673975904 51.263658912700002 -0.73265853428 51.263696344099998 -0.732627404968 51.263729962399999 -0.732576313976 51.263766835299997 -0.732493600262 51.263803490800001 -0.732390825846 51.263827715799998 -0.73230272653 51.263853644299999 -0.732122847358 51.263884053300004 -0.732024544333 51.263906124199998 -0.731986670428 51.263931961899999 -0.731964459441 51.264001059199998 -0.731951091188 51.2640225261 -0.731940467076 51.2640581904 -0.731912252228 51.2640830514 -0.731882901335 51.264099681899999 -0.731840876935 51.264113645 -0.731718659188 51.264156717 -0.731627173424 51.2641771296 -0.731602244782 51.264219985700002 -0.731573831589 51.264247854099999 -0.731573064388 51.264293795299999 -0.731580399693 51.264435432100001 -0.731622367539 51.264482194599999 -0.73162251358 51.264567489100003 -0.731610132097 51.264858029099997 -0.731534765964 51.264957536499999 -0.731506225939 51.265188338199998 -0.731312100358 51.265405163300002 -0.731321896943 51.265537624099998 -0.731346917065 51.2656755856 -0.731298683317 51.265841788300001 -0.731284072889 51.265923331499998 -0.731257459762 51.265947697199998 -0.731265389132 51.265970497799998 -0.731294862491 51.265988896700001 -0.731333057446 51.266024471199998 -0.731462516709 51.266052914100001 -0.731514769184 51.266084844200002 -0.731556891943 51.266116603599997 -0.731583252098 51.266272051100003 -0.731654942735 51.266344202500001 -0.731674457489 51.266419841 -0.731683842459 51.266630992800003 -0.731667995704 51.2667350571 -0.731645063008 51.2670472657 -0.731577697273 51.267224751400001 -0.731525507463 51.267563045899998 -0.731458855304 51.2676355993 -0.731432488979 51.267683214199998 -0.731428310971 51.267730953300003 -0.731435597109 51.267772523799998 -0.731454520707 51.267868592100001 -0.731523547982 51.267911061600003 -0.731542446961 51.267943471400002 -0.731545854957 51.2679605055 -0.731541085585 51.268031880400002 -0.731488949383 51.268056090800002 -0.731482548922 51.268147151800001 -0.731504410359 51.268233453900002 -0.731502034046 51.268248689899998 -0.731497314132 51.268289701400001 -0.731464648661 51.268393886399998 -0.731286896774 51.2684095555 -0.731239160798 51.268414514500002 -0.731198887109 51.268406157699999 -0.731091607157 51.268416959 -0.731009601941 51.2684308766 -0.730966214501 51.268445817500002 -0.730934266601 51.268462665100003 -0.730912300444 51.268511891499998 -0.730890875756 51.268718099700003 -0.730916731522 51.2687853678 -0.73090054361 51.268918647699998 -0.730835232115 51.268966138300001 -0.730819588889 51.269002949899999 -0.730814274253 51.269112656499999 -0.730814118742 51.269165259 -0.730689389206 51.269171782699999 -0.730627569298 51.269184630200002 -0.730568442095 51.269209985800003 -0.730501802705 51.269240937200003 -0.730453644449 51.2692702927 -0.730424165547 51.2693266331 -0.7303953764 51.269514504299998 -0.730388765137 51.269611438699997 -0.730371758528 51.269652589700001 -0.730351988781 51.269704341900002 -0.730314724705 51.269835155099997 -0.730187837105 51.269868199699999 -0.730166857036 51.2699174726 -0.730149730134 51.269965087400003 -0.730145550552 51.270001171 -0.730156024013 51.270036573200002 -0.730186585538 51.27007582 -0.730239977458 51.270160033800003 -0.730376707888 51.2701855161 -0.730404676037 51.270247144 -0.730448850344 51.270278732599998 -0.730459447981 51.270349814200003 -0.730463223116 51.270427699 -0.730430972486 51.270575784400002 -0.73048709969 51.270857802199998 -0.730538102755 51.270914235799999 -0.730517911428 51.270949775399998 -0.730478226215 51.271023038499997 -0.73035148827 51.271047930100003 -0.730324998281 51.271080106900001 -0.730306908768 51.2711114779 -0.730297442752 51.271152939700002 -0.730306334777 51.271219187 -0.730361850984 51.271282395299998 -0.730385912834 51.271331870200001 -0.730387416315 51.271451279 -0.730369789508 51.271483844400002 -0.730387528253 51.2715221144 -0.730433781094 51.271550526699997 -0.730483172825 51.271585078800001 -0.730601206633 51.271596053099998 -0.730618107018 51.271615970500001 -0.730630460258 51.271647481400002 -0.730633892614 51.271921266 -0.730589074818 51.271945585099999 -0.73059270536 51.271994378599999 -0.730614297969 51.272038801599997 -0.730647479716 51.272076141399999 -0.730690891788 51.2721062894 -0.730734502103 51.272156186099998 -0.730857849067 51.272171717399999 -0.730880358505 51.272201476900001 -0.730888140078 51.272248874200002 -0.730863896774 51.272271519599997 -0.730879042305 51.272279843500002 -0.730900316794 51.272298817399999 -0.730991543743 51.272304539499999 -0.731104639669 51.272311995400003 -0.731128805303 51.272322070599998 -0.731145730842 51.272344700399998 -0.731159443373 51.272379838299997 -0.731165643409 51.2724067766 -0.731162034172 51.272438023399999 -0.731141103123 51.272594597100003 -0.730984828541 51.272698070799997 -0.730907430494 51.272732092200002 -0.730893590703 51.272829150900002 -0.730888049269 51.272896922699999 -0.730586557896 51.272992072199997 -0.730487883691 51.273034140100002 -0.730552670394 51.273049997699999 -0.730605277026 51.273067342499999 -0.730629170444 51.273089089 -0.730644340896 51.273100775700001 -0.730644018829 51.273223001 -0.730471483548 51.2732701961 -0.730428607774 51.273349228599997 -0.730419261273 51.273405043 -0.730424890951 51.273451960899997 -0.730439367611 51.273508101700003 -0.730475094496 51.273534482899997 -0.730503039922 51.2735628175 -0.730545267831 51.273576613 -0.730573560197 51.273613877499997 -0.730692958119 51.2736258284 -0.730717000501 51.273685023500001 -0.730785617237 51.273730252100002 -0.730810176333 51.273781587099997 -0.730817363589 51.273814802799997 -0.730812147414 51.2738299922 -0.730803127041 51.273890299199998 -0.73072548238 51.2739054575 -0.730713595541 51.273940548799999 -0.730715495789 51.273954111199998 -0.730722290247 51.273963225300001 -0.730733508214 51.2739679377 -0.730753449331 51.273952641800001 -0.730835588367 51.273956177700001 -0.730912907545 51.2739693694 -0.730968456084 51.2739849783 -0.730998132503 51.273994061300002 -0.731006484105 51.2740409946 -0.731022394749 51.274191559099997 -0.731058388672 51.2742096785 -0.731070792314 51.274237176100002 -0.73111877884 51.274267976300003 -0.731222586813 51.274352763700001 -0.73141236071 51.274401776200001 -0.731537172379 51.274424545800002 -0.731563784754 51.274453530499997 -0.731583057712 51.274483305499999 -0.73159227333 51.2745147698 -0.731591406831 51.274550604700003 -0.731578950691 51.2745978624 -0.731541807717 51.274657069 -0.731445555406 51.274675745700002 -0.731426403382 51.274748996100001 -0.731381375883 51.274776817800003 -0.731376308562 51.274819147499997 -0.731382310967 51.2748923531 -0.731416136338 51.275044391100003 -0.731505137546 51.275199144699997 -0.73176180505 51.275413165400003 -0.731844800255 51.275492944600003 -0.731987406121 51.275603460900001 -0.732228091083 51.275702146900002 -0.732206736568 51.275881865099997 -0.73219462094 51.275885461 -0.732194521954 51.27588636 -0.732194497207 51.276061072399997 -0.732218361928 51.276136122300002 -0.732256439863 51.276241520100001 -0.732273610606 51.276394936400003 -0.732323868879 51.276415319199998 -0.732379222816 51.276485318600002 -0.73261529359 51.276571406099997 -0.732842320097 51.276612853 -0.732932938024 51.276668745599999 -0.73302889361 51.2767052787 -0.733080936453 51.2769746771 -0.732963127953 51.277228173700003 -0.732954720011 51.277273928600003 -0.732944858727 51.277301022099998 -0.732955583276 51.277325558199998 -0.732979281905 51.2773439256 -0.733014620239 51.277356341400001 -0.733081664756 51.277301273200003 -0.733394302283 51.277526979500003 -0.733476987311 51.277686362 -0.733413820054 51.277733961800003 -0.733491367634 51.277970051300002 -0.733287015219 51.2778906769 -0.733181666228 51.277908097500003 -0.733046413233 51.278109048399998 -0.732835855747 51.278238781500001 -0.732941252868 51.278386262 -0.733107814799 51.278477150599997 -0.732947598484 51.278534808499998 -0.732874322938 51.278582825900003 -0.732824253043 51.278608741200003 -0.732809202092 51.278639275400003 -0.732805494315 51.278737636499997 -0.732837198669 51.278879845799999 -0.732849057316 51.279112062499998 -0.732951636459 51.279127142599997 -0.732849421619 51.279169808699997 -0.732471157394 51.279178348400002 -0.732429342043 51.279203658299998 -0.732358388969 51.279230115499999 -0.732310345113 51.279267484599998 -0.732273471254 51.279334768299996 -0.73225871472 51.279379779300001 -0.73226321083 51.279517711099999 -0.732295258988 51.279550942199997 -0.732291476542 51.279585785099997 -0.732270443929 51.279613327500002 -0.732239575547 51.279645116399998 -0.73218564913 51.279768393300003 -0.731777917395 51.27978707 -0.731758763342 51.2798469755 -0.731727003188 51.279992905 -0.731750226803 51.280036768599999 -0.731731812786 51.280063318700002 -0.731692368117 51.280094952100001 -0.731624106751 51.280127298 -0.731538619667 51.280167082299997 -0.731392706511 51.280185524 -0.731268888661 51.280193288600003 -0.731238564195 51.2802134525 -0.731190692052 51.280237367600002 -0.731157054867 51.280265870800001 -0.731131894246 51.280306045099998 -0.731104978151 51.280109642500001 -0.730324649833 51.279964874500003 -0.729828235366 51.280005909400003 -0.729217725973 51.280424406199998 -0.728338702151 51.2803516747 -0.727603716687 51.280088447499999 -0.72506450359 51.279998095300002 -0.723869757186 51.279932808799998 -0.723325277984 51.2799233032 -0.723278225204 51.279876752100002 -0.723050103638 51.279836813300001 -0.722603857731 51.279743137700002 -0.722177743426 51.279628728399999 -0.721664743422 51.279587545600002 -0.721516769635 51.279558785200003 -0.72143584057 51.279477117 -0.721286123777 51.279444791700001 -0.721208161665 51.279372213400002 -0.720985068841 51.279276073299997 -0.720745425544 51.279235678699997 -0.720587395152 51.279213655100001 -0.720464699724 51.279195891199997 -0.72032037896 51.279191480599998 -0.720245943653 51.279436426399997 -0.720031233634 51.279659367699999 -0.719860147626 51.279838462800001 -0.719708918727 51.280140555199999 -0.719375039195 51.280275981400003 -0.719177704682 51.280293673499997 -0.719233132333 51.280293103799998 -0.719263258811 51.280429115499999 -0.719283851294 51.28042842 -0.719055889457 51.280335057099997 -0.718988228344 51.2805971063 -0.718611005331 51.280746919199999 -0.718331536496 51.280939442700003 -0.718010728703 51.281000184699998 -0.717891460938 51.281421386700003 -0.717020842044 51.2815841428 -0.716773981481 51.281638716400003 -0.716666353358 51.281665908900003 -0.716603938533 51.281774034100003 -0.716295507129 51.281933198300003 -0.715885278634 51.2819558327 -0.715817254497 51.281996653500002 -0.715685631759 51.282050914099997 -0.715467600189 51.282089199600001 -0.715186922403 51.2821315427 -0.714702517457 51.282281684799997 -0.710937200455 51.282281669100001 -0.710935766994 51.2822907169 -0.710450854504 51.28229688 -0.71019401323 51.282307082099997 -0.710058940523 51.282307917899999 -0.710053181494 51.282328449399998 -0.709876236093 51.282351977600001 -0.709726450747 51.2823794018 -0.709603800274 51.282450494400003 -0.70936377919 51.2825907673 -0.708792017996 51.282822550399999 -0.707956712551 51.28310182 -0.706861958068 51.283191606099997 -0.706849398907 51.283264063300003 -0.70657061471 51.283640643600002 -0.70516910872 51.283982909 -0.703837375555 51.284107616100002 -0.703648883961 51.284862411699997 -0.702704146001 51.285415486300003 -0.701977297113 51.285925429199999 -0.701334820328 51.2862390353 -0.700908672207 51.286653411499998 -0.700406537734 51.2868605707 -0.70011244649 51.286936831299997 -0.700015646009 51.287268411699998 -0.699588971637 51.288717164 -0.697733904465 51.289506504599998 -0.698524725665 51.290865519100002 -0.699923341212 51.291390493400002 -0.700473583833 51.291675417699999 -0.700461237165 51.291833778499999 -0.70030760924 51.2923620997 -0.70026830955 51.293205464099998 -0.700175650703 51.294560116699998 -0.7000484675 51.295227267599998 -0.699959342701 51.2956980226 -0.699918792907 51.296394672600002 -0.699894810151 51.297418044600001 -0.699897455561 51.297777065699997 -0.69991743497 51.298633064199997 -0.699262109881 51.299050870599999 -0.698907472146 51.299353197199999 -0.698680889828 51.299527236 -0.698562647251 51.300092619799997 -0.698136401531 51.300372343100001 -0.697898972734 51.301791096 -0.696744208324 51.302470597700001 -0.696230047834 51.303761145 -0.695192145439 51.304541326699997 -0.69459474545 51.305717092400002 -0.693667606325 51.306353781600002 -0.693186133857 51.306712989300003 -0.692900474257 51.307010037600001 -0.692685441065 51.3082715583 -0.691708417682 51.308567464900001 -0.691471880906 51.309704499699997 -0.69062172344 51.311365348400003 -0.689330463379 51.313132386200003 -0.687967206158 51.313375856900002 -0.68778664097 51.3137566897 -0.687506016855 51.313854872500002 -0.686879037911 51.314112192300001 -0.685047935762 51.314275153899999 -0.683784866307 51.314428006100002 -0.682823408098 51.314518886400002 -0.682109089375 51.314689756900002 -0.680992132641 51.314830805699998 -0.679863109194 51.315142633100002 -0.677612795907 51.315302204399998 -0.67661379678 51.315388236799997 -0.675951249167 51.315409572599997 -0.675690910798 51.3154385375 -0.675469095856 51.315466353200001 -0.675304711402 51.315503206899997 -0.675144371212 51.315586227799997 -0.674852120599 51.315768577100002 -0.674516827596 51.316098787500003 -0.673580325191 51.316270571899999 -0.673027213129 51.316345687199998 -0.672831324849 51.3163912622 -0.672726691712 51.316570469299997 -0.672352730631 51.3168604456 -0.671913863463 51.317065483900002 -0.671676908376 51.3173102095 -0.671371359601 51.317227377899997 -0.670966213522 51.316717714299998 -0.668926049266 51.316443985299998 -0.667787428525 51.315960238199999 -0.665737971881 51.315560423900003 -0.664112298069 51.315072457500001 -0.661935332513 51.314898276599997 -0.661093793998 51.314705992199997 -0.660163824118 51.314483139499998 -0.658999427327 51.314363959200001 -0.658251009797 51.314308445899997 -0.657644228436 51.314154990699997 -0.656573964891 51.313995250300003 -0.655897054242 51.313931619199998 -0.655680809596 51.313653308100001 -0.65462425769 51.3132717903 -0.653273720437 51.312612830799999 -0.650634227525 51.312455753199998 -0.649957281593 51.312307214400001 -0.649241348624 51.312189566400001 -0.648553209417 51.311847403599998 -0.646801288842 51.3114273451 -0.647180960603 51.309541168899997 -0.649011231191 51.308516303799998 -0.649971034044 51.308091733799998 -0.64957029617 51.307947494799997 -0.649461188305 51.307657676600002 -0.649126803147 51.307495678800002 -0.648959396651 51.307332815 -0.648794886143 51.307147560200001 -0.64863820796 51.306736251099998 -0.648529777608 51.3054661786 -0.648267249045 51.304964825699997 -0.648148559919 51.304678481099998 -0.648115370028 51.304514977399997 -0.648051313432 51.304416297 -0.647993959952 51.304300106 -0.647899821787 51.304108976 -0.647701726838 51.303914167 -0.647496568741 51.303703512399998 -0.647243102578 51.303492857199998 -0.646989638728 51.3031907656 -0.646605452243 51.302138913299999 -0.645229118221 51.301993190700003 -0.645069872996 51.3019223955 -0.644935678037 51.301735824300003 -0.644665745263 51.301555779899999 -0.6443382419 51.301018624 -0.643225120221 51.3009217257 -0.6430113691 51.299971824499998 -0.642055340588 51.3000366 -0.641902810225 51.2995405554 -0.641157192283 51.299678710400002 -0.640818884886 51.2990371299 -0.64000873248 51.298730321100003 -0.639607554604 51.298571455900003 -0.639401391434 51.298324293100002 -0.63910316958 51.298072284699998 -0.638774971747 51.298072268 -0.638773537836 51.297695319399999 -0.638295560207 51.297333951100001 -0.637842948005 51.296503963399999 -0.636763061287 51.2961390436 -0.636314880867 51.2957407914 -0.63578450426 51.295415789099998 -0.635366710319 51.295189722700002 -0.635027743685 51.294669555900001 -0.634145300111 51.294491380799997 -0.633826437639 51.294311725 -0.633534873038 51.2942456217 -0.633572692768 51.294140089499997 -0.633468254773 51.293775207700001 -0.633024424701 51.2934790507 -0.632690432176 51.292875259900001 -0.631963997043 51.292465056700003 -0.631489985271 51.291635682200003 -0.630467675009 51.2914336117 -0.630182545159 51.291147881800001 -0.629818159194 51.290992326900003 -0.629589017602 51.290581543599998 -0.629066301416 51.2902716149 -0.62863237595 51.289009882 -0.626937544174 51.288448450200001 -0.62629890397 51.288056775400001 -0.625873193363 51.287407979299999 -0.625146841436 51.287169578399997 -0.624908735967 51.287028285600002 -0.624593160656 51.286811611300003 -0.62413786849 51.286484815500003 -0.623571149172 51.286197227700001 -0.623050588287 51.285974659700003 -0.622629904488 51.285790182900001 -0.622236765225 51.285584480099999 -0.621950381722 51.284821043400001 -0.621112836912 51.283954078 -0.620113515915 51.283772384599999 -0.61988092389 51.283590243699997 -0.619381631481 51.283575866600003 -0.619230063414 51.2833004031 -0.619205343569 51.283350684399998 -0.618970102202 51.2833130892 -0.618756137899 51.283164172699998 -0.618710417321 51.282984965499999 -0.618612550142 51.282834681200001 -0.618374724543 51.282655256 -0.618182226769 51.282918354300001 -0.617616530419 51.283033645300002 -0.617327715307 51.283228082800001 -0.616659394175 51.283280580300001 -0.616459932388 51.283210637700002 -0.616096378503 51.2830196058 -0.616063404013 51.2829943001 -0.616052693147 51.282812278599998 -0.61556489195 51.2827768302 -0.615532977424 51.282763990799999 -0.615511854542 51.2827528137 -0.615479210254 51.282746962399997 -0.615440670115 51.282749269299998 -0.615407620371 51.282757003699999 -0.615377275266 51.2827772045 -0.615336517738 51.2828045121 -0.615288376792 51.282833736100002 -0.615250215672 51.282990219299997 -0.615099247858 51.283176502400003 -0.615110852025 51.283211425300003 -0.61509833005 51.283231863399998 -0.615077640076 51.2832485701 -0.615045590763 51.2832588825 -0.615005130101 51.2832601717 -0.614962072965 51.283256101100001 -0.614922044952 51.283248570399998 -0.614893592596 51.283220109799998 -0.614844260741 51.283208050600003 -0.614661078747 51.28303576 -0.614464077339 51.282987828 -0.614441142796 51.282961708 -0.614437627011 51.282915031199998 -0.614444767384 51.2828474075 -0.614429595165 51.282842961699998 -0.613978040261 51.282731849599998 -0.613935499297 51.2826990127 -0.613896337818 51.282671281 -0.613832645946 51.282659322599997 -0.613734065018 51.282661374500002 -0.613679514025 51.2826143737 -0.613507424203 51.282633233600002 -0.613429424283 51.282671412399999 -0.613388124591 51.282686422700003 -0.613364729711 51.282708912099999 -0.61328948815 51.282712897400003 -0.61324635027 51.282709674300001 -0.613201995569 51.282700175499997 -0.613159263824 51.282669780500001 -0.613098520465 51.282656719899997 -0.613058763923 51.282648611399999 -0.612981576142 51.282661212299999 -0.612906632354 51.282691774900002 -0.612829713457 51.282706360399999 -0.612770482973 51.282715416400002 -0.612699947626 51.282715652900002 -0.612644017286 51.2826992838 -0.612552739113 51.282665088900004 -0.612474903538 51.282644073599997 -0.612446858308 51.282616816800001 -0.612423302979 51.282589661899998 -0.612408348153 51.282435553299997 -0.61238001227 51.282334430900001 -0.612345777948 51.2823382459 -0.612288306297 51.282335090399997 -0.612249685648 51.2823145662 -0.61218721193 51.282138216900002 -0.611951630256 51.282127106799997 -0.611924720884 51.282109296199998 -0.611863599689 51.282097744200001 -0.611799422032 51.282095147500002 -0.611732106581 51.282100590100001 -0.611660247004 51.282114988 -0.611585249552 51.282139274199999 -0.611509953869 51.282155098 -0.611479364556 51.282219311299997 -0.611434410724 51.282253062700001 -0.611398978927 51.282286610200003 -0.611346346245 51.282323413199997 -0.611264936964 51.282367626499997 -0.611125947321 51.282522823599997 -0.610715465756 51.282707496900002 -0.610288318522 51.282771740699999 -0.610170231082 51.282853707900003 -0.61003009928 51.282897142899998 -0.609977166394 51.2829506024 -0.609935402253 51.283035609599999 -0.609899855229 51.283193917699997 -0.609751681263 51.283404462500002 -0.609534533131 51.283445741900003 -0.609451551248 51.283459375699998 -0.609388045588 51.283466189 -0.609280293373 51.283575562199999 -0.609100613132 51.2835851269 -0.609073079021 51.2835907041 -0.609012684366 51.283577263700003 -0.60886539296 51.283527551200002 -0.60854138735 51.283555610299999 -0.608329747929 51.283585130299997 -0.608165384637 51.283616430899997 -0.607999533341 51.283795743799999 -0.607727394976 51.283823827799999 -0.607669187179 51.283844652 -0.607605463001 51.283872002800003 -0.607485616734 51.283916423400001 -0.607213253529 51.283904971200002 -0.607157675282 51.283892909800002 -0.607126492909 51.283854574800003 -0.607078897842 51.283829234199999 -0.607065324849 51.283802198 -0.607060406948 51.283748347299998 -0.607069205952 51.283723888499999 -0.607054172354 51.283706518899997 -0.607030320533 51.2836990375 -0.607006169561 51.2836982699 -0.606941664584 51.2837584436 -0.606632976101 51.283703211099997 -0.606525666644 51.283732671899998 -0.606281001609 51.283845141100002 -0.606059634429 51.283865600299997 -0.605889807104 51.2838056051 -0.605835699154 51.283782705100002 -0.605800543514 51.2837614492 -0.605752432459 51.283749199799999 -0.605705482666 51.283740966899998 -0.605618260337 51.283748493899999 -0.605570711644 51.283782647300001 -0.605493677234 51.283975102900001 -0.605268450873 51.284129899100002 -0.604976966859 51.284127503400001 -0.604926850372 51.284112044300002 -0.604836978487 51.284082219299997 -0.604748975985 51.283979704399997 -0.604522647602 51.283958277099998 -0.604460202439 51.283992494899998 -0.604162333595 51.283965940400002 -0.604046987189 51.283962491499999 -0.60398399714 51.283975250499999 -0.60384738322 51.283972881399997 -0.603724133734 51.283969859800003 -0.603696979962 51.283913564499997 -0.603500799783 51.283901597400003 -0.603402219055 51.283899980299999 -0.603342041507 51.283905554599997 -0.603281645803 51.283916505299999 -0.603219653007 51.283935495 -0.603153114382 51.283961727499999 -0.60309065786 51.284016486299997 -0.603007260139 51.284182575499997 -0.602909012168 51.284236631100001 -0.602917409709 51.284314315499998 -0.602946599962 51.284342661300002 -0.602985891292 51.284391648300002 -0.603021688405 51.284440207700001 -0.603021648977 51.284503552799997 -0.60297957533 51.2845241598 -0.602973214097 51.284545785399999 -0.602976859857 51.284568446900003 -0.602991946091 51.284590397499997 -0.603022827779 51.284604343300003 -0.603061122322 51.284611542299999 -0.603136905303 51.284627491099997 -0.603192346999 51.2846566845 -0.60322731106 51.284698137900001 -0.603234657384 51.2847455418 -0.603213143333 51.284779222300003 -0.603171969676 51.2848514732 -0.602971886108 51.2848599151 -0.602925742053 51.284873005599998 -0.602892362888 51.284889743199997 -0.602863175022 51.284908398299997 -0.602843966928 51.284953122399997 -0.602823967695 51.284992846500003 -0.602837102184 51.285030198699999 -0.602877554708 51.285044923699999 -0.602905787908 51.2850870348 -0.603043608381 51.285114926399999 -0.603120198323 51.285262470699998 -0.603125759715 51.285240652699997 -0.603407487364 51.285253594300002 -0.603587779897 51.285441891 -0.603541916214 51.2854853304 -0.603564976872 51.285520457099999 -0.603569647484 51.2855545651 -0.60356431087 51.2855840589 -0.603549076077 51.2856080906 -0.603528270861 51.285667122 -0.603426098751 51.285745998199999 -0.603329060436 51.285798634300001 -0.603218477634 51.2858638306 -0.603030075965 51.2859153793 -0.602903751206 51.286004135399999 -0.602730407898 51.286081710600001 -0.602524420507 51.2861643277 -0.602364168542 51.286171211099997 -0.602338146894 51.286174430400003 -0.602306500331 51.2861647565 -0.602249432532 51.286130032300001 -0.602203163596 51.286073802300002 -0.602163283852 51.286005192700003 -0.602140988485 51.285971624200002 -0.602116195169 51.285941514400001 -0.602079824622 51.285917577399999 -0.602033228478 51.285899778800001 -0.601973539716 51.285890781200003 -0.601897809413 51.285892622 -0.60182605206 51.285907201900002 -0.601766814061 51.285933639 -0.601721556189 51.285961197699997 -0.601694906607 51.286098151799997 -0.601641989683 51.286180451 -0.601530503013 51.2861149732 -0.60101767309 51.286058022299997 -0.600767013669 51.286024221600002 -0.600647582187 51.285889198600003 -0.600260196367 51.285813821799998 -0.599972814714 51.285701407 -0.599596217087 51.285573853400003 -0.599156985043 51.285400658599997 -0.598736352758 51.2851215751 -0.597959012076 51.284708294 -0.596864555319 51.284273497299999 -0.595776510172 51.284152320499999 -0.595420278138 51.283951056500001 -0.59468505595 51.2838864665 -0.594473366281 51.283841025 -0.594358602247 51.283797725600003 -0.594272452332 51.283568638600002 -0.593916655464 51.2835075152 -0.593843956432 51.28347182 -0.593791990272 51.283433238599997 -0.593724338857 51.283395315 -0.59363659213 51.283357894200002 -0.593515849311 51.283236986299997 -0.593182565137 51.283155299900002 -0.59289540419 51.283103409299997 -0.592767935123 51.282473967199998 -0.59135038129 51.282264582499998 -0.590839142971 51.282013398899998 -0.590142780699 51.281932083800001 -0.589961730417 51.281685645300001 -0.589584992095 51.281020224099997 -0.588617431933 51.280855669899999 -0.588319928392 51.280678702899998 -0.588037146271 51.280363870800002 -0.587656790628 51.280052218599998 -0.587316490345 51.279915165799999 -0.587137162833 51.279577527299999 -0.586581157843 51.278967867 -0.585616273295 51.2788718348 -0.5854830107 51.278899492 -0.585390397087 51.278567879800001 -0.58488728245 51.2780245382 -0.58397918699 51.277768608800002 -0.583637214634 51.277120038500001 -0.582505854034 51.276942054599999 -0.582214545555 51.276765552699999 -0.581526045649 51.2759761489 -0.57879474397 51.2755603616 -0.577360961089 51.275326136399997 -0.576586828068 51.275156031500003 -0.576057316089 51.2749383807 -0.575167988328 51.274712030800004 -0.574303310809 51.273824369499998 -0.571419030948 51.273580772700001 -0.570543458437 51.273602488400002 -0.570333471508 51.273620753099998 -0.570282726773 51.273625639 -0.570240999222 51.273622452200001 -0.570200955921 51.273613042900003 -0.570166840401 51.273591031199999 -0.570131682486 51.273378694400002 -0.569901723278 51.273371257900003 -0.569881883173 51.273353057900003 -0.569790695153 51.273315594800003 -0.569227003675 51.273276565800003 -0.568829664042 51.273229592600003 -0.568591705921 51.273210755599997 -0.568522043056 51.273095982199997 -0.568181537775 51.272922708 -0.567837118687 51.272922690400001 -0.567835685602 51.272830216400003 -0.567700932834 51.2727063723 -0.56750120955 51.272609460399998 -0.567297782355 51.272570092099997 -0.567167114004 51.272456042400002 -0.566739143717 51.2723642419 -0.566512622332 51.272301430699997 -0.566376950555 51.272236839100003 -0.566242768176 51.272109927199999 -0.566013041142 51.271947303899999 -0.565804497725 51.271831086900001 -0.565640385665 51.271694194699997 -0.565476918339 51.271550125200001 -0.56538822206 51.271467392799998 -0.565314818836 51.271381875800003 -0.5652343347 51.271290508500002 -0.565116760041 51.271114929900001 -0.564878522009 51.271034331700001 -0.564759179598 51.270958157800003 -0.564633965462 51.270673061 -0.564118166474 51.270622020899999 -0.563989303694 51.270534446 -0.563741161587 51.270496043100003 -0.563616206201 51.270422129 -0.563308863763 51.270293953 -0.562610422798 51.270244119600001 -0.561921008205 51.270207407900003 -0.561714290178 51.2701572649 -0.561512292548 51.270057664299998 -0.561237295905 51.269945531499999 -0.560893882129 51.269679736500002 -0.560267132315 51.2695199582 -0.559852103414 51.2694757521 -0.559694364365 51.269583816 -0.559706754299 51.269666234500001 -0.559754350841 51.269833063100002 -0.559865251036 51.270027370299999 -0.56001686567 51.270117068 -0.559998292667 51.2701940221 -0.559894105234 51.270228039700001 -0.559808462461 51.270259272300002 -0.559715738899 51.270304340400003 -0.559505031544 51.270322740600001 -0.559319528208 51.270320941599998 -0.559173362399 51.270254614499997 -0.559044984225 51.270205314499997 -0.558984883945 51.270154252 -0.558927706023 51.270049747599998 -0.558839228739 51.269933909199999 -0.558706666801 51.269904138199998 -0.558625886708 51.269879725300001 -0.558542071976 51.269871262400002 -0.558366011893 51.270006450399997 -0.558244230686 51.270178776100003 -0.558144222991 51.270360444 -0.558072593113 51.270435388099997 -0.558024373396 51.270508446 -0.557969044787 51.270643227500003 -0.557814301534 51.270764297 -0.557714462147 51.270842398200003 -0.557776527146 51.270936735699998 -0.557988608767 51.270985509200003 -0.558151942488 51.271008670500002 -0.558207126767 51.271033576599997 -0.558257955771 51.271104998 -0.558361804767 51.271150630900003 -0.558343173642 51.271192472800003 -0.558235779358 51.271214325300001 -0.558038695209 51.271221038599997 -0.557926665968 51.2712232043 -0.557810478346 51.271209823500001 -0.557673273848 51.271192776200003 -0.557530449938 51.271159705400002 -0.557327917775 51.2710369403 -0.556633613082 51.271008397899998 -0.556433807454 51.270914460699998 -0.555671225739 51.2708971988 -0.555511207369 51.270870923700002 -0.555203814353 51.270825069499999 -0.554985917023 51.270743049399996 -0.554825063825 51.270642523500001 -0.554694896633 51.270572804700002 -0.554510721628 51.270545147199996 -0.55445568081 51.270465016400003 -0.554375049295 51.270288949499999 -0.554317498738 51.269939020499997 -0.554235301087 51.269766747600002 -0.554266511655 51.269624089399997 -0.554365601913 51.269566788900001 -0.554386036023 51.269510298900002 -0.554399277021 51.269436127900001 -0.554364333072 51.269362820300003 -0.554326495091 51.269267602600003 -0.55426210803 51.269293447400003 -0.554024766344 51.269225100600003 -0.553806150232 51.269187940099997 -0.553709837837 51.269150885800002 -0.553622123348 51.269087745299998 -0.553533794608 51.269002242200003 -0.553527878384 51.268862365799997 -0.553560940664 51.268565839899999 -0.553434069288 51.2684324819 -0.553412454139 51.268362504099997 -0.553353011554 51.268334987700001 -0.553309437517 51.2683118773 -0.553258557718 51.268294054099997 -0.553198910992 51.268261649 -0.553050846139 51.268248918099999 -0.552966670338 51.268257955899998 -0.552897579098 51.268272387099998 -0.552828318395 51.268308268200002 -0.552748349353 51.268346863700003 -0.552669728392 51.268429820100003 -0.552542408239 51.268512265399998 -0.552155641196 51.268591620499997 -0.551955324503 51.268627401899998 -0.551721973057 51.268639213699998 -0.551513744428 51.268751266499997 -0.551121742007 51.268803551700003 -0.550986781664 51.268656077199999 -0.550769228174 51.268542270099999 -0.550583587126 51.268494249100002 -0.550481886481 51.268378513400002 -0.550213165027 51.268296315599997 -0.550111107311 51.268177688400002 -0.550044600236 51.268096242299997 -0.550075833401 51.268032780799999 -0.550179607882 51.268012745299998 -0.550449732517 51.268026601700001 -0.550697288463 51.2680216754 -0.550807821361 51.268012236600001 -0.550917062697 51.267969283200003 -0.551152070704 51.2678714778 -0.551387369652 51.267738219 -0.551519138928 51.267588508300001 -0.551556815935 51.267434031699999 -0.551500034107 51.267222102399998 -0.551306014109 51.267111808700001 -0.551186205696 51.267054958800003 -0.551097686283 51.2670209009 -0.551034252275 51.266912960900001 -0.550814029853 51.2668985902 -0.550742809694 51.2668420591 -0.55046219988 51.266633721600002 -0.549832309431 51.266376939200001 -0.549139445949 51.266065301300003 -0.548446885063 51.265897193 -0.548161198768 51.2657465976 -0.54798246821 51.265682056300001 -0.547854062345 51.265620158200001 -0.547721273299 51.2655868652 -0.547574682178 51.265558048700001 -0.547426516721 51.265562189500002 -0.547252944371 51.265570789 -0.547076364565 51.265628607799997 -0.546663153796 51.265650103 -0.546438864361 51.265667085300002 -0.546213283709 51.265660295 -0.546028588546 51.265650896700002 -0.545851142784 51.265620858399998 -0.54553244151 51.265476851700001 -0.544943559865 51.265452009900002 -0.544753702219 51.265431715799998 -0.544568001306 51.265449175599997 -0.544381107713 51.265470284300001 -0.544198398877 51.2655308533 -0.543862502106 51.265597667599998 -0.54345043654 51.2656482784 -0.543253893169 51.2657042823 -0.543057178808 51.265861216700003 -0.542660894062 51.265978037799997 -0.542293110763 51.266114491 -0.541913236871 51.266246234100002 -0.541516308711 51.266381059499999 -0.541222487584 51.2665384461 -0.540935117347 51.266684104699998 -0.540716921719 51.266859248199999 -0.540483456137 51.2669454296 -0.540327346928 51.267027943499997 -0.540165619542 51.267181320699997 -0.539845399201 51.267421883300003 -0.539377633002 51.267497222499998 -0.539217563182 51.267634694199998 -0.538775995971 51.267795580799998 -0.538481330984 51.267995245 -0.538195467769 51.268145844300001 -0.537941262491 51.268239629 -0.537746198558 51.268360115900002 -0.537457109156 51.268395015800003 -0.537371425047 51.268429915699997 -0.537285740809 51.268436064900001 -0.537274077605 51.268508919299997 -0.537131281616 51.268531399 -0.53698721804 51.2685341384 -0.536846648315 51.268571851799997 -0.536554450272 51.268610675399998 -0.536351093447 51.2686355612 -0.536255691719 51.268726213299999 -0.536097992864 51.268786819299997 -0.536054495227 51.2688180273 -0.536105109666 51.2688526994 -0.536288930257 51.268884728400003 -0.536477135625 51.268924264100001 -0.536834256891 51.268970513500001 -0.537009109696 51.268986077900003 -0.537103227122 51.269028147299998 -0.537447367631 51.269127562900003 -0.537847029074 51.269238997400002 -0.538057086323 51.269393073899998 -0.538297328969 51.2695936784 -0.538518894664 51.269779166600003 -0.538682166832 51.269859469 -0.538775666386 51.269905339899999 -0.538920432312 51.269971183400003 -0.539080334038 51.270061892 -0.539215077435 51.2701161711 -0.539168916174 51.270306248200001 -0.538979393437 51.270633544799999 -0.538616355826 51.270813567700003 -0.538485923938 51.270890354800002 -0.538441913991 51.271136158799997 -0.538322295414 51.271431030800002 -0.538099333609 51.2715600756 -0.538135378475 51.271716083500003 -0.538242247609 51.271885306500003 -0.538327194073 51.272034726100003 -0.538266541744 51.272197973499999 -0.538161008218 51.272394860200002 -0.538012831304 51.272617095100003 -0.537878184672 51.272880894300002 -0.53775942073 51.273102047199998 -0.537682151329 51.273232593199999 -0.537550412305 51.273287107900003 -0.537451193465 51.273338854199999 -0.537346327717 51.273390643299997 -0.537100962836 51.273457629699998 -0.535841523666 51.2735182662 -0.53544104064 51.2735577041 -0.535071337538 51.273573946699997 -0.534788391004 51.273572246400001 -0.534508882495 51.27360064 -0.534262823992 51.273654450400002 -0.53417939307 51.273791389099998 -0.534199407076 51.273870544899999 -0.534272872051 51.274007408199999 -0.534430520936 51.274314232400002 -0.534731865409 51.274517685799999 -0.534893133539 51.274659045100002 -0.53497895902 51.274758171400002 -0.535139246619 51.2747348491 -0.535287658539 51.274644308299997 -0.53538229403 51.2745251662 -0.535419057591 51.274395004100001 -0.535437533543 51.2743404219 -0.535459340726 51.274288626 -0.535488227638 51.274251678799999 -0.535553917891 51.274218398800002 -0.535625226132 51.274177635500003 -0.53581720073 51.274208912500001 -0.535945237058 51.274270573099997 -0.536057971043 51.274329396200002 -0.536087642199 51.2747230178 -0.535851475008 51.274884119100001 -0.535862124064 51.275017945800002 -0.535920952339 51.2751045069 -0.536011391198 51.275232104300002 -0.536291208883 51.2753565712 -0.53660840403 51.275484170399999 -0.536816539132 51.2756227924 -0.536971277662 51.275749552699999 -0.537040370583 51.275868333699997 -0.537046633416 51.276022590700002 -0.536941372097 51.276108942699999 -0.53687124334 51.276195223 -0.536795381652 51.2762642629 -0.536707163831 51.27645513 -0.536437290292 51.276513394600002 -0.536494222201 51.276539155199998 -0.536540717187 51.276564124399997 -0.536595839857 51.276662598199998 -0.537207789526 51.276707908900001 -0.537451521818 51.276721363500002 -0.537664723571 51.276678134900003 -0.53816360771 51.276656749799997 -0.538323432777 51.276635364400001 -0.5384832577 51.276598388899998 -0.538690890871 51.2764723397 -0.539327171708 51.276458966699998 -0.539552693608 51.276510587799997 -0.53972597348 51.276650595 -0.540064200125 51.276696773600001 -0.540161664998 51.276755054299997 -0.540220035136 51.276933997599997 -0.540363473755 51.277019942300001 -0.540476884326 51.277049654400003 -0.540551932035 51.2771292953 -0.540808919427 51.277268626599998 -0.541454001717 51.277335056 -0.541661228258 51.277381251100003 -0.5417601294 51.277488589699999 -0.541858528493 51.277599637400002 -0.541893724339 51.277659685700002 -0.541877485221 51.2778350683 -0.54180741161 51.277925965100003 -0.541813136078 51.278041614400003 -0.541856789174 51.278127956799999 -0.541930046345 51.278278282199999 -0.542014182197 51.278415523100001 -0.542058586321 51.278512605099998 -0.542055512664 51.2785924358 -0.541966956598 51.278763026699998 -0.541800967956 51.278805061100002 -0.541782431083 51.278848030100001 -0.541766732215 51.278971198299999 -0.541764265637 51.279099521600003 -0.541814687333 51.279200639300001 -0.541919022441 51.2793856101 -0.54218559398 51.2795008469 -0.542412793632 51.279591092300002 -0.542655123772 51.279624933800001 -0.542773061594 51.279777131899998 -0.54336902674 51.279825594400002 -0.543433450709 51.279872134199998 -0.543487898682 51.279970596600002 -0.54352349823 51.280282250299997 -0.543492132526 51.280463287400003 -0.543515083411 51.280651134099998 -0.543579401408 51.280741320600001 -0.543672618534 51.280899373799997 -0.543944358712 51.280955544100003 -0.544050123705 51.2810823485 -0.544340060966 51.281113117399997 -0.544427989291 51.281123436900003 -0.544751721795 51.281132124800003 -0.544871893842 51.281172303 -0.545210455957 51.281181711199999 -0.545316266556 51.281130252099999 -0.54551720275 51.281054993700003 -0.545684476903 51.281039641500001 -0.545824048676 51.281082130800002 -0.54591447555 51.281256821900001 -0.546078158121 51.281663511399998 -0.546313381781 51.281769920800002 -0.546337266513 51.281830939800003 -0.546326736608 51.2818945844 -0.546310388133 51.281964361100002 -0.546280940778 51.282112779 -0.546211728474 51.282186961299999 -0.546174972113 51.282242195199998 -0.546133078251 51.2823551818 -0.546034871425 51.282412898700002 -0.545975691687 51.282551196599997 -0.545743328999 51.282697077 -0.545542271981 51.282772860900003 -0.54548969012 51.282800976399997 -0.545508877096 51.2828283176 -0.54553812614 51.2828878507 -0.545625149967 51.282941839199999 -0.545772574824 51.282975953499999 -0.545840326726 51.283058475399997 -0.545968209695 51.283195536900003 -0.54614312525 51.283310997699999 -0.546244158126 51.283405925899999 -0.546357311447 51.2834567007 -0.546463255398 51.283465467200003 -0.546517469151 51.283468822400003 -0.546570419786 51.283453247 -0.546619666123 51.283432224899997 -0.546664782482 51.283395796699999 -0.546700347379 51.283356600499999 -0.546730263756 51.283311815200001 -0.54674458298 51.2831564285 -0.546759525251 51.283110815500002 -0.546779606306 51.283067107 -0.546808230898 51.282989355200002 -0.54691966482 51.282958915800002 -0.547075491543 51.282960793100003 -0.547154299279 51.282967147100003 -0.547231531823 51.283014663400003 -0.547364823525 51.2830951547 -0.547474132037 51.283152461699999 -0.547526814249 51.283280488300001 -0.54762602015 51.283348457800003 -0.547668328727 51.283476583 -0.547703004075 51.283683349900002 -0.547697915868 51.283752477 -0.547688565487 51.283873100699999 -0.547625967606 51.283971563599998 -0.547516747272 51.284153600300002 -0.547185490389 51.2842267499 -0.547210427822 51.2843106057 -0.547300990908 51.284394923900003 -0.547428823465 51.2844386843 -0.547549332042 51.284438362499998 -0.547668363448 51.284408269799997 -0.547779729962 51.284346733100001 -0.547893522075 51.284182923800003 -0.548099446257 51.284042193799998 -0.548208564682 51.283974648600001 -0.548345488373 51.283971913599999 -0.548487538269 51.2840465202 -0.548630017993 51.284331795200004 -0.549009635552 51.284480868499998 -0.549138298606 51.284605752899999 -0.549201760875 51.284733451400001 -0.549202038809 51.284852686599997 -0.549172469357 51.284896360200001 -0.549140978964 51.284987018599999 -0.549054949509 51.285034902299998 -0.549000382066 51.285084086399998 -0.548905621218 51.285106676300003 -0.548841812692 51.285261272299998 -0.548327863863 51.285310384699997 -0.548227368006 51.285350142299997 -0.548170187529 51.2854141527 -0.54811080808 51.285786313199999 -0.547882532245 51.285860594699997 -0.547781240808 51.285898394299998 -0.547711214691 51.2859192568 -0.547653195077 51.2859354291 -0.547579548964 51.285951397600002 -0.547416998862 51.285934019400003 -0.546958655132 51.285950556400003 -0.546841976088 51.285991595200002 -0.546743166014 51.286148557799997 -0.546492989535 51.286459259700003 -0.546022848352 51.286520661300003 -0.54597071712 51.286585151200001 -0.545950037478 51.286641889199998 -0.545956849762 51.2866990367 -0.545996632546 51.286718216499999 -0.546020405829 51.286752312799997 -0.546086729918 51.286783062700003 -0.546173236687 51.286795335900003 -0.546220173226 51.286870335499998 -0.546828717293 51.286964620799999 -0.547179956294 51.287000549799998 -0.547249091891 51.287025176100002 -0.547276996185 51.287055106899999 -0.547297562756 51.2870939556 -0.547312111645 51.287129965399998 -0.547315277546 51.2871586415 -0.547307202263 51.287182698599999 -0.547289234194 51.287200338799998 -0.547261430063 51.287331662 -0.546901633706 51.287367574199997 -0.546824493762 51.287414202100003 -0.546741279082 51.287466312299998 -0.546665061578 51.287700438400002 -0.546400967441 51.287736474900001 -0.546333861213 51.287756526800003 -0.546283034704 51.287772030699998 -0.54622804949 51.287785558800003 -0.546158785685 51.287790907599998 -0.546082609688 51.287786315 -0.546002445388 51.287771798800001 -0.545919726372 51.2877529481 -0.545850051174 51.287723381799999 -0.545786450917 51.287549730800002 -0.545489343889 51.287518535099998 -0.545366998044 51.287510542299998 -0.545302716689 51.287512241500004 -0.545222354115 51.287519939799999 -0.545190560913 51.287535692600002 -0.545155644975 51.287596684 -0.545070540232 51.287647405100003 -0.545027348525 51.287726384300001 -0.545014813625 51.287946751 -0.545091026367 51.288196060799997 -0.545180666185 51.288261281 -0.545218760085 51.288324810100001 -0.545265512203 51.288369408800001 -0.545308560328 51.288466313800001 -0.545436002655 51.288666007 -0.545802564632 51.2887042419 -0.545840078121 51.288754883400003 -0.545862858499 51.288806966599999 -0.545856910838 51.288867682800003 -0.545822007862 51.288915582800001 -0.545768865973 51.288958471800001 -0.545674292451 51.289014069099998 -0.545444508637 51.289037279200002 -0.545286020417 51.2890586201 -0.545121854573 51.289088520299998 -0.544778150979 51.2891168835 -0.544672562311 51.289143084400003 -0.544610066016 51.289173904599998 -0.544557462568 51.289239496900002 -0.544480813315 51.289356344799998 -0.544403977197 51.289430704499999 -0.544381547747 51.289733004699997 -0.544393500572 51.290036756200003 -0.544449866758 51.290241681399998 -0.54451366111 51.290578159900001 -0.544670820805 51.290696362200002 -0.544702938208 51.2908368055 -0.544715708111 51.291130106499999 -0.544654803631 51.291290903899998 -0.544641114232 51.291365584499999 -0.544644489745 51.291501675799999 -0.54466887091 51.291685854699999 -0.544727587204 51.2919779737 -0.544788628181 51.2920495041 -0.544827959272 51.292100573399999 -0.544885148118 51.292290531200003 -0.545191806142 51.292334987300002 -0.545223388431 51.292417411300001 -0.54527098162 51.292475262 -0.545294969517 51.292866118 -0.545341420419 51.292974956899997 -0.545343717541 51.2930837603 -0.545343147272 51.293339556799999 -0.5453035087 51.293539888399998 -0.545287136912 51.293568884899997 -0.545304865993 51.294101254799997 -0.545739841255 51.294177270799999 -0.545850748572 51.294271648 -0.546064345593 51.2943119121 -0.546120445556 51.294348331199998 -0.546156586872 51.294384608 -0.546181258334 51.294422557899999 -0.546195836864 51.294542450800002 -0.546219301422 51.294588028 -0.546196347105 51.294611978 -0.546169773004 51.294636577699997 -0.546123098026 51.294757733799997 -0.545958627607 51.294992345899999 -0.54551661618 51.2950533908 -0.545435799197 51.295583822099999 -0.545063318234 51.295666761200003 -0.545007625522 51.295760041599998 -0.544915747036 51.2958989997 -0.545026101337 51.296059743599997 -0.545008110106 51.296041727899997 -0.544860941332 51.2961225918 -0.544710645835 51.296137053400003 -0.544644208142 51.296137506699999 -0.544608334904 51.296133519 -0.544576905186 51.296079047500001 -0.544390727478 51.296065446699998 -0.544309399497 51.296185484399999 -0.543982872059 51.2962592238 -0.543693667046 51.296388644899999 -0.543543266365 51.2964025064 -0.543356360289 51.296412936499998 -0.543327342854 51.296426099 -0.543301107645 51.296530468199997 -0.543233257375 51.2965550845 -0.543188012689 51.296560103300003 -0.543157732055 51.296518709399997 -0.542866431358 51.2964193679 -0.542615694212 51.2964184398 -0.542541136618 51.296428744799996 -0.542502082391 51.296446312299999 -0.542468535588 51.296489930299998 -0.542432729307 51.296607329899999 -0.54240032351 51.296628957199999 -0.542403941612 51.296792658500003 -0.54247908169 51.2970873258 -0.542600278013 51.297102642900001 -0.542602661697 51.297132235399999 -0.542595986961 51.297181228900001 -0.542558575615 51.297331651 -0.542361602873 51.297371280599997 -0.542294365434 51.2973873002 -0.542280948426 51.297406088 -0.542273181306 51.297530279699998 -0.542280722441 51.297589553800002 -0.542274541592 51.297646077700001 -0.542264144638 51.297694350800001 -0.542241099382 51.297712977899998 -0.542220427632 51.297745469699997 -0.542157718851 51.297848975699999 -0.541659568384 51.297889075100002 -0.541557888814 51.297927966099998 -0.541503582974 51.297978667800002 -0.541458943587 51.298029655299999 -0.541437245689 51.298058366600003 -0.541432032401 51.2984244234 -0.541581085558 51.298677711800003 -0.541412401124 51.298696553100001 -0.541408935032 51.298723627400001 -0.541416683467 51.298762673200002 -0.541447003459 51.298783669599999 -0.541472157845 51.298793087299998 -0.541506285882 51.298803040800003 -0.541583430137 51.298803594500001 -0.541627880216 51.298752321099997 -0.54184323647 51.298631212300002 -0.542155477512 51.298628854699999 -0.542182806447 51.298634819500002 -0.542228519377 51.2986442013 -0.542259779725 51.298657053699998 -0.542280889097 51.2986752817 -0.542300393758 51.2987033263 -0.542313849723 51.298827143099999 -0.54229127974 51.298987112399999 -0.542283343245 51.299015716699998 -0.542269527079 51.299043368500001 -0.542251437729 51.299160363600002 -0.542114327454 51.299184009100003 -0.542063372502 51.299203630500003 -0.541978118154 51.299218334599999 -0.541570267733 51.299233520500003 -0.541417734404 51.299308045099998 -0.54111987432 51.299355031499999 -0.540993586893 51.299435890200002 -0.54084327376 51.2995378683 -0.540511548024 51.299485915299996 -0.539950887132 51.299460487399998 -0.539786731024 51.299457473499999 -0.539689283369 51.299591835500003 -0.539502842291 51.299624916100001 -0.53948744766 51.299840670800002 -0.539482033965 51.299962165799997 -0.539489653424 51.3000836967 -0.53950014074 51.300206519900001 -0.539542145723 51.300302053099998 -0.539847528126 51.300335021599999 -0.539895254504 51.300365852500001 -0.539915793496 51.300402761199997 -0.539918925783 51.300428757900001 -0.539912362898 51.300523903399998 -0.539826143111 51.300558746 -0.539807823479 51.300620859799999 -0.539813024814 51.300661542900002 -0.53983038223 51.300693326400001 -0.539855194587 51.300728955899999 -0.539899967933 51.300776015799997 -0.539996020685 51.300858118 -0.540306137373 51.300917468500003 -0.540233963758 51.300987324799998 -0.540066779117 51.301163337200002 -0.539686786341 51.301221328099999 -0.539505631432 51.301278719199999 -0.539132269808 51.301201782 -0.538011487471 51.301191356899999 -0.537968783283 51.301168834199999 -0.537893469709 51.301120730400001 -0.53778597535 51.300926491699997 -0.537498074233 51.300774067500001 -0.537246143232 51.3006234048 -0.536991288883 51.300338240099997 -0.536479636643 51.300260007799999 -0.536264083105 51.300247623 -0.536208532152 51.300244191300003 -0.536149827426 51.300247914899998 -0.536088026093 51.300259764400003 -0.536028835183 51.300276251900002 -0.535980972566 51.300456312900003 -0.535638137878 51.3004678932 -0.535557437765 51.300465449800001 -0.535505873811 51.300454898200002 -0.535453133442 51.3004372272 -0.535406357677 51.300399672700003 -0.535351607916 51.300115123399998 -0.535105327682 51.299887651200002 -0.534964818623 51.299854266200001 -0.534955840251 51.299805725600002 -0.534957385741 51.299752869800002 -0.534973413316 51.299711843200001 -0.535000539981 51.299641745 -0.535075929561 51.299590344199999 -0.535136379032 51.299417565500001 -0.5354861497 51.299341192599996 -0.535563172197 51.299322459099997 -0.535575244048 51.299288444299997 -0.535587802214 51.299254321900001 -0.535591757058 51.299213781600002 -0.535585874967 51.299157637199997 -0.535554669359 51.298997136799997 -0.535304445834 51.298814472 -0.534935871069 51.298728654199998 -0.534545567294 51.298729985400001 -0.534508229505 51.298733204100003 -0.53447800379 51.298756738599998 -0.534418442255 51.299077384 -0.534028100726 51.299097502199999 -0.533982991849 51.299111957599997 -0.533916546594 51.299115518500003 -0.533841841722 51.299106458799997 -0.533764670081 51.2990866301 -0.53368927608 51.299048697700002 -0.533604417923 51.298881793100001 -0.533345799201 51.298621476 -0.532880732649 51.298485331199998 -0.53242175213 51.298444539400002 -0.532324077439 51.298409680200002 -0.532269246547 51.298380466 -0.532234317666 51.298098894600002 -0.532010922893 51.297946962399998 -0.531870893845 51.297618179200001 -0.531396554689 51.297496880399997 -0.531189568958 51.297469804899997 -0.53111010679 51.297462074099997 -0.531067321582 51.297456518200001 -0.530982869386 51.297505324399999 -0.530572507182 51.297507894299997 -0.530490664281 51.297509547200001 -0.530407416252 51.297487500300001 -0.530012225889 51.297493017199997 -0.529878650424 51.297503910800003 -0.52981518878 51.2975393973 -0.52970504051 51.297650173699999 -0.529503553193 51.297740294699999 -0.52937587985 51.297817724600002 -0.529311725688 51.2979556688 -0.529268587841 51.297992541699998 -0.529268843777 51.298037684800001 -0.529283179565 51.298080275300002 -0.529309072312 51.2981202952 -0.529345088202 51.298352483 -0.529430905406 51.298402659300002 -0.529416392035 51.298428493300001 -0.529396918851 51.298468241400002 -0.529339705764 51.298529631699999 -0.529144095325 51.2985394098 -0.529063454527 51.2985305451 -0.529002057282 51.298468875700003 -0.528817552646 51.298457476300001 -0.528769146455 51.298449238099998 -0.528614491373 51.298523619599997 -0.528236291626 51.298633726399999 -0.527981743663 51.298727598500001 -0.527723410586 51.298823916899998 -0.527516638075 51.299062937599999 -0.527144639226 51.299091843600003 -0.527083467074 51.299113486300001 -0.527016789545 51.299139548200003 -0.52687251007 51.299140993599998 -0.52663004138 51.2991728927 -0.526377990679 51.299255494199997 -0.526224727516 51.299438248500003 -0.526026656337 51.299541867099997 -0.525899973164 51.299576490900002 -0.525864436788 51.299610306 -0.525836098599 51.299646998299998 -0.525822012868 51.299682845900001 -0.525812257586 51.299701777 -0.525815954488 51.299734317800002 -0.525829256663 51.299760656700002 -0.525849929908 51.299798269699998 -0.525908972756 51.299821807199997 -0.525992852651 51.299826594199999 -0.526087374567 51.299822558099997 -0.526266813041 51.299824359299997 -0.526338479027 51.299834449199999 -0.52642565879 51.299864083499997 -0.526565288291 51.300004905 -0.52696530206 51.300069072600003 -0.527062227053 51.300092768600003 -0.527087289192 51.300235104199999 -0.527178843524 51.300361455 -0.527214964917 51.300446561800001 -0.527189288928 51.300512719499999 -0.527158481406 51.300611721599999 -0.527093628987 51.300782972100002 -0.526910268659 51.300942142899999 -0.526767459966 51.3011071333 -0.526515440891 51.301284801500003 -0.525984717212 51.3013023643 -0.525951160622 51.3013385872 -0.525899791933 51.3013732832 -0.525869989915 51.301419809199999 -0.525851285013 51.3015114787 -0.525846913492 51.301605881100002 -0.525845323452 51.3017913248 -0.525860899975 51.301880694799998 -0.525888161928 51.301996746599997 -0.525963343553 51.302144783300001 -0.526079102729 51.302168262899997 -0.526086957844 51.3022132619 -0.526089819961 51.302257990199998 -0.526071172514 51.302291823399997 -0.526044266755 51.302313054 -0.526016330147 51.3023289092 -0.525990000273 51.302427271 -0.525731498305 51.302478215400001 -0.525635185189 51.302509117 -0.525589723673 51.302639665900003 -0.525459298707 51.302675942800001 -0.525412230072 51.302711158199997 -0.525352284309 51.302744323 -0.525272320277 51.302771087 -0.525183953907 51.302779516100003 -0.525139212173 51.302782994700003 -0.524987036667 51.302773391499997 -0.524938569303 51.3026898305 -0.524658639349 51.3026497639 -0.524476300209 51.302613260100003 -0.524077228426 51.302598266300002 -0.523815184858 51.302599702499997 -0.523786447569 51.302607214 -0.523740300619 51.302621916699998 -0.523693922909 51.302643002099998 -0.523654513171 51.302668690399997 -0.523623563068 51.3027178042 -0.52359616491 51.302912756300003 -0.52358130156 51.302934167099998 -0.523567703351 51.302958992599997 -0.52353964983 51.302982774599997 -0.523500153189 51.303003480100003 -0.523430629203 51.303059088700003 -0.522991299202 51.3030500399 -0.52291555724 51.3030285874 -0.522854559283 51.302996492799998 -0.522805379652 51.302900504299998 -0.522752513311 51.302402172 -0.522741256972 51.302263325799998 -0.522712720321 51.302230549400001 -0.522680778077 51.302213108499998 -0.522652647111 51.302200107799997 -0.522620069947 51.302191565400001 -0.522584480546 51.302187481300003 -0.522545878901 51.302187873599998 -0.522505698967 51.302197990800003 -0.522452295797 51.302322829 -0.522225931206 51.302382005299997 -0.522140826409 51.302421894600002 -0.52209507393 51.302882200500001 -0.521658524487 51.3030771691 -0.521431335125 51.303156428400001 -0.521369970269 51.303197560299999 -0.521351433405 51.3032568693 -0.521348092703 51.3035185269 -0.521417151084 51.303582475200002 -0.521425138068 51.303694945799997 -0.521430131091 51.303795513499999 -0.521418291489 51.303870857699998 -0.521402958667 51.3039469741 -0.521377558757 51.304211881500002 -0.521205499156 51.304255239100002 -0.521149590232 51.304275370399999 -0.521105904734 51.304295839 -0.521017735325 51.304299583899997 -0.520887065072 51.304258257199997 -0.520747801696 51.304236966600001 -0.520699709447 51.304170905399999 -0.52059567245 51.303952108300003 -0.52036026019 51.303862374700003 -0.520304327508 51.3034963359 -0.520230024694 51.303453652899996 -0.520196967425 51.303433514699996 -0.520168923412 51.3034065043 -0.520095193716 51.303403535699999 -0.520073770412 51.303414002700002 -0.519763563063 51.303430367 -0.519635358326 51.303456854799997 -0.519525477374 51.303725851599999 -0.518965936376 51.3037318899 -0.518945657644 51.303740207700002 -0.518892309802 51.30374286 -0.518817625383 51.303733917400002 -0.51875048725 51.303713361600003 -0.518689461438 51.303682091699997 -0.518634519041 51.3036610905 -0.518609372546 51.303545878599998 -0.518529875972 51.3033900235 -0.51864966143 51.303151724 -0.518792184448 51.303048115300001 -0.518776870577 51.3030037248 -0.518751042807 51.302959942900003 -0.518702242332 51.302929517400003 -0.518642969911 51.302855575199999 -0.518342656551 51.3028584471 -0.518001136567 51.3029855013 -0.517737386211 51.303027776900002 -0.517667164631 51.303068645099998 -0.517556820137 51.303082192200002 -0.517490393119 51.303107688399997 -0.51723134767 51.303118092799998 -0.516774816683 51.303366510899998 -0.5162245348 51.3034824207 -0.516004173698 51.3035541223 -0.51591435086 51.3037252194 -0.51579119476 51.303861752 -0.515849912603 51.304158916900001 -0.516165982744 51.3042924899 -0.516275009181 51.304356493 -0.516287291213 51.304387019099998 -0.516283437506 51.304419233899999 -0.516270921622 51.3044798134 -0.516225929283 51.304513462599999 -0.516184674647 51.3045399023 -0.516142217855 51.304580052 -0.516046237746 51.304608170500003 -0.515923387703 51.304601854399998 -0.515496073488 51.304610033099998 -0.515360954892 51.304625267699997 -0.515285862772 51.304644006799997 -0.515203484368 51.304799034 -0.514735095395 51.304942206100002 -0.514112145522 51.3052121339 -0.513132173709 51.3052668905 -0.512345653058 51.305287188400001 -0.51224457147 51.305305336300002 -0.512186598723 51.305332400099999 -0.512122598981 51.305366709700003 -0.512062668757 51.305406540299998 -0.512012602418 51.305449213199999 -0.51197392126 51.305486675099999 -0.51194975511 51.3056907657 -0.511875724634 51.305729181099998 -0.511855831406 51.305815462200002 -0.51178130724 51.3059090677 -0.511646289888 51.305948351200001 -0.511553200288 51.305964719099997 -0.511496718684 51.3059811838 -0.511377108533 51.305983730400001 -0.510940887117 51.3060079328 -0.510864066292 51.306030811500001 -0.510824589634 51.306058330600003 -0.510796440082 51.306085959100002 -0.510776894979 51.306291992600002 -0.510714272789 51.306952592800002 -0.510332777115 51.3071118473 -0.510268797172 51.307218555 -0.510315556234 51.307339444199997 -0.510346074461 51.307443222800003 -0.510303976536 51.30750787 -0.510296144143 51.308100666900003 -0.510451984128 51.308228400499999 -0.5104550216 51.308503401300001 -0.510512114919 51.308922967400001 -0.510693656247 51.309086049599998 -0.51071850614 51.309142200300002 -0.510749687783 51.309161314199997 -0.51076772092 51.309188828099998 -0.510809873169 51.309200878399999 -0.510838178403 51.309266181399998 -0.511376972628 51.309152496300001 -0.511417955703 51.309116097599997 -0.511455002762 51.309183266200002 -0.511574784367 51.309192049 -0.511629021349 51.309185277200001 -0.511662240122 51.309169443499997 -0.511690013017 51.309156087700003 -0.51170048852 51.309075296899998 -0.511711711128 51.309064674299997 -0.511724967699 51.309056894199998 -0.511749610406 51.309058121200003 -0.511775396452 51.3091571458 -0.511996016224 51.309163784299997 -0.512023062045 51.3091671006 -0.512071736845 51.309162217599997 -0.512112068271 51.309156180499997 -0.512132350283 51.309041894 -0.512338348587 51.309015996100001 -0.512494140482 51.308886841099998 -0.512591576376 51.308907332799997 -0.51278891047 51.308903196300001 -0.512888042556 51.308893010699997 -0.512935718876 51.308876569200002 -0.512986466924 51.308845909399999 -0.513050587371 51.308913538299997 -0.513135921503 51.308936265500002 -0.513155273501 51.308976017 -0.513169770955 51.309101072200001 -0.513174337325 51.309113784200001 -0.513183969787 51.309130474100002 -0.513223603753 51.309181113 -0.513529007167 51.3092090265 -0.513602713061 51.309410979 -0.51364353464 51.309634020099999 -0.513574631742 51.309622616299997 -0.513313870119 51.309689433700001 -0.513052014768 51.309750759700002 -0.51285346674 51.309760064599999 -0.512807252769 51.309775929300002 -0.512640304666 51.309787803299997 -0.512583964047 51.309802465 -0.512534707181 51.30984529 -0.512437191499 51.309865654699998 -0.512412141488 51.3098923481 -0.512389756355 51.309921021500003 -0.512381655064 51.309953472700002 -0.512387779497 51.309976090699998 -0.512398526333 51.310051737199998 -0.51247786311 51.3102444461 -0.512498892146 51.310345486199999 -0.512524320629 51.310435278100002 -0.51258454833 51.310495625100003 -0.512662946105 51.310502227 -0.51268712437 51.310505288 -0.512715721563 51.310498661600001 -0.512760414889 51.310417876199999 -0.512913681619 51.310440474799996 -0.513135346011 51.310456999300001 -0.513374424623 51.310496222799998 -0.513347330346 51.310637635100001 -0.513223670249 51.310738080699998 -0.513131464842 51.3108422074 -0.512904267023 51.310893395900003 -0.512828001351 51.310967093099997 -0.512753877343 51.311082169800002 -0.512539236839 51.311170929 -0.512659761733 51.31120734 -0.512694455071 51.3113417239 -0.512796287348 51.3113881867 -0.512843569438 51.311497504400002 -0.513025129135 51.311632216900001 -0.512940422686 51.3116635688 -0.512930799965 51.311694975400002 -0.51292548 51.311926008500002 -0.512919445078 51.312172342 -0.512277272091 51.312378405300002 -0.511863104346 51.312449708099997 -0.511671394519 51.312458241199998 -0.511635246644 51.312470320800003 -0.51152437074 51.312456554500002 -0.511148880392 51.312458467 -0.51108711908 51.312476491699996 -0.510948788013 51.312512658300001 -0.510822783269 51.312578342099997 -0.510684343528 51.312632408200002 -0.510622328015 51.312677996200001 -0.510600763462 51.312788559600001 -0.510597183015 51.3128554838 -0.510556273934 51.312879480100001 -0.510533973572 51.313066354299998 -0.510308383577 51.313080436 -0.509860241982 51.3130758 -0.5097786035 51.313070242400002 -0.509765869575 51.312984263799997 -0.509722739096 51.312880599400003 -0.50970313999 51.312816007199999 -0.509715277157 51.312715199300001 -0.509778808498 51.312542087899999 -0.509955167374 51.3121572445 -0.50981697481 51.312081774200003 -0.509822289755 51.312058512599997 -0.509831652571 51.311981828699999 -0.509882922164 51.311891538200001 -0.509854280669 51.3118492356 -0.50985134667 51.311711080400002 -0.509877345427 51.311693066099998 -0.509875059364 51.311675859399998 -0.50986557291 51.311645703300002 -0.509827809114 51.311579691699997 -0.509657766719 51.3115757128 -0.509627763954 51.311575991 -0.509578970295 51.311656784599997 -0.509214771264 51.311798719700001 -0.508850023541 51.3119504099 -0.508545221083 51.312125634799997 -0.508252567001 51.312271192200001 -0.508031181452 51.312282402599998 -0.507993511314 51.312285614399997 -0.507963274962 51.312277710499998 -0.507907571647 51.312268410900003 -0.507883480647 51.3120167931 -0.507544408338 51.3118579215 -0.507285550886 51.311844674900001 -0.506881352754 51.311786161100002 -0.506735462818 51.311751600900003 -0.506705018203 51.3117281201 -0.506697171474 51.311689595899999 -0.506708466175 51.311662041300004 -0.506733753166 51.311575300900003 -0.506913054986 51.311451331299999 -0.507275789071 51.311322244700001 -0.507589902826 51.311290359899999 -0.507628243084 51.311247450899998 -0.507648288157 51.311197003499998 -0.507641315992 51.311128139499999 -0.507600505496 51.311067536400003 -0.507431727479 51.311054936700003 -0.507360395018 51.311055287099997 -0.50731733885 51.311067892799997 -0.507248058061 51.311138307500002 -0.507057810154 51.311148143200001 -0.506982879763 51.311146732300003 -0.506942750337 51.3110545495 -0.50648372853 51.311043841 -0.506349202573 51.3110496965 -0.506244270082 51.3110690719 -0.506141768112 51.3110949772 -0.506057706717 51.311268436799999 -0.505697668775 51.311304542800002 -0.505567360631 51.311315166599996 -0.50548379502 51.3113123089 -0.505330360545 51.311249506899998 -0.504919169508 51.311222615 -0.504855476193 51.311195263800002 -0.504826233836 51.311165454 -0.504815724232 51.311144797899999 -0.504817830542 51.311130543899999 -0.504828337709 51.311002366099999 -0.505001813791 51.310919556899997 -0.505066202737 51.310878446099998 -0.505086191592 51.3108372437 -0.505099009285 51.3106415791 -0.505128325582 51.310409301500002 -0.505036872937 51.310376904899996 -0.505035056276 51.310332052100001 -0.505043688099 51.310282025699998 -0.505069705688 51.3102286234 -0.505113050547 51.3101966479 -0.505144220553 51.3101002071 -0.505267877762 51.310057410100001 -0.505226224642 51.309932251699998 -0.504931855246 51.3099111943 -0.504832104303 51.309911159199999 -0.504758931092 51.309950804700001 -0.504624206616 51.310082817 -0.504398956151 51.310110301500004 -0.504157016501 51.310127637900003 -0.504106234773 51.3101623831 -0.50408071321 51.310259866 -0.504109108467 51.310278706 -0.504105626148 51.310305471100001 -0.504088972853 51.310325797399997 -0.504061050512 51.310337978699998 -0.504029088636 51.310373662300002 -0.503795489533 51.310443557299998 -0.503635387042 51.310359412399997 -0.503454469384 51.310151605900003 -0.503307707112 51.3101360681 -0.503288125519 51.310123190399999 -0.503265587787 51.310062141 -0.503062398485 51.310032808199999 -0.503018874451 51.310014683799999 -0.503007985959 51.309987643900001 -0.503003126814 51.309956274500003 -0.503011321715 51.309879886899999 -0.503085547302 51.3098628081 -0.503086103111 51.309842867599997 -0.503073838946 51.309829200899998 -0.503059935824 51.309610278100003 -0.502676799723 51.309591199700002 -0.502661638171 51.309557794200003 -0.502651247364 51.309400837399998 -0.502683617463 51.309361139700002 -0.502673431505 51.309341107400002 -0.502653996765 51.3093180483 -0.502608834657 51.309268683399999 -0.50240526933 51.309228196799999 -0.502333414199 51.309143206199998 -0.502227139092 51.309054638299997 -0.50212241563 51.308857139799997 -0.502008327148 51.308808508200002 -0.502002737096 51.308685177299999 -0.502062708862 51.308639040599999 -0.502111558096 51.308616403400002 -0.502169685291 51.308594830099999 -0.502310993315 51.308587877500003 -0.50232987144 51.308559461599998 -0.502358056861 51.308411145199997 -0.502362885729 51.308327658800003 -0.502374212306 51.308131114399998 -0.502334699692 51.307927617099999 -0.502524970526 51.307689852300001 -0.502496842531 51.307632488599999 -0.50251162243 51.307599541599998 -0.502537085204 51.307560614099998 -0.502587132828 51.307529171100001 -0.502659892215 51.307495159799998 -0.502742778111 51.307364874 -0.50310282728 51.307321543500002 -0.503160190988 51.307287605799999 -0.503178511806 51.307267004700002 -0.503184920974 51.307067433299999 -0.503189979995 51.307034853399998 -0.503173823666 51.306993027899999 -0.503137882393 51.306956430699998 -0.503088858761 51.306915632900001 -0.502992626865 51.306806723400001 -0.502070792945 51.306752349200003 -0.501756931012 51.306717126800002 -0.501604566122 51.306683170200003 -0.50148085405 51.306568073299999 -0.501130235517 51.306509734599999 -0.500858111371 51.306531654200001 -0.500673757195 51.306638835800001 -0.500265681379 51.306700636199999 -0.500105850517 51.306756750300003 -0.499993549522 51.306821138099998 -0.499895325405 51.306881288600003 -0.499817324959 51.306907025500003 -0.499790661073 51.307109290299998 -0.499644898449 51.307593392 -0.499106871121 51.307854518699997 -0.498782710982 51.308304339099998 -0.498516951074 51.308369826700002 -0.498434467804 51.308401395799997 -0.498371743254 51.308436008500003 -0.498265876868 51.308496276600003 -0.497916700274 51.308733989799997 -0.497099735678 51.3088902119 -0.496309817466 51.308985136099999 -0.495788764738 51.309110112200003 -0.49536716047 51.309255157199999 -0.494967853586 51.309255138799998 -0.494966419417 51.309408134 -0.494695979714 51.309494016400002 -0.494311517755 51.309627575100002 -0.493928362856 51.309644174299997 -0.49389051496 51.309688140799999 -0.493813031695 51.309749093699999 -0.493727818086 51.309805828899997 -0.493664264218 51.309989209100003 -0.493519083604 51.310045156 -0.49346416374 51.310110658500001 -0.493383104372 51.310170656799997 -0.49329361626 51.310235605499997 -0.493169530473 51.310401280199997 -0.492766661094 51.310476811800001 -0.492626444191 51.310601886599997 -0.492422906011 51.310996065600001 -0.491887709061 51.311387498099997 -0.491837568569 51.311530370699998 -0.491689399368 51.311746663 -0.491795659508 51.311834359599999 -0.491901832631 51.311866134500001 -0.491925183273 51.311915006699998 -0.491949408211 51.311958319200002 -0.491960901773 51.312014013 -0.491956205957 51.312204569800002 -0.491879649517 51.312444170699997 -0.491701043111 51.312604861 -0.491609680719 51.312740720500003 -0.491405776458 51.312917197 -0.491422945986 51.313115984500001 -0.491287285136 51.313257169499998 -0.491147773286 51.313299946199997 -0.491117671914 51.313351767199997 -0.491091578457 51.313400158900002 -0.491078511567 51.313475701900003 -0.491078902875 51.3135885242 -0.491111073961 51.3138464309 -0.491306370417 51.314006752600001 -0.491395815884 51.314349184199997 -0.491520901541 51.314446171 -0.491510545637 51.3144998637 -0.491490130294 51.314582776 -0.491434317909 51.314693620900002 -0.491313016608 51.314813669499998 -0.491138319748 51.314850972199999 -0.491032344712 51.314883281299998 -0.490887789756 51.3148975386 -0.490738087224 51.314865251100002 -0.490186691906 51.314866238800001 -0.489984331815 51.314882684600001 -0.489725501093 51.314896589500002 -0.489060663059 51.314908962200001 -0.48897415959 51.314939053300002 -0.488866984566 51.314968782299999 -0.488801434891 51.315006675200003 -0.488741356658 51.3150279336 -0.488716263863 51.315142435 -0.488669452363 51.315226004099998 -0.488594958011 51.315682772499997 -0.487894028574 51.315731256500001 -0.487888129444 51.3158914483 -0.488245912125 51.315951144700001 -0.488272649326 51.315979028500003 -0.488273167681 51.3160691673 -0.488219980028 51.316182928899998 -0.487976596951 51.316256981400002 -0.48779191817 51.316390286199997 -0.487460355505 51.316415204899997 -0.487370566099 51.316436797 -0.487232096116 51.316458082799997 -0.486721971563 51.316452151 -0.486402162216 51.316424533899998 -0.486074456866 51.316383164500003 -0.485795994604 51.316294050899998 -0.485441615583 51.316268936 -0.485307553454 51.316228307099998 -0.485086468055 51.316145912899998 -0.484904068803 51.316103763900003 -0.48470455924 51.316103318400003 -0.484670134223 51.316110981400001 -0.484636877 51.316200699299998 -0.484481811588 51.316277962699999 -0.484337201008 51.3163015083 -0.484280460214 51.316320485299997 -0.484218129976 51.316337293099998 -0.484127171293 51.3163469283 -0.484037883985 51.316347028700001 -0.483976175889 51.316341661499997 -0.483908908069 51.316324144500001 -0.483806165982 51.316123471200001 -0.4834482953 51.316105556499998 -0.483384311651 51.316104980600002 -0.483339846029 51.316120324400003 -0.483274765517 51.316248587799997 -0.483040936378 51.3162758721 -0.482856357236 51.316272129700003 -0.482636926789 51.316351053 -0.482343018555 51.316354506300002 -0.482262544836 51.316335506199998 -0.482184247198 51.316296948100003 -0.48198462072 51.316267496 -0.481932498205 51.316234690100003 -0.481899141367 51.316199317799999 -0.481875914239 51.316171359599998 -0.48186966226 51.316116602400001 -0.481877209888 51.316100534199997 -0.481886350265 51.316023391800002 -0.481970691061 51.315982954600003 -0.48204234012 51.315927174099997 -0.482179069686 51.3157431821 -0.482414738663 51.315723611300001 -0.48243116924 51.315652295900001 -0.482479441792 51.3155680988 -0.482505179722 51.315519540799997 -0.482505347073 51.315350105699999 -0.482476498937 51.315253312300001 -0.482432339244 51.3152184124 -0.482168023303 51.315047118099997 -0.481787674013 51.314999322600002 -0.48163858179 51.314985473599997 -0.481541462235 51.314986849599997 -0.48143953514 51.315041381699999 -0.480998638313 51.315166668300002 -0.480466435248 51.315212043199999 -0.48022099274 51.315251106799998 -0.479974323384 51.315319894700004 -0.479385149623 51.315373803299998 -0.478619965497 51.315442162 -0.478205868312 51.315476890799999 -0.478041132645 51.315494704499997 -0.477958749845 51.315701587500001 -0.477063652556 51.315823552700003 -0.476692258642 51.315965590600001 -0.476343157415 51.316084611400001 -0.476022081577 51.316305924 -0.475476624163 51.316397539500002 -0.475330087139 51.316443814099998 -0.47529267791 51.316471567100002 -0.475283147726 51.316531903799998 -0.475289757194 51.316704672 -0.475367259253 51.316754240900003 -0.475375660871 51.3168496336 -0.475381108221 51.316943978099999 -0.475375110226 51.317017555100001 -0.475362625665 51.317090982700002 -0.475338665858 51.317183099799998 -0.475299736067 51.317254542900002 -0.475261491623 51.317340031699999 -0.475196950827 51.317507957700002 -0.475040704083 51.317712589899998 -0.474802876579 51.317869014800003 -0.474730241154 51.317938116 -0.474719338785 51.317983078399998 -0.474719282414 51.3180696879 -0.474740805388 51.318112233900003 -0.474762354958 51.318283746500001 -0.474881515871 51.318352397300004 -0.474905069976 51.318434157399999 -0.474899488124 51.3187373998 -0.474776059787 51.318835582600002 -0.474788588865 51.319355868199999 -0.475173156076 51.319828378899999 -0.475618155098 51.320147652700001 -0.475966348835 51.320273412 -0.476163097054 51.3203672625 -0.4763264608 51.320482737799999 -0.476147548851 51.320561204 -0.476096153951 51.320601522700002 -0.476084771745 51.320650923400002 -0.476080264153 51.3207194246 -0.476092345078 51.320952019099998 -0.476275509584 51.321002390399997 -0.476345597348 51.321032893199998 -0.47640916794 51.321051710500001 -0.476473125821 51.321062382 -0.476533048233 51.321067566899998 -0.476585976745 51.321051796900001 -0.477032828727 51.3210751608 -0.477169828619 51.3211023474 -0.477255036848 51.321135732899997 -0.477332864162 51.321198106 -0.47742695341 51.321332818099997 -0.477551656013 51.3216934087 -0.477688972689 51.321726085199998 -0.477712288549 51.3217915874 -0.477770396756 51.321881955899997 -0.477873607269 51.3220442637 -0.478115083714 51.322076484599997 -0.478241747713 51.322088408200003 -0.478328898741 51.322092055500001 -0.478401971965 51.322086900400002 -0.478489688254 51.322072137100001 -0.478599250086 51.322060223800001 -0.478651310579 51.321976820300002 -0.478876521963 51.321976010100002 -0.478952612858 51.3219847708 -0.479003989214 51.322001565400001 -0.479050794302 51.322018998099999 -0.479077485899 51.322035382800003 -0.479092730794 51.3220615806 -0.479101910388 51.3220957192 -0.47909934591 51.322126881700001 -0.479075352234 51.322147164599997 -0.479044542552 51.32222613 -0.478823783015 51.322332349200003 -0.478485871052 51.322362407699998 -0.478446126349 51.322388232800002 -0.478426614283 51.322417802399997 -0.478418459748 51.322448420100002 -0.478421752009 51.3224755727 -0.47843520526 51.322499241700001 -0.478457384945 51.3225857117 -0.478606653473 51.322610182 -0.478690520009 51.322616767900001 -0.478782154344 51.322606163400003 -0.478865746313 51.322557559300002 -0.47900082705 51.322509700300003 -0.479193290379 51.322435773599999 -0.479386615469 51.322428149399997 -0.479422747272 51.322420767300002 -0.479477528464 51.322418797099999 -0.479533565848 51.322425270700002 -0.47961659252 51.322527162299998 -0.480122715001 51.322654481 -0.480162997027 51.322728359199999 -0.480381574798 51.322847529 -0.48069481476 51.323020029399999 -0.481029257573 51.323034424299998 -0.481099106988 51.323032248700002 -0.481139364584 51.323019267900001 -0.481178543927 51.323007824400001 -0.481197579617 51.322761290499997 -0.481187066359 51.322621455099998 -0.481013722115 51.322535280399997 -0.480956291305 51.322454046600001 -0.480933141919 51.322378541 -0.480935636655 51.322332022700003 -0.480954395821 51.322275877400003 -0.48099356555 51.322230630100002 -0.481040986203 51.322199709099998 -0.481083627936 51.322144475400002 -0.48119309092 51.322128984 -0.48124670418 51.322117348600003 -0.481320282492 51.322112005199997 -0.481393652939 51.322114695899998 -0.481462452489 51.322119897199997 -0.481516817374 51.322152672500003 -0.481686520914 51.322161903 -0.481704873386 51.3221882494 -0.481725531005 51.322215290099997 -0.481730378756 51.322251040600001 -0.481713411196 51.322339093300002 -0.481707633036 51.322410674899999 -0.481818648745 51.3224397985 -0.481984168578 51.3223209111 -0.482108649218 51.322302480899999 -0.482143702035 51.322286071599997 -0.482195910277 51.322276066 -0.482256518168 51.3222768097 -0.482313900835 51.322297756300003 -0.482403625792 51.322402601100002 -0.482652757475 51.322760384600002 -0.482712709198 51.322784672799997 -0.48271334283 51.323106118699997 -0.482467360497 51.323277518700003 -0.482509064903 51.323293828600001 -0.482518573044 51.323520359200003 -0.483136851474 51.323566027699997 -0.483191318296 51.323606024299998 -0.483224444026 51.323649486199997 -0.483247408921 51.323695533399999 -0.483261677225 51.323752218300001 -0.48326411279 51.3242524351 -0.483142837085 51.324426391899998 -0.483451416616 51.3244443066 -0.483515411804 51.324448886699997 -0.48359132887 51.324442828899997 -0.483679078809 51.324428458200003 -0.483749879923 51.324387269699997 -0.483833047409 51.324251617400002 -0.483982480589 51.324219889299997 -0.484032325053 51.324211754799997 -0.484098614357 51.324095481400001 -0.484772703947 51.324138317299997 -0.485025329283 51.324144778899999 -0.485177251619 51.324154565599997 -0.485238644407 51.324183933900002 -0.485353931161 51.324230287900001 -0.485461482279 51.324373089799998 -0.485517058095 51.324406997700002 -0.485566174695 51.324475899299998 -0.48581794394 51.324474278499999 -0.485901241739 51.324482230100003 -0.485959825058 51.324498123 -0.486006664871 51.324519279500002 -0.486043284635 51.324791994100003 -0.486340013645 51.324952079 -0.486550032236 51.325154373300002 -0.48661657118 51.325303967799996 -0.486849902045 51.325334075699999 -0.486883357646 51.325379501500002 -0.486919179672 51.325467193199998 -0.486955045954 51.325699798899997 -0.487070824802 51.325763563599999 -0.487342866381 51.325666354200003 -0.487614463432 51.325499161400003 -0.487898408237 51.325479561599998 -0.487982299143 51.325476633 -0.488034065532 51.325479848199997 -0.488074147613 51.3255314707 -0.488381035279 51.325655395600002 -0.489064461885 51.325953456400001 -0.48937473596 51.326004896100002 -0.489388833857 51.326036264300001 -0.489380626591 51.326065668200002 -0.489359566183 51.326100150800002 -0.489313938773 51.326136190500002 -0.489249601223 51.326163185799999 -0.489181254913 51.326185538600001 -0.489101578695 51.3262006263 -0.489016399987 51.326243049200002 -0.488331801179 51.326257422700003 -0.488260998632 51.326273797600003 -0.488205918568 51.326305323699998 -0.488140293031 51.326457430200001 -0.487941523628 51.326494099 -0.487925964379 51.326518350199997 -0.48792373137 51.326564415299998 -0.487939439903 51.326681537600003 -0.488026012383 51.327352265199998 -0.4882953246 51.327381362700002 -0.4883202038 51.327418957399999 -0.488376381079 51.327542341399997 -0.488669439866 51.327740415800001 -0.48889688958 51.3278698234 -0.489099326491 51.328019693199998 -0.489214970513 51.328063941800004 -0.48922930516 51.328142255300001 -0.489235343434 51.328520212299999 -0.489116703452 51.328658436 -0.489096370916 51.328945910500003 -0.489074003013 51.3292898292 -0.489035425379 51.329557423200001 -0.489214667194 51.3296043685 -0.489228913655 51.329646578800002 -0.48922465545 51.3296884003 -0.489190266383 51.329764009100003 -0.489126058398 51.329803755199997 -0.489070206156 51.329843807700001 -0.488968410437 51.3299088455 -0.488712203398 51.329916194699997 -0.488654545029 51.329913851500002 -0.488542659469 51.329817195499999 -0.487812340755 51.3297993017 -0.487749771212 51.329783576099999 -0.487715838658 51.329753283199999 -0.487668031293 51.329635021100003 -0.487423596559 51.329573647399997 -0.487336620956 51.3295272672 -0.487296520528 51.329501931800003 -0.487284435675 51.329416316 -0.487270028502 51.329345323200002 -0.487273800329 51.329267473 -0.487303634987 51.329174629100002 -0.48728659493 51.329136542699999 -0.487262011269 51.329116433800003 -0.487236835986 51.329099753599998 -0.487198629345 51.329088373899999 -0.487153071312 51.329081358899998 -0.487097321899 51.329080636 -0.487041365394 51.329097862700003 -0.486913048413 51.329121993100003 -0.486831872042 51.329259632099998 -0.486696719743 51.3292596135 -0.486695284955 51.3293075781 -0.486649208426 51.3293495287 -0.486624860824 51.329478355200003 -0.486573250869 51.329542138400001 -0.486568279922 51.329607960399997 -0.486581902144 51.3301955409 -0.48716686994 51.330280026099999 -0.487232989813 51.330467687199999 -0.486932549066 51.330517458700001 -0.486817511081 51.330546833900002 -0.48672467595 51.330651992100002 -0.486511639265 51.330654058299999 -0.486462766218 51.330648257100002 -0.486431377543 51.330629815899997 -0.486396098801 51.330480731100003 -0.486271819086 51.3304596674 -0.486242368647 51.330441207699998 -0.486205655301 51.330428965899998 -0.486162995453 51.330421125699999 -0.486113013478 51.330420458 -0.486061359839 51.330446338400002 -0.485906915829 51.330483747199999 -0.485809509289 51.330510157 -0.485765576137 51.330541135300003 -0.485727234169 51.330590878700001 -0.485679661266 51.3306605541 -0.485574013869 51.330685054699998 -0.485521530661 51.3307125384 -0.485421579463 51.330785464599998 -0.485219649393 51.330856306199998 -0.485065157167 51.330860299500003 -0.485026268448 51.330865352899998 -0.484721786838 51.330883921400002 -0.48462787049 51.330904770399997 -0.484571200565 51.330956652899999 -0.484480491951 51.331093482900002 -0.484352531015 51.331211871 -0.484189291026 51.331362696500001 -0.484169962142 51.331392998200002 -0.484148866261 51.331421335100003 -0.484114915967 51.331443194099997 -0.484066824622 51.331450894 -0.484036425857 51.33145924 -0.483917006815 51.3314515175 -0.483806730608 51.331439932199999 -0.483745387734 51.3314099607 -0.483653071235 51.3312403499 -0.483332817518 51.3311870072 -0.483241272944 51.3311017069 -0.483251265177 51.3310453008 -0.483270352044 51.330878251599998 -0.483356249747 51.3308217525 -0.483368162217 51.330749600899999 -0.483351882244 51.330706101799997 -0.483326044184 51.330637136900002 -0.483278079447 51.3305870111 -0.483226622277 51.330535689199998 -0.483152237682 51.3305099074 -0.48310571909 51.330402126199999 -0.482629841153 51.330356463900003 -0.482506465951 51.330284250699997 -0.482346646463 51.330058428699999 -0.481922040356 51.330048435599998 -0.481844857554 51.330037834599999 -0.481651425608 51.330056183300002 -0.48147139154 51.329997612100001 -0.481184806834 51.3299783748 -0.481018933655 51.329973120699997 -0.48068321877 51.329965879299998 -0.480610251673 51.329967155799999 -0.480570017691 51.329982497800003 -0.480504916563 51.330136292299997 -0.480090735822 51.330176001799998 -0.479963105092 51.330202544599999 -0.479860311888 51.330244694500003 -0.479643603412 51.330278395500002 -0.479468801535 51.330293424799997 -0.479310406904 51.330270784699998 -0.479021198981 51.330219818499998 -0.47890518034 51.330183998300001 -0.478847513222 51.330128347 -0.478786196252 51.329917163200001 -0.478866392014 51.329890085199999 -0.47885867563 51.329866472200003 -0.478840796655 51.3295615368 -0.478418830394 51.329492312900001 -0.478281887534 51.329406335 -0.478032102904 51.329454837 -0.477681693431 51.3294533786 -0.477638679575 51.329434039500001 -0.477534535553 51.3293885211 -0.477422646389 51.3293057944 -0.477284717449 51.329208651400002 -0.477075496737 51.329133899 -0.476997591326 51.328960068299999 -0.476838281171 51.328923027800002 -0.476825154702 51.328900686600001 -0.476835942752 51.328882090199997 -0.4768580898 51.328634995599998 -0.477219381093 51.328523457199999 -0.477286232752 51.328456060400001 -0.477289900782 51.328531971 -0.477041936706 51.328543566299999 -0.476965477548 51.328540387700002 -0.476859364981 51.328531682 -0.476812286028 51.328514961099998 -0.476771214209 51.328493857799998 -0.476738899901 51.328435732700001 -0.476694894146 51.328404141500002 -0.476685893464 51.328212625500001 -0.476687934167 51.328217859799999 -0.476468149582 51.328245992 -0.476349517 51.328289778299997 -0.476259072724 51.328366990900001 -0.476180438498 51.328390476300001 -0.476119374297 51.328404637 -0.476032782475 51.328402972600003 -0.475973987377 51.3283922074 -0.475906881801 51.328382789199999 -0.475874180521 51.328307233 -0.47573458418 51.328216136599998 -0.475506510907 51.328202618600002 -0.475435190916 51.3282001858 -0.475386469146 51.328204138399997 -0.475344712413 51.328213428300003 -0.475298472538 51.328237793500001 -0.475235943537 51.328360831300003 -0.4750854543 51.328390288599998 -0.475068687964 51.328423528199998 -0.47506614986 51.328448827400003 -0.475075358171 51.32855609 -0.475163663879 51.328598393100002 -0.475166566681 51.328640303900002 -0.475139339519 51.328702853400003 -0.475039658512 51.328721825199999 -0.474977307639 51.328723249299998 -0.474948552735 51.328703739700003 -0.474831498684 51.328684472900001 -0.474733096635 51.3286713655 -0.474693340902 51.328645393499997 -0.474632481388 51.3286224358 -0.474595923365 51.328593204699999 -0.47456100895 51.328549572900002 -0.474525137119 51.328443694599997 -0.474474106692 51.3284148559 -0.474469322301 51.328379837299998 -0.474473355251 51.328044348699997 -0.474606495123 51.327940285 -0.474625737388 51.327827778299998 -0.474549090955 51.327627620299999 -0.474163883125 51.327570787299997 -0.474081084164 51.327461539200002 -0.473978495295 51.327441595700002 -0.473966239287 51.327405528699998 -0.473958824591 51.327369742 -0.473972930706 51.327351071400003 -0.473989339272 51.327240094099999 -0.474168134488 51.3271430279 -0.474448375818 51.327110292900002 -0.47448965151 51.327082614699997 -0.47450492336 51.327053888199998 -0.474508747337 51.327024993400002 -0.474499658921 51.326996792 -0.474474758891 51.326976624300002 -0.474445286288 51.326960708 -0.474397013355 51.326944513 -0.474258324081 51.326944594099999 -0.473988479838 51.327005542199998 -0.47335204096 51.327013356599998 -0.472985772368 51.327094581200001 -0.472180723409 51.327087878100002 -0.472011577002 51.327052280300002 -0.471626656211 51.3270470557 -0.471433060237 51.327046269 -0.471235010721 51.327075536099997 -0.470652727945 51.327078937400003 -0.469949302026 51.327068627800003 -0.469298004487 51.3270802125 -0.468945962295 51.327144015599998 -0.468254876681 51.327157759400002 -0.468205617321 51.327192588199999 -0.468118336556 51.327236574600001 -0.468043668501 51.327274644200003 -0.467997904269 51.327325354199999 -0.46795602469 51.327504095800002 -0.467871123414 51.327802499699999 -0.467790844898 51.327882330199998 -0.467775265695 51.328081111800003 -0.467778687155 51.328305153400002 -0.467719545672 51.3283774362 -0.467676945671 51.328421854 -0.467635274469 51.328460690900002 -0.467579435487 51.328492242899998 -0.467516662399 51.328524224299997 -0.467417990463 51.328634874800002 -0.466802828757 51.3288062098 -0.466083726611 51.328815943800002 -0.466003020101 51.328828634200001 -0.465873411713 51.328830951599997 -0.465775728017 51.328827856799997 -0.465676789578 51.3287772885 -0.46518039864 51.328775731500002 -0.465130212123 51.328776961300001 -0.465018210952 51.328784539499999 -0.464910303916 51.328796931699998 -0.464826637633 51.328832634 -0.464668987962 51.3288785246 -0.464533963923 51.3289185557 -0.464432149348 51.3289685871 -0.464338612839 51.329129358800003 -0.464117931964 51.329218954600002 -0.463955608776 51.329346072100002 -0.463705906669 51.329403345700001 -0.463547533149 51.329541991299998 -0.462942897173 51.329599395599999 -0.462794565519 51.329650230399999 -0.462693821872 51.329717150500002 -0.462585362895 51.329820585 -0.462449844616 51.329905651799997 -0.46235369659 51.330884419199997 -0.456775798814 51.330958566 -0.456260851663 51.330981511399997 -0.456159599053 51.330986015599997 -0.456091981313 51.3309744823 -0.455967484062 51.330885146 -0.45246941434 51.330884026600003 -0.451704355213 51.330883517099998 -0.45146178069 51.3307574297 -0.451447367963 51.330721304500003 -0.451435666062 51.330697801299998 -0.451426409805 51.330660663300002 -0.451406129373 51.330606124399999 -0.451362032702 51.330556523299997 -0.451283319111 51.330526419500003 -0.45111495124 51.330314711200003 -0.449930673584 51.329972048499997 -0.450199170815 51.328794508400001 -0.451120202836 51.328590756099999 -0.45128496066 51.328142864500002 -0.450057022393 51.328061201 -0.449866001633 51.328003667300003 -0.449731582272 51.327668917700002 -0.448763960778 51.327478441099998 -0.448233568634 51.327351537799998 -0.447886193374 51.327185545 -0.447507127387 51.326832248199999 -0.446498541253 51.326769835699999 -0.446335587994 51.326746564700002 -0.446276090857 51.326719469899999 -0.446199499137 51.326713586399997 -0.445078709673 51.3266981672 -0.444797907737 51.326665970500002 -0.444201902621 51.326680369800002 -0.443796654028 51.327308819499997 -0.437370874586 51.3273916857 -0.437313514416 51.327391607099997 -0.437172853099 51.327065340200001 -0.437117920189 51.326813525200002 -0.437048973979 51.326515943899999 -0.436919865898 51.326309928400001 -0.436644114369 51.326271793399997 -0.436616705063 51.326248346500002 -0.436611761235 51.3262268123 -0.436615364227 51.326186727600003 -0.436643998361 51.326137865100002 -0.436688719348 51.326100706799998 -0.436734477522 51.326031171700002 -0.436847360617 51.325988487300002 -0.436950718579 51.3259240418 -0.437242840643 51.325909298200003 -0.437350989395 51.3259016497 -0.43745172041 51.325900923900001 -0.437532121891 51.325904788099997 -0.43761954387 51.3259209498 -0.437752477553 51.326048476399997 -0.438211747053 51.3260782539 -0.438286806575 51.326097111099998 -0.438352190025 51.326108700900001 -0.438412079177 51.326115720099999 -0.438533841808 51.326094358500001 -0.438887652702 51.326073493499997 -0.439008926926 51.326056357799999 -0.439072662221 51.326016195900003 -0.439163014769 51.325473912900001 -0.439903376188 51.325349678099997 -0.440028156072 51.325229861 -0.440147044258 51.325145865899998 -0.440119753524 51.325079007 -0.440028729347 51.325010693099998 -0.440098505279 51.324993231900002 -0.440137850106 51.324978543699999 -0.440182841897 51.3249534479 -0.440526722981 51.324810562300001 -0.440871728006 51.324626669200001 -0.441378870428 51.324611923200003 -0.441419557636 51.324366878699998 -0.442197160197 51.324380416899999 -0.442268464044 51.324331586299998 -0.44245096019 51.324364975599998 -0.442527332534 51.324187078599998 -0.443080188079 51.324049072 -0.44365752319 51.324057058 -0.443852445705 51.324257735300002 -0.445013944623 51.324337258600004 -0.445652811634 51.324086205900002 -0.445708662788 51.322098873 -0.445915061141 51.321289254500002 -0.445826179748 51.319849206199997 -0.445801665128 51.318428734 -0.445897034883 51.317437441499997 -0.445942017935 51.3166013377 -0.445483806176 51.315090897300003 -0.444627968392 51.314800419299999 -0.444491427577 51.314247190899998 -0.444274810399 51.313017493399997 -0.443838586739 51.312981634300002 -0.443846974557 51.312597575399998 -0.4437738764 51.311804616400003 -0.443585478376 51.311121010400001 -0.443437865631 51.310507493599999 -0.443353886535 51.309334007300002 -0.443222861281 51.308966756700002 -0.443196551998 51.308756749700002 -0.443160616776 51.308596392600002 -0.443071350065 51.308457300400001 -0.44302584156 51.308018505600003 -0.442961783103 51.307913379399999 -0.44290077833 51.307887290799997 -0.442967659346 51.307596584400002 -0.442746508165 51.307489967899997 -0.442641078408 51.307405803899996 -0.442533454223 51.307203952599998 -0.442231824524 51.3066905218 -0.441897709691 51.306575145 -0.441809797018 51.305518316700002 -0.440917366185 51.304921366899997 -0.440456990836 51.3048442188 -0.440403655092 51.304781089400002 -0.440322586086 51.304601953400002 -0.439971435141 51.304548693 -0.43982117007 51.304425706 -0.439432252456 51.304346513 -0.439090628292 51.303942252699997 -0.437435887396 51.303912238 -0.436736815234 51.303986873600003 -0.435390043571 51.304031713400001 -0.435111637352 51.304156774699997 -0.434645435116 51.304163925 -0.434574895338 51.304147331300001 -0.43420819683 51.304190247500003 -0.433718964338 51.304201534900002 -0.433352751067 51.304310808700002 -0.432446649522 51.304313501800003 -0.432379130284 51.3043199759 -0.431855270685 51.304325172699997 -0.43143761691 51.303846084500002 -0.428570379428 51.303941092800002 -0.427877083843 51.303975924200003 -0.427725258757 51.3040753063 -0.427424895866 51.304132948700001 -0.427431533246 51.304392754799998 -0.426622128647 51.304418846499999 -0.426489250228 51.304426582399998 -0.426395734585 51.304410640100002 -0.425744957366 51.304371292299997 -0.425493808946 51.304368973199999 -0.424452346955 51.3043382802 -0.423842246095 51.3042879443 -0.423843970628 51.304267577799997 -0.423399934021 51.304267558500001 -0.423398500056 51.304247439699999 -0.423106525734 51.30419214 -0.422739722644 51.304156266200003 -0.422346431036 51.304150671199999 -0.422131429369 51.3041512617 -0.421708195141 51.304169199599997 -0.421304450331 51.3042333896 -0.42046299119 51.3042293273 -0.419562185308 51.3042328983 -0.419293787465 51.3042383632 -0.419032497622 51.304281239200002 -0.418012438156 51.304321374200001 -0.41732243582 51.304339922600001 -0.417097995393 51.304390501 -0.416648649987 51.304436577 -0.416066037662 51.304197191599997 -0.416052760212 51.304186987100003 -0.415697324387 51.304025646500001 -0.415669884258 51.303999093900003 -0.415435521015 51.303831577700002 -0.415416902297 51.303715339199996 -0.414004944727 51.303633877499998 -0.4132359335 51.303585912 -0.412616402861 51.303537988599999 -0.412199151461 51.303511048499999 -0.411804130213 51.303652035799999 -0.411723228811 51.303458841599998 -0.41107141541 51.303268077600002 -0.410201464583 51.303172247500001 -0.409899207359 51.3030883383 -0.40954776315 51.303036015899998 -0.409403243673 51.302980156399997 -0.409263150587 51.302806981400003 -0.409026693614 51.302274938799997 -0.408587464938 51.301560016800003 -0.408190437233 51.3011837 -0.407961020617 51.300453532799999 -0.407633395799 51.299745855399998 -0.407306437127 51.299475716499998 -0.407147953612 51.298930301299997 -0.406717847346 51.2986987731 -0.406555164004 51.298474845199998 -0.406422342476 51.297909415699998 -0.406173685536 51.297793289600001 -0.406098814237 51.297679801500003 -0.40601954866 51.297439148 -0.405781165142 51.297220593600002 -0.405580747428 51.296951156 -0.405407914068 51.296727968900001 -0.405329584286 51.296502026200002 -0.405313029405 51.296126914200002 -0.405238531391 51.296021631899997 -0.405233573701 51.295693259499998 -0.405223437882 51.295430776400003 -0.405231099745 51.295156080399998 -0.405266437275 51.294919565699999 -0.405332006729 51.294836891199999 -0.405336305847 51.294796955700001 -0.40431931217 51.294821458500003 -0.40393979804 51.294948176 -0.403802009704 51.295181132800003 -0.403607464543 51.295471868600004 -0.403297598703 51.295784469099999 -0.403008485595 51.29605242 -0.402742433885 51.296327268600002 -0.402520605436 51.296489741400002 -0.402301241522 51.2966552599 -0.401975625209 51.297037401899999 -0.400984090473 51.297224698 -0.400475538377 51.297401945300003 -0.399889873015 51.298018151 -0.397603471192 51.298017931300002 -0.397521715989 51.2980143399 -0.397259339285 51.297892758 -0.394751882997 51.297694237 -0.394833398565 51.2975679523 -0.394870795475 51.297530427700003 -0.395019849799 51.297448741700002 -0.395161837519 51.297422562500003 -0.39522012725 51.297407783600001 -0.395388469483 51.297373264299999 -0.395494385582 51.297267745900001 -0.395472245391 51.297195047400002 -0.395351420969 51.297109730800003 -0.395294150921 51.297011054599999 -0.395311936039 51.2969354389 -0.395371948999 51.296938405900001 -0.395588440345 51.296911583 -0.395665398841 51.296889991100002 -0.395664717221 51.296818044399998 -0.395664356775 51.296755110500001 -0.395731098756 51.296738101099997 -0.395867959405 51.2966982031 -0.395909513288 51.296607483599999 -0.395982960849 51.296557560799997 -0.3960148232 51.296449311400004 -0.396055890404 51.296382723100002 -0.396118455519 51.296263466799999 -0.396078146182 51.296163042300002 -0.395968330502 51.2960785219 -0.395837879637 51.296006648800002 -0.395777272636 51.295910516699998 -0.395849473632 51.2958309415 -0.396014331115 51.295766759700001 -0.396121276898 51.295086821300004 -0.396114852907 51.294825763699997 -0.396095264489 51.294666020199998 -0.396053498917 51.294354628100002 -0.395773184339 51.294240588 -0.395719786857 51.294022615899998 -0.395694396049 51.293933600899997 -0.395564108353 51.293807600699999 -0.395491048555 51.293567113199998 -0.395397597722 51.293352652800003 -0.395300371755 51.2931579523 -0.395267000473 51.293096536199997 -0.395247627686 51.292971572100001 -0.39518457385 51.2928462936 -0.395098582912 51.292504418500002 -0.395087556197 51.292330833 -0.394954486158 51.292130512500002 -0.394773584927 51.292051408900001 -0.394710368336 51.291973302400002 -0.394654288419 51.291797688300001 -0.394570056509 51.291658210199998 -0.394563447787 51.291484247299998 -0.394599634724 51.291254104 -0.394604793725 51.291006719899997 -0.394533106233 51.290619804199999 -0.394516483886 51.2904530124 -0.394550985766 51.290240109700001 -0.394632989901 51.289948771699997 -0.394700518552 51.289838508700001 -0.394725876832 51.289381974400001 -0.394747535221 51.289114767500003 -0.394804181132 51.288512664899997 -0.394899753204 51.2882592156 -0.394975995184 51.288049377299998 -0.395019164974 51.2878210366 -0.395090227701 51.2873771207 -0.395310781693 51.287178657699997 -0.395396575458 51.286990371800002 -0.395437556867 51.286791849799997 -0.395519049126 51.2866383486 -0.395604707895 51.286578872500002 -0.395661275816 51.286521272500003 -0.395723514514 51.286374421300003 -0.395900721032 51.286204784299997 -0.396055775208 51.286066489 -0.396201131944 51.285931282699998 -0.396375061376 51.285870676 -0.396480424744 51.285789200499998 -0.396900572726 51.285722128800003 -0.39705922014 51.285360129399997 -0.397089033249 51.284660540700003 -0.39722381104 51.283844879 -0.3972880574 51.283322692299997 -0.397375066679 51.283108025 -0.397394010957 51.282541712499999 -0.397410855641 51.282201344 -0.397444212278 51.281910157 -0.397457215416 51.281409986200003 -0.397444512012 51.280934398200003 -0.397453895599 51.280686120299997 -0.397448197949 51.2802833585 -0.397456480398 51.280178974499997 -0.397451510124 51.279870901800003 -0.397413480702 51.279626882599999 -0.397390428694 51.279586356 -0.397386103774 51.279109531800003 -0.397305197847 51.278748717600003 -0.397224556975 51.278602386800003 -0.396061078057 51.278593260800001 -0.39605135912 51.2784754093 -0.395982339017 51.278296529800002 -0.395856658507 51.2781696897 -0.395787952472 51.277854848499999 -0.395649804781 51.277784188600002 -0.395612120051 51.277349417800004 -0.395319002526 51.276706187499997 -0.394972937389 51.276397440799997 -0.394820249367 51.276854982499998 -0.3946752608 51.276828178300001 -0.394491238092 51.276822165200002 -0.394315093296 51.276834974 -0.394199944563 51.276883464299999 -0.393867050971 51.276889803800003 -0.393739223605 51.276891696299998 -0.393483945069 51.276887308299997 -0.393360793233 51.276665143800003 -0.393226600955 51.276545604900001 -0.393100299017 51.2764750893 -0.392942177892 51.276402389300003 -0.392624985775 51.276293620899999 -0.392955679485 51.275731582100001 -0.39249785657 51.275158092799998 -0.392057649151 51.274974734600001 -0.392522841108 51.274614528699999 -0.393338290084 51.274577858900003 -0.393418423213 51.274479154799998 -0.393565236801 51.274093186100004 -0.393224578177 51.273802368699997 -0.3930024678 51.273669150099998 -0.392862314706 51.272999343599999 -0.393201092327 51.272644645600003 -0.393369734218 51.272477466 -0.393441513492 51.272003726299999 -0.392930463787 51.271748626 -0.392689915206 51.2711976545 -0.392121365847 51.271419076800001 -0.390238476701 51.2711929377 -0.390404076371 51.270986486600002 -0.390497306698 51.270559842899999 -0.390469207677 51.270343738199998 -0.390383576832 51.270123525700001 -0.390260817555 51.269901732100003 -0.390153883857 51.269751006299998 -0.390048767861 51.269665167 -0.389888342996 51.269610648899999 -0.389716788896 51.269484510799998 -0.389503299242 51.269183010500001 -0.389224265855 51.269090243800001 -0.389148665356 51.268775769599998 -0.389037812957 51.268652757600002 -0.38898620765 51.2684091737 -0.388864276804 51.267900926400003 -0.388656993745 51.267690963 -0.38862563393 51.267465451500001 -0.388640689798 51.267354814699999 -0.388638825916 51.267168477600002 -0.388625275235 51.267092777400002 -0.38861358847 51.267022233600002 -0.388584519709 51.266950672500002 -0.388546885801 51.266802484099998 -0.388430225081 51.266637653899998 -0.388215238603 51.266563584700002 -0.388126088854 51.2664887153 -0.388044134666 51.266409450300003 -0.387969501822 51.266327567600001 -0.387900694635 51.2660771973 -0.387743176836 51.265993615500001 -0.3876815972 51.265831252799998 -0.387515267508 51.265683043599999 -0.387397180144 51.265509706099998 -0.387282840042 51.265437384 -0.387255269935 51.265025892 -0.387152135421 51.264972464099998 -0.387255777855 51.264858341100002 -0.387196703124 51.264848872899996 -0.387684392013 51.264776354200002 -0.388230189278 51.264766935200001 -0.388525799515 51.264777940899997 -0.388867997577 51.264763170099997 -0.389036222089 51.264675072800003 -0.3897574353 51.264622103599997 -0.389959962231 51.264514099700001 -0.390084141741 51.264232591099997 -0.390147014149 51.263762253499998 -0.390276685193 51.263399311900002 -0.390434135342 51.263071023599998 -0.390495771437 51.262704754700003 -0.390607466808 51.262545232800001 -0.390647439036 51.262390146 -0.390682956078 51.262117408800002 -0.390729748762 51.261618280299999 -0.390793047654 51.261341723699999 -0.390758274395 51.261049611 -0.390703978843 51.260754257400002 -0.390675596107 51.260380113099998 -0.390606967704 51.2600754288 -0.390488616736 51.259814315 -0.39033434732 51.259563876500003 -0.390237036234 51.259346229899997 -0.390170111638 51.259175342900001 -0.390102987202 51.259016968499999 -0.39009562141 51.2585897676 -0.390157842519 51.258444489299997 -0.390187282381 51.2582317309 -0.390148852705 51.2580131657 -0.39008052922 51.257831125700001 -0.390052492616 51.2575466443 -0.390095394548 51.257351180699999 -0.390072126609 51.257138808800001 -0.389996422499 51.256948651800002 -0.389901311846 51.256573269599997 -0.389612033409 51.256057043699997 -0.389347746026 51.255974401 -0.389289009904 51.255872713 -0.389283965278 51.2560004423 -0.3900705879 51.256084813500003 -0.390385795531 51.256303935200002 -0.39108324587 51.256374210700002 -0.391354522075 51.256406983200002 -0.391579814347 51.2562176936 -0.39154772628 51.255763815 -0.391762771425 51.255334565699997 -0.391872336006 51.255197363299999 -0.39196597599 51.255034028200001 -0.392186639808 51.255088607499999 -0.392428362642 51.2551106174 -0.392721380473 51.255117546299999 -0.393291512845 51.2551056358 -0.393865168122 51.255147234699997 -0.394078683561 51.255170727900001 -0.394152386213 51.255197777200003 -0.394223098831 51.255263482099998 -0.394358387525 51.255033892599997 -0.394469569497 51.254586874700003 -0.39452956797 51.254275823500002 -0.394405694635 51.2542076091 -0.39441523645 51.254140391900002 -0.394431908848 51.2540066452 -0.394515386836 51.253820725799997 -0.394597815559 51.253561154800003 -0.394621187753 51.253390628699997 -0.394645757189 51.253215667399999 -0.394674780039 51.252464218900002 -0.394831357768 51.252128481200003 -0.39487457643 51.251852072200002 -0.394981646282 51.251507291599999 -0.395086796539 51.2513087289 -0.395165359521 51.25121404 -0.39521164575 51.251060600899997 -0.395367450259 51.250883717299999 -0.395584254486 51.250768441799998 -0.395768820596 51.2507108999 -0.395835306627 51.250651462199997 -0.395894693663 51.250510130800002 -0.395949765644 51.249713709700004 -0.395974614531 51.249449934200001 -0.395953702024 51.2492147452 -0.395918898699 51.248419912800003 -0.395731623641 51.2481734116 -0.395724440597 51.247897106700002 -0.395642352416 51.247631961 -0.395587101268 51.247170649700003 -0.395522916853 51.246914084399997 -0.395503189643 51.2466718855 -0.395547440285 51.246291577500003 -0.395619422176 51.245523825299998 -0.395702020031 51.245085971 -0.395774568286 51.244532965499999 -0.395843957868 51.244228741400001 -0.395824455185 51.243915995800002 -0.395773728681 51.243819347500001 -0.395742705626 51.243777921800003 -0.395738416085 51.243739290800001 -0.395741193038 51.243671900700001 -0.395810876916 51.243654241900003 -0.395900321451 51.243639358 -0.395995400346 51.243645084800001 -0.396347655965 51.2436052081 -0.396784596556 51.2434575021 -0.396768241682 51.243153784500002 -0.396720061021 51.243000469499997 -0.396688141572 51.242698157200003 -0.396611258704 51.242490871800001 -0.396578351372 51.242383751399998 -0.396570614975 51.242173341499999 -0.39657220142 51.2420709704 -0.396582924937 51.241847356 -0.396670931714 51.241717029599997 -0.396807270461 51.241580921100002 -0.396981059109 51.241506496200003 -0.397062443805 51.241426619400002 -0.397139719738 51.241245038199999 -0.397276404808 51.24105085 -0.397346191817 51.2409493189 -0.397352586125 51.240583289600004 -0.397350981789 51.240275022299997 -0.397364561456 51.240134526699997 -0.397349387688 51.239992174500003 -0.397329980641 51.239419755500002 -0.397229536397 51.239092121900001 -0.397207974441 51.238819004600003 -0.397161596346 51.238523572799998 -0.397127455079 51.238331116799998 -0.397061083219 51.238138896099997 -0.397011894579 51.237832619199999 -0.396973833985 51.237614041100002 -0.397363924496 51.237369599700003 -0.397966926981 51.237079769 -0.398736241173 51.236983601 -0.399003166979 51.236791362799998 -0.399610070831 51.236308259499999 -0.400977697244 51.236099889400002 -0.401523545066 51.2359457799 -0.402025965237 51.235841496399999 -0.402621201081 51.2357948736 -0.402960885552 51.235750946499998 -0.403300475997 51.235708678100004 -0.403827665278 51.235582320200002 -0.404717318327 51.235525780800003 -0.405253592724 51.235444817400001 -0.406373732247 51.235331589200001 -0.407304461547 51.235248391900001 -0.408129578605 51.235165163 -0.408688252816 51.235135740600001 -0.40897146598 51.2351114151 -0.409298909729 51.235125206600003 -0.410049051728 51.235111768400003 -0.410582396075 51.235105901700003 -0.410945014623 51.235102831200003 -0.41098379726 51.235117733300001 -0.411087854566 51.235212002499999 -0.41127512647 51.235448354500001 -0.411660918203 51.235487194900003 -0.411739799824 51.235522517600003 -0.411824532672 51.235729126 -0.412470635364 51.235858789799998 -0.413013386479 51.235918447 -0.413234803685 51.235979002599997 -0.41345619055 51.236281664400003 -0.414488646875 51.236305707299998 -0.414603853792 51.2363263485 -0.414733502887 51.236339346 -0.414896362638 51.236365237500003 -0.415081699564 51.236452487800001 -0.41561446233 51.236524019100003 -0.415849802978 51.236562306700002 -0.415954494265 51.236660396200001 -0.416158840899 51.236708144799998 -0.416231692298 51.236784068 -0.416326496726 51.2368473489 -0.416417437995 51.237019001 -0.416675129952 51.237122839 -0.416839171718 51.237314199099998 -0.417157789648 51.237398656800003 -0.417285252461 51.237484873299998 -0.417409790278 51.237586505899998 -0.417543827408 51.237693589599999 -0.417681975747 51.237981474199998 -0.418023075839 51.238116142499997 -0.418206122405 51.238433128799997 -0.418637915781 51.238683317700001 -0.419117847815 51.2385899919 -0.419265738104 51.238640677299998 -0.419423017505 51.239051818 -0.420301433093 51.239356076599996 -0.420856889445 51.239518923699997 -0.421129239228 51.2396855008 -0.421411491536 51.2398003399 -0.421658268629 51.239929541 -0.421903122798 51.240086943199998 -0.422238701574 51.240015679599999 -0.422355750085 51.240126416700001 -0.422698657789 51.240242484900001 -0.423170321821 51.240392110099997 -0.423596429225 51.240435880500002 -0.423708111343 51.2405434661 -0.423950848071 51.240760753899998 -0.424393273083 51.2408629834 -0.424639061384 51.2409125123 -0.424777769312 51.240960262599998 -0.424917970948 51.241031910300002 -0.425163373291 51.241080456799999 -0.425429622501 51.241088502099998 -0.425559719778 51.241088521400002 -0.425561151779 51.241084586100001 -0.425803405577 51.241057119099999 -0.426168238548 51.241016024399997 -0.426857316594 51.240982943500001 -0.427139245796 51.240914940899998 -0.42743239417 51.240582717499997 -0.428340559239 51.240494624199997 -0.428544131544 51.240420955600001 -0.428817410806 51.240396561 -0.428942881489 51.240376679800001 -0.429069630907 51.240356158499999 -0.429349694092 51.240358349300003 -0.429512939991 51.2403726179 -0.429839095162 51.240413098799998 -0.430376388516 51.240433342400003 -0.430544750744 51.240558579899997 -0.431434456782 51.240721878 -0.43207789091 51.2407751334 -0.432361177121 51.2407991448 -0.43260964179 51.240740958400004 -0.432898149197 51.240610454699997 -0.433628934713 51.2406589227 -0.433823560604 51.240360639400002 -0.434113055893 51.240113533500001 -0.434396511898 51.239849959899999 -0.434659034549 51.239642109 -0.434582998796 51.239473961599998 -0.434517076658 51.239226866800003 -0.434465296088 51.239157347400003 -0.434444734708 51.239015763700003 -0.434347827375 51.238721635399997 -0.43407416191 51.238639836600001 -0.434009608271 51.238639817500001 -0.434008176339 51.238342970799998 -0.433665844042 51.238113864100001 -0.433345568348 51.237897091599997 -0.433006253423 51.237724003099999 -0.432772898486 51.237565298699998 -0.43260638617 51.237462784199998 -0.432472346078 51.237272005100003 -0.432261084806 51.237021689300001 -0.432036091649 51.236779977899999 -0.431782157813 51.235617915699997 -0.430694304335 51.235419082 -0.430486197742 51.235072253600002 -0.430172829738 51.234942539800002 -0.430022538425 51.234693129599997 -0.429664318836 51.234400487 -0.429167195206 51.234201367700003 -0.428737081309 51.2338902965 -0.428140326295 51.233692789300001 -0.427830490601 51.233419468699999 -0.427500323566 51.233195288 -0.427280212958 51.2325177162 -0.426647280849 51.232219518900003 -0.42640678559 51.232118743500003 -0.426335739884 51.232017968100003 -0.426264694485 51.231712450400003 -0.426081748745 51.231410155399999 -0.426004689948 51.231086839699998 -0.42590256718 51.2310850227 -0.425901196838 51.230784448199998 -0.425818352105 51.230530768800001 -0.42574536658 51.230413242 -0.425699246134 51.230340241100002 -0.42568741436 51.230267394400002 -0.425687035948 51.2302019312 -0.425700728748 51.230120461799999 -0.425727858652 51.230014112900001 -0.425777322266 51.2298900049 -0.425910465765 51.229867976100003 -0.425944160628 51.229750776099998 -0.426122901365 51.2294175635 -0.426555365556 51.229147404700001 -0.426995699305 51.228866303899999 -0.427424942618 51.228623718100003 -0.427842842121 51.228305121200002 -0.42842660484 51.2278708451 -0.429168981637 51.227286069 -0.4302229637 51.227127882700003 -0.43049760468 51.227045939100002 -0.430623563644 51.225604329200003 -0.431155247077 51.225099362400002 -0.431321363235 51.224795259499999 -0.431377531865 51.224454097799999 -0.431553827403 51.224430036500003 -0.431503088299 51.224285625299999 -0.431530911918 51.224219358399999 -0.431551782447 51.224088833300002 -0.431609208468 51.2238388763 -0.4317465964 51.223668055300003 -0.431816847921 51.223583199799997 -0.431859831251 51.223500218700003 -0.431908479161 51.2232235472 -0.432132697698 51.223128995700002 -0.432190330488 51.223029051 -0.432248146292 51.222776166499997 -0.432368441858 51.222256475199998 -0.432643871633 51.222219791699999 -0.432590698986 51.222054629500001 -0.432613494341 51.221704052900002 -0.432691277688 51.221435965799998 -0.432885117989 51.221115705499997 -0.433077863631 51.220087808400002 -0.433479361656 51.219668918499998 -0.433626757402 51.219378661199997 -0.433709641148 51.219306444799997 -0.43368918063 51.219157538600001 -0.433717146524 51.219100434 -0.433817891058 51.2190960545 -0.433826631545 51.219057098100002 -0.433872344897 51.218990199899999 -0.433913278552 51.218854604299999 -0.433927904082 51.2187007056 -0.433918807293 51.218636006 -0.433922434962 51.218576737900001 -0.433928742209 51.218536461100001 -0.433942996688 51.218457915800002 -0.433987188919 51.218419647499999 -0.434017126646 51.2184208543 -0.434107298803 51.218316529 -0.434173844658 51.2182171181 -0.434204424769 51.217936154100002 -0.434242596649 51.2176966161 -0.434352391038 51.217618166400001 -0.434403738137 51.217605029300003 -0.434497259186 51.217385878899996 -0.434652181365 51.217214521800003 -0.434816936428 51.2170834223 -0.43496600591 51.216978369899998 -0.43504545966 51.216808866599997 -0.435147145138 51.216661184899998 -0.435266704665 51.2163491433 -0.435401858837 51.216214905599998 -0.435450798195 51.216020195200002 -0.435550471156 51.215895386299998 -0.435632023239 51.215656668699999 -0.435668752228 51.214833493599997 -0.436047454812 51.214651386 -0.436148126942 51.214424066699998 -0.436230284472 51.214239912399997 -0.436312410574 51.213931828200003 -0.436407325335 51.212840690199997 -0.43678791629 51.212694689400003 -0.436966105876 51.212138491099999 -0.437673616401 51.211909867099997 -0.437994908313 51.211612908600003 -0.438317077233 51.211453750300002 -0.438318166806 51.211228266399999 -0.438335817632 51.210779459100003 -0.438398248209 51.2106032031 -0.438398484126 51.210226460900003 -0.438335349148 51.209870792700002 -0.43836885695 51.2096236581 -0.438448801436 51.209208082 -0.43776706882 51.208707014399998 -0.436879221545 51.208663793100001 -0.436403945276 51.2085939842 -0.435554478673 51.208543999900002 -0.434574062434 51.208467166200002 -0.434074160429 51.208445111700001 -0.433904542841 51.208495830300002 -0.433864167771 51.208365101200002 -0.433436246918 51.208200929599997 -0.432660144166 51.208137893500002 -0.432653694524 51.208072185699997 -0.432246478304 51.2080267041 -0.431671075223 51.2079304576 -0.430998616089 51.207885277400003 -0.430848399103 51.207803719899999 -0.43066792325 51.2076295241 -0.430553588813 51.207451924499999 -0.430453687085 51.207288073400001 -0.430306075557 51.207026925400001 -0.430011455454 51.206612323100003 -0.429472961777 51.206367698599998 -0.429203556839 51.20591983 -0.428598926515 51.205659106 -0.428135386186 51.205697464399996 -0.428045323484 51.205497751199999 -0.427638404259 51.205135592200001 -0.426787517833 51.205135573 -0.426786086946 51.205075799500001 -0.426687915853 51.204963984199999 -0.426330978688 51.204865830099997 -0.426053743438 51.204806596399997 -0.425795223765 51.204554272700001 -0.425088064408 51.204224083 -0.424342056024 51.204067702700002 -0.424015282409 51.203971314500002 -0.423669284722 51.203849621899998 -0.423314132046 51.203726149799998 -0.422960473504 51.203491262299998 -0.422347228553 51.2034293866 -0.422293514657 51.203382703300001 -0.422299404308 51.2032372225 -0.421847731749 51.203145010900002 -0.421611826022 51.2030028677 -0.421407689409 51.202873647099999 -0.421161599433 51.2022170774 -0.420222113238 51.201933510800004 -0.419800950198 51.2017437728 -0.419535470101 51.201782008400002 -0.419170575596 51.201738755900003 -0.418964497771 51.201522233299997 -0.418646976466 51.201337992900001 -0.418455749276 51.201229818100003 -0.418303429239 51.201061642100001 -0.418236187619 51.200815050300001 -0.418022766065 51.200539319500002 -0.417982113379 51.200168947100003 -0.417991939504 51.199950163399997 -0.417906394965 51.199692177700001 -0.417847959136 51.1994190168 -0.417731357831 51.1991924314 -0.417534437087 51.1990456041 -0.417383450836 51.198593659799997 -0.417013908518 51.198286388100001 -0.416835505509 51.198052455300001 -0.416627395164 51.197781657299998 -0.41635327916 51.197360992 -0.415836690916 51.1972303035 -0.415682299644 51.196989844199997 -0.415457248183 51.196817780400004 -0.415368686836 51.196676641700002 -0.415173150078 51.196525665899998 -0.415048084719 51.195542739099999 -0.414317530645 51.1952747749 -0.41398752706 51.1951993737 -0.413931435646 51.195165630699996 -0.413896813534 51.195126261799999 -0.41384520987 51.195083963400002 -0.413776532102 51.195048739599997 -0.413699024084 51.195019652600003 -0.413609855546 51.195000550099998 -0.413527500305 51.194985282099999 -0.41339635158 51.1949803479 -0.413297766212 51.194948001299998 -0.413167204402 51.194898692400002 -0.413045812965 51.194607896199997 -0.412557740643 51.194515039300001 -0.412341956157 51.194462644700003 -0.412192048518 51.194404978800002 -0.411985073952 51.194389431799998 -0.411899735784 51.194368988 -0.411718674894 51.194356312099998 -0.411646119036 51.194081057699997 -0.411243398623 51.193561645700001 -0.410542809642 51.193431028 -0.410394168022 51.193355318800002 -0.410249362062 51.193257779299998 -0.410152536857 51.193032231399997 -0.410032926222 51.192888417399999 -0.409972043118 51.1926435998 -0.40989030778 51.192480710600002 -0.409881603813 51.192353577200002 -0.409923190342 51.1921055874 -0.40993888297 51.192058083699997 -0.409950536222 51.191847725099997 -0.41002217852 51.191748650900003 -0.410077109532 51.191582429199997 -0.410220218981 51.191359068700002 -0.410393916125 51.191070566800001 -0.410737292809 51.190938306900001 -0.410864918304 51.190618966 -0.410990391973 51.190492376100003 -0.411072025511 51.190325109200003 -0.411072054712 51.190233755100003 -0.411099525458 51.189830731 -0.411353807855 51.189748326699998 -0.411378107809 51.189701527300002 -0.411375424037 51.189521934 -0.411328650956 51.189281708700001 -0.411253911323 51.189037455300003 -0.411213656088 51.188818039799997 -0.411148219321 51.1887266325 -0.41110556999 51.1884123942 -0.41094465479 51.188200378799998 -0.410695794966 51.188101080899997 -0.41060190192 51.188051079600001 -0.410562122746 51.187947714700002 -0.410499852488 51.187868969100002 -0.410462493585 51.186846456399998 -0.410129913225 51.1866381229 -0.410019742955 51.186364074899998 -0.40990468058 51.184905346400001 -0.409435461249 51.184663909800001 -0.409337885505 51.184585494499999 -0.409324845182 51.184502682 -0.409319110815 51.183734446800003 -0.409301201784 51.183500410800001 -0.409284934148 51.183307134899998 -0.409290157271 51.183120283 -0.40937099492 51.182973210199997 -0.409533452361 51.182718428699999 -0.409711062657 51.182507423700002 -0.409801313819 51.182063748099999 -0.409909586789 51.181985585500001 -0.409915138196 51.1818794414 -0.40991306753 51.181713563700001 -0.409883005202 51.181435745 -0.409755207715 51.181340689199999 -0.409907283062 51.181079257900002 -0.409595780074 51.180793115699998 -0.409451102983 51.180476299299997 -0.409233082928 51.180218371700001 -0.409113192435 51.180099958699998 -0.409068622893 51.17973956 -0.408952262354 51.179567588600001 -0.408870907393 51.179024879099998 -0.408706459279 51.178652934799999 -0.408534703403 51.178608707400002 -0.408654976547 51.178084492300002 -0.408329658003 51.177833758299997 -0.408143718492 51.177744108699997 -0.408098162804 51.177682693800001 -0.408078817888 51.177578211099998 -0.408066679339 51.177223353099997 -0.408093209705 51.1768458835 -0.40817631454 51.176289718 -0.408212638294 51.175999049200001 -0.408264138047 51.175651281 -0.408349077458 51.175497158299997 -0.408455959668 51.1754637174 -0.408575853196 51.175416100299998 -0.408843588968 51.175401498900001 -0.409224637661 51.175453759 -0.40995961112 51.175453161699998 -0.410378804947 51.175486132800003 -0.410555068621 51.175500446299999 -0.410681902173 51.175504736100002 -0.410799066074 51.175501951400001 -0.410925056996 51.175476237399998 -0.4111505494 51.175322916100001 -0.411912618816 51.175293216500002 -0.412109634295 51.175264421400001 -0.412240809953 51.175231700700003 -0.412347799779 51.175159559299999 -0.412531966154 51.174995746500002 -0.412985373849 51.174966446 -0.413079369593 51.174924179599998 -0.413278244807 51.174897976099999 -0.413467984624 51.174854267199997 -0.413626851709 51.1748141797 -0.413721216967 51.174763363899999 -0.413820242055 51.1744533209 -0.414300117053 51.174092777600002 -0.415167974876 51.174001534600002 -0.4154028574 51.173974107399999 -0.415502507649 51.173958210400002 -0.415590317902 51.173951050200003 -0.415659231101 51.173947187099998 -0.415772379189 51.173950100100001 -0.415921059473 51.173955620800001 -0.415996690917 51.174042809 -0.416325597703 51.174097421600003 -0.416506841056 51.1736863494 -0.416632508547 51.173616074100003 -0.416689277499 51.173576263599998 -0.416737849904 51.173540184 -0.416796308386 51.173504414100002 -0.416877645198 51.173450929 -0.417045422365 51.173355519700003 -0.417570844086 51.173125423800002 -0.418577247033"));

            //foreach (var c in ServiceItemList.SelectMany(i => i.Categories).Distinct())
            //{
            //    ServiceFeed.Categories.Add(c);
            //}

            var SelfLink = new SyndicationLink();
            SelfLink.RelationshipType = "self";
            SelfLink.Uri = new Uri(Url.Content("~/Services"));
            SelfLink.MediaType = "application/atom+xml";
            ServiceFeed.Links.Add(SelfLink);

            return Ok(ServiceFeed.GetAtom10Formatter());
        }
 public static AtomFeed Load(SyndicationFeed feed, int maxEntries)
 {
   feed.Items = feed.Items.Take(maxEntries);
   using (MemoryStream ms = new MemoryStream())
   {
     XmlWriter w = new XmlTextWriter(ms, Encoding.UTF8);
     feed.GetAtom10Formatter().WriteTo(w);
     w.Flush();
     AtomFeed atomFeed = new AtomFeed();
     ms.Position = 0;
     XmlReader r = new XmlTextReader(ms);
     atomFeed.ReadXml(r);
     return atomFeed;
   }
 }
Exemplo n.º 9
0
        //[WebGet(UriTemplate="help")]
        public Atom10FeedFormatter GetFeed()
        {
            List<SyndicationItem> items = new List<SyndicationItem>();
            foreach (OperationDescription od in this.Description.Operations)
            {
                WebGetAttribute get;
                WebInvokeAttribute invoke;
                GetWebGetAndInvoke(od, out get, out invoke);    
                string method = GetMethod(get, invoke);
                string requestFormat = null;
                if (invoke != null)
                {
                    requestFormat = GetRequestFormat(invoke, od);
                }
                string responseFormat = GetResponseFormat(get, invoke, od);
                string uriTemplate = GetUriTemplate(get, invoke, od);
                WebMessageBodyStyle bodyStyle = GetBodyStyle(get, invoke);

                string requestSchemaLink = null;
                string responseSchemaLink = null;
                string requestExampleLink = null;
                string responseExampleLink = null;

                if (bodyStyle == WebMessageBodyStyle.Bare)
                {
                    UriTemplate responseSchemaTemplate = new UriTemplate(OperationResponseSchemaTemplate);
                    responseSchemaLink = responseSchemaTemplate.BindByPosition(this.BaseUri, od.Name).AbsoluteUri;

                    UriTemplate responseExampleTemplate = new UriTemplate(OperationResponseExampleTemplate);
                    responseExampleLink = responseExampleTemplate.BindByPosition(this.BaseUri, od.Name).AbsoluteUri;
                    if (invoke != null)
                    {
                        UriTemplate requestSchemaTemplate = new UriTemplate(OperationRequestSchemaTemplate);
                        requestSchemaLink = requestSchemaTemplate.BindByPosition(this.BaseUri, od.Name).AbsoluteUri;

                        UriTemplate requestExampleTemplate = new UriTemplate(OperationRequestExampleTemplate);
                        requestExampleLink = requestExampleTemplate.BindByPosition(this.BaseUri, od.Name).AbsoluteUri;
                    }
                }

                uriTemplate = String.Format("{0}/{1}", this.BaseUri.AbsoluteUri, uriTemplate);
                uriTemplate = HttpUtility.HtmlEncode(uriTemplate);

                string xhtmlDescription = String.Format("<div xmlns=\"http://www.w3.org/1999/xhtml\"><table border=\"5\"><tr><td>UriTemplate</td><td>{0}</td></tr><tr><td>Method</td><td>{1}</td></tr>", uriTemplate, method);
                if (!string.IsNullOrEmpty(requestFormat))
                {
                    xhtmlDescription += String.Format("<tr><td>Request Format</td><td>{0}</td></tr>", requestFormat);
                }
                if (requestSchemaLink != null)
                {
                    xhtmlDescription += String.Format("<tr><td>Request Schema</td><td><a href=\"{0}\">{0}</a></td></tr>", HttpUtility.HtmlEncode(requestSchemaLink));
                }
                if (requestExampleLink != null)
                {
                    xhtmlDescription += String.Format("<tr><td>Request Example</td><td><a href=\"{0}\">{0}</a></td></tr>", HttpUtility.HtmlEncode(requestExampleLink));
                }
                xhtmlDescription += String.Format("<tr><td>Response Format</td><td>{0}</td></tr>", responseFormat);
                if (responseSchemaLink != null)
                {
                    xhtmlDescription += String.Format("<tr><td>Response Schema</td><td><a href=\"{0}\">{0}</a></td></tr>", HttpUtility.HtmlEncode(responseSchemaLink));
                }
                if (responseExampleLink != null)
                {
                    xhtmlDescription += String.Format("<tr><td>Response Example</td><td><a href=\"{0}\">{0}</a></td></tr>", HttpUtility.HtmlEncode(responseExampleLink));
                }
                WebHelpAttribute help = od.Behaviors.Find<WebHelpAttribute>();
                if (help != null && !string.IsNullOrEmpty(help.Comment))
                {
                    xhtmlDescription += String.Format("<tr><td>Description</td><td>{0}</td></tr>", help.Comment);
                }
                xhtmlDescription += "</table></div>";
                SyndicationItem item = new SyndicationItem()
                {
                    Id = "http://tmpuri.org/" + od.Name,
                    Content = new TextSyndicationContent(xhtmlDescription, TextSyndicationContentKind.XHtml),
                    LastUpdatedTime = DateTime.UtcNow,
                    Title = new TextSyndicationContent(String.Format("{0}: {1}", Description.Name, od.Name)),
                };
                items.Add(item);
            }

            SyndicationFeed feed = new SyndicationFeed()
            {
                Title = new TextSyndicationContent("Service help page"),
                Id = feedId,
                LastUpdatedTime = DateTime.UtcNow,
                Items = items
            };
            WebOperationContext.Current.OutgoingResponse.ContentType = "application/atom+xml";
            return feed.GetAtom10Formatter();
        }
Exemplo n.º 10
0
        /// <summary>
        /// Gets the categories document.
        /// </summary>
        /// <returns></returns>
        /// <remarks>Documented by Dev05, 2012-02-07</remarks>
        private XmlDocument GetCategoriesDocument()
        {
            SyndicationFeed feed = new SyndicationFeed();
            feed.Id = Settings.Default.CategoriesFeedId.ToString();
            feed.Title = new TextSyndicationContent("MemoryLifter Module Categories", TextSyndicationContentKind.Plaintext);
            feed.Description = new TextSyndicationContent("Lists all categories with modules available.", TextSyndicationContentKind.Plaintext);
            feed.LastUpdatedTime = new DateTimeOffset(DateTime.Now);

            feed.Authors.Add(new SyndicationPerson("*****@*****.**", "OMICRON", "http://www.memorylifter.com"));
            List<SyndicationItem> items = new List<SyndicationItem>();
            feed.Items = items;

            string filename = Server.MapPath(Path.Combine(Settings.Default.InfoFolder, "categories.xml"));
            if (File.Exists(filename))
            {
                Stream file = File.OpenRead(filename);
                categories = categoriesSerializer.Deserialize(file) as SerializableList<ModuleCategory>;
                file.Close();

                foreach (ModuleCategory category in categories)
                {
                    SyndicationItem item = new SyndicationItem();
                    item.Id = category.Id.ToString();
                    item.Title = new TextSyndicationContent(category.Title, TextSyndicationContentKind.Plaintext);
                    item.Links.Add(new SyndicationLink() { RelationshipType = AtomLinkRelationshipType.Parent.ToString(), Title = category.ParentCategory.ToString() });
                    items.Add(item);
                }
            }

            StringBuilder result = new StringBuilder();
            XmlWriter writer = XmlWriter.Create(result);
            feed.GetAtom10Formatter().WriteTo(writer);
            writer.Flush();

            XmlDocument doc = new XmlDocument();
            doc.LoadXml(result.ToString());
            return doc;
        }
Exemplo n.º 11
0
        /// <summary>
        /// Gets the modules document.
        /// </summary>
        /// <returns></returns>
        /// <remarks>Documented by Dev05, 2012-02-07</remarks>
        private XmlDocument GetModulesDocument()
        {
            SyndicationFeed feed = new SyndicationFeed();
            feed.Id = Settings.Default.ModuleFeedId.ToString();
            feed.Title = new TextSyndicationContent("MemoryLifter Modules", TextSyndicationContentKind.Plaintext);
            feed.Description = new TextSyndicationContent("Lists all modules available.", TextSyndicationContentKind.Plaintext);
            feed.LastUpdatedTime = new DateTimeOffset(DateTime.Now);

            feed.Authors.Add(new SyndicationPerson("*****@*****.**", "OMICRON", "http://www.memorylifter.com"));
            List<SyndicationItem> items = new List<SyndicationItem>();
            feed.Items = items;

            foreach (string file in Directory.GetFiles(Server.MapPath(Settings.Default.ModulesFolder), "*.mlm", SearchOption.AllDirectories))
            {
                SyndicationItem item = new SyndicationItem();
                items.Add(item);

                string filename = Path.GetFileNameWithoutExtension(file);
                string xmlFile = Path.Combine(Server.MapPath(Settings.Default.InfoFolder), filename + ".xml");

                long size = 0;
                if (File.Exists(xmlFile)) //if there is a xml-info-file use the information from it
                {
                    Stream fStream = File.OpenRead(xmlFile);
                    ModuleInfo info = (ModuleInfo)infoSerializer.Deserialize(fStream);
                    fStream.Close();

                    item.Id = info.Id;
                    item.Title = new TextSyndicationContent(info.Title, TextSyndicationContentKind.Plaintext);
                    item.Content = new TextSyndicationContent(info.Description, TextSyndicationContentKind.Plaintext); //This is also shown in feed readers as text
                    //As the summary we use a struct which can be deserialized to a ModuleInfo-struct
                    item.Summary = new TextSyndicationContent("<ModuleInfo><Cards>" + info.Cards + "</Cards></ModuleInfo>", TextSyndicationContentKind.XHtml);
                    foreach (string category in info.Categories)
                    {
                        ModuleCategory cat = (from c in categories
                                              where c.Id.ToString() == category
                                              select c).FirstOrDefault();
                        if(cat.Id > 0) //if the stored category is actually an Id to a category
                            item.Categories.Add(new SyndicationCategory(cat.Title) { Label = category });
                        else
                            item.Categories.Add(new SyndicationCategory(category));
                    }
                    item.Contributors.Add(new SyndicationPerson(info.AuthorMail, info.Author, info.AuthorUrl));
                    DateTime time;
                    if (DateTime.TryParse(info.EditDate, out time))
                        item.LastUpdatedTime = new DateTimeOffset(time);
                    else
                        item.LastUpdatedTime = new DateTimeOffset((new FileInfo(file)).LastWriteTime);
                    size = info.Size;
                }
                else // use the information you can get from the file - no SQL CE access on Mono --> if running on IIS/.net you could read it form the file
                {
                    item.Id = file.GetHashCode().ToString();
                    item.Title = new TextSyndicationContent(filename, TextSyndicationContentKind.Plaintext);
                    item.LastUpdatedTime = new DateTimeOffset((new FileInfo(file)).LastWriteTime);
                }
                if (size <= 0)
                    size = (new FileInfo(file)).Length;

                item.Links.Add(new SyndicationLink(new Uri(BaseAddress + Settings.Default.ModulesFolder + '/' + Uri.EscapeDataString(Path.GetFileName(file))))
                {
                    MediaType = "application/x-mlm",
                    RelationshipType = AtomLinkRelationshipType.Module.ToString(),
                    Length = size
                });
                item.Links.Add(new SyndicationLink(new Uri(BaseAddress + "GetImage.ashx?size=150&module=" + HttpUtility.UrlEncode(filename)))
                {
                    MediaType = "image/png",
                    RelationshipType = AtomLinkRelationshipType.Preview.ToString()
                });
                item.Links.Add(new SyndicationLink(new Uri(BaseAddress + "GetImage.ashx?size=32&module=" + HttpUtility.UrlEncode(filename)))
                {
                    MediaType = "image/png",
                    RelationshipType = AtomLinkRelationshipType.IconBig.ToString()
                });
                item.Links.Add(new SyndicationLink(new Uri(BaseAddress + "GetImage.ashx?size=16&module=" + HttpUtility.UrlEncode(filename)))
                {
                    MediaType = "image/png",
                    RelationshipType = AtomLinkRelationshipType.IconSmall.ToString()
                });
            }

            StringBuilder result = new StringBuilder();
            XmlWriter writer = XmlWriter.Create(result);
            feed.GetAtom10Formatter().WriteTo(writer);
            writer.Flush();

            XmlDocument doc = new XmlDocument();
            doc.LoadXml(result.ToString());
            return doc;
        }
        public HttpResponseMessage GetPosts(HttpRequestMessage request)
        {
            string baseUrl = request.BaseUrl("posts");

            List<Post> posts = _postManager.GetAllPosts();
            if (posts == null || posts.Count == 0)
            {
                return new HttpResponseMessage()
                {
                    StatusCode = HttpStatusCode.NotFound
                };
            }
            else
            {
                if (request.AcceptsHtml())
                {
                    return new HttpResponseMessage()
                    {
                        StatusCode = HttpStatusCode.OK,
                        Content = new ObjectContent(typeof(List<Post>), posts, new List<MediaTypeFormatter>() { new PostListHtmlMediaTypeFormatter() })
                    };
                }
                else
                {
                    var postsFeed = new SyndicationFeed()
                    {
                        Id = baseUrl,
                        Title = new TextSyndicationContent("List of posts"),
                        LastUpdatedTime = new DateTimeOffset(DateTime.Now)
                    };
                    postsFeed.Links.Add(new SyndicationLink() 
                    {
                        Uri = request.RequestUri,
                        RelationshipType = "self"
                    });
                    postsFeed.Items = posts.Select(p => new SyndicationItem()
                    {
                        Id = p.Id,
                        Title = new TextSyndicationContent(p.Title),
                        LastUpdatedTime = p.LastUpdatedTime,
                        Content =  new TextSyndicationContent(p.Content)
                    });

                    if (request.AcceptsAtom() || request.AcceptsAll())
                    {
                        return new HttpResponseMessage()
                        {
                            StatusCode = HttpStatusCode.OK,
                            Content = new ObjectContent(typeof(Atom10FeedFormatter), postsFeed.GetAtom10Formatter())
                        };
                    }

                    return new HttpResponseMessage()
                    {
                        StatusCode = HttpStatusCode.InternalServerError
                    };
                }
            }
        }
Exemplo n.º 13
0
        static void Main(string[] args)
        {
            //Create an extensible object (in this case, SyndicationFeed). Other extensible types (SyndicationItem,
            //SyndicationCategory, SyndicationPerson, SyndicationLink) follow the same pattern.
            SyndicationFeed feed = new SyndicationFeed();

            //Attribute extensions are stored in a dictionary indexed by XmlQualifiedName
            feed.AttributeExtensions.Add(new XmlQualifiedName("myAttribute", ""), "someValue");

            //Add several different types of element extensions.
            feed.ElementExtensions.Add("simpleString", "", "hello, world!");
            feed.ElementExtensions.Add("simpleString", "", "another simple string");

            feed.ElementExtensions.Add( new DataContractExtension() { Key = "X", Value = 4 } );
            feed.ElementExtensions.Add( new XmlSerializerExtension { Key = "Y", Value = 8 }, new XmlSerializer( typeof( XmlSerializerExtension ) ) );

            feed.ElementExtensions.Add(new XElement("xElementExtension",
                                           new XElement("Key", new XAttribute("attr1", "someValue"), "Z"),
                                           new XElement("Value", new XAttribute("attr1", "someValue"), "15")).CreateReader());

            //Dump the raw feed XML to the console to show how extensions elements appear in the final XML
            Console.WriteLine("Raw XML");
            Console.WriteLine( "-------" );
            DumpToConsole( feed.GetAtom10Formatter() );
            Console.WriteLine(Environment.NewLine);

            //Read in the XML into a new SyndicationFeed to show the "read" path
            Stream inputStream = WriteToMemoryStream(feed.GetAtom10Formatter());
            SyndicationFeed feed2 = SyndicationFeed.Load(new XmlTextReader(inputStream));

            Console.WriteLine("Attribute Extensions");
            Console.WriteLine("--------------------");

            Console.WriteLine( feed.AttributeExtensions[ new XmlQualifiedName( "myAttribute", "" )]);
            Console.WriteLine("");

            Console.WriteLine("Primitive Extensions");
            Console.WriteLine("--------------------");
            foreach( string s in feed2.ElementExtensions.ReadElementExtensions<string>("simpleString", ""))
            {
                Console.WriteLine(s);
            }

            Console.WriteLine("");

            Console.WriteLine("SerializableExtensions");
            Console.WriteLine("----------------------");

            foreach (DataContractExtension dce in feed2.ElementExtensions.ReadElementExtensions<DataContractExtension>("DataContractExtension",
                                                                                                                        "http://schemas.datacontract.org/2004/07/SyndicationExtensions"))
            {
                Console.WriteLine(dce.ToString());
            }

            Console.WriteLine("");

            foreach (XmlSerializerExtension xse in feed2.ElementExtensions.ReadElementExtensions<XmlSerializerExtension>("XmlSerializerExtension", "", new XmlSerializer(typeof(XmlSerializerExtension))))
            {
                Console.WriteLine(xse.ToString());
            }

            Console.WriteLine("");

            Console.WriteLine("XElement Extensions");
            Console.WriteLine("-------------------");

            foreach (SyndicationElementExtension extension in feed2.ElementExtensions.Where<SyndicationElementExtension>(x => x.OuterName == "xElementExtension"))
            {
                XNode xelement = XElement.ReadFrom(extension.GetReader());
                Console.WriteLine(xelement.ToString());
            }

            Console.WriteLine("");

            Console.WriteLine("Reader over all extensions");
            Console.WriteLine("--------------------------");

            XmlReader extensionsReader = feed2.ElementExtensions.GetReaderAtElementExtensions();

            while (extensionsReader.IsStartElement())
            {
                XNode extension = XElement.ReadFrom(extensionsReader);
                Console.WriteLine(extension.ToString());
            }

            Console.ReadLine();
        }
Exemplo n.º 14
0
        public static void Save()
        {
            var values = Items.Values;
            foreach (var item in values)
                item.WriteExtensions();

            var items = new Item[Items.Count];
            values.CopyTo(items, 0);

            XmlWriter writer = XmlWriter.Create(itemfile_tmp);
            SyndicationFeed sf = new SyndicationFeed(items);
            Atom10FeedFormatter fmtr = sf.GetAtom10Formatter();
            fmtr.WriteTo(writer);
            writer.Close();
            File.Delete(itemfile);
            File.Move(itemfile_tmp, itemfile);
        }
Exemplo n.º 15
0
        public HttpResponseMessage GetPosts(string id, HttpRequestMessage request, int pageIndex = 1, int pageSize = 10)
        {
            HttpResponseMessage response = new HttpResponseMessage(HttpStatusCode.OK);

            try
            {
                IPostsService postsService = ObjectFactory.GetInstance<IPostsService>();
                var posts = postsService.GetAllFromBlog(String.Format("blogs/{0}", id), pageIndex, pageSize);

                if (posts != null)
                {
                    if (this.ClientAcceptsMediaType("text/html", request))
                    {
                        var postsHtml = posts.GeneratePostsHtml();
                        response.Content = new ObjectContent<string>(postsHtml, "text/html");
                    }
                    else
                    {
                        SyndicationFeed blogPostsFeed = new SyndicationFeed
                                                            {
                                                                Title =
                                                                    new TextSyndicationContent(
                                                                    String.Format("Blog {0} posts", id)),
                                                                LastUpdatedTime = new DateTimeOffset(DateTime.Now)
                                                            };

                        blogPostsFeed.Links.Add(SyndicationLink.CreateSelfLink(request.RequestUri));

                        List<SyndicationItem> itemList = new List<SyndicationItem>();
                        blogPostsFeed.Items = itemList;

                        foreach (var post in posts)
                        {
                            SyndicationItem item = new SyndicationItem
                                                       {
                                                           Id = post.Id,
                                                           LastUpdatedTime = post.updated,
                                                           PublishDate = post.published,
                                                           Title = new TextSyndicationContent(post.title)
                                                       };

                            item.Links.Add(SyndicationLink.CreateSelfLink(new Uri(String.Format("{0}/{1}/{2}", this.serviceURI, post.blogId, post.Id))));
                            item.Links.Add(SyndicationLink.CreateAlternateLink(request.RequestUri, "text/html"));

                            item.Links.Add(new SyndicationLink(new Uri(String.Format("{0}/{1}", this.serviceURI, post.blogId)), "service.blog", "Parent blog", "application/atom+xml;type=feed", 0));
                            item.Links.Add(new SyndicationLink(new Uri(String.Format("{0}/{1}/{2}", this.serviceURI, post.blogId, post.Id)), "service.edit", "Edit post", "application/atom+xml;type=feed", 0));
                            item.Links.Add(new SyndicationLink(new Uri(String.Format("{0}/{1}/{2}/{3}", this.serviceURI, post.blogId, post.Id, "service.comments")), "comments", "Post comments", "application/atom+xml;type=feed", 0));

                            var pagingLinks = this.BuildPagingLinks(postsService.Count(), pageIndex, pageSize, request.RequestUri);

                            foreach (var link in pagingLinks)
                            {
                                item.Links.Add(link);
                            }

                            item.Authors.Add(new SyndicationPerson(string.Empty, post.author, string.Empty));
                            item.Content = SyndicationContent.CreatePlaintextContent(post.content);

                            itemList.Add(item);
                        }

                        SyndicationFeedFormatter formatter = null;

                        if (this.ClientAcceptsMediaType("application/atom+xml", request))
                        {
                            formatter = blogPostsFeed.GetAtom10Formatter();
                        }
                        else
                        {
                            if (this.ClientAcceptsMediaType("application/rss+xml", request))
                            {
                                formatter = blogPostsFeed.GetRss20Formatter();
                            }
                        }

                        response.Content = new ObjectContent(typeof(SyndicationFeedFormatter), formatter);
                    }
                }
                else
                {
                    response.StatusCode = HttpStatusCode.NoContent;
                }
            }
            catch (Exception)
            {
                response.StatusCode = HttpStatusCode.InternalServerError;
            }

            return response;
        }
Exemplo n.º 16
0
        public HttpResponseMessage GetPost(string blogId, string id, HttpRequestMessage request)
        {
            HttpResponseMessage response = new HttpResponseMessage(HttpStatusCode.OK);

            try
            {
                IPostsService postsService = ObjectFactory.GetInstance<IPostsService>();
                var post = postsService.Get(String.Format("posts/{0}", id));

                var etag = request.Headers.IfNoneMatch.FirstOrDefault();

                if (etag != null && etag.Tag == post.etag)
                {
                    response.StatusCode = HttpStatusCode.NotModified;
                }
                else
                {
                    if (post != null)
                    {
                        if (this.ClientAcceptsMediaType("text/html", request))
                        {
                            response.Content = new ObjectContent<string>(post.ToHtml(), "text/html");
                        }
                        else
                        {
                            SyndicationFeed postFeed = new SyndicationFeed
                                                           {
                                                               Title = new TextSyndicationContent("Single Post"),
                                                               LastUpdatedTime = new DateTimeOffset(DateTime.Now)
                                                           };

                            postFeed.Links.Add(SyndicationLink.CreateSelfLink(request.RequestUri));

                            SyndicationItem item = new SyndicationItem();
                            List<SyndicationItem> itemList = new List<SyndicationItem> {item};
                            postFeed.Items = itemList;

                            item.Id = post.Id;
                            item.LastUpdatedTime = post.updated;
                            item.PublishDate = post.published;
                            item.Title = new TextSyndicationContent(post.title);
                            item.Content = new TextSyndicationContent(post.content);

                            item.Links.Add(SyndicationLink.CreateSelfLink(request.RequestUri));
                            item.Links.Add(SyndicationLink.CreateAlternateLink(request.RequestUri, "text/html"));

                            item.Links.Add(new SyndicationLink(request.RequestUri, "service.edit", "Edit Post", "application/atom+xml;type=feed", 0));
                            item.Links.Add(new SyndicationLink(new Uri(String.Format("{0}/blogs/{1}/{2}/{3}", this.serviceURI, blogId, post.Id, "service.comments")), "comments", "Post comments", "application/atom+xml;type=feed", 0));
                            item.Links.Add(new SyndicationLink(new Uri(String.Format("{0}/blogs/{1}", this.serviceURI, blogId)), "service.blog", "Parent blog", "application/atom+xml;type=feed", 0));

                            item.Authors.Add(new SyndicationPerson(string.Empty, post.author, string.Empty));

                            SyndicationFeedFormatter formatter = null;

                            if (this.ClientAcceptsMediaType("application/atom+xml", request))
                            {
                                formatter = postFeed.GetAtom10Formatter();
                            }
                            else
                            {
                                if (this.ClientAcceptsMediaType("application/rss+xml", request))
                                {
                                    formatter = postFeed.GetRss20Formatter();
                                }
                            }

                            response.Content = new ObjectContent(typeof(SyndicationFeedFormatter), formatter);
                        }
                    }
                    else
                    {
                        response.StatusCode = HttpStatusCode.NotFound;
                    }
                }
            }
            catch (Exception)
            {
                response.StatusCode = HttpStatusCode.InternalServerError;
            }

            return response;
        }
Exemplo n.º 17
0
        public HttpResponseMessage GetBlogTagCloud(string id, HttpRequestMessage request)
        {
            HttpResponseMessage response = new HttpResponseMessage(HttpStatusCode.OK);

            try
            {
                IBlogsService blogsService = ObjectFactory.GetInstance<IBlogsService>();
                var blog = blogsService.Get(String.Format("blogs/{0}", id));
                var tagCloud = blogsService.GetTagCloud(String.Format("blogs/{0}", id));

                if (blog != null)
                {
                    SyndicationFeed blogFeed = new SyndicationFeed
                                                   {
                                                       Title = new TextSyndicationContent("Blog tag cloud"),
                                                       LastUpdatedTime = new DateTimeOffset(DateTime.Now)
                                                   };

                    blogFeed.Links.Add(SyndicationLink.CreateSelfLink(request.RequestUri));

                    SyndicationItem item = new SyndicationItem();
                    List<SyndicationItem> itemList = new List<SyndicationItem> {item};
                    blogFeed.Items = itemList;

                    item.Id = blog.Id;
                    item.LastUpdatedTime = blog.updated;
                    item.PublishDate = blog.published;
                    item.Title = new TextSyndicationContent("Blog tag cloud");
                    item.Content = SyndicationContent.CreatePlaintextContent(BuildtagCloud(tagCloud));
                    item.Links.Add(SyndicationLink.CreateSelfLink(request.RequestUri));

                    SyndicationFeedFormatter formatter = null;

                    if (this.ClientAcceptsMediaType("application/atom+xml", request))
                    {
                        formatter = blogFeed.GetAtom10Formatter();
                    }
                    else
                    {
                        if (this.ClientAcceptsMediaType("application/rss+xml", request))
                        {
                            formatter = blogFeed.GetRss20Formatter();
                        }
                    }

                    response.Content = new ObjectContent(typeof(SyndicationFeedFormatter), formatter);
                }
                else
                {
                    response.StatusCode = HttpStatusCode.NotFound;
                }
            }
            catch (Exception)
            {
                response.StatusCode = HttpStatusCode.InternalServerError;
            }

            return response;
        }
Exemplo n.º 18
0
        public HttpResponseMessage GetBlogs(HttpRequestMessage request, int pageIndex = 1, int pageSize = 10)
        {
            HttpResponseMessage response = new HttpResponseMessage(HttpStatusCode.OK);

            try
            {
                IBlogsService blogsService = ObjectFactory.GetInstance<IBlogsService>();
                List<Blog> blogs = blogsService.GetAll(pageIndex, pageSize);

                if (blogs != null)
                {
                    if (this.ClientAcceptsMediaType("text/html", request))
                    {
                        var blogsHtml = blogs.GenerateBlogsHtml();
                        response.Content = new ObjectContent<string>(blogsHtml, "text/html");
                    }
                    else
                    {
                        SyndicationFeed blogsFeed = new SyndicationFeed
                                                        {
                                                            Title = new TextSyndicationContent("Blogs List"),
                                                            LastUpdatedTime = new DateTimeOffset(DateTime.Now)
                                                        };

                        blogsFeed.Links.Add(SyndicationLink.CreateSelfLink(request.RequestUri));

                        List<SyndicationItem> itemList = new List<SyndicationItem>();
                        blogsFeed.Items = itemList;

                        foreach (var blog in blogs)
                        {
                            SyndicationItem item = new SyndicationItem
                                                       {
                                                           Id = blog.Id,
                                                           LastUpdatedTime = blog.updated,
                                                           PublishDate = blog.published,
                                                           Title = new TextSyndicationContent(blog.name),
                                                           Summary = new TextSyndicationContent(blog.description)
                                                       };

                            item.Links.Add(SyndicationLink.CreateSelfLink(new Uri(String.Format("{0}/{1}", this.serviceURI, blog.Id))));
                            item.Links.Add(SyndicationLink.CreateAlternateLink(request.RequestUri, "text/html"));

                            item.Links.Add(new SyndicationLink(new Uri(String.Format("{0}/{1}", this.serviceURI, blog.Id)), "service.edit", "Edit Blog", "application/atom+xml;type=feed", 0));
                            item.Links.Add(new SyndicationLink(new Uri(String.Format("{0}/{1}/posts", this.serviceURI, blog.Id)), "service.posts", "Blog posts", "application/atom+xml;type=feed", 0));

                            var pagingLinks = this.BuildPagingLinks(blogsService.Count(), pageIndex, pageSize, request.RequestUri);

                            foreach (var link in pagingLinks)
                            {
                                item.Links.Add(link);
                            }

                            item.Authors.Add(new SyndicationPerson(string.Empty, blog.author, string.Empty));

                            itemList.Add(item);
                        }

                        SyndicationFeedFormatter formatter = null;

                        if (this.ClientAcceptsMediaType("application/atom+xml", request))
                        {
                            formatter = blogsFeed.GetAtom10Formatter();
                        }
                        else
                        {
                            if (this.ClientAcceptsMediaType("application/rss+xml", request))
                            {
                                formatter = blogsFeed.GetRss20Formatter();
                            }
                        }

                        response.Content = new ObjectContent(typeof(SyndicationFeedFormatter), formatter);
                    }
                }
                else
                {
                    response.StatusCode = HttpStatusCode.NoContent;
                }
            }
            catch (Exception)
            {
                response.StatusCode = HttpStatusCode.InternalServerError;
            }

            return response;
        }