Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [sumo-user] Polygon coordinates via TraCI

Hi Jakob,

 

i traced down the error and found out that it is caused by a specific polygon in the polygon description file. When I detect this polygon during runtime to prevent the application from reading out its shape (see attached minimal example), it totally works for every other polygon. So the error is potentially linked to the polygon’s definition. I also attached the polygon description file to this mail.

 

Regards,

Marc

 

 

Von: sumo-user-bounces@xxxxxxxxxxx [mailto:sumo-user-bounces@xxxxxxxxxxx] Im Auftrag von Jakob Erdmann
Gesendet: Freitag, 12. Oktober 2018 22:20
An: Sumo project User discussions <sumo-user@xxxxxxxxxxx>
Betreff: Re: [sumo-user] Polygon coordinates via TraCI

 

I am unable to reproduce the issue (testing with 1.0.1 and also with 0.32.0).

Please provide a minimal TraCI script that causes the error on your side.

 

 

Am Fr., 12. Okt. 2018 um 19:46 Uhr schrieb Marc Zofka <zofka@xxxxxx>:

Hi Jakob,

 

I checked your hints from the last mail:

·         The error appears regardless of whether I call polygon.getShape() immediately after TraCIAPI::connect() or after setting up some subscriptions.

·         I am using the following code

[…]

  const std::vector<std::string> polygon_ids = polygon.getIDList();

  for(std::size_t i=0; i < polygon_ids.size(); i++)

  {

    const std::string id                           = polygon_ids.at(i);

    const std::string type                      = polygon.getType(id);

    const TraCIPositionVector shape = polygon.getShape(id);

    const TraCIColor color                    = polygon.getColor(id);

    Polygon p(id, type, shape, color);

  }

[…]

and the error only occurs, if polygon.getShape(id) is called. The error does not occur when I comment polygon.getShape() out.
I also tried to comment *only* polygon.getType() out, since I had assumed that its invocation might could have caused the problem, but the error persisted.

 

So from my point of view, I assume that the problem is directly linked to the polygon.getShape() function.

 

I would appreciate any ideas.

 

Best regards,

Marc

 

 

Von: sumo-user-bounces@xxxxxxxxxxx [mailto:sumo-user-bounces@xxxxxxxxxxx] Im Auftrag von Jakob Erdmann
Gesendet: Freitag, 12. Oktober 2018 11:59
An: Sumo project User discussions <sumo-user@xxxxxxxxxxx>
Betreff: Re: [sumo-user] Polygon coordinates via TraCI

 

- Can you reproduce the error when polygon.getShape() is the only traci call (after initialization)?

- Can you retrieve other polygon values without error?

 

 

 

Am Fr., 12. Okt. 2018 um 10:28 Uhr schrieb Marc Zofka <zofka@xxxxxx>:

Hi,

 

we are working with SUMO-GUI v.032 and the TraCI C++ code from v0.32.

 

Best regards,

Marc

 

Von: sumo-user-bounces@xxxxxxxxxxx [mailto:sumo-user-bounces@xxxxxxxxxxx] Im Auftrag von Jakob Erdmann
Gesendet: Freitag, 12. Oktober 2018 09:00
An: Sumo project User discussions <sumo-user@xxxxxxxxxxx>
Betreff: Re: [sumo-user] Polygon coordinates via TraCI

 

Hello,

shape retrieval is working in our currents tests. The error might be caused by mixing client version 1.0.0+ with sumo version 0.32.0 (there was a protocol change in 1.0.0)

regards,

Jakob

 

Am Do., 11. Okt. 2018 um 08:59 Uhr schrieb Marc Zofka <zofka@xxxxxx>:

Dear Sumo-Users,

 

we tried to access the polygon information within the C++ TraCI, as proposed in a former issue (see below): 

    […]

    const std::string id            = polygon_ids.at(i);

    const std::string type          = polygon.getType(id);

    const TraCIPositionVector shape = polygon.getShape(id);

    […]

Unfortunately, we obtain the following error in the SUMO-GUI (v0.32)

Error: Storage::writeUnsignedByte(): Invalid value, not in [0, 255]

Quitting (on error).

when we execute the polygon.getShape() method (see above), which is defined in TraCIAPI.cpp as follows:

 

    // ---------------------------------------------------------------------------

    // TraCIAPI::PolygonScope-methods

    // ---------------------------------------------------------------------------

     […]

    TraCIPositionVector

    TraCIAPI::PolygonScope::getShape(const std::string& polygonID) const {

        return myParent.getPolygon(CMD_GET_POLYGON_VARIABLE, VAR_SHAPE, polygonID);

    }

     […]

 

Can you recommend how we could solve that issue?

 

Regards,

Marc

 

 

Von: sumo-user-bounces@xxxxxxxxxxx [mailto:sumo-user-bounces@xxxxxxxxxxx] Im Auftrag von Jakob Erdmann
Gesendet: Mittwoch, 12. September 2018 12:44
An: Sumo project User discussions <sumo-user@xxxxxxxxxxx>
Betreff: Re: [sumo-user] Polygon coordinates via TraCI

 

 

2018-09-12 12:42 GMT+02:00 Thomas Thorn <thorn@xxxxxx>:

Hello everybody,

 

I am new to sumo. I use sumo 0.32 and was wondering if it is possible to get the coordinates of a polygon via TraCI.

 

Best regards,

Thomas

 


_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/sumo-user

 

_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/sumo-user

_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/sumo-user

_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/sumo-user

#include <string.h>
#include <signal.h>
#include <iostream>

#include <TraCIAPI.h>

/*--------------------------------------------------------
 * Client class
 * ------------------------------------------------------- */
class Client : public TraCIAPI 
{
public:
  Client() {}
  ~Client() {}

  //! Wrapper function to map the exception to a return value.
  virtual bool connect(const std::string& host, int port)
  {
    try
    {
      TraCIAPI::connect(host, port);
      return true;
    }
    catch (tcpip::SocketException&)
    {
      return false;
    }
  }

  //! Exemplary function to parse polygons.
  virtual void getPolygons()
  {
    const std::vector<std::string> polygon_ids = polygon.getIDList();
    std::cout << "List all polygons:" << std::endl;

    for(std::size_t i=0; i < polygon_ids.size(); i++)
    {
      const std::string id            = polygon_ids.at(i);
      const std::string type          = polygon.getType(id);
      if(id.compare("118174485")==0)
      {
        continue;
      }
      const TraCIPositionVector shape = polygon.getShape(id);
      const TraCIColor color          = polygon.getColor(id);
    }
  }
};


/*--------------------------------------------------------
 * Global variables
 * ------------------------------------------------------- */
//! Indicates, wether the application shall be alive.
bool alive = true;


/*--------------------------------------------------------
 * Implementation
 * ------------------------------------------------------- */
//! Captures a \a sig, such as STRG+C and kills the while loop.
void handle(int sig)
{
  std::cout << "Caught STRG+C. Quit application." << std::endl;
  alive = false;
}


/*--------------------------------------------------------
 * Main function
 * ------------------------------------------------------- */
int main(int argc, char* argv[])
{
  const std::string host = "localhost";
  const uint16_t    port = 8311;
  
  // Register signal handler.
  signal(SIGINT, &handle);
    
  Client client;
  if(!client.connect(host, port))
  {
    std::cerr << "Could not connect to " << host << ":" << port << "." << std::endl;
    return -1;
  }
  std::cout << "Connection to " << host << ":" << port << " established." << std::endl;

  while(alive)
  {
    client.simulationStep();
    client.getPolygons();
    std::cout << "Sim time: " << client.simulation.getCurrentTime() << "[ms]." << std::endl;
    usleep(300000);
  }

  std::cout << "Now close the connection." << std::endl;
  client.close();
  std::cout << "Connection has been closed." << std::endl;
  return 0;
}
<?xml version="1.0" encoding="UTF-8"?>

<!-- generated on Sun Oct 14 07:34:27 2018 by SUMO polyconvert Version 0.32.0
<?xml version="1.0" encoding="UTF-8"?>

<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:noNamespaceSchemaLocation="http://sumo.dlr.de/xsd/polyconvertConfiguration.xsd";>

    <input>
        <net-file value="intersection.net.xml"/>
        <osm-files value="map.osm"/>
        <type-file value="typemaps/osmPolyconvert.typ.xml"/>
    </input>

    <output>
        <output-file value="intersection.poly.xml"/>
    </output>

    <processing>
        <poi-layer-offset value="5"/>
    </processing>

    <report>
        <verbose value="true"/>
        <xml-validation value="never"/>
        <log value="log/polyconvert.log"/>
    </report>

</configuration>
-->

<additional xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:noNamespaceSchemaLocation="http://sumo.dlr.de/xsd/additional_file.xsd";>
    <location netOffset="-458858.00,-5428180.00" convBoundary="-14848.12,-18366.92,5580.19,25934.93" origBoundary="8.236954,48.838766,8.512440,49.238649" projParameter="+proj=utm +zone=32 +ellps=WGS84 +datum=WGS84 +units=m +no_defs"/>

    <poly id="102167810" type="building" color="255,230,230" fill="1" layer="-1.00" shape="693.01,511.53 713.53,298.29 737.96,300.36 723.68,445.00 719.15,490.78 716.86,514.01 693.01,511.53"/>
    <poly id="102167817" type="building" color="255,230,230" fill="1" layer="-1.00" shape="734.55,492.32 719.15,490.78 723.68,445.00 727.03,445.26 737.16,446.10 739.22,446.26 734.55,492.32"/>
    <poly id="102167821" type="building" color="255,230,230" fill="1" layer="-1.00" shape="741.27,405.08 737.16,446.10 727.03,445.26 737.26,339.49 754.84,341.03 752.02,371.94 748.71,404.02 748.53,405.71 741.27,405.08"/>
    <poly id="102167828" type="building" color="255,230,230" fill="1" layer="-1.00" shape="782.52,374.46 765.32,326.76 743.93,324.86 743.10,332.01 738.00,331.75 737.26,339.49 754.84,341.03 752.02,371.94 754.28,372.22 754.88,373.88 758.30,372.78 758.90,374.15 762.12,372.85 762.93,374.61 766.25,373.30 766.75,375.07 770.08,373.77 770.97,375.53 774.00,374.14 774.61,376.08 778.03,374.60 778.92,376.05 782.52,374.46"/>
    <poly id="102167829" type="building" color="255,230,230" fill="1" layer="-1.00" shape="801.69,552.60 776.18,550.14 775.49,558.11 743.95,555.11 744.94,547.12 733.96,546.05 744.67,440.26 755.86,441.11 794.52,444.00 796.94,480.68 801.69,552.60"/>
    <poly id="102167968" type="building" color="255,230,230" fill="1" layer="-1.00" shape="667.54,418.52 670.14,393.47 648.54,391.24 625.30,388.84 622.70,413.91 626.43,414.29 640.96,415.78 667.54,418.52"/>
    <poly id="102167969" type="building" color="255,230,230" fill="1" layer="-1.00" shape="589.75,364.72 598.20,286.62 610.17,287.71 610.86,274.39 600.46,273.30 600.60,267.04 607.28,267.58 609.62,266.39 614.14,266.74 612.59,295.90 607.48,295.55 604.56,325.50 609.28,326.24 605.45,366.37 589.75,364.72"/>
    <poly id="102167970" type="building" color="255,230,230" fill="1" layer="-1.00" shape="638.32,436.15 624.97,434.68 625.92,421.40 626.43,414.29 640.96,415.78 639.54,426.78 638.32,436.15"/>
    <poly id="102167971" type="building" color="255,230,230" fill="1" layer="-1.00" shape="539.55,355.18 544.85,305.33 579.13,308.94 572.55,370.79 552.21,368.64 553.48,356.65 539.55,355.18"/>
    <poly id="102167972" type="building" color="255,230,230" fill="1" layer="-1.00" shape="528.77,286.50 531.22,261.64 566.30,265.06 563.85,289.92 528.77,286.50"/>
    <poly id="102168961" type="building" color="255,230,230" fill="1" layer="-1.00" shape="410.17,120.99 413.58,132.36 415.82,139.84 418.19,147.74 420.69,156.07 398.77,162.61 397.78,162.90 395.72,156.05 392.82,146.38 389.13,134.08 388.62,132.38 392.04,131.36 390.67,126.80 410.17,120.99"/>
    <poly id="102168965" type="building" color="255,230,230" fill="1" layer="-1.00" shape="513.65,259.66 514.27,253.74 518.59,216.55 522.03,179.78 539.96,181.51 531.22,261.64 521.83,260.58 513.65,259.66"/>
    <poly id="102168966" type="building" color="255,230,230" fill="1" layer="-1.00" shape="591.97,185.93 583.93,266.58 566.30,265.06 574.49,183.71 591.97,185.93"/>
    <poly id="102168967" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="458.61,200.12 448.96,169.94 446.61,170.70 442.10,156.58 441.56,154.89 440.15,150.47 439.80,149.36 437.42,141.93 434.79,133.67 415.82,139.84 418.19,147.74 418.64,149.22 420.69,156.07 424.58,169.02 431.88,166.71 435.20,176.03 443.74,204.89 458.61,200.12"/>
    <poly id="102168972" type="building" color="255,230,230" fill="1" layer="-1.00" shape="574.49,183.71 566.30,265.06 531.22,261.64 539.96,181.51 540.14,179.86 574.49,183.71"/>
    <poly id="102168973" type="building" color="255,230,230" fill="1" layer="-1.00" shape="595.07,153.24 576.42,151.22 576.78,146.73 525.51,141.44 522.03,179.78 539.96,181.51 540.14,179.86 540.50,175.36 575.31,179.01 574.49,183.71 591.97,185.93 595.07,153.24"/>
    <poly id="102168975" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="492.99,171.01 477.70,118.70 489.64,114.51 492.66,126.22 499.33,125.00 508.04,153.68 507.08,164.23 502.76,165.85 503.18,168.39 492.99,171.01"/>
    <poly id="102170516" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="247.04,176.33 237.06,167.41 229.19,164.23 223.77,159.78 222.46,156.46 223.23,153.33 229.00,151.33 230.77,151.60 232.02,153.07 229.59,153.97 407.80,293.07 432.76,313.64 493.58,362.37 490.47,362.90 485.95,362.25 478.38,358.20 469.51,352.88 459.24,344.25 441.49,330.40 418.28,309.44 403.89,300.07 391.65,289.30 380.03,282.05 361.58,267.13 347.97,256.85 336.42,247.46 313.81,226.40 308.71,226.83 301.15,225.90 288.90,213.78 276.39,206.03 276.09,205.84 275.06,199.00 262.44,189.61 247.04,176.33"/>
    <poly id="102172480" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="371.60,303.38 368.16,302.39 365.94,300.63 364.60,298.10 364.33,295.91 365.60,293.89 367.54,291.53 371.01,290.18 374.35,290.11 378.33,291.16 380.21,293.25 381.80,295.68 384.56,298.35 386.67,299.46 389.38,300.46 392.03,301.23 392.93,302.39 393.27,303.27 399.47,304.59 406.70,307.72 412.31,310.91 418.87,315.75 432.29,326.75 447.60,342.29 460.69,355.44 473.60,369.26 480.20,376.64 481.38,377.58 481.92,377.60 482.51,377.55 483.17,377.33 490.29,371.52 495.79,366.28 490.47,362.90 485.95,362.25 478.38,358.20 469.51,352.88 459.24,344.25 441.49,330.40 418.28,309.44 403.89,300.07 391.65,289.30 380.03,282.05 361.58,267.13 347.97,256.85 336.42,247.46 313.81,226.40 308.71,226.83 301.15,225.90 288.90,213.78 276.09,205.84 275.06,199.00 262.44,189.61 247.04,176.33 237.06,167.41 229.19,164.23 223.77,159.78 222.46,156.46 223.23,153.33 220.78,154.22 218.93,155.90 218.36,157.87 219.36,160.98 230.66,170.24 251.28,186.86 266.52,199.47 274.91,206.44 286.02,215.45 298.21,226.17 308.92,236.51 320.00,248.21 325.88,255.70 334.90,267.76 340.21,276.52 346.47,287.63 353.01,302.79 354.50,305.81 355.49,307.03 356.78,307.26 358.64,306.99 360.73,306.50 365.58,305.04 371.60,303.38"/>
    <poly id="102172495" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="360.90,320.97 360.34,319.16 369.99,315.97 370.86,316.15 371.18,317.13 370.29,318.11 360.90,320.97"/>
    <poly id="102172498" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="428.83,343.01 414.60,329.43 406.62,324.10 400.03,321.71 389.63,320.52 378.85,321.96 362.51,326.67 358.90,330.32 357.07,333.95 356.81,338.66 358.63,347.25 359.40,357.90 360.18,370.99 360.49,386.05 358.73,399.66 356.68,414.34 353.64,427.96 349.42,440.80 345.86,450.71 343.36,456.60 343.48,460.11 344.58,462.95 347.35,466.34 355.52,470.39 371.26,477.21 375.75,473.47 377.94,465.43 380.95,461.40 380.79,461.13 372.84,462.75 365.63,459.78 360.53,454.40 359.30,447.02 367.16,418.97 368.78,414.79 370.33,408.79 371.20,401.86 368.60,402.29 368.75,376.90 372.08,376.29 370.47,348.95 369.05,345.80 368.48,342.48 368.78,339.05 369.71,336.26 371.71,333.18 373.92,331.13 376.53,329.62 379.52,328.72 383.94,328.66 400.51,331.73 404.50,329.11 426.59,354.26 429.68,351.62 431.52,348.67 431.41,346.80 428.83,343.01"/>
    <poly id="102173369" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="339.47,309.64 336.83,303.01 329.06,287.02 320.04,272.81 304.10,252.97 295.10,244.05 267.37,219.99 229.37,188.39 203.81,167.26 205.76,166.07 232.21,188.18 269.03,218.51 282.05,229.18 290.48,236.94 299.53,245.28 310.00,256.16 320.30,269.58 328.44,281.84 335.59,294.99 341.52,308.81 339.47,309.64"/>
    <poly id="102173993" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="331.75,305.59 332.65,307.93 336.85,318.95 339.17,327.63 342.80,340.61 345.49,360.25 346.01,377.66 345.06,394.87 343.01,409.95 339.11,426.80 335.95,437.57 329.02,454.64 319.45,473.20 305.38,494.23 290.50,510.77 275.89,524.57 260.86,534.75 249.73,542.07 243.09,546.02 239.86,547.13 255.86,534.88 275.45,519.29 296.10,499.19 312.51,476.97 325.67,452.42 330.01,442.32 334.90,426.93 339.18,408.21 341.40,390.40 342.06,373.87 340.32,351.68 338.69,342.11 336.05,330.88 332.14,318.49 329.24,310.98 321.86,294.02 313.92,281.65 306.19,271.25 295.60,258.42 284.54,247.74 273.09,237.36 233.71,204.60 182.30,163.31 184.16,162.71 186.52,163.08 190.36,164.52 192.62,166.17 246.11,209.98 287.86,244.98 296.15,253.33 304.17,262.27 314.66,276.08 322.69,288.15 331.75,305.59"/>
    <poly id="102191317" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="347.56,335.98 349.48,343.79 350.53,352.59 351.59,363.92 352.37,373.77 351.58,388.95 350.02,403.54 347.48,419.11 343.85,430.87 338.76,446.56 331.73,462.84 326.70,472.46 319.33,484.54 313.81,492.80 307.40,501.35 299.22,510.60 290.85,519.07 284.91,524.31 277.99,530.52 269.80,536.73 259.75,544.05 249.89,549.99 245.59,552.95 244.03,554.82 244.35,556.97 245.34,558.43 247.21,558.51 250.33,557.02 264.87,547.13 277.35,536.88 283.30,531.22 288.75,526.03 297.02,517.27 306.84,505.66 313.05,497.01 322.66,483.54 327.21,475.78 331.57,467.63 335.72,459.49 342.27,442.72 345.72,432.42 349.26,420.08 351.05,410.57 351.61,406.69 352.27,402.16 352.46,400.20 353.82,386.79 354.15,377.50 353.90,371.04 353.00,355.20 351.75,345.24 349.96,335.41 349.47,333.55 347.84,333.24 347.23,334.03 347.56,335.98"/>
    <poly id="102265436" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="417.01,65.88 402.97,28.09 385.64,-21.37 380.05,-38.54 365.37,-83.62 367.33,-84.32 376.46,-56.21 390.71,-12.70 398.23,9.93 418.81,65.15 417.01,65.88"/>
    <poly id="102266516" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="179.73,133.79 182.86,132.11 185.72,134.93 191.63,138.01 196.25,139.05 198.50,138.65 195.06,137.20 191.62,135.76 186.48,131.69 182.83,128.29 179.18,125.39 176.33,125.01 173.69,125.82 171.82,125.64 169.36,123.80 166.30,120.99 165.17,115.41 164.47,112.29 159.83,109.39 155.01,106.39 149.89,103.21 146.22,98.63 143.14,92.99 139.28,88.52 132.38,84.56 124.99,79.33 118.58,75.18 113.95,72.67 110.80,70.83 109.89,66.93 108.99,63.41 104.56,61.69 100.92,60.54 96.86,56.26 94.39,53.16 92.52,51.60 90.25,50.83 88.98,51.04 87.70,50.85 84.84,47.94 80.59,44.25 76.36,41.74 72.31,38.65 69.17,37.30 66.01,36.15 64.13,33.23 61.75,29.82 59.47,27.20 55.44,25.18 52.00,24.61 48.94,22.19 45.87,17.42 44.07,12.94 44.34,9.70 42.88,12.16 42.52,15.49 39.87,16.30 40.29,19.91 44.26,25.46 48.61,29.92 62.62,40.96 85.50,58.89 101.09,71.10 126.75,91.74 146.58,107.15 179.73,133.79"/>
    <poly id="102266517" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="209.95,136.12 206.17,132.70 202.53,132.62 55.60,13.28 46.87,7.44 44.34,9.70 44.07,12.94 45.87,17.42 48.94,22.19 52.00,24.61 55.44,25.18 59.47,27.20 61.75,29.82 64.13,33.23 66.01,36.15 69.17,37.30 72.31,38.65 76.36,41.74 80.59,44.25 84.84,47.94 87.70,50.85 88.98,51.04 90.25,50.83 92.52,51.60 94.39,53.16 96.86,56.26 100.92,60.54 104.56,61.69 108.99,63.41 109.89,66.93 110.80,70.83 113.95,72.67 118.58,75.18 124.99,79.33 132.38,84.56 139.28,88.52 143.14,92.99 146.22,98.63 149.89,103.21 155.01,106.39 159.83,109.39 164.47,112.29 165.17,115.41 166.30,120.99 169.36,123.80 171.82,125.64 173.69,125.82 176.33,125.01 179.18,125.39 182.83,128.29 186.48,131.69 191.62,135.76 195.06,137.20 198.50,138.65 201.94,138.72 207.02,137.50 209.95,136.12"/>
    <poly id="102266518" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="166.71,137.60 168.86,136.81 139.76,113.35 117.95,96.31 108.78,88.55 104.03,84.28 99.79,79.71 93.90,73.27 65.65,51.04 26.92,20.64 24.91,21.39 55.40,45.42 86.87,70.22 92.78,75.17 95.76,78.47 99.31,82.36 103.07,86.24 123.99,103.01 166.71,137.60"/>
    <poly id="102268114" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="2.35,-16.98 -1.78,-19.39 -5.13,-21.61 -8.16,-19.14 -42.20,-45.88 -60.05,-59.94 -71.29,-66.89 -84.19,-73.84 -94.73,-80.22 -103.50,-86.51 -147.21,-120.91 -212.81,-170.01 -271.68,-211.62 -320.09,-244.42 -358.81,-269.18 -411.56,-301.30 -410.45,-304.41 -413.93,-306.12 -416.10,-307.66 -417.39,-309.71 -417.41,-311.77 -417.33,-314.31 -416.27,-316.37 -413.83,-319.62 -411.50,-322.37 -410.12,-321.70 -411.96,-318.35 -411.63,-314.25 -409.05,-309.18 -389.86,-302.00 -379.92,-296.49 -367.39,-286.18 -350.34,-276.17 -341.68,-273.21 -331.72,-264.87 -318.71,-257.34 -303.16,-250.41 -290.82,-240.43 -274.16,-229.11 -252.27,-212.55 -236.08,-200.15 -223.17,-191.84 -205.51,-177.20 -192.38,-167.32 -173.45,-153.87 -158.77,-145.07 -145.45,-134.02 -128.95,-117.91 -112.87,-105.41 -99.63,-92.31 -70.46,-74.23 -53.39,-60.76 -43.71,-51.84 -31.18,-41.66 -20.33,-33.73 -14.24,-32.80 -6.34,-25.91 -3.58,-24.66 1.46,-19.22 4.82,-16.41 2.35,-16.98"/>
    <poly id="102268134" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="-3.58,-24.66 1.46,-19.22 4.82,-16.41 6.67,-16.42 13.23,-19.11 5.91,-25.63 -221.19,-200.16 -399.85,-317.80 -410.12,-321.70 -411.96,-318.35 -411.63,-314.25 -409.05,-309.18 -389.86,-302.00 -379.92,-296.49 -367.39,-286.18 -350.34,-276.17 -341.68,-273.21 -331.72,-264.87 -318.71,-257.34 -303.16,-250.41 -290.82,-240.43 -274.16,-229.11 -252.27,-212.55 -236.08,-200.15 -223.17,-191.84 -205.51,-177.20 -192.38,-167.32 -173.45,-153.87 -158.77,-145.07 -145.45,-134.02 -128.95,-117.91 -112.87,-105.41 -99.63,-92.31 -70.46,-74.23 -53.39,-60.76 -43.71,-51.84 -31.18,-41.66 -20.33,-33.73 -14.24,-32.80 -6.34,-25.91 -3.58,-24.66"/>
    <poly id="102268941" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-776.39,-489.13 -774.54,-492.18 -775.85,-495.49 -775.78,-500.49 -774.24,-503.43 -772.28,-503.25 -773.42,-497.77 -771.41,-492.69 -764.42,-489.71 -736.98,-479.36 -712.96,-467.80 -692.77,-456.90 -655.86,-441.34 -621.51,-425.45 -578.30,-406.12 -537.14,-385.69 -511.04,-371.90 -474.01,-351.74 -468.48,-346.40 -464.84,-346.13 -460.44,-347.04 -456.62,-348.45 -454.06,-347.39 -446.50,-359.27 -435.48,-367.38 -418.28,-350.10 -412.61,-339.38 -422.83,-327.96 -427.80,-323.82 -432.19,-321.54 -436.80,-321.20 -441.02,-322.15 -475.01,-341.26 -507.32,-358.92 -516.48,-362.93 -526.60,-366.50 -574.85,-390.78 -650.65,-427.49 -716.03,-458.98 -762.29,-480.73 -770.86,-484.97 -776.39,-489.13"/>
    <poly id="102269339" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-232.23,-176.62 -232.68,-176.77 -233.31,-176.71 -233.98,-176.46 -234.47,-175.81 -234.72,-175.07 -234.70,-174.44 -234.30,-173.88 -212.53,-158.47 -186.39,-139.30 -166.27,-124.58 -129.37,-96.49 -94.65,-69.26 -50.64,-34.77 -32.19,-20.04 -22.92,-13.08 -20.97,-13.67 -67.93,-50.69 -104.14,-79.26 -159.88,-122.86 -219.07,-167.12 -232.23,-176.62"/>
    <poly id="102269340" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-419.92,-285.91 -421.45,-283.50 -421.38,-282.66 -390.96,-264.14 -373.12,-252.92 -346.02,-235.81 -317.93,-217.74 -286.38,-197.24 -273.02,-188.43 -260.07,-179.35 -258.21,-181.97 -256.98,-181.12 -256.86,-181.31 -257.98,-182.56 -273.22,-193.11 -286.62,-202.03 -292.53,-205.93 -310.96,-218.08 -330.08,-230.35 -358.77,-248.73 -377.99,-261.20 -399.56,-273.86 -419.92,-285.91"/>
    <poly id="102269561" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-491.73,-334.31 -496.77,-337.75 -501.89,-341.87 -505.48,-345.47 -509.80,-348.50 -585.22,-387.10 -663.95,-426.03 -721.67,-452.77 -749.53,-465.97 -779.56,-480.31 -778.69,-482.18 -725.33,-456.75 -670.79,-430.75 -615.16,-403.89 -548.61,-370.74 -501.04,-345.27 -467.25,-326.75 -446.26,-314.87 -445.28,-313.71 -445.17,-311.95 -446.04,-310.37 -447.80,-309.97 -449.97,-311.32 -461.40,-317.50 -491.73,-334.31"/>
    <poly id="102270251" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="367.50,-100.85 369.82,-105.86 372.92,-109.98 379.28,-112.86 416.57,-123.80 471.09,-140.04 512.98,-152.74 541.36,-161.49 543.81,-162.19 546.21,-155.46 510.69,-144.24 448.05,-125.40 378.08,-103.66 367.50,-100.85"/>
    <poly id="102270253" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-54.84,22.08 -31.63,15.65 -30.98,14.83 -30.58,13.94 -29.92,13.68 -30.59,11.60 -31.05,10.63 -31.64,9.91 -32.33,9.38 -33.54,8.89 -34.78,8.81 -67.22,18.07 -108.53,30.63 -168.91,48.28 -232.20,66.54 -334.96,96.20 -332.51,104.20 -326.87,105.15 -317.24,102.05 -229.81,74.89 -159.65,53.09 -104.36,36.73 -54.84,22.08"/>
    <poly id="102270258" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="30.42,-2.51 29.24,-3.78 28.14,-5.14 27.45,-6.95 27.23,-9.05 45.24,-14.85 112.58,-34.51 143.70,-43.54 184.22,-55.29 227.31,-67.88 228.16,-66.73 343.54,-100.99 345.24,-95.24 229.69,-61.25 229.86,-60.76 181.54,-46.76 146.88,-36.57 113.80,-26.83 112.34,-26.40 73.87,-15.35 30.42,-2.51"/>
    <poly id="102270261" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="581.20,-173.10 582.66,-173.53 628.48,-185.79 668.94,-196.26 685.56,-200.56 727.56,-211.46 789.24,-227.94 835.74,-240.12 893.41,-254.82 908.78,-258.83 914.02,-253.30 840.00,-234.18 772.65,-216.38 711.36,-199.99 639.99,-181.67 583.01,-166.48 581.20,-173.10"/>
    <poly id="102270825" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="166.58,-24.53 160.33,-22.74 159.35,-23.03 159.14,-24.30 159.71,-26.95 161.75,-30.18 170.45,-33.18 191.50,-39.11 212.45,-45.03 227.52,-49.06 247.68,-54.98 272.42,-65.33 293.86,-71.95 311.09,-76.86 323.71,-80.57 327.63,-81.29 332.04,-81.42 329.70,-79.94 324.01,-79.21 313.45,-75.70 306.41,-71.84 295.97,-64.14 291.59,-61.17 286.49,-59.27 260.95,-51.55 217.10,-39.30 166.58,-24.53"/>
    <poly id="102270826" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="5.86,18.21 -2.70,15.33 -11.72,16.87 -21.31,19.48 -19.90,24.27 -18.11,27.09 -15.95,28.15 -13.59,28.72 -1.74,25.21 3.52,21.36 5.86,18.21"/>
    <poly id="102270828" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="151.51,-21.20 148.16,-23.34 145.01,-24.78 142.47,-24.96 123.97,-19.53 111.34,-15.73 114.58,-14.87 118.91,-14.03 124.30,-14.07 130.47,-14.60 141.35,-17.03 150.06,-19.24 151.51,-21.20"/>
    <poly id="102271193" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="146.39,134.53 144.59,129.85 141.31,124.78 122.57,109.77 80.83,76.73 14.33,24.40 13.07,26.18 13.09,28.91 14.49,31.64 71.31,75.92 105.95,103.63 117.21,112.22 146.39,134.53"/>
    <poly id="102272051" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-168.36,68.99 -169.16,67.53 -170.34,66.56 -172.90,65.50 -175.45,65.13 -186.71,68.54 -187.53,69.81 -185.92,74.88 -168.36,68.99"/>
    <poly id="102272052" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-51.71,39.78 -80.82,48.39 -144.25,66.56 -150.81,67.29 -161.19,67.08 -161.30,64.74 -160.25,62.67 -158.38,60.44 -154.32,58.72 -75.72,36.12 -48.12,27.90 -51.71,39.78"/>
    <poly id="102272053" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-26.10,21.28 -26.05,21.44 -24.38,27.62 -24.36,30.17 -25.82,32.33 -47.25,38.45 -43.03,26.49 -26.10,21.28"/>
    <poly id="102272054" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-190.37,76.38 -192.08,71.13 -193.17,70.54 -238.18,84.38 -239.35,85.75 -237.59,91.07 -190.37,76.38"/>
    <poly id="102272223" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="34.05,11.06 33.94,9.88 33.15,9.30 27.09,11.01 26.70,11.99 28.37,12.86 31.60,11.76 34.05,11.06"/>
    <poly id="102272489" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-265.77,-175.23 -264.75,-173.69 -264.10,-172.32 -263.58,-170.03 -264.84,-166.26 -265.20,-165.81 -264.60,-165.47 -261.85,-168.98 -261.14,-171.00 -261.01,-173.13 -261.21,-174.68 -262.34,-176.65 -314.22,-211.17 -329.55,-211.05 -338.62,-211.27 -347.51,-212.03 -355.39,-212.91 -370.96,-215.27 -345.91,-131.01 -345.08,-131.39 -366.92,-209.79 -359.58,-211.21 -344.68,-209.60 -331.05,-209.11 -315.95,-209.24 -265.77,-175.23"/>
    <poly id="102273004" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-101.56,-174.89 -85.16,-195.46 -81.80,-192.79 -79.05,-196.25 -57.45,-179.12 -60.06,-175.81 -67.22,-166.92 -68.03,-165.85 -77.59,-173.42 -86.16,-162.69 -92.26,-167.52 -100.62,-166.72 -101.56,-174.89"/>
    <poly id="102273005" type="building" color="255,230,230" fill="1" layer="-1.00" shape="16.43,-120.84 19.44,-95.19 18.61,-95.09 9.47,-94.03 -3.60,-92.51 -4.42,-99.63 -9.36,-99.06 -9.77,-102.52 -17.06,-108.44 -11.29,-115.51 -11.82,-120.07 -5.52,-120.81 -1.47,-125.78 3.41,-121.83 9.70,-122.58 9.99,-120.09 16.43,-120.84"/>
    <poly id="102273007" type="building" color="255,230,230" fill="1" layer="-1.00" shape="33.03,-49.34 33.41,-43.07 27.47,-42.27 25.44,-43.86 22.92,-45.84 21.18,-47.21 -21.64,-80.80 -27.97,-85.78 -31.93,-88.87 -38.62,-94.13 -77.83,-124.88 -84.58,-130.18 -88.42,-133.19 -95.40,-138.67 -114.06,-153.31 -116.96,-155.59 -114.88,-158.18 -112.01,-155.89 -108.77,-159.91 -90.33,-145.09 -89.21,-146.48 -82.30,-140.94 -83.43,-139.55 -79.61,-136.48 -78.48,-137.86 -71.82,-132.51 -72.94,-131.12 -54.42,-116.26 -55.23,-115.26 -53.56,-113.91 -52.18,-115.64 -51.63,-116.31 -39.81,-106.81 -40.34,-106.15 -33.47,-100.65 -32.94,-101.29 -26.32,-95.98 -26.85,-95.32 -22.92,-92.17 -22.40,-92.82 -16.13,-87.80 -16.66,-87.13 2.48,-71.77 1.68,-70.78 5.64,-67.61 8.08,-70.61 19.76,-61.24 18.12,-59.22 22.33,-55.82 23.37,-57.11 28.54,-52.96 29.93,-51.84 33.03,-49.34"/>
    <poly id="102273008" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-28.45,-150.52 -45.01,-129.99 -53.64,-129.71 -53.93,-137.15 -58.97,-141.18 -52.28,-149.45 -53.65,-150.56 -51.97,-152.64 -61.49,-160.28 -60.48,-161.52 -53.32,-170.41 -50.35,-174.09 -29.46,-157.33 -32.40,-153.68 -28.45,-150.52"/>
    <poly id="102273009" type="building" color="255,230,230" fill="1" layer="-1.00" shape="28.90,-102.32 38.23,-103.38 61.12,-85.20 42.37,-61.71 36.86,-61.08 33.47,-60.70 32.45,-69.57 37.34,-75.69 35.90,-88.31 29.96,-93.02 28.90,-102.32"/>
    <poly id="102276884" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-103.01,-197.70 -95.09,-207.71 -125.09,-231.32 -158.72,-188.82 -148.82,-181.03 -123.11,-213.53 -103.01,-197.70"/>
    <poly id="102276885" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-91.88,-212.96 -126.07,-238.89 -109.58,-258.91 -70.51,-251.37 -69.49,-219.94 -86.23,-199.22 -92.36,-203.71 -87.76,-209.67 -91.88,-212.96"/>
    <poly id="102276889" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-128.95,-196.47 -119.63,-208.64 -102.07,-195.28 -111.38,-183.10 -128.95,-196.47"/>
    <poly id="102277395" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="-170.79,-191.84 -120.47,-151.72 18.06,-42.82 23.39,-38.74 25.94,-37.40 29.48,-37.62 33.99,-37.84 36.35,-36.29 37.95,-33.37 39.21,-27.31 24.93,-23.46 17.11,-30.03 -109.17,-131.53 -212.66,-208.47 -297.22,-266.26 -393.64,-327.26 -399.60,-331.75 -394.71,-334.14 -385.68,-333.81 -370.74,-329.42 -353.80,-320.36 -334.88,-308.37 -303.94,-289.23 -259.36,-257.49 -235.30,-240.25 -225.43,-231.53 -218.31,-224.54 -202.72,-213.11 -177.89,-197.46 -170.79,-191.84"/>
    <poly id="102277397" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-67.22,-166.92 -60.48,-161.52 -53.32,-170.41 -60.06,-175.81 -67.22,-166.92"/>
    <poly id="102284565" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="-378.46,-348.81 -378.17,-344.13 -362.25,-342.73 -351.07,-340.88 -341.82,-339.07 -330.13,-336.18 -349.86,-338.51 -366.33,-335.22 -381.45,-337.28 -395.38,-340.75 -400.57,-343.00 -408.94,-346.85 -412.01,-351.42 -414.30,-355.70 -415.01,-358.53 -414.74,-361.67 -413.88,-364.71 -410.85,-368.52 -386.45,-357.28 -387.21,-352.68 -378.46,-348.81"/>
    <poly id="102302455" type="commercial" color="209,209,204" fill="1" layer="-3.00" shape="-632.01,168.90 -612.43,163.14 -551.80,140.25 -546.58,138.73 -533.05,134.78 -526.54,132.88 -523.14,131.90 -519.43,130.81 -504.61,126.33 -494.91,123.25 -491.69,122.22 -491.38,122.13 -478.24,117.95 -458.20,111.88 -440.65,106.93 -431.90,104.46 -416.98,99.82 -407.85,97.07 -309.03,68.08 -288.86,60.16 -289.45,58.18 -292.38,48.49 -312.33,-19.63 -332.75,-89.40 -341.65,-119.84 -348.72,-117.66 -359.47,-114.38 -369.89,-111.19 -374.08,-109.95 -409.65,-99.40 -431.97,-94.98 -455.39,-91.42 -474.13,-89.14 -487.24,-88.69 -499.52,-89.10 -517.90,-89.97 -518.31,-91.78 -523.50,-92.60 -541.17,-97.61 -546.15,-98.68 -552.24,-99.10 -557.98,-98.82 -562.77,-97.74 -565.46,-96.61 -570.44,-93.62 -574.02,-91.17 -581.03,-96.51 -588.88,-101.56 -615.90,-119.29 -621.05,-122.35 -635.05,-103.25 -635.86,-3.74 -630.47,-3.75 -630.15,14.59 -635.32,14.63 -632.41,150.72 -632.01,168.90"/>
    <poly id="102303130" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="-474.37,-236.13 -467.56,-213.38 -499.27,-203.94 -506.08,-226.69 -492.68,-230.68 -487.80,-232.13 -474.37,-236.13"/>
    <poly id="102303130#1" type="sport" color="79,230,125" fill="1" layer="-2.00" shape="-474.37,-236.13 -467.56,-213.38 -499.27,-203.94 -506.08,-226.69 -492.68,-230.68 -487.80,-232.13 -474.37,-236.13"/>
    <poly id="102303131" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="-471.14,-269.21 -463.23,-242.59 -462.36,-239.71 -455.57,-216.95 -413.62,-229.32 -427.73,-235.91 -441.53,-243.80 -450.41,-249.83 -459.93,-257.53 -471.14,-269.21"/>
    <poly id="102303131#1" type="sport" color="79,230,125" fill="1" layer="-2.00" shape="-471.14,-269.21 -463.23,-242.59 -462.36,-239.71 -455.57,-216.95 -413.62,-229.32 -427.73,-235.91 -441.53,-243.80 -450.41,-249.83 -459.93,-257.53 -471.14,-269.21"/>
    <poly id="105198177" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="430.42,214.99 462.64,205.32 464.23,210.59 461.14,211.52 465.41,225.69 438.59,233.74 435.19,230.80 430.42,214.99"/>
    <poly id="105198177#1" type="building" color="255,230,230" fill="1" layer="-1.00" shape="430.42,214.99 462.64,205.32 464.23,210.59 461.14,211.52 465.41,225.69 438.59,233.74 435.19,230.80 430.42,214.99"/>
    <poly id="106492306" type="building" color="255,230,230" fill="1" layer="-1.00" shape="518.82,541.23 526.16,534.97 520.94,528.89 513.60,535.13 518.82,541.23"/>
    <poly id="106492308" type="building" color="255,230,230" fill="1" layer="-1.00" shape="516.79,514.30 537.08,497.02 527.62,485.98 507.33,503.26 516.79,514.30"/>
    <poly id="106492309" type="building" color="255,230,230" fill="1" layer="-1.00" shape="498.66,695.65 507.87,688.15 503.94,683.36 494.74,690.86 498.66,695.65"/>
    <poly id="106492310" type="building" color="255,230,230" fill="1" layer="-1.00" shape="410.14,706.83 410.50,705.25 412.74,693.81 400.19,691.50 397.60,704.31 410.14,706.83"/>
    <poly id="106492311" type="building" color="255,230,230" fill="1" layer="-1.00" shape="523.22,571.18 531.21,564.36 522.36,554.04 514.36,560.84 523.22,571.18"/>
    <poly id="106492312" type="building" color="255,230,230" fill="1" layer="-1.00" shape="498.32,634.78 508.83,625.68 503.93,620.06 493.42,629.15 498.32,634.78"/>
    <poly id="106492313" type="building" color="255,230,230" fill="1" layer="-1.00" shape="491.22,680.70 496.53,686.83 505.66,678.97 500.35,672.84 491.22,680.70"/>
    <poly id="106492316" type="building" color="255,230,230" fill="1" layer="-1.00" shape="470.55,483.58 441.05,449.05 417.23,469.29 413.79,472.22 396.04,487.30 403.84,496.43 421.60,481.33 429.42,490.48 432.88,487.54 446.77,503.78 470.55,483.58"/>
    <poly id="106492321" type="building" color="255,230,230" fill="1" layer="-1.00" shape="508.11,646.02 518.61,636.93 513.72,631.31 503.22,640.40 508.11,646.02"/>
    <poly id="106492322" type="building" color="255,230,230" fill="1" layer="-1.00" shape="517.90,657.27 528.41,648.17 523.51,642.55 513.00,651.64 517.90,657.27"/>
    <poly id="106492328" type="building" color="255,230,230" fill="1" layer="-1.00" shape="486.57,675.34 491.22,680.70 500.35,672.84 495.71,667.47 486.57,675.34"/>
    <poly id="106492329" type="building" color="255,230,230" fill="1" layer="-1.00" shape="513.00,651.64 523.51,642.55 518.61,636.93 508.11,646.02 513.00,651.64"/>
    <poly id="106492330" type="building" color="255,230,230" fill="1" layer="-1.00" shape="542.92,554.86 532.60,542.81 524.54,549.68 534.85,561.74 542.92,554.86"/>
    <poly id="106492331" type="building" color="255,230,230" fill="1" layer="-1.00" shape="476.58,663.80 481.73,669.75 490.87,661.88 485.71,655.92 476.58,663.80"/>
    <poly id="106492332" type="building" color="255,230,230" fill="1" layer="-1.00" shape="475.53,644.18 466.40,652.04 471.11,657.48 480.24,649.62 475.53,644.18"/>
    <poly id="106492335" type="building" color="255,230,230" fill="1" layer="-1.00" shape="523.22,571.18 514.36,560.84 506.34,567.67 515.20,578.01 523.22,571.18"/>
    <poly id="106492338" type="building" color="255,230,230" fill="1" layer="-1.00" shape="471.11,657.48 476.58,663.80 485.71,655.92 480.24,649.62 471.11,657.48"/>
    <poly id="106492343" type="building" color="255,230,230" fill="1" layer="-1.00" shape="473.02,561.86 494.33,543.47 484.77,532.45 488.74,529.03 485.17,524.93 459.89,546.73 466.34,554.17 465.04,555.30 468.11,558.83 464.52,561.93 469.11,567.21 474.00,562.98 473.02,561.86"/>
    <poly id="106492350" type="building" color="255,230,230" fill="1" layer="-1.00" shape="503.25,588.34 494.13,577.51 485.19,585.00 494.31,595.83 503.25,588.34"/>
    <poly id="106492351" type="building" color="255,230,230" fill="1" layer="-1.00" shape="481.73,669.75 486.57,675.34 495.71,667.47 490.87,661.88 481.73,669.75"/>
    <poly id="106492352" type="building" color="255,230,230" fill="1" layer="-1.00" shape="514.51,545.68 509.42,539.73 501.66,546.34 506.75,552.28 514.51,545.68"/>
    <poly id="106492353" type="building" color="255,230,230" fill="1" layer="-1.00" shape="554.58,535.02 551.85,537.33 553.17,538.88 555.89,542.07 572.24,528.22 569.51,525.03 571.98,522.96 570.66,521.41 567.63,517.84 565.17,519.93 551.55,531.47 554.58,535.02"/>
    <poly id="106492354" type="building" color="255,230,230" fill="1" layer="-1.00" shape="506.75,552.28 501.66,546.34 498.31,549.19 496.49,550.74 493.92,552.92 497.64,557.26 498.17,557.88 500.73,555.69 500.20,555.08 502.02,553.53 503.40,555.14 506.75,552.28"/>
    <poly id="106492356" type="building" color="255,230,230" fill="1" layer="-1.00" shape="375.15,694.61 376.74,686.74 364.86,684.35 363.26,692.22 375.15,694.61"/>
    <poly id="106492357" type="building" color="255,230,230" fill="1" layer="-1.00" shape="503.25,588.34 511.31,581.58 502.19,570.76 494.13,577.51 503.25,588.34"/>
    <poly id="106492360" type="building" color="255,230,230" fill="1" layer="-1.00" shape="483.84,565.69 493.63,557.19 489.60,552.57 479.80,561.07 483.84,565.69"/>
    <poly id="106492364" type="building" color="255,230,230" fill="1" layer="-1.00" shape="536.99,519.90 555.60,504.05 551.72,499.52 533.11,515.37 536.99,519.90"/>
    <poly id="106492368" type="building" color="255,230,230" fill="1" layer="-1.00" shape="515.59,680.17 538.95,659.90 535.12,655.51 511.75,675.77 515.59,680.17"/>
    <poly id="106492372" type="building" color="255,230,230" fill="1" layer="-1.00" shape="503.22,640.40 513.72,631.31 508.83,625.68 498.32,634.78 503.22,640.40"/>
    <poly id="106492373" type="building" color="255,230,230" fill="1" layer="-1.00" shape="471.87,576.07 483.84,565.69 479.80,561.07 467.84,571.44 471.87,576.07"/>
    <poly id="106492375" type="building" color="255,230,230" fill="1" layer="-1.00" shape="522.80,662.89 533.30,653.80 528.41,648.17 517.90,657.27 522.80,662.89"/>
    <poly id="106492376" type="building" color="255,230,230" fill="1" layer="-1.00" shape="509.02,527.55 513.99,523.35 502.32,509.64 497.35,513.84 509.02,527.55"/>
    <poly id="106492378" type="building" color="255,230,230" fill="1" layer="-1.00" shape="375.15,694.61 386.54,696.91 388.13,689.04 376.74,686.74 375.15,694.61"/>
    <poly id="106492381" type="building" color="255,230,230" fill="1" layer="-1.00" shape="451.22,537.25 466.77,523.83 457.59,513.25 442.04,526.68 451.22,537.25"/>
    <poly id="106524415" type="building" color="255,230,230" fill="1" layer="-1.00" shape="581.75,553.18 575.56,558.38 574.61,559.18 583.60,569.81 584.54,569.01 586.33,571.13 592.53,565.93 590.73,563.81 595.02,560.21 586.02,549.58 581.75,553.18"/>
    <poly id="106524416" type="building" color="255,230,230" fill="1" layer="-1.00" shape="593.69,615.39 606.91,604.49 599.54,595.63 586.34,606.53 593.69,615.39"/>
    <poly id="106524417" type="building" color="255,230,230" fill="1" layer="-1.00" shape="515.86,609.69 510.91,613.93 518.41,622.61 523.36,618.37 515.86,609.69"/>
    <poly id="106524418" type="building" color="255,230,230" fill="1" layer="-1.00" shape="582.62,622.70 586.39,619.51 581.41,613.65 577.64,616.83 574.88,613.57 566.09,620.98 574.81,631.27 583.60,623.86 582.62,622.70"/>
    <poly id="106524420" type="building" color="255,230,230" fill="1" layer="-1.00" shape="546.33,656.27 555.16,648.92 544.64,636.36 535.81,643.72 546.33,656.27"/>
    <poly id="106524421" type="building" color="255,230,230" fill="1" layer="-1.00" shape="586.39,619.51 589.80,616.63 584.82,610.76 581.41,613.65 586.39,619.51"/>
    <poly id="106524422" type="building" color="255,230,230" fill="1" layer="-1.00" shape="557.27,578.36 561.19,582.96 560.13,583.86 563.27,587.54 572.37,579.82 569.69,576.68 564.65,570.77 563.28,569.17 555.24,575.98 554.18,576.89 556.21,579.27 557.27,578.36"/>
    <poly id="106524423" type="building" color="255,230,230" fill="1" layer="-1.00" shape="540.82,600.67 543.22,598.57 537.84,592.46 535.45,594.55 540.82,600.67"/>
    <poly id="106524424" type="building" color="255,230,230" fill="1" layer="-1.00" shape="534.25,610.46 541.90,603.61 533.38,594.15 525.74,601.00 534.25,610.46"/>
    <poly id="106524425" type="building" color="255,230,230" fill="1" layer="-1.00" shape="569.69,576.68 572.07,574.67 571.51,574.01 567.02,568.75 564.65,570.77 569.69,576.68"/>
    <poly id="106524426" type="building" color="255,230,230" fill="1" layer="-1.00" shape="553.72,588.84 548.37,582.65 539.87,589.96 548.61,600.07 557.12,592.76 558.75,594.65 561.89,591.94 560.25,590.04 556.87,586.13 553.72,588.84"/>
    <poly id="106524427" type="building" color="255,230,230" fill="1" layer="-1.00" shape="560.49,643.59 569.17,636.20 559.82,625.28 551.15,632.67 560.49,643.59"/>
    <poly id="106524428" type="building" color="255,230,230" fill="1" layer="-1.00" shape="571.51,574.01 574.13,571.79 569.64,566.53 567.02,568.75 571.51,574.01"/>
    <poly id="106524429" type="building" color="255,230,230" fill="1" layer="-1.00" shape="601.61,581.95 592.62,572.05 595.45,569.50 594.63,568.59 592.62,566.37 586.63,571.78 588.64,573.99 581.63,580.33 591.44,591.13 601.61,581.95"/>
    <poly id="106745952" type="building" color="255,230,230" fill="1" layer="-1.00" shape="549.10,698.97 539.00,687.73 528.89,696.76 538.99,708.01 549.10,698.97"/>
    <poly id="106745958" type="building" color="255,230,230" fill="1" layer="-1.00" shape="569.22,677.86 560.73,668.20 550.36,677.26 558.86,686.92 569.22,677.86"/>
    <poly id="106745960" type="building" color="255,230,230" fill="1" layer="-1.00" shape="597.12,669.45 605.80,679.63 615.78,671.16 607.10,660.98 597.12,669.45"/>
    <poly id="106745968" type="building" color="255,230,230" fill="1" layer="-1.00" shape="584.10,693.23 586.71,691.06 581.75,685.10 579.13,687.27 584.10,693.23"/>
    <poly id="106745969" type="building" color="255,230,230" fill="1" layer="-1.00" shape="602.13,649.58 613.41,639.94 605.14,630.33 593.86,639.98 602.13,649.58"/>
    <poly id="106745970" type="building" color="255,230,230" fill="1" layer="-1.00" shape="593.47,655.49 586.10,646.62 579.30,652.25 574.96,655.83 582.34,664.70 586.67,661.11 588.72,663.58 595.52,657.96 593.47,655.49"/>
    <poly id="106746397" type="building" color="255,230,230" fill="1" layer="-1.00" shape="633.29,586.42 653.98,577.35 650.93,570.43 640.65,574.93 630.24,579.49 633.29,586.42"/>
    <poly id="106746399" type="building" color="255,230,230" fill="1" layer="-1.00" shape="689.52,673.05 695.36,669.12 690.61,662.09 684.76,666.02 689.52,673.05"/>
    <poly id="106746402" type="building" color="255,230,230" fill="1" layer="-1.00" shape="649.47,619.16 663.27,614.33 661.37,608.95 657.29,610.38 656.20,607.29 646.49,610.69 649.47,619.16"/>
    <poly id="106746403" type="building" color="255,230,230" fill="1" layer="-1.00" shape="663.38,667.78 661.58,659.66 649.24,662.38 651.03,670.49 663.38,667.78"/>
    <poly id="106746405" type="building" color="255,230,230" fill="1" layer="-1.00" shape="658.09,585.13 656.94,582.10 652.10,583.93 653.25,586.95 658.09,585.13"/>
    <poly id="106746408" type="building" color="255,230,230" fill="1" layer="-1.00" shape="669.25,614.50 666.99,608.23 663.05,609.65 665.31,615.90 669.25,614.50"/>
    <poly id="106746410" type="building" color="255,230,230" fill="1" layer="-1.00" shape="705.90,650.58 700.34,642.88 693.20,648.01 698.75,655.70 705.90,650.58"/>
    <poly id="106746411" type="building" color="255,230,230" fill="1" layer="-1.00" shape="712.42,694.49 707.56,686.53 700.14,691.04 705.01,698.99 712.42,694.49"/>
    <poly id="106746412" type="building" color="255,230,230" fill="1" layer="-1.00" shape="586.89,502.70 594.99,495.60 597.11,497.99 601.39,494.24 599.26,491.84 598.64,491.12 594.36,494.88 589.27,489.11 581.17,496.22 586.89,502.70"/>
    <poly id="106746413" type="building" color="255,230,230" fill="1" layer="-1.00" shape="643.74,554.46 649.24,551.33 645.70,545.15 640.20,548.29 639.13,548.90 642.67,555.07 643.74,554.46"/>
    <poly id="106746417" type="building" color="255,230,230" fill="1" layer="-1.00" shape="693.20,648.01 700.34,642.88 693.09,632.84 692.04,631.37 686.84,635.10 687.89,636.57 685.96,637.96 693.20,648.01"/>
    <poly id="106746418" type="building" color="255,230,230" fill="1" layer="-1.00" shape="614.34,541.57 627.65,535.21 623.45,526.48 610.14,532.83 614.34,541.57"/>
    <poly id="106746419" type="building" color="255,230,230" fill="1" layer="-1.00" shape="633.54,549.91 640.04,547.19 636.37,538.44 629.86,541.15 616.56,546.71 620.23,555.45 621.00,557.29 634.31,551.74 633.54,549.91"/>
    <poly id="106746421" type="building" color="255,230,230" fill="1" layer="-1.00" shape="609.26,512.66 603.47,505.64 597.00,510.96 602.79,517.96 609.26,512.66"/>
    <poly id="106746422" type="building" color="255,230,230" fill="1" layer="-1.00" shape="721.42,667.37 718.21,662.21 715.49,663.88 713.87,661.28 706.73,665.71 708.38,668.36 711.56,673.46 721.42,667.37"/>
    <poly id="106746425" type="building" color="255,230,230" fill="1" layer="-1.00" shape="666.11,602.27 671.76,600.16 669.92,595.26 664.27,597.38 666.11,602.27"/>
    <poly id="106746426" type="building" color="255,230,230" fill="1" layer="-1.00" shape="534.76,441.41 541.07,436.26 535.38,429.33 529.07,434.49 534.76,441.41"/>
    <poly id="106746427" type="building" color="255,230,230" fill="1" layer="-1.00" shape="566.98,478.94 575.07,472.35 566.91,462.40 558.83,469.00 566.98,478.94"/>
    <poly id="106746428" type="building" color="255,230,230" fill="1" layer="-1.00" shape="696.93,685.08 703.97,680.50 698.60,672.28 691.55,676.85 696.93,685.08"/>
    <poly id="106746430" type="building" color="255,230,230" fill="1" layer="-1.00" shape="661.31,698.49 667.01,697.18 664.94,688.17 659.24,689.47 653.22,690.84 655.28,699.85 655.93,702.67 661.95,701.29 661.31,698.49"/>
    <poly id="106746432" type="building" color="255,230,230" fill="1" layer="-1.00" shape="679.25,638.90 677.13,632.07 671.16,633.90 673.28,640.75 679.25,638.90"/>
    <poly id="106746433" type="building" color="255,230,230" fill="1" layer="-1.00" shape="730.22,703.05 738.00,698.17 732.93,690.15 725.16,695.02 730.22,703.05"/>
    <poly id="106746437" type="building" color="255,230,230" fill="1" layer="-1.00" shape="605.43,526.79 611.14,523.09 608.91,519.67 603.20,523.38 605.43,526.79"/>
    <poly id="106746438" type="building" color="255,230,230" fill="1" layer="-1.00" shape="630.29,566.30 625.37,568.46 630.24,579.49 640.65,574.93 635.78,563.89 646.01,559.41 644.33,555.60 643.74,554.46 642.67,555.07 628.61,562.49 630.29,566.30"/>
    <poly id="106746440" type="building" color="255,230,230" fill="1" layer="-1.00" shape="642.76,634.57 645.03,642.01 656.30,638.61 657.40,638.27 655.15,630.83 642.76,634.57"/>
    <poly id="106746441" type="building" color="255,230,230" fill="1" layer="-1.00" shape="648.72,657.41 659.74,654.09 657.49,646.65 646.46,649.98 645.17,650.37 647.42,657.80 648.72,657.41"/>
    <poly id="106746442" type="building" color="255,230,230" fill="1" layer="-1.00" shape="556.64,467.77 565.14,460.55 547.57,439.99 539.07,447.20 556.64,467.77"/>
    <poly id="106746443" type="building" color="255,230,230" fill="1" layer="-1.00" shape="641.39,626.28 643.80,634.25 655.15,630.83 656.26,630.49 653.85,622.52 641.39,626.28"/>
    <poly id="106746444" type="building" color="255,230,230" fill="1" layer="-1.00" shape="666.30,683.45 664.29,674.22 649.96,677.31 651.96,686.55 666.30,683.45"/>
    <poly id="106746445" type="building" color="255,230,230" fill="1" layer="-1.00" shape="659.33,601.30 656.42,593.37 655.86,591.84 651.01,593.61 651.57,595.14 644.76,597.61 647.66,605.55 659.33,601.30"/>
    <poly id="106746446" type="building" color="255,230,230" fill="1" layer="-1.00" shape="573.83,487.29 583.06,479.76 576.20,471.42 575.07,472.35 566.98,478.94 573.83,487.29"/>
    <poly id="106746447" type="building" color="255,230,230" fill="1" layer="-1.00" shape="674.48,624.02 676.60,630.12 689.93,625.54 687.81,619.43 674.48,624.02"/>
    <poly id="106746448" type="building" color="255,230,230" fill="1" layer="-1.00" shape="644.12,642.28 646.46,649.98 657.49,646.65 658.63,646.30 656.30,638.61 644.12,642.28"/>
    <poly id="107726631" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="1076.85,38.43 946.12,42.66 832.78,44.32 828.95,44.08 825.22,42.70 820.24,39.60 813.94,35.05 809.13,31.17 787.63,10.27 780.27,5.85 774.66,4.36 768.79,3.93 677.40,11.77 673.55,10.80 669.98,8.85 667.06,5.85 664.41,0.86 626.39,-84.60 612.62,-104.65 603.83,-137.01 694.56,-160.18 763.03,-165.86 812.38,-147.78 1050.12,-91.78 1056.36,-89.37 1062.40,-86.14 1068.98,-81.32 1073.32,-77.30 1077.83,-71.99 1080.78,-65.44 1088.29,-36.20 1091.46,-25.32 1092.21,-22.44 1093.41,-18.03 1100.48,11.70 1100.49,20.42 1100.49,23.35 1099.38,29.26 1096.70,33.25 1092.12,36.35 1088.14,37.97 1081.13,38.48 1076.85,38.43"/>
    <poly id="107906547" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="797.66,-187.09 786.59,-198.35 776.94,-203.17 761.94,-198.83 749.85,-195.28 739.86,-193.45 731.63,-191.82 705.59,-184.21 716.58,-184.29 737.77,-184.44 744.17,-183.45 755.71,-181.69 801.80,-173.37 823.62,-167.46 911.30,-141.88 935.41,-134.56 937.27,-139.85 874.20,-155.95 820.73,-170.63 811.60,-174.42 804.38,-179.70 797.66,-187.09"/>
    <poly id="107906563" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="841.81,-148.03 931.12,-125.96 932.40,-128.62 922.36,-132.38 838.24,-153.68 789.71,-163.30 751.00,-172.41 738.83,-172.32 720.34,-167.25 725.80,-157.55 748.13,-162.41 763.68,-165.52 765.41,-159.60 780.88,-162.05 784.49,-150.44 800.97,-153.41 811.75,-154.65 825.05,-152.17 841.81,-148.03"/>
    <poly id="107906569" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="767.92,13.79 771.81,13.83 775.60,14.61 779.18,16.12 782.39,18.30 785.12,21.06 787.26,24.29 788.73,27.87 789.47,31.68 789.46,35.54 788.69,39.34 787.20,42.91 785.05,46.14 782.30,48.87 779.08,51.03 775.49,52.52 771.68,53.28 770.39,50.75 769.74,49.84 768.85,49.35 767.79,49.30 766.58,49.38 765.63,49.18 764.86,48.70 764.35,47.93 764.21,47.03 764.46,46.16 773.66,30.28 769.14,29.13 761.91,33.49 747.81,37.50 740.55,36.58 727.19,33.94 710.88,28.97 700.85,25.92 694.57,26.35 689.09,27.76 686.78,33.83 686.17,30.51 687.12,26.79 689.16,24.05 691.65,22.30 694.72,20.48 698.69,19.23 723.05,17.15 761.67,13.93 767.92,13.79"/>
    <poly id="107906576" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="677.72,28.82 672.73,17.71 678.43,18.25 683.52,18.02 679.83,22.35 677.72,28.82"/>
    <poly id="107906584" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="686.78,33.83 689.09,27.76 694.57,26.35 700.85,25.92 710.88,28.97 727.19,33.94 740.55,36.58 747.81,37.50 761.91,33.49 769.14,29.13 758.69,49.55 731.58,43.29 686.78,33.83"/>
    <poly id="107906586" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="816.95,143.50 803.05,141.28 784.42,142.00 762.65,141.96 743.57,136.23 729.18,126.55 719.94,117.05 713.55,108.29 712.94,105.36 715.11,106.51 720.27,114.30 726.80,122.08 739.81,131.57 747.69,135.81 758.30,138.47 767.33,139.58 775.76,138.54 780.65,136.35 785.91,132.01 791.36,126.10 794.26,120.02 795.78,113.16 795.15,106.91 793.31,97.93 787.18,90.15 777.81,82.61 767.65,76.37 768.58,74.03 775.91,77.51 787.73,86.04 798.22,97.10 798.83,101.21 799.85,105.51 804.20,110.37 815.87,123.58 819.65,131.77 826.38,139.93 827.58,143.06 827.80,145.20 824.08,147.00 816.95,143.50"/>
    <poly id="107907635" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="776.54,129.81 783.57,125.56 786.09,121.43 788.98,114.66 789.32,107.32 787.70,100.00 783.44,93.57 767.36,81.17 766.02,80.10 764.92,82.08 733.48,67.41 701.79,61.78 707.38,74.18 722.90,77.09 726.82,77.37 736.34,78.08 744.60,81.34 755.82,86.05 761.95,87.18 770.65,88.78 776.36,91.48 779.13,95.07 781.83,101.31 781.19,108.07 779.59,117.76 774.44,125.03 770.35,128.29 762.70,128.05 755.43,126.93 749.42,123.16 745.68,121.43 742.37,124.88 753.01,130.76 760.67,132.27 771.36,131.99 776.54,129.81"/>
    <poly id="107907650" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="731.42,116.34 722.82,107.90 715.19,96.13 711.31,89.21 711.10,87.45 711.68,86.08 712.96,85.68 714.43,86.65 714.55,90.07 721.24,91.13 720.12,100.59 726.02,102.31 725.38,107.98 734.60,108.50 733.59,118.58 731.42,116.34"/>
    <poly id="107907691" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="747.52,144.11 730.18,135.43 713.88,119.41 706.45,107.92 692.00,77.52 682.73,56.55 674.80,55.37 720.41,153.95 741.30,203.26 746.61,201.41 739.03,183.01 741.14,171.23 748.86,167.57 764.42,162.27 779.31,160.21 790.78,159.63 801.47,160.05 806.09,160.69 808.92,158.52 809.68,154.61 806.90,151.20 784.26,153.12 764.14,151.61 747.52,144.11"/>
    <poly id="107909138" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="479.79,61.83 477.20,61.82 474.17,62.30 470.17,63.59 458.10,67.79 451.02,70.93 441.50,74.06 440.19,74.95 481.02,62.73 481.20,62.38 480.86,61.90 479.79,61.83"/>
    <poly id="107909139" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="586.15,37.31 596.38,37.63 601.24,38.00 611.62,39.30 599.62,39.62 594.10,40.18 593.46,40.00 591.34,39.34 588.64,38.66 586.18,38.03 585.89,37.81 585.97,37.47 586.15,37.31"/>
    <poly id="107909140" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="438.98,80.45 437.57,75.76 440.19,74.95 481.02,62.73 467.74,70.84 458.55,74.43 438.98,80.45"/>
    <poly id="107909141" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="624.39,60.11 612.55,50.42 600.74,42.88 613.88,43.96 640.98,48.06 643.57,53.13 643.60,57.82 641.27,60.77 636.97,62.96 630.10,62.62 624.39,60.11"/>
    <poly id="107909142" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="250.92,143.82 242.12,147.21 243.84,148.92 495.51,347.59 497.02,344.85 501.31,341.89 507.96,339.68 507.94,336.36 504.73,326.41 501.32,316.26 495.42,314.55 490.50,311.65 485.92,302.68 483.80,301.34 476.87,318.02 250.92,143.82"/>
    <poly id="107909143" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="225.41,118.06 173.14,76.92 121.24,35.64 72.32,-1.16 66.26,0.96 59.89,3.91 69.13,10.58 218.80,129.08 221.98,130.15 228.42,125.41 227.82,123.07 225.41,118.06"/>
    <poly id="107909144" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="668.90,111.03 654.08,95.68 622.92,72.64 600.68,61.86 577.48,54.40 547.64,51.87 536.26,51.56 544.87,48.77 560.73,45.33 575.25,44.82 588.59,45.31 593.69,45.66 600.58,48.36 613.99,59.21 628.39,69.28 635.26,71.57 643.49,69.56 648.56,65.22 651.07,59.33 650.61,50.73 655.95,51.42 665.16,84.54 670.24,102.39 672.37,110.19 668.90,111.03"/>
    <poly id="107909145" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="301.94,119.97 312.71,116.96 313.78,116.07 313.97,115.29 313.66,113.05 313.16,112.17 311.99,111.99 283.01,120.21 205.66,142.35 202.47,144.38 201.31,146.14 201.71,147.91 203.51,148.86 207.53,147.77 301.94,119.97"/>
    <poly id="107909146" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="406.47,88.89 404.87,84.60 361.62,98.41 364.82,99.60 367.94,99.93 371.06,99.82 374.38,99.10 406.47,88.89"/>
    <poly id="107909764" type="building" color="255,230,230" fill="1" layer="-1.00" shape="336.28,130.15 380.02,117.03 383.00,126.92 339.26,140.03 336.28,130.15"/>
    <poly id="107909765" type="building" color="255,230,230" fill="1" layer="-1.00" shape="474.30,288.77 467.38,267.31 471.24,266.07 478.63,263.70 485.55,285.16 474.30,288.77"/>
    <poly id="107909766" type="building" color="255,230,230" fill="1" layer="-1.00" shape="321.19,143.53 318.77,135.18 309.05,137.99 311.47,146.33 321.19,143.53"/>
    <poly id="107909767" type="building" color="255,230,230" fill="1" layer="-1.00" shape="300.94,150.95 300.76,149.42 311.47,146.33 309.05,137.99 290.03,143.47 293.15,153.52 333.51,186.26 337.87,180.91 300.94,150.95"/>
    <poly id="107909768" type="building" color="255,230,230" fill="1" layer="-1.00" shape="509.28,139.98 518.56,140.81 525.51,141.44 522.03,179.78 518.59,216.55 502.33,215.04 502.51,212.72 502.74,209.77 503.20,204.02 507.08,164.23 508.04,153.68 509.28,139.98"/>
    <poly id="107909769" type="building" color="255,230,230" fill="1" layer="-1.00" shape="502.07,258.36 490.76,213.84 502.33,215.04 518.59,216.55 514.27,253.74 509.32,255.62 505.24,257.17 502.07,258.36"/>
    <poly id="107909771" type="building" color="255,230,230" fill="1" layer="-1.00" shape="465.56,228.50 458.32,230.91 471.24,266.07 478.63,263.70 465.56,228.50"/>
    <poly id="107909774" type="building" color="255,230,230" fill="1" layer="-1.00" shape="409.89,200.08 404.42,181.86 402.02,182.57 397.31,166.84 399.81,166.09 398.77,162.61 420.69,156.07 424.58,169.02 427.36,178.31 413.23,182.52 419.02,201.83 411.12,204.18 409.89,200.08"/>
    <poly id="107909775" type="building" color="255,230,230" fill="1" layer="-1.00" shape="421.81,211.35 419.02,201.83 413.23,182.52 427.36,178.31 435.20,176.03 443.74,204.89 421.81,211.35"/>
    <poly id="107909776" type="building" color="255,230,230" fill="1" layer="-1.00" shape="497.07,193.00 484.58,152.15 472.52,155.81 485.01,196.67 497.07,193.00"/>
    <poly id="108951383" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-579.42,580.92 -577.50,569.11 -592.60,566.66 -594.52,578.47 -579.42,580.92"/>
    <poly id="108951384" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-643.84,594.98 -645.09,590.86 -640.83,589.57 -642.42,584.33 -646.61,585.59 -647.91,581.31 -661.81,585.48 -657.68,599.14 -643.84,594.98"/>
    <poly id="108951385" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-607.98,543.85 -599.75,542.75 -599.47,544.82 -596.22,544.38 -595.32,551.10 -601.29,551.90 -602.50,553.13 -606.64,553.85 -607.98,543.85"/>
    <poly id="108951386" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-594.52,578.47 -579.42,580.92 -581.18,591.74 -596.29,589.29 -595.49,584.38 -600.09,583.64 -599.12,577.73 -594.52,578.47"/>
    <poly id="108951387" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-575.05,554.05 -587.16,552.09 -587.00,549.36 -590.77,549.74 -591.06,541.59 -574.59,539.39 -572.93,541.03 -575.05,554.05"/>
    <poly id="108951388" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-657.68,599.14 -652.22,617.20 -648.34,616.02 -640.53,613.68 -638.38,613.03 -643.84,594.98 -657.68,599.14"/>
    <poly id="108951389" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-654.12,548.94 -640.22,547.26 -638.77,559.15 -642.27,559.57 -642.11,560.94 -646.89,561.53 -647.10,559.80 -652.71,560.48 -653.00,558.13 -654.12,548.94"/>
    <poly id="108951390" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-621.51,545.65 -607.98,543.85 -606.64,553.85 -606.39,555.68 -619.93,557.49 -621.51,545.65"/>
    <poly id="108951393" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-666.10,571.30 -671.49,553.45 -669.45,550.80 -654.12,548.94 -653.00,558.13 -658.65,558.79 -655.92,568.61 -666.10,571.30"/>
    <poly id="108951394" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-598.42,604.96 -600.19,615.80 -585.49,618.17 -583.72,607.33 -598.42,604.96"/>
    <poly id="108951395" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-600.19,615.80 -585.49,618.17 -587.37,629.74 -602.07,627.37 -600.19,615.80"/>
    <poly id="108951396" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-633.14,547.20 -621.51,545.65 -619.93,557.49 -619.79,558.53 -631.42,560.09 -633.14,547.20"/>
    <poly id="108951397" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-647.91,581.31 -650.77,572.04 -664.62,576.20 -661.81,585.48 -647.91,581.31"/>
    <poly id="108951398" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-587.16,552.09 -588.87,562.62 -576.76,564.58 -575.05,554.05 -587.16,552.09"/>
    <poly id="108951399" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-583.72,607.33 -582.01,596.86 -596.71,594.48 -598.42,604.96 -583.72,607.33"/>
    <poly id="109268943" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-680.92,517.47 -670.64,514.50 -667.56,526.25 -666.18,526.24 -665.11,535.05 -675.46,536.29 -680.92,517.47"/>
    <poly id="109268944" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-631.01,530.97 -619.02,529.53 -620.51,517.20 -632.50,518.64 -631.01,530.97"/>
    <poly id="109268945" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-660.93,534.55 -648.73,533.09 -650.15,521.26 -662.35,522.73 -660.93,534.55"/>
    <poly id="109268946" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-578.31,504.89 -579.51,511.85 -577.98,524.61 -569.35,523.58 -566.07,507.36 -578.31,504.89"/>
    <poly id="109268947" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-648.73,533.09 -636.52,531.62 -637.94,519.80 -650.15,521.26 -648.73,533.09"/>
    <poly id="109268948" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-619.02,529.53 -607.03,528.09 -608.51,515.77 -620.51,517.20 -619.02,529.53"/>
    <poly id="109268949" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-607.03,528.09 -595.03,526.65 -596.51,514.32 -608.51,515.77 -607.03,528.09"/>
    <poly id="109268950" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-590.59,526.12 -577.98,524.61 -579.51,511.85 -592.12,513.37 -590.59,526.12"/>
    <poly id="109440945" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-631.42,579.32 -617.65,577.67 -618.59,569.98 -632.35,571.63 -631.42,579.32"/>
    <poly id="109440967" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-637.09,581.13 -633.70,592.31 -629.97,591.30 -631.42,579.32 -637.09,581.13"/>
    <poly id="109440986" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-618.59,569.98 -618.65,568.95 -606.09,567.15 -607.61,575.64 -607.77,576.55 -617.65,577.67 -618.59,569.98"/>
    <poly id="109440988" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-632.35,571.63 -633.33,563.49 -641.65,566.08 -637.09,581.13 -631.42,579.32 -632.35,571.63"/>
    <poly id="109442818" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-671.16,483.99 -645.01,476.51 -646.77,469.89 -647.30,470.06 -672.92,478.01 -672.29,480.11 -671.16,483.99"/>
    <poly id="109442819" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-649.75,407.55 -636.09,403.54 -632.33,416.25 -631.57,418.81 -636.70,420.32 -637.47,417.71 -646.01,420.22 -649.75,407.55"/>
    <poly id="109442820" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-579.75,386.94 -565.88,382.86 -562.33,394.86 -567.11,396.37 -566.73,397.68 -571.42,399.06 -571.90,397.45 -576.25,398.73 -576.60,397.58 -579.75,386.94"/>
    <poly id="109442821" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-624.19,400.02 -623.41,399.80 -607.84,395.21 -604.08,407.90 -605.24,408.25 -617.17,411.87 -620.39,412.83 -624.19,400.02"/>
    <poly id="109442822" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-680.92,517.47 -684.43,505.32 -674.16,502.37 -670.64,514.50 -680.92,517.47"/>
    <poly id="109442823" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-678.19,415.96 -664.44,411.88 -660.65,424.68 -665.02,425.91 -664.62,427.25 -669.59,428.72 -669.93,427.57 -674.33,428.88 -674.74,427.52 -678.19,415.96"/>
    <poly id="109442827" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-597.60,486.79 -598.17,482.28 -598.96,476.09 -592.12,474.46 -590.47,488.28 -597.60,486.79"/>
    <poly id="109442828" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-607.84,395.21 -593.58,391.02 -590.45,401.60 -589.88,403.53 -594.66,404.94 -594.23,406.38 -599.24,407.86 -599.61,406.59 -604.08,407.90 -607.84,395.21"/>
    <poly id="109442829" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-635.11,507.70 -622.83,506.20 -624.35,493.81 -636.63,495.30 -635.11,507.70"/>
    <poly id="109442830" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-565.88,382.86 -554.29,379.44 -550.81,391.21 -552.51,391.61 -551.96,393.47 -556.73,394.87 -557.18,393.35 -562.33,394.86 -565.88,382.86"/>
    <poly id="109442832" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-636.09,403.54 -624.19,400.02 -620.39,412.83 -632.33,416.25 -636.09,403.54"/>
    <poly id="109442833" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-599.46,466.17 -600.59,455.52 -591.68,452.92 -588.56,452.01 -587.44,455.83 -591.17,457.05 -593.52,455.88 -591.69,463.79 -599.46,466.17"/>
    <poly id="109442834" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-658.23,493.15 -646.16,489.73 -649.09,479.44 -661.16,482.87 -658.23,493.15"/>
    <poly id="109442835" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-622.83,506.20 -610.56,504.71 -612.07,492.32 -624.35,493.81 -622.83,506.20"/>
    <poly id="109442836" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-554.29,379.44 -541.36,375.64 -538.08,386.72 -537.72,388.11 -541.80,389.31 -541.44,390.51 -545.86,391.81 -546.42,389.91 -550.81,391.21 -554.29,379.44"/>
    <poly id="109442837" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-689.11,489.17 -692.56,477.29 -680.22,473.74 -677.91,481.73 -672.29,480.11 -671.16,483.99 -676.73,485.60 -689.11,489.17"/>
    <poly id="109442838" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-664.44,411.88 -649.75,407.55 -646.01,420.22 -651.03,421.84 -650.63,423.18 -653.80,424.11 -655.07,424.49 -655.47,423.15 -660.65,424.68 -664.44,411.88"/>
    <poly id="109442839" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-593.58,391.02 -579.75,386.94 -576.60,397.58 -581.33,398.98 -580.91,400.40 -585.50,401.74 -585.93,400.28 -590.45,401.60 -593.58,391.02"/>
    <poly id="109442840" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-658.36,511.08 -661.39,500.50 -654.07,498.41 -655.11,494.78 -644.33,491.71 -643.30,495.30 -639.92,494.34 -637.19,503.90 -645.86,506.38 -645.04,509.23 -650.52,510.79 -651.04,509.00 -658.36,511.08"/>
    <poly id="109442841" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-596.06,498.93 -597.60,486.79 -590.47,488.28 -589.23,488.53 -591.66,499.40 -596.06,498.93"/>
    <poly id="109442843" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-541.36,375.64 -522.73,370.16 -517.92,378.16 -528.34,392.07 -533.52,388.18 -531.05,384.77 -538.08,386.72 -541.36,375.64"/>
    <poly id="109442843#1" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-541.36,375.64 -522.73,370.16 -517.92,378.16 -528.34,392.07 -533.52,388.18 -531.05,384.77 -538.08,386.72 -541.36,375.64"/>
    <poly id="109442843#2" type="tourism" color="207,245,201" fill="1" layer="-2.00" shape="-541.36,375.64 -522.73,370.16 -517.92,378.16 -528.34,392.07 -533.52,388.18 -531.05,384.77 -538.08,386.72 -541.36,375.64"/>
    <poly id="109442845" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-610.56,504.71 -598.28,503.21 -599.80,490.82 -612.07,492.32 -610.56,504.71"/>
    <poly id="111347923" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-463.81,541.17 -458.76,540.35 -458.16,544.03 -456.42,543.75 -455.78,547.63 -458.22,548.04 -457.48,552.55 -461.83,553.26 -463.81,541.17"/>
    <poly id="111347924" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-552.76,669.16 -537.38,669.07 -537.46,654.91 -552.83,654.99 -552.76,669.16"/>
    <poly id="111347925" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-481.41,646.32 -481.38,649.29 -475.79,649.22 -475.82,646.25 -481.41,646.32"/>
    <poly id="111347927" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-500.41,609.35 -485.13,604.89 -487.09,598.07 -487.79,595.39 -503.43,600.41 -502.58,602.69 -500.41,609.35"/>
    <poly id="111347928" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-437.28,603.99 -437.75,608.96 -438.49,616.86 -438.59,617.96 -424.53,619.28 -423.22,605.29 -437.28,603.99"/>
    <poly id="111347929" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-535.90,588.51 -541.97,587.71 -541.19,579.20 -536.15,579.07 -534.85,579.02 -535.22,583.16 -535.90,588.51"/>
    <poly id="111347930" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-438.49,616.86 -460.13,614.30 -458.93,602.24 -449.90,602.30 -450.58,607.54 -437.75,608.96 -438.49,616.86"/>
    <poly id="111347932" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-545.72,627.00 -543.79,626.45 -544.74,623.15 -537.61,621.11 -533.50,635.42 -542.55,638.02 -545.72,627.00"/>
    <poly id="111347933" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-611.04,602.82 -601.02,603.87 -600.56,598.92 -610.88,597.22 -611.04,602.82"/>
    <poly id="111347935" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-532.16,567.93 -516.70,565.79 -515.97,570.55 -515.86,573.85 -530.65,577.87 -532.16,567.93"/>
    <poly id="111347937" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-556.77,569.29 -558.50,582.18 -545.44,583.93 -543.99,573.16 -543.71,571.03 -556.77,569.29"/>
    <poly id="111347939" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-618.07,625.87 -617.75,618.74 -611.47,619.58 -610.69,619.68 -611.64,627.10 -618.07,625.87"/>
    <poly id="111347941" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-511.19,608.10 -512.05,605.71 -502.58,602.69 -500.41,609.35 -509.82,612.21 -511.19,608.10"/>
    <poly id="111347942" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-537.38,669.07 -522.00,668.99 -522.08,654.82 -537.46,654.91 -537.38,669.07"/>
    <poly id="111347943" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-441.81,652.19 -443.20,667.08 -429.14,668.39 -427.74,653.50 -441.81,652.19"/>
    <poly id="111347944" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-529.32,583.77 -515.04,582.62 -515.62,576.45 -515.86,573.85 -530.65,577.87 -534.85,579.02 -535.22,583.16 -529.32,583.77"/>
    <poly id="111347945" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-617.75,618.74 -617.50,613.11 -609.57,614.30 -609.96,617.79 -611.25,617.62 -611.47,619.58 -617.75,618.74"/>
    <poly id="111347947" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-607.77,576.55 -609.84,589.60 -605.76,590.18 -604.81,590.31 -602.24,576.61 -607.61,575.64 -607.77,576.55"/>
    <poly id="111347948" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-488.07,646.38 -481.41,646.32 -475.82,646.25 -475.88,640.51 -488.13,640.63 -488.07,646.38"/>
    <poly id="111347949" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-438.59,617.96 -440.11,634.12 -426.05,635.43 -424.53,619.28 -438.59,617.96"/>
    <poly id="111347950" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-487.06,579.01 -487.65,573.18 -474.15,571.22 -473.06,578.61 -478.76,579.51 -486.88,580.79 -487.06,579.01"/>
    <poly id="111347951" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-501.55,580.88 -502.32,575.01 -515.62,576.45 -515.04,582.62 -501.55,580.88"/>
    <poly id="111347952" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-509.63,624.07 -509.67,619.00 -509.72,613.19 -518.61,615.62 -518.15,624.18 -509.63,624.07"/>
    <poly id="111347953" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-470.92,593.08 -473.06,578.61 -478.76,579.51 -476.84,594.91 -470.92,593.08"/>
    <poly id="111347954" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-525.13,617.41 -526.68,612.45 -511.19,608.10 -509.82,612.21 -509.72,613.19 -518.61,615.62 -525.13,617.41"/>
    <poly id="111347955" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-616.84,602.21 -617.11,588.74 -610.68,589.58 -610.76,592.48 -610.88,597.22 -611.04,602.82 -616.84,602.21"/>
    <poly id="111347956" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-499.68,668.68 -479.86,668.51 -479.98,654.71 -499.80,654.88 -499.68,668.68"/>
    <poly id="111347957" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-502.39,568.45 -504.37,555.70 -490.64,553.58 -488.67,566.34 -502.39,568.45"/>
    <poly id="111347958" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-531.80,599.93 -529.32,583.77 -535.22,583.16 -535.90,588.51 -537.56,599.06 -531.80,599.93"/>
    <poly id="111347959" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-519.24,634.62 -519.35,624.19 -518.15,624.18 -509.63,624.07 -509.54,634.51 -519.24,634.62"/>
    <poly id="111347960" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-540.96,612.30 -538.91,598.85 -537.56,599.06 -531.80,599.93 -533.84,613.37 -534.83,613.22 -540.96,612.30"/>
    <poly id="111347961" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-522.00,668.99 -506.62,668.90 -506.70,654.73 -522.08,654.82 -522.00,668.99"/>
    <poly id="111347962" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-485.13,604.89 -469.83,600.44 -470.92,593.08 -476.84,594.91 -487.09,598.07 -485.13,604.89"/>
    <poly id="111347963" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-440.11,634.12 -441.81,652.19 -427.74,653.50 -426.05,635.43 -440.11,634.12"/>
    <poly id="111347965" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-463.61,668.36 -451.33,668.26 -451.45,654.46 -463.73,654.57 -463.61,668.36"/>
    <poly id="111347967" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-509.67,619.00 -503.91,618.96 -503.74,611.55 -509.72,613.19 -509.67,619.00"/>
    <poly id="111347970" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-436.29,593.47 -437.28,603.99 -423.22,605.29 -422.23,594.78 -436.29,593.47"/>
    <poly id="111347972" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-596.06,498.93 -595.33,505.84 -590.37,505.71 -589.29,499.65 -591.66,499.40 -596.06,498.93"/>
    <poly id="111347973" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-540.96,612.30 -541.77,618.40 -535.10,615.93 -534.83,613.22 -540.96,612.30"/>
    <poly id="111347974" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-515.04,582.62 -514.51,588.41 -486.45,584.97 -486.88,580.79 -487.06,579.01 -501.55,580.88 -515.04,582.62"/>
    <poly id="111347975" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-479.86,668.51 -463.61,668.36 -463.73,654.57 -479.98,654.71 -479.86,668.51"/>
    <poly id="111347976" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-532.56,557.32 -533.27,552.20 -527.88,551.46 -528.02,550.49 -519.22,549.28 -518.38,555.38 -532.56,557.32"/>
    <poly id="111347978" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-517.52,560.53 -532.99,562.51 -532.16,567.93 -516.70,565.79 -517.52,560.53"/>
    <poly id="111347980" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-518.61,615.62 -525.13,617.41 -531.32,619.10 -531.28,624.33 -519.35,624.19 -518.15,624.18 -518.61,615.62"/>
    <poly id="111347981" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-536.15,579.07 -537.22,572.04 -543.99,573.16 -543.71,571.03 -543.54,569.82 -532.16,567.93 -530.65,577.87 -534.85,579.02 -536.15,579.07"/>
    <poly id="111347982" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-555.04,556.38 -556.77,569.29 -543.71,571.03 -543.54,569.82 -541.97,558.12 -555.04,556.38"/>
    <poly id="111347986" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-504.06,651.97 -497.53,652.04 -497.39,640.39 -503.93,640.31 -504.06,651.97"/>
    <poly id="111347987" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-436.29,593.47 -445.46,592.62 -444.07,577.87 -416.77,580.41 -418.15,595.16 -422.23,594.78 -436.29,593.47"/>
    <poly id="111735851" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-539.18,503.22 -542.18,520.85 -521.15,517.63 -522.09,509.92 -531.43,510.86 -529.64,505.09 -539.18,503.22"/>
    <poly id="111735853" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-520.14,430.35 -515.37,420.24 -503.50,425.52 -508.56,435.22 -520.14,430.35"/>
    <poly id="111735855" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-426.81,393.34 -428.17,379.65 -441.72,381.00 -440.35,394.69 -426.81,393.34"/>
    <poly id="111735857" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-461.36,362.63 -471.31,370.56 -462.82,380.94 -453.38,374.06 -454.15,372.70 -461.36,362.63"/>
    <poly id="111735859" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-428.17,379.65 -429.28,368.51 -439.38,369.51 -442.83,369.85 -441.72,381.00 -428.17,379.65"/>
    <poly id="111735861" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-447.69,473.55 -453.08,473.59 -453.06,477.06 -447.66,477.02 -447.69,473.55"/>
    <poly id="111735862" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-524.30,441.03 -520.14,430.35 -508.56,435.22 -509.72,438.48 -504.74,440.41 -506.79,445.67 -509.80,444.50 -510.54,446.36 -524.30,441.03"/>
    <poly id="111735865" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-429.28,368.51 -431.38,347.53 -433.47,346.31 -446.70,352.09 -441.80,361.50 -439.91,360.63 -439.38,369.51 -429.28,368.51"/>
    <poly id="111735867" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-497.33,450.93 -491.40,452.84 -491.03,451.71 -481.91,455.04 -474.61,434.52 -470.25,422.21 -467.31,418.63 -479.76,407.91 -483.36,412.78 -486.77,410.54 -491.84,417.73 -486.71,421.58 -488.86,427.54 -491.21,426.83 -492.26,430.24 -490.08,430.90 -497.33,450.93"/>
    <poly id="111735870" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-432.94,488.64 -433.05,473.44 -446.71,473.54 -447.69,473.55 -447.66,477.02 -447.57,488.75 -444.48,488.72 -432.94,488.64"/>
    <poly id="111735873" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-516.67,486.44 -516.93,473.71 -510.83,473.59 -510.57,486.32 -512.72,486.35 -516.67,486.44"/>
    <poly id="111735875" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-424.77,413.73 -426.81,393.34 -440.35,394.69 -438.32,415.08 -424.77,413.73"/>
    <poly id="111735876" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-475.30,373.69 -484.80,382.01 -475.86,391.09 -467.65,383.02 -475.30,373.69"/>
    <poly id="111735878" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-444.28,502.72 -444.33,509.27 -454.83,509.66 -455.95,500.45 -450.01,500.28 -449.68,502.97 -444.28,502.72"/>
    <poly id="111735880" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-521.52,475.48 -523.74,487.29 -535.53,485.20 -533.37,473.32 -521.52,475.48"/>
    <poly id="111735883" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-535.53,485.20 -537.55,496.49 -525.74,498.58 -523.74,487.29 -535.53,485.20"/>
    <poly id="111735884" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-526.17,445.96 -530.25,458.46 -516.95,462.45 -513.40,450.32 -526.17,445.96"/>
    <poly id="111735885" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-530.25,458.46 -532.60,468.84 -519.30,471.70 -516.95,462.45 -530.25,458.46"/>
    <poly id="111735889" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-461.36,362.63 -450.10,355.80 -443.81,366.35 -454.15,372.70 -461.36,362.63"/>
    <poly id="111735892" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-484.80,382.01 -494.58,392.82 -485.04,400.39 -475.86,391.09 -484.80,382.01"/>
    <poly id="111735893" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-496.29,414.60 -497.48,413.77 -501.40,419.32 -510.46,412.98 -498.97,396.69 -488.73,403.88 -496.29,414.60"/>
    <poly id="111735894" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-491.21,426.83 -495.58,423.38 -491.84,417.73 -486.71,421.58 -488.86,427.54 -491.21,426.83"/>
    <poly id="111738115" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-552.03,440.22 -546.91,426.98 -558.57,422.29 -563.48,436.10 -552.03,440.22"/>
    <poly id="111738116" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-631.57,418.81 -627.18,433.70 -633.68,435.60 -638.08,420.73 -636.70,420.32 -631.57,418.81"/>
    <poly id="111738117" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-555.34,450.38 -552.03,440.22 -563.48,436.10 -566.85,447.23 -555.34,450.38"/>
    <poly id="111738118" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-670.62,458.17 -673.02,458.86 -671.03,465.26 -650.47,459.30 -652.37,452.82 -670.62,458.17"/>
    <poly id="111738119" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-660.65,424.68 -658.14,433.10 -655.36,442.66 -654.28,446.34 -653.42,449.27 -646.91,447.35 -653.80,424.11 -655.07,424.49 -655.47,423.15 -660.65,424.68"/>
    <poly id="111738120" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-561.69,480.02 -559.09,466.90 -570.75,464.25 -571.83,469.91 -577.09,468.90 -577.75,472.29 -581.25,471.61 -582.07,475.78 -561.69,480.02"/>
    <poly id="111738121" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-653.42,449.27 -646.91,447.35 -644.54,446.65 -640.55,459.56 -638.35,467.10 -646.77,469.89 -647.30,470.06 -650.47,459.30 -652.37,452.82 -653.42,449.27"/>
    <poly id="111738122" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-600.11,425.17 -595.15,441.48 -591.68,452.92 -588.56,452.01 -573.23,447.79 -580.77,420.85 -582.01,421.13 -600.11,425.17"/>
    <poly id="111738123" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-673.44,431.33 -668.05,429.68 -665.49,437.99 -670.19,439.42 -670.88,439.64 -672.45,434.57 -673.44,431.33"/>
    <poly id="111738124" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-566.07,507.36 -563.65,495.43 -576.25,492.90 -578.31,504.89 -566.07,507.36"/>
    <poly id="111738125" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-559.09,466.90 -556.39,455.18 -568.06,452.51 -570.75,464.25 -559.09,466.90"/>
    <poly id="111738126" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-629.10,473.72 -627.49,481.64 -634.27,483.03 -634.88,483.16 -636.47,475.28 -629.10,473.72"/>
    <poly id="111738127" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-655.36,442.66 -660.50,444.14 -659.42,447.85 -654.28,446.34 -655.36,442.66"/>
    <poly id="111738128" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-528.34,392.07 -532.02,397.63 -536.02,394.65 -537.72,388.11 -538.08,386.72 -531.05,384.77 -533.52,388.18 -528.34,392.07"/>
    <poly id="111738129" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-629.10,473.72 -636.47,475.28 -644.95,477.08 -645.01,476.51 -646.77,469.89 -630.94,464.65 -629.10,473.72"/>
    <poly id="111738130" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-661.10,444.31 -663.87,434.76 -658.14,433.10 -655.36,442.66 -660.50,444.14 -661.10,444.31"/>
    <poly id="111738131" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-612.45,446.74 -609.01,445.69 -608.69,446.67 -599.67,443.96 -599.98,442.94 -595.15,441.48 -600.11,425.17 -601.95,419.10 -605.24,408.25 -617.17,411.87 -612.62,427.51 -614.27,428.01 -615.04,437.07 -612.45,446.74"/>
    <poly id="111738132" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-627.49,481.64 -623.08,480.74 -621.53,489.72 -625.67,490.56 -625.97,489.11 -627.49,481.64"/>
    <poly id="111738133" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-563.67,490.34 -561.69,480.02 -582.07,475.78 -582.69,479.09 -578.38,479.93 -575.81,478.56 -574.15,480.66 -575.65,488.33 -563.67,490.34"/>
    <poly id="111738134" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-675.73,441.16 -681.87,443.00 -685.03,443.95 -686.61,438.84 -672.45,434.57 -670.88,439.64 -675.73,441.16"/>
    <poly id="111738135" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-609.94,505.58 -604.38,504.90 -603.33,513.42 -608.89,514.10 -609.94,505.58"/>
    <poly id="111738136" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-670.88,439.64 -675.73,441.16 -671.71,454.55 -670.62,458.17 -652.37,452.82 -653.42,449.27 -654.28,446.34 -659.42,447.85 -667.05,450.13 -670.19,439.42 -670.88,439.64"/>
    <poly id="111738137" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-635.34,444.22 -625.12,441.17 -619.56,460.89 -630.94,464.65 -638.35,467.10 -640.55,459.56 -638.85,459.01 -639.12,458.12 -631.92,455.77 -635.34,444.22"/>
    <poly id="111738138" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-619.56,460.89 -617.56,471.29 -629.10,473.72 -630.94,464.65 -619.56,460.89"/>
    <poly id="111738139" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-546.91,426.98 -542.19,416.47 -553.79,411.21 -558.57,422.29 -546.91,426.98"/>
    <poly id="111738140" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-600.11,425.17 -582.01,421.13 -583.74,415.08 -601.95,419.10 -600.11,425.17"/>
    <poly id="111738141" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-551.23,406.75 -540.22,412.79 -534.39,402.24 -536.97,400.81 -536.23,399.47 -541.52,396.57 -542.30,397.97 -545.43,396.25 -551.23,406.75"/>
    <poly id="111738142" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-627.49,481.64 -625.97,489.11 -632.75,490.34 -634.27,483.03 -627.49,481.64"/>
    <poly id="113320138" type="building" color="255,230,230" fill="1" layer="-1.00" shape="4.83,619.06 11.38,619.41 32.90,620.44 33.52,607.49 6.94,606.22 6.63,612.60 5.15,612.52 4.83,619.06"/>
    <poly id="113323447" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-2.69,685.40 -0.98,654.04 17.80,655.07 17.93,652.53 28.54,653.11 26.69,687.00 4.26,685.79 -2.69,685.40"/>
    <poly id="113323448" type="building" color="255,230,230" fill="1" layer="-1.00" shape="3.23,648.05 17.86,648.92 31.68,649.74 32.68,634.57 4.14,632.86 3.23,648.05"/>
    <poly id="113415156" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-622.18,374.99 -603.75,369.53 -607.26,357.54 -625.60,362.94 -622.18,374.99"/>
    <poly id="113415160" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-634.13,378.54 -622.18,374.99 -625.60,362.94 -625.82,362.18 -637.74,365.84 -634.13,378.54"/>
    <poly id="113415164" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-631.13,344.41 -622.92,341.98 -621.22,347.72 -611.68,344.90 -614.85,334.24 -619.41,335.59 -621.38,328.94 -634.57,332.83 -633.59,336.13 -631.13,344.41"/>
    <poly id="113415170" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-583.54,339.53 -587.01,327.79 -596.33,330.54 -592.85,342.28 -583.54,339.53"/>
    <poly id="113415172" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-677.33,376.93 -672.24,375.46 -673.98,369.48 -679.07,370.95 -677.33,376.93"/>
    <poly id="113415177" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-645.69,381.98 -634.13,378.54 -637.74,365.84 -649.43,369.43 -645.69,381.98"/>
    <poly id="113415181" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-673.48,390.17 -659.54,386.13 -663.39,372.89 -672.24,375.46 -677.33,376.93 -676.99,378.09 -673.48,390.17"/>
    <poly id="113415182" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-653.99,363.96 -654.93,364.24 -656.19,360.01 -652.57,358.93 -651.30,363.16 -653.99,363.96"/>
    <poly id="113415187" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-591.36,365.86 -578.62,362.08 -577.40,360.26 -581.98,344.78 -589.44,346.98 -586.87,355.60 -593.81,357.65 -591.36,365.86"/>
    <poly id="113415190" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-611.68,344.90 -611.18,346.60 -604.22,344.54 -607.89,332.19 -614.85,334.24 -611.68,344.90"/>
    <poly id="113415191" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-673.48,390.17 -687.69,394.45 -691.01,383.22 -691.21,382.20 -676.99,378.09 -673.48,390.17"/>
    <poly id="113415193" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-654.14,353.65 -652.57,358.93 -651.30,363.16 -651.12,363.78 -646.04,362.28 -649.06,352.14 -654.14,353.65"/>
    <poly id="113415194" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-652.87,367.93 -653.99,363.96 -651.30,363.16 -651.12,363.78 -650.12,367.12 -652.87,367.93"/>
    <poly id="113415195" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-587.01,327.79 -590.02,317.64 -603.66,321.66 -601.74,328.18 -599.61,327.56 -598.53,331.19 -596.33,330.54 -587.01,327.79"/>
    <poly id="113415198" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-666.17,362.96 -669.28,352.55 -655.67,348.51 -654.14,353.65 -652.57,358.93 -656.19,360.01 -666.17,362.96"/>
    <poly id="113415199" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-687.29,343.36 -673.38,339.07 -671.24,345.97 -677.90,348.06 -678.46,351.69 -684.19,353.44 -687.29,343.36"/>
    <poly id="113415200" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-603.75,369.53 -591.36,365.86 -593.81,357.65 -594.92,353.91 -607.26,357.54 -603.75,369.53"/>
    <poly id="113415203" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-590.02,317.64 -593.07,307.32 -608.56,311.88 -607.44,315.64 -605.61,315.10 -603.66,321.66 -590.02,317.64"/>
    <poly id="113415205" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-643.19,347.97 -631.13,344.41 -633.59,336.13 -645.65,339.69 -643.19,347.97"/>
    <poly id="113415206" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-659.54,386.13 -645.69,381.98 -649.43,369.43 -650.12,367.12 -652.87,367.93 -663.94,371.22 -663.39,372.89 -659.54,386.13"/>
    <poly id="113415207" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-654.14,353.65 -649.06,352.14 -654.49,333.87 -659.59,335.39 -655.67,348.51 -654.14,353.65"/>
    <poly id="113446106" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-653.84,233.96 -648.18,232.19 -646.43,237.81 -652.08,239.57 -653.84,233.96"/>
    <poly id="113446109" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-648.91,289.81 -652.03,279.77 -653.52,274.99 -659.42,276.91 -655.01,291.61 -648.91,289.81"/>
    <poly id="113446111" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-684.08,293.71 -672.62,290.35 -675.08,281.99 -678.99,268.74 -690.45,272.10 -684.08,293.71"/>
    <poly id="113446122" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-652.03,279.77 -653.52,274.99 -658.09,260.29 -637.22,253.84 -631.09,273.55 -640.46,276.33 -652.03,279.77"/>
    <poly id="113446127" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-640.46,276.33 -652.03,279.77 -648.91,289.81 -647.20,295.33 -646.04,298.94 -634.41,295.32 -638.87,281.31 -640.46,276.33"/>
    <poly id="113446128" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-676.77,222.81 -665.28,219.42 -660.97,233.98 -667.98,236.05 -668.41,234.59 -672.88,235.91 -676.77,222.81"/>
    <poly id="113446129" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-660.43,236.01 -653.84,233.96 -652.08,239.57 -650.14,245.79 -656.72,247.84 -660.43,236.01"/>
    <poly id="113446130" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-683.37,243.22 -675.24,240.82 -675.87,238.67 -672.36,237.64 -672.88,235.91 -676.77,222.81 -688.41,226.25 -683.37,243.22"/>
    <poly id="113446131" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-615.58,287.71 -604.35,284.41 -609.45,267.13 -620.64,270.45 -619.13,275.76 -615.58,287.71"/>
    <poly id="113446135" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-641.94,226.45 -630.22,223.05 -628.14,230.16 -616.77,226.86 -622.49,207.27 -645.58,213.98 -641.94,226.45"/>
    <poly id="113446137" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-609.45,267.13 -614.55,249.87 -625.77,253.17 -620.64,270.45 -609.45,267.13"/>
    <poly id="113446140" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-620.64,270.45 -631.09,273.55 -640.46,276.33 -638.87,281.31 -619.13,275.76 -620.64,270.45"/>
    <poly id="113446142" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-625.77,253.17 -630.56,236.93 -619.33,233.64 -614.55,249.87 -625.77,253.17"/>
    <poly id="113446145" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-680.94,305.32 -669.95,302.07 -671.60,296.52 -682.59,299.78 -680.94,305.32"/>
    <poly id="113446146" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-655.01,291.61 -661.07,293.40 -665.43,278.86 -659.42,276.91 -655.01,291.61"/>
    <poly id="113446152" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-665.43,278.86 -675.08,281.99 -678.99,268.74 -679.41,267.15 -658.09,260.29 -653.52,274.99 -659.42,276.91 -665.43,278.86"/>
    <poly id="113446153" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-669.95,302.07 -647.20,295.33 -648.91,289.81 -655.01,291.61 -661.07,293.40 -671.60,296.52 -669.95,302.07"/>
    <poly id="113495261" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-465.13,327.98 -451.50,323.90 -455.05,312.12 -455.32,311.22 -468.90,315.29 -465.13,327.98"/>
    <poly id="113495262" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-559.11,356.11 -547.80,352.73 -551.02,342.05 -553.33,342.75 -555.66,334.98 -564.66,337.68 -559.11,356.11"/>
    <poly id="113495263" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-578.89,285.88 -568.38,282.79 -565.75,291.67 -565.20,293.54 -562.45,292.73 -561.15,297.15 -564.15,298.04 -564.27,297.65 -574.51,300.66 -578.89,285.88"/>
    <poly id="113495264" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-486.92,305.36 -490.68,292.74 -476.84,288.65 -473.08,301.27 -486.92,305.36"/>
    <poly id="113495265" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-565.75,291.67 -552.83,287.86 -558.51,268.67 -547.01,265.28 -539.28,291.38 -546.14,293.40 -549.25,294.31 -550.63,294.73 -550.82,294.10 -561.15,297.15 -562.45,292.73 -565.20,293.54 -565.75,291.67"/>
    <poly id="113495266" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-517.84,343.76 -506.17,340.27 -510.23,326.79 -521.89,330.28 -517.84,343.76"/>
    <poly id="113495267" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-541.40,309.41 -537.42,322.85 -543.72,324.71 -547.71,311.26 -541.40,309.41"/>
    <poly id="113495268" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-565.85,331.55 -553.55,328.08 -557.65,313.62 -569.96,317.10 -565.85,331.55"/>
    <poly id="113495269" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-524.41,307.11 -516.66,304.85 -512.82,317.92 -520.57,320.18 -524.41,307.11"/>
    <poly id="113495270" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-492.63,336.21 -478.97,332.12 -483.02,318.64 -496.69,322.74 -492.63,336.21"/>
    <poly id="113495271" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-478.97,332.12 -465.13,327.98 -468.90,315.29 -469.14,314.49 -475.23,316.29 -483.02,318.64 -478.97,332.12"/>
    <poly id="113495272" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-569.96,317.10 -573.62,304.24 -561.31,300.75 -557.65,313.62 -569.96,317.10"/>
    <poly id="113495273" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-547.80,352.73 -533.77,348.53 -537.19,337.15 -551.23,341.34 -551.02,342.05 -547.80,352.73"/>
    <poly id="113495274" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-524.41,307.11 -526.17,300.96 -518.46,298.69 -516.66,304.85 -524.41,307.11"/>
    <poly id="113495275" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-486.92,305.36 -500.54,309.40 -504.23,296.76 -490.68,292.74 -486.92,305.36"/>
    <poly id="113495276" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-541.40,309.41 -546.14,293.40 -549.25,294.31 -547.66,299.68 -550.86,300.63 -547.71,311.26 -541.40,309.41"/>
    <poly id="113495277" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-478.16,306.47 -472.07,304.66 -469.14,314.49 -475.23,316.29 -478.16,306.47"/>
    <poly id="113495278" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-526.17,300.96 -529.76,288.80 -508.36,282.50 -507.54,285.40 -504.84,294.67 -512.06,296.80 -518.46,298.69 -526.17,300.96"/>
    <poly id="113495279" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-453.66,300.12 -440.87,297.60 -437.36,315.32 -436.57,319.31 -451.50,323.90 -455.05,312.12 -451.49,311.24 -453.66,300.12"/>
    <poly id="113495280" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-506.17,340.27 -492.63,336.21 -496.69,322.74 -510.23,326.79 -506.17,340.27"/>
    <poly id="113495281" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-500.54,309.40 -507.68,311.51 -512.06,296.80 -504.84,294.67 -504.23,296.76 -500.54,309.40"/>
    <poly id="113495282" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-533.77,348.53 -517.84,343.76 -521.89,330.28 -537.82,335.05 -537.19,337.15 -533.77,348.53"/>
    <poly id="113622792" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-502.79,250.21 -491.01,246.80 -487.14,259.89 -493.43,261.63 -493.12,262.69 -496.61,263.70 -497.00,262.37 -499.06,262.95 -502.79,250.21"/>
    <poly id="113622793" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-536.54,276.93 -540.20,264.59 -539.48,264.38 -539.86,263.10 -519.75,257.20 -519.36,258.50 -518.97,258.39 -515.31,270.78 -521.63,272.63 -521.32,273.65 -524.72,274.65 -525.00,273.71 -527.38,274.41 -527.11,275.32 -530.13,276.19 -530.44,275.14 -536.54,276.93"/>
    <poly id="113622794" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-458.01,288.92 -456.35,288.59 -456.92,285.71 -443.74,283.12 -440.87,297.60 -453.66,300.12 -454.03,298.25 -456.08,298.65 -458.01,288.92"/>
    <poly id="113622795" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-459.83,270.75 -446.78,268.12 -449.84,253.06 -462.02,255.52 -462.89,255.70 -459.83,270.75"/>
    <poly id="113622796" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-471.32,253.32 -474.67,242.10 -453.69,236.13 -449.84,253.06 -462.02,255.52 -463.19,250.99 -471.32,253.32"/>
    <poly id="113622797" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-507.54,285.40 -495.30,281.95 -496.91,276.26 -509.15,279.71 -508.36,282.50 -507.54,285.40"/>
    <poly id="113622798" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-495.37,275.81 -493.71,281.50 -481.94,278.19 -483.49,272.47 -495.37,275.81"/>
    <poly id="113622799" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-495.37,275.81 -496.91,276.26 -495.30,281.95 -493.71,281.50 -495.37,275.81"/>
    <poly id="113622800" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-514.56,253.62 -502.79,250.21 -499.06,262.95 -505.14,264.71 -504.81,265.84 -508.47,266.90 -508.86,265.61 -510.89,266.19 -514.56,253.62"/>
    <poly id="113622801" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-457.46,283.31 -459.04,283.63 -461.01,273.95 -459.22,273.59 -459.83,270.75 -446.78,268.12 -443.74,283.12 -456.92,285.71 -457.46,283.31"/>
    <poly id="113677276" type="building" color="255,230,230" fill="1" layer="-1.00" shape="134.38,601.49 127.70,591.49 107.71,561.58 136.08,542.72 150.29,563.99 153.74,561.69 161.53,573.35 159.84,574.48 161.46,576.90 159.97,577.89 163.03,582.46 138.33,598.86 134.38,601.49"/>
    <poly id="113677278" type="building" color="255,230,230" fill="1" layer="-1.00" shape="260.09,418.31 289.87,410.03 290.33,411.66 290.85,413.57 293.47,408.97 295.41,408.42 297.02,409.15 298.27,407.56 328.62,399.12 328.23,397.73 325.61,388.36 324.21,383.35 323.96,382.44 255.35,401.51 255.90,403.47 253.02,404.26 255.08,411.63 258.00,410.82 260.09,418.31"/>
    <poly id="113677280" type="building" color="255,230,230" fill="1" layer="-1.00" shape="224.32,479.34 222.81,473.91 211.93,476.95 210.53,477.34 209.58,479.06 206.57,477.39 203.56,475.72 206.56,470.33 205.38,466.12 240.73,456.26 245.55,473.42 261.52,468.97 277.43,464.54 282.61,463.09 287.65,481.07 282.47,482.52 277.09,484.02 278.67,489.67 268.15,492.60 269.91,498.88 259.32,501.83 260.89,507.42 250.58,510.30 252.14,515.85 235.84,520.40 224.32,479.34"/>
    <poly id="113677281" type="building" color="255,230,230" fill="1" layer="-1.00" shape="232.92,406.76 192.43,418.01 200.55,446.83 202.39,453.02 214.36,449.58 211.74,440.27 211.28,438.56 213.92,437.87 239.74,431.17 234.05,410.81 232.92,406.76"/>
    <poly id="113677283" type="building" color="255,230,230" fill="1" layer="-1.00" shape="284.20,448.29 280.27,432.60 277.65,433.24 276.92,430.30 289.97,427.06 290.57,429.49 288.62,429.97 288.74,430.45 309.83,425.20 312.05,434.10 306.46,435.50 308.17,442.35 284.20,448.29"/>
    <poly id="114161708" type="building" color="255,230,230" fill="1" layer="-1.00" shape="238.14,641.82 250.75,658.40 260.81,671.61 274.73,661.21 267.92,652.41 270.89,649.92 261.75,637.65 258.69,639.88 251.98,631.34 246.68,635.95 245.28,637.17 238.14,641.82"/>
    <poly id="114161712" type="building" color="255,230,230" fill="1" layer="-1.00" shape="50.27,686.62 36.29,685.79 36.14,688.31 29.33,687.91 29.72,681.18 34.19,681.45 34.95,668.64 53.26,669.73 52.62,680.43 52.32,685.52 50.34,685.41 50.27,686.62"/>
    <poly id="114161713" type="building" color="255,230,230" fill="1" layer="-1.00" shape="43.28,631.56 43.65,624.51 46.68,624.66 46.82,622.10 45.92,622.05 46.47,611.73 50.90,611.97 50.82,613.46 60.91,613.98 60.47,622.44 63.76,622.60 63.60,625.68 62.31,625.61 61.95,632.53 43.28,631.56"/>
    <poly id="115560737" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-683.81,623.06 -683.21,628.01 -681.01,646.25 -667.73,644.66 -670.53,621.47 -683.81,623.06"/>
    <poly id="115560761" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-681.01,646.25 -678.21,669.44 -664.94,667.85 -667.73,644.66 -681.01,646.25"/>
    <poly id="115564189" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-632.27,636.87 -627.48,652.36 -640.17,656.27 -644.97,640.78 -632.27,636.87"/>
    <poly id="115564190" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-627.48,652.36 -625.65,657.94 -619.47,658.04 -619.52,670.51 -635.84,670.38 -640.17,656.27 -627.48,652.36"/>
    <poly id="115564195" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-644.97,640.78 -632.27,636.87 -637.72,619.27 -638.87,619.62 -646.57,621.99 -650.42,623.17 -644.97,640.78"/>
    <poly id="115564196" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-605.18,667.08 -603.66,650.65 -592.01,651.71 -593.52,668.14 -605.18,667.08"/>
    <poly id="115564200" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-646.57,621.99 -648.34,616.02 -640.53,613.68 -638.87,619.62 -646.57,621.99"/>
    <poly id="115564201" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-610.76,592.48 -606.23,592.98 -605.76,590.18 -609.84,589.60 -610.68,589.58 -610.76,592.48"/>
    <poly id="115564203" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-603.66,650.65 -602.16,634.22 -590.51,635.27 -592.01,651.71 -603.66,650.65"/>
    <poly id="115564205" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-545.63,534.96 -552.24,542.95 -553.99,551.63 -543.18,553.36 -542.07,548.13 -538.79,544.36 -534.01,543.90 -535.17,533.56 -545.63,534.96"/>
    <poly id="115564781" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-539.32,24.48 -545.68,2.85 -553.65,5.18 -559.44,6.87 -588.74,15.44 -585.93,25.01 -582.60,36.34 -580.50,35.72 -578.18,35.04 -575.86,34.36 -547.50,26.08 -547.29,26.81 -539.32,24.48"/>
    <poly id="115564781#1" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-539.32,24.48 -545.68,2.85 -553.65,5.18 -559.44,6.87 -588.74,15.44 -585.93,25.01 -582.60,36.34 -580.50,35.72 -578.18,35.04 -575.86,34.36 -547.50,26.08 -547.29,26.81 -539.32,24.48"/>
    <poly id="118174485" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-451.34,-475.64 -382.79,-462.73 -372.24,-460.51 -353.22,-457.74 -339.99,-456.52 -310.78,-455.90 -287.48,-456.79 -270.55,-458.00 -252.14,-459.53 -237.54,-462.61 -215.49,-467.09 -195.70,-472.60 -181.85,-476.57 -158.91,-481.80 -131.20,-486.16 -114.66,-488.52 -102.30,-491.43 -92.63,-495.08 -69.42,-503.58 -52.46,-511.15 -26.57,-520.11 -9.47,-526.48 8.39,-531.83 22.40,-535.35 40.44,-536.23 19.82,-539.94 2.29,-544.11 -18.45,-546.92 -30.68,-547.87 -47.76,-546.70 -59.21,-545.95 -79.45,-545.89 -108.49,-546.44 -141.05,-547.53 -169.31,-548.18 -183.08,-549.97 -198.27,-552.24 -206.69,-553.51 -214.13,-553.36 -221.96,-553.21 -230.46,-553.62 -241.85,-557.44 -275.08,-570.42 -307.15,-582.37 -332.05,-592.28 -357.05,-601.61 -384.92,-613.49 -402.07,-621.08 -421.12,-628.83 -439.32,-636.12 -455.05,-646.20 -478.06,-658.30 -491.49,-663.72 -516.11,-673.74 -533.90,-680.16 -552.56,-686.18 -575.14,-690.95 -606.04,-693.93 -632.63,-692.07 -637.44,-691.87 -639.25,-696.84 -672.23,-699.14 -679.20,-699.49 -726.22,-701.67 -743.66,-701.79 -764.97,-701.11 -802.42,-699.02 -844.76,-696.39 -864.39,-695.72 -885.33,-696.85 -908.47,-699.77 -926.24,-705.83 -920.60,-723.83 -900.21,-717.35 -876.01,-711.86 -853.25,-708.05 -833.60,-705.49 -811.76,-705.27 -792.27,-705.93 -766.06,-707.93 -766.07,-709.86 -787.13,-711.12 -815.87,-717.99 -844.99,-725.88 -862.84,-729.23 -882.49,-731.65 -902.77,-731.63 -922.55,-733.67 -956.15,-741.08 -1430.92,-923.03 -1492.94,-946.87 -1543.47,-966.18 -1577.55,-980.48 -1605.55,-992.63 -1625.28,-1004.97 -1644.26,-1020.41 -1663.16,-1043.32 -1693.84,-1083.92 -1676.13,-1049.40 -1659.48,-1018.36 -1644.35,-999.02 -1630.42,-983.81 -1612.59,-967.97 -1598.69,-957.38 -1590.77,-953.06 -1592.56,-949.57 -1608.52,-958.99 -1625.54,-972.00 -1640.12,-986.18 -1651.84,-999.35 -1664.00,-1017.04 -1673.81,-1033.06 -1681.68,-1048.58 -1697.23,-1072.16 -1710.56,-1091.26 -1724.24,-1107.51 -1734.05,-1121.86 -1749.93,-1138.23 -1767.60,-1150.98 -1792.90,-1165.72 -1791.13,-1169.73 -1814.72,-1180.62 -1844.54,-1194.17 -1874.10,-1207.59 -1901.71,-1220.13 -1924.82,-1233.74 -1951.81,-1249.50 -1985.43,-1269.72 -2016.04,-1286.87 -2043.81,-1302.51 -2080.27,-1322.44 -2115.69,-1342.00 -2155.09,-1357.41 -2182.66,-1365.70 -2181.17,-1373.44 -2200.61,-1380.24 -2230.54,-1392.50 -2251.39,-1399.17 -2271.09,-1406.61 -2296.88,-1416.33 -2351.56,-1437.55 -2404.35,-1456.49 -2483.44,-1487.87 -2488.76,-1489.98 -2570.19,-1525.77 -2607.59,-1542.45 -2640.08,-1556.93 -2673.56,-1571.97 -2705.37,-1587.42 -2735.31,-1601.15 -2799.28,-1628.79 -2813.06,-1635.32 -2939.86,-1687.17 -3003.55,-1721.56 -3055.27,-1749.50 -3093.48,-1766.92 -3119.84,-1774.74 -3146.38,-1779.03 -3190.93,-1781.82 -3196.25,-1782.16 -3196.03,-1789.52 -3206.48,-1790.37 -3258.83,-1788.14 -3280.22,-1784.14 -3306.98,-1777.14 -3353.04,-1765.08 -3370.06,-1761.55 -3370.89,-1760.33 -3371.80,-1759.04 -3387.40,-1756.30 -3390.17,-1768.82 -3377.22,-1771.42 -3317.29,-1788.37 -3277.50,-1798.39 -3232.45,-1808.25 -3185.73,-1806.65 -3184.19,-1814.90 -3226.26,-1834.11 -3267.32,-1852.65 -3308.42,-1872.34 -3394.08,-1922.50 -3528.79,-2003.09 -3541.46,-2011.28 -3563.08,-2023.60 -3573.60,-2029.03 -3589.72,-2038.82 -3615.31,-2053.62 -3644.54,-2071.42 -3658.76,-2080.08 -3695.76,-2102.28 -3730.13,-2121.31 -3775.82,-2150.86 -3795.86,-2163.39 -3863.26,-2207.80 -3881.43,-2218.46 -3899.94,-2229.77 -3920.64,-2243.70 -3922.30,-2240.67 -3922.88,-2239.61 -3934.17,-2247.20 -3939.71,-2250.89 -3933.65,-2258.86 -3921.75,-2251.30 -3913.75,-2246.28 -3885.29,-2227.60 -3868.90,-2217.84 -3825.49,-2189.94 -3782.78,-2163.40 -3744.27,-2137.75 -3715.87,-2120.11 -3687.68,-2103.46 -3649.38,-2080.76 -3645.16,-2078.16 -3622.34,-2064.11 -3598.98,-2050.20 -3587.32,-2043.66 -3577.46,-2037.33 -3589.53,-2047.27 -3604.27,-2057.98 -3619.90,-2071.06 -3632.62,-2083.23 -3645.57,-2098.20 -3655.70,-2111.33 -3666.62,-2125.48 -3678.55,-2143.15 -3685.94,-2157.80 -3693.72,-2175.45 -3702.41,-2196.04 -3706.05,-2209.48 -3710.12,-2225.61 -3712.18,-2236.00 -3714.62,-2255.03 -3716.81,-2275.11 -3717.16,-2298.16 -3715.76,-2317.96 -3714.47,-2332.99 -3711.96,-2349.21 -3706.88,-2370.70 -3703.45,-2383.37 -3699.19,-2396.30 -3694.41,-2408.36 -3686.96,-2425.04 -3678.41,-2440.85 -3667.35,-2461.04 -3658.60,-2477.00 -3647.23,-2496.83 -3629.82,-2527.68 -3617.77,-2548.29 -3614.54,-2554.47 -3614.05,-2554.96 -3610.52,-2551.90 -3608.19,-2550.23 -3626.92,-2519.40 -3642.46,-2491.66 -3643.78,-2489.22 -3667.78,-2448.12 -3686.77,-2409.80 -3695.05,-2388.34 -3701.47,-2368.35 -3706.54,-2341.57 -3708.74,-2327.57 -3710.88,-2311.49 -3711.00,-2299.97 -3710.60,-2280.68 -3708.95,-2262.13 -3707.54,-2244.18 -3705.73,-2231.99 -3699.65,-2208.26 -3691.64,-2185.89 -3685.42,-2170.01 -3677.80,-2154.67 -3672.00,-2144.00 -3663.88,-2130.54 -3653.69,-2115.70 -3642.33,-2102.19 -3631.56,-2090.45 -3610.47,-2069.84 -3595.03,-2056.44 -3586.54,-2050.45 -3578.52,-2045.04 -3567.94,-2038.63 -3532.29,-2017.14 -3499.63,-1998.45 -3495.90,-2002.06 -3527.79,-2038.00 -3542.67,-2058.81 -3558.22,-2089.21 -3568.25,-2115.75 -3575.55,-2139.72 -3580.81,-2164.76 -3583.95,-2189.39 -3585.74,-2212.05 -3585.72,-2237.52 -3583.36,-2262.00 -3575.77,-2297.63 -3566.11,-2330.69 -3524.16,-2458.91 -3517.48,-2480.30 -3506.92,-2518.57 -3504.16,-2530.72 -3496.85,-2530.28 -3499.64,-2515.69 -3498.75,-2512.69 -3499.68,-2509.76 -3501.38,-2508.42 -3509.00,-2479.39 -3508.39,-2477.05 -3510.45,-2469.61 -3512.98,-2467.44 -3523.55,-2433.48 -3532.68,-2403.11 -3532.05,-2400.81 -3532.73,-2398.22 -3534.59,-2396.44 -3555.30,-2331.27 -3554.66,-2328.57 -3556.76,-2321.31 -3559.49,-2319.53 -3566.19,-2294.19 -3569.57,-2279.72 -3568.76,-2277.57 -3568.93,-2274.44 -3570.88,-2272.67 -3573.89,-2255.22 -3575.53,-2240.33 -3574.53,-2238.38 -3574.52,-2236.04 -3576.06,-2233.29 -3576.35,-2220.76 -3576.04,-2206.87 -3576.19,-2200.42 -3574.41,-2198.47 -3574.39,-2195.93 -3575.55,-2193.37 -3573.65,-2177.35 -3570.97,-2161.52 -3568.83,-2158.76 -3567.98,-2155.86 -3569.14,-2153.70 -3566.11,-2142.18 -3559.84,-2120.51 -3549.68,-2095.52 -3539.31,-2075.25 -3534.97,-2067.64 -3531.75,-2062.00 -3529.57,-2060.26 -3528.18,-2057.93 -3527.93,-2055.40 -3518.00,-2041.40 -3508.88,-2029.93 -3491.25,-2009.92 -3475.63,-1995.37 -3465.68,-1987.58 -3442.66,-1971.57 -3420.19,-1958.63 -3402.04,-1947.03 -3398.90,-1947.37 -3394.37,-1944.75 -3393.37,-1942.02 -3372.27,-1928.88 -3350.77,-1916.14 -3346.63,-1913.63 -3315.44,-1895.43 -3291.08,-1881.95 -3261.53,-1868.49 -3229.04,-1854.27 -3202.25,-1842.09 -3199.28,-1842.11 -3196.95,-1841.48 -3194.61,-1840.21 -3192.79,-1838.29 -3176.58,-1831.21 -3174.35,-1827.88 -3142.34,-1814.35 -3100.98,-1797.16 -3050.55,-1774.62 -2994.28,-1750.34 -2959.80,-1735.16 -2897.18,-1708.08 -2847.66,-1686.58 -2792.62,-1663.56 -2704.40,-1624.52 -2651.74,-1601.91 -2601.83,-1580.57 -2540.42,-1554.81 -2485.14,-1531.23 -2448.34,-1515.46 -2387.14,-1492.12 -2324.01,-1467.94 -2212.23,-1424.53 -2152.12,-1400.85 -2106.62,-1383.97 -2019.64,-1350.68 -1977.86,-1334.89 -1890.07,-1301.60 -1801.32,-1267.83 -1741.71,-1243.81 -1701.80,-1228.07 -1680.57,-1220.53 -1672.93,-1217.93 -1650.37,-1210.22 -1623.06,-1204.25 -1581.16,-1197.10 -1539.51,-1190.46 -1493.17,-1178.71 -1470.77,-1171.42 -1418.69,-1151.98 -1342.10,-1121.26 -1270.07,-1093.35 -1198.41,-1065.94 -1115.63,-1035.14 -1055.39,-1012.68 -975.86,-983.53 -913.01,-957.86 -855.24,-936.91 -799.13,-912.99 -758.53,-891.53 -712.32,-861.35 -677.03,-841.39 -627.80,-822.32 -573.39,-802.64 -517.04,-780.52 -507.35,-776.86 -489.86,-770.27 -454.73,-757.03 -353.42,-717.34 -281.90,-689.02 -200.28,-655.64 -159.75,-638.61 -138.18,-630.20 -122.86,-624.50 -92.73,-613.01 -17.71,-582.88 7.62,-573.32 29.85,-565.64 62.34,-555.03 84.76,-547.60 105.91,-541.18 126.03,-534.98 148.99,-529.17 215.71,-504.27 228.75,-501.61 245.66,-495.07 264.70,-486.62 290.89,-473.45 311.44,-461.78 336.59,-445.52 373.57,-420.04 396.90,-401.51 432.47,-372.70 450.71,-354.77 473.05,-331.64 485.41,-315.26 501.06,-293.99 517.36,-270.40 530.76,-244.44 537.78,-234.71 556.35,-198.25 557.57,-195.90 559.31,-192.57 566.33,-179.12 580.76,-151.50 586.79,-136.21 663.18,29.55 674.80,55.37 720.41,153.95 741.30,203.26 769.62,264.28 790.25,325.45 811.16,387.47 832.73,451.43 866.01,560.26 879.96,609.67 901.69,697.36 924.80,809.24 946.13,922.85 974.18,1015.57 999.44,1112.06 1000.90,1121.16 1022.41,1268.14 1031.98,1321.66 1037.99,1358.14 1042.95,1383.55 1040.90,1383.93 1038.02,1384.38 1029.54,1339.32 1028.56,1332.64 1026.88,1322.46 1017.42,1268.80 1011.42,1231.34 1009.02,1216.34 994.75,1116.82 994.31,1113.21 992.40,1111.35 985.40,1079.05 969.27,1018.97 940.10,922.27 919.95,808.04 896.26,699.31 895.90,697.65 873.73,611.04 844.10,510.41 835.22,511.60 835.37,532.11 835.75,584.52 833.77,609.37 831.59,638.16 829.35,673.74 825.72,729.40 822.11,729.40 820.45,729.40 822.72,678.47 823.06,675.28 822.70,666.82 826.46,614.42 828.23,570.63 827.03,518.49 823.02,478.80 814.23,430.36 797.66,376.89 780.66,331.83 764.46,288.63 757.13,269.00 752.17,270.14 749.45,270.77 743.78,259.93 732.86,238.11 714.58,199.78 711.18,188.58 705.47,175.80 697.43,159.20 686.40,142.23 678.15,130.30 672.58,123.55 664.75,113.95 639.14,92.27 617.64,76.39 601.90,68.29 587.74,63.51 571.62,59.32 561.02,57.84 548.85,56.95 524.14,57.52 536.26,51.56 547.64,51.87 577.48,54.40 600.68,61.86 622.92,72.64 654.08,95.68 668.90,111.03 672.37,110.19 670.24,102.39 665.16,84.54 655.95,51.42 654.82,47.34 644.61,25.77 563.53,-145.57 550.11,-175.29 545.27,-186.14 544.13,-188.44 543.10,-190.63 541.85,-193.10 523.61,-227.48 508.26,-248.58 480.63,-271.56 494.76,-274.85 468.16,-309.19 438.01,-342.88 414.56,-365.91 390.57,-387.60 367.16,-405.34 333.14,-429.25 311.42,-442.64 273.05,-464.07 232.72,-481.19 193.68,-495.57 157.67,-508.38 133.21,-516.10 121.86,-513.36 117.15,-510.72 116.12,-514.66 115.17,-518.30 114.47,-521.01 106.20,-519.04 105.53,-521.49 104.86,-524.00 95.25,-521.37 94.29,-524.40 93.29,-527.56 78.29,-530.68 65.63,-531.35 61.72,-531.37 45.52,-530.60 33.32,-529.63 21.95,-527.92 9.03,-525.63 -9.71,-519.60 -37.67,-508.92 -64.92,-497.66 -85.13,-490.23 -106.42,-483.52 -127.27,-478.91 -156.93,-474.96 -177.49,-471.69 -200.87,-465.42 -225.28,-458.55 -249.70,-453.75 -270.06,-452.45 -291.75,-451.64 -315.81,-450.62 -345.07,-451.16 -369.74,-451.29 -408.31,-451.89 -436.10,-455.18 -455.00,-458.30 -451.34,-475.64"/>
    <poly id="118703950" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="363.46,-163.24 354.78,-171.66 347.68,-181.61 344.39,-192.19 342.60,-207.14 342.61,-229.96 473.87,-273.32 477.30,-273.34 480.63,-271.56 508.26,-248.58 510.40,-235.21 510.27,-225.82 515.76,-216.25 519.64,-205.67 523.57,-190.31 525.85,-179.92 404.70,-143.08 397.39,-159.02 373.82,-152.07 363.46,-163.24"/>
    <poly id="118703950#1" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="363.46,-163.24 354.78,-171.66 347.68,-181.61 344.39,-192.19 342.60,-207.14 342.61,-229.96 473.87,-273.32 477.30,-273.34 480.63,-271.56 508.26,-248.58 510.40,-235.21 510.27,-225.82 515.76,-216.25 519.64,-205.67 523.57,-190.31 525.85,-179.92 404.70,-143.08 397.39,-159.02 373.82,-152.07 363.46,-163.24"/>
    <poly id="118703950#2" type="sport" color="79,230,125" fill="1" layer="-2.00" shape="363.46,-163.24 354.78,-171.66 347.68,-181.61 344.39,-192.19 342.60,-207.14 342.61,-229.96 473.87,-273.32 477.30,-273.34 480.63,-271.56 508.26,-248.58 510.40,-235.21 510.27,-225.82 515.76,-216.25 519.64,-205.67 523.57,-190.31 525.85,-179.92 404.70,-143.08 397.39,-159.02 373.82,-152.07 363.46,-163.24"/>
    <poly id="118703953" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="348.65,-125.33 303.91,-109.82 216.67,-79.96 208.48,-76.84 209.21,-74.90 273.05,-96.67 334.84,-116.48 379.44,-128.18 444.24,-144.22 482.69,-155.42 503.80,-161.57 550.11,-175.29 545.27,-186.14 544.13,-188.44 537.04,-186.56 536.50,-188.60 543.10,-190.63 541.85,-193.10 523.61,-227.48 508.26,-248.58 510.40,-235.21 510.27,-225.82 515.76,-216.25 519.64,-205.67 523.57,-190.31 525.85,-179.92 404.70,-143.08 348.65,-125.33"/>
    <poly id="118703955" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="338.16,-157.96 353.44,-162.67 356.39,-163.67 363.46,-163.24 373.82,-152.07 397.39,-159.02 404.70,-143.08 348.65,-125.33 345.95,-131.86 345.48,-133.48 344.57,-136.69 343.83,-139.27 340.61,-150.48 338.16,-157.96"/>
    <poly id="119746307" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-442.34,-155.72 -393.46,-169.95 -401.85,-198.58 -426.06,-191.53 -425.80,-190.62 -450.45,-183.44 -442.34,-155.72"/>
    <poly id="119746310" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-448.72,-119.85 -430.76,-125.00 -437.52,-148.46 -455.48,-143.31 -448.72,-119.85"/>
    <poly id="119746311" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-450.45,-183.44 -425.80,-190.62 -426.06,-191.53 -429.91,-204.66 -455.06,-197.33 -450.95,-183.29 -450.45,-183.44"/>
    <poly id="119746314" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-535.40,-108.47 -533.14,-111.71 -532.54,-111.31 -530.21,-114.66 -530.80,-115.07 -528.55,-118.28 -537.64,-124.60 -537.20,-125.22 -541.97,-128.53 -544.66,-124.68 -545.46,-125.23 -547.79,-121.88 -547.00,-121.33 -549.68,-117.48 -544.90,-114.17 -544.49,-114.77 -535.40,-108.47"/>
    <poly id="119746316" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-469.52,-110.39 -452.27,-115.34 -460.01,-142.17 -477.25,-137.20 -469.52,-110.39"/>
    <poly id="119746318" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-509.09,-100.88 -496.63,-104.54 -496.30,-105.89 -501.05,-122.00 -508.59,-147.56 -513.66,-164.73 -526.82,-160.87 -525.92,-157.80 -523.99,-151.30 -521.75,-143.71 -522.52,-143.48 -514.98,-117.91 -514.19,-118.15 -509.09,-100.88"/>
    <poly id="122047323" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-557.00,623.74 -551.73,622.59 -550.17,611.49 -562.77,609.65 -564.45,622.89 -557.00,623.74"/>
    <poly id="122047324" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-550.17,611.49 -548.53,600.32 -561.13,598.48 -562.77,609.65 -550.17,611.49"/>
    <poly id="122047325" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-559.50,587.38 -552.52,588.41 -552.43,587.79 -546.81,588.60 -548.53,600.32 -561.13,598.48 -559.50,587.38"/>
    <poly id="122047328" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-598.96,476.09 -615.20,479.35 -613.93,485.26 -598.17,482.28 -598.96,476.09"/>
    <poly id="122725417" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-569.06,60.55 -574.94,62.29 -576.90,62.88 -568.91,89.69 -561.06,87.37 -569.06,60.55"/>
    <poly id="122725418" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-603.05,116.68 -584.56,111.20 -579.76,109.78 -574.95,108.35 -571.19,107.23 -570.36,110.03 -560.64,142.61 -564.40,143.73 -569.21,145.15 -574.02,146.58 -592.50,152.05 -601.55,121.69 -603.05,116.68"/>
    <poly id="122725421" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-523.83,187.77 -522.66,191.47 -523.82,191.84 -521.55,198.98 -515.95,197.20 -518.16,190.19 -518.80,190.40 -519.81,187.20 -522.72,188.12 -522.93,187.48 -523.83,187.77"/>
    <poly id="122725422" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-542.12,122.79 -530.70,119.30 -529.08,124.58 -528.13,124.30 -527.51,126.31 -526.89,128.30 -527.84,128.60 -526.54,132.88 -533.05,134.78 -533.63,132.90 -538.56,134.40 -542.12,122.79"/>
    <poly id="122725423" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-592.83,208.13 -601.30,210.55 -605.33,196.88 -584.84,190.76 -581.41,202.22 -586.03,203.55 -586.75,201.06 -592.06,202.58 -591.12,205.84 -593.31,206.45 -592.83,208.13"/>
    <poly id="122725423#1" type="shop" color="237,199,255" fill="1" layer="-1.00" shape="-592.83,208.13 -601.30,210.55 -605.33,196.88 -584.84,190.76 -581.41,202.22 -586.03,203.55 -586.75,201.06 -592.06,202.58 -591.12,205.84 -593.31,206.45 -592.83,208.13"/>
    <poly id="122725424" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-491.07,231.28 -481.05,228.28 -480.25,228.74 -479.41,228.48 -478.97,227.50 -482.97,214.50 -485.14,215.17 -485.60,213.69 -489.91,215.03 -489.32,216.92 -494.99,218.69 -491.07,231.28"/>
    <poly id="122725425" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-530.01,209.19 -527.27,218.11 -521.40,216.32 -515.78,214.64 -511.18,213.16 -515.51,199.04 -520.95,200.71 -521.55,198.98 -525.33,200.07 -524.76,201.91 -531.60,204.00 -530.01,209.19"/>
    <poly id="122725426" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-590.32,-97.21 -618.09,-115.30 -629.15,-98.42 -624.46,-95.36 -627.00,-91.49 -621.90,-88.17 -628.39,-78.27 -624.71,-75.87 -628.14,-70.66 -613.83,-61.34 -612.49,-63.38 -596.60,-87.64 -590.32,-97.21"/>
    <poly id="122725427" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-545.17,54.01 -529.84,49.47 -522.00,75.78 -525.06,76.68 -523.99,80.27 -533.40,83.05 -534.47,79.48 -537.32,80.32 -545.17,54.01"/>
    <poly id="122725428" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-556.54,-61.31 -564.55,-58.93 -560.20,-44.40 -556.27,-45.57 -549.78,-47.51 -543.80,-49.29 -538.27,-50.93 -538.77,-52.61 -542.62,-65.46 -548.15,-63.81 -556.54,-61.31"/>
    <poly id="122725429" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-532.71,189.01 -532.10,191.07 -527.13,189.61 -527.37,188.80 -523.83,187.77 -522.93,187.48 -522.72,188.12 -519.81,187.20 -518.09,186.72 -518.66,184.75 -522.45,172.13 -536.49,176.31 -532.71,189.01"/>
    <poly id="122725430" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-598.36,-55.50 -588.31,-58.49 -589.05,-60.96 -585.06,-62.14 -584.33,-59.69 -574.74,-62.54 -569.37,-44.62 -592.99,-37.58 -598.36,-55.50"/>
    <poly id="122725431" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-592.32,241.81 -580.33,238.14 -580.61,237.24 -578.16,236.49 -579.26,232.90 -580.28,233.21 -581.72,228.53 -580.66,228.21 -581.55,225.35 -584.02,226.12 -584.25,224.76 -596.44,228.43 -592.32,241.81"/>
    <poly id="122725433" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-634.67,-25.73 -620.94,-25.84 -620.85,-12.87 -612.92,-12.93 -612.86,13.50 -612.63,23.44 -613.88,25.10 -615.36,25.89 -625.35,25.96 -625.21,37.72 -624.31,37.72 -624.20,49.40 -631.23,49.50 -631.47,19.81 -629.37,19.78 -629.33,13.40 -629.59,-8.21 -634.53,-8.17 -634.67,-25.73"/>
    <poly id="122725434" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-473.13,206.85 -475.20,207.42 -475.43,206.56 -476.90,206.32 -479.56,196.83 -478.04,195.63 -478.39,194.55 -477.01,194.14 -466.22,190.88 -465.18,195.11 -464.09,194.81 -462.78,199.55 -464.10,199.91 -462.95,204.05 -473.13,206.85"/>
    <poly id="122725435" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-597.97,31.12 -617.13,36.80 -618.60,37.23 -612.53,57.62 -603.87,86.66 -603.63,87.43 -589.24,83.16 -589.46,82.39 -594.27,66.26 -588.05,64.42 -597.97,31.12"/>
    <poly id="122725436" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-485.18,174.91 -488.97,162.15 -503.05,166.30 -499.28,179.01 -498.17,178.68 -497.93,179.48 -495.47,178.75 -495.80,177.65 -486.19,174.81 -486.07,175.18 -485.18,174.91"/>
    <poly id="122725437" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-474.27,226.64 -476.03,220.69 -475.35,220.49 -477.04,214.79 -472.57,213.46 -471.55,211.87 -473.13,206.85 -462.95,204.05 -462.13,207.14 -460.81,206.75 -458.62,214.14 -460.34,214.65 -458.18,221.91 -463.03,223.35 -462.85,223.97 -470.24,226.16 -470.44,225.50 -474.27,226.64"/>
    <poly id="122725438" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-491.57,186.52 -499.36,188.88 -500.74,184.34 -492.95,181.98 -491.57,186.52"/>
    <poly id="122725441" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-562.31,234.97 -568.71,236.79 -570.18,231.63 -563.77,229.81 -562.31,234.97"/>
    <poly id="122725442" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-511.18,213.16 -509.48,218.41 -514.08,219.89 -515.78,214.64 -511.18,213.16"/>
    <poly id="122725444" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-584.11,212.19 -584.82,209.88 -579.81,208.36 -579.11,210.67 -584.11,212.19"/>
    <poly id="122725445" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-508.77,-58.73 -508.37,-58.85 -499.81,-61.36 -502.85,-71.66 -511.81,-69.04 -508.77,-58.73"/>
    <poly id="122725445#1" type="historic" color="128,255,128" fill="1" layer="-1.00" shape="-508.77,-58.73 -508.37,-58.85 -499.81,-61.36 -502.85,-71.66 -511.81,-69.04 -508.77,-58.73"/>
    <poly id="122725446" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-565.91,276.66 -562.53,275.65 -564.41,269.46 -567.79,270.49 -565.91,276.66"/>
    <poly id="122725447" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-544.99,-17.96 -539.29,-19.66 -541.94,-28.50 -542.15,-29.21 -547.85,-27.51 -544.99,-17.96"/>
    <poly id="122725448" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-571.17,255.25 -553.62,250.00 -557.07,238.71 -574.59,244.03 -571.17,255.25"/>
    <poly id="122725449" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-420.65,88.05 -417.93,87.20 -415.51,94.96 -418.23,95.80 -420.65,88.05"/>
    <poly id="122725450" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-540.54,234.15 -544.10,222.26 -553.50,225.06 -549.94,236.94 -540.54,234.15"/>
    <poly id="122725451" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-523.12,118.74 -508.33,114.26 -504.61,126.33 -519.43,130.81 -523.12,118.74"/>
    <poly id="122725452" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-613.52,89.52 -607.14,110.96 -606.32,113.71 -605.24,117.33 -603.05,116.68 -584.56,111.20 -579.76,109.78 -574.95,108.35 -576.03,104.74 -576.84,101.98 -583.24,80.54 -588.05,64.42 -594.27,66.26 -589.46,82.39 -589.24,83.16 -603.63,87.43 -603.87,86.66 -613.52,89.52"/>
    <poly id="122725453" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-509.48,56.25 -514.61,38.87 -515.04,39.00 -516.01,35.69 -516.98,32.39 -516.56,32.26 -521.51,15.48 -515.47,13.71 -509.44,11.94 -504.49,28.72 -503.97,28.58 -502.03,35.19 -502.54,35.34 -497.41,52.72 -509.48,56.25"/>
    <poly id="122725455" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-504.00,235.15 -491.07,231.28 -494.99,218.69 -507.80,222.65 -504.00,235.15"/>
    <poly id="122725456" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-511.68,90.83 -510.22,86.95 -505.99,88.55 -505.32,88.80 -506.78,92.68 -508.57,92.00 -509.10,91.80 -510.91,91.13 -511.68,90.83"/>
    <poly id="122725458" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-553.79,206.49 -556.60,197.02 -551.71,195.58 -548.91,205.05 -553.79,206.49"/>
    <poly id="122725459" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-537.14,204.11 -539.50,196.08 -534.35,194.56 -532.00,202.58 -537.14,204.11"/>
    <poly id="122725460" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-496.71,206.47 -492.50,205.21 -493.39,202.27 -497.60,203.54 -496.71,206.47"/>
    <poly id="122725461" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-492.70,-5.68 -500.75,-33.00 -503.44,-42.11 -492.39,-45.34 -489.71,-36.24 -481.65,-8.92 -492.70,-5.68"/>
    <poly id="122725462" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-504.50,208.97 -506.87,200.66 -502.98,199.56 -501.54,204.71 -500.61,207.87 -504.50,208.97"/>
    <poly id="122725464" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-544.21,221.27 -545.98,215.43 -546.34,214.00 -540.94,212.41 -538.78,219.64 -544.21,221.27"/>
    <poly id="122725465" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-435.58,92.69 -420.65,88.05 -418.23,95.80 -416.98,99.82 -431.90,104.46 -435.58,92.69"/>
    <poly id="122725466" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-549.87,248.87 -537.31,245.12 -540.54,234.15 -549.94,236.94 -553.12,237.87 -549.87,248.87"/>
    <poly id="122725467" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-524.21,228.88 -529.05,230.28 -534.79,210.57 -530.01,209.19 -527.27,218.11 -524.21,228.88"/>
    <poly id="122725469" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-548.91,205.05 -551.71,195.58 -551.89,194.71 -546.29,193.05 -542.66,205.74 -548.30,207.41 -548.91,205.05"/>
    <poly id="122725470" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-581.41,202.22 -578.88,201.46 -577.35,206.59 -569.76,204.33 -574.77,187.75 -584.84,190.76 -581.41,202.22"/>
    <poly id="122725471" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-613.26,112.78 -619.65,91.33 -613.52,89.52 -607.14,110.96 -613.26,112.78"/>
    <poly id="122725472" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-622.29,128.94 -624.08,122.92 -605.24,117.33 -603.05,116.68 -601.55,121.69 -592.50,152.05 -618.79,159.84 -624.14,141.88 -618.46,140.21 -618.17,141.18 -614.92,140.22 -618.62,127.85 -622.29,128.94"/>
    <poly id="122725473" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-477.78,46.97 -482.90,29.57 -483.31,29.70 -485.26,23.09 -484.85,22.97 -489.80,6.19 -489.25,6.03 -477.65,2.63 -472.70,19.41 -472.40,19.32 -470.45,25.93 -470.76,26.01 -465.63,43.41 -477.78,46.97"/>
    <poly id="122725475" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-596.60,-87.64 -590.32,-97.21 -584.21,-93.23 -590.48,-83.66 -596.60,-87.64"/>
    <poly id="122725476" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-586.88,259.96 -571.17,255.25 -574.59,244.03 -578.80,245.41 -579.63,242.65 -591.03,246.02 -586.88,259.96"/>
    <poly id="122725477" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-625.24,-43.92 -613.83,-61.34 -612.49,-63.38 -606.38,-59.40 -619.13,-39.94 -625.24,-43.92"/>
    <poly id="122725477#1" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-625.24,-43.92 -613.83,-61.34 -612.49,-63.38 -606.38,-59.40 -619.13,-39.94 -625.24,-43.92"/>
    <poly id="122725478" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-500.61,207.87 -499.36,212.11 -495.40,210.95 -496.71,206.47 -497.60,203.54 -501.54,204.71 -500.61,207.87"/>
    <poly id="122725479" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-451.41,71.99 -448.73,68.13 -445.17,70.65 -447.50,73.89 -447.96,74.47 -448.72,74.53 -451.28,72.63 -451.41,71.99"/>
    <poly id="122725480" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-552.15,193.82 -551.89,194.71 -546.29,193.05 -532.71,189.01 -536.49,176.31 -555.67,182.05 -552.15,193.82"/>
    <poly id="122725481" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-527.27,218.11 -524.21,228.88 -520.84,240.18 -513.34,237.94 -518.19,221.49 -519.75,221.94 -521.40,216.32 -527.27,218.11"/>
    <poly id="122725482" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-545.98,215.43 -561.30,219.99 -564.39,209.66 -553.79,206.49 -548.91,205.05 -548.30,207.41 -546.34,214.00 -545.98,215.43"/>
    <poly id="122725483" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-570.61,230.35 -564.14,228.52 -563.77,229.81 -562.31,234.97 -558.34,233.85 -562.66,218.69 -573.10,221.65 -570.61,230.35"/>
    <poly id="122725484" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-544.99,-17.96 -547.85,-27.51 -548.63,-30.10 -558.90,-27.03 -571.42,-23.30 -580.54,-20.59 -585.06,-19.24 -584.75,-18.21 -581.69,-7.98 -581.42,-7.12 -544.99,-17.96"/>
    <poly id="122725485" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-528.40,-2.97 -529.45,-2.66 -528.63,0.07 -527.32,4.45 -512.90,0.16 -512.01,-0.10 -514.14,-7.21 -515.28,-6.87 -521.32,-27.07 -520.18,-27.41 -522.43,-34.95 -522.64,-34.90 -537.74,-30.40 -537.56,-29.79 -536.22,-25.31 -535.49,-22.85 -534.44,-23.16 -530.07,-8.54 -528.40,-2.97"/>
    <poly id="122725486" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-552.15,193.82 -564.78,197.61 -566.36,192.41 -567.13,192.64 -568.17,189.19 -567.24,188.90 -568.18,185.79 -555.67,182.05 -552.15,193.82"/>
    <poly id="122725487" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-518.66,184.75 -514.42,183.48 -514.01,184.85 -509.65,183.55 -510.05,182.19 -504.71,180.60 -508.51,167.95 -522.45,172.13 -518.66,184.75"/>
    <poly id="122725488" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-584.25,224.76 -585.30,221.28 -584.05,220.91 -585.49,216.16 -586.51,216.46 -587.64,212.70 -600.06,216.44 -596.44,228.43 -584.25,224.76"/>
    <poly id="122725489" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-581.69,-7.98 -593.60,-4.44 -596.66,-14.66 -584.75,-18.21 -581.69,-7.98"/>
    <poly id="122725490" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-504.00,235.15 -510.27,237.02 -511.27,233.74 -511.86,233.92 -512.95,230.30 -512.17,230.06 -513.85,224.49 -507.80,222.65 -504.00,235.15"/>
    <poly id="122725491" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-511.81,-69.04 -514.88,-79.46 -505.91,-82.08 -505.43,-80.45 -504.62,-80.69 -503.65,-77.43 -504.47,-77.19 -502.85,-71.66 -511.81,-69.04"/>
    <poly id="122725491#1" type="historic" color="128,255,128" fill="1" layer="-1.00" shape="-511.81,-69.04 -514.88,-79.46 -505.91,-82.08 -505.43,-80.45 -504.62,-80.69 -503.65,-77.43 -504.47,-77.19 -502.85,-71.66 -511.81,-69.04"/>
    <poly id="122725492" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-581.76,-24.67 -582.91,-24.33 -584.48,-23.86 -586.70,-31.31 -585.13,-31.78 -573.90,-35.12 -572.03,-35.68 -569.80,-28.23 -571.68,-27.67 -572.65,-27.38 -581.76,-24.67"/>
    <poly id="122725494" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-481.34,180.74 -480.56,183.32 -481.93,183.73 -479.84,190.58 -478.24,190.10 -477.01,194.14 -466.22,190.88 -470.32,177.40 -480.06,180.36 -481.34,180.74"/>
    <poly id="122725495" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-546.34,214.00 -540.94,212.41 -534.79,210.57 -530.01,209.19 -531.60,204.00 -532.00,202.58 -537.14,204.11 -542.66,205.74 -548.30,207.41 -546.34,214.00"/>
    <poly id="122803619" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-370.89,652.50 -368.65,630.21 -379.89,629.00 -391.76,627.74 -391.93,629.68 -393.29,629.56 -393.79,634.82 -392.83,634.91 -394.31,650.71 -395.86,650.57 -396.47,657.08 -388.64,657.81 -388.96,661.24 -370.89,652.50"/>
    <poly id="122803624" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-458.97,706.06 -468.29,706.22 -468.27,707.50 -471.71,707.56 -471.74,706.21 -480.85,706.37 -481.04,695.76 -459.15,695.40 -458.97,706.06"/>
    <poly id="122803643" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-379.89,629.00 -378.21,613.44 -390.08,612.17 -391.76,627.74 -379.89,629.00"/>
    <poly id="122835661" type="building" color="255,230,230" fill="1" layer="-1.00" shape="65.28,681.83 72.25,679.32 74.50,678.16 76.15,677.04 80.40,673.55 84.00,677.69 78.95,681.89 76.65,683.35 74.00,684.56 67.03,686.90 65.28,681.83"/>
    <poly id="122835662" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-251.56,599.61 -249.05,599.68 -249.07,600.67 -244.73,600.78 -244.70,599.41 -243.67,599.44 -243.65,598.30 -242.18,598.35 -241.91,588.04 -251.24,587.80 -251.56,599.61"/>
    <poly id="122835663" type="building" color="255,230,230" fill="1" layer="-1.00" shape="52.62,680.43 62.11,681.16 61.67,690.09 58.91,690.31 58.99,694.05 47.65,693.69 50.03,689.78 50.27,686.62 50.34,685.41 52.32,685.52 52.62,680.43"/>
    <poly id="122835664" type="building" color="255,230,230" fill="1" layer="-1.00" shape="77.20,262.13 98.29,255.96 98.67,257.26 108.37,254.43 94.27,206.52 92.24,207.11 90.97,202.80 81.78,205.49 81.30,203.84 76.77,205.16 78.98,212.66 89.39,248.01 74.33,252.41 77.20,262.13"/>
    <poly id="122835665" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-313.22,661.50 -313.22,660.92 -315.13,660.81 -315.07,659.72 -316.97,659.61 -316.92,658.76 -322.44,658.43 -322.50,659.35 -324.73,659.22 -324.80,660.33 -326.74,660.22 -326.80,661.25 -327.49,672.68 -314.02,673.51 -313.22,661.50"/>
    <poly id="122835666" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-52.54,512.16 -46.95,512.48 -47.10,515.16 -42.62,515.43 -42.47,512.72 -34.33,513.20 -34.16,510.35 -36.95,510.19 -36.50,502.67 -38.27,502.57 -38.01,498.08 -42.95,497.75 -48.35,497.44 -48.61,501.78 -51.91,501.59 -52.54,512.16"/>
    <poly id="122835667" type="building" color="255,230,230" fill="1" layer="-1.00" shape="287.65,481.07 282.61,463.09 281.70,459.85 280.81,456.69 287.29,454.87 287.65,456.13 289.80,455.53 290.33,457.44 312.71,451.21 309.57,457.58 306.17,464.04 302.45,470.33 298.43,476.41 294.11,482.30 289.58,487.95 287.65,481.07"/>
    <poly id="122835669" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-299.61,541.41 -309.79,541.52 -310.50,541.53 -310.64,528.23 -309.42,528.22 -299.75,528.12 -299.61,541.41"/>
    <poly id="122835671" type="building" color="255,230,230" fill="1" layer="-1.00" shape="35.89,551.39 39.08,551.57 39.30,547.79 36.11,547.61 35.89,551.39"/>
    <poly id="122835672" type="building" color="255,230,230" fill="1" layer="-1.00" shape="99.52,643.80 94.19,640.27 97.45,635.38 102.78,638.90 99.52,643.80"/>
    <poly id="122835673" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-329.74,608.58 -318.45,609.06 -318.69,614.73 -329.98,614.26 -329.74,608.58"/>
    <poly id="122835674" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-102.56,596.36 -102.46,594.67 -91.32,595.36 -91.43,597.04 -102.56,596.36"/>
    <poly id="122835676" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-219.40,455.19 -218.38,469.23 -228.55,469.98 -229.58,455.93 -219.40,455.19"/>
    <poly id="122835677" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-228.90,567.65 -233.18,567.62 -233.09,562.27 -228.78,562.28 -228.90,567.65"/>
    <poly id="122835678" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="272.69,673.02 272.13,665.66 391.66,656.58 392.22,663.94 272.69,673.02"/>
    <poly id="122835678#1" type="sport" color="79,230,125" fill="1" layer="-2.00" shape="272.69,673.02 272.13,665.66 391.66,656.58 392.22,663.94 272.69,673.02"/>
    <poly id="122835679" type="building" color="255,230,230" fill="1" layer="-1.00" shape="322.77,415.30 321.34,410.45 324.24,409.61 325.67,414.46 322.77,415.30"/>
    <poly id="122835680" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-354.00,588.93 -343.68,589.10 -343.87,600.16 -354.18,600.00 -354.00,588.93"/>
    <poly id="122835682" type="building" color="255,230,230" fill="1" layer="-1.00" shape="266.13,451.55 264.52,446.04 270.21,444.38 271.81,449.90 266.13,451.55"/>
    <poly id="122835683" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-5.74,495.21 -5.31,488.11 -23.37,487.04 -23.79,494.15 -5.74,495.21"/>
    <poly id="122835684" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-163.39,551.46 -183.80,550.95 -183.68,545.23 -162.01,545.68 -163.39,551.46"/>
    <poly id="122835686" type="building" color="255,230,230" fill="1" layer="-1.00" shape="88.38,540.05 93.06,537.00 97.67,544.07 92.98,547.12 88.38,540.05"/>
    <poly id="122835687" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-365.66,626.37 -364.00,619.00 -349.31,619.14 -349.44,626.82 -365.66,626.37"/>
    <poly id="122835688" type="building" color="255,230,230" fill="1" layer="-1.00" shape="155.84,589.56 162.61,585.08 164.00,587.20 157.24,591.67 155.84,589.56"/>
    <poly id="122835689" type="building" color="255,230,230" fill="1" layer="-1.00" shape="14.54,532.94 14.64,531.00 20.82,531.33 20.71,533.27 14.54,532.94"/>
    <poly id="122835690" type="building" color="255,230,230" fill="1" layer="-1.00" shape="17.86,648.92 17.72,651.22 31.54,652.03 31.68,649.74 17.86,648.92"/>
    <poly id="122835691" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-38.01,498.08 -37.22,486.19 -42.16,485.86 -42.95,497.75 -38.01,498.08"/>
    <poly id="122835692" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-313.50,589.51 -296.19,589.77 -296.38,601.10 -313.69,600.80 -313.50,589.51"/>
    <poly id="122835693" type="building" color="255,230,230" fill="1" layer="-1.00" shape="96.71,555.03 95.58,553.27 100.80,549.97 101.93,551.74 96.71,555.03"/>
    <poly id="122835695" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-232.98,678.70 -232.43,669.12 -253.72,667.92 -254.27,677.48 -232.98,678.70"/>
    <poly id="122835698" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-282.05,629.83 -297.38,629.25 -297.54,633.70 -282.25,634.52 -282.05,629.83"/>
    <poly id="122835699" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-343.68,589.10 -331.24,589.26 -331.41,600.38 -343.87,600.16 -343.68,589.10"/>
    <poly id="122835700" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-264.89,544.96 -264.80,539.11 -247.60,539.38 -247.70,545.23 -264.89,544.96"/>
    <poly id="122835701" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-28.81,477.22 -29.44,488.82 -35.48,488.50 -34.95,478.84 -28.81,477.22"/>
    <poly id="122835702" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="339.58,580.60 396.28,535.62 465.32,622.13 408.62,667.12 339.58,580.60"/>
    <poly id="122835704" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-294.42,560.75 -284.37,560.75 -284.50,570.99 -294.42,571.02 -294.42,560.75"/>
    <poly id="122835705" type="building" color="255,230,230" fill="1" layer="-1.00" shape="181.05,553.91 177.75,549.14 179.87,547.69 183.16,552.46 181.05,553.91"/>
    <poly id="122835706" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-233.63,634.67 -221.77,635.53 -222.79,649.65 -234.65,648.80 -233.63,634.67"/>
    <poly id="122835710" type="building" color="255,230,230" fill="1" layer="-1.00" shape="152.90,519.35 160.16,514.70 163.65,520.11 156.45,524.72 152.90,519.35"/>
    <poly id="122835711" type="building" color="255,230,230" fill="1" layer="-1.00" shape="32.68,634.57 37.35,634.88 36.35,650.05 31.68,649.74 32.68,634.57"/>
    <poly id="122835715" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-177.91,600.56 -177.55,595.00 -173.41,595.27 -173.77,600.83 -177.91,600.56"/>
    <poly id="122835716" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-297.87,643.31 -309.04,642.78 -309.34,649.17 -298.09,649.70 -297.87,643.31"/>
    <poly id="122835718" type="building" color="255,230,230" fill="1" layer="-1.00" shape="77.97,664.65 83.30,668.17 90.02,658.07 84.70,654.55 77.97,664.65"/>
    <poly id="122835722" type="building" color="255,230,230" fill="1" layer="-1.00" shape="149.59,514.35 153.43,511.77 155.59,515.00 151.72,517.57 149.59,514.35"/>
    <poly id="122835723" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-234.65,648.80 -235.81,664.91 -223.96,665.77 -222.79,649.65 -234.65,648.80"/>
    <poly id="122835725" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-296.19,589.77 -282.03,590.02 -282.26,602.93 -296.42,602.67 -296.38,601.10 -296.19,589.77"/>
    <poly id="122835727" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-229.52,588.19 -218.27,588.75 -218.98,602.56 -230.22,601.99 -230.04,598.41 -229.52,588.19"/>
    <poly id="122835728" type="building" color="255,230,230" fill="1" layer="-1.00" shape="194.65,551.67 191.93,547.67 196.18,544.81 200.75,551.55 196.50,554.42 194.65,551.67"/>
    <poly id="122835729" type="building" color="255,230,230" fill="1" layer="-1.00" shape="177.63,512.13 165.29,515.67 163.51,508.98 176.89,505.45 179.74,511.04 177.63,512.13"/>
    <poly id="122835733" type="building" color="255,230,230" fill="1" layer="-1.00" shape="178.70,562.39 194.65,551.67 196.50,554.42 198.46,557.37 182.53,568.06 178.70,562.39"/>
    <poly id="122835734" type="building" color="255,230,230" fill="1" layer="-1.00" shape="183.37,523.14 177.63,512.13 179.74,511.04 189.95,505.76 195.68,516.77 183.37,523.14"/>
    <poly id="122835738" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-3.50,512.62 -24.72,511.51 -23.79,494.15 -5.74,495.21 -2.59,495.32 -3.50,512.62"/>
    <poly id="122835743" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-253.72,667.92 -253.51,665.00 -268.22,664.09 -269.01,676.53 -254.27,677.48 -253.72,667.92"/>
    <poly id="122835745" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-111.09,596.46 -110.96,594.10 -103.98,594.48 -104.11,596.83 -109.63,596.54 -111.09,596.46"/>
    <poly id="122835747" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-268.22,664.09 -268.17,663.08 -283.96,662.10 -284.95,675.54 -269.01,676.53 -268.22,664.09"/>
    <poly id="122835752" type="building" color="255,230,230" fill="1" layer="-1.00" shape="78.98,212.66 61.99,217.62 59.05,207.62 76.04,202.66 76.77,205.16 78.98,212.66"/>
    <poly id="122835755" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-283.19,650.06 -283.96,662.10 -289.28,661.77 -288.27,646.05 -282.95,646.39 -283.19,650.06"/>
    <poly id="122835756" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-216.95,555.31 -217.20,567.89 -228.90,567.65 -228.78,562.28 -228.64,555.08 -216.95,555.31"/>
    <poly id="122835761" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-292.97,448.25 -299.78,449.39 -299.55,454.68 -310.56,454.79 -310.64,441.19 -294.79,438.33 -292.97,448.25"/>
    <poly id="122835762" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-284.37,560.75 -284.34,557.91 -265.32,558.13 -265.30,559.45 -265.51,571.20 -284.50,570.99 -284.37,560.75"/>
    <poly id="122835766" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-186.77,547.99 -187.03,562.78 -187.12,568.27 -188.81,568.23 -198.19,568.08 -197.83,547.80 -186.77,547.99"/>
    <poly id="122835771" type="building" color="255,230,230" fill="1" layer="-1.00" shape="99.37,560.59 97.64,557.80 99.05,556.94 98.25,555.63 102.09,553.25 104.64,557.33 99.37,560.59"/>
    <poly id="122835772" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-236.39,438.04 -230.95,436.82 -230.70,440.49 -220.53,439.75 -222.04,424.85 -238.22,428.03 -236.39,438.04"/>
    <poly id="122835774" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-283.96,662.10 -289.28,661.77 -299.17,661.14 -299.25,662.21 -300.08,674.49 -284.95,675.54 -283.96,662.10"/>
    <poly id="122835775" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-319.91,643.54 -312.15,644.05 -312.70,652.40 -317.90,652.06 -317.67,648.59 -320.23,648.43 -319.91,643.54"/>
    <poly id="122835777" type="building" color="255,230,230" fill="1" layer="-1.00" shape="55.37,511.85 49.11,513.60 47.63,508.36 53.89,506.60 55.37,511.85"/>
    <poly id="122835779" type="building" color="255,230,230" fill="1" layer="-1.00" shape="352.66,568.54 351.15,566.63 346.40,570.38 343.01,566.10 354.47,557.05 359.39,563.23 352.66,568.54"/>
    <poly id="122835786" type="building" color="255,230,230" fill="1" layer="-1.00" shape="235.20,635.82 229.83,628.67 230.83,627.93 227.31,623.24 231.29,620.26 240.19,632.08 235.20,635.82"/>
    <poly id="122835788" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-242.81,667.70 -242.57,664.26 -250.08,663.73 -249.20,651.33 -239.53,652.01 -240.66,667.85 -242.81,667.70"/>
    <poly id="122835789" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-279.66,623.77 -275.49,623.75 -275.55,625.80 -269.21,625.99 -269.31,630.36 -279.95,629.91 -279.66,623.77"/>
    <poly id="122835790" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-331.24,589.26 -313.50,589.51 -313.69,600.80 -313.70,601.69 -331.44,601.40 -331.41,600.38 -331.24,589.26"/>
    <poly id="122835794" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-299.47,555.03 -299.45,560.75 -294.42,560.75 -294.42,571.02 -309.62,571.15 -309.64,555.14 -299.47,555.03"/>
    <poly id="122835795" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-216.90,526.40 -216.63,539.94 -228.33,539.70 -228.24,526.67 -216.90,526.40"/>
    <poly id="122835799" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-267.49,639.90 -253.26,639.93 -253.25,636.88 -250.30,636.90 -250.29,630.73 -266.68,630.45 -267.30,636.52 -267.49,639.90"/>
    <poly id="122835804" type="building" color="255,230,230" fill="1" layer="-1.00" shape="3.23,648.05 2.16,648.07 2.04,651.03 -5.51,650.64 -3.85,618.61 4.83,619.06 4.14,632.86 3.23,648.05"/>
    <poly id="122835805" type="building" color="255,230,230" fill="1" layer="-1.00" shape="175.97,554.15 164.18,561.92 137.80,522.12 149.59,514.35 151.72,517.57 152.90,519.35 156.45,524.72 175.97,554.15"/>
    <poly id="122835808" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-342.32,654.46 -341.84,650.89 -341.54,648.66 -340.74,642.71 -346.38,641.95 -355.39,640.74 -356.97,652.49 -342.32,654.46"/>
    <poly id="122835809" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-267.30,636.52 -266.68,630.45 -269.31,630.36 -279.95,629.91 -282.05,629.83 -282.25,634.52 -282.31,635.71 -267.30,636.52"/>
    <poly id="122835810" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-266.45,587.43 -251.24,587.80 -251.56,599.61 -251.67,605.41 -253.23,605.38 -253.10,599.57 -266.72,599.26 -266.45,587.43"/>
    <poly id="122835814" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-342.78,660.20 -342.32,654.46 -341.84,650.89 -334.59,651.29 -335.23,661.72 -339.51,661.50 -339.45,660.37 -342.78,660.20"/>
    <poly id="122835815" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-27.41,531.67 -6.38,532.98 -7.62,552.86 -26.19,551.71 -27.77,551.61 -27.49,547.21 -28.38,547.15 -27.41,531.67"/>
    <poly id="122835819" type="building" color="255,230,230" fill="1" layer="-1.00" shape="167.38,567.57 177.56,560.72 178.70,562.39 182.53,568.06 180.43,569.33 180.98,570.14 172.83,575.63 167.38,567.57"/>
    <poly id="122835820" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-297.57,634.80 -311.35,633.97 -311.23,633.16 -322.17,632.43 -322.08,628.06 -297.38,629.25 -297.54,633.70 -297.57,634.80"/>
    <poly id="122835823" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-297.38,629.25 -296.75,611.12 -291.10,611.29 -291.44,622.72 -290.63,623.58 -279.66,623.77 -279.95,629.91 -282.05,629.83 -297.38,629.25"/>
    <poly id="122835824" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-241.91,588.04 -229.52,588.19 -230.04,598.41 -233.04,598.31 -233.08,599.61 -236.02,599.54 -235.99,598.50 -242.18,598.35 -241.91,588.04"/>
    <poly id="122835826" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-275.55,625.80 -275.49,623.75 -275.27,616.12 -269.25,616.29 -269.17,613.39 -259.80,613.65 -260.16,626.24 -269.21,625.99 -275.55,625.80"/>
    <poly id="122835828" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-173.84,519.49 -162.03,519.69 -162.22,530.37 -174.02,530.17 -173.84,519.49"/>
    <poly id="122835830" type="building" color="255,230,230" fill="1" layer="-1.00" shape="101.18,261.29 60.38,273.71 66.80,294.69 107.60,282.27 105.25,274.59 102.54,265.72 101.18,261.29"/>
    <poly id="122835835" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-188.81,568.23 -188.91,573.57 -169.86,573.91 -169.62,560.89 -174.79,560.79 -174.83,562.99 -187.03,562.78 -187.12,568.27 -188.81,568.23"/>
    <poly id="122835836" type="building" color="255,230,230" fill="1" layer="-1.00" shape="138.33,598.86 142.09,604.82 137.70,607.58 136.53,605.72 131.91,608.61 121.94,595.49 127.70,591.49 134.38,601.49 138.33,598.86"/>
    <poly id="122835840" type="building" color="255,230,230" fill="1" layer="-1.00" shape="58.77,267.52 77.20,262.13 74.33,252.41 74.10,251.63 69.31,253.03 61.05,224.96 58.26,225.78 53.50,209.61 42.66,212.78 58.77,267.52"/>
    <poly id="122835842" type="building" color="255,230,230" fill="1" layer="-1.00" shape="103.73,637.48 102.78,638.90 99.52,643.80 90.02,658.07 83.30,668.17 82.07,670.01 89.97,675.24 108.78,646.98 111.63,642.70 103.73,637.48"/>
    <poly id="122835846" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-340.06,627.07 -349.44,626.82 -365.66,626.37 -366.56,630.68 -365.79,632.73 -346.09,634.64 -346.38,641.95 -340.74,642.71 -340.06,627.07"/>
    <poly id="122835848" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-282.95,646.39 -283.19,650.06 -278.24,650.33 -277.97,645.54 -267.82,646.09 -267.49,639.90 -267.30,636.52 -282.31,635.71 -282.95,646.39"/>
    <poly id="122835852" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-347.70,517.00 -347.64,504.50 -345.19,504.51 -345.14,496.61 -325.57,496.72 -325.71,523.18 -345.19,523.07 -345.16,517.02 -347.70,517.00"/>
    <poly id="122835857" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-275.66,599.18 -275.40,587.18 -266.45,587.43 -266.72,599.26 -269.63,599.20 -269.65,600.22 -273.63,600.13 -273.61,599.22 -275.66,599.18"/>
    <poly id="122835859" type="building" color="255,230,230" fill="1" layer="-1.00" shape="229.79,612.95 231.29,615.47 234.90,616.51 237.79,614.86 238.75,611.41 237.51,608.87 233.84,607.50 230.80,609.06 229.79,612.95"/>
    <poly id="122835861" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-299.25,662.21 -300.96,662.09 -300.82,660.02 -311.25,659.33 -311.40,661.62 -313.22,661.50 -314.02,673.51 -300.08,674.49 -299.25,662.21"/>
    <poly id="122835863" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-280.88,435.79 -294.79,438.33 -292.97,448.25 -279.05,445.72 -280.88,435.79"/>
    <poly id="122835865" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-340.74,642.71 -340.06,627.07 -332.01,627.26 -332.24,628.96 -326.99,629.06 -327.67,644.43 -337.83,644.21 -338.05,648.80 -341.54,648.66 -340.74,642.71"/>
    <poly id="122835868" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-282.95,646.39 -288.27,646.05 -294.38,645.75 -294.26,643.42 -297.87,643.31 -297.57,634.80 -297.54,633.70 -282.25,634.52 -282.31,635.71 -282.95,646.39"/>
    <poly id="122835871" type="building" color="255,230,230" fill="1" layer="-1.00" shape="220.17,511.61 207.42,484.24 208.58,483.92 209.15,481.73 210.71,481.30 212.34,482.87 213.50,482.55 211.93,476.95 222.81,473.91 224.32,479.34 235.84,520.40 224.96,523.44 221.54,511.23 220.17,511.61"/>
    <poly id="122835872" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-326.80,661.25 -330.81,661.03 -330.86,661.95 -335.23,661.72 -339.51,661.50 -339.45,660.37 -342.78,660.20 -343.39,671.85 -327.49,672.68 -326.80,661.25"/>
    <poly id="122849623" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-370.61,437.22 -376.68,438.08 -392.32,439.06 -393.76,424.95 -388.27,424.43 -383.18,423.90 -382.95,427.15 -383.74,427.16 -383.57,429.39 -372.39,428.15 -370.61,437.22"/>
    <poly id="122849624" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-171.91,231.93 -147.05,224.55 -146.37,226.81 -137.46,224.17 -147.60,190.16 -137.50,187.16 -125.11,228.69 -168.99,241.71 -169.37,240.59 -170.90,235.18 -171.91,231.93"/>
    <poly id="122849625" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-311.36,332.29 -308.78,340.81 -319.06,343.92 -321.62,335.49 -326.58,336.99 -328.53,330.59 -322.97,328.91 -324.45,324.07 -322.06,323.34 -318.67,334.49 -311.36,332.29"/>
    <poly id="122849626" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-380.35,338.52 -379.39,341.69 -378.79,341.51 -378.44,342.64 -375.09,341.62 -374.87,342.37 -371.27,341.28 -371.54,340.40 -367.58,339.20 -367.81,338.43 -371.25,327.14 -382.75,330.62 -380.35,338.52"/>
    <poly id="122849627" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-381.55,365.82 -381.86,362.74 -380.23,362.59 -380.56,359.30 -382.12,359.45 -382.60,354.68 -381.28,354.54 -381.62,351.10 -383.13,351.26 -383.39,348.78 -385.11,348.95 -395.88,350.02 -394.17,367.07 -381.55,365.82"/>
    <poly id="122849628" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-398.15,347.62 -396.14,347.42 -395.88,350.02 -385.11,348.95 -385.44,344.70 -387.32,344.85 -387.44,343.30 -390.94,343.55 -391.19,340.29 -386.88,339.14 -386.48,340.31 -380.35,338.52 -382.75,330.62 -397.66,334.77 -397.33,338.04 -399.10,338.22 -398.15,347.62"/>
    <poly id="122849629" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-348.46,332.58 -351.89,321.30 -371.25,327.14 -367.81,338.43 -365.75,337.81 -365.58,338.37 -359.77,336.62 -360.00,335.89 -357.17,335.03 -356.93,335.81 -353.24,334.70 -353.42,334.07 -348.46,332.58"/>
    <poly id="122849631" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-16.56,164.74 -49.74,174.27 -50.75,170.78 -54.87,156.53 -55.63,153.89 -49.84,152.22 -22.46,144.36 -21.69,147.00 -17.57,161.27 -16.56,164.74"/>
    <poly id="122849632" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-169.20,111.13 -161.24,108.83 -156.10,126.45 -164.05,128.76 -169.20,111.13"/>
    <poly id="122849633" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-204.66,245.37 -214.22,248.15 -218.81,232.41 -209.26,229.64 -204.66,245.37"/>
    <poly id="122849634" type="building" color="255,230,230" fill="1" layer="-1.00" shape="31.86,150.83 -0.90,160.24 -1.90,156.76 -6.02,142.50 -6.79,139.85 -1.49,138.33 25.97,130.45 26.74,133.10 30.86,147.37 31.86,150.83"/>
    <poly id="122849635" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-169.37,240.59 -192.04,246.97 -193.58,241.55 -170.90,235.18 -169.37,240.59"/>
    <poly id="122849636" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-220.23,99.72 -211.72,97.12 -207.23,112.56 -215.60,115.82 -220.23,99.72"/>
    <poly id="122849637" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-273.64,343.56 -274.36,341.12 -271.80,340.36 -271.08,342.80 -273.64,343.56"/>
    <poly id="122849638" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-219.95,307.35 -177.95,294.91 -179.63,289.27 -221.63,301.71 -219.95,307.35"/>
    <poly id="122849639" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-379.44,386.13 -381.55,365.82 -394.17,367.07 -392.07,387.42 -379.44,386.13"/>
    <poly id="122849640" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-293.84,349.40 -294.56,346.97 -291.99,346.22 -291.27,348.65 -293.84,349.40"/>
    <poly id="122849641" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-337.49,410.28 -338.21,407.84 -335.65,407.09 -334.93,409.53 -337.49,410.28"/>
    <poly id="122849642" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-348.51,372.48 -349.23,370.05 -346.67,369.29 -345.95,371.72 -348.51,372.48"/>
    <poly id="122849643" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-166.80,138.00 -162.24,136.66 -154.15,134.28 -144.48,167.08 -157.03,170.83 -166.80,138.00"/>
    <poly id="122849644" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-288.97,366.53 -289.69,364.09 -287.13,363.33 -286.41,365.77 -288.97,366.53"/>
    <poly id="122849645" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-343.15,390.88 -343.87,388.44 -341.31,387.69 -340.59,390.13 -343.15,390.88"/>
    <poly id="122849646" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-263.63,377.64 -264.35,375.20 -261.79,374.45 -261.07,376.89 -263.63,377.64"/>
    <poly id="122849647" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-351.01,393.12 -351.91,390.14 -345.93,388.36 -345.04,391.34 -351.01,393.12"/>
    <poly id="122849648" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-341.35,431.54 -355.94,434.38 -358.45,421.49 -343.87,418.65 -341.35,431.54"/>
    <poly id="122849649" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-198.33,225.17 -179.24,219.55 -176.18,229.94 -195.26,235.54 -198.33,225.17"/>
    <poly id="122849651" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-376.96,410.07 -378.17,398.41 -390.82,399.71 -389.63,411.39 -376.96,410.07"/>
    <poly id="122849652" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-179.62,84.41 -169.13,81.40 -163.39,101.29 -171.12,103.51 -173.88,104.31 -179.62,84.41"/>
    <poly id="122849653" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-283.94,383.49 -284.66,381.06 -282.11,380.31 -281.39,382.74 -283.94,383.49"/>
    <poly id="122849654" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-144.48,167.08 -139.79,182.65 -149.38,185.51 -152.34,186.40 -157.03,170.83 -144.48,167.08"/>
    <poly id="122849655" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-268.62,360.52 -269.34,358.09 -266.78,357.34 -266.06,359.76 -268.62,360.52"/>
    <poly id="122849656" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-383.18,423.90 -375.52,423.07 -376.96,410.07 -389.63,411.39 -388.27,424.43 -383.18,423.90"/>
    <poly id="122849657" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-355.94,434.38 -370.61,437.22 -372.39,428.15 -373.13,424.33 -358.45,421.49 -355.94,434.38"/>
    <poly id="122849658" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-212.31,95.11 -187.84,88.02 -182.76,105.49 -207.23,112.56 -211.72,97.12 -212.31,95.11"/>
    <poly id="122849659" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-232.07,99.60 -221.16,96.49 -220.23,99.72 -215.60,115.82 -226.51,118.94 -232.07,99.60"/>
    <poly id="122849660" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-5.87,123.16 21.59,115.26 10.63,77.32 -22.13,86.74 -20.82,91.29 -15.52,89.77 -5.87,123.16"/>
    <poly id="122849661" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-284.35,407.63 -283.72,409.98 -295.14,416.82 -293.35,422.89 -271.43,418.58 -273.80,405.46 -284.35,407.63"/>
    <poly id="122849662" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-54.23,137.05 -26.84,129.17 -37.80,91.23 -70.98,100.76 -69.60,105.54 -63.81,103.88 -54.23,137.05"/>
    <poly id="122849663" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-239.21,359.15 -234.46,375.05 -247.02,378.78 -251.78,362.88 -239.21,359.15"/>
    <poly id="122849664" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-197.71,213.05 -201.54,214.23 -199.96,219.49 -181.06,213.82 -182.65,208.56 -183.85,208.96 -197.71,213.05"/>
    <poly id="122849666" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-103.70,151.26 -75.40,143.13 -86.36,105.19 -118.77,114.49 -117.32,119.53 -113.21,118.35 -103.70,151.26"/>
    <poly id="122849668" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="66.89,104.74 70.59,116.62 46.39,123.57 42.19,109.37 31.64,75.40 52.67,68.91 57.54,72.73 66.89,104.74"/>
    <poly id="122849670" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-282.83,312.42 -279.03,325.10 -295.38,329.96 -299.17,317.28 -282.83,312.42"/>
    <poly id="122849671" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-378.17,398.41 -378.80,392.33 -377.58,392.21 -377.96,388.52 -379.16,388.64 -379.44,386.13 -392.07,387.42 -390.82,399.71 -378.17,398.41"/>
    <poly id="122849672" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-375.15,385.70 -354.78,383.18 -360.51,363.62 -366.33,364.27 -365.68,370.31 -364.23,370.06 -363.56,377.75 -375.96,379.11 -375.15,385.70"/>
    <poly id="122849673" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-223.46,125.91 -209.71,121.85 -183.85,208.96 -197.71,213.05 -220.51,136.25 -221.53,136.55 -223.39,130.28 -222.26,129.95 -223.46,125.91"/>
    <poly id="122849674" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-65.13,178.70 -97.54,188.00 -98.55,184.50 -99.90,179.83 -95.79,178.64 -97.69,172.04 -101.81,173.23 -102.67,170.25 -103.43,167.62 -99.31,166.43 -71.02,158.31 -70.26,160.95 -66.14,175.20 -65.13,178.70"/>
    <poly id="122849675" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-239.81,304.76 -235.29,319.56 -224.77,316.37 -229.30,301.57 -231.99,302.39 -239.81,304.76"/>
    <poly id="122849676" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-367.47,401.47 -361.05,400.83 -358.62,400.58 -358.43,402.75 -349.22,401.80 -351.96,393.33 -371.68,395.14 -371.50,397.62 -367.82,397.21 -367.47,401.47"/>
    <poly id="122849678" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-330.27,324.71 -325.76,323.36 -325.45,324.37 -324.45,324.07 -322.06,323.34 -318.67,334.49 -311.36,332.29 -317.83,311.01 -333.04,315.61 -330.27,324.71"/>
    <poly id="122849679" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-370.51,405.51 -369.18,417.35 -360.70,407.81 -358.19,405.55 -358.43,402.75 -358.62,400.58 -361.05,400.83 -360.89,402.82 -365.93,403.19 -370.51,405.51"/>
    <poly id="122967191" type="building" color="255,230,230" fill="1" layer="-1.00" shape="83.92,-107.41 86.59,-111.11 87.65,-110.35 88.55,-111.60 90.84,-109.96 89.87,-108.62 91.42,-107.51 89.03,-104.19 85.91,-106.42 85.70,-106.13 83.92,-107.41"/>
    <poly id="122967195" type="building" color="255,230,230" fill="1" layer="-1.00" shape="121.86,-62.57 104.29,-57.03 106.22,-50.92 84.68,-44.16 83.61,-47.53 79.76,-59.72 93.29,-63.97 105.76,-67.89 104.80,-70.94 117.56,-74.95 118.91,-70.69 126.57,-66.68 124.21,-62.46 123.71,-61.56 121.86,-62.57"/>
    <poly id="122967198" type="building" color="255,230,230" fill="1" layer="-1.00" shape="47.92,-177.77 45.02,-179.08 46.88,-183.16 49.79,-181.85 47.92,-177.77"/>
    <poly id="122967200" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-53.45,-190.19 -51.15,-193.31 -46.53,-189.94 -48.83,-186.81 -53.45,-190.19"/>
    <poly id="122967201" type="building" color="255,230,230" fill="1" layer="-1.00" shape="21.16,-141.73 25.55,-147.35 31.42,-142.81 27.03,-137.19 21.16,-141.73"/>
    <poly id="122967205" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-21.93,-168.50 -19.27,-172.01 -16.72,-170.08 -19.38,-166.60 -21.93,-168.50"/>
    <poly id="122967207" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-32.16,-172.28 -29.52,-175.67 -26.76,-173.51 -29.29,-170.08 -32.16,-172.28"/>
    <poly id="122967210" type="building" color="255,230,230" fill="1" layer="-1.00" shape="20.77,-154.54 24.25,-158.96 26.87,-156.78 23.38,-152.49 20.77,-154.54"/>
    <poly id="122967211" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-19.23,-225.53 -19.97,-221.93 -23.15,-222.58 -22.42,-226.17 -19.23,-225.53"/>
    <poly id="122967212" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-48.24,-193.06 -46.16,-196.10 -42.02,-193.32 -44.15,-190.19 -48.24,-193.06"/>
    <poly id="122967216" type="building" color="255,230,230" fill="1" layer="-1.00" shape="149.22,-129.12 150.24,-131.68 156.61,-129.14 155.53,-126.57 149.22,-129.12"/>
    <poly id="122967220" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-14.48,-162.14 -11.95,-165.38 -9.04,-163.23 -11.69,-159.95 -14.48,-162.14"/>
    <poly id="122967224" type="building" color="255,230,230" fill="1" layer="-1.00" shape="95.24,-155.26 97.19,-159.29 94.10,-160.74 92.20,-156.75 95.24,-155.26"/>
    <poly id="122967227" type="building" color="255,230,230" fill="1" layer="-1.00" shape="53.10,-219.58 53.76,-222.97 58.75,-222.02 58.09,-218.62 53.10,-219.58"/>
    <poly id="122967229" type="building" color="255,230,230" fill="1" layer="-1.00" shape="31.02,-187.25 27.05,-188.97 28.65,-192.62 32.62,-190.89 31.02,-187.25"/>
    <poly id="122967230" type="building" color="255,230,230" fill="1" layer="-1.00" shape="45.68,-215.66 46.21,-219.02 49.60,-218.48 49.06,-215.13 45.68,-215.66"/>
    <poly id="122967234" type="building" color="255,230,230" fill="1" layer="-1.00" shape="188.06,-89.60 185.40,-97.62 191.70,-99.75 194.40,-91.60 188.06,-89.60"/>
    <poly id="122967236" type="building" color="255,230,230" fill="1" layer="-1.00" shape="147.10,-94.67 148.94,-98.22 151.92,-96.67 150.07,-93.13 147.10,-94.67"/>
    <poly id="122967241" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-54.85,-194.06 -53.36,-195.95 -51.76,-194.68 -53.25,-192.80 -54.85,-194.06"/>
    <poly id="122967243" type="building" color="255,230,230" fill="1" layer="-1.00" shape="150.24,-131.68 151.31,-134.35 157.68,-131.82 156.61,-129.14 150.24,-131.68"/>
    <poly id="122967245" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-11.95,-165.38 -9.54,-168.59 -6.64,-166.45 -9.04,-163.23 -11.95,-165.38"/>
    <poly id="122967250" type="building" color="255,230,230" fill="1" layer="-1.00" shape="72.68,-215.10 75.88,-214.48 76.94,-219.90 73.75,-220.53 72.68,-215.10"/>
    <poly id="122967254" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-34.17,-182.19 -37.57,-184.72 -35.33,-187.70 -31.94,-185.17 -34.17,-182.19"/>
    <poly id="122967256" type="building" color="255,230,230" fill="1" layer="-1.00" shape="60.12,-47.05 59.32,-49.88 63.77,-51.13 64.56,-48.29 60.12,-47.05"/>
    <poly id="122967260" type="building" color="255,230,230" fill="1" layer="-1.00" shape="58.74,-50.79 56.35,-58.99 61.37,-60.44 63.76,-52.25 58.74,-50.79"/>
    <poly id="122967262" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-42.02,-193.32 -38.90,-191.20 -41.04,-188.07 -44.15,-190.19 -42.02,-193.32"/>
    <poly id="122967265" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-105.92,-259.57 -106.96,-254.38 -92.31,-251.48 -91.27,-256.67 -105.92,-259.57"/>
    <poly id="122967268" type="building" color="255,230,230" fill="1" layer="-1.00" shape="51.97,-175.78 53.94,-179.88 49.79,-181.85 47.92,-177.77 51.97,-175.78"/>
    <poly id="122967270" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-0.91,-194.86 1.15,-198.95 5.62,-196.73 3.56,-192.64 -0.91,-194.86"/>
    <poly id="122967272" type="building" color="255,230,230" fill="1" layer="-1.00" shape="45.51,-132.31 48.11,-130.14 50.37,-133.06 47.73,-135.13 45.51,-132.31"/>
    <poly id="122967275" type="building" color="255,230,230" fill="1" layer="-1.00" shape="146.24,-77.78 147.88,-81.14 153.29,-78.53 151.65,-75.17 146.24,-77.78"/>
    <poly id="122967276" type="building" color="255,230,230" fill="1" layer="-1.00" shape="67.66,-103.90 69.84,-106.75 72.71,-104.61 70.54,-101.70 67.66,-103.90"/>
    <poly id="122967277" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-71.76,-204.99 -69.89,-207.68 -65.63,-204.73 -67.50,-202.05 -71.76,-204.99"/>
    <poly id="122967280" type="building" color="255,230,230" fill="1" layer="-1.00" shape="26.37,-181.75 28.13,-185.68 34.04,-183.03 32.27,-179.12 26.37,-181.75"/>
    <poly id="122967281" type="building" color="255,230,230" fill="1" layer="-1.00" shape="185.40,-97.62 181.43,-96.30 184.13,-88.27 188.06,-89.60 185.40,-97.62"/>
    <poly id="122967285" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-14.64,-222.13 -15.26,-218.18 -10.61,-217.47 -10.01,-221.42 -14.64,-222.13"/>
    <poly id="122967286" type="building" color="255,230,230" fill="1" layer="-1.00" shape="18.79,-185.06 22.38,-183.41 24.29,-187.58 20.71,-189.22 18.79,-185.06"/>
    <poly id="122967287" type="building" color="255,230,230" fill="1" layer="-1.00" shape="10.52,-161.34 14.21,-159.36 16.24,-163.12 12.56,-165.10 10.52,-161.34"/>
    <poly id="122967290" type="building" color="255,230,230" fill="1" layer="-1.00" shape="150.14,-124.33 151.46,-127.33 155.53,-125.58 154.32,-122.62 150.14,-124.33"/>
    <poly id="122967295" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-1.30,-162.55 1.17,-165.63 6.36,-161.48 3.90,-158.41 -1.30,-162.55"/>
    <poly id="122967296" type="building" color="255,230,230" fill="1" layer="-1.00" shape="12.31,-220.62 12.66,-224.02 17.29,-223.53 16.93,-220.13 12.31,-220.62"/>
    <poly id="122967299" type="building" color="255,230,230" fill="1" layer="-1.00" shape="143.84,-66.83 146.00,-71.16 149.61,-69.36 147.44,-65.03 143.84,-66.83"/>
    <poly id="122967301" type="building" color="255,230,230" fill="1" layer="-1.00" shape="73.42,-205.37 75.62,-211.75 79.12,-210.55 76.92,-204.17 73.42,-205.37"/>
    <poly id="122967302" type="building" color="255,230,230" fill="1" layer="-1.00" shape="125.29,-139.89 126.83,-143.23 131.29,-141.16 129.78,-137.94 125.29,-139.89"/>
    <poly id="122967306" type="building" color="255,230,230" fill="1" layer="-1.00" shape="85.27,-94.82 87.61,-97.61 91.34,-94.63 89.01,-91.74 85.27,-94.82"/>
    <poly id="122967309" type="building" color="255,230,230" fill="1" layer="-1.00" shape="75.52,-197.01 76.15,-198.54 78.45,-197.60 77.82,-196.06 75.52,-197.01"/>
    <poly id="122967310" type="building" color="255,230,230" fill="1" layer="-1.00" shape="143.34,-86.11 145.71,-91.25 149.03,-89.72 146.66,-84.58 143.34,-86.11"/>
    <poly id="122967312" type="building" color="255,230,230" fill="1" layer="-1.00" shape="95.86,-94.24 99.47,-91.48 102.03,-94.80 98.43,-97.56 95.86,-94.24"/>
    <poly id="122967315" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-69.48,-208.98 -67.97,-211.65 -63.97,-209.40 -65.48,-206.73 -69.48,-208.98"/>
    <poly id="122967317" type="building" color="255,230,230" fill="1" layer="-1.00" shape="5.68,-225.95 5.18,-222.62 9.99,-221.90 10.50,-225.23 5.68,-225.95"/>
    <poly id="122967322" type="building" color="255,230,230" fill="1" layer="-1.00" shape="107.31,-106.08 109.30,-110.45 112.93,-108.83 110.91,-104.42 107.31,-106.08"/>
    <poly id="122967323" type="building" color="255,230,230" fill="1" layer="-1.00" shape="78.46,-156.04 80.47,-160.19 83.09,-158.97 81.17,-154.76 78.46,-156.04"/>
    <poly id="122967326" type="building" color="255,230,230" fill="1" layer="-1.00" shape="84.32,-79.36 86.58,-81.98 90.22,-78.88 87.93,-76.28 84.32,-79.36"/>
    <poly id="122967328" type="building" color="255,230,230" fill="1" layer="-1.00" shape="176.06,-115.99 177.77,-119.97 180.87,-118.65 179.16,-114.67 176.06,-115.99"/>
    <poly id="122967329" type="building" color="255,230,230" fill="1" layer="-1.00" shape="69.84,-106.75 72.26,-109.99 75.14,-107.85 72.71,-104.61 69.84,-106.75"/>
    <poly id="122967334" type="building" color="255,230,230" fill="1" layer="-1.00" shape="10.55,-143.27 13.28,-146.84 15.46,-145.18 12.73,-141.61 10.55,-143.27"/>
    <poly id="122967337" type="building" color="255,230,230" fill="1" layer="-1.00" shape="63.42,-212.03 59.29,-213.09 60.04,-216.04 64.18,-214.98 63.42,-212.03"/>
    <poly id="122967339" type="building" color="255,230,230" fill="1" layer="-1.00" shape="115.00,-112.54 117.46,-111.39 119.11,-114.93 116.65,-116.06 115.00,-112.54"/>
    <poly id="122967340" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-13.56,-228.45 -12.99,-232.30 -9.41,-231.03 -9.94,-227.88 -13.56,-228.45"/>
    <poly id="122967343" type="building" color="255,230,230" fill="1" layer="-1.00" shape="16.98,-150.76 18.99,-153.33 22.56,-150.63 20.55,-148.17 16.98,-150.76"/>
    <poly id="122967345" type="building" color="255,230,230" fill="1" layer="-1.00" shape="81.17,-154.76 84.42,-153.28 86.35,-157.50 83.09,-158.97 81.17,-154.76"/>
    <poly id="122967348" type="building" color="255,230,230" fill="1" layer="-1.00" shape="136.01,-129.03 137.88,-133.11 140.99,-131.69 139.15,-127.60 136.01,-129.03"/>
    <poly id="122967349" type="building" color="255,230,230" fill="1" layer="-1.00" shape="176.49,-114.71 172.69,-116.30 171.50,-113.50 175.18,-111.96 176.49,-114.71"/>
    <poly id="122967352" type="building" color="255,230,230" fill="1" layer="-1.00" shape="166.19,-120.95 170.05,-119.53 171.60,-123.68 167.74,-125.11 166.19,-120.95"/>
    <poly id="122967354" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-29.29,-170.08 -26.79,-168.24 -24.26,-171.67 -26.76,-173.51 -29.29,-170.08"/>
    <poly id="122967358" type="building" color="255,230,230" fill="1" layer="-1.00" shape="51.26,-132.53 54.06,-135.86 57.33,-133.12 54.53,-129.80 51.26,-132.53"/>
    <poly id="122967359" type="building" color="255,230,230" fill="1" layer="-1.00" shape="110.53,-147.58 108.18,-143.36 110.88,-141.87 113.37,-146.36 110.53,-147.58"/>
    <poly id="122967360" type="building" color="255,230,230" fill="1" layer="-1.00" shape="32.08,-197.85 36.97,-195.71 35.69,-192.80 30.80,-194.94 32.08,-197.85"/>
    <poly id="122967363" type="building" color="255,230,230" fill="1" layer="-1.00" shape="156.45,-120.22 157.68,-123.35 162.03,-121.65 160.81,-118.50 156.45,-120.22"/>
    <poly id="122967364" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-37.99,-225.79 -37.34,-230.00 -33.94,-229.53 -34.65,-225.15 -37.99,-225.79"/>
    <poly id="122967367" type="building" color="255,230,230" fill="1" layer="-1.00" shape="6.49,-191.86 8.22,-195.14 11.75,-193.26 10.05,-189.98 6.49,-191.86"/>
    <poly id="122967368" type="building" color="255,230,230" fill="1" layer="-1.00" shape="66.93,-119.29 70.01,-123.19 73.29,-120.64 70.13,-116.74 66.93,-119.29"/>
    <poly id="122967369" type="building" color="255,230,230" fill="1" layer="-1.00" shape="38.25,-182.28 40.50,-187.03 44.84,-184.98 42.59,-180.24 38.25,-182.28"/>
    <poly id="122967373" type="building" color="255,230,230" fill="1" layer="-1.00" shape="156.45,-120.22 155.57,-118.01 159.94,-116.29 160.81,-118.50 156.45,-120.22"/>
    <poly id="122967374" type="building" color="255,230,230" fill="1" layer="-1.00" shape="112.93,-108.83 116.81,-107.07 114.79,-102.65 110.91,-104.42 112.93,-108.83"/>
    <poly id="122967377" type="building" color="255,230,230" fill="1" layer="-1.00" shape="55.87,-172.82 57.83,-176.52 62.95,-173.82 60.97,-170.80 55.87,-172.82"/>
    <poly id="122967379" type="building" color="255,230,230" fill="1" layer="-1.00" shape="102.70,-86.71 104.89,-91.86 107.57,-90.73 105.39,-85.58 102.70,-86.71"/>
    <poly id="122967381" type="building" color="255,230,230" fill="1" layer="-1.00" shape="86.58,-81.98 89.19,-85.04 92.84,-81.96 90.22,-78.88 86.58,-81.98"/>
    <poly id="122967383" type="building" color="255,230,230" fill="1" layer="-1.00" shape="88.65,-207.81 89.42,-212.24 94.38,-211.38 93.63,-206.96 88.65,-207.81"/>
    <poly id="122967384" type="building" color="255,230,230" fill="1" layer="-1.00" shape="32.29,-217.49 32.69,-221.07 39.12,-220.29 38.67,-216.79 32.29,-217.49"/>
    <poly id="122967386" type="building" color="255,230,230" fill="1" layer="-1.00" shape="139.59,-138.75 140.54,-140.85 143.87,-139.30 142.84,-137.22 139.59,-138.75"/>
    <poly id="122967388" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-5.45,-226.66 -0.87,-226.18 -0.59,-228.81 -5.17,-229.29 -5.45,-226.66"/>
    <poly id="122967389" type="building" color="255,230,230" fill="1" layer="-1.00" shape="60.95,-111.64 63.56,-115.09 67.04,-112.48 64.43,-109.02 60.95,-111.64"/>
    <poly id="122967392" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-5.61,-222.33 -5.23,-225.61 -0.94,-225.13 -1.29,-221.86 -5.61,-222.33"/>
    <poly id="122967393" type="building" color="255,230,230" fill="1" layer="-1.00" shape="150.14,-124.33 148.33,-119.91 152.52,-118.21 154.32,-122.62 150.14,-124.33"/>
    <poly id="122967395" type="building" color="255,230,230" fill="1" layer="-1.00" shape="83.90,-205.88 87.76,-204.19 86.12,-200.48 82.27,-202.18 83.90,-205.88"/>
    <poly id="122967398" type="building" color="255,230,230" fill="1" layer="-1.00" shape="34.57,-142.37 38.07,-139.63 40.18,-142.30 36.68,-145.06 34.57,-142.37"/>
    <poly id="122967399" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-14.64,-222.13 -13.70,-227.39 -9.23,-226.64 -10.01,-221.42 -14.64,-222.13"/>
    <poly id="122967400" type="building" color="255,230,230" fill="1" layer="-1.00" shape="15.46,-186.50 17.34,-190.73 20.71,-189.22 18.79,-185.06 15.46,-186.50"/>
    <poly id="122967403" type="building" color="255,230,230" fill="1" layer="-1.00" shape="140.83,-132.93 142.84,-137.22 139.59,-138.75 137.58,-134.45 140.83,-132.93"/>
    <poly id="122967404" type="building" color="255,230,230" fill="1" layer="-1.00" shape="43.34,-173.41 45.22,-177.48 52.17,-174.29 50.29,-170.21 43.34,-173.41"/>
    <poly id="122967406" type="building" color="255,230,230" fill="1" layer="-1.00" shape="70.01,-123.19 71.87,-125.56 75.15,-122.99 73.29,-120.64 70.01,-123.19"/>
    <poly id="122967407" type="building" color="255,230,230" fill="1" layer="-1.00" shape="161.78,-122.55 163.33,-126.75 167.74,-125.11 166.19,-120.95 161.78,-122.55"/>
    <poly id="122967409" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-57.75,-235.01 -58.27,-230.19 -55.15,-229.88 -54.57,-235.48 -57.67,-235.79 -57.75,-235.01"/>
    <poly id="122967411" type="building" color="255,230,230" fill="1" layer="-1.00" shape="23.38,-152.49 22.76,-151.74 25.32,-149.66 29.43,-154.71 26.87,-156.78 23.38,-152.49"/>
    <poly id="122967412" type="building" color="255,230,230" fill="1" layer="-1.00" shape="77.51,-202.82 79.70,-207.76 83.90,-205.88 82.27,-202.18 81.72,-200.96 77.51,-202.82"/>
    <poly id="122967415" type="building" color="255,230,230" fill="1" layer="-1.00" shape="71.63,-159.98 73.92,-164.45 76.66,-163.06 74.42,-158.56 73.22,-159.16 71.63,-159.98"/>
    <poly id="122967416" type="building" color="255,230,230" fill="1" layer="-1.00" shape="30.28,-185.57 31.02,-187.25 32.62,-190.89 35.45,-189.67 33.10,-184.34 30.28,-185.57"/>
    <poly id="122967420" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-5.23,-225.61 -8.31,-225.97 -8.78,-221.96 -5.69,-221.60 -5.61,-222.33 -5.23,-225.61"/>
    <poly id="122967421" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-31.94,-185.17 -31.26,-186.01 -28.30,-183.75 -31.22,-179.96 -34.17,-182.19 -31.94,-185.17"/>
    <poly id="122967423" type="building" color="255,230,230" fill="1" layer="-1.00" shape="155.81,-74.61 153.19,-75.85 152.31,-73.97 155.56,-72.44 156.44,-74.31 155.81,-74.61"/>
    <poly id="122967424" type="building" color="255,230,230" fill="1" layer="-1.00" shape="44.53,-133.07 41.89,-129.67 45.56,-126.94 48.11,-130.14 45.51,-132.31 44.53,-133.07"/>
    <poly id="122967426" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-61.43,-235.37 -62.07,-235.39 -64.21,-235.49 -64.06,-238.94 -61.09,-238.81 -61.43,-235.37"/>
    <poly id="122967428" type="building" color="255,230,230" fill="1" layer="-1.00" shape="104.69,-98.78 106.57,-103.07 108.74,-102.12 107.38,-99.11 106.85,-97.84 104.69,-98.78"/>
    <poly id="122967432" type="building" color="255,230,230" fill="1" layer="-1.00" shape="100.85,-153.02 102.11,-155.84 105.51,-154.34 105.06,-153.23 104.27,-151.51 100.85,-153.02"/>
    <poly id="122967433" type="building" color="255,230,230" fill="1" layer="-1.00" shape="48.81,-129.59 51.26,-132.53 54.53,-129.80 55.55,-129.06 53.23,-126.17 48.81,-129.59"/>
    <poly id="122967437" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-58.27,-230.19 -62.48,-230.53 -62.07,-235.39 -61.43,-235.37 -57.75,-235.01 -58.27,-230.19"/>
    <poly id="122967438" type="building" color="255,230,230" fill="1" layer="-1.00" shape="107.57,-90.73 109.24,-94.22 104.88,-96.33 104.08,-92.23 104.89,-91.86 107.57,-90.73"/>
    <poly id="122967439" type="building" color="255,230,230" fill="1" layer="-1.00" shape="185.08,-110.67 176.49,-114.71 175.18,-111.96 174.88,-111.34 183.45,-107.25 185.08,-110.67"/>
    <poly id="122967446" type="building" color="255,230,230" fill="1" layer="-1.00" shape="33.69,-136.92 36.31,-134.75 37.99,-136.78 34.70,-139.50 33.01,-137.47 33.69,-136.92"/>
    <poly id="122967448" type="building" color="255,230,230" fill="1" layer="-1.00" shape="63.42,-212.03 64.18,-214.98 64.35,-215.62 69.60,-214.24 68.65,-210.65 63.42,-212.03"/>
    <poly id="122967450" type="building" color="255,230,230" fill="1" layer="-1.00" shape="87.84,-162.67 89.89,-161.68 91.70,-165.41 87.68,-167.34 85.87,-163.61 87.84,-162.67"/>
    <poly id="122967454" type="building" color="255,230,230" fill="1" layer="-1.00" shape="108.74,-102.12 109.43,-103.64 112.96,-102.05 110.92,-97.52 107.38,-99.11 108.74,-102.12"/>
    <poly id="122967455" type="building" color="255,230,230" fill="1" layer="-1.00" shape="26.37,-195.86 28.05,-199.63 32.08,-197.85 30.80,-194.94 30.42,-194.08 26.37,-195.86"/>
    <poly id="122967458" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-37.40,-236.90 -33.22,-236.34 -33.41,-235.36 -33.69,-232.38 -37.93,-232.95 -37.40,-236.90"/>
    <poly id="122967459" type="building" color="255,230,230" fill="1" layer="-1.00" shape="84.64,-96.91 86.89,-99.68 82.85,-102.97 80.55,-100.22 82.67,-98.46 84.64,-96.91"/>
    <poly id="122967462" type="building" color="255,230,230" fill="1" layer="-1.00" shape="84.35,-210.54 84.78,-213.03 89.42,-212.24 88.65,-207.81 87.88,-207.93 84.35,-210.54"/>
    <poly id="122967463" type="building" color="255,230,230" fill="1" layer="-1.00" shape="11.75,-193.26 15.50,-191.33 13.51,-187.50 9.76,-189.42 10.05,-189.98 11.75,-193.26"/>
    <poly id="122967464" type="building" color="255,230,230" fill="1" layer="-1.00" shape="10.18,-155.64 11.51,-154.80 14.68,-152.43 16.82,-154.98 12.42,-158.46 10.18,-155.64"/>
    <poly id="122967468" type="building" color="255,230,230" fill="1" layer="-1.00" shape="105.51,-154.34 106.66,-157.15 109.53,-155.98 107.93,-152.06 105.06,-153.23 105.51,-154.34"/>
    <poly id="122967472" type="building" color="255,230,230" fill="1" layer="-1.00" shape="35.49,-178.15 34.47,-176.04 39.34,-173.71 40.35,-175.83 38.98,-176.48 35.49,-178.15"/>
    <poly id="122967475" type="building" color="255,230,230" fill="1" layer="-1.00" shape="95.24,-155.26 98.63,-153.62 101.03,-158.57 97.64,-160.21 97.19,-159.29 95.24,-155.26"/>
    <poly id="122967477" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-57.30,-239.61 -53.05,-239.19 -53.43,-235.37 -54.57,-235.48 -57.67,-235.79 -57.30,-239.61"/>
    <poly id="122967482" type="building" color="255,230,230" fill="1" layer="-1.00" shape="82.37,-161.58 83.87,-164.61 85.87,-163.61 87.84,-162.67 86.33,-159.62 82.37,-161.58"/>
    <poly id="122967484" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-33.69,-232.38 -33.76,-231.72 -28.07,-231.18 -27.73,-234.82 -33.41,-235.36 -33.69,-232.38"/>
    <poly id="122967490" type="building" color="255,230,230" fill="1" layer="-1.00" shape="53.23,-126.17 56.07,-123.73 52.85,-119.85 49.98,-122.17 50.61,-122.95 53.23,-126.17"/>
    <poly id="122967492" type="building" color="255,230,230" fill="1" layer="-1.00" shape="12.77,-149.81 12.28,-149.29 9.12,-151.77 11.51,-154.80 14.68,-152.43 12.77,-149.81"/>
    <poly id="122967498" type="building" color="255,230,230" fill="1" layer="-1.00" shape="45.56,-126.94 50.61,-122.95 53.23,-126.17 48.81,-129.59 48.11,-130.14 45.56,-126.94"/>
    <poly id="122967500" type="building" color="255,230,230" fill="1" layer="-1.00" shape="52.85,-119.85 52.49,-119.40 59.09,-113.99 62.68,-118.34 61.53,-119.30 56.07,-123.73 52.85,-119.85"/>
    <poly id="122967501" type="building" color="255,230,230" fill="1" layer="-1.00" shape="39.62,-221.84 39.99,-224.60 42.77,-224.22 42.98,-225.80 45.95,-225.40 45.36,-221.06 39.62,-221.84"/>
    <poly id="122967502" type="building" color="255,230,230" fill="1" layer="-1.00" shape="31.22,-222.90 31.46,-225.26 30.26,-225.38 30.48,-227.56 34.35,-227.17 33.89,-222.62 31.22,-222.90"/>
    <poly id="122967505" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-21.93,-168.50 -22.64,-169.03 -24.36,-166.75 -20.22,-163.65 -18.50,-165.94 -19.38,-166.60 -21.93,-168.50"/>
    <poly id="122967506" type="building" color="255,230,230" fill="1" layer="-1.00" shape="63.86,-170.34 64.88,-172.53 65.24,-173.36 67.29,-172.46 70.10,-171.16 68.70,-168.13 63.86,-170.34"/>
    <poly id="122967510" type="building" color="255,230,230" fill="1" layer="-1.00" shape="91.80,-96.07 95.46,-100.63 98.80,-97.97 98.43,-97.56 95.86,-94.24 95.14,-93.40 91.80,-96.07"/>
    <poly id="122967511" type="building" color="255,230,230" fill="1" layer="-1.00" shape="90.57,-149.85 92.67,-148.89 92.04,-147.49 95.02,-146.14 97.74,-152.15 92.66,-154.45 90.57,-149.85"/>
    <poly id="122967514" type="building" color="255,230,230" fill="1" layer="-1.00" shape="147.68,-83.08 149.60,-87.16 155.59,-84.36 154.15,-81.27 152.77,-81.91 152.30,-80.91 147.68,-83.08"/>
    <poly id="122967516" type="building" color="255,230,230" fill="1" layer="-1.00" shape="68.00,-215.95 68.52,-218.77 69.84,-218.54 70.31,-221.12 73.75,-220.53 72.68,-215.10 68.00,-215.95"/>
    <poly id="122967518" type="building" color="255,230,230" fill="1" layer="-1.00" shape="75.35,-109.01 72.51,-111.18 75.01,-114.43 77.37,-112.63 75.69,-110.46 76.18,-110.08 75.35,-109.01"/>
    <poly id="122967520" type="building" color="255,230,230" fill="1" layer="-1.00" shape="132.45,-55.98 131.46,-59.35 124.21,-62.46 126.57,-66.68 136.49,-61.90 137.62,-57.58 132.45,-55.98"/>
    <poly id="122967522" type="building" color="255,230,230" fill="1" layer="-1.00" shape="189.20,-86.01 188.06,-89.60 194.40,-91.60 196.38,-85.36 195.28,-84.84 193.55,-85.30 189.20,-86.01"/>
    <poly id="122967524" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-22.93,-226.21 -22.44,-228.73 -22.21,-230.05 -18.51,-229.41 -19.23,-225.53 -22.42,-226.17 -22.93,-226.21"/>
    <poly id="122967527" type="building" color="255,230,230" fill="1" layer="-1.00" shape="98.03,-148.79 99.73,-152.07 103.80,-149.98 102.89,-148.24 102.23,-148.58 101.44,-147.04 98.03,-148.79"/>
    <poly id="122967528" type="building" color="255,230,230" fill="1" layer="-1.00" shape="35.49,-178.15 36.75,-180.95 38.37,-180.22 38.70,-180.96 40.62,-180.09 38.98,-176.48 35.49,-178.15"/>
    <poly id="122967530" type="building" color="255,230,230" fill="1" layer="-1.00" shape="111.84,-114.01 112.32,-115.01 111.44,-115.43 112.66,-117.98 116.65,-116.06 115.00,-112.54 111.84,-114.01"/>
    <poly id="122967531" type="building" color="255,230,230" fill="1" layer="-1.00" shape="20.55,-148.17 20.16,-147.65 20.85,-147.15 22.49,-145.81 24.88,-148.76 22.56,-150.63 20.55,-148.17"/>
    <poly id="122967534" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-33.94,-229.53 -31.08,-229.08 -31.22,-228.22 -29.63,-227.96 -30.20,-224.44 -34.65,-225.15 -33.94,-229.53"/>
    <poly id="122967536" type="building" color="255,230,230" fill="1" layer="-1.00" shape="75.35,-109.01 78.91,-106.29 81.41,-109.56 77.37,-112.63 75.69,-110.46 76.18,-110.08 75.35,-109.01"/>
    <poly id="122967537" type="building" color="255,230,230" fill="1" layer="-1.00" shape="56.07,-123.73 61.06,-129.84 64.48,-127.06 61.28,-123.14 63.31,-121.48 61.53,-119.30 56.07,-123.73"/>
    <poly id="122967538" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-43.23,-226.97 -42.98,-227.91 -42.45,-231.10 -41.64,-230.97 -38.94,-230.42 -39.78,-226.29 -43.23,-226.97"/>
    <poly id="122967541" type="building" color="255,230,230" fill="1" layer="-1.00" shape="29.92,-137.33 32.98,-140.83 34.70,-139.50 33.01,-137.47 33.69,-136.92 32.27,-135.30 29.92,-137.33"/>
    <poly id="122967542" type="building" color="255,230,230" fill="1" layer="-1.00" shape="71.82,-166.78 73.26,-169.69 73.83,-169.41 75.27,-172.31 79.42,-170.26 76.54,-164.46 71.82,-166.78"/>
    <poly id="122967543" type="building" color="255,230,230" fill="1" layer="-1.00" shape="64.88,-172.53 64.19,-172.83 65.68,-176.26 68.43,-175.07 67.29,-172.46 65.24,-173.36 64.88,-172.53"/>
    <poly id="122967545" type="building" color="255,230,230" fill="1" layer="-1.00" shape="38.67,-216.79 38.39,-214.34 29.47,-215.34 30.15,-221.35 32.69,-221.07 32.29,-217.49 38.67,-216.79"/>
    <poly id="122967547" type="building" color="255,230,230" fill="1" layer="-1.00" shape="41.51,-135.24 44.38,-139.20 48.46,-136.25 47.73,-135.13 45.51,-132.31 44.53,-133.07 41.51,-135.24"/>
    <poly id="122967548" type="building" color="255,230,230" fill="1" layer="-1.00" shape="120.46,-143.16 116.90,-135.05 121.03,-133.26 122.93,-137.60 121.90,-138.05 123.55,-141.82 120.46,-143.16"/>
    <poly id="122967549" type="building" color="255,230,230" fill="1" layer="-1.00" shape="59.84,-160.07 63.73,-168.07 66.67,-166.64 64.45,-162.08 66.51,-161.08 64.84,-157.65 59.84,-160.07"/>
    <poly id="122967552" type="building" color="255,230,230" fill="1" layer="-1.00" shape="155.81,-74.61 158.61,-80.10 163.73,-77.50 162.78,-75.64 160.68,-76.70 158.82,-73.07 156.44,-74.31 155.81,-74.61"/>
    <poly id="122967553" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-61.43,-235.37 -61.09,-238.81 -60.94,-240.49 -57.26,-240.14 -57.30,-239.61 -57.67,-235.79 -57.75,-235.01 -61.43,-235.37"/>
    <poly id="122967557" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-41.11,-233.49 -41.21,-232.83 -38.04,-232.36 -37.93,-232.95 -37.40,-236.90 -37.26,-237.62 -40.43,-238.09 -41.11,-233.49"/>
    <poly id="122967560" type="building" color="255,230,230" fill="1" layer="-1.00" shape="125.29,-139.89 123.63,-136.09 127.37,-134.48 126.98,-133.58 130.58,-132.02 132.62,-136.70 129.78,-137.94 125.29,-139.89"/>
    <poly id="122967562" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-44.34,-234.05 -45.66,-234.28 -45.19,-236.93 -44.17,-236.75 -43.82,-238.74 -40.43,-238.09 -41.11,-233.49 -44.34,-234.05"/>
    <poly id="122967564" type="building" color="255,230,230" fill="1" layer="-1.00" shape="119.85,-145.81 121.68,-150.30 126.83,-148.21 124.13,-141.62 123.55,-141.82 120.46,-143.16 121.43,-145.17 119.85,-145.81"/>
    <poly id="122967566" type="building" color="255,230,230" fill="1" layer="-1.00" shape="109.75,-147.93 111.18,-151.31 115.49,-149.48 116.33,-149.08 114.85,-145.71 113.37,-146.36 110.53,-147.58 109.75,-147.93"/>
    <poly id="122967568" type="building" color="255,230,230" fill="1" layer="-1.00" shape="5.68,-225.95 6.19,-229.19 11.42,-228.35 11.30,-227.63 13.74,-227.24 13.34,-224.75 10.50,-225.23 5.68,-225.95"/>
    <poly id="122967571" type="building" color="255,230,230" fill="1" layer="-1.00" shape="14.68,-152.43 12.77,-149.81 19.32,-145.05 20.85,-147.15 20.16,-147.65 20.55,-148.17 16.98,-150.76 14.68,-152.43"/>
    <poly id="122967572" type="building" color="255,230,230" fill="1" layer="-1.00" shape="82.67,-98.46 80.77,-96.19 79.54,-97.21 80.31,-98.13 78.00,-100.06 81.43,-104.15 82.85,-102.97 80.55,-100.22 82.67,-98.46"/>
    <poly id="122967576" type="building" color="255,230,230" fill="1" layer="-1.00" shape="136.01,-129.03 132.93,-130.43 135.24,-135.49 137.58,-134.45 140.83,-132.93 141.44,-132.68 140.99,-131.69 137.88,-133.11 136.01,-129.03"/>
    <poly id="122967578" type="building" color="255,230,230" fill="1" layer="-1.00" shape="53.36,-169.45 54.86,-173.23 55.87,-172.82 60.97,-170.80 61.89,-170.44 60.65,-167.34 59.08,-167.97 58.81,-167.30 53.36,-169.45"/>
    <poly id="122967582" type="building" color="255,230,230" fill="1" layer="-1.00" shape="89.01,-91.74 88.70,-91.34 91.58,-89.05 95.14,-93.40 91.80,-96.07 88.49,-98.71 87.61,-97.61 91.34,-94.63 89.01,-91.74"/>
    <poly id="122967583" type="building" color="255,230,230" fill="1" layer="-1.00" shape="109.75,-147.93 107.99,-148.67 110.76,-155.20 113.30,-154.13 112.48,-152.17 116.00,-150.69 115.49,-149.48 111.18,-151.31 109.75,-147.93"/>
    <poly id="122967586" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-41.64,-230.97 -41.50,-231.84 -43.12,-232.11 -43.24,-231.41 -45.46,-231.77 -46.01,-228.41 -42.98,-227.91 -42.45,-231.10 -41.64,-230.97"/>
    <poly id="122967587" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-22.44,-228.73 -24.84,-229.17 -24.54,-230.85 -25.87,-231.08 -25.57,-232.73 -23.89,-232.42 -23.69,-233.48 -21.65,-233.10 -22.21,-230.05 -22.44,-228.73"/>
    <poly id="122967591" type="building" color="255,230,230" fill="1" layer="-1.00" shape="76.66,-163.06 77.36,-164.49 79.27,-163.56 78.62,-162.27 79.49,-161.85 76.52,-155.88 72.56,-157.84 73.22,-159.16 74.42,-158.56 76.66,-163.06"/>
    <poly id="122976480" type="building" color="255,230,230" fill="1" layer="-1.00" shape="292.18,-199.68 292.18,-200.19 292.22,-204.29 292.38,-219.40 292.44,-224.84 318.74,-224.57 318.79,-226.85 318.81,-233.22 288.66,-233.54 288.60,-226.92 284.47,-226.97 284.18,-199.33 286.19,-193.36 289.87,-194.73 293.40,-195.82 292.59,-198.38 292.18,-199.68"/>
    <poly id="122976481" type="building" color="255,230,230" fill="1" layer="-1.00" shape="318.79,-226.85 321.82,-226.85 321.82,-226.12 335.57,-226.09 335.58,-232.63 335.60,-236.91 328.19,-236.93 328.19,-237.74 323.78,-237.76 323.77,-236.62 321.74,-236.63 321.73,-233.20 318.81,-233.22 318.79,-226.85"/>
    <poly id="122976482" type="building" color="255,230,230" fill="1" layer="-1.00" shape="238.47,-188.95 239.81,-184.62 236.66,-183.65 240.96,-169.70 243.99,-170.63 256.74,-129.30 285.30,-138.06 266.89,-197.74 258.94,-195.30 260.41,-190.53 247.74,-186.64 246.28,-191.34 241.63,-189.91 238.47,-188.95"/>
    <poly id="122976483" type="building" color="255,230,230" fill="1" layer="-1.00" shape="288.99,-161.77 292.56,-162.90 299.58,-165.06 300.54,-161.97 309.30,-164.68 310.90,-159.50 311.15,-158.68 311.50,-157.52 314.81,-146.80 309.35,-145.10 310.65,-140.90 315.19,-126.79 304.75,-123.53 301.23,-134.76 296.21,-150.75 292.79,-149.68 288.99,-161.77"/>
    <poly id="122976485" type="building" color="255,230,230" fill="1" layer="-1.00" shape="309.30,-164.68 308.07,-168.89 301.88,-188.37 309.86,-190.89 308.50,-195.22 303.30,-193.61 300.63,-192.79 299.14,-197.59 293.40,-195.82 289.87,-194.73 292.25,-187.03 285.73,-185.01 290.23,-170.52 288.50,-169.99 290.09,-164.86 291.79,-165.38 292.56,-162.90 299.58,-165.06 300.54,-161.97 309.30,-164.68"/>
    <poly id="122976486" type="building" color="255,230,230" fill="1" layer="-1.00" shape="210.98,-159.27 209.78,-163.15 212.93,-164.10 214.12,-160.24 210.98,-159.27"/>
    <poly id="122976487" type="building" color="255,230,230" fill="1" layer="-1.00" shape="211.93,-135.24 210.63,-139.78 214.72,-140.95 216.01,-136.41 211.93,-135.24"/>
    <poly id="122976488" type="building" color="255,230,230" fill="1" layer="-1.00" shape="210.77,-141.63 209.53,-145.42 213.89,-146.78 215.10,-143.04 210.77,-141.63"/>
    <poly id="122976490" type="building" color="255,230,230" fill="1" layer="-1.00" shape="194.14,-194.91 190.36,-193.84 188.88,-199.05 192.66,-200.13 194.14,-194.91"/>
    <poly id="122976491" type="building" color="255,230,230" fill="1" layer="-1.00" shape="95.18,-201.48 97.26,-207.71 103.23,-205.72 101.15,-199.49 95.18,-201.48"/>
    <poly id="122976492" type="building" color="255,230,230" fill="1" layer="-1.00" shape="175.33,-307.47 163.38,-307.78 163.56,-314.71 175.51,-314.40 175.33,-307.47"/>
    <poly id="122976493" type="building" color="255,230,230" fill="1" layer="-1.00" shape="161.28,-171.87 163.18,-175.77 166.09,-174.36 164.20,-170.47 161.28,-171.87"/>
    <poly id="122976494" type="building" color="255,230,230" fill="1" layer="-1.00" shape="266.86,-204.10 267.10,-216.96 277.55,-216.76 277.30,-203.90 266.86,-204.10"/>
    <poly id="122976495" type="building" color="255,230,230" fill="1" layer="-1.00" shape="215.63,-127.21 214.30,-131.65 218.10,-132.78 219.43,-128.34 215.63,-127.21"/>
    <poly id="122976496" type="building" color="255,230,230" fill="1" layer="-1.00" shape="210.95,-128.87 210.14,-131.75 213.11,-132.57 213.91,-129.69 210.95,-128.87"/>
    <poly id="122976497" type="building" color="255,230,230" fill="1" layer="-1.00" shape="228.12,-104.37 227.17,-107.50 230.83,-108.61 231.78,-105.49 228.12,-104.37"/>
    <poly id="122976498" type="building" color="255,230,230" fill="1" layer="-1.00" shape="197.35,-182.51 196.38,-185.65 201.03,-187.07 202.00,-183.93 197.35,-182.51"/>
    <poly id="122976499" type="building" color="255,230,230" fill="1" layer="-1.00" shape="309.86,-190.89 315.19,-174.12 316.05,-171.42 308.07,-168.89 301.88,-188.37 309.86,-190.89"/>
    <poly id="122976500" type="building" color="255,230,230" fill="1" layer="-1.00" shape="145.67,-170.86 147.67,-175.52 150.52,-174.30 148.52,-169.64 145.67,-170.86"/>
    <poly id="122976501" type="building" color="255,230,230" fill="1" layer="-1.00" shape="134.53,-182.55 136.10,-186.23 140.24,-184.35 138.65,-180.87 134.53,-182.55"/>
    <poly id="122976502" type="building" color="255,230,230" fill="1" layer="-1.00" shape="167.18,-156.16 168.67,-160.55 172.09,-159.37 170.54,-154.97 167.18,-156.16"/>
    <poly id="122976503" type="building" color="255,230,230" fill="1" layer="-1.00" shape="232.27,-92.33 231.45,-94.79 236.62,-96.52 237.45,-94.04 232.27,-92.33"/>
    <poly id="122976504" type="building" color="255,230,230" fill="1" layer="-1.00" shape="152.31,-178.69 153.55,-181.72 149.28,-183.45 147.69,-180.89 152.31,-178.69"/>
    <poly id="122976505" type="building" color="255,230,230" fill="1" layer="-1.00" shape="203.93,-184.36 202.86,-188.36 206.27,-189.28 207.34,-185.27 203.93,-184.36"/>
    <poly id="122976506" type="building" color="255,230,230" fill="1" layer="-1.00" shape="356.39,-163.67 357.40,-160.68 354.45,-159.69 353.44,-162.67 356.39,-163.67"/>
    <poly id="122976507" type="building" color="255,230,230" fill="1" layer="-1.00" shape="191.35,-204.46 189.36,-210.86 193.47,-212.14 195.46,-205.74 191.35,-204.46"/>
    <poly id="122976508" type="building" color="255,230,230" fill="1" layer="-1.00" shape="202.21,-167.92 203.10,-165.08 207.08,-166.32 206.19,-169.16 202.21,-167.92"/>
    <poly id="122976509" type="building" color="255,230,230" fill="1" layer="-1.00" shape="238.33,-271.71 238.65,-281.20 260.06,-280.50 259.75,-271.00 238.33,-271.71"/>
    <poly id="122976511" type="building" color="255,230,230" fill="1" layer="-1.00" shape="105.24,-196.08 107.73,-202.80 112.02,-201.22 109.52,-194.50 105.24,-196.08"/>
    <poly id="122976512" type="building" color="255,230,230" fill="1" layer="-1.00" shape="404.18,-272.24 377.83,-263.48 375.95,-269.10 402.29,-277.86 404.18,-272.24"/>
    <poly id="122976513" type="building" color="255,230,230" fill="1" layer="-1.00" shape="237.28,-119.29 236.20,-122.95 239.30,-123.86 240.39,-120.20 237.28,-119.29"/>
    <poly id="122976515" type="building" color="255,230,230" fill="1" layer="-1.00" shape="196.10,-187.51 195.37,-190.08 199.57,-191.27 200.28,-188.63 196.10,-187.51"/>
    <poly id="122976516" type="building" color="255,230,230" fill="1" layer="-1.00" shape="222.65,-120.46 221.56,-124.42 225.17,-125.41 226.26,-121.44 222.65,-120.46"/>
    <poly id="122976517" type="building" color="255,230,230" fill="1" layer="-1.00" shape="159.38,-161.43 161.48,-166.29 164.44,-165.01 162.34,-160.16 159.38,-161.43"/>
    <poly id="122976518" type="building" color="255,230,230" fill="1" layer="-1.00" shape="91.19,-197.22 89.59,-193.72 92.44,-192.42 94.04,-195.93 91.19,-197.22"/>
    <poly id="122976519" type="building" color="255,230,230" fill="1" layer="-1.00" shape="216.69,-121.28 215.50,-125.13 219.67,-126.41 220.86,-122.57 216.69,-121.28"/>
    <poly id="122976520" type="building" color="255,230,230" fill="1" layer="-1.00" shape="231.44,-96.92 230.35,-100.26 234.15,-101.50 235.25,-98.17 231.44,-96.92"/>
    <poly id="122976521" type="building" color="255,230,230" fill="1" layer="-1.00" shape="200.70,-174.30 199.66,-178.21 204.15,-179.40 205.18,-175.49 200.70,-174.30"/>
    <poly id="122976522" type="building" color="255,230,230" fill="1" layer="-1.00" shape="196.10,-187.51 191.96,-186.34 191.23,-188.91 195.37,-190.08 196.10,-187.51"/>
    <poly id="122976523" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="328.05,-158.20 326.74,-162.41 318.58,-188.69 334.83,-193.70 344.30,-163.21 328.05,-158.20"/>
    <poly id="122976524" type="building" color="255,230,230" fill="1" layer="-1.00" shape="224.15,-128.85 227.15,-129.69 226.05,-133.61 223.06,-132.78 224.15,-128.85"/>
    <poly id="122976525" type="building" color="255,230,230" fill="1" layer="-1.00" shape="135.06,-207.28 136.55,-211.43 140.05,-210.03 138.44,-206.02 135.06,-207.28"/>
    <poly id="122976526" type="building" color="255,230,230" fill="1" layer="-1.00" shape="209.10,-166.74 207.87,-170.66 212.32,-172.04 213.55,-168.13 209.10,-166.74"/>
    <poly id="122976527" type="building" color="255,230,230" fill="1" layer="-1.00" shape="137.96,-180.20 141.45,-178.71 139.13,-173.31 135.63,-174.80 137.96,-180.20"/>
    <poly id="122976528" type="building" color="255,230,230" fill="1" layer="-1.00" shape="214.12,-160.24 217.82,-161.38 216.64,-165.23 212.93,-164.10 214.12,-160.24"/>
    <poly id="122976529" type="building" color="255,230,230" fill="1" layer="-1.00" shape="263.22,-224.86 263.31,-229.54 269.28,-229.42 269.19,-224.75 263.22,-224.86"/>
    <poly id="122976530" type="building" color="255,230,230" fill="1" layer="-1.00" shape="124.92,-188.96 126.29,-192.53 129.43,-191.34 128.08,-187.76 124.92,-188.96"/>
    <poly id="122976531" type="building" color="255,230,230" fill="1" layer="-1.00" shape="225.48,-89.46 224.30,-93.09 229.89,-94.89 231.07,-91.26 225.48,-89.46"/>
    <poly id="122976532" type="building" color="255,230,230" fill="1" layer="-1.00" shape="119.69,-190.40 121.62,-195.91 124.64,-194.87 122.70,-189.35 119.69,-190.40"/>
    <poly id="122976533" type="building" color="255,230,230" fill="1" layer="-1.00" shape="213.79,-152.49 212.37,-156.94 216.77,-158.25 218.12,-153.91 213.79,-152.49"/>
    <poly id="122976534" type="building" color="255,230,230" fill="1" layer="-1.00" shape="138.65,-180.87 141.97,-179.37 143.55,-182.85 140.24,-184.35 138.65,-180.87"/>
    <poly id="122976535" type="building" color="255,230,230" fill="1" layer="-1.00" shape="96.37,-194.29 97.96,-198.24 101.55,-196.93 99.95,-192.83 96.37,-194.29"/>
    <poly id="122976536" type="building" color="255,230,230" fill="1" layer="-1.00" shape="217.83,-136.70 216.25,-141.67 219.94,-142.83 221.52,-137.87 217.83,-136.70"/>
    <poly id="122976537" type="building" color="255,230,230" fill="1" layer="-1.00" shape="218.12,-153.91 220.62,-154.69 219.26,-159.03 216.77,-158.25 218.12,-153.91"/>
    <poly id="122976538" type="building" color="255,230,230" fill="1" layer="-1.00" shape="202.87,-189.41 201.60,-193.49 204.58,-194.41 205.84,-190.33 202.87,-189.41"/>
    <poly id="122976539" type="building" color="255,230,230" fill="1" layer="-1.00" shape="99.95,-192.83 103.44,-191.46 105.05,-195.57 101.55,-196.93 99.95,-192.83"/>
    <poly id="122976540" type="building" color="255,230,230" fill="1" layer="-1.00" shape="91.19,-197.22 92.86,-201.02 95.84,-199.67 94.04,-195.93 91.19,-197.22"/>
    <poly id="122976541" type="building" color="255,230,230" fill="1" layer="-1.00" shape="152.00,-167.82 154.08,-172.45 157.02,-171.07 154.94,-166.50 152.00,-167.82"/>
    <poly id="122976542" type="building" color="255,230,230" fill="1" layer="-1.00" shape="140.72,-173.81 142.54,-177.89 145.90,-176.40 144.08,-172.32 140.72,-173.81"/>
    <poly id="122976543" type="building" color="255,230,230" fill="1" layer="-1.00" shape="223.89,-98.43 222.79,-101.95 227.49,-103.30 228.45,-99.80 223.89,-98.43"/>
    <poly id="122976544" type="building" color="255,230,230" fill="1" layer="-1.00" shape="202.21,-167.92 201.26,-171.02 205.22,-172.25 206.19,-169.16 202.21,-167.92"/>
    <poly id="122976545" type="building" color="255,230,230" fill="1" layer="-1.00" shape="207.23,-174.40 205.85,-178.67 210.37,-180.12 211.76,-175.85 207.23,-174.40"/>
    <poly id="122976546" type="building" color="255,230,230" fill="1" layer="-1.00" shape="111.77,-193.76 113.93,-199.59 117.66,-198.20 115.50,-192.37 111.77,-193.76"/>
    <poly id="122976547" type="building" color="255,230,230" fill="1" layer="-1.00" shape="222.79,-101.95 221.55,-106.23 226.25,-107.59 227.49,-103.30 222.79,-101.95"/>
    <poly id="122976548" type="building" color="255,230,230" fill="1" layer="-1.00" shape="167.18,-156.16 165.99,-152.81 169.35,-151.63 170.54,-154.97 167.18,-156.16"/>
    <poly id="122976549" type="building" color="255,230,230" fill="1" layer="-1.00" shape="132.71,-176.01 135.03,-181.47 137.96,-180.20 135.63,-174.80 132.71,-176.01"/>
    <poly id="122976550" type="building" color="255,230,230" fill="1" layer="-1.00" shape="206.53,-160.54 207.45,-157.48 204.88,-156.71 203.96,-159.78 206.53,-160.54"/>
    <poly id="122976551" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="310.65,-140.90 340.61,-150.48 343.83,-139.27 344.57,-136.69 345.48,-133.48 345.95,-131.86 316.67,-122.11 315.19,-126.79 310.65,-140.90"/>
    <poly id="122976552" type="building" color="255,230,230" fill="1" layer="-1.00" shape="114.03,-187.27 113.56,-186.16 117.57,-184.46 119.49,-189.10 115.41,-190.74 114.03,-187.27"/>
    <poly id="122976553" type="building" color="255,230,230" fill="1" layer="-1.00" shape="125.63,-179.49 126.03,-180.56 127.35,-183.52 130.52,-182.18 128.79,-178.14 125.63,-179.49"/>
    <poly id="122976554" type="building" color="255,230,230" fill="1" layer="-1.00" shape="135.06,-207.28 131.70,-208.48 133.55,-213.67 136.92,-212.48 136.55,-211.43 135.06,-207.28"/>
    <poly id="122976555" type="building" color="255,230,230" fill="1" layer="-1.00" shape="152.00,-167.82 151.58,-166.89 149.05,-168.03 151.54,-173.59 154.08,-172.45 152.00,-167.82"/>
    <poly id="122976556" type="building" color="255,230,230" fill="1" layer="-1.00" shape="154.24,-201.39 154.78,-203.71 155.21,-205.69 160.99,-204.41 160.03,-200.11 154.24,-201.39"/>
    <poly id="122976557" type="building" color="255,230,230" fill="1" layer="-1.00" shape="126.03,-180.56 122.08,-182.30 123.82,-186.22 127.76,-184.47 127.35,-183.52 126.03,-180.56"/>
    <poly id="122976558" type="building" color="255,230,230" fill="1" layer="-1.00" shape="199.76,-196.63 206.48,-198.58 205.13,-203.22 198.40,-201.28 198.71,-200.21 199.76,-196.63"/>
    <poly id="122976559" type="building" color="255,230,230" fill="1" layer="-1.00" shape="153.10,-174.06 154.21,-176.47 157.87,-174.81 156.60,-172.01 152.93,-173.69 153.10,-174.06"/>
    <poly id="122976560" type="building" color="255,230,230" fill="1" layer="-1.00" shape="215.10,-143.04 215.33,-142.33 220.61,-144.03 219.16,-148.47 213.89,-146.78 215.10,-143.04"/>
    <poly id="122976561" type="building" color="255,230,230" fill="1" layer="-1.00" shape="220.78,-127.91 219.46,-132.68 222.83,-133.61 223.06,-132.78 224.15,-128.85 220.78,-127.91"/>
    <poly id="122976562" type="building" color="255,230,230" fill="1" layer="-1.00" shape="154.24,-201.39 153.59,-199.71 148.98,-201.52 150.50,-205.38 154.78,-203.71 154.24,-201.39"/>
    <poly id="122976563" type="building" color="255,230,230" fill="1" layer="-1.00" shape="201.55,-159.08 200.63,-162.20 205.64,-163.67 206.53,-160.54 203.96,-159.78 201.55,-159.08"/>
    <poly id="122976564" type="building" color="255,230,230" fill="1" layer="-1.00" shape="145.43,-177.84 147.04,-181.21 147.69,-180.89 152.31,-178.69 150.65,-175.35 145.43,-177.84"/>
    <poly id="122976565" type="building" color="255,230,230" fill="1" layer="-1.00" shape="103.72,-190.00 105.75,-194.79 109.47,-193.25 108.02,-189.74 107.45,-188.42 103.72,-190.00"/>
    <poly id="122976567" type="building" color="255,230,230" fill="1" layer="-1.00" shape="109.47,-193.25 115.41,-190.74 114.03,-187.27 113.02,-187.71 108.02,-189.74 109.47,-193.25"/>
    <poly id="122976570" type="building" color="255,230,230" fill="1" layer="-1.00" shape="259.56,-104.53 257.81,-109.89 261.03,-110.94 261.75,-108.75 263.20,-109.22 264.24,-106.05 259.56,-104.53"/>
    <poly id="122976572" type="building" color="255,230,230" fill="1" layer="-1.00" shape="194.14,-194.91 192.66,-200.13 196.73,-201.20 197.14,-199.77 198.71,-200.21 199.76,-196.63 194.14,-194.91"/>
    <poly id="122976575" type="building" color="255,230,230" fill="1" layer="-1.00" shape="128.08,-187.76 127.86,-187.17 130.59,-186.16 132.45,-191.12 129.73,-192.13 129.43,-191.34 128.08,-187.76"/>
    <poly id="122976576" type="building" color="255,230,230" fill="1" layer="-1.00" shape="207.58,-148.65 206.54,-151.86 207.37,-152.12 206.10,-156.09 210.81,-157.60 212.45,-152.51 211.82,-152.31 212.49,-150.22 207.58,-148.65"/>
    <poly id="122976577" type="building" color="255,230,230" fill="1" layer="-1.00" shape="113.02,-187.71 112.23,-185.87 113.08,-185.51 112.22,-183.48 116.40,-181.71 117.57,-184.46 113.56,-186.16 114.03,-187.27 113.02,-187.71"/>
    <poly id="122976579" type="building" color="255,230,230" fill="1" layer="-1.00" shape="232.16,-193.08 228.83,-203.99 230.75,-204.58 230.08,-206.78 232.38,-207.48 232.98,-205.49 234.79,-206.04 238.18,-194.90 232.16,-193.08"/>
    <poly id="123081369" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="-474.37,-236.13 -462.36,-239.71 -455.57,-216.95 -467.56,-213.38 -474.37,-236.13"/>
    <poly id="123081369#1" type="sport" color="79,230,125" fill="1" layer="-2.00" shape="-474.37,-236.13 -462.36,-239.71 -455.57,-216.95 -467.56,-213.38 -474.37,-236.13"/>
    <poly id="123112976" type="building" color="255,230,230" fill="1" layer="-1.00" shape="516.67,-340.21 516.09,-342.42 520.30,-343.52 520.88,-341.31 516.67,-340.21"/>
    <poly id="123112979" type="building" color="255,230,230" fill="1" layer="-1.00" shape="520.23,-317.44 518.93,-321.66 523.07,-322.94 524.37,-318.71 520.23,-317.44"/>
    <poly id="123112995" type="building" color="255,230,230" fill="1" layer="-1.00" shape="588.17,-330.93 590.99,-331.65 591.57,-329.39 588.74,-328.67 588.17,-330.93"/>
    <poly id="123113029" type="building" color="255,230,230" fill="1" layer="-1.00" shape="518.04,-334.70 516.67,-340.21 520.88,-341.31 522.36,-335.81 518.04,-334.70"/>
    <poly id="123113035" type="building" color="255,230,230" fill="1" layer="-1.00" shape="585.51,-321.04 584.45,-324.90 588.64,-325.95 589.64,-322.09 585.51,-321.04"/>
    <poly id="123113036" type="building" color="255,230,230" fill="1" layer="-1.00" shape="520.06,-312.16 524.47,-313.53 523.41,-316.95 518.99,-315.57 520.06,-312.16"/>
    <poly id="123113038" type="building" color="255,230,230" fill="1" layer="-1.00" shape="587.50,-310.35 585.19,-309.77 584.06,-314.27 586.25,-314.82 587.50,-310.35"/>
    <poly id="123113041" type="building" color="255,230,230" fill="1" layer="-1.00" shape="598.74,-301.69 597.46,-306.23 601.86,-307.46 603.14,-302.92 598.74,-301.69"/>
    <poly id="123113050" type="building" color="255,230,230" fill="1" layer="-1.00" shape="585.51,-321.04 582.48,-320.22 581.42,-324.07 584.45,-324.90 585.51,-321.04"/>
    <poly id="123113053" type="building" color="255,230,230" fill="1" layer="-1.00" shape="542.99,-302.54 542.10,-306.01 550.62,-308.18 551.50,-304.70 542.99,-302.54"/>
    <poly id="123113055" type="building" color="255,230,230" fill="1" layer="-1.00" shape="587.41,-340.54 586.19,-344.80 589.69,-345.77 590.86,-341.48 587.41,-340.54"/>
    <poly id="123113061" type="building" color="255,230,230" fill="1" layer="-1.00" shape="597.39,-319.91 599.78,-320.57 601.05,-315.91 598.66,-315.27 597.39,-319.91"/>
    <poly id="123113064" type="building" color="255,230,230" fill="1" layer="-1.00" shape="519.69,-326.83 518.43,-331.79 522.56,-332.83 523.81,-327.87 519.69,-326.83"/>
    <poly id="123113066" type="building" color="255,230,230" fill="1" layer="-1.00" shape="587.50,-310.35 588.44,-306.76 592.43,-307.82 591.49,-311.39 587.50,-310.35"/>
    <poly id="123113074" type="building" color="255,230,230" fill="1" layer="-1.00" shape="587.50,-310.35 591.49,-311.39 590.27,-316.02 586.25,-314.82 587.50,-310.35"/>
    <poly id="123113079" type="building" color="255,230,230" fill="1" layer="-1.00" shape="529.35,-303.93 527.67,-309.43 532.68,-310.96 534.36,-305.46 529.35,-303.93"/>
    <poly id="123113087" type="building" color="255,230,230" fill="1" layer="-1.00" shape="595.09,-314.28 593.80,-318.97 597.39,-319.91 598.66,-315.27 595.09,-314.28"/>
    <poly id="123113123" type="building" color="255,230,230" fill="1" layer="-1.00" shape="579.72,-333.34 579.88,-332.72 575.95,-331.75 575.03,-335.54 578.96,-336.49 579.72,-333.34"/>
    <poly id="123113130" type="building" color="255,230,230" fill="1" layer="-1.00" shape="579.72,-333.34 578.96,-336.49 578.63,-337.62 585.88,-339.56 587.01,-335.26 579.72,-333.34"/>
    <poly id="123113148" type="building" color="255,230,230" fill="1" layer="-1.00" shape="583.68,-325.94 582.75,-329.39 584.37,-329.84 588.17,-330.93 588.74,-328.67 589.09,-327.39 583.68,-325.94"/>
    <poly id="123113153" type="building" color="255,230,230" fill="1" layer="-1.00" shape="588.78,-305.69 587.07,-305.30 587.27,-304.44 586.51,-304.27 587.25,-301.03 589.72,-301.58 588.78,-305.69"/>
    <poly id="123113161" type="building" color="255,230,230" fill="1" layer="-1.00" shape="585.63,-341.81 584.03,-348.15 577.58,-346.54 578.73,-341.95 583.03,-343.02 583.47,-341.27 585.63,-341.81"/>
    <poly id="123113168" type="building" color="255,230,230" fill="1" layer="-1.00" shape="589.92,-300.99 589.72,-301.58 588.78,-305.69 588.44,-306.76 592.43,-307.82 593.79,-301.91 589.92,-300.99"/>
    <poly id="123113180" type="building" color="255,230,230" fill="1" layer="-1.00" shape="587.01,-335.26 588.17,-330.93 584.37,-329.84 583.91,-331.53 580.44,-330.62 579.88,-332.72 579.72,-333.34 587.01,-335.26"/>
    <poly id="123115557" type="building" color="255,230,230" fill="1" layer="-1.00" shape="688.86,-303.23 689.76,-299.70 693.55,-300.65 692.65,-304.19 688.86,-303.23"/>
    <poly id="123115560" type="building" color="255,230,230" fill="1" layer="-1.00" shape="690.90,-321.11 689.51,-326.07 694.83,-327.55 696.22,-322.59 690.90,-321.11"/>
    <poly id="123115561" type="building" color="255,230,230" fill="1" layer="-1.00" shape="708.38,-256.00 707.53,-259.45 711.22,-260.36 712.07,-256.95 708.38,-256.00"/>
    <poly id="123115566" type="building" color="255,230,230" fill="1" layer="-1.00" shape="680.94,-335.00 682.02,-330.87 685.10,-331.67 684.02,-335.80 680.94,-335.00"/>
    <poly id="123115573" type="building" color="255,230,230" fill="1" layer="-1.00" shape="708.13,-250.22 706.98,-254.70 701.45,-253.29 702.60,-248.80 708.13,-250.22"/>
    <poly id="123115574" type="building" color="255,230,230" fill="1" layer="-1.00" shape="633.54,-328.50 632.21,-333.49 636.80,-334.70 638.20,-329.76 633.54,-328.50"/>
    <poly id="123115575" type="building" color="255,230,230" fill="1" layer="-1.00" shape="686.28,-334.44 685.06,-339.15 691.39,-340.79 692.62,-336.07 686.28,-334.44"/>
    <poly id="123115577" type="building" color="255,230,230" fill="1" layer="-1.00" shape="695.43,-303.94 693.82,-309.88 697.55,-310.87 699.15,-304.94 695.43,-303.94"/>
    <poly id="123115580" type="building" color="255,230,230" fill="1" layer="-1.00" shape="706.01,-260.07 700.85,-258.72 701.73,-255.37 706.89,-256.72 706.01,-260.07"/>
    <poly id="123115581" type="building" color="255,230,230" fill="1" layer="-1.00" shape="700.88,-281.15 699.84,-285.34 696.33,-284.48 697.37,-280.29 700.88,-281.15"/>
    <poly id="123115607" type="building" color="255,230,230" fill="1" layer="-1.00" shape="733.28,-328.61 731.74,-333.62 737.64,-335.43 739.18,-330.42 733.28,-328.61"/>
    <poly id="123115628" type="building" color="255,230,230" fill="1" layer="-1.00" shape="708.38,-256.00 712.07,-256.95 713.35,-257.27 714.73,-251.90 710.34,-250.77 708.38,-256.00"/>
    <poly id="123115630" type="building" color="255,230,230" fill="1" layer="-1.00" shape="688.86,-303.23 687.61,-307.95 692.42,-309.20 693.67,-304.46 692.65,-304.19 688.86,-303.23"/>
    <poly id="123115632" type="building" color="255,230,230" fill="1" layer="-1.00" shape="703.99,-268.03 710.04,-269.61 711.14,-265.41 709.67,-265.01 705.07,-263.85 703.99,-268.03"/>
    <poly id="123115635" type="building" color="255,230,230" fill="1" layer="-1.00" shape="705.07,-263.85 705.57,-261.92 706.01,-260.07 710.64,-261.22 709.67,-265.01 705.07,-263.85"/>
    <poly id="123115638" type="building" color="255,230,230" fill="1" layer="-1.00" shape="680.94,-335.00 679.64,-340.38 683.44,-341.31 684.75,-335.96 684.02,-335.80 680.94,-335.00"/>
    <poly id="123115639" type="building" color="255,230,230" fill="1" layer="-1.00" shape="638.20,-329.76 643.03,-331.12 641.25,-337.41 636.42,-336.05 636.80,-334.70 638.20,-329.76"/>
    <poly id="123115641" type="building" color="255,230,230" fill="1" layer="-1.00" shape="641.93,-316.34 642.62,-313.83 638.19,-312.61 636.94,-317.09 641.37,-318.32 641.93,-316.34"/>
    <poly id="123115646" type="building" color="255,230,230" fill="1" layer="-1.00" shape="702.51,-274.95 697.28,-273.53 695.59,-279.76 697.37,-280.29 700.88,-281.15 702.51,-274.95"/>
    <poly id="123115648" type="building" color="255,230,230" fill="1" layer="-1.00" shape="641.93,-316.34 641.37,-318.32 640.46,-321.67 645.00,-322.92 646.47,-317.58 641.93,-316.34"/>
    <poly id="123115652" type="building" color="255,230,230" fill="1" layer="-1.00" shape="708.13,-250.22 710.05,-249.83 710.34,-250.77 708.38,-256.00 706.77,-255.58 706.98,-254.70 708.13,-250.22"/>
    <poly id="123115656" type="building" color="255,230,230" fill="1" layer="-1.00" shape="689.96,-320.71 688.15,-325.86 679.67,-322.89 680.90,-319.40 684.71,-320.73 685.29,-319.08 689.96,-320.71"/>
    <poly id="123115657" type="building" color="255,230,230" fill="1" layer="-1.00" shape="697.78,-289.81 696.49,-294.53 689.54,-292.65 690.37,-289.61 692.48,-290.18 692.95,-288.48 697.78,-289.81"/>
    <poly id="123115669" type="building" color="255,230,230" fill="1" layer="-1.00" shape="699.53,-289.09 697.99,-294.54 700.07,-295.13 700.83,-292.41 704.78,-293.52 705.56,-290.76 699.53,-289.09"/>
    <poly id="123115672" type="building" color="255,230,230" fill="1" layer="-1.00" shape="628.41,-342.82 627.45,-346.70 632.06,-347.85 633.27,-348.19 633.45,-347.68 634.34,-344.35 628.41,-342.82"/>
    <poly id="123115673" type="building" color="255,230,230" fill="1" layer="-1.00" shape="699.60,-260.34 698.67,-263.86 701.18,-264.52 700.50,-267.08 703.99,-268.03 705.07,-263.85 705.57,-261.92 699.60,-260.34"/>
    <poly id="123115678" type="building" color="255,230,230" fill="1" layer="-1.00" shape="634.34,-344.35 634.89,-342.30 640.25,-343.72 638.82,-349.11 638.10,-348.92 634.90,-348.07 633.45,-347.68 634.34,-344.35"/>
    <poly id="123115681" type="building" color="255,230,230" fill="1" layer="-1.00" shape="702.51,-274.95 700.88,-281.15 705.49,-282.38 705.78,-281.28 707.19,-281.65 708.32,-277.29 706.65,-276.87 706.85,-276.11 702.51,-274.95"/>
    <poly id="123115684" type="building" color="255,230,230" fill="1" layer="-1.00" shape="638.08,-323.02 637.72,-324.52 639.64,-324.98 639.17,-326.96 641.03,-327.40 641.74,-324.43 639.73,-323.96 639.86,-323.45 638.08,-323.02"/>
    <poly id="124903818" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-49.47,692.53 -49.48,690.97 -41.83,691.21 -44.98,696.30 -49.47,692.53"/>
    <poly id="124903821" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-56.35,690.53 -56.24,691.80 -61.91,695.27 -73.16,694.74 -70.23,690.27 -56.35,690.53"/>
    <poly id="124903822" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="95.83,700.26 94.46,699.78 105.60,680.82 115.79,666.76 128.22,650.24 140.37,635.29 159.44,615.39 171.14,605.33 190.64,589.25 205.66,578.77 207.13,577.98 209.39,577.87 210.57,579.13 211.28,581.18 210.99,583.43 209.05,585.60 195.48,594.59 184.76,603.09 173.31,612.74 149.35,632.76 137.19,643.04 128.83,652.19 113.58,672.55 102.62,688.77 95.83,700.26"/>
    <poly id="124903826" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-70.23,690.27 -74.27,690.03 -100.70,687.93 -104.05,692.34 -105.54,694.18 -74.11,696.16 -73.16,694.74 -70.23,690.27"/>
    <poly id="124903829" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-126.91,703.70 -127.24,706.56 -143.72,705.16 -157.12,703.60 -178.87,701.32 -219.59,698.20 -263.74,695.41 -288.95,694.03 -308.96,693.59 -346.59,691.41 -368.52,691.10 -368.35,686.16 -369.53,686.11 -369.56,682.58 -361.81,682.93 -344.49,683.97 -315.62,685.98 -247.60,690.29 -208.84,692.94 -190.05,693.92 -173.46,694.29 -152.10,693.67 -139.49,694.32 -126.44,694.72 -126.53,697.69 -126.91,703.70"/>
    <poly id="124903832" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="88.15,695.63 103.48,672.72 117.25,652.58 120.07,648.74 118.88,647.08 110.92,657.22 97.43,677.27 93.35,682.38 89.55,685.44 86.23,688.59 83.72,693.21 82.85,695.27 82.96,696.64 84.14,697.41 85.76,697.88 86.70,697.59 88.15,695.63"/>
    <poly id="124903833" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="197.55,601.61 199.63,604.34 189.35,613.22 161.10,640.90 146.90,656.56 134.56,672.10 125.93,684.79 120.79,693.23 118.97,699.11 117.52,702.25 115.96,703.44 112.44,703.85 109.52,703.23 106.95,702.42 112.74,692.61 124.05,676.37 132.17,665.97 161.93,632.59 180.34,616.13 197.55,601.61"/>
    <poly id="124903835" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-171.10,683.55 -128.40,686.30 -131.98,691.11 -133.70,692.80 -152.00,691.97 -166.18,691.89 -177.90,691.60 -171.10,683.55"/>
    <poly id="124903837" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-115.19,691.55 -112.80,688.86 -112.67,687.00 -128.40,686.30 -131.98,691.11 -115.19,691.55"/>
    <poly id="124903838" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="30.92,703.72 10.16,702.75 -0.99,702.09 4.74,694.18 35.58,696.13 30.92,703.72"/>
    <poly id="124903839" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-107.26,689.05 -107.17,687.39 -100.70,687.93 -104.05,692.34 -107.26,689.05"/>
    <poly id="125335287" type="commercial" color="209,209,204" fill="1" layer="-3.00" shape="660.89,114.13 646.40,103.87 631.77,102.51 612.76,91.88 600.06,85.72 578.41,78.84 578.72,75.92 541.04,72.04 528.27,72.07 523.50,72.22 517.18,72.44 500.03,74.42 478.15,87.01 454.38,95.20 461.63,122.95 512.29,295.83 521.84,327.84 527.56,344.23 532.74,350.68 525.91,355.15 522.08,357.64 563.03,388.74 574.46,404.69 585.25,415.91 609.86,440.38 631.39,462.42 652.05,484.18 671.95,508.97 688.36,527.23 710.51,552.41 729.61,576.22 754.27,608.02 770.52,631.67 781.64,649.38 791.07,664.87 792.03,667.24 810.89,666.98 819.12,666.87 822.70,666.82 826.46,614.42 828.23,570.63 827.03,518.49 823.02,478.80 814.23,430.36 797.66,376.89 780.66,331.83 764.46,288.63 757.13,269.00 752.17,270.14 749.45,270.77 743.78,259.93 732.86,238.11 714.58,199.78 711.18,188.58 705.47,175.80 697.69,165.23 694.92,161.72 691.36,157.65 688.49,154.92 683.67,151.56 680.70,149.80 676.86,147.19 673.32,145.55 669.48,143.72 678.67,140.03 675.07,130.18 668.75,124.26 660.89,114.13"/>
    <poly id="125335291" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="535.01,411.69 529.58,406.04 518.50,394.30 506.22,383.42 501.35,374.85 500.89,373.31 501.03,372.22 501.80,370.70 505.13,374.05 506.29,372.54 544.21,406.50 571.88,431.99 573.14,435.33 585.40,446.09 589.34,448.09 622.06,482.42 622.61,484.25 624.47,486.23 625.92,486.68 637.55,499.23 668.69,534.95 668.81,536.08 670.12,537.64 671.37,537.96 685.34,554.81 715.45,593.75 715.91,595.33 716.79,596.58 718.19,597.53 749.88,641.39 758.61,654.13 758.73,655.91 759.78,657.47 761.29,658.16 775.14,678.57 779.17,684.79 774.04,688.06 765.81,676.31 754.76,660.24 733.58,630.00 710.75,598.07 698.86,582.71 675.15,551.71 653.32,524.16 630.60,501.06 580.78,453.32 574.07,446.72 551.31,428.49 535.01,411.69"/>
    <poly id="125335293" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="789.46,679.43 793.27,677.54 793.99,675.60 794.51,673.33 792.03,667.24 791.07,664.87 781.64,649.38 770.52,631.67 754.27,608.02 729.61,576.22 710.51,552.41 688.36,527.23 671.95,508.97 652.05,484.18 631.39,462.42 609.86,440.38 585.25,415.91 574.46,404.69 563.03,388.74 522.08,357.64 518.51,355.87 515.43,355.38 512.89,357.17 512.06,358.65 515.18,361.76 513.15,363.48 550.47,395.04 601.83,445.07 647.79,492.83 694.47,549.38 727.80,591.30 759.93,635.20 784.55,672.46 789.46,679.43"/>
    <poly id="125336582" type="building" color="255,230,230" fill="1" layer="-1.00" shape="644.78,200.13 648.47,168.03 664.45,169.17 651.33,291.33 659.38,292.25 649.83,381.49 639.82,380.41 639.99,377.28 622.33,375.84 629.61,297.55 634.90,298.10 640.00,244.28 634.91,244.31 635.96,228.26 641.26,227.84 644.78,200.13"/>
    <poly id="125336585" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="627.03,443.19 622.10,438.14 618.43,432.98 616.42,427.22 616.77,420.96 625.92,421.40 624.97,434.68 638.32,436.15 639.54,426.78 642.73,429.29 645.40,432.29 644.96,439.53 643.22,443.27 639.12,446.42 632.66,447.26 630.00,445.61 627.03,443.19"/>
    <poly id="125337014" type="building" color="255,230,230" fill="1" layer="-1.00" shape="472.65,120.31 478.69,140.91 468.79,143.52 462.77,123.42 472.65,120.31"/>
    <poly id="125337015" type="building" color="255,230,230" fill="1" layer="-1.00" shape="506.06,101.36 510.01,100.19 507.80,92.67 503.85,93.82 506.06,101.36"/>
    <poly id="125337016" type="building" color="255,230,230" fill="1" layer="-1.00" shape="607.70,91.78 581.88,89.70 581.18,98.31 607.00,100.39 607.70,91.78"/>
    <poly id="125337016#1" type="building" color="255,230,230" fill="1" layer="-1.00" shape="607.70,91.78 581.88,89.70 581.18,98.31 607.00,100.39 607.70,91.78"/>
    <poly id="125337017" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="507.89,137.95 504.29,127.81 502.17,120.40 500.10,118.94 497.56,119.06 492.37,120.47 491.30,122.23 491.12,124.09 492.66,126.22 499.33,125.00 508.04,153.68 509.28,139.98 507.89,137.95"/>
    <poly id="125337018" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="683.67,151.56 680.70,149.80 676.86,147.19 673.32,145.55 669.48,143.72 678.67,140.03 675.07,130.18 668.75,124.26 660.89,114.13 664.75,113.95 672.58,123.55 678.15,130.30 686.40,142.23 697.43,159.20 705.47,175.80 697.69,165.23 694.92,161.72 691.36,157.65 688.49,154.92 683.67,151.56"/>
    <poly id="125337019" type="building" color="255,230,230" fill="1" layer="-1.00" shape="578.72,75.92 578.41,78.84 578.00,82.87 540.32,78.98 541.04,72.04 578.72,75.92"/>
    <poly id="125337020" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="511.78,106.24 517.51,124.97 517.32,125.85 516.44,126.74 514.97,127.05 513.89,126.76 513.00,126.27 507.97,107.73 511.78,106.24"/>
    <poly id="125337023" type="building" color="255,230,230" fill="1" layer="-1.00" shape="614.87,266.18 614.94,265.46 624.11,166.40 610.36,165.13 601.13,264.93 614.87,266.18"/>
    <poly id="125337896" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="341.75,695.86 342.93,684.60 333.50,685.17 322.03,685.52 308.90,686.06 308.62,695.81 315.78,695.85 320.72,696.10 320.19,700.95 325.56,701.69 326.42,694.86 332.14,695.81 336.46,696.75 336.06,700.07 340.99,700.38 341.75,695.86"/>
    <poly id="125337897" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="386.54,696.91 375.15,694.61 363.26,692.22 363.05,692.91 360.68,705.72 362.87,706.20 372.97,707.96 371.98,713.29 381.98,715.22 383.31,715.41 394.12,716.92 394.35,715.28 407.77,717.15 408.73,716.41 410.14,706.83 397.60,704.31 400.19,691.50 388.13,689.04 386.54,696.91"/>
    <poly id="125337902" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="347.77,696.49 347.27,700.19 353.06,700.57 352.04,709.22 351.80,710.97 354.97,710.97 357.59,692.52 353.10,692.89 348.20,692.37 347.77,696.49"/>
    <poly id="125338551" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="442.94,139.97 441.02,140.79 447.47,155.98 456.55,177.63 463.65,195.96 465.41,195.36 461.71,185.11 456.15,170.41 442.94,139.97"/>
    <poly id="125338556" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="435.99,128.48 426.03,103.73 427.26,102.25 430.46,109.65 440.84,134.71 439.58,136.57 435.99,128.48"/>
    <poly id="125338557" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="664.75,113.95 660.89,114.13 646.40,103.87 631.77,102.51 614.18,92.67 612.76,91.88 600.06,85.72 578.41,78.84 578.72,75.92 541.04,72.04 528.27,72.07 517.18,72.44 514.79,66.20 516.13,62.27 524.14,57.52 548.85,56.95 561.02,57.84 571.62,59.32 587.74,63.51 601.90,68.29 617.64,76.39 639.14,92.27 664.75,113.95"/>
    <poly id="125341000" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="572.02,377.39 555.64,376.82 539.42,358.55 539.55,355.18 532.74,350.68 527.56,344.23 521.84,327.84 512.29,295.83 509.74,296.47 511.81,302.21 512.42,306.12 518.24,323.78 519.21,334.15 517.89,338.85 518.87,343.33 520.08,347.92 523.15,351.51 528.22,355.41 539.57,365.50 556.44,378.48 567.38,386.52 569.55,387.87 571.21,387.37 571.69,385.61 572.02,377.39"/>
    <poly id="125341003" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="663.83,472.36 660.96,472.65 656.61,472.70 654.61,471.84 651.53,467.46 651.12,463.26 653.05,459.04 657.34,456.75 664.32,458.66 663.83,472.36"/>
    <poly id="125589309" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-444.55,394.74 -445.54,384.83 -453.90,390.12 -453.35,395.62 -444.55,394.74"/>
    <poly id="125589309#1" type="shop" color="237,199,255" fill="1" layer="-1.00" shape="-444.55,394.74 -445.54,384.83 -453.90,390.12 -453.35,395.62 -444.55,394.74"/>
    <poly id="132013814" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-424.57,86.17 -316.52,54.59 -325.02,37.64 -429.52,68.73 -424.57,86.17"/>
    <poly id="132013815" type="amenity" color="237,199,199" fill="0" layer="-1.00" shape="-369.89,-111.19 -374.08,-109.95 -409.65,-99.40 -431.97,-94.98 -455.39,-91.42 -474.13,-89.14 -487.24,-88.69 -499.52,-89.10"/>
    <poly id="132014920" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-375.50,-48.44 -362.03,-3.97 -397.53,6.72 -411.00,-37.74 -375.50,-48.44"/>
    <poly id="133882196" type="forest" color="140,196,107" fill="1" layer="-3.00" shape="737.00,-248.22 737.26,-246.99 733.38,-238.92 721.63,-228.82 715.49,-225.29 710.22,-224.67 705.89,-225.60 702.95,-228.49 700.32,-231.77 696.00,-230.72 694.92,-234.75 737.00,-248.22"/>
    <poly id="133882197" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="586.26,-212.33 587.42,-209.57 590.17,-207.03 592.08,-206.48 595.78,-207.56 604.10,-210.22 619.82,-214.84 623.07,-215.33 655.75,-225.88 674.26,-231.72 684.88,-235.37 682.57,-242.08 586.26,-212.33"/>
    <poly id="133882198" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="567.28,-280.27 565.23,-284.48 563.50,-288.41 563.36,-290.76 565.09,-292.67 567.58,-293.35 573.27,-293.02 589.68,-291.84 595.77,-292.25 605.92,-294.80 620.17,-299.05 634.34,-302.31 644.85,-303.10 567.28,-280.27"/>
    <poly id="133882199" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="581.74,-203.49 576.34,-205.52 573.57,-208.16 570.86,-211.21 567.82,-216.71 559.85,-229.22 547.24,-249.78 534.07,-272.04 521.93,-289.99 521.77,-291.67 524.00,-292.80 528.73,-295.82 540.10,-276.17 554.56,-254.09 565.12,-236.54 576.76,-219.20 582.17,-212.80 582.20,-209.23 581.74,-203.49"/>
    <poly id="133882200" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="391.10,-439.40 391.10,-441.19 392.64,-444.63 395.35,-449.44 406.53,-462.44 408.75,-468.22 408.99,-475.55 404.73,-481.88 383.32,-497.86 372.78,-504.74 367.28,-505.37 362.29,-503.78 357.72,-498.56 344.93,-476.75 343.90,-469.60 347.96,-463.86 356.06,-456.59 370.08,-444.56 386.06,-432.45 407.08,-414.91 424.65,-400.26 440.15,-386.59 453.20,-373.18 468.03,-356.67 472.27,-360.65 525.21,-300.11 521.93,-298.46 518.70,-296.54 517.17,-296.34 515.19,-298.48 504.74,-311.59 488.20,-330.73 481.42,-336.20 475.61,-340.59 469.39,-347.52 464.45,-353.37 444.77,-373.99 412.50,-401.09 384.93,-421.78 358.47,-441.79 345.00,-450.50 339.90,-454.23 336.99,-458.76 335.47,-463.01 335.14,-467.76 337.37,-474.90 346.18,-491.21 354.05,-502.66 372.28,-508.65 380.94,-502.97 418.70,-472.23 391.10,-439.40"/>
    <poly id="133882201" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="761.94,-257.63 754.78,-244.22 746.54,-234.01 739.99,-229.00 738.66,-227.99 718.51,-222.92 683.51,-213.56 662.10,-207.47 636.26,-200.95 614.85,-194.20 604.05,-189.60 595.89,-186.73 582.98,-183.14 582.17,-183.23 582.40,-183.71 585.61,-185.58 590.45,-188.48 596.35,-192.02 600.52,-195.04 603.39,-197.65 609.00,-202.42 612.40,-204.48 619.92,-207.86 628.61,-210.34 646.80,-215.19 668.03,-221.59 678.82,-225.02 696.00,-230.72 700.32,-231.77 702.95,-228.49 705.89,-225.60 710.22,-224.67 715.49,-225.29 721.63,-228.82 733.38,-238.92 737.26,-246.99 737.00,-248.22 743.46,-255.99 750.73,-268.54 753.18,-263.95 757.02,-261.13 761.94,-257.63"/>
    <poly id="133882203" type="forest" color="140,196,107" fill="1" layer="-3.00" shape="528.31,-296.55 528.73,-295.82 540.10,-276.17 554.56,-254.09 565.12,-236.54 576.76,-219.20 582.17,-212.80 582.20,-209.23 581.74,-203.49 586.68,-203.05 591.91,-203.88 596.35,-204.87 598.74,-205.12 600.73,-204.42 603.11,-204.52 615.07,-210.15 618.31,-212.23 619.57,-213.43 619.82,-214.84 604.10,-210.22 595.78,-207.56 592.08,-206.48 590.17,-207.03 587.42,-209.57 586.26,-212.33 567.28,-280.27 565.23,-284.48 563.50,-288.41 563.36,-290.76 565.09,-292.67 567.58,-293.35 573.27,-293.02 589.68,-291.84 595.77,-292.25 605.92,-294.80 620.17,-299.05 634.34,-302.31 644.85,-303.10 662.63,-308.33 663.01,-308.44 682.57,-242.08 684.88,-235.37 685.82,-232.63 688.79,-233.51 665.54,-313.36 593.94,-293.76 528.31,-296.55"/>
    <poly id="133882205" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="623.07,-215.33 623.81,-212.91 645.70,-218.77 670.49,-226.17 685.82,-232.63 684.88,-235.37 674.26,-231.72 655.75,-225.88 623.07,-215.33"/>
    <poly id="133885061" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="472.50,-339.49 479.43,-334.19 486.29,-328.26 493.36,-320.10 503.93,-306.59 516.80,-287.80 524.67,-275.98 533.64,-262.78 550.47,-236.58 557.82,-224.00 566.71,-212.08 569.20,-206.33 568.96,-204.13 566.94,-202.25 559.79,-199.96 564.90,-202.75 565.76,-205.19 563.09,-209.46 551.01,-231.25 534.14,-257.07 521.28,-277.38 511.74,-291.67 495.79,-312.75 477.46,-334.40 472.50,-339.49"/>
    <poly id="133885062" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="426.46,-384.92 445.23,-368.03 457.85,-354.56 472.50,-339.49 477.46,-334.40 495.79,-312.75 511.74,-291.67 521.28,-277.38 534.14,-257.07 551.01,-231.25 563.09,-209.46 565.76,-205.19 564.90,-202.75 559.79,-199.96 558.48,-199.25 556.35,-198.25 537.78,-234.71 530.76,-244.44 517.36,-270.40 501.06,-293.99 485.41,-315.26 473.05,-331.64 450.71,-354.77 432.47,-372.70 426.42,-379.54 424.89,-382.61 425.59,-384.20 426.46,-384.92"/>
    <poly id="133885117" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="566.33,-179.12 576.39,-183.60 587.70,-190.33 594.50,-194.66 597.82,-196.91 599.00,-199.05 598.11,-200.08 596.05,-200.37 585.89,-198.16 575.48,-198.32 569.68,-199.24 566.74,-198.49 567.04,-196.64 567.33,-194.78 559.31,-192.57 566.33,-179.12"/>
    <poly id="133901132" type="forest" color="140,196,107" fill="1" layer="-3.00" shape="316.05,-171.42 320.28,-172.47 321.44,-169.40 322.20,-166.72 322.37,-164.38 321.99,-163.45 320.47,-162.54 319.27,-161.83 310.90,-159.50 309.30,-164.68 308.07,-168.89 316.05,-171.42"/>
    <poly id="133901133" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="260.77,-122.52 267.66,-101.51 289.63,-108.72 303.74,-115.82 312.52,-119.15 317.16,-120.78 316.93,-121.38 316.67,-122.11 315.19,-126.79 304.75,-123.53 301.23,-134.76 260.77,-122.52"/>
    <poly id="133901134" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="303.30,-193.61 302.17,-196.81 306.32,-197.03 309.48,-197.05 311.73,-196.97 312.59,-196.20 314.14,-192.18 316.97,-183.19 319.06,-175.25 315.19,-174.12 309.86,-190.89 308.50,-195.22 303.30,-193.61"/>
    <poly id="133901135" type="forest" color="140,196,107" fill="1" layer="-3.00" shape="167.62,-221.59 168.29,-224.55 173.43,-225.06 179.26,-225.30 182.69,-227.03 185.90,-230.77 189.12,-234.13 192.83,-236.06 198.17,-236.86 237.70,-236.20 236.44,-213.60 234.42,-213.57 223.05,-213.02 167.62,-221.59"/>
    <poly id="133901137" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="240.96,-169.70 236.66,-183.65 239.81,-184.62 238.47,-188.95 241.63,-189.91 238.67,-200.69 242.68,-203.40 247.13,-205.86 252.31,-207.42 250.15,-209.42 249.45,-213.74 236.44,-213.60 234.42,-213.57 223.05,-213.02 232.24,-182.71 236.64,-168.20 240.96,-169.70"/>
    <poly id="133901140" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="260.77,-122.52 301.23,-134.76 296.21,-150.75 292.79,-149.68 288.99,-161.77 292.56,-162.90 291.79,-165.38 290.09,-164.86 288.50,-169.99 290.23,-170.52 285.73,-185.01 292.25,-187.03 289.87,-194.73 286.19,-193.36 284.18,-199.33 266.89,-197.74 285.30,-138.06 256.74,-129.30 258.99,-121.91 260.77,-122.52"/>
    <poly id="133901141" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="322.53,-218.86 331.76,-218.88 333.14,-218.35 334.01,-217.11 332.11,-214.17 335.14,-212.05 336.77,-213.82 337.29,-213.00 337.54,-210.39 337.88,-200.29 336.38,-198.45 333.96,-197.26 328.14,-197.02 317.66,-196.75 313.77,-199.84 296.83,-199.64 292.18,-200.19 292.22,-204.29 322.26,-203.75 322.53,-218.86"/>
    <poly id="133901143" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="311.50,-157.52 326.74,-162.41 328.05,-158.20 344.30,-163.21 334.83,-193.70 318.58,-188.69 317.95,-190.63 317.84,-192.29 318.37,-193.36 331.42,-194.72 337.42,-195.31 338.50,-195.12 338.89,-194.83 339.15,-193.71 340.06,-189.28 341.71,-183.78 343.30,-180.29 346.38,-174.32 350.42,-169.47 354.61,-165.21 356.39,-163.67 353.44,-162.67 338.16,-157.96 340.61,-150.48 310.65,-140.90 309.35,-145.10 314.81,-146.80 311.50,-157.52"/>
    <poly id="133901155" type="forest" color="140,196,107" fill="1" layer="-3.00" shape="133.21,-516.10 157.67,-508.38 193.68,-495.57 232.72,-481.19 273.05,-464.07 311.42,-442.64 333.14,-429.25 367.16,-405.34 390.57,-387.60 414.56,-365.91 438.01,-342.88 468.16,-309.19 494.76,-274.85 465.57,-306.32 433.52,-337.05 411.78,-349.43 387.40,-360.67 352.26,-373.53 326.92,-382.81 296.16,-390.22 -22.92,-418.22 -40.93,-419.05 -71.74,-416.48 -123.32,-405.83 -174.26,-393.78 -198.66,-386.89 -233.16,-376.34 -250.49,-368.22 -266.44,-361.33 -284.34,-355.89 -306.10,-352.59 -321.02,-351.99 -339.62,-350.37 -360.21,-349.80 -378.46,-348.81 -387.21,-352.68 -386.45,-357.28 -327.72,-373.18 -336.45,-399.23 -367.18,-389.41 -381.42,-418.17 -331.40,-417.12 -279.77,-418.06 -208.98,-426.03 -132.00,-439.78 -54.55,-458.99 29.66,-485.09 117.15,-510.72 121.86,-513.36 133.21,-516.10"/>
    <poly id="133901158" type="forest" color="140,196,107" fill="1" layer="-3.00" shape="159.17,-222.89 159.72,-228.38 156.89,-231.83 153.45,-233.82 150.33,-235.20 145.81,-234.73 140.57,-232.08 136.82,-228.52 136.11,-227.73 135.14,-226.65 159.17,-222.89"/>
    <poly id="133901170" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="322.26,-203.75 322.53,-218.86 292.38,-219.40 292.22,-204.29 322.26,-203.75"/>
    <poly id="133901172" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="258.99,-121.91 256.74,-129.30 243.99,-170.63 240.96,-169.70 236.64,-168.20 251.46,-119.32 258.99,-121.91"/>
    <poly id="134200929" type="commercial" color="209,209,204" fill="1" layer="-3.00" shape="377.74,110.16 380.02,117.03 383.00,126.92 404.16,201.38 438.36,237.70 458.32,230.91 465.56,228.50 470.92,225.96 449.12,166.85 423.68,104.76 419.51,100.30 412.96,98.79 385.23,106.01 380.90,107.14 377.58,108.37 377.74,110.16"/>
    <poly id="134200930" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="290.03,143.47 309.05,137.99 318.77,135.18 324.01,133.68 336.28,130.15 380.02,117.03 383.00,126.92 404.16,201.38 438.36,237.70 458.32,230.91 465.56,228.50 478.63,263.70 485.55,285.16 488.00,291.91 483.80,301.34 476.87,318.02 262.37,152.36 282.87,145.68 290.03,143.47"/>
    <poly id="134200931" type="industrial" color="209,209,204" fill="1" layer="-3.00" shape="215.68,407.36 338.12,371.64 334.68,403.20 327.11,436.90 314.46,461.09 298.65,483.82 288.38,495.99 277.67,507.03 265.28,517.52 251.72,527.63 232.03,540.98 172.96,581.61 147.87,603.34 130.60,623.25 88.46,600.41 46.26,589.77 50.25,571.11 56.67,534.21 57.88,527.20 90.71,526.81 109.75,521.40 191.92,497.71 190.34,494.52 185.15,484.06 177.35,463.59 174.94,457.18 170.75,446.03 170.50,445.28 164.20,426.59 162.34,421.55 182.69,416.21 215.68,407.36"/>
    <poly id="134200932" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="162.34,421.55 164.20,426.59 170.50,445.28 170.75,446.03 174.94,457.18 177.35,463.59 185.15,484.06 190.34,494.52 191.92,497.71 109.75,521.40 90.71,526.81 57.88,527.20 56.67,534.21 50.25,571.11 45.44,570.92 41.23,570.75 17.99,569.83 18.10,566.33 15.31,566.23 15.86,550.23 6.71,549.69 3.19,549.62 4.32,529.13 7.11,480.87 7.56,473.04 7.92,466.79 10.88,465.95 6.04,451.79 -8.86,402.69 -24.69,350.23 25.29,335.83 71.76,322.27 66.42,303.14 123.43,286.51 137.76,280.99 133.42,265.96 130.45,255.70 126.89,243.33 112.60,195.32 111.59,190.63 113.90,185.33 164.99,169.50 175.56,166.69 179.48,166.86 183.81,169.17 223.87,201.54 287.23,254.28 301.67,270.60 320.92,300.58 330.72,327.11 334.55,340.76 337.85,362.45 338.12,371.64 215.68,407.36 182.69,416.21 162.34,421.55"/>
    <poly id="134200934" type="building" color="255,230,230" fill="1" layer="-1.00" shape="195.11,407.08 213.94,401.77 324.16,370.71 328.62,369.46 327.38,365.05 320.01,339.06 318.88,335.09 313.25,315.20 310.96,307.13 304.48,308.96 302.87,309.41 288.87,313.35 284.54,314.57 278.16,316.38 258.74,321.86 257.92,318.96 257.09,316.05 239.06,321.13 239.88,324.04 240.70,326.94 237.50,327.84 220.57,332.61 212.75,334.81 210.75,327.76 208.34,319.25 203.51,302.24 201.10,293.73 192.28,296.22 174.63,301.19 165.80,303.68 168.21,312.18 173.03,329.19 175.44,337.70 177.44,344.77 185.36,372.70 186.49,376.68 195.11,407.08"/>
    <poly id="134499444" type="building" color="255,230,230" fill="1" layer="-1.00" shape="114.10,475.67 107.43,452.15 105.82,446.47 98.87,448.44 73.61,455.55 92.62,522.60 101.30,520.16 100.07,515.84 99.33,513.22 119.10,507.65 110.33,476.73 114.10,475.67"/>
    <poly id="134499444#1" type="shop" color="237,199,255" fill="1" layer="-1.00" shape="114.10,475.67 107.43,452.15 105.82,446.47 98.87,448.44 73.61,455.55 92.62,522.60 101.30,520.16 100.07,515.84 99.33,513.22 119.10,507.65 110.33,476.73 114.10,475.67"/>
    <poly id="134499544" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="368.69,373.55 364.06,420.11 355.34,453.66 375.75,473.47 385.88,482.62 463.14,573.06 561.37,489.88 402.03,326.57 384.83,322.83 372.33,325.93 365.46,331.15 364.03,342.36 368.69,373.55"/>
    <poly id="134499546" type="residential" color="235,235,227" fill="1" layer="-3.00" shape="-167.71,495.79 -161.21,512.48 7.92,466.79 7.56,473.04 7.11,480.87 4.32,529.13 3.19,549.62 6.71,549.69 15.86,550.23 15.31,566.23 18.10,566.33 17.99,569.83 41.23,570.75 39.92,589.00 13.96,586.48 13.43,590.39 -14.99,588.90 -64.41,584.73 -65.66,596.25 -65.75,599.69 -66.15,615.62 -67.11,627.63 -67.36,632.47 -67.99,644.50 -68.41,652.41 -60.32,652.84 -61.80,680.70 -61.85,681.54 -62.15,687.12 -105.92,684.84 -111.63,681.65 -111.03,669.03 -112.52,653.69 -136.67,651.08 -133.29,598.90 -131.70,580.09 -172.35,577.63 -173.10,590.36 -173.41,595.27 -173.85,602.02 -177.11,652.38 -178.90,680.01 -179.33,686.78 -392.82,672.65 -396.56,672.28 -398.77,670.79 -400.26,668.89 -400.63,666.02 -391.46,582.79 -310.44,584.06 -312.05,428.78 -376.51,441.53 -395.74,440.02 -397.69,421.88 -391.52,420.75 -401.70,333.39 -176.48,268.10 -172.24,270.16 -167.59,285.98 -163.85,298.68 -201.13,310.88 -177.20,394.39 -170.05,419.35 -172.48,420.18 -168.29,486.59 -167.93,492.30 -167.71,495.79"/>
    <poly id="134499548" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="53.06,431.49 42.44,394.16 38.93,382.84 25.88,337.93 13.47,341.50 20.40,363.86 24.77,362.51 29.67,378.32 25.30,379.67 27.39,386.40 22.84,387.80 4.17,393.56 -6.30,396.79 -4.98,401.50 -7.96,402.48 5.19,446.04 9.32,444.81 13.13,443.77 12.23,440.71 15.93,439.59 17.04,439.28 18.20,443.40 39.68,437.38 38.32,432.52 39.73,432.12 43.51,431.06 44.55,434.24 48.15,433.08 53.06,431.49"/>
    <poly id="134499590" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-141.61,494.08 -124.59,489.83 2.68,452.87 6.04,451.79 -8.86,402.69 -24.69,350.23 -58.45,235.85 -65.72,231.08 -175.19,262.39 -172.24,270.16 -167.59,285.98 -163.85,298.68 -201.13,310.88 -177.20,394.39 -170.05,419.35 -146.27,411.21 -146.13,413.49 -145.74,419.30 -145.43,424.03 -146.24,424.08 -145.28,438.67 -144.46,438.62 -144.12,443.74 -144.94,443.79 -144.18,455.24 -143.37,455.19 -142.77,464.26 -143.58,464.31 -143.26,469.22 -142.44,469.17 -142.12,474.08 -142.93,474.13 -142.61,479.05 -141.79,478.99 -141.40,484.87 -142.22,484.92 -141.61,494.08"/>
    <poly id="134499592" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-123.85,460.82 -93.19,431.53 -98.29,429.72 -105.16,429.28 -111.03,430.40 -116.50,433.38 -120.49,437.31 -123.11,441.44 -124.84,446.74 -125.49,451.92 -124.96,457.01 -123.85,460.82"/>
    <poly id="134499593" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="21.47,466.89 20.29,463.17 10.88,465.95 7.92,466.79 7.56,473.04 7.11,480.87 4.32,529.13 56.55,531.52 56.82,526.11 59.41,526.18 57.92,520.88 56.97,517.53 56.03,514.18 50.93,515.60 49.76,516.00 47.63,508.36 45.01,499.11 42.40,489.85 47.60,488.39 41.23,465.84 39.68,461.79 21.47,466.89"/>
    <poly id="134499594" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-150.17,320.05 -152.72,320.80 -154.55,321.32 -160.64,323.14 -134.09,412.86 -129.32,411.45 -126.17,410.52 -123.50,409.73 -117.63,408.01 -112.33,406.45 -105.48,404.44 -106.39,401.37 -102.05,400.09 -122.09,332.37 -127.01,315.75 -132.56,317.38 -133.24,315.06 -137.39,316.28 -144.13,318.27 -150.17,320.05"/>
    <poly id="134499595" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-157.02,312.47 -154.45,308.73 -152.17,304.81 -150.21,300.71 -148.58,296.48 -147.30,292.13 -146.35,287.70 -156.97,286.08 -157.84,283.12 -158.84,279.72 -154.68,278.51 -142.93,275.08 -142.56,274.97 -141.56,274.68 -139.31,274.02 -131.78,271.82 -135.44,259.39 -141.96,261.30 -145.39,262.30 -148.83,263.32 -149.12,263.40 -153.79,264.77 -157.84,265.95 -166.86,268.59 -172.24,270.16 -167.59,285.98 -163.85,298.68 -162.28,304.04 -160.26,310.88 -157.70,310.14 -157.02,312.47"/>
    <poly id="134499598" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-8.18,437.33 -7.83,430.74 -9.46,422.46 -60.47,254.72 -69.33,240.43 -76.02,242.32 -88.16,245.76 -91.53,246.78 -99.83,249.17 -111.95,252.65 -122.85,255.78 -133.06,258.71 -135.44,259.39 -131.78,271.82 -130.47,275.89 -129.10,275.50 -126.27,285.05 -114.59,324.43 -103.01,363.49 -91.36,402.79 -80.38,439.79 -82.28,440.32 -83.86,440.75 -82.34,443.55 -81.13,447.72 -80.77,451.70 -80.93,455.32 -82.06,459.32 -120.77,471.03 -122.68,472.31 -125.64,474.11 -128.87,476.21 -128.02,478.90 -124.59,489.83 2.68,452.87 -0.92,439.47 -5.85,438.02 -8.18,437.33"/>
    <poly id="134505247" type="commercial" color="209,209,204" fill="1" layer="-3.00" shape="82.33,686.36 75.78,689.74 70.92,691.86 65.95,693.38 59.60,693.98 -7.60,690.50 -7.08,681.76 -1.71,600.32 43.96,603.57 69.28,609.84 94.69,618.93 121.60,631.90 87.02,682.56 82.33,686.36"/>
    <poly id="134505250" type="residential" color="235,235,227" fill="1" layer="-3.00" shape="665.96,819.82 661.13,823.03 651.05,830.14 645.22,834.76 620.86,798.00 623.13,794.54 637.07,778.04 626.78,769.70 618.82,763.52 580.87,741.50 511.14,714.13 453.84,700.52 395.29,688.45 364.43,682.75 341.21,682.85 329.90,680.28 328.47,683.56 309.26,684.53 272.01,686.80 272.56,717.08 250.24,720.35 229.25,727.37 189.10,764.95 161.00,777.84 156.14,779.72 154.28,781.36 152.70,783.70 133.28,823.83 118.37,863.55 113.43,882.15 109.74,905.65 83.96,986.45 79.66,999.94 64.81,1033.39 -26.92,1196.59 12.14,1224.28 67.52,1264.70 117.98,1304.01 198.84,1374.92 257.47,1419.73 279.83,1433.26 317.82,1413.01 317.75,1416.40 320.98,1429.56 327.46,1442.79 344.12,1473.96 363.85,1508.18 432.19,1569.71 495.06,1634.38 587.49,1742.40 590.66,1746.04 591.59,1747.14 594.18,1750.51 595.77,1752.75 598.73,1756.40 603.03,1762.35 619.55,1785.19 632.93,1803.41 656.97,1789.17 692.09,1767.68 721.36,1746.96 751.18,1724.42 748.09,1719.90 762.44,1712.15 777.89,1703.80 793.30,1694.58 812.14,1683.44 833.40,1656.88 876.92,1626.75 871.05,1611.73 866.09,1597.74 864.88,1590.03 867.42,1589.35 861.15,1570.52 868.05,1568.98 855.95,1518.02 841.31,1522.03 837.59,1491.11 835.15,1470.38 841.58,1469.53 862.13,1465.97 862.83,1469.98 878.06,1464.79 876.52,1459.67 904.48,1453.46 909.23,1468.65 925.27,1462.39 923.52,1456.64 915.89,1459.48 912.94,1451.77 920.37,1448.94 915.03,1433.03 910.87,1420.60 913.17,1418.95 908.72,1411.97 906.80,1412.39 905.20,1405.74 904.56,1403.12 902.73,1403.55 902.01,1400.56 897.47,1381.66 887.61,1340.55 871.52,1298.86 862.38,1274.11 859.97,1267.60 855.96,1256.76 841.95,1224.63 836.51,1210.03 867.32,1203.70 862.70,1180.44 883.96,1180.46 872.28,1156.42 802.95,1030.31 696.47,864.93 687.82,853.83 680.33,840.90 665.96,819.82"/>
    <poly id="134514728" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="451.50,688.59 450.42,688.83 448.34,688.92 446.70,688.81 445.26,688.71 444.08,688.27 442.88,687.67 441.93,686.77 440.96,685.64 440.22,684.80 439.45,684.03 438.39,683.66 436.81,683.94 435.24,684.62 434.15,684.98 433.21,684.81 432.54,684.24 431.97,683.19 431.38,682.73 428.80,682.04 428.30,681.69 428.78,679.77 428.91,677.63 429.57,675.96 430.41,674.64 431.02,672.82 430.92,671.10 431.15,670.42 431.76,670.39 432.32,670.91 432.79,671.29 433.18,672.34 433.84,674.87 437.12,678.79 438.66,679.52 439.86,679.13 441.22,677.77 441.41,675.93 440.59,674.98 439.21,674.63 438.44,674.26 438.01,672.42 437.59,670.61 436.85,669.25 436.58,668.19 436.78,667.34 438.34,665.55 439.98,664.54 440.77,664.68 444.40,667.61 444.20,668.49 443.42,669.99 442.73,671.25 442.80,672.70 443.63,674.13 444.57,674.41 445.44,674.32 446.08,673.97 446.45,674.58 446.46,676.01 446.85,677.27 448.71,679.35 450.39,684.98 451.50,688.59"/>
    <poly id="134547068" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-475.81,255.10 -477.67,248.81 -478.12,248.95 -479.73,243.49 -491.01,246.80 -487.14,259.89 -486.29,259.63 -483.62,258.86 -483.05,258.69 -482.70,259.87 -477.84,258.45 -478.17,257.32 -475.40,256.50 -475.81,255.10"/>
    <poly id="134547068#1" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-475.81,255.10 -477.67,248.81 -478.12,248.95 -479.73,243.49 -491.01,246.80 -487.14,259.89 -486.29,259.63 -483.62,258.86 -483.05,258.69 -482.70,259.87 -477.84,258.45 -478.17,257.32 -475.40,256.50 -475.81,255.10"/>
    <poly id="134547069" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="119.50,-70.66 118.15,-75.19 92.26,-67.48 87.15,-71.23 75.57,-80.45 64.17,-89.31 -79.18,-200.66 -66.36,-218.92 -66.79,-257.60 135.14,-226.65 159.17,-222.89 162.77,-222.34 167.62,-221.59 223.05,-213.02 232.24,-182.71 236.64,-168.20 251.46,-119.32 258.99,-121.91 260.77,-122.52 267.66,-101.51 138.06,-57.96 136.84,-62.18 119.50,-70.66"/>
    <poly id="134547079" type="water" color="181,209,209" fill="0" layer="-4.00" shape="536.77,-187.58 387.58,-139.52 -1326.03,371.39 -1443.27,404.33 -1547.79,362.33 -1651.14,269.16 -1742.89,241.80 -1843.04,173.67 -1873.22,150.76 -1964.05,155.37 -2125.70,218.34 -2496.58,362.62 -2573.92,393.99 -2792.54,498.62 -2828.75,509.03 -3036.85,451.72 -3208.50,438.31 -3366.17,394.90 -3614.18,380.60 -4103.18,331.76 -4496.24,363.20 -5068.76,526.54 -5460.43,637.61 -5595.33,674.65 -5967.00,907.87 -5986.85,923.58 -5992.62,928.15"/>
    <poly id="134547166" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-406.33,142.78 -412.94,147.44 -430.82,153.70 -428.63,162.60 -432.19,163.47 -416.66,231.88 -411.90,252.55 -410.74,258.49 -401.72,289.20 -400.46,288.83 -399.06,293.59 -400.43,293.99 -405.65,295.52 -405.22,296.99 -405.81,298.29 -406.12,299.67 -406.14,301.09 -405.88,302.49 -405.35,303.81 -404.56,304.99 -403.54,306.00 -402.35,306.76 -401.83,308.53 -396.60,307.00 -360.70,296.51 -317.55,284.27 -234.53,260.72 -202.33,252.58 -204.66,245.37 -209.26,229.64 -212.39,218.92 -214.25,212.54 -218.58,197.72 -222.64,183.86 -218.65,182.69 -235.07,126.53 -238.85,113.60 -241.16,114.27 -244.45,103.01 -283.07,114.24 -283.45,112.81 -284.44,109.37 -296.47,109.33 -311.36,113.69 -406.33,142.78"/>
    <poly id="134631697" type="residential" color="235,235,227" fill="1" layer="-3.00" shape="-1254.88,482.74 -1252.30,480.59 -1241.45,482.00 -1226.53,484.08 -1208.05,487.71 -1209.63,466.71 -1217.21,378.41 -1212.20,375.16 -1111.69,345.61 -1065.68,332.77 -1051.75,367.17 -1048.04,371.01 -1043.90,374.65 -1039.94,376.39 -1000.46,382.42 -1009.39,448.76 -1020.12,447.45 -1026.89,483.43 -1101.98,473.24 -1103.95,498.78 -1020.06,510.01 -1033.20,598.29 -1000.25,602.13 -981.88,466.87 -981.11,452.22 -996.98,450.28 -991.33,399.97 -900.31,412.46 -879.57,406.55 -876.42,417.58 -863.38,413.87 -859.59,427.00 -841.62,422.05 -836.73,439.15 -863.46,446.75 -859.51,462.73 -845.57,475.50 -837.68,482.94 -809.51,451.03 -722.58,427.23 -654.00,673.69 -680.79,675.75 -849.18,656.85 -850.14,668.37 -850.55,673.27 -853.58,721.96 -861.25,721.37 -872.68,721.03 -872.27,716.13 -890.46,714.43 -890.09,709.71 -907.96,708.69 -933.18,707.23 -933.44,722.04 -933.46,722.97 -933.76,732.66 -933.89,734.60 -935.59,737.12 -938.55,739.59 -970.05,721.89 -981.47,714.95 -980.48,712.28 -1004.22,699.14 -1005.42,689.73 -1007.81,680.04 -1013.68,671.91 -1020.73,665.63 -1041.01,660.45 -1057.88,667.95 -1212.97,581.11 -1221.66,576.24 -1278.48,544.43 -1274.81,540.10 -1269.90,531.98 -1262.86,517.82 -1259.32,511.14 -1258.00,502.91 -1254.88,482.74"/>
    <poly id="134631701" type="residential" color="235,235,227" fill="1" layer="-3.00" shape="-499.20,956.81 -514.82,962.62 -557.47,942.76 -552.85,930.60 -554.44,928.85 -553.41,922.38 -552.77,919.04 -551.43,911.94 -550.56,907.14 -550.04,904.28 -549.11,899.15 -547.15,888.27 -538.52,832.22 -534.31,804.88 -519.31,713.40 -518.77,693.39 -432.10,694.89 -455.07,828.67 -474.03,893.28 -499.20,956.81"/>
    <poly id="134631705" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-341.65,-119.84 -332.75,-89.40 -312.33,-19.63 -292.38,48.49 -289.45,58.18 -288.86,60.16 -288.10,62.70 -286.71,67.31 -49.86,-0.96 -48.52,-14.29 -69.07,-29.91 -134.63,-80.87 -171.35,-107.81 -209.94,-136.61 -236.19,-155.30 -238.42,-155.65 -240.82,-155.71 -243.02,-154.67 -245.23,-154.54 -246.98,-154.99 -251.02,-149.98 -257.45,-144.13 -260.18,-142.69 -262.42,-142.45 -266.33,-140.71 -274.06,-138.60 -279.23,-137.08 -310.40,-127.90 -316.33,-126.37 -322.11,-124.88 -341.65,-119.84"/>
    <poly id="134631706" type="tourism" color="207,245,201" fill="1" layer="-2.00" shape="-715.71,-146.40 -774.26,-146.77 -790.12,-146.88 -799.37,-146.93 -799.36,-148.04 -799.34,-152.42 -816.90,-152.49 -817.38,-152.50 -817.40,-148.12 -821.81,-148.14 -821.80,-152.52 -842.06,-152.60 -842.08,-148.22 -846.57,-148.24 -846.55,-152.62 -867.01,-152.71 -867.03,-148.33 -871.19,-148.34 -871.17,-152.72 -888.50,-152.79 -888.51,-148.42 -891.42,-148.43 -895.86,-148.44 -895.85,-152.82 -911.27,-152.90 -911.29,-148.52 -915.35,-148.53 -915.33,-152.91 -928.72,-152.96 -928.74,-148.58 -928.71,-147.70 -945.38,-147.68 -948.14,-147.64 -950.54,-148.52 -951.31,-150.47 -951.18,-152.62 -950.12,-154.57 -947.68,-155.20 -940.98,-158.39 -934.34,-162.33 -925.73,-169.81 -923.59,-172.31 -921.79,-174.43 -918.14,-179.84 -916.52,-183.01 -915.23,-186.23 -913.77,-193.36 -912.72,-200.12 -912.66,-207.27 -913.06,-210.78 -914.04,-214.56 -916.59,-222.87 -921.96,-232.76 -921.85,-235.92 -860.41,-344.83 -858.45,-343.65 -839.50,-336.35 -827.19,-331.12 -813.98,-325.49 -817.02,-318.38 -820.52,-308.28 -759.32,-281.94 -753.50,-265.55 -724.56,-269.74 -670.71,-289.28 -649.28,-295.16 -629.45,-347.28 -625.98,-355.68 -561.25,-329.56 -520.34,-313.00 -513.45,-313.00 -507.78,-314.68 -494.45,-318.53 -494.06,-318.73 -493.85,-318.98 -493.72,-319.40 -493.85,-319.95 -485.91,-315.38 -469.03,-305.67 -434.26,-285.67 -405.02,-268.57 -385.75,-256.86 -382.00,-254.83 -351.95,-235.54 -318.48,-213.86 -327.93,-213.80 -336.79,-214.12 -344.48,-214.71 -353.66,-215.51 -362.61,-216.92 -372.15,-218.77 -374.85,-219.22 -384.06,-221.53 -390.54,-223.44 -398.14,-225.80 -407.25,-229.38 -412.91,-222.45 -537.79,-181.43 -550.40,-177.29 -550.90,-170.71 -551.01,-156.13 -545.03,-151.85 -564.64,-120.30 -549.55,-110.00 -559.13,-108.59 -565.57,-107.37 -572.14,-104.27 -573.47,-103.54 -575.20,-103.49 -578.07,-104.99 -583.07,-108.35 -585.16,-109.74 -607.10,-124.45 -618.32,-131.83 -621.95,-133.90 -631.00,-138.04 -639.69,-141.18 -649.26,-143.66 -657.25,-145.39 -666.49,-146.41 -689.79,-146.41 -693.81,-146.40 -715.71,-146.40"/>
    <poly id="134655478" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-324.71,372.79 -337.51,376.45 -342.39,359.51 -329.59,355.85 -324.71,372.79"/>
    <poly id="134765888" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="477.30,-273.34 471.12,-279.04 456.50,-274.08 407.64,-257.28 402.97,-255.11 341.21,-233.93 335.58,-232.63 335.57,-226.09 321.82,-226.12 321.82,-226.85 318.79,-226.85 318.74,-224.57 292.44,-224.84 292.38,-219.40 292.22,-204.29 292.18,-200.19 292.18,-199.68 292.59,-198.38 293.40,-195.82 289.87,-194.73 286.19,-193.36 284.18,-199.33 266.89,-197.74 258.94,-195.30 260.41,-190.53 247.74,-186.64 246.28,-191.34 241.63,-189.91 238.47,-188.95 239.81,-184.62 236.66,-183.65 232.24,-182.71 223.05,-213.02 167.62,-221.59 162.77,-222.34 159.17,-222.89 135.14,-226.65 -66.79,-257.60 -66.78,-259.15 -113.84,-266.27 -189.96,-276.92 -225.57,-283.10 -229.43,-283.78 -234.75,-284.69 -239.72,-286.96 -272.14,-305.68 -306.86,-323.59 -330.13,-336.18 -341.82,-339.07 -351.07,-340.88 -362.25,-342.73 -378.17,-344.13 -378.46,-348.81 -360.21,-349.80 -339.62,-350.37 -321.02,-351.99 -306.10,-352.59 -284.34,-355.89 -266.44,-361.33 -250.49,-368.22 -233.16,-376.34 -198.66,-386.89 -174.26,-393.78 -123.32,-405.83 -71.74,-416.48 -40.93,-419.05 -22.92,-418.22 296.16,-390.22 326.92,-382.81 352.26,-373.53 387.40,-360.67 411.78,-349.43 433.52,-337.05 465.57,-306.32 494.76,-274.85 480.63,-271.56 477.30,-273.34"/>
    <poly id="134765891" type="commercial" color="209,209,204" fill="1" layer="-3.00" shape="-629.45,-347.28 -649.28,-295.16 -670.71,-289.28 -724.56,-269.74 -753.50,-265.55 -759.32,-281.94 -820.52,-308.28 -817.02,-318.38 -813.98,-325.49 -827.19,-331.12 -839.50,-336.35 -858.45,-343.65 -860.41,-344.83 -812.70,-429.96 -808.24,-427.95 -629.45,-347.28"/>
    <poly id="134765952" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-171.83,-305.69 -170.00,-316.74 -209.42,-323.21 -211.76,-309.09 -177.59,-303.47 -172.34,-302.60 -171.83,-305.69"/>
    <poly id="134765953" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="-644.90,301.29 -647.09,295.78 -715.63,316.90 -712.16,328.15 -733.29,335.43 -729.22,349.66 -674.63,334.23 -670.78,346.36 -660.84,343.21 -664.30,333.49 -648.76,329.30 -647.11,335.12 -635.91,331.59 -640.01,317.51 -595.04,304.07 -599.85,287.82 -644.90,301.29"/>
    <poly id="134765960" type="building" color="255,230,230" fill="1" layer="-1.00" shape="113.90,-264.20 113.74,-250.73 164.63,-250.15 164.78,-263.62 113.90,-264.20"/>
    <poly id="134765963" type="building" color="255,230,230" fill="1" layer="-1.00" shape="456.50,-274.08 453.99,-281.33 405.14,-264.53 407.64,-257.28 456.50,-274.08"/>
    <poly id="134765965" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-41.87,-312.86 -20.65,-312.52 -20.49,-322.52 -41.71,-322.86 -41.87,-312.86"/>
    <poly id="134765967" type="building" color="255,230,230" fill="1" layer="-1.00" shape="197.50,-221.12 229.97,-220.61 230.16,-232.57 205.35,-232.97 197.69,-233.09 197.50,-221.12"/>
    <poly id="134765970" type="building" color="255,230,230" fill="1" layer="-1.00" shape="14.29,-282.85 80.01,-281.83 80.14,-290.07 80.25,-297.04 80.35,-303.51 80.58,-318.02 14.86,-319.04 14.63,-304.66 14.53,-298.35 14.43,-291.51 14.29,-282.85"/>
    <poly id="134765977" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-270.01,212.27 -268.57,212.58 -267.76,208.84 -267.26,206.54 -272.00,205.53 -274.61,196.66 -276.20,191.26 -278.78,182.51 -279.81,179.01 -280.72,175.90 -281.72,172.51 -282.67,169.29 -283.54,166.36 -284.46,163.22 -285.47,159.85 -286.33,156.92 -286.98,154.67 -298.03,157.89 -298.94,154.81 -299.86,151.68 -300.81,148.48 -301.75,145.26 -302.70,142.05 -303.58,139.05 -304.53,135.84 -305.45,132.71 -306.34,129.70 -307.14,126.98 -406.15,155.99 -405.35,158.72 -404.47,161.72 -403.54,164.85 -402.60,168.06 -401.71,171.06 -400.78,174.22 -399.87,177.31 -398.88,180.69 -397.95,183.82 -397.04,186.91 -396.44,188.96 -395.52,192.07 -394.52,195.47 -393.60,198.60 -392.73,201.53 -391.78,204.76 -390.79,208.15 -389.86,211.26 -388.84,214.76 -360.33,206.41 -358.14,213.83 -356.47,219.47 -354.82,225.12 -353.08,230.99 -351.56,236.16 -274.21,213.50 -270.01,212.27"/>
    <poly id="134765987" type="building" color="255,230,230" fill="1" layer="-1.00" shape="215.05,-327.44 214.77,-306.57 287.41,-305.58 287.54,-315.17 280.48,-315.27 280.55,-319.99 239.74,-320.55 239.83,-327.10 215.05,-327.44"/>
    <poly id="134768966" type="residential" color="235,235,227" fill="1" layer="-3.00" shape="-420.86,416.38 -427.14,341.75 -432.48,342.82 -459.60,351.03 -477.63,370.83 -491.98,384.87 -496.61,391.00 -530.26,450.44 -568.37,641.31 -562.24,673.73 -427.83,671.60 -416.46,579.46 -430.56,577.59 -429.02,417.31 -420.86,416.38"/>
    <poly id="134768969" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-62.15,687.12 -61.85,681.54 -61.80,680.70 -60.32,652.84 -68.41,652.41 -67.99,644.50 -67.36,632.47 -67.11,627.63 -66.15,615.62 -65.75,599.69 -65.66,596.25 -1.71,600.32 -7.08,681.76 -7.60,690.50 -56.12,687.43 -62.15,687.12"/>
    <poly id="134768977" type="residential" color="235,235,227" fill="1" layer="-3.00" shape="-521.72,366.52 -517.57,379.93 -539.34,412.73 -549.77,440.65 -557.31,468.74 -567.44,522.94 -591.86,674.59 -636.96,674.32 -674.51,549.58 -709.64,423.40 -521.72,366.52"/>
    <poly id="134769008" type="tourism" color="207,245,201" fill="1" layer="-2.00" shape="-484.95,358.63 -482.07,358.41 -477.63,370.83 -491.98,384.87 -496.61,391.00 -502.71,389.14 -505.25,385.79 -507.45,383.53 -507.99,378.18 -510.08,369.53 -507.26,369.68 -503.00,371.63 -499.75,371.72 -497.94,370.98 -495.03,369.04 -493.33,366.93 -493.42,363.48 -492.81,361.06 -484.95,358.63"/>
    <poly id="134893427" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="771.93,-335.79 772.64,-355.94 768.49,-372.58 746.97,-396.68 712.36,-425.59 680.67,-451.91 599.75,-527.61 593.95,-521.12 546.59,-565.57 540.32,-566.55 473.84,-542.54 426.70,-526.13 428.40,-521.30 426.37,-520.59 424.90,-520.08 423.90,-519.73 424.46,-518.12 380.94,-502.97 418.70,-472.23 391.10,-439.40 461.08,-373.46 472.27,-360.65 525.21,-300.11 528.31,-296.55 593.94,-293.76 665.54,-313.36 688.79,-233.51 694.92,-234.75 737.00,-248.22 743.46,-255.99 750.73,-268.54 758.07,-279.50 768.24,-308.16 771.93,-335.79"/>
    <poly id="137382175" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="116.03,167.78 138.90,162.49 164.69,155.19 169.27,159.07 140.17,167.88 114.43,175.09 109.72,176.51 108.39,176.21 107.41,175.29 107.17,171.96 109.32,170.35 112.49,168.96 116.03,167.78"/>
    <poly id="137382176" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-10.04,211.10 -18.37,213.43 -22.49,214.36 -26.97,214.81 -29.80,214.76 -31.12,214.36 -31.74,213.68 -32.03,211.54 -30.95,209.75 -28.82,207.53 -26.21,206.14 -19.75,204.31 -16.43,204.28 1.25,199.20 39.37,187.91 74.32,178.44 89.45,173.66 91.25,173.85 92.85,175.35 93.77,178.16 94.06,179.81 92.82,180.50 88.07,181.98 65.36,188.76 30.55,198.91 7.02,205.96 -10.04,211.10"/>
    <poly id="137382179" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-176.18,229.94 -175.32,232.42 -171.91,231.93 -147.05,224.55 -146.37,226.81 -137.46,224.17 -147.60,190.16 -149.38,185.51 -152.34,186.40 -157.03,170.83 -166.80,138.00 -162.24,136.66 -164.05,128.76 -169.20,111.13 -171.12,103.51 -173.88,104.31 -179.62,84.41 -184.77,86.68 -187.84,88.02 -182.76,105.49 -207.23,112.56 -211.18,115.38 -209.71,121.85 -183.85,208.96 -182.65,208.56 -181.06,213.82 -179.24,219.55 -176.18,229.94"/>
    <poly id="160477978" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-303.31,249.33 -304.27,246.13 -325.06,252.35 -324.10,255.54 -303.31,249.33"/>
    <poly id="160477980" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-287.78,244.69 -285.63,251.80 -322.89,262.95 -325.04,255.83 -324.10,255.54 -303.31,249.33 -287.78,244.69"/>
    <poly id="160477981" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-334.84,243.78 -331.67,254.33 -325.06,252.35 -304.27,246.13 -301.53,245.31 -304.70,234.76 -334.84,243.78"/>
    <poly id="160700373" type="commercial" color="209,209,204" fill="1" layer="-3.00" shape="104.57,160.62 95.78,163.25 86.33,166.09 -202.33,252.58 -204.66,245.37 -209.26,229.64 -212.39,218.92 -214.25,212.54 -218.58,197.72 -222.64,183.86 -218.65,182.69 -235.07,126.53 -238.85,113.60 -241.16,114.27 -244.45,103.01 -238.22,101.30 -232.07,99.60 -154.76,74.26 -62.34,47.15 -48.75,43.17 1.16,28.53 4.84,31.39 84.28,91.52 103.27,106.06 134.03,130.65 137.73,133.60 140.54,136.29 141.50,137.68 142.55,140.52 142.14,144.40 139.53,148.95 137.12,151.02 104.57,160.62"/>
    <poly id="160700717" type="industrial" color="209,209,204" fill="1" layer="-3.00" shape="117.92,268.09 118.87,271.17 120.82,277.56 123.43,286.51 66.42,303.14 71.76,322.27 25.29,335.83 -24.69,350.23 -58.45,235.85 38.21,207.97 53.34,203.60 58.29,218.65 81.98,211.77 80.03,203.81 97.86,199.08 113.90,254.81 114.69,257.52 117.92,268.09"/>
    <poly id="160700718" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="58.29,218.65 81.98,211.77 80.03,203.81 77.88,196.91 53.34,203.60 58.29,218.65"/>
    <poly id="162550952" type="building" color="255,230,230" fill="1" layer="-1.00" shape="342.95,-243.22 338.52,-241.70 341.21,-233.93 402.97,-255.11 400.72,-261.63 398.19,-260.77 397.77,-262.01 342.95,-243.22"/>
    <poly id="169250017" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-728.82,214.46 -666.53,195.98 -584.40,172.30 -542.65,160.50 -486.08,143.87 -483.96,150.21 -495.24,153.17 -580.30,177.78 -655.20,199.68 -707.71,215.04 -724.94,220.15 -725.31,219.43 -726.87,219.69 -728.82,214.46"/>
    <poly id="169250019" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-760.67,223.31 -764.72,224.47 -758.24,229.34 -757.53,231.81 -750.87,229.54 -742.50,226.18 -736.88,224.04 -724.94,220.15 -725.31,219.43 -726.87,219.69 -728.82,214.46 -666.53,195.98 -584.40,172.30 -542.65,160.50 -543.15,158.66 -566.36,165.44 -621.39,181.75 -672.35,196.65 -680.10,198.96 -719.05,210.57 -734.40,214.99 -741.34,216.47 -747.70,217.44 -754.01,218.51 -761.45,220.57 -760.67,223.31"/>
    <poly id="169250021" type="tourism" color="207,245,201" fill="1" layer="-2.00" shape="-776.40,-134.70 -776.44,-130.45 -779.23,-130.47 -779.77,-114.97 -724.76,-115.13 -724.85,-128.01 -681.51,-128.23 -681.51,-129.54 -669.54,-129.60 -669.40,-104.30 -669.39,-101.61 -667.74,-101.69 -667.52,-93.65 -674.15,-93.81 -674.12,-92.10 -673.03,-25.32 -680.47,-25.19 -681.60,-93.69 -728.47,-94.36 -729.86,-3.59 -738.29,-3.61 -738.34,10.10 -755.61,10.49 -755.81,20.34 -765.31,20.23 -768.60,20.28 -768.58,24.28 -768.55,29.96 -780.48,29.89 -780.48,30.75 -780.29,54.48 -780.69,123.06 -780.67,185.19 -780.87,191.34 -780.00,201.47 -779.53,207.07 -779.33,209.36 -765.12,205.05 -763.15,207.67 -675.57,181.58 -632.01,168.90 -632.41,150.72 -635.32,14.63 -630.15,14.59 -630.47,-3.75 -635.86,-3.74 -635.05,-103.25 -621.05,-122.35 -621.12,-127.57 -628.49,-131.34 -633.19,-133.36 -639.48,-135.81 -646.60,-137.96 -652.81,-139.37 -657.88,-140.14 -662.60,-140.62 -669.88,-141.08 -725.19,-141.72 -776.35,-141.74 -776.35,-139.64 -776.40,-134.70"/>
    <poly id="172174766" type="building" color="255,230,230" fill="1" layer="-1.00" shape="25.30,379.67 29.67,378.32 24.77,362.51 20.40,363.86 25.30,379.67"/>
    <poly id="172174767" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="15.93,439.59 16.20,442.14 17.79,448.01 18.47,448.49 42.43,441.39 42.56,440.84 39.73,432.12 38.32,432.52 39.68,437.38 18.20,443.40 17.04,439.28 15.93,439.59"/>
    <poly id="172174768" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="167.27,448.05 169.58,446.96 170.50,445.28 164.20,426.59 162.44,424.73 160.25,424.07 157.60,424.51 130.40,432.48 100.97,440.77 101.80,442.90 103.98,442.50 104.99,443.40 114.09,440.85 117.49,439.91 120.71,439.00 123.91,438.11 157.63,428.70 158.56,433.22 162.66,432.38 167.27,448.05"/>
    <poly id="172174769" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="90.71,526.81 85.66,508.04 80.89,491.17 68.60,449.44 99.16,441.19 99.48,443.17 99.06,443.78 98.10,444.33 98.87,448.44 73.61,455.55 92.62,522.60 101.30,520.16 124.45,515.28 182.52,498.31 181.47,494.08 183.02,493.55 185.80,493.16 188.52,493.75 190.34,494.52 191.92,497.71 109.75,521.40 90.71,526.81"/>
    <poly id="172174770" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="9.32,444.81 5.19,446.04 -7.96,402.48 -4.98,401.50 -6.30,396.79 -10.11,385.49 -14.78,380.23 -20.06,360.17 -17.68,359.11 -18.55,356.32 -13.58,354.79 -14.98,350.27 13.47,341.50 25.88,337.93 25.29,335.83 -24.69,350.23 -8.86,402.69 6.04,451.79 10.87,450.24 9.32,444.81"/>
    <poly id="172174771" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="102.93,332.94 101.82,329.12 100.73,325.30 99.95,322.58 96.73,323.50 99.71,333.87 102.93,332.94"/>
    <poly id="172174772" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="104.40,338.83 114.96,374.97 111.89,375.87 101.34,339.73 104.40,338.83"/>
    <poly id="172174773" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="116.76,416.24 118.07,420.01 150.26,410.90 150.99,409.75 150.98,408.73 150.44,406.52 116.76,416.24"/>
    <poly id="172174774" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="48.15,433.08 49.64,438.52 51.48,437.69 52.67,436.58 53.72,435.16 53.84,433.54 53.06,431.49 48.15,433.08"/>
    <poly id="172174775" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="178.39,487.44 181.85,486.48 183.81,485.14 185.15,484.06 174.94,457.18 173.03,456.49 171.40,456.51 169.95,456.86 178.39,487.44"/>
    <poly id="172174776" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="147.96,373.51 148.54,373.26 157.29,402.58 156.89,405.54 155.93,407.48 154.79,408.88 152.75,405.86 145.58,381.17 145.61,379.58 144.24,374.85 147.96,373.51"/>
    <poly id="172174777" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="129.16,365.26 128.46,362.86 123.65,364.25 124.35,366.65 129.16,365.26"/>
    <poly id="172174778" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="139.85,362.14 139.15,359.75 143.63,358.45 144.34,360.84 139.85,362.14"/>
    <poly id="172174779" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="137.27,336.68 136.58,334.30 132.10,335.60 132.79,337.98 137.27,336.68"/>
    <poly id="172174780" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="117.29,342.49 116.60,340.10 121.43,338.70 122.12,341.09 117.29,342.49"/>
    <poly id="172174781" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="101.23,387.05 93.76,389.42 95.15,394.42 102.46,392.39 101.23,387.05"/>
    <poly id="172174782" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="119.48,465.34 120.64,464.98 120.05,462.74 119.46,460.49 118.50,456.83 118.02,455.02 116.58,455.41 119.48,465.34"/>
    <poly id="172174783" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="151.96,455.86 149.09,445.05 150.23,444.81 152.90,455.65 151.96,455.86"/>
    <poly id="172174784" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="162.09,491.36 152.53,457.81 153.52,457.53 163.09,491.12 164.69,490.66 164.88,491.36 161.03,492.46 160.82,491.72 162.09,491.36"/>
    <poly id="172174785" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="128.68,498.65 119.96,467.20 121.20,466.86 130.55,500.63 132.38,500.13 132.64,501.05 127.61,502.43 126.71,499.20 128.68,498.65"/>
    <poly id="172174786" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="137.21,462.27 146.72,496.03 148.56,495.52 148.68,495.99 143.89,497.33 143.76,496.88 145.83,496.29 136.30,462.52 137.21,462.27"/>
    <poly id="172174788" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="107.57,393.68 110.18,402.71 107.76,403.41 102.79,385.20 103.54,384.98 135.13,375.69 135.56,377.37 137.47,383.51 111.64,390.97 112.05,392.39 107.57,393.68"/>
    <poly id="177314281" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="104.57,160.62 137.12,151.02 139.53,148.95 142.14,144.40 142.55,140.52 141.50,137.68 140.54,136.29 137.73,133.60 134.03,130.65 103.27,106.06 84.28,91.52 83.65,92.51 131.42,130.16 133.82,138.53 128.59,140.03 130.04,145.09 102.63,152.92 101.12,148.34 100.18,150.13 102.64,158.84 103.66,159.19 104.57,160.62"/>
    <poly id="177314282" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="502.58,49.45 504.54,47.73 507.20,46.03 512.21,43.73 524.46,39.02 534.16,35.74 542.73,33.33 543.11,35.52 535.68,37.37 526.09,40.26 514.82,44.68 506.85,48.51 503.02,50.52 502.43,50.23 502.31,49.76 502.58,49.45"/>
    <poly id="177314286" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="384.42,-69.14 384.86,-66.46 387.03,-60.06 391.00,-48.45 392.10,-46.75 393.04,-46.29 393.14,-46.92 387.31,-63.53 385.61,-69.77 385.83,-73.40 386.83,-78.69 388.61,-83.72 388.30,-84.28 387.62,-84.12 386.75,-82.67 384.98,-76.14 384.42,-69.14"/>
    <poly id="177314287" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="393.09,-91.32 394.92,-92.88 399.82,-95.33 405.15,-97.41 418.76,-102.05 438.96,-108.49 451.33,-112.23 460.54,-116.10 477.37,-122.81 494.81,-129.22 495.41,-128.89 483.74,-124.10 469.63,-117.71 458.29,-112.80 451.71,-110.40 431.29,-104.47 408.75,-97.15 400.55,-94.38 396.82,-92.74 393.90,-91.40 393.09,-91.32"/>
    <poly id="177314289" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="398.14,-31.38 398.66,-30.65 399.11,-29.42 405.22,-11.07 416.76,21.62 426.33,47.03 427.83,50.87 427.46,51.16 427.02,51.28 426.51,50.99 425.02,48.08 423.16,43.70 417.20,27.90 412.04,13.75 405.86,-3.47 398.71,-24.29 396.97,-29.98 397.04,-30.97 397.45,-31.45 397.77,-31.49 398.14,-31.38"/>
    <poly id="177314290" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="389.34,-70.84 389.86,-75.24 391.54,-80.07 394.05,-84.07 397.77,-87.45 401.42,-90.42 404.99,-92.16 411.36,-94.33 418.49,-96.61 435.46,-102.21 436.01,-102.37 439.59,-91.85 438.62,-91.05 394.27,-76.53 404.29,-46.12 399.54,-44.63 398.39,-44.83 397.35,-45.39 396.42,-47.11 393.73,-56.39 390.58,-66.12 389.34,-70.84"/>
    <poly id="177314291" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="461.39,-98.11 444.69,-92.69 440.93,-103.81 449.33,-105.99 456.94,-108.54 490.04,-122.99 500.22,-127.29 510.24,-130.91 537.62,-139.19 563.53,-145.57 644.61,25.77 638.39,24.62 636.64,20.19 633.68,15.60 630.72,13.12 587.08,-78.89 583.76,-77.89 569.62,-107.32 572.15,-108.71 566.57,-121.38 563.44,-120.38 562.03,-125.65 490.78,-104.30 489.77,-107.80 461.39,-98.11"/>
    <poly id="177314292" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="483.05,44.12 481.21,38.09 473.16,40.74 446.89,49.64 444.36,49.80 441.68,48.88 440.01,47.50 439.42,46.44 438.31,44.19 437.36,40.64 433.30,41.97 406.84,-38.35 401.17,-36.50 400.64,-34.98 401.24,-32.71 419.23,19.30 429.42,45.75 432.10,52.33 434.08,54.84 436.53,56.49 439.26,57.11 443.40,56.98 449.75,56.30 453.73,55.55 458.99,53.72 463.66,51.71 472.16,48.72 483.05,44.12"/>
    <poly id="177314293" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="464.01,-68.73 454.10,-65.67 449.68,-79.92 459.61,-82.97 464.01,-68.73"/>
    <poly id="177314294" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="483.36,25.57 484.40,28.63 484.04,29.11 470.21,33.86 448.85,41.00 447.48,37.32 479.90,26.70 483.36,25.57"/>
    <poly id="177314295" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="170.67,140.79 172.92,139.95 173.13,140.49 173.17,141.13 172.88,141.53 172.23,141.63 171.48,141.40 170.67,140.79"/>
    <poly id="180397875" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-504.89,10.18 -494.47,7.54 -480.59,54.60 -485.26,56.01 -489.25,57.19 -490.89,57.68 -504.89,10.18"/>
    <poly id="180397876" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-518.94,-37.52 -508.40,-40.26 -498.17,-5.05 -508.42,-1.71 -518.94,-37.52"/>
    <poly id="182456643" type="building" color="255,230,230" fill="0" layer="-1.00" shape="-14848.12,-18366.92 -14847.12,-18365.64 -14836.40,-18351.90 -14769.89,-18274.85 -14713.93,-18197.81 -14711.72,-18100.21 -14713.33,-18093.87 -14835.27,-17015.50 -14815.51,-16979.15 -14814.78,-16977.82 -14770.34,-16897.76 -14688.85,-16754.71 -14433.07,-16307.13 -14412.86,-16269.08 -14291.40,-16048.62 -14241.85,-15970.51 -14219.22,-15959.73 -14198.89,-15958.60 -14171.06,-15950.73 -14162.36,-15953.62 -14076.08,-15938.16 -14069.06,-15920.45 -14050.50,-15891.37 -14025.91,-15828.08 -13993.56,-15799.78 -13909.74,-15702.98 -13914.38,-15611.33 -13922.10,-15559.68 -13939.06,-15414.65 -13934.32,-15402.24 -13903.51,-15338.52 -13845.85,-15266.06 -13844.77,-15264.71 -13828.91,-15244.76 -13817.54,-15230.41 -13732.17,-15081.28 -13652.07,-14938.43 -13556.66,-14804.28 -13527.47,-14713.53 -13351.69,-14451.35 -13280.44,-14354.97 -13190.12,-14224.46 -12763.08,-13871.38 -12380.77,-13644.21 -12369.63,-13637.83 -12337.14,-13619.24 -11953.51,-13472.72 -11887.14,-13449.11 -11034.68,-13112.64 -10713.57,-12805.47 -9901.03,-12489.01 -9489.96,-12330.34 -8914.33,-12096.41 -8318.86,-11866.92 -7499.54,-11540.19 -6984.67,-11328.10 -6676.24,-11153.55 -6578.92,-10962.93 -6569.27,-10951.57 -6062.45,-9994.37 -5817.96,-9609.93 -5676.65,-9311.83 -5633.82,-9199.39 -5630.55,-9073.35 -5630.38,-9046.62 -5613.30,-8625.78 -5607.16,-8469.07 -5598.50,-8215.34 -5472.27,-7311.36 -5380.47,-7097.58 -5323.91,-6998.09 -5187.69,-6795.12 -5131.46,-6680.97 -4831.25,-6303.37 -4737.97,-6180.29 -4583.06,-5960.00 -4546.39,-5908.39 -4490.00,-5834.03 -4416.96,-5750.81 -4281.29,-5623.84 -4242.10,-5603.70 -4210.72,-5589.63 -4086.05,-5581.31 -4065.00,-5553.36 -3966.62,-5515.70 -3878.41,-5480.71 -3792.83,-5438.86 -3778.22,-5395.14 -3753.60,-5330.09 -3750.54,-5322.00 -3535.69,-5269.47 -3499.89,-5259.28 -3438.93,-5245.35 -3340.55,-5218.63 -2461.43,-5011.00 -2427.18,-5000.46 -2378.41,-4981.60 -2333.04,-4973.51 -2157.58,-4928.95 -1795.82,-4824.67 -1116.54,-4407.08 -1113.90,-4405.65 -934.83,-4294.93 -880.48,-4260.52 -797.75,-4210.11 -605.22,-4088.50 -392.58,-4009.84 -224.73,-3935.18 -173.00,-3928.86 7.27,-3900.42 109.79,-3763.20 172.60,-3681.84 248.34,-3578.49 274.47,-3523.51 203.65,-3477.54 231.35,-3277.39 307.12,-2954.57 343.90,-2816.64 393.60,-2624.68 413.43,-2536.77 444.26,-2423.50 483.15,-2279.60 495.95,-2199.49 484.43,-2179.35 425.82,-2076.87 406.97,-2058.21 510.77,-1936.24 542.74,-1911.85 553.50,-1900.21 506.37,-1782.45 467.99,-1637.66 440.45,-1547.27 476.76,-1496.06 486.79,-1481.90 462.02,-1423.69 436.89,-1363.10 426.28,-1337.24 413.11,-1303.90 395.75,-1261.54 387.80,-1242.91 362.42,-1186.60 406.49,-1038.63 413.54,-1014.75 430.16,-947.79 430.53,-946.26 446.40,-879.48 403.55,-828.33 350.87,-773.93 367.56,-722.36 370.92,-711.97 477.26,-549.53 479.98,-544.52 571.10,-535.97 574.05,-535.11 594.30,-522.48 601.57,-511.72 615.39,-491.28 636.77,-406.58 659.23,-317.62 684.37,-234.46 688.94,-219.33 707.49,-139.22 784.05,60.76 784.62,61.57 797.29,77.81 811.47,121.07 811.10,170.67 799.55,220.31 801.00,226.01 815.43,282.47 862.91,464.58 901.12,592.13 915.44,645.82 925.37,690.10 933.18,740.33 945.48,819.59 946.85,853.98 1015.86,956.92 1041.49,992.34 1095.66,1073.99 1191.48,1216.17 1316.83,1403.32 1355.32,1463.91 1468.47,1690.05 1477.57,1703.23 1497.81,1731.87 1532.80,1786.08 1977.39,2463.40 2018.84,2525.57 2037.30,2553.67"/>
    <poly id="184976362" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-404.69,128.32 -416.85,131.92 -418.91,132.53 -419.32,131.14 -405.10,126.93 -404.69,128.32"/>
    <poly id="184976362#1" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-404.69,128.32 -416.85,131.92 -418.91,132.53 -419.32,131.14 -405.10,126.93 -404.69,128.32"/>
    <poly id="184976363" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-407.75,117.33 -421.51,121.41 -421.07,122.87 -407.30,118.79 -407.75,117.33"/>
    <poly id="184976363#1" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-407.75,117.33 -421.51,121.41 -421.07,122.87 -407.30,118.79 -407.75,117.33"/>
    <poly id="184976379" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="4.84,31.39 1.16,28.53 -48.75,43.17 -50.61,47.68 4.84,31.39"/>
    <poly id="184976380" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-61.26,50.82 -153.18,77.85 -154.03,78.00 -154.75,76.48 -154.76,74.26 -62.34,47.15 -61.26,50.82"/>
    <poly id="184976382" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="125.24,-49.46 75.95,-34.76 74.84,-35.58 75.16,-36.47 76.37,-38.31 78.75,-40.78 81.19,-42.18 121.02,-53.65 124.10,-52.01 125.24,-49.46"/>
    <poly id="184976384" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="75.57,-80.45 61.71,-62.74 66.23,-59.55 64.21,-56.87 68.09,-42.59 83.61,-47.53 79.76,-59.72 93.29,-63.97 92.26,-67.48 75.57,-80.45"/>
    <poly id="186555165" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-158.91,575.62 -143.33,576.59 -142.72,566.99 -158.31,566.02 -158.91,575.62"/>
    <poly id="186555166" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-143.33,576.59 -127.75,577.56 -127.15,567.96 -142.72,566.99 -143.33,576.59"/>
    <poly id="186555167" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-127.75,577.56 -112.16,578.54 -111.56,568.94 -127.15,567.96 -127.75,577.56"/>
    <poly id="186555173" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-97.65,579.71 -81.95,580.67 -81.34,570.74 -97.05,569.79 -97.65,579.71"/>
    <poly id="186555175" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-200.57,660.46 -201.51,675.13 -189.74,675.87 -189.28,668.54 -188.80,661.21 -200.57,660.46"/>
    <poly id="186555177" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-200.57,660.46 -188.80,661.21 -188.01,648.64 -187.88,646.54 -190.31,646.38 -199.64,645.79 -200.57,660.46"/>
    <poly id="186555178" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-201.24,628.34 -202.34,645.62 -199.64,645.79 -190.31,646.38 -189.76,637.73 -189.21,629.09 -201.24,628.34"/>
    <poly id="186555179" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-200.15,611.05 -201.24,628.34 -189.21,629.09 -188.66,620.45 -188.11,611.81 -200.15,611.05"/>
    <poly id="186555180" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-199.05,593.77 -200.15,611.05 -188.11,611.81 -187.56,603.17 -187.01,594.52 -199.05,593.77"/>
    <poly id="186555186" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-81.95,580.67 -66.24,581.62 -65.62,571.70 -81.34,570.74 -81.95,580.67"/>
    <poly id="186555188" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-66.24,581.62 -50.53,582.58 -49.92,572.65 -65.62,571.70 -66.24,581.62"/>
    <poly id="186555190" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-40.64,581.13 -23.93,582.08 -23.29,570.92 -40.00,569.96 -40.64,581.13"/>
    <poly id="186555191" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-23.93,582.08 -7.21,583.03 -6.57,571.86 -23.29,570.92 -23.93,582.08"/>
    <poly id="186555192" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-7.21,583.03 9.50,583.98 10.14,572.82 -6.57,571.86 -7.21,583.03"/>
    <poly id="186555848" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-376.37,595.06 -376.77,587.66 -376.80,584.12 -357.45,584.60 -357.72,595.52 -376.37,595.06"/>
    <poly id="186555849" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-265.51,571.20 -249.38,571.49 -249.17,559.75 -265.30,559.45 -265.51,571.20"/>
    <poly id="186555850" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-249.38,571.49 -233.26,571.77 -233.18,567.62 -233.09,562.27 -233.05,560.03 -249.17,559.75 -249.38,571.49"/>
    <poly id="186555851" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-376.69,599.39 -388.57,598.11 -390.08,612.17 -378.21,613.44 -376.69,599.39"/>
    <poly id="187433319" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="191.33,-246.96 133.85,-248.27 102.20,-250.11 102.52,-240.68 102.07,-233.80 136.11,-227.73 136.82,-228.52 140.57,-232.08 146.96,-239.05 164.23,-238.41 189.55,-239.40 191.33,-246.96"/>
    <poly id="187433321" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="237.70,-236.20 262.54,-235.86 262.17,-221.80 265.26,-218.08 265.41,-213.28 249.45,-213.74 236.44,-213.60 237.70,-236.20"/>
    <poly id="190002967" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="37.05,496.59 18.60,495.66 18.66,494.39 36.72,495.31 37.05,496.59"/>
    <poly id="190002968" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="42.17,514.29 17.63,513.11 17.69,511.70 41.89,512.87 42.17,514.29"/>
    <poly id="190002970" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="63.98,455.40 62.72,451.42 20.29,463.17 21.47,466.89 39.68,461.79 47.40,460.12 61.66,456.06 63.98,455.40"/>
    <poly id="202581752" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-725.06,-3.55 -681.46,-3.83 -681.56,-19.66 -667.67,-19.74 -667.48,10.55 -724.96,10.92 -725.06,-3.55"/>
    <poly id="202666202" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-516.82,491.41 -517.60,486.44 -523.39,487.34 -522.62,492.31 -516.82,491.41"/>
    <poly id="202667227" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-473.03,511.85 -454.83,509.66 -455.95,500.45 -459.83,500.92 -460.44,495.83 -474.76,497.55 -473.03,511.85"/>
    <poly id="230387076" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="325.95,578.27 340.92,566.43 318.40,538.09 303.42,549.93 325.95,578.27"/>
    <poly id="230387076#1" type="sport" color="79,230,125" fill="1" layer="-2.00" shape="325.95,578.27 340.92,566.43 318.40,538.09 303.42,549.93 325.95,578.27"/>
    <poly id="230387079" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="303.42,549.93 325.95,578.27 313.03,588.47 290.51,560.13 303.42,549.93"/>
    <poly id="230387079#1" type="sport" color="79,230,125" fill="1" layer="-2.00" shape="303.42,549.93 325.95,578.27 313.03,588.47 290.51,560.13 303.42,549.93"/>
    <poly id="230387081" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="348.16,514.57 372.20,544.81 387.11,533.03 363.08,502.79 348.16,514.57"/>
    <poly id="230387081#1" type="sport" color="79,230,125" fill="1" layer="-2.00" shape="348.16,514.57 372.20,544.81 387.11,533.03 363.08,502.79 348.16,514.57"/>
    <poly id="230387084" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="340.92,566.43 355.84,554.63 333.32,526.30 318.40,538.09 340.92,566.43"/>
    <poly id="230387084#1" type="sport" color="79,230,125" fill="1" layer="-2.00" shape="340.92,566.43 355.84,554.63 333.32,526.30 318.40,538.09 340.92,566.43"/>
    <poly id="230387086" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="333.32,526.30 348.16,514.57 372.20,544.81 357.36,556.53 355.84,554.63 333.32,526.30"/>
    <poly id="230387086#1" type="sport" color="79,230,125" fill="1" layer="-2.00" shape="333.32,526.30 348.16,514.57 372.20,544.81 357.36,556.53 355.84,554.63 333.32,526.30"/>
    <poly id="23640170" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="473.72,-198.61 453.64,-259.62 363.19,-230.03 383.27,-169.01 473.72,-198.61"/>
    <poly id="23640170#1" type="sport" color="79,230,125" fill="1" layer="-2.00" shape="473.72,-198.61 453.64,-259.62 363.19,-230.03 383.27,-169.01 473.72,-198.61"/>
    <poly id="23640542" type="building" color="255,230,230" fill="1" layer="-1.00" shape="519.22,-93.08 496.62,-85.67 499.69,-76.33 454.88,-61.66 465.82,-28.46 478.04,8.65 488.20,5.31 555.11,-16.60 556.52,-17.05 559.33,-17.97 562.14,-18.90 564.95,-19.82 567.76,-20.74 569.17,-21.20 579.93,-24.73 590.14,-28.07 589.67,-29.05 557.85,-95.37 522.29,-83.73 519.22,-93.08"/>
    <poly id="23640544" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="586.26,-212.33 567.28,-280.27 644.85,-303.10 662.63,-308.33 663.01,-308.44 682.57,-242.08 586.26,-212.33"/>
    <poly id="23640544#1" type="sport" color="79,230,125" fill="1" layer="-2.00" shape="586.26,-212.33 567.28,-280.27 644.85,-303.10 662.63,-308.33 663.01,-308.44 682.57,-242.08 586.26,-212.33"/>
    <poly id="236580923" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="245.98,468.90 276.30,460.32 273.36,449.95 265.29,452.23 263.41,445.61 241.15,451.90 245.98,468.90"/>
    <poly id="236580924" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="270.35,429.40 260.77,418.90 288.77,410.84 289.48,413.33 298.74,410.71 298.27,407.56 328.62,399.12 323.96,382.44 337.08,378.70 334.34,402.95 331.84,413.56 307.79,419.75 270.35,429.40"/>
    <poly id="237123354" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="81.38,90.72 83.65,92.51 131.42,130.16 133.82,138.53 128.59,140.03 130.04,145.09 102.63,152.92 97.82,154.29 93.55,155.51 84.07,158.21 65.95,95.12 81.38,90.72"/>
    <poly id="24156500" type="farm" color="242,242,204" fill="1" layer="-3.00" shape="248.17,697.29 250.39,698.11 257.87,692.45 258.16,690.81 256.11,687.84 252.60,686.63 245.45,688.40 243.60,689.91 244.11,692.03 248.17,697.29"/>
    <poly id="24187075" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="124.45,515.28 182.52,498.31 181.47,494.08 178.39,487.44 169.95,456.86 167.27,448.05 162.66,432.38 158.56,433.22 157.63,428.70 123.91,438.11 120.71,439.00 117.49,439.91 114.09,440.85 104.99,443.40 105.82,446.47 107.43,452.15 114.10,475.67 110.33,476.73 119.10,507.65 123.62,511.37 124.45,515.28"/>
    <poly id="24187149" type="tourism" color="207,245,201" fill="1" layer="-2.00" shape="631.86,764.56 635.85,756.11 636.84,751.44 638.07,745.43 637.45,732.43 635.77,720.27 633.11,704.86 592.13,735.20 543.89,713.79 514.60,702.65 497.88,696.66 474.28,690.46 448.60,660.15 483.02,632.45 468.72,622.72 408.31,670.20 336.57,673.31 328.89,671.11 312.10,672.18 305.94,674.83 257.46,677.13 202.98,695.19 202.92,704.92 217.38,704.50 217.33,708.76 227.75,708.53 227.85,725.07 250.24,720.35 272.56,717.08 272.01,686.80 309.26,684.53 328.47,683.56 329.90,680.28 341.21,682.85 364.43,682.75 395.29,688.45 453.84,700.52 511.14,714.13 580.87,741.50 618.82,763.52 626.78,769.70 631.86,764.56"/>
    <poly id="24295478" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="89.38,337.12 92.09,324.82 96.73,323.50 99.95,322.58 130.74,313.95 130.80,314.15 131.53,316.71 132.23,319.19 133.62,324.05 135.29,329.86 136.58,334.30 137.27,336.68 143.63,358.45 144.34,360.84 145.84,366.00 141.98,367.12 144.24,374.85 145.61,379.58 142.49,380.48 141.12,375.75 140.64,374.09 135.13,375.69 103.54,384.98 102.79,385.20 98.49,386.46 96.71,380.46 92.46,366.08 97.51,364.59 100.33,363.77 95.32,346.67 92.46,347.52 87.41,349.00 84.33,338.61 89.38,337.12"/>
    <poly id="250829608" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-521.04,-44.45 -510.70,-47.74 -523.50,-92.60 -541.17,-97.61 -546.15,-98.68 -552.24,-99.10 -557.98,-98.82 -562.77,-97.74 -565.46,-96.61 -536.50,-77.61 -533.68,-75.18 -529.84,-70.48 -527.28,-65.94 -526.09,-62.45 -521.04,-44.45"/>
    <poly id="251056475" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-492.97,78.29 -493.36,78.02 -493.64,77.64 -493.79,77.19 -493.78,76.71 -493.62,76.27 -493.32,75.90 -492.91,75.65 -492.45,75.54 -491.98,75.59 -491.54,75.79 -491.20,76.12 -490.98,76.54 -490.91,77.00 -491.00,77.47 -491.24,77.89 -491.59,78.20 -492.03,78.38 -492.50,78.42 -492.97,78.29"/>
    <poly id="251056476" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-456.87,75.06 -457.27,74.80 -457.55,74.41 -457.70,73.97 -457.69,73.49 -457.53,73.04 -457.24,72.67 -456.83,72.41 -456.37,72.31 -455.89,72.35 -455.46,72.55 -455.11,72.88 -454.90,73.30 -454.83,73.77 -454.91,74.23 -455.14,74.65 -455.50,74.96 -455.94,75.15 -456.41,75.18 -456.87,75.06"/>
    <poly id="251056478" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-504.36,102.90 -504.76,102.63 -505.04,102.26 -505.19,101.80 -505.17,101.32 -505.02,100.88 -504.72,100.51 -504.31,100.26 -503.85,100.15 -503.38,100.20 -502.94,100.40 -502.60,100.73 -502.38,101.15 -502.31,101.61 -502.40,102.08 -502.63,102.49 -502.98,102.81 -503.43,102.99 -503.90,103.03 -504.36,102.90"/>
    <poly id="251056479" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-500.65,88.69 -501.04,88.43 -501.33,88.04 -501.48,87.60 -501.48,87.12 -501.31,86.68 -501.02,86.31 -500.62,86.05 -500.15,85.95 -499.68,85.99 -499.25,86.18 -498.90,86.51 -498.68,86.93 -498.61,87.40 -498.69,87.87 -498.92,88.28 -499.28,88.60 -499.72,88.79 -500.19,88.81 -500.65,88.69"/>
    <poly id="251056480" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-446.93,83.58 -447.33,83.31 -447.61,82.94 -447.76,82.48 -447.75,82.01 -447.58,81.56 -447.28,81.19 -446.88,80.94 -446.42,80.84 -445.94,80.88 -445.51,81.09 -445.17,81.41 -444.95,81.83 -444.88,82.31 -444.97,82.77 -445.20,83.19 -445.56,83.50 -446.00,83.68 -446.48,83.71 -446.93,83.58"/>
    <poly id="251056482" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-502.48,115.09 -502.87,114.83 -503.15,114.45 -503.30,114.00 -503.29,113.52 -503.13,113.07 -502.83,112.70 -502.43,112.45 -501.96,112.34 -501.49,112.39 -501.06,112.59 -500.71,112.92 -500.50,113.34 -500.43,113.81 -500.51,114.27 -500.75,114.69 -501.10,115.00 -501.54,115.18 -502.01,115.22 -502.48,115.09"/>
    <poly id="251056485" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-470.59,71.17 -470.99,70.91 -471.27,70.53 -471.42,70.08 -471.41,69.60 -471.25,69.15 -470.95,68.79 -470.55,68.54 -470.08,68.43 -469.61,68.47 -469.18,68.68 -468.83,69.00 -468.62,69.42 -468.55,69.90 -468.63,70.37 -468.87,70.78 -469.23,71.09 -469.67,71.28 -470.14,71.30 -470.59,71.17"/>
    <poly id="251056486" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-441.52,94.96 -441.91,94.68 -442.20,94.30 -442.34,93.85 -442.34,93.38 -442.17,92.94 -441.87,92.57 -441.47,92.31 -441.01,92.21 -440.53,92.25 -440.10,92.45 -439.75,92.77 -439.54,93.19 -439.47,93.67 -439.55,94.13 -439.79,94.54 -440.15,94.87 -440.58,95.05 -441.06,95.07 -441.52,94.96"/>
    <poly id="251172400" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-426.28,256.59 -425.46,260.46 -422.53,260.09 -414.22,303.23 -416.45,299.83 -418.26,295.11 -419.31,290.69 -421.71,279.71 -428.26,280.97 -422.59,309.63 -425.45,310.71 -434.92,262.37 -433.16,261.96 -432.53,261.81 -432.37,262.31 -426.28,256.59"/>
    <poly id="251172412" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-441.41,130.58 -442.65,126.05 -445.20,126.58 -446.38,127.22 -447.16,128.08 -447.50,129.37 -447.01,131.88 -441.41,130.58"/>
    <poly id="251172414" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-483.15,141.63 -483.59,140.49 -478.97,139.09 -477.17,138.52 -475.59,138.99 -474.84,140.20 -481.50,142.12 -481.78,141.35 -483.15,141.63"/>
    <poly id="251172417" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-442.43,184.00 -446.42,184.72 -445.24,189.83 -447.36,190.16 -438.63,227.94 -434.21,250.13 -433.48,253.78 -432.72,257.62 -427.06,252.33 -428.07,247.15 -434.27,218.01 -442.43,184.00"/>
    <poly id="252297880" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-265.77,-175.23 -315.95,-209.24 -331.05,-209.11 -344.68,-209.60 -359.58,-211.21 -366.92,-209.79 -345.08,-131.39 -314.30,-140.33 -291.73,-147.27 -285.40,-149.79 -276.92,-154.69 -268.15,-162.16 -265.20,-165.81 -264.84,-166.26 -263.58,-170.03 -264.10,-172.32 -264.75,-173.69 -265.77,-175.23"/>
    <poly id="252297885" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-249.65,-186.23 -280.13,-206.71 -306.99,-224.47 -310.86,-227.44 -313.13,-230.02 -316.34,-233.33 -318.88,-236.12 -344.28,-252.36 -379.07,-274.40 -414.45,-296.14 -415.71,-294.27 -377.18,-271.09 -352.15,-255.42 -348.00,-252.03 -344.05,-248.64 -339.21,-244.08 -335.36,-240.89 -320.28,-231.32 -290.71,-212.07 -250.53,-185.18 -249.98,-184.97 -249.57,-185.13 -249.33,-185.46 -249.39,-185.89 -249.65,-186.23"/>
    <poly id="252297886" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-235.34,-162.17 -197.57,-135.30 -143.46,-94.61 -88.92,-51.71 -55.48,-25.44 -47.00,-18.96 -44.23,-16.33 -42.93,-12.44 -42.03,-10.46 -40.60,-9.07 -39.45,-8.48 -38.30,-8.35 -38.70,-11.49 -39.71,-15.69 -41.90,-19.68 -54.43,-29.76 -98.73,-64.64 -146.78,-102.23 -165.83,-116.59 -168.34,-117.98 -171.22,-119.15 -175.88,-120.95 -178.94,-122.71 -181.97,-124.84 -197.22,-136.14 -217.56,-151.00 -229.47,-159.32 -231.25,-160.49 -232.98,-161.24 -235.34,-162.17"/>
    <poly id="252297887" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-233.44,-156.79 -234.50,-157.38 -236.21,-157.90 -238.39,-158.38 -239.99,-158.41 -242.15,-158.05 -244.13,-157.12 -246.67,-155.62 -248.75,-153.74 -251.62,-150.87 -254.50,-147.74 -257.26,-145.36 -259.72,-143.83 -262.42,-142.45 -260.18,-142.69 -257.45,-144.13 -251.02,-149.98 -246.98,-154.99 -245.23,-154.54 -243.02,-154.67 -240.82,-155.71 -238.42,-155.65 -236.19,-155.30 -209.94,-136.61 -171.35,-107.81 -134.63,-80.87 -69.07,-29.91 -48.52,-14.29 -47.75,-14.85 -73.41,-35.39 -125.11,-76.47 -165.65,-106.98 -204.22,-136.13 -228.87,-153.55 -233.44,-156.79"/>
    <poly id="252297888" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-257.22,-177.85 -256.06,-179.53 -255.76,-179.36 -255.45,-178.51 -255.12,-177.69 -255.03,-176.93 -255.22,-176.56 -257.22,-177.85"/>
    <poly id="25390771" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-496.35,365.87 -496.08,366.71 -497.02,368.25 -497.68,368.69 -498.45,368.74 -498.99,368.92 -500.06,368.85 -500.18,365.86 -498.62,365.38 -497.31,365.13 -496.35,365.87"/>
    <poly id="256212362" type="building" color="255,230,230" fill="1" layer="-1.00" shape="698.31,184.20 696.15,178.65 680.13,172.00 671.53,259.49 690.72,261.36 694.86,219.24 696.33,204.37 698.31,184.20"/>
    <poly id="256212363" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="694.86,219.24 696.33,204.37 705.53,204.97 706.05,209.27 707.31,216.72 704.92,218.97 694.86,219.24"/>
    <poly id="258679943" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-811.73,-135.05 -790.48,-134.84 -790.52,-130.59 -786.10,-130.54 -782.87,-130.51 -779.23,-130.47 -776.44,-130.45 -776.40,-134.70 -724.65,-134.06 -724.85,-128.01 -681.51,-128.23 -681.51,-129.54 -669.54,-129.60 -669.40,-104.30 -667.81,-104.34 -667.74,-101.69 -667.52,-93.65 -667.49,-92.28 -674.12,-92.10 -673.03,-25.32 -666.23,-25.51 -665.89,19.05 -755.81,20.34 -765.31,20.23 -765.68,10.09 -788.62,10.12 -799.60,10.25 -892.71,12.17 -892.78,4.64 -892.85,0.99 -920.04,1.35 -920.92,-61.54 -921.08,-114.11 -921.08,-120.61 -921.07,-126.29 -921.05,-141.77 -915.49,-141.66 -912.68,-141.60 -909.58,-141.54 -904.08,-141.42 -827.99,-142.18 -821.86,-142.23 -811.66,-142.14 -811.73,-135.05"/>
    <poly id="274801745" type="building" color="255,230,230" fill="1" layer="-1.00" shape="14.77,39.77 -4.48,45.31 -4.90,43.80 -7.08,44.43 -6.64,45.93 -18.81,49.43 -18.78,47.79 -27.34,50.25 -27.30,51.87 -50.61,58.57 -57.18,60.46 -66.90,63.26 -67.33,61.75 -75.81,64.18 -75.87,65.83 -115.54,77.24 -115.16,75.50 -124.06,78.06 -124.38,79.77 -150.40,87.26 -153.18,77.85 -61.26,50.82 -50.61,47.68 4.84,31.39 6.19,30.99 16.50,39.28 14.77,39.77"/>
    <poly id="276512333" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-375.08,309.75 -316.92,292.59 -314.44,299.59 -279.00,289.41 -278.45,291.04 -330.71,306.32 -396.58,325.75 -396.58,325.35 -396.19,324.95 -389.76,322.06 -382.68,319.94 -373.31,316.90 -375.08,309.75"/>
    <poly id="288548781" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-153.52,544.69 -152.90,531.51 -139.73,532.13 -138.71,510.26 -129.72,510.69 -131.36,545.73 -153.52,544.69"/>
    <poly id="288548783" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-114.84,546.53 -102.75,547.31 -101.60,529.67 -113.69,528.89 -114.84,546.53"/>
    <poly id="288548787" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-113.11,520.95 -101.02,521.45 -100.26,503.16 -112.36,502.65 -113.11,520.95"/>
    <poly id="288548789" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-86.11,548.09 -74.63,548.79 -73.59,531.40 -85.07,530.71 -86.11,548.09"/>
    <poly id="288548791" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-53.53,550.30 -42.09,550.70 -41.46,533.19 -52.90,532.78 -53.53,550.30"/>
    <poly id="288548792" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-83.18,496.37 -83.83,509.26 -72.46,509.83 -71.81,496.94 -83.18,496.37"/>
    <poly id="289512323" type="building" color="255,230,230" fill="1" layer="-1.00" shape="237.89,405.38 239.46,404.93 247.22,402.78 247.59,402.67 252.21,401.39 253.02,404.26 255.08,411.63 259.48,427.37 259.88,428.81 250.30,431.47 240.57,434.16 240.17,432.72 239.74,431.17 234.05,410.81 232.92,406.76 237.62,405.46 237.89,405.38"/>
    <poly id="300117976" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-232.59,620.36 -233.63,634.67 -221.77,635.53 -220.74,621.20 -232.59,620.36"/>
    <poly id="300117982" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-232.59,620.36 -231.55,606.00 -219.70,606.84 -220.74,621.20 -232.59,620.36"/>
    <poly id="300188661" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-443.33,555.96 -443.30,569.19 -433.77,569.16 -433.80,555.95 -443.33,555.96"/>
    <poly id="300188663" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-443.37,540.34 -443.33,555.96 -433.80,555.95 -433.84,540.31 -443.37,540.34"/>
    <poly id="300188664" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-485.18,174.91 -482.94,174.24 -482.29,176.44 -481.31,176.15 -480.06,180.36 -470.32,177.40 -471.99,171.69 -470.64,171.27 -473.75,160.14 -476.80,158.50 -488.97,162.15 -485.18,174.91"/>
    <poly id="300193793" type="building" color="255,230,230" fill="1" layer="-1.00" shape="597.12,669.45 589.19,676.19 597.87,686.37 605.80,679.63 597.12,669.45"/>
    <poly id="300303326" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-459.15,695.40 -446.07,695.31 -446.04,698.19 -443.59,698.18 -442.26,698.57 -441.63,699.04 -441.15,699.61 -440.79,700.38 -440.65,701.10 -440.72,702.03 -440.87,702.52 -441.26,703.20 -438.88,703.55 -439.56,707.59 -438.68,707.74 -439.09,710.18 -440.14,710.01 -440.92,714.67 -451.38,712.93 -450.73,709.04 -452.46,707.79 -453.00,706.00 -458.97,706.06 -459.15,695.40"/>
    <poly id="300303327" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-488.73,403.88 -484.89,406.57 -487.39,410.11 -486.77,410.54 -491.84,417.73 -496.29,414.60 -488.73,403.88"/>
    <poly id="300381796" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-332.87,392.60 -320.07,388.94 -315.47,404.90 -328.27,408.57 -332.87,392.60"/>
    <poly id="300381797" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-320.07,388.94 -332.87,392.60 -337.51,376.45 -324.71,372.79 -320.07,388.94"/>
    <poly id="300381798" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-287.54,396.69 -284.35,407.63 -283.72,409.98 -295.14,416.82 -300.02,400.35 -287.54,396.69"/>
    <poly id="300381799" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-200.07,386.22 -211.00,389.46 -214.90,376.37 -203.97,373.13 -200.07,386.22"/>
    <poly id="300381800" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-292.23,380.84 -304.70,384.50 -300.02,400.35 -287.54,396.69 -292.23,380.84"/>
    <poly id="300381801" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-203.97,373.13 -207.73,360.53 -218.66,363.77 -214.90,376.37 -203.97,373.13"/>
    <poly id="300381802" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-309.45,368.37 -296.98,364.71 -292.23,380.84 -304.70,384.50 -309.45,368.37"/>
    <poly id="300381803" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-207.73,360.53 -218.66,363.77 -222.56,350.69 -211.63,347.45 -207.73,360.53"/>
    <poly id="300381804" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-309.45,368.37 -296.98,364.71 -301.93,347.95 -314.40,351.61 -309.45,368.37"/>
    <poly id="300381805" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-211.63,347.45 -222.56,350.69 -226.63,337.05 -215.69,333.81 -211.63,347.45"/>
    <poly id="300381806" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-226.63,337.05 -215.69,333.81 -220.22,318.63 -231.15,321.87 -226.63,337.05"/>
    <poly id="300381807" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-239.81,304.76 -231.99,302.39 -233.39,297.79 -227.11,295.88 -230.17,285.88 -244.27,290.16 -239.81,304.76"/>
    <poly id="300381808" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-239.21,359.15 -251.78,362.88 -256.56,346.91 -243.99,343.18 -239.21,359.15"/>
    <poly id="300381809" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-256.56,346.91 -262.16,328.16 -260.90,327.79 -250.45,324.68 -249.59,324.42 -243.99,343.18 -256.56,346.91"/>
    <poly id="300381810" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-263.12,320.37 -260.90,327.79 -250.45,324.68 -253.17,315.60 -252.21,315.32 -255.51,304.29 -266.91,307.69 -263.12,320.37"/>
    <poly id="300381811" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-348.46,332.58 -343.70,331.14 -343.47,331.88 -339.82,330.79 -340.01,330.13 -337.10,329.26 -336.93,329.81 -329.41,327.54 -330.27,324.71 -333.04,315.61 -351.89,321.30 -348.46,332.58"/>
    <poly id="300381812" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-282.83,312.42 -279.03,325.10 -263.12,320.37 -266.91,307.69 -282.83,312.42"/>
    <poly id="300381813" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-213.40,280.79 -210.34,290.78 -227.11,295.88 -230.17,285.88 -213.40,280.79"/>
    <poly id="300381814" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-324.76,428.33 -341.35,431.54 -343.87,418.65 -327.28,415.44 -324.76,428.33"/>
    <poly id="300381815" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-192.95,285.49 -210.34,290.78 -213.40,280.79 -196.01,275.50 -192.95,285.49"/>
    <poly id="300381816" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-192.95,285.49 -176.29,280.43 -179.35,270.43 -196.01,275.50 -192.95,285.49"/>
    <poly id="300381817" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-327.28,415.44 -326.43,415.21 -328.27,408.57 -315.47,404.90 -309.35,425.69 -324.76,428.33 -327.28,415.44"/>
    <poly id="300383352" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-186.27,519.27 -173.84,519.49 -174.02,530.17 -186.46,529.96 -186.27,519.27"/>
    <poly id="300383353" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-298.66,489.76 -298.69,487.37 -299.80,487.38 -299.93,475.40 -310.94,475.52 -310.80,488.89 -309.83,488.87 -309.82,489.87 -298.66,489.76"/>
    <poly id="300383354" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-216.95,555.31 -228.64,555.08 -228.33,539.70 -216.63,539.94 -216.95,555.31"/>
    <poly id="300383355" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-310.94,475.52 -310.96,473.06 -310.37,473.06 -310.56,454.79 -299.55,454.68 -299.35,474.09 -299.94,474.09 -299.93,475.40 -310.94,475.52"/>
    <poly id="300383356" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-216.90,526.40 -228.24,526.67 -228.31,523.67 -228.58,512.60 -217.24,512.34 -216.97,523.60 -216.90,526.40"/>
    <poly id="300383357" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-217.24,512.34 -228.58,512.60 -228.93,497.88 -217.59,497.61 -217.24,512.34"/>
    <poly id="300383359" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-228.93,497.88 -229.27,483.67 -217.93,483.39 -217.59,497.61 -228.93,497.88"/>
    <poly id="300383360" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-217.93,483.39 -229.27,483.67 -229.61,469.75 -228.55,469.98 -218.38,469.23 -217.93,483.39"/>
    <poly id="300383361" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-229.58,455.93 -219.40,455.19 -220.53,439.75 -230.70,440.49 -229.58,455.93"/>
    <poly id="300383362" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-299.61,541.41 -299.47,555.03 -309.64,555.14 -309.79,541.52 -299.61,541.41"/>
    <poly id="300383363" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-186.46,529.96 -186.27,519.27 -186.25,517.87 -197.31,517.68 -197.83,547.80 -186.77,547.99 -186.46,529.96"/>
    <poly id="300383364" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-279.05,445.72 -278.86,446.84 -264.35,444.20 -266.38,433.15 -280.88,435.79 -279.05,445.72"/>
    <poly id="300383365" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-309.42,528.22 -309.62,509.01 -298.46,508.90 -298.26,528.11 -299.75,528.12 -309.42,528.22"/>
    <poly id="300383366" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-264.35,444.20 -250.25,441.62 -250.44,440.60 -252.27,430.59 -266.38,433.15 -264.35,444.20"/>
    <poly id="300383367" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-309.62,509.01 -298.46,508.90 -298.66,489.76 -309.82,489.87 -309.62,509.01"/>
    <poly id="300383368" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-252.27,430.59 -250.44,440.60 -236.39,438.04 -238.22,428.03 -252.27,430.59"/>
    <poly id="300384664" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-489.77,492.25 -492.39,492.56 -491.52,499.69 -503.19,501.09 -501.48,515.26 -487.20,513.54 -489.77,492.25"/>
    <poly id="300384665" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-501.48,515.26 -503.19,501.09 -518.28,502.91 -517.50,509.36 -522.09,509.92 -521.15,517.63 -501.48,515.26"/>
    <poly id="300384666" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-474.76,497.55 -484.88,498.77 -485.73,491.77 -489.77,492.25 -487.20,513.54 -473.03,511.85 -474.76,497.55"/>
    <poly id="300384667" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-476.23,537.29 -464.70,535.97 -465.85,525.95 -477.38,527.27 -476.23,537.29"/>
    <poly id="300384668" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-444.33,509.27 -444.28,502.72 -444.48,488.72 -432.94,488.64 -432.79,509.19 -444.33,509.27"/>
    <poly id="300384671" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-151.02,433.68 -159.23,432.01 -161.14,441.37 -156.02,442.41 -156.22,443.40 -158.74,442.89 -160.51,451.53 -154.91,452.68 -155.10,453.60 -158.18,452.98 -158.55,454.83 -159.85,454.57 -160.42,457.36 -159.12,457.63 -160.10,462.43 -154.52,463.57 -154.72,464.51 -157.22,464.00 -159.09,473.14 -154.29,474.10 -154.46,474.94 -156.75,474.47 -158.63,483.63 -155.37,484.30 -147.41,485.90 -147.19,489.15 -146.85,494.42 -141.61,494.08 -142.22,484.92 -141.40,484.87 -141.79,478.99 -142.61,479.05 -142.93,474.13 -142.12,474.08 -142.44,469.17 -143.26,469.22 -143.58,464.31 -142.77,464.26 -143.37,455.19 -144.18,455.24 -144.94,443.79 -144.12,443.74 -144.46,438.62 -145.28,438.67 -146.24,424.08 -145.43,424.03 -145.74,419.30 -151.95,419.71 -151.02,433.68"/>
    <poly id="300424538" type="building" color="255,230,230" fill="1" layer="-1.00" shape="523.36,618.37 528.34,614.09 520.85,605.41 515.86,609.69 523.36,618.37"/>
    <poly id="300424539" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-388.96,661.24 -389.66,668.68 -373.68,670.17 -371.07,658.23 -370.60,655.67 -371.52,655.68 -370.89,652.50 -388.96,661.24"/>
    <poly id="300424540" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-388.57,598.11 -376.69,599.39 -376.37,595.06 -376.77,587.66 -387.49,586.57 -388.57,598.11"/>
    <poly id="300424541" type="building" color="255,230,230" fill="1" layer="-1.00" shape="711.56,673.46 715.63,680.03 722.86,675.56 725.50,673.92 721.42,667.37 711.56,673.46"/>
    <poly id="300424542" type="building" color="255,230,230" fill="1" layer="-1.00" shape="470.55,483.58 441.05,449.05 465.46,428.32 468.92,425.37 476.66,434.43 484.49,443.59 481.05,446.50 494.98,462.81 470.55,483.58"/>
    <poly id="300424542#1" type="shop" color="237,199,255" fill="1" layer="-1.00" shape="470.55,483.58 441.05,449.05 465.46,428.32 468.92,425.37 476.66,434.43 484.49,443.59 481.05,446.50 494.98,462.81 470.55,483.58"/>
    <poly id="303154251" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="18.06,-42.82 21.18,-47.21 22.92,-45.84 25.44,-43.86 27.47,-42.27 33.41,-43.07 33.03,-49.34 29.93,-51.84 33.11,-56.09 36.86,-61.08 42.37,-61.71 61.12,-85.20 64.17,-89.31 -79.18,-200.66 -66.36,-218.92 -66.79,-257.60 -66.78,-259.15 -113.84,-266.27 -170.79,-191.84 -120.47,-151.72 18.06,-42.82"/>
    <poly id="303154251#1" type="residential" color="235,235,227" fill="1" layer="-3.00" shape="18.06,-42.82 21.18,-47.21 22.92,-45.84 25.44,-43.86 27.47,-42.27 33.41,-43.07 33.03,-49.34 29.93,-51.84 33.11,-56.09 36.86,-61.08 42.37,-61.71 61.12,-85.20 64.17,-89.31 -79.18,-200.66 -66.36,-218.92 -66.79,-257.60 -66.78,-259.15 -113.84,-266.27 -170.79,-191.84 -120.47,-151.72 18.06,-42.82"/>
    <poly id="303154252" type="building" color="255,230,230" fill="1" layer="-1.00" shape="9.47,-94.03 18.61,-95.09 18.83,-93.14 9.70,-92.07 9.47,-94.03"/>
    <poly id="303619259" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-504.24,553.06 -504.90,546.82 -500.02,546.31 -499.37,552.56 -504.24,553.06"/>
    <poly id="311663324" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-441.32,-33.83 -462.52,-27.76 -465.56,-29.31 -464.33,-32.13 -468.73,-34.29 -448.39,-40.70 -444.72,-38.64 -445.96,-36.24 -441.32,-33.83"/>
    <poly id="311663325" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-431.53,-36.55 -435.73,-38.70 -434.60,-41.00 -438.86,-43.58 -360.21,-66.52 -356.64,-64.47 -357.99,-62.27 -353.79,-60.21 -355.04,-59.36 -431.53,-36.55"/>
    <poly id="314929843" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-429.67,66.11 -438.04,38.48 -406.36,28.92 -406.01,30.09 -401.81,28.82 -397.62,27.56 -397.97,26.39 -368.88,17.63 -363.15,36.54 -362.58,38.41 -362.06,40.11 -360.50,45.27 -389.59,54.03 -389.91,52.98 -398.30,55.51 -397.98,56.55 -429.67,66.11"/>
    <poly id="317978745" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-768.60,-424.59 -789.40,-435.34 -795.18,-441.52 -795.21,-446.51 -793.69,-450.57 -789.86,-453.92 -785.17,-454.37 -778.80,-451.83 -517.69,-326.37 -514.86,-323.18 -515.26,-320.05 -516.91,-318.48 -519.82,-317.74 -523.36,-317.81 -526.08,-318.83 -768.60,-424.59"/>
    <poly id="317978748" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="-808.24,-427.95 -802.50,-440.03 -795.63,-452.02 -791.64,-456.15 -785.76,-457.18 -778.79,-455.17 -729.94,-430.32 -644.19,-388.79 -544.46,-341.13 -507.25,-323.12 -506.05,-320.83 -505.84,-318.34 -506.60,-316.23 -507.78,-314.68 -513.45,-313.00 -520.34,-313.00 -561.25,-329.56 -625.98,-355.68 -629.45,-347.28 -808.24,-427.95"/>
    <poly id="317978749" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-423.49,-288.26 -442.52,-299.65 -468.04,-314.22 -507.55,-336.62 -552.65,-360.35 -614.98,-391.66 -654.16,-410.63 -709.09,-436.73 -745.12,-453.47 -783.42,-471.97 -783.31,-469.91 -782.70,-468.16 -781.32,-466.50 -763.01,-458.14 -672.00,-414.58 -606.43,-382.99 -540.44,-349.14 -491.26,-322.70 -478.94,-316.10 -442.69,-295.05 -426.66,-285.72 -425.39,-285.85 -423.49,-288.26"/>
    <poly id="321016136" type="building" color="255,230,230" fill="1" layer="-1.00" shape="478.04,8.65 472.93,10.32 449.77,-59.98 454.88,-61.66 465.82,-28.46 478.04,8.65"/>
    <poly id="323893120" type="leisure" color="207,245,201" fill="0" layer="-2.00" shape="374.85,-174.05 360.15,-217.53"/>
    <poly id="323893120#1" type="sport" color="79,230,125" fill="0" layer="-2.00" shape="374.85,-174.05 360.15,-217.53"/>
    <poly id="323893121" type="leisure" color="207,245,201" fill="0" layer="-2.00" shape="365.95,-188.79 356.76,-216.49"/>
    <poly id="323893121#1" type="sport" color="79,230,125" fill="0" layer="-2.00" shape="365.95,-188.79 356.76,-216.49"/>
    <poly id="323893122" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="378.81,-164.18 487.95,-200.63 497.14,-207.02 501.39,-216.25 502.16,-228.61 499.77,-241.54 495.37,-251.28 486.35,-262.14 475.36,-267.52 468.14,-267.95 357.50,-231.57 349.59,-226.84 345.97,-219.90 345.03,-210.06 346.13,-197.71 348.96,-185.93 353.20,-177.63 358.72,-171.92 364.96,-167.23 371.89,-164.69 378.81,-164.18"/>
    <poly id="323893122#1" type="sport" color="79,230,125" fill="1" layer="-2.00" shape="378.81,-164.18 487.95,-200.63 497.14,-207.02 501.39,-216.25 502.16,-228.61 499.77,-241.54 495.37,-251.28 486.35,-262.14 475.36,-267.52 468.14,-267.95 357.50,-231.57 349.59,-226.84 345.97,-219.90 345.03,-210.06 346.13,-197.71 348.96,-185.93 353.20,-177.63 358.72,-171.92 364.96,-167.23 371.89,-164.69 378.81,-164.18"/>
    <poly id="323893123" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="355.32,-216.03 356.76,-216.49 360.15,-217.53 361.85,-218.07 359.31,-226.19 352.78,-224.15 355.32,-216.03"/>
    <poly id="323893123#1" type="sport" color="79,230,125" fill="1" layer="-2.00" shape="355.32,-216.03 356.76,-216.49 360.15,-217.53 361.85,-218.07 359.31,-226.19 352.78,-224.15 355.32,-216.03"/>
    <poly id="32686241" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-1.95,392.61 -11.28,362.54 -16.15,364.04 -17.68,359.11 -18.55,356.32 -13.58,354.79 -14.98,350.27 13.47,341.50 20.40,363.86 25.30,379.67 27.39,386.40 22.84,387.80 4.17,393.56 3.37,390.97 -1.95,392.61"/>
    <poly id="32686241#1" type="shop" color="237,199,255" fill="1" layer="-1.00" shape="-1.95,392.61 -11.28,362.54 -16.15,364.04 -17.68,359.11 -18.55,356.32 -13.58,354.79 -14.98,350.27 13.47,341.50 20.40,363.86 25.30,379.67 27.39,386.40 22.84,387.80 4.17,393.56 3.37,390.97 -1.95,392.61"/>
    <poly id="329896433" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="348.19,644.34 364.00,631.96 333.23,592.89 317.43,605.27 348.19,644.34"/>
    <poly id="329896433#1" type="sport" color="79,230,125" fill="1" layer="-2.00" shape="348.19,644.34 364.00,631.96 333.23,592.89 317.43,605.27 348.19,644.34"/>
    <poly id="329896434" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="372.85,497.72 376.70,494.42 469.04,601.18 465.20,604.48 372.85,497.72"/>
    <poly id="329896435" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="381.70,489.44 385.59,486.13 478.48,595.00 474.59,598.30 381.70,489.44"/>
    <poly id="329896436" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="358.18,491.00 351.42,485.90 340.58,481.54 331.62,499.18 322.92,513.38 311.56,526.87 300.21,539.09 294.62,544.66 297.27,547.98 362.67,495.77 358.18,491.00"/>
    <poly id="329896438" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="363.87,496.61 261.39,577.75 259.80,574.98 211.92,608.57 180.59,631.87 163.16,647.74 202.98,695.19 257.46,677.13 305.94,674.83 312.10,672.18 328.89,671.11 336.57,673.31 408.31,670.20 468.72,622.72 398.61,534.20 363.87,496.61"/>
    <poly id="329896438#1" type="sport" color="79,230,125" fill="1" layer="-2.00" shape="363.87,496.61 261.39,577.75 259.80,574.98 211.92,608.57 180.59,631.87 163.16,647.74 202.98,695.19 257.46,677.13 305.94,674.83 312.10,672.18 328.89,671.11 336.57,673.31 408.31,670.20 468.72,622.72 398.61,534.20 363.87,496.61"/>
    <poly id="330498854" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="233.26,-269.11 233.39,-284.54 193.98,-279.50 198.71,-266.99 233.26,-269.11"/>
    <poly id="330498855" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-141.43,-174.54 -144.21,-171.09 -125.61,-156.20 -122.84,-159.65 -141.43,-174.54"/>
    <poly id="330498856" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-143.53,-178.04 -147.37,-181.01 -134.99,-196.92 -131.15,-193.95 -143.53,-178.04"/>
    <poly id="330498857" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="48.18,-28.76 69.94,-35.26 69.45,-37.02 72.18,-42.92 46.36,-35.09 48.18,-28.76"/>
    <poly id="331127265" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="61.01,436.84 55.70,417.92 106.32,403.77 111.64,422.70 61.01,436.84"/>
    <poly id="331445019" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="189.96,451.89 197.98,449.65 188.98,417.64 180.96,419.88 189.96,451.89"/>
    <poly id="332561141" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-135.27,412.44 -138.93,413.57 -138.88,412.67 -139.43,412.67 -144.53,414.21 -144.64,413.41 -146.13,413.49 -146.27,411.21 -170.05,419.35 -177.20,394.39 -201.13,310.88 -163.85,298.68 -162.28,304.04 -160.26,310.88 -161.68,311.29 -162.89,311.64 -161.54,324.75 -160.89,324.88 -135.27,412.44"/>
    <poly id="333185852" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-535.38,41.39 -538.62,37.69 -536.91,36.19 -540.26,32.40 -532.02,30.01 -529.25,30.09 -527.06,31.77 -526.38,33.26 -526.06,35.01 -526.52,37.59 -528.67,39.45 -535.38,41.39"/>
    <poly id="333185853" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-566.04,2.58 -570.32,0.19 -569.11,-1.96 -573.45,-4.40 -544.34,-12.97 -541.67,-12.87 -539.92,-11.51 -539.23,-10.48 -538.99,-8.90 -539.09,-7.51 -540.11,-5.89 -541.71,-4.69 -566.04,2.58"/>
    <poly id="333185854" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-606.38,-59.40 -612.49,-63.38 -596.60,-87.64 -590.48,-83.66 -606.38,-59.40"/>
    <poly id="333185856" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-560.03,121.08 -519.22,109.23 -525.90,86.34 -566.71,98.18 -560.03,121.08"/>
    <poly id="340923387" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-83.83,509.26 -84.48,522.16 -73.11,522.73 -72.46,509.83 -83.83,509.26"/>
    <poly id="341130170" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-373.68,670.17 -343.39,671.85 -342.78,660.20 -371.07,658.23 -373.68,670.17"/>
    <poly id="349277003" type="water" color="181,209,209" fill="0" layer="-4.00" shape="567.04,-196.64 558.44,-194.24"/>
    <poly id="350672965" type="building" color="255,230,230" fill="1" layer="-1.00" shape="200.55,446.83 192.43,418.01 190.59,418.52 198.66,447.38 200.55,446.83"/>
    <poly id="350672966" type="building" color="255,230,230" fill="1" layer="-1.00" shape="214.36,449.58 216.79,448.90 213.92,437.87 211.28,438.56 211.74,440.27 214.36,449.58"/>
    <poly id="351704758" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-161.64,-334.71 294.57,-326.88 295.32,-370.11 -160.89,-377.94 -161.64,-334.71"/>
    <poly id="354625083" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="217.96,450.41 242.68,443.81 239.62,432.42 214.90,439.04 217.96,450.41"/>
    <poly id="354625084" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="290.85,455.76 289.64,451.44 312.68,445.05 313.89,449.36 290.85,455.76"/>
    <poly id="354625086" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="251.72,527.63 248.65,523.06 261.02,513.91 270.38,506.12 283.93,492.64 288.38,495.99 277.67,507.03 265.28,517.52 251.72,527.63"/>
    <poly id="354625089" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="320.68,443.11 323.03,439.28 324.59,434.34 325.63,427.50 325.22,424.43 322.04,422.23 310.92,424.31 314.27,440.12 320.68,443.11"/>
    <poly id="356259124" type="shop" color="237,199,255" fill="1" layer="-1.00" shape="221.93,337.66 238.94,333.11 237.50,327.84 220.57,332.61 221.93,337.66"/>
    <poly id="361151452" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-451.53,217.36 -449.85,216.94 -452.57,206.32 -454.25,206.76 -451.53,217.36"/>
    <poly id="361151462" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-430.66,161.21 -431.29,158.62 -433.86,159.25 -433.22,161.84 -430.66,161.21"/>
    <poly id="361151476" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-430.82,153.70 -436.01,154.96 -434.80,159.90 -421.17,215.41 -419.54,215.01 -432.19,163.47 -428.63,162.60 -430.82,153.70"/>
    <poly id="361151490" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-432.41,160.96 -432.16,160.89 -432.52,159.41 -432.78,159.47 -432.41,160.96"/>
    <poly id="361151509" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-583.07,-108.35 -581.44,-110.76 -583.52,-112.16 -585.16,-109.74 -607.10,-124.45 -618.32,-131.83 -615.72,-137.08 -612.18,-135.34 -610.79,-138.16 -611.87,-146.34 -610.14,-145.40 -587.56,-180.49 -570.00,-207.77 -518.70,-222.84 -540.03,-196.35 -546.72,-187.74 -549.39,-183.03 -550.40,-177.29 -550.90,-170.71 -551.01,-156.13 -545.03,-151.85 -564.64,-120.30 -549.55,-110.00 -559.13,-108.59 -565.57,-107.37 -572.14,-104.27 -573.47,-103.54 -575.20,-103.49 -578.07,-104.99 -583.07,-108.35"/>
    <poly id="361151511" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-689.79,-146.41 -689.67,-155.40 -685.97,-155.36 -685.92,-158.59 -689.44,-164.85 -684.65,-164.79 -684.55,-171.84 -684.56,-180.27 -685.41,-187.14 -686.34,-191.89 -686.13,-193.02 -685.56,-193.72 -684.52,-194.22 -682.74,-195.00 -679.82,-196.83 -677.37,-198.99 -673.38,-203.48 -670.27,-206.38 -666.84,-209.25 -661.39,-211.93 -655.14,-215.31 -650.18,-220.24 -649.14,-224.84 -649.13,-230.21 -647.12,-233.22 -643.98,-235.36 -641.87,-236.56 -637.54,-240.45 -634.56,-245.59 -633.96,-249.10 -633.88,-253.02 -633.50,-253.66 -632.48,-253.88 -614.92,-254.40 -591.80,-255.41 -581.61,-256.39 -570.02,-258.17 -560.05,-260.41 -548.27,-263.87 -534.59,-268.53 -534.76,-267.57 -551.50,-242.00 -571.52,-210.45 -592.93,-177.54 -610.51,-149.59 -614.18,-151.30 -616.12,-148.21 -615.36,-140.50 -618.18,-141.54 -621.95,-133.90 -631.00,-138.04 -639.69,-141.18 -649.26,-143.66 -657.25,-145.39 -666.49,-146.41 -689.79,-146.41"/>
    <poly id="361163237" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-478.24,117.95 -458.20,111.88 -461.61,100.70 -462.81,101.06 -467.11,102.36 -470.26,92.02 -471.04,89.51 -480.75,92.46 -479.98,94.98 -476.83,105.31 -481.65,106.78 -478.24,117.95"/>
    <poly id="361163238" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-389.57,285.65 -389.02,285.49 -393.16,271.39 -392.30,271.14 -393.26,267.85 -394.12,268.10 -397.02,258.27 -396.15,258.00 -397.17,254.53 -398.04,254.78 -402.63,256.12 -405.22,256.88 -410.74,258.49 -401.72,289.20 -400.46,288.83 -389.57,285.65"/>
    <poly id="361163240" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-361.52,293.73 -357.69,292.61 -359.74,285.65 -356.09,284.58 -353.16,286.66 -339.30,282.63 -333.01,271.28 -335.26,263.58 -334.32,263.31 -337.05,254.04 -339.32,254.70 -340.30,251.34 -338.71,250.87 -340.32,245.40 -358.17,250.62 -366.90,253.16 -369.12,251.68 -373.34,252.91 -376.32,257.47 -373.40,267.40 -374.90,267.85 -373.81,271.58 -372.30,271.13 -371.78,272.88 -370.09,278.69 -367.24,281.21 -366.40,284.05 -364.52,283.50 -361.52,293.73"/>
    <poly id="361163241" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-572.65,-27.38 -571.42,-23.30 -580.54,-20.59 -581.76,-24.67 -572.65,-27.38"/>
    <poly id="361168865" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-506.82,132.14 -505.93,135.10 -509.46,136.15 -510.35,133.19 -506.82,132.14"/>
    <poly id="361168866" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-550.51,147.08 -545.25,144.17 -539.18,140.56 -533.51,138.47 -503.50,129.88 -501.94,135.07 -546.16,148.21 -547.69,148.10 -549.27,147.82 -550.51,147.08"/>
    <poly id="361169193" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-580.04,37.26 -579.49,37.46 -578.92,37.57 -578.34,37.58 -577.76,37.51 -577.20,37.35 -576.67,37.10 -576.19,36.77 -575.77,36.37 -575.41,35.91 -575.86,34.36 -578.18,35.04 -580.50,35.72 -580.04,37.26"/>
    <poly id="362152669" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-412.86,273.67 -415.10,262.04 -416.90,262.38 -414.66,274.02 -412.86,273.67"/>
    <poly id="362152673" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-426.04,210.30 -423.37,221.92 -425.20,222.35 -427.87,210.72 -426.04,210.30"/>
    <poly id="362152674" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-411.91,288.30 -414.20,276.43 -412.39,276.08 -410.11,287.96 -411.91,288.30"/>
    <poly id="362152675" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-420.57,243.28 -421.91,236.36 -420.10,236.02 -418.78,242.93 -420.57,243.28"/>
    <poly id="362152676" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-429.48,195.35 -426.61,207.79 -428.44,208.21 -431.31,195.77 -429.48,195.35"/>
    <poly id="362152680" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-434.98,179.79 -433.14,179.36 -436.08,166.63 -437.91,167.04 -434.98,179.79"/>
    <poly id="362152682" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-418.95,251.74 -417.14,251.39 -418.23,245.76 -420.03,246.11 -418.95,251.74"/>
    <poly id="362152688" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-432.47,182.31 -430.08,192.70 -431.91,193.11 -434.39,182.37 -432.55,181.95 -432.47,182.31"/>
    <poly id="362152734" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-428.50,233.60 -430.38,225.40 -431.45,225.64 -429.58,233.84 -428.50,233.60"/>
    <poly id="362152734#1" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-428.50,233.60 -430.38,225.40 -431.45,225.64 -429.58,233.84 -428.50,233.60"/>
    <poly id="362152744" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-411.47,290.56 -409.68,290.21 -410.11,287.96 -411.91,288.30 -411.47,290.56"/>
    <poly id="362152745" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-423.37,221.92 -422.78,224.47 -424.61,224.89 -425.20,222.35 -423.37,221.92"/>
    <poly id="362152747" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-415.10,262.04 -415.61,259.39 -417.41,259.74 -416.90,262.38 -415.10,262.04"/>
    <poly id="362152748" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-433.14,179.36 -432.55,181.95 -434.39,182.37 -434.98,179.79 -433.14,179.36"/>
    <poly id="362152749" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-437.91,167.04 -438.44,164.74 -436.60,164.32 -436.08,166.63 -437.91,167.04"/>
    <poly id="362152751" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-426.61,207.79 -426.04,210.30 -427.87,210.72 -428.44,208.21 -426.61,207.79"/>
    <poly id="362152752" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-412.39,276.08 -412.86,273.67 -414.66,274.02 -414.20,276.43 -412.39,276.08"/>
    <poly id="362152754" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-430.08,192.70 -429.48,195.35 -431.31,195.77 -431.91,193.11 -430.08,192.70"/>
    <poly id="362152755" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-420.03,246.11 -420.57,243.28 -418.78,242.93 -418.23,245.76 -420.03,246.11"/>
    <poly id="362152757" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-411.96,259.84 -410.74,258.49 -401.72,289.20 -405.89,291.39 -411.96,259.84"/>
    <poly id="362152760" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-406.71,633.75 -402.85,598.64 -402.17,596.34 -400.36,590.21 -399.66,585.33 -399.47,583.46 -400.26,582.59 -401.05,582.29 -407.44,581.57 -407.95,581.67 -408.49,581.91 -408.78,582.63 -409.63,589.40 -409.25,595.13 -409.19,597.17 -413.23,633.11 -406.71,633.75"/>
    <poly id="362152761" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-405.52,567.75 -400.95,567.77 -400.74,557.02 -400.34,470.13 -400.56,458.34 -405.04,458.40 -404.96,464.98 -403.50,464.96 -403.44,470.08 -403.47,476.16 -404.93,476.15 -405.30,557.00 -405.52,567.75"/>
    <poly id="362290610" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-548.06,-29.41 -548.20,-29.47 -548.29,-29.59 -548.31,-29.73 -548.24,-29.87 -548.10,-29.94 -547.96,-29.93 -547.84,-29.85 -547.78,-29.70 -547.81,-29.56 -547.92,-29.45 -548.06,-29.41"/>
    <poly id="362290614" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-547.58,-27.89 -547.72,-27.95 -547.82,-28.06 -547.84,-28.21 -547.76,-28.35 -547.63,-28.42 -547.49,-28.41 -547.36,-28.32 -547.31,-28.18 -547.34,-28.04 -547.44,-27.93 -547.58,-27.89"/>
    <poly id="362290654" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-501.94,135.07 -503.50,129.88 -501.42,129.27 -499.86,134.46 -501.94,135.07"/>
    <poly id="362290810" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-510.91,91.13 -509.10,91.80 -509.45,92.75 -511.27,92.07 -510.91,91.13"/>
    <poly id="362290812" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-545.49,82.75 -553.49,55.94 -569.06,60.55 -561.06,87.37 -545.49,82.75"/>
    <poly id="362290821" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-555.56,-43.20 -549.07,-45.12 -549.78,-47.51 -556.27,-45.57 -555.56,-43.20"/>
    <poly id="362290826" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-545.49,82.75 -537.32,80.32 -545.17,54.01 -545.32,53.51 -553.49,55.94 -545.49,82.75"/>
    <poly id="362290830" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-491.46,70.81 -491.83,69.67 -492.16,69.78 -492.97,70.04 -492.71,70.81 -492.59,71.17 -491.46,70.81"/>
    <poly id="362290831" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-501.56,79.93 -500.82,78.99 -501.09,78.78 -501.75,78.25 -502.50,79.18 -501.83,79.72 -501.56,79.93"/>
    <poly id="362290836" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-612.53,57.62 -603.87,86.66 -613.52,89.52 -619.65,91.33 -621.48,85.19 -615.35,83.38 -622.17,60.48 -612.53,57.62"/>
    <poly id="362290897" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-615.90,-119.29 -610.60,-120.44 -578.57,-99.15 -581.03,-96.51 -588.88,-101.56 -615.90,-119.29"/>
    <poly id="362290898" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-561.45,-83.07 -559.61,-85.87 -559.77,-86.64 -570.44,-93.62 -574.02,-91.17 -561.45,-83.07"/>
    <poly id="362290900" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-546.58,138.73 -551.80,140.25 -551.28,141.97 -548.85,140.98 -547.79,140.42 -546.45,139.29 -546.58,138.73"/>
    <poly id="362290905" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-540.30,-69.26 -538.89,-71.40 -538.90,-72.07 -539.12,-72.84 -539.57,-73.46 -540.18,-73.98 -557.03,-85.02 -557.91,-84.95 -559.83,-82.02 -540.30,-69.26"/>
    <poly id="364975909" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-92.71,62.32 -92.89,62.54 -93.14,62.69 -93.43,62.72 -93.71,62.64 -93.93,62.47 -94.08,62.21 -94.11,61.93 -94.03,61.65 -93.85,61.42 -93.60,61.28 -93.31,61.24 -93.04,61.33 -92.81,61.50 -92.67,61.75 -92.63,62.04 -92.71,62.32"/>
    <poly id="364975910" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-100.12,64.43 -100.29,64.65 -100.54,64.80 -100.83,64.83 -101.11,64.76 -101.34,64.57 -101.48,64.33 -101.51,64.04 -101.44,63.76 -101.26,63.53 -101.01,63.39 -100.72,63.35 -100.44,63.43 -100.21,63.62 -100.07,63.86 -100.04,64.15 -100.12,64.43"/>
    <poly id="364975911" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-123.02,71.11 -123.20,71.34 -123.45,71.48 -123.74,71.52 -124.02,71.44 -124.25,71.27 -124.39,71.01 -124.42,70.72 -124.34,70.44 -124.17,70.22 -123.92,70.07 -123.63,70.04 -123.35,70.12 -123.12,70.30 -122.98,70.54 -122.94,70.83 -123.02,71.11"/>
    <poly id="364975912" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-18.51,40.51 -18.68,40.74 -18.94,40.88 -19.22,40.91 -19.50,40.84 -19.73,40.66 -19.87,40.41 -19.91,40.12 -19.83,39.85 -19.65,39.62 -19.40,39.48 -19.11,39.45 -18.83,39.52 -18.60,39.70 -18.46,39.95 -18.43,40.23 -18.51,40.51"/>
    <poly id="364975913" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-52.06,50.15 -52.23,50.39 -52.49,50.52 -52.77,50.56 -53.05,50.48 -53.28,50.30 -53.42,50.05 -53.46,49.76 -53.38,49.48 -53.20,49.26 -52.95,49.12 -52.66,49.09 -52.38,49.16 -52.15,49.34 -52.01,49.60 -51.98,49.87 -52.06,50.15"/>
    <poly id="364975914" type="building" color="255,230,230" fill="1" layer="-1.00" shape="3.70,33.90 3.52,34.12 3.27,34.26 2.98,34.29 2.70,34.21 2.48,34.04 2.34,33.78 2.30,33.51 2.38,33.23 2.56,32.99 2.80,32.86 3.10,32.82 3.38,32.90 3.60,33.07 3.74,33.33 3.78,33.62 3.70,33.90"/>
    <poly id="364975915" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-59.52,52.50 -59.70,52.73 -59.95,52.87 -60.23,52.90 -60.51,52.83 -60.74,52.65 -60.88,52.40 -60.92,52.11 -60.84,51.83 -60.66,51.60 -60.41,51.47 -60.12,51.43 -59.85,51.51 -59.62,51.69 -59.47,51.94 -59.44,52.22 -59.52,52.50"/>
    <poly id="364975916" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-36.72,46.05 -36.90,46.28 -37.15,46.42 -37.44,46.45 -37.72,46.38 -37.94,46.20 -38.09,45.95 -38.12,45.66 -38.04,45.38 -37.86,45.15 -37.61,45.02 -37.32,44.98 -37.05,45.06 -36.82,45.24 -36.68,45.49 -36.64,45.77 -36.72,46.05"/>
    <poly id="364975917" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-44.36,48.22 -44.54,48.45 -44.79,48.59 -45.07,48.62 -45.35,48.55 -45.58,48.37 -45.72,48.11 -45.76,47.83 -45.68,47.55 -45.50,47.32 -45.25,47.19 -44.97,47.15 -44.69,47.23 -44.46,47.40 -44.31,47.66 -44.28,47.94 -44.36,48.22"/>
    <poly id="364975918" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-77.91,57.86 -78.08,58.09 -78.34,58.23 -78.62,58.26 -78.90,58.19 -79.13,58.01 -79.27,57.76 -79.31,57.47 -79.23,57.19 -79.05,56.97 -78.80,56.83 -78.51,56.80 -78.23,56.87 -78.00,57.05 -77.86,57.30 -77.83,57.58 -77.91,57.86"/>
    <poly id="364975919" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-141.36,76.53 -141.54,76.76 -141.78,76.90 -142.07,76.93 -142.35,76.86 -142.58,76.68 -142.72,76.43 -142.75,76.14 -142.68,75.86 -142.50,75.64 -142.25,75.50 -141.96,75.47 -141.68,75.54 -141.46,75.72 -141.32,75.97 -141.28,76.25 -141.36,76.53"/>
    <poly id="364975921" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-85.31,60.15 -85.49,60.37 -85.74,60.52 -86.02,60.55 -86.30,60.48 -86.53,60.29 -86.68,60.05 -86.71,59.76 -86.63,59.48 -86.45,59.26 -86.20,59.11 -85.91,59.07 -85.64,59.15 -85.41,59.34 -85.27,59.58 -85.23,59.87 -85.31,60.15"/>
    <poly id="364975923" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-148.24,78.73 -148.42,78.95 -148.67,79.10 -148.96,79.13 -149.24,79.06 -149.46,78.88 -149.61,78.62 -149.64,78.34 -149.56,78.06 -149.39,77.83 -149.14,77.69 -148.85,77.65 -148.57,77.74 -148.34,77.91 -148.20,78.16 -148.16,78.45 -148.24,78.73"/>
    <poly id="364975925" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-67.09,54.61 -67.27,54.83 -67.53,54.98 -67.81,55.02 -68.09,54.94 -68.32,54.76 -68.46,54.51 -68.49,54.22 -68.41,53.94 -68.24,53.72 -67.99,53.57 -67.70,53.54 -67.42,53.62 -67.19,53.80 -67.05,54.04 -67.01,54.33 -67.09,54.61"/>
    <poly id="364975926" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-11.23,38.23 -11.40,38.45 -11.66,38.60 -11.94,38.64 -12.22,38.55 -12.45,38.37 -12.59,38.13 -12.63,37.84 -12.55,37.56 -12.37,37.34 -12.11,37.19 -11.83,37.16 -11.55,37.23 -11.32,37.41 -11.18,37.66 -11.15,37.95 -11.23,38.23"/>
    <poly id="364975928" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-126.02,72.08 -126.20,72.30 -126.45,72.44 -126.74,72.47 -127.01,72.40 -127.24,72.22 -127.38,71.97 -127.42,71.69 -127.34,71.41 -127.16,71.18 -126.91,71.04 -126.62,71.00 -126.34,71.08 -126.12,71.26 -125.98,71.51 -125.94,71.80 -126.02,72.08"/>
    <poly id="364975930" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-74.50,56.84 -74.67,57.07 -74.93,57.20 -75.21,57.24 -75.49,57.16 -75.72,56.99 -75.86,56.73 -75.90,56.45 -75.82,56.18 -75.64,55.94 -75.39,55.81 -75.10,55.77 -74.82,55.85 -74.59,56.02 -74.45,56.28 -74.42,56.57 -74.50,56.84"/>
    <poly id="364975931" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-107.57,66.59 -107.75,66.82 -108.00,66.96 -108.29,67.00 -108.57,66.92 -108.79,66.74 -108.94,66.49 -108.97,66.20 -108.90,65.93 -108.72,65.70 -108.47,65.56 -108.18,65.52 -107.90,65.61 -107.67,65.78 -107.53,66.03 -107.50,66.32 -107.57,66.59"/>
    <poly id="364975933" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-3.59,36.12 -3.77,36.34 -4.01,36.49 -4.31,36.52 -4.58,36.45 -4.81,36.26 -4.95,36.02 -4.99,35.73 -4.91,35.45 -4.73,35.23 -4.48,35.08 -4.19,35.04 -3.91,35.12 -3.69,35.31 -3.55,35.55 -3.51,35.84 -3.59,36.12"/>
    <poly id="364975935" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-115.39,68.89 -115.56,69.11 -115.82,69.26 -116.10,69.28 -116.38,69.21 -116.61,69.03 -116.75,68.77 -116.79,68.50 -116.71,68.22 -116.53,67.99 -116.28,67.85 -115.99,67.81 -115.71,67.89 -115.48,68.07 -115.34,68.32 -115.31,68.61 -115.39,68.89"/>
    <poly id="364975937" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-25.73,42.69 -25.92,42.91 -26.16,43.04 -26.45,43.08 -26.73,43.00 -26.95,42.83 -27.10,42.57 -27.13,42.30 -27.06,42.02 -26.87,41.78 -26.63,41.65 -26.34,41.61 -26.06,41.69 -25.84,41.86 -25.69,42.12 -25.66,42.41 -25.73,42.69"/>
    <poly id="364975938" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-133.72,74.18 -133.90,74.42 -134.15,74.55 -134.44,74.59 -134.71,74.51 -134.94,74.34 -135.08,74.08 -135.11,73.79 -135.04,73.52 -134.86,73.29 -134.61,73.15 -134.32,73.12 -134.04,73.19 -133.82,73.37 -133.68,73.63 -133.64,73.91 -133.72,74.18"/>
    <poly id="364975940" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-29.14,43.52 -29.32,43.76 -29.57,43.89 -29.86,43.93 -30.14,43.85 -30.36,43.68 -30.50,43.42 -30.54,43.13 -30.47,42.87 -30.28,42.63 -30.04,42.50 -29.75,42.46 -29.47,42.54 -29.24,42.71 -29.10,42.97 -29.07,43.25 -29.14,43.52"/>
    <poly id="364975945" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-466.81,-301.79 -422.08,-274.23 -397.59,-259.44 -388.91,-253.45 -385.17,-248.02 -381.47,-236.38 -381.53,-233.55 -382.98,-232.61 -386.68,-233.66 -390.25,-238.01 -394.70,-245.19 -399.51,-250.44 -406.55,-255.92 -433.78,-270.39 -462.15,-292.52 -475.17,-301.43 -482.40,-306.80 -486.88,-308.94 -488.48,-310.98 -488.49,-312.56 -486.76,-313.23 -483.70,-312.43 -480.80,-310.22 -466.81,-301.79"/>
    <poly id="364975950" type="building" color="255,230,230" fill="0" layer="-1.00" shape="7.06,-9.40 52.40,-22.07 135.54,-46.18"/>
    <poly id="364975967" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-412.93,-118.68 -382.09,-127.53 -384.11,-134.54 -414.95,-125.70 -412.93,-118.68"/>
    <poly id="364975971" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-502.50,-312.13 -494.05,-314.43 -489.52,-315.72 -487.94,-315.73 -485.91,-315.38 -469.03,-305.67 -434.26,-285.67 -405.02,-268.57 -385.75,-256.86 -382.43,-245.34 -374.90,-220.60 -374.85,-219.22 -384.06,-221.53 -390.54,-223.44 -398.14,-225.80 -407.25,-229.38 -417.83,-234.10 -423.97,-237.15 -424.29,-238.73 -435.76,-244.59 -442.60,-248.83 -448.95,-253.40 -456.34,-259.36 -463.05,-265.57 -470.39,-273.60 -472.60,-275.93 -473.86,-276.27 -478.88,-282.79 -485.48,-291.03 -490.22,-296.46 -480.59,-300.01 -481.07,-300.65 -481.56,-301.30 -491.49,-297.91 -495.55,-302.58 -500.31,-308.19 -502.64,-311.05 -502.50,-312.13"/>
    <poly id="364975972" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-382.00,-254.83 -372.15,-218.77 -362.61,-216.92 -353.66,-215.51 -344.48,-214.71 -336.79,-214.12 -327.93,-213.80 -318.48,-213.86 -351.95,-235.54 -382.00,-254.83"/>
    <poly id="371288522" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-425.69,-34.66 -419.30,-14.23 -447.00,-6.29 -453.03,-26.70 -466.21,-22.89 -468.03,-19.34 -457.05,20.39 -453.66,23.05 -397.53,6.72 -411.00,-37.74 -425.69,-34.66"/>
    <poly id="372431431" type="building" color="255,230,230" fill="1" layer="-1.00" shape="133.71,459.96 138.51,458.64 136.12,449.98 131.31,451.31 133.71,459.96"/>
    <poly id="375768436" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="387.26,127.83 380.90,107.14 385.23,106.01 412.96,98.79 419.51,100.30 423.68,104.76 432.18,126.89 434.79,133.67 415.82,139.84 413.58,132.36 410.17,120.99 390.67,126.80 387.26,127.83"/>
    <poly id="375768437" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="387.26,127.83 410.17,120.99 413.58,132.36 415.82,139.84 418.64,149.22 395.72,156.05 388.62,132.38 387.26,127.83"/>
    <poly id="37741808" type="building" color="255,230,230" fill="1" layer="-1.00" shape="85.95,525.03 81.48,509.22 85.66,508.04 80.89,491.17 76.72,492.33 75.44,492.70 65.90,458.92 62.66,459.83 62.01,457.55 48.16,461.44 48.80,463.72 41.23,465.84 47.60,488.39 42.40,489.85 45.01,499.11 47.63,508.36 53.89,506.60 55.37,511.85 56.03,514.18 56.97,517.53 57.92,520.88 59.41,526.18 85.95,525.03"/>
    <poly id="377452785" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-84.43,439.67 -87.49,436.43 -119.25,466.26 -116.19,469.50 -84.43,439.67"/>
    <poly id="377452786" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-43.49,223.70 -44.88,219.07 -57.21,222.75 -55.82,227.40 -43.49,223.70"/>
    <poly id="391304178" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-231.96,-16.64 -233.94,-23.21 -222.81,-26.55 -220.83,-19.98 -231.96,-16.64"/>
    <poly id="391437322" type="residential" color="235,235,227" fill="1" layer="-3.00" shape="-503.95,236.63 -455.67,222.62 -468.82,176.86 -483.20,181.19 -489.04,161.91 -536.59,175.73 -531.37,193.63 -534.05,194.40 -527.09,218.27 -510.70,213.52 -503.95,236.63"/>
    <poly id="391437323" type="residential" color="235,235,227" fill="1" layer="-3.00" shape="-552.67,250.65 -571.95,186.27 -606.49,196.53 -587.06,260.77 -552.67,250.65"/>
    <poly id="391437324" type="commercial" color="209,209,204" fill="1" layer="-3.00" shape="-489.04,161.91 -474.67,157.58 -468.82,176.86 -483.20,181.19 -489.04,161.91"/>
    <poly id="391437325" type="residential" color="235,235,227" fill="1" layer="-3.00" shape="-559.45,356.94 -435.83,319.88 -453.29,235.64 -515.92,253.53 -515.59,254.64 -583.47,274.64 -559.45,356.94"/>
    <poly id="391437326" type="residential" color="235,235,227" fill="1" layer="-3.00" shape="-715.42,403.65 -576.19,362.22 -622.94,202.51 -694.10,223.67 -694.67,221.76 -762.90,241.61 -715.42,403.65"/>
    <poly id="391437327" type="commercial" color="209,209,204" fill="1" layer="-3.00" shape="-571.95,186.27 -536.59,175.73 -531.37,193.63 -534.05,194.40 -527.09,218.27 -510.70,213.52 -503.95,236.63 -552.67,250.65 -571.95,186.27"/>
    <poly id="391455391" type="forest" color="140,196,107" fill="1" layer="-3.00" shape="-622.34,791.46 -628.31,851.00 -613.87,851.64 -611.83,826.77 -580.05,829.80 -560.92,830.00 -559.23,819.43 -534.31,804.88 -519.31,713.40 -518.77,693.39 -634.78,691.63 -634.88,693.34 -638.75,693.12 -642.63,692.91 -642.53,691.20 -675.39,690.14 -678.10,724.89 -673.04,725.48 -675.59,741.88 -670.60,742.38 -671.59,751.11 -663.93,751.95 -664.38,756.28 -658.71,756.73 -643.93,747.94 -645.16,716.58 -623.83,715.32 -622.92,701.93 -602.78,707.89 -602.43,716.65 -605.52,729.53 -604.82,740.48 -600.78,760.06 -597.84,769.91 -604.80,800.24 -622.34,791.46"/>
    <poly id="397639849" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-104.29,-48.89 -103.01,-50.54 -105.44,-52.44 -106.73,-50.81 -104.29,-48.89"/>
    <poly id="397639862" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="84.07,158.21 93.55,155.51 95.78,163.25 86.33,166.09 84.07,158.21"/>
    <poly id="399458906" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="111.96,634.66 112.27,628.17 104.80,624.40 104.38,630.90 111.96,634.66"/>
    <poly id="399458907" type="building" color="255,230,230" fill="1" layer="-1.00" shape="98.33,634.06 102.08,628.44 91.24,621.26 87.37,627.06 98.33,634.06"/>
    <poly id="403349969" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-179.37,-292.74 -180.57,-285.50 -175.32,-284.62 -174.12,-291.88 -179.37,-292.74"/>
    <poly id="403349971" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-177.59,-303.47 -179.37,-292.74 -174.12,-291.88 -172.34,-302.60 -177.59,-303.47"/>
    <poly id="403349972" type="building" color="255,230,230" fill="0" layer="-1.00" shape="-175.32,-284.62 -176.70,-276.29 -126.25,-267.99 -121.38,-297.40 -171.83,-305.69"/>
    <poly id="403349976" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-171.83,-305.69 -172.34,-302.60 -174.12,-291.88 -175.32,-284.62 -176.70,-276.29 -126.25,-267.99 -121.38,-297.40 -171.83,-305.69"/>
    <poly id="405742816" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-233.61,-274.20 -246.44,-250.29 -278.88,-273.35 -302.18,-290.86 -326.19,-306.68 -348.21,-319.52 -361.75,-327.49 -365.12,-329.04 -350.48,-333.74 -332.37,-329.52 -313.64,-322.54 -286.90,-306.68 -263.36,-294.18 -233.61,-274.20"/>
    <poly id="405742823" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="-189.96,-276.92 -215.44,-241.65 -237.80,-256.73 -225.57,-283.10 -189.96,-276.92"/>
    <poly id="405742835" type="building" color="255,230,230" fill="1" layer="-1.00" shape="277.43,464.54 282.61,463.09 281.70,459.85 276.52,461.29 277.43,464.54"/>
    <poly id="405747701" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-237.80,-256.73 -215.44,-241.65 -221.82,-231.70 -243.10,-247.67 -237.80,-256.73"/>
    <poly id="412474154" type="shop" color="237,199,255" fill="1" layer="-1.00" shape="220.57,332.61 215.02,313.50 200.58,261.56 184.35,266.24 142.83,278.22 160.13,339.13 162.98,338.32 163.49,340.11 165.69,347.89 177.44,344.77 185.36,372.70 186.49,376.68 195.11,407.08 213.94,401.77 324.16,370.71 328.62,369.46 327.38,365.05 320.01,339.06 318.88,335.09 313.25,315.20 310.96,307.13 304.48,308.96 302.87,309.41 288.87,313.35 284.54,314.57 278.16,316.38 258.74,321.86 257.92,318.96 257.09,316.05 239.06,321.13 239.88,324.04 240.70,326.94 237.50,327.84 238.94,333.11 221.93,337.66 220.57,332.61"/>
    <poly id="414005997" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="765.21,-24.46 762.71,-33.88 680.20,-12.03 682.71,-2.61 765.21,-24.46"/>
    <poly id="414005998" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="761.09,-40.05 758.64,-49.27 659.37,-22.97 661.83,-13.75 761.09,-40.05"/>
    <poly id="414005999" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="747.08,-52.71 744.51,-62.35 652.16,-37.90 654.73,-28.25 747.08,-52.71"/>
    <poly id="414006000" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="752.87,-71.14 750.42,-80.31 646.17,-52.70 648.61,-43.53 752.87,-71.14"/>
    <poly id="414006001" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="736.44,-82.92 733.84,-92.65 639.92,-67.78 642.52,-58.05 736.44,-82.92"/>
    <poly id="414006002" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="744.74,-101.89 742.20,-111.42 633.13,-82.54 635.67,-73.01 744.74,-101.89"/>
    <poly id="414006003" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="740.65,-117.34 738.12,-126.86 639.01,-100.61 640.29,-95.78 633.00,-93.86 634.26,-89.16 740.65,-117.34"/>
    <poly id="416450454" type="building" color="255,230,230" fill="1" layer="-1.00" shape="201.86,470.81 204.83,469.98 203.51,465.25 200.53,466.07 201.86,470.81"/>
    <poly id="416450464" type="residential" color="235,235,227" fill="1" layer="-3.00" shape="529.58,406.04 511.23,419.86 564.93,488.88 463.14,573.06 502.61,616.68 483.02,632.45 448.60,660.15 474.28,690.46 497.88,696.66 514.60,702.65 543.89,713.79 592.13,735.20 633.11,704.86 641.24,698.43 645.17,723.81 648.79,735.51 667.06,739.09 684.52,739.75 692.61,737.98 734.31,713.41 774.04,688.06 765.81,676.31 754.76,660.24 733.58,630.00 710.75,598.07 698.86,582.71 675.15,551.71 653.32,524.16 630.60,501.06 580.78,453.32 574.07,446.72 551.31,428.49 535.01,411.69 529.58,406.04"/>
    <poly id="420068916" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-788.79,-256.51 -782.63,-244.01 -780.23,-238.06 -780.10,-232.78 -780.43,-211.26 -759.11,-221.29 -720.41,-240.07 -710.05,-244.65 -697.91,-248.17 -685.28,-250.71 -666.56,-253.69 -639.81,-256.62 -625.98,-257.02 -596.46,-257.83 -585.29,-258.79 -574.81,-260.34 -563.24,-262.58 -549.93,-266.20 -530.95,-273.28 -506.72,-311.52 -507.78,-314.68 -513.45,-313.00 -520.34,-313.00 -561.25,-329.56 -625.98,-355.68 -629.45,-347.28 -649.28,-295.16 -670.71,-289.28 -724.56,-269.74 -753.50,-265.55 -788.79,-256.51"/>
    <poly id="420068917" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-688.14,-200.90 -690.46,-208.61 -694.85,-218.94 -699.87,-228.63 -707.96,-240.70 -708.11,-241.59 -707.53,-242.17 -703.81,-243.33 -692.21,-246.50 -681.68,-248.68 -662.72,-251.07 -647.88,-252.71 -636.80,-254.10 -637.07,-250.92 -637.59,-248.08 -638.40,-245.63 -640.10,-242.59 -641.99,-240.52 -644.53,-239.18 -647.80,-237.44 -650.83,-235.03 -653.60,-232.16 -656.41,-227.59 -671.77,-209.15 -680.00,-200.67 -683.27,-198.30 -685.51,-197.30 -686.60,-197.40 -687.41,-198.21 -687.98,-199.43 -688.14,-200.90"/>
    <poly id="42121548" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-67.11,627.63 -60.77,628.02 -56.06,628.32 -53.79,628.46 -51.54,628.60 -47.23,628.85 -46.36,628.90 -42.93,629.12 -39.49,629.32 -24.43,630.26 -20.52,630.50 -19.36,611.79 -17.10,611.93 -14.55,612.09 -14.13,605.32 -60.39,602.49 -61.22,615.92 -66.15,615.62 -67.11,627.63"/>
    <poly id="421292374" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-232.37,235.51 -235.94,222.84 -245.61,225.55 -242.05,238.22 -232.37,235.51"/>
    <poly id="421292380" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-234.11,187.19 -222.64,183.86 -218.58,197.72 -230.59,201.21 -232.77,193.74 -234.64,187.34 -234.11,187.19"/>
    <poly id="421292383" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-235.80,233.32 -237.77,226.69 -241.81,227.90 -239.85,234.51 -235.80,233.32"/>
    <poly id="421292386" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-311.86,117.31 -312.19,116.09 -313.39,116.42 -313.06,117.63 -311.86,117.31"/>
    <poly id="422279276" type="shop" color="237,199,255" fill="1" layer="-1.00" shape="53.89,506.60 55.37,511.85 56.03,514.18 56.97,517.53 57.92,520.88 59.41,526.18 85.95,525.03 81.48,509.22 76.72,492.33 75.44,492.70 51.83,499.32 52.79,502.72 53.89,506.60"/>
    <poly id="422279277" type="shop" color="237,199,255" fill="1" layer="-1.00" shape="47.60,488.39 41.23,465.84 48.80,463.72 62.66,459.83 65.90,458.92 75.44,492.70 51.83,499.32 50.77,499.62 49.92,496.61 47.60,488.39"/>
    <poly id="42272062" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-4.04,605.78 -11.51,605.45 -14.13,605.32 -14.55,612.09 -15.90,633.82 -24.62,633.28 -24.43,630.26 -39.49,629.32 -42.93,629.12 -46.36,628.90 -46.66,633.60 -67.36,632.47 -67.99,644.50 -60.17,644.91 -59.93,640.37 -58.17,640.47 -60.33,681.12 -55.79,681.35 -43.77,679.83 -43.79,684.82 -13.26,687.06 -12.67,681.90 -7.08,681.76 -4.04,605.78"/>
    <poly id="424281291" type="building" color="255,230,230" fill="1" layer="-1.00" shape="623.39,-109.05 620.96,-118.26 630.33,-120.73 632.76,-111.53 633.16,-110.01 623.77,-107.60 623.39,-109.05"/>
    <poly id="424281292" type="building" color="255,230,230" fill="1" layer="-1.00" shape="625.03,-140.73 627.39,-131.82 618.02,-129.36 615.66,-138.29 615.23,-139.89 624.59,-142.37 625.03,-140.73"/>
    <poly id="424376965" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="56.03,514.18 50.93,515.60 51.88,518.96 56.97,517.53 56.03,514.18"/>
    <poly id="424376966" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="56.97,517.53 57.92,520.88 52.83,522.31 51.88,518.96 56.97,517.53"/>
    <poly id="424376967" type="building" color="255,230,230" fill="1" layer="-1.00" shape="151.51,568.38 150.89,567.45 149.58,568.33 150.20,569.26 151.51,568.38"/>
    <poly id="424808514" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-178.90,680.01 -184.63,679.66 -179.87,601.65 -173.85,602.02 -177.11,652.38 -178.90,680.01"/>
    <poly id="425722855" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="106.85,327.68 101.82,329.12 102.93,332.94 107.95,331.51 106.85,327.68"/>
    <poly id="425722857" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="101.82,329.12 106.85,327.68 105.75,323.86 100.73,325.30 101.82,329.12"/>
    <poly id="426532224" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-291.82,224.31 -290.20,229.72 -287.40,228.89 -289.02,223.47 -291.82,224.31"/>
    <poly id="426532225" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-289.02,223.47 -287.40,228.89 -284.49,228.03 -286.11,222.61 -289.02,223.47"/>
    <poly id="426532226" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-292.43,230.38 -294.05,224.97 -291.82,224.31 -290.20,229.72 -292.43,230.38"/>
    <poly id="426532227" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-298.31,232.14 -299.93,226.71 -297.11,225.88 -295.50,231.29 -298.31,232.14"/>
    <poly id="426532228" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-295.50,231.29 -297.11,225.88 -294.05,224.97 -292.43,230.38 -295.50,231.29"/>
    <poly id="426619574" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-7.95,701.86 -46.66,699.40 -44.98,696.30 -41.83,691.21 -7.57,693.39 -7.95,701.86"/>
    <poly id="426619575" type="shop" color="237,199,255" fill="1" layer="-1.00" shape="-53.79,628.46 -53.05,616.42 -61.22,615.92 -60.39,602.49 -14.13,605.32 -14.55,612.09 -17.10,611.93 -19.36,611.79 -20.52,630.50 -24.43,630.26 -39.49,629.32 -42.93,629.12 -46.36,628.90 -47.23,628.85 -51.54,628.60 -53.79,628.46"/>
    <poly id="426619576" type="shop" color="237,199,255" fill="1" layer="-1.00" shape="-53.79,628.46 -56.06,628.32 -60.77,628.02 -67.11,627.63 -66.15,615.62 -61.22,615.92 -53.05,616.42 -53.79,628.46"/>
    <poly id="426619578" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-60.77,628.02 -61.02,631.95 -47.48,632.79 -47.23,628.85 -51.54,628.60 -53.79,628.46 -56.06,628.32 -60.77,628.02"/>
    <poly id="426867399" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-172.48,420.18 -170.05,419.35 -146.27,411.21 -146.13,413.49 -145.74,419.30 -145.43,424.03 -146.24,424.08 -145.28,438.67 -144.46,438.62 -144.12,443.74 -144.94,443.79 -144.18,455.24 -143.37,455.19 -142.77,464.26 -143.58,464.31 -143.26,469.22 -142.44,469.17 -142.12,474.08 -142.93,474.13 -142.61,479.05 -141.79,478.99 -141.40,484.87 -142.22,484.92 -141.61,494.08 -146.85,494.42 -167.71,495.79 -167.93,492.30 -168.29,486.59 -172.48,420.18"/>
    <poly id="426867400" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-147.41,485.90 -147.19,489.15 -156.48,489.76 -155.37,484.30 -147.41,485.90"/>
    <poly id="4293729" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="433.30,41.97 437.36,40.64 447.48,37.32 479.90,26.70 483.36,25.57 480.79,17.79 478.54,10.97 472.83,12.83 438.62,-91.05 394.27,-76.53 404.29,-46.12 405.60,-42.12 406.84,-38.35 433.30,41.97"/>
    <poly id="430849348" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="211.67,282.53 214.16,281.82 212.98,277.66 212.48,275.89 211.20,271.39 208.71,272.09 211.67,282.53"/>
    <poly id="430849349" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="216.46,299.43 218.95,298.73 217.75,294.48 217.28,292.85 215.99,288.30 213.50,288.99 216.46,299.43"/>
    <poly id="430849350" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="206.97,265.96 209.46,265.26 208.17,260.72 206.50,254.83 204.01,255.52 206.97,265.96"/>
    <poly id="431443807" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="111.44,322.45 116.41,321.02 115.69,318.54 110.72,319.99 111.44,322.45"/>
    <poly id="431769065" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-212.39,218.92 -214.25,212.54 -221.35,214.61 -219.48,220.99 -212.39,218.92"/>
    <poly id="435930543" type="building" color="255,230,230" fill="1" layer="-1.00" shape="483.09,627.43 485.06,625.80 482.07,622.20 480.10,623.83 483.09,627.43"/>
    <poly id="435931509" type="building" color="255,230,230" fill="1" layer="-1.00" shape="165.69,347.89 163.49,340.11 160.64,340.92 162.84,348.70 165.69,347.89"/>
    <poly id="436433026" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="203.35,597.37 208.52,593.62 229.91,581.82 229.92,582.90 228.46,584.96 205.28,599.94 203.35,597.37"/>
    <poly id="437019932" type="building" color="255,230,230" fill="0" layer="-1.00" shape="-559.44,6.87 -564.95,-12.33 -593.20,-4.03 -619.73,3.08 -619.32,25.71 -617.13,36.80"/>
    <poly id="437019935" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-412.91,-222.45 -372.06,-210.53 -366.94,-193.70 -373.79,-191.97 -378.15,-190.87 -373.77,-176.63 -379.21,-175.00 -384.49,-173.42 -372.46,-132.14 -376.56,-123.69 -378.66,-122.51 -382.72,-120.96 -397.54,-115.38 -406.01,-113.46 -410.00,-108.97 -420.60,-107.04 -456.04,-100.61 -470.10,-98.83 -485.15,-98.14 -495.29,-98.67 -508.11,-99.34 -509.09,-100.88 -514.19,-118.15 -514.98,-117.91 -522.52,-143.48 -521.75,-143.71 -523.99,-151.30 -528.30,-149.31 -532.24,-162.64 -537.79,-181.43 -412.91,-222.45"/>
    <poly id="437019942" type="residential" color="235,235,227" fill="1" layer="-3.00" shape="-535.66,-145.39 -545.03,-151.85 -564.64,-120.30 -549.55,-110.00 -545.53,-108.26 -539.40,-106.35 -518.78,-101.44 -518.00,-106.45 -520.63,-116.80 -525.97,-134.95 -527.66,-138.26 -530.92,-141.66 -535.66,-145.39"/>
    <poly id="437019943" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-357.80,-54.61 -354.43,-55.51 -351.13,-54.57 -347.78,-53.31 -345.57,-52.11 -343.64,-50.07 -334.89,-21.43 -334.73,-19.47 -334.91,-16.98 -336.02,-14.38 -337.43,-12.31 -339.23,-10.69 -342.07,-9.49 -362.03,-3.97 -375.50,-48.44 -357.80,-54.61"/>
    <poly id="437022968" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-491.25,-99.41 -479.89,-99.96 -480.11,-104.62 -491.47,-104.07 -491.25,-99.41"/>
    <poly id="437025464" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-373.77,-176.63 -379.21,-175.00 -367.46,-134.21 -361.49,-135.92 -373.77,-176.63"/>
    <poly id="438165284" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-70.23,690.27 -73.16,694.74 -77.20,694.49 -74.27,690.03 -70.23,690.27"/>
    <poly id="438307750" type="water" color="181,209,209" fill="0" layer="-4.00" shape="575.37,-201.29 567.04,-196.64"/>
    <poly id="438307760" type="water" color="181,209,209" fill="0" layer="-4.00" shape="470.77,-357.95 524.64,-289.10 571.36,-218.34 575.64,-209.46 575.37,-201.29"/>
    <poly id="438442632" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="583.76,-77.89 587.08,-78.89 630.72,13.12 628.24,22.72 600.16,18.44 600.91,14.71 591.10,14.00 590.15,18.11 562.10,19.49 537.42,23.59 519.03,29.98 510.50,33.52 507.21,34.89 503.91,36.26 501.75,31.08 499.08,25.18 528.33,14.46 525.52,5.28 601.05,-21.09 597.24,-31.63 592.36,-29.19 571.02,-73.92 583.76,-77.89"/>
    <poly id="438442636" type="shop" color="237,199,255" fill="1" layer="-1.00" shape="522.29,-83.73 499.69,-76.33 454.88,-61.66 465.82,-28.46 478.04,8.65 488.20,5.31 555.11,-16.60 556.52,-17.05 559.33,-17.97 562.14,-18.90 564.95,-19.82 567.76,-20.74 569.17,-21.20 579.93,-24.73 590.14,-28.07 589.67,-29.05 557.85,-95.37 522.29,-83.73"/>
    <poly id="438442641" type="building" color="255,230,230" fill="1" layer="-1.00" shape="590.14,-28.07 579.93,-24.73 569.17,-21.20 572.09,-12.34 600.57,-21.68 597.22,-31.81 589.67,-29.05 590.14,-28.07"/>
    <poly id="439005899" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="503.91,36.26 507.21,34.89 505.05,29.71 501.75,31.08 503.91,36.26"/>
    <poly id="439005900" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="226.92,303.12 223.41,304.11 224.74,308.78 228.25,307.80 226.92,303.12"/>
    <poly id="439005901" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="507.21,34.89 510.50,33.52 508.34,28.35 505.05,29.71 507.21,34.89"/>
    <poly id="439005902" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="231.75,306.80 230.43,302.13 226.92,303.12 228.25,307.80 231.75,306.80"/>
    <poly id="439005903" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="241.01,304.20 239.68,299.53 236.32,300.48 237.64,305.15 241.01,304.20"/>
    <poly id="439005904" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="223.41,304.11 219.91,305.10 221.23,309.77 224.74,308.78 223.41,304.11"/>
    <poly id="439005905" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="237.64,305.15 234.27,306.09 232.95,301.42 236.32,300.48 237.64,305.15"/>
    <poly id="441778631" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="116.60,340.10 121.43,338.70 122.12,341.09 117.29,342.49 123.65,364.25 128.46,362.86 129.16,365.26 124.35,366.65 125.86,371.81 135.79,368.92 125.24,332.78 115.30,335.67 116.60,340.10"/>
    <poly id="441778632" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="99.71,333.87 96.73,323.50 92.09,324.82 95.07,335.19 99.71,333.87"/>
    <poly id="441778633" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="126.96,318.01 131.53,316.71 132.23,319.19 127.69,320.51 126.96,318.01"/>
    <poly id="441778634" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="136.58,334.30 132.10,335.60 130.80,331.16 135.29,329.86 136.58,334.30"/>
    <poly id="441778635" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="112.16,324.93 111.44,322.45 116.41,321.02 117.13,323.48 112.16,324.93"/>
    <poly id="441778636" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="137.27,336.68 132.79,337.98 139.15,359.75 143.63,358.45 137.27,336.68"/>
    <poly id="441778637" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="89.38,337.12 84.33,338.61 87.41,349.00 92.46,347.52 89.38,337.12"/>
    <poly id="441778638" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="101.34,339.73 111.89,375.87 107.23,377.21 96.67,341.07 101.34,339.73"/>
    <poly id="441778639" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="127.69,320.51 132.23,319.19 133.62,324.05 129.10,325.36 127.69,320.51"/>
    <poly id="441778640" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="126.96,318.01 126.22,315.49 130.80,314.15 131.53,316.71 126.96,318.01"/>
    <poly id="441778641" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="114.96,374.97 104.40,338.83 109.49,337.35 120.05,373.50 114.96,374.97"/>
    <poly id="441778642" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="101.76,378.98 97.51,364.59 92.46,366.08 96.71,380.46 101.76,378.98"/>
    <poly id="441778643" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="141.12,375.75 144.24,374.85 145.61,379.58 142.49,380.48 141.12,375.75"/>
    <poly id="441778644" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="144.34,360.84 139.85,362.14 141.36,367.30 141.98,367.12 145.84,366.00 144.34,360.84"/>
    <poly id="441778646" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="87.41,349.00 92.46,366.08 97.51,364.59 100.33,363.77 95.32,346.67 92.46,347.52 87.41,349.00"/>
    <poly id="441778649" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="112.16,324.93 117.13,323.48 116.41,321.02 115.69,318.54 120.66,317.11 123.54,326.98 113.61,329.86 112.16,324.93"/>
    <poly id="441778650" type="shop" color="237,199,255" fill="1" layer="-1.00" shape="80.43,341.88 79.63,339.03 79.30,337.84 75.07,339.02 73.49,333.40 59.60,337.27 44.06,341.60 47.58,354.17 63.13,349.84 77.02,345.97 76.20,343.06 80.43,341.88"/>
    <poly id="441778651" type="building" color="255,230,230" fill="1" layer="-1.00" shape="84.99,319.70 83.79,320.06 82.60,320.41 83.37,323.04 80.57,323.86 75.26,325.41 69.49,305.81 72.77,304.85 75.28,313.37 82.51,311.26 84.99,319.70"/>
    <poly id="441778652" type="building" color="255,230,230" fill="1" layer="-1.00" shape="40.04,356.27 36.52,343.70 44.06,341.60 59.60,337.27 73.49,333.40 77.73,332.22 77.87,332.74 79.30,337.84 79.63,339.03 80.43,341.88 81.10,344.27 81.25,344.79 77.02,345.97 63.13,349.84 47.58,354.17 40.04,356.27"/>
    <poly id="441778653" type="building" color="255,230,230" fill="1" layer="-1.00" shape="53.95,405.91 50.45,406.88 53.73,418.61 105.74,404.12 102.46,392.39 95.15,394.42 93.76,389.42 92.35,384.42 89.98,375.97 85.79,360.99 85.05,358.37 84.32,355.75 81.25,344.79 77.02,345.97 63.13,349.84 47.58,354.17 40.04,356.27 53.95,405.91"/>
    <poly id="441778654" type="building" color="255,230,230" fill="1" layer="-1.00" shape="92.35,384.42 89.98,375.97 92.77,375.20 95.14,383.64 92.35,384.42"/>
    <poly id="441778655" type="building" color="255,230,230" fill="1" layer="-1.00" shape="84.32,355.75 85.05,358.37 85.79,360.99 91.94,359.27 90.47,354.04 84.32,355.75"/>
    <poly id="441778656" type="building" color="255,230,230" fill="1" layer="-1.00" shape="77.87,332.74 79.30,337.84 79.63,339.03 80.43,341.88 81.10,344.27 83.89,343.49 80.66,331.96 77.87,332.74"/>
    <poly id="448955241" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-200.47,497.14 -167.71,495.79 -167.93,492.30 -168.29,486.59 -172.48,420.18 -170.05,419.35 -177.20,394.39 -209.88,403.69 -206.05,419.25 -200.47,497.14"/>
    <poly id="448955242" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-225.72,405.42 -228.79,395.12 -231.85,384.88 -244.38,388.60 -241.13,399.52 -251.86,401.45 -264.15,403.66 -261.81,416.57 -249.53,414.37 -246.64,413.85 -229.26,410.73 -227.80,410.17 -226.72,409.39 -225.95,408.29 -225.59,407.01 -225.72,405.42"/>
    <poly id="466082163" type="building" color="255,230,230" fill="1" layer="-1.00" shape="86.48,160.44 89.17,159.66 88.64,157.82 85.95,158.60 86.48,160.44"/>
    <poly id="466082190" type="building" color="255,230,230" fill="1" layer="-1.00" shape="105.25,274.59 102.54,265.72 101.18,261.29 109.91,258.63 111.27,263.07 113.98,271.93 105.25,274.59"/>
    <poly id="466082193" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="191.22,238.22 190.69,236.38 145.89,249.02 146.41,250.85 191.22,238.22"/>
    <poly id="466082194" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="195.27,235.09 195.79,236.93 220.00,230.10 219.48,228.26 195.27,235.09"/>
    <poly id="466082195" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="200.92,244.64 200.44,242.92 221.92,236.86 222.40,238.58 200.92,244.64"/>
    <poly id="466082196" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="220.43,257.26 227.16,255.36 226.68,253.66 219.94,255.55 220.43,257.26"/>
    <poly id="466082197" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="230.00,291.03 229.54,289.39 236.27,287.49 236.74,289.12 230.00,291.03"/>
    <poly id="466082198" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="217.75,294.48 224.89,292.47 227.48,291.74 227.01,290.10 217.28,292.85 217.75,294.48"/>
    <poly id="466082199" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="225.23,274.21 224.73,272.44 231.47,270.54 231.97,272.32 225.23,274.21"/>
    <poly id="466082200" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="212.98,277.66 222.71,274.92 222.21,273.15 212.48,275.89 212.98,277.66"/>
    <poly id="466082201" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="208.17,260.72 207.69,259.01 217.42,256.26 217.90,257.97 208.17,260.72"/>
    <poly id="466082202" type="building" color="255,230,230" fill="1" layer="-1.00" shape="226.11,296.76 224.89,292.47 227.48,291.74 228.69,296.03 226.11,296.76"/>
    <poly id="466082203" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="215.68,407.36 338.12,371.64 337.85,362.45 334.55,340.76 330.72,327.11 320.92,300.58 301.67,270.60 287.23,254.28 223.87,201.54 183.81,169.17 179.48,166.86 175.56,166.69 164.99,169.50 113.90,185.33 111.59,190.63 112.60,195.32 126.89,243.33 130.45,255.70 146.41,250.85 145.89,249.02 144.67,245.14 140.16,246.49 128.29,206.96 147.99,201.09 146.70,196.80 186.07,185.05 187.35,189.33 190.22,190.45 193.31,187.40 237.09,224.49 279.67,259.02 285.07,276.02 292.64,273.61 293.69,277.89 296.22,277.09 299.05,287.63 292.71,291.39 298.29,291.75 303.80,293.85 308.16,298.32 309.28,299.99 310.93,302.41 310.96,307.13 313.25,315.20 318.88,335.09 320.01,339.06 327.38,365.05 328.62,369.46 324.16,370.71 213.94,401.77 215.68,407.36"/>
    <poly id="466082204" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="299.57,599.10 277.04,570.77 262.67,582.12 285.20,610.46 299.57,599.10"/>
    <poly id="466082204#1" type="sport" color="79,230,125" fill="1" layer="-2.00" shape="299.57,599.10 277.04,570.77 262.67,582.12 285.20,610.46 299.57,599.10"/>
    <poly id="466082207" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="483.36,25.57 479.90,26.70 477.33,18.91 480.79,17.79 483.36,25.57"/>
    <poly id="466082208" type="building" color="255,230,230" fill="1" layer="-1.00" shape="488.20,5.31 489.38,8.93 556.30,-12.99 555.11,-16.60 488.20,5.31"/>
    <poly id="466082215" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="268.87,316.62 268.38,314.91 260.89,317.03 261.38,318.74 268.87,316.62"/>
    <poly id="466082216" type="building" color="255,230,230" fill="1" layer="-1.00" shape="257.09,316.05 257.92,318.96 258.74,321.86 278.16,316.38 284.54,314.57 288.87,313.35 302.87,309.41 304.48,308.96 310.96,307.13 309.32,301.34 257.09,316.05"/>
    <poly id="467494179" type="shop" color="237,199,255" fill="1" layer="-1.00" shape="39.92,589.00 46.26,589.77 50.25,571.11 56.67,534.21 54.89,533.92 36.97,532.34 36.89,534.22 20.71,533.27 14.54,532.94 7.71,532.53 6.71,549.69 15.86,550.23 15.31,566.23 18.10,566.33 17.99,569.83 41.23,570.75 39.92,589.00"/>
    <poly id="468194709" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-490.29,-291.97 -492.28,-292.06 -493.80,-292.01 -495.29,-291.63 -499.03,-289.24 -508.64,-282.64 -516.60,-277.79 -523.33,-273.59 -530.01,-270.22 -567.47,-211.43 -463.23,-242.59 -471.14,-269.21 -490.29,-291.97"/>
    <poly id="469914943" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-493.58,-295.88 -505.02,-309.46 -526.34,-275.99 -525.81,-275.68 -524.69,-276.13 -516.75,-280.47 -509.67,-284.87 -503.53,-289.48 -498.21,-293.23 -495.43,-294.91 -493.58,-295.88"/>
    <poly id="47263609" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="975.56,-105.15 941.77,-96.13 940.37,-101.57 924.36,-98.65 923.37,-103.26 912.63,-100.72 910.83,-106.52 895.19,-102.52 894.16,-106.79 889.64,-105.69 885.86,-120.22 871.32,-116.45 873.24,-108.26 861.93,-105.43 860.93,-108.71 856.69,-107.71 855.21,-113.16 853.53,-119.41 852.54,-122.53 829.38,-115.98 827.26,-123.93 823.75,-137.04 812.30,-134.00 758.82,-119.65 756.92,-119.12 753.64,-118.27 760.83,-91.60 762.16,-86.43 761.68,-86.31 758.40,-85.43 759.42,-81.66 760.61,-77.24 763.89,-78.12 773.46,-42.23 774.49,-42.49 784.26,-5.82 779.58,-4.57 744.73,4.59 738.38,5.07 737.55,2.25 732.81,3.61 730.45,-3.64 683.31,8.75 681.69,3.90 676.30,5.36 671.54,-8.10 671.07,-9.01 670.43,-9.47 669.67,-9.75 663.08,-7.79 626.39,-84.60 627.50,-90.90 629.29,-97.75 634.00,-104.08 640.99,-107.13 722.67,-128.78 715.22,-154.93 725.80,-157.55 748.13,-162.41 763.68,-165.52 765.41,-159.60 780.88,-162.05 784.49,-150.44 785.98,-143.82 812.38,-147.78 1050.12,-91.78 1056.36,-89.37 1062.40,-86.14 1068.98,-81.32 1073.32,-77.30 1077.25,-69.17 1079.26,-60.35 1081.45,-54.35 1082.80,-49.25 1072.49,-46.67 1071.19,-51.43 1068.76,-50.77 1070.06,-46.01 1064.73,-44.60 1062.69,-52.61 1058.93,-67.50 1053.83,-87.66 1044.08,-92.18 1018.33,-98.80 979.71,-88.98 975.56,-105.15"/>
    <poly id="47263619" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="612.62,-104.65 616.40,-105.65 623.77,-107.60 623.39,-109.05 632.76,-111.53 633.16,-110.01 700.40,-127.81 699.56,-130.99 704.83,-132.39 704.09,-135.19 698.82,-133.80 697.54,-138.61 700.84,-139.48 698.46,-148.38 695.19,-147.52 694.19,-151.26 693.53,-153.76 677.54,-149.52 676.28,-154.27 657.48,-149.28 658.73,-144.59 645.16,-140.99 643.89,-145.73 625.03,-140.73 624.59,-142.37 615.23,-139.89 615.66,-138.29 604.45,-135.32 612.62,-104.65"/>
    <poly id="47263619#1" type="building" color="255,230,230" fill="1" layer="-1.00" shape="612.62,-104.65 616.40,-105.65 623.77,-107.60 623.39,-109.05 632.76,-111.53 633.16,-110.01 700.40,-127.81 699.56,-130.99 704.83,-132.39 704.09,-135.19 698.82,-133.80 697.54,-138.61 700.84,-139.48 698.46,-148.38 695.19,-147.52 694.19,-151.26 693.53,-153.76 677.54,-149.52 676.28,-154.27 657.48,-149.28 658.73,-144.59 645.16,-140.99 643.89,-145.73 625.03,-140.73 624.59,-142.37 615.23,-139.89 615.66,-138.29 604.45,-135.32 612.62,-104.65"/>
    <poly id="47263623" type="building" color="255,230,230" fill="0" layer="-1.00" shape="784.05,60.76 733.48,67.41 706.25,70.99 687.33,67.36 646.13,82.03 610.37,95.69"/>
    <poly id="475663834" type="shop" color="237,199,255" fill="1" layer="-1.00" shape="421.81,211.35 419.02,201.83 411.12,204.18 409.89,200.08 404.42,181.86 402.02,182.57 397.31,166.84 399.81,166.09 398.77,162.61 397.78,162.90 395.72,156.05 392.82,146.38 389.13,134.08 388.62,132.38 387.26,127.83 380.90,107.14 385.23,106.01 412.96,98.79 419.51,100.30 423.68,104.76 432.18,126.89 434.79,133.67 437.42,141.93 439.80,149.36 440.15,150.47 441.56,154.89 442.10,156.58 446.61,170.70 448.96,169.94 458.61,200.12 443.74,204.89 421.81,211.35"/>
    <poly id="477019412" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="240.34,113.16 314.05,88.98 318.57,87.49 386.41,66.65 379.96,50.26 370.37,14.70 378.32,0.76 357.82,-66.26 273.12,-40.50 272.52,-41.85 243.84,-32.06 210.56,-22.13 162.70,-8.09 156.53,-6.19 135.00,0.53 94.58,12.56 177.52,73.27 219.75,107.38 240.34,113.16"/>
    <poly id="477074273" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-322.56,265.99 -281.92,253.83 -287.61,234.92 -246.91,222.75 -236.04,258.86 -314.43,282.32 -315.82,277.67 -319.71,275.45 -322.56,265.99"/>
    <poly id="478152682" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="322.53,-95.06 334.49,-98.67 333.93,-100.51 321.97,-96.89 322.53,-95.06"/>
    <poly id="478152682#1" type="building" color="255,230,230" fill="1" layer="-1.00" shape="322.53,-95.06 334.49,-98.67 333.93,-100.51 321.97,-96.89 322.53,-95.06"/>
    <poly id="478152683" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="324.75,-87.18 336.74,-90.70 336.23,-92.42 324.24,-88.90 324.75,-87.18"/>
    <poly id="478152683#1" type="building" color="255,230,230" fill="1" layer="-1.00" shape="324.75,-87.18 336.74,-90.70 336.23,-92.42 324.24,-88.90 324.75,-87.18"/>
    <poly id="478663348" type="building" color="255,230,230" fill="1" layer="-1.00" shape="636.81,57.59 637.76,54.68 636.78,54.35 635.82,57.26 636.81,57.59"/>
    <poly id="478663351" type="shop" color="237,199,255" fill="1" layer="-1.00" shape="721.24,91.13 722.20,83.00 722.90,77.09 726.82,77.37 736.34,78.08 744.60,81.34 755.82,86.05 761.95,87.18 770.65,88.78 776.36,91.48 779.13,95.07 781.83,101.31 781.19,108.07 779.59,117.76 774.44,125.03 770.35,128.29 762.70,128.05 755.43,126.93 749.42,123.16 745.68,121.43 742.37,124.88 733.59,118.58 734.60,108.50 725.38,107.98 726.02,102.31 720.12,100.59 721.24,91.13"/>
    <poly id="478663352" type="commercial" color="209,209,204" fill="1" layer="-3.00" shape="722.90,77.09 707.38,74.18 711.10,87.45 711.68,86.08 712.96,85.68 714.43,86.65 714.55,90.07 721.24,91.13 720.12,100.59 726.02,102.31 725.38,107.98 734.60,108.50 733.59,118.58 742.37,124.88 745.68,121.43 749.42,123.16 755.43,126.93 762.70,128.05 770.35,128.29 774.44,125.03 779.59,117.76 781.19,108.07 781.83,101.31 779.13,95.07 776.36,91.48 770.65,88.78 761.95,87.18 755.82,86.05 744.60,81.34 736.34,78.08 726.82,77.37 722.90,77.09"/>
    <poly id="478663354" type="building" color="255,230,230" fill="1" layer="-1.00" shape="515.51,415.13 517.34,413.25 514.00,410.03 512.16,411.92 515.51,415.13"/>
    <poly id="478663354#1" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="515.51,415.13 517.34,413.25 514.00,410.03 512.16,411.92 515.51,415.13"/>
    <poly id="478669857" type="building" color="255,230,230" fill="1" layer="-1.00" shape="519.22,-93.08 496.62,-85.67 491.81,-84.11 489.49,-91.18 492.04,-92.02 516.88,-100.15 520.47,-101.32 544.69,-109.26 546.42,-104.03 547.02,-102.19 519.22,-93.08"/>
    <poly id="482101804" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-515.60,550.50 -508.10,549.67 -507.23,556.14 -514.90,557.32 -515.60,550.50"/>
    <poly id="484396384" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-401.35,-64.58 -401.81,-66.18 -397.99,-67.28 -397.29,-64.85 -396.54,-65.07 -395.60,-61.82 -370.34,-69.08 -370.06,-68.10 -358.39,-71.47 -358.61,-72.23 -359.61,-75.68 -356.90,-76.47 -357.59,-78.83 -362.83,-96.96 -365.54,-96.18 -368.27,-105.63 -372.46,-104.42 -379.94,-102.28 -377.21,-92.83 -403.21,-85.34 -402.60,-83.21 -406.42,-82.11 -406.67,-82.98 -428.56,-76.69 -450.10,-70.49 -450.44,-71.68 -462.09,-68.33 -461.74,-67.14 -479.76,-61.95 -483.38,-60.92 -478.06,-42.53 -456.43,-48.75 -456.08,-47.57 -455.85,-46.78 -458.72,-45.95 -457.81,-42.79 -444.31,-46.67 -445.46,-50.62 -444.43,-50.91 -444.77,-52.09 -426.67,-57.29 -426.57,-56.92 -429.90,-55.96 -428.43,-50.89 -421.57,-52.86 -414.35,-54.93 -415.82,-60.00 -419.71,-58.88 -419.81,-59.27 -401.35,-64.58"/>
    <poly id="484396387" type="tourism" color="207,245,201" fill="1" layer="-2.00" shape="-498.47,454.45 -507.26,451.62 -511.04,463.26 -510.83,473.59 -510.57,486.32 -512.72,486.35 -511.90,490.50 -468.94,485.14 -469.15,483.28 -459.35,482.13 -457.63,488.09 -447.57,488.75 -447.66,477.02 -453.06,477.06 -453.08,473.59 -453.18,459.76 -453.30,444.14 -453.33,442.03 -462.52,438.79 -464.27,443.74 -471.09,441.32 -469.33,436.38 -474.61,434.52 -481.91,455.04 -491.03,451.71 -491.40,452.84 -497.33,450.93 -498.47,454.45"/>
    <poly id="484396388" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-453.08,473.59 -453.18,459.76 -453.30,444.14 -453.33,442.03 -453.45,422.64 -433.41,422.49 -433.26,443.99 -433.15,459.62 -433.05,473.44 -446.71,473.54 -447.69,473.55 -453.08,473.59"/>
    <poly id="484396389" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-505.78,462.71 -505.11,462.23 -504.72,461.50 -504.68,460.68 -505.01,459.92 -505.63,459.36 -506.43,459.15 -507.24,459.30 -507.92,459.78 -508.31,460.51 -508.35,461.34 -508.02,462.10 -507.40,462.65 -506.59,462.86 -505.78,462.71"/>
    <poly id="484396389#1" type="historic" color="128,255,128" fill="1" layer="-1.00" shape="-505.78,462.71 -505.11,462.23 -504.72,461.50 -504.68,460.68 -505.01,459.92 -505.63,459.36 -506.43,459.15 -507.24,459.30 -507.92,459.78 -508.31,460.51 -508.35,461.34 -508.02,462.10 -507.40,462.65 -506.59,462.86 -505.78,462.71"/>
    <poly id="484396404" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-304.94,62.86 -346.22,-85.73 -332.75,-89.40 -312.33,-19.63 -292.38,48.49 -289.45,58.18 -304.94,62.86"/>
    <poly id="485172920" type="building" color="255,230,230" fill="1" layer="-1.00" shape="392.81,210.79 394.90,208.23 399.16,211.68 397.95,213.15 397.06,214.24 392.81,210.79"/>
    <poly id="485172921" type="building" color="255,230,230" fill="1" layer="-1.00" shape="385.64,210.72 398.38,221.04 402.08,216.50 397.95,213.15 397.06,214.24 392.81,210.79 388.45,207.26 385.64,210.72"/>
    <poly id="485172923" type="building" color="255,230,230" fill="1" layer="-1.00" shape="357.68,196.96 353.31,202.31 372.94,218.22 377.29,212.87 357.68,196.96"/>
    <poly id="485172924" type="building" color="255,230,230" fill="1" layer="-1.00" shape="337.87,180.91 333.51,186.26 353.31,202.31 357.68,196.96 337.87,180.91"/>
    <poly id="485172925" type="building" color="255,230,230" fill="1" layer="-1.00" shape="372.94,218.22 391.80,233.51 396.16,228.16 377.29,212.87 372.94,218.22"/>
    <poly id="485172926" type="building" color="255,230,230" fill="1" layer="-1.00" shape="391.80,233.51 410.74,248.87 417.79,240.22 409.26,233.30 404.08,234.21 396.16,228.16 391.80,233.51"/>
    <poly id="485172927" type="building" color="255,230,230" fill="1" layer="-1.00" shape="417.79,240.22 410.74,248.87 434.32,267.99 441.38,259.35 417.79,240.22"/>
    <poly id="487529771" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-548.10,34.67 -544.64,38.58 -546.42,40.12 -543.30,43.67 -573.29,52.34 -576.63,48.53 -574.62,46.77 -577.72,43.24 -548.10,34.67"/>
    <poly id="487529772" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-548.10,34.67 -540.26,32.40 -536.91,36.19 -538.62,37.69 -535.38,41.39 -543.30,43.67 -546.42,40.12 -544.64,38.58 -548.10,34.67"/>
    <poly id="487529773" type="building" color="255,230,230" fill="0" layer="-1.00" shape="-541.94,-28.50 -537.56,-29.79"/>
    <poly id="487529774" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-556.54,-61.31 -564.55,-58.93 -569.87,-76.67 -561.86,-79.07 -556.54,-61.31"/>
    <poly id="487529775" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-583.39,-1.48 -579.06,0.96 -580.30,3.16 -575.95,5.59 -583.01,7.69 -587.14,5.43 -585.98,3.00 -590.31,0.58 -583.39,-1.48"/>
    <poly id="487529776" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="-583.39,-1.48 -573.45,-4.40 -569.11,-1.96 -570.32,0.19 -566.04,2.58 -575.95,5.59 -580.30,3.16 -579.06,0.96 -583.39,-1.48"/>
    <poly id="490387370" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-578.47,43.47 -579.04,43.69 -579.52,44.06 -579.88,44.55 -580.09,45.12 -580.13,45.73 -578.23,52.12 -577.92,52.64 -577.45,53.03 -576.87,53.24 -576.27,53.23 -575.70,53.02 -573.29,52.34 -576.63,48.53 -574.62,46.77 -577.72,43.24 -578.47,43.47"/>
    <poly id="497762834" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-369.56,682.58 -384.13,681.92 -389.82,681.63 -389.99,690.28 -368.52,691.10 -368.35,686.16 -369.53,686.11 -369.56,682.58"/>
    <poly id="497886786" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="469.97,393.39 476.44,400.99 477.38,400.20 477.89,399.34 478.17,398.12 478.23,396.75 477.80,394.73 476.79,393.69 473.43,390.16 469.97,393.39"/>
    <poly id="497886787" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="462.86,385.06 465.91,382.23 471.18,387.78 467.82,390.87 462.86,385.06"/>
    <poly id="497886788" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="529.58,406.04 511.23,419.86 503.03,409.75 498.33,404.06 496.53,400.06 495.51,396.63 494.46,392.75 494.13,388.81 495.23,383.31 497.10,377.23 498.74,374.11 500.15,372.56 501.80,370.70 501.03,372.22 500.89,373.31 501.35,374.85 506.22,383.42 518.50,394.30 529.58,406.04"/>
    <poly id="497886789" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="357.82,311.98 358.29,313.80 364.36,312.87 374.55,310.45 381.70,309.52 392.00,310.23 402.52,313.27 412.57,319.07 422.14,327.41 444.67,349.84 455.08,360.65 466.51,373.05 471.06,377.62 473.54,380.40 476.40,383.00 478.44,381.42 478.68,380.95 478.77,380.52 478.71,380.15 478.34,379.66 468.84,369.61 457.68,357.90 444.87,344.36 429.17,329.17 415.99,317.97 409.88,313.71 405.06,310.91 398.21,308.08 391.29,306.22 385.89,305.82 380.69,305.91 375.65,306.53 368.59,307.95 360.81,310.31 357.82,311.98"/>
    <poly id="497886790" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="488.68,385.56 484.97,381.37 484.86,380.69 485.00,379.96 485.54,379.17 491.39,374.48 492.22,374.33 492.66,374.42 493.01,374.83 493.19,375.50 493.19,376.18 490.56,384.81 490.22,385.32 489.61,385.60 489.09,385.68 488.68,385.56"/>
    <poly id="497886791" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="485.93,393.25 479.11,385.82 479.01,385.28 479.59,384.40 480.47,384.10 481.75,384.29 483.42,385.20 484.61,386.51 486.99,389.47 487.39,390.30 487.40,391.38 487.25,392.02 486.86,392.86 486.28,393.34 485.93,393.25"/>
    <poly id="497942731" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-623.88,-387.17 -542.34,-345.95 -493.85,-319.95 -493.72,-319.40 -493.85,-318.98 -494.06,-318.73 -494.45,-318.53 -507.78,-314.68 -506.60,-316.23 -505.84,-318.34 -506.05,-320.83 -507.25,-323.12 -544.46,-341.13 -644.19,-388.79 -729.94,-430.32 -778.79,-455.17 -785.76,-457.18 -791.64,-456.15 -795.63,-452.02 -802.50,-440.03 -808.24,-427.95 -812.70,-429.96 -796.00,-461.11 -793.37,-463.38 -790.92,-464.37 -787.29,-464.50 -785.39,-464.18 -773.07,-458.74 -774.25,-456.31 -760.47,-449.64 -759.29,-452.07 -752.80,-448.93 -753.98,-446.50 -740.69,-440.07 -739.51,-442.51 -725.84,-435.96 -726.95,-433.66 -724.07,-432.29 -722.96,-434.58 -721.51,-433.89 -722.62,-431.59 -717.27,-429.04 -716.17,-431.33 -706.24,-426.58 -707.35,-424.29 -704.12,-422.74 -703.01,-425.04 -701.62,-424.37 -702.72,-422.08 -694.64,-418.21 -693.53,-420.51 -681.07,-414.53 -682.17,-412.24 -678.78,-410.62 -677.68,-412.91 -676.19,-412.21 -677.30,-409.91 -673.38,-408.04 -672.28,-410.33 -670.76,-409.61 -671.86,-407.31 -670.09,-406.47 -668.99,-408.75 -661.54,-405.20 -662.64,-402.90 -658.95,-401.12 -657.85,-403.42 -656.06,-402.57 -657.17,-400.28 -650.49,-397.09 -649.38,-399.37 -636.07,-393.00 -637.17,-390.70 -632.42,-388.44 -631.32,-390.73 -628.60,-389.42 -629.70,-387.14 -624.98,-384.87 -623.88,-387.17"/>
    <poly id="499694879" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="171.03,375.78 165.34,374.37 174.62,406.37 178.40,402.37 171.03,375.78"/>
    <poly id="499694880" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="167.55,363.97 164.46,364.92 162.03,363.65 137.76,280.99 133.42,265.96 134.44,264.10 179.94,251.04 184.35,266.24 142.83,278.22 160.13,339.13 162.98,338.32 163.49,340.11 160.64,340.92 162.84,348.70 167.55,363.97"/>
    <poly id="507795992" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-43.22,633.82 -39.79,634.03 -39.49,629.32 -42.93,629.12 -43.22,633.82"/>
    <poly id="507795993" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-46.66,633.60 -46.36,628.90 -42.93,629.12 -43.22,633.82 -46.66,633.60"/>
    <poly id="507795994" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-25.46,672.13 -23.87,642.28 -22.55,642.35 -24.14,672.20 -25.46,672.13"/>
    <poly id="507795994#1" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="-25.46,672.13 -23.87,642.28 -22.55,642.35 -24.14,672.20 -25.46,672.13"/>
    <poly id="507795995" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-43.37,671.18 -41.78,641.34 -40.41,641.40 -42.00,671.25 -43.37,671.18"/>
    <poly id="507795995#1" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="-43.37,671.18 -41.78,641.34 -40.41,641.40 -42.00,671.25 -43.37,671.18"/>
    <poly id="507795996" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-62.15,687.12 -56.12,687.43 -55.79,681.35 -60.33,681.12 -58.17,640.47 -59.93,640.37 -60.17,644.91 -67.99,644.50 -68.41,652.41 -60.32,652.84 -61.80,680.70 -61.85,681.54 -62.15,687.12"/>
    <poly id="507795997" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-103.62,679.81 -103.37,674.12 -100.81,674.24 -100.52,667.42 -91.91,667.78 -90.85,650.38 -93.72,650.22 -93.57,647.64 -100.60,647.21 -97.60,597.75 -91.69,598.11 -91.63,597.12 -87.46,597.37 -87.52,598.38 -80.30,598.81 -65.75,599.69 -66.15,615.62 -67.11,627.63 -67.36,632.47 -67.99,644.50 -68.41,652.41 -60.32,652.84 -61.80,680.70 -61.85,681.54 -63.49,681.50 -103.62,679.81"/>
    <poly id="507795998" type="commercial" color="209,209,204" fill="1" layer="-3.00" shape="-115.73,683.84 -178.90,680.01 -177.11,652.38 -173.85,602.02 -173.41,595.27 -173.10,590.36 -146.65,592.07 -143.71,595.41 -143.90,598.23 -139.93,598.49 -133.29,598.90 -136.67,651.08 -112.52,653.69 -111.03,669.03 -111.63,681.65 -115.73,683.84"/>
    <poly id="507806302" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-328.26,-24.01 -316.06,-27.56 -326.76,-64.11 -331.91,-81.73 -344.11,-78.18 -338.95,-60.56 -328.26,-24.01"/>
    <poly id="511309027" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-232.89,202.19 -252.97,139.84 -307.11,113.74 -248.88,96.77 -239.71,102.67 -211.84,196.65 -232.89,202.19"/>
    <poly id="519312683" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="61.99,217.62 78.98,212.66 89.39,248.01 74.33,252.41 74.10,251.63 69.31,253.03 61.05,224.96 61.59,220.78 61.99,217.62"/>
    <poly id="523352447" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="124.10,461.68 120.05,462.74 120.64,464.98 124.69,463.93 124.10,461.68"/>
    <poly id="523352448" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="120.05,462.74 124.10,461.68 123.51,459.44 119.46,460.49 120.05,462.74"/>
    <poly id="523352449" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="120.71,439.00 122.09,443.94 125.30,443.04 123.91,438.11 120.71,439.00"/>
    <poly id="523352450" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="118.88,444.83 117.49,439.91 120.71,439.00 122.09,443.94 118.88,444.83"/>
    <poly id="523352451" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="115.59,445.76 114.09,440.85 117.49,439.91 118.88,444.83 115.59,445.76"/>
    <poly id="523352453" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="118.50,456.83 122.55,455.78 121.54,451.95 117.50,453.00 118.02,455.02 118.50,456.83"/>
    <poly id="523352456" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="119.46,460.49 118.50,456.83 122.55,455.78 123.51,459.44 119.46,460.49"/>
    <poly id="529156849" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="66.42,303.14 38.21,207.97 -58.45,235.85 -24.69,350.23 25.29,335.83 71.76,322.27 66.42,303.14"/>
    <poly id="530991077" type="building" color="255,230,230" fill="1" layer="-1.00" shape="397.26,368.11 394.30,364.73 396.73,362.63 399.68,366.03 397.26,368.11"/>
    <poly id="536625144" type="building" color="255,230,230" fill="1" layer="-1.00" shape="101.11,-258.01 112.02,-257.88 112.07,-261.72 101.15,-261.84 101.11,-258.01"/>
    <poly id="536625148" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-59.09,-314.34 -44.49,-314.10 -44.35,-322.86 -58.95,-323.10 -59.09,-314.34"/>
    <poly id="537144106" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-389.92,458.01 -389.95,465.06 -390.39,556.59 -387.46,553.70 -387.03,460.91 -389.92,458.01"/>
    <poly id="537144110" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-413.23,633.11 -416.56,666.03 -416.25,668.23 -415.36,669.79 -411.24,669.22 -410.28,666.86 -410.00,664.27 -406.71,633.75 -413.23,633.11"/>
    <poly id="537144111" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-405.74,470.10 -405.96,464.99 -406.04,458.42 -405.04,458.40 -404.96,464.98 -403.50,464.96 -403.44,470.08 -403.47,476.16 -404.93,476.15 -405.30,557.00 -405.52,567.75 -406.17,567.76 -406.13,556.99 -405.74,470.10"/>
    <poly id="537144112" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-399.58,465.01 -399.50,470.13 -399.88,556.96 -400.10,567.79 -400.95,567.77 -400.74,557.02 -400.34,470.13 -400.56,458.34 -399.64,458.34 -399.58,465.01"/>
    <poly id="537144113" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-422.59,309.63 -413.62,306.23 -414.22,303.23 -416.45,299.83 -418.26,295.11 -419.31,290.69 -421.71,279.71 -428.26,280.97 -422.59,309.63"/>
    <poly id="537144114" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-414.96,369.26 -415.72,365.02 -417.04,359.99 -417.41,356.62 -418.87,343.96 -411.48,341.95 -408.40,368.57 -414.96,369.26"/>
    <poly id="537144125" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-402.89,420.49 -400.71,426.46 -399.62,437.11 -408.48,438.03 -408.63,437.69 -408.79,437.22 -409.81,427.22 -409.63,421.17 -414.96,369.26 -408.40,368.57 -402.89,420.49"/>
    <poly id="537144135" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-445.36,204.29 -447.27,196.07 -448.98,196.47 -447.07,204.68 -445.36,204.29"/>
    <poly id="537144135#1" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-445.36,204.29 -447.27,196.07 -448.98,196.47 -447.07,204.68 -445.36,204.29"/>
    <poly id="538072190" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="-425.69,-34.66 -419.30,-14.23 -447.00,-6.29 -453.03,-26.70 -425.69,-34.66"/>
    <poly id="538072192" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="-724.65,-134.06 -725.19,-139.62 -725.19,-141.72 -669.88,-141.08 -669.54,-129.60 -681.51,-129.54 -681.51,-128.23 -724.85,-128.01 -724.65,-134.06"/>
    <poly id="540029319" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-407.20,492.87 -407.16,484.65 -409.02,484.64 -409.05,492.86 -407.20,492.87"/>
    <poly id="540029319#1" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-407.20,492.87 -407.16,484.65 -409.02,484.64 -409.05,492.86 -407.20,492.87"/>
    <poly id="540029320" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-396.61,540.60 -396.58,532.39 -398.44,532.39 -398.47,540.59 -396.61,540.60"/>
    <poly id="540029320#1" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-396.61,540.60 -396.58,532.39 -398.44,532.39 -398.47,540.59 -396.61,540.60"/>
    <poly id="540029322" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="-397.66,694.98 -397.60,696.69 -397.35,697.86 -396.36,699.22 -395.17,700.04 -393.45,700.58 -390.80,700.80 -371.18,701.92 -345.13,703.39 -343.46,703.18 -342.93,702.24 -343.19,700.45 -343.94,698.68 -344.68,697.87 -373.58,696.13 -393.93,694.65 -395.07,694.57 -396.68,694.73 -397.66,694.98"/>
    <poly id="54568938" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-680.47,-25.19 -673.03,-25.32 -674.12,-92.10 -674.15,-93.81 -681.60,-93.69 -680.47,-25.19"/>
    <poly id="54568943" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-669.39,-101.61 -673.49,-101.59 -673.48,-99.49 -678.35,-99.46 -678.36,-101.48 -682.20,-101.47 -682.26,-115.34 -724.76,-115.13 -724.85,-128.01 -681.51,-128.23 -681.51,-129.54 -669.54,-129.60 -669.40,-104.30 -669.39,-101.61"/>
    <poly id="547262177" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="340.77,312.84 342.83,312.00 343.38,313.23 343.09,314.40 342.11,314.61 341.23,314.02 340.77,312.84"/>
    <poly id="547262178" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="350.38,304.13 347.98,298.38 344.59,290.92 337.57,277.66 332.36,269.44 324.68,258.45 318.36,251.20 308.76,240.67 297.85,230.04 284.66,218.54 259.35,197.61 246.20,186.92 231.13,174.47 218.47,163.88 217.17,162.91 216.40,162.74 214.04,163.89 214.81,165.37 215.78,166.78 228.21,177.25 258.90,202.65 279.03,218.83 290.68,228.63 301.94,239.31 308.55,246.09 317.07,255.91 329.05,272.06 335.50,281.89 342.57,296.32 346.66,305.87 350.38,304.13"/>
    <poly id="547262179" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="371.60,303.38 368.16,302.39 365.94,300.63 364.60,298.10 364.33,295.91 365.60,293.89 367.54,291.53 371.01,290.18 374.35,290.11 378.33,291.16 380.21,293.25 381.80,295.68 384.56,298.35 386.67,299.46 389.38,300.46 392.03,301.23 392.93,302.39 393.27,303.27 391.06,302.80 385.57,302.20 379.34,302.20 371.60,303.38"/>
    <poly id="547262180" type="natural" color="140,196,107" fill="1" layer="-4.00" shape="339.30,272.08 333.79,263.71 333.43,262.05 333.57,259.79 334.54,258.76 336.30,258.26 338.03,259.23 338.83,261.62 338.75,263.14 339.60,265.43 341.76,266.97 344.02,267.74 347.51,268.89 350.47,270.09 352.93,271.88 354.52,274.46 355.19,278.27 356.29,282.13 358.32,284.60 363.11,288.97 359.98,289.97 356.13,286.68 353.86,284.29 352.16,280.35 348.50,275.93 344.02,274.00 340.97,272.75 339.30,272.08"/>
    <poly id="548552813" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="-450.99,37.16 -453.00,36.93 -454.87,36.31 -456.40,34.80 -456.90,33.34 -457.21,31.34 -456.49,29.13 -455.38,27.90 -454.59,27.51 -338.32,-6.72 -336.02,-6.88 -333.61,-6.16 -332.18,-4.95 -330.99,-2.71 -330.97,-0.17 -332.76,2.19 -335.20,3.58 -450.50,37.06 -450.99,37.16"/>
    <poly id="548552817" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-461.74,-67.14 -462.09,-68.33 -450.44,-71.68 -450.10,-70.49 -444.77,-52.09 -444.43,-50.91 -445.46,-50.62 -456.08,-47.57 -456.43,-48.75 -461.74,-67.14"/>
    <poly id="548552819" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-428.43,-50.89 -421.57,-52.86 -414.35,-54.93 -415.82,-60.00 -419.71,-58.88 -419.81,-59.27 -421.65,-58.73 -424.84,-57.82 -426.67,-57.29 -426.57,-56.92 -429.90,-55.96 -428.43,-50.89"/>
    <poly id="549437544" type="amenity" color="237,199,199" fill="0" layer="-1.00" shape="-499.52,-89.10 -484.74,-33.57 -357.04,-70.83 -354.61,-72.85 -353.60,-76.58 -353.97,-79.60 -361.73,-106.55 -363.80,-109.12 -366.76,-111.15 -369.89,-111.19"/>
    <poly id="549439026" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-359.61,-75.68 -371.28,-72.33 -396.54,-65.07 -397.29,-64.85 -397.99,-67.28 -402.60,-83.21 -403.21,-85.34 -377.21,-92.83 -365.54,-96.18 -362.83,-96.96 -357.59,-78.83 -356.90,-76.47 -359.61,-75.68"/>
    <poly id="64605481" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="292.71,291.39 299.05,287.63 296.22,277.09 293.69,277.89 292.64,273.61 285.07,276.02 279.67,259.02 237.09,224.49 193.31,187.40 190.22,190.45 187.35,189.33 186.07,185.05 146.70,196.80 147.99,201.09 128.29,206.96 140.16,246.49 144.67,245.14 145.89,249.02 190.69,236.38 195.27,235.09 195.79,236.93 215.02,313.50 233.31,308.29 255.09,301.98 292.71,291.39"/>
    <poly id="69564020" type="building" color="255,230,230" fill="1" layer="-1.00" shape="14.77,39.77 48.70,66.39 26.05,72.90 27.14,76.68 31.64,75.40 42.19,109.37 46.39,123.57 44.58,117.27 46.68,124.50 41.39,126.01 42.16,128.67 46.28,142.94 47.28,146.40 70.74,139.67 77.45,162.88 64.67,166.54 53.98,169.61 55.57,175.11 40.15,179.54 38.56,174.04 5.81,183.45 7.39,188.95 -8.28,193.45 -9.86,187.95 -43.04,197.47 -41.45,202.98 -56.84,207.39 -58.43,201.90 -90.84,211.20 -89.25,216.71 -105.13,221.27 -106.72,215.77 -112.92,217.55 -119.62,194.34 -113.42,192.56 -114.42,189.06 -116.45,181.98 -118.54,174.80 -119.31,172.17 -125.57,173.97 -129.96,158.80 -123.69,157.00 -134.65,119.06 -141.38,120.99 -151.07,87.45 -150.40,87.26 -124.38,79.77 -124.06,78.06 -115.16,75.50 -115.54,77.24 -75.87,65.83 -75.81,64.18 -67.33,61.75 -66.90,63.26 -57.18,60.46 -57.48,59.43 -54.19,58.48 -50.91,57.54 -50.61,58.57 -27.30,51.87 -27.34,50.25 -18.78,47.79 -18.81,49.43 -6.64,45.93 -7.08,44.43 -4.90,43.80 -4.48,45.31 14.77,39.77"/>
    <poly id="71813037" type="building" color="255,230,230" fill="1" layer="-1.00" shape="116.76,416.24 150.44,406.52 152.75,405.86 145.58,381.17 140.55,382.62 137.47,383.51 111.64,390.97 112.05,392.39 107.57,393.68 110.18,402.71 111.78,408.20 109.94,408.73 112.09,416.13 116.37,414.90 116.76,416.24"/>
    <poly id="71813037#1" type="shop" color="237,199,255" fill="1" layer="-1.00" shape="116.76,416.24 150.44,406.52 152.75,405.86 145.58,381.17 140.55,382.62 137.47,383.51 111.64,390.97 112.05,392.39 107.57,393.68 110.18,402.71 111.78,408.20 109.94,408.73 112.09,416.13 116.37,414.90 116.76,416.24"/>
    <poly id="87354884" type="building" color="255,230,230" fill="1" layer="-1.00" shape="72.77,304.85 75.28,313.37 82.51,311.26 84.99,319.70 86.44,324.64 106.20,318.86 126.20,313.01 119.77,291.11 80.00,302.74 72.77,304.85"/>
    <poly id="87354884#1" type="shop" color="237,199,255" fill="1" layer="-1.00" shape="72.77,304.85 75.28,313.37 82.51,311.26 84.99,319.70 86.44,324.64 106.20,318.86 126.20,313.01 119.77,291.11 80.00,302.74 72.77,304.85"/>
    <poly id="87377658" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-357.23,460.19 -357.33,499.54 -350.96,499.56 -351.02,523.01 -357.18,523.00 -357.26,558.31 -347.13,558.33 -347.16,570.00 -376.69,569.94 -376.64,551.22 -369.85,551.23 -369.78,523.76 -371.38,523.76 -371.31,497.22 -369.33,497.23 -369.26,471.02 -376.03,471.00 -375.94,451.89 -350.00,447.06 -347.86,458.45 -357.23,460.19"/>
    <poly id="88046212" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="5.91,-25.63 9.73,-26.89 13.68,-28.68 17.11,-30.03 -109.17,-131.53 -212.66,-208.47 -297.22,-266.26 -393.64,-327.26 -395.82,-324.00 -398.22,-320.69 -399.85,-317.80 -221.19,-200.16 5.91,-25.63"/>
    <poly id="88046230" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="550.47,395.04 601.83,445.07 647.79,492.83 694.47,549.38 727.80,591.30 759.93,635.20 784.55,672.46 781.45,674.64 778.11,676.81 775.14,678.57 761.29,658.16 759.78,657.47 758.73,655.91 758.61,654.13 749.88,641.39 718.19,597.53 716.79,596.58 715.91,595.33 715.45,593.75 685.34,554.81 671.37,537.96 670.12,537.64 668.81,536.08 668.69,534.95 637.55,499.23 625.92,486.68 624.47,486.23 622.61,484.25 622.06,482.42 589.34,448.09 585.40,446.09 573.14,435.33 571.88,431.99 544.21,406.50 506.29,372.54 508.50,369.17 511.02,366.06 513.15,363.48 550.47,395.04"/>
    <poly id="88046247" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="202.53,132.62 206.17,132.70 209.12,130.61 214.43,129.40 218.80,129.08 69.13,10.58 64.10,11.39 58.84,12.53 55.60,13.28 202.53,132.62"/>
    <poly id="88046273" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="499.08,356.00 496.47,359.00 493.58,362.37 432.76,313.64 407.80,293.07 229.59,153.97 232.02,153.07 235.34,151.86 240.15,150.37 243.84,148.92 495.51,347.59 501.99,352.71 499.08,356.00"/>
    <poly id="89279799" type="building" color="255,230,230" fill="1" layer="-1.00" shape="238.29,662.52 229.66,651.28 232.07,649.44 219.32,632.82 216.07,628.60 213.30,630.72 205.63,620.72 197.91,626.61 199.89,629.21 185.73,640.01 182.85,636.26 170.38,645.79 173.48,649.85 172.16,650.86 179.77,660.78 178.43,661.80 180.52,664.52 181.93,663.44 185.49,668.08 189.05,672.72 187.66,673.78 189.92,676.73 191.38,675.61 199.63,686.36 200.76,685.50 203.44,688.99 215.24,679.99 213.06,677.15 228.01,665.74 230.25,668.66 238.29,662.52"/>
    <poly id="89279799#1" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="238.29,662.52 229.66,651.28 232.07,649.44 219.32,632.82 216.07,628.60 213.30,630.72 205.63,620.72 197.91,626.61 199.89,629.21 185.73,640.01 182.85,636.26 170.38,645.79 173.48,649.85 172.16,650.86 179.77,660.78 178.43,661.80 180.52,664.52 181.93,663.44 185.49,668.08 189.05,672.72 187.66,673.78 189.92,676.73 191.38,675.61 199.63,686.36 200.76,685.50 203.44,688.99 215.24,679.99 213.06,677.15 228.01,665.74 230.25,668.66 238.29,662.52"/>
    <poly id="89279799#2" type="sport" color="79,230,125" fill="1" layer="-2.00" shape="238.29,662.52 229.66,651.28 232.07,649.44 219.32,632.82 216.07,628.60 213.30,630.72 205.63,620.72 197.91,626.61 199.89,629.21 185.73,640.01 182.85,636.26 170.38,645.79 173.48,649.85 172.16,650.86 179.77,660.78 178.43,661.80 180.52,664.52 181.93,663.44 185.49,668.08 189.05,672.72 187.66,673.78 189.92,676.73 191.38,675.61 199.63,686.36 200.76,685.50 203.44,688.99 215.24,679.99 213.06,677.15 228.01,665.74 230.25,668.66 238.29,662.52"/>
    <poly id="89970935" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-442.87,602.36 -443.60,595.44 -457.78,594.32 -461.12,567.58 -474.60,568.22 -474.15,571.22 -473.06,578.61 -470.92,593.08 -469.83,600.44 -469.58,602.15 -458.93,602.24 -449.90,602.30 -442.87,602.36"/>
    <poly id="89970935#1" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="-442.87,602.36 -443.60,595.44 -457.78,594.32 -461.12,567.58 -474.60,568.22 -474.15,571.22 -473.06,578.61 -470.92,593.08 -469.83,600.44 -469.58,602.15 -458.93,602.24 -449.90,602.30 -442.87,602.36"/>
    <poly id="89970939" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-465.85,525.95 -464.70,535.97 -464.50,537.02 -460.71,536.76 -460.62,538.41 -457.14,538.18 -457.26,536.50 -452.32,535.87 -452.10,534.17 -452.12,524.95 -465.85,525.95"/>
    <poly id="89970944" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-566.11,652.11 -552.80,653.30 -550.90,632.16 -564.20,630.97 -566.11,652.11"/>
    <poly id="89971245" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-504.37,555.70 -505.71,555.91 -507.23,556.14 -514.90,557.32 -514.48,560.06 -516.12,560.32 -517.52,560.53 -516.70,565.79 -515.97,570.55 -514.72,570.35 -502.39,568.45 -504.37,555.70"/>
    <poly id="90049969" type="building" color="255,230,230" fill="1" layer="-1.00" shape="98.33,634.06 87.37,627.06 72.08,650.03 75.95,652.59 70.99,660.03 77.97,664.65 84.70,654.55 94.19,640.27 97.45,635.38 98.33,634.06"/>
    <poly id="90049969#1" type="shop" color="237,199,255" fill="1" layer="-1.00" shape="98.33,634.06 87.37,627.06 72.08,650.03 75.95,652.59 70.99,660.03 77.97,664.65 84.70,654.55 94.19,640.27 97.45,635.38 98.33,634.06"/>
    <poly id="90172398" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-478.24,117.95 -458.20,111.88 -461.61,100.70 -462.81,101.06 -465.44,92.44 -465.73,91.89 -466.18,91.47 -466.88,91.19 -467.67,91.23 -470.26,92.02 -471.04,89.51 -480.75,92.46 -479.98,94.98 -482.93,95.87 -483.65,96.26 -484.07,96.74 -484.32,97.43 -484.23,98.33 -481.65,106.78 -478.24,117.95"/>
    <poly id="90185073" type="building" color="255,230,230" fill="1" layer="-1.00" shape="394.30,364.73 395.09,360.49 397.42,348.14 402.07,349.02 403.25,342.73 398.60,341.86 400.51,331.73 383.94,328.66 379.52,328.72 376.53,329.62 373.92,331.13 371.71,333.18 369.71,336.26 368.78,339.05 368.48,342.48 369.05,345.80 370.47,348.95 372.06,350.94 373.80,352.59 375.99,353.92 378.99,354.98 374.90,376.72 385.02,378.61 389.92,384.34 394.41,380.47 401.36,388.48 409.12,381.78 397.26,368.11 394.30,364.73"/>
    <poly id="90185073#1" type="shop" color="237,199,255" fill="1" layer="-1.00" shape="394.30,364.73 395.09,360.49 397.42,348.14 402.07,349.02 403.25,342.73 398.60,341.86 400.51,331.73 383.94,328.66 379.52,328.72 376.53,329.62 373.92,331.13 371.71,333.18 369.71,336.26 368.78,339.05 368.48,342.48 369.05,345.80 370.47,348.95 372.06,350.94 373.80,352.59 375.99,353.92 378.99,354.98 374.90,376.72 385.02,378.61 389.92,384.34 394.41,380.47 401.36,388.48 409.12,381.78 397.26,368.11 394.30,364.73"/>
    <poly id="90185075" type="building" color="255,230,230" fill="1" layer="-1.00" shape="426.90,420.74 408.29,399.62 375.66,428.21 369.40,421.10 368.19,421.53 359.30,447.02 360.53,454.40 365.63,459.78 372.84,462.75 380.79,461.13 406.12,438.95 404.20,436.76 408.03,433.40 409.96,435.58 426.90,420.74"/>
    <poly id="90432773" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-507.42,530.71 -518.59,531.98 -517.06,545.22 -514.29,544.91 -514.19,545.78 -514.08,546.64 -510.19,546.19 -510.39,544.41 -505.90,543.90 -507.42,530.71"/>
    <poly id="90432774" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-477.38,527.27 -493.14,529.06 -491.99,539.08 -476.23,537.29 -477.38,527.27"/>
    <poly id="90432777" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-505.90,543.90 -507.42,530.71 -493.14,529.06 -491.99,539.08 -491.67,541.87 -499.35,542.75 -499.14,544.57 -502.06,544.91 -502.22,543.48 -505.90,543.90"/>
    <poly id="90432778" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-443.37,540.34 -433.84,540.31 -433.88,524.91 -452.12,524.95 -452.10,534.17 -443.39,534.15 -443.37,540.34"/>
    <poly id="90461649" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-166.10,647.27 -152.29,648.06 -149.14,593.65 -162.95,592.86 -166.10,647.27"/>
    <poly id="90461649#1" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-166.10,647.27 -152.29,648.06 -149.14,593.65 -162.95,592.86 -166.10,647.27"/>
    <poly id="90461652" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-103.62,679.81 -63.49,681.50 -63.24,675.71 -65.63,675.61 -65.35,668.90 -91.91,667.78 -100.52,667.42 -100.81,674.24 -103.37,674.12 -103.62,679.81"/>
    <poly id="90461656" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-129.44,644.83 -112.31,645.75 -109.63,596.54 -111.09,596.46 -126.77,595.61 -129.44,644.83"/>
    <poly id="90461659" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-93.72,650.22 -90.85,650.38 -72.48,651.49 -71.47,634.81 -77.01,634.47 -75.01,601.45 -80.44,601.12 -80.30,598.81 -87.52,598.38 -87.46,597.37 -91.63,597.12 -91.69,598.11 -97.60,597.75 -100.60,647.21 -93.57,647.64 -93.72,650.22"/>
    <poly id="90461662" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-156.49,676.57 -117.10,678.85 -116.34,665.77 -155.73,663.50 -156.49,676.57"/>
    <poly id="90461662#1" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-156.49,676.57 -117.10,678.85 -116.34,665.77 -155.73,663.50 -156.49,676.57"/>
    <poly id="90464979" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-533.63,547.23 -521.34,545.86 -522.87,532.19 -535.17,533.56 -534.01,543.90 -533.63,547.23"/>
    <poly id="90584384" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="290.51,560.13 277.04,570.77 299.57,599.10 313.03,588.47 290.51,560.13"/>
    <poly id="90584384#1" type="sport" color="79,230,125" fill="1" layer="-2.00" shape="290.51,560.13 277.04,570.77 299.57,599.10 313.03,588.47 290.51,560.13"/>
    <poly id="90584386" type="leisure" color="207,245,201" fill="1" layer="-2.00" shape="288.52,621.65 315.66,655.64 335.98,639.50 308.83,605.52 288.52,621.65"/>
    <poly id="90584386#1" type="sport" color="79,230,125" fill="1" layer="-2.00" shape="288.52,621.65 315.66,655.64 335.98,639.50 308.83,605.52 288.52,621.65"/>
    <poly id="90979078" type="building" color="255,230,230" fill="1" layer="-1.00" shape="292.09,699.74 304.06,699.48 303.83,688.83 291.87,689.09 292.09,699.74"/>
    <poly id="90979086" type="building" color="255,230,230" fill="1" layer="-1.00" shape="277.79,693.54 280.09,693.45 280.17,695.74 283.96,695.60 283.88,693.33 289.71,693.11 289.49,687.23 277.57,687.66 273.47,687.80 274.14,706.28 274.54,717.16 289.10,716.63 288.76,707.32 288.71,705.76 278.25,706.14 277.79,693.54"/>
    <poly id="90979110" type="building" color="255,230,230" fill="1" layer="-1.00" shape="348.20,692.37 353.10,692.89 353.85,685.74 348.95,685.22 342.93,684.60 341.75,695.86 347.77,696.49 348.20,692.37"/>
    <poly id="92426743" type="shop" color="237,199,255" fill="1" layer="-1.00" shape="53.73,418.61 105.74,404.12 102.46,392.39 95.15,394.42 77.04,399.47 53.95,405.91 50.45,406.88 53.73,418.61"/>
    <poly id="93338344" type="building" color="255,230,230" fill="1" layer="-1.00" shape="6.71,549.69 15.86,550.23 35.89,551.39 36.11,547.61 36.89,534.22 20.71,533.27 14.54,532.94 7.71,532.53 6.71,549.69"/>
    <poly id="93338359" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-211.00,389.46 -200.07,386.22 -196.26,398.98 -207.20,402.22 -211.00,389.46"/>
    <poly id="93338360" type="amenity" color="237,199,199" fill="1" layer="-1.00" shape="-350.00,447.06 -317.42,439.81 -315.99,570.16 -347.16,570.00 -376.69,569.94 -376.64,551.22 -369.85,551.23 -369.78,523.76 -371.38,523.76 -371.31,497.22 -369.33,497.23 -369.26,471.02 -376.03,471.00 -375.94,451.89 -350.00,447.06"/>
    <poly id="93338375" type="building" color="255,230,230" fill="1" layer="-1.00" shape="18.77,584.41 38.21,585.69 39.01,573.52 19.58,572.25 18.77,584.41"/>
    <poly id="98861997" type="building" color="255,230,230" fill="1" layer="-1.00" shape="-389.57,285.65 -400.46,288.83 -399.06,293.59 -400.43,293.99 -405.65,295.52 -405.22,296.99 -405.81,298.29 -406.12,299.67 -406.14,301.09 -405.88,302.49 -405.35,303.81 -404.56,304.99 -403.54,306.00 -402.35,306.76 -401.83,308.53 -396.60,307.00 -360.70,296.51 -361.52,293.73 -364.52,283.50 -366.40,284.05 -386.94,290.05 -388.17,290.42 -389.57,285.65"/>
    <poly id="99341234" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="15.31,566.23 15.86,550.23 35.89,551.39 36.11,547.61 36.89,534.22 36.97,532.34 54.89,533.92 50.77,561.33 45.87,560.97 45.44,570.92 41.23,570.75 17.99,569.83 18.10,566.33 15.31,566.23"/>
    <poly id="99341506" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="404.50,329.11 426.59,354.26 428.50,356.32 430.86,358.86 433.44,356.47 437.03,360.33 441.36,356.36 446.78,362.07 442.40,366.12 444.28,368.15 448.69,364.08 455.57,371.33 451.08,375.47 453.27,377.82 457.78,373.66 465.91,382.23 462.86,385.06 462.12,385.74 461.31,386.49 474.77,402.72 449.77,423.59 419.65,389.04 408.29,399.62 375.66,428.21 369.40,421.10 367.16,418.97 368.78,414.79 370.33,408.79 371.20,401.86 368.60,402.29 368.75,376.90 372.08,376.29 370.47,348.95 372.06,350.94 373.80,352.59 375.99,353.92 378.99,354.98 374.90,376.72 385.02,378.61 389.92,384.34 394.41,380.47 401.36,388.48 409.12,381.78 397.26,368.11 399.68,366.03 396.73,362.63 395.09,360.49 397.42,348.14 402.07,349.02 403.25,342.73 398.60,341.86 400.51,331.73 404.50,329.11"/>
    <poly id="99343300" type="parking" color="184,184,179" fill="1" layer="-1.00" shape="571.02,-73.92 559.43,-98.23 555.39,-107.06 546.42,-104.03 522.19,-96.09 520.47,-101.32 516.88,-100.15 492.04,-92.02 496.33,-79.01 464.01,-68.73 459.61,-82.97 458.32,-86.65 461.39,-98.11 489.77,-107.80 490.78,-104.30 562.03,-125.65 563.44,-120.38 566.57,-121.38 572.15,-108.71 569.62,-107.32 583.76,-77.89 571.02,-73.92"/>
    <poly id="99346980" type="landuse" color="194,194,130" fill="1" layer="-3.00" shape="483.05,44.12 472.16,48.72 463.66,51.71 458.99,53.72 453.73,55.55 449.75,56.30 443.40,56.98 439.26,57.11 436.53,56.49 434.08,54.84 432.10,52.33 429.42,45.75 419.23,19.30 401.24,-32.71 396.42,-47.11 393.73,-56.39 390.58,-66.12 389.34,-70.84 389.86,-75.24 391.54,-80.07 394.05,-84.07 397.77,-87.45 401.42,-90.42 404.99,-92.16 411.36,-94.33 418.49,-96.61 435.46,-102.21 436.01,-102.37 440.93,-103.81 449.33,-105.99 456.94,-108.54 490.04,-122.99 500.22,-127.29 510.24,-130.91 537.62,-139.19 563.53,-145.57 644.61,25.77 638.39,24.62 628.24,22.72 600.16,18.44 590.15,18.11 562.10,19.49 537.42,23.59 519.03,29.98 510.50,33.52 507.21,34.89 503.91,36.26 483.05,44.12"/>
    <poly id="99347368" type="water" color="181,209,209" fill="0" layer="-4.00" shape="558.44,-194.24 543.61,-189.53"/>
    <poly id="99347369" type="water" color="181,209,209" fill="0" layer="-4.00" shape="543.61,-189.53 536.77,-187.58"/>
    <poi id="1045479091" type="amenity" color="237,199,199" layer="4.00" x="-149.29" y="403.27"/>
    <poi id="1045503021" type="amenity" color="237,199,199" layer="4.00" x="-426.11" y="154.22"/>
    <poi id="1175063440" type="building" color="255,230,230" layer="4.00" x="79.63" y="8.52"/>
    <poi id="1364678754" type="amenity" color="237,199,199" layer="4.00" x="-533.39" y="401.22"/>
    <poi id="1394555642" type="amenity" color="237,199,199" layer="4.00" x="-459.96" y="-269.10"/>
    <poi id="1478836953" type="amenity" color="237,199,199" layer="4.00" x="509.32" y="255.62"/>
    <poi id="1480007542" type="tourism" color="207,245,201" layer="3.00" x="-225.00" y="-37.63"/>
    <poi id="1481171754" type="amenity" color="237,199,199" layer="4.00" x="-582.73" y="273.57"/>
    <poi id="1481255653" type="amenity" color="237,199,199" layer="4.00" x="-498.31" y="367.04"/>
    <poi id="1481256042" type="amenity" color="237,199,199" layer="4.00" x="-202.72" y="499.99"/>
    <poi id="1481256066" type="amenity" color="237,199,199" layer="4.00" x="-553.91" y="516.26"/>
    <poi id="1481257288" type="historic" color="128,255,128" layer="4.00" x="-496.10" y="365.77"/>
    <poi id="1624380715" type="natural" color="140,196,107" layer="1.00" x="683.00" y="191.30"/>
    <poi id="1624380719" type="natural" color="140,196,107" layer="1.00" x="625.48" y="158.47"/>
    <poi id="1624380750" type="natural" color="140,196,107" layer="1.00" x="650.20" y="159.84"/>
    <poi id="1624380757" type="natural" color="140,196,107" layer="1.00" x="684.50" y="181.89"/>
    <poi id="1624380761" type="natural" color="140,196,107" layer="1.00" x="700.00" y="209.57"/>
    <poi id="1624380767" type="natural" color="140,196,107" layer="1.00" x="683.09" y="203.02"/>
    <poi id="1624380771" type="natural" color="140,196,107" layer="1.00" x="659.23" y="159.77"/>
    <poi id="1625073685" type="amenity" color="237,199,199" layer="4.00" x="-496.47" y="-38.88"/>
    <poi id="1659568848" type="amenity" color="237,199,199" layer="4.00" x="-587.68" y="73.82"/>
    <poi id="1727368901" type="amenity" color="237,199,199" layer="4.00" x="138.40" y="283.78"/>
    <poi id="1788534869" type="shop" color="237,199,255" layer="4.00" x="-389.02" y="401.85"/>
    <poi id="1919760504" type="parking" color="184,184,179" layer="4.00" x="-489.89" y="-48.42"/>
    <poi id="1935312100" type="amenity" color="237,199,199" layer="4.00" x="-634.40" y="669.67"/>
    <poi id="1935312100#1" type="leisure" color="207,245,201" layer="3.00" x="-634.40" y="669.67"/>
    <poi id="1935312100#2" type="shop" color="237,199,255" layer="4.00" x="-634.40" y="669.67"/>
    <poi id="2006057473" type="natural" color="140,196,107" layer="1.00" x="149.84" y="445.89"/>
    <poi id="2006057479" type="natural" color="140,196,107" layer="1.00" x="60.74" y="453.73"/>
    <poi id="2006057480" type="natural" color="140,196,107" layer="1.00" x="151.78" y="453.52"/>
    <poi id="2006057482" type="natural" color="140,196,107" layer="1.00" x="56.48" y="455.15"/>
    <poi id="2006057487" type="natural" color="140,196,107" layer="1.00" x="52.06" y="456.19"/>
    <poi id="2006057490" type="natural" color="140,196,107" layer="1.00" x="117.52" y="456.13"/>
    <poi id="2006057495" type="natural" color="140,196,107" layer="1.00" x="153.97" y="460.05"/>
    <poi id="2006057498" type="natural" color="140,196,107" layer="1.00" x="119.18" y="462.81"/>
    <poi id="2006057501" type="natural" color="140,196,107" layer="1.00" x="137.41" y="464.82"/>
    <poi id="2006057510" type="natural" color="140,196,107" layer="1.00" x="155.64" y="467.17"/>
    <poi id="2006057513" type="natural" color="140,196,107" layer="1.00" x="121.02" y="469.35"/>
    <poi id="2006057516" type="natural" color="140,196,107" layer="1.00" x="139.52" y="472.20"/>
    <poi id="2006057519" type="natural" color="140,196,107" layer="1.00" x="157.79" y="474.66"/>
    <poi id="2006057522" type="natural" color="140,196,107" layer="1.00" x="123.36" y="477.58"/>
    <poi id="2006057525" type="natural" color="140,196,107" layer="1.00" x="141.32" y="479.42"/>
    <poi id="2006057527" type="natural" color="140,196,107" layer="1.00" x="20.26" y="480.54"/>
    <poi id="2006057530" type="natural" color="140,196,107" layer="1.00" x="32.14" y="481.51"/>
    <poi id="2006057533" type="natural" color="140,196,107" layer="1.00" x="159.95" y="482.23"/>
    <poi id="2006057536" type="natural" color="140,196,107" layer="1.00" x="125.29" y="484.17"/>
    <poi id="2006057539" type="natural" color="140,196,107" layer="1.00" x="143.34" y="486.23"/>
    <poi id="2006057542" type="natural" color="140,196,107" layer="1.00" x="162.02" y="489.48"/>
    <poi id="2006057545" type="natural" color="140,196,107" layer="1.00" x="127.36" y="491.29"/>
    <poi id="2006057547" type="natural" color="140,196,107" layer="1.00" x="145.45" y="493.53"/>
    <poi id="2006057548" type="natural" color="140,196,107" layer="1.00" x="23.98" y="495.29"/>
    <poi id="2006057553" type="natural" color="140,196,107" layer="1.00" x="30.98" y="495.79"/>
    <poi id="2006057558" type="natural" color="140,196,107" layer="1.00" x="129.56" y="499.27"/>
    <poi id="2006057563" type="natural" color="140,196,107" layer="1.00" x="20.63" y="512.55"/>
    <poi id="2006057566" type="natural" color="140,196,107" layer="1.00" x="23.28" y="512.62"/>
    <poi id="2006057569" type="natural" color="140,196,107" layer="1.00" x="25.31" y="512.79"/>
    <poi id="2006057577" type="natural" color="140,196,107" layer="1.00" x="28.89" y="512.96"/>
    <poi id="2006057584" type="natural" color="140,196,107" layer="1.00" x="34.45" y="513.10"/>
    <poi id="2061065676" type="leisure" color="207,245,201" layer="3.00" x="-657.04" y="491.04"/>
    <poi id="2061065676#1" type="shop" color="237,199,255" layer="4.00" x="-657.04" y="491.04"/>
    <poi id="2066910164" type="natural" color="140,196,107" layer="1.00" x="-567.51" y="-281.40"/>
    <poi id="2066910165" type="natural" color="140,196,107" layer="1.00" x="-572.68" y="-280.57"/>
    <poi id="2066910166" type="natural" color="140,196,107" layer="1.00" x="-576.80" y="-277.05"/>
    <poi id="2066910167" type="natural" color="140,196,107" layer="1.00" x="-562.02" y="-276.79"/>
    <poi id="2066910168" type="natural" color="140,196,107" layer="1.00" x="-580.31" y="-272.46"/>
    <poi id="2066910169" type="natural" color="140,196,107" layer="1.00" x="-561.61" y="-271.43"/>
    <poi id="2066910170" type="natural" color="140,196,107" layer="1.00" x="-582.63" y="-266.96"/>
    <poi id="2066910171" type="natural" color="140,196,107" layer="1.00" x="-562.19" y="-265.22"/>
    <poi id="2066910172" type="natural" color="140,196,107" layer="1.00" x="-583.97" y="-261.11"/>
    <poi id="2066910173" type="natural" color="140,196,107" layer="1.00" x="-565.59" y="-258.06"/>
    <poi id="2066910174" type="natural" color="140,196,107" layer="1.00" x="-583.54" y="-254.15"/>
    <poi id="2066910175" type="natural" color="140,196,107" layer="1.00" x="-569.02" y="-253.08"/>
    <poi id="2066910176" type="natural" color="140,196,107" layer="1.00" x="-579.34" y="-249.61"/>
    <poi id="2066910177" type="natural" color="140,196,107" layer="1.00" x="-573.75" y="-249.63"/>
    <poi id="2285186109" type="amenity" color="237,199,199" layer="4.00" x="-405.40" y="-37.99"/>
    <poi id="2350938140" type="shop" color="237,199,255" layer="4.00" x="83.33" y="382.18"/>
    <poi id="2352273711" type="amenity" color="237,199,199" layer="4.00" x="-440.59" y="79.10"/>
    <poi id="2446032761" type="parking" color="184,184,179" layer="4.00" x="325.61" y="388.36"/>
    <poi id="2508917214" type="tourism" color="207,245,201" layer="3.00" x="402.12" y="-38.25"/>
    <poi id="2556913655" type="amenity" color="237,199,199" layer="4.00" x="138.44" y="454.34"/>
    <poi id="2573486964" type="natural" color="140,196,107" layer="1.00" x="-469.87" y="69.84"/>
    <poi id="2573486987" type="natural" color="140,196,107" layer="1.00" x="-456.15" y="73.72"/>
    <poi id="2573487010" type="natural" color="140,196,107" layer="1.00" x="-492.23" y="76.96"/>
    <poi id="2573487032" type="natural" color="140,196,107" layer="1.00" x="-446.20" y="82.25"/>
    <poi id="2573487055" type="natural" color="140,196,107" layer="1.00" x="-499.93" y="87.36"/>
    <poi id="2573487078" type="natural" color="140,196,107" layer="1.00" x="-440.78" y="93.62"/>
    <poi id="2573487101" type="natural" color="140,196,107" layer="1.00" x="-503.63" y="101.57"/>
    <poi id="2573487125" type="natural" color="140,196,107" layer="1.00" x="-501.75" y="113.76"/>
    <poi id="2574449465" type="natural" color="140,196,107" layer="1.00" x="-433.01" y="265.42"/>
    <poi id="2574449466" type="natural" color="140,196,107" layer="1.00" x="-431.87" y="271.40"/>
    <poi id="2574449467" type="natural" color="140,196,107" layer="1.00" x="-430.31" y="279.41"/>
    <poi id="2574449470" type="natural" color="140,196,107" layer="1.00" x="-428.96" y="287.35"/>
    <poi id="2574449472" type="natural" color="140,196,107" layer="1.00" x="-427.21" y="294.79"/>
    <poi id="2574449475" type="natural" color="140,196,107" layer="1.00" x="-425.62" y="302.80"/>
    <poi id="2575700405" type="building" color="255,230,230" layer="4.00" x="-407.96" y="276.64"/>
    <poi id="2575700406" type="building" color="255,230,230" layer="4.00" x="-406.87" y="282.30"/>
    <poi id="2575700407" type="building" color="255,230,230" layer="4.00" x="-405.78" y="287.96"/>
    <poi id="2578479548" type="natural" color="140,196,107" layer="1.00" x="-637.98" y="-225.12"/>
    <poi id="2578479549" type="natural" color="140,196,107" layer="1.00" x="-665.58" y="-219.53"/>
    <poi id="2578479550" type="natural" color="140,196,107" layer="1.00" x="-609.82" y="-212.08"/>
    <poi id="2578479551" type="natural" color="140,196,107" layer="1.00" x="-564.98" y="-204.18"/>
    <poi id="2578479552" type="natural" color="140,196,107" layer="1.00" x="-606.02" y="-202.54"/>
    <poi id="2578479554" type="natural" color="140,196,107" layer="1.00" x="-593.56" y="-197.34"/>
    <poi id="2578479555" type="natural" color="140,196,107" layer="1.00" x="-559.30" y="-196.74"/>
    <poi id="2578479556" type="natural" color="140,196,107" layer="1.00" x="-604.54" y="-193.13"/>
    <poi id="2578479557" type="natural" color="140,196,107" layer="1.00" x="-612.88" y="-190.42"/>
    <poi id="2578479559" type="natural" color="140,196,107" layer="1.00" x="-590.50" y="-187.05"/>
    <poi id="2578479560" type="natural" color="140,196,107" layer="1.00" x="-566.23" y="-183.85"/>
    <poi id="2578479561" type="natural" color="140,196,107" layer="1.00" x="-601.32" y="-183.57"/>
    <poi id="2578479562" type="natural" color="140,196,107" layer="1.00" x="-641.65" y="-181.87"/>
    <poi id="2578479563" type="natural" color="140,196,107" layer="1.00" x="-611.16" y="-181.35"/>
    <poi id="2578479565" type="natural" color="140,196,107" layer="1.00" x="-660.90" y="-176.69"/>
    <poi id="2578479566" type="natural" color="140,196,107" layer="1.00" x="-630.00" y="-175.68"/>
    <poi id="2578479567" type="natural" color="140,196,107" layer="1.00" x="-601.49" y="-173.50"/>
    <poi id="2578479568" type="natural" color="140,196,107" layer="1.00" x="-639.09" y="-172.81"/>
    <poi id="2578479571" type="natural" color="140,196,107" layer="1.00" x="-609.34" y="-170.96"/>
    <poi id="2578479572" type="natural" color="140,196,107" layer="1.00" x="-648.67" y="-170.25"/>
    <poi id="2578479573" type="natural" color="140,196,107" layer="1.00" x="-618.02" y="-168.10"/>
    <poi id="2578479574" type="natural" color="140,196,107" layer="1.00" x="-627.20" y="-166.29"/>
    <poi id="2578479575" type="natural" color="140,196,107" layer="1.00" x="-616.47" y="-160.67"/>
    <poi id="2578479576" type="natural" color="140,196,107" layer="1.00" x="-624.22" y="-155.82"/>
    <poi id="2578499352" type="natural" color="140,196,107" layer="1.00" x="-473.53" y="-242.48"/>
    <poi id="2578499353" type="natural" color="140,196,107" layer="1.00" x="-482.78" y="-238.94"/>
    <poi id="2578499354" type="natural" color="140,196,107" layer="1.00" x="-492.69" y="-235.73"/>
    <poi id="2578499355" type="natural" color="140,196,107" layer="1.00" x="-541.31" y="-231.22"/>
    <poi id="2578499356" type="natural" color="140,196,107" layer="1.00" x="-538.55" y="-222.94"/>
    <poi id="2578499357" type="natural" color="140,196,107" layer="1.00" x="-509.96" y="-221.99"/>
    <poi id="2578499358" type="natural" color="140,196,107" layer="1.00" x="-504.39" y="-212.81"/>
    <poi id="2578499359" type="natural" color="140,196,107" layer="1.00" x="-546.65" y="-209.69"/>
    <poi id="2578499360" type="natural" color="140,196,107" layer="1.00" x="-514.09" y="-209.59"/>
    <poi id="2578499361" type="natural" color="140,196,107" layer="1.00" x="-556.35" y="-207.64"/>
    <poi id="2578499362" type="natural" color="140,196,107" layer="1.00" x="-524.84" y="-206.24"/>
    <poi id="2578499363" type="natural" color="140,196,107" layer="1.00" x="-501.13" y="-200.22"/>
    <poi id="2578499364" type="natural" color="140,196,107" layer="1.00" x="-513.30" y="-198.26"/>
    <poi id="2578499365" type="natural" color="140,196,107" layer="1.00" x="-523.34" y="-194.22"/>
    <poi id="2578499366" type="natural" color="140,196,107" layer="1.00" x="-537.84" y="-190.83"/>
    <poi id="2578499367" type="natural" color="140,196,107" layer="1.00" x="-531.86" y="-189.71"/>
    <poi id="2578499368" type="natural" color="140,196,107" layer="1.00" x="-538.62" y="-186.16"/>
    <poi id="2583806345" type="natural" color="140,196,107" layer="1.00" x="-458.76" y="-334.67"/>
    <poi id="2583806347" type="natural" color="140,196,107" layer="1.00" x="-434.93" y="-333.39"/>
    <poi id="2583806350" type="natural" color="140,196,107" layer="1.00" x="-502.21" y="-331.80"/>
    <poi id="2583806354" type="natural" color="140,196,107" layer="1.00" x="-448.06" y="-328.40"/>
    <poi id="2583806356" type="natural" color="140,196,107" layer="1.00" x="-490.84" y="-325.55"/>
    <poi id="2583806358" type="natural" color="140,196,107" layer="1.00" x="-482.18" y="-320.13"/>
    <poi id="2583806361" type="natural" color="140,196,107" layer="1.00" x="-471.14" y="-313.54"/>
    <poi id="2583806365" type="natural" color="140,196,107" layer="1.00" x="-460.74" y="-307.71"/>
    <poi id="2583806368" type="natural" color="140,196,107" layer="1.00" x="-449.71" y="-302.31"/>
    <poi id="2583806371" type="natural" color="140,196,107" layer="1.00" x="-408.20" y="-300.58"/>
    <poi id="2583806375" type="natural" color="140,196,107" layer="1.00" x="-438.88" y="-295.94"/>
    <poi id="2583806377" type="natural" color="140,196,107" layer="1.00" x="-398.68" y="-295.40"/>
    <poi id="2583806380" type="natural" color="140,196,107" layer="1.00" x="-429.67" y="-290.00"/>
    <poi id="2583806382" type="natural" color="140,196,107" layer="1.00" x="-389.91" y="-290.09"/>
    <poi id="2583806385" type="natural" color="140,196,107" layer="1.00" x="-379.42" y="-283.51"/>
    <poi id="2583806387" type="natural" color="140,196,107" layer="1.00" x="-417.90" y="-282.77"/>
    <poi id="2583806390" type="natural" color="140,196,107" layer="1.00" x="-369.25" y="-277.67"/>
    <poi id="2583806391" type="natural" color="140,196,107" layer="1.00" x="-408.94" y="-277.21"/>
    <poi id="2583806392" type="natural" color="140,196,107" layer="1.00" x="-399.60" y="-271.66"/>
    <poi id="2583806393" type="natural" color="140,196,107" layer="1.00" x="-359.08" y="-271.10"/>
    <poi id="2583806394" type="natural" color="140,196,107" layer="1.00" x="-390.33" y="-266.26"/>
    <poi id="2583806395" type="natural" color="140,196,107" layer="1.00" x="-348.59" y="-265.06"/>
    <poi id="2583806396" type="natural" color="140,196,107" layer="1.00" x="-380.23" y="-260.02"/>
    <poi id="2583806404" type="natural" color="140,196,107" layer="1.00" x="-338.63" y="-258.68"/>
    <poi id="2583806409" type="natural" color="140,196,107" layer="1.00" x="-370.65" y="-253.02"/>
    <poi id="2583806411" type="natural" color="140,196,107" layer="1.00" x="-328.24" y="-251.47"/>
    <poi id="2583806414" type="natural" color="140,196,107" layer="1.00" x="-359.71" y="-247.02"/>
    <poi id="2583806416" type="natural" color="140,196,107" layer="1.00" x="-318.28" y="-244.88"/>
    <poi id="2583806418" type="natural" color="140,196,107" layer="1.00" x="-349.98" y="-241.32"/>
    <poi id="2583806421" type="natural" color="140,196,107" layer="1.00" x="-307.89" y="-238.62"/>
    <poi id="2583806426" type="natural" color="140,196,107" layer="1.00" x="-340.01" y="-234.09"/>
    <poi id="2583806430" type="natural" color="140,196,107" layer="1.00" x="-298.15" y="-231.93"/>
    <poi id="2583806435" type="natural" color="140,196,107" layer="1.00" x="-330.06" y="-227.71"/>
    <poi id="2583806440" type="natural" color="140,196,107" layer="1.00" x="-319.72" y="-221.17"/>
    <poi id="2583806443" type="natural" color="140,196,107" layer="1.00" x="-278.67" y="-219.07"/>
    <poi id="2583806449" type="natural" color="140,196,107" layer="1.00" x="-309.46" y="-214.64"/>
    <poi id="2583806458" type="natural" color="140,196,107" layer="1.00" x="-268.71" y="-211.74"/>
    <poi id="2583806466" type="natural" color="140,196,107" layer="1.00" x="-299.42" y="-208.25"/>
    <poi id="2583806468" type="natural" color="140,196,107" layer="1.00" x="-309.63" y="-206.41"/>
    <poi id="2583806470" type="natural" color="140,196,107" layer="1.00" x="-259.07" y="-204.84"/>
    <poi id="2583806473" type="natural" color="140,196,107" layer="1.00" x="-289.84" y="-201.56"/>
    <poi id="2583806475" type="natural" color="140,196,107" layer="1.00" x="-299.37" y="-199.59"/>
    <poi id="2583806477" type="natural" color="140,196,107" layer="1.00" x="-279.28" y="-195.02"/>
    <poi id="2583806480" type="natural" color="140,196,107" layer="1.00" x="-290.72" y="-193.73"/>
    <poi id="2583806487" type="natural" color="140,196,107" layer="1.00" x="-239.21" y="-192.05"/>
    <poi id="2583806491" type="natural" color="140,196,107" layer="1.00" x="-269.77" y="-188.34"/>
    <poi id="2583806508" type="natural" color="140,196,107" layer="1.00" x="-228.69" y="-184.60"/>
    <poi id="2583806510" type="natural" color="140,196,107" layer="1.00" x="-261.12" y="-182.62"/>
    <poi id="2583806519" type="natural" color="140,196,107" layer="1.00" x="-270.67" y="-180.66"/>
    <poi id="2583806532" type="natural" color="140,196,107" layer="1.00" x="-219.27" y="-177.06"/>
    <poi id="2583806567" type="natural" color="140,196,107" layer="1.00" x="-209.62" y="-169.60"/>
    <poi id="2583806584" type="natural" color="140,196,107" layer="1.00" x="-198.15" y="-162.15"/>
    <poi id="2583806632" type="natural" color="140,196,107" layer="1.00" x="-229.47" y="-152.51"/>
    <poi id="2583806648" type="natural" color="140,196,107" layer="1.00" x="-219.59" y="-145.29"/>
    <poi id="2583806658" type="natural" color="140,196,107" layer="1.00" x="-166.05" y="-140.19"/>
    <poi id="2583806660" type="natural" color="140,196,107" layer="1.00" x="-209.78" y="-138.46"/>
    <poi id="2583806663" type="natural" color="140,196,107" layer="1.00" x="-156.64" y="-133.44"/>
    <poi id="2583806666" type="natural" color="140,196,107" layer="1.00" x="-200.60" y="-131.31"/>
    <poi id="2583806669" type="natural" color="140,196,107" layer="1.00" x="-146.67" y="-125.91"/>
    <poi id="2583806671" type="natural" color="140,196,107" layer="1.00" x="-190.80" y="-125.02"/>
    <poi id="2583806686" type="natural" color="140,196,107" layer="1.00" x="-137.18" y="-119.00"/>
    <poi id="2583806690" type="natural" color="140,196,107" layer="1.00" x="-181.54" y="-117.57"/>
    <poi id="2583806694" type="natural" color="140,196,107" layer="1.00" x="-163.33" y="-112.29"/>
    <poi id="2583806696" type="natural" color="140,196,107" layer="1.00" x="-128.55" y="-111.60"/>
    <poi id="2583806698" type="natural" color="140,196,107" layer="1.00" x="-172.12" y="-109.86"/>
    <poi id="2583806701" type="natural" color="140,196,107" layer="1.00" x="-119.62" y="-105.63"/>
    <poi id="2583806703" type="natural" color="140,196,107" layer="1.00" x="-154.23" y="-105.22"/>
    <poi id="2583806705" type="natural" color="140,196,107" layer="1.00" x="-162.86" y="-103.20"/>
    <poi id="2583806710" type="natural" color="140,196,107" layer="1.00" x="-145.21" y="-98.30"/>
    <poi id="2583806712" type="natural" color="140,196,107" layer="1.00" x="-154.88" y="-97.44"/>
    <poi id="2583806715" type="natural" color="140,196,107" layer="1.00" x="-109.25" y="-97.47"/>
    <poi id="2583806717" type="natural" color="140,196,107" layer="1.00" x="-135.40" y="-91.08"/>
    <poi id="2583806719" type="natural" color="140,196,107" layer="1.00" x="-100.54" y="-90.16"/>
    <poi id="2583806721" type="natural" color="140,196,107" layer="1.00" x="-145.14" y="-89.29"/>
    <poi id="2583806723" type="natural" color="140,196,107" layer="1.00" x="-126.38" y="-84.01"/>
    <poi id="2583806726" type="natural" color="140,196,107" layer="1.00" x="-91.12" y="-82.86"/>
    <poi id="2583806728" type="natural" color="140,196,107" layer="1.00" x="-135.49" y="-81.82"/>
    <poi id="2583806730" type="natural" color="140,196,107" layer="1.00" x="-117.44" y="-76.86"/>
    <poi id="2583806735" type="natural" color="140,196,107" layer="1.00" x="-83.68" y="-76.95"/>
    <poi id="2583806737" type="natural" color="140,196,107" layer="1.00" x="-126.15" y="-74.68"/>
    <poi id="2583806740" type="natural" color="140,196,107" layer="1.00" x="-75.70" y="-70.97"/>
    <poi id="2583806742" type="natural" color="140,196,107" layer="1.00" x="-107.31" y="-69.56"/>
    <poi id="2583806744" type="natural" color="140,196,107" layer="1.00" x="-117.13" y="-68.38"/>
    <poi id="2583806747" type="natural" color="140,196,107" layer="1.00" x="-64.56" y="-65.33"/>
    <poi id="2583806749" type="natural" color="140,196,107" layer="1.00" x="-98.76" y="-62.33"/>
    <poi id="2583806751" type="natural" color="140,196,107" layer="1.00" x="-108.19" y="-60.46"/>
    <poi id="2583806754" type="natural" color="140,196,107" layer="1.00" x="-54.67" y="-57.48"/>
    <poi id="2583806756" type="natural" color="140,196,107" layer="1.00" x="-89.58" y="-54.95"/>
    <poi id="2583806758" type="natural" color="140,196,107" layer="1.00" x="-98.77" y="-53.47"/>
    <poi id="2583806763" type="natural" color="140,196,107" layer="1.00" x="-45.57" y="-50.33"/>
    <poi id="2583806765" type="natural" color="140,196,107" layer="1.00" x="-80.01" y="-47.64"/>
    <poi id="2583806772" type="natural" color="140,196,107" layer="1.00" x="-89.05" y="-46.40"/>
    <poi id="2583806774" type="natural" color="140,196,107" layer="1.00" x="-37.02" y="-43.49"/>
    <poi id="2583806776" type="natural" color="140,196,107" layer="1.00" x="-71.07" y="-40.33"/>
    <poi id="2583806778" type="natural" color="140,196,107" layer="1.00" x="-79.46" y="-38.47"/>
    <poi id="2583806780" type="natural" color="140,196,107" layer="1.00" x="-26.82" y="-35.88"/>
    <poi id="2583806783" type="natural" color="140,196,107" layer="1.00" x="-61.81" y="-33.34"/>
    <poi id="2583806785" type="natural" color="140,196,107" layer="1.00" x="-70.06" y="-32.18"/>
    <poi id="2583806787" type="natural" color="140,196,107" layer="1.00" x="-17.73" y="-29.67"/>
    <poi id="2583806791" type="natural" color="140,196,107" layer="1.00" x="-53.25" y="-25.96"/>
    <poi id="2583806793" type="natural" color="140,196,107" layer="1.00" x="-60.88" y="-25.19"/>
    <poi id="2583806795" type="natural" color="140,196,107" layer="1.00" x="-44.08" y="-19.04"/>
    <poi id="2583806797" type="natural" color="140,196,107" layer="1.00" x="-51.62" y="-17.89"/>
    <poi id="25929964" type="amenity" color="237,199,199" layer="4.00" x="-386.86" y="450.40"/>
    <poi id="25929965" type="amenity" color="237,199,199" layer="4.00" x="-370.72" y="463.85"/>
    <poi id="25932263" type="amenity" color="237,199,199" layer="4.00" x="100.62" y="-59.62"/>
    <poi id="25932264" type="amenity" color="237,199,199" layer="4.00" x="34.00" y="-31.16"/>
    <poi id="25932425" type="amenity" color="237,199,199" layer="4.00" x="-557.21" y="540.90"/>
    <poi id="2628862758" type="amenity" color="237,199,199" layer="4.00" x="-493.78" y="366.73"/>
    <poi id="2628862768" type="amenity" color="237,199,199" layer="4.00" x="-495.63" y="369.15"/>
    <poi id="28089415" type="amenity" color="237,199,199" layer="4.00" x="-456.36" y="223.68"/>
    <poi id="2888273607" type="leisure" color="207,245,201" layer="3.00" x="-571.91" y="65.23"/>
    <poi id="2926163677" type="amenity" color="237,199,199" layer="4.00" x="-471.43" y="-42.55"/>
    <poi id="2926163684" type="amenity" color="237,199,199" layer="4.00" x="-489.96" y="-1.61"/>
    <poi id="2926163685" type="amenity" color="237,199,199" layer="4.00" x="-487.70" y="0.32"/>
    <poi id="2926163690" type="amenity" color="237,199,199" layer="4.00" x="-515.71" y="5.96"/>
    <poi id="2926163693" type="amenity" color="237,199,199" layer="4.00" x="-513.71" y="7.87"/>
    <poi id="2958957174" type="amenity" color="237,199,199" layer="4.00" x="-3.18" y="18.19"/>
    <poi id="3054647382" type="leisure" color="207,245,201" layer="3.00" x="385.99" y="436.49"/>
    <poi id="3054647382#1" type="sport" color="79,230,125" layer="3.00" x="385.99" y="436.49"/>
    <poi id="31261877" type="amenity" color="237,199,199" layer="4.00" x="-664.39" y="555.04"/>
    <poi id="31261881" type="leisure" color="207,245,201" layer="3.00" x="-424.49" y="461.45"/>
    <poi id="31261882" type="leisure" color="207,245,201" layer="3.00" x="-424.77" y="562.28"/>
    <poi id="31261883" type="amenity" color="237,199,199" layer="4.00" x="-389.79" y="430.90"/>
    <poi id="31261885" type="amenity" color="237,199,199" layer="4.00" x="-546.29" y="383.25"/>
    <poi id="3148131617" type="natural" color="140,196,107" layer="1.00" x="20.81" y="32.35"/>
    <poi id="3148131619" type="natural" color="140,196,107" layer="1.00" x="32.73" y="42.46"/>
    <poi id="3148131620" type="natural" color="140,196,107" layer="1.00" x="44.81" y="52.51"/>
    <poi id="3148131622" type="natural" color="140,196,107" layer="1.00" x="56.08" y="61.37"/>
    <poi id="3148131623" type="natural" color="140,196,107" layer="1.00" x="68.00" y="70.38"/>
    <poi id="3148131627" type="natural" color="140,196,107" layer="1.00" x="80.31" y="79.86"/>
    <poi id="3148131628" type="natural" color="140,196,107" layer="1.00" x="100.04" y="94.65"/>
    <poi id="3148131730" type="natural" color="140,196,107" layer="1.00" x="93.78" y="103.63"/>
    <poi id="3148131731" type="natural" color="140,196,107" layer="1.00" x="111.47" y="104.38"/>
    <poi id="3148131732" type="natural" color="140,196,107" layer="1.00" x="106.17" y="112.40"/>
    <poi id="3148131733" type="natural" color="140,196,107" layer="1.00" x="123.71" y="114.03"/>
    <poi id="3148131735" type="natural" color="140,196,107" layer="1.00" x="118.49" y="122.76"/>
    <poi id="3148131736" type="natural" color="140,196,107" layer="1.00" x="134.98" y="123.44"/>
    <poi id="3148131738" type="natural" color="140,196,107" layer="1.00" x="130.07" y="129.78"/>
    <poi id="3148131742" type="natural" color="140,196,107" layer="1.00" x="219.59" y="167.01"/>
    <poi id="3148131743" type="natural" color="140,196,107" layer="1.00" x="198.25" y="173.49"/>
    <poi id="3148131744" type="natural" color="140,196,107" layer="1.00" x="233.60" y="178.42"/>
    <poi id="3148131745" type="natural" color="140,196,107" layer="1.00" x="209.47" y="182.32"/>
    <poi id="3148131747" type="natural" color="140,196,107" layer="1.00" x="245.10" y="187.58"/>
    <poi id="3148131748" type="natural" color="140,196,107" layer="1.00" x="221.48" y="192.22"/>
    <poi id="3148131749" type="natural" color="140,196,107" layer="1.00" x="256.89" y="197.44"/>
    <poi id="3148131750" type="natural" color="140,196,107" layer="1.00" x="233.43" y="201.50"/>
    <poi id="3148131751" type="natural" color="140,196,107" layer="1.00" x="268.33" y="206.77"/>
    <poi id="3148131753" type="natural" color="140,196,107" layer="1.00" x="244.94" y="211.52"/>
    <poi id="3148131754" type="natural" color="140,196,107" layer="1.00" x="279.56" y="216.46"/>
    <poi id="3148131755" type="natural" color="140,196,107" layer="1.00" x="255.87" y="220.98"/>
    <poi id="3148131756" type="natural" color="140,196,107" layer="1.00" x="291.85" y="226.69"/>
    <poi id="3148131757" type="natural" color="140,196,107" layer="1.00" x="267.32" y="229.69"/>
    <poi id="3148131759" type="natural" color="140,196,107" layer="1.00" x="303.08" y="237.22"/>
    <poi id="3148131760" type="natural" color="140,196,107" layer="1.00" x="279.28" y="239.93"/>
    <poi id="3148131761" type="natural" color="140,196,107" layer="1.00" x="314.04" y="249.04"/>
    <poi id="3148131762" type="natural" color="140,196,107" layer="1.00" x="290.39" y="250.35"/>
    <poi id="3148131765" type="natural" color="140,196,107" layer="1.00" x="300.15" y="261.73"/>
    <poi id="3148131766" type="natural" color="140,196,107" layer="1.00" x="325.28" y="261.71"/>
    <poi id="3148131767" type="natural" color="140,196,107" layer="1.00" x="309.74" y="272.83"/>
    <poi id="3148131768" type="natural" color="140,196,107" layer="1.00" x="334.49" y="274.74"/>
    <poi id="3148131770" type="natural" color="140,196,107" layer="1.00" x="318.26" y="285.30"/>
    <poi id="3148131771" type="natural" color="140,196,107" layer="1.00" x="341.84" y="288.79"/>
    <poi id="3148131772" type="natural" color="140,196,107" layer="1.00" x="325.26" y="297.15"/>
    <poi id="3148131773" type="natural" color="140,196,107" layer="1.00" x="348.63" y="304.26"/>
    <poi id="3148131774" type="natural" color="140,196,107" layer="1.00" x="331.53" y="311.16"/>
    <poi id="3158129231" type="amenity" color="237,199,199" layer="4.00" x="551.31" y="454.44"/>
    <poi id="3173331492" type="building" color="255,230,230" layer="4.00" x="-71.44" y="-101.00"/>
    <poi id="3173331493" type="building" color="255,230,230" layer="4.00" x="482.65" y="337.97"/>
    <poi id="3197444395" type="building" color="255,230,230" layer="4.00" x="177.44" y="344.77"/>
    <poi id="3226315896" type="building" color="255,230,230" layer="4.00" x="-368.23" y="-298.84"/>
    <poi id="3241202755" type="amenity" color="237,199,199" layer="4.00" x="-416.39" y="131.46"/>
    <poi id="3294327573" type="amenity" color="237,199,199" layer="4.00" x="326.43" y="-88.38"/>
    <poi id="3328570886" type="amenity" color="237,199,199" layer="4.00" x="86.54" y="275.10"/>
    <poi id="3330613052" type="natural" color="140,196,107" layer="1.00" x="-621.14" y="-276.05"/>
    <poi id="3330613057" type="natural" color="140,196,107" layer="1.00" x="-526.42" y="-266.88"/>
    <poi id="3330613059" type="natural" color="140,196,107" layer="1.00" x="-411.67" y="-258.91"/>
    <poi id="3330613061" type="natural" color="140,196,107" layer="1.00" x="-390.89" y="-254.18"/>
    <poi id="3330613062" type="natural" color="140,196,107" layer="1.00" x="-430.58" y="-253.57"/>
    <poi id="3330613063" type="natural" color="140,196,107" layer="1.00" x="-398.60" y="-252.87"/>
    <poi id="3330613065" type="natural" color="140,196,107" layer="1.00" x="-379.88" y="-252.47"/>
    <poi id="3330613066" type="natural" color="140,196,107" layer="1.00" x="-441.40" y="-251.08"/>
    <poi id="3330613067" type="natural" color="140,196,107" layer="1.00" x="-408.48" y="-249.53"/>
    <poi id="3330613068" type="natural" color="140,196,107" layer="1.00" x="-387.78" y="-245.72"/>
    <poi id="3330613069" type="natural" color="140,196,107" layer="1.00" x="-429.25" y="-243.77"/>
    <poi id="3330613070" type="natural" color="140,196,107" layer="1.00" x="-397.67" y="-243.54"/>
    <poi id="3330613071" type="natural" color="140,196,107" layer="1.00" x="-377.47" y="-243.54"/>
    <poi id="3330613073" type="natural" color="140,196,107" layer="1.00" x="-386.24" y="-236.79"/>
    <poi id="3330613074" type="natural" color="140,196,107" layer="1.00" x="-374.12" y="-232.76"/>
    <poi id="3330613076" type="natural" color="140,196,107" layer="1.00" x="-380.80" y="-229.60"/>
    <poi id="3330613077" type="natural" color="140,196,107" layer="1.00" x="-372.26" y="-223.44"/>
    <poi id="3330613079" type="natural" color="140,196,107" layer="1.00" x="-369.06" y="-213.52"/>
    <poi id="3330613080" type="natural" color="140,196,107" layer="1.00" x="-366.72" y="-203.58"/>
    <poi id="3330613083" type="natural" color="140,196,107" layer="1.00" x="-363.85" y="-194.19"/>
    <poi id="3330613084" type="natural" color="140,196,107" layer="1.00" x="-361.22" y="-186.05"/>
    <poi id="3330613086" type="natural" color="140,196,107" layer="1.00" x="-358.96" y="-176.50"/>
    <poi id="3330613089" type="natural" color="140,196,107" layer="1.00" x="-355.77" y="-166.73"/>
    <poi id="3330613090" type="natural" color="140,196,107" layer="1.00" x="-353.20" y="-157.57"/>
    <poi id="3330613091" type="natural" color="140,196,107" layer="1.00" x="-350.57" y="-149.03"/>
    <poi id="3330613092" type="natural" color="140,196,107" layer="1.00" x="-348.00" y="-139.65"/>
    <poi id="3330613598" type="natural" color="140,196,107" layer="1.00" x="537.38" y="-137.43"/>
    <poi id="3330613601" type="natural" color="140,196,107" layer="1.00" x="526.87" y="-133.85"/>
    <poi id="3330613602" type="natural" color="140,196,107" layer="1.00" x="515.69" y="-130.94"/>
    <poi id="3330613604" type="natural" color="140,196,107" layer="1.00" x="505.95" y="-127.45"/>
    <poi id="3330613606" type="natural" color="140,196,107" layer="1.00" x="493.55" y="-122.92"/>
    <poi id="3330613607" type="natural" color="140,196,107" layer="1.00" x="539.95" y="-122.79"/>
    <poi id="3330613610" type="natural" color="140,196,107" layer="1.00" x="534.84" y="-120.57"/>
    <poi id="3330613611" type="natural" color="140,196,107" layer="1.00" x="482.10" y="-117.44"/>
    <poi id="3330613615" type="natural" color="140,196,107" layer="1.00" x="512.03" y="-113.12"/>
    <poi id="3330613616" type="natural" color="140,196,107" layer="1.00" x="471.70" y="-112.73"/>
    <poi id="3330613687" type="natural" color="140,196,107" layer="1.00" x="358.54" y="-56.27"/>
    <poi id="3330613944" type="natural" color="140,196,107" layer="1.00" x="366.12" y="-31.34"/>
    <poi id="3330613962" type="natural" color="140,196,107" layer="1.00" x="368.75" y="-21.34"/>
    <poi id="3330613972" type="natural" color="140,196,107" layer="1.00" x="372.26" y="-9.26"/>
    <poi id="3330613975" type="natural" color="140,196,107" layer="1.00" x="374.50" y="-1.98"/>
    <poi id="3330613976" type="natural" color="140,196,107" layer="1.00" x="-53.35" y="2.17"/>
    <poi id="3330613977" type="natural" color="140,196,107" layer="1.00" x="-65.48" y="5.42"/>
    <poi id="3330613978" type="natural" color="140,196,107" layer="1.00" x="-84.77" y="10.93"/>
    <poi id="3330613979" type="natural" color="140,196,107" layer="1.00" x="-93.84" y="13.63"/>
    <poi id="3330613980" type="natural" color="140,196,107" layer="1.00" x="-104.70" y="16.87"/>
    <poi id="3330613981" type="natural" color="140,196,107" layer="1.00" x="-119.03" y="21.30"/>
    <poi id="3330613982" type="natural" color="140,196,107" layer="1.00" x="-128.84" y="24.22"/>
    <poi id="3330613983" type="natural" color="140,196,107" layer="1.00" x="377.52" y="21.56"/>
    <poi id="3330613984" type="natural" color="140,196,107" layer="1.00" x="-13.63" y="26.43"/>
    <poi id="3330613985" type="natural" color="140,196,107" layer="1.00" x="-140.22" y="27.77"/>
    <poi id="3330613986" type="natural" color="140,196,107" layer="1.00" x="-26.48" y="29.29"/>
    <poi id="3330613987" type="natural" color="140,196,107" layer="1.00" x="-162.26" y="33.53"/>
    <poi id="3330613988" type="natural" color="140,196,107" layer="1.00" x="-40.05" y="32.75"/>
    <poi id="3330613989" type="natural" color="140,196,107" layer="1.00" x="380.54" y="32.51"/>
    <poi id="3330613990" type="natural" color="140,196,107" layer="1.00" x="-53.09" y="36.93"/>
    <poi id="3330613991" type="natural" color="140,196,107" layer="1.00" x="-65.96" y="40.28"/>
    <poi id="3330613992" type="natural" color="140,196,107" layer="1.00" x="-188.81" y="42.04"/>
    <poi id="3330614193" type="natural" color="140,196,107" layer="1.00" x="-80.93" y="45.14"/>
    <poi id="3330614194" type="natural" color="140,196,107" layer="1.00" x="-206.95" y="46.81"/>
    <poi id="3330614195" type="natural" color="140,196,107" layer="1.00" x="384.04" y="44.96"/>
    <poi id="3330614196" type="natural" color="140,196,107" layer="1.00" x="-218.55" y="50.06"/>
    <poi id="3330614197" type="natural" color="140,196,107" layer="1.00" x="-92.94" y="49.54"/>
    <poi id="3330614198" type="natural" color="140,196,107" layer="1.00" x="-106.97" y="52.92"/>
    <poi id="3330614199" type="natural" color="140,196,107" layer="1.00" x="-239.95" y="55.70"/>
    <poi id="3330614200" type="natural" color="140,196,107" layer="1.00" x="-120.77" y="56.92"/>
    <poi id="3330614201" type="natural" color="140,196,107" layer="1.00" x="386.96" y="55.07"/>
    <poi id="3330614202" type="natural" color="140,196,107" layer="1.00" x="-259.25" y="60.90"/>
    <poi id="3330614203" type="natural" color="140,196,107" layer="1.00" x="-134.69" y="60.92"/>
    <poi id="3330614204" type="natural" color="140,196,107" layer="1.00" x="-148.29" y="64.28"/>
    <poi id="3330614205" type="natural" color="140,196,107" layer="1.00" x="-276.43" y="66.30"/>
    <poi id="3330614206" type="natural" color="140,196,107" layer="1.00" x="389.80" y="66.69"/>
    <poi id="3330614207" type="natural" color="140,196,107" layer="1.00" x="381.60" y="73.38"/>
    <poi id="3330614208" type="natural" color="140,196,107" layer="1.00" x="-318.80" y="79.46"/>
    <poi id="3330614209" type="natural" color="140,196,107" layer="1.00" x="-470.46" y="81.61"/>
    <poi id="3330614210" type="natural" color="140,196,107" layer="1.00" x="-182.09" y="79.71"/>
    <poi id="3330614211" type="natural" color="140,196,107" layer="1.00" x="371.48" y="77.80"/>
    <poi id="3330614212" type="natural" color="140,196,107" layer="1.00" x="-191.25" y="84.09"/>
    <poi id="3330614213" type="natural" color="140,196,107" layer="1.00" x="-338.83" y="85.50"/>
    <poi id="3330614214" type="natural" color="140,196,107" layer="1.00" x="361.25" y="80.62"/>
    <poi id="3330614215" type="natural" color="140,196,107" layer="1.00" x="-202.22" y="86.81"/>
    <poi id="3330614216" type="natural" color="140,196,107" layer="1.00" x="353.20" y="82.76"/>
    <poi id="3330614217" type="natural" color="140,196,107" layer="1.00" x="-353.60" y="88.88"/>
    <poi id="3330614218" type="natural" color="140,196,107" layer="1.00" x="-211.71" y="89.19"/>
    <poi id="3330614219" type="natural" color="140,196,107" layer="1.00" x="343.54" y="85.85"/>
    <poi id="3330614220" type="natural" color="140,196,107" layer="1.00" x="-367.40" y="93.62"/>
    <poi id="3330614221" type="natural" color="140,196,107" layer="1.00" x="-221.28" y="93.59"/>
    <poi id="3330614222" type="natural" color="140,196,107" layer="1.00" x="333.23" y="89.53"/>
    <poi id="3330614223" type="natural" color="140,196,107" layer="1.00" x="-228.35" y="95.43"/>
    <poi id="3330614224" type="natural" color="140,196,107" layer="1.00" x="325.28" y="92.23"/>
    <poi id="3330614225" type="natural" color="140,196,107" layer="1.00" x="-381.42" y="97.52"/>
    <poi id="3330614226" type="natural" color="140,196,107" layer="1.00" x="-252.30" y="99.30"/>
    <poi id="3330614227" type="natural" color="140,196,107" layer="1.00" x="-262.54" y="100.32"/>
    <poi id="3330614228" type="natural" color="140,196,107" layer="1.00" x="-395.33" y="102.79"/>
    <poi id="3330614229" type="natural" color="140,196,107" layer="1.00" x="-269.28" y="104.16"/>
    <poi id="3330614230" type="natural" color="140,196,107" layer="1.00" x="-407.24" y="105.40"/>
    <poi id="3330614231" type="natural" color="140,196,107" layer="1.00" x="413.20" y="100.58"/>
    <poi id="3330614232" type="natural" color="140,196,107" layer="1.00" x="429.78" y="110.01"/>
    <poi id="3330614233" type="natural" color="140,196,107" layer="1.00" x="380.73" y="110.75"/>
    <poi id="3330614234" type="natural" color="140,196,107" layer="1.00" x="477.51" y="110.79"/>
    <poi id="3330614235" type="natural" color="140,196,107" layer="1.00" x="368.23" y="113.40"/>
    <poi id="3330614236" type="natural" color="140,196,107" layer="1.00" x="350.34" y="118.73"/>
    <poi id="3330614237" type="natural" color="140,196,107" layer="1.00" x="434.32" y="121.33"/>
    <poi id="3330614238" type="natural" color="140,196,107" layer="1.00" x="383.77" y="123.79"/>
    <poi id="3330614239" type="natural" color="140,196,107" layer="1.00" x="328.85" y="125.22"/>
    <poi id="3330614240" type="natural" color="140,196,107" layer="1.00" x="439.15" y="132.55"/>
    <poi id="3330614241" type="natural" color="140,196,107" layer="1.00" x="502.93" y="134.83"/>
    <poi id="3330614242" type="natural" color="140,196,107" layer="1.00" x="442.82" y="141.61"/>
    <poi id="3330614243" type="natural" color="140,196,107" layer="1.00" x="458.30" y="142.25"/>
    <poi id="3330614244" type="natural" color="140,196,107" layer="1.00" x="458.62" y="147.93"/>
    <poi id="3330614245" type="natural" color="140,196,107" layer="1.00" x="447.07" y="151.23"/>
    <poi id="3330614246" type="natural" color="140,196,107" layer="1.00" x="-437.25" y="165.68"/>
    <poi id="3330614247" type="natural" color="140,196,107" layer="1.00" x="470.37" y="159.00"/>
    <poi id="3330614248" type="natural" color="140,196,107" layer="1.00" x="450.56" y="160.95"/>
    <poi id="3330614249" type="natural" color="140,196,107" layer="1.00" x="464.17" y="166.62"/>
    <poi id="3330614250" type="natural" color="140,196,107" layer="1.00" x="454.90" y="170.28"/>
    <poi id="3330614251" type="natural" color="140,196,107" layer="1.00" x="476.49" y="177.60"/>
    <poi id="3330614252" type="natural" color="140,196,107" layer="1.00" x="458.58" y="180.19"/>
    <poi id="3330614253" type="natural" color="140,196,107" layer="1.00" x="184.68" y="184.53"/>
    <poi id="3330614254" type="natural" color="140,196,107" layer="1.00" x="175.17" y="185.91"/>
    <poi id="3330614255" type="natural" color="140,196,107" layer="1.00" x="-425.38" y="190.45"/>
    <poi id="3330614256" type="natural" color="140,196,107" layer="1.00" x="168.41" y="188.68"/>
    <poi id="3330614257" type="natural" color="140,196,107" layer="1.00" x="158.62" y="191.98"/>
    <poi id="3330614258" type="natural" color="140,196,107" layer="1.00" x="463.60" y="192.74"/>
    <poi id="3330614259" type="natural" color="140,196,107" layer="1.00" x="201.97" y="197.12"/>
    <poi id="3330614260" type="natural" color="140,196,107" layer="1.00" x="498.54" y="196.74"/>
    <poi id="3330614261" type="natural" color="140,196,107" layer="1.00" x="186.43" y="202.48"/>
    <poi id="3330614262" type="natural" color="140,196,107" layer="1.00" x="179.96" y="204.54"/>
    <poi id="3330614263" type="natural" color="140,196,107" layer="1.00" x="170.58" y="207.43"/>
    <poi id="3330614264" type="natural" color="140,196,107" layer="1.00" x="161.88" y="208.81"/>
    <poi id="3330614265" type="natural" color="140,196,107" layer="1.00" x="468.35" y="206.61"/>
    <poi id="3330614266" type="natural" color="140,196,107" layer="1.00" x="218.05" y="209.51"/>
    <poi id="3330614267" type="natural" color="140,196,107" layer="1.00" x="153.60" y="211.29"/>
    <poi id="3330614268" type="natural" color="140,196,107" layer="1.00" x="204.23" y="215.26"/>
    <poi id="3330614269" type="natural" color="140,196,107" layer="1.00" x="198.47" y="216.61"/>
    <poi id="3330614270" type="natural" color="140,196,107" layer="1.00" x="224.88" y="216.42"/>
    <poi id="3330614271" type="natural" color="140,196,107" layer="1.00" x="190.49" y="218.39"/>
    <poi id="3330614272" type="natural" color="140,196,107" layer="1.00" x="472.03" y="217.18"/>
    <poi id="3330614273" type="natural" color="140,196,107" layer="1.00" x="181.21" y="221.68"/>
    <poi id="3330614274" type="natural" color="140,196,107" layer="1.00" x="171.82" y="224.99"/>
    <poi id="3330614275" type="natural" color="140,196,107" layer="1.00" x="467.72" y="224.30"/>
    <poi id="3330614276" type="natural" color="140,196,107" layer="1.00" x="164.44" y="226.56"/>
    <poi id="3330614277" type="natural" color="140,196,107" layer="1.00" x="227.48" y="226.09"/>
    <poi id="3330614278" type="natural" color="140,196,107" layer="1.00" x="157.87" y="228.32"/>
    <poi id="3330614279" type="natural" color="140,196,107" layer="1.00" x="218.35" y="229.57"/>
    <poi id="3330614280" type="natural" color="140,196,107" layer="1.00" x="475.72" y="227.66"/>
    <poi id="3330614281" type="natural" color="140,196,107" layer="1.00" x="149.49" y="230.30"/>
    <poi id="3330614282" type="natural" color="140,196,107" layer="1.00" x="211.23" y="231.58"/>
    <poi id="3330614283" type="natural" color="140,196,107" layer="1.00" x="204.11" y="233.59"/>
    <poi id="3330614284" type="natural" color="140,196,107" layer="1.00" x="196.98" y="235.60"/>
    <poi id="3330614286" type="natural" color="140,196,107" layer="1.00" x="471.13" y="236.01"/>
    <poi id="3330614287" type="natural" color="140,196,107" layer="1.00" x="189.85" y="237.61"/>
    <poi id="3330614288" type="natural" color="140,196,107" layer="1.00" x="182.73" y="239.62"/>
    <poi id="3330614291" type="natural" color="140,196,107" layer="1.00" x="479.60" y="240.20"/>
    <poi id="3330614295" type="natural" color="140,196,107" layer="1.00" x="154.23" y="247.65"/>
    <poi id="3330614296" type="natural" color="140,196,107" layer="1.00" x="147.11" y="249.66"/>
    <poi id="3330614297" type="natural" color="140,196,107" layer="1.00" x="177.67" y="250.07"/>
    <poi id="3330614298" type="natural" color="140,196,107" layer="1.00" x="476.53" y="248.27"/>
    <poi id="3330614299" type="natural" color="140,196,107" layer="1.00" x="242.04" y="250.81"/>
    <poi id="3330614300" type="natural" color="140,196,107" layer="1.00" x="234.97" y="252.57"/>
    <poi id="3330614301" type="natural" color="140,196,107" layer="1.00" x="484.53" y="252.37"/>
    <poi id="3330614302" type="natural" color="140,196,107" layer="1.00" x="226.18" y="254.45"/>
    <poi id="3330614303" type="natural" color="140,196,107" layer="1.00" x="164.96" y="255.91"/>
    <poi id="3330614304" type="natural" color="140,196,107" layer="1.00" x="157.19" y="258.19"/>
    <poi id="3330614305" type="natural" color="140,196,107" layer="1.00" x="149.20" y="260.48"/>
    <poi id="3330614306" type="natural" color="140,196,107" layer="1.00" x="277.84" y="261.54"/>
    <poi id="3330614307" type="natural" color="140,196,107" layer="1.00" x="480.32" y="260.45"/>
    <poi id="3330614308" type="natural" color="140,196,107" layer="1.00" x="255.80" y="264.42"/>
    <poi id="3330614309" type="natural" color="140,196,107" layer="1.00" x="247.82" y="266.71"/>
    <poi id="3330614310" type="natural" color="140,196,107" layer="1.00" x="488.99" y="265.68"/>
    <poi id="3330614311" type="natural" color="140,196,107" layer="1.00" x="239.34" y="269.19"/>
    <poi id="3330614312" type="natural" color="140,196,107" layer="1.00" x="220.86" y="274.17"/>
    <poi id="3330614313" type="natural" color="140,196,107" layer="1.00" x="485.54" y="273.37"/>
    <poi id="3330614314" type="natural" color="140,196,107" layer="1.00" x="282.50" y="275.23"/>
    <poi id="3330614315" type="natural" color="140,196,107" layer="1.00" x="214.79" y="275.83"/>
    <poi id="3330614316" type="natural" color="140,196,107" layer="1.00" x="492.86" y="276.44"/>
    <poi id="3330614317" type="natural" color="140,196,107" layer="1.00" x="269.47" y="278.55"/>
    <poi id="3330614318" type="natural" color="140,196,107" layer="1.00" x="358.92" y="280.26"/>
    <poi id="3330614319" type="natural" color="140,196,107" layer="1.00" x="260.48" y="281.44"/>
    <poi id="3330614320" type="natural" color="140,196,107" layer="1.00" x="489.32" y="285.08"/>
    <poi id="3330614321" type="natural" color="140,196,107" layer="1.00" x="365.72" y="288.82"/>
    <poi id="3330614322" type="natural" color="140,196,107" layer="1.00" x="226.45" y="291.18"/>
    <poi id="3330614323" type="natural" color="140,196,107" layer="1.00" x="219.27" y="293.05"/>
    <poi id="3330614324" type="natural" color="140,196,107" layer="1.00" x="357.22" y="293.62"/>
    <poi id="3330614325" type="natural" color="140,196,107" layer="1.00" x="385.16" y="307.95"/>
    <poi id="3330614326" type="natural" color="140,196,107" layer="1.00" x="375.83" y="308.15"/>
    <poi id="3330614327" type="natural" color="140,196,107" layer="1.00" x="399.15" y="309.90"/>
    <poi id="3330614328" type="natural" color="140,196,107" layer="1.00" x="361.47" y="311.82"/>
    <poi id="3330614329" type="natural" color="140,196,107" layer="1.00" x="408.92" y="314.62"/>
    <poi id="3330614330" type="natural" color="140,196,107" layer="1.00" x="380.84" y="323.24"/>
    <poi id="3330614331" type="natural" color="140,196,107" layer="1.00" x="397.62" y="323.40"/>
    <poi id="3330614332" type="natural" color="140,196,107" layer="1.00" x="337.11" y="325.39"/>
    <poi id="3330614333" type="natural" color="140,196,107" layer="1.00" x="421.62" y="325.05"/>
    <poi id="3330614334" type="natural" color="140,196,107" layer="1.00" x="365.95" y="328.37"/>
    <poi id="3330614335" type="natural" color="140,196,107" layer="1.00" x="412.11" y="329.88"/>
    <poi id="3330614336" type="natural" color="140,196,107" layer="1.00" x="428.10" y="330.61"/>
    <poi id="3330614337" type="natural" color="140,196,107" layer="1.00" x="358.35" y="336.55"/>
    <poi id="3330614338" type="natural" color="140,196,107" layer="1.00" x="341.06" y="339.69"/>
    <poi id="3330614339" type="natural" color="140,196,107" layer="1.00" x="439.56" y="341.46"/>
    <poi id="3330614340" type="natural" color="140,196,107" layer="1.00" x="424.02" y="341.77"/>
    <poi id="3330614341" type="natural" color="140,196,107" layer="1.00" x="446.47" y="349.34"/>
    <poi id="3330614342" type="natural" color="140,196,107" layer="1.00" x="360.88" y="351.61"/>
    <poi id="3330614343" type="natural" color="140,196,107" layer="1.00" x="343.28" y="353.40"/>
    <poi id="3330614344" type="natural" color="140,196,107" layer="1.00" x="438.29" y="356.50"/>
    <poi id="3330614345" type="natural" color="140,196,107" layer="1.00" x="458.07" y="360.74"/>
    <poi id="3330614346" type="natural" color="140,196,107" layer="1.00" x="446.17" y="365.06"/>
    <poi id="3330614347" type="natural" color="140,196,107" layer="1.00" x="362.26" y="366.39"/>
    <poi id="3330614348" type="natural" color="140,196,107" layer="1.00" x="344.63" y="369.63"/>
    <poi id="3330614349" type="natural" color="140,196,107" layer="1.00" x="454.19" y="373.60"/>
    <poi id="3330614350" type="natural" color="140,196,107" layer="1.00" x="362.36" y="380.11"/>
    <poi id="3330614351" type="natural" color="140,196,107" layer="1.00" x="343.93" y="385.37"/>
    <poi id="3330614352" type="natural" color="140,196,107" layer="1.00" x="361.30" y="395.88"/>
    <poi id="3330614353" type="natural" color="140,196,107" layer="1.00" x="343.83" y="399.71"/>
    <poi id="3330614354" type="natural" color="140,196,107" layer="1.00" x="359.48" y="411.36"/>
    <poi id="3330614355" type="natural" color="140,196,107" layer="1.00" x="339.99" y="414.68"/>
    <poi id="3330614356" type="natural" color="140,196,107" layer="1.00" x="520.96" y="417.68"/>
    <poi id="3330614357" type="natural" color="140,196,107" layer="1.00" x="356.49" y="426.46"/>
    <poi id="3330614358" type="natural" color="140,196,107" layer="1.00" x="337.27" y="429.43"/>
    <poi id="3330614359" type="natural" color="140,196,107" layer="1.00" x="426.88" y="436.33"/>
    <poi id="3330614360" type="natural" color="140,196,107" layer="1.00" x="352.23" y="440.60"/>
    <poi id="3330614361" type="natural" color="140,196,107" layer="1.00" x="331.21" y="444.30"/>
    <poi id="3330614362" type="natural" color="140,196,107" layer="1.00" x="417.42" y="443.97"/>
    <poi id="3330614363" type="natural" color="140,196,107" layer="1.00" x="346.23" y="454.66"/>
    <poi id="3330614364" type="natural" color="140,196,107" layer="1.00" x="325.34" y="458.17"/>
    <poi id="3330614365" type="natural" color="140,196,107" layer="1.00" x="402.55" y="458.81"/>
    <poi id="3330614366" type="natural" color="140,196,107" layer="1.00" x="350.58" y="464.44"/>
    <poi id="3330614367" type="natural" color="140,196,107" layer="1.00" x="395.81" y="464.60"/>
    <poi id="3330614368" type="natural" color="140,196,107" layer="1.00" x="355.76" y="468.23"/>
    <poi id="3330614369" type="natural" color="140,196,107" layer="1.00" x="319.56" y="470.32"/>
    <poi id="3330614370" type="natural" color="140,196,107" layer="1.00" x="362.76" y="470.39"/>
    <poi id="3330614371" type="natural" color="140,196,107" layer="1.00" x="350.26" y="476.24"/>
    <poi id="3330614372" type="natural" color="140,196,107" layer="1.00" x="334.96" y="478.62"/>
    <poi id="3330614373" type="natural" color="140,196,107" layer="1.00" x="357.37" y="479.83"/>
    <poi id="3330614374" type="natural" color="140,196,107" layer="1.00" x="310.85" y="483.19"/>
    <poi id="3330614375" type="natural" color="140,196,107" layer="1.00" x="301.42" y="495.28"/>
    <poi id="3330614376" type="natural" color="140,196,107" layer="1.00" x="325.01" y="495.13"/>
    <poi id="3330614377" type="natural" color="140,196,107" layer="1.00" x="318.39" y="505.04"/>
    <poi id="3330614378" type="natural" color="140,196,107" layer="1.00" x="291.49" y="506.75"/>
    <poi id="3330614379" type="natural" color="140,196,107" layer="1.00" x="281.84" y="516.20"/>
    <poi id="3330614380" type="natural" color="140,196,107" layer="1.00" x="307.65" y="519.42"/>
    <poi id="3330614381" type="natural" color="140,196,107" layer="1.00" x="268.77" y="527.10"/>
    <poi id="3330614382" type="natural" color="140,196,107" layer="1.00" x="296.74" y="531.93"/>
    <poi id="3330614383" type="natural" color="140,196,107" layer="1.00" x="260.62" y="533.31"/>
    <poi id="3330614384" type="natural" color="140,196,107" layer="1.00" x="275.80" y="534.21"/>
    <poi id="3330614385" type="natural" color="140,196,107" layer="1.00" x="250.65" y="540.96"/>
    <poi id="3330614386" type="natural" color="140,196,107" layer="1.00" x="267.06" y="542.15"/>
    <poi id="3330614387" type="natural" color="140,196,107" layer="1.00" x="284.86" y="544.38"/>
    <poi id="3330614388" type="natural" color="140,196,107" layer="1.00" x="256.29" y="550.80"/>
    <poi id="3330614389" type="natural" color="140,196,107" layer="1.00" x="273.86" y="553.55"/>
    <poi id="3330614390" type="natural" color="140,196,107" layer="1.00" x="267.60" y="559.17"/>
    <poi id="3330614391" type="natural" color="140,196,107" layer="1.00" x="257.35" y="565.25"/>
    <poi id="3330614392" type="natural" color="140,196,107" layer="1.00" x="245.63" y="572.32"/>
    <poi id="3330614493" type="natural" color="140,196,107" layer="1.00" x="214.57" y="573.41"/>
    <poi id="3330614494" type="natural" color="140,196,107" layer="1.00" x="237.41" y="578.12"/>
    <poi id="3330614495" type="natural" color="140,196,107" layer="1.00" x="201.58" y="582.78"/>
    <poi id="3330614496" type="natural" color="140,196,107" layer="1.00" x="227.86" y="584.05"/>
    <poi id="3330614497" type="natural" color="140,196,107" layer="1.00" x="193.73" y="588.80"/>
    <poi id="3330614498" type="natural" color="140,196,107" layer="1.00" x="217.97" y="590.97"/>
    <poi id="3330614499" type="natural" color="140,196,107" layer="1.00" x="186.39" y="595.11"/>
    <poi id="3330614500" type="natural" color="140,196,107" layer="1.00" x="207.72" y="597.19"/>
    <poi id="3330614501" type="natural" color="140,196,107" layer="1.00" x="177.84" y="602.54"/>
    <poi id="3330614502" type="natural" color="140,196,107" layer="1.00" x="196.57" y="605.43"/>
    <poi id="3330614503" type="natural" color="140,196,107" layer="1.00" x="189.34" y="611.71"/>
    <poi id="3330614504" type="natural" color="140,196,107" layer="1.00" x="164.27" y="613.84"/>
    <poi id="3330614505" type="natural" color="140,196,107" layer="1.00" x="180.01" y="619.87"/>
    <poi id="3330614506" type="natural" color="140,196,107" layer="1.00" x="156.13" y="622.67"/>
    <poi id="3330614507" type="natural" color="140,196,107" layer="1.00" x="172.70" y="625.52"/>
    <poi id="3330614508" type="natural" color="140,196,107" layer="1.00" x="147.99" y="629.49"/>
    <poi id="3330614509" type="natural" color="140,196,107" layer="1.00" x="164.16" y="634.93"/>
    <poi id="3330614510" type="natural" color="140,196,107" layer="1.00" x="156.99" y="642.04"/>
    <poi id="3330614511" type="natural" color="140,196,107" layer="1.00" x="117.98" y="649.29"/>
    <poi id="3330614512" type="natural" color="140,196,107" layer="1.00" x="150.54" y="649.21"/>
    <poi id="3330614513" type="natural" color="140,196,107" layer="1.00" x="142.90" y="658.35"/>
    <poi id="3330614515" type="natural" color="140,196,107" layer="1.00" x="110.07" y="661.16"/>
    <poi id="3330614516" type="natural" color="140,196,107" layer="1.00" x="102.96" y="671.20"/>
    <poi id="3330614517" type="natural" color="140,196,107" layer="1.00" x="166.73" y="673.45"/>
    <poi id="3330614518" type="natural" color="140,196,107" layer="1.00" x="128.88" y="673.84"/>
    <poi id="3330614520" type="natural" color="140,196,107" layer="1.00" x="123.19" y="683.26"/>
    <poi id="3330614521" type="natural" color="140,196,107" layer="1.00" x="176.13" y="686.99"/>
    <poi id="3330614522" type="natural" color="140,196,107" layer="1.00" x="164.80" y="687.39"/>
    <poi id="3330614523" type="natural" color="140,196,107" layer="1.00" x="-60.21" y="691.88"/>
    <poi id="3330614524" type="natural" color="140,196,107" layer="1.00" x="-45.42" y="693.39"/>
    <poi id="3330614525" type="natural" color="140,196,107" layer="1.00" x="-28.62" y="693.77"/>
    <poi id="3330614526" type="natural" color="140,196,107" layer="1.00" x="115.67" y="693.20"/>
    <poi id="3334031068" type="amenity" color="237,199,199" layer="4.00" x="-435.17" y="205.06"/>
    <poi id="3334031069" type="amenity" color="237,199,199" layer="4.00" x="-450.92" y="188.02"/>
    <poi id="3338542156" type="amenity" color="237,199,199" layer="4.00" x="-442.76" y="317.65"/>
    <poi id="3394202817" type="leisure" color="207,245,201" layer="3.00" x="60.86" y="242.23"/>
    <poi id="3394472873" type="leisure" color="207,245,201" layer="3.00" x="18.00" y="167.48"/>
    <poi id="3573711095" type="amenity" color="237,199,199" layer="4.00" x="-566.04" y="-76.01"/>
    <poi id="3610478628" type="amenity" color="237,199,199" layer="4.00" x="-0.39" y="45.08"/>
    <poi id="3610484996" type="amenity" color="237,199,199" layer="4.00" x="-475.62" y="162.41"/>
    <poi id="3650363521" type="shop" color="237,199,255" layer="4.00" x="46.52" y="493.15"/>
    <poi id="3656667350" type="building" color="255,230,230" layer="4.00" x="-489.87" y="5.40"/>
    <poi id="3656667369" type="amenity" color="237,199,199" layer="4.00" x="-427.84" y="112.61"/>
    <poi id="3656667372" type="building" color="255,230,230" layer="4.00" x="-427.57" y="136.96"/>
    <poi id="3656698826" type="amenity" color="237,199,199" layer="4.00" x="-428.40" y="46.99"/>
    <poi id="366105581" type="amenity" color="237,199,199" layer="4.00" x="56.96" y="686.14"/>
    <poi id="3662217534" type="leisure" color="207,245,201" layer="3.00" x="233.27" y="529.76"/>
    <poi id="3662217536" type="natural" color="140,196,107" layer="1.00" x="27.90" y="398.12"/>
    <poi id="3662217537" type="natural" color="140,196,107" layer="1.00" x="7.53" y="404.33"/>
    <poi id="3664639206" type="amenity" color="237,199,199" layer="4.00" x="197.04" y="444.20"/>
    <poi id="3665155494" type="natural" color="140,196,107" layer="1.00" x="-433.77" y="180.87"/>
    <poi id="3665155500" type="natural" color="140,196,107" layer="1.00" x="-430.69" y="194.23"/>
    <poi id="3665155505" type="natural" color="140,196,107" layer="1.00" x="-427.24" y="209.25"/>
    <poi id="3665155510" type="natural" color="140,196,107" layer="1.00" x="-423.99" y="223.40"/>
    <poi id="3665155515" type="tourism" color="207,245,201" layer="3.00" x="-428.98" y="231.49"/>
    <poi id="3665155524" type="natural" color="140,196,107" layer="1.00" x="-419.40" y="244.51"/>
    <poi id="3665155940" type="natural" color="140,196,107" layer="1.00" x="-416.25" y="260.89"/>
    <poi id="3665155943" type="building" color="255,230,230" layer="4.00" x="-424.18" y="263.62"/>
    <poi id="3665155947" type="natural" color="140,196,107" layer="1.00" x="-413.53" y="275.04"/>
    <poi id="3665155952" type="building" color="255,230,230" layer="4.00" x="-418.78" y="289.08"/>
    <poi id="3665155953" type="natural" color="140,196,107" layer="1.00" x="-410.79" y="289.26"/>
    <poi id="3665155991" type="amenity" color="237,199,199" layer="4.00" x="-395.05" y="333.82"/>
    <poi id="3666250052" type="amenity" color="237,199,199" layer="4.00" x="-543.64" y="186.11"/>
    <poi id="3666250054" type="amenity" color="237,199,199" layer="4.00" x="-471.96" y="181.66"/>
    <poi id="3666250056" type="shop" color="237,199,255" layer="4.00" x="-478.33" y="166.41"/>
    <poi id="3666250062" type="amenity" color="237,199,199" layer="4.00" x="-508.63" y="89.78"/>
    <poi id="3666250168" type="natural" color="140,196,107" layer="1.00" x="-647.33" y="-129.97"/>
    <poi id="3666250170" type="natural" color="140,196,107" layer="1.00" x="-642.17" y="-129.77"/>
    <poi id="3666250172" type="natural" color="140,196,107" layer="1.00" x="-655.06" y="-129.32"/>
    <poi id="3666250177" type="natural" color="140,196,107" layer="1.00" x="-635.72" y="-128.19"/>
    <poi id="3666250182" type="natural" color="140,196,107" layer="1.00" x="-659.84" y="-126.71"/>
    <poi id="3666250187" type="natural" color="140,196,107" layer="1.00" x="-631.57" y="-124.08"/>
    <poi id="3666250189" type="natural" color="140,196,107" layer="1.00" x="-647.64" y="-123.77"/>
    <poi id="3666250191" type="natural" color="140,196,107" layer="1.00" x="-639.20" y="-123.60"/>
    <poi id="3666250192" type="natural" color="140,196,107" layer="1.00" x="-656.07" y="-123.24"/>
    <poi id="3666250207" type="natural" color="140,196,107" layer="1.00" x="-648.42" y="-119.08"/>
    <poi id="3666250210" type="natural" color="140,196,107" layer="1.00" x="-643.49" y="-118.54"/>
    <poi id="3666250211" type="natural" color="140,196,107" layer="1.00" x="-634.59" y="-118.61"/>
    <poi id="3666250213" type="natural" color="140,196,107" layer="1.00" x="-655.20" y="-117.29"/>
    <poi id="3666250218" type="natural" color="140,196,107" layer="1.00" x="-660.92" y="-114.79"/>
    <poi id="3666250219" type="natural" color="140,196,107" layer="1.00" x="-613.03" y="-114.66"/>
    <poi id="3666250221" type="natural" color="140,196,107" layer="1.00" x="-639.01" y="-113.90"/>
    <poi id="3666250326" type="natural" color="140,196,107" layer="1.00" x="-648.49" y="-113.13"/>
    <poi id="3666250339" type="natural" color="140,196,107" layer="1.00" x="-654.92" y="-110.98"/>
    <poi id="3666250340" type="natural" color="140,196,107" layer="1.00" x="-607.12" y="-110.78"/>
    <poi id="3666250344" type="natural" color="140,196,107" layer="1.00" x="-643.31" y="-109.31"/>
    <poi id="3666250348" type="natural" color="140,196,107" layer="1.00" x="-658.41" y="-107.79"/>
    <poi id="3666250350" type="natural" color="140,196,107" layer="1.00" x="-601.22" y="-106.90"/>
    <poi id="3666250354" type="natural" color="140,196,107" layer="1.00" x="-649.37" y="-105.88"/>
    <poi id="3666250356" type="natural" color="140,196,107" layer="1.00" x="-654.52" y="-103.98"/>
    <poi id="3666250364" type="natural" color="140,196,107" layer="1.00" x="-595.31" y="-103.02"/>
    <poi id="3666250365" type="natural" color="140,196,107" layer="1.00" x="-660.95" y="-102.17"/>
    <poi id="3666251262" type="natural" color="140,196,107" layer="1.00" x="-509.57" y="58.82"/>
    <poi id="3666251265" type="natural" color="140,196,107" layer="1.00" x="-498.18" y="60.73"/>
    <poi id="3666251266" type="natural" color="140,196,107" layer="1.00" x="-503.26" y="62.26"/>
    <poi id="3666251270" type="natural" color="140,196,107" layer="1.00" x="-508.45" y="63.53"/>
    <poi id="3666251328" type="building" color="255,230,230" layer="4.00" x="-503.37" y="109.97"/>
    <poi id="3666251333" type="building" color="255,230,230" layer="4.00" x="-503.05" y="110.96"/>
    <poi id="3666251334" type="building" color="255,230,230" layer="4.00" x="-508.58" y="111.47"/>
    <poi id="3666251346" type="building" color="255,230,230" layer="4.00" x="-505.55" y="121.99"/>
    <poi id="3666251374" type="natural" color="140,196,107" layer="1.00" x="-518.85" y="136.31"/>
    <poi id="3666251378" type="natural" color="140,196,107" layer="1.00" x="-528.29" y="139.12"/>
    <poi id="3666251386" type="natural" color="140,196,107" layer="1.00" x="-537.72" y="141.92"/>
    <poi id="3666251390" type="building" color="255,230,230" layer="4.00" x="-494.20" y="145.28"/>
    <poi id="3666331755" type="building" color="255,230,230" layer="4.00" x="-0.53" y="33.72"/>
    <poi id="3666331756" type="building" color="255,230,230" layer="4.00" x="-3.84" y="34.73"/>
    <poi id="3666331757" type="building" color="255,230,230" layer="4.00" x="-7.15" y="35.76"/>
    <poi id="368178248" type="amenity" color="237,199,199" layer="4.00" x="258.52" y="660.04"/>
    <poi id="3753105593" type="amenity" color="237,199,199" layer="4.00" x="369.92" y="442.99"/>
    <poi id="3830666877" type="amenity" color="237,199,199" layer="4.00" x="253.10" y="665.30"/>
    <poi id="3841232543" type="amenity" color="237,199,199" layer="4.00" x="109.15" y="443.56"/>
    <poi id="3841232544" type="natural" color="140,196,107" layer="1.00" x="119.53" y="340.75"/>
    <poi id="3841232545" type="natural" color="140,196,107" layer="1.00" x="135.24" y="336.41"/>
    <poi id="3841232546" type="natural" color="140,196,107" layer="1.00" x="114.29" y="322.97"/>
    <poi id="3841232547" type="natural" color="140,196,107" layer="1.00" x="99.84" y="327.45"/>
    <poi id="3841232548" type="natural" color="140,196,107" layer="1.00" x="129.59" y="318.61"/>
    <poi id="3841232549" type="natural" color="140,196,107" layer="1.00" x="104.88" y="345.24"/>
    <poi id="3841232550" type="natural" color="140,196,107" layer="1.00" x="111.71" y="370.10"/>
    <poi id="3841232551" type="natural" color="140,196,107" layer="1.00" x="142.26" y="360.34"/>
    <poi id="3876938339" type="shop" color="237,199,255" layer="4.00" x="-373.76" y="24.77"/>
    <poi id="3899708849" type="amenity" color="237,199,199" layer="4.00" x="100.07" y="515.84"/>
    <poi id="3935624294" type="building" color="255,230,230" layer="4.00" x="581.59" y="29.49"/>
    <poi id="3935624297" type="building" color="255,230,230" layer="4.00" x="597.56" y="29.75"/>
    <poi id="3935624299" type="building" color="255,230,230" layer="4.00" x="565.11" y="30.74"/>
    <poi id="3935624300" type="building" color="255,230,230" layer="4.00" x="613.74" y="31.52"/>
    <poi id="3935624301" type="building" color="255,230,230" layer="4.00" x="551.05" y="33.05"/>
    <poi id="3935624302" type="building" color="255,230,230" layer="4.00" x="628.98" y="34.62"/>
    <poi id="3935624304" type="building" color="255,230,230" layer="4.00" x="535.29" y="37.00"/>
    <poi id="3935624306" type="building" color="255,230,230" layer="4.00" x="521.62" y="41.25"/>
    <poi id="3935624314" type="building" color="255,230,230" layer="4.00" x="505.96" y="48.67"/>
    <poi id="3946564984" type="shop" color="237,199,255" layer="4.00" x="-598.51" y="399.83"/>
    <poi id="3946564985" type="shop" color="237,199,255" layer="4.00" x="-612.42" y="277.51"/>
    <poi id="3977170057" type="shop" color="237,199,255" layer="4.00" x="-613.91" y="101.29"/>
    <poi id="4004213558" type="building" color="255,230,230" layer="4.00" x="-191.39" y="-93.22"/>
    <poi id="4004213559" type="building" color="255,230,230" layer="4.00" x="-192.38" y="-92.82"/>
    <poi id="4004213560" type="building" color="255,230,230" layer="4.00" x="-238.01" y="-75.73"/>
    <poi id="4004213561" type="building" color="255,230,230" layer="4.00" x="-281.91" y="-73.96"/>
    <poi id="4004213562" type="building" color="255,230,230" layer="4.00" x="-281.55" y="-73.02"/>
    <poi id="4004213563" type="building" color="255,230,230" layer="4.00" x="-233.68" y="-60.86"/>
    <poi id="4004213564" type="building" color="255,230,230" layer="4.00" x="-233.25" y="-59.42"/>
    <poi id="4004213569" type="building" color="255,230,230" layer="4.00" x="-163.05" y="-38.09"/>
    <poi id="4004213570" type="building" color="255,230,230" layer="4.00" x="-164.03" y="-37.78"/>
    <poi id="4004213571" type="building" color="255,230,230" layer="4.00" x="-269.74" y="-32.51"/>
    <poi id="4004213572" type="building" color="255,230,230" layer="4.00" x="-269.41" y="-31.63"/>
    <poi id="4004213573" type="building" color="255,230,230" layer="4.00" x="-130.91" y="-21.35"/>
    <poi id="4004213574" type="building" color="255,230,230" layer="4.00" x="-131.79" y="-21.08"/>
    <poi id="4004213575" type="building" color="255,230,230" layer="4.00" x="-155.60" y="-14.27"/>
    <poi id="4004213576" type="building" color="255,230,230" layer="4.00" x="-156.40" y="-14.01"/>
    <poi id="4004213577" type="building" color="255,230,230" layer="4.00" x="-266.16" y="-0.78"/>
    <poi id="4057042016" type="amenity" color="237,199,199" layer="4.00" x="-193.79" y="-296.70"/>
    <poi id="4109319590" type="building" color="255,230,230" layer="4.00" x="-360.79" y="104.07"/>
    <poi id="4138938941" type="building" color="255,230,230" layer="4.00" x="327.95" y="399.57"/>
    <poi id="4151799156" type="building" color="255,230,230" layer="4.00" x="183.90" y="433.12"/>
    <poi id="4151799157" type="building" color="255,230,230" layer="4.00" x="185.81" y="439.37"/>
    <poi id="4151799158" type="amenity" color="237,199,199" layer="4.00" x="53.15" y="513.69"/>
    <poi id="41760997" type="amenity" color="237,199,199" layer="4.00" x="-126.12" y="685.93"/>
    <poi id="4189776416" type="amenity" color="237,199,199" layer="4.00" x="484.29" y="-52.51"/>
    <poi id="4193867683" type="amenity" color="237,199,199" layer="4.00" x="35.05" y="499.41"/>
    <poi id="4193867684" type="amenity" color="237,199,199" layer="4.00" x="39.06" y="510.39"/>
    <poi id="4200491294" type="tourism" color="207,245,201" layer="3.00" x="-508.77" y="-311.27"/>
    <poi id="4200509351" type="historic" color="128,255,128" layer="4.00" x="-567.63" y="-257.86"/>
    <poi id="4210719695" type="building" color="255,230,230" layer="4.00" x="-362.73" y="105.12"/>
    <poi id="4210719769" type="amenity" color="237,199,199" layer="4.00" x="-247.51" y="217.91"/>
    <poi id="4210719830" type="amenity" color="237,199,199" layer="4.00" x="-92.93" y="275.00"/>
    <poi id="4210719835" type="amenity" color="237,199,199" layer="4.00" x="-121.55" y="283.63"/>
    <poi id="4237295710" type="natural" color="140,196,107" layer="1.00" x="627.96" y="-95.98"/>
    <poi id="4258962147" type="amenity" color="237,199,199" layer="4.00" x="-49.59" y="631.23"/>
    <poi id="4258962152" type="amenity" color="237,199,199" layer="4.00" x="-150.26" y="685.19"/>
    <poi id="4291160889" type="amenity" color="237,199,199" layer="4.00" x="472.79" y="550.22"/>
    <poi id="4291160890" type="shop" color="237,199,255" layer="4.00" x="469.32" y="562.59"/>
    <poi id="4291160897" type="amenity" color="237,199,199" layer="4.00" x="370.24" y="469.14"/>
    <poi id="4301147677" type="amenity" color="237,199,199" layer="4.00" x="263.36" y="301.63"/>
    <poi id="4301147679" type="amenity" color="237,199,199" layer="4.00" x="228.52" y="311.67"/>
    <poi id="4306391499" type="tourism" color="207,245,201" layer="3.00" x="-399.82" y="302.11"/>
    <poi id="4309768818" type="parking" color="184,184,179" layer="4.00" x="-98.32" y="176.72"/>
    <poi id="4309768822" type="parking" color="184,184,179" layer="4.00" x="59.61" y="149.02"/>
    <poi id="4328252890" type="building" color="255,230,230" layer="4.00" x="-479.34" y="-330.52"/>
    <poi id="4328255312" type="building" color="255,230,230" layer="4.00" x="-135.11" y="-77.21"/>
    <poi id="4328255313" type="building" color="255,230,230" layer="4.00" x="-134.24" y="-76.66"/>
    <poi id="4328255314" type="building" color="255,230,230" layer="4.00" x="-106.04" y="-52.33"/>
    <poi id="4328255315" type="building" color="255,230,230" layer="4.00" x="-106.84" y="-51.70"/>
    <poi id="4338239091" type="building" color="255,230,230" layer="4.00" x="257.65" y="571.91"/>
    <poi id="4338239092" type="building" color="255,230,230" layer="4.00" x="256.89" y="572.36"/>
    <poi id="4338239093" type="building" color="255,230,230" layer="4.00" x="256.13" y="572.80"/>
    <poi id="4343420524" type="building" color="255,230,230" layer="4.00" x="201.59" y="451.14"/>
    <poi id="4344459954" type="shop" color="237,199,255" layer="4.00" x="68.97" y="210.50"/>
    <poi id="4348497733" type="amenity" color="237,199,199" layer="4.00" x="-464.62" y="-125.97"/>
    <poi id="4348497734" type="historic" color="128,255,128" layer="4.00" x="-525.92" y="-157.80"/>
    <poi id="4348498295" type="amenity" color="237,199,199" layer="4.00" x="-130.00" y="77.43"/>
    <poi id="4348528004" type="amenity" color="237,199,199" layer="4.00" x="-448.29" y="71.32"/>
    <poi id="4348528019" type="building" color="255,230,230" layer="4.00" x="-377.74" y="-127.03"/>
    <poi id="4348572872" type="amenity" color="237,199,199" layer="4.00" x="-602.07" y="103.25"/>
    <poi id="4351433758" type="amenity" color="237,199,199" layer="4.00" x="-100.35" y="688.56"/>
    <poi id="4360735952" type="amenity" color="237,199,199" layer="4.00" x="502.74" y="209.77"/>
    <poi id="4360735953" type="amenity" color="237,199,199" layer="4.00" x="502.51" y="212.72"/>
    <poi id="4361866512" type="amenity" color="237,199,199" layer="4.00" x="567.76" y="-20.74"/>
    <poi id="4361866513" type="amenity" color="237,199,199" layer="4.00" x="564.95" y="-19.82"/>
    <poi id="4361866514" type="amenity" color="237,199,199" layer="4.00" x="562.14" y="-18.90"/>
    <poi id="4361866515" type="amenity" color="237,199,199" layer="4.00" x="559.33" y="-17.97"/>
    <poi id="4361866516" type="amenity" color="237,199,199" layer="4.00" x="556.52" y="-17.05"/>
    <poi id="4361866518" type="amenity" color="237,199,199" layer="4.00" x="596.32" y="17.29"/>
    <poi id="4361866518#1" type="shop" color="237,199,255" layer="4.00" x="596.32" y="17.29"/>
    <poi id="4366336515" type="building" color="255,230,230" layer="4.00" x="480.55" y="45.37"/>
    <poi id="4366336516" type="building" color="255,230,230" layer="4.00" x="465.87" y="51.12"/>
    <poi id="4366336518" type="building" color="255,230,230" layer="4.00" x="450.12" y="56.68"/>
    <poi id="4366336527" type="building" color="255,230,230" layer="4.00" x="118.85" y="273.57"/>
    <poi id="4366336528" type="building" color="255,230,230" layer="4.00" x="119.34" y="275.54"/>
    <poi id="4366336529" type="building" color="255,230,230" layer="4.00" x="119.84" y="277.49"/>
    <poi id="4368418469" type="amenity" color="237,199,199" layer="4.00" x="-407.77" y="218.12"/>
    <poi id="4382399347" type="amenity" color="237,199,199" layer="4.00" x="-433.96" y="313.95"/>
    <poi id="4394806430" type="amenity" color="237,199,199" layer="4.00" x="80.57" y="323.86"/>
    <poi id="4417370994" type="building" color="255,230,230" layer="4.00" x="-452.72" y="179.61"/>
    <poi id="4417370995" type="building" color="255,230,230" layer="4.00" x="-452.39" y="180.68"/>
    <poi id="442676959" type="building" color="255,230,230" layer="4.00" x="195.11" y="407.08"/>
    <poi id="442676963" type="building" color="255,230,230" layer="4.00" x="310.96" y="307.13"/>
    <poi id="442676964" type="building" color="255,230,230" layer="4.00" x="328.62" y="369.46"/>
    <poi id="4513765395" type="shop" color="237,199,255" layer="4.00" x="-663.90" y="297.19"/>
    <poi id="4575331688" type="amenity" color="237,199,199" layer="4.00" x="-548.92" y="-268.10"/>
    <poi id="4575333389" type="amenity" color="237,199,199" layer="4.00" x="-529.01" y="-204.04"/>
    <poi id="4609654120" type="amenity" color="237,199,199" layer="4.00" x="120.89" y="276.68"/>
    <poi id="4609654121" type="building" color="255,230,230" layer="4.00" x="118.35" y="271.62"/>
    <poi id="4609654122" type="building" color="255,230,230" layer="4.00" x="138.61" y="263.22"/>
    <poi id="4609654123" type="building" color="255,230,230" layer="4.00" x="135.69" y="253.08"/>
    <poi id="4609654124" type="building" color="255,230,230" layer="4.00" x="142.79" y="251.05"/>
    <poi id="4609654125" type="building" color="255,230,230" layer="4.00" x="145.71" y="261.19"/>
    <poi id="4609654176" type="building" color="255,230,230" layer="4.00" x="178.34" y="182.62"/>
    <poi id="4609654177" type="building" color="255,230,230" layer="4.00" x="176.34" y="175.20"/>
    <poi id="4609654178" type="building" color="255,230,230" layer="4.00" x="184.15" y="181.06"/>
    <poi id="4609654179" type="building" color="255,230,230" layer="4.00" x="182.15" y="173.65"/>
    <poi id="4609654180" type="building" color="255,230,230" layer="4.00" x="180.25" y="178.14"/>
    <poi id="4609654417" type="amenity" color="237,199,199" layer="4.00" x="501.85" y="86.50"/>
    <poi id="4621072691" type="building" color="255,230,230" layer="4.00" x="136.43" y="587.06"/>
    <poi id="4621981802" type="shop" color="237,199,255" layer="4.00" x="188.71" y="560.20"/>
    <poi id="4621981803" type="amenity" color="237,199,199" layer="4.00" x="174.94" y="568.33"/>
    <poi id="4621981808" type="building" color="255,230,230" layer="4.00" x="83.90" y="685.47"/>
    <poi id="469078995" type="parking" color="184,184,179" layer="4.00" x="-393.59" y="234.26"/>
    <poi id="4693887652" type="shop" color="237,199,255" layer="4.00" x="419.26" y="168.85"/>
    <poi id="4714085544" type="amenity" color="237,199,199" layer="4.00" x="332.42" y="-99.39"/>
    <poi id="4714085549" type="amenity" color="237,199,199" layer="4.00" x="328.80" y="-88.76"/>
    <poi id="4714085554" type="amenity" color="237,199,199" layer="4.00" x="335.14" y="-90.70"/>
    <poi id="4718761372" type="amenity" color="237,199,199" layer="4.00" x="565.14" y="528.42"/>
    <poi id="4718761374" type="shop" color="237,199,255" layer="4.00" x="547.20" y="275.46"/>
    <poi id="4718761375" type="shop" color="237,199,255" layer="4.00" x="505.30" y="232.34"/>
    <poi id="4718761376" type="shop" color="237,199,255" layer="4.00" x="549.39" y="225.76"/>
    <poi id="4718761377" type="amenity" color="237,199,199" layer="4.00" x="505.24" y="257.17"/>
    <poi id="4718761382" type="amenity" color="237,199,199" layer="4.00" x="513.89" y="-94.93"/>
    <poi id="4749768092" type="natural" color="140,196,107" layer="1.00" x="-438.80" y="519.22"/>
    <poi id="4749768093" type="natural" color="140,196,107" layer="1.00" x="-452.87" y="519.27"/>
    <poi id="4749768094" type="natural" color="140,196,107" layer="1.00" x="-466.43" y="520.56"/>
    <poi id="4749768095" type="natural" color="140,196,107" layer="1.00" x="-481.19" y="522.55"/>
    <poi id="4749768096" type="natural" color="140,196,107" layer="1.00" x="-492.40" y="524.07"/>
    <poi id="4749768097" type="natural" color="140,196,107" layer="1.00" x="-505.73" y="525.86"/>
    <poi id="4749768098" type="natural" color="140,196,107" layer="1.00" x="-517.36" y="527.43"/>
    <poi id="4749768099" type="natural" color="140,196,107" layer="1.00" x="-525.30" y="528.51"/>
    <poi id="4749768100" type="natural" color="140,196,107" layer="1.00" x="-541.19" y="530.65"/>
    <poi id="4749768103" type="amenity" color="237,199,199" layer="4.00" x="-508.38" y="545.41"/>
    <poi id="4799358234" type="amenity" color="237,199,199" layer="4.00" x="14.43" y="679.20"/>
    <poi id="4799358240" type="amenity" color="237,199,199" layer="4.00" x="-17.10" y="611.93"/>
    <poi id="4799843337" type="amenity" color="237,199,199" layer="4.00" x="-510.85" y="61.91"/>
    <poi id="4799843347" type="natural" color="140,196,107" layer="1.00" x="-543.25" y="41.13"/>
    <poi id="4799843348" type="natural" color="140,196,107" layer="1.00" x="-539.11" y="40.01"/>
    <poi id="4799843349" type="natural" color="140,196,107" layer="1.00" x="-540.06" y="34.94"/>
    <poi id="4799843350" type="natural" color="140,196,107" layer="1.00" x="-544.47" y="36.15"/>
    <poi id="4799843368" type="natural" color="140,196,107" layer="1.00" x="-576.25" y="3.33"/>
    <poi id="4799843369" type="natural" color="140,196,107" layer="1.00" x="-571.38" y="1.79"/>
    <poi id="4799843370" type="natural" color="140,196,107" layer="1.00" x="-573.67" y="-1.65"/>
    <poi id="4799843371" type="natural" color="140,196,107" layer="1.00" x="-577.95" y="-0.51"/>
    <poi id="4799843381" type="tourism" color="207,245,201" layer="3.00" x="-519.21" y="7.87"/>
    <poi id="4814082950" type="amenity" color="237,199,199" layer="4.00" x="137.23" y="379.92"/>
    <poi id="4825738780" type="shop" color="237,199,255" layer="4.00" x="-15.09" y="504.61"/>
    <poi id="4892782475" type="amenity" color="237,199,199" layer="4.00" x="-110.66" y="696.11"/>
    <poi id="4893845695" type="building" color="255,230,230" layer="4.00" x="-490.31" y="-315.28"/>
    <poi id="4909385518" type="natural" color="140,196,107" layer="1.00" x="174.26" y="396.81"/>
    <poi id="4909385519" type="natural" color="140,196,107" layer="1.00" x="170.29" y="382.95"/>
    <poi id="4909385520" type="natural" color="140,196,107" layer="1.00" x="141.29" y="281.27"/>
    <poi id="4909385521" type="natural" color="140,196,107" layer="1.00" x="143.12" y="289.76"/>
    <poi id="4909385522" type="natural" color="140,196,107" layer="1.00" x="146.32" y="298.49"/>
    <poi id="4909385523" type="natural" color="140,196,107" layer="1.00" x="149.08" y="307.51"/>
    <poi id="4909385524" type="natural" color="140,196,107" layer="1.00" x="164.64" y="362.46"/>
    <poi id="4909385525" type="natural" color="140,196,107" layer="1.00" x="161.18" y="350.99"/>
    <poi id="4937137789" type="shop" color="237,199,255" layer="4.00" x="-382.79" y="587.83"/>
    <poi id="5001822597" type="natural" color="140,196,107" layer="1.00" x="-131.10" y="152.10"/>
    <poi id="5001822598" type="natural" color="140,196,107" layer="1.00" x="-134.42" y="140.64"/>
    <poi id="5001822599" type="natural" color="140,196,107" layer="1.00" x="-137.73" y="129.19"/>
    <poi id="5001822600" type="building" color="255,230,230" layer="4.00" x="-135.89" y="79.73"/>
    <poi id="5001822602" type="amenity" color="237,199,199" layer="4.00" x="-135.82" y="79.56"/>
    <poi id="5002054683" type="building" color="255,230,230" layer="4.00" x="-108.22" y="252.37"/>
    <poi id="5002054684" type="building" color="255,230,230" layer="4.00" x="-110.67" y="253.07"/>
    <poi id="5002054685" type="building" color="255,230,230" layer="4.00" x="-113.12" y="253.78"/>
    <poi id="5002054686" type="building" color="255,230,230" layer="4.00" x="-115.57" y="254.48"/>
    <poi id="5002054687" type="building" color="255,230,230" layer="4.00" x="-118.01" y="255.18"/>
    <poi id="5018731154" type="shop" color="237,199,255" layer="4.00" x="403.11" y="419.49"/>
    <poi id="5019965231" type="amenity" color="237,199,199" layer="4.00" x="302.12" y="-177.82"/>
    <poi id="5022288276" type="amenity" color="237,199,199" layer="4.00" x="192.11" y="-93.23"/>
    <poi id="5075975976" type="amenity" color="237,199,199" layer="4.00" x="-612.78" y="-56.60"/>
    <poi id="5095139866" type="building" color="255,230,230" layer="4.00" x="-48.52" y="0.91"/>
    <poi id="5095139867" type="amenity" color="237,199,199" layer="4.00" x="-544.90" y="-269.73"/>
    <poi id="5095313874" type="amenity" color="237,199,199" layer="4.00" x="269.27" y="464.67"/>
    <poi id="5148269903" type="building" color="255,230,230" layer="4.00" x="459.35" y="-109.29"/>
    <poi id="5168018883" type="amenity" color="237,199,199" layer="4.00" x="-396.09" y="400.27"/>
    <poi id="5202086625" type="building" color="255,230,230" layer="4.00" x="-396.88" y="550.24"/>
    <poi id="5202086626" type="amenity" color="237,199,199" layer="4.00" x="-397.00" y="554.06"/>
    <poi id="5202086627" type="amenity" color="237,199,199" layer="4.00" x="-408.71" y="470.04"/>
    <poi id="5202086650" type="natural" color="140,196,107" layer="1.00" x="-385.71" y="529.37"/>
    <poi id="5202086651" type="natural" color="140,196,107" layer="1.00" x="-385.79" y="560.77"/>
    <poi id="5202086652" type="natural" color="140,196,107" layer="1.00" x="-385.77" y="552.92"/>
    <poi id="5202086653" type="natural" color="140,196,107" layer="1.00" x="-385.75" y="545.07"/>
    <poi id="5202086654" type="natural" color="140,196,107" layer="1.00" x="-385.73" y="537.22"/>
    <poi id="5202086655" type="natural" color="140,196,107" layer="1.00" x="-385.69" y="521.36"/>
    <poi id="5202086656" type="natural" color="140,196,107" layer="1.00" x="-385.67" y="513.34"/>
    <poi id="5202086657" type="natural" color="140,196,107" layer="1.00" x="-385.65" y="506.30"/>
    <poi id="5202086658" type="natural" color="140,196,107" layer="1.00" x="-385.63" y="499.27"/>
    <poi id="5202086659" type="natural" color="140,196,107" layer="1.00" x="-385.62" y="492.36"/>
    <poi id="5202086660" type="natural" color="140,196,107" layer="1.00" x="-385.60" y="485.47"/>
    <poi id="5202086661" type="natural" color="140,196,107" layer="1.00" x="-385.58" y="477.84"/>
    <poi id="5202086662" type="natural" color="140,196,107" layer="1.00" x="-385.56" y="470.20"/>
    <poi id="5202086663" type="natural" color="140,196,107" layer="1.00" x="-385.53" y="457.99"/>
    <poi id="5202086703" type="natural" color="140,196,107" layer="1.00" x="-449.79" y="190.95"/>
    <poi id="5202086704" type="natural" color="140,196,107" layer="1.00" x="-444.72" y="211.93"/>
    <poi id="5202086705" type="natural" color="140,196,107" layer="1.00" x="-442.14" y="223.45"/>
    <poi id="5202086706" type="natural" color="140,196,107" layer="1.00" x="-438.58" y="240.64"/>
    <poi id="5209326885" type="natural" color="140,196,107" layer="1.00" x="-674.88" y="16.18"/>
    <poi id="5209326886" type="natural" color="140,196,107" layer="1.00" x="-658.21" y="15.93"/>
    <poi id="5209327046" type="natural" color="140,196,107" layer="1.00" x="-654.13" y="179.13"/>
    <poi id="5209327047" type="natural" color="140,196,107" layer="1.00" x="-668.04" y="169.26"/>
    <poi id="5209327050" type="natural" color="140,196,107" layer="1.00" x="-636.05" y="132.35"/>
    <poi id="5209327051" type="natural" color="140,196,107" layer="1.00" x="-636.67" y="140.47"/>
    <poi id="5209327052" type="natural" color="140,196,107" layer="1.00" x="-644.53" y="139.65"/>
    <poi id="5209327053" type="natural" color="140,196,107" layer="1.00" x="-642.60" y="147.55"/>
    <poi id="5209327054" type="natural" color="140,196,107" layer="1.00" x="-642.63" y="156.55"/>
    <poi id="5209327055" type="natural" color="140,196,107" layer="1.00" x="-658.43" y="155.78"/>
    <poi id="5209327056" type="natural" color="140,196,107" layer="1.00" x="-660.17" y="145.92"/>
    <poi id="5209327057" type="natural" color="140,196,107" layer="1.00" x="-665.91" y="138.83"/>
    <poi id="5209327058" type="natural" color="140,196,107" layer="1.00" x="-668.55" y="127.99"/>
    <poi id="5209327059" type="natural" color="140,196,107" layer="1.00" x="-668.77" y="110.19"/>
    <poi id="5209327060" type="natural" color="140,196,107" layer="1.00" x="-668.83" y="102.75"/>
    <poi id="5209327061" type="natural" color="140,196,107" layer="1.00" x="-642.50" y="122.41"/>
    <poi id="5209327062" type="natural" color="140,196,107" layer="1.00" x="-643.56" y="111.86"/>
    <poi id="5209327063" type="natural" color="140,196,107" layer="1.00" x="-645.38" y="104.15"/>
    <poi id="5209327064" type="natural" color="140,196,107" layer="1.00" x="-639.96" y="82.20"/>
    <poi id="5209327065" type="natural" color="140,196,107" layer="1.00" x="-649.65" y="83.54"/>
    <poi id="5209327066" type="natural" color="140,196,107" layer="1.00" x="-638.99" y="40.14"/>
    <poi id="5209327067" type="natural" color="140,196,107" layer="1.00" x="-646.77" y="36.88"/>
    <poi id="5209327068" type="natural" color="140,196,107" layer="1.00" x="-651.22" y="45.41"/>
    <poi id="5209327069" type="natural" color="140,196,107" layer="1.00" x="-656.36" y="53.77"/>
    <poi id="5209327070" type="natural" color="140,196,107" layer="1.00" x="-663.55" y="62.33"/>
    <poi id="5209327071" type="natural" color="140,196,107" layer="1.00" x="-664.47" y="56.85"/>
    <poi id="5209327072" type="natural" color="140,196,107" layer="1.00" x="-665.90" y="49.34"/>
    <poi id="5209327073" type="natural" color="140,196,107" layer="1.00" x="-670.10" y="78.42"/>
    <poi id="5209327074" type="natural" color="140,196,107" layer="1.00" x="-668.65" y="88.38"/>
    <poi id="5224969035" type="amenity" color="237,199,199" layer="4.00" x="-408.71" y="477.08"/>
    <poi id="5224969036" type="building" color="255,230,230" layer="4.00" x="-408.75" y="470.88"/>
    <poi id="5224969045" type="amenity" color="237,199,199" layer="4.00" x="-396.87" y="550.98"/>
    <poi id="5224969046" type="building" color="255,230,230" layer="4.00" x="-396.94" y="549.37"/>
    <poi id="5224969091" type="building" color="255,230,230" layer="4.00" x="-379.01" y="689.66"/>
    <poi id="5224969092" type="building" color="255,230,230" layer="4.00" x="-378.21" y="689.70"/>
    <poi id="523629152" type="shop" color="237,199,255" layer="4.00" x="-572.37" y="524.28"/>
    <poi id="524565144" type="amenity" color="237,199,199" layer="4.00" x="-13.33" y="461.15"/>
    <poi id="524565145" type="amenity" color="237,199,199" layer="4.00" x="103.39" y="440.93"/>
    <poi id="525166780" type="amenity" color="237,199,199" layer="4.00" x="-372.06" y="555.44"/>
    <poi id="5307483862" type="natural" color="140,196,107" layer="1.00" x="-384.19" y="-106.18"/>
    <poi id="5307483863" type="natural" color="140,196,107" layer="1.00" x="-400.46" y="-99.01"/>
    <poi id="5307483864" type="natural" color="140,196,107" layer="1.00" x="-416.63" y="-96.16"/>
    <poi id="5307483865" type="natural" color="140,196,107" layer="1.00" x="-428.29" y="-94.21"/>
    <poi id="5307483866" type="natural" color="140,196,107" layer="1.00" x="-437.11" y="-93.37"/>
    <poi id="5307483867" type="natural" color="140,196,107" layer="1.00" x="-446.01" y="-90.80"/>
    <poi id="5307483868" type="natural" color="140,196,107" layer="1.00" x="-450.18" y="-89.99"/>
    <poi id="5307483869" type="natural" color="140,196,107" layer="1.00" x="-454.34" y="-89.08"/>
    <poi id="5307483870" type="natural" color="140,196,107" layer="1.00" x="-457.82" y="-88.81"/>
    <poi id="5307483871" type="natural" color="140,196,107" layer="1.00" x="-462.67" y="-88.72"/>
    <poi id="5307483872" type="natural" color="140,196,107" layer="1.00" x="-467.74" y="-84.33"/>
    <poi id="5307483873" type="natural" color="140,196,107" layer="1.00" x="-468.98" y="-86.28"/>
    <poi id="5307483874" type="natural" color="140,196,107" layer="1.00" x="-470.65" y="-80.25"/>
    <poi id="5307483875" type="natural" color="140,196,107" layer="1.00" x="-475.09" y="-77.19"/>
    <poi id="5307483876" type="natural" color="140,196,107" layer="1.00" x="-473.02" y="-81.79"/>
    <poi id="5307483877" type="natural" color="140,196,107" layer="1.00" x="-477.61" y="-85.87"/>
    <poi id="5307483878" type="natural" color="140,196,107" layer="1.00" x="-481.44" y="-86.82"/>
    <poi id="5307483879" type="natural" color="140,196,107" layer="1.00" x="-484.58" y="-86.55"/>
    <poi id="5307483880" type="natural" color="140,196,107" layer="1.00" x="-481.27" y="-84.13"/>
    <poi id="5307483881" type="natural" color="140,196,107" layer="1.00" x="-481.45" y="-81.01"/>
    <poi id="5307483882" type="natural" color="140,196,107" layer="1.00" x="-493.57" y="-74.80"/>
    <poi id="5307483883" type="natural" color="140,196,107" layer="1.00" x="-490.65" y="-72.28"/>
    <poi id="5307483884" type="natural" color="140,196,107" layer="1.00" x="-489.60" y="-76.30"/>
    <poi id="5307483885" type="natural" color="140,196,107" layer="1.00" x="-486.74" y="-80.08"/>
    <poi id="5307483886" type="natural" color="140,196,107" layer="1.00" x="-486.96" y="-83.94"/>
    <poi id="5307483887" type="natural" color="140,196,107" layer="1.00" x="-490.94" y="-84.94"/>
    <poi id="5307483888" type="natural" color="140,196,107" layer="1.00" x="-496.84" y="-86.46"/>
    <poi id="5307483890" type="natural" color="140,196,107" layer="1.00" x="-494.82" y="-79.58"/>
    <poi id="5307573739" type="amenity" color="237,199,199" layer="4.00" x="-429.98" y="-65.88"/>
</additional>

Back to the top